From: Konstantin Shkolnyy <kshk@linux.ibm.com>
To: mjrosato@linux.ibm.com
Cc: alifm@linux.ibm.com, richard.henderson@linaro.org,
iii@linux.ibm.com, david@kernel.org, cohuck@redhat.com,
pasic@linux.ibm.com, borntraeger@linux.ibm.com,
qemu-s390x@nongnu.org, qemu-devel@nongnu.org,
Konstantin Shkolnyy <kshk@linux.ibm.com>
Subject: [PATCH v4 00/15] s390x/pci: Implement migration for emulated devices
Date: Thu, 23 Jul 2026 22:09:04 -0500 [thread overview]
Message-ID: <20260724030919.123733-1-kshk@linux.ibm.com> (raw)
Up until now QEMU marked any zPCI device as "unmigratable."
This patch series adds support for migrating emulated devices, which are
simpler to migrate. It leaves VFIO devices still unmigratable.
To enable migration, the device state needs to be saved/restored to/from
the migration stream.
There are 2 kinds of emulated devices - those that use the zPCI IOMMU page
table emulation in QEMU (e.g., Intel IGB NIC), and those that don't (virtio).
This is important to note for testing purposes.
This change was tested on IGB, virtio-net and virtio-blk devices by running
I/O on them while performing "virsh managedsave, virsh start" and also live
migration to another host and back.
Changes in v4:
- patch 13: Improved the comment explaining S390PCIIOMMU, according to review
comments.
- patch 14: Moved the new x-zpci-emul-dev-migr-enabled property to the next
QEMU version which was introduced after v3.
Konstantin Shkolnyy (14):
s390x/pci: Create function to contain translation status check
s390x/pci: Move iommu_mr from S390PCIIOMMU to S390PCIBusDevice
s390x/pci: Move dm_mr from S390PCIIOMMU to S390PCIBusDevice
s390x/pci: Move iotlb from S390PCIIOMMU to S390PCIBusDevice
s390x/pci: Remove a ptr to S390PCIBusDevice from S390PCIIOMMU
s390x/pci: Move/rename enabled from S390PCIIOMMU to S390PCIBusDevice
s390x/pci: Move dma_limit from S390PCIIOMMU to S390PCIBusDevice
s390x/pci: Move g_iota from S390PCIIOMMU to S390PCIBusDevice
s390x/pci: Move pba from S390PCIIOMMU to S390PCIBusDevice
s390x/pci: Move pal from S390PCIIOMMU to S390PCIBusDevice
s390x/pci: Move max_dma_limit from S390PCIIOMMU to S390PCIBusDevice
s390x/pci: Add a comment explaining S390PCIIOMMU purpose
s390x/pci: Implement migration for emulated devices
s390x/pci: Create function to contain fmb_timer start
Matthew Rosato (1):
s390x/pci: implement IOMMU replay
hw/s390x/s390-pci-bus.c | 338 ++++++++++++++++++++++++++-----
hw/s390x/s390-pci-inst.c | 120 ++++++-----
hw/s390x/s390-pci-vfio.c | 4 +-
hw/s390x/s390-virtio-ccw.c | 4 +
include/hw/s390x/s390-pci-bus.h | 42 ++--
include/hw/s390x/s390-pci-inst.h | 3 +-
6 files changed, 384 insertions(+), 127 deletions(-)
--
2.34.1
next reply other threads:[~2026-07-24 3:11 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-24 3:09 Konstantin Shkolnyy [this message]
2026-07-24 3:09 ` [PATCH v4 01/15] s390x/pci: implement IOMMU replay Konstantin Shkolnyy
2026-07-24 19:10 ` Farhan Ali
2026-07-24 3:09 ` [PATCH v4 02/15] s390x/pci: Create function to contain translation status check Konstantin Shkolnyy
2026-07-24 19:11 ` Farhan Ali
2026-07-24 3:09 ` [PATCH v4 03/15] s390x/pci: Move iommu_mr from S390PCIIOMMU to S390PCIBusDevice Konstantin Shkolnyy
2026-07-24 3:09 ` [PATCH v4 04/15] s390x/pci: Move dm_mr " Konstantin Shkolnyy
2026-07-24 3:09 ` [PATCH v4 05/15] s390x/pci: Move iotlb " Konstantin Shkolnyy
2026-07-24 3:09 ` [PATCH v4 06/15] s390x/pci: Remove a ptr to S390PCIBusDevice from S390PCIIOMMU Konstantin Shkolnyy
2026-07-24 3:09 ` [PATCH v4 07/15] s390x/pci: Move/rename enabled from S390PCIIOMMU to S390PCIBusDevice Konstantin Shkolnyy
2026-07-24 3:09 ` [PATCH v4 08/15] s390x/pci: Move dma_limit " Konstantin Shkolnyy
2026-07-24 3:09 ` [PATCH v4 09/15] s390x/pci: Move g_iota " Konstantin Shkolnyy
2026-07-24 3:09 ` [PATCH v4 10/15] s390x/pci: Move pba " Konstantin Shkolnyy
2026-07-24 3:09 ` [PATCH v4 11/15] s390x/pci: Move pal " Konstantin Shkolnyy
2026-07-24 3:09 ` [PATCH v4 12/15] s390x/pci: Move max_dma_limit " Konstantin Shkolnyy
2026-07-24 3:09 ` [PATCH v4 13/15] s390x/pci: Add a comment explaining S390PCIIOMMU purpose Konstantin Shkolnyy
2026-07-24 3:09 ` [PATCH v4 14/15] s390x/pci: Implement migration for emulated devices Konstantin Shkolnyy
2026-07-24 3:09 ` [PATCH v4 15/15] s390x/pci: Create function to contain fmb_timer start Konstantin Shkolnyy
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260724030919.123733-1-kshk@linux.ibm.com \
--to=kshk@linux.ibm.com \
--cc=alifm@linux.ibm.com \
--cc=borntraeger@linux.ibm.com \
--cc=cohuck@redhat.com \
--cc=david@kernel.org \
--cc=iii@linux.ibm.com \
--cc=mjrosato@linux.ibm.com \
--cc=pasic@linux.ibm.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-s390x@nongnu.org \
--cc=richard.henderson@linaro.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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.