summaryrefslogtreecommitdiff
path: root/cpu-all.h
diff options
context:
space:
mode:
authorAlex Williamson <alex.williamson@redhat.com>2010-06-25 11:08:38 -0600
committerAnthony Liguori <aliguori@us.ibm.com>2010-07-06 10:36:27 -0500
commitd17b5288d91c935cc8795fa0620721da0a3865e1 (patch)
tree23d324b4fd378a8fd2e1f285758a76a11ce19459 /cpu-all.h
parentf292787d9addffd5f0a2df9516c158bfb5792b61 (diff)
downloadqemu-d17b5288d91c935cc8795fa0620721da0a3865e1.tar.gz
Remove uses of ram.last_offset (aka last_ram_offset)
We currently need this either to allocate the next ram_addr_t for a new block, or for total memory to be migrated. Both of which we can calculate without need of this to keep us in a contiguous address space. Signed-off-by: Alex Williamson <alex.williamson@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'cpu-all.h')
-rw-r--r--cpu-all.h1
1 files changed, 0 insertions, 1 deletions
diff --git a/cpu-all.h b/cpu-all.h
index e31c2de7bf..dbb21394d1 100644
--- a/cpu-all.h
+++ b/cpu-all.h
@@ -870,7 +870,6 @@ typedef struct RAMBlock {
typedef struct RAMList {
uint8_t *phys_dirty;
- ram_addr_t last_offset;
QLIST_HEAD(ram, RAMBlock) blocks;
} RAMList;
extern RAMList ram_list;