From ae8098350cb7b96f7495fa4d4180238064256e14 Mon Sep 17 00:00:00 2001 From: Neale Ranns Date: Fri, 23 Nov 2018 09:00:27 -0800 Subject: IP6-MFIB: replace the radix tree with bihash (VPP-1526) Change-Id: I7a48890c075826fbd8c75436dfdc5ffff230a693 Signed-off-by: Neale Ranns --- src/vpp/stats/stats_to_be_deprecated.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/vpp') diff --git a/src/vpp/stats/stats_to_be_deprecated.c b/src/vpp/stats/stats_to_be_deprecated.c index 70974271658..08117a1b736 100644 --- a/src/vpp/stats/stats_to_be_deprecated.c +++ b/src/vpp/stats/stats_to_be_deprecated.c @@ -2005,7 +2005,7 @@ do_ip6_fib_counters (stats_main_t * sm) u32 items_this_message; vl_api_ip6_fib_counter_t *ctrp = 0; u32 start_at_fib_index = 0; - BVT (clib_bihash) * h = &im6->ip6_table[IP6_FIB_TABLE_FWDING].ip6_hash; + clib_bihash_24_8_t *h = &im6->ip6_table[IP6_FIB_TABLE_FWDING].ip6_hash; add_routes_in_fib_arg_t _a, *a = &_a; int i; @@ -2049,7 +2049,7 @@ again: if (clib_setjmp (&sm->jmp_buf, 0) == 0) { start_at_fib_index = fib - im6->fibs; - BV (clib_bihash_foreach_key_value_pair) (h, add_routes_in_fib, a); + clib_bihash_foreach_key_value_pair_24_8 (h, add_routes_in_fib, a); } else { -- cgit 1.2.3-korg