diff options
| author | Yi Liu <yi.l.liu@intel.com> | 2022-05-02 02:42:23 -0700 |
|---|---|---|
| committer | Alex Williamson <alex.williamson@redhat.com> | 2022-05-06 09:06:51 -0600 |
| commit | 44ee6aaae0c937abb631e57a9853c2cdef2bc9bb (patch) | |
| tree | 545fe61ee2037c4ff422b8beb68cd3ae05282898 /include/hw | |
| parent | 0d570a2572395cca79b83002e589aeb24fcd1732 (diff) | |
| download | focaccia-qemu-44ee6aaae0c937abb631e57a9853c2cdef2bc9bb.tar.gz focaccia-qemu-44ee6aaae0c937abb631e57a9853c2cdef2bc9bb.zip | |
vfio/common: Rename VFIOGuestIOMMU::iommu into ::iommu_mr
Rename VFIOGuestIOMMU iommu field into iommu_mr. Then it becomes clearer it is an IOMMU memory region. no functional change intended Signed-off-by: Yi Liu <yi.l.liu@intel.com> Link: https://lore.kernel.org/r/20220502094223.36384-4-yi.l.liu@intel.com Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
Diffstat (limited to 'include/hw')
| -rw-r--r-- | include/hw/vfio/vfio-common.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/hw/vfio/vfio-common.h b/include/hw/vfio/vfio-common.h index 8af11b0a76..e573f5a9f1 100644 --- a/include/hw/vfio/vfio-common.h +++ b/include/hw/vfio/vfio-common.h @@ -98,7 +98,7 @@ typedef struct VFIOContainer { typedef struct VFIOGuestIOMMU { VFIOContainer *container; - IOMMUMemoryRegion *iommu; + IOMMUMemoryRegion *iommu_mr; hwaddr iommu_offset; IOMMUNotifier n; QLIST_ENTRY(VFIOGuestIOMMU) giommu_next; |