From: Peter Zijlstra <peterz@infradead.org>
To: Vincent Guittot <vincent.guittot@linaro.org>
Cc: mingo@redhat.com, juri.lelli@redhat.com,
dietmar.eggemann@arm.com, rostedt@goodmis.org,
bsegall@google.com, mgorman@suse.de, vschneid@redhat.com,
linux-kernel@vger.kernel.org
Subject: Re: [PATCH] sched/fair: Fix pelt lost idle time detection
Date: Wed, 8 Oct 2025 16:08:27 +0200 [thread overview]
Message-ID: <20251008140827.GY4067720@noisy.programming.kicks-ass.net> (raw)
In-Reply-To: <20251008131214.3759798-1-vincent.guittot@linaro.org>
On Wed, Oct 08, 2025 at 03:12:14PM +0200, Vincent Guittot wrote:
> The check for some lost idle pelt time should be always done when
> pick_next_task_fair() fails to pick a task and not only when we call it
> from the fair fast-path.
>
> The case happens when the last running task on rq is a RT or DL task. When
> the latter goes to sleep and the /Sum of util_sum of the rq is at the max
> value, we don't account the lost of idle time whereas we should.
>
> Fixes: 67692435c411 ("sched: Rework pick_next_task() slow-path")
> Signed-off-by: Vincent Guittot <vincent.guittot@linaro.org>
Durr, sorry about that. Let me go queue this.
> ---
>
> I Noticed this while reviewing [1]
>
> [1] https://lore.kernel.org/all/20251006105453.648473106@infradead.org/
>
> kernel/sched/fair.c | 26 +++++++++++++-------------
> 1 file changed, 13 insertions(+), 13 deletions(-)
>
> diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c
> index b3be1e2749ce..dd0ea01af730 100644
> --- a/kernel/sched/fair.c
> +++ b/kernel/sched/fair.c
> @@ -8920,21 +8920,21 @@ pick_next_task_fair(struct rq *rq, struct task_struct *prev, struct rq_flags *rf
> return p;
>
> idle:
> - if (!rf)
> - return NULL;
> -
> - new_tasks = sched_balance_newidle(rq, rf);
> + if (rf) {
> + new_tasks = sched_balance_newidle(rq, rf);
>
> - /*
> - * Because sched_balance_newidle() releases (and re-acquires) rq->lock, it is
> - * possible for any higher priority task to appear. In that case we
> - * must re-start the pick_next_entity() loop.
> - */
> - if (new_tasks < 0)
> - return RETRY_TASK;
> + /*
> + * Because sched_balance_newidle() releases (and re-acquires)
> + * rq->lock, it is possible for any higher priority task to
> + * appear. In that case we must re-start the pick_next_entity()
> + * loop.
> + */
> + if (new_tasks < 0)
> + return RETRY_TASK;
>
> - if (new_tasks > 0)
> - goto again;
> + if (new_tasks > 0)
> + goto again;
> + }
>
> /*
> * rq is about to be idle, check if we need to update the
> --
> 2.43.0
>
next prev parent reply other threads:[~2025-10-08 14:08 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-10-08 13:12 [PATCH] sched/fair: Fix pelt lost idle time detection Vincent Guittot
2025-10-08 14:08 ` Peter Zijlstra [this message]
2025-10-14 11:47 ` [tip: sched/urgent] " tip-bot2 for Vincent Guittot
2025-12-02 0:23 ` [PATCH] " Samuel Wu
2025-12-05 15:08 ` Vincent Guittot
2025-12-06 0:54 ` Samuel Wu
2025-12-06 1:20 ` Samuel Wu
2025-12-13 3:54 ` Vincent Guittot
2025-12-23 17:27 ` Qais Yousef
2025-12-23 18:49 ` Qais Yousef
2026-01-05 20:08 ` Samuel Wu
2026-01-12 15:11 ` Qais Yousef
2026-01-15 23:27 ` Samuel Wu
2026-01-07 7:54 ` Vincent Guittot
2026-01-07 7:50 ` Vincent Guittot
2026-01-12 15:10 ` Qais Yousef
2026-01-16 14:02 ` Vincent Guittot
2026-01-16 6:51 ` Alex Hoh (賀振坤)
2026-01-16 14:21 ` Vincent Guittot
2026-01-16 16:13 ` Vincent Guittot
2026-01-20 5:46 ` Alex Hoh (賀振坤)
2026-01-20 8:36 ` Vincent Guittot
2026-01-21 1:19 ` Samuel Wu
2026-01-21 10:14 ` Vincent Guittot
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=20251008140827.GY4067720@noisy.programming.kicks-ass.net \
--to=peterz@infradead.org \
--cc=bsegall@google.com \
--cc=dietmar.eggemann@arm.com \
--cc=juri.lelli@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mgorman@suse.de \
--cc=mingo@redhat.com \
--cc=rostedt@goodmis.org \
--cc=vincent.guittot@linaro.org \
--cc=vschneid@redhat.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