FD.io VPP  v18.01-8-g0eacf49
Vector Packet Processing
l2_patch.c File Reference
+ Include dependency graph for l2_patch.c:

Go to the source code of this file.

Data Structures

struct  l2_patch_main_t
 
struct  l2_patch_trace_t
 

Macros

#define foreach_l2_patch_error
 

Enumerations

enum  l2_patch_error_t { L2_PATCH_N_ERROR }
 
enum  l2_patch_next_t { L2_PATCH_NEXT_DROP, L2_PATCH_N_NEXT }
 

Functions

static u8format_l2_patch_trace (u8 *s, va_list *args)
 
static uword l2_patch_node_fn (vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)
 
int vnet_l2_patch_add_del (u32 rx_sw_if_index, u32 tx_sw_if_index, int is_add)
 
static clib_error_ttest_patch_command_fn (vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
 
static clib_error_tshow_l2patch (vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
 Display the contents of the l2patch table. More...
 
clib_error_tl2_patch_init (vlib_main_t *vm)
 

Variables

l2_patch_main_t l2_patch_main
 
static vlib_node_registration_t l2_patch_node
 (constructor) VLIB_REGISTER_NODE (l2_patch_node) More...
 
static char * l2_patch_error_strings []
 
static vlib_cli_command_t test_patch_command
 (constructor) VLIB_CLI_COMMAND (test_patch_command) More...
 
static vlib_cli_command_t show_l2patch_cli
 (constructor) VLIB_CLI_COMMAND (show_l2patch_cli) More...
 

Macro Definition Documentation

#define foreach_l2_patch_error
Value:
_(PATCHED, "L2 patch packets") \
_(DROPPED, "L2 patch misconfigured drops")

Definition at line 56 of file l2_patch.c.

Enumeration Type Documentation

Enumerator
L2_PATCH_N_ERROR 

Definition at line 60 of file l2_patch.c.

Enumerator
L2_PATCH_NEXT_DROP 
L2_PATCH_N_NEXT 

Definition at line 74 of file l2_patch.c.

Function Documentation

static u8* format_l2_patch_trace ( u8 s,
va_list *  args 
)
static

Definition at line 41 of file l2_patch.c.

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

clib_error_t* l2_patch_init ( vlib_main_t vm)

Definition at line 448 of file l2_patch.c.

+ Here is the call graph for this function:

static uword l2_patch_node_fn ( vlib_main_t vm,
vlib_node_runtime_t node,
vlib_frame_t frame 
)
static

Definition at line 81 of file l2_patch.c.

+ Here is the call graph for this function:

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

Display the contents of the l2patch table.

Definition at line 397 of file l2_patch.c.

+ Here is the call graph for this function:

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

Definition at line 308 of file l2_patch.c.

+ Here is the call graph for this function:

int vnet_l2_patch_add_del ( u32  rx_sw_if_index,
u32  tx_sw_if_index,
int  is_add 
)

Definition at line 247 of file l2_patch.c.

+ Here is the call graph for this function:

+ Here is the caller graph for this function:

Variable Documentation

char* l2_patch_error_strings[]
static
Initial value:
= {
#define _(sym,string)
}
#define foreach_l2_patch_error
Definition: l2_patch.c:56

Definition at line 68 of file l2_patch.c.

l2_patch_main_t l2_patch_main

Definition at line 52 of file l2_patch.c.

static vlib_node_registration_t l2_patch_node
static
Initial value:
= {
.function = l2_patch_node_fn,
.name = "l2-patch",
.vector_size = sizeof (u32),
.format_trace = format_l2_patch_trace,
.error_strings = l2_patch_error_strings,
.n_next_nodes = L2_PATCH_N_NEXT,
.next_nodes = {
[L2_PATCH_NEXT_DROP] = "error-drop",
},
}
static u8 * format_l2_patch_trace(u8 *s, va_list *args)
Definition: l2_patch.c:41
static char * l2_patch_error_strings[]
Definition: l2_patch.c:68
#define ARRAY_LEN(x)
Definition: clib.h:59
unsigned int u32
Definition: types.h:88
static uword l2_patch_node_fn(vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)
Definition: l2_patch.c:81

(constructor) VLIB_REGISTER_NODE (l2_patch_node)

Definition at line 54 of file l2_patch.c.

vlib_cli_command_t show_l2patch_cli
static
Initial value:
= {
.path = "show l2patch",
.short_help = "Show l2 interface cross-connect entries",
.function = show_l2patch,
}
static clib_error_t * show_l2patch(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Display the contents of the l2patch table.
Definition: l2_patch.c:397

(constructor) VLIB_CLI_COMMAND (show_l2patch_cli)

Definition at line 440 of file l2_patch.c.

vlib_cli_command_t test_patch_command
static
Initial value:
= {
.path = "test l2patch",
.short_help = "test l2patch rx <intfc> tx <intfc> [del]",
.function = test_patch_command_fn,
}
static clib_error_t * test_patch_command_fn(vlib_main_t *vm, unformat_input_t *input, vlib_cli_command_t *cmd)
Definition: l2_patch.c:308

(constructor) VLIB_CLI_COMMAND (test_patch_command)

Definition at line 388 of file l2_patch.c.