mirror of
https://github.com/linux-msm/laptops-kernel.git
synced 2026-08-13 14:19:53 -07:00
sched/eevdf: Always update slice protection
Even if p will not preempt current, it modifies the avg_vruntime and possibly the min slice. Make sure to update the slice protection with the updated figures. As an example, Batch and Sched Idle tasks can otherwise get a larger lag than their slice and finaly delay the scheduling of a normal task, which deadline will be a later. Signed-off-by: Vincent Guittot <vincent.guittot@linaro.org> Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> Tested-by: K Prateek Nayak <kprateek.nayak@amd.com> Link: https://patch.msgid.link/20260624151229.1710703-6-vincent.guittot@linaro.org
This commit is contained in:
committed by
Peter Zijlstra
parent
ba0d3bf5f9
commit
7cd2ef17de
+6
-5
@@ -9867,16 +9867,17 @@ static void wakeup_preempt_fair(struct rq *rq, struct task_struct *p, int wake_f
|
||||
if (cse_is_idle && !pse_is_idle)
|
||||
goto preempt;
|
||||
|
||||
update_curr_fair(rq);
|
||||
|
||||
if (cse_is_idle != pse_is_idle)
|
||||
return;
|
||||
goto update;
|
||||
|
||||
/*
|
||||
* BATCH and IDLE tasks do not preempt others.
|
||||
*/
|
||||
if (unlikely(!normal_policy(p->policy)))
|
||||
return;
|
||||
goto update;
|
||||
|
||||
update_curr_fair(rq);
|
||||
/*
|
||||
* If @p has a shorter slice than current and @p is eligible, override
|
||||
* current's slice protection in order to allow preemption.
|
||||
@@ -9893,7 +9894,7 @@ static void wakeup_preempt_fair(struct rq *rq, struct task_struct *p, int wake_f
|
||||
* EEVDF to forcibly queue an ineligible task.
|
||||
*/
|
||||
if ((wake_flags & WF_FORK) || pse->sched_delayed)
|
||||
return;
|
||||
goto update;
|
||||
|
||||
/* Prefer picking wakee soon if appropriate. */
|
||||
if (sched_feat(NEXT_BUDDY) && set_preempt_buddy(cfs_rq, pse)) {
|
||||
@@ -9934,7 +9935,7 @@ pick:
|
||||
*/
|
||||
if (preempt_action == PREEMPT_WAKEUP_SHORT && entity_eligible(cfs_rq, pse))
|
||||
goto preempt;
|
||||
|
||||
update:
|
||||
if (sched_feat(RUN_TO_PARITY))
|
||||
update_protect_slice(cfs_rq, se);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user