Lines Matching refs:hwstats
2498 struct dwceqos_mmc_counters *hwstats = &lp->mmc_counters; in dwceqos_get_stats64() local
2505 s->rx_packets = hwstats->rxpacketcount_gb; in dwceqos_get_stats64()
2506 s->rx_bytes = hwstats->rxoctetcount_gb; in dwceqos_get_stats64()
2507 s->rx_errors = hwstats->rxpacketcount_gb - in dwceqos_get_stats64()
2508 hwstats->rxbroadcastpackets_g - in dwceqos_get_stats64()
2509 hwstats->rxmulticastpackets_g - in dwceqos_get_stats64()
2510 hwstats->rxunicastpackets_g; in dwceqos_get_stats64()
2511 s->multicast = hwstats->rxmulticastpackets_g; in dwceqos_get_stats64()
2512 s->rx_length_errors = hwstats->rxlengtherror; in dwceqos_get_stats64()
2513 s->rx_crc_errors = hwstats->rxcrcerror; in dwceqos_get_stats64()
2514 s->rx_fifo_errors = hwstats->rxfifooverflow; in dwceqos_get_stats64()
2516 s->tx_packets = hwstats->txpacketcount_gb; in dwceqos_get_stats64()
2517 s->tx_bytes = hwstats->txoctetcount_gb; in dwceqos_get_stats64()
2520 s->tx_errors = hwstats->txpacketcount_gb - in dwceqos_get_stats64()
2521 hwstats->txpacketcount_g; in dwceqos_get_stats64()
2523 s->tx_errors = hwstats->txunderflowerror + in dwceqos_get_stats64()
2524 hwstats->txcarriererror; in dwceqos_get_stats64()