diff options
| -rw-r--r-- | net/core/skbuff.c | 3 | 
1 files changed, 1 insertions, 2 deletions
| diff --git a/net/core/skbuff.c b/net/core/skbuff.c index 88262c82b96a..b0cce744e2a0 100644 --- a/net/core/skbuff.c +++ b/net/core/skbuff.c @@ -3004,8 +3004,7 @@ struct sk_buff *skb_segment(struct sk_buff *head_skb,  	if (unlikely(!proto))  		return ERR_PTR(-EINVAL); -	csum = !head_skb->encap_hdr_csum && -	    !!can_checksum_protocol(features, proto); +	csum = !!can_checksum_protocol(features, proto);  	headroom = skb_headroom(head_skb);  	pos = skb_headlen(head_skb); |