From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=49465 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1PrRNL-0004iy-7B for qemu-devel@nongnu.org; Mon, 21 Feb 2011 03:44:12 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1PrRNK-0000Pa-2M for qemu-devel@nongnu.org; Mon, 21 Feb 2011 03:44:11 -0500 Received: from mail-wy0-f173.google.com ([74.125.82.173]:61006) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1PrRNJ-0000I2-UV for qemu-devel@nongnu.org; Mon, 21 Feb 2011 03:44:10 -0500 Received: by mail-wy0-f173.google.com with SMTP id 29so1150726wyb.4 for ; Mon, 21 Feb 2011 00:44:09 -0800 (PST) Sender: Paolo Bonzini From: Paolo Bonzini Date: Mon, 21 Feb 2011 09:43:34 +0100 Message-Id: <1298277820-8817-16-git-send-email-pbonzini@redhat.com> In-Reply-To: <1298277820-8817-1-git-send-email-pbonzini@redhat.com> References: <1298277820-8817-1-git-send-email-pbonzini@redhat.com> Subject: [Qemu-devel] [PATCH 15/21] do not use timedwait on qemu_pause_cond List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org all_vcpus_paused can start returning true after penv->stopped changes from 0 to 1. When this is done, qemu_pause_cond is always signaled. Signed-off-by: Paolo Bonzini --- cpus.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/cpus.c b/cpus.c index 8c147bc..66fd384 100644 --- a/cpus.c +++ b/cpus.c @@ -938,7 +938,7 @@ void pause_all_vcpus(void) } while (!all_vcpus_paused()) { - qemu_cond_timedwait(&qemu_pause_cond, &qemu_global_mutex, 100); + qemu_cond_wait(&qemu_pause_cond, &qemu_global_mutex); penv = first_cpu; while (penv) { qemu_cpu_kick(penv); -- 1.7.3.5