tap: move the api msg_id_base to tap_main_t

Type: fix

Signed-off-by: Mohsin Kazmi <sykazmi@cisco.com>
Change-Id: Ia4065550a7ad1109e3a2592ef2c21b5e23fa85b5
This commit is contained in:
Mohsin Kazmi
2021-09-22 20:03:28 +00:00
committed by Beno�t Ganne
parent 176373caed
commit b21fd4b7e0
2 changed files with 3 additions and 3 deletions

View File

@@ -98,8 +98,10 @@ typedef struct
/* host mtu size, configurable through startup.conf */
int host_mtu_size;
u16 msg_id_base;
} tap_main_t;
extern tap_main_t tap_main;
void tap_create_if (vlib_main_t * vm, tap_create_if_args_t * args);
int tap_delete_if (vlib_main_t * vm, u32 sw_if_index);
int tap_gso_enable_disable (vlib_main_t * vm, u32 sw_if_index,

View File

@@ -32,11 +32,9 @@
#include <vnet/devices/tap/tapv2.api_enum.h>
#include <vnet/devices/tap/tapv2.api_types.h>
#define REPLY_MSG_ID_BASE msg_id_base
#define REPLY_MSG_ID_BASE tap_main.msg_id_base
#include <vlibapi/api_helper_macros.h>
static u16 msg_id_base;
static void
vl_api_tap_create_v2_t_handler (vl_api_tap_create_v2_t * mp)
{