* [tip:sched/urgent] sched: Don' t try allocating memory from offline nodes
@ 2012-05-30 13:37 tip-bot for Peter Zijlstra
0 siblings, 0 replies; only message in thread
From: tip-bot for Peter Zijlstra @ 2012-05-30 13:37 UTC (permalink / raw)
To: linux-tip-commits
Cc: linux-kernel, anton, hpa, mingo, a.p.zijlstra, tony.luck, tglx
Commit-ID: 2ea45800d8e1c3c51c45a233d6bd6289a297a386
Gitweb: http://git.kernel.org/tip/2ea45800d8e1c3c51c45a233d6bd6289a297a386
Author: Peter Zijlstra <a.p.zijlstra@chello.nl>
AuthorDate: Fri, 25 May 2012 09:26:43 +0200
Committer: Ingo Molnar <mingo@kernel.org>
CommitDate: Wed, 30 May 2012 14:02:23 +0200
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>
---
kernel/sched/core.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/kernel/sched/core.c b/kernel/sched/core.c
index 75844a8..5573361 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;
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2012-05-30 13:37 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-05-30 13:37 [tip:sched/urgent] sched: Don' t try allocating memory from offline nodes tip-bot for Peter Zijlstra
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome