diff options
Diffstat (limited to 'net/tipc/port.c')
-rw-r--r-- | net/tipc/port.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/net/tipc/port.c b/net/tipc/port.c index 33d0b3b7175f..8bacd572a9fb 100644 --- a/net/tipc/port.c +++ b/net/tipc/port.c | |||
@@ -188,7 +188,6 @@ void tipc_port_recv_mcast(struct sk_buff *buf, struct port_list *dp) | |||
188 | 188 | ||
189 | if (b == NULL) { | 189 | if (b == NULL) { |
190 | warn("Unable to deliver multicast message(s)\n"); | 190 | warn("Unable to deliver multicast message(s)\n"); |
191 | msg_dbg(msg, "LOST:"); | ||
192 | goto exit; | 191 | goto exit; |
193 | } | 192 | } |
194 | if ((index == 0) && (cnt != 0)) { | 193 | if ((index == 0) && (cnt != 0)) { |
@@ -280,7 +279,6 @@ int tipc_deleteport(u32 ref) | |||
280 | spin_unlock_bh(&tipc_port_list_lock); | 279 | spin_unlock_bh(&tipc_port_list_lock); |
281 | k_term_timer(&p_ptr->timer); | 280 | k_term_timer(&p_ptr->timer); |
282 | kfree(p_ptr); | 281 | kfree(p_ptr); |
283 | dbg("Deleted port %u\n", ref); | ||
284 | tipc_net_route_msg(buf); | 282 | tipc_net_route_msg(buf); |
285 | return 0; | 283 | return 0; |
286 | } | 284 | } |
@@ -366,7 +364,6 @@ static struct sk_buff *port_build_proto_msg(u32 destport, u32 destnode, | |||
366 | msg_set_orignode(msg, orignode); | 364 | msg_set_orignode(msg, orignode); |
367 | msg_set_transp_seqno(msg, seqno); | 365 | msg_set_transp_seqno(msg, seqno); |
368 | msg_set_msgcnt(msg, ack); | 366 | msg_set_msgcnt(msg, ack); |
369 | msg_dbg(msg, "PORT>SEND>:"); | ||
370 | } | 367 | } |
371 | return buf; | 368 | return buf; |
372 | } | 369 | } |
@@ -384,7 +381,6 @@ int tipc_reject_msg(struct sk_buff *buf, u32 err) | |||
384 | data_sz = MAX_REJECT_SIZE; | 381 | data_sz = MAX_REJECT_SIZE; |
385 | if (msg_connected(msg) && (imp < TIPC_CRITICAL_IMPORTANCE)) | 382 | if (msg_connected(msg) && (imp < TIPC_CRITICAL_IMPORTANCE)) |
386 | imp++; | 383 | imp++; |
387 | msg_dbg(msg, "port->rej: "); | ||
388 | 384 | ||
389 | /* discard rejected message if it shouldn't be returned to sender */ | 385 | /* discard rejected message if it shouldn't be returned to sender */ |
390 | if (msg_errcode(msg) || msg_dest_droppable(msg)) { | 386 | if (msg_errcode(msg) || msg_dest_droppable(msg)) { |
@@ -547,8 +543,6 @@ void tipc_port_recv_proto_msg(struct sk_buff *buf) | |||
547 | struct sk_buff *r_buf = NULL; | 543 | struct sk_buff *r_buf = NULL; |
548 | struct sk_buff *abort_buf = NULL; | 544 | struct sk_buff *abort_buf = NULL; |
549 | 545 | ||
550 | msg_dbg(msg, "PORT<RECV<:"); | ||
551 | |||
552 | if (!p_ptr) { | 546 | if (!p_ptr) { |
553 | err = TIPC_ERR_NO_PORT; | 547 | err = TIPC_ERR_NO_PORT; |
554 | } else if (p_ptr->publ.connected) { | 548 | } else if (p_ptr->publ.connected) { |
@@ -1015,9 +1009,6 @@ int tipc_publish(u32 ref, unsigned int scope, struct tipc_name_seq const *seq) | |||
1015 | if (!p_ptr) | 1009 | if (!p_ptr) |
1016 | return -EINVAL; | 1010 | return -EINVAL; |
1017 | 1011 | ||
1018 | dbg("tipc_publ %u, p_ptr = %x, conn = %x, scope = %x, " | ||
1019 | "lower = %u, upper = %u\n", | ||
1020 | ref, p_ptr, p_ptr->publ.connected, scope, seq->lower, seq->upper); | ||
1021 | if (p_ptr->publ.connected) | 1012 | if (p_ptr->publ.connected) |
1022 | goto exit; | 1013 | goto exit; |
1023 | if (seq->lower > seq->upper) | 1014 | if (seq->lower > seq->upper) |
@@ -1357,7 +1348,6 @@ int tipc_send_buf2port(u32 ref, struct tipc_portid const *dest, | |||
1357 | 1348 | ||
1358 | skb_push(buf, DIR_MSG_H_SIZE); | 1349 | skb_push(buf, DIR_MSG_H_SIZE); |
1359 | skb_copy_to_linear_data(buf, msg, DIR_MSG_H_SIZE); | 1350 | skb_copy_to_linear_data(buf, msg, DIR_MSG_H_SIZE); |
1360 | msg_dbg(msg, "buf2port: "); | ||
1361 | p_ptr->sent++; | 1351 | p_ptr->sent++; |
1362 | if (dest->node == tipc_own_addr) | 1352 | if (dest->node == tipc_own_addr) |
1363 | return tipc_port_recv_msg(buf); | 1353 | return tipc_port_recv_msg(buf); |