Lines Matching defs:pstats
2101 struct xgbe_mmc_stats *pstats = &pdata->mmc_stats;
2107 s->rx_packets = pstats->rxframecount_gb;
2108 s->rx_bytes = pstats->rxoctetcount_gb;
2109 s->rx_errors = pstats->rxframecount_gb -
2110 pstats->rxbroadcastframes_g -
2111 pstats->rxmulticastframes_g -
2112 pstats->rxunicastframes_g;
2113 s->multicast = pstats->rxmulticastframes_g;
2114 s->rx_length_errors = pstats->rxlengtherror;
2115 s->rx_crc_errors = pstats->rxcrcerror;
2116 s->rx_fifo_errors = pstats->rxfifooverflow;
2118 s->tx_packets = pstats->txframecount_gb;
2119 s->tx_bytes = pstats->txoctetcount_gb;
2120 s->tx_errors = pstats->txframecount_gb - pstats->txframecount_g;