From 2008912b56abbf3167faf9b787df76605684d9e1 Mon Sep 17 00:00:00 2001 From: Neale Ranns Date: Thu, 2 Dec 2021 17:07:14 +0000 Subject: fib: Fix the display (or lack of) for fib node types in dependent children lists Type: fix When registering a new FIB node type, no name was required on the API, and so no name was printed. Signed-off-by: Neale Ranns Change-Id: I8a99cf29c194637a550061b0a5e9782ffe8b31dd --- src/plugins/abf/abf_itf_attach.c | 2 +- src/plugins/abf/abf_policy.c | 3 ++- src/plugins/cnat/cnat_translation.c | 2 +- src/plugins/gtpu/gtpu.c | 2 +- src/plugins/ila/ila.c | 2 +- src/plugins/ioam/lib-vxlan-gpe/vxlan_gpe_ioam.c | 3 ++- src/plugins/l3xc/l3xc.c | 2 +- src/plugins/lb/lb.c | 2 +- src/plugins/nsh/nsh-md2-ioam/nsh_md2_ioam.c | 2 +- 9 files changed, 11 insertions(+), 9 deletions(-) (limited to 'src/plugins') diff --git a/src/plugins/abf/abf_itf_attach.c b/src/plugins/abf/abf_itf_attach.c index 4f17f720f3b..6f85ff69ae6 100644 --- a/src/plugins/abf/abf_itf_attach.c +++ b/src/plugins/abf/abf_itf_attach.c @@ -760,7 +760,7 @@ static clib_error_t * abf_itf_bond_init (vlib_main_t * vm) { abf_itf_attach_fib_node_type = - fib_node_register_new_type (&abf_itf_attach_vft); + fib_node_register_new_type ("abf-attach", &abf_itf_attach_vft); clib_error_t *acl_init_res = acl_plugin_exports_init (&acl_plugin); if (acl_init_res) return (acl_init_res); diff --git a/src/plugins/abf/abf_policy.c b/src/plugins/abf/abf_policy.c index 945434bca27..1921df113ff 100644 --- a/src/plugins/abf/abf_policy.c +++ b/src/plugins/abf/abf_policy.c @@ -456,7 +456,8 @@ static const fib_node_vft_t abf_policy_vft = { static clib_error_t * abf_policy_init (vlib_main_t * vm) { - abf_policy_fib_node_type = fib_node_register_new_type (&abf_policy_vft); + abf_policy_fib_node_type = + fib_node_register_new_type ("abf-policy", &abf_policy_vft); return (NULL); } diff --git a/src/plugins/cnat/cnat_translation.c b/src/plugins/cnat/cnat_translation.c index 049809a8684..748d531f3de 100644 --- a/src/plugins/cnat/cnat_translation.c +++ b/src/plugins/cnat/cnat_translation.c @@ -825,7 +825,7 @@ cnat_translation_init (vlib_main_t * vm) ip6_main_t *i6m = &ip6_main; cnat_main_t *cm = &cnat_main; cnat_translation_fib_node_type = - fib_node_register_new_type (&cnat_translation_vft); + fib_node_register_new_type ("cnat-translation", &cnat_translation_vft); clib_bihash_init_8_8 (&cnat_translation_db, "CNat translation DB", cm->translation_hash_buckets, diff --git a/src/plugins/gtpu/gtpu.c b/src/plugins/gtpu/gtpu.c index 67c91dd131a..db596703158 100644 --- a/src/plugins/gtpu/gtpu.c +++ b/src/plugins/gtpu/gtpu.c @@ -1262,7 +1262,7 @@ gtpu_init (vlib_main_t * vm) sizeof (ip46_address_t), sizeof (mcast_shared_t)); - gtm->fib_node_type = fib_node_register_new_type (>pu_vft); + gtm->fib_node_type = fib_node_register_new_type ("gtpu", >pu_vft); return 0; } diff --git a/src/plugins/ila/ila.c b/src/plugins/ila/ila.c index 6e062cb6035..0672ad905fc 100644 --- a/src/plugins/ila/ila.c +++ b/src/plugins/ila/ila.c @@ -939,7 +939,7 @@ ila_init (vlib_main_t * vm) ilm->lookup_table_nbuckets, ilm->lookup_table_size); ila_dpo_type = dpo_register_new_type(&ila_vft, ila_nodes); - ila_fib_node_type = fib_node_register_new_type(&ila_fib_node_vft); + ila_fib_node_type = fib_node_register_new_type ("ila", &ila_fib_node_vft); ila_fib_src = fib_source_allocate("ila", FIB_SOURCE_PRIORITY_HI, FIB_SOURCE_BH_SIMPLE); diff --git a/src/plugins/ioam/lib-vxlan-gpe/vxlan_gpe_ioam.c b/src/plugins/ioam/lib-vxlan-gpe/vxlan_gpe_ioam.c index 59798dc7494..870de924e65 100644 --- a/src/plugins/ioam/lib-vxlan-gpe/vxlan_gpe_ioam.c +++ b/src/plugins/ioam/lib-vxlan-gpe/vxlan_gpe_ioam.c @@ -751,7 +751,8 @@ void vxlan_gpe_ioam_interface_init (void) { vxlan_gpe_ioam_main_t *hm = &vxlan_gpe_ioam_main; - hm->fib_entry_type = fib_node_register_new_type (&vxlan_gpe_ioam_vft); + hm->fib_entry_type = + fib_node_register_new_type ("vxlan-gpe", &vxlan_gpe_ioam_vft); return; } diff --git a/src/plugins/l3xc/l3xc.c b/src/plugins/l3xc/l3xc.c index 021a850d7d0..0f7324c277d 100644 --- a/src/plugins/l3xc/l3xc.c +++ b/src/plugins/l3xc/l3xc.c @@ -381,7 +381,7 @@ static const fib_node_vft_t l3xc_vft = { static clib_error_t * l3xc_init (vlib_main_t * vm) { - l3xc_fib_node_type = fib_node_register_new_type (&l3xc_vft); + l3xc_fib_node_type = fib_node_register_new_type ("l3xc", &l3xc_vft); return (NULL); } diff --git a/src/plugins/lb/lb.c b/src/plugins/lb/lb.c index 6fc7f0f92b2..5bc7cf25a97 100644 --- a/src/plugins/lb/lb.c +++ b/src/plugins/lb/lb.c @@ -1412,7 +1412,7 @@ lb_init (vlib_main_t * vm) lb_dpo_nat4_port_nodes); lbm->dpo_nat6_port_type = dpo_register_new_type(&lb_vft, lb_dpo_nat6_port_nodes); - lbm->fib_node_type = fib_node_register_new_type(&lb_fib_node_vft); + lbm->fib_node_type = fib_node_register_new_type ("lb", &lb_fib_node_vft); //Init AS reference counters vlib_refcount_init(&lbm->as_refcount); diff --git a/src/plugins/nsh/nsh-md2-ioam/nsh_md2_ioam.c b/src/plugins/nsh/nsh-md2-ioam/nsh_md2_ioam.c index 63e6a98fe27..b401530c875 100644 --- a/src/plugins/nsh/nsh-md2-ioam/nsh_md2_ioam.c +++ b/src/plugins/nsh/nsh-md2-ioam/nsh_md2_ioam.c @@ -500,7 +500,7 @@ void nsh_md2_ioam_interface_init (void) { nsh_md2_ioam_main_t *hm = &nsh_md2_ioam_main; - hm->fib_entry_type = fib_node_register_new_type (&nsh_md2_ioam_vft); + hm->fib_entry_type = fib_node_register_new_type ("nsh", &nsh_md2_ioam_vft); return; } -- cgit 1.2.3-korg