summaryrefslogtreecommitdiffstats
path: root/mm/slab_common.c
diff options
context:
space:
mode:
authorChristoph Lameter2013-01-10 20:12:17 +0100
committerPekka Enberg2013-02-01 11:32:07 +0100
commit9425c58e5445277699ff3c2a87bac1cfebc1b48d (patch)
tree1158c67347c53ed09cd289687abf02a5c986daee /mm/slab_common.c
parentslab: Common constants for kmalloc boundaries (diff)
downloadkernel-qcow2-linux-9425c58e5445277699ff3c2a87bac1cfebc1b48d.tar.gz
kernel-qcow2-linux-9425c58e5445277699ff3c2a87bac1cfebc1b48d.tar.xz
kernel-qcow2-linux-9425c58e5445277699ff3c2a87bac1cfebc1b48d.zip
slab: Common definition for the array of kmalloc caches
Have a common definition fo the kmalloc cache arrays in SLAB and SLUB Acked-by: Glauber Costa <glommer@parallels.com> Signed-off-by: Christoph Lameter <cl@linux.com> Signed-off-by: Pekka Enberg <penberg@kernel.org>
Diffstat (limited to 'mm/slab_common.c')
-rw-r--r--mm/slab_common.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/mm/slab_common.c b/mm/slab_common.c
index 53adfbf2f3b2..0437b8189b8a 100644
--- a/mm/slab_common.c
+++ b/mm/slab_common.c
@@ -319,6 +319,14 @@ struct kmem_cache *__init create_kmalloc_cache(const char *name, size_t size,
return s;
}
+struct kmem_cache *kmalloc_caches[KMALLOC_SHIFT_HIGH + 1];
+EXPORT_SYMBOL(kmalloc_caches);
+
+#ifdef CONFIG_ZONE_DMA
+struct kmem_cache *kmalloc_dma_caches[KMALLOC_SHIFT_HIGH + 1];
+EXPORT_SYMBOL(kmalloc_dma_caches);
+#endif
+
#endif /* !CONFIG_SLOB */