From: Glauber Costa Date: Fri, 24 Jul 2009 20:20:23 +0000 (-0400) Subject: fix broken migration X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f16f83481c428ff49c8c4c1567a0202d416df078;p=thirdparty%2Fqemu.git fix broken migration 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 CC: Paolo Bonzini Signed-off-by: Anthony Liguori Signed-off-by: Glauber Costa --- diff --git a/vl.c b/vl.c index 6cd0ce7500c..0e4672785a1 100644 --- a/vl.c +++ b/vl.c @@ -5721,8 +5721,10 @@ int main(int argc, char **argv, char **envp) if (loadvm) do_loadvm(loadvm); - if (incoming) + if (incoming) { + autostart = 0; qemu_start_incoming_migration(incoming); + } if (autostart) vm_start();