]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
Revert: "ip6_tunnel: Update skb->protocol to ETH_P_IPV6 in ip6_tnl_xmit()"
authorEli Cooper <elicooper@gmx.com>
Thu, 1 Dec 2016 02:05:12 +0000 (10:05 +0800)
committerDavid S. Miller <davem@davemloft.net>
Fri, 2 Dec 2016 17:34:22 +0000 (12:34 -0500)
This reverts commit ae148b085876fa771d9ef2c05f85d4b4bf09ce0d
("ip6_tunnel: Update skb->protocol to ETH_P_IPV6 in ip6_tnl_xmit()").

skb->protocol is now set in __ip_local_out() and __ip6_local_out() before
dst_output() is called. It is no longer necessary to do it for each tunnel.

Cc: stable@vger.kernel.org
Signed-off-by: Eli Cooper <elicooper@gmx.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv6/ip6_tunnel.c

index 0a4759b89da24c8bf50830659545b9f7d231a065..d76674efe523cf041bf2ef57f5b861b3707dd05e 100644 (file)
@@ -1181,7 +1181,6 @@ route_lookup:
        if (err)
                return err;
 
-       skb->protocol = htons(ETH_P_IPV6);
        skb_push(skb, sizeof(struct ipv6hdr));
        skb_reset_network_header(skb);
        ipv6h = ipv6_hdr(skb);