Searched defs:igb_rx_queue (Results 1 – 1 of 1) sorted by relevance
104 struct igb_rx_queue { struct105 struct rte_mempool *mb_pool; /**< mbuf pool to populate RX ring. */106 volatile union e1000_adv_rx_desc *rx_ring; /**< RX ring virtual address. */107 uint64_t rx_ring_phys_addr; /**< RX ring DMA address. */108 volatile uint32_t *rdt_reg_addr; /**< RDT register address. */109 volatile uint32_t *rdh_reg_addr; /**< RDH register address. */110 struct igb_rx_entry *sw_ring; /**< address of RX software ring. */111 struct rte_mbuf *pkt_first_seg; /**< First segment of current packet. */112 struct rte_mbuf *pkt_last_seg; /**< Last segment of current packet. */113 uint16_t nb_rx_desc; /**< number of RX descriptors. */[all …]