diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/slub_def.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/include/linux/slub_def.h b/include/linux/slub_def.h index 5e6d3d634d5b..a849c472b845 100644 --- a/include/linux/slub_def.h +++ b/include/linux/slub_def.h | |||
@@ -188,12 +188,16 @@ static __always_inline struct kmem_cache *kmalloc_slab(size_t size) | |||
188 | void *kmem_cache_alloc(struct kmem_cache *, gfp_t); | 188 | void *kmem_cache_alloc(struct kmem_cache *, gfp_t); |
189 | void *__kmalloc(size_t size, gfp_t flags); | 189 | void *__kmalloc(size_t size, gfp_t flags); |
190 | 190 | ||
191 | static __always_inline void *kmalloc_large(size_t size, gfp_t flags) | ||
192 | { | ||
193 | return (void *)__get_free_pages(flags | __GFP_COMP, get_order(size)); | ||
194 | } | ||
195 | |||
191 | static __always_inline void *kmalloc(size_t size, gfp_t flags) | 196 | static __always_inline void *kmalloc(size_t size, gfp_t flags) |
192 | { | 197 | { |
193 | if (__builtin_constant_p(size)) { | 198 | if (__builtin_constant_p(size)) { |
194 | if (size > PAGE_SIZE / 2) | 199 | if (size > PAGE_SIZE / 2) |
195 | return (void *)__get_free_pages(flags | __GFP_COMP, | 200 | return kmalloc_large(size, flags); |
196 | get_order(size)); | ||
197 | 201 | ||
198 | if (!(flags & SLUB_DMA)) { | 202 | if (!(flags & SLUB_DMA)) { |
199 | struct kmem_cache *s = kmalloc_slab(size); | 203 | struct kmem_cache *s = kmalloc_slab(size); |