mirror of https://gitee.com/openkylin/linux.git
sched/fair: Dissociate wakeup decisions from SD flag value
The CFS wakeup code will only ever go through EAS / its fast path on "regular" wakeups (i.e. not on forks or execs). These are currently gated by a check against 'sd_flag', which would be SD_BALANCE_WAKE at wakeup. However, we now have a flag that explicitly tells us whether a wakeup is a "regular" one, so hinge those conditions on that flag instead. Signed-off-by: Valentin Schneider <valentin.schneider@arm.com> Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org> Link: https://lkml.kernel.org/r/20201102184514.2733-4-valentin.schneider@arm.com
This commit is contained in:
parent
3aef1551e9
commit
dc824eb898
|
@ -6705,7 +6705,7 @@ select_task_rq_fair(struct task_struct *p, int prev_cpu, int wake_flags)
|
||||||
/* SD_flags and WF_flags share the first nibble */
|
/* SD_flags and WF_flags share the first nibble */
|
||||||
int sd_flag = wake_flags & 0xF;
|
int sd_flag = wake_flags & 0xF;
|
||||||
|
|
||||||
if (sd_flag & SD_BALANCE_WAKE) {
|
if (wake_flags & WF_TTWU) {
|
||||||
record_wakee(p);
|
record_wakee(p);
|
||||||
|
|
||||||
if (sched_energy_enabled()) {
|
if (sched_energy_enabled()) {
|
||||||
|
@ -6742,9 +6742,8 @@ select_task_rq_fair(struct task_struct *p, int prev_cpu, int wake_flags)
|
||||||
if (unlikely(sd)) {
|
if (unlikely(sd)) {
|
||||||
/* Slow path */
|
/* Slow path */
|
||||||
new_cpu = find_idlest_cpu(sd, p, cpu, prev_cpu, sd_flag);
|
new_cpu = find_idlest_cpu(sd, p, cpu, prev_cpu, sd_flag);
|
||||||
} else if (sd_flag & SD_BALANCE_WAKE) { /* XXX always ? */
|
} else if (wake_flags & WF_TTWU) { /* XXX always ? */
|
||||||
/* Fast path */
|
/* Fast path */
|
||||||
|
|
||||||
new_cpu = select_idle_sibling(p, prev_cpu, new_cpu);
|
new_cpu = select_idle_sibling(p, prev_cpu, new_cpu);
|
||||||
|
|
||||||
if (want_affine)
|
if (want_affine)
|
||||||
|
|
Loading…
Reference in New Issue