diff options
author | Avi Kivity <avi@redhat.com> | 2011-07-26 14:26:06 +0300 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2011-07-29 08:25:43 -0500 |
commit | 14a3c10ac890e1982e55bffa37aaca764b4b525b (patch) | |
tree | 5d582ecfa2bcf6b1ea118ea627375d8c47d555a1 /memory.h | |
parent | cc31e6e7b3a96d99493049ec9f4fe8eaefacbaa8 (diff) |
memory: rename MemoryRegion::has_ram_addr to ::terminates
I/O regions will not have ram_addrs, so this is a better name.
Reviewed-by: Anthony Liguori <aliguori@us.ibm.com>
Signed-off-by: Avi Kivity <avi@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'memory.h')
-rw-r--r-- | memory.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -90,7 +90,7 @@ struct MemoryRegion { target_phys_addr_t addr; target_phys_addr_t offset; ram_addr_t ram_addr; - bool has_ram_addr; + bool terminates; MemoryRegion *alias; target_phys_addr_t alias_offset; unsigned priority; |