aboutsummaryrefslogtreecommitdiff
path: root/include/hw/vfio/vfio-common.h
diff options
context:
space:
mode:
authorYi Liu <yi.l.liu@intel.com>2022-05-02 02:42:23 -0700
committerAlex Williamson <alex.williamson@redhat.com>2022-05-06 09:06:51 -0600
commit44ee6aaae0c937abb631e57a9853c2cdef2bc9bb (patch)
tree545fe61ee2037c4ff422b8beb68cd3ae05282898 /include/hw/vfio/vfio-common.h
parent0d570a2572395cca79b83002e589aeb24fcd1732 (diff)
downloadqemu-44ee6aaae0c937abb631e57a9853c2cdef2bc9bb.zip
qemu-44ee6aaae0c937abb631e57a9853c2cdef2bc9bb.tar.gz
qemu-44ee6aaae0c937abb631e57a9853c2cdef2bc9bb.tar.bz2
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/vfio/vfio-common.h')
-rw-r--r--include/hw/vfio/vfio-common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/hw/vfio/vfio-common.h b/include/hw/vfio/vfio-common.h
index 8af11b0..e573f5a 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;