[dm-devel] [PATCH] Fix typo in coalesce_paths

Hannes Reinecke hare at suse.de
Tue Jul 20 08:10:25 UTC 2010


We allocate space for the alias, but never use it.

Signed-off-by: Hannes Reinecke <hare at suse.de>
---
 libmultipath/configure.c |    6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/libmultipath/configure.c b/libmultipath/configure.c
index c6ca4b6..f32a484 100644
--- a/libmultipath/configure.c
+++ b/libmultipath/configure.c
@@ -577,11 +577,11 @@ coalesce_paths (struct vectors * vecs, vector newmp, char * refwwid, int force_r
 
 			remove_map(mpp, vecs, 0);
 
-			if (dm_flush_map(mpp->alias))
+			if (dm_flush_map(alias))
 				condlog(2, "%s: remove failed (dead)",
-					mpp->alias);
+					alias);
 			else
-				condlog(2, "%s: remove (dead)", mpp->alias);
+				condlog(2, "%s: remove (dead)", alias);
 		}
 	}
 	return 0;
-- 
1.6.0.2




More information about the dm-devel mailing list