diff options
author | Aurelien Jarno <aurelien@aurel32.net> | 2012-10-29 14:55:51 +0100 |
---|---|---|
committer | Aurelien Jarno <aurelien@aurel32.net> | 2012-10-29 14:55:51 +0100 |
commit | 3f4331bfd112840e94935b0fd098ee88c07beabc (patch) | |
tree | 36fd14200ceb2b73832191ae03311bcf9bd0886c /migration.c | |
parent | 01f590d5a3385c3d79c6afda7acd66edf4bf48d3 (diff) | |
parent | 29ed72f15a4c8fd3ac106d874f76cc27b654fd25 (diff) |
Merge branch 'queue/qmp' of git://repo.or.cz/qemu/qmp-unstable
* 'queue/qmp' of git://repo.or.cz/qemu/qmp-unstable:
migration: go to paused state after finishing incoming migration with -S
qmp: handle stop/cont in INMIGRATE state
hmp: fix info cpus for sparc targets
Diffstat (limited to 'migration.c')
-rw-r--r-- | migration.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/migration.c b/migration.c index bd55a15f82..300ab75aaf 100644 --- a/migration.c +++ b/migration.c @@ -99,7 +99,7 @@ void process_incoming_migration(QEMUFile *f) if (autostart) { vm_start(); } else { - runstate_set(RUN_STATE_PRELAUNCH); + runstate_set(RUN_STATE_PAUSED); } } |