diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2016-09-22 16:11:54 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2016-10-24 15:27:19 +0200 |
commit | d45fa784cd0c111131696808d1168259d66b7519 (patch) | |
tree | 594ab2fb8b35dbf97cdf7b74001d0baefd137306 /include | |
parent | 0fe4fca4e1a5e06a270127dd80bb753d4dda61c6 (diff) | |
download | 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.h | 2 |
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; }; |