diff options
| author | Cédric Le Goater <clg@redhat.com> | 2023-12-19 07:58:20 +0100 |
|---|---|---|
| committer | Cédric Le Goater <clg@redhat.com> | 2024-01-05 21:25:20 +0100 |
| commit | 9812feefab3a4ff95a6cfd73aecb120b406bc98c (patch) | |
| tree | 749732c3ad6df727787ea91c604ef80a94a828cd /include/hw/vfio/vfio-container-base.h | |
| parent | fdaa774e67435a328c0e28006c4d749f2198294a (diff) | |
| download | focaccia-qemu-9812feefab3a4ff95a6cfd73aecb120b406bc98c.tar.gz focaccia-qemu-9812feefab3a4ff95a6cfd73aecb120b406bc98c.zip | |
vfio/container: Introduce a VFIOIOMMU legacy QOM interface
Convert the legacy VFIOIOMMUOps struct to the new VFIOIOMMU QOM interface. The set of of operations for this backend can be referenced with a literal typename instead of a C struct. This will simplify support of multiple backends. Reviewed-by: Zhenzhong Duan <zhenzhong.duan@intel.com> Tested-by: Eric Farman <farman@linux.ibm.com> Signed-off-by: Cédric Le Goater <clg@redhat.com>
Diffstat (limited to 'include/hw/vfio/vfio-container-base.h')
| -rw-r--r-- | include/hw/vfio/vfio-container-base.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/hw/vfio/vfio-container-base.h b/include/hw/vfio/vfio-container-base.h index d6147b4aee..c60370fc5e 100644 --- a/include/hw/vfio/vfio-container-base.h +++ b/include/hw/vfio/vfio-container-base.h @@ -94,6 +94,7 @@ void vfio_container_destroy(VFIOContainerBase *bcontainer); #define TYPE_VFIO_IOMMU "vfio-iommu" +#define TYPE_VFIO_IOMMU_LEGACY TYPE_VFIO_IOMMU "-legacy" /* * VFIOContainerBase is not an abstract QOM object because it felt |