diff options
author | Neale Ranns <neale@graphiant.com> | 2021-06-03 14:59:47 +0000 |
---|---|---|
committer | Neale Ranns <neale@graphiant.com> | 2021-06-07 07:19:00 +0000 |
commit | 68d48d94a84f6499a16cd362d0a225b1720baf67 (patch) | |
tree | 804f88db5d8f4f78ccf4523a065f7ec8ab82b6a2 /src/vnet/srp/srp.h | |
parent | 2645f68985df4955fd8a161224595dad9f4ab488 (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/srp/srp.h')
-rw-r--r-- | src/vnet/srp/srp.h | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/vnet/srp/srp.h b/src/vnet/srp/srp.h index 8f59e064c8b..2873d5a2184 100644 --- a/src/vnet/srp/srp.h +++ b/src/vnet/srp/srp.h @@ -43,7 +43,6 @@ #include <vnet/vnet.h> #include <vnet/srp/packet.h> #include <vnet/ethernet/ethernet.h> -#include <vnet/pg/pg.h> extern vnet_hw_interface_class_t srp_hw_interface_class; @@ -189,16 +188,6 @@ unformat_srp_header (unformat_input_t * input, va_list * args); uword unformat_pg_srp_header (unformat_input_t * input, va_list * args); -always_inline void -srp_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_srp_header_with_length; - n->unformat_buffer = unformat_srp_header; - pn->unformat_edit = unformat_pg_srp_header; -} - #define foreach_srp_error \ _ (NONE, "no error") \ _ (UNKNOWN_MODE, "unknown mode in SRP header") \ |