54 lines
2.0 KiB
Diff
54 lines
2.0 KiB
Diff
From 49c90114e00fb1cbbe25eeaee825981210c24f41 Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Eugenio=20P=C3=A9rez?= <eperezma@redhat.com>
|
|
Date: Tue, 6 Sep 2022 17:07:18 +0200
|
|
Subject: [PATCH] virtio-net: Update virtio-net curr_queue_pairs in vdpa
|
|
backends
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
It was returned as error before. Instead of it, simply update the
|
|
corresponding field so qemu can send it in the migration data.
|
|
|
|
Signed-off-by: Eugenio Pérez <eperezma@redhat.com>
|
|
Acked-by: Si-Wei Liu <si-wei.liu@oracle.com>
|
|
Signed-off-by: Jason Wang <jasowang@redhat.com>
|
|
Signed-off-by: fangyi <eric.fangyi@huawei.com>
|
|
---
|
|
hw/net/virtio-net.c | 17 ++++++-----------
|
|
1 file changed, 6 insertions(+), 11 deletions(-)
|
|
|
|
diff --git a/hw/net/virtio-net.c b/hw/net/virtio-net.c
|
|
index 999072921d..867a1e77dc 100644
|
|
--- a/hw/net/virtio-net.c
|
|
+++ b/hw/net/virtio-net.c
|
|
@@ -1431,19 +1431,14 @@ static int virtio_net_handle_mq(VirtIONet *n, uint8_t cmd,
|
|
return VIRTIO_NET_ERR;
|
|
}
|
|
|
|
- /* Avoid changing the number of queue_pairs for vdpa device in
|
|
- * userspace handler. A future fix is needed to handle the mq
|
|
- * change in userspace handler with vhost-vdpa. Let's disable
|
|
- * the mq handling from userspace for now and only allow get
|
|
- * done through the kernel. Ripples may be seen when falling
|
|
- * back to userspace, but without doing it qemu process would
|
|
- * crash on a recursive entry to virtio_net_set_status().
|
|
- */
|
|
+ n->curr_queue_pairs = queue_pairs;
|
|
if (nc->peer && nc->peer->info->type == NET_CLIENT_DRIVER_VHOST_VDPA) {
|
|
- return VIRTIO_NET_ERR;
|
|
+ /*
|
|
+ * Avoid updating the backend for a vdpa device: We're only interested
|
|
+ * in updating the device model queues.
|
|
+ */
|
|
+ return VIRTIO_NET_OK;
|
|
}
|
|
-
|
|
- n->curr_queue_pairs = queue_pairs;
|
|
/* stop the backend before changing the number of queue_pairs to avoid handling a
|
|
* disabled queue */
|
|
virtio_net_set_status(vdev, vdev->status);
|
|
--
|
|
2.27.0
|
|
|