diff mbox

[1/2] multipath-tools: report PATH_UP for both path groups in rdac if io-shipping is enabled

Message ID E463DF2B2E584B4A82673F53D62C2EF4FFAC96AE@cosmail01.lsi.com (mailing list archive)
State Deferred, archived
Headers show

Commit Message

babu moger April 8, 2011, 7:04 p.m. UTC
This patch reports PATH_UP for both the path groups if the RDAC storage is configured with i/o shipping.

Signed-off-by: Babu Moger <babu.moger@lsi.com>
Reviewed-by: Yanling Qi <yanling.qi@lsi.com> 
Reviewed-by: Somasundaram Krishnasamy <Somasundaram.Krishnasamy@lsi.com>

---



--
dm-devel mailing list
dm-devel@redhat.com
https://www.redhat.com/mailman/listinfo/dm-devel
diff mbox

Patch

--- multipath-tools/libmultipath/checkers/rdac.c.orig	2011-04-01 16:45:38.000000000 -0500
+++ multipath-tools/libmultipath/checkers/rdac.c	2011-04-01 16:58:43.000000000 -0500
@@ -218,7 +218,11 @@  libcheck_check (struct checker * c)
 		goto done;
 	}
 
-	ret = ((inq.avtcvp & 0x1) ? PATH_UP : PATH_GHOST);
+	/* If owner set or ioship mode is enabled return PATH_UP always */
+	if ((inq.avtcvp & 0x1) || ((inq.avtcvp >> 5) & 0x1))
+		ret = PATH_UP;
+	else
+		ret = PATH_GHOST;
 
 done:
 	switch (ret) {