Skip to content

Commit 95c3756

Browse files
kuba-moosmb49
authored andcommitted
virtio-net: fix total qstat values
BugLink: https://bugs.launchpad.net/bugs/2115252 [ Upstream commit 001160ec8c59115efc39e197d40829bdafd4d7f5 ] NIPA tests report that the interface statistics reported via qstat are lower than those reported via ip link. Looks like this is because some tests flip the queue count up and down, and we end up with some of the traffic accounted on disabled queues. Add up counters from disabled queues. Fixes: d888f04 ("virtio-net: support queue stat") Signed-off-by: Jakub Kicinski <kuba@kernel.org> Link: https://patch.msgid.link/20250507003221.823267-3-kuba@kernel.org Signed-off-by: Paolo Abeni <pabeni@redhat.com> Signed-off-by: Sasha Levin <sashal@kernel.org> Signed-off-by: Manuel Diewald <manuel.diewald@canonical.com> Signed-off-by: Stefan Bader <stefan.bader@canonical.com>
1 parent 3e44757 commit 95c3756

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

drivers/net/virtio_net.c

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5663,6 +5663,10 @@ static void virtnet_get_base_stats(struct net_device *dev,
56635663

56645664
if (vi->device_stats_cap & VIRTIO_NET_STATS_TYPE_TX_SPEED)
56655665
tx->hw_drop_ratelimits = 0;
5666+
5667+
netdev_stat_queue_sum(dev,
5668+
dev->real_num_rx_queues, vi->max_queue_pairs, rx,
5669+
dev->real_num_tx_queues, vi->max_queue_pairs, tx);
56665670
}
56675671

56685672
static const struct netdev_stat_ops virtnet_stat_ops = {

0 commit comments

Comments
 (0)