diff options
| author | Pravin B Shelar <[email protected]> | 2013-06-18 00:50:18 +0000 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2013-06-20 01:07:41 +0000 |
| commit | 7d5437c709ded4f152cb8b305d17972d6707f20c (patch) | |
| tree | d69da5004c4a65a0d4f60f5f8884f2aad120698f /net/openvswitch/vport-netdev.c | |
| parent | openvswitch: Copy individual actions. (diff) | |
| download | kernel-7d5437c709ded4f152cb8b305d17972d6707f20c.tar.gz kernel-7d5437c709ded4f152cb8b305d17972d6707f20c.zip | |
openvswitch: Add tunneling interface.
Add ovs tunnel interface for set tunnel action for userspace.
Signed-off-by: Pravin B Shelar <[email protected]>
Acked-by: Jesse Gross <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'net/openvswitch/vport-netdev.c')
| -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 40de815b4213..5982f3f62835 100644 --- a/net/openvswitch/vport-netdev.c +++ b/net/openvswitch/vport-netdev.c @@ -51,7 +51,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); + ovs_vport_receive(vport, skb, NULL); return; error: |
