From: John T. <tho...@gm...> - 2018-01-09 19:50:32
|
The tipc prefix to log messages generated by tipc was removed in commit 07f6c4bc0 ("tipc: convert tipc reference table to use generic rhashtable"). This is still a useful prefix and so add it back. Acked-by: Jon Maloy <jon...@er...> Signed-off-by: John Thompson <tho...@gm...> --- net/tipc/core.c | 2 -- net/tipc/core.h | 2 ++ 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/net/tipc/core.c b/net/tipc/core.c index 0b982d048fb9..4cd9e57446ec 100644 --- a/net/tipc/core.c +++ b/net/tipc/core.c @@ -34,8 +34,6 @@ * POSSIBILITY OF SUCH DAMAGE. */ -#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt - #include "core.h" #include "name_table.h" #include "subscr.h" diff --git a/net/tipc/core.h b/net/tipc/core.h index 964342689f2c..f89f9a3c18c2 100644 --- a/net/tipc/core.h +++ b/net/tipc/core.h @@ -37,6 +37,8 @@ #ifndef _TIPC_CORE_H #define _TIPC_CORE_H +#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt + #include <linux/tipc.h> #include <linux/tipc_config.h> #include <linux/tipc_netlink.h> -- 2.15.0 |