Loading kernel/sched/fair.c +3 −8 Original line number Diff line number Diff line Loading @@ -4077,16 +4077,11 @@ place_entity(struct cfs_rq *cfs_rq, struct sched_entity *se, int initial) TASK_BOOST_STRICT_MAX) vruntime -= sysctl_sched_latency; #ifdef CONFIG_SCHED_WALT else if (unlikely(task_of(se)->wts.low_latency)) { else if (task_of(se)->wts.low_latency || task_rtg_high_prio(task_of(se))) { vruntime -= sysctl_sched_latency; vruntime -= thresh; se->vruntime = min_vruntime(vruntime, se->vruntime); return; } else if (task_rtg_high_prio(task_of(se))) { vruntime -= thresh; se->vruntime = min_vruntime(vruntime, se->vruntime); se->vruntime = vruntime; return; } #endif Loading Loading
kernel/sched/fair.c +3 −8 Original line number Diff line number Diff line Loading @@ -4077,16 +4077,11 @@ place_entity(struct cfs_rq *cfs_rq, struct sched_entity *se, int initial) TASK_BOOST_STRICT_MAX) vruntime -= sysctl_sched_latency; #ifdef CONFIG_SCHED_WALT else if (unlikely(task_of(se)->wts.low_latency)) { else if (task_of(se)->wts.low_latency || task_rtg_high_prio(task_of(se))) { vruntime -= sysctl_sched_latency; vruntime -= thresh; se->vruntime = min_vruntime(vruntime, se->vruntime); return; } else if (task_rtg_high_prio(task_of(se))) { vruntime -= thresh; se->vruntime = min_vruntime(vruntime, se->vruntime); se->vruntime = vruntime; return; } #endif Loading