From 68d48d94a84f6499a16cd362d0a225b1720baf67 Mon Sep 17 00:00:00 2001 From: Neale Ranns Date: Thu, 3 Jun 2021 14:59:47 +0000 Subject: pg: Reduce the inclusion of pg.h Type: style reduce the number of files recompiled after changing pg.h from 1110 to 102. Signed-off-by: Neale Ranns Change-Id: I50611eba818eeb3a2dffd437a3c72c77766bed80 --- src/vnet/osi/node.c | 11 +++++++++++ src/vnet/osi/osi.h | 12 ------------ 2 files changed, 11 insertions(+), 12 deletions(-) (limited to 'src/vnet/osi') diff --git a/src/vnet/osi/node.c b/src/vnet/osi/node.c index bdeab2df074..4eb3e461139 100644 --- a/src/vnet/osi/node.c +++ b/src/vnet/osi/node.c @@ -262,6 +262,17 @@ VLIB_REGISTER_NODE (osi_input_node) = { }; /* *INDENT-ON* */ +static void +osi_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_osi_header_with_length; + n->unformat_buffer = unformat_osi_header; + pn->unformat_edit = unformat_pg_osi_header; +} + static clib_error_t * osi_input_init (vlib_main_t * vm) { diff --git a/src/vnet/osi/osi.h b/src/vnet/osi/osi.h index 0ff267a330b..fb248ed9cc5 100644 --- a/src/vnet/osi/osi.h +++ b/src/vnet/osi/osi.h @@ -41,7 +41,6 @@ #define included_osi_h #include -#include #define foreach_osi_protocol \ _ (null, 0x0) \ @@ -142,17 +141,6 @@ unformat_function_t unformat_osi_protocol; unformat_function_t unformat_osi_header; unformat_function_t unformat_pg_osi_header; -always_inline void -osi_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_osi_header_with_length; - n->unformat_buffer = unformat_osi_header; - pn->unformat_edit = unformat_pg_osi_header; -} - void osi_register_input_protocol (osi_protocol_t protocol, u32 node_index); format_function_t format_osi_header; -- cgit 1.2.3-korg