From db767d6ed54ddef502c9e41fa0682bc795bb9211 Mon Sep 17 00:00:00 2001 From: Filip Tehlar Date: Tue, 22 Jun 2021 13:55:13 +0000 Subject: qos: api cleanup Use autogenerated code. Does not change API definitions. Type: improvement Signed-off-by: Filip Tehlar Change-Id: I39505763371c98b75ff7b697dacd3eeb0d41d40a --- src/vnet/qos/qos_api.c | 65 +++++++++----------------------------------------- 1 file changed, 11 insertions(+), 54 deletions(-) (limited to 'src/vnet/qos/qos_api.c') diff --git a/src/vnet/qos/qos_api.c b/src/vnet/qos/qos_api.c index af0a700d2b5..b8d98e6bce6 100644 --- a/src/vnet/qos/qos_api.c +++ b/src/vnet/qos/qos_api.c @@ -24,35 +24,14 @@ #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 msg_id_base #include - -#define foreach_qos_api_msg \ - _(QOS_RECORD_ENABLE_DISABLE, qos_record_enable_disable) \ - _(QOS_RECORD_DUMP, qos_record_dump) \ - _(QOS_STORE_ENABLE_DISABLE, qos_store_enable_disable) \ - _(QOS_STORE_DUMP, qos_store_dump) \ - _(QOS_EGRESS_MAP_DELETE, qos_egress_map_delete) \ - _(QOS_EGRESS_MAP_UPDATE, qos_egress_map_update) \ - _(QOS_EGRESS_MAP_DUMP, qos_egress_map_dump) \ - _(QOS_MARK_ENABLE_DISABLE, qos_mark_enable_disable) \ - _(QOS_MARK_DUMP, qos_mark_dump) +static u16 msg_id_base; static int qos_source_decode (vl_api_qos_source_t v, qos_source_t * q) @@ -121,7 +100,7 @@ send_qos_record_details (u32 sw_if_index, qos_source_t input_source, void *c) ctx = c; mp = vl_msg_api_alloc_zero (sizeof (*mp)); - mp->_vl_msg_id = ntohs (VL_API_QOS_RECORD_DETAILS); + mp->_vl_msg_id = ntohs (REPLY_MSG_ID_BASE + VL_API_QOS_RECORD_DETAILS); mp->context = ctx->context; mp->record.sw_if_index = htonl (sw_if_index); mp->record.input_source = qos_source_encode (input_source); @@ -188,7 +167,7 @@ send_qos_store_details (u32 sw_if_index, ctx = c; mp = vl_msg_api_alloc_zero (sizeof (*mp)); - mp->_vl_msg_id = ntohs (VL_API_QOS_STORE_DETAILS); + mp->_vl_msg_id = ntohs (REPLY_MSG_ID_BASE + VL_API_QOS_STORE_DETAILS); mp->context = ctx->context; mp->store.sw_if_index = htonl (sw_if_index); mp->store.input_source = qos_source_encode (input_source); @@ -259,7 +238,7 @@ send_qos_egress_map_details (qos_egress_map_id_t id, ctx = c; mp = vl_msg_api_alloc_zero (sizeof (*mp)); - mp->_vl_msg_id = ntohs (VL_API_QOS_EGRESS_MAP_DETAILS); + mp->_vl_msg_id = ntohs (REPLY_MSG_ID_BASE + VL_API_QOS_EGRESS_MAP_DETAILS); mp->context = ctx->context; mp->map.id = htonl (id); @@ -325,7 +304,7 @@ send_qos_mark_details (u32 sw_if_index, ctx = c; mp = vl_msg_api_alloc_zero (sizeof (*mp)); - mp->_vl_msg_id = ntohs (VL_API_QOS_MARK_DETAILS); + mp->_vl_msg_id = ntohs (REPLY_MSG_ID_BASE + VL_API_QOS_MARK_DETAILS); mp->context = ctx->context; mp->mark.sw_if_index = htonl (sw_if_index); mp->mark.output_source = qos_source_encode (output_source); @@ -352,37 +331,15 @@ vl_api_qos_mark_dump_t_handler (vl_api_qos_mark_dump_t * mp) qos_mark_walk (send_qos_mark_details, &ctx); } -#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_qos; -#undef _ -} +#include static clib_error_t * qos_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_qos_api_msg; -#undef _ - /* * Set up the (msg_name, crc, message-id) table */ - setup_message_id_table (am); + REPLY_MSG_ID_BASE = setup_message_id_table (); return 0; } -- cgit 1.2.3-korg