Lines Matching refs:pstats
1547 struct xgbe_mmc_stats *pstats = &pdata->mmc_stats; in xgbe_get_stats64() local
1553 s->rx_packets = pstats->rxframecount_gb; in xgbe_get_stats64()
1554 s->rx_bytes = pstats->rxoctetcount_gb; in xgbe_get_stats64()
1555 s->rx_errors = pstats->rxframecount_gb - in xgbe_get_stats64()
1556 pstats->rxbroadcastframes_g - in xgbe_get_stats64()
1557 pstats->rxmulticastframes_g - in xgbe_get_stats64()
1558 pstats->rxunicastframes_g; in xgbe_get_stats64()
1559 s->multicast = pstats->rxmulticastframes_g; in xgbe_get_stats64()
1560 s->rx_length_errors = pstats->rxlengtherror; in xgbe_get_stats64()
1561 s->rx_crc_errors = pstats->rxcrcerror; in xgbe_get_stats64()
1562 s->rx_fifo_errors = pstats->rxfifooverflow; in xgbe_get_stats64()
1564 s->tx_packets = pstats->txframecount_gb; in xgbe_get_stats64()
1565 s->tx_bytes = pstats->txoctetcount_gb; in xgbe_get_stats64()
1566 s->tx_errors = pstats->txframecount_gb - pstats->txframecount_g; in xgbe_get_stats64()