[PATCH 10/12] SLOB: fix build error if SLOB && !NUMA

From: Andreas Herrmann
Date: Tue Jun 19 2007 - 18:53:10 EST


Fix build error:

LD .tmp_vmlinux1
arch/x86_64/kernel/built-in.o: In function `__cpu_up':
: undefined reference to `kmalloc_node'
kernel/built-in.o: In function `build_sched_domains':
sched.c:(.text+0x41e7): undefined reference to `kmalloc_node'
sched.c:(.text+0x42b5): undefined reference to `kmalloc_node'
kernel/built-in.o: In function `timer_cpu_notify':
timer.c:(.init.text+0x1163): undefined reference to `kmalloc_node'
mm/built-in.o: In function `mempool_create_node':
: undefined reference to `kmalloc_node'
mm/built-in.o:: more undefined references to `kmalloc_node' follow

... hmm, SLOB currently does not provide kmalloc_node() and friends.

Signed-off-by: Andreas Herrmann <andreas.herrmann3@xxxxxxx>
---
init/Kconfig | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/init/Kconfig b/init/Kconfig
index a9e99f8..d4a68f6 100644
--- a/init/Kconfig
+++ b/init/Kconfig
@@ -576,7 +576,7 @@ config SLUB
and has enhanced diagnostics.

config SLOB
- depends on EMBEDDED && !SPARSEMEM
+ depends on EMBEDDED && !SPARSEMEM && !NUMA
bool "SLOB (Simple Allocator)"
help
SLOB replaces the SLAB allocator with a drastically simpler
--
1.5.0.7




-
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/