aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorPeter Zijlstra <a.p.zijlstra@chello.nl>2012-05-25 09:26:43 +0200
committerIngo Molnar <mingo@kernel.org>2012-05-30 14:02:23 +0200
commit2ea45800d8e1c3c51c45a233d6bd6289a297a386 (patch)
tree13a6795e66593f355804915f30800f85b0289216 /kernel
parentsched/nohz: Fix rq->cpu_load calculations some more (diff)
downloadlinux-dev-2ea45800d8e1c3c51c45a233d6bd6289a297a386.tar.xz
linux-dev-2ea45800d8e1c3c51c45a233d6bd6289a297a386.zip
sched: Don't try allocating memory from offline nodes
Allocators don't appreciate it when you try and allocate memory from offline nodes. Reported-and-tested-by: Tony Luck <tony.luck@intel.com> Reported-and-tested-by: Anton Blanchard <anton@samba.org> Signed-off-by: Peter Zijlstra <a.p.zijlstra@chello.nl> Link: http://lkml.kernel.org/n/tip-epfc1io9whb7o22bcujf31vn@git.kernel.org Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'kernel')
-rw-r--r--kernel/sched/core.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/sched/core.c b/kernel/sched/core.c
index 75844a8f9aeb..55733616baaa 100644
--- a/kernel/sched/core.c
+++ b/kernel/sched/core.c
@@ -6436,7 +6436,7 @@ static void sched_init_numa(void)
return;
for (j = 0; j < nr_node_ids; j++) {
- struct cpumask *mask = kzalloc_node(cpumask_size(), GFP_KERNEL, j);
+ struct cpumask *mask = kzalloc(cpumask_size(), GFP_KERNEL);
if (!mask)
return;