Lines Matching refs:stats_rx
269 struct ave_stats stats_rx; member
769 priv->stats_rx.errors++; in ave_rx_receive()
800 u64_stats_update_begin(&priv->stats_rx.syncp); in ave_rx_receive()
801 priv->stats_rx.packets += rx_packets; in ave_rx_receive()
802 priv->stats_rx.bytes += rx_bytes; in ave_rx_receive()
803 u64_stats_update_end(&priv->stats_rx.syncp); in ave_rx_receive()
951 priv->stats_rx.fifo_errors++; in ave_irq_handler()
958 priv->stats_rx.dropped++; in ave_irq_handler()
1512 start = u64_stats_fetch_begin(&priv->stats_rx.syncp); in ave_get_stats64()
1513 stats->rx_packets = priv->stats_rx.packets; in ave_get_stats64()
1514 stats->rx_bytes = priv->stats_rx.bytes; in ave_get_stats64()
1515 } while (u64_stats_fetch_retry(&priv->stats_rx.syncp, start)); in ave_get_stats64()
1523 stats->rx_errors = priv->stats_rx.errors; in ave_get_stats64()
1525 stats->rx_dropped = priv->stats_rx.dropped; in ave_get_stats64()
1527 stats->rx_fifo_errors = priv->stats_rx.fifo_errors; in ave_get_stats64()
1640 u64_stats_init(&priv->stats_rx.syncp); in ave_probe()