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

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