FD.io VPP  v20.01-48-g3e0dafb74
Vector Packet Processing
feature.c File Reference
+ Include dependency graph for feature.c:

Go to the source code of this file.

Data Structures

struct  vnet_feature_upd_registration_t_
 

Typedefs

typedef struct vnet_feature_upd_registration_t_ vnet_feature_upd_registration_t
 

Functions

void vnet_feature_register (vnet_feature_update_cb_t cb, void *data)
 
static void vent_feature_reg_invoke (u32 sw_if_index, u8 arc_index, u8 is_enable)
 
static clib_error_tvnet_feature_init (vlib_main_t *vm)
 
u8 vnet_get_feature_arc_index (const char *s)
 
vnet_feature_registration_tvnet_get_feature_reg (const char *arc_name, const char *node_name)
 
u32 vnet_get_feature_index (u8 arc, const char *s)
 
int vnet_feature_enable_disable_with_index (u8 arc_index, u32 feature_index, u32 sw_if_index, int enable_disable, void *feature_config, u32 n_feature_config_bytes)
 
int vnet_feature_enable_disable (const char *arc_name, const char *node_name, u32 sw_if_index, int enable_disable, void *feature_config, u32 n_feature_config_bytes)
 
static int feature_cmp (void *a1, void *a2)
 
static clib_error_tshow_features_command_fn (vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
 Display the set of available driver features. More...
 
void vnet_interface_features_show (vlib_main_t *vm, u32 sw_if_index, int verbose)
 Display the set of driver features configured on a specific interface Called by "show interface" handler. More...
 
static clib_error_tset_interface_features_command_fn (vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
 

Variables

vnet_feature_main_t feature_main
 
static vnet_feature_upd_registration_tregs
 
static vlib_cli_command_t show_features_command
 (constructor) VLIB_CLI_COMMAND (show_features_command) More...
 
static vlib_cli_command_t set_interface_feature_command
 (constructor) VLIB_CLI_COMMAND (set_interface_feature_command) More...
 

Typedef Documentation

◆ vnet_feature_upd_registration_t

Function Documentation

◆ feature_cmp()

static int feature_cmp ( void *  a1,
void *  a2 
)
static

Definition at line 325 of file feature.c.

+ Here is the caller graph for this function:

◆ set_interface_features_command_fn()

static clib_error_t* set_interface_features_command_fn ( vlib_main_t vm,
unformat_input_t input,
vlib_cli_command_t cmd 
)
static

Definition at line 473 of file feature.c.

+ Here is the call graph for this function:

◆ show_features_command_fn()

static clib_error_t* show_features_command_fn ( vlib_main_t vm,
unformat_input_t input,
vlib_cli_command_t cmd 
)
static

Display the set of available driver features.

Useful for verifying that expected features are present

Definition at line 338 of file feature.c.

+ Here is the call graph for this function:

◆ vent_feature_reg_invoke()

static void vent_feature_reg_invoke ( u32  sw_if_index,
u8  arc_index,
u8  is_enable 
)
static

Definition at line 41 of file feature.c.

+ Here is the caller graph for this function:

◆ vnet_feature_enable_disable()

int vnet_feature_enable_disable ( const char *  arc_name,
const char *  node_name,
u32  sw_if_index,
int  enable_disable,
void *  feature_config,
u32  n_feature_config_bytes 
)

Definition at line 304 of file feature.c.

+ Here is the call graph for this function:

◆ vnet_feature_enable_disable_with_index()

int vnet_feature_enable_disable_with_index ( u8  arc_index,
u32  feature_index,
u32  sw_if_index,
int  enable_disable,
void *  feature_config,
u32  n_feature_config_bytes 
)

Definition at line 252 of file feature.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ vnet_feature_init()

static clib_error_t* vnet_feature_init ( vlib_main_t vm)
static

Definition at line 51 of file feature.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ vnet_feature_register()

void vnet_feature_register ( vnet_feature_update_cb_t  cb,
void *  data 
)

Definition at line 30 of file feature.c.

+ Here is the caller graph for this function:

◆ vnet_get_feature_arc_index()

u8 vnet_get_feature_arc_index ( const char *  s)

Definition at line 198 of file feature.c.

+ Here is the caller graph for this function:

◆ vnet_get_feature_index()

u32 vnet_get_feature_index ( u8  arc,
const char *  s 
)

Definition at line 234 of file feature.c.

+ Here is the caller graph for this function:

◆ vnet_get_feature_reg()

vnet_feature_registration_t* vnet_get_feature_reg ( const char *  arc_name,
const char *  node_name 
)

Definition at line 213 of file feature.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ vnet_interface_features_show()

void vnet_interface_features_show ( vlib_main_t vm,
u32  sw_if_index,
int  verbose 
)

Display the set of driver features configured on a specific interface Called by "show interface" handler.

Definition at line 409 of file feature.c.

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

Variable Documentation

◆ feature_main

vnet_feature_main_t feature_main

Definition at line 19 of file feature.c.

◆ regs

Definition at line 27 of file feature.c.

◆ set_interface_feature_command

vlib_cli_command_t set_interface_feature_command
static
Initial value:
= {
.path = "set interface feature",
.short_help = "set interface feature <intfc> <feature_name> arc <arc_name> "
"[disable]",
}
static clib_error_t * set_interface_features_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: feature.c:473

(constructor) VLIB_CLI_COMMAND (set_interface_feature_command)

Definition at line 567 of file feature.c.

◆ show_features_command

vlib_cli_command_t show_features_command
static
Initial value:
= {
.path = "show features",
.short_help = "show features [verbose]",
}
static clib_error_t * show_features_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Display the set of available driver features.
Definition: feature.c:338

(constructor) VLIB_CLI_COMMAND (show_features_command)

Definition at line 397 of file feature.c.