* [PATCH] IB/hfi1: Fix hard lockup due to not using save/restore spin lock
@ 2016-06-01 14:38 Mike Marciniszyn
[not found] ` <20160601143812.26872.85826.stgit-K+u1se/DcYrLESAwzcoQNrvm/XP+8Wra@public.gmane.org>
0 siblings, 1 reply; 6+ messages in thread
From: Mike Marciniszyn @ 2016-06-01 14:38 UTC (permalink / raw)
To: stable-u79uwXL29TY76Z2rM5mHXA; +Cc: linux-rdma-u79uwXL29TY76Z2rM5mHXA
Upstream commit 7049de65c9e5 into 4.6.
Commit b9b06cb6feda
("IB/hfi1: Fix missing lock/unlock in verbs drain callback")
added a spin lock.
Unfortunately, the new lock code can be called from a base
level interrupt state, and an interrupt that can get stacked
will attempt to get the same lock.
Fix by using the flag save/restore spin lock variation.
Reviewed-by: Sebastian Sanchez <sebastian.sanchez-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
Signed-off-by: Mike Marciniszyn <mike.marciniszyn-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
Signed-off-by: Dennis Dalessandro <dennis.dalessandro-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org>
Signed-off-by: Doug Ledford <dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org>
---
drivers/staging/rdma/hfi1/qp.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/drivers/staging/rdma/hfi1/qp.c b/drivers/staging/rdma/hfi1/qp.c
index dc9119e..0401955 100644
--- a/drivers/staging/rdma/hfi1/qp.c
+++ b/drivers/staging/rdma/hfi1/qp.c
@@ -512,6 +512,7 @@ static void iowait_wakeup(struct iowait *wait, int reason)
static void iowait_sdma_drained(struct iowait *wait)
{
struct rvt_qp *qp = iowait_to_qp(wait);
+ unsigned long flags;
/*
* This happens when the send engine notes
@@ -519,12 +520,12 @@ static void iowait_sdma_drained(struct iowait *wait)
* do the flush work until that QP's
* sdma work has finished.
*/
- spin_lock(&qp->s_lock);
+ spin_lock_irqsave(&qp->s_lock, flags);
if (qp->s_flags & RVT_S_WAIT_DMA) {
qp->s_flags &= ~RVT_S_WAIT_DMA;
hfi1_schedule_send(qp);
}
- spin_unlock(&qp->s_lock);
+ spin_unlock_irqrestore(&qp->s_lock, flags);
}
/**
--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply related [flat|nested] 6+ messages in thread[parent not found: <20160601143812.26872.85826.stgit-K+u1se/DcYrLESAwzcoQNrvm/XP+8Wra@public.gmane.org>]
* Re: [PATCH] IB/hfi1: Fix hard lockup due to not using save/restore spin lock [not found] ` <20160601143812.26872.85826.stgit-K+u1se/DcYrLESAwzcoQNrvm/XP+8Wra@public.gmane.org> @ 2016-06-01 15:44 ` Leon Romanovsky 2016-06-01 16:14 ` Greg KH 2016-06-01 16:25 ` Marciniszyn, Mike 0 siblings, 2 replies; 6+ messages in thread From: Leon Romanovsky @ 2016-06-01 15:44 UTC (permalink / raw) To: Mike Marciniszyn Cc: stable-u79uwXL29TY76Z2rM5mHXA, linux-rdma-u79uwXL29TY76Z2rM5mHXA [-- Attachment #1: Type: text/plain, Size: 2165 bytes --] On Wed, Jun 01, 2016 at 10:38:12AM -0400, Mike Marciniszyn wrote: > Upstream commit 7049de65c9e5 into 4.6. ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Is it part of the commit message? > > Commit b9b06cb6feda > ("IB/hfi1: Fix missing lock/unlock in verbs drain callback") > added a spin lock. > > Unfortunately, the new lock code can be called from a base > level interrupt state, and an interrupt that can get stacked > will attempt to get the same lock. > > Fix by using the flag save/restore spin lock variation. > > Reviewed-by: Sebastian Sanchez <sebastian.sanchez-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org> > Signed-off-by: Mike Marciniszyn <mike.marciniszyn-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org> > Signed-off-by: Dennis Dalessandro <dennis.dalessandro-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org> > Signed-off-by: Doug Ledford <dledford-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org> > --- > drivers/staging/rdma/hfi1/qp.c | 5 +++-- > 1 file changed, 3 insertions(+), 2 deletions(-) > > diff --git a/drivers/staging/rdma/hfi1/qp.c b/drivers/staging/rdma/hfi1/qp.c > index dc9119e..0401955 100644 > --- a/drivers/staging/rdma/hfi1/qp.c > +++ b/drivers/staging/rdma/hfi1/qp.c > @@ -512,6 +512,7 @@ static void iowait_wakeup(struct iowait *wait, int reason) > static void iowait_sdma_drained(struct iowait *wait) > { > struct rvt_qp *qp = iowait_to_qp(wait); > + unsigned long flags; > > /* > * This happens when the send engine notes > @@ -519,12 +520,12 @@ static void iowait_sdma_drained(struct iowait *wait) > * do the flush work until that QP's > * sdma work has finished. > */ > - spin_lock(&qp->s_lock); > + spin_lock_irqsave(&qp->s_lock, flags); > if (qp->s_flags & RVT_S_WAIT_DMA) { > qp->s_flags &= ~RVT_S_WAIT_DMA; > hfi1_schedule_send(qp); > } > - spin_unlock(&qp->s_lock); > + spin_unlock_irqrestore(&qp->s_lock, flags); > } > > /** > > -- > To unsubscribe from this list: send the line "unsubscribe linux-rdma" in > the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org > More majordomo info at http://vger.kernel.org/majordomo-info.html [-- Attachment #2: Digital signature --] [-- Type: application/pgp-signature, Size: 819 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] IB/hfi1: Fix hard lockup due to not using save/restore spin lock 2016-06-01 15:44 ` Leon Romanovsky @ 2016-06-01 16:14 ` Greg KH 2016-06-01 16:47 ` Leon Romanovsky 2016-06-01 16:25 ` Marciniszyn, Mike 1 sibling, 1 reply; 6+ messages in thread From: Greg KH @ 2016-06-01 16:14 UTC (permalink / raw) To: Leon Romanovsky; +Cc: Mike Marciniszyn, stable, linux-rdma On Wed, Jun 01, 2016 at 06:44:40PM +0300, Leon Romanovsky wrote: > On Wed, Jun 01, 2016 at 10:38:12AM -0400, Mike Marciniszyn wrote: > > Upstream commit 7049de65c9e5 into 4.6. > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ > Is it part of the commit message? It's enough for me to know what to do here :) thanks, greg k-h ^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH] IB/hfi1: Fix hard lockup due to not using save/restore spin lock 2016-06-01 16:14 ` Greg KH @ 2016-06-01 16:47 ` Leon Romanovsky 2016-06-01 16:50 ` Marciniszyn, Mike 0 siblings, 1 reply; 6+ messages in thread From: Leon Romanovsky @ 2016-06-01 16:47 UTC (permalink / raw) To: Greg KH; +Cc: Mike Marciniszyn, stable, linux-rdma [-- Attachment #1: Type: text/plain, Size: 463 bytes --] On Wed, Jun 01, 2016 at 09:14:59AM -0700, Greg KH wrote: > On Wed, Jun 01, 2016 at 06:44:40PM +0300, Leon Romanovsky wrote: > > On Wed, Jun 01, 2016 at 10:38:12AM -0400, Mike Marciniszyn wrote: > > > Upstream commit 7049de65c9e5 into 4.6. > > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ > > Is it part of the commit message? > > It's enough for me to know what to do here :) Good to know, I always used CC: stable notation. > > thanks, > > greg k-h [-- Attachment #2: Digital signature --] [-- Type: application/pgp-signature, Size: 819 bytes --] ^ permalink raw reply [flat|nested] 6+ messages in thread
* RE: [PATCH] IB/hfi1: Fix hard lockup due to not using save/restore spin lock 2016-06-01 16:47 ` Leon Romanovsky @ 2016-06-01 16:50 ` Marciniszyn, Mike 0 siblings, 0 replies; 6+ messages in thread From: Marciniszyn, Mike @ 2016-06-01 16:50 UTC (permalink / raw) To: leon@kernel.org Cc: stable@vger.kernel.org, linux-rdma@vger.kernel.org, Greg KH > > On Wed, Jun 01, 2016 at 09:14:59AM -0700, Greg KH wrote: > > On Wed, Jun 01, 2016 at 06:44:40PM +0300, Leon Romanovsky wrote: > > > On Wed, Jun 01, 2016 at 10:38:12AM -0400, Mike Marciniszyn wrote: > > > > Upstream commit 7049de65c9e5 into 4.6. > > > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ > > > Is it part of the commit message? > > > > It's enough for me to know what to do here :) > > Good to know, I always used CC: stable notation. > The patch didn't port cleanly because of the staging -> drivers/infiniband move. Hence the option 3 choice for submission. Mike ^ permalink raw reply [flat|nested] 6+ messages in thread
* RE: [PATCH] IB/hfi1: Fix hard lockup due to not using save/restore spin lock 2016-06-01 15:44 ` Leon Romanovsky 2016-06-01 16:14 ` Greg KH @ 2016-06-01 16:25 ` Marciniszyn, Mike 1 sibling, 0 replies; 6+ messages in thread From: Marciniszyn, Mike @ 2016-06-01 16:25 UTC (permalink / raw) To: leon@kernel.org; +Cc: stable@vger.kernel.org, linux-rdma@vger.kernel.org > > On Wed, Jun 01, 2016 at 10:38:12AM -0400, Mike Marciniszyn wrote: > > Upstream commit 7049de65c9e5 into 4.6. > ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ > Is it part of the commit message? > Yes per Documentation/stable_kernel_rules.txt: --- Option 3 --- Send the patch, after verifying that it follows the above rules, to stable@vger.kernel.org. You must note the upstream commit ID in the changelog of your submission, as well as the kernel version you wish it to be applied to. Mike ^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2016-06-01 16:50 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-06-01 14:38 [PATCH] IB/hfi1: Fix hard lockup due to not using save/restore spin lock Mike Marciniszyn
[not found] ` <20160601143812.26872.85826.stgit-K+u1se/DcYrLESAwzcoQNrvm/XP+8Wra@public.gmane.org>
2016-06-01 15:44 ` Leon Romanovsky
2016-06-01 16:14 ` Greg KH
2016-06-01 16:47 ` Leon Romanovsky
2016-06-01 16:50 ` Marciniszyn, Mike
2016-06-01 16:25 ` Marciniszyn, Mike
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox