All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] vdpa: fix cannot get vring base when stopping a vhost-vdpa device with multiple queues
@ 2025-10-29 12:50 Wafer Xie
  2025-11-06  6:41 ` Jason Wang
  2025-11-06  8:04 ` Eugenio Perez Martin
  0 siblings, 2 replies; 6+ messages in thread
From: Wafer Xie @ 2025-10-29 12:50 UTC (permalink / raw)
  To: eperezma, mst, qemu-devel; +Cc: jasowang, angus.chen, wafer

When stopping a vhost-vdpa device, only the first queue pair is marked as suspended,
while the remaining queues are not updated to the suspended state.
As a result, when stopping a multi-queue vhost-vdpa device,
the following error message will be printed.

qemu-system-x86_64:vhost VQ 2 ring restore failed: -1: Operation not permitted (1)

qemu-system-x86_64:vhost VQ 3 ring restore failed: -1: Operation not permitted (1)

Fixes: b6662cb7 ("vdpa: add vhost_vdpa->suspended parameter")

Signed-off-by: Wafer Xie <wafer@jaguarmicro.com>
---
 hw/virtio/vhost-vdpa.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/hw/virtio/vhost-vdpa.c b/hw/virtio/vhost-vdpa.c
index 7061b6e1a3..2d5e6aca74 100644
--- a/hw/virtio/vhost-vdpa.c
+++ b/hw/virtio/vhost-vdpa.c
@@ -1481,7 +1481,7 @@ static int vhost_vdpa_get_vring_base(struct vhost_dev *dev,
         return 0;
     }
 
-    if (!v->suspended) {
+    if (!v->suspended && vhost_vdpa_first_dev(dev)) {
         /*
          * Cannot trust in value returned by device, let vhost recover used
          * idx from guest.
-- 
2.34.1



^ permalink raw reply related	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2026-02-03 16:23 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-29 12:50 [PATCH] vdpa: fix cannot get vring base when stopping a vhost-vdpa device with multiple queues Wafer Xie
2025-11-06  6:41 ` Jason Wang
2025-11-06  8:04 ` Eugenio Perez Martin
2026-02-03 13:40   ` Michael S. Tsirkin
2026-02-03 13:56     ` Eugenio Perez Martin
2026-02-03 16:22       ` Michael S. Tsirkin

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.