diff options
author | Peter Crosthwaite <peter.crosthwaite@xilinx.com> | 2014-08-14 23:56:08 -0700 |
---|---|---|
committer | Paolo Bonzini <pbonzini@redhat.com> | 2014-08-18 12:06:21 +0200 |
commit | b0225c2c0d89200a29dc3d0b59d2e87a79cbaeb8 (patch) | |
tree | d0b7382a2cd9f791ecbb18be260c0fab5995c0a0 /include/exec/memory.h | |
parent | 3fb18b4da7a545321e38b4a59f38995630a8d752 (diff) |
memory: Use canonical path component as the name
Rather than having the name as separate state. This prepares support
for creating a MemoryRegion dynamically (i.e. without
memory_region_init() and friends) and the MemoryRegion still getting
a usable name.
Signed-off-by: Peter Crosthwaite <peter.crosthwaite@xilinx.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Diffstat (limited to 'include/exec/memory.h')
-rw-r--r-- | include/exec/memory.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/include/exec/memory.h b/include/exec/memory.h index d165b278cb..10f73d9e4a 100644 --- a/include/exec/memory.h +++ b/include/exec/memory.h @@ -162,7 +162,6 @@ struct MemoryRegion { QTAILQ_HEAD(subregions, MemoryRegion) subregions; QTAILQ_ENTRY(MemoryRegion) subregions_link; QTAILQ_HEAD(coalesced_ranges, CoalescedMemoryRange) coalesced; - const char *name; uint8_t dirty_log_mask; unsigned ioeventfd_nb; MemoryRegionIoeventfd *ioeventfds; |