summaryrefslogtreecommitdiffstats
path: root/0058-UP-fix-failback.patch
diff options
context:
space:
mode:
authorBenjamin Marzinski <bmarzins@redhat.com>2013-07-25 10:15:48 -0500
committerBenjamin Marzinski <bmarzins@redhat.com>2013-07-25 10:15:48 -0500
commitaba856f28c21347a5ef6ab0ec2813b860261db1c (patch)
tree07b4ab8bd4145e5096e9f36408f8cef09417b984 /0058-UP-fix-failback.patch
parent924a2dabc44bbb7048b452dee199ba0813092fa7 (diff)
downloaddevice-mapper-multipath-aba856f28c21347a5ef6ab0ec2813b860261db1c.tar.gz
device-mapper-multipath-aba856f28c21347a5ef6ab0ec2813b860261db1c.tar.xz
device-mapper-multipath-aba856f28c21347a5ef6ab0ec2813b860261db1c.zip
device-mapper-multipath-0.4.9-55
Modify 0015-RH-fix-output-buffer.patch * Fix memory leak Add 0048-RH-print-defaults.patch Add 0049-RH-remove-ID_FS_TYPE.patch * remove ID_FS_TYPE udev enviroment variable for multipath devices Add 0051-UP-fix-cli-resize.patch * check before dereferencing variables Add 0052-RH-fix-bad-derefs.patch * setup multipath free the multipath device when it fails, so don't keep using it. Add 0053-UP-fix-failback.patch * setting failback in the devices section was broken Add 0054-UP-keep-udev-ref.patch * multipathd needs to keep the same udev object across reconfigures Add 0055-UP-handle-quiesced-paths.patch * quiesced paths should be treated as down Add 0056-UP-alua-prio-fix.patch * Don't count the preferred bit for paths that are active/optimized Add 0057-UP-fix-tmo.patch * Cleanup how multipath sets dev_loss_tmo and fast_io_fail_tmo. Also make multipath get changing values directly from sysfs, instead of from udev, which caches them. Add 0058-UP-fix-failback.patch * make failback print the default value when you show configs. Add 0059-UP-flush-failure-queueing.patch * If you can't flush a multipath device, restore the queue_if_no_paths value Add 0060-UP-uevent-loop-udev.patch * make ueventloop grab it's own udev reference, since it is cancelled asychnrously.
Diffstat (limited to '0058-UP-fix-failback.patch')
-rw-r--r--0058-UP-fix-failback.patch17
1 files changed, 17 insertions, 0 deletions
diff --git a/0058-UP-fix-failback.patch b/0058-UP-fix-failback.patch
new file mode 100644
index 0000000..d1fbaeb
--- /dev/null
+++ b/0058-UP-fix-failback.patch
@@ -0,0 +1,17 @@
+---
+ libmultipath/dict.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+Index: multipath-tools-130222/libmultipath/dict.c
+===================================================================
+--- multipath-tools-130222.orig/libmultipath/dict.c
++++ multipath-tools-130222/libmultipath/dict.c
+@@ -2562,7 +2562,7 @@ snprint_def_failback (char * buff, int l
+ if (!pgfailback)
+ pgfailback = DEFAULT_FAILBACK;
+
+- switch(conf->pgfailback) {
++ switch(pgfailback) {
+ case FAILBACK_UNDEF:
+ break;
+ case -FAILBACK_MANUAL: