qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Cédric Le Goater" <clg@redhat.com>
To: qemu-devel@nongnu.org
Cc: "Alex Williamson" <alex.williamson@redhat.com>,
	"Cédric Le Goater" <clg@redhat.com>
Subject: [PULL 00/16] vfio queue
Date: Thu,  5 Jun 2025 10:42:29 +0200	[thread overview]
Message-ID: <20250605084245.1520562-1-clg@redhat.com> (raw)

The following changes since commit 09be8a511a2e278b45729d7b065d30c68dd699d0:

  Merge tag 'pull-qapi-2025-06-03' of https://repo.or.cz/qemu/armbru into staging (2025-06-03 09:19:26 -0400)

are available in the Git repository at:

  https://github.com/legoater/qemu/ tags/pull-vfio-20250605

for you to fetch changes up to 3ed34463a2d8ab8aabfa1d612f12b56600c87983:

  vfio: move vfio-cpr.h (2025-06-05 10:40:38 +0200)

----------------------------------------------------------------
vfio queue:

* Fixed OpRegion detection in IGD
* Added prerequisite rework for IOMMU nesting support
* Added prerequisite rework for vfio-user
* Added prerequisite rework for VFIO live update
* Modified memory_get_xlat_addr() to return a MemoryRegion

----------------------------------------------------------------
Edmund Raile (1):
      vfio/igd: OpRegion not found fix error typo

John Levon (5):
      vfio: add more VFIOIOMMUClass docs
      vfio: move more cleanup into vfio_pci_put_device()
      vfio: move config space read into vfio_pci_config_setup()
      vfio: refactor out IRQ signalling setup
      vfio/container: pass MemoryRegion to DMA operations

Steve Sistare (4):
      vfio: return mr from vfio_get_xlat_addr
      MAINTAINERS: Add reviewer for CPR
      vfio: vfio_find_ram_discard_listener
      vfio: move vfio-cpr.h

Tomita Moeko (1):
      vfio/igd: Fix incorrect error propagation in vfio_pci_igd_opregion_detect()

Zhenzhong Duan (5):
      vfio/iommufd: Add comment emphasizing no movement of hiod->realize() call
      backends/iommufd: Add a helper to invalidate user-managed HWPT
      vfio/iommufd: Add properties and handlers to TYPE_HOST_IOMMU_DEVICE_IOMMUFD
      vfio/iommufd: Implement [at|de]tach_hwpt handlers
      vfio/iommufd: Save vendor specific device info

 MAINTAINERS                           | 10 ++++
 hw/vfio/vfio-cpr.h                    | 15 ------
 include/hw/vfio/vfio-container-base.h | 83 ++++++++++++++++++++++++++++++--
 include/hw/vfio/vfio-cpr.h            | 18 +++++++
 include/system/host_iommu_device.h    | 15 ++++++
 include/system/iommufd.h              | 54 +++++++++++++++++++++
 include/system/memory.h               | 19 ++++----
 backends/iommufd.c                    | 58 +++++++++++++++++++++++
 hw/vfio/container-base.c              |  4 +-
 hw/vfio/container.c                   |  5 +-
 hw/vfio/cpr.c                         |  2 +-
 hw/vfio/igd.c                         | 22 ++++-----
 hw/vfio/iommufd.c                     | 45 +++++++++++++++---
 hw/vfio/listener.c                    | 74 ++++++++++++++++++-----------
 hw/vfio/pci.c                         | 89 +++++++++++++++++++----------------
 hw/virtio/vhost-vdpa.c                |  9 +++-
 system/memory.c                       | 32 +++----------
 backends/trace-events                 |  1 +
 18 files changed, 406 insertions(+), 149 deletions(-)
 delete mode 100644 hw/vfio/vfio-cpr.h
 create mode 100644 include/hw/vfio/vfio-cpr.h



             reply	other threads:[~2025-06-05  8:44 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-06-05  8:42 Cédric Le Goater [this message]
2025-06-05  8:42 ` [PULL 01/16] vfio/igd: OpRegion not found fix error typo Cédric Le Goater
2025-06-05  8:42 ` [PULL 02/16] vfio: add more VFIOIOMMUClass docs Cédric Le Goater
2025-06-05  8:42 ` [PULL 03/16] vfio: move more cleanup into vfio_pci_put_device() Cédric Le Goater
2025-06-05  8:42 ` [PULL 04/16] vfio: move config space read into vfio_pci_config_setup() Cédric Le Goater
2025-06-05  8:42 ` [PULL 05/16] vfio: refactor out IRQ signalling setup Cédric Le Goater
2025-06-05  8:42 ` [PULL 06/16] vfio/iommufd: Add comment emphasizing no movement of hiod->realize() call Cédric Le Goater
2025-06-05  8:42 ` [PULL 07/16] vfio/igd: Fix incorrect error propagation in vfio_pci_igd_opregion_detect() Cédric Le Goater
2025-06-05  8:42 ` [PULL 08/16] vfio: return mr from vfio_get_xlat_addr Cédric Le Goater
2025-06-05  8:42 ` [PULL 09/16] vfio/container: pass MemoryRegion to DMA operations Cédric Le Goater
2025-06-05  8:42 ` [PULL 10/16] backends/iommufd: Add a helper to invalidate user-managed HWPT Cédric Le Goater
2025-06-05  8:42 ` [PULL 11/16] vfio/iommufd: Add properties and handlers to TYPE_HOST_IOMMU_DEVICE_IOMMUFD Cédric Le Goater
2025-06-05  8:42 ` [PULL 12/16] vfio/iommufd: Implement [at|de]tach_hwpt handlers Cédric Le Goater
2025-06-05  8:42 ` [PULL 13/16] vfio/iommufd: Save vendor specific device info Cédric Le Goater
2025-06-05  8:42 ` [PULL 14/16] MAINTAINERS: Add reviewer for CPR Cédric Le Goater
2025-06-05  8:42 ` [PULL 15/16] vfio: vfio_find_ram_discard_listener Cédric Le Goater
2025-06-05  8:42 ` [PULL 16/16] vfio: move vfio-cpr.h Cédric Le Goater
2025-06-05 19:00 ` [PULL 00/16] vfio queue Stefan Hajnoczi
  -- strict thread matches above, loose matches on Subject: below --
2024-07-23 14:00 Cédric Le Goater
2024-07-23 15:13 ` Cédric Le Goater
2023-06-30  5:22 Cédric Le Goater
2023-06-30  9:55 ` Richard Henderson

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=20250605084245.1520562-1-clg@redhat.com \
    --to=clg@redhat.com \
    --cc=alex.williamson@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).