diff options
author | Pravin B Shelar <pshelar@nicira.com> | 2015-08-08 02:51:33 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-08-10 17:03:54 -0400 |
commit | a9020fde67a6eb77f8130feff633189f99264db1 (patch) | |
tree | 4e911a8b9b4a774ba145f1d049df6e417863f902 /net/openvswitch/vport-netdev.h | |
parent | fb811395cd5a71b9e94a068f524a6f4a21b67bdb (diff) |
openvswitch: Move tunnel destroy function to oppenvswitch module.
This function will be used in gre and geneve vport implementations.
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/openvswitch/vport-netdev.h')
-rw-r--r-- | net/openvswitch/vport-netdev.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/openvswitch/vport-netdev.h b/net/openvswitch/vport-netdev.h index 804412697a90..497cc81f1aca 100644 --- a/net/openvswitch/vport-netdev.h +++ b/net/openvswitch/vport-netdev.h | |||
@@ -29,9 +29,9 @@ struct vport *ovs_netdev_get_vport(struct net_device *dev); | |||
29 | struct vport *ovs_netdev_link(struct vport *vport, const char *name); | 29 | struct vport *ovs_netdev_link(struct vport *vport, const char *name); |
30 | int ovs_netdev_send(struct vport *vport, struct sk_buff *skb); | 30 | int ovs_netdev_send(struct vport *vport, struct sk_buff *skb); |
31 | void ovs_netdev_detach_dev(struct vport *); | 31 | void ovs_netdev_detach_dev(struct vport *); |
32 | void ovs_vport_free_rcu(struct rcu_head *); | ||
33 | 32 | ||
34 | int __init ovs_netdev_init(void); | 33 | int __init ovs_netdev_init(void); |
35 | void ovs_netdev_exit(void); | 34 | void ovs_netdev_exit(void); |
36 | 35 | ||
36 | void ovs_netdev_tunnel_destroy(struct vport *vport); | ||
37 | #endif /* vport_netdev.h */ | 37 | #endif /* vport_netdev.h */ |