This is an important event which we want to see with -v3.

Signed-off-by: Martin Wilck <mwi...@suse.com>
---
 libmultipath/structs_vec.c | 6 +++---
 multipathd/main.c          | 1 +
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/libmultipath/structs_vec.c b/libmultipath/structs_vec.c
index c85823a0..561ff4ac 100644
--- a/libmultipath/structs_vec.c
+++ b/libmultipath/structs_vec.c
@@ -113,8 +113,6 @@ remove_map(struct multipath * mpp, struct vectors * vecs, 
int purge_vec)
 {
        int i;
 
-       condlog(4, "%s: remove multipath map", mpp->alias);
-
        /*
         * clear references to this map
         */
@@ -134,8 +132,10 @@ void
 remove_map_by_alias(const char *alias, struct vectors * vecs, int purge_vec)
 {
        struct multipath * mpp = find_mp_by_alias(vecs->mpvec, alias);
-       if (mpp)
+       if (mpp) {
+               condlog(2, "%s: removing map by alias", alias);
                remove_map(mpp, vecs, purge_vec);
+       }
 }
 
 void
diff --git a/multipathd/main.c b/multipathd/main.c
index 88ae4903..b961de53 100644
--- a/multipathd/main.c
+++ b/multipathd/main.c
@@ -334,6 +334,7 @@ remove_map_and_stop_waiter(struct multipath *mpp, struct 
vectors *vecs)
 {
        /* devices are automatically removed by the dmevent polling code,
         * so they don't need to be manually removed here */
+       condlog(3, "%s: removing map from internal tables", mpp->alias);
        if (!poll_dmevents)
                stop_waiter_thread(mpp, vecs);
        remove_map(mpp, vecs, PURGE_VEC);
-- 
2.19.1

--
dm-devel mailing list
dm-devel@redhat.com
https://www.redhat.com/mailman/listinfo/dm-devel

Reply via email to