* [PATCH 1/4] ipr: Fix locking for unit attention handling
@ 2015-06-12 1:45 Brian King
2015-06-15 14:44 ` wenxiong
2015-06-16 14:40 ` Gabriel Krisman Bertazi
0 siblings, 2 replies; 3+ messages in thread
From: Brian King @ 2015-06-12 1:45 UTC (permalink / raw)
To: James.Bottomley; +Cc: linux-scsi, wenxiong, gbertazi, brking, stable
Make sure we have the host lock held when calling scsi_report_bus_reset. Fixes
a crash seen as the __devices list in the scsi host was changing as we were
iterating through it.
Cc: <stable@vger.kernel.org>
Signed-off-by: Brian King <brking@linux.vnet.ibm.com>
---
drivers/scsi/ipr.c | 12 +++++++-----
1 file changed, 7 insertions(+), 5 deletions(-)
diff -puN drivers/scsi/ipr.c~ipr_erp_start_locking drivers/scsi/ipr.c
--- linux/drivers/scsi/ipr.c~ipr_erp_start_locking 2015-06-11 20:18:13.806674185 -0500
+++ linux-bjking1/drivers/scsi/ipr.c 2015-06-11 20:18:13.814674115 -0500
@@ -6263,21 +6263,23 @@ static void ipr_scsi_done(struct ipr_cmn
struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
struct scsi_cmnd *scsi_cmd = ipr_cmd->scsi_cmd;
u32 ioasc = be32_to_cpu(ipr_cmd->s.ioasa.hdr.ioasc);
- unsigned long hrrq_flags;
+ unsigned long lock_flags;
scsi_set_resid(scsi_cmd, be32_to_cpu(ipr_cmd->s.ioasa.hdr.residual_data_len));
if (likely(IPR_IOASC_SENSE_KEY(ioasc) == 0)) {
scsi_dma_unmap(scsi_cmd);
- spin_lock_irqsave(ipr_cmd->hrrq->lock, hrrq_flags);
+ spin_lock_irqsave(ipr_cmd->hrrq->lock, lock_flags);
list_add_tail(&ipr_cmd->queue, &ipr_cmd->hrrq->hrrq_free_q);
scsi_cmd->scsi_done(scsi_cmd);
- spin_unlock_irqrestore(ipr_cmd->hrrq->lock, hrrq_flags);
+ spin_unlock_irqrestore(ipr_cmd->hrrq->lock, lock_flags);
} else {
- spin_lock_irqsave(ipr_cmd->hrrq->lock, hrrq_flags);
+ spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
+ spin_lock(&ipr_cmd->hrrq->_lock);
ipr_erp_start(ioa_cfg, ipr_cmd);
- spin_unlock_irqrestore(ipr_cmd->hrrq->lock, hrrq_flags);
+ spin_unlock(&ipr_cmd->hrrq->_lock);
+ spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
}
}
_
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH 1/4] ipr: Fix locking for unit attention handling
2015-06-12 1:45 [PATCH 1/4] ipr: Fix locking for unit attention handling Brian King
@ 2015-06-15 14:44 ` wenxiong
2015-06-16 14:40 ` Gabriel Krisman Bertazi
1 sibling, 0 replies; 3+ messages in thread
From: wenxiong @ 2015-06-15 14:44 UTC (permalink / raw)
To: Brian King; +Cc: James.Bottomley, linux-scsi, gbertazi, stable
We have done stress test for a week with the patch and works fine.
Reviewed-by: Wen Xiong <wenxiong@linux.vnet.ibm.com>
Thanks,
Wendy
Quoting Brian King <brking@linux.vnet.ibm.com>:
> Make sure we have the host lock held when calling
> scsi_report_bus_reset. Fixes
> a crash seen as the __devices list in the scsi host was changing as we were
> iterating through it.
>
> Cc: <stable@vger.kernel.org>
> Signed-off-by: Brian King <brking@linux.vnet.ibm.com>
> ---
>
> drivers/scsi/ipr.c | 12 +++++++-----
> 1 file changed, 7 insertions(+), 5 deletions(-)
>
> diff -puN drivers/scsi/ipr.c~ipr_erp_start_locking drivers/scsi/ipr.c
> --- linux/drivers/scsi/ipr.c~ipr_erp_start_locking 2015-06-11
> 20:18:13.806674185 -0500
> +++ linux-bjking1/drivers/scsi/ipr.c 2015-06-11 20:18:13.814674115 -0500
> @@ -6263,21 +6263,23 @@ static void ipr_scsi_done(struct ipr_cmn
> struct ipr_ioa_cfg *ioa_cfg = ipr_cmd->ioa_cfg;
> struct scsi_cmnd *scsi_cmd = ipr_cmd->scsi_cmd;
> u32 ioasc = be32_to_cpu(ipr_cmd->s.ioasa.hdr.ioasc);
> - unsigned long hrrq_flags;
> + unsigned long lock_flags;
>
> scsi_set_resid(scsi_cmd,
> be32_to_cpu(ipr_cmd->s.ioasa.hdr.residual_data_len));
>
> if (likely(IPR_IOASC_SENSE_KEY(ioasc) == 0)) {
> scsi_dma_unmap(scsi_cmd);
>
> - spin_lock_irqsave(ipr_cmd->hrrq->lock, hrrq_flags);
> + spin_lock_irqsave(ipr_cmd->hrrq->lock, lock_flags);
> list_add_tail(&ipr_cmd->queue, &ipr_cmd->hrrq->hrrq_free_q);
> scsi_cmd->scsi_done(scsi_cmd);
> - spin_unlock_irqrestore(ipr_cmd->hrrq->lock, hrrq_flags);
> + spin_unlock_irqrestore(ipr_cmd->hrrq->lock, lock_flags);
> } else {
> - spin_lock_irqsave(ipr_cmd->hrrq->lock, hrrq_flags);
> + spin_lock_irqsave(ioa_cfg->host->host_lock, lock_flags);
> + spin_lock(&ipr_cmd->hrrq->_lock);
> ipr_erp_start(ioa_cfg, ipr_cmd);
> - spin_unlock_irqrestore(ipr_cmd->hrrq->lock, hrrq_flags);
> + spin_unlock(&ipr_cmd->hrrq->_lock);
> + spin_unlock_irqrestore(ioa_cfg->host->host_lock, lock_flags);
> }
> }
>
> _
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH 1/4] ipr: Fix locking for unit attention handling
2015-06-12 1:45 [PATCH 1/4] ipr: Fix locking for unit attention handling Brian King
2015-06-15 14:44 ` wenxiong
@ 2015-06-16 14:40 ` Gabriel Krisman Bertazi
1 sibling, 0 replies; 3+ messages in thread
From: Gabriel Krisman Bertazi @ 2015-06-16 14:40 UTC (permalink / raw)
To: Brian King; +Cc: James.Bottomley, linux-scsi, wenxiong, gbertazi, stable
Brian King <brking@linux.vnet.ibm.com> writes:
> Make sure we have the host lock held when calling scsi_report_bus_reset. Fixes
> a crash seen as the __devices list in the scsi host was changing as we were
> iterating through it.
Brian,
The patch series look good to me as a whole, thanks for doing that.
Please add the tag:
Reviewed-by: Gabriel Krisman Bertazi <krisman@linux.vnet.ibm.com>
Thanks,
--
Gabriel Krisman Bertazi
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-06-16 14:40 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-12 1:45 [PATCH 1/4] ipr: Fix locking for unit attention handling Brian King
2015-06-15 14:44 ` wenxiong
2015-06-16 14:40 ` Gabriel Krisman Bertazi
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).