aboutsummaryrefslogtreecommitdiffstats
path: root/src/plugins/nsh/nsh_node.c
diff options
context:
space:
mode:
authorFilip Tehlar <ftehlar@cisco.com>2019-02-27 08:44:26 -0800
committerDamjan Marion <dmarion@me.com>2019-03-01 20:27:40 +0000
commit2a745c13c5c92c7ea5cfa279dcb7fd52b8eb273e (patch)
tree45bc327e7d016fbecec05dc792b5535fadde9ddf /src/plugins/nsh/nsh_node.c
parent0333121d83287957062cdd03c6ec40e8f21e2b53 (diff)
nsh: fix load failure
Change-Id: I687ddba41bc80e2fbb39ebc30449ced7254e45f8 Signed-off-by: Filip Tehlar <ftehlar@cisco.com>
Diffstat (limited to 'src/plugins/nsh/nsh_node.c')
-rw-r--r--src/plugins/nsh/nsh_node.c19
1 files changed, 10 insertions, 9 deletions
diff --git a/src/plugins/nsh/nsh_node.c b/src/plugins/nsh/nsh_node.c
index 5e2af68e417..d65806871af 100644
--- a/src/plugins/nsh/nsh_node.c
+++ b/src/plugins/nsh/nsh_node.c
@@ -835,8 +835,8 @@ nsh_input_map (vlib_main_t * vm,
* @return from_frame->n_vectors
*
*/
-VLIB_NODE_FN (nsh_input) (vlib_main_t * vm, vlib_node_runtime_t * node,
- vlib_frame_t * from_frame)
+VLIB_NODE_FN (nsh_input_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
+ vlib_frame_t * from_frame)
{
return nsh_input_map (vm, node, from_frame, NSH_INPUT_TYPE);
}
@@ -852,8 +852,8 @@ VLIB_NODE_FN (nsh_input) (vlib_main_t * vm, vlib_node_runtime_t * node,
* @return from_frame->n_vectors
*
*/
-VLIB_NODE_FN (nsh_proxy) (vlib_main_t * vm, vlib_node_runtime_t * node,
- vlib_frame_t * from_frame)
+VLIB_NODE_FN (nsh_proxy_node) (vlib_main_t * vm, vlib_node_runtime_t * node,
+ vlib_frame_t * from_frame)
{
return nsh_input_map (vm, node, from_frame, NSH_PROXY_TYPE);
}
@@ -869,8 +869,9 @@ VLIB_NODE_FN (nsh_proxy) (vlib_main_t * vm, vlib_node_runtime_t * node,
* @return from_frame->n_vectors
*
*/
-VLIB_NODE_FN (nsh_classifier) (vlib_main_t * vm, vlib_node_runtime_t * node,
- vlib_frame_t * from_frame)
+VLIB_NODE_FN (nsh_classifier_node) (vlib_main_t * vm,
+ vlib_node_runtime_t * node,
+ vlib_frame_t * from_frame)
{
return nsh_input_map (vm, node, from_frame, NSH_CLASSIFIER_TYPE);
}
@@ -886,9 +887,9 @@ VLIB_NODE_FN (nsh_classifier) (vlib_main_t * vm, vlib_node_runtime_t * node,
* @return from_frame->n_vectors
*
*/
-VLIB_NODE_FN (nsh_aware_vnf_proxy) (vlib_main_t * vm,
- vlib_node_runtime_t * node,
- vlib_frame_t * from_frame)
+VLIB_NODE_FN (nsh_aware_vnf_proxy_node) (vlib_main_t * vm,
+ vlib_node_runtime_t * node,
+ vlib_frame_t * from_frame)
{
return nsh_input_map (vm, node, from_frame, NSH_AWARE_VNF_PROXY_TYPE);
}