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