Lines Matching refs:pstats
2080 struct xgbe_mmc_stats *pstats = &pdata->mmc_stats; in xgbe_get_stats64() local
2086 s->rx_packets = pstats->rxframecount_gb; in xgbe_get_stats64()
2087 s->rx_bytes = pstats->rxoctetcount_gb; in xgbe_get_stats64()
2088 s->rx_errors = pstats->rxframecount_gb - in xgbe_get_stats64()
2089 pstats->rxbroadcastframes_g - in xgbe_get_stats64()
2090 pstats->rxmulticastframes_g - in xgbe_get_stats64()
2091 pstats->rxunicastframes_g; in xgbe_get_stats64()
2092 s->multicast = pstats->rxmulticastframes_g; in xgbe_get_stats64()
2093 s->rx_length_errors = pstats->rxlengtherror; in xgbe_get_stats64()
2094 s->rx_crc_errors = pstats->rxcrcerror; in xgbe_get_stats64()
2095 s->rx_fifo_errors = pstats->rxfifooverflow; in xgbe_get_stats64()
2097 s->tx_packets = pstats->txframecount_gb; in xgbe_get_stats64()
2098 s->tx_bytes = pstats->txoctetcount_gb; in xgbe_get_stats64()
2099 s->tx_errors = pstats->txframecount_gb - pstats->txframecount_g; in xgbe_get_stats64()