AVF input node rework

Change-Id: Ib121b24935d5c706cfba6e4b6d321086a38cad91
Signed-off-by: Damjan Marion <damarion@cisco.com>
This commit is contained in:
Damjan Marion
2018-05-30 12:49:32 +02:00
parent 4bc1796b34
commit ba614d63a8
3 changed files with 344 additions and 210 deletions

View File

@ -122,15 +122,13 @@ typedef struct
typedef struct
{
u32 bi;
u32 status;
u16 length;
u16 tail_length;
u8 ptype;
u8 error;
} avf_rx_vector_entry_t;
STATIC_ASSERT_SIZEOF (avf_rx_vector_entry_t, 16);
STATIC_ASSERT_SIZEOF (avf_rx_vector_entry_t, 8);
#define AVF_RX_VECTOR_SZ VLIB_FRAME_SIZE
@ -146,6 +144,7 @@ typedef struct
CLIB_CACHE_LINE_ALIGN_MARK (cacheline0);
avf_rx_vector_entry_t rx_vector[AVF_RX_VECTOR_SZ];
u32 *to_free;
vlib_buffer_t buffer_template;
} avf_per_thread_data_t;
typedef struct

File diff suppressed because it is too large Load Diff

View File

@ -88,6 +88,9 @@ do { \
#define STATIC_ASSERT_SIZEOF(d, s) \
STATIC_ASSERT (sizeof (d) == s, "Size of " #d " must be " # s " bytes")
#define STATIC_ASSERT_OFFSET_OF(s, e, o) \
STATIC_ASSERT (STRUCT_OFFSET_OF(s,e) == o, "Offset of " #s "." #e " must be " # o)
/* Assert without allocating memory. */
#define ASSERT_AND_PANIC(truth) \
do { \