Blame SOURCES/0074-RHBZ-1056976-dm-mpath-rules.patch

e41771
---
e41771
 multipath/11-dm-mpath.rules |   34 ++++++++++++++++++++++++++++++++++
e41771
 multipath/Makefile          |    2 ++
e41771
 2 files changed, 36 insertions(+)
e41771
e41771
Index: multipath-tools-130222/multipath/11-dm-mpath.rules
e41771
===================================================================
e41771
--- /dev/null
e41771
+++ multipath-tools-130222/multipath/11-dm-mpath.rules
e41771
@@ -0,0 +1,34 @@
e41771
+ACTION!="add|change", GOTO="mpath_end"
e41771
+ENV{DM_UDEV_RULES_VSN}!="?*", GOTO="mpath_end"
e41771
+ENV{DM_UUID}!="mpath-?*", GOTO="mpath_end"
e41771
+
e41771
+# Do not initiate scanning if no path is available,
e41771
+# otherwise there would be a hang or IO error on access.
e41771
+# We'd like to avoid this, especially within udev processing.
e41771
+ENV{DM_NR_VALID_PATHS}!="?*", IMPORT{db}="DM_NR_VALID_PATHS"
e41771
+ENV{DM_NR_VALID_PATHS}=="0", ENV{DM_NOSCAN}="1"
e41771
+
e41771
+# Also skip all foreign rules if no path is available.
e41771
+# Remember the original value of DM_DISABLE_OTHER_RULES_FLAG
e41771
+# and restore it back once we have at least one path available.
e41771
+IMPORT{db}="DM_DISABLE_OTHER_RULES_FLAG_OLD"
e41771
+ENV{DM_ACTION}=="PATH_FAILED",\
e41771
+	ENV{DM_NR_VALID_PATHS}=="0",\
e41771
+	ENV{DM_DISABLE_OTHER_RULES_FLAG_OLD}=="",\
e41771
+	ENV{DM_DISABLE_OTHER_RULES_FLAG_OLD}="$env{DM_UDEV_DISABLE_OTHER_RULES_FLAG}",\
e41771
+	ENV{DM_UDEV_DISABLE_OTHER_RULES_FLAG}="1"
e41771
+ENV{DM_ACTION}=="PATH_REINSTATED",\
e41771
+	ENV{DM_NR_VALID_PATHS}=="1",\
e41771
+	ENV{DM_UDEV_DISABLE_OTHER_RULES_FLAG}="$env{DM_DISABLE_OTHER_RULES_FLAG_OLD}",\
e41771
+	ENV{DM_DISABLE_OTHER_RULES_FLAG_OLD}="",\
e41771
+	ENV{DM_ACTIVATION}="1"
e41771
+
e41771
+# DM_SUBSYSTEM_UDEV_FLAG0 is the "RELOAD" flag for multipath subsystem.
e41771
+# Drop the DM_ACTIVATION flag here as mpath reloads tables if any of its
e41771
+# paths are lost/recovered. For any stack above the mpath device, this is not
e41771
+# something that should be reacted upon since it would be useless extra work.
e41771
+# It's exactly mpath's job to provide *seamless* device access to any of the
e41771
+# paths that are available underneath.
e41771
+ENV{DM_SUBSYSTEM_UDEV_FLAG0}=="1", ENV{DM_ACTIVATION}="0"
e41771
+
e41771
+LABEL="mpath_end"
e41771
Index: multipath-tools-130222/multipath/Makefile
e41771
===================================================================
e41771
--- multipath-tools-130222.orig/multipath/Makefile
e41771
+++ multipath-tools-130222/multipath/Makefile
e41771
@@ -25,6 +25,7 @@ install:
e41771
 	$(INSTALL_PROGRAM) -m 755 mpathconf $(DESTDIR)$(bindir)/
e41771
 	$(INSTALL_PROGRAM) -d $(DESTDIR)/usr/lib/udev/rules.d
e41771
 	$(INSTALL_PROGRAM) -m 644 multipath.rules $(DESTDIR)/usr/lib/udev/rules.d/62-multipath.rules
e41771
+	$(INSTALL_PROGRAM) -m 644 11-dm-mpath.rules $(DESTDIR)/usr/lib/udev/rules.d/11-dm-mpath.rules
e41771
 	$(INSTALL_PROGRAM) -d $(DESTDIR)$(mandir)
e41771
 	$(INSTALL_PROGRAM) -m 644 $(EXEC).8.gz $(DESTDIR)$(mandir)
e41771
 	$(INSTALL_PROGRAM) -d $(DESTDIR)$(man5dir)
e41771
@@ -33,6 +34,7 @@ install:
e41771
 
e41771
 uninstall:
e41771
 	rm $(DESTDIR)/usr/lib/udev/rules.d/62-multipath.rules
e41771
+	rm $(DESTDIR)/usr/lib/udev/rules.d/11-dm-mpath.rules
e41771
 	rm $(DESTDIR)$(bindir)/$(EXEC)
e41771
 	rm $(DESTDIR)$(bindir)/mpathconf
e41771
 	rm $(DESTDIR)$(mandir)/$(EXEC).8.gz