diff options
author | Avi Kivity <avi@redhat.com> | 2011-12-21 13:09:49 +0200 |
---|---|---|
committer | Avi Kivity <avi@redhat.com> | 2012-01-04 13:34:48 +0200 |
commit | 7c63736603640ca7b74b65d71afc54fd0a3492f9 (patch) | |
tree | dd3f64ddeceb262b2abf0ffa426dfbba35c492b8 /cpu-all.h | |
parent | c5705a7728b4a6bc9e4f2d35911adbaf28042b25 (diff) |
Store MemoryRegion in RAMBlock
As a step in moving live migration from RAMBlocks to MemoryRegions,
store the MemoryRegion in a RAMBlock.
Reviewed-by: Anthony Liguori <aliguori@us.ibm.com>
Signed-off-by: Avi Kivity <avi@redhat.com>
Diffstat (limited to 'cpu-all.h')
-rw-r--r-- | cpu-all.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -476,6 +476,7 @@ extern ram_addr_t ram_size; #define RAM_PREALLOC_MASK (1 << 0) typedef struct RAMBlock { + struct MemoryRegion *mr; uint8_t *host; ram_addr_t offset; ram_addr_t length; |