diff options
author | Nicolas Dichtel <nicolas.dichtel@6wind.com> | 2013-09-02 09:34:56 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2013-09-04 00:27:25 -0400 |
commit | 8b27f27797cac5ed9b2f3e63dac89a7ae70e70a7 (patch) | |
tree | c77b49fdf6883aab5bea6988d89f7e204f49329b /net/ipv6/ip6_tunnel.c | |
parent | 117961878cc1386923cfddcdd9016b777827c8dd (diff) |
skb: allow skb_scrub_packet() to be used by tunnels
This function was only used when a packet was sent to another netns. Now, it can
also be used after tunnel encapsulation or decapsulation.
Only skb_orphan() should not be done when a packet is not crossing netns.
Signed-off-by: Nicolas Dichtel <nicolas.dichtel@6wind.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/ip6_tunnel.c')
-rw-r--r-- | net/ipv6/ip6_tunnel.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv6/ip6_tunnel.c b/net/ipv6/ip6_tunnel.c index d6e00a39274c..72372ac90159 100644 --- a/net/ipv6/ip6_tunnel.c +++ b/net/ipv6/ip6_tunnel.c | |||
@@ -830,7 +830,7 @@ static int ip6_tnl_rcv(struct sk_buff *skb, __u16 protocol, | |||
830 | tstats->rx_bytes += skb->len; | 830 | tstats->rx_bytes += skb->len; |
831 | 831 | ||
832 | if (!net_eq(t->net, dev_net(t->dev))) | 832 | if (!net_eq(t->net, dev_net(t->dev))) |
833 | skb_scrub_packet(skb); | 833 | skb_scrub_packet(skb, true); |
834 | 834 | ||
835 | netif_rx(skb); | 835 | netif_rx(skb); |
836 | 836 | ||
@@ -1002,7 +1002,7 @@ static int ip6_tnl_xmit2(struct sk_buff *skb, | |||
1002 | } | 1002 | } |
1003 | 1003 | ||
1004 | if (!net_eq(t->net, dev_net(dev))) | 1004 | if (!net_eq(t->net, dev_net(dev))) |
1005 | skb_scrub_packet(skb); | 1005 | skb_scrub_packet(skb, true); |
1006 | 1006 | ||
1007 | /* | 1007 | /* |
1008 | * Okay, now see if we can stuff it in the buffer as-is. | 1008 | * Okay, now see if we can stuff it in the buffer as-is. |