Blame SOURCES/0065-UPBZ-995538-fail-rdac-on-unavailable.patch

4728c8
---
4728c8
 libmultipath/checkers/rdac.c |    5 ++---
4728c8
 1 file changed, 2 insertions(+), 3 deletions(-)
4728c8
4728c8
Index: multipath-tools-130222/libmultipath/checkers/rdac.c
4728c8
===================================================================
4728c8
--- multipath-tools-130222.orig/libmultipath/checkers/rdac.c
4728c8
+++ multipath-tools-130222/libmultipath/checkers/rdac.c
4728c8
@@ -222,10 +222,9 @@ libcheck_check (struct checker * c)
4728c8
 		goto done;
4728c8
 	}
4728c8
 
4728c8
-	/* check if controller is in service mode */
4728c8
+	/* check if controller is reporting asymmetric access state of unavailable */
4728c8
 	if ((inq.avtcvp & 0x10) &&
4728c8
-	    ((inq.asym_access_state_cur & 0x0F) == 0x3) &&
4728c8
-	    (inq.vendor_specific_cur == 0x7)) {
4728c8
+	    ((inq.asym_access_state_cur & 0x0F) == 0x3)) {
4728c8
 		ret = PATH_DOWN;
4728c8
 		goto done;
4728c8
 	}