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

Go to the source code of this file.

Macros

#define foreach_virtio_tx_func_error
 

Enumerations

enum  virtio_tx_func_error_t { VIRTIO_TX_N_ERROR }
 

Functions

static u8format_virtio_device (u8 *s, va_list *args)
 
static u8format_virtio_tx_trace (u8 *s, va_list *args)
 
static_always_inline void virtio_memset_ring_u32 (u32 *ring, u32 start, u32 ring_size, u32 n_buffers)
 
static_always_inline void virtio_free_used_device_desc (vlib_main_t *vm, virtio_vring_t *vring, uword node_index)
 
static_always_inline void set_checksum_offsets (vlib_main_t *vm, virtio_if_t *vif, vlib_buffer_t *b, struct virtio_net_hdr_v1 *hdr)
 
static_always_inline u16 add_buffer_to_slot (vlib_main_t *vm, virtio_if_t *vif, virtio_vring_t *vring, u32 bi, u16 avail, u16 next, u16 mask, int do_gso, int csum_offload)
 
static_always_inline void virtio_find_free_desc (virtio_vring_t *vring, u16 size, u16 mask, u16 req, u16 next, u32 *first_free_desc_index, u16 *free_desc_count)
 
static_always_inline uword virtio_interface_tx_inline (vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame, virtio_if_t *vif, int do_gso, int csum_offload)
 
VNET_DEVICE_CLASS_TX_FN() virtio_device_class (vlib_main_t *vm, vlib_node_runtime_t *node, vlib_frame_t *frame)
 
static void virtio_set_interface_next_node (vnet_main_t *vnm, u32 hw_if_index, u32 node_index)
 
static void virtio_clear_hw_interface_counters (u32 instance)
 
static clib_error_tvirtio_interface_rx_mode_change (vnet_main_t *vnm, u32 hw_if_index, u32 qid, vnet_hw_interface_rx_mode mode)
 
static clib_error_tvirtio_interface_admin_up_down (vnet_main_t *vnm, u32 hw_if_index, u32 flags)
 
static clib_error_tvirtio_subif_add_del_function (vnet_main_t *vnm, u32 hw_if_index, struct vnet_sw_interface_t *st, int is_add)
 
 VNET_DEVICE_CLASS (virtio_device_class)
 

Variables

static char * virtio_tx_func_error_strings []
 

Macro Definition Documentation

◆ foreach_virtio_tx_func_error

#define foreach_virtio_tx_func_error
Value:
_(NO_FREE_SLOTS, "no free tx slots") \
_(TRUNC_PACKET, "packet > buffer size -- truncated in tx ring") \
_(PENDING_MSGS, "pending msgs in tx ring") \
_(NO_TX_QUEUES, "no tx queues") \
_(OUT_OF_ORDER, "out-of-order buffers in used ring")

Definition at line 32 of file device.c.

Enumeration Type Documentation

◆ virtio_tx_func_error_t

Enumerator
VIRTIO_TX_N_ERROR 

Definition at line 39 of file device.c.

Function Documentation

◆ add_buffer_to_slot()

static_always_inline u16 add_buffer_to_slot ( vlib_main_t vm,
virtio_if_t vif,
virtio_vring_t vring,
u32  bi,
u16  avail,
u16  next,
u16  mask,
int  do_gso,
int  csum_offload 
)

Definition at line 187 of file device.c.

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

◆ format_virtio_device()

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

Definition at line 54 of file device.c.

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

◆ format_virtio_tx_trace()

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

Definition at line 70 of file device.c.

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

◆ set_checksum_offsets()

static_always_inline void set_checksum_offsets ( vlib_main_t vm,
virtio_if_t vif,
vlib_buffer_t b,
struct virtio_net_hdr_v1 *  hdr 
)

Definition at line 151 of file device.c.

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

◆ virtio_clear_hw_interface_counters()

static void virtio_clear_hw_interface_counters ( u32  instance)
static

Definition at line 498 of file device.c.

+ Here is the caller graph for this function:

◆ virtio_device_class()

VNET_DEVICE_CLASS_TX_FN() virtio_device_class ( vlib_main_t vm,
vlib_node_runtime_t node,
vlib_frame_t frame 
)

Definition at line 456 of file device.c.

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

◆ virtio_find_free_desc()

static_always_inline void virtio_find_free_desc ( virtio_vring_t vring,
u16  size,
u16  mask,
u16  req,
u16  next,
u32 first_free_desc_index,
u16 free_desc_count 
)

Definition at line 336 of file device.c.

+ Here is the caller graph for this function:

◆ virtio_free_used_device_desc()

static_always_inline void virtio_free_used_device_desc ( vlib_main_t vm,
virtio_vring_t vring,
uword  node_index 
)

Definition at line 93 of file device.c.

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

◆ virtio_interface_admin_up_down()

static clib_error_t* virtio_interface_admin_up_down ( vnet_main_t vnm,
u32  hw_if_index,
u32  flags 
)
static

Definition at line 527 of file device.c.

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

◆ virtio_interface_rx_mode_change()

static clib_error_t* virtio_interface_rx_mode_change ( vnet_main_t vnm,
u32  hw_if_index,
u32  qid,
vnet_hw_interface_rx_mode  mode 
)
static

Definition at line 504 of file device.c.

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

◆ virtio_interface_tx_inline()

static_always_inline uword virtio_interface_tx_inline ( vlib_main_t vm,
vlib_node_runtime_t node,
vlib_frame_t frame,
virtio_if_t vif,
int  do_gso,
int  csum_offload 
)

Definition at line 372 of file device.c.

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

◆ virtio_memset_ring_u32()

static_always_inline void virtio_memset_ring_u32 ( u32 ring,
u32  start,
u32  ring_size,
u32  n_buffers 
)

Definition at line 77 of file device.c.

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

◆ virtio_set_interface_next_node()

static void virtio_set_interface_next_node ( vnet_main_t vnm,
u32  hw_if_index,
u32  node_index 
)
static

Definition at line 478 of file device.c.

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

◆ virtio_subif_add_del_function()

static clib_error_t* virtio_subif_add_del_function ( vnet_main_t vnm,
u32  hw_if_index,
struct vnet_sw_interface_t st,
int  is_add 
)
static

Definition at line 548 of file device.c.

+ Here is the call graph for this function:

◆ VNET_DEVICE_CLASS()

VNET_DEVICE_CLASS ( virtio_device_class  )

Variable Documentation

◆ virtio_tx_func_error_strings

char* virtio_tx_func_error_strings[]
static
Initial value:
= {
#define _(n,s)
}
#define foreach_virtio_tx_func_error
Definition: device.c:32

Definition at line 47 of file device.c.