From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=41059 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PyRxF-0005F3-L5 for qemu-devel@nongnu.org; Sat, 12 Mar 2011 11:46:14 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PyRxE-0004Wr-GF for qemu-devel@nongnu.org; Sat, 12 Mar 2011 11:46:13 -0500 Received: from mail-ww0-f53.google.com ([74.125.82.53]:51795) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PyRxE-0004Wf-8B for qemu-devel@nongnu.org; Sat, 12 Mar 2011 11:46:12 -0500 Received: by wwj40 with SMTP id 40so4593089wwj.10 for ; Sat, 12 Mar 2011 08:46:11 -0800 (PST) Sender: Paolo Bonzini From: Paolo Bonzini Date: Sat, 12 Mar 2011 17:43:58 +0100 Message-Id: <1299948248-30206-12-git-send-email-pbonzini@redhat.com> In-Reply-To: <1299948248-30206-1-git-send-email-pbonzini@redhat.com> References: <1299948248-30206-1-git-send-email-pbonzini@redhat.com> Subject: [Qemu-devel] [PATCH v4 upstream 11/21] exit round-robin vcpu loop if cpu->stopped is true List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: blauwirbel@gmail.com 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 --- cpus.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/cpus.c b/cpus.c index c5743c4..785a104 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; } } -- 1.7.4