]> git.ipfire.org Git - people/pmueller/ipfire-2.x.git/blame - src/patches/suse-2.6.27.39/patches.fixes/scsi-dh-rdac-retry-UA
Fix oinkmaster patch.
[people/pmueller/ipfire-2.x.git] / src / patches / suse-2.6.27.39 / patches.fixes / scsi-dh-rdac-retry-UA
CommitLineData
2cb7cef9
BS
1From: "Chauhan, Vijay" <Vijay.Chauhan@lsi.com>
2Subject: Retry for Quiescence in Progress in rdac device handler
3
4We found one issue related to failback in SLES11 RC2. Please find
5the description of the issue in this mail below. I have submitted
6a patch as fix to the dm community and likely to be accepted. We
7need the same fix in SLES11 too.
8
9
10Signed-off-by: Vijay Chauhan <vijay.chauhan@lsi.com>
11Signed-off-by: Hannes Reinecke <hare@suse.de>
12
13---
14--- linux-2.6.27.11-1/drivers/scsi/device_handler/scsi_dh_rdac.c.orig 2009-01-26 19:50:50.000000000 +0530
15+++ linux-2.6.27.11-1/drivers/scsi/device_handler/scsi_dh_rdac.c 2009-01-26 20:09:20.000000000 +0530
16@@ -578,6 +578,11 @@ static int rdac_check_sense(struct scsi_
17 * Power On, Reset, or Bus Device Reset, just retry.
18 */
19 return ADD_TO_MLQUEUE;
20+ if (sense_hdr->asc == 0x8b && sense_hdr->ascq == 0x02)
21+ /*
22+ * Quiescence in Progress, just retry.
23+ */
24+ return ADD_TO_MLQUEUE;
25 break;
26 }
27 /* success just means we do not care what scsi-ml does */