From c67676711c7202f48bc43d2f80125eaea355755e Mon Sep 17 00:00:00 2001 From: Frank Blaschka Date: Fri, 19 Dec 2014 14:40:06 -0700 Subject: vfio: fix adding memory listener to the right address space Depending on the device, container->space->as contains the valid AddressSpace. Using address_space_memory breaks devices sitting behind an iommu (and using a separate address space). Signed-off-by: Frank Blaschka Signed-off-by: Alex Williamson --- hw/misc/vfio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'hw/misc/vfio.c') diff --git a/hw/misc/vfio.c b/hw/misc/vfio.c index 6c36c8b687..51844cf70d 100644 --- a/hw/misc/vfio.c +++ b/hw/misc/vfio.c @@ -3713,7 +3713,7 @@ static int vfio_connect_container(VFIOGroup *group, AddressSpace *as) container->iommu_data.release = vfio_listener_release; memory_listener_register(&container->iommu_data.type1.listener, - &address_space_memory); + container->space->as); if (container->iommu_data.type1.error) { ret = container->iommu_data.type1.error; -- cgit v1.2.3