summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorPaolo Bonzini2016-09-22 16:11:54 +0200
committerPaolo Bonzini2016-10-24 15:27:19 +0200
commitd45fa784cd0c111131696808d1168259d66b7519 (patch)
tree594ab2fb8b35dbf97cdf7b74001d0baefd137306 /include
parenttcg: try sti when moving a constant into a dead memory temp (diff)
downloadqemu-d45fa784cd0c111131696808d1168259d66b7519.tar.gz
qemu-d45fa784cd0c111131696808d1168259d66b7519.tar.xz
qemu-d45fa784cd0c111131696808d1168259d66b7519.zip
memory: eliminate global MemoryListeners
There is none, so just drop the code. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include')
-rw-r--r--include/exec/memory.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/exec/memory.h b/include/exec/memory.h
index 10d7eacc40..39f34108fb 100644
--- a/include/exec/memory.h
+++ b/include/exec/memory.h
@@ -255,7 +255,7 @@ struct MemoryListener {
hwaddr addr, hwaddr len);
/* Lower = earlier (during add), later (during del) */
unsigned priority;
- AddressSpace *address_space_filter;
+ AddressSpace *address_space;
QTAILQ_ENTRY(MemoryListener) link;
};