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/ethernet/ethernet.h | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) (limited to 'src/vnet/ethernet/ethernet.h') diff --git a/src/vnet/ethernet/ethernet.h b/src/vnet/ethernet/ethernet.h index a83b0f39295..f3dd1a24a4f 100644 --- a/src/vnet/ethernet/ethernet.h +++ b/src/vnet/ethernet/ethernet.h @@ -43,7 +43,6 @@ #include #include #include -#include #include /* ethernet-input frame flags and scalar data */ @@ -404,16 +403,7 @@ uword unformat_ethernet_interface (unformat_input_t * input, va_list * args); uword unformat_pg_ethernet_header (unformat_input_t * input, va_list * args); -always_inline void -ethernet_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_ethernet_header_with_length; - n->unformat_buffer = unformat_ethernet_header; - pn->unformat_edit = unformat_pg_ethernet_header; -} +void ethernet_setup_node (vlib_main_t *vm, u32 node_index); always_inline ethernet_header_t * ethernet_buffer_get_header (vlib_buffer_t * b) -- cgit 1.2.3-korg