[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20251218081409.GG3707891@noisy.programming.kicks-ass.net>
Date: Thu, 18 Dec 2025 09:14:09 +0100
From: Peter Zijlstra <peterz@...radead.org>
To: Zhan Xusheng <zhanxusheng1024@...il.com>
Cc: vincent.guittot@...aro.org, dietmar.eggemann@....com,
linux-sched@...r.kernel.org, linux-kernel@...r.kernel.org,
Zhan Xusheng <zhanxusheng@...omi.com>
Subject: Re: [PATCH] sched/fair: factor out common sched_entity stats/task
lookup
On Wed, Dec 17, 2025 at 03:00:40PM +0800, Zhan Xusheng wrote:
> The fair scheduler has several update_stats_*_fair() helpers which
> open-code the same boilerplate to retrieve sched_statistics and the
> associated task (if any) from a sched_entity.
>
> Factor this common logic into a small static inline helper to reduce
> duplication and improve readability, without changing behaviour or
> control flow.
>
> No functional change intended.
>
> Signed-off-by: Zhan Xusheng <zhanxusheng@...omi.com>
> ---
> kernel/sched/fair.c | 24 ++++++++++++------------
> 1 file changed, 12 insertions(+), 12 deletions(-)
>
> diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c
> index da46c3164537..b4a9319a5753 100644
> --- a/kernel/sched/fair.c
> +++ b/kernel/sched/fair.c
> @@ -1243,6 +1243,15 @@ static void update_curr_fair(struct rq *rq)
> update_curr(cfs_rq_of(&rq->donor->se));
> }
>
> +static inline void
> +get_se_stats_and_task(struct sched_entity *se,
> + struct sched_statistics **stats,
> + struct task_struct **p)
> +{
> + *stats = __schedstats_from_se(se);
> + *p = entity_is_task(se) ? task_of(se) : NULL;
> +}
> +
> static inline void
> update_stats_wait_start_fair(struct cfs_rq *cfs_rq, struct sched_entity *se)
> {
> @@ -1252,10 +1261,7 @@ update_stats_wait_start_fair(struct cfs_rq *cfs_rq, struct sched_entity *se)
> if (!schedstat_enabled())
> return;
>
> - stats = __schedstats_from_se(se);
> -
> - if (entity_is_task(se))
> - p = task_of(se);
> + get_se_stats_and_task(se, &stats, &p);
>
> __update_stats_wait_start(rq_of(cfs_rq), p, stats);
> }
> @@ -1269,7 +1275,7 @@ update_stats_wait_end_fair(struct cfs_rq *cfs_rq, struct sched_entity *se)
> if (!schedstat_enabled())
> return;
>
> - stats = __schedstats_from_se(se);
> + get_se_stats_and_task(se, &stats, &p);
>
> /*
> * When the sched_schedstat changes from 0 to 1, some sched se
> @@ -1280,9 +1286,6 @@ update_stats_wait_end_fair(struct cfs_rq *cfs_rq, struct sched_entity *se)
> if (unlikely(!schedstat_val(stats->wait_start)))
> return;
>
> - if (entity_is_task(se))
> - p = task_of(se);
> -
> __update_stats_wait_end(rq_of(cfs_rq), p, stats);
> }
>
> @@ -1295,10 +1298,7 @@ update_stats_enqueue_sleeper_fair(struct cfs_rq *cfs_rq, struct sched_entity *se
> if (!schedstat_enabled())
> return;
>
> - stats = __schedstats_from_se(se);
> -
> - if (entity_is_task(se))
> - tsk = task_of(se);
> + get_se_stats_and_task(se, &stats, &p);
>
> __update_stats_enqueue_sleeper(rq_of(cfs_rq), tsk, stats);
> }
Urgh, no. The stats and task things are unrelated, so munging them
together like this makes no sense.
Worse, the helper is terrible for failing to use the return value for
its intended purpose.
Powered by blists - more mailing lists