Lines Matching refs:qstats
1406 const struct netvsc_stats *qstats; in netvsc_get_ethtool_stats() local
1424 qstats = &nvdev->chan_table[j].tx_stats; in netvsc_get_ethtool_stats()
1427 start = u64_stats_fetch_begin_irq(&qstats->syncp); in netvsc_get_ethtool_stats()
1428 packets = qstats->packets; in netvsc_get_ethtool_stats()
1429 bytes = qstats->bytes; in netvsc_get_ethtool_stats()
1430 } while (u64_stats_fetch_retry_irq(&qstats->syncp, start)); in netvsc_get_ethtool_stats()
1434 qstats = &nvdev->chan_table[j].rx_stats; in netvsc_get_ethtool_stats()
1436 start = u64_stats_fetch_begin_irq(&qstats->syncp); in netvsc_get_ethtool_stats()
1437 packets = qstats->packets; in netvsc_get_ethtool_stats()
1438 bytes = qstats->bytes; in netvsc_get_ethtool_stats()
1439 } while (u64_stats_fetch_retry_irq(&qstats->syncp, start)); in netvsc_get_ethtool_stats()