KMALLOC_MAX_CACHE_SIZE is 32-bit so is the largest kmalloc cache size. Signed-off-by: Alexey Dobriyan <adobriyan@xxxxxxxxx> --- mm/slab.h | 4 ++-- mm/slab_common.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/mm/slab.h b/mm/slab.h index ad657ffa44e5..08f43ed41b75 100644 --- a/mm/slab.h +++ b/mm/slab.h @@ -75,7 +75,7 @@ extern struct kmem_cache *kmem_cache; /* A table of kmalloc cache names and sizes */ extern const struct kmalloc_info_struct { const char *name; - unsigned long size; + unsigned int size; } kmalloc_info[]; unsigned long calculate_alignment(slab_flags_t flags, @@ -94,7 +94,7 @@ struct kmem_cache *kmalloc_slab(size_t, gfp_t); /* Functions provided by the slab allocators */ int __kmem_cache_create(struct kmem_cache *, slab_flags_t flags); -extern struct kmem_cache *create_kmalloc_cache(const char *name, size_t size, +struct kmem_cache *create_kmalloc_cache(const char *name, unsigned int size, slab_flags_t flags); extern void create_boot_cache(struct kmem_cache *, const char *name, size_t size, slab_flags_t flags); diff --git a/mm/slab_common.c b/mm/slab_common.c index 8ba0ffb31279..fa27e0492f89 100644 --- a/mm/slab_common.c +++ b/mm/slab_common.c @@ -898,7 +898,7 @@ void __init create_boot_cache(struct kmem_cache *s, const char *name, size_t siz s->refcount = -1; /* Exempt from merging for now */ } -struct kmem_cache *__init create_kmalloc_cache(const char *name, size_t size, +struct kmem_cache *__init create_kmalloc_cache(const char *name, unsigned int size, slab_flags_t flags) { struct kmem_cache *s = kmem_cache_zalloc(kmem_cache, GFP_NOWAIT); -- 2.13.6 -- To unsubscribe, send a message with 'unsubscribe linux-mm' in the body to majordomo@xxxxxxxxx. For more info on Linux MM, see: http://www.linux-mm.org/ . Don't email: <a href=mailto:"dont@xxxxxxxxx"> email@xxxxxxxxx </a>