diff options
author | Paolo Bonzini <pbonzini@redhat.com> | 2014-06-13 10:48:06 +0200 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2014-07-01 10:20:41 +0200 |
commit | 1f6245e5aba94ff7acd34f8514da7dfb9712935d (patch) | |
tree | 4b2a0b56969180c2cc762907908811602bb46ea2 | |
parent | 52aef7bba74a65d0c9fbec7a6559cc8385ab0e17 (diff) | |
download | qemu-1f6245e5aba94ff7acd34f8514da7dfb9712935d.tar.gz qemu-1f6245e5aba94ff7acd34f8514da7dfb9712935d.tar.bz2 qemu-1f6245e5aba94ff7acd34f8514da7dfb9712935d.zip |
memory: do not give a name to the internal exec.c regions
There is no need to have them visible under /machine.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
-rw-r--r-- | exec.c | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -1801,13 +1801,13 @@ MemoryRegion *iotlb_to_region(AddressSpace *as, hwaddr index) static void io_mem_init(void) { - memory_region_init_io(&io_mem_rom, NULL, &unassigned_mem_ops, NULL, "rom", UINT64_MAX); + memory_region_init_io(&io_mem_rom, NULL, &unassigned_mem_ops, NULL, NULL, UINT64_MAX); memory_region_init_io(&io_mem_unassigned, NULL, &unassigned_mem_ops, NULL, - "unassigned", UINT64_MAX); + NULL, UINT64_MAX); memory_region_init_io(&io_mem_notdirty, NULL, ¬dirty_mem_ops, NULL, - "notdirty", UINT64_MAX); + NULL, UINT64_MAX); memory_region_init_io(&io_mem_watch, NULL, &watch_mem_ops, NULL, - "watch", UINT64_MAX); + NULL, UINT64_MAX); } static void mem_begin(MemoryListener *listener) |