From 107e7d4b5375295e94e01653e3cf064ea6647064 Mon Sep 17 00:00:00 2001 From: Neale Ranns Date: Tue, 11 Apr 2017 09:55:19 -0700 Subject: Remove usued, redundant and deprecated code from lookup.h Change-Id: Ic16bc10d0b2877b2afdf052615f9334f31b9519f Signed-off-by: Neale Ranns --- src/vnet/sr/sr_policy_rewrite.c | 23 ++++++++++------------- 1 file changed, 10 insertions(+), 13 deletions(-) (limited to 'src/vnet/sr/sr_policy_rewrite.c') diff --git a/src/vnet/sr/sr_policy_rewrite.c b/src/vnet/sr/sr_policy_rewrite.c index 61cf4437125..c4024070f00 100755 --- a/src/vnet/sr/sr_policy_rewrite.c +++ b/src/vnet/sr/sr_policy_rewrite.c @@ -376,10 +376,9 @@ update_lb (ip6_sr_policy_t * sr_policy) load_balance_create (0, DPO_PROTO_IP6, fhc)); /* Update FIB entry's to point to the LB DPO in the main FIB and hidden one */ - fib_table_entry_special_dpo_update (fib_table_id_find_fib_index - (FIB_PROTOCOL_IP6, - sr_policy->fib_table), &pfx, - FIB_SOURCE_SR, + fib_table_entry_special_dpo_update (fib_table_find (FIB_PROTOCOL_IP6, + sr_policy->fib_table), + &pfx, FIB_SOURCE_SR, FIB_ENTRY_FLAG_EXCLUSIVE, &sr_policy->bsid_dpo); @@ -470,10 +469,9 @@ update_replicate (ip6_sr_policy_t * sr_policy) .ip6 = sr_policy->bsid, } }; - fib_table_entry_special_dpo_update (fib_table_id_find_fib_index - (FIB_PROTOCOL_IP6, - sr_policy->fib_table), &pfx, - FIB_SOURCE_SR, + fib_table_entry_special_dpo_update (fib_table_find (FIB_PROTOCOL_IP6, + sr_policy->fib_table), + &pfx, FIB_SOURCE_SR, FIB_ENTRY_FLAG_EXCLUSIVE, &sr_policy->bsid_dpo); @@ -568,9 +566,8 @@ sr_policy_add (ip6_address_t * bsid, ip6_address_t * segments, }; /* Lookup the FIB index associated to the table selected */ - u32 fib_index = fib_table_id_find_fib_index (FIB_PROTOCOL_IP6, - (fib_table != - (u32) ~ 0 ? fib_table : 0)); + u32 fib_index = fib_table_find (FIB_PROTOCOL_IP6, + (fib_table != (u32) ~ 0 ? fib_table : 0)); if (fib_index == ~0) return -13; @@ -653,8 +650,8 @@ sr_policy_del (ip6_address_t * bsid, u32 index) , }; - fib_table_entry_special_remove (fib_table_id_find_fib_index - (FIB_PROTOCOL_IP6, sr_policy->fib_table), + fib_table_entry_special_remove (fib_table_find (FIB_PROTOCOL_IP6, + sr_policy->fib_table), &pfx, FIB_SOURCE_SR); fib_table_entry_special_remove (sm->fib_table_ip6, &pfx, FIB_SOURCE_SR); -- cgit 1.2.3-korg