diff options
author | Jason Wang | 2017-04-07 12:59:12 +0200 |
---|---|---|
committer | Eduardo Habkost | 2017-04-20 20:22:41 +0200 |
commit | 10315b9b28c28655ce64500281f4a028d0f8c5ff (patch) | |
tree | 50892d2369af1d93d44ea4c5e0ce57801749c84c /hw | |
parent | memory: add MemoryRegionIOMMUOps.replay() callback (diff) | |
download | qemu-10315b9b28c28655ce64500281f4a028d0f8c5ff.tar.gz qemu-10315b9b28c28655ce64500281f4a028d0f8c5ff.tar.xz qemu-10315b9b28c28655ce64500281f4a028d0f8c5ff.zip |
intel_iommu: use the correct memory region for device IOTLB notification
We have a specific memory region for DMAR now, so it's wrong to
trigger the notifier with the root region.
Cc: Michael S. Tsirkin <mst@redhat.com>
Cc: Paolo Bonzini <pbonzini@redhat.com>
Cc: Richard Henderson <rth@twiddle.net>
Cc: Eduardo Habkost <ehabkost@redhat.com>
Signed-off-by: Jason Wang <jasowang@redhat.com>
Reviewed-by: Peter Xu <peterx@redhat.com>
Reviewed-by: \"Michael S. Tsirkin\" <mst@redhat.com>
Signed-off-by: Peter Xu <peterx@redhat.com>
Message-Id: <1491562755-23867-7-git-send-email-peterx@redhat.com>
Signed-off-by: Eduardo Habkost <ehabkost@redhat.com>
Diffstat (limited to 'hw')
-rw-r--r-- | hw/i386/intel_iommu.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/i386/intel_iommu.c b/hw/i386/intel_iommu.c index 22d8226e43..2412df4182 100644 --- a/hw/i386/intel_iommu.c +++ b/hw/i386/intel_iommu.c @@ -1457,7 +1457,7 @@ static bool vtd_process_device_iotlb_desc(IntelIOMMUState *s, entry.iova = addr; entry.perm = IOMMU_NONE; entry.translated_addr = 0; - memory_region_notify_iommu(entry.target_as->root, entry); + memory_region_notify_iommu(&vtd_dev_as->iommu, entry); done: return true; |