Home
last modified time | relevance | path

Searched refs:next_to_process (Results 1 – 3 of 3) sorted by relevance

/Linux-v6.6/drivers/net/ethernet/intel/i40e/
Di40e_xsk.c438 u16 next_to_process = rx_ring->next_to_process; in i40e_clean_rx_irq_zc() local
447 if (next_to_process != next_to_clean) in i40e_clean_rx_irq_zc()
463 rx_desc = I40E_RX_DESC(rx_ring, next_to_process); in i40e_clean_rx_irq_zc()
476 bi = *i40e_rx_bi(rx_ring, next_to_process); in i40e_clean_rx_irq_zc()
478 if (++next_to_process == count) in i40e_clean_rx_irq_zc()
479 next_to_process = 0; in i40e_clean_rx_irq_zc()
488 bi = *i40e_rx_bi(rx_ring, next_to_process); in i40e_clean_rx_irq_zc()
497 if (++next_to_process == count) in i40e_clean_rx_irq_zc()
498 next_to_process = 0; in i40e_clean_rx_irq_zc()
507 next_to_clean = next_to_process; in i40e_clean_rx_irq_zc()
[all …]
Di40e_txrx.c1524 rx_ring->next_to_process = 0; in i40e_clean_rx_ring()
1577 rx_ring->next_to_process = 0; in i40e_setup_rx_descriptors()
2046 rx_buffer = i40e_rx_bi(rx_ring, rx_ring->next_to_process); in i40e_get_rx_buffer()
2122 if (next == rx_ring->next_to_process) in i40e_process_rx_buffs()
2424 u32 ntp = rx_ring->next_to_process + 1; in i40e_inc_ntp()
2427 rx_ring->next_to_process = ntp; in i40e_inc_ntp()
2476 rx_ring->next_to_clean = rx_ring->next_to_process; in i40e_consume_xdp_buff()
2509 u16 ntp = rx_ring->next_to_process; in i40e_clean_rx_irq()
2552 rx_ring->next_to_process; in i40e_clean_rx_irq()
2635 rx_ring->next_to_clean = rx_ring->next_to_process; in i40e_clean_rx_irq()
Di40e_txrx.h350 u16 next_to_process; member