X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fplugins%2Fnat%2Fnat_det_in2out.c;h=918e1f5f9c0a3811756e22c9c91cb64acd7c4cb4;hb=e69e423743630b52e13db58c3f0229df8a46c07f;hp=e4aa0463a065c364d245b7ef8c064fb67aa1d7f6;hpb=7dcb80a202f1ce075434a17ace3334a7a311e84e;p=vpp.git diff --git a/src/plugins/nat/nat_det_in2out.c b/src/plugins/nat/nat_det_in2out.c index e4aa0463a06..918e1f5f9c0 100644 --- a/src/plugins/nat/nat_det_in2out.c +++ b/src/plugins/nat/nat_det_in2out.c @@ -63,8 +63,6 @@ static char *nat_det_in2out_error_strings[] = { #undef _ }; -vlib_node_registration_t snat_det_in2out_node; - static u8 * format_nat_det_in2out_trace (u8 * s, va_list * args) { @@ -78,6 +76,7 @@ format_nat_det_in2out_trace (u8 * s, va_list * args) return s; } +#ifndef CLIB_MARCH_VARIANT /** * Get address and port values to be used for ICMP packet translation * and create session if needed @@ -242,10 +241,11 @@ out: *(snat_det_map_t **) e = dm0; return next0; } +#endif -static uword -snat_det_in2out_node_fn (vlib_main_t * vm, - vlib_node_runtime_t * node, vlib_frame_t * frame) +VLIB_NODE_FN (snat_det_in2out_node) (vlib_main_t * vm, + vlib_node_runtime_t * node, + vlib_frame_t * frame) { u32 n_left_from, *from, *to_next; nat_det_in2out_next_t next_index; @@ -849,7 +849,7 @@ snat_det_in2out_node_fn (vlib_main_t * vm, vlib_put_next_frame (vm, node, next_index, n_left_to_next); } - vlib_node_increment_counter (vm, snat_det_in2out_node.index, + vlib_node_increment_counter (vm, sm->det_in2out_node_index, NAT_DET_IN2OUT_ERROR_IN2OUT_PACKETS, pkts_processed); return frame->n_vectors; @@ -857,7 +857,6 @@ snat_det_in2out_node_fn (vlib_main_t * vm, /* *INDENT-OFF* */ VLIB_REGISTER_NODE (snat_det_in2out_node) = { - .function = snat_det_in2out_node_fn, .name = "nat44-det-in2out", .vector_size = sizeof (u32), .format_trace = format_nat_det_in2out_trace, @@ -874,8 +873,6 @@ VLIB_REGISTER_NODE (snat_det_in2out_node) = { }; /* *INDENT-ON* */ -VLIB_NODE_FUNCTION_MULTIARCH (snat_det_in2out_node, snat_det_in2out_node_fn); - /* * fd.io coding-style-patch-verification: ON *