diff options
author | Umesh Deshpande <udeshpan@redhat.com> | 2011-08-18 11:41:17 -0700 |
---|---|---|
committer | Juan Quintela <quintela@redhat.com> | 2012-12-20 23:08:47 +0100 |
commit | f798b07f517143df3a1e38bccc3f72ade2f080dc (patch) | |
tree | 0ea1d2ebed54e652c12c302711a86f2db72a7d30 /include | |
parent | abb26d63e7e4492d306c13b7e0e799d4c11a067c (diff) | |
download | hqemu-f798b07f517143df3a1e38bccc3f72ade2f080dc.zip hqemu-f798b07f517143df3a1e38bccc3f72ade2f080dc.tar.gz |
add a version number to ram_list
This will be used to detect if last_block might have become invalid
across different calls to ram_save_live.
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Umesh Deshpande <udeshpan@redhat.com>
Signed-off-by: Juan Quintela <quintela@redhat.com>
Reviewed-by: Orit Wasserman <owasserm@redhat.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/exec/cpu-all.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/exec/cpu-all.h b/include/exec/cpu-all.h index 612e950..f052b38 100644 --- a/include/exec/cpu-all.h +++ b/include/exec/cpu-all.h @@ -497,6 +497,7 @@ typedef struct RAMList { uint8_t *phys_dirty; RAMBlock *mru_block; QTAILQ_HEAD(, RAMBlock) blocks; + uint32_t version; } RAMList; extern RAMList ram_list; |