Skip to content

Commit 5324c45

Browse files
htejungregkh
authored andcommitted
sched_ext: Fix pick_task_scx() picking non-queued tasks when it's called without balance()
commit 8fef0a3 upstream. a6250aa ("sched_ext: Handle cases where pick_task_scx() is called without preceding balance_scx()") added a workaround to handle the cases where pick_task_scx() is called without prececing balance_scx() which is due to a fair class bug where pick_taks_fair() may return NULL after a true return from balance_fair(). The workaround detects when pick_task_scx() is called without preceding balance_scx() and emulates SCX_RQ_BAL_KEEP and triggers kicking to avoid stalling. Unfortunately, the workaround code was testing whether @Prev was on SCX to decide whether to keep the task running. This is incorrect as the task may be on SCX but no longer runnable. This could lead to a non-runnable task to be returned from pick_task_scx() which cause interesting confusions and failures. e.g. A common failure mode is the task ending up with (!on_rq && on_cpu) state which can cause potential wakers to busy loop, which can easily lead to deadlocks. Fix it by testing whether @Prev has SCX_TASK_QUEUED set. This makes @prev_on_scx only used in one place. Open code the usage and improve the comment while at it. Signed-off-by: Tejun Heo <[email protected]> Reported-by: Pat Cody <[email protected]> Fixes: a6250aa ("sched_ext: Handle cases where pick_task_scx() is called without preceding balance_scx()") Cc: [email protected] # v6.12+ Acked-by: Andrea Righi <[email protected]> Signed-off-by: Greg Kroah-Hartman <[email protected]>
1 parent 0362847 commit 5324c45

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

kernel/sched/ext.c

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3047,7 +3047,6 @@ static struct task_struct *pick_task_scx(struct rq *rq)
30473047
{
30483048
struct task_struct *prev = rq->curr;
30493049
struct task_struct *p;
3050-
bool prev_on_scx = prev->sched_class == &ext_sched_class;
30513050
bool keep_prev = rq->scx.flags & SCX_RQ_BAL_KEEP;
30523051
bool kick_idle = false;
30533052

@@ -3067,14 +3066,18 @@ static struct task_struct *pick_task_scx(struct rq *rq)
30673066
* if pick_task_scx() is called without preceding balance_scx().
30683067
*/
30693068
if (unlikely(rq->scx.flags & SCX_RQ_BAL_PENDING)) {
3070-
if (prev_on_scx) {
3069+
if (prev->scx.flags & SCX_TASK_QUEUED) {
30713070
keep_prev = true;
30723071
} else {
30733072
keep_prev = false;
30743073
kick_idle = true;
30753074
}
3076-
} else if (unlikely(keep_prev && !prev_on_scx)) {
3077-
/* only allowed during transitions */
3075+
} else if (unlikely(keep_prev &&
3076+
prev->sched_class != &ext_sched_class)) {
3077+
/*
3078+
* Can happen while enabling as SCX_RQ_BAL_PENDING assertion is
3079+
* conditional on scx_enabled() and may have been skipped.
3080+
*/
30783081
WARN_ON_ONCE(scx_ops_enable_state() == SCX_OPS_ENABLED);
30793082
keep_prev = false;
30803083
}

0 commit comments

Comments
 (0)