Lines Matching defs:pstats
771 struct xlgmac_stats *pstats = &pdata->stats;
775 s->rx_packets = pstats->rxframecount_gb;
776 s->rx_bytes = pstats->rxoctetcount_gb;
777 s->rx_errors = pstats->rxframecount_gb -
778 pstats->rxbroadcastframes_g -
779 pstats->rxmulticastframes_g -
780 pstats->rxunicastframes_g;
781 s->multicast = pstats->rxmulticastframes_g;
782 s->rx_length_errors = pstats->rxlengtherror;
783 s->rx_crc_errors = pstats->rxcrcerror;
784 s->rx_fifo_errors = pstats->rxfifooverflow;
786 s->tx_packets = pstats->txframecount_gb;
787 s->tx_bytes = pstats->txoctetcount_gb;
788 s->tx_errors = pstats->txframecount_gb - pstats->txframecount_g;