OSDN Git Service

FROMLIST: sched/fair: Don't move tasks to lower capacity cpus unless necessary
authorChris Redpath <chris.redpath@arm.com>
Fri, 1 Jun 2018 11:15:45 +0000 (12:15 +0100)
committerAmit Pundir <amit.pundir@linaro.org>
Tue, 14 Aug 2018 12:17:11 +0000 (17:47 +0530)
When lower capacity CPUs are load balancing and considering to pull
something from a higher capacity group, we should not pull tasks from a
cpu with only one task running as this is guaranteed to impede progress
for that task. If there is more than one task running, load balance in
the higher capacity group would have already made any possible moves to
resolve imbalance and we should make better use of system compute
capacity by moving a task if we still have more than one running.

cc: Ingo Molnar <mingo@redhat.com>
cc: Peter Zijlstra <peterz@infradead.org>

Signed-off-by: Chris Redpath <chris.redpath@arm.com>
Signed-off-by: Morten Rasmussen <morten.rasmussen@arm.com>
Change-Id: I66c47bc93f6533ae8f36f026c033ad5de80f3275

kernel/sched/fair.c

index 990dd03..51f1688 100644 (file)
@@ -9017,6 +9017,17 @@ static struct rq *find_busiest_queue(struct lb_env *env,
 
                capacity = capacity_of(i);
 
+               /*
+                * For ASYM_CPUCAPACITY domains, don't pick a cpu that could
+                * eventually lead to active_balancing high->low capacity.
+                * Higher per-cpu capacity is considered better than balancing
+                * average load.
+                */
+               if (env->sd->flags & SD_ASYM_CPUCAPACITY &&
+                       capacity_of(env->dst_cpu) < capacity &&
+                       rq->nr_running == 1)
+                       continue;
+
                wl = weighted_cpuload(rq);
 
                /*