From 9597f08f5788e7ee9d9bc21d8851752b39c6e917 Mon Sep 17 00:00:00 2001 From: Filip Tehlar Date: Mon, 21 Jun 2021 09:49:31 +0000 Subject: flow: api cleanup Use autogenerated code Type: improvement Signed-off-by: Filip Tehlar Change-Id: I02f53486723f7ac7e9026ff092b63e86dff13232 --- src/vnet/flow/flow_api.c | 62 +++++------------------------------------------- 1 file changed, 6 insertions(+), 56 deletions(-) (limited to 'src/vnet/flow/flow_api.c') diff --git a/src/vnet/flow/flow_api.c b/src/vnet/flow/flow_api.c index 3aa4e0c5b75..4fcff896f47 100644 --- a/src/vnet/flow/flow_api.c +++ b/src/vnet/flow/flow_api.c @@ -30,28 +30,13 @@ #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 flow_main.msg_id_base #include -#define foreach_vpe_api_msg \ -_(FLOW_ADD, flow_add) \ -_(FLOW_DEL, flow_del) \ -_(FLOW_ENABLE, flow_enable) \ -_(FLOW_DISABLE, flow_disable) - static inline void ipv4_addr_and_mask_convert (vl_api_ip4_address_and_mask_t * vl_api_addr, ip4_address_and_mask_t * vnet_addr) @@ -351,46 +336,11 @@ vl_api_flow_disable_t_handler (vl_api_flow_disable_t * mp) REPLY_MACRO (VL_API_FLOW_DISABLE_REPLY); } -#define vl_msg_name_crc_list -#include -#undef vl_msg_name_crc_list - -/* - * flow_api_hookup - * Add vpe's API message handlers to the table. - * vlib has already mapped shared memory and - * added the client registration handlers. - * See .../vlib-api/vlibmemory/memclnt_vlib.c:memclnt_process() - */ - - -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_flow; -#undef _ -} - +#include static clib_error_t * hw_flow_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_vpe_api_msg; -#undef _ - - /* - * Set up the (msg_name, crc, message-id) table - */ - setup_message_id_table (am); + flow_main.msg_id_base = setup_message_id_table (); return 0; } -- cgit 1.2.3-korg