[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 00/17] vfio queue
|
From: |
Cédric Le Goater |
|
Subject: |
[PULL 00/17] vfio queue |
|
Date: |
Mon, 8 Jan 2024 08:32:15 +0100 |
The following changes since commit 0c1eccd368af8805ec0fb11e6cf25d0684d37328:
Merge tag 'hw-cpus-20240105' of https://github.com/philmd/qemu into staging
(2024-01-05 16:08:58 +0000)
are available in the Git repository at:
https://github.com/legoater/qemu/ tags/pull-vfio-20240107
for you to fetch changes up to 19368b1905b4b917e915526fcbd5bfa3f7439451:
backends/iommufd: Remove mutex (2024-01-05 21:25:20 +0100)
----------------------------------------------------------------
vfio queue:
* Minor cleanups
* Fix for a regression in device reset introduced in 8.2
* Coverity fixes, including the removal of the iommufd backend mutex
* Introduced VFIOIOMMUClass, to avoid compiling spapr when !CONFIG_PSERIES
----------------------------------------------------------------
Avihai Horon (1):
vfio/migration: Add helper function to set state or reset device
Cédric Le Goater (14):
vfio/spapr: Extend VFIOIOMMUOps with a release handler
vfio/container: Introduce vfio_legacy_setup() for further cleanups
vfio/container: Initialize VFIOIOMMUOps under vfio_init_container()
vfio/container: Introduce a VFIOIOMMU QOM interface
vfio/container: Introduce a VFIOIOMMU legacy QOM interface
vfio/container: Intoduce a new VFIOIOMMUClass::setup handler
vfio/spapr: Introduce a sPAPR VFIOIOMMU QOM interface
vfio/iommufd: Introduce a VFIOIOMMU iommufd QOM interface
vfio/spapr: Only compile sPAPR IOMMU support when needed
vfio/iommufd: Remove CONFIG_IOMMUFD usage
vfio/container: Replace basename with g_path_get_basename
vfio/iommufd: Remove the use of stat() to check file existence
backends/iommufd: Remove check on number of backend users
backends/iommufd: Remove mutex
Volker Rümelin (1):
hw/vfio: fix iteration over global VFIODevice list
Zhenzhong Duan (1):
vfio/container: Rename vfio_init_container to vfio_set_iommu
include/hw/vfio/vfio-common.h | 2 -
include/hw/vfio/vfio-container-base.h | 27 +++++-
include/sysemu/iommufd.h | 2 -
backends/iommufd.c | 12 ---
hw/vfio/common.c | 19 +++--
hw/vfio/container-base.c | 12 ++-
hw/vfio/container.c | 153 +++++++++++++++++++++-------------
hw/vfio/iommufd.c | 41 +++++----
hw/vfio/migration.c | 41 ++++-----
hw/vfio/pci.c | 2 +-
hw/vfio/spapr.c | 60 +++++++------
hw/vfio/meson.build | 2 +-
12 files changed, 222 insertions(+), 151 deletions(-)
- [PULL 00/17] vfio queue,
Cédric Le Goater <=
- [PULL 02/17] vfio/container: Introduce vfio_legacy_setup() for further cleanups, Cédric Le Goater, 2024/01/08
- [PULL 04/17] vfio/container: Introduce a VFIOIOMMU QOM interface, Cédric Le Goater, 2024/01/08
- [PULL 06/17] vfio/container: Intoduce a new VFIOIOMMUClass::setup handler, Cédric Le Goater, 2024/01/08
- [PULL 07/17] vfio/spapr: Introduce a sPAPR VFIOIOMMU QOM interface, Cédric Le Goater, 2024/01/08
- [PULL 03/17] vfio/container: Initialize VFIOIOMMUOps under vfio_init_container(), Cédric Le Goater, 2024/01/08
- [PULL 01/17] vfio/spapr: Extend VFIOIOMMUOps with a release handler, Cédric Le Goater, 2024/01/08
- [PULL 05/17] vfio/container: Introduce a VFIOIOMMU legacy QOM interface, Cédric Le Goater, 2024/01/08
- [PULL 08/17] vfio/iommufd: Introduce a VFIOIOMMU iommufd QOM interface, Cédric Le Goater, 2024/01/08
- [PULL 09/17] vfio/spapr: Only compile sPAPR IOMMU support when needed, Cédric Le Goater, 2024/01/08
- [PULL 11/17] vfio/container: Replace basename with g_path_get_basename, Cédric Le Goater, 2024/01/08