* [PATCH] sched/fair: Fix forked task check in vruntime_normalized
@ 2024-03-28 6:27 mingyang.cui
2024-03-28 6:45 ` kernel test robot
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: mingyang.cui @ 2024-03-28 6:27 UTC (permalink / raw)
To: mingo, peterz, juri.lelli, vincent.guittot, dietmar.eggemann,
rostedt, bsegall, mgorman, bristot
Cc: linux-kernel, kernel-team, stable, tkjos, pjt, quentin.perret,
Patrick.Bellasi, Chris.Redpath, Morten.Rasmussen, joaodias,
mingyang.cui
When rt_mutex_setprio changes a task's scheduling class to RT,
sometimes the task's vruntime is not updated correctly upon
return to the fair class.
Specifically, the following is being observed:
- task has just been created and running for a short time
- task sleep while still in the fair class
- task is boosted to RT via rt_mutex_setprio, which changes
the task to RT and calls check_class_changed.
- check_class_changed leads to detach_task_cfs_rq, at which point
the vruntime_normalized check sees that the task's sum_exec_runtime
is zero, which results in skipping the subtraction of the
rq's min_vruntime from the task's vruntime
- later, when the prio is deboosted and the task is moved back
to the fair class, the fair rq's min_vruntime is added to
the task's vruntime, even though it wasn't subtracted earlier.
Since the task's vruntime is about double that of other tasks in cfs_rq,
the task to be unable to run for a long time when there are continuous
runnable tasks in cfs_rq.
The immediate result is inflation of the task's vruntime, giving
it lower priority (starving it if there's enough available work).
The longer-term effect is inflation of all vruntimes because the
task's vruntime becomes the rq's min_vruntime when the higher
priority tasks go idle. That leads to a vicious cycle, where
the vruntime inflation repeatedly doubled.
The root cause of the problem is that the vruntime_normalized made a
misjudgment. Since the sum_exec_runtime of some tasks that were just
created and run for a short time is zero, the vruntime_normalized
mistakenly thinks that they are tasks that have just been forked.
Therefore, sum_exec_runtime is not subtracted from the vruntime of the
task.
So, we fix this bug by adding a check condition for newly forked task.
Signed-off-by: mingyang.cui <mingyang.cui@horizon.ai>
---
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 73a89fbd81be..3d0c14f3731f 100644
--- a/kernel/sched/fair.c
+++ b/kernel/sched/fair.c
@@ -11112,7 +11112,7 @@ static inline bool vruntime_normalized(struct task_struct *p)
* - A task which has been woken up by try_to_wake_up() and
* waiting for actually being woken up by sched_ttwu_pending().
*/
- if (!se->sum_exec_runtime ||
+ if (!se->sum_exec_runtime && p->state == TASK_NEW ||
(p->state == TASK_WAKING && p->sched_remote_wakeup))
return true;
--
2.34.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] sched/fair: Fix forked task check in vruntime_normalized
2024-03-28 6:27 [PATCH] sched/fair: Fix forked task check in vruntime_normalized mingyang.cui
@ 2024-03-28 6:45 ` kernel test robot
2024-03-29 19:36 ` John Stultz
2024-04-01 8:04 ` Honglei Wang
2 siblings, 0 replies; 5+ messages in thread
From: kernel test robot @ 2024-03-28 6:45 UTC (permalink / raw)
To: mingyang.cui; +Cc: stable, oe-kbuild-all
Hi,
Thanks for your patch.
FYI: kernel test robot notices the stable kernel rule is not satisfied.
The check is based on https://www.kernel.org/doc/html/latest/process/stable-kernel-rules.html#option-1
Rule: add the tag "Cc: stable@vger.kernel.org" in the sign-off area to have the patch automatically included in the stable tree.
Subject: [PATCH] sched/fair: Fix forked task check in vruntime_normalized
Link: https://lore.kernel.org/stable/20240328062757.29803-1-mingyang.cui%40horizon.ai
--
0-DAY CI Kernel Test Service
https://github.com/intel/lkp-tests/wiki
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] sched/fair: Fix forked task check in vruntime_normalized
2024-03-28 6:27 [PATCH] sched/fair: Fix forked task check in vruntime_normalized mingyang.cui
2024-03-28 6:45 ` kernel test robot
@ 2024-03-29 19:36 ` John Stultz
2024-04-01 8:04 ` Honglei Wang
2 siblings, 0 replies; 5+ messages in thread
From: John Stultz @ 2024-03-29 19:36 UTC (permalink / raw)
To: mingyang.cui
Cc: mingo, peterz, juri.lelli, vincent.guittot, dietmar.eggemann,
rostedt, bsegall, mgorman, bristot, linux-kernel, kernel-team,
stable, tkjos, pjt, quentin.perret, Patrick.Bellasi,
Chris.Redpath, Morten.Rasmussen, joaodias
On Thu, Mar 28, 2024 at 8:21 AM mingyang.cui <mingyang.cui@horizon.ai> wrote:
>
> When rt_mutex_setprio changes a task's scheduling class to RT,
> sometimes the task's vruntime is not updated correctly upon
> return to the fair class.
> Specifically, the following is being observed:
> - task has just been created and running for a short time
> - task sleep while still in the fair class
> - task is boosted to RT via rt_mutex_setprio, which changes
> the task to RT and calls check_class_changed.
> - check_class_changed leads to detach_task_cfs_rq, at which point
> the vruntime_normalized check sees that the task's sum_exec_runtime
> is zero, which results in skipping the subtraction of the
> rq's min_vruntime from the task's vruntime
> - later, when the prio is deboosted and the task is moved back
> to the fair class, the fair rq's min_vruntime is added to
> the task's vruntime, even though it wasn't subtracted earlier.
Just to make sure I am following: since sum_exec_runtime is updated in
update_curr(), if the task goes to sleep, shouldn't it be dequeued and
thus update_curr() would have been run (and thus sum_exec_runtime
would be non-zero)?
Maybe in this analysis is the new task being boosted while it is still
newly running (instead of sleeping)?
> Since the task's vruntime is about double that of other tasks in cfs_rq,
> the task to be unable to run for a long time when there are continuous
> runnable tasks in cfs_rq.
>
> The immediate result is inflation of the task's vruntime, giving
> it lower priority (starving it if there's enough available work).
> The longer-term effect is inflation of all vruntimes because the
> task's vruntime becomes the rq's min_vruntime when the higher
> priority tasks go idle. That leads to a vicious cycle, where
> the vruntime inflation repeatedly doubled.
This is an interesting find! I'm curious how you detected the problem,
as it might make a good correctness test (which I'm selfishly looking
for more of myself :)
> The root cause of the problem is that the vruntime_normalized made a
> misjudgment. Since the sum_exec_runtime of some tasks that were just
> created and run for a short time is zero, the vruntime_normalized
> mistakenly thinks that they are tasks that have just been forked.
> Therefore, sum_exec_runtime is not subtracted from the vruntime of the
> task.
>
> So, we fix this bug by adding a check condition for newly forked task.
>
> Signed-off-by: mingyang.cui <mingyang.cui@horizon.ai>
> ---
> 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 73a89fbd81be..3d0c14f3731f 100644
> --- a/kernel/sched/fair.c
> +++ b/kernel/sched/fair.c
> @@ -11112,7 +11112,7 @@ static inline bool vruntime_normalized(struct task_struct *p)
> * - A task which has been woken up by try_to_wake_up() and
> * waiting for actually being woken up by sched_ttwu_pending().
> */
> - if (!se->sum_exec_runtime ||
> + if (!se->sum_exec_runtime && p->state == TASK_NEW ||
> (p->state == TASK_WAKING && p->sched_remote_wakeup))
> return true;
This looks like it was applied against an older tree? The p->state
accesses should be under a READ_ONCE (and likely consolidated before
the conditional?)
Also, I wonder if alternatively a call to update_curr() if
(cfs_rq->curr == se) in switched_from_fair() would be good (ie:
normalize it on the boost to close the edge case rather than handle it
as an expected non-normalized condition)?
thanks
-john
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] sched/fair: Fix forked task check in vruntime_normalized
2024-03-28 6:27 [PATCH] sched/fair: Fix forked task check in vruntime_normalized mingyang.cui
2024-03-28 6:45 ` kernel test robot
2024-03-29 19:36 ` John Stultz
@ 2024-04-01 8:04 ` Honglei Wang
2024-04-01 18:09 ` John Stultz
2 siblings, 1 reply; 5+ messages in thread
From: Honglei Wang @ 2024-04-01 8:04 UTC (permalink / raw)
To: mingyang.cui, mingo, peterz, juri.lelli, vincent.guittot,
dietmar.eggemann, rostedt, bsegall, mgorman, bristot
Cc: linux-kernel, kernel-team, stable, tkjos, pjt, quentin.perret,
Patrick.Bellasi, Chris.Redpath, Morten.Rasmussen, joaodias
On 2024/3/28 14:27, mingyang.cui wrote:
> When rt_mutex_setprio changes a task's scheduling class to RT,
> sometimes the task's vruntime is not updated correctly upon
> return to the fair class.
> Specifically, the following is being observed:
> - task has just been created and running for a short time
> - task sleep while still in the fair class
> - task is boosted to RT via rt_mutex_setprio, which changes
> the task to RT and calls check_class_changed.
> - check_class_changed leads to detach_task_cfs_rq, at which point
> the vruntime_normalized check sees that the task's sum_exec_runtime
> is zero, which results in skipping the subtraction of the
> rq's min_vruntime from the task's vruntime
Hi Mingyang,
Did you do the test on the latest tree? vruntime_normalized was removed
by e8f331bcc2 (sched/smp: Use lag to simplify cross-runqueue placement).
Thanks,
Honglei
> - later, when the prio is deboosted and the task is moved back
> to the fair class, the fair rq's min_vruntime is added to
> the task's vruntime, even though it wasn't subtracted earlier.
>
> Since the task's vruntime is about double that of other tasks in cfs_rq,
> the task to be unable to run for a long time when there are continuous
> runnable tasks in cfs_rq.
>
> The immediate result is inflation of the task's vruntime, giving
> it lower priority (starving it if there's enough available work).
> The longer-term effect is inflation of all vruntimes because the
> task's vruntime becomes the rq's min_vruntime when the higher
> priority tasks go idle. That leads to a vicious cycle, where
> the vruntime inflation repeatedly doubled.
>
> The root cause of the problem is that the vruntime_normalized made a
> misjudgment. Since the sum_exec_runtime of some tasks that were just
> created and run for a short time is zero, the vruntime_normalized
> mistakenly thinks that they are tasks that have just been forked.
> Therefore, sum_exec_runtime is not subtracted from the vruntime of the
> task.
>
> So, we fix this bug by adding a check condition for newly forked task.
>
> Signed-off-by: mingyang.cui <mingyang.cui@horizon.ai>
> ---
> 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 73a89fbd81be..3d0c14f3731f 100644
> --- a/kernel/sched/fair.c
> +++ b/kernel/sched/fair.c
> @@ -11112,7 +11112,7 @@ static inline bool vruntime_normalized(struct task_struct *p)
> * - A task which has been woken up by try_to_wake_up() and
> * waiting for actually being woken up by sched_ttwu_pending().
> */
> - if (!se->sum_exec_runtime ||
> + if (!se->sum_exec_runtime && p->state == TASK_NEW ||
> (p->state == TASK_WAKING && p->sched_remote_wakeup))
> return true;
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] sched/fair: Fix forked task check in vruntime_normalized
2024-04-01 8:04 ` Honglei Wang
@ 2024-04-01 18:09 ` John Stultz
0 siblings, 0 replies; 5+ messages in thread
From: John Stultz @ 2024-04-01 18:09 UTC (permalink / raw)
To: Honglei Wang
Cc: mingyang.cui, mingo, peterz, juri.lelli, vincent.guittot,
dietmar.eggemann, rostedt, bsegall, mgorman, bristot,
linux-kernel, kernel-team, stable, tkjos, pjt, quentin.perret,
Patrick.Bellasi, Chris.Redpath, Morten.Rasmussen, joaodias
On Mon, Apr 1, 2024 at 8:20 AM Honglei Wang <jameshongleiwang@126.com> wrote:
> On 2024/3/28 14:27, mingyang.cui wrote:
> > When rt_mutex_setprio changes a task's scheduling class to RT,
> > sometimes the task's vruntime is not updated correctly upon
> > return to the fair class.
> > Specifically, the following is being observed:
> > - task has just been created and running for a short time
> > - task sleep while still in the fair class
> > - task is boosted to RT via rt_mutex_setprio, which changes
> > the task to RT and calls check_class_changed.
> > - check_class_changed leads to detach_task_cfs_rq, at which point
> > the vruntime_normalized check sees that the task's sum_exec_runtime
> > is zero, which results in skipping the subtraction of the
> > rq's min_vruntime from the task's vruntime
>
> Did you do the test on the latest tree? vruntime_normalized was removed
> by e8f331bcc2 (sched/smp: Use lag to simplify cross-runqueue placement).
Indeed (I was looking at an older tree last week and missed it was
removed as well). Though something like this change probably will be
needed for the -stable trees?
thanks
-john
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-04-01 18:09 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-03-28 6:27 [PATCH] sched/fair: Fix forked task check in vruntime_normalized mingyang.cui
2024-03-28 6:45 ` kernel test robot
2024-03-29 19:36 ` John Stultz
2024-04-01 8:04 ` Honglei Wang
2024-04-01 18:09 ` John Stultz
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox