Skip to content

Commit da23014

Browse files
Quentin PerretKelsey Skunberg
authored andcommitted
sched: Fix UCLAMP_FLAG_IDLE setting
BugLink: https://bugs.launchpad.net/bugs/1946024 [ Upstream commit ca4984a ] The UCLAMP_FLAG_IDLE flag is set on a runqueue when dequeueing the last uclamp active task (that is, when buckets.tasks reaches 0 for all buckets) to maintain the last uclamp.max and prevent blocked util from suddenly becoming visible. However, there is an asymmetry in how the flag is set and cleared which can lead to having the flag set whilst there are active tasks on the rq. Specifically, the flag is cleared in the uclamp_rq_inc() path, which is called at enqueue time, but set in uclamp_rq_dec_id() which is called both when dequeueing a task _and_ in the update_uclamp_active() path. As a result, when both uclamp_rq_{dec,ind}_id() are called from update_uclamp_active(), the flag ends up being set but not cleared, hence leaving the runqueue in a broken state. Fix this by clearing the flag in update_uclamp_active() as well. Fixes: e496187 ("sched/uclamp: Enforce last task's UCLAMP_MAX") Reported-by: Rick Yiu <[email protected]> Signed-off-by: Quentin Perret <[email protected]> Signed-off-by: Peter Zijlstra (Intel) <[email protected]> Reviewed-by: Qais Yousef <[email protected]> Tested-by: Dietmar Eggemann <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Sasha Levin <[email protected]> Signed-off-by: Kamal Mostafa <[email protected]> Signed-off-by: Kelsey Skunberg <[email protected]>
1 parent d4653d6 commit da23014

File tree

1 file changed

+19
-6
lines changed

1 file changed

+19
-6
lines changed

kernel/sched/core.c

Lines changed: 19 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1110,6 +1110,23 @@ static inline void uclamp_rq_dec(struct rq *rq, struct task_struct *p)
11101110
uclamp_rq_dec_id(rq, p, clamp_id);
11111111
}
11121112

1113+
static inline void uclamp_rq_reinc_id(struct rq *rq, struct task_struct *p,
1114+
enum uclamp_id clamp_id)
1115+
{
1116+
if (!p->uclamp[clamp_id].active)
1117+
return;
1118+
1119+
uclamp_rq_dec_id(rq, p, clamp_id);
1120+
uclamp_rq_inc_id(rq, p, clamp_id);
1121+
1122+
/*
1123+
* Make sure to clear the idle flag if we've transiently reached 0
1124+
* active tasks on rq.
1125+
*/
1126+
if (clamp_id == UCLAMP_MAX && (rq->uclamp_flags & UCLAMP_FLAG_IDLE))
1127+
rq->uclamp_flags &= ~UCLAMP_FLAG_IDLE;
1128+
}
1129+
11131130
static inline void
11141131
uclamp_update_active(struct task_struct *p)
11151132
{
@@ -1133,12 +1150,8 @@ uclamp_update_active(struct task_struct *p)
11331150
* affecting a valid clamp bucket, the next time it's enqueued,
11341151
* it will already see the updated clamp bucket value.
11351152
*/
1136-
for_each_clamp_id(clamp_id) {
1137-
if (p->uclamp[clamp_id].active) {
1138-
uclamp_rq_dec_id(rq, p, clamp_id);
1139-
uclamp_rq_inc_id(rq, p, clamp_id);
1140-
}
1141-
}
1153+
for_each_clamp_id(clamp_id)
1154+
uclamp_rq_reinc_id(rq, p, clamp_id);
11421155

11431156
task_rq_unlock(rq, p, &rf);
11441157
}

0 commit comments

Comments
 (0)