From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45415) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1boRFM-0002g4-IZ for qemu-devel@nongnu.org; Mon, 26 Sep 2016 04:26:45 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1boRFG-0003G4-Hp for qemu-devel@nongnu.org; Mon, 26 Sep 2016 04:26:43 -0400 Received: from mail-wm0-f48.google.com ([74.125.82.48]:35089) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1boRFG-0003Fy-CD for qemu-devel@nongnu.org; Mon, 26 Sep 2016 04:26:38 -0400 Received: by mail-wm0-f48.google.com with SMTP id l132so138073270wmf.0 for ; Mon, 26 Sep 2016 01:26:38 -0700 (PDT) References: <1474615909-17069-1-git-send-email-pbonzini@redhat.com> <1474615909-17069-13-git-send-email-pbonzini@redhat.com> From: Alex =?utf-8?Q?Benn=C3=A9e?= In-reply-to: <1474615909-17069-13-git-send-email-pbonzini@redhat.com> Date: Mon, 26 Sep 2016 09:25:36 +0100 Message-ID: <874m53gj9b.fsf@linaro.org> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Subject: Re: [Qemu-devel] [PATCH 12/16] cpus-common: remove redundant call to exclusive_idle() List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Paolo Bonzini Cc: qemu-devel@nongnu.org, cota@braap.org, sergey.fedorov@linaro.org, serge.fdrv@gmail.com Paolo Bonzini writes: > No need to call exclusive_idle() from cpu_exec_end since it is done > immediately afterwards in cpu_exec_start. Any exclusive section could > run as soon as cpu_exec_end leaves, because cpu->running is false and the > mutex is not taken, so the call does not add any protection either. > > Signed-off-by: Paolo Bonzini Reviewed-by: Alex Bennée > --- > cpus-common.c | 1 - > docs/tcg-exclusive.promela | 1 - > 2 files changed, 2 deletions(-) > > diff --git a/cpus-common.c b/cpus-common.c > index 115f3d4..80aaf9b 100644 > --- a/cpus-common.c > +++ b/cpus-common.c > @@ -221,7 +221,6 @@ void cpu_exec_end(CPUState *cpu) > qemu_cond_signal(&exclusive_cond); > } > } > - exclusive_idle(); > qemu_mutex_unlock(&qemu_cpu_list_lock); > } > > diff --git a/docs/tcg-exclusive.promela b/docs/tcg-exclusive.promela > index 360edcd..9e7d9e3 100644 > --- a/docs/tcg-exclusive.promela > +++ b/docs/tcg-exclusive.promela > @@ -123,7 +123,6 @@ byte has_waiter[N_CPUS]; > } \ > :: else -> skip; \ > fi; \ > - exclusive_idle(); \ > MUTEX_UNLOCK(mutex); > > // Promela processes -- Alex Bennée