diff options
author | Pravin B Shelar <pshelar@nicira.com> | 2015-10-20 23:00:10 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2015-10-22 06:46:16 -0700 |
commit | aec15924740edc9886051593bc7769873be9498b (patch) | |
tree | ebd4b44ae60d7ee0af79f4496bb29b65e957ff30 /net/openvswitch/vport-geneve.c | |
parent | 99e28f18e3f4daa2091802e07ebeb4f541631320 (diff) | |
download | linux-stable-aec15924740edc9886051593bc7769873be9498b.tar.gz linux-stable-aec15924740edc9886051593bc7769873be9498b.tar.bz2 linux-stable-aec15924740edc9886051593bc7769873be9498b.zip |
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-geneve.c')
-rw-r--r-- | net/openvswitch/vport-geneve.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/openvswitch/vport-geneve.c b/net/openvswitch/vport-geneve.c index 2735e9c4a3b8..7a568ca8da54 100644 --- a/net/openvswitch/vport-geneve.c +++ b/net/openvswitch/vport-geneve.c @@ -128,7 +128,7 @@ static struct vport_ops ovs_geneve_vport_ops = { .create = geneve_create, .destroy = ovs_netdev_tunnel_destroy, .get_options = geneve_get_options, - .send = ovs_netdev_send, + .send = dev_queue_xmit, .owner = THIS_MODULE, .get_egress_tun_info = geneve_get_egress_tun_info, }; |