ef9089f4e8
Update to the head of the upstream staging branch * Patches 0005-0042 are from the upstream staging branch * Previous patches 0005 & 0006 are now patches 0023 & 0005 Rename redhat patches * Previous patches 0007-0017 are now patches 0043-0053 Change from using readline to libedit * readline is licensed GPL v3, and multipathd includes code licensed gpl v2. Remove README.alua * information moved to README.md
48 lines
1.7 KiB
Diff
48 lines
1.7 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Benjamin Marzinski <bmarzins@redhat.com>
|
|
Date: Tue, 9 Aug 2022 16:46:27 -0500
|
|
Subject: [PATCH] libmultipath: return success if we raced to remove a map and
|
|
lost
|
|
|
|
_dm_flush_map() was returning failure if it failed to remove a map,
|
|
even if that was because the map had already been removed. Return
|
|
success in this case.
|
|
|
|
Signed-off-by: Benjamin Marzinski <bmarzins@redhat.com>
|
|
Reviewed-by: Martin Wilck <mwilck@suse.com>
|
|
---
|
|
libmultipath/devmapper.c | 4 ++++
|
|
multipathd/main.c | 4 ----
|
|
2 files changed, 4 insertions(+), 4 deletions(-)
|
|
|
|
diff --git a/libmultipath/devmapper.c b/libmultipath/devmapper.c
|
|
index 1748d258..a49db3b0 100644
|
|
--- a/libmultipath/devmapper.c
|
|
+++ b/libmultipath/devmapper.c
|
|
@@ -1111,6 +1111,10 @@ int _dm_flush_map (const char * mapname, int need_sync, int deferred_remove,
|
|
}
|
|
condlog(4, "multipath map %s removed", mapname);
|
|
return 0;
|
|
+ } else if (dm_is_mpath(mapname) != 1) {
|
|
+ condlog(4, "multipath map %s removed externally",
|
|
+ mapname);
|
|
+ return 0; /*we raced with someone else removing it */
|
|
} else {
|
|
condlog(2, "failed to remove multipath map %s",
|
|
mapname);
|
|
diff --git a/multipathd/main.c b/multipathd/main.c
|
|
index 53cbdb61..3fcd6bdb 100644
|
|
--- a/multipathd/main.c
|
|
+++ b/multipathd/main.c
|
|
@@ -758,10 +758,6 @@ flush_map(struct multipath * mpp, struct vectors * vecs, int nopaths)
|
|
* the spurious uevent we may generate with the dm_flush_map call below
|
|
*/
|
|
if (r) {
|
|
- /*
|
|
- * May not really be an error -- if the map was already flushed
|
|
- * from the device mapper by dmsetup(8) for instance.
|
|
- */
|
|
if (r == 1)
|
|
condlog(0, "%s: can't flush", mpp->alias);
|
|
else {
|