mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
* [PATCH 10/12] SLOB: fix build error if SLOB && !NUMA
@ 2007-06-19 22:51 Andreas Herrmann
  0 siblings, 0 replies; only message in thread
From: Andreas Herrmann @ 2007-06-19 22:51 UTC (permalink / raw)
  To: linux-kernel

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@amd.com>
---
 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





^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2007-06-19 22:53 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2007-06-19 22:51 [PATCH 10/12] SLOB: fix build error if SLOB && !NUMA Andreas Herrmann

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