From: Dietmar Eggemann Date: Mon, 26 Jan 2015 19:47:28 +0000 (+0000) Subject: sched: Enable idle balance to pull single task towards cpu with higher capacity X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=80a328fbece7b08e2c185ea8c1dc15b18b084abd;p=platform%2Fkernel%2Flinux-exynos.git sched: Enable idle balance to pull single task towards cpu with higher capacity We do not want to miss out on the ability to pull a single remaining task from a potential source cpu towards an idle destination cpu. Add an extra criteria to need_active_balance() to kick off active load balance if the source cpu is over-utilized and has lower capacity than the destination cpu. cc: Ingo Molnar cc: Peter Zijlstra Signed-off-by: Morten Rasmussen Signed-off-by: Dietmar Eggemann --- diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c index 530cd573fa5d..8324c5e8f3ce 100644 --- a/kernel/sched/fair.c +++ b/kernel/sched/fair.c @@ -8729,6 +8729,13 @@ static int need_active_balance(struct lb_env *env) if (env->src_grp_type == group_misfit_task) return 1; + if ((capacity_of(env->src_cpu) < capacity_of(env->dst_cpu)) && + env->src_rq->cfs.h_nr_running == 1 && + cpu_overutilized(env->src_cpu) && + !cpu_overutilized(env->dst_cpu)) { + return 1; + } + return unlikely(sd->nr_balance_failed > sd->cache_nice_tries+2); }