X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvnet%2Fethernet%2Fp2p_ethernet_input.c;h=7e5f7cadc0d76d49762a0c487d3108adfaae0a9e;hb=bdfe5955f;hp=2cae97d7ba96ca532350e5779150acb4d7341580;hpb=7d98a12f29d5b9696df98b8af2f128614a4f0360;p=vpp.git diff --git a/src/vnet/ethernet/p2p_ethernet_input.c b/src/vnet/ethernet/p2p_ethernet_input.c index 2cae97d7ba9..7e5f7cadc0d 100644 --- a/src/vnet/ethernet/p2p_ethernet_input.c +++ b/src/vnet/ethernet/p2p_ethernet_input.c @@ -24,10 +24,10 @@ #include #include -vlib_node_registration_t p2p_ethernet_input_node; +extern vlib_node_registration_t p2p_ethernet_input_node; /* packet trace format function */ -u8 * +static u8 * format_p2p_ethernet_trace (u8 * s, va_list * args) { CLIB_UNUSED (vlib_main_t * vm) = va_arg (*args, vlib_main_t *); @@ -59,9 +59,9 @@ static char *p2p_ethernet_error_strings[] = { #undef _ }; -static uword -p2p_ethernet_input_node_fn (vlib_main_t * vm, - vlib_node_runtime_t * node, vlib_frame_t * frame) +VLIB_NODE_FN (p2p_ethernet_input_node) (vlib_main_t * vm, + vlib_node_runtime_t * node, + vlib_frame_t * frame) { u32 thread_index = vm->thread_index; u32 n_trace = vlib_get_trace_count (vm, node); @@ -233,11 +233,11 @@ p2p_ethernet_input_node_fn (vlib_main_t * vm, /* *INDENT-OFF* */ VLIB_REGISTER_NODE (p2p_ethernet_input_node) = { - .function = p2p_ethernet_input_node_fn, .name = "p2p-ethernet-input", .vector_size = sizeof (u32), .format_trace = format_p2p_ethernet_trace, .type = VLIB_NODE_TYPE_INTERNAL, + .flags = VLIB_NODE_FLAG_TRACE_SUPPORTED, .n_errors = ARRAY_LEN(p2p_ethernet_error_strings), .error_strings = p2p_ethernet_error_strings, @@ -251,8 +251,6 @@ VLIB_REGISTER_NODE (p2p_ethernet_input_node) = { }; /* *INDENT-ON* */ -VLIB_NODE_FUNCTION_MULTIARCH (p2p_ethernet_input_node, - p2p_ethernet_input_node_fn) /* * fd.io coding-style-patch-verification: ON *