[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-ppc] [PATCH v6 1/7] memory: Sanity check that no listeners remain
From: |
Alexey Kardashevskiy |
Subject: |
[Qemu-ppc] [PATCH v6 1/7] memory: Sanity check that no listeners remain on a destroyed AddressSpace |
Date: |
Fri, 23 May 2014 14:59:14 +1000 |
From: David Gibson <address@hidden>
At the moment, most AddressSpace objects last as long as the guest system
in practice, but that could well change in future. In addition, for VFIO
we will be introducing some private per-AdressSpace information, which must
be disposed of before the AddressSpace itself is destroyed.
To reduce the chances of subtle bugs in this area, this patch adds
asssertions to ensure that when an AddressSpace is destroyed, there are no
remaining MemoryListeners using that AS as a filter.
Signed-off-by: David Gibson <address@hidden>
Signed-off-by: Alexey Kardashevskiy <address@hidden>
Reviewed-by: Paolo Bonzini <address@hidden>
---
memory.c | 7 +++++++
1 file changed, 7 insertions(+)
diff --git a/memory.c b/memory.c
index 3f1df23..678661e 100644
--- a/memory.c
+++ b/memory.c
@@ -1722,12 +1722,19 @@ void address_space_init(AddressSpace *as, MemoryRegion
*root, const char *name)
void address_space_destroy(AddressSpace *as)
{
+ MemoryListener *listener;
+
/* Flush out anything from MemoryListeners listening in on this */
memory_region_transaction_begin();
as->root = NULL;
memory_region_transaction_commit();
QTAILQ_REMOVE(&address_spaces, as, address_spaces_link);
address_space_destroy_dispatch(as);
+
+ QTAILQ_FOREACH(listener, &memory_listeners, link) {
+ assert(listener->address_space_filter != as);
+ }
+
flatview_unref(as->current_map);
g_free(as->name);
g_free(as->ioeventfds);
--
1.9.rc0
- Re: [Qemu-ppc] [PATCH v6 5/7] vfio: Introduce VFIO address spaces, (continued)
- Re: [Qemu-ppc] [PATCH v6 5/7] vfio: Introduce VFIO address spaces, Alexander Graf, 2014/05/23
- Re: [Qemu-ppc] [PATCH v6 5/7] vfio: Introduce VFIO address spaces, Alexey Kardashevskiy, 2014/05/23
- Re: [Qemu-ppc] [PATCH v6 5/7] vfio: Introduce VFIO address spaces, Alexander Graf, 2014/05/23
- Re: [Qemu-ppc] [Qemu-devel] [PATCH v6 5/7] vfio: Introduce VFIO address spaces, Alexey Kardashevskiy, 2014/05/23
- Re: [Qemu-ppc] [Qemu-devel] [PATCH v6 5/7] vfio: Introduce VFIO address spaces, Alexander Graf, 2014/05/23
- Re: [Qemu-ppc] [Qemu-devel] [PATCH v6 5/7] vfio: Introduce VFIO address spaces, Alexey Kardashevskiy, 2014/05/23
- Re: [Qemu-ppc] [Qemu-devel] [PATCH v6 5/7] vfio: Introduce VFIO address spaces, Alexander Graf, 2014/05/25
- Re: [Qemu-ppc] [Qemu-devel] [PATCH v6 5/7] vfio: Introduce VFIO address spaces, David Gibson, 2014/05/25
- Re: [Qemu-ppc] [Qemu-devel] [PATCH v6 5/7] vfio: Introduce VFIO address spaces, Alex Williamson, 2014/05/27
[Qemu-ppc] [PATCH v6 7/7] vfio: Add guest side IOMMU support, Alexey Kardashevskiy, 2014/05/23
[Qemu-ppc] [PATCH v6 1/7] memory: Sanity check that no listeners remain on a destroyed AddressSpace,
Alexey Kardashevskiy <=
[Qemu-ppc] [PATCH v6 2/7] int128: Add int128_exts64(), Alexey Kardashevskiy, 2014/05/23
[Qemu-ppc] [PATCH v6 3/7] vfio: Fix 128 bit handling, Alexey Kardashevskiy, 2014/05/23
[Qemu-ppc] [PATCH v6 4/7] vfio: Rework to have error paths, Alexey Kardashevskiy, 2014/05/23
Re: [Qemu-ppc] [PATCH v6 0/7] vfio: Prepare for SPAPR, Alex Williamson, 2014/05/27