* [PATCH] vdpa: declare SVQ support for VIRTIO_NET_F_HOST_USO
@ 2023-03-22 10:29 Eugenio Pérez
0 siblings, 0 replies; only message in thread
From: Eugenio Pérez @ 2023-03-22 10:29 UTC (permalink / raw)
To: qemu-devel
Cc: si-wei.liu, Michael S. Tsirkin, Gautam Dawar, Lei Yang,
Laurent Vivier, alvaro.karsz, Jason Wang
At the moment qemu block the migration as long as the vdpa device offers
features not supported by SVQ. VIRTIO_NET_F_HOST_USO is not even
offered to the guest, since qemu emulated devices does not support it,
and we know for sure it will require no changes on SVQ code when
supported. For that reason, lift the block on this feature.
In a future this blocker could be smarter, and ignore features that are
never offered to the guest either because is disabled in the cmdline
(like mq=off) or it is not even supported.
Tested-by: Alvaro Karsz <alvaro.karsz@solid-run.com>
Signed-off-by: Eugenio Pérez <eperezma@redhat.com>
---
net/vhost-vdpa.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/net/vhost-vdpa.c b/net/vhost-vdpa.c
index 99904a0da7..ff67babd23 100644
--- a/net/vhost-vdpa.c
+++ b/net/vhost-vdpa.c
@@ -103,6 +103,7 @@ static const uint64_t vdpa_svq_device_features =
BIT_ULL(VIRTIO_NET_F_CTRL_MAC_ADDR) |
/* VHOST_F_LOG_ALL is exposed by SVQ */
BIT_ULL(VHOST_F_LOG_ALL) |
+ BIT_ULL(VIRTIO_NET_F_HOST_USO) |
BIT_ULL(VIRTIO_NET_F_RSC_EXT) |
BIT_ULL(VIRTIO_NET_F_STANDBY);
--
2.31.1
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2023-03-22 10:30 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-03-22 10:29 [PATCH] vdpa: declare SVQ support for VIRTIO_NET_F_HOST_USO Eugenio Pérez
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).