diff options
author | Pravin B Shelar <pshelar@nicira.com> | 2015-10-21 09:00:10 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-10-22 16:46:16 +0300 |
commit | aec15924740edc9886051593bc7769873be9498b (patch) | |
tree | ebd4b44ae60d7ee0af79f4496bb29b65e957ff30 /net/openvswitch/vport-netdev.h | |
parent | 99e28f18e3f4daa2091802e07ebeb4f541631320 (diff) | |
download | linux-aec15924740edc9886051593bc7769873be9498b.tar.xz |
openvswitch: Use dev_queue_xmit for vport send.
With use of lwtunnel, we can directly call dev_queue_xmit()
rather than calling netdev vport send operation.
Following change make tunnel vport code bit cleaner.
Signed-off-by: Pravin B Shelar <pshelar@nicira.com>
Acked-by: Thomas Graf <tgraf@suug.ch>
Acked-by: Jiri Benc <jbenc@redhat.com>
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 | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/net/openvswitch/vport-netdev.h b/net/openvswitch/vport-netdev.h index bf22fcedbc69..19e29c12adcc 100644 --- a/net/openvswitch/vport-netdev.h +++ b/net/openvswitch/vport-netdev.h @@ -27,7 +27,6 @@ struct vport *ovs_netdev_get_vport(struct net_device *dev); struct vport *ovs_netdev_link(struct vport *vport, const char *name); -void ovs_netdev_send(struct vport *vport, struct sk_buff *skb); void ovs_netdev_detach_dev(struct vport *); int __init ovs_netdev_init(void); |