summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorQuat Le <quat.le@oracle.com>2021-06-29 08:58:26 -0700
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2021-07-14 16:56:54 +0200
commitfb0c0a04e4243d39e6dc973efa63e139d2bedfdf (patch)
treee7bfa40fa4dee1dd37b7bac05b34f78a04d324af
parent2b541b6c7432adb6cff21727515a7d94c037c30d (diff)
downloadlinux-stable-fb0c0a04e4243d39e6dc973efa63e139d2bedfdf.tar.gz
linux-stable-fb0c0a04e4243d39e6dc973efa63e139d2bedfdf.tar.bz2
linux-stable-fb0c0a04e4243d39e6dc973efa63e139d2bedfdf.zip
scsi: core: Retry I/O for Notify (Enable Spinup) Required error
commit 104739aca4488909175e9e31d5cd7d75b82a2046 upstream. If the device is power-cycled, it takes time for the initiator to transmit the periodic NOTIFY (ENABLE SPINUP) SAS primitive, and for the device to respond to the primitive to become ACTIVE. Retry the I/O request to allow the device time to become ACTIVE. Cc: stable@vger.kernel.org Link: https://lore.kernel.org/r/20210629155826.48441-1-quat.le@oracle.com Reviewed-by: Bart Van Assche <bvanassche@acm.org> Signed-off-by: Quat Le <quat.le@oracle.com> Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/scsi/scsi_lib.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/scsi/scsi_lib.c b/drivers/scsi/scsi_lib.c
index 31d7a6ddc9db..a045d00509d5 100644
--- a/drivers/scsi/scsi_lib.c
+++ b/drivers/scsi/scsi_lib.c
@@ -760,6 +760,7 @@ static void scsi_io_completion_action(struct scsi_cmnd *cmd, int result)
case 0x07: /* operation in progress */
case 0x08: /* Long write in progress */
case 0x09: /* self test in progress */
+ case 0x11: /* notify (enable spinup) required */
case 0x14: /* space allocation in progress */
case 0x1a: /* start stop unit in progress */
case 0x1b: /* sanitize in progress */