diff options
author | Jiri Benc <jbenc@redhat.com> | 2016-02-18 11:22:52 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-02-18 14:34:54 -0500 |
commit | 7f290c94352e59b1d720055fce760a69a63bd0a1 (patch) | |
tree | f6c595f28145dc17d4dd983c0e0d64c19e1ebbfd /net/ipv6/sit.c | |
parent | c9e78efb6f668c42e0e0f47398e814b758b95336 (diff) | |
download | blackbird-obmc-linux-7f290c94352e59b1d720055fce760a69a63bd0a1.tar.gz blackbird-obmc-linux-7f290c94352e59b1d720055fce760a69a63bd0a1.zip |
iptunnel: scrub packet in iptunnel_pull_header
Part of skb_scrub_packet was open coded in iptunnel_pull_header. Let it call
skb_scrub_packet directly instead.
Signed-off-by: Jiri Benc <jbenc@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/sit.c')
-rw-r--r-- | net/ipv6/sit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/sit.c b/net/ipv6/sit.c index 0625ac6356b5..f45b8ffc2840 100644 --- a/net/ipv6/sit.c +++ b/net/ipv6/sit.c @@ -740,7 +740,7 @@ static int ipip_rcv(struct sk_buff *skb) if (!xfrm4_policy_check(NULL, XFRM_POLICY_IN, skb)) goto drop; - if (iptunnel_pull_header(skb, 0, tpi.proto)) + if (iptunnel_pull_header(skb, 0, tpi.proto, false)) goto drop; return ip_tunnel_rcv(tunnel, skb, &tpi, NULL, log_ecn_error); } |