aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRik van Riel <riel@redhat.com>2014-04-11 13:00:29 -0400
committerIngo Molnar <mingo@kernel.org>2014-05-07 07:33:47 -0400
commit68d1b02a58f5d9f584c1fb2923ed60ec68cbbd9b (patch)
tree3a2c4afeca2dd9403a3e7e9d646d9067f4bf7d1d
parent5085e2a328849bdee6650b32d52c87c3788ab01c (diff)
sched/numa: Do not set preferred_node on migration to a second choice node
Setting the numa_preferred_node for a task in task_numa_migrate does nothing on a 2-node system. Either we migrate to the node that already was our preferred node, or we stay where we were. On a 4-node system, it can slightly decrease overhead, by not calling the NUMA code as much. Since every node tends to be directly connected to every other node, running on the wrong node for a while does not do much damage. However, on an 8 node system, there are far more bad nodes than there are good ones, and pretending that a second choice is actually the preferred node can greatly delay, or even prevent, a workload from converging. The only time we can safely pretend that a second choice node is the preferred node is when the task is part of a workload that spans multiple NUMA nodes. Signed-off-by: Rik van Riel <riel@redhat.com> Tested-by: Vinod Chegu <chegu_vinod@hp.com> Acked-by: Mel Gorman <mgorman@suse.de> Signed-off-by: Peter Zijlstra <peterz@infradead.org> Cc: Linus Torvalds <torvalds@linux-foundation.org> Link: http://lkml.kernel.org/r/1397235629-16328-4-git-send-email-riel@redhat.com Signed-off-by: Ingo Molnar <mingo@kernel.org>
-rw-r--r--kernel/sched/fair.c11
1 files changed, 10 insertions, 1 deletions
diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c
index ecea8d9f957c..051903f33eec 100644
--- a/kernel/sched/fair.c
+++ b/kernel/sched/fair.c
@@ -1301,7 +1301,16 @@ static int task_numa_migrate(struct task_struct *p)
1301 if (env.best_cpu == -1) 1301 if (env.best_cpu == -1)
1302 return -EAGAIN; 1302 return -EAGAIN;
1303 1303
1304 sched_setnuma(p, env.dst_nid); 1304 /*
1305 * If the task is part of a workload that spans multiple NUMA nodes,
1306 * and is migrating into one of the workload's active nodes, remember
1307 * this node as the task's preferred numa node, so the workload can
1308 * settle down.
1309 * A task that migrated to a second choice node will be better off
1310 * trying for a better one later. Do not set the preferred node here.
1311 */
1312 if (p->numa_group && node_isset(env.dst_nid, p->numa_group->active_nodes))
1313 sched_setnuma(p, env.dst_nid);
1305 1314
1306 /* 1315 /*
1307 * Reset the scan period if the task is being rescheduled on an 1316 * Reset the scan period if the task is being rescheduled on an