From 851a37a78f80427a910a9cb571e5a7d70c120e38 Mon Sep 17 00:00:00 2001 From: Shwetha Bhandari Date: Thu, 27 Apr 2017 14:13:10 +0530 Subject: ioam: adding missing setup api msg crc table Change-Id: Ic95fe6179de1151796188813cc595187d4c842a0 Signed-off-by: Shwetha Bhandari --- src/plugins/ioam/lib-vxlan-gpe/vxlan_gpe_api.c | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'src/plugins/ioam/lib-vxlan-gpe') diff --git a/src/plugins/ioam/lib-vxlan-gpe/vxlan_gpe_api.c b/src/plugins/ioam/lib-vxlan-gpe/vxlan_gpe_api.c index 247bcf59..634133a4 100644 --- a/src/plugins/ioam/lib-vxlan-gpe/vxlan_gpe_api.c +++ b/src/plugins/ioam/lib-vxlan-gpe/vxlan_gpe_api.c @@ -303,6 +303,19 @@ vxlan_gpe_plugin_api_hookup (vlib_main_t * vm) return 0; } +#define vl_msg_name_crc_list +#include +#undef vl_msg_name_crc_list + +static void +setup_message_id_table (vxlan_gpe_ioam_main_t * sm, api_main_t * am) +{ +#define _(id,n,crc) \ + vl_msg_api_add_msg_name_crc (am, #n "_" #crc, id + sm->msg_id_base); + foreach_vl_msg_name_crc_ioam_vxlan_gpe; +#undef _ +} + static clib_error_t * vxlan_gpe_init (vlib_main_t * vm) { @@ -328,6 +341,9 @@ vxlan_gpe_init (vlib_main_t * vm) error = vxlan_gpe_plugin_api_hookup (vm); + /* Add our API messages to the global name_crc hash table */ + setup_message_id_table (sm, &api_main); + /* Hook the ioam-encap node to vxlan-gpe-encap */ vxlan_gpe_encap_node = vlib_get_node_by_name (vm, (u8 *) "vxlan-gpe-encap"); sm->encap_v4_next_node = -- cgit 1.2.3-korg