diff options
Diffstat (limited to 'net/tipc/link.c')
| -rw-r--r-- | net/tipc/link.c | 6 | 
1 files changed, 2 insertions, 4 deletions
diff --git a/net/tipc/link.c b/net/tipc/link.c index 332915e4304..4eff342326e 100644 --- a/net/tipc/link.c +++ b/net/tipc/link.c @@ -1733,10 +1733,8 @@ void tipc_recv_msg(struct sk_buff *head, struct tipc_bearer *b_ptr)  		/* Release acked messages */ -		if (less(n_ptr->bclink.acked, msg_bcast_ack(msg))) { -			if (tipc_node_is_up(n_ptr) && n_ptr->bclink.supported) -				tipc_bclink_acknowledge(n_ptr, msg_bcast_ack(msg)); -		} +		if (tipc_node_is_up(n_ptr) && n_ptr->bclink.supported) +			tipc_bclink_acknowledge(n_ptr, msg_bcast_ack(msg));  		crs = l_ptr->first_out;  		while ((crs != l_ptr->next_out) &&  |