Message ID | 1483428594-28880-4-git-send-email-peterx@redhat.com |
---|---|
State | New |
Headers | show |
diff --git a/include/exec/memory.h b/include/exec/memory.h index 64560f6..958f4b2 100644 --- a/include/exec/memory.h +++ b/include/exec/memory.h @@ -628,6 +628,9 @@ static inline bool memory_region_is_romd(MemoryRegion *mr) */ static inline bool memory_region_is_iommu(MemoryRegion *mr) { + if (mr->alias) { + return memory_region_is_iommu(mr->alias); + } return mr->iommu_ops; }