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/22] vfio queue
Date: Mon,  6 Nov 2023 15:36:31 +0100	[thread overview]
Message-ID: <20231106143653.302391-1-clg@redhat.com> (raw)

The following changes since commit d762bf97931b58839316b68a570eecc6143c9e3e:

  Merge tag 'pull-target-arm-20231102' of https://git.linaro.org/people/pmaydell/qemu-arm into staging (2023-11-03 10:04:12 +0800)

are available in the Git repository at:

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

for you to fetch changes up to a2347c60a86a7c2a227ebab186a195d16e1e3901:

  vfio/common: Move vfio_host_win_add/del into spapr.c (2023-11-06 13:23:23 +0100)

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

* Support for non 64b IOVA space
* Introduction of a PCIIOMMUOps callback structure to ease future
  extensions
* Fix for a buffer overrun when writing the VF token
* PPC cleanups preparing ground for IOMMUFD support

----------------------------------------------------------------
Cédric Le Goater (4):
      util/uuid: Add UUID_STR_LEN definition
      vfio/pci: Fix buffer overrun when writing the VF token
      util/uuid: Remove UUID_FMT_LEN
      util/uuid: Define UUID_STR_LEN from UUID_NONE string

Eric Auger (12):
      memory: Let ReservedRegion use Range
      memory: Introduce memory_region_iommu_set_iova_ranges
      vfio: Collect container iova range info
      virtio-iommu: Rename reserved_regions into prop_resv_regions
      range: Make range_compare() public
      util/reserved-region: Add new ReservedRegion helpers
      virtio-iommu: Introduce per IOMMUDevice reserved regions
      range: Introduce range_inverse_array()
      virtio-iommu: Record whether a probe request has been issued
      virtio-iommu: Implement set_iova_ranges() callback
      virtio-iommu: Consolidate host reserved regions and property set ones
      test: Add some tests for range and resv-mem helpers

Yi Liu (1):
      hw/pci: modify pci_setup_iommu() to set PCIIOMMUOps

Zhenzhong Duan (5):
      vfio/container: Move IBM EEH related functions into spapr_pci_vfio.c
      vfio/container: Move vfio_container_add/del_section_window into spapr.c
      vfio/container: Move spapr specific init/deinit into spapr.c
      vfio/spapr: Make vfio_spapr_create/remove_window static
      vfio/common: Move vfio_host_win_add/del into spapr.c

 docs/devel/index-api.rst         |   1 +
 docs/devel/pci.rst               |   8 +
 include/exec/memory.h            |  36 ++++-
 include/hw/pci/pci.h             |  36 ++++-
 include/hw/pci/pci_bus.h         |   2 +-
 include/hw/vfio/vfio-common.h    |  16 +-
 include/hw/vfio/vfio.h           |   7 -
 include/hw/virtio/virtio-iommu.h |   7 +-
 include/qemu/range.h             |  14 ++
 include/qemu/reserved-region.h   |  32 ++++
 include/qemu/uuid.h              |   5 +-
 block/parallels-ext.c            |   2 +-
 block/vdi.c                      |   2 +-
 hw/alpha/typhoon.c               |   6 +-
 hw/arm/smmu-common.c             |   6 +-
 hw/core/qdev-properties-system.c |  11 +-
 hw/hyperv/vmbus.c                |   4 +-
 hw/i386/amd_iommu.c              |   6 +-
 hw/i386/intel_iommu.c            |   6 +-
 hw/pci-host/astro.c              |   6 +-
 hw/pci-host/designware.c         |   6 +-
 hw/pci-host/dino.c               |   6 +-
 hw/pci-host/pnv_phb3.c           |   6 +-
 hw/pci-host/pnv_phb4.c           |   6 +-
 hw/pci-host/ppce500.c            |   6 +-
 hw/pci-host/raven.c              |   6 +-
 hw/pci-host/sabre.c              |   6 +-
 hw/pci/pci.c                     |  18 ++-
 hw/ppc/ppc440_pcix.c             |   6 +-
 hw/ppc/spapr_pci.c               |   6 +-
 hw/ppc/spapr_pci_vfio.c          | 100 +++++++++++-
 hw/remote/iommu.c                |   6 +-
 hw/s390x/s390-pci-bus.c          |   8 +-
 hw/vfio/ap.c                     |   1 -
 hw/vfio/ccw.c                    |   1 -
 hw/vfio/common.c                 |  80 ++--------
 hw/vfio/container.c              | 328 ++++++---------------------------------
 hw/vfio/helpers.c                |   1 -
 hw/vfio/pci.c                    |   2 +-
 hw/vfio/spapr.c                  | 282 +++++++++++++++++++++++++++++++--
 hw/virtio/virtio-iommu-pci.c     |   8 +-
 hw/virtio/virtio-iommu.c         | 161 +++++++++++++++++--
 migration/savevm.c               |   4 +-
 system/memory.c                  |  13 ++
 tests/unit/test-resv-mem.c       | 316 +++++++++++++++++++++++++++++++++++++
 tests/unit/test-uuid.c           |   2 +-
 util/range.c                     |  61 +++++++-
 util/reserved-region.c           |  91 +++++++++++
 util/uuid.c                      |   2 +-
 hw/virtio/trace-events           |   1 +
 tests/unit/meson.build           |   1 +
 util/meson.build                 |   1 +
 52 files changed, 1303 insertions(+), 452 deletions(-)
 create mode 100644 docs/devel/pci.rst
 delete mode 100644 include/hw/vfio/vfio.h
 create mode 100644 include/qemu/reserved-region.h
 create mode 100644 tests/unit/test-resv-mem.c
 create mode 100644 util/reserved-region.c


             reply	other threads:[~2023-11-06 14:39 UTC|newest]

