From: "Cédric Le Goater" <clg@redhat.com>
To: qemu-devel@nongnu.org
Cc: "Cédric Le Goater" <clg@redhat.com>
Subject: [PULL 00/27] vfio queue
Date: Tue, 7 Jul 2026 08:28:53 +0200 [thread overview]
Message-ID: <20260707062920.317302-1-clg@redhat.com> (raw)
The following changes since commit 94826ec1370328375c3b6d1e80fdc94c8f46c348:
Merge tag 'accel-20260706' of https://github.com/philmd/qemu into staging (2026-07-06 18:38:14 +0200)
are available in the Git repository at:
https://github.com/legoater/qemu/ tags/pull-vfio-20260707
for you to fetch changes up to 9daa7347ff2551038e0de055d309b420324b5a25:
vfio/pci: Reject invalid MSI-X Table and PBA BIR values (2026-07-07 07:12:46 +0200)
----------------------------------------------------------------
vfio queue:
* Fixes ROM read issues in vfio/pci: information leak, error
propagation, and uninitialized state
* Validates VERSION replies in vfio-user and updates the spec
for DMA access mode bits
* Merges .dma_map_file() into .dma_map() in the iommufd backend
* Reworks switchover-ack to be re-usable and implements the
VFIO_PRECOPY_INFO_REINIT feature for additional pre-copy
iterations before switchover
* Adds ATS support for passthrough devices via iommufd
* Fixes translated_addr for non-identity-mapped RAM sections in
the VFIO listener
* Reject invalid MSI-X Table and PBA BIR values
----------------------------------------------------------------
Avihai Horon (16):
migration: Propagate errors in migration_completion_precopy()
migration/ram: Use migration_bitmap_sync_precopy() for postcopy discard
migration: Run final save_query_pending at switchover
migration: Log the approver in qemu_loadvm_approve_switchover()
migration: Replace switchover_ack_needed SaveVMHandler
migration: Rename switchover-ack code to legacy
migration: Make switchover-ack re-usable
migration: Fail migration if switchover-ack is requested after switchover decision
vfio/migration: Extract VFIO_MIG_FLAG_DEV_INIT_DATA_SENT sending to helper
vfio/migration: Add Error ** parameter to vfio_migration_init()
vfio/migration: Add new switchover-ack mechanism
vfio/migration: Implement VFIO_PRECOPY_INFO_REINIT feature
vfio/migration: Check VFIO_PRECOPY_INFO_REINIT during switchover
migration: Enable new switchover-ack
migration: Refactor migration_completion_precopy() to return bool
migration: Fix "switchover" used as a verb in comments and docs
Cédric Le Goater (4):
vfio/pci: Fix information leak in vfio_rom_read()
vfio/iommufd: Merge .dma_map_file() into .dma_map()
vfio/listener: Fix translated_addr for non-identity-mapped RAM sections
vfio/pci: Reject invalid MSI-X Table and PBA BIR values
GuoHan Zhao (1):
vfio-user: validate VERSION replies
Mario Casquero (2):
vfio/pci: Initialize rom_read_failed in vfio_pci_load_rom()
vfio/pci: Propagate errors in vfio_pci_load_rom() using Error API
Mattias Nissler (1):
docs: Update vfio-user spec to describe DMA access mode bits
Nathan Chen (2):
iommufd: Introduce handler for device ATS support
vfio/pci: Add ats property
Shameer Kolothum (1):
backends/iommufd: Fix dev_id and type order in viommu trace
docs/devel/migration/vfio.rst | 17 +++-
docs/interop/vfio-user.rst | 82 +++++++++------
qapi/migration.json | 16 ++-
hw/vfio/pci.h | 1 +
hw/vfio/vfio-migration-internal.h | 2 +
include/hw/vfio/vfio-container.h | 15 ---
include/migration/client-options.h | 1 +
include/migration/misc.h | 2 +
include/migration/register.h | 56 +++++-----
include/system/host_iommu_device.h | 9 ++
migration/migration.h | 34 ++++++-
migration/savevm.h | 11 +-
backends/iommufd.c | 8 ++
hw/core/machine.c | 1 +
hw/s390x/s390-stattrib.c | 2 +-
hw/vfio-user/proxy.c | 21 ++--
hw/vfio/container.c | 38 -------
hw/vfio/iommufd.c | 50 ++++++---
hw/vfio/listener.c | 5 +-
hw/vfio/migration.c | 204 +++++++++++++++++++++++++++++--------
hw/vfio/pci.c | 137 +++++++++++++++++++++----
migration/block-dirty-bitmap.c | 11 +-
migration/colo.c | 14 +++
migration/migration.c | 98 ++++++++++++------
migration/options.c | 9 ++
migration/ram.c | 40 ++++----
migration/savevm.c | 195 ++++++++++++++++++++++-------------
backends/trace-events | 2 +-
hw/vfio/trace-events | 7 +-
migration/trace-events | 9 +-
30 files changed, 753 insertions(+), 344 deletions(-)
next reply other threads:[~2026-07-07 6:30 UTC|newest]
Thread overview: 33+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-07 6:28 Cédric Le Goater [this message]
2026-07-07 6:28 ` [PULL 01/27] vfio/pci: Initialize rom_read_failed in vfio_pci_load_rom() Cédric Le Goater
2026-07-07 6:28 ` [PULL 02/27] vfio/pci: Fix information leak in vfio_rom_read() Cédric Le Goater
2026-07-07 6:28 ` [PULL 03/27] docs: Update vfio-user spec to describe DMA access mode bits Cédric Le Goater
2026-07-07 6:28 ` [PULL 04/27] vfio-user: validate VERSION replies Cédric Le Goater
2026-07-07 6:28 ` [PULL 05/27] vfio/iommufd: Merge .dma_map_file() into .dma_map() Cédric Le Goater
2026-07-07 6:28 ` [PULL 06/27] migration: Propagate errors in migration_completion_precopy() Cédric Le Goater
2026-07-07 6:29 ` [PULL 07/27] migration/ram: Use migration_bitmap_sync_precopy() for postcopy discard Cédric Le Goater
2026-07-07 6:29 ` [PULL 08/27] migration: Run final save_query_pending at switchover Cédric Le Goater
2026-07-07 6:29 ` [PULL 09/27] migration: Log the approver in qemu_loadvm_approve_switchover() Cédric Le Goater
2026-07-07 6:29 ` [PULL 10/27] migration: Replace switchover_ack_needed SaveVMHandler Cédric Le Goater
2026-07-07 6:29 ` [PULL 11/27] migration: Rename switchover-ack code to legacy Cédric Le Goater
2026-07-07 6:29 ` [PULL 12/27] migration: Make switchover-ack re-usable Cédric Le Goater
2026-07-07 6:29 ` [PULL 13/27] migration: Fail migration if switchover-ack is requested after switchover decision Cédric Le Goater
2026-07-07 6:29 ` [PULL 14/27] vfio/migration: Extract VFIO_MIG_FLAG_DEV_INIT_DATA_SENT sending to helper Cédric Le Goater
2026-07-07 6:29 ` [PULL 15/27] vfio/migration: Add Error ** parameter to vfio_migration_init() Cédric Le Goater
2026-07-07 6:29 ` [PULL 16/27] vfio/migration: Add new switchover-ack mechanism Cédric Le Goater
2026-07-07 6:29 ` [PULL 17/27] vfio/migration: Implement VFIO_PRECOPY_INFO_REINIT feature Cédric Le Goater
2026-07-07 6:29 ` [PULL 18/27] vfio/migration: Check VFIO_PRECOPY_INFO_REINIT during switchover Cédric Le Goater
2026-07-07 6:29 ` [PULL 19/27] migration: Enable new switchover-ack Cédric Le Goater
2026-07-07 6:29 ` [PULL 20/27] migration: Refactor migration_completion_precopy() to return bool Cédric Le Goater
2026-07-07 6:29 ` [PULL 21/27] migration: Fix "switchover" used as a verb in comments and docs Cédric Le Goater
2026-07-07 6:29 ` [PULL 22/27] iommufd: Introduce handler for device ATS support Cédric Le Goater
2026-07-07 6:29 ` [PULL 23/27] vfio/pci: Add ats property Cédric Le Goater
2026-07-07 6:29 ` [PULL 24/27] vfio/pci: Propagate errors in vfio_pci_load_rom() using Error API Cédric Le Goater
2026-07-07 6:29 ` [PULL 25/27] vfio/listener: Fix translated_addr for non-identity-mapped RAM sections Cédric Le Goater
2026-07-07 6:29 ` [PULL 26/27] backends/iommufd: Fix dev_id and type order in viommu trace Cédric Le Goater
2026-07-07 6:29 ` [PULL 27/27] vfio/pci: Reject invalid MSI-X Table and PBA BIR values Cédric Le Goater
2026-07-08 5:53 ` [PULL 00/27] vfio queue Stefan Hajnoczi
-- strict thread matches above, loose matches on Subject: below --
2025-07-04 8:45 Cédric Le Goater
2025-07-04 17:49 ` Stefan Hajnoczi
2025-06-11 15:05 Cédric Le Goater
2025-06-11 18:22 ` Stefan Hajnoczi
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=20260707062920.317302-1-clg@redhat.com \
--to=clg@redhat.com \
--cc=qemu-devel@nongnu.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.