mirror of https://github.com/xemu-project/xemu.git
vhost: check region type before casting
Check region type first before casting the memory region
to IOMMUMemoryRegion. Otherwise QEMU will abort with below
error message when casting non-IOMMU memory region:
vhost_iommu_region_add: Object 0x561f28bce4f0 is not an
instance of type qemu:iommu-memory-region
Fixes: cb1efcf462
("iommu: Add IOMMU index argument to notifier APIs")
Cc: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Tiwei Bie <tiwei.bie@intel.com>
Reviewed-by: Michael S. Tsirkin <mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
parent
f750236039
commit
388a86df9c
|
@ -663,12 +663,14 @@ static void vhost_iommu_region_add(MemoryListener *listener,
|
||||||
struct vhost_iommu *iommu;
|
struct vhost_iommu *iommu;
|
||||||
Int128 end;
|
Int128 end;
|
||||||
int iommu_idx;
|
int iommu_idx;
|
||||||
IOMMUMemoryRegion *iommu_mr = IOMMU_MEMORY_REGION(section->mr);
|
IOMMUMemoryRegion *iommu_mr;
|
||||||
|
|
||||||
if (!memory_region_is_iommu(section->mr)) {
|
if (!memory_region_is_iommu(section->mr)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
iommu_mr = IOMMU_MEMORY_REGION(section->mr);
|
||||||
|
|
||||||
iommu = g_malloc0(sizeof(*iommu));
|
iommu = g_malloc0(sizeof(*iommu));
|
||||||
end = int128_add(int128_make64(section->offset_within_region),
|
end = int128_add(int128_make64(section->offset_within_region),
|
||||||
section->size);
|
section->size);
|
||||||
|
|
Loading…
Reference in New Issue