aboutsummaryrefslogtreecommitdiffstats
path: root/src/vnet/flow
diff options
context:
space:
mode:
authorFilip Tehlar <ftehlar@cisco.com>2021-06-21 09:49:31 +0000
committerFilip Tehlar <ftehlar@cisco.com>2021-06-21 10:59:35 +0000
commit9597f08f5788e7ee9d9bc21d8851752b39c6e917 (patch)
tree633c015cc76bfc9f80c4dbd6618d36c0414a2a53 /src/vnet/flow
parent7ea3f06936f71d4147c3a7251a0ef73166366879 (diff)
flow: api cleanup
Use autogenerated code Type: improvement Signed-off-by: Filip Tehlar <ftehlar@cisco.com> Change-Id: I02f53486723f7ac7e9026ff092b63e86dff13232
Diffstat (limited to 'src/vnet/flow')
-rw-r--r--src/vnet/flow/flow.h1
-rw-r--r--src/vnet/flow/flow_api.c62
2 files changed, 7 insertions, 56 deletions
diff --git a/src/vnet/flow/flow.h b/src/vnet/flow/flow.h
index 3ae5b6bdc47..ad61677a44b 100644
--- a/src/vnet/flow/flow.h
+++ b/src/vnet/flow/flow.h
@@ -279,6 +279,7 @@ typedef struct
/* vector of flow ranges */
vnet_flow_range_t *ranges;
+ u16 msg_id_base;
} vnet_flow_main_t;
extern vnet_flow_main_t flow_main;
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 <vnet/ip/ip_types_api.h>
#include <vnet/vnet_msg_enum.h>
-#define vl_typedefs /* define message structures */
-#include <vnet/vnet_all_api_h.h>
-#undef vl_typedefs
-
-#define vl_endianfun /* define message structures */
-#include <vnet/vnet_all_api_h.h>
-#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 <vnet/vnet_all_api_h.h>
-#undef vl_printfun
+#include <vnet/format_fns.h>
+#include <vnet/flow/flow.api_enum.h>
+#include <vnet/flow/flow.api_types.h>
+#define REPLY_MSG_ID_BASE flow_main.msg_id_base
#include <vlibapi/api_helper_macros.h>
-#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 <vnet/flow/flow.api.h>
-#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 <vnet/flow/flow.api.c>
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;
}