Systems with the SD_ASYM_CPUCAPACITY flag set indicate that sched_groups at this level or below do not include cpus of all capacities available (e.g. group containing little-only or big-only cpus in big.LITTLE systems). It is therefore necessary to put in more effort in finding an appropriate cpu at task wake-up by enabling balancing at wake-up (SD_BALANCE_WAKE).
cc: Ingo Molnar <[email protected]> cc: Peter Zijlstra <[email protected]> Signed-off-by: Morten Rasmussen <[email protected]> --- kernel/sched/core.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/kernel/sched/core.c b/kernel/sched/core.c index 351609279341..fe39118ffdfb 100644 --- a/kernel/sched/core.c +++ b/kernel/sched/core.c @@ -6397,6 +6397,9 @@ sd_init(struct sched_domain_topology_level *tl, int cpu) * Convert topological properties into behaviour. */ + if (sd->flags & SD_ASYM_CPUCAPACITY) + sd->flags |= SD_BALANCE_WAKE; + if (sd->flags & SD_SHARE_CPUCAPACITY) { sd->flags |= SD_PREFER_SIBLING; sd->imbalance_pct = 110; -- 1.9.1

