summaryrefslogtreecommitdiffstats
path: root/0123-UPBZ-1166072-fix-path-offline.patch
diff options
context:
space:
mode:
authorBenjamin Marzinski <bmarzins@redhat.com>2017-05-25 17:12:56 -0500
committerBenjamin Marzinski <bmarzins@redhat.com>2017-05-25 17:12:56 -0500
commita4bb435b339a71961c09722879c45649dec01057 (patch)
treed395b1874ed4e9fc7f4686e2581db05fab088ed1 /0123-UPBZ-1166072-fix-path-offline.patch
parent3591e72a603304adc6f8fb72fbe47ddbf8760eeb (diff)
downloaddevice-mapper-multipath-a4bb435b339a71961c09722879c45649dec01057.tar.gz
device-mapper-multipath-a4bb435b339a71961c09722879c45649dec01057.tar.xz
device-mapper-multipath-a4bb435b339a71961c09722879c45649dec01057.zip
device-mapper-multipath-0.7.1-1.gitf21166a
- Update Source to the latest upstream commit - Add 0001-libmultipath-add-comment-about-resuming.patch * posted upstream - Add 0002-multipath-attempt-at-common-multipath.rules.patch * under discussion upstream - Add 0003-RH-fixup-udev-rules-for-redhat.patch * Redhat uses different udev rules that some other distros, so multipath has run at a different time. Not all upstream distros link /sbin and /usr/sbin either. - Add 0004-RH-Remove-the-property-blacklist-exception-builtin.patch * Allow multipath to be used on devices without multiple paths. NAK'ed upstream, but requested by Red Hat - Add 0005-RH-don-t-start-without-a-config-file.patch * Don't start multipath unless a config file exists. NAK'ed upstream, but requested by Red Hat - Add 0006-RH-use-rpm-optflags-if-present.patch * Make the build system fedora friendly - Add 0007-RH-add-mpathconf.patch * Add tool to help configure multipath with Red Hat defaults. - Add 0008-RH-add-wwids-from-kernel-cmdline-mpath.wwids-with-A.patch * Make multipath able to claim devices based on the kernel command line NAK'ed upstream but requested by Red Hat - Add 0009-RH-trigger-change-uevent-on-new-device-creation.patch * under discussion upstream
Diffstat (limited to '0123-UPBZ-1166072-fix-path-offline.patch')
-rw-r--r--0123-UPBZ-1166072-fix-path-offline.patch19
1 files changed, 0 insertions, 19 deletions
diff --git a/0123-UPBZ-1166072-fix-path-offline.patch b/0123-UPBZ-1166072-fix-path-offline.patch
deleted file mode 100644
index 0f1a912..0000000
--- a/0123-UPBZ-1166072-fix-path-offline.patch
+++ /dev/null
@@ -1,19 +0,0 @@
----
- libmultipath/discovery.c | 4 +---
- 1 file changed, 1 insertion(+), 3 deletions(-)
-
-Index: multipath-tools-130222/libmultipath/discovery.c
-===================================================================
---- multipath-tools-130222.orig/libmultipath/discovery.c
-+++ multipath-tools-130222/libmultipath/discovery.c
-@@ -946,9 +946,7 @@ path_offline (struct path * pp)
-
- condlog(3, "%s: path state = %s", pp->dev, buff);
-
-- if (!strncmp(buff, "offline", 7) ||
-- !strncmp(buff, "quiesce", 7) ||
-- !strncmp(buff, "transport-offline", 17)) {
-+ if (!strncmp(buff, "offline", 7)) {
- pp->offline = 1;
- return PATH_DOWN;
- }