* [PATCH] scsi: core: Do not retry I/Os during depopulation
@ 2025-01-30 22:26 Igor Pylypiv
2025-01-30 22:36 ` Bart Van Assche
0 siblings, 1 reply; 3+ messages in thread
From: Igor Pylypiv @ 2025-01-30 22:26 UTC (permalink / raw)
To: James E.J. Bottomley, Martin K. Petersen
Cc: Douglas Gilbert, linux-scsi, linux-kernel, Igor Pylypiv
Fail I/Os instead of retry to prevent user space processes from being
blocked on the I/O completion for several minutes.
Retrying I/Os during "depopulation in progress" or "depopulation restore
in progress" results in a continuous retry loop until the depopulation
completes or until the I/O retry loop is aborted due to a timeout by
the scsi_cmd_runtime_exceeced().
Depopulation is slow and can take 24+ hours to complete on 20+ TB HDDs.
Most I/Os in the depopulation retry loop end up taking several minutes
before returning the failure to user space.
Signed-off-by: Igor Pylypiv <ipylypiv@google.com>
---
drivers/scsi/scsi_lib.c | 9 +++++++--
1 file changed, 7 insertions(+), 2 deletions(-)
diff --git a/drivers/scsi/scsi_lib.c b/drivers/scsi/scsi_lib.c
index e7ea1f04164a..3ab4c958da45 100644
--- a/drivers/scsi/scsi_lib.c
+++ b/drivers/scsi/scsi_lib.c
@@ -872,13 +872,18 @@ static void scsi_io_completion_action(struct scsi_cmnd *cmd, int result)
case 0x1a: /* start stop unit in progress */
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 */
action = ACTION_DELAYED_REPREP;
break;
+ /*
+ * Depopulation might take many hours,
+ * thus it is not worthwhile to retry.
+ */
+ case 0x24: /* depopulation in progress */
+ case 0x25: /* depopulation restore in progress */
+ fallthrough;
default:
action = ACTION_FAIL;
break;
--
2.48.1.362.g079036d154-goog
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] scsi: core: Do not retry I/Os during depopulation
2025-01-30 22:26 [PATCH] scsi: core: Do not retry I/Os during depopulation Igor Pylypiv
@ 2025-01-30 22:36 ` Bart Van Assche
2025-01-30 23:49 ` Igor Pylypiv
0 siblings, 1 reply; 3+ messages in thread
From: Bart Van Assche @ 2025-01-30 22:36 UTC (permalink / raw)
To: Igor Pylypiv, James E.J. Bottomley, Martin K. Petersen
Cc: Douglas Gilbert, linux-scsi, linux-kernel
On 1/30/25 2:26 PM, Igor Pylypiv wrote:
> Fail I/Os instead of retry to prevent user space processes from being
> blocked on the I/O completion for several minutes.
>
> Retrying I/Os during "depopulation in progress" or "depopulation restore
> in progress" results in a continuous retry loop until the depopulation
> completes or until the I/O retry loop is aborted due to a timeout by
> the scsi_cmd_runtime_exceeced().
>
> Depopulation is slow and can take 24+ hours to complete on 20+ TB HDDs.
> Most I/Os in the depopulation retry loop end up taking several minutes
> before returning the failure to user space.
Since this patch is a bug fix, please add Fixes: and Cc: stable tags.
Thanks,
Bart.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] scsi: core: Do not retry I/Os during depopulation
2025-01-30 22:36 ` Bart Van Assche
@ 2025-01-30 23:49 ` Igor Pylypiv
0 siblings, 0 replies; 3+ messages in thread
From: Igor Pylypiv @ 2025-01-30 23:49 UTC (permalink / raw)
To: Bart Van Assche
Cc: James E.J. Bottomley, Martin K. Petersen, Douglas Gilbert,
linux-scsi, linux-kernel
On Thu, Jan 30, 2025 at 02:36:35PM -0800, Bart Van Assche wrote:
> On 1/30/25 2:26 PM, Igor Pylypiv wrote:
> > Fail I/Os instead of retry to prevent user space processes from being
> > blocked on the I/O completion for several minutes.
> >
> > Retrying I/Os during "depopulation in progress" or "depopulation restore
> > in progress" results in a continuous retry loop until the depopulation
> > completes or until the I/O retry loop is aborted due to a timeout by
> > the scsi_cmd_runtime_exceeced().
> >
> > Depopulation is slow and can take 24+ hours to complete on 20+ TB HDDs.
> > Most I/Os in the depopulation retry loop end up taking several minutes
> > before returning the failure to user space.
>
> Since this patch is a bug fix, please add Fixes: and Cc: stable tags.
Thank you, Bart. I'll add the following tags to v2:
Cc: <stable@vger.kernel.org> # 4.18.x: 2bbeb8d scsi: core: Handle depopulation and restoration in progress"
Cc: <stable@vger.kernel.org> # 4.18.x
Fixes: e37c7d9a0341 ("scsi: core: sanitize++ in progress")
Thanks,
Igor
>
> Thanks,
>
> Bart.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-01-30 23:49 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-01-30 22:26 [PATCH] scsi: core: Do not retry I/Os during depopulation Igor Pylypiv
2025-01-30 22:36 ` Bart Van Assche
2025-01-30 23:49 ` Igor Pylypiv
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox