Commit 500d520
CKI KWF Bot
Merge: sched/fair: Block delayed tasks on throttled hierarchy during dequeue
MR: https://gitlab.com/redhat/centos-stream/src/kernel/centos-stream-10/-/merge_requests/1630
JIRA: https://issues.redhat.com/browse/RHEL-69492
Upstream Status: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git (v6.12.54)
CONFLICTS: minor context conflict in the first chunk of the patch.
commit e67e3e7
Author: K Prateek Nayak <kprateek.nayak@amd.com>
Date: Wed Oct 15 06:03:59 2025 +0000
sched/fair: Block delayed tasks on throttled hierarchy during dequeue
Dequeuing a fair task on a throttled hierarchy returns early on
encountering a throttled cfs_rq since the throttle path has already
dequeued the hierarchy above and has adjusted the h_nr_* accounting till
the root cfs_rq.
dequeue_entities() crucially misses calling __block_task() for delayed
tasks being dequeued on the throttled hierarchies, but this was mostly
harmless until commit b7ca574 ("sched/core: Tweak
wait_task_inactive() to force dequeue sched_delayed tasks") since all
existing cases would re-enqueue the task if task_on_rq_queued() returned
true and the task would eventually be blocked at pick after the
hierarchy was unthrottled.
wait_task_inactive() is special as it expects the delayed task on
throttled hierarchy to reach the blocked state on dequeue but since
__block_task() is never called, task_on_rq_queued() continues to return
true. Furthermore, since the task is now off the hierarchy, the pick
never reaches it to fully block the task even after unthrottle leading
to wait_task_inactive() looping endlessly.
Remedy this by calling __block_task() if a delayed task is being
dequeued on a throttled hierarchy.
This fix is only required for stabled kernels implementing delay dequeue
(>= v6.12) before v6.18 since upstream commit e1fad12 ("sched/fair:
Switch to task based throttle model") indirectly fixes this by removing
the early return conditions in dequeue_entities() as part of the per-task
throttle feature.
Cc: stable@vger.kernel.org
Reported-by: Matt Fleming <matt@readmodwrite.com>
Closes: https://lore.kernel.org/all/20250925133310.1843863-1-matt@readmodwrite.com/
Fixes: b7ca574 ("sched/core: Tweak wait_task_inactive() to force dequeue sched_delayed tasks")
Tested-by: Matt Fleming <mfleming@cloudflare.com>
Signed-off-by: K Prateek Nayak <kprateek.nayak@amd.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Luis Claudio R. Goncalves <lgoncalv@redhat.com>
Approved-by: Phil Auld <pauld@redhat.com>
Approved-by: Tomas Glozar <tglozar@redhat.com>
Approved-by: Gabriele Monaco <gmonaco@redhat.com>
Approved-by: Crystal Wood <crwood@redhat.com>
Approved-by: Clark Williams <williams@redhat.com>
Approved-by: CKI KWF Bot <cki-ci-bot+kwf-gitlab-com@redhat.com>
Merged-by: CKI GitLab Kmaint Pipeline Bot <26919896-cki-kmaint-pipeline-bot@users.noreply.gitlab.com>1 file changed
+6
-3
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
6964 | 6964 | | |
6965 | 6965 | | |
6966 | 6966 | | |
| 6967 | + | |
6967 | 6968 | | |
6968 | 6969 | | |
6969 | 6970 | | |
| |||
6993 | 6994 | | |
6994 | 6995 | | |
6995 | 6996 | | |
6996 | | - | |
| 6997 | + | |
6997 | 6998 | | |
6998 | 6999 | | |
6999 | 7000 | | |
| |||
7034 | 7035 | | |
7035 | 7036 | | |
7036 | 7037 | | |
7037 | | - | |
| 7038 | + | |
7038 | 7039 | | |
7039 | 7040 | | |
7040 | 7041 | | |
| |||
7043 | 7044 | | |
7044 | 7045 | | |
7045 | 7046 | | |
| 7047 | + | |
| 7048 | + | |
7046 | 7049 | | |
7047 | 7050 | | |
7048 | 7051 | | |
| |||
7058 | 7061 | | |
7059 | 7062 | | |
7060 | 7063 | | |
7061 | | - | |
| 7064 | + | |
7062 | 7065 | | |
7063 | 7066 | | |
7064 | 7067 | | |
| |||
0 commit comments