* [PATCH v2 0/4] vhost-user-blk: fix compatibility with older qemu versions
@ 2026-03-11 8:47 Alexandr Moshkov
2026-03-11 8:47 ` [PATCH v2 1/4] vhost-user.rst: fix typo Alexandr Moshkov
` (5 more replies)
0 siblings, 6 replies; 12+ messages in thread
From: Alexandr Moshkov @ 2026-03-11 8:47 UTC (permalink / raw)
To: qemu-devel
Cc: virtio-fs, zhenwei pi, Hanna Reitz, yc-core@yandex-team.ru,
Gonglei (Arei), Raphael Norwitz, Milan Zamazal, Stefan Hajnoczi,
Jason Wang, Alex Bennée, qemu-block, Pierrick Bouvier,
Paolo Bonzini, Michael S. Tsirkin, Stefano Garzarella, Fam Zheng,
Kevin Wolf, Alexandr Moshkov
v1 -> v2:
- reorganize commits: make refactor commits first, then core semantic change
- add additional pre_save check for inflight migration possibility
---
This is a small continuation of my series about inflight migration for vhost-user-blk.
This series is designed to solve the problem of compatibility with older versions of qemu, where this feature has not yet been introduced (for example, if we want to downgrade versions due to some problems).
In the current version for vhost-user-blk, this feature is enabled using the parameter and further migration of the inflight region will depend on whether the vhost-user has accepted the new protocol feature or not. This creates an inconvenient dependency, because there is no way to disable this feature without reconnecting to the backend.
This series slightly changes the semantics of the introduced protocol feature VHOST_USER_PROTOCOL_F_GET_VRING_BASE_INFLIGHT. Enabling this feature adds a new parameter for GET_VRING_BASE message - skip_drain, which allows to control drain in-flight requests on the backend.
Thus, user can enable or disable inflight-migration param for vhost-user-blk to maintain compatibility with older versions of QEMU.
Alexandr Moshkov (4):
vhost-user.rst: fix typo
vhost-user: add skip_drain param to do_vhost_virtqueue_stop
vhost-user-blk: move inflight_needed higher
vhost-user: add skip_drain param to GET_VRING_BASE
backends/cryptodev-vhost.c | 2 +-
backends/vhost-user.c | 2 +-
docs/interop/vhost-user.rst | 8 +++-----
hw/block/vhost-user-blk.c | 32 +++++++++++++++++++++++++-------
hw/net/vhost_net.c | 9 +++++----
hw/scsi/vhost-scsi-common.c | 2 +-
hw/virtio/vdpa-dev.c | 2 +-
hw/virtio/vhost-user-base.c | 2 +-
hw/virtio/vhost-user-fs.c | 2 +-
hw/virtio/vhost-user-scmi.c | 2 +-
hw/virtio/vhost-user.c | 3 +--
hw/virtio/vhost-vsock-common.c | 2 +-
hw/virtio/vhost.c | 24 +++++++++++++++---------
include/hw/virtio/vhost-user.h | 1 -
include/hw/virtio/vhost.h | 7 +++++--
15 files changed, 62 insertions(+), 38 deletions(-)
--
2.34.1
^ permalink raw reply [flat|nested] 12+ messages in thread* [PATCH v2 1/4] vhost-user.rst: fix typo 2026-03-11 8:47 [PATCH v2 0/4] vhost-user-blk: fix compatibility with older qemu versions Alexandr Moshkov @ 2026-03-11 8:47 ` Alexandr Moshkov 2026-03-24 15:09 ` Vladimir Sementsov-Ogievskiy 2026-03-11 8:47 ` [PATCH v2 2/4] vhost-user: add skip_drain param to do_vhost_virtqueue_stop Alexandr Moshkov ` (4 subsequent siblings) 5 siblings, 1 reply; 12+ messages in thread From: Alexandr Moshkov @ 2026-03-11 8:47 UTC (permalink / raw) To: qemu-devel Cc: virtio-fs, zhenwei pi, Hanna Reitz, yc-core@yandex-team.ru, Gonglei (Arei), Raphael Norwitz, Milan Zamazal, Stefan Hajnoczi, Jason Wang, Alex Bennée, qemu-block, Pierrick Bouvier, Paolo Bonzini, Michael S. Tsirkin, Stefano Garzarella, Fam Zheng, Kevin Wolf, Alexandr Moshkov Signed-off-by: Alexandr Moshkov <dtalexundeer@yandex-team.ru> --- docs/interop/vhost-user.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/interop/vhost-user.rst b/docs/interop/vhost-user.rst index 137c9f3669..bfa75ff9a3 100644 --- a/docs/interop/vhost-user.rst +++ b/docs/interop/vhost-user.rst @@ -1268,7 +1268,7 @@ Front-end message types How to suspend an in-flight request depends on the implementation of the back-end but it typically can be done by aborting or cancelling the underlying I/O request. The ``VHOST_USER_PROTOCOL_F_GET_VRING_BASE_INFLIGHT`` - protocol feature must only be neogotiated if + protocol feature must only be negotiated if ``VHOST_USER_PROTOCOL_F_INFLIGHT_SHMFD`` is also negotiated. ``VHOST_USER_SET_VRING_KICK`` -- 2.34.1 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH v2 1/4] vhost-user.rst: fix typo 2026-03-11 8:47 ` [PATCH v2 1/4] vhost-user.rst: fix typo Alexandr Moshkov @ 2026-03-24 15:09 ` Vladimir Sementsov-Ogievskiy 0 siblings, 0 replies; 12+ messages in thread From: Vladimir Sementsov-Ogievskiy @ 2026-03-24 15:09 UTC (permalink / raw) To: Alexandr Moshkov, qemu-devel Cc: virtio-fs, zhenwei pi, Hanna Reitz, yc-core@yandex-team.ru, Gonglei (Arei), Raphael Norwitz, Milan Zamazal, Stefan Hajnoczi, Jason Wang, Alex Bennée, qemu-block, Pierrick Bouvier, Paolo Bonzini, Michael S. Tsirkin, Stefano Garzarella, Fam Zheng, Kevin Wolf On 11.03.26 11:47, Alexandr Moshkov wrote: > Signed-off-by: Alexandr Moshkov<dtalexundeer@yandex-team.ru> Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru> (and you forget r-b by Stefan) -- Best regards, Vladimir ^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH v2 2/4] vhost-user: add skip_drain param to do_vhost_virtqueue_stop 2026-03-11 8:47 [PATCH v2 0/4] vhost-user-blk: fix compatibility with older qemu versions Alexandr Moshkov 2026-03-11 8:47 ` [PATCH v2 1/4] vhost-user.rst: fix typo Alexandr Moshkov @ 2026-03-11 8:47 ` Alexandr Moshkov 2026-03-24 15:09 ` Vladimir Sementsov-Ogievskiy 2026-03-11 8:47 ` [PATCH v2 3/4] vhost-user-blk: move inflight_needed higher Alexandr Moshkov ` (3 subsequent siblings) 5 siblings, 1 reply; 12+ messages in thread From: Alexandr Moshkov @ 2026-03-11 8:47 UTC (permalink / raw) To: qemu-devel Cc: virtio-fs, zhenwei pi, Hanna Reitz, yc-core@yandex-team.ru, Gonglei (Arei), Raphael Norwitz, Milan Zamazal, Stefan Hajnoczi, Jason Wang, Alex Bennée, qemu-block, Pierrick Bouvier, Paolo Bonzini, Michael S. Tsirkin, Stefano Garzarella, Fam Zheng, Kevin Wolf, Alexandr Moshkov Will be used in future commit for adding this param to GET_VRING_BASE Signed-off-by: Alexandr Moshkov <dtalexundeer@yandex-team.ru> --- backends/cryptodev-vhost.c | 2 +- backends/vhost-user.c | 2 +- hw/block/vhost-user-blk.c | 2 +- hw/net/vhost_net.c | 9 +++++---- hw/scsi/vhost-scsi-common.c | 2 +- hw/virtio/vdpa-dev.c | 2 +- hw/virtio/vhost-user-base.c | 2 +- hw/virtio/vhost-user-fs.c | 2 +- hw/virtio/vhost-user-scmi.c | 2 +- hw/virtio/vhost-vsock-common.c | 2 +- hw/virtio/vhost.c | 26 +++++++++++++++++--------- include/hw/virtio/vhost.h | 7 +++++-- 12 files changed, 36 insertions(+), 24 deletions(-) diff --git a/backends/cryptodev-vhost.c b/backends/cryptodev-vhost.c index 943680a23a..7a457380d0 100644 --- a/backends/cryptodev-vhost.c +++ b/backends/cryptodev-vhost.c @@ -110,7 +110,7 @@ static void cryptodev_vhost_stop_one(CryptoDevBackendVhost *crypto, VirtIODevice *dev) { - vhost_dev_stop(&crypto->dev, dev, false); + vhost_dev_stop(&crypto->dev, dev, false, false); vhost_dev_disable_notifiers(&crypto->dev, dev); } diff --git a/backends/vhost-user.c b/backends/vhost-user.c index 42845329e7..10be713ebd 100644 --- a/backends/vhost-user.c +++ b/backends/vhost-user.c @@ -108,7 +108,7 @@ vhost_user_backend_stop(VhostUserBackend *b) return 0; } - ret = vhost_dev_stop(&b->dev, b->vdev, true); + ret = vhost_dev_stop(&b->dev, b->vdev, true, false); if (k->set_guest_notifiers && k->set_guest_notifiers(qbus->parent, b->dev.nvqs, false) < 0) { diff --git a/hw/block/vhost-user-blk.c b/hw/block/vhost-user-blk.c index c151e83677..7f2067d6cf 100644 --- a/hw/block/vhost-user-blk.c +++ b/hw/block/vhost-user-blk.c @@ -225,7 +225,7 @@ static int vhost_user_blk_stop(VirtIODevice *vdev) qemu_force_shutdown_requested(); ret = force_stop ? vhost_dev_force_stop(&s->dev, vdev, true) : - vhost_dev_stop(&s->dev, vdev, true); + vhost_dev_stop(&s->dev, vdev, true, false); if (k->set_guest_notifiers(qbus->parent, s->dev.nvqs, false) < 0) { error_report("vhost guest notifier cleanup failed: %d", ret); diff --git a/hw/net/vhost_net.c b/hw/net/vhost_net.c index a8ee18a912..604f19e03a 100644 --- a/hw/net/vhost_net.c +++ b/hw/net/vhost_net.c @@ -384,7 +384,7 @@ fail: if (net->nc->info->poll) { net->nc->info->poll(net->nc, true); } - vhost_dev_stop(&net->dev, dev, false); + vhost_dev_stop(&net->dev, dev, false, false); fail_start: return r; } @@ -403,7 +403,7 @@ static void vhost_net_stop_one(struct vhost_net *net, if (net->nc->info->poll) { net->nc->info->poll(net->nc, true); } - vhost_dev_stop(&net->dev, dev, false); + vhost_dev_stop(&net->dev, dev, false, false); if (net->nc->info->stop) { net->nc->info->stop(net->nc); } @@ -641,7 +641,8 @@ void vhost_net_virtqueue_reset(VirtIODevice *vdev, NetClientState *nc, vhost_virtqueue_stop(&net->dev, vdev, net->dev.vqs + idx, - net->dev.vq_index + idx); + net->dev.vq_index + idx, + false); } int vhost_net_virtqueue_restart(VirtIODevice *vdev, NetClientState *nc, @@ -691,7 +692,7 @@ err_start: assert(ret >= 0); } - vhost_dev_stop(&net->dev, vdev, false); + vhost_dev_stop(&net->dev, vdev, false, false); return r; } diff --git a/hw/scsi/vhost-scsi-common.c b/hw/scsi/vhost-scsi-common.c index 0bb4305de6..41c1e45aac 100644 --- a/hw/scsi/vhost-scsi-common.c +++ b/hw/scsi/vhost-scsi-common.c @@ -108,7 +108,7 @@ int vhost_scsi_common_stop(VHostSCSICommon *vsc) VirtioBusClass *k = VIRTIO_BUS_GET_CLASS(qbus); int ret = 0; - ret = vhost_dev_stop(&vsc->dev, vdev, true); + ret = vhost_dev_stop(&vsc->dev, vdev, true, false); if (k->set_guest_notifiers) { int r = k->set_guest_notifiers(qbus->parent, vsc->dev.nvqs, false); diff --git a/hw/virtio/vdpa-dev.c b/hw/virtio/vdpa-dev.c index 4532d63653..7279f18442 100644 --- a/hw/virtio/vdpa-dev.c +++ b/hw/virtio/vdpa-dev.c @@ -301,7 +301,7 @@ static void vhost_vdpa_device_stop(VirtIODevice *vdev) return; } - vhost_dev_stop(&s->dev, vdev, false); + vhost_dev_stop(&s->dev, vdev, false, false); ret = k->set_guest_notifiers(qbus->parent, s->dev.nvqs, false); if (ret < 0) { diff --git a/hw/virtio/vhost-user-base.c b/hw/virtio/vhost-user-base.c index 01ab9ca56b..9d3875a04b 100644 --- a/hw/virtio/vhost-user-base.c +++ b/hw/virtio/vhost-user-base.c @@ -77,7 +77,7 @@ static int vub_stop(VirtIODevice *vdev) return 0; } - ret = vhost_dev_stop(&vub->vhost_dev, vdev, true); + ret = vhost_dev_stop(&vub->vhost_dev, vdev, true, false); if (k->set_guest_notifiers(qbus->parent, vub->vhost_dev.nvqs, false) < 0) { error_report("vhost guest notifier cleanup failed: %d", ret); diff --git a/hw/virtio/vhost-user-fs.c b/hw/virtio/vhost-user-fs.c index ad6fcacf06..2f6f6df67f 100644 --- a/hw/virtio/vhost-user-fs.c +++ b/hw/virtio/vhost-user-fs.c @@ -111,7 +111,7 @@ static int vuf_stop(VirtIODevice *vdev) return 0; } - ret = vhost_dev_stop(&fs->vhost_dev, vdev, true); + ret = vhost_dev_stop(&fs->vhost_dev, vdev, true, false); if (k->set_guest_notifiers(qbus->parent, fs->vhost_dev.nvqs, false) < 0) { error_report("vhost guest notifier cleanup failed: %d", ret); diff --git a/hw/virtio/vhost-user-scmi.c b/hw/virtio/vhost-user-scmi.c index f9264c4374..dbde342a6e 100644 --- a/hw/virtio/vhost-user-scmi.c +++ b/hw/virtio/vhost-user-scmi.c @@ -101,7 +101,7 @@ static int vu_scmi_stop(VirtIODevice *vdev) return 0; } - ret = vhost_dev_stop(vhost_dev, vdev, true); + ret = vhost_dev_stop(vhost_dev, vdev, true, false); if (k->set_guest_notifiers(qbus->parent, vhost_dev->nvqs, false) < 0) { error_report("vhost guest notifier cleanup failed: %d", ret); diff --git a/hw/virtio/vhost-vsock-common.c b/hw/virtio/vhost-vsock-common.c index b33def900a..3d086ed825 100644 --- a/hw/virtio/vhost-vsock-common.c +++ b/hw/virtio/vhost-vsock-common.c @@ -106,7 +106,7 @@ int vhost_vsock_common_stop(VirtIODevice *vdev) return 0; } - ret = vhost_dev_stop(&vvc->vhost_dev, vdev, true); + ret = vhost_dev_stop(&vvc->vhost_dev, vdev, true, false); if (k->set_guest_notifiers(qbus->parent, vvc->vhost_dev.nvqs, false) < 0) { error_report("vhost guest notifier cleanup failed: %d", ret); diff --git a/hw/virtio/vhost.c b/hw/virtio/vhost.c index b4cdb7762f..4e196fc773 100644 --- a/hw/virtio/vhost.c +++ b/hw/virtio/vhost.c @@ -1387,8 +1387,12 @@ fail_alloc_desc: static int do_vhost_virtqueue_stop(struct vhost_dev *dev, struct VirtIODevice *vdev, struct vhost_virtqueue *vq, - unsigned idx, bool force) + unsigned idx, bool force, + bool skip_drain) { + /* TODO: support skip drain */ + assert(!skip_drain); + int vhost_vq_index = dev->vhost_ops->vhost_get_vq_index(dev, idx); struct vhost_vring_state state = { .index = vhost_vq_index, @@ -1439,9 +1443,10 @@ static int do_vhost_virtqueue_stop(struct vhost_dev *dev, int vhost_virtqueue_stop(struct vhost_dev *dev, struct VirtIODevice *vdev, struct vhost_virtqueue *vq, - unsigned idx) + unsigned idx, + bool skip_drain) { - return do_vhost_virtqueue_stop(dev, vdev, vq, idx, false); + return do_vhost_virtqueue_stop(dev, vdev, vq, idx, false, skip_drain); } static int vhost_virtqueue_set_busyloop_timeout(struct vhost_dev *dev, @@ -2220,7 +2225,8 @@ fail_vq: vhost_virtqueue_stop(hdev, vdev, hdev->vqs + i, - hdev->vq_index + i); + hdev->vq_index + i, + false); } fail_mem: @@ -2235,7 +2241,7 @@ fail_features: /* Host notifiers must be enabled at this point. */ static int do_vhost_dev_stop(struct vhost_dev *hdev, VirtIODevice *vdev, - bool vrings, bool force) + bool vrings, bool force, bool skip_drain) { int i; int rc = 0; @@ -2262,7 +2268,8 @@ static int do_vhost_dev_stop(struct vhost_dev *hdev, VirtIODevice *vdev, vdev, hdev->vqs + i, hdev->vq_index + i, - force); + force, + skip_drain); } if (hdev->vhost_ops->vhost_reset_status) { hdev->vhost_ops->vhost_reset_status(hdev); @@ -2282,15 +2289,16 @@ static int do_vhost_dev_stop(struct vhost_dev *hdev, VirtIODevice *vdev, return rc; } -int vhost_dev_stop(struct vhost_dev *hdev, VirtIODevice *vdev, bool vrings) +int vhost_dev_stop(struct vhost_dev *hdev, VirtIODevice *vdev, bool vrings, + bool skip_drain) { - return do_vhost_dev_stop(hdev, vdev, vrings, false); + return do_vhost_dev_stop(hdev, vdev, vrings, false, skip_drain); } int vhost_dev_force_stop(struct vhost_dev *hdev, VirtIODevice *vdev, bool vrings) { - return do_vhost_dev_stop(hdev, vdev, vrings, true); + return do_vhost_dev_stop(hdev, vdev, vrings, true, false); } int vhost_net_set_backend(struct vhost_dev *hdev, diff --git a/include/hw/virtio/vhost.h b/include/hw/virtio/vhost.h index 89817bd848..3881f6784b 100644 --- a/include/hw/virtio/vhost.h +++ b/include/hw/virtio/vhost.h @@ -233,6 +233,7 @@ int vhost_dev_start(struct vhost_dev *hdev, VirtIODevice *vdev, bool vrings); * @hdev: common vhost_dev structure * @vdev: the VirtIODevice structure * @vrings: true to have vrings disabled in this call + * @skip_drain: true to notice back-end to skip draining all in-flight requests * * Stop the vhost device. After the device is stopped the notifiers * can be disabled (@vhost_dev_disable_notifiers) and the device can @@ -240,7 +241,8 @@ int vhost_dev_start(struct vhost_dev *hdev, VirtIODevice *vdev, bool vrings); * * Return: 0 on success, != 0 on error when stopping dev. */ -int vhost_dev_stop(struct vhost_dev *hdev, VirtIODevice *vdev, bool vrings); +int vhost_dev_stop(struct vhost_dev *hdev, VirtIODevice *vdev, bool vrings, + bool skip_drain); /** * vhost_dev_force_stop() - force stop the vhost device @@ -398,7 +400,8 @@ int vhost_device_iotlb_miss(struct vhost_dev *dev, uint64_t iova, int write); int vhost_virtqueue_start(struct vhost_dev *dev, struct VirtIODevice *vdev, struct vhost_virtqueue *vq, unsigned idx); int vhost_virtqueue_stop(struct vhost_dev *dev, struct VirtIODevice *vdev, - struct vhost_virtqueue *vq, unsigned idx); + struct vhost_virtqueue *vq, unsigned idx, + bool skip_drain); void vhost_dev_reset_inflight(struct vhost_inflight *inflight); void vhost_dev_free_inflight(struct vhost_inflight *inflight); -- 2.34.1 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH v2 2/4] vhost-user: add skip_drain param to do_vhost_virtqueue_stop 2026-03-11 8:47 ` [PATCH v2 2/4] vhost-user: add skip_drain param to do_vhost_virtqueue_stop Alexandr Moshkov @ 2026-03-24 15:09 ` Vladimir Sementsov-Ogievskiy 0 siblings, 0 replies; 12+ messages in thread From: Vladimir Sementsov-Ogievskiy @ 2026-03-24 15:09 UTC (permalink / raw) To: Alexandr Moshkov, qemu-devel Cc: virtio-fs, zhenwei pi, Hanna Reitz, yc-core@yandex-team.ru, Gonglei (Arei), Raphael Norwitz, Milan Zamazal, Stefan Hajnoczi, Jason Wang, Alex Bennée, qemu-block, Pierrick Bouvier, Paolo Bonzini, Michael S. Tsirkin, Stefano Garzarella, Fam Zheng, Kevin Wolf On 11.03.26 11:47, Alexandr Moshkov wrote: > Will be used in future commit for adding this param to GET_VRING_BASE > > Signed-off-by: Alexandr Moshkov<dtalexundeer@yandex-team.ru> Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru> -- Best regards, Vladimir ^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH v2 3/4] vhost-user-blk: move inflight_needed higher 2026-03-11 8:47 [PATCH v2 0/4] vhost-user-blk: fix compatibility with older qemu versions Alexandr Moshkov 2026-03-11 8:47 ` [PATCH v2 1/4] vhost-user.rst: fix typo Alexandr Moshkov 2026-03-11 8:47 ` [PATCH v2 2/4] vhost-user: add skip_drain param to do_vhost_virtqueue_stop Alexandr Moshkov @ 2026-03-11 8:47 ` Alexandr Moshkov 2026-03-24 15:10 ` Vladimir Sementsov-Ogievskiy 2026-03-11 8:47 ` [PATCH v2 4/4] vhost-user: add skip_drain param to GET_VRING_BASE Alexandr Moshkov ` (2 subsequent siblings) 5 siblings, 1 reply; 12+ messages in thread From: Alexandr Moshkov @ 2026-03-11 8:47 UTC (permalink / raw) To: qemu-devel Cc: virtio-fs, zhenwei pi, Hanna Reitz, yc-core@yandex-team.ru, Gonglei (Arei), Raphael Norwitz, Milan Zamazal, Stefan Hajnoczi, Jason Wang, Alex Bennée, qemu-block, Pierrick Bouvier, Paolo Bonzini, Michael S. Tsirkin, Stefano Garzarella, Fam Zheng, Kevin Wolf, Alexandr Moshkov Will be used in future commits for adding skip_drain param Signed-off-by: Alexandr Moshkov <dtalexundeer@yandex-team.ru> --- hw/block/vhost-user-blk.c | 21 +++++++++++---------- 1 file changed, 11 insertions(+), 10 deletions(-) diff --git a/hw/block/vhost-user-blk.c b/hw/block/vhost-user-blk.c index 7f2067d6cf..1dc49c104e 100644 --- a/hw/block/vhost-user-blk.c +++ b/hw/block/vhost-user-blk.c @@ -130,6 +130,17 @@ const VhostDevConfigOps blk_ops = { .vhost_dev_config_notifier = vhost_user_blk_handle_config_change, }; +static bool vhost_user_blk_inflight_needed(void *opaque) +{ + struct VHostUserBlk *s = opaque; + + bool inflight_migration = virtio_has_feature(s->dev.protocol_features, + VHOST_USER_PROTOCOL_F_GET_VRING_BASE_INFLIGHT); + + return inflight_migration; +} + + static int vhost_user_blk_start(VirtIODevice *vdev, Error **errp) { VHostUserBlk *s = VHOST_USER_BLK(vdev); @@ -569,16 +580,6 @@ static struct vhost_dev *vhost_user_blk_get_vhost(VirtIODevice *vdev) return &s->dev; } -static bool vhost_user_blk_inflight_needed(void *opaque) -{ - struct VHostUserBlk *s = opaque; - - bool inflight_migration = virtio_has_feature(s->dev.protocol_features, - VHOST_USER_PROTOCOL_F_GET_VRING_BASE_INFLIGHT); - - return inflight_migration; -} - static const VMStateDescription vmstate_vhost_user_blk_inflight = { .name = "vhost-user-blk/inflight", .version_id = 1, -- 2.34.1 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH v2 3/4] vhost-user-blk: move inflight_needed higher 2026-03-11 8:47 ` [PATCH v2 3/4] vhost-user-blk: move inflight_needed higher Alexandr Moshkov @ 2026-03-24 15:10 ` Vladimir Sementsov-Ogievskiy 0 siblings, 0 replies; 12+ messages in thread From: Vladimir Sementsov-Ogievskiy @ 2026-03-24 15:10 UTC (permalink / raw) To: Alexandr Moshkov, qemu-devel Cc: virtio-fs, zhenwei pi, Hanna Reitz, yc-core@yandex-team.ru, Gonglei (Arei), Raphael Norwitz, Milan Zamazal, Stefan Hajnoczi, Jason Wang, Alex Bennée, qemu-block, Pierrick Bouvier, Paolo Bonzini, Michael S. Tsirkin, Stefano Garzarella, Fam Zheng, Kevin Wolf On 11.03.26 11:47, Alexandr Moshkov wrote: > Will be used in future commits for adding skip_drain param > > Signed-off-by: Alexandr Moshkov<dtalexundeer@yandex-team.ru> Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru> -- Best regards, Vladimir ^ permalink raw reply [flat|nested] 12+ messages in thread
* [PATCH v2 4/4] vhost-user: add skip_drain param to GET_VRING_BASE 2026-03-11 8:47 [PATCH v2 0/4] vhost-user-blk: fix compatibility with older qemu versions Alexandr Moshkov ` (2 preceding siblings ...) 2026-03-11 8:47 ` [PATCH v2 3/4] vhost-user-blk: move inflight_needed higher Alexandr Moshkov @ 2026-03-11 8:47 ` Alexandr Moshkov 2026-03-24 15:25 ` Vladimir Sementsov-Ogievskiy 2026-03-26 15:52 ` Stefan Hajnoczi 2026-03-23 7:41 ` [PATCH v2 0/4] vhost-user-blk: fix compatibility with older qemu versions Alexandr Moshkov 2026-03-26 15:55 ` Stefan Hajnoczi 5 siblings, 2 replies; 12+ messages in thread From: Alexandr Moshkov @ 2026-03-11 8:47 UTC (permalink / raw) To: qemu-devel Cc: virtio-fs, zhenwei pi, Hanna Reitz, yc-core@yandex-team.ru, Gonglei (Arei), Raphael Norwitz, Milan Zamazal, Stefan Hajnoczi, Jason Wang, Alex Bennée, qemu-block, Pierrick Bouvier, Paolo Bonzini, Michael S. Tsirkin, Stefano Garzarella, Fam Zheng, Kevin Wolf, Alexandr Moshkov In case of migration of QEMU from the new version (where the inllight-migration parameter is present), to the old one (where it is absent) there is no way to disable this feature on the backend during runtime. This commit slightly changes the semantics of the protocol feature VHOST_USER_PROTOCOL_F_GET_VRING_BASE_INFLIGHT. Enabling this feature adds a new parameter for GET_VRING_BASE, which allows to control the drain in-flight requests on the backend. Thus, QEMU will be able to turn this feature on GET_VRING_BASE off and on anytime. In vhost-user-blk use inflight_migration param to enable skip_drain to suspend in-flight I/O requests, and then migrate them throught inflight subsection. Also now QEMU will always try to setup VHOST_USER_PROTOCOL_F_GET_VRING_BASE_INFLIGHT protocol featrue with backend. This will allow to use skip_drain parameter on GET_VRING_BASE message. Signed-off-by: Alexandr Moshkov <dtalexundeer@yandex-team.ru> --- docs/interop/vhost-user.rst | 6 ++---- hw/block/vhost-user-blk.c | 29 +++++++++++++++++++++++------ hw/virtio/vhost-user.c | 3 +-- hw/virtio/vhost.c | 4 +--- include/hw/virtio/vhost-user.h | 1 - 5 files changed, 27 insertions(+), 16 deletions(-) diff --git a/docs/interop/vhost-user.rst b/docs/interop/vhost-user.rst index bfa75ff9a3..63efc87264 100644 --- a/docs/interop/vhost-user.rst +++ b/docs/interop/vhost-user.rst @@ -1255,14 +1255,12 @@ Front-end message types *suspended*, see :ref:`Suspended device state <suspended_device_state>`. - The request payload's *num* field is currently reserved and must be - set to 0. - By default, the back-end must complete all inflight I/O requests for the specified vring before stopping it. If the ``VHOST_USER_PROTOCOL_F_GET_VRING_BASE_INFLIGHT`` protocol - feature has been negotiated, the back-end may suspend in-flight I/O + feature has been negotiated, using request payload's *num* field, + when *num* is set to 1, QEMU can tell the back-end to suspend in-flight I/O requests and record them as described in :ref:`Inflight I/O tracking <inflight_io_tracking>` instead of completing them before stopping the vring. How to suspend an in-flight request depends on the implementation of the back-end diff --git a/hw/block/vhost-user-blk.c b/hw/block/vhost-user-blk.c index 1dc49c104e..8cc80eb0c3 100644 --- a/hw/block/vhost-user-blk.c +++ b/hw/block/vhost-user-blk.c @@ -134,10 +134,7 @@ static bool vhost_user_blk_inflight_needed(void *opaque) { struct VHostUserBlk *s = opaque; - bool inflight_migration = virtio_has_feature(s->dev.protocol_features, - VHOST_USER_PROTOCOL_F_GET_VRING_BASE_INFLIGHT); - - return inflight_migration; + return s->inflight_migration; } @@ -232,11 +229,14 @@ static int vhost_user_blk_stop(VirtIODevice *vdev) return 0; } + bool skip_drain = vhost_user_blk_inflight_needed(s) && + runstate_check(RUN_STATE_FINISH_MIGRATE); + force_stop = s->skip_get_vring_base_on_force_shutdown && qemu_force_shutdown_requested(); ret = force_stop ? vhost_dev_force_stop(&s->dev, vdev, true) : - vhost_dev_stop(&s->dev, vdev, true, false); + vhost_dev_stop(&s->dev, vdev, true, skip_drain); if (k->set_guest_notifiers(qbus->parent, s->dev.nvqs, false) < 0) { error_report("vhost guest notifier cleanup failed: %d", ret); @@ -364,7 +364,6 @@ static int vhost_user_blk_connect(DeviceState *dev, Error **errp) vhost_dev_set_config_notifier(&s->dev, &blk_ops); s->vhost_user.supports_config = true; - s->vhost_user.supports_inflight_migration = s->inflight_migration; ret = vhost_dev_init(&s->dev, &s->vhost_user, VHOST_BACKEND_TYPE_USER, 0, errp); if (ret < 0) { @@ -580,10 +579,28 @@ static struct vhost_dev *vhost_user_blk_get_vhost(VirtIODevice *vdev) return &s->dev; } +static bool vhost_user_blk_pre_save(void *opaqueue, Error **errp) +{ + VHostUserBlk *s = VHOST_USER_BLK(vdev); + + bool inflight_migration_enabled = vhost_user_has_protocol_feature(&s->dev, + VHOST_USER_PROTOCOL_F_GET_VRING_BASE_INFLIGHT); + if (vhost_user_blk_inflight_needed(s) && !inflight_migration_enabled) { + error_setg(errp, "can't migrate vhost-user-blk device: " + "backend doesn't support " + "VHOST_USER_PROTOCOL_F_GET_VRING_BASE_INFLIGHT " + "protocol feature"); + return false; + } + + return true; +} + static const VMStateDescription vmstate_vhost_user_blk_inflight = { .name = "vhost-user-blk/inflight", .version_id = 1, .needed = vhost_user_blk_inflight_needed, + .pre_save_errp = vhost_user_blk_pre_save, .fields = (const VMStateField[]) { VMSTATE_VHOST_INFLIGHT_REGION(inflight, VHostUserBlk), VMSTATE_END_OF_LIST() diff --git a/hw/virtio/vhost-user.c b/hw/virtio/vhost-user.c index bb8f8eab77..ed95ec7523 100644 --- a/hw/virtio/vhost-user.c +++ b/hw/virtio/vhost-user.c @@ -2225,8 +2225,7 @@ static int vhost_user_backend_init(struct vhost_dev *dev, void *opaque, } } - if (!u->user->supports_inflight_migration || - !virtio_has_feature(protocol_features, + if (!virtio_has_feature(protocol_features, VHOST_USER_PROTOCOL_F_INFLIGHT_SHMFD)) { protocol_features &= ~(1ULL << VHOST_USER_PROTOCOL_F_GET_VRING_BASE_INFLIGHT); diff --git a/hw/virtio/vhost.c b/hw/virtio/vhost.c index 4e196fc773..c04bb53159 100644 --- a/hw/virtio/vhost.c +++ b/hw/virtio/vhost.c @@ -1390,12 +1390,10 @@ static int do_vhost_virtqueue_stop(struct vhost_dev *dev, unsigned idx, bool force, bool skip_drain) { - /* TODO: support skip drain */ - assert(!skip_drain); - int vhost_vq_index = dev->vhost_ops->vhost_get_vq_index(dev, idx); struct vhost_vring_state state = { .index = vhost_vq_index, + .num = skip_drain, }; int r = 0; diff --git a/include/hw/virtio/vhost-user.h b/include/hw/virtio/vhost-user.h index 53fe996686..c95bad5ddc 100644 --- a/include/hw/virtio/vhost-user.h +++ b/include/hw/virtio/vhost-user.h @@ -69,7 +69,6 @@ typedef struct VhostUserState { GPtrArray *notifiers; int memory_slots; bool supports_config; - bool supports_inflight_migration; } VhostUserState; /** -- 2.34.1 ^ permalink raw reply related [flat|nested] 12+ messages in thread
* Re: [PATCH v2 4/4] vhost-user: add skip_drain param to GET_VRING_BASE 2026-03-11 8:47 ` [PATCH v2 4/4] vhost-user: add skip_drain param to GET_VRING_BASE Alexandr Moshkov @ 2026-03-24 15:25 ` Vladimir Sementsov-Ogievskiy 2026-03-26 15:52 ` Stefan Hajnoczi 1 sibling, 0 replies; 12+ messages in thread From: Vladimir Sementsov-Ogievskiy @ 2026-03-24 15:25 UTC (permalink / raw) To: Alexandr Moshkov, qemu-devel Cc: virtio-fs, zhenwei pi, Hanna Reitz, yc-core@yandex-team.ru, Gonglei (Arei), Raphael Norwitz, Milan Zamazal, Stefan Hajnoczi, Jason Wang, Alex Bennée, qemu-block, Pierrick Bouvier, Paolo Bonzini, Michael S. Tsirkin, Stefano Garzarella, Fam Zheng, Kevin Wolf On 11.03.26 11:47, Alexandr Moshkov wrote: > In case of migration of QEMU from the new version (where the > inllight-migration parameter is present), to the old one (where it is > absent) there is no way to disable this feature on the backend during > runtime. > > This commit slightly changes the semantics of the protocol feature > VHOST_USER_PROTOCOL_F_GET_VRING_BASE_INFLIGHT. Enabling this feature > adds a new parameter for GET_VRING_BASE, which allows to control the > drain in-flight requests on the backend. > Thus, QEMU will be able to turn this feature on GET_VRING_BASE off and > on anytime. > > In vhost-user-blk use inflight_migration param to enable skip_drain to > suspend in-flight I/O requests, and then migrate them throught inflight > subsection. > > Also now QEMU will always try to setup > VHOST_USER_PROTOCOL_F_GET_VRING_BASE_INFLIGHT protocol featrue with > backend. This will allow to use skip_drain parameter on GET_VRING_BASE > message. > > Signed-off-by: Alexandr Moshkov<dtalexundeer@yandex-team.ru> Reviewed-by: Vladimir Sementsov-Ogievskiy <vsementsov@yandex-team.ru> Is it too late for 11.0, to fix protocol disadvantage we've added? Or could it be fixed in 11.1? -- Best regards, Vladimir ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v2 4/4] vhost-user: add skip_drain param to GET_VRING_BASE 2026-03-11 8:47 ` [PATCH v2 4/4] vhost-user: add skip_drain param to GET_VRING_BASE Alexandr Moshkov 2026-03-24 15:25 ` Vladimir Sementsov-Ogievskiy @ 2026-03-26 15:52 ` Stefan Hajnoczi 1 sibling, 0 replies; 12+ messages in thread From: Stefan Hajnoczi @ 2026-03-26 15:52 UTC (permalink / raw) To: Alexandr Moshkov Cc: qemu-devel, virtio-fs, zhenwei pi, Hanna Reitz, yc-core@yandex-team.ru, Gonglei (Arei), Raphael Norwitz, Milan Zamazal, Jason Wang, Alex Bennée, qemu-block, Pierrick Bouvier, Paolo Bonzini, Michael S. Tsirkin, Stefano Garzarella, Fam Zheng, Kevin Wolf [-- Attachment #1: Type: text/plain, Size: 7530 bytes --] On Wed, Mar 11, 2026 at 01:47:28PM +0500, Alexandr Moshkov wrote: > In case of migration of QEMU from the new version (where the > inllight-migration parameter is present), to the old one (where it is > absent) there is no way to disable this feature on the backend during > runtime. > > This commit slightly changes the semantics of the protocol feature > VHOST_USER_PROTOCOL_F_GET_VRING_BASE_INFLIGHT. Enabling this feature > adds a new parameter for GET_VRING_BASE, which allows to control the > drain in-flight requests on the backend. > Thus, QEMU will be able to turn this feature on GET_VRING_BASE off and > on anytime. > > In vhost-user-blk use inflight_migration param to enable skip_drain to > suspend in-flight I/O requests, and then migrate them throught inflight > subsection. > > Also now QEMU will always try to setup > VHOST_USER_PROTOCOL_F_GET_VRING_BASE_INFLIGHT protocol featrue with > backend. This will allow to use skip_drain parameter on GET_VRING_BASE > message. > > Signed-off-by: Alexandr Moshkov <dtalexundeer@yandex-team.ru> > --- > docs/interop/vhost-user.rst | 6 ++---- > hw/block/vhost-user-blk.c | 29 +++++++++++++++++++++++------ > hw/virtio/vhost-user.c | 3 +-- > hw/virtio/vhost.c | 4 +--- > include/hw/virtio/vhost-user.h | 1 - > 5 files changed, 27 insertions(+), 16 deletions(-) > > diff --git a/docs/interop/vhost-user.rst b/docs/interop/vhost-user.rst > index bfa75ff9a3..63efc87264 100644 > --- a/docs/interop/vhost-user.rst > +++ b/docs/interop/vhost-user.rst > @@ -1255,14 +1255,12 @@ Front-end message types > *suspended*, see :ref:`Suspended device state > <suspended_device_state>`. > > - The request payload's *num* field is currently reserved and must be > - set to 0. > - > By default, the back-end must complete all inflight I/O requests for the > specified vring before stopping it. > > If the ``VHOST_USER_PROTOCOL_F_GET_VRING_BASE_INFLIGHT`` protocol > - feature has been negotiated, the back-end may suspend in-flight I/O > + feature has been negotiated, using request payload's *num* field, > + when *num* is set to 1, QEMU can tell the back-end to suspend in-flight I/O > requests and record them as described in :ref:`Inflight I/O tracking > <inflight_io_tracking>` instead of completing them before stopping the vring. > How to suspend an in-flight request depends on the implementation of the back-end > diff --git a/hw/block/vhost-user-blk.c b/hw/block/vhost-user-blk.c > index 1dc49c104e..8cc80eb0c3 100644 > --- a/hw/block/vhost-user-blk.c > +++ b/hw/block/vhost-user-blk.c > @@ -134,10 +134,7 @@ static bool vhost_user_blk_inflight_needed(void *opaque) > { > struct VHostUserBlk *s = opaque; > > - bool inflight_migration = virtio_has_feature(s->dev.protocol_features, > - VHOST_USER_PROTOCOL_F_GET_VRING_BASE_INFLIGHT); > - > - return inflight_migration; > + return s->inflight_migration; > } > > > @@ -232,11 +229,14 @@ static int vhost_user_blk_stop(VirtIODevice *vdev) > return 0; > } > > + bool skip_drain = vhost_user_blk_inflight_needed(s) && > + runstate_check(RUN_STATE_FINISH_MIGRATE); > + > force_stop = s->skip_get_vring_base_on_force_shutdown && > qemu_force_shutdown_requested(); > > ret = force_stop ? vhost_dev_force_stop(&s->dev, vdev, true) : > - vhost_dev_stop(&s->dev, vdev, true, false); > + vhost_dev_stop(&s->dev, vdev, true, skip_drain); > > if (k->set_guest_notifiers(qbus->parent, s->dev.nvqs, false) < 0) { > error_report("vhost guest notifier cleanup failed: %d", ret); > @@ -364,7 +364,6 @@ static int vhost_user_blk_connect(DeviceState *dev, Error **errp) > vhost_dev_set_config_notifier(&s->dev, &blk_ops); > > s->vhost_user.supports_config = true; > - s->vhost_user.supports_inflight_migration = s->inflight_migration; > ret = vhost_dev_init(&s->dev, &s->vhost_user, VHOST_BACKEND_TYPE_USER, 0, > errp); > if (ret < 0) { > @@ -580,10 +579,28 @@ static struct vhost_dev *vhost_user_blk_get_vhost(VirtIODevice *vdev) > return &s->dev; > } > > +static bool vhost_user_blk_pre_save(void *opaqueue, Error **errp) > +{ > + VHostUserBlk *s = VHOST_USER_BLK(vdev); This won't compile. "opaqueue" is unused and the vdev variable does not exist. > + > + bool inflight_migration_enabled = vhost_user_has_protocol_feature(&s->dev, vhost_user_has_protocol_feature() does not exist. > + VHOST_USER_PROTOCOL_F_GET_VRING_BASE_INFLIGHT); > + if (vhost_user_blk_inflight_needed(s) && !inflight_migration_enabled) { > + error_setg(errp, "can't migrate vhost-user-blk device: " > + "backend doesn't support " > + "VHOST_USER_PROTOCOL_F_GET_VRING_BASE_INFLIGHT " > + "protocol feature"); > + return false; > + } > + > + return true; > +} > + > static const VMStateDescription vmstate_vhost_user_blk_inflight = { > .name = "vhost-user-blk/inflight", > .version_id = 1, > .needed = vhost_user_blk_inflight_needed, > + .pre_save_errp = vhost_user_blk_pre_save, > .fields = (const VMStateField[]) { > VMSTATE_VHOST_INFLIGHT_REGION(inflight, VHostUserBlk), > VMSTATE_END_OF_LIST() > diff --git a/hw/virtio/vhost-user.c b/hw/virtio/vhost-user.c > index bb8f8eab77..ed95ec7523 100644 > --- a/hw/virtio/vhost-user.c > +++ b/hw/virtio/vhost-user.c > @@ -2225,8 +2225,7 @@ static int vhost_user_backend_init(struct vhost_dev *dev, void *opaque, > } > } > > - if (!u->user->supports_inflight_migration || > - !virtio_has_feature(protocol_features, > + if (!virtio_has_feature(protocol_features, > VHOST_USER_PROTOCOL_F_INFLIGHT_SHMFD)) { > protocol_features &= ~(1ULL << > VHOST_USER_PROTOCOL_F_GET_VRING_BASE_INFLIGHT); > diff --git a/hw/virtio/vhost.c b/hw/virtio/vhost.c > index 4e196fc773..c04bb53159 100644 > --- a/hw/virtio/vhost.c > +++ b/hw/virtio/vhost.c > @@ -1390,12 +1390,10 @@ static int do_vhost_virtqueue_stop(struct vhost_dev *dev, > unsigned idx, bool force, > bool skip_drain) > { > - /* TODO: support skip drain */ > - assert(!skip_drain); The following assertion would be useful: if (skip_drain) { assert(virtio_has_feature(...protocol_features..., VHOST_USER_PROTOCOL_F_GET_VRING_BASE_INFLIGHT)); } > - > int vhost_vq_index = dev->vhost_ops->vhost_get_vq_index(dev, idx); > struct vhost_vring_state state = { > .index = vhost_vq_index, > + .num = skip_drain, > }; > int r = 0; > > diff --git a/include/hw/virtio/vhost-user.h b/include/hw/virtio/vhost-user.h > index 53fe996686..c95bad5ddc 100644 > --- a/include/hw/virtio/vhost-user.h > +++ b/include/hw/virtio/vhost-user.h > @@ -69,7 +69,6 @@ typedef struct VhostUserState { > GPtrArray *notifiers; > int memory_slots; > bool supports_config; > - bool supports_inflight_migration; > } VhostUserState; > > /** > -- > 2.34.1 > [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 488 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v2 0/4] vhost-user-blk: fix compatibility with older qemu versions 2026-03-11 8:47 [PATCH v2 0/4] vhost-user-blk: fix compatibility with older qemu versions Alexandr Moshkov ` (3 preceding siblings ...) 2026-03-11 8:47 ` [PATCH v2 4/4] vhost-user: add skip_drain param to GET_VRING_BASE Alexandr Moshkov @ 2026-03-23 7:41 ` Alexandr Moshkov 2026-03-26 15:55 ` Stefan Hajnoczi 5 siblings, 0 replies; 12+ messages in thread From: Alexandr Moshkov @ 2026-03-23 7:41 UTC (permalink / raw) To: qemu-devel Cc: virtio-fs, zhenwei pi, Hanna Reitz, yc-core@yandex-team.ru, Gonglei (Arei), Raphael Norwitz, Milan Zamazal, Stefan Hajnoczi, Jason Wang, Alex Bennée, qemu-block, Pierrick Bouvier, Paolo Bonzini, Michael S. Tsirkin, Stefano Garzarella, Fam Zheng, Kevin Wolf Ping) On 3/11/26 13:47, Alexandr Moshkov wrote: > v1 -> v2: > - reorganize commits: make refactor commits first, then core semantic change > - add additional pre_save check for inflight migration possibility > > --- > > This is a small continuation of my series about inflight migration for vhost-user-blk. > > This series is designed to solve the problem of compatibility with older versions of qemu, where this feature has not yet been introduced (for example, if we want to downgrade versions due to some problems). > > In the current version for vhost-user-blk, this feature is enabled using the parameter and further migration of the inflight region will depend on whether the vhost-user has accepted the new protocol feature or not. This creates an inconvenient dependency, because there is no way to disable this feature without reconnecting to the backend. > This series slightly changes the semantics of the introduced protocol feature VHOST_USER_PROTOCOL_F_GET_VRING_BASE_INFLIGHT. Enabling this feature adds a new parameter for GET_VRING_BASE message - skip_drain, which allows to control drain in-flight requests on the backend. > > Thus, user can enable or disable inflight-migration param for vhost-user-blk to maintain compatibility with older versions of QEMU. > > Alexandr Moshkov (4): > vhost-user.rst: fix typo > vhost-user: add skip_drain param to do_vhost_virtqueue_stop > vhost-user-blk: move inflight_needed higher > vhost-user: add skip_drain param to GET_VRING_BASE > > backends/cryptodev-vhost.c | 2 +- > backends/vhost-user.c | 2 +- > docs/interop/vhost-user.rst | 8 +++----- > hw/block/vhost-user-blk.c | 32 +++++++++++++++++++++++++------- > hw/net/vhost_net.c | 9 +++++---- > hw/scsi/vhost-scsi-common.c | 2 +- > hw/virtio/vdpa-dev.c | 2 +- > hw/virtio/vhost-user-base.c | 2 +- > hw/virtio/vhost-user-fs.c | 2 +- > hw/virtio/vhost-user-scmi.c | 2 +- > hw/virtio/vhost-user.c | 3 +-- > hw/virtio/vhost-vsock-common.c | 2 +- > hw/virtio/vhost.c | 24 +++++++++++++++--------- > include/hw/virtio/vhost-user.h | 1 - > include/hw/virtio/vhost.h | 7 +++++-- > 15 files changed, 62 insertions(+), 38 deletions(-) > ^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [PATCH v2 0/4] vhost-user-blk: fix compatibility with older qemu versions 2026-03-11 8:47 [PATCH v2 0/4] vhost-user-blk: fix compatibility with older qemu versions Alexandr Moshkov ` (4 preceding siblings ...) 2026-03-23 7:41 ` [PATCH v2 0/4] vhost-user-blk: fix compatibility with older qemu versions Alexandr Moshkov @ 2026-03-26 15:55 ` Stefan Hajnoczi 5 siblings, 0 replies; 12+ messages in thread From: Stefan Hajnoczi @ 2026-03-26 15:55 UTC (permalink / raw) To: Alexandr Moshkov Cc: qemu-devel, virtio-fs, zhenwei pi, Hanna Reitz, yc-core@yandex-team.ru, Gonglei (Arei), Raphael Norwitz, Milan Zamazal, Jason Wang, Alex Bennée, qemu-block, Pierrick Bouvier, Paolo Bonzini, Michael S. Tsirkin, Stefano Garzarella, Fam Zheng, Kevin Wolf [-- Attachment #1: Type: text/plain, Size: 1715 bytes --] On Wed, Mar 11, 2026 at 01:47:24PM +0500, Alexandr Moshkov wrote: > v1 -> v2: > - reorganize commits: make refactor commits first, then core semantic change > - add additional pre_save check for inflight migration possibility > > --- > > This is a small continuation of my series about inflight migration for vhost-user-blk. > > This series is designed to solve the problem of compatibility with older versions of qemu, where this feature has not yet been introduced (for example, if we want to downgrade versions due to some problems). > > In the current version for vhost-user-blk, this feature is enabled using the parameter and further migration of the inflight region will depend on whether the vhost-user has accepted the new protocol feature or not. This creates an inconvenient dependency, because there is no way to disable this feature without reconnecting to the backend. > This series slightly changes the semantics of the introduced protocol feature VHOST_USER_PROTOCOL_F_GET_VRING_BASE_INFLIGHT. Enabling this feature adds a new parameter for GET_VRING_BASE message - skip_drain, which allows to control drain in-flight requests on the backend. > > Thus, user can enable or disable inflight-migration param for vhost-user-blk to maintain compatibility with older versions of QEMU. Can you describe what the user needs to do in more detail? While the patch series introduces a way to tell the vhost-user back-end whether or not to use inflight migration at runtime, I don't see a way for the user to enable/disable inflight migration at runtime in QEMU. So how does the user migrate back to an old QEMU if the current VM was launched with inflight-migration=on? Stefan [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 488 bytes --] ^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2026-03-26 15:55 UTC | newest] Thread overview: 12+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2026-03-11 8:47 [PATCH v2 0/4] vhost-user-blk: fix compatibility with older qemu versions Alexandr Moshkov 2026-03-11 8:47 ` [PATCH v2 1/4] vhost-user.rst: fix typo Alexandr Moshkov 2026-03-24 15:09 ` Vladimir Sementsov-Ogievskiy 2026-03-11 8:47 ` [PATCH v2 2/4] vhost-user: add skip_drain param to do_vhost_virtqueue_stop Alexandr Moshkov 2026-03-24 15:09 ` Vladimir Sementsov-Ogievskiy 2026-03-11 8:47 ` [PATCH v2 3/4] vhost-user-blk: move inflight_needed higher Alexandr Moshkov 2026-03-24 15:10 ` Vladimir Sementsov-Ogievskiy 2026-03-11 8:47 ` [PATCH v2 4/4] vhost-user: add skip_drain param to GET_VRING_BASE Alexandr Moshkov 2026-03-24 15:25 ` Vladimir Sementsov-Ogievskiy 2026-03-26 15:52 ` Stefan Hajnoczi 2026-03-23 7:41 ` [PATCH v2 0/4] vhost-user-blk: fix compatibility with older qemu versions Alexandr Moshkov 2026-03-26 15:55 ` Stefan Hajnoczi
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox