[NET]: Change some "if (x) BUG();" to "BUG_ON(x);"
This changes some simple "if (x) BUG();" statements to "BUG_ON(x);" Signed-off-by: Kris Katterjohn <kjak@users.sourceforge.net> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
committed by
David S. Miller
parent
4bba392592
commit
09a626600b
@@ -3347,7 +3347,7 @@ tcp_collapse(struct sock *sk, struct sk_buff_head *list,
|
||||
int offset = start - TCP_SKB_CB(skb)->seq;
|
||||
int size = TCP_SKB_CB(skb)->end_seq - start;
|
||||
|
||||
if (offset < 0) BUG();
|
||||
BUG_ON(offset < 0);
|
||||
if (size > 0) {
|
||||
size = min(copy, size);
|
||||
if (skb_copy_bits(skb, offset, skb_put(nskb, size), size))
|
||||
|
||||
Reference in New Issue
Block a user