[tip:sched/core] sched/numa: Revert "Use effective_load() to balance NUMA loads"

From: tip-bot for Peter Zijlstra
Date: Wed Jul 16 2014 - 15:25:21 EST


Commit-ID: e720fff6341fe4b95e5a93c939bd3c77fa55ced4
Gitweb: http://git.kernel.org/tip/e720fff6341fe4b95e5a93c939bd3c77fa55ced4
Author: Peter Zijlstra <peterz@xxxxxxxxxxxxx>
AuthorDate: Fri, 11 Jul 2014 16:01:53 +0200
Committer: Ingo Molnar <mingo@xxxxxxxxxx>
CommitDate: Wed, 16 Jul 2014 13:38:23 +0200

sched/numa: Revert "Use effective_load() to balance NUMA loads"

Due to divergent trees, Rik find that this patch is no longer
required.

Requested-by: Rik van Riel <riel@xxxxxxxxxx>
Signed-off-by: Peter Zijlstra <peterz@xxxxxxxxxxxxx>
Cc: Linus Torvalds <torvalds@xxxxxxxxxxxxxxxxxxxx>
Link: http://lkml.kernel.org/n/tip-u6odkgkw8wz3m7orgsjfo5pi@xxxxxxxxxxxxxx
Signed-off-by: Ingo Molnar <mingo@xxxxxxxxxx>
---
kernel/sched/fair.c | 20 ++++++--------------
1 file changed, 6 insertions(+), 14 deletions(-)

diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c
index f5f0cc9..45943b2 100644
--- a/kernel/sched/fair.c
+++ b/kernel/sched/fair.c
@@ -1151,7 +1151,6 @@ static void task_numa_compare(struct task_numa_env *env,
struct rq *src_rq = cpu_rq(env->src_cpu);
struct rq *dst_rq = cpu_rq(env->dst_cpu);
struct task_struct *cur;
- struct task_group *tg;
long src_load, dst_load;
long load;
long imp = env->p->numa_group ? groupimp : taskimp;
@@ -1223,14 +1222,9 @@ static void task_numa_compare(struct task_numa_env *env,
* In the overloaded case, try and keep the load balanced.
*/
balance:
- src_load = env->src_stats.load;
- dst_load = env->dst_stats.load;
-
- /* Calculate the effect of moving env->p from src to dst. */
- load = env->p->se.load.weight;
- tg = task_group(env->p);
- src_load += effective_load(tg, env->src_cpu, -load, -load);
- dst_load += effective_load(tg, env->dst_cpu, load, load);
+ load = task_h_load(env->p);
+ dst_load = env->dst_stats.load + load;
+ src_load = env->src_stats.load - load;

if (moveimp > imp && moveimp > env->best_imp) {
/*
@@ -1250,11 +1244,9 @@ balance:
goto unlock;

if (cur) {
- /* Cur moves in the opposite direction. */
- load = cur->se.load.weight;
- tg = task_group(cur);
- src_load += effective_load(tg, env->src_cpu, load, load);
- dst_load += effective_load(tg, env->dst_cpu, -load, -load);
+ load = task_h_load(cur);
+ dst_load -= load;
+ src_load += load;
}

if (load_too_imbalanced(src_load, dst_load, env))
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/