diff options
Diffstat (limited to 'src/vnet')
-rw-r--r-- | src/vnet/interface.c | 2 | ||||
-rw-r--r-- | src/vnet/interface.h | 3 | ||||
-rw-r--r-- | src/vnet/interface_output.c | 30 |
3 files changed, 4 insertions, 31 deletions
diff --git a/src/vnet/interface.c b/src/vnet/interface.c index e2e4e9166bf..862f57404aa 100644 --- a/src/vnet/interface.c +++ b/src/vnet/interface.c @@ -810,7 +810,7 @@ vnet_register_interface (vnet_main_t * vnm, vnet_config_main_t *cm; u32 hw_index, i; char *tx_node_name = NULL, *output_node_name = NULL; - vlib_node_function_t *output_node = vnet_interface_output_node_get (vm); + vlib_node_function_t *output_node = vnet_interface_output_node_get (); pool_get (im->hw_interfaces, hw); clib_memset (hw, 0, sizeof (*hw)); diff --git a/src/vnet/interface.h b/src/vnet/interface.h index e9e7462efd7..88f7c88eff9 100644 --- a/src/vnet/interface.h +++ b/src/vnet/interface.h @@ -326,7 +326,6 @@ CLIB_MARCH_SFX (devclass##_tx_fn_multiarch_register) (void) \ vlib_node_fn_registration_t *r; \ r = &CLIB_MARCH_SFX (devclass##_tx_fn_registration); \ r->priority = CLIB_MARCH_FN_PRIORITY(); \ - r->name = CLIB_MARCH_VARIANT_STR; \ r->next_registration = devclass.tx_fn_registrations; \ devclass.tx_fn_registrations = r; \ } \ @@ -956,7 +955,7 @@ void vnet_pcap_drop_trace_filter_add_del (u32 error_index, int is_add); int vnet_interface_name_renumber (u32 sw_if_index, u32 new_show_dev_instance); -vlib_node_function_t *vnet_interface_output_node_get (vlib_main_t * vm); +vlib_node_function_t *vnet_interface_output_node_get (void); void vnet_register_format_buffer_opaque_helper (vnet_buffer_opquae_formatter_t fn); diff --git a/src/vnet/interface_output.c b/src/vnet/interface_output.c index e79ad451c55..3363f76b722 100644 --- a/src/vnet/interface_output.c +++ b/src/vnet/interface_output.c @@ -513,35 +513,9 @@ CLIB_MARCH_FN_REGISTRATION (vnet_interface_output_node); #ifndef CLIB_MARCH_VARIANT vlib_node_function_t * -vnet_interface_output_node_get (vlib_main_t * vm) +vnet_interface_output_node_get (void) { - vlib_node_function_t *fn = 0; - vlib_node_fn_registration_t *fnr; - char *name = 0; - vlib_node_t *node = vlib_get_node_by_name (vm, (u8 *) "interface-output"); - ASSERT (node); - - /* search for the same name */ - fnr = node->node_fn_registrations; - while (fnr) - { - if (fnr->function == node->function) - { - name = fnr->name; - break; - } - fnr = fnr->next_registration; - } - - if (name) - { - fn = CLIB_MARCH_FN_POINTER_BY_NAME (vnet_interface_output_node, name); - } - if (!fn) /* revert to march type selection if search failed */ - { - fn = CLIB_MARCH_FN_POINTER (vnet_interface_output_node); - } - return fn; + return CLIB_MARCH_FN_POINTER (vnet_interface_output_node); } #endif /* CLIB_MARCH_VARIANT */ |