aboutsummaryrefslogtreecommitdiff
path: root/hw
diff options
context:
space:
mode:
authorYuri Benditovich <yuri.benditovich@daynix.com>2020-07-27 17:38:07 +0300
committerJason Wang <jasowang@redhat.com>2020-07-28 16:54:46 +0800
commita48aaf882b100b30111b5c7c75e1d9e83fe76cfd (patch)
treef04cbd8ea2ff425dc936c7923c890fef48ebe1cb /hw
parent93ea484375ab473379dd9c836261ef484bd71ab1 (diff)
downloadqemu-a48aaf882b100b30111b5c7c75e1d9e83fe76cfd.zip
qemu-a48aaf882b100b30111b5c7c75e1d9e83fe76cfd.tar.gz
qemu-a48aaf882b100b30111b5c7c75e1d9e83fe76cfd.tar.bz2
virtio-pci: fix wrong index in virtio_pci_queue_enabled
We should use the index passed by the caller instead of the queue_sel when checking the enablement of a specific virtqueue. This is reported in https://bugzilla.redhat.com/show_bug.cgi?id=1702608 Fixes: f19bcdfedd53 ("virtio-pci: implement queue_enabled method") Signed-off-by: Yuri Benditovich <yuri.benditovich@daynix.com> Signed-off-by: Jason Wang <jasowang@redhat.com>
Diffstat (limited to 'hw')
-rw-r--r--hw/virtio/virtio-pci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/virtio/virtio-pci.c b/hw/virtio/virtio-pci.c
index 4ad3ad8..ccdf54e 100644
--- a/hw/virtio/virtio-pci.c
+++ b/hw/virtio/virtio-pci.c
@@ -1113,7 +1113,7 @@ static bool virtio_pci_queue_enabled(DeviceState *d, int n)
VirtIODevice *vdev = virtio_bus_get_device(&proxy->bus);
if (virtio_vdev_has_feature(vdev, VIRTIO_F_VERSION_1)) {
- return proxy->vqs[vdev->queue_sel].enabled;
+ return proxy->vqs[n].enabled;
}
return virtio_queue_enabled_legacy(vdev, n);