aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv4/ipip.c
diff options
context:
space:
mode:
authorPravin B Shelar <pshelar@nicira.com>2015-08-08 02:51:42 -0400
committerDavid S. Miller <davem@davemloft.net>2015-08-10 17:03:54 -0400
commit2e15ea390e6f4466655066d97e22ec66870a042c (patch)
tree68df68ac988e713a34b830bfabe05faaf0d55bf4 /net/ipv4/ipip.c
parenta9020fde67a6eb77f8130feff633189f99264db1 (diff)
ip_gre: Add support to collect tunnel metadata.
Following patch create new tunnel flag which enable tunnel metadata collection on given device. Signed-off-by: Pravin B Shelar <pshelar@nicira.com> Acked-by: Thomas Graf <tgraf@suug.ch> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/ipip.c')
-rw-r--r--net/ipv4/ipip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv4/ipip.c b/net/ipv4/ipip.c
index 254238daf58b..f34c31defafe 100644
--- a/net/ipv4/ipip.c
+++ b/net/ipv4/ipip.c
@@ -198,7 +198,7 @@ static int ipip_rcv(struct sk_buff *skb)
198 goto drop; 198 goto drop;
199 if (iptunnel_pull_header(skb, 0, tpi.proto)) 199 if (iptunnel_pull_header(skb, 0, tpi.proto))
200 goto drop; 200 goto drop;
201 return ip_tunnel_rcv(tunnel, skb, &tpi, log_ecn_error); 201 return ip_tunnel_rcv(tunnel, skb, &tpi, NULL, log_ecn_error);
202 } 202 }
203 203
204 return -1; 204 return -1;