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

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