Lines Matching refs:qstats
1336 const struct netvsc_stats *qstats; in netvsc_get_ethtool_stats() local
1354 qstats = &nvdev->chan_table[j].tx_stats; in netvsc_get_ethtool_stats()
1357 start = u64_stats_fetch_begin_irq(&qstats->syncp); in netvsc_get_ethtool_stats()
1358 packets = qstats->packets; in netvsc_get_ethtool_stats()
1359 bytes = qstats->bytes; in netvsc_get_ethtool_stats()
1360 } while (u64_stats_fetch_retry_irq(&qstats->syncp, start)); in netvsc_get_ethtool_stats()
1364 qstats = &nvdev->chan_table[j].rx_stats; in netvsc_get_ethtool_stats()
1366 start = u64_stats_fetch_begin_irq(&qstats->syncp); in netvsc_get_ethtool_stats()
1367 packets = qstats->packets; in netvsc_get_ethtool_stats()
1368 bytes = qstats->bytes; in netvsc_get_ethtool_stats()
1369 } while (u64_stats_fetch_retry_irq(&qstats->syncp, start)); in netvsc_get_ethtool_stats()