From patchwork Mon Feb 21 08:43:30 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Paolo Bonzini X-Patchwork-Id: 83794 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 27C15B716B for ; Mon, 21 Feb 2011 20:16:25 +1100 (EST) Received: from localhost ([127.0.0.1]:50469 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PrRsT-0006vm-RM for incoming@patchwork.ozlabs.org; Mon, 21 Feb 2011 04:16:21 -0500 Received: from [140.186.70.92] (port=49333 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PrRNF-0004hB-Qm for qemu-devel@nongnu.org; Mon, 21 Feb 2011 03:44:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PrRNE-0000Mq-A1 for qemu-devel@nongnu.org; Mon, 21 Feb 2011 03:44:05 -0500 Received: from mail-ww0-f53.google.com ([74.125.82.53]:49307) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PrRNE-0000IY-5O for qemu-devel@nongnu.org; Mon, 21 Feb 2011 03:44:04 -0500 Received: by mail-ww0-f53.google.com with SMTP id 18so5370402wwi.10 for ; Mon, 21 Feb 2011 00:44:03 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:sender:from:to:subject:date:message-id:x-mailer :in-reply-to:references; bh=rhUL0yE0okbRpvWkauL/NuUPl7l1swULfWe9AlsPdiM=; b=Wcjf5X7vWn2TPfomeBripbb2wH7wv2WTgE1cBiDCQ50qiHkvDOZni7Cl7kdEPlft1S YpFmy7ZZa2GCaXiQHYUGGTo9pBopikroz+7q785/HmrmQzYSkWdELhu1GfQcBS9xe0dd Zpu3gEhowUVRQz3mgV+iOTB5m4swyFHn1bsX0= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=sender:from:to:subject:date:message-id:x-mailer:in-reply-to :references; b=rpNLMe24VKGbR5DmpBCDBwLM5J0vvMf0/WayuZFy/4T9cNGwwz9CP0ze/yxPr3D5Ds 4DSj/GyFfNlz7xMC3NKh9xLGaP0USEqbsm/jhz7RVaD1pQkPKuBNM4vATWhxsZztgxtc 38wDTbjnvKGmU8GQCfpLmxwN5RXApLdASjJZE= Received: by 10.227.72.147 with SMTP id m19mr924602wbj.131.1298277843791; Mon, 21 Feb 2011 00:44:03 -0800 (PST) Received: from localhost.localdomain (93-34-149-100.ip50.fastwebnet.it [93.34.149.100]) by mx.google.com with ESMTPS id t5sm1945464wes.9.2011.02.21.00.44.02 (version=TLSv1/SSLv3 cipher=OTHER); Mon, 21 Feb 2011 00:44:03 -0800 (PST) From: Paolo Bonzini To: qemu-devel@nongnu.org Date: Mon, 21 Feb 2011 09:43:30 +0100 Message-Id: <1298277820-8817-12-git-send-email-pbonzini@redhat.com> X-Mailer: git-send-email 1.7.3.5 In-Reply-To: <1298277820-8817-1-git-send-email-pbonzini@redhat.com> References: <1298277820-8817-1-git-send-email-pbonzini@redhat.com> X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.6 (newer, 2) X-Received-From: 74.125.82.53 Subject: [Qemu-devel] [PATCH 11/21] exit round-robin vcpu loop if cpu->stopped is true X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@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 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; } }