Lines Matching defs:qstats
1521 const struct netvsc_stats *qstats;
1540 qstats = &nvdev->chan_table[j].tx_stats;
1543 start = u64_stats_fetch_begin_irq(&qstats->syncp);
1544 packets = qstats->packets;
1545 bytes = qstats->bytes;
1546 } while (u64_stats_fetch_retry_irq(&qstats->syncp, start));
1550 qstats = &nvdev->chan_table[j].rx_stats;
1552 start = u64_stats_fetch_begin_irq(&qstats->syncp);
1553 packets = qstats->packets;
1554 bytes = qstats->bytes;
1555 xdp_drop = qstats->xdp_drop;
1556 } while (u64_stats_fetch_retry_irq(&qstats->syncp, start));