diff options
author | Jean Sacren <sakiwit@gmail.com> | 2016-01-09 16:07:09 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-01-10 23:49:21 -0500 |
commit | 5ea030429fed07ea47e45152202d6ecb24133374 (patch) | |
tree | 780a8faeb5332fc9ec2cb2125dba8deb58bdb96e /net/openvswitch/vport.h | |
parent | 3c6396d6309b446fe28c8c6b49fbb4fa22754650 (diff) | |
download | blackbird-op-linux-5ea030429fed07ea47e45152202d6ecb24133374.tar.gz blackbird-op-linux-5ea030429fed07ea47e45152202d6ecb24133374.zip |
openvswitch: clean up unused function
commit 6b001e682e90 ("openvswitch: Use Geneve device.")
The commit above deleted the only call site of ovs_tunnel_route_lookup()
and now that function is not used any more. So let's delete the function
definition as well.
Signed-off-by: Jean Sacren <sakiwit@gmail.com>
Acked-by: Thomas Graf <tgraf@suug.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/openvswitch/vport.h')
-rw-r--r-- | net/openvswitch/vport.h | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/net/openvswitch/vport.h b/net/openvswitch/vport.h index 8ea3a96980ac..f00bb153ad13 100644 --- a/net/openvswitch/vport.h +++ b/net/openvswitch/vport.h @@ -204,26 +204,6 @@ int __ovs_vport_ops_register(struct vport_ops *ops); }) void ovs_vport_ops_unregister(struct vport_ops *ops); - -static inline struct rtable *ovs_tunnel_route_lookup(struct net *net, - const struct ip_tunnel_key *key, - u32 mark, - struct flowi4 *fl, - u8 protocol) -{ - struct rtable *rt; - - memset(fl, 0, sizeof(*fl)); - fl->daddr = key->u.ipv4.dst; - fl->saddr = key->u.ipv4.src; - fl->flowi4_tos = RT_TOS(key->tos); - fl->flowi4_mark = mark; - fl->flowi4_proto = protocol; - - rt = ip_route_output_key(net, fl); - return rt; -} - void ovs_vport_send(struct vport *vport, struct sk_buff *skb); #endif /* vport.h */ |