diff options
Diffstat (limited to 'src/vnet/hdlc')
-rw-r--r-- | src/vnet/hdlc/hdlc.h | 12 | ||||
-rw-r--r-- | src/vnet/hdlc/node.c | 11 |
2 files changed, 11 insertions, 12 deletions
diff --git a/src/vnet/hdlc/hdlc.h b/src/vnet/hdlc/hdlc.h index a2bd6e928b2..490ea949dae 100644 --- a/src/vnet/hdlc/hdlc.h +++ b/src/vnet/hdlc/hdlc.h @@ -42,7 +42,6 @@ #include <vnet/vnet.h> #include <vnet/hdlc/packet.h> -#include <vnet/pg/pg.h> extern vnet_hw_interface_class_t hdlc_hw_interface_class; @@ -106,17 +105,6 @@ unformat_function_t unformat_hdlc_protocol_net_byte_order; unformat_function_t unformat_hdlc_header; unformat_function_t unformat_pg_hdlc_header; -always_inline void -hdlc_setup_node (vlib_main_t * vm, u32 node_index) -{ - vlib_node_t *n = vlib_get_node (vm, node_index); - pg_node_t *pn = pg_get_node (node_index); - - n->format_buffer = format_hdlc_header_with_length; - n->unformat_buffer = unformat_hdlc_header; - pn->unformat_edit = unformat_pg_hdlc_header; -} - void hdlc_register_input_protocol (vlib_main_t * vm, hdlc_protocol_t protocol, u32 node_index); diff --git a/src/vnet/hdlc/node.c b/src/vnet/hdlc/node.c index d36b09d4dcd..8bb621231c7 100644 --- a/src/vnet/hdlc/node.c +++ b/src/vnet/hdlc/node.c @@ -324,6 +324,17 @@ hdlc_input_runtime_init (vlib_main_t * vm) return 0; } +static void +hdlc_setup_node (vlib_main_t *vm, u32 node_index) +{ + vlib_node_t *n = vlib_get_node (vm, node_index); + pg_node_t *pn = pg_get_node (node_index); + + n->format_buffer = format_hdlc_header_with_length; + n->unformat_buffer = unformat_hdlc_header; + pn->unformat_edit = unformat_pg_hdlc_header; +} + static clib_error_t * hdlc_input_init (vlib_main_t * vm) { |