X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvnet%2Fsr%2Fsr_localsid.c;h=32fc5f823ef86900b5e30dbbe7dc616fd42ada68;hb=107e7d4b5375295e94e01653e3cf064ea6647064;hp=6d72a50608873b26ad8253780f6c35feca833ee2;hpb=3a7956383420a1d2f5f28b5bd3d3b3f5dda0420d;p=vpp.git diff --git a/src/vnet/sr/sr_localsid.c b/src/vnet/sr/sr_localsid.c index 6d72a506088..32fc5f823ef 100755 --- a/src/vnet/sr/sr_localsid.c +++ b/src/vnet/sr/sr_localsid.c @@ -93,9 +93,9 @@ sr_cli_localsid (char is_del, ip6_address_t * localsid_addr, } }; - fib_table_entry_delete (fib_table_id_find_fib_index - (FIB_PROTOCOL_IP6, fib_table), &pfx, - FIB_SOURCE_SR); + fib_table_entry_delete (fib_table_find (FIB_PROTOCOL_IP6, + fib_table), + &pfx, FIB_SOURCE_SR); /* In case it is a Xconnect iface remove the (OIF, NHOP) adj */ if (ls->behavior == SR_BEHAVIOR_X || ls->behavior == SR_BEHAVIOR_DX6 @@ -135,7 +135,7 @@ sr_cli_localsid (char is_del, ip6_address_t * localsid_addr, pfx.fp_addr.as_u64[1] = localsid_addr->as_u64[1]; /* Lookup the FIB index associated to the table id provided */ - u32 fib_index = fib_table_id_find_fib_index (FIB_PROTOCOL_IP6, fib_table); + u32 fib_index = fib_table_find (FIB_PROTOCOL_IP6, fib_table); if (fib_index == ~0) return -3;