diff options
author | Thomas Graf <tgraf@suug.ch> | 2015-07-23 13:04:44 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-07-26 21:19:11 -0700 |
commit | 597798e438371128519fa94dacdc42311b4254a6 (patch) | |
tree | 558b65973401471050804527734e15d158a95a99 /net/openvswitch | |
parent | 9ece39ab9a91aa37090c8fbfe64c240f27ad9f1a (diff) | |
download | linux-stable-597798e438371128519fa94dacdc42311b4254a6.tar.gz linux-stable-597798e438371128519fa94dacdc42311b4254a6.tar.bz2 linux-stable-597798e438371128519fa94dacdc42311b4254a6.zip |
openvswitch: Retrieve tunnel metadata when receiving from vport-netdev
Retrieve the tunnel metadata for packets received by a net_device and
provide it to ovs_vport_receive() for flow key extraction.
[This hunk was in the GRE patch in the initial series and missed the
cut for the initial submission for merging.]
Fixes: 614732eaa12d ("openvswitch: Use regular VXLAN net_device device")
Signed-off-by: Thomas Graf <tgraf@suug.ch>
Acked-by: Pravin B Shelar <pshelar@nicira.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/openvswitch')
-rw-r--r-- | net/openvswitch/vport-netdev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/openvswitch/vport-netdev.c b/net/openvswitch/vport-netdev.c index 68d0582fc001..2254b742168f 100644 --- a/net/openvswitch/vport-netdev.c +++ b/net/openvswitch/vport-netdev.c @@ -58,7 +58,7 @@ static void netdev_port_receive(struct vport *vport, struct sk_buff *skb) skb_push(skb, ETH_HLEN); ovs_skb_postpush_rcsum(skb, skb->data, ETH_HLEN); - ovs_vport_receive(vport, skb, NULL); + ovs_vport_receive(vport, skb, skb_tunnel_info(skb, AF_INET)); return; error: |