diff mbox series

vdpa: declare SVQ support for VIRTIO_NET_F_HOST_USO

Message ID 20230322102952.819291-1-eperezma@redhat.com
State New
Headers show
Series vdpa: declare SVQ support for VIRTIO_NET_F_HOST_USO | expand

Commit Message

Eugenio Perez Martin March 22, 2023, 10:29 a.m. UTC
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 mbox series

Patch

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);