diff options
author | Rasmus Villemoes <linux@rasmusvillemoes.dk> | 2015-02-06 01:17:20 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-02-08 09:41:56 +0300 |
commit | 11ac11999bae3c353f86b6e7dd0e43d4a0eada12 (patch) | |
tree | 7b534a34bb4a15fd7a8af7b8f2f8cf8072d236aa /net/rds/iw_cm.c | |
parent | 83d2b9ba1abca241df44a502b6da950a25856b5b (diff) | |
download | linux-11ac11999bae3c353f86b6e7dd0e43d4a0eada12.tar.xz |
net: rds: Remove repeated function names from debug output
The macro rdsdebug is defined as
pr_debug("%s(): " fmt, __func__ , ##args)
Hence it doesn't make sense to include the name of the calling
function explicitly in the format string passed to rdsdebug.
Signed-off-by: Rasmus Villemoes <linux@rasmusvillemoes.dk>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/rds/iw_cm.c')
-rw-r--r-- | net/rds/iw_cm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/rds/iw_cm.c b/net/rds/iw_cm.c index a91e1db62ee6..a6c2bea9f8f9 100644 --- a/net/rds/iw_cm.c +++ b/net/rds/iw_cm.c @@ -590,8 +590,8 @@ void rds_iw_conn_shutdown(struct rds_connection *conn) /* Actually this may happen quite frequently, when * an outgoing connect raced with an incoming connect. */ - rdsdebug("rds_iw_conn_shutdown: failed to disconnect," - " cm: %p err %d\n", ic->i_cm_id, err); + rdsdebug("failed to disconnect, cm: %p err %d\n", + ic->i_cm_id, err); } if (ic->i_cm_id->qp) { |