Commit e37c7d9a0341a3577a071f4ac55912f38be229e2

Authored by Douglas Gilbert
Committed by Martin K. Petersen
1 parent 017b3f8a10

scsi: core: sanitize++ in progress

Commit 505aa4b6a883 ("scsi: sd: Defer spinning up drive while SANITIZE is
in progress") may not be sufficient, especially if the SCSI SANITIZE
command is sent via the bsg or sg pass-throughs, since they don't use the
sd driver.

Add "Sanitize in progress" plus some other recent "... in progress"
additional sense codes into the scsi mid-level so they are treated in a
similar fashion to "Format in progress".

[mkp: checkpatch]

Signed-off-by: Douglas Gilbert <dgilbert@interlog.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>

Showing 1 changed file with 4 additions and 0 deletions Side-by-side Diff

drivers/scsi/scsi_lib.c
... ... @@ -985,6 +985,10 @@
985 985 case 0x08: /* Long write in progress */
986 986 case 0x09: /* self test in progress */
987 987 case 0x14: /* space allocation in progress */
  988 + case 0x1a: /* start stop unit in progress */
  989 + case 0x1b: /* sanitize in progress */
  990 + case 0x1d: /* configuration in progress */
  991 + case 0x24: /* depopulation in progress */
988 992 action = ACTION_DELAYED_RETRY;
989 993 break;
990 994 default: