Home
last modified time | relevance | path

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

/linux/drivers/net/ethernet/broadcom/bnge/
H A Dbnge_netdev.c3014 rx_packets = BNGE_GET_RING_STATS64(sw, rx_ucast_pkts); in bnge_get_ring_stats64()
3015 rx_packets += BNGE_GET_RING_STATS64(sw, rx_mcast_pkts); in bnge_get_ring_stats64()
3016 rx_packets += BNGE_GET_RING_STATS64(sw, rx_bcast_pkts); in bnge_get_ring_stats64()
3018 tx_packets = BNGE_GET_RING_STATS64(sw, tx_ucast_pkts); in bnge_get_ring_stats64()
3019 tx_packets += BNGE_GET_RING_STATS64(sw, tx_mcast_pkts); in bnge_get_ring_stats64()
3020 tx_packets += BNGE_GET_RING_STATS64(sw, tx_bcast_pkts); in bnge_get_ring_stats64()
3022 rx_bytes = BNGE_GET_RING_STATS64(sw, rx_ucast_bytes); in bnge_get_ring_stats64()
3023 rx_bytes += BNGE_GET_RING_STATS64(sw, rx_mcast_bytes); in bnge_get_ring_stats64()
3024 rx_bytes += BNGE_GET_RING_STATS64(sw, rx_bcast_bytes); in bnge_get_ring_stats64()
3026 tx_bytes = BNGE_GET_RING_STATS64(sw, tx_ucast_bytes); in bnge_get_ring_stats64()
[all …]
H A Dbnge_netdev.h229 #define BNGE_GET_RING_STATS64(sw, counter) \ macro