Home
last modified time | relevance | path

Searched refs:pend_cqe (Results 1 – 2 of 2) sorted by relevance

/linux/drivers/net/ethernet/marvell/octeontx2/nic/
H A Dotx2_txrx.c74 cq->pend_cqe = (cq->cqe_cnt - cq->cq_head) + in otx2_nix_cq_op_status()
77 cq->pend_cqe = cq->cq_tail - cq->cq_head; in otx2_nix_cq_op_status()
401 if (cq->pend_cqe >= budget) in otx2_rx_napi_handler()
404 if (otx2_nix_cq_op_status(pfvf, cq) || !cq->pend_cqe) in otx2_rx_napi_handler()
408 while (likely(processed_cqe < budget) && cq->pend_cqe) { in otx2_rx_napi_handler()
424 cq->pend_cqe--; in otx2_rx_napi_handler()
477 if (cq->pend_cqe >= budget) in otx2_tx_napi_handler()
480 if (otx2_nix_cq_op_status(pfvf, cq) || !cq->pend_cqe) { in otx2_tx_napi_handler()
489 while (likely(processed_cqe < budget) && cq->pend_cqe) { in otx2_tx_napi_handler()
505 cq->pend_cqe--; in otx2_tx_napi_handler()
[all …]
H A Dotx2_txrx.h151 u32 pend_cqe; member