diff options
author | Christoph Lameter <cl@linux.com> | 2012-09-05 00:20:33 +0000 |
---|---|---|
committer | Pekka Enberg <penberg@kernel.org> | 2012-09-05 12:00:36 +0300 |
commit | 9b030cb865f137e1574596983face2a07e41e8b2 (patch) | |
tree | 51caca89688beefd5ba910069d5c5754140906ae /mm/slab.h | |
parent | 945cf2b6199be70ff03102b9e642c3bb05d01de9 (diff) | |
download | linux-3.10-9b030cb865f137e1574596983face2a07e41e8b2.tar.gz linux-3.10-9b030cb865f137e1574596983face2a07e41e8b2.tar.bz2 linux-3.10-9b030cb865f137e1574596983face2a07e41e8b2.zip |
mm/sl[aou]b: Use "kmem_cache" name for slab cache with kmem_cache struct
Make all allocators use the "kmem_cache" slabname for the "kmem_cache"
structure.
Reviewed-by: Glauber Costa <glommer@parallels.com>
Reviewed-by: Joonsoo Kim <js1304@gmail.com>
Signed-off-by: Christoph Lameter <cl@linux.com>
Signed-off-by: Pekka Enberg <penberg@kernel.org>
Diffstat (limited to 'mm/slab.h')
-rw-r--r-- | mm/slab.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mm/slab.h b/mm/slab.h index 07a537ed5da..6724aa6f662 100644 --- a/mm/slab.h +++ b/mm/slab.h @@ -25,8 +25,14 @@ extern enum slab_state slab_state; /* The slab cache mutex protects the management structures during changes */ extern struct mutex slab_mutex; + +/* The list of all slab caches on the system */ extern struct list_head slab_caches; +/* The slab cache that manages slab cache information */ +extern struct kmem_cache *kmem_cache; + +/* Functions provided by the slab allocators */ struct kmem_cache *__kmem_cache_create(const char *name, size_t size, size_t align, unsigned long flags, void (*ctor)(void *)); |