multipath_tools: add alias while printing checker_message
authorMoger, Babu <Babu.Moger@lsi.com>
Tue, 13 Apr 2010 15:21:12 +0000 (09:21 -0600)
committerChristophe Varoqui <christophe.varoqui@opensvc.com>
Sat, 17 Apr 2010 11:17:06 +0000 (13:17 +0200)
This patch adds alias while printing checker messages.
Example of current Checker message.

Apr 11 04:03:53 mymachine multipathd: sde: rdac checker reports path is down

Most of the time "sde" is meaningless when debugging the past failures.

This patch add alias before the checker message..
Example of the new message..

Apr 12 16:55:54 mymachine multipathd: mpathb: sde - rdac checker reports path is down

Signed-off-by: Babu Moger <babu.moger@lsi.com>
Reviewed-by: Vijay Chauhan <Vijay.Chauhan@lsi.com>
multipathd/main.c

index 5bf20bb..44d07c2 100644 (file)
@@ -61,7 +61,7 @@
 #define CMDSIZE 160
 
 #define LOG_MSG(a,b) \
-       if (strlen(b)) condlog(a, "%s: %s", pp->dev, b);
+       if (strlen(b)) condlog(a, "%s: %s - %s", pp->mpp->alias, pp->dev, b);
 
 pthread_cond_t exit_cond = PTHREAD_COND_INITIALIZER;
 pthread_mutex_t exit_mutex = PTHREAD_MUTEX_INITIALIZER;