* [PATCH][v3] scsi: Handle MLQUEUE busy response in scsi_send_eh_cmnd
@ 2013-04-24 11:32 Hannes Reinecke
2013-04-24 14:48 ` James Bottomley
0 siblings, 1 reply; 3+ messages in thread
From: Hannes Reinecke @ 2013-04-24 11:32 UTC (permalink / raw)
To: James Bottomley; +Cc: linux-scsi, Hannes Reinecke, Wen Xiong, Brian King
scsi_send_eh_cmnd() is calling queuecommand() directly, so
it needs to check the return value here.
The only valid return codes for queuecommand() are 'busy'
states, so we need to wait for a bit to allow the LLDD
to recover.
Based on an earlier patch from Wen Xiong.
Cc: Wen Xiong <wenxiong@linux.vnet.ibm.com>
Cc: Brian King <brking@linux.vnet.ibm.com>
Signed-off-by: Hannes Reinecke <hare@suse.de>
diff --git a/drivers/scsi/scsi_error.c b/drivers/scsi/scsi_error.c
index c1b05a8..1fc6da94 100644
--- a/drivers/scsi/scsi_error.c
+++ b/drivers/scsi/scsi_error.c
@@ -791,22 +791,32 @@ static int scsi_send_eh_cmnd(struct scsi_cmnd *scmd, unsigned char *cmnd,
struct scsi_device *sdev = scmd->device;
struct Scsi_Host *shost = sdev->host;
DECLARE_COMPLETION_ONSTACK(done);
- unsigned long timeleft;
+ unsigned long timeleft = timeout;
struct scsi_eh_save ses;
+ const int stall_for = min(HZ/10, 1);
int rtn;
+retry:
scsi_eh_prep_cmnd(scmd, &ses, cmnd, cmnd_size, sense_bytes);
shost->eh_action = &done;
scsi_log_send(scmd);
scmd->scsi_done = scsi_eh_done;
- shost->hostt->queuecommand(shost, scmd);
-
- timeleft = wait_for_completion_timeout(&done, timeout);
+ rtn = shost->hostt->queuecommand(shost, scmd);
+ if (rtn) {
+ if (timeleft) {
+ scsi_eh_restore_cmnd(scmd, &ses);
+ timeleft -= stall_for;
+ msleep(stall_for);
+ goto retry;
+ }
+ rtn = NEEDS_RETRY;
+ } else
+ timeleft = wait_for_completion_timeout(&done, timeout);
shost->eh_action = NULL;
- scsi_log_completion(scmd, SUCCESS);
+ scsi_log_completion(scmd, rtn);
SCSI_LOG_ERROR_RECOVERY(3,
printk("%s: scmd: %p, timeleft: %ld\n",
@@ -837,7 +847,7 @@ static int scsi_send_eh_cmnd(struct scsi_cmnd *scmd, unsigned char *cmnd,
rtn = FAILED;
break;
}
- } else {
+ } else if (!rtn) {
scsi_abort_eh_cmnd(scmd);
rtn = FAILED;
}
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH][v3] scsi: Handle MLQUEUE busy response in scsi_send_eh_cmnd
2013-04-24 11:32 [PATCH][v3] scsi: Handle MLQUEUE busy response in scsi_send_eh_cmnd Hannes Reinecke
@ 2013-04-24 14:48 ` James Bottomley
2013-04-25 5:53 ` Hannes Reinecke
0 siblings, 1 reply; 3+ messages in thread
From: James Bottomley @ 2013-04-24 14:48 UTC (permalink / raw)
To: Hannes Reinecke; +Cc: linux-scsi@vger.kernel.org, Wen Xiong, Brian King
On Wed, 2013-04-24 at 13:32 +0200, Hannes Reinecke wrote:
> scsi_send_eh_cmnd() is calling queuecommand() directly, so
> it needs to check the return value here.
> The only valid return codes for queuecommand() are 'busy'
> states, so we need to wait for a bit to allow the LLDD
> to recover.
>
> Based on an earlier patch from Wen Xiong.
This looks good, only one minor nitpick:
> Cc: Wen Xiong <wenxiong@linux.vnet.ibm.com>
> Cc: Brian King <brking@linux.vnet.ibm.com>
> Signed-off-by: Hannes Reinecke <hare@suse.de>
>
> diff --git a/drivers/scsi/scsi_error.c b/drivers/scsi/scsi_error.c
> index c1b05a8..1fc6da94 100644
> --- a/drivers/scsi/scsi_error.c
> +++ b/drivers/scsi/scsi_error.c
> @@ -791,22 +791,32 @@ static int scsi_send_eh_cmnd(struct scsi_cmnd *scmd, unsigned char *cmnd,
> struct scsi_device *sdev = scmd->device;
> struct Scsi_Host *shost = sdev->host;
> DECLARE_COMPLETION_ONSTACK(done);
> - unsigned long timeleft;
> + unsigned long timeleft = timeout;
> struct scsi_eh_save ses;
> + const int stall_for = min(HZ/10, 1);
> int rtn;
>
> +retry:
> scsi_eh_prep_cmnd(scmd, &ses, cmnd, cmnd_size, sense_bytes);
> shost->eh_action = &done;
>
> scsi_log_send(scmd);
> scmd->scsi_done = scsi_eh_done;
> - shost->hostt->queuecommand(shost, scmd);
> -
> - timeleft = wait_for_completion_timeout(&done, timeout);
> + rtn = shost->hostt->queuecommand(shost, scmd);
> + if (rtn) {
> + if (timeleft) {
> + scsi_eh_restore_cmnd(scmd, &ses);
> + timeleft -= stall_for;
> + msleep(stall_for);
Stall for is in HZ: need to convert to ms, so
msleep(stall_for * 1000/HZ);
I also don't see a need to restore and reprep the command each time, but
I don't see a problem with it either.
James
> + goto retry;
> + }
> + rtn = NEEDS_RETRY;
> + } else
> + timeleft = wait_for_completion_timeout(&done, timeout);
>
> shost->eh_action = NULL;
>
> - scsi_log_completion(scmd, SUCCESS);
> + scsi_log_completion(scmd, rtn);
>
> SCSI_LOG_ERROR_RECOVERY(3,
> printk("%s: scmd: %p, timeleft: %ld\n",
> @@ -837,7 +847,7 @@ static int scsi_send_eh_cmnd(struct scsi_cmnd *scmd, unsigned char *cmnd,
> rtn = FAILED;
> break;
> }
> - } else {
> + } else if (!rtn) {
> scsi_abort_eh_cmnd(scmd);
> rtn = FAILED;
> }
> --
> To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH][v3] scsi: Handle MLQUEUE busy response in scsi_send_eh_cmnd
2013-04-24 14:48 ` James Bottomley
@ 2013-04-25 5:53 ` Hannes Reinecke
0 siblings, 0 replies; 3+ messages in thread
From: Hannes Reinecke @ 2013-04-25 5:53 UTC (permalink / raw)
To: James Bottomley; +Cc: linux-scsi@vger.kernel.org, Wen Xiong, Brian King
On 04/24/2013 04:48 PM, James Bottomley wrote:
> On Wed, 2013-04-24 at 13:32 +0200, Hannes Reinecke wrote:
>> scsi_send_eh_cmnd() is calling queuecommand() directly, so
>> it needs to check the return value here.
>> The only valid return codes for queuecommand() are 'busy'
>> states, so we need to wait for a bit to allow the LLDD
>> to recover.
>>
>> Based on an earlier patch from Wen Xiong.
>
> This looks good, only one minor nitpick:
>
>> Cc: Wen Xiong <wenxiong@linux.vnet.ibm.com>
>> Cc: Brian King <brking@linux.vnet.ibm.com>
>> Signed-off-by: Hannes Reinecke <hare@suse.de>
>>
>> diff --git a/drivers/scsi/scsi_error.c b/drivers/scsi/scsi_error.c
>> index c1b05a8..1fc6da94 100644
>> --- a/drivers/scsi/scsi_error.c
>> +++ b/drivers/scsi/scsi_error.c
>> @@ -791,22 +791,32 @@ static int scsi_send_eh_cmnd(struct scsi_cmnd *scmd, unsigned char *cmnd,
>> struct scsi_device *sdev = scmd->device;
>> struct Scsi_Host *shost = sdev->host;
>> DECLARE_COMPLETION_ONSTACK(done);
>> - unsigned long timeleft;
>> + unsigned long timeleft = timeout;
>> struct scsi_eh_save ses;
>> + const int stall_for = min(HZ/10, 1);
>> int rtn;
>>
>> +retry:
>> scsi_eh_prep_cmnd(scmd, &ses, cmnd, cmnd_size, sense_bytes);
>> shost->eh_action = &done;
>>
>> scsi_log_send(scmd);
>> scmd->scsi_done = scsi_eh_done;
>> - shost->hostt->queuecommand(shost, scmd);
>> -
>> - timeleft = wait_for_completion_timeout(&done, timeout);
>> + rtn = shost->hostt->queuecommand(shost, scmd);
>> + if (rtn) {
>> + if (timeleft) {
>> + scsi_eh_restore_cmnd(scmd, &ses);
>> + timeleft -= stall_for;
>> + msleep(stall_for);
>
> Stall for is in HZ: need to convert to ms, so
>
> msleep(stall_for * 1000/HZ);
>
Right. Will be converting it.
> I also don't see a need to restore and reprep the command each time, but
> I don't see a problem with it either.
>
This was mainly thought as a safeguard here; just in case someone
else might be fiddling with the command. But yeah, it's not required.
Cheers,
Hannes
--
Dr. Hannes Reinecke zSeries & Storage
hare@suse.de +49 911 74053 688
SUSE LINUX Products GmbH, Maxfeldstr. 5, 90409 Nürnberg
GF: J. Hawn, J. Guild, F. Imendörffer, HRB 16746 (AG Nürnberg)
--
To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-04-25 5:53 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-04-24 11:32 [PATCH][v3] scsi: Handle MLQUEUE busy response in scsi_send_eh_cmnd Hannes Reinecke
2013-04-24 14:48 ` James Bottomley
2013-04-25 5:53 ` Hannes Reinecke
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox