Home
last modified time | relevance | path

Searched refs:qcp_rd_p (Results 1 – 6 of 6) sorted by relevance

/linux-6.12.1/drivers/net/ethernet/netronome/nfp/nfd3/
Dxsk.c281 u32 qcp_rd_p; in nfp_nfd3_xsk_complete() local
287 qcp_rd_p = nfp_qcp_rd_ptr_read(tx_ring->qcp_q); in nfp_nfd3_xsk_complete()
289 if (qcp_rd_p == tx_ring->qcp_rd_p) in nfp_nfd3_xsk_complete()
292 todo = D_IDX(tx_ring, qcp_rd_p - tx_ring->qcp_rd_p); in nfp_nfd3_xsk_complete()
297 tx_ring->qcp_rd_p = D_IDX(tx_ring, tx_ring->qcp_rd_p + todo); in nfp_nfd3_xsk_complete()
Ddp.c427 u32 qcp_rd_p; in nfp_nfd3_tx_complete() local
434 qcp_rd_p = nfp_net_read_tx_cmpl(tx_ring, dp); in nfp_nfd3_tx_complete()
436 if (qcp_rd_p == tx_ring->qcp_rd_p) in nfp_nfd3_tx_complete()
439 todo = D_IDX(tx_ring, qcp_rd_p - tx_ring->qcp_rd_p); in nfp_nfd3_tx_complete()
481 tx_ring->qcp_rd_p = qcp_rd_p; in nfp_nfd3_tx_complete()
513 u32 qcp_rd_p; in nfp_nfd3_xdp_complete() local
516 qcp_rd_p = nfp_net_read_tx_cmpl(tx_ring, dp); in nfp_nfd3_xdp_complete()
518 if (qcp_rd_p == tx_ring->qcp_rd_p) in nfp_nfd3_xdp_complete()
521 todo = D_IDX(tx_ring, qcp_rd_p - tx_ring->qcp_rd_p); in nfp_nfd3_xdp_complete()
526 tx_ring->qcp_rd_p = D_IDX(tx_ring, tx_ring->qcp_rd_p + todo); in nfp_nfd3_xdp_complete()
Drings.c22 tx_ring->qcp_rd_p++; in nfp_nfd3_xsk_tx_bufs_free()
77 tx_ring->qcp_rd_p++; in nfp_nfd3_tx_ring_reset()
87 tx_ring->qcp_rd_p = 0; in nfp_nfd3_tx_ring_reset()
/linux-6.12.1/drivers/net/ethernet/netronome/nfp/nfdk/
Ddp.c479 u32 rd_p, qcp_rd_p; in nfp_nfdk_tx_complete() local
487 qcp_rd_p = nfp_net_read_tx_cmpl(tx_ring, dp); in nfp_nfdk_tx_complete()
489 if (qcp_rd_p == tx_ring->qcp_rd_p) in nfp_nfdk_tx_complete()
492 todo = D_IDX(tx_ring, qcp_rd_p - tx_ring->qcp_rd_p); in nfp_nfdk_tx_complete()
545 tx_ring->qcp_rd_p = qcp_rd_p; in nfp_nfdk_tx_complete()
840 u32 qcp_rd_p, done = 0; in nfp_nfdk_xdp_complete() local
845 qcp_rd_p = nfp_net_read_tx_cmpl(tx_ring, dp); in nfp_nfdk_xdp_complete()
846 if (qcp_rd_p == tx_ring->qcp_rd_p) in nfp_nfdk_xdp_complete()
849 todo = D_IDX(tx_ring, qcp_rd_p - tx_ring->qcp_rd_p); in nfp_nfdk_xdp_complete()
888 tx_ring->qcp_rd_p = D_IDX(tx_ring, tx_ring->qcp_rd_p + done); in nfp_nfdk_xdp_complete()
Drings.c64 tx_ring->qcp_rd_p = 0; in nfp_nfdk_tx_ring_reset()
/linux-6.12.1/drivers/net/ethernet/netronome/nfp/
Dnfp_net.h173 u32 qcp_rd_p; member