Home
last modified time | relevance | path

Searched refs:total_rx_packets (Results 1 – 15 of 15) sorted by relevance

/linux-6.15/drivers/net/ethernet/intel/ixgbe/
H A Dixgbe_xsk.c251 unsigned int total_rx_bytes = 0, total_rx_packets = 0; in ixgbe_clean_rx_irq_zc() local
258 while (likely(total_rx_packets < budget)) { in ixgbe_clean_rx_irq_zc()
321 total_rx_packets++; in ixgbe_clean_rx_irq_zc()
346 total_rx_packets++; in ixgbe_clean_rx_irq_zc()
361 ixgbe_update_rx_ring_stats(rx_ring, q_vector, total_rx_packets, in ixgbe_clean_rx_irq_zc()
370 return (int)total_rx_packets; in ixgbe_clean_rx_irq_zc()
372 return failure ? budget : (int)total_rx_packets; in ixgbe_clean_rx_irq_zc()
H A Dixgbe_main.c2333 unsigned int total_rx_bytes = 0, total_rx_packets = 0, frame_sz = 0; in ixgbe_clean_rx_irq() local
2351 while (likely(total_rx_packets < budget)) { in ixgbe_clean_rx_irq()
2399 total_rx_packets++; in ixgbe_clean_rx_irq()
2450 total_rx_packets += DIV_ROUND_UP(ddp_bytes, in ixgbe_clean_rx_irq()
2463 total_rx_packets++; in ixgbe_clean_rx_irq()
2475 ixgbe_update_rx_ring_stats(rx_ring, q_vector, total_rx_packets, in ixgbe_clean_rx_irq()
2478 return total_rx_packets; in ixgbe_clean_rx_irq()
/linux-6.15/drivers/net/ethernet/intel/i40e/
H A Di40e_xsk.c408 unsigned int total_rx_bytes = 0, total_rx_packets = 0; in i40e_clean_rx_irq_zc() local
426 while (likely(total_rx_packets < (unsigned int)budget)) { in i40e_clean_rx_irq_zc()
481 total_rx_packets += rx_packets; in i40e_clean_rx_irq_zc()
495 i40e_update_rx_stats(rx_ring, total_rx_bytes, total_rx_packets); in i40e_clean_rx_irq_zc()
503 return (int)total_rx_packets; in i40e_clean_rx_irq_zc()
505 return failure ? budget : (int)total_rx_packets; in i40e_clean_rx_irq_zc()
H A Di40e_txrx_common.h17 unsigned int total_rx_packets);
H A Di40e_txrx.c2332 unsigned int total_rx_packets) in i40e_update_rx_stats() argument
2335 rx_ring->stats.packets += total_rx_packets; in i40e_update_rx_stats()
2338 rx_ring->q_vector->rx.total_packets += total_rx_packets; in i40e_update_rx_stats()
2442 unsigned int total_rx_bytes = 0, total_rx_packets = 0; in i40e_clean_rx_irq() local
2454 while (likely(total_rx_packets < (unsigned int)budget)) { in i40e_clean_rx_irq()
2576 total_rx_packets++; in i40e_clean_rx_irq()
2587 i40e_update_rx_stats(rx_ring, total_rx_bytes, total_rx_packets); in i40e_clean_rx_irq()
2589 *rx_cleaned = total_rx_packets; in i40e_clean_rx_irq()
2592 return failure ? budget : (int)total_rx_packets; in i40e_clean_rx_irq()
/linux-6.15/drivers/net/ethernet/intel/ice/
H A Dice_xsk.c817 unsigned int total_rx_bytes = 0, total_rx_packets = 0; in ice_clean_rx_irq_zc() local
837 while (likely(total_rx_packets < (unsigned int)budget)) { in ice_clean_rx_irq_zc()
897 total_rx_packets++; in ice_clean_rx_irq_zc()
920 total_rx_packets++; in ice_clean_rx_irq_zc()
935 ice_update_rx_ring_stats(rx_ring, total_rx_packets, total_rx_bytes); in ice_clean_rx_irq_zc()
946 return (int)total_rx_packets; in ice_clean_rx_irq_zc()
949 return failure ? budget : (int)total_rx_packets; in ice_clean_rx_irq_zc()
/linux-6.15/drivers/net/ethernet/intel/igbvf/
H A Digbvf.h192 unsigned int total_rx_packets; member
H A Dnetdev.c379 adapter->total_rx_packets += total_packets; in igbvf_clean_rx_irq()
746 adapter->total_rx_packets, in igbvf_set_itr()
915 adapter->total_rx_packets = 0; in igbvf_intr_msix_rx()
/linux-6.15/drivers/net/ethernet/intel/iavf/
H A Diavf_txrx.c1387 unsigned int total_rx_bytes = 0, total_rx_packets = 0; in iavf_clean_rx_irq() local
1392 while (likely(total_rx_packets < (unsigned int)budget)) { in iavf_clean_rx_irq()
1472 total_rx_packets++; in iavf_clean_rx_irq()
1478 rx_ring->stats.packets += total_rx_packets; in iavf_clean_rx_irq()
1481 rx_ring->q_vector->rx.total_packets += total_rx_packets; in iavf_clean_rx_irq()
1485 return failure ? budget : (int)total_rx_packets; in iavf_clean_rx_irq()
/linux-6.15/drivers/net/ethernet/intel/e1000/
H A De1000_main.c2650 adapter->total_rx_packets, in e1000_set_itr()
3781 adapter->total_rx_packets = 0; in e1000_intr()
4145 unsigned int total_rx_bytes = 0, total_rx_packets = 0; in e1000_clean_jumbo_rx_irq() local
4255 total_rx_packets++; in e1000_clean_jumbo_rx_irq()
4283 total_rx_packets++; in e1000_clean_jumbo_rx_irq()
4313 adapter->total_rx_packets += total_rx_packets; in e1000_clean_jumbo_rx_irq()
4316 netdev->stats.rx_packets += total_rx_packets; in e1000_clean_jumbo_rx_irq()
4363 unsigned int total_rx_bytes = 0, total_rx_packets = 0; in e1000_clean_rx_irq() local
4446 total_rx_packets++; in e1000_clean_rx_irq()
4486 adapter->total_rx_packets += total_rx_packets; in e1000_clean_rx_irq()
[all …]
H A De1000.h218 unsigned int total_rx_packets; member
/linux-6.15/drivers/net/ethernet/intel/e1000e/
H A Dnetdev.c927 unsigned int total_rx_bytes = 0, total_rx_packets = 0; in e1000_clean_rx_irq() local
1002 total_rx_packets++; in e1000_clean_rx_irq()
1058 adapter->total_rx_packets += total_rx_packets; in e1000_clean_rx_irq()
1447 total_rx_packets++; in e1000_clean_rx_irq_ps()
1484 adapter->total_rx_packets += total_rx_packets; in e1000_clean_rx_irq_ps()
1628 total_rx_packets++; in e1000_clean_jumbo_rx_irq()
1663 adapter->total_rx_packets += total_rx_packets; in e1000_clean_jumbo_rx_irq()
1804 adapter->total_rx_packets = 0; in e1000_intr_msi()
1883 adapter->total_rx_packets = 0; in e1000_intr()
1952 adapter->total_rx_packets = 0; in e1000_intr_msix_rx()
[all …]
H A De1000.h239 unsigned int total_rx_packets; member
/linux-6.15/drivers/net/ethernet/wangxun/libwx/
H A Dwx_lib.c636 unsigned int total_rx_bytes = 0, total_rx_packets = 0; in wx_clean_rx_irq() local
691 total_rx_packets++; in wx_clean_rx_irq()
692 } while (likely(total_rx_packets < budget)); in wx_clean_rx_irq()
695 rx_ring->stats.packets += total_rx_packets; in wx_clean_rx_irq()
698 q_vector->rx.total_packets += total_rx_packets; in wx_clean_rx_irq()
701 return total_rx_packets; in wx_clean_rx_irq()
/linux-6.15/drivers/net/ethernet/intel/ixgbevf/
H A Dixgbevf_main.c1120 unsigned int total_rx_bytes = 0, total_rx_packets = 0, frame_sz = 0; in ixgbevf_clean_rx_irq() local
1134 while (likely(total_rx_packets < budget)) { in ixgbevf_clean_rx_irq()
1181 total_rx_packets++; in ixgbevf_clean_rx_irq()
1236 total_rx_packets++; in ixgbevf_clean_rx_irq()
1254 rx_ring->stats.packets += total_rx_packets; in ixgbevf_clean_rx_irq()
1257 q_vector->rx.total_packets += total_rx_packets; in ixgbevf_clean_rx_irq()
1260 return total_rx_packets; in ixgbevf_clean_rx_irq()