Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 9BD6AC05027 for ; Wed, 8 Feb 2023 11:52:41 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230429AbjBHLwk (ORCPT ); Wed, 8 Feb 2023 06:52:40 -0500 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:43574 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229457AbjBHLwh (ORCPT ); Wed, 8 Feb 2023 06:52:37 -0500 Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by lindbergh.monkeyblade.net (Postfix) with ESMTP id 0FCD58A6A for ; Wed, 8 Feb 2023 03:52:36 -0800 (PST) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 3D09D1477; Wed, 8 Feb 2023 03:53:18 -0800 (PST) Received: from [192.168.178.6] (unknown [172.31.20.19]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 57E8B3F703; Wed, 8 Feb 2023 03:52:34 -0800 (PST) Message-ID: Date: Wed, 8 Feb 2023 12:52:33 +0100 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.4.2 Subject: Re: [PATCH v2 2/3] sched/uclamp: Ignore (util == 0) optimization in feec() when p_util_max = 0 Content-Language: en-US To: Vincent Guittot , Qais Yousef Cc: Ingo Molnar , Peter Zijlstra , linux-kernel@vger.kernel.org, Lukasz Luba , Wei Wang , Xuewen Yan , Hank , Jonathan JMChen References: <20230205224318.2035646-1-qyousef@layalina.io> <20230205224318.2035646-3-qyousef@layalina.io> From: Dietmar Eggemann In-Reply-To: Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 07/02/2023 11:04, Vincent Guittot wrote: > On Sun, 5 Feb 2023 at 23:43, Qais Yousef wrote: >> >> find_energy_efficient_cpu() bails out early if effective util of the >> task is 0. When uclamp is being used, this could lead to wrong decisions >> when uclamp_max is set to 0. Cater for that. IMHO this needs a little bit more explanation. Someone could argue that 'util > 0, uclamp_min=0, uclamp_max=0' is a valid setup for a task which should let it appear as a task with 0 util (capped to 0). >> Fixes: d81304bc6193 ("sched/uclamp: Cater for uclamp in find_energy_efficient_cpu()'s early exit condition") >> Signed-off-by: Qais Yousef >> --- >> kernel/sched/fair.c | 2 +- >> 1 file changed, 1 insertion(+), 1 deletion(-) >> >> diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c >> index 7a21ee74139f..a8c3d92ff3f6 100644 >> --- a/kernel/sched/fair.c >> +++ b/kernel/sched/fair.c >> @@ -7374,7 +7374,7 @@ static int find_energy_efficient_cpu(struct task_struct *p, int prev_cpu) >> target = prev_cpu; >> >> sync_entity_load_avg(&p->se); >> - if (!uclamp_task_util(p, p_util_min, p_util_max)) >> + if (!uclamp_task_util(p, p_util_min, p_util_max) && p_util_max != 0) > > The below should do the same without testing twice p_util_max: > uclamp_task_util(p, p_util_min, ULONG_MAX) Since uclamp_task_util() is only used here and we don't want to test for capping to 0 anymore, why not just get rid of this function and use: !(task_util_est(p) || p_util_min) [...]