]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
scsi: core: Handle depopulation and restoration in progress
authorDouglas Gilbert <dgilbert@interlog.com>
Sun, 15 Oct 2023 05:06:50 +0000 (01:06 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 27 Feb 2025 12:10:46 +0000 (04:10 -0800)
[ Upstream commit 2bbeb8d12404cf0603f513fc33269ef9abfbb396 ]

The default handling of the NOT READY sense key is to wait for the device
to become ready. The "wait" is assumed to be relatively short. However
there is a sub-class of NOT READY that have the "... in progress" phrase in
their additional sense code and these can take much longer.  Following on
from commit 505aa4b6a883 ("scsi: sd: Defer spinning up drive while SANITIZE
is in progress") we now have element depopulation and restoration that can
take a long time.  For example, over 24 hours for a 20 TB, 7200 rpm hard
disk to depopulate 1 of its 20 elements.

Add handling of ASC/ASCQ: 0x4,0x24 (depopulation in progress)
and ASC/ASCQ: 0x4,0x25 (depopulation restoration in progress)
to sd.c . The scsi_lib.c has incomplete handling of these
two messages, so complete it.

Signed-off-by: Douglas Gilbert <dgilbert@interlog.com>
Link: https://lore.kernel.org/r/20231015050650.131145-1-dgilbert@interlog.com
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Stable-dep-of: 9ff7c383b8ac ("scsi: core: Do not retry I/Os during depopulation")
Signed-off-by: Sasha Levin <sashal@kernel.org>
drivers/scsi/scsi_lib.c
drivers/scsi/sd.c

index 97def2619ecf2a72abd037d9bedcbaaec048e267..2f54e1a853099c688c254a23b169ced40fb15d8a 100644 (file)
@@ -775,6 +775,7 @@ static void scsi_io_completion_action(struct scsi_cmnd *cmd, int result)
                                case 0x1b: /* sanitize in progress */
                                case 0x1d: /* configuration in progress */
                                case 0x24: /* depopulation in progress */
+                               case 0x25: /* depopulation restore in progress */
                                        action = ACTION_DELAYED_RETRY;
                                        break;
                                case 0x0a: /* ALUA state transition */
index 2c627deedc1fa2d70c9dc55e4bb9fbd8f8b045cc..fe694fec16b516cc07db737fb3b8a8d3d98ad7bf 100644 (file)
@@ -2309,6 +2309,10 @@ sd_spinup_disk(struct scsi_disk *sdkp)
                                break;  /* unavailable */
                        if (sshdr.asc == 4 && sshdr.ascq == 0x1b)
                                break;  /* sanitize in progress */
+                       if (sshdr.asc == 4 && sshdr.ascq == 0x24)
+                               break;  /* depopulation in progress */
+                       if (sshdr.asc == 4 && sshdr.ascq == 0x25)
+                               break;  /* depopulation restoration in progress */
                        /*
                         * Issue command to spin up drive when not ready
                         */