lisp: fix missing symbol issue
Type: fix Change-Id: I9373dabcdb2c4ba987e732b59e63b52603010873 Signed-off-by: Damjan Marion <damarion@cisco.com>
This commit is contained in:

committed by
Beno�t Ganne

parent
6facf8cd45
commit
e9d7babde0
@ -44,7 +44,6 @@ static u32 one_base_msg_id;
|
|||||||
#define REPLY_DETAILS(t, body) \
|
#define REPLY_DETAILS(t, body) \
|
||||||
do { \
|
do { \
|
||||||
vl_api_registration_t * reg; \
|
vl_api_registration_t * reg; \
|
||||||
rv = vl_msg_api_pd_handler (mp, rv); \
|
|
||||||
reg = vl_api_client_index_to_registration (mp->client_index); \
|
reg = vl_api_client_index_to_registration (mp->client_index); \
|
||||||
if (!reg) \
|
if (!reg) \
|
||||||
return; \
|
return; \
|
||||||
@ -1363,7 +1362,6 @@ vl_api_one_stats_dump_t_handler (vl_api_one_stats_dump_t * mp)
|
|||||||
{
|
{
|
||||||
vl_api_one_stats_details_t *rmp;
|
vl_api_one_stats_details_t *rmp;
|
||||||
lisp_api_stats_t *stats, *stat;
|
lisp_api_stats_t *stats, *stat;
|
||||||
u8 rv = 0;
|
|
||||||
|
|
||||||
stats = vnet_lisp_get_stats ();
|
stats = vnet_lisp_get_stats ();
|
||||||
vec_foreach (stat, stats)
|
vec_foreach (stat, stats)
|
||||||
|
@ -190,7 +190,6 @@ void vl_msg_api_post_mortem_dump (void);
|
|||||||
void vl_msg_api_post_mortem_dump_enable_disable (int enable);
|
void vl_msg_api_post_mortem_dump_enable_disable (int enable);
|
||||||
void vl_msg_api_register_pd_handler (void *handler,
|
void vl_msg_api_register_pd_handler (void *handler,
|
||||||
u16 msg_id_host_byte_order);
|
u16 msg_id_host_byte_order);
|
||||||
int vl_msg_api_pd_handler (void *mp, int rv);
|
|
||||||
|
|
||||||
void vl_msg_api_set_first_available_msg_id (u16 first_avail);
|
void vl_msg_api_set_first_available_msg_id (u16 first_avail);
|
||||||
u16 vl_msg_api_get_msg_ids (const char *name, int n);
|
u16 vl_msg_api_get_msg_ids (const char *name, int n);
|
||||||
|
Reference in New Issue
Block a user