From ee7f0bd9e7ce4106d3b9511b0efede4326bded51 Mon Sep 17 00:00:00 2001 From: Damjan Marion Date: Sat, 5 May 2018 12:30:28 +0200 Subject: dpdk: tx code rework Change-Id: Ifea9c772e8784642433b92091f5769eb9ec06890 Signed-off-by: Damjan Marion --- src/plugins/dpdk/device/dpdk.h | 14 -------------- 1 file changed, 14 deletions(-) (limited to 'src/plugins/dpdk/device/dpdk.h') diff --git a/src/plugins/dpdk/device/dpdk.h b/src/plugins/dpdk/device/dpdk.h index f02e718dc9c..0778659db55 100644 --- a/src/plugins/dpdk/device/dpdk.h +++ b/src/plugins/dpdk/device/dpdk.h @@ -110,17 +110,6 @@ typedef enum VNET_DPDK_PORT_TYPE_UNKNOWN, } dpdk_port_type_t; -/* - * The header for the tx_vector in dpdk_device_t. - * Head and tail are indexes into the tx_vector and are of type - * u64 so they never overflow. - */ -typedef struct -{ - u64 tx_head; - u64 tx_tail; -} tx_ring_hdr_t; - typedef uint16_t dpdk_portid_t; typedef struct @@ -191,9 +180,6 @@ typedef struct /* next node index if we decide to steal the rx graph arc */ u32 per_interface_next_index; - /* dpdk rte_mbuf rx and tx vectors, VLIB_FRAME_SIZE */ - struct rte_mbuf ***tx_vectors; /* one per worker thread */ - dpdk_pmd_t pmd:8; i8 cpu_socket; -- cgit 1.2.3-korg