From: Patrick McHardy Date: Mon, 31 Jul 2006 03:19:11 +0000 (-0700) Subject: [XFRM]: Fix protocol field value for outgoing IPv6 GSO packets X-Git-Tag: v3.12-rc1~34343^2~26 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=679e898a4742d4a4a47430b67fd68a789a73dcfd;p=kernel%2Fkernel-generic.git [XFRM]: Fix protocol field value for outgoing IPv6 GSO packets Signed-off-by: Patrick McHardy Acked-by: Herbert Xu Signed-off-by: David S. Miller --- diff --git a/net/ipv6/xfrm6_output.c b/net/ipv6/xfrm6_output.c index 0eea60e..c8c8b44 100644 --- a/net/ipv6/xfrm6_output.c +++ b/net/ipv6/xfrm6_output.c @@ -125,7 +125,7 @@ static int xfrm6_output_finish(struct sk_buff *skb) if (!skb_is_gso(skb)) return xfrm6_output_finish2(skb); - skb->protocol = htons(ETH_P_IP); + skb->protocol = htons(ETH_P_IPV6); segs = skb_gso_segment(skb, 0); kfree_skb(skb); if (unlikely(IS_ERR(segs)))