Blame SOURCES/0202-RHBZ-1362120-skip-prio.patch

4ae388
---
4ae388
 multipathd/main.c |    3 ++-
4ae388
 1 file changed, 2 insertions(+), 1 deletion(-)
4ae388
4ae388
Index: multipath-tools-130222/multipathd/main.c
4ae388
===================================================================
4ae388
--- multipath-tools-130222.orig/multipathd/main.c
4ae388
+++ multipath-tools-130222/multipathd/main.c
4ae388
@@ -1248,7 +1248,8 @@ int update_prio(struct path *pp, int ref
4ae388
 		return changed;
4ae388
 	}
4ae388
 	oldpriority = pp->priority;
4ae388
-	pathinfo(pp, conf->hwtable, DI_PRIO);
4ae388
+	if (pp->state != PATH_DOWN)
4ae388
+		pathinfo(pp, conf->hwtable, DI_PRIO);
4ae388
 
4ae388
 	if (pp->priority == oldpriority)
4ae388
 		return 0;