blob: 1812dac8c496b8694d18b45c372b86c411cf0400 [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>
Zhaolei02af61b2009-04-10 14:26:18 +080017#include <linux/kmemtrace.h>
Christoph Lameter2e892f42006-12-13 00:34:23 -080018
David Woodhouse1f0ce8b32010-05-19 12:01:42 +010019#ifndef ARCH_KMALLOC_MINALIGN
20/*
21 * Enforce a minimum alignment for the kmalloc caches.
22 * Usually, the kmalloc caches are cache_line_size() aligned, except when
23 * DEBUG and FORCED_DEBUG are enabled, then they are BYTES_PER_WORD aligned.
24 * Some archs want to perform DMA into kmalloc caches and need a guaranteed
25 * alignment larger than the alignment of a 64-bit integer.
26 * ARCH_KMALLOC_MINALIGN allows that.
27 * Note that increasing this value may disable some debug features.
28 */
29#define ARCH_KMALLOC_MINALIGN __alignof__(unsigned long long)
30#endif
31
32#ifndef ARCH_SLAB_MINALIGN
33/*
34 * Enforce a minimum alignment for all caches.
35 * Intended for archs that get misalignment faults even for BYTES_PER_WORD
36 * aligned buffers. Includes ARCH_KMALLOC_MINALIGN.
37 * If possible: Do not enable this flag for CONFIG_DEBUG_SLAB, it disables
38 * some debug features.
39 */
40#define ARCH_SLAB_MINALIGN 0
41#endif
42
Pekka Enberg8eae9852008-05-09 20:32:44 +020043/*
44 * struct kmem_cache
45 *
46 * manages a cache.
47 */
48
49struct kmem_cache {
50/* 1) per-cpu data, touched during every alloc/free */
51 struct array_cache *array[NR_CPUS];
52/* 2) Cache tunables. Protected by cache_chain_mutex */
53 unsigned int batchcount;
54 unsigned int limit;
55 unsigned int shared;
56
57 unsigned int buffer_size;
58 u32 reciprocal_buffer_size;
59/* 3) touched by every alloc & free from the backend */
60
61 unsigned int flags; /* constant flags */
62 unsigned int num; /* # of objs per slab */
63
64/* 4) cache_grow/shrink */
65 /* order of pgs per slab (2^n) */
66 unsigned int gfporder;
67
68 /* force GFP flags, e.g. GFP_DMA */
69 gfp_t gfpflags;
70
71 size_t colour; /* cache colouring range */
72 unsigned int colour_off; /* colour offset */
73 struct kmem_cache *slabp_cache;
74 unsigned int slab_size;
75 unsigned int dflags; /* dynamic flags */
76
77 /* constructor func */
78 void (*ctor)(void *obj);
79
80/* 5) cache creation/removal */
81 const char *name;
82 struct list_head next;
83
84/* 6) statistics */
85#ifdef CONFIG_DEBUG_SLAB
86 unsigned long num_active;
87 unsigned long num_allocations;
88 unsigned long high_mark;
89 unsigned long grown;
90 unsigned long reaped;
91 unsigned long errors;
92 unsigned long max_freeable;
93 unsigned long node_allocs;
94 unsigned long node_frees;
95 unsigned long node_overflow;
96 atomic_t allochit;
97 atomic_t allocmiss;
98 atomic_t freehit;
99 atomic_t freemiss;
100
101 /*
102 * If debugging is enabled, then the allocator can add additional
103 * fields and/or padding to every object. buffer_size contains the total
104 * object size including these internal fields, the following two
105 * variables contain the offset to the user object and its size.
106 */
107 int obj_offset;
108 int obj_size;
109#endif /* CONFIG_DEBUG_SLAB */
110
111 /*
112 * We put nodelists[] at the end of kmem_cache, because we want to size
113 * this array to nr_node_ids slots instead of MAX_NUMNODES
114 * (see kmem_cache_init())
115 * We still use [MAX_NUMNODES] and not [1] or [0] because cache_cache
116 * is statically defined, so we reserve the max number of nodes.
117 */
118 struct kmem_list3 *nodelists[MAX_NUMNODES];
119 /*
120 * Do not add fields after nodelists[]
121 */
122};
123
Christoph Lameter2e892f42006-12-13 00:34:23 -0800124/* Size description struct for general caches. */
125struct cache_sizes {
126 size_t cs_size;
127 struct kmem_cache *cs_cachep;
Christoph Lameter4b51d662007-02-10 01:43:10 -0800128#ifdef CONFIG_ZONE_DMA
Christoph Lameter2e892f42006-12-13 00:34:23 -0800129 struct kmem_cache *cs_dmacachep;
Christoph Lameter4b51d662007-02-10 01:43:10 -0800130#endif
Christoph Lameter2e892f42006-12-13 00:34:23 -0800131};
132extern struct cache_sizes malloc_sizes[];
133
Paul Mundt6193a2f2007-07-15 23:38:22 -0700134void *kmem_cache_alloc(struct kmem_cache *, gfp_t);
135void *__kmalloc(size_t size, gfp_t flags);
136
Li Zefan0f24f122009-12-11 15:45:30 +0800137#ifdef CONFIG_TRACING
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +0300138extern void *kmem_cache_alloc_notrace(struct kmem_cache *cachep, gfp_t flags);
139extern size_t slab_buffer_size(struct kmem_cache *cachep);
140#else
141static __always_inline void *
142kmem_cache_alloc_notrace(struct kmem_cache *cachep, gfp_t flags)
Christoph Lameter2e892f42006-12-13 00:34:23 -0800143{
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +0300144 return kmem_cache_alloc(cachep, flags);
145}
146static inline size_t slab_buffer_size(struct kmem_cache *cachep)
147{
148 return 0;
149}
150#endif
151
152static __always_inline void *kmalloc(size_t size, gfp_t flags)
153{
154 struct kmem_cache *cachep;
155 void *ret;
156
Christoph Lameter2e892f42006-12-13 00:34:23 -0800157 if (__builtin_constant_p(size)) {
158 int i = 0;
Christoph Lameter6cb8f912007-07-17 04:03:22 -0700159
160 if (!size)
161 return ZERO_SIZE_PTR;
162
Christoph Lameter2e892f42006-12-13 00:34:23 -0800163#define CACHE(x) \
164 if (size <= x) \
165 goto found; \
166 else \
167 i++;
Joe Perches1c61fc42008-03-05 13:58:17 -0800168#include <linux/kmalloc_sizes.h>
Christoph Lameter2e892f42006-12-13 00:34:23 -0800169#undef CACHE
Jeff Mahoney1cf3eb22009-01-27 23:48:59 +0200170 return NULL;
Christoph Lameter2e892f42006-12-13 00:34:23 -0800171found:
Christoph Lameter4b51d662007-02-10 01:43:10 -0800172#ifdef CONFIG_ZONE_DMA
173 if (flags & GFP_DMA)
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +0300174 cachep = malloc_sizes[i].cs_dmacachep;
175 else
Christoph Lameter4b51d662007-02-10 01:43:10 -0800176#endif
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +0300177 cachep = malloc_sizes[i].cs_cachep;
178
179 ret = kmem_cache_alloc_notrace(cachep, flags);
180
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +0200181 trace_kmalloc(_THIS_IP_, ret,
182 size, slab_buffer_size(cachep), flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +0300183
184 return ret;
Christoph Lameter2e892f42006-12-13 00:34:23 -0800185 }
186 return __kmalloc(size, flags);
187}
188
Christoph Lameter2e892f42006-12-13 00:34:23 -0800189#ifdef CONFIG_NUMA
190extern void *__kmalloc_node(size_t size, gfp_t flags, int node);
Paul Mundt6193a2f2007-07-15 23:38:22 -0700191extern void *kmem_cache_alloc_node(struct kmem_cache *, gfp_t flags, int node);
Christoph Lameter2e892f42006-12-13 00:34:23 -0800192
Li Zefan0f24f122009-12-11 15:45:30 +0800193#ifdef CONFIG_TRACING
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +0300194extern void *kmem_cache_alloc_node_notrace(struct kmem_cache *cachep,
195 gfp_t flags,
196 int nodeid);
197#else
198static __always_inline void *
199kmem_cache_alloc_node_notrace(struct kmem_cache *cachep,
200 gfp_t flags,
201 int nodeid)
Christoph Lameter2e892f42006-12-13 00:34:23 -0800202{
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +0300203 return kmem_cache_alloc_node(cachep, flags, nodeid);
204}
205#endif
206
207static __always_inline void *kmalloc_node(size_t size, gfp_t flags, int node)
208{
209 struct kmem_cache *cachep;
210 void *ret;
211
Christoph Lameter2e892f42006-12-13 00:34:23 -0800212 if (__builtin_constant_p(size)) {
213 int i = 0;
Christoph Lameter6cb8f912007-07-17 04:03:22 -0700214
215 if (!size)
216 return ZERO_SIZE_PTR;
217
Christoph Lameter2e892f42006-12-13 00:34:23 -0800218#define CACHE(x) \
219 if (size <= x) \
220 goto found; \
221 else \
222 i++;
Joe Perches1c61fc42008-03-05 13:58:17 -0800223#include <linux/kmalloc_sizes.h>
Christoph Lameter2e892f42006-12-13 00:34:23 -0800224#undef CACHE
Jeff Mahoney1cf3eb22009-01-27 23:48:59 +0200225 return NULL;
Christoph Lameter2e892f42006-12-13 00:34:23 -0800226found:
Christoph Lameter4b51d662007-02-10 01:43:10 -0800227#ifdef CONFIG_ZONE_DMA
228 if (flags & GFP_DMA)
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +0300229 cachep = malloc_sizes[i].cs_dmacachep;
230 else
Christoph Lameter4b51d662007-02-10 01:43:10 -0800231#endif
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +0300232 cachep = malloc_sizes[i].cs_cachep;
233
234 ret = kmem_cache_alloc_node_notrace(cachep, flags, node);
235
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +0200236 trace_kmalloc_node(_THIS_IP_, ret,
237 size, slab_buffer_size(cachep),
238 flags, node);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +0300239
240 return ret;
Christoph Lameter2e892f42006-12-13 00:34:23 -0800241 }
242 return __kmalloc_node(size, flags, node);
243}
244
245#endif /* CONFIG_NUMA */
246
Christoph Lameter2e892f42006-12-13 00:34:23 -0800247#endif /* _LINUX_SLAB_DEF_H */