Lines Matching refs:stats_rx
266 struct ave_stats stats_rx; member
768 priv->stats_rx.errors++; in ave_rx_receive()
799 u64_stats_update_begin(&priv->stats_rx.syncp); in ave_rx_receive()
800 priv->stats_rx.packets += rx_packets; in ave_rx_receive()
801 priv->stats_rx.bytes += rx_bytes; in ave_rx_receive()
802 u64_stats_update_end(&priv->stats_rx.syncp); in ave_rx_receive()
950 priv->stats_rx.fifo_errors++; in ave_irq_handler()
957 priv->stats_rx.dropped++; in ave_irq_handler()
1509 start = u64_stats_fetch_begin_irq(&priv->stats_rx.syncp); in ave_get_stats64()
1510 stats->rx_packets = priv->stats_rx.packets; in ave_get_stats64()
1511 stats->rx_bytes = priv->stats_rx.bytes; in ave_get_stats64()
1512 } while (u64_stats_fetch_retry_irq(&priv->stats_rx.syncp, start)); in ave_get_stats64()
1520 stats->rx_errors = priv->stats_rx.errors; in ave_get_stats64()
1522 stats->rx_dropped = priv->stats_rx.dropped; in ave_get_stats64()
1524 stats->rx_fifo_errors = priv->stats_rx.fifo_errors; in ave_get_stats64()
1645 u64_stats_init(&priv->stats_rx.syncp); in ave_probe()