From 859b59133c143b09fed86af1d409d320fa45424f Mon Sep 17 00:00:00 2001 From: Jianlin Lv Date: Fri, 27 Sep 2019 09:35:41 +0800 Subject: api: Add API support for marvell PP2 plugin Support create/delete interface with PP2 api Type: feature Signed-off-by: Jianlin Lv Change-Id: Ia9c0ac0f237fd9f71f5480d736d6bcabee763fff --- src/plugins/marvell/pp2/pp2.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src/plugins/marvell/pp2/pp2.h') diff --git a/src/plugins/marvell/pp2/pp2.h b/src/plugins/marvell/pp2/pp2.h index 93b95aa134b..f8fb78f50be 100644 --- a/src/plugins/marvell/pp2/pp2.h +++ b/src/plugins/marvell/pp2/pp2.h @@ -78,6 +78,9 @@ typedef struct { mrvl_pp2_if_t *interfaces; mrvl_pp2_per_thread_data_t *per_thread_data; + + /* API message ID base */ + u16 msg_id_base; } mrvl_pp2_main_t; extern vnet_device_class_t mrvl_pp2_device_class; @@ -90,12 +93,14 @@ typedef struct u16 tx_q_sz; /* return */ - int rv; + i32 rv; + u32 sw_if_index; clib_error_t *error; } mrvl_pp2_create_if_args_t; void mrvl_pp2_create_if (mrvl_pp2_create_if_args_t * args); void mrvl_pp2_delete_if (mrvl_pp2_if_t * dfif); +clib_error_t *mrvl_pp2_plugin_api_hookup (vlib_main_t * vm); /* output.c */ -- cgit 1.2.3-korg