diff mbox

[11/21] exit round-robin vcpu loop if cpu->stopped is true

Message ID 1298277820-8817-12-git-send-email-pbonzini@redhat.com
State New
Headers show

Commit Message

Paolo Bonzini Feb. 21, 2011, 8:43 a.m. UTC
Sometimes vcpus are stopped directly without going through ->stop = 1.
Exit the VCPU execution loop in this case as well.

Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
---
 cpus.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
diff mbox

Patch

diff --git a/cpus.c b/cpus.c
index 7a9440f..912e0d8 100644
--- a/cpus.c
+++ b/cpus.c
@@ -1098,7 +1098,7 @@  bool cpu_exec_all(void)
                 cpu_handle_debug_exception(env);
                 break;
             }
-        } else if (env->stop) {
+        } else if (env->stop || env->stopped) {
             break;
         }
     }