Thread overview: 28+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-11-06 14:36 Cédric Le Goater [this message]
2023-11-06 14:36 ` [PULL 01/22] memory: Let ReservedRegion use Range Cédric Le Goater
2023-11-06 14:36 ` [PULL 02/22] memory: Introduce memory_region_iommu_set_iova_ranges Cédric Le Goater
2023-11-06 14:36 ` [PULL 03/22] vfio: Collect container iova range info Cédric Le Goater
2023-11-06 14:36 ` [PULL 04/22] virtio-iommu: Rename reserved_regions into prop_resv_regions Cédric Le Goater
2023-11-06 14:36 ` [PULL 05/22] range: Make range_compare() public Cédric Le Goater
2023-11-06 14:36 ` [PULL 06/22] util/reserved-region: Add new ReservedRegion helpers Cédric Le Goater
2023-11-06 14:36 ` [PULL 07/22] virtio-iommu: Introduce per IOMMUDevice reserved regions Cédric Le Goater
2023-11-06 14:36 ` [PULL 08/22] range: Introduce range_inverse_array() Cédric Le Goater
2023-11-06 14:36 ` [PULL 09/22] virtio-iommu: Record whether a probe request has been issued Cédric Le Goater
2023-11-09 15:08   ` Peter Maydell
2023-11-09 16:56     ` Eric Auger
2023-11-06 14:36 ` [PULL 10/22] virtio-iommu: Implement set_iova_ranges() callback Cédric Le Goater
2023-11-06 14:36 ` [PULL 11/22] virtio-iommu: Consolidate host reserved regions and property set ones Cédric Le Goater
2023-11-06 14:36 ` [PULL 12/22] test: Add some tests for range and resv-mem helpers Cédric Le Goater
2023-11-06 14:36 ` [PULL 13/22] hw/pci: modify pci_setup_iommu() to set PCIIOMMUOps Cédric Le Goater
2023-11-06 14:36 ` [PULL 14/22] util/uuid: Add UUID_STR_LEN definition Cédric Le Goater
2023-11-06 14:36 ` [PULL 15/22] vfio/pci: Fix buffer overrun when writing the VF token Cédric Le Goater
2023-11-06 14:36 ` [PULL 16/22] util/uuid: Remove UUID_FMT_LEN Cédric Le Goater
2023-11-06 14:36 ` [PULL 17/22] util/uuid: Define UUID_STR_LEN from UUID_NONE string Cédric Le Goater
2023-11-06 14:36 ` [PULL 18/22] vfio/container: Move IBM EEH related functions into spapr_pci_vfio.c Cédric Le Goater
2023-11-06 14:36 ` [PULL 19/22] vfio/container: Move vfio_container_add/del_section_window into spapr.c Cédric Le Goater
2023-11-06 14:36 ` [PULL 20/22] vfio/container: Move spapr specific init/deinit " Cédric Le Goater
2023-11-06 14:36 ` [PULL 21/22] vfio/spapr: Make vfio_spapr_create/remove_window static Cédric Le Goater
2023-11-06 14:36 ` [PULL 22/22] vfio/common: Move vfio_host_win_add/del into spapr.c Cédric Le Goater
2023-11-07  3:02 ` [PULL 00/22] vfio queue Stefan Hajnoczi
  -- strict thread matches above, loose matches on Subject: below --
2023-10-18  9:45 Cédric Le Goater
2023-10-18 22:32 ` 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=20231106143653.302391-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).