| Submitter | y@broadcom.com |
|---|---|
| Date | Feb. 18, 2013, 1:15 p.m. |
| Message ID | <1361193320-11181-1-git-send-email-y> |
| Download | mbox | patch |
| Permalink | /patch/221377/ |
| State | Superseded |
| Delegated to: | David Miller |
| Headers | show |
Comments
Your emails arrive as being from "y@broadcom.com", which doesn't seem right at all. Please correct this and resubmit your patches, thanks. -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Patch
diff --git a/net/ipv4/ip_gre.c b/net/ipv4/ip_gre.c index a56f118..cdc31ac 100644 --- a/net/ipv4/ip_gre.c +++ b/net/ipv4/ip_gre.c @@ -745,12 +745,9 @@ static struct sk_buff *handle_offloads(struct sk_buff *skb) goto error; skb_shinfo(skb)->gso_type |= SKB_GSO_GRE; return skb; - } else if (skb->ip_summed == CHECKSUM_PARTIAL) { - err = skb_checksum_help(skb); - if (unlikely(err)) - goto error; } - skb->ip_summed = CHECKSUM_NONE; + if (skb->ip_summed != CHECKSUM_PARTIAL) + skb->ip_summed = CHECKSUM_NONE; return skb;