* [PATCH]scsi_dh_rdac: Retry for Quiescence in Progress in rdac device handler
@ 2009-01-26 15:59 Chauhan, Vijay
2009-01-26 21:04 ` Chandra Seetharaman
2009-02-10 20:44 ` James Bottomley
0 siblings, 2 replies; 3+ messages in thread
From: Chauhan, Vijay @ 2009-01-26 15:59 UTC (permalink / raw)
To: linux-scsi@vger.kernel.org; +Cc: dm-devel@redhat.com
During device discovery read capacity fails with 0x068b02 and sets the device size to 0. As a reason any I/O submitted to this path gets killed at sd_prep_fn with BLKPREP_KILL. This patch is to retry for 0x068b02. Please apply.
From: Vijay Chauhan<vijay.chauhan@lsi.com>
This patch adds retry for Quiescence in Progress in rdac device handler.
Signed-off-by: Vijay Chauhan <vijay.chauhan@lsi.com>
---
--- linux-2.6.29-rc2/drivers/scsi/device_handler/scsi_dh_rdac.c.orig 2009-01-26 20:46:05.000000000 +0530
+++ linux-2.6.29-rc2/drivers/scsi/device_handler/scsi_dh_rdac.c 2009-01-26 20:47:34.000000000 +0530
@@ -579,6 +579,11 @@ static int rdac_check_sense(struct scsi_
* Power On, Reset, or Bus Device Reset, just retry.
*/
return ADD_TO_MLQUEUE;
+ if (sense_hdr->asc == 0x8b && sense_hdr->ascq == 0x02)
+ /*
+ * Quiescence in progress , just retry.
+ */
+ return ADD_TO_MLQUEUE;
break;
}
/* success just means we do not care what scsi-ml does */
--
^ permalink raw reply [flat|nested] 3+ messages in thread* Re: [PATCH]scsi_dh_rdac: Retry for Quiescence in Progress in rdac device handler
2009-01-26 15:59 [PATCH]scsi_dh_rdac: Retry for Quiescence in Progress in rdac device handler Chauhan, Vijay
@ 2009-01-26 21:04 ` Chandra Seetharaman
2009-02-10 20:44 ` James Bottomley
1 sibling, 0 replies; 3+ messages in thread
From: Chandra Seetharaman @ 2009-01-26 21:04 UTC (permalink / raw)
To: James Bottomley
Cc: linux-scsi@vger.kernel.org, dm-devel@redhat.com, Chauhan, Vijay
On Mon, 2009-01-26 at 21:29 +0530, Chauhan, Vijay wrote:
> During device discovery read capacity fails with 0x068b02 and sets the device size to 0. As a reason any I/O submitted to this path gets killed at sd_prep_fn with BLKPREP_KILL. This patch is to retry for 0x068b02. Please apply.
>
> From: Vijay Chauhan<vijay.chauhan@lsi.com>
>
> This patch adds retry for Quiescence in Progress in rdac device handler.
>
> Signed-off-by: Vijay Chauhan <vijay.chauhan@lsi.com>
Acked-by: Chandra Seetharaman <sekharan@us.ibm.com>
>
> ---
> --- linux-2.6.29-rc2/drivers/scsi/device_handler/scsi_dh_rdac.c.orig 2009-01-26 20:46:05.000000000 +0530
> +++ linux-2.6.29-rc2/drivers/scsi/device_handler/scsi_dh_rdac.c 2009-01-26 20:47:34.000000000 +0530
> @@ -579,6 +579,11 @@ static int rdac_check_sense(struct scsi_
> * Power On, Reset, or Bus Device Reset, just retry.
> */
> return ADD_TO_MLQUEUE;
> + if (sense_hdr->asc == 0x8b && sense_hdr->ascq == 0x02)
> + /*
> + * Quiescence in progress , just retry.
> + */
> + return ADD_TO_MLQUEUE;
> break;
> }
> /* success just means we do not care what scsi-ml does */
> --
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH]scsi_dh_rdac: Retry for Quiescence in Progress in rdac device handler
2009-01-26 15:59 [PATCH]scsi_dh_rdac: Retry for Quiescence in Progress in rdac device handler Chauhan, Vijay
2009-01-26 21:04 ` Chandra Seetharaman
@ 2009-02-10 20:44 ` James Bottomley
1 sibling, 0 replies; 3+ messages in thread
From: James Bottomley @ 2009-02-10 20:44 UTC (permalink / raw)
To: Chauhan, Vijay
Cc: linux-scsi@vger.kernel.org, dm-devel@redhat.com,
sekharan@us.ibm.com
On Mon, 2009-01-26 at 21:29 +0530, Chauhan, Vijay wrote:
> During device discovery read capacity fails with 0x068b02 and sets the device size to 0. As a reason any I/O submitted to this path gets killed at sd_prep_fn with BLKPREP_KILL. This patch is to retry for 0x068b02. Please apply.
>
> From: Vijay Chauhan<vijay.chauhan@lsi.com>
>
> This patch adds retry for Quiescence in Progress in rdac device handler.
>
> Signed-off-by: Vijay Chauhan <vijay.chauhan@lsi.com>
>
> ---
> --- linux-2.6.29-rc2/drivers/scsi/device_handler/scsi_dh_rdac.c.orig 2009-01-26 20:46:05.000000000 +0530
> +++ linux-2.6.29-rc2/drivers/scsi/device_handler/scsi_dh_rdac.c 2009-01-26 20:47:34.000000000 +0530
> @@ -579,6 +579,11 @@ static int rdac_check_sense(struct scsi_
> * Power On, Reset, or Bus Device Reset, just retry.
> */
> return ADD_TO_MLQUEUE;
> + if (sense_hdr->asc == 0x8b && sense_hdr->ascq == 0x02)
> + /*
> + * Quiescence in progress , just retry.
> + */
> + return ADD_TO_MLQUEUE;
> break;
> }
> /* success just means we do not care what scsi-ml does */
This patch has all the tabs converted to spaces. Please see
Documentation/SubmittingPatches
Documentation/email-clients.txt
for preventing this in future.
James
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2009-02-10 20:44 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-01-26 15:59 [PATCH]scsi_dh_rdac: Retry for Quiescence in Progress in rdac device handler Chauhan, Vijay
2009-01-26 21:04 ` Chandra Seetharaman
2009-02-10 20:44 ` James Bottomley
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox