Lines Matching full:cqe
94 …E ETH_RX_MAX_BUFF_PER_PKT /* Maximum number of additional buffers, reported by TPA-start CQE */
95 …TPA_CQE_CONT_LEN_LIST_SIZE 6 /* Maximum number of buffers, reported by TPA-continue CQE */
96 … ETH_TPA_CQE_END_LEN_LIST_SIZE 4 /* Maximum number of buffers, reported by TPA-end CQE */
236 #define ETH_PMD_FLOW_FLAGS_VALID_MASK 0x1 /* CQE valid bit */
238 #define ETH_PMD_FLOW_FLAGS_TOGGLE_MASK 0x1 /* CQE ring toggle bit */
245 * Regular ETH Rx FP CQE.
249 u8 type /* CQE type (use enum eth_rx_cqe_type) */;
268 struct eth_pmd_flow_flags pmd_flags /* CQE valid and toggle bits */;
272 * TPA-continue ETH Rx FP CQE.
276 u8 type /* CQE type (use enum eth_rx_cqe_type) */;
283 struct eth_pmd_flow_flags pmd_flags /* CQE valid and toggle bits */;
287 * TPA-end ETH Rx FP CQE .
291 u8 type /* CQE type (use enum eth_rx_cqe_type) */;
302 struct eth_pmd_flow_flags pmd_flags /* CQE valid and toggle bits */;
306 * TPA-start ETH Rx FP CQE.
310 u8 type /* CQE type (use enum eth_rx_cqe_type) */;
330 struct eth_pmd_flow_flags pmd_flags /* CQE valid and toggle bits */;
349 * regular ETH Rx SP CQE
353 u8 type /* CQE type (use enum eth_rx_cqe_type) */;
359 struct eth_pmd_flow_flags pmd_flags /* CQE valid and toggle bits */;
363 * union for all ETH Rx CQE types
367 struct eth_fast_path_rx_reg_cqe fast_path_regular /* Regular FP CQE */;
368 struct eth_fast_path_rx_tpa_start_cqe fast_path_tpa_start /* TPA-start CQE */;
369 struct eth_fast_path_rx_tpa_cont_cqe fast_path_tpa_cont /* TPA-continue CQE */;
370 struct eth_fast_path_rx_tpa_end_cqe fast_path_tpa_end /* TPA-end CQE */;
371 struct eth_slow_path_rx_cqe slow_path /* SP CQE */;
375 * ETH Rx CQE type
380 ETH_RX_CQE_TYPE_REGULAR /* Regular FP ETH Rx CQE */,
381 ETH_RX_CQE_TYPE_SLOW_PATH /* Slow path ETH Rx CQE */,
382 ETH_RX_CQE_TYPE_TPA_START /* TPA start ETH Rx CQE */,
383 ETH_RX_CQE_TYPE_TPA_CONT /* TPA Continue ETH Rx CQE */,
384 ETH_RX_CQE_TYPE_TPA_END /* TPA end ETH Rx CQE */,
389 * Wrapper for PD RX CQE - used in order to cover full cache line when writing CQE
393 union eth_rx_cqe cqe /* CQE data itself */; member