diff options
Diffstat (limited to 'net/tipc/bcast.c')
| -rw-r--r-- | net/tipc/bcast.c | 4 | 
1 files changed, 1 insertions, 3 deletions
diff --git a/net/tipc/bcast.c b/net/tipc/bcast.c index 08e3216a33d..fa68d1e9ff4 100644 --- a/net/tipc/bcast.c +++ b/net/tipc/bcast.c @@ -407,9 +407,7 @@ int tipc_bclink_send_msg(struct sk_buff *buf)  	spin_lock_bh(&bc_lock);  	res = tipc_link_send_buf(bcl, buf); -	if (unlikely(res == -ELINKCONG)) -		buf_discard(buf); -	else +	if (likely(res > 0))  		bclink_set_last_sent();  	bcl->stats.queue_sz_counts++;  |