Skip to content

Commit

Permalink
openvswitch: clean up unused function
Browse files Browse the repository at this point in the history
commit 6b001e6 ("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>
  • Loading branch information
Jean Sacren authored and David S. Miller committed Jan 11, 2016
1 parent 3c6396d commit 5ea0304
Showing 1 changed file with 0 additions and 20 deletions.
20 changes: 0 additions & 20 deletions net/openvswitch/vport.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 */

0 comments on commit 5ea0304

Please sign in to comment.