mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Hongyan Xia <hongyan.xia2@arm.com>
To: Xuewen Yan <xuewen.yan@unisoc.com>,
	mingo@redhat.com, peterz@infradead.org, juri.lelli@redhat.com,
	vincent.guittot@linaro.org
Cc: dietmar.eggemann@arm.com, rostedt@goodmis.org,
	bsegall@google.com, mgorman@suse.de, vschneid@redhat.com,
	qyousef@layalina.io, ke.wang@unisoc.com, di.shen@unisoc.com,
	xuewen.yan94@gmail.com, linux-kernel@vger.kernel.org
Subject: Re: [PATCH 1/2] sched/uclamp: Alaways using uclamp_is_used()
Date: Thu, 13 Feb 2025 15:02:57 +0000	[thread overview]
Message-ID: <d6d9c9cf-da10-4b60-be76-2ca3cdd88042@arm.com> (raw)
In-Reply-To: <20250213091554.2593-1-xuewen.yan@unisoc.com>

Title: s/Alaways/Always/

On 13/02/2025 09:15, Xuewen Yan wrote:
> Now, we have the uclamp_is_used() func to judge the uclamp enabled,
> so replace the static_branch_unlikely(&sched_uclamp_used) with it.
> 
> Signed-off-by: Xuewen Yan <xuewen.yan@unisoc.com>
> ---
>   kernel/sched/core.c  |  4 ++--
>   kernel/sched/sched.h | 28 ++++++++++++++--------------
>   2 files changed, 16 insertions(+), 16 deletions(-)
> 
> diff --git a/kernel/sched/core.c b/kernel/sched/core.c
> index 165c90ba64ea..841147759ec7 100644
> --- a/kernel/sched/core.c
> +++ b/kernel/sched/core.c
> @@ -1756,7 +1756,7 @@ static inline void uclamp_rq_inc(struct rq *rq, struct task_struct *p)
>   	 * The condition is constructed such that a NOP is generated when
>   	 * sched_uclamp_used is disabled.
>   	 */
> -	if (!static_branch_unlikely(&sched_uclamp_used))
> +	if (!uclamp_is_used())
>   		return;
>   
>   	if (unlikely(!p->sched_class->uclamp_enabled))
> @@ -1783,7 +1783,7 @@ static inline void uclamp_rq_dec(struct rq *rq, struct task_struct *p)
>   	 * The condition is constructed such that a NOP is generated when
>   	 * sched_uclamp_used is disabled.
>   	 */
> -	if (!static_branch_unlikely(&sched_uclamp_used))
> +	if (!uclamp_is_used())
>   		return;
>   
>   	if (unlikely(!p->sched_class->uclamp_enabled))
> diff --git a/kernel/sched/sched.h b/kernel/sched/sched.h
> index 38e0e323dda2..f5de05354d80 100644
> --- a/kernel/sched/sched.h
> +++ b/kernel/sched/sched.h
> @@ -3394,6 +3394,19 @@ static inline bool update_other_load_avgs(struct rq *rq) { return false; }
>   
>   unsigned long uclamp_eff_value(struct task_struct *p, enum uclamp_id clamp_id);
>   
> +/*
> + * When uclamp is compiled in, the aggregation at rq level is 'turned off'
> + * by default in the fast path and only gets turned on once userspace performs
> + * an operation that requires it.
> + *
> + * Returns true if userspace opted-in to use uclamp and aggregation at rq level
> + * hence is active.
> + */
> +static inline bool uclamp_is_used(void)
> +{
> +	return static_branch_likely(&sched_uclamp_used);
> +}
> +
>   static inline unsigned long uclamp_rq_get(struct rq *rq,
>   					  enum uclamp_id clamp_id)
>   {
> @@ -3417,7 +3430,7 @@ static inline bool uclamp_rq_is_capped(struct rq *rq)
>   	unsigned long rq_util;
>   	unsigned long max_util;
>   
> -	if (!static_branch_likely(&sched_uclamp_used))
> +	if (!uclamp_is_used())
>   		return false;
>   
>   	rq_util = cpu_util_cfs(cpu_of(rq)) + cpu_util_rt(rq);
> @@ -3426,19 +3439,6 @@ static inline bool uclamp_rq_is_capped(struct rq *rq)
>   	return max_util != SCHED_CAPACITY_SCALE && rq_util >= max_util;
>   }
>   
> -/*
> - * When uclamp is compiled in, the aggregation at rq level is 'turned off'
> - * by default in the fast path and only gets turned on once userspace performs
> - * an operation that requires it.
> - *
> - * Returns true if userspace opted-in to use uclamp and aggregation at rq level
> - * hence is active.
> - */
> -static inline bool uclamp_is_used(void)
> -{
> -	return static_branch_likely(&sched_uclamp_used);
> -}
> -
>   #define for_each_clamp_id(clamp_id) \
>   	for ((clamp_id) = 0; (clamp_id) < UCLAMP_CNT; (clamp_id)++)
>   

Reviewed-by: Hongyan Xia <hongyan.xia2@arm.com>

  parent reply	other threads:[~2025-02-13 15:03 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-02-13  9:15 Xuewen Yan
2025-02-13  9:15 ` [PATCH 2/2] sched/uclamp: Add uclamp_is_used() check before enable it Xuewen Yan
2025-02-13 14:51   ` Christian Loehle
2025-02-13 14:57   ` Hongyan Xia
2025-02-18 17:24   ` Vincent Guittot
2025-02-19  7:14     ` Xuewen Yan
2025-02-22 23:36   ` Qais Yousef
2025-02-24  1:55     ` Xuewen Yan
2025-02-24 23:38       ` Qais Yousef
2025-02-13 15:02 ` Hongyan Xia [this message]
2025-02-13 18:15 ` [PATCH 1/2] sched/uclamp: Alaways using uclamp_is_used() Christian Loehle

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=d6d9c9cf-da10-4b60-be76-2ca3cdd88042@arm.com \
    --to=hongyan.xia2@arm.com \
    --cc=bsegall@google.com \
    --cc=di.shen@unisoc.com \
    --cc=dietmar.eggemann@arm.com \
    --cc=juri.lelli@redhat.com \
    --cc=ke.wang@unisoc.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mgorman@suse.de \
    --cc=mingo@redhat.com \
    --cc=peterz@infradead.org \
    --cc=qyousef@layalina.io \
    --cc=rostedt@goodmis.org \
    --cc=vincent.guittot@linaro.org \
    --cc=vschneid@redhat.com \
    --cc=xuewen.yan94@gmail.com \
    --cc=xuewen.yan@unisoc.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®