Commit 679e898a authored by Patrick McHardy's avatar Patrick McHardy Committed by David S. Miller

[XFRM]: Fix protocol field value for outgoing IPv6 GSO packets

Signed-off-by: default avatarPatrick McHardy <kaber@trash.net>
Acked-by: default avatarHerbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 081bba5b
...@@ -125,7 +125,7 @@ static int xfrm6_output_finish(struct sk_buff *skb) ...@@ -125,7 +125,7 @@ static int xfrm6_output_finish(struct sk_buff *skb)
if (!skb_is_gso(skb)) if (!skb_is_gso(skb))
return xfrm6_output_finish2(skb); return xfrm6_output_finish2(skb);
skb->protocol = htons(ETH_P_IP); skb->protocol = htons(ETH_P_IPV6);
segs = skb_gso_segment(skb, 0); segs = skb_gso_segment(skb, 0);
kfree_skb(skb); kfree_skb(skb);
if (unlikely(IS_ERR(segs))) if (unlikely(IS_ERR(segs)))
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment