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

Moger, Babu Babu.Moger at lsi.com
Fri Apr 8 19:04:45 UTC 2011


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 at lsi.com>
Reviewed-by: Yanling Qi <yanling.qi at lsi.com> 
Reviewed-by: Somasundaram Krishnasamy <Somasundaram.Krishnasamy at lsi.com>

---
--- 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) {






More information about the dm-devel mailing list