diff mbox

[6/6] Fix incoming migration with iothread

Message ID c5f32c99c6855d466737daf1cd262e7e92062f87.1265241351.git.mtosatti@redhat.com (mailing list archive)
State New, archived
Headers show

Commit Message

Marcelo Tosatti Feb. 3, 2010, 11:55 p.m. UTC
None
diff mbox

Patch

diff --git a/vl.c b/vl.c
index 50f133d..57f0ba5 100644
--- a/vl.c
+++ b/vl.c
@@ -3282,6 +3282,8 @@  static int cpu_can_run(CPUState *env)
         return 0;
     if (env->stopped)
         return 0;
+    if (!vm_running)
+        return 0;
     return 1;
 }