From: Eugenio Pérez Date: Thu, 15 Dec 2022 11:31:33 +0000 (+0100) Subject: vdpa: use v->shadow_vqs_enabled in vhost_vdpa_svqs_start & stop X-Git-Tag: qemu-xen-4.18.0-rc5~376^2~29 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=712c1a3171cf62d501dac5af58f77d5fea70350d;p=qemu-xen.git vdpa: use v->shadow_vqs_enabled in vhost_vdpa_svqs_start & stop This function used to trust in v->shadow_vqs != NULL to know if it must start svq or not. This is not going to be valid anymore, as qemu is going to allocate svq array unconditionally (but it will only start them conditionally). Signed-off-by: Eugenio Pérez Acked-by: Jason Wang Message-Id: <20221215113144.322011-2-eperezma@redhat.com> Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- diff --git a/hw/virtio/vhost-vdpa.c b/hw/virtio/vhost-vdpa.c index bc1c79b325..220a9a2e6e 100644 --- a/hw/virtio/vhost-vdpa.c +++ b/hw/virtio/vhost-vdpa.c @@ -1029,7 +1029,7 @@ static bool vhost_vdpa_svqs_start(struct vhost_dev *dev) Error *err = NULL; unsigned i; - if (!v->shadow_vqs) { + if (!v->shadow_vqs_enabled) { return true; } @@ -1082,7 +1082,7 @@ static void vhost_vdpa_svqs_stop(struct vhost_dev *dev) { struct vhost_vdpa *v = dev->opaque; - if (!v->shadow_vqs) { + if (!v->shadow_vqs_enabled) { return; }