diff options
author | Alex Williamson <alex.williamson@redhat.com> | 2010-06-25 11:09:50 -0600 |
---|---|---|
committer | Anthony Liguori <aliguori@us.ibm.com> | 2010-07-06 10:36:28 -0500 |
commit | 97ab12d46622d239b439e77d3c193cd775a37984 (patch) | |
tree | 093282d33bf20108018989cd5e32748072682ab2 /vl.c | |
parent | cc9e98cb8f20d5ef87290591a8e4324c482f3cdd (diff) | |
download | qemu-97ab12d46622d239b439e77d3c193cd775a37984.tar.gz qemu-97ab12d46622d239b439e77d3c193cd775a37984.tar.bz2 qemu-97ab12d46622d239b439e77d3c193cd775a37984.zip |
savevm: Migrate RAM based on name/offset
Synchronize RAM blocks with the target and migrate using name/offset
pairs. This ensures both source and target have the same view of
RAM and that we get the right bits into the right slot.
Signed-off-by: Alex Williamson <alex.williamson@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'vl.c')
-rw-r--r-- | vl.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2794,7 +2794,7 @@ int main(int argc, char **argv, char **envp) if (qemu_opts_foreach(&qemu_drive_opts, drive_init_func, &machine->use_scsi, 1) != 0) exit(1); - register_savevm_live(NULL, "ram", 0, 3, NULL, ram_save_live, NULL, + register_savevm_live(NULL, "ram", 0, 4, NULL, ram_save_live, NULL, ram_load, NULL); if (nb_numa_nodes > 0) { |