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/discover.c | |
| parent | f5e75269f59f7c3816f23314b924895e4ecf8409 (diff) | |
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/discover.c')
| -rw-r--r-- | net/tipc/discover.c | 4 | 
1 files changed, 0 insertions, 4 deletions
| diff --git a/net/tipc/discover.c b/net/tipc/discover.c index 80799f6ba892..e7223789d150 100644 --- a/net/tipc/discover.c +++ b/net/tipc/discover.c @@ -133,7 +133,6 @@ void tipc_disc_recv_msg(struct sk_buff *buf, struct bearer *b_ptr)  	u32 type = msg_type(msg);  	msg_get_media_addr(msg,&media_addr); -	msg_dbg(msg, "RECV:");  	buf_discard(buf);  	if (net_id != tipc_net_id) @@ -156,7 +155,6 @@ void tipc_disc_recv_msg(struct sk_buff *buf, struct bearer *b_ptr)  		struct tipc_node *n_ptr = tipc_node_find(orig);  		int link_fully_up; -		dbg(" in own cluster\n");  		if (n_ptr == NULL) {  			n_ptr = tipc_node_create(orig);  			if (!n_ptr) @@ -173,7 +171,6 @@ void tipc_disc_recv_msg(struct sk_buff *buf, struct bearer *b_ptr)  		link = n_ptr->links[b_ptr->identity];  		if (!link) { -			dbg("creating link\n");  			link = tipc_link_create(b_ptr, orig, &media_addr);  			if (!link) {  				spin_unlock_bh(&n_ptr->lock); @@ -198,7 +195,6 @@ void tipc_disc_recv_msg(struct sk_buff *buf, struct bearer *b_ptr)  			return;  		rbuf = tipc_disc_init_msg(DSC_RESP_MSG, 1, orig, b_ptr);  		if (rbuf != NULL) { -			msg_dbg(buf_msg(rbuf),"SEND:");  			b_ptr->media->send_msg(rbuf, &b_ptr->publ, &media_addr);  			buf_discard(rbuf);  		} | 
