]> git.karo-electronics.de Git - karo-tx-linux.git/blobdiff - net/ipv4/tcp_input.c
Merge with /home/shaggy/git/linus-clean/
[karo-tx-linux.git] / net / ipv4 / tcp_input.c
index 0a461232329fa328dcf20186054f87049ec3a7bc..a97ed5416c28ee14ecab0ac4483c079a0c3e4c1d 100644 (file)
@@ -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))