Home
last modified time | relevance | path

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

/linux-6.1.9/drivers/net/ethernet/marvell/octeontx2/nic/
Dotx2_txrx.c504 rx_frames = OTX2_GET_RX_STATS(RX_BCAST) + OTX2_GET_RX_STATS(RX_MCAST) + in otx2_adjust_adaptive_coalese()
505 OTX2_GET_RX_STATS(RX_UCAST); in otx2_adjust_adaptive_coalese()
506 rx_bytes = OTX2_GET_RX_STATS(RX_OCTS); in otx2_adjust_adaptive_coalese()
Dotx2_common.c100 dev_stats->rx_bytes = OTX2_GET_RX_STATS(RX_OCTS); in otx2_get_dev_stats()
101 dev_stats->rx_drops = OTX2_GET_RX_STATS(RX_DROP); in otx2_get_dev_stats()
102 dev_stats->rx_bcast_frames = OTX2_GET_RX_STATS(RX_BCAST); in otx2_get_dev_stats()
103 dev_stats->rx_mcast_frames = OTX2_GET_RX_STATS(RX_MCAST); in otx2_get_dev_stats()
104 dev_stats->rx_ucast_frames = OTX2_GET_RX_STATS(RX_UCAST); in otx2_get_dev_stats()
Dotx2_common.h65 #define OTX2_GET_RX_STATS(reg) \ macro