* FAILED: patch "[PATCH] IB/hfi1: Fix deadlock with txreq allocation slow path" failed to apply to 4.6-stable tree
@ 2016-07-11 22:18 gregkh
2016-07-20 21:17 ` Marciniszyn, Mike
0 siblings, 1 reply; 5+ messages in thread
From: gregkh @ 2016-07-11 22:18 UTC (permalink / raw)
To: mike.marciniszyn, dennis.dalessandro, dledford, stable; +Cc: stable
The patch below does not apply to the 4.6-stable tree.
If someone wants it applied there, or to any other stable or longterm
tree, then please email the backport, including the original git commit
id to <stable@vger.kernel.org>.
thanks,
greg k-h
------------------ original commit in Linus's tree ------------------
>From 2aee309d3e01447c55fdf89cef05a0e2be372655 Mon Sep 17 00:00:00 2001
From: Mike Marciniszyn <mike.marciniszyn@intel.com>
Date: Fri, 17 Jun 2016 19:17:49 -0700
Subject: [PATCH] IB/hfi1: Fix deadlock with txreq allocation slow path
A failure in the get_txreq() inline will result in a
slow path retry using __get_txreq().
__get_txreq() attempts to procure the qp s_lock, which
is already held in all callers.
Fix by deleting the s_lock maintenance in __get_txreq()
and add sparse syntax hooks to future proof the code.
Cc: Stable <stable@vger.kernel.org> # 4.6+
Reviewed-by: Dennis Dalessandro <dennis.dalessandro@intel.com>
Signed-off-by: Mike Marciniszyn <mike.marciniszyn@intel.com>
Signed-off-by: Dennis Dalessandro <dennis.dalessandro@intel.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
diff --git a/drivers/infiniband/hw/hfi1/verbs_txreq.c b/drivers/infiniband/hw/hfi1/verbs_txreq.c
index bc95c4112c61..d8fb056526f8 100644
--- a/drivers/infiniband/hw/hfi1/verbs_txreq.c
+++ b/drivers/infiniband/hw/hfi1/verbs_txreq.c
@@ -92,11 +92,10 @@ void hfi1_put_txreq(struct verbs_txreq *tx)
struct verbs_txreq *__get_txreq(struct hfi1_ibdev *dev,
struct rvt_qp *qp)
+ __must_hold(&qp->s_lock)
{
struct verbs_txreq *tx = ERR_PTR(-EBUSY);
- unsigned long flags;
- spin_lock_irqsave(&qp->s_lock, flags);
write_seqlock(&dev->iowait_lock);
if (ib_rvt_state_ops[qp->state] & RVT_PROCESS_RECV_OK) {
struct hfi1_qp_priv *priv;
@@ -116,7 +115,6 @@ struct verbs_txreq *__get_txreq(struct hfi1_ibdev *dev,
}
out:
write_sequnlock(&dev->iowait_lock);
- spin_unlock_irqrestore(&qp->s_lock, flags);
return tx;
}
diff --git a/drivers/infiniband/hw/hfi1/verbs_txreq.h b/drivers/infiniband/hw/hfi1/verbs_txreq.h
index 1cf69b2fe4a5..a1d6e0807f97 100644
--- a/drivers/infiniband/hw/hfi1/verbs_txreq.h
+++ b/drivers/infiniband/hw/hfi1/verbs_txreq.h
@@ -73,6 +73,7 @@ struct verbs_txreq *__get_txreq(struct hfi1_ibdev *dev,
static inline struct verbs_txreq *get_txreq(struct hfi1_ibdev *dev,
struct rvt_qp *qp)
+ __must_hold(&qp->slock)
{
struct verbs_txreq *tx;
struct hfi1_qp_priv *priv = qp->priv;
^ permalink raw reply related [flat|nested] 5+ messages in thread* RE: FAILED: patch "[PATCH] IB/hfi1: Fix deadlock with txreq allocation slow path" failed to apply to 4.6-stable tree
2016-07-11 22:18 FAILED: patch "[PATCH] IB/hfi1: Fix deadlock with txreq allocation slow path" failed to apply to 4.6-stable tree gregkh
@ 2016-07-20 21:17 ` Marciniszyn, Mike
2016-07-20 21:49 ` gregkh
0 siblings, 1 reply; 5+ messages in thread
From: Marciniszyn, Mike @ 2016-07-20 21:17 UTC (permalink / raw)
To: gregkh@linuxfoundation.org
Cc: stable@vger.kernel.org, Dalessandro, Dennis, dledford@redhat.com
> The patch below does not apply to the 4.6-stable tree.
> If someone wants it applied there, or to any other stable or longterm
> tree, then please email the backport, including the original git commit
> id to <stable@vger.kernel.org>.
>
> thanks,
>
> greg k-h
A 4.6 version is in http://marc.info/?l=linux-rdma&m=146904918032092&w=2.
Oddly it cherry-picked for me ok. Is this due to a flaw in the stable triggering method in the upstream patch?
Mike
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: FAILED: patch "[PATCH] IB/hfi1: Fix deadlock with txreq allocation slow path" failed to apply to 4.6-stable tree
2016-07-20 21:17 ` Marciniszyn, Mike
@ 2016-07-20 21:49 ` gregkh
2016-07-20 22:46 ` Marciniszyn, Mike
0 siblings, 1 reply; 5+ messages in thread
From: gregkh @ 2016-07-20 21:49 UTC (permalink / raw)
To: Marciniszyn, Mike
Cc: stable@vger.kernel.org, Dalessandro, Dennis, dledford@redhat.com
On Wed, Jul 20, 2016 at 09:17:30PM +0000, Marciniszyn, Mike wrote:
> > The patch below does not apply to the 4.6-stable tree.
> > If someone wants it applied there, or to any other stable or longterm
> > tree, then please email the backport, including the original git commit
> > id to <stable@vger.kernel.org>.
> >
> > thanks,
> >
> > greg k-h
>
> A 4.6 version is in http://marc.info/?l=linux-rdma&m=146904918032092&w=2.
I can't do much with a web-link, can you send me the patch?
> Oddly it cherry-picked for me ok. Is this due to a flaw in the stable triggering method in the upstream patch?
Hm, if cherry-pick worked, that's a huge hint, can you send me the
cherry-picked patch output? Odds are git can handle a merge issue
better than quilt can.
thanks,
greg k-h
^ permalink raw reply [flat|nested] 5+ messages in thread
* RE: FAILED: patch "[PATCH] IB/hfi1: Fix deadlock with txreq allocation slow path" failed to apply to 4.6-stable tree
2016-07-20 21:49 ` gregkh
@ 2016-07-20 22:46 ` Marciniszyn, Mike
2016-07-27 13:59 ` Marciniszyn, Mike
0 siblings, 1 reply; 5+ messages in thread
From: Marciniszyn, Mike @ 2016-07-20 22:46 UTC (permalink / raw)
To: gregkh@linuxfoundation.org
Cc: stable@vger.kernel.org, Dalessandro, Dennis, dledford@redhat.com
> > A 4.6 version is in http://marc.info/?l=linux-rdma&m=146904918032092&w=2.
>
> I can't do much with a web-link, can you send me the patch?
The web link was intended as an FYI.
I submitting the actual patch to stable@vger.kernel.org.
Mike
^ permalink raw reply [flat|nested] 5+ messages in thread
* RE: FAILED: patch "[PATCH] IB/hfi1: Fix deadlock with txreq allocation slow path" failed to apply to 4.6-stable tree
2016-07-20 22:46 ` Marciniszyn, Mike
@ 2016-07-27 13:59 ` Marciniszyn, Mike
0 siblings, 0 replies; 5+ messages in thread
From: Marciniszyn, Mike @ 2016-07-27 13:59 UTC (permalink / raw)
To: 'gregkh@linuxfoundation.org'
Cc: 'stable@vger.kernel.org', Dalessandro, Dennis,
'dledford@redhat.com'
> Subject: RE: FAILED: patch "[PATCH] IB/hfi1: Fix deadlock with txreq
> allocation slow path" failed to apply to 4.6-stable tree
>
>
> > > A 4.6 version is in http://marc.info/?l=linux-
> rdma&m=146904918032092&w=2.
> >
> > I can't do much with a web-link, can you send me the patch?
>
> The web link was intended as an FYI.
>
> I submitting the actual patch to stable@vger.kernel.org.
>
Were you able to see this patch on the list?
Mike
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2016-07-27 13:59 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-07-11 22:18 FAILED: patch "[PATCH] IB/hfi1: Fix deadlock with txreq allocation slow path" failed to apply to 4.6-stable tree gregkh
2016-07-20 21:17 ` Marciniszyn, Mike
2016-07-20 21:49 ` gregkh
2016-07-20 22:46 ` Marciniszyn, Mike
2016-07-27 13:59 ` Marciniszyn, Mike
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.