diff options
author | 2024-08-29 03:03:16 -0700 | |
---|---|---|
committer | 2024-08-29 03:06:34 -0700 | |
commit | b8d4490d9ce46ecb17899c9d40cdaae0744403fc (patch) | |
tree | 08965b1b44e745b002377426d65ccb5ac69e874a /src/plugins/avf/avf.h | |
parent | b4808de24779cd0037568cff003b915e25edbdc6 (diff) |
avf: add num tx/rx packets per queue
Type: improvement
Change-Id: I3459dba86eb7a784448633b69492d6d3f49db720
Signed-off-by: Dau Do <daudo@yahoo.com>
Diffstat (limited to 'src/plugins/avf/avf.h')
-rw-r--r-- | src/plugins/avf/avf.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/plugins/avf/avf.h b/src/plugins/avf/avf.h index f6f79cf0e09..774aac0151b 100644 --- a/src/plugins/avf/avf.h +++ b/src/plugins/avf/avf.h @@ -180,6 +180,7 @@ typedef struct u8 int_mode; u8 buffer_pool_index; u32 queue_index; + u64 total_packets; } avf_rxq_t; typedef struct @@ -198,6 +199,8 @@ typedef struct avf_tx_desc_t *tmp_descs; u32 *tmp_bufs; u32 queue_index; + u64 total_packets; + u64 no_free_tx_count; } avf_txq_t; typedef struct |