From mboxrd@z Thu Jan 1 00:00:00 1970 From: Marcelo Tosatti Subject: Re: [PATCH 02/15] Refactor cpu_has_work/any_cpu_has_work in cpus.c Date: Tue, 8 Feb 2011 16:50:56 -0200 Message-ID: <20110208185056.GA13617@amt.cnet> References: <1e7a4f5097aafb5da844c1b9ff8661539d0d10e8.1297077506.git.jan.kiszka@siemens.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: Avi Kivity , kvm@vger.kernel.org, qemu-devel@nongnu.org To: Jan Kiszka Return-path: Received: from mx1.redhat.com ([209.132.183.28]:28655 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756024Ab1BIAa5 (ORCPT ); Tue, 8 Feb 2011 19:30:57 -0500 Content-Disposition: inline In-Reply-To: <1e7a4f5097aafb5da844c1b9ff8661539d0d10e8.1297077506.git.jan.kiszka@siemens.com> Sender: kvm-owner@vger.kernel.org List-ID: On Mon, Feb 07, 2011 at 12:19:13PM +0100, Jan Kiszka wrote: > Avoid duplicate use of the function name cpu_has_work, it's confusing. > Refactor cpu_has_work to cpu_is_idle and do the same with > any_cpu_has_work. > > Signed-off-by: Jan Kiszka > --- > cpus.c | 43 +++++++++++++++++++++++-------------------- > 1 files changed, 23 insertions(+), 20 deletions(-) > > diff --git a/cpus.c b/cpus.c > index d54ec7d..cd764f2 100644 > --- a/cpus.c > +++ b/cpus.c > @@ -137,29 +137,30 @@ static int cpu_can_run(CPUState *env) > return 1; > } > > -static int cpu_has_work(CPUState *env) > +static bool cpu_is_idle(CPUState *env) > { > - if (env->stop) > - return 1; > - if (env->queued_work_first) > - return 1; > - if (env->stopped || !vm_running) > - return 0; > - if (!env->halted) > - return 1; > - if (qemu_cpu_has_work(env)) > - return 1; > - return 0; > + if (env->stop || env->queued_work_first) { > + return false; > + } > + if (env->stopped || !vm_running) { > + return true; > + } > + if (!env->halted || qemu_cpu_has_work(env)) { > + return false; > + } > + return true; > } Do you really find it easier to read evaluations grouped with || ? I don't. Sorry but the name change does not feel right either: CPU is still idle if the vm is not running.