fdb6ec8779
Add 0103-RH-cleanup-partmaps-code.patch * code refactoring to prepare for next patch Add 0104-RHBZ-631009-deferred-remove.patch * add deferred_remove option to /etc/multipath.conf Add 0105-RHBZ-1148979-fix-partition-mapping-creation-race-with-kpartx.patch * Only run kpartx on device activation Add 0106-RHBZ-1159337-fix-double-free.patch * made ev_remove_path exit immediately after failing setup_multipath, since it handles cleaning up the device Add 0107-RHBZ-1169935-no-new-devs.patch * Add new multipathd option '-n' which keeps multipathd from creating any multipath devices that aren't in the /etc/multipath/wwids file. Add 0108-RHBZ-1153832-kpartx-remove-devs.patch * switch from 'kpartx -a' to 'kpartx -u' to remove missing devices as well. Add 0109-RH-read-only-bindings.patch * re-enabled -B option for multipathd
21 lines
598 B
Diff
21 lines
598 B
Diff
---
|
|
multipathd/main.c | 5 ++---
|
|
1 file changed, 2 insertions(+), 3 deletions(-)
|
|
|
|
Index: multipath-tools-130222/multipathd/main.c
|
|
===================================================================
|
|
--- multipath-tools-130222.orig/multipathd/main.c
|
|
+++ multipath-tools-130222/multipathd/main.c
|
|
@@ -669,9 +669,8 @@ ev_remove_path (struct path *pp, struct
|
|
/*
|
|
* update our state from kernel
|
|
*/
|
|
- if (setup_multipath(vecs, mpp)) {
|
|
- goto fail;
|
|
- }
|
|
+ if (setup_multipath(vecs, mpp))
|
|
+ return 1;
|
|
sync_map_state(mpp);
|
|
|
|
condlog(2, "%s [%s]: path removed from map %s",
|