From 735f8793bf3e8ad37c7e608663283b7d89b7101d Mon Sep 17 00:00:00 2001 From: Jon Loeliger Date: Thu, 1 Feb 2018 11:19:29 -0600 Subject: FIB: Consolidate several copies of fib_ip_proto() into one. Rather than having multiple copies of the same function scattered around, promote the function into the FIB PROTOCOL definitions in fib_types.h. Change-Id: I11c4d85931167d3a5f3dc1278afecc8845b23cd7 Signed-off-by: Jon Loeliger --- src/vnet/vxlan/vxlan.c | 6 ------ 1 file changed, 6 deletions(-) (limited to 'src/vnet/vxlan') diff --git a/src/vnet/vxlan/vxlan.c b/src/vnet/vxlan/vxlan.c index b0a186e2c05..64936c0e310 100644 --- a/src/vnet/vxlan/vxlan.c +++ b/src/vnet/vxlan/vxlan.c @@ -322,12 +322,6 @@ mcast_shared_remove(ip46_address_t *dst) hash_unset_mem_free (&vxlan_main.mcast_shared, dst); } -static inline fib_protocol_t -fib_ip_proto(bool is_ip6) -{ - return (is_ip6) ? FIB_PROTOCOL_IP6 : FIB_PROTOCOL_IP4; -} - int vnet_vxlan_add_del_tunnel (vnet_vxlan_add_del_tunnel_args_t *a, u32 * sw_if_indexp) { -- cgit 1.2.3-korg