Lines Matching defs:pstats
2094 struct xgbe_mmc_stats *pstats = &pdata->mmc_stats;
2100 s->rx_packets = pstats->rxframecount_gb;
2101 s->rx_bytes = pstats->rxoctetcount_gb;
2102 s->rx_errors = pstats->rxframecount_gb -
2103 pstats->rxbroadcastframes_g -
2104 pstats->rxmulticastframes_g -
2105 pstats->rxunicastframes_g;
2106 s->multicast = pstats->rxmulticastframes_g;
2107 s->rx_length_errors = pstats->rxlengtherror;
2108 s->rx_crc_errors = pstats->rxcrcerror;
2109 s->rx_fifo_errors = pstats->rxfifooverflow;
2111 s->tx_packets = pstats->txframecount_gb;
2112 s->tx_bytes = pstats->txoctetcount_gb;
2113 s->tx_errors = pstats->txframecount_gb - pstats->txframecount_g;