All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v9 0/8] hw/nvme: add basic live migration support
@ 2026-06-11 11:22 Alexander Mikhalitsyn
  2026-06-11 11:22 ` [PATCH v9 1/8] tests/functional/migration: add VM launch/configure hooks Alexander Mikhalitsyn
                   ` (7 more replies)
  0 siblings, 8 replies; 14+ messages in thread
From: Alexander Mikhalitsyn @ 2026-06-11 11:22 UTC (permalink / raw)
  To: qemu-devel
  Cc: Klaus Jensen, Stefan Hajnoczi, Jesper Devantier, qemu-block,
	Hanna Reitz, Fam Zheng, Stéphane Graber, Kevin Wolf,
	Keith Busch, Laurent Vivier, Fabiano Rosas, Zhao Liu,
	Alexander Mikhalitsyn, Paolo Bonzini, Peter Xu,
	Philippe Mathieu-Daudé, Alexander Mikhalitsyn

From: Alexander Mikhalitsyn <aleksandr.mikhalitsyn@futurfusion.io>

Dear friends,

This patchset adds basic live migration support for
QEMU emulated NVMe device.

Implementation has some limitations:
- only one NVMe namespace is supported
- SMART counters are not preserved
- CMB is not supported
- PMR is not supported
- SPDM is not supported
- SR-IOV is not supported

I believe this is something I can support in next patchset versions or
separately on-demand (when usecase appears).

Testing.

This patch series was manually tested on:
- Debian 13.3 VM (kernel 6.12.69+deb13-amd64) using fio on *non-root* NVMe disk
  (root disk was virtio-scsi):

time fio --name=nvme-verify \
    --filename=/dev/nvme0n1 \
    --size=5G \
    --rw=randwrite \
    --bs=4k \
    --iodepth=16 \
    --numjobs=1 \
    --direct=0 \
    --ioengine=io_uring \
    --verify=crc32c \
    --verify_fatal=1

- Windows Server 2022 VM (NVMe drive was a *root* disk) with opened browser
  playing video.

No defects were found.

Git tree:
https://gitlab.com/mihalicyn/qemu/-/commits/nvme-live-migration

Changelog for version 9:
- many trivial check-patch fixes here and there
- disabled qtest on ppc64 (spapr bus) by adding qpci_check_buggy_msi() check
  [ we had a private discussion with Klaus and he told me that ppc64
    tests are failing after debugging I found this old patch which wasn't merged
    for some reason https://lore.kernel.org/qemu-devel/20250502030446.88310-5-npiggin@gmail.com/ ]
- I kept all RWB/ACK-tags in place (hope it is fine, cause really I hasn't changed too much)
- QEMU CI tests results https://gitlab.com/mihalicyn/qemu/-/pipelines/2593676152

Changelog for version 8:
- rebased
- added Acked-by from Stefan
- added RWB tag from Klaus
- added RWB tag from Peter

Changelog for version 7:
- rebased on top of recent main
- addressed review comments from Stefan Hajnoczi:
  - better incoming migration stream validation (SQ/CQids correctness)
  - endianness bugs are fixed in qtest (validated on s390x)
- added RWB tags from Klaus

Changelog for version 6:
- rebased on top of:
  https://gitlab.com/peterx/qemu/-/tree/vmstate-array-null
  (see also https://lore.kernel.org/all/20260401202844.673494-1-peterx@redhat.com)
- addressed review comments from Stefan Hajnoczi:
  - supported "full CQ" case by serializing NvmeRequest state
  - added qtest for NVMe device migration with full CQ

Changelog for version 5:
- rebased on top of https://lore.kernel.org/all/20260304212303.667141-1-vsementsov@yandex-team.ru/
  (as Peter has requested)

Changelog for version 4:
- vmstate dynamic array support reworked as suggested by Peter Xu
  VMS_ARRAY_OF_POINTER_ALLOW_NULL flag was introduced
  qtests were added
- NVMe migration blockers were reworked as Klaus has requested earlier
  Now, instead of having "deny list" approach, we have more strict pattern
  of NVMe features filtering and it should be harded to break migration when
  adding new NVMe features.

Changelog for version 3:
- rebased
- simple functional test was added (in accordance with Klaus Jensen's review comment)
  $ meson test 'func-x86_64-nvme_migration' --setup thorough -C build

Changelog for version 2:
- full support for AERs (in-flight requests and queued events too)

Kind regards,
Alex

Alexander Mikhalitsyn (8):
  tests/functional/migration: add VM launch/configure hooks
  hw/nvme: add migration blockers for non-supported cases
  hw/nvme: split nvme_init_sq/nvme_init_cq into helpers
  hw/nvme: set CQE.sq_id earlier in nvme_process_sq
  hw/nvme: unmap req->sg earlier in nvme_enqueue_req_completion
  hw/nvme: add basic live migration support
  tests/functional/x86_64: add migration test for NVMe device
  tests/qtest/nvme-test: add migration test with full CQ

 MAINTAINERS                                   |    1 +
 hw/nvme/ctrl.c                                | 1035 ++++++++++++++++-
 hw/nvme/ns.c                                  |  164 +++
 hw/nvme/nvme.h                                |   12 +
 hw/nvme/trace-events                          |   10 +
 include/block/nvme.h                          |   12 +
 tests/functional/migration.py                 |   23 +-
 tests/functional/x86_64/meson.build           |    1 +
 .../functional/x86_64/test_nvme_migration.py  |  172 +++
 tests/qtest/nvme-test.c                       |  421 +++++++
 10 files changed, 1815 insertions(+), 36 deletions(-)
 create mode 100755 tests/functional/x86_64/test_nvme_migration.py

-- 
2.47.3



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

end of thread, other threads:[~2026-06-11 18:12 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-06-11 11:22 [PATCH v9 0/8] hw/nvme: add basic live migration support Alexander Mikhalitsyn
2026-06-11 11:22 ` [PATCH v9 1/8] tests/functional/migration: add VM launch/configure hooks Alexander Mikhalitsyn
2026-06-11 11:22 ` [PATCH v9 2/8] hw/nvme: add migration blockers for non-supported cases Alexander Mikhalitsyn
2026-06-11 13:31   ` Fabiano Rosas
2026-06-11 13:53     ` Alexander Mikhalitsyn
2026-06-11 14:24       ` Fabiano Rosas
2026-06-11 14:32         ` Alexander Mikhalitsyn
2026-06-11 18:11           ` Alexander Mikhalitsyn
2026-06-11 11:22 ` [PATCH v9 3/8] hw/nvme: split nvme_init_sq/nvme_init_cq into helpers Alexander Mikhalitsyn
2026-06-11 11:22 ` [PATCH v9 4/8] hw/nvme: set CQE.sq_id earlier in nvme_process_sq Alexander Mikhalitsyn
2026-06-11 11:22 ` [PATCH v9 5/8] hw/nvme: unmap req->sg earlier in nvme_enqueue_req_completion Alexander Mikhalitsyn
2026-06-11 11:22 ` [PATCH v9 6/8] hw/nvme: add basic live migration support Alexander Mikhalitsyn
2026-06-11 11:22 ` [PATCH v9 7/8] tests/functional/x86_64: add migration test for NVMe device Alexander Mikhalitsyn
2026-06-11 11:22 ` [PATCH v9 8/8] tests/qtest/nvme-test: add migration test with full CQ Alexander Mikhalitsyn

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.