From 7ea3f06936f71d4147c3a7251a0ef73166366879 Mon Sep 17 00:00:00 2001 From: Filip Tehlar Date: Mon, 21 Jun 2021 10:08:43 +0000 Subject: gso: api cleanup Use autogenerated code Type: improvement Signed-off-by: Filip Tehlar Change-Id: Id373c7828d77cca0121baf9c7635cfe2c5f938d7 --- src/vnet/gso/gso_api.c | 48 ++++++------------------------------------------ 1 file changed, 6 insertions(+), 42 deletions(-) (limited to 'src/vnet/gso') diff --git a/src/vnet/gso/gso_api.c b/src/vnet/gso/gso_api.c index d3426142f1c..588dabe20da 100644 --- a/src/vnet/gso/gso_api.c +++ b/src/vnet/gso/gso_api.c @@ -21,27 +21,13 @@ #include #include -#include - -#define vl_typedefs /* define message structures */ -#include -#undef vl_typedefs - -#define vl_endianfun /* define message structures */ -#include -#undef vl_endianfun - -/* instantiate all the print functions we know about */ -#define vl_print(handle, ...) vlib_cli_output (handle, __VA_ARGS__) -#define vl_printfun -#include -#undef vl_printfun +#include +#include +#include +#define REPLY_MSG_ID_BASE gso_main.msg_id_base #include -#define foreach_feature_gso_api_msg \ -_(FEATURE_GSO_ENABLE_DISABLE, feature_gso_enable_disable) - static void vl_api_feature_gso_enable_disable_t_handler (vl_api_feature_gso_enable_disable_t * mp) @@ -60,37 +46,15 @@ static void REPLY_MACRO (VL_API_FEATURE_GSO_ENABLE_DISABLE_REPLY); } -#define vl_msg_name_crc_list -#include -#undef vl_msg_name_crc_list - -static void -setup_message_id_table (api_main_t * am) -{ -#define _(id,n,crc) vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id); - foreach_vl_msg_name_crc_gso; -#undef _ -} +#include static clib_error_t * feature_gso_api_hookup (vlib_main_t * vm) { - api_main_t *am = vlibapi_get_main (); - -#define _(N,n) \ - vl_msg_api_set_handlers(VL_API_##N, #n, \ - vl_api_##n##_t_handler, \ - vl_noop_handler, \ - vl_api_##n##_t_endian, \ - vl_api_##n##_t_print, \ - sizeof(vl_api_##n##_t), 1); - foreach_feature_gso_api_msg; -#undef _ - /* * Set up the (msg_name, crc, message-id) table */ - setup_message_id_table (am); + gso_main.msg_id_base = setup_message_id_table (); return 0; } -- cgit 1.2.3-korg