diff options
| author | Allan Stephens <Allan.Stephens@windriver.com> | 2010-12-31 18:59:25 +0000 | 
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2011-01-01 13:57:52 -0800 | 
| commit | b29f14284989b3d0b3a5ce268b5b1fc4df9c5795 (patch) | |
| tree | a690fc7db347cb8ca2b38dc1da73a477d1fb4779 /net/tipc/bcast.c | |
| parent | f5e75269f59f7c3816f23314b924895e4ecf8409 (diff) | |
| download | olio-linux-3.10-b29f14284989b3d0b3a5ce268b5b1fc4df9c5795.tar.xz olio-linux-3.10-b29f14284989b3d0b3a5ce268b5b1fc4df9c5795.zip  | |
tipc: remove calls to dbg() and msg_dbg()
Eliminates obsolete calls to two of TIPC's main debugging macros, as well
as a pair of associated debugging routines that are no longer required.
Signed-off-by: Allan Stephens <Allan.Stephens@windriver.com>
Signed-off-by: Paul Gortmaker <paul.gortmaker@windriver.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/tipc/bcast.c')
| -rw-r--r-- | net/tipc/bcast.c | 3 | 
1 files changed, 0 insertions, 3 deletions
diff --git a/net/tipc/bcast.c b/net/tipc/bcast.c index 110829eab96..cb817d503c1 100644 --- a/net/tipc/bcast.c +++ b/net/tipc/bcast.c @@ -436,8 +436,6 @@ void tipc_bclink_recv_pkt(struct sk_buff *buf)  	u32 seqno;  	struct sk_buff *deferred; -	msg_dbg(msg, "<BC<<<"); -  	if (unlikely(!node || !tipc_node_is_up(node) || !node->bclink.supported ||  		     (msg_mc_netid(msg) != tipc_net_id))) {  		buf_discard(buf); @@ -445,7 +443,6 @@ void tipc_bclink_recv_pkt(struct sk_buff *buf)  	}  	if (unlikely(msg_user(msg) == BCAST_PROTOCOL)) { -		msg_dbg(msg, "<BCNACK<<<");  		if (msg_destnode(msg) == tipc_own_addr) {  			tipc_node_lock(node);  			tipc_bclink_acknowledge(node, msg_bcast_ack(msg));  |