aboutsummaryrefslogtreecommitdiffstats
path: root/src/vnet/llc
diff options
context:
space:
mode:
authorNeale Ranns <neale@graphiant.com>2021-06-03 14:59:47 +0000
committerNeale Ranns <neale@graphiant.com>2021-06-07 07:19:00 +0000
commit68d48d94a84f6499a16cd362d0a225b1720baf67 (patch)
tree804f88db5d8f4f78ccf4523a065f7ec8ab82b6a2 /src/vnet/llc
parent2645f68985df4955fd8a161224595dad9f4ab488 (diff)
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 <neale@graphiant.com> Change-Id: I50611eba818eeb3a2dffd437a3c72c77766bed80
Diffstat (limited to 'src/vnet/llc')
-rw-r--r--src/vnet/llc/llc.h12
-rw-r--r--src/vnet/llc/node.c12
2 files changed, 12 insertions, 12 deletions
diff --git a/src/vnet/llc/llc.h b/src/vnet/llc/llc.h
index 990a581db7b..2496cfd510d 100644
--- a/src/vnet/llc/llc.h
+++ b/src/vnet/llc/llc.h
@@ -41,7 +41,6 @@
#define included_llc_h
#include <vnet/vnet.h>
-#include <vnet/pg/pg.h>
/* Protocol (SSAP/DSAP) types. */
#define foreach_llc_protocol \
@@ -169,17 +168,6 @@ unformat_function_t unformat_llc_protocol;
unformat_function_t unformat_llc_header;
unformat_function_t unformat_pg_llc_header;
-always_inline void
-llc_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_llc_header_with_length;
- n->unformat_buffer = unformat_llc_header;
- pn->unformat_edit = unformat_pg_llc_header;
-}
-
#endif /* included_llc_h */
/*
diff --git a/src/vnet/llc/node.c b/src/vnet/llc/node.c
index 79d15418af2..086925bd305 100644
--- a/src/vnet/llc/node.c
+++ b/src/vnet/llc/node.c
@@ -38,6 +38,7 @@
*/
#include <vlib/vlib.h>
+#include <vnet/pg/pg.h>
#include <vnet/llc/llc.h>
#define foreach_llc_input_next \
@@ -268,6 +269,17 @@ VLIB_REGISTER_NODE (llc_input_node) = {
};
/* *INDENT-ON* */
+static void
+llc_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_llc_header_with_length;
+ n->unformat_buffer = unformat_llc_header;
+ pn->unformat_edit = unformat_pg_llc_header;
+}
+
static clib_error_t *
llc_input_init (vlib_main_t * vm)
{