From nobody Sun Feb 8 18:54:59 2026 Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by smtp.subspace.kernel.org (Postfix) with ESMTP id A3A465102F for ; Tue, 5 Mar 2024 09:51:20 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=217.140.110.172 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1709632283; cv=none; b=WC8Z6VkR18QMM0Cq+8tj9NQ6Qp31zSFncWDSP0U1R4bQ2Dm/NfS24SnhPpTQfec63knBk3KJ88BnVbo42ldk1+kYCz1NTRma9tfuMuTCFtnj5r36KW+ufY2qee7oJ5IP1iDW/4CFeZLnML+LwcBgLuczDZmVY9Lz2y7ulPdthGw= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1709632283; c=relaxed/simple; bh=TLO69UVPVH5gIcomtjF0EdvwLPCmGeBYISDDUc/Eplg=; h=From:To:Cc:Subject:Date:Message-Id:MIME-Version; b=j/iHbVgM6PQq5JKN0BZ1/45xdjDKQY2i2bDmBijgPmMXFXz5nwQVAPYxbEBPhEabIDxZBkhdky9xKoH9SXqvAVaBYqXZ1FObovPfJ7PprmQ55cdPzUCH1yWg1w1YEBWKOVlfk3VQMpNzKgl7BF7xl62Hu1oNrJZ3wDzztRuve7c= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=arm.com; spf=pass smtp.mailfrom=arm.com; arc=none smtp.client-ip=217.140.110.172 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=arm.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=arm.com 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 797141FB; Tue, 5 Mar 2024 01:51:56 -0800 (PST) Received: from e133047.cambridge.arm.com (e133047.arm.com [10.1.29.29]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id 5EE813F762; Tue, 5 Mar 2024 01:51:18 -0800 (PST) From: Christian Loehle To: linux-kernel@vger.kernel.org Cc: vincent.guittot@linaro.org, mingo@redhat.com, peterz@infradead.org, dietmar.eggemann@arm.com, Christian Loehle Subject: [PATCH] sched/fair: Remove stale FREQUENCY_UTIL comment Date: Tue, 5 Mar 2024 09:51:11 +0000 Message-Id: <20240305095111.777525-1-christian.loehle@arm.com> X-Mailer: git-send-email 2.34.1 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" effective_cpu_util() flags were removed, so remove the comment part mentioning it. commit 9c0b4bb7f6303 ("sched/cpufreq: Rework schedutil governor performance= estimation") reworked effective_cpu_util() removing enum cpu_util_type. Signed-off-by: Christian Loehle Reviewed-by: Vincent Guittot --- kernel/sched/fair.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c index 533547e3c90a..6b0c47d00fd3 100644 --- a/kernel/sched/fair.c +++ b/kernel/sched/fair.c @@ -7849,8 +7849,6 @@ eenv_pd_max_util(struct energy_env *eenv, struct cpum= ask *pd_cpus, * Performance domain frequency: utilization clamping * must be considered since it affects the selection * of the performance domain frequency. - * NOTE: in case RT tasks are running, by default the - * FREQUENCY_UTIL's utilization can be max OPP. */ eff_util =3D effective_cpu_util(cpu, util, &min, &max); =20 --=20 2.34.1