[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-arm] [RFC v6 22/22] hw/vfio/common: Do not print error when viommu
From: |
Eric Auger |
Subject: |
[Qemu-arm] [RFC v6 22/22] hw/vfio/common: Do not print error when viommu translates into an mmio region |
Date: |
Mon, 12 Feb 2018 18:58:24 +0000 |
On ARM, the MSI doorbell is translated by the virtual IOMMU.
As such address_space_translate() returns the MSI controller
MMIO region and we get an "iommu map to non memory area"
message. Let's remove this latter.
Signed-off-by: Eric Auger <address@hidden>
---
hw/vfio/common.c | 2 --
1 file changed, 2 deletions(-)
diff --git a/hw/vfio/common.c b/hw/vfio/common.c
index 8f3fa0c..1fc8e28 100644
--- a/hw/vfio/common.c
+++ b/hw/vfio/common.c
@@ -326,8 +326,6 @@ static bool vfio_get_vaddr(IOMMUTLBEntry *iotlb, void
**vaddr,
iotlb->translated_addr,
&xlat, &len, writable);
if (!memory_region_is_ram(mr)) {
- error_report("iommu map to non memory area %"HWADDR_PRIx"",
- xlat);
return false;
}
--
1.9.1
- [Qemu-arm] [RFC v6 13/22] virtio-iommu: Implement probe request, (continued)
- [Qemu-arm] [RFC v6 13/22] virtio-iommu: Implement probe request, Eric Auger, 2018/02/12
- [Qemu-arm] [RFC v6 15/22] virtio-iommu: Implement fault reporting, Eric Auger, 2018/02/12
- [Qemu-arm] [RFC v6 16/22] virtio_iommu: Handle reserved regions in translation process, Eric Auger, 2018/02/12
- [Qemu-arm] [RFC v6 17/22] hw/arm/virt: Add virtio-iommu to the virt board, Eric Auger, 2018/02/12
- [Qemu-arm] [RFC v6 18/22] hw/arm/virt-acpi-build: Add virtio-iommu node in IORT table, Eric Auger, 2018/02/12
- [Qemu-arm] [RFC v6 19/22] memory.h: Add set_page_size_mask IOMMUMemoryRegion callback, Eric Auger, 2018/02/12
- [Qemu-arm] [RFC v6 20/22] hw/vfio/common: Set the IOMMUMemoryRegion supported page sizes, Eric Auger, 2018/02/12
- [Qemu-arm] [RFC v6 21/22] virtio-iommu: Implement set_page_size_mask, Eric Auger, 2018/02/12
- [Qemu-arm] [RFC v6 22/22] hw/vfio/common: Do not print error when viommu translates into an mmio region,
Eric Auger <=