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