Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 85830
b: refs/heads/master
c: 163e3cb
h: refs/heads/master
v: v3
  • Loading branch information
Julia Lawall authored and David S. Miller committed Feb 18, 2008
1 parent fe74121 commit ba810c3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 9ff566074689e3aed1488780b97714ec43ba361d
refs/heads/master: 163e3cb7daa8c3a6dde6a13a3d09a198930c6822
3 changes: 1 addition & 2 deletions trunk/net/rxrpc/ar-accept.c
Original file line number Diff line number Diff line change
Expand Up @@ -156,8 +156,7 @@ static int rxrpc_accept_incoming_call(struct rxrpc_local *local,
false);
spin_unlock(&call->lock);
notification = NULL;
if (ret < 0)
BUG();
BUG_ON(ret < 0);
}
spin_unlock(&call->conn->state_lock);

Expand Down
3 changes: 1 addition & 2 deletions trunk/net/rxrpc/ar-ack.c
Original file line number Diff line number Diff line change
Expand Up @@ -814,8 +814,7 @@ static int rxrpc_post_message(struct rxrpc_call *call, u32 mark, u32 error,
spin_lock_bh(&call->lock);
ret = rxrpc_queue_rcv_skb(call, skb, true, fatal);
spin_unlock_bh(&call->lock);
if (ret < 0)
BUG();
BUG_ON(ret < 0);
}

return 0;
Expand Down

0 comments on commit ba810c3

Please sign in to comment.