Lines Matching refs:pstats
1615 struct xgbe_mmc_stats *pstats = &pdata->mmc_stats; in xgbe_get_stats64() local
1621 s->rx_packets = pstats->rxframecount_gb; in xgbe_get_stats64()
1622 s->rx_bytes = pstats->rxoctetcount_gb; in xgbe_get_stats64()
1623 s->rx_errors = pstats->rxframecount_gb - in xgbe_get_stats64()
1624 pstats->rxbroadcastframes_g - in xgbe_get_stats64()
1625 pstats->rxmulticastframes_g - in xgbe_get_stats64()
1626 pstats->rxunicastframes_g; in xgbe_get_stats64()
1627 s->multicast = pstats->rxmulticastframes_g; in xgbe_get_stats64()
1628 s->rx_length_errors = pstats->rxlengtherror; in xgbe_get_stats64()
1629 s->rx_crc_errors = pstats->rxcrcerror; in xgbe_get_stats64()
1630 s->rx_fifo_errors = pstats->rxfifooverflow; in xgbe_get_stats64()
1632 s->tx_packets = pstats->txframecount_gb; in xgbe_get_stats64()
1633 s->tx_bytes = pstats->txoctetcount_gb; in xgbe_get_stats64()
1634 s->tx_errors = pstats->txframecount_gb - pstats->txframecount_g; in xgbe_get_stats64()