From d0a14a9dbdf613d9307c4b748b03a11678fe8d16 Mon Sep 17 00:00:00 2001 From: Per Liden Date: Wed, 11 Jan 2006 13:52:51 +0100 Subject: [TIPC] Cleaned up info/warn/err macros Signed-off-by: Per Liden --- net/tipc/core.h | 6 +++--- net/tipc/netlink.c | 2 +- net/tipc/socket.c | 4 ++-- net/tipc/subscr.c | 2 +- 4 files changed, 7 insertions(+), 7 deletions(-) (limited to 'net/tipc') diff --git a/net/tipc/core.h b/net/tipc/core.h index 4b29fb63c8fe..4f71fde023e1 100644 --- a/net/tipc/core.h +++ b/net/tipc/core.h @@ -117,9 +117,9 @@ void tipc_dump(struct print_buf*,const char *fmt, ...); * - debug messages are not printed */ -#define err(fmt, arg...) printk(KERN_ERR "%s: " fmt "\n" , __FILE__ , ## arg) -#define info(fmt, arg...) printk(KERN_INFO "%s: " fmt "\n" , __FILE__ , ## arg) -#define warn(fmt, arg...) printk(KERN_WARNING "%s: " fmt "\n" , __FILE__ , ## arg) +#define err(fmt, arg...) printk(KERN_ERR "TIPC: " fmt , ## arg) +#define info(fmt, arg...) printk(KERN_INFO "TIPC: " fmt , ## arg) +#define warn(fmt, arg...) printk(KERN_WARNING "TIPC: " fmt , ## arg) #define dbg(fmt, arg...) do {} while (0) #define msg_dbg(msg,txt) do {} while (0) diff --git a/net/tipc/netlink.c b/net/tipc/netlink.c index de3eb45a6683..7b963833964a 100644 --- a/net/tipc/netlink.c +++ b/net/tipc/netlink.c @@ -100,7 +100,7 @@ int netlink_start(void) genl_unregister_family(&family); family_registered = 0; err: - err("Failed to register netlink interface"); + err("Failed to register netlink interface\n"); return -EFAULT; } diff --git a/net/tipc/socket.c b/net/tipc/socket.c index 1120d0340310..e0b429c20baf 100644 --- a/net/tipc/socket.c +++ b/net/tipc/socket.c @@ -1696,13 +1696,13 @@ int socket_init(void) res = proto_register(&tipc_proto, 1); if (res) { - err("Unable to register TIPC protocol type\n"); + err("Failed to register TIPC protocol type\n"); goto out; } res = sock_register(&tipc_family_ops); if (res) { - err("Unable to register TIPC socket type\n"); + err("Failed to register TIPC socket type\n"); proto_unregister(&tipc_proto); goto out; } diff --git a/net/tipc/subscr.c b/net/tipc/subscr.c index 9486d8ee98b8..b52959fca5e6 100644 --- a/net/tipc/subscr.c +++ b/net/tipc/subscr.c @@ -488,7 +488,7 @@ int subscr_start(void) return 0; failed: - err("Unable to create subscription service\n"); + err("Failed to create subscription service\n"); tipc_detach(topsrv.user_ref); topsrv.user_ref = 0; spin_unlock_bh(&topsrv.lock); -- cgit v1.2.3-59-g8ed1b