diff options
Diffstat (limited to 'net/ipv4/ip_fragment.c')
| -rw-r--r-- | net/ipv4/ip_fragment.c | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv4/ip_fragment.c b/net/ipv4/ip_fragment.c index 38d38f05801..2152d222b95 100644 --- a/net/ipv4/ip_fragment.c +++ b/net/ipv4/ip_fragment.c @@ -488,8 +488,8 @@ static int ip_frag_reasm(struct ipq *qp, struct sk_buff *prev,  		qp->q.fragments = head;  	} -	BUG_TRAP(head != NULL); -	BUG_TRAP(FRAG_CB(head)->offset == 0); +	WARN_ON(head == NULL); +	WARN_ON(FRAG_CB(head)->offset != 0);  	/* Allocate a new buffer for the datagram. */  	ihlen = ip_hdrlen(head);  |