From: Martin Wilck <[email protected]>

multipath should allow removing WWIDs of paths even if they
are blacklisted.

Signed-off-by: Martin Wilck <[email protected]>
---
 libmultipath/configure.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/libmultipath/configure.c b/libmultipath/configure.c
index 3263bb0..598efe0 100644
--- a/libmultipath/configure.c
+++ b/libmultipath/configure.c
@@ -1441,7 +1441,7 @@ static int _get_refwwid(enum mpath_cmds cmd, const char 
*dev,
                                return ret;
                        }
                }
-               if (pp->udev && pp->uid_attribute &&
+               if (flags & DI_BLACKLIST &&
                    filter_property(conf, pp->udev, 3, pp->uid_attribute) > 0)
                        return PATHINFO_SKIPPED;
                refwwid = pp->wwid;
@@ -1466,7 +1466,7 @@ static int _get_refwwid(enum mpath_cmds cmd, const char 
*dev,
                                refwwid = dev;
                }
 
-               if (refwwid && strlen(refwwid) &&
+               if (flags & DI_BLACKLIST && refwwid && strlen(refwwid) &&
                    filter_wwid(conf->blist_wwid, conf->elist_wwid, refwwid,
                                NULL) > 0)
                        return PATHINFO_SKIPPED;
-- 
2.29.2


--
dm-devel mailing list
[email protected]
https://www.redhat.com/mailman/listinfo/dm-devel

Reply via email to