diff options
Diffstat (limited to 'net/tipc/bearer.c')
| -rw-r--r-- | net/tipc/bearer.c | 6 | 
1 files changed, 1 insertions, 5 deletions
diff --git a/net/tipc/bearer.c b/net/tipc/bearer.c index 85eba9c08ee..e465a92a4f9 100644 --- a/net/tipc/bearer.c +++ b/net/tipc/bearer.c @@ -385,13 +385,9 @@ static int bearer_push(struct tipc_bearer *b_ptr)  void tipc_bearer_lock_push(struct tipc_bearer *b_ptr)  { -	int res; -  	spin_lock_bh(&b_ptr->lock); -	res = bearer_push(b_ptr); +	bearer_push(b_ptr);  	spin_unlock_bh(&b_ptr->lock); -	if (res) -		tipc_bcbearer_push();  }  |