summaryrefslogtreecommitdiffstats
path: root/savevm.c
diff options
context:
space:
mode:
authorAnthony Liguori2011-02-16 15:47:07 +0100
committerAnthony Liguori2011-02-16 15:47:07 +0100
commitc5d69e6bbf37bf5e3882060764b15e018e6a5321 (patch)
treee246e96bdfffbc5e07682c5a39ea7a65482a5935 /savevm.c
parentHandle icount for powerpc tbl/tbu/decr load and store. (diff)
parentkvm: x86: Introduce kvmclock device to save/restore its state (diff)
downloadqemu-c5d69e6bbf37bf5e3882060764b15e018e6a5321.tar.gz
qemu-c5d69e6bbf37bf5e3882060764b15e018e6a5321.tar.xz
qemu-c5d69e6bbf37bf5e3882060764b15e018e6a5321.zip
Merge remote branch 'qemu-kvm/uq/master' into staging
Diffstat (limited to 'savevm.c')
-rw-r--r--savevm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/savevm.c b/savevm.c
index 6d83b0f4dc..a50fd31154 100644
--- a/savevm.c
+++ b/savevm.c
@@ -1575,7 +1575,7 @@ static int qemu_savevm_state(Monitor *mon, QEMUFile *f)
int ret;
saved_vm_running = vm_running;
- vm_stop(0);
+ vm_stop(VMSTOP_SAVEVM);
if (qemu_savevm_state_blocked(mon)) {
ret = -EINVAL;
@@ -1904,7 +1904,7 @@ void do_savevm(Monitor *mon, const QDict *qdict)
}
saved_vm_running = vm_running;
- vm_stop(0);
+ vm_stop(VMSTOP_SAVEVM);
memset(sn, 0, sizeof(*sn));