79c4324644
Change-Id: I2d302dda68298877c65c99147f5bf22186a59aac
51 lines
1.5 KiB
Diff
51 lines
1.5 KiB
Diff
From f2a41f2f0f16402772009efc8eac5e9a08fea0b3 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Eugenio=20P=C3=A9rez?= <eperezma@redhat.com>
|
|
Date: Thu, 15 Dec 2022 12:31:33 +0100
|
|
Subject: [PATCH] vdpa: use v->shadow_vqs_enabled in vhost_vdpa_svqs_start &
|
|
stop
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
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 <eperezma@redhat.com>
|
|
Acked-by: Jason Wang <jasowang@redhat.com>
|
|
Message-Id: <20221215113144.322011-2-eperezma@redhat.com>
|
|
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
|
|
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
|
|
Signed-off-by: fangyi <eric.fangyi@huawei.com>
|
|
---
|
|
hw/virtio/vhost-vdpa.c | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/hw/virtio/vhost-vdpa.c b/hw/virtio/vhost-vdpa.c
|
|
index 0f07c85b91..08f92bf781 100644
|
|
--- a/hw/virtio/vhost-vdpa.c
|
|
+++ b/hw/virtio/vhost-vdpa.c
|
|
@@ -1031,7 +1031,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;
|
|
}
|
|
|
|
@@ -1084,7 +1084,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;
|
|
}
|
|
|
|
--
|
|
2.27.0
|
|
|