blob: 6ca6a7b66d75c36eb5ab30d4f5f3784a4e9ea8aa [file] [log] [blame]
Christoph Lameter2e892f42006-12-13 00:34:23 -08001#ifndef _LINUX_SLAB_DEF_H
2#define _LINUX_SLAB_DEF_H
3
4/*
5 * Definitions unique to the original Linux SLAB allocator.
6 *
7 * What we provide here is a way to optimize the frequent kmalloc
8 * calls in the kernel by selecting the appropriate general cache
9 * if kmalloc was called with a size that can be established at
10 * compile time.
11 */
12
13#include <linux/init.h>
14#include <asm/page.h> /* kmalloc_sizes.h needs PAGE_SIZE */
15#include <asm/cache.h> /* kmalloc_sizes.h needs L1_CACHE_BYTES */
16#include <linux/compiler.h>
17
18/* Size description struct for general caches. */
19struct cache_sizes {
20 size_t cs_size;
21 struct kmem_cache *cs_cachep;
Christoph Lameter4b51d662007-02-10 01:43:10 -080022#ifdef CONFIG_ZONE_DMA
Christoph Lameter2e892f42006-12-13 00:34:23 -080023 struct kmem_cache *cs_dmacachep;
Christoph Lameter4b51d662007-02-10 01:43:10 -080024#endif
Christoph Lameter2e892f42006-12-13 00:34:23 -080025};
26extern struct cache_sizes malloc_sizes[];
27
Paul Mundt6193a2f2007-07-15 23:38:22 -070028void *kmem_cache_alloc(struct kmem_cache *, gfp_t);
29void *__kmalloc(size_t size, gfp_t flags);
30
Christoph Lameter2e892f42006-12-13 00:34:23 -080031static inline void *kmalloc(size_t size, gfp_t flags)
32{
33 if (__builtin_constant_p(size)) {
34 int i = 0;
Christoph Lameter6cb8f912007-07-17 04:03:22 -070035
36 if (!size)
37 return ZERO_SIZE_PTR;
38
Christoph Lameter2e892f42006-12-13 00:34:23 -080039#define CACHE(x) \
40 if (size <= x) \
41 goto found; \
42 else \
43 i++;
Joe Perches1c61fc42008-03-05 13:58:17 -080044#include <linux/kmalloc_sizes.h>
Christoph Lameter2e892f42006-12-13 00:34:23 -080045#undef CACHE
Jeff Mahoney1cf3eb22009-01-27 23:48:59 +020046 return NULL;
Christoph Lameter2e892f42006-12-13 00:34:23 -080047found:
Christoph Lameter4b51d662007-02-10 01:43:10 -080048#ifdef CONFIG_ZONE_DMA
49 if (flags & GFP_DMA)
50 return kmem_cache_alloc(malloc_sizes[i].cs_dmacachep,
51 flags);
52#endif
53 return kmem_cache_alloc(malloc_sizes[i].cs_cachep, flags);
Christoph Lameter2e892f42006-12-13 00:34:23 -080054 }
55 return __kmalloc(size, flags);
56}
57
Christoph Lameter2e892f42006-12-13 00:34:23 -080058#ifdef CONFIG_NUMA
59extern void *__kmalloc_node(size_t size, gfp_t flags, int node);
Paul Mundt6193a2f2007-07-15 23:38:22 -070060extern void *kmem_cache_alloc_node(struct kmem_cache *, gfp_t flags, int node);
Christoph Lameter2e892f42006-12-13 00:34:23 -080061
62static inline void *kmalloc_node(size_t size, gfp_t flags, int node)
63{
64 if (__builtin_constant_p(size)) {
65 int i = 0;
Christoph Lameter6cb8f912007-07-17 04:03:22 -070066
67 if (!size)
68 return ZERO_SIZE_PTR;
69
Christoph Lameter2e892f42006-12-13 00:34:23 -080070#define CACHE(x) \
71 if (size <= x) \
72 goto found; \
73 else \
74 i++;
Joe Perches1c61fc42008-03-05 13:58:17 -080075#include <linux/kmalloc_sizes.h>
Christoph Lameter2e892f42006-12-13 00:34:23 -080076#undef CACHE
Jeff Mahoney1cf3eb22009-01-27 23:48:59 +020077 return NULL;
Christoph Lameter2e892f42006-12-13 00:34:23 -080078found:
Christoph Lameter4b51d662007-02-10 01:43:10 -080079#ifdef CONFIG_ZONE_DMA
80 if (flags & GFP_DMA)
81 return kmem_cache_alloc_node(malloc_sizes[i].cs_dmacachep,
82 flags, node);
83#endif
84 return kmem_cache_alloc_node(malloc_sizes[i].cs_cachep,
85 flags, node);
Christoph Lameter2e892f42006-12-13 00:34:23 -080086 }
87 return __kmalloc_node(size, flags, node);
88}
89
90#endif /* CONFIG_NUMA */
91
Christoph Lameter2e892f42006-12-13 00:34:23 -080092#endif /* _LINUX_SLAB_DEF_H */