]> git.proxmox.com Git - mirror_qemu.git/commitdiff
fix broken migration
authorGlauber Costa <glommer@redhat.com>
Fri, 24 Jul 2009 20:20:23 +0000 (16:20 -0400)
committerAnthony Liguori <aliguori@us.ibm.com>
Mon, 27 Jul 2009 19:09:15 +0000 (14:09 -0500)
While fixing migration with -S, commit
89befdd1a6b18215153b8976682d57b7d03d5782 broke the rest of us. Poor
glommer, with a poor family, spare him his life from this monstruosity.

Since the unconditional vm_start, not autostart was the villain, I'm putting
back autostart. Let me know if you prefer other solutions, it doesn't really matter,
doesn't really matter to me.

Any way the wind blows...

Signed-off-by: Glauber Costa <glommer@redhat.com>
CC: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
vl.c

diff --git a/vl.c b/vl.c
index 2152f6ae53a7b707a9e11b4cb28a9e9a78d2c840..bdf2fe8f1246fb695f4bbbce636bada981d2443b 100644 (file)
--- a/vl.c
+++ b/vl.c
@@ -6087,8 +6087,10 @@ int main(int argc, char **argv, char **envp)
     if (loadvm)
         do_loadvm(cur_mon, loadvm);
 
-    if (incoming)
+    if (incoming) {
+        autostart = 0;
         qemu_start_incoming_migration(incoming);
+    }
 
     if (autostart)
         vm_start();