From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=48149 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PmtGc-0003J9-5l for qemu-devel@nongnu.org; Tue, 08 Feb 2011 14:30:27 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PmtGb-0003ns-8r for qemu-devel@nongnu.org; Tue, 08 Feb 2011 14:30:26 -0500 Received: from mail-yi0-f45.google.com ([209.85.218.45]:61541) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PmrDI-0000yQ-DV for qemu-devel@nongnu.org; Tue, 08 Feb 2011 12:18:52 -0500 Received: by mail-yi0-f45.google.com with SMTP id 21so2633904yie.4 for ; Tue, 08 Feb 2011 09:18:52 -0800 (PST) Sender: Paolo Bonzini From: Paolo Bonzini Date: Tue, 8 Feb 2011 18:18:23 +0100 Message-Id: <1297185509-20996-7-git-send-email-pbonzini@redhat.com> In-Reply-To: <1297185509-20996-1-git-send-email-pbonzini@redhat.com> References: <1297185509-20996-1-git-send-email-pbonzini@redhat.com> Subject: [Qemu-devel] [CFT PATCH 06/12] 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 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 c1d0ceb..5b13961 100644 --- a/cpus.c +++ b/cpus.c @@ -1061,7 +1061,7 @@ bool cpu_exec_all(void) if (r == EXCP_DEBUG) { break; } - } else if (env->stop) { + } else if (env->stop || env->stopped) { break; } } -- 1.7.3.5