X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fplugins%2Fnsh%2Fnsh_pop.c;h=188c513af27aca26a02c31b72af621f1c89d7f4d;hb=98c2348b5cf9669c9698b9fdd31ae653081e9180;hp=682a92d178aede1dc8188219e0ccefbca99be978;hpb=178cf493d009995b28fdf220f04c98860ff79a9b;p=vpp.git diff --git a/src/plugins/nsh/nsh_pop.c b/src/plugins/nsh/nsh_pop.c index 682a92d178a..188c513af27 100644 --- a/src/plugins/nsh/nsh_pop.c +++ b/src/plugins/nsh/nsh_pop.c @@ -30,20 +30,8 @@ extern nsh_option_map_t * nsh_md2_lookup_option (u16 class, u8 type); extern u8 * format_nsh_header (u8 * s, va_list * args); extern u8 * format_nsh_node_map_trace (u8 * s, va_list * args); - -/* format from network order */ -u8 * format_nsh_pop_header (u8 * s, va_list * args) -{ - return format_nsh_header(s, args); -} - - - -u8 * format_nsh_pop_node_map_trace (u8 * s, va_list * args) -{ - return format_nsh_node_map_trace(s, args); -} - +extern u8 * format_nsh_pop_header (u8 * s, va_list * args); +extern u8 * format_nsh_pop_node_map_trace (u8 * s, va_list * args); static uword nsh_pop_inline (vlib_main_t * vm, @@ -326,8 +314,7 @@ nsh_pop_inline (vlib_main_t * vm, * @return from_frame->n_vectors * */ -static uword -nsh_pop (vlib_main_t * vm, vlib_node_runtime_t * node, +VLIB_NODE_FN (nsh_pop_node) (vlib_main_t * vm, vlib_node_runtime_t * node, vlib_frame_t * from_frame) { return nsh_pop_inline (vm, node, from_frame); @@ -341,7 +328,6 @@ static char * nsh_pop_node_error_strings[] = { /* register nsh-input node */ VLIB_REGISTER_NODE (nsh_pop_node) = { - .function = nsh_pop, .name = "nsh-pop", .vector_size = sizeof (u32), .format_trace = format_nsh_pop_node_map_trace, @@ -360,6 +346,3 @@ VLIB_REGISTER_NODE (nsh_pop_node) = { }, }; -VLIB_NODE_FUNCTION_MULTIARCH (nsh_pop_node, nsh_pop); - -