summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJack Steiner2006-03-07 00:42:50 +0100
committerLinus Torvalds2006-03-07 03:40:44 +0100
commita615fa83959896f8eac76c235953fb164cd1a9b9 (patch)
tree535fa704cbb621ce8b7776e131678ab3bff92d02 /include
parent[PATCH] memory-hotplug compile fix (diff)
downloadkernel-qcow2-linux-a615fa83959896f8eac76c235953fb164cd1a9b9.tar.gz
kernel-qcow2-linux-a615fa83959896f8eac76c235953fb164cd1a9b9.tar.xz
kernel-qcow2-linux-a615fa83959896f8eac76c235953fb164cd1a9b9.zip
[PATCH] Increase max kmalloc size for very large systems
Systems with extemely large numbers of nodes or cpus need to kmalloc structures larger than is currently supported. This patch increases the maximum supported size for very large systems. This patch should have no effect on current systems. (akpm: why not just use alloc_pages() for sysfs_cpus?) Signed-off-by: Jack Steiner <steiner@sgi.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'include')
-rw-r--r--include/linux/kmalloc_sizes.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/linux/kmalloc_sizes.h b/include/linux/kmalloc_sizes.h
index d82d4c05c12d..bda23e00ed71 100644
--- a/include/linux/kmalloc_sizes.h
+++ b/include/linux/kmalloc_sizes.h
@@ -19,8 +19,10 @@
CACHE(32768)
CACHE(65536)
CACHE(131072)
-#ifndef CONFIG_MMU
+#if (NR_CPUS > 512) || (MAX_NUMNODES > 256) || !defined(CONFIG_MMU)
CACHE(262144)
+#endif
+#ifndef CONFIG_MMU
CACHE(524288)
CACHE(1048576)
#ifdef CONFIG_LARGE_ALLOCS