public inbox for linux-scsi@vger.kernel.org
 help / color / mirror / Atom feed
* [RESUBMIT][Patch] scsi_dh_rdac: retry IO for 06/3f/03 in rdac_check_sense fn
@ 2010-10-26 13:53 Chauhan, Vijay
  2010-10-26 18:55 ` Malahal Naineni
  2010-10-26 19:18 ` [dm-devel] " Mike Christie
  0 siblings, 2 replies; 7+ messages in thread
From: Chauhan, Vijay @ 2010-10-26 13:53 UTC (permalink / raw)
  To: James Bottomley, device-mapper development
  Cc: sekharan@us.ibm.com, linux-scsi@vger.kernel.org

Resubmitting this patch to get the attention.

This patch adds retry for the IO returned with 06/3f/03((INQUIRY_DATA_CHANGED)) sense code  in rdac_check_sense(). IO returned with 06/3f/03 from controller are currently failed by scsi mid layer, as a reason momentarily path failure is noticed by DM multipath. 

Signed-off-by: Vijay Chauhan<vijay.chauhan@lsi.com>
Reviewed-by: Babu Moger <babu.moger@lsi.com>
Reviewed-by: Bob Stankey <Robert.stankey@lsi.com>
---

diff -uprN linux-2.6.35-rc6-orig/drivers/scsi/device_handler/scsi_dh_rdac.c linux-2.6.35-rc6/drivers/scsi/device_handler/scsi_dh_rdac.c
--- linux-2.6.35-rc6-orig/drivers/scsi/device_handler/scsi_dh_rdac.c	2010-07-22 15:13:38.000000000 -0400
+++ linux-2.6.35-rc6/drivers/scsi/device_handler/scsi_dh_rdac.c	2010-07-27 12:13:58.000000000 -0400
@@ -738,6 +738,11 @@ static int rdac_check_sense(struct scsi_
 			 * Quiescence in progress , just retry.
 			 */
 			return ADD_TO_MLQUEUE;
+		if (sense_hdr->asc == 0x3f && sense_hdr->ascq == 0x03)
+			/*
+			 * INQUIRY DATA has changed, retry again.
+			 */
+			return ADD_TO_MLQUEUE;
 		break;
 	}
 	/* success just means we do not care what scsi-ml does */


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2010-10-26 20:27 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-10-26 13:53 [RESUBMIT][Patch] scsi_dh_rdac: retry IO for 06/3f/03 in rdac_check_sense fn Chauhan, Vijay
2010-10-26 18:55 ` Malahal Naineni
2010-10-26 19:18 ` [dm-devel] " Mike Christie
2010-10-26 19:21   ` James Bottomley
2010-10-26 19:32     ` Shyam_Iyer
2010-10-26 19:58       ` James Bottomley
2010-10-26 20:27         ` Shyam_Iyer

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox