blob: dc28432b5b9abf8c566a74d363b197fc3d0bca5f [file] [log] [blame]
Christoph Lameter81819f02007-05-06 14:49:36 -07001#ifndef _LINUX_SLUB_DEF_H
2#define _LINUX_SLUB_DEF_H
3
4/*
5 * SLUB : A Slab allocator without object queues.
6 *
Christoph Lametercde53532008-07-04 09:59:22 -07007 * (C) 2007 SGI, Christoph Lameter
Christoph Lameter81819f02007-05-06 14:49:36 -07008 */
9#include <linux/types.h>
10#include <linux/gfp.h>
11#include <linux/workqueue.h>
12#include <linux/kobject.h>
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +030013#include <linux/kmemtrace.h>
Christoph Lameter81819f02007-05-06 14:49:36 -070014
Christoph Lameter8ff12cf2008-02-07 17:47:41 -080015enum stat_item {
16 ALLOC_FASTPATH, /* Allocation from cpu slab */
17 ALLOC_SLOWPATH, /* Allocation by getting a new cpu slab */
18 FREE_FASTPATH, /* Free to cpu slub */
19 FREE_SLOWPATH, /* Freeing not to cpu slab */
20 FREE_FROZEN, /* Freeing to frozen slab */
21 FREE_ADD_PARTIAL, /* Freeing moves slab to partial list */
22 FREE_REMOVE_PARTIAL, /* Freeing removes last object */
23 ALLOC_FROM_PARTIAL, /* Cpu slab acquired from partial list */
24 ALLOC_SLAB, /* Cpu slab acquired from page allocator */
25 ALLOC_REFILL, /* Refill cpu slab from slab freelist */
26 FREE_SLAB, /* Slab freed to the page allocator */
27 CPUSLAB_FLUSH, /* Abandoning of the cpu slab */
28 DEACTIVATE_FULL, /* Cpu slab was full when deactivated */
29 DEACTIVATE_EMPTY, /* Cpu slab was empty when deactivated */
30 DEACTIVATE_TO_HEAD, /* Cpu slab was moved to the head of partials */
31 DEACTIVATE_TO_TAIL, /* Cpu slab was moved to the tail of partials */
32 DEACTIVATE_REMOTE_FREES,/* Slab contained remotely freed objects */
Christoph Lameter65c33762008-04-14 19:11:40 +030033 ORDER_FALLBACK, /* Number of times fallback was necessary */
Christoph Lameter8ff12cf2008-02-07 17:47:41 -080034 NR_SLUB_STAT_ITEMS };
35
Christoph Lameterdfb4f092007-10-16 01:26:05 -070036struct kmem_cache_cpu {
Christoph Lameterda89b792008-01-07 23:20:31 -080037 void **freelist; /* Pointer to first free per cpu object */
38 struct page *page; /* The slab from which we are allocating */
39 int node; /* The node of the page (or -1 for debug) */
40 unsigned int offset; /* Freepointer offset (in word units) */
41 unsigned int objsize; /* Size of an object (from kmem_cache) */
Christoph Lameter8ff12cf2008-02-07 17:47:41 -080042#ifdef CONFIG_SLUB_STATS
43 unsigned stat[NR_SLUB_STAT_ITEMS];
44#endif
Christoph Lameter4c93c3552007-10-16 01:26:08 -070045};
Christoph Lameterdfb4f092007-10-16 01:26:05 -070046
Christoph Lameter81819f02007-05-06 14:49:36 -070047struct kmem_cache_node {
48 spinlock_t list_lock; /* Protect partial list and nr_partial */
49 unsigned long nr_partial;
Pekka Enberg5595cff2008-08-05 09:28:47 +030050 unsigned long min_partial;
Christoph Lameter81819f02007-05-06 14:49:36 -070051 struct list_head partial;
Christoph Lameter0c710012007-07-17 04:03:24 -070052#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter0f389ec2008-04-14 18:53:02 +030053 atomic_long_t nr_slabs;
Christoph Lameter205ab992008-04-14 19:11:40 +030054 atomic_long_t total_objects;
Christoph Lameter643b1132007-05-06 14:49:42 -070055 struct list_head full;
Christoph Lameter0c710012007-07-17 04:03:24 -070056#endif
Christoph Lameter81819f02007-05-06 14:49:36 -070057};
58
59/*
Christoph Lameter834f3d12008-04-14 19:11:31 +030060 * Word size structure that can be atomically updated or read and that
61 * contains both the order and the number of objects that a slab of the
62 * given order would contain.
63 */
64struct kmem_cache_order_objects {
65 unsigned long x;
66};
67
68/*
Christoph Lameter81819f02007-05-06 14:49:36 -070069 * Slab cache management.
70 */
71struct kmem_cache {
72 /* Used for retriving partial slabs etc */
73 unsigned long flags;
74 int size; /* The size of an object including meta data */
75 int objsize; /* The size of an object without meta data */
76 int offset; /* Free pointer offset. */
Christoph Lameter834f3d12008-04-14 19:11:31 +030077 struct kmem_cache_order_objects oo;
Christoph Lameter81819f02007-05-06 14:49:36 -070078
79 /*
80 * Avoid an extra cache line for UP, SMP and for the node local to
81 * struct kmem_cache.
82 */
83 struct kmem_cache_node local_node;
84
85 /* Allocation and freeing of slabs */
Christoph Lameter205ab992008-04-14 19:11:40 +030086 struct kmem_cache_order_objects max;
Christoph Lameter65c33762008-04-14 19:11:40 +030087 struct kmem_cache_order_objects min;
Christoph Lameterb7a49f02008-02-14 14:21:32 -080088 gfp_t allocflags; /* gfp flags to use on each alloc */
Christoph Lameter81819f02007-05-06 14:49:36 -070089 int refcount; /* Refcount for slab cache destroy */
Alexey Dobriyan51cc5062008-07-25 19:45:34 -070090 void (*ctor)(void *);
Christoph Lameter81819f02007-05-06 14:49:36 -070091 int inuse; /* Offset to metadata */
92 int align; /* Alignment */
93 const char *name; /* Name (only for display!) */
94 struct list_head list; /* List of slab caches */
Christoph Lameter0c710012007-07-17 04:03:24 -070095#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter81819f02007-05-06 14:49:36 -070096 struct kobject kobj; /* For sysfs */
Christoph Lameter0c710012007-07-17 04:03:24 -070097#endif
Christoph Lameter81819f02007-05-06 14:49:36 -070098
99#ifdef CONFIG_NUMA
Christoph Lameter98246012008-01-07 23:20:26 -0800100 /*
101 * Defragmentation by allocating from a remote node.
102 */
103 int remote_node_defrag_ratio;
Christoph Lameter81819f02007-05-06 14:49:36 -0700104 struct kmem_cache_node *node[MAX_NUMNODES];
105#endif
Christoph Lameter4c93c3552007-10-16 01:26:08 -0700106#ifdef CONFIG_SMP
107 struct kmem_cache_cpu *cpu_slab[NR_CPUS];
108#else
109 struct kmem_cache_cpu cpu_slab;
110#endif
Christoph Lameter81819f02007-05-06 14:49:36 -0700111};
112
113/*
114 * Kmalloc subsystem.
115 */
Christoph Lameter4b356be2007-06-16 10:16:13 -0700116#if defined(ARCH_KMALLOC_MINALIGN) && ARCH_KMALLOC_MINALIGN > 8
117#define KMALLOC_MIN_SIZE ARCH_KMALLOC_MINALIGN
118#else
119#define KMALLOC_MIN_SIZE 8
120#endif
121
122#define KMALLOC_SHIFT_LOW ilog2(KMALLOC_MIN_SIZE)
Christoph Lameter81819f02007-05-06 14:49:36 -0700123
Christoph Lameter81819f02007-05-06 14:49:36 -0700124/*
125 * We keep the general caches in an array of slab caches that are used for
126 * 2^x bytes of allocations.
127 */
Christoph Lameter331dc552008-02-14 14:28:09 -0800128extern struct kmem_cache kmalloc_caches[PAGE_SHIFT + 1];
Christoph Lameter81819f02007-05-06 14:49:36 -0700129
130/*
131 * Sorry that the following has to be that ugly but some versions of GCC
132 * have trouble with constant propagation and loops.
133 */
Christoph Lameteraa137f92007-08-31 00:48:45 -0700134static __always_inline int kmalloc_index(size_t size)
Christoph Lameter81819f02007-05-06 14:49:36 -0700135{
Christoph Lameter272c1d22007-06-08 13:46:49 -0700136 if (!size)
137 return 0;
Christoph Lameter614410d2007-05-06 14:49:38 -0700138
Christoph Lameter4b356be2007-06-16 10:16:13 -0700139 if (size <= KMALLOC_MIN_SIZE)
140 return KMALLOC_SHIFT_LOW;
141
Christoph Lameter41d54d32008-07-03 09:14:26 -0500142#if KMALLOC_MIN_SIZE <= 64
Christoph Lameter81819f02007-05-06 14:49:36 -0700143 if (size > 64 && size <= 96)
144 return 1;
145 if (size > 128 && size <= 192)
146 return 2;
Christoph Lameter41d54d32008-07-03 09:14:26 -0500147#endif
Christoph Lameter81819f02007-05-06 14:49:36 -0700148 if (size <= 8) return 3;
149 if (size <= 16) return 4;
150 if (size <= 32) return 5;
151 if (size <= 64) return 6;
152 if (size <= 128) return 7;
153 if (size <= 256) return 8;
154 if (size <= 512) return 9;
155 if (size <= 1024) return 10;
156 if (size <= 2 * 1024) return 11;
Christoph Lameter6446faa2008-02-15 23:45:26 -0800157 if (size <= 4 * 1024) return 12;
Christoph Lameteraadb4bc2007-10-16 01:24:38 -0700158/*
159 * The following is only needed to support architectures with a larger page
160 * size than 4k.
161 */
Christoph Lameter81819f02007-05-06 14:49:36 -0700162 if (size <= 8 * 1024) return 13;
163 if (size <= 16 * 1024) return 14;
164 if (size <= 32 * 1024) return 15;
165 if (size <= 64 * 1024) return 16;
166 if (size <= 128 * 1024) return 17;
167 if (size <= 256 * 1024) return 18;
Christoph Lameteraadb4bc2007-10-16 01:24:38 -0700168 if (size <= 512 * 1024) return 19;
Christoph Lameter81819f02007-05-06 14:49:36 -0700169 if (size <= 1024 * 1024) return 20;
Christoph Lameter81819f02007-05-06 14:49:36 -0700170 if (size <= 2 * 1024 * 1024) return 21;
Christoph Lameter81819f02007-05-06 14:49:36 -0700171 return -1;
172
173/*
174 * What we really wanted to do and cannot do because of compiler issues is:
175 * int i;
176 * for (i = KMALLOC_SHIFT_LOW; i <= KMALLOC_SHIFT_HIGH; i++)
177 * if (size <= (1 << i))
178 * return i;
179 */
180}
181
182/*
183 * Find the slab cache for a given combination of allocation flags and size.
184 *
185 * This ought to end up with a global pointer to the right cache
186 * in kmalloc_caches.
187 */
Christoph Lameteraa137f92007-08-31 00:48:45 -0700188static __always_inline struct kmem_cache *kmalloc_slab(size_t size)
Christoph Lameter81819f02007-05-06 14:49:36 -0700189{
190 int index = kmalloc_index(size);
191
192 if (index == 0)
193 return NULL;
194
Christoph Lameter81819f02007-05-06 14:49:36 -0700195 return &kmalloc_caches[index];
196}
197
198#ifdef CONFIG_ZONE_DMA
199#define SLUB_DMA __GFP_DMA
200#else
201/* Disable DMA functionality */
Al Virod0469432007-07-20 16:18:06 +0100202#define SLUB_DMA (__force gfp_t)0
Christoph Lameter81819f02007-05-06 14:49:36 -0700203#endif
204
Paul Mundt6193a2f2007-07-15 23:38:22 -0700205void *kmem_cache_alloc(struct kmem_cache *, gfp_t);
206void *__kmalloc(size_t size, gfp_t flags);
207
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +0300208#ifdef CONFIG_KMEMTRACE
209extern void *kmem_cache_alloc_notrace(struct kmem_cache *s, gfp_t gfpflags);
210#else
211static __always_inline void *
212kmem_cache_alloc_notrace(struct kmem_cache *s, gfp_t gfpflags)
213{
214 return kmem_cache_alloc(s, gfpflags);
215}
216#endif
217
Pekka Enbergeada35e2008-02-11 22:47:46 +0200218static __always_inline void *kmalloc_large(size_t size, gfp_t flags)
219{
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +0300220 unsigned int order = get_order(size);
221 void *ret = (void *) __get_free_pages(flags | __GFP_COMP, order);
222
223 kmemtrace_mark_alloc(KMEMTRACE_TYPE_KMALLOC, _THIS_IP_, ret,
224 size, PAGE_SIZE << order, flags);
225
226 return ret;
Pekka Enbergeada35e2008-02-11 22:47:46 +0200227}
228
Christoph Lameteraa137f92007-08-31 00:48:45 -0700229static __always_inline void *kmalloc(size_t size, gfp_t flags)
Christoph Lameter81819f02007-05-06 14:49:36 -0700230{
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +0300231 void *ret;
232
Christoph Lameteraadb4bc2007-10-16 01:24:38 -0700233 if (__builtin_constant_p(size)) {
Christoph Lameter331dc552008-02-14 14:28:09 -0800234 if (size > PAGE_SIZE)
Pekka Enbergeada35e2008-02-11 22:47:46 +0200235 return kmalloc_large(size, flags);
Christoph Lameter81819f02007-05-06 14:49:36 -0700236
Christoph Lameteraadb4bc2007-10-16 01:24:38 -0700237 if (!(flags & SLUB_DMA)) {
238 struct kmem_cache *s = kmalloc_slab(size);
Christoph Lameter81819f02007-05-06 14:49:36 -0700239
Christoph Lameteraadb4bc2007-10-16 01:24:38 -0700240 if (!s)
241 return ZERO_SIZE_PTR;
242
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +0300243 ret = kmem_cache_alloc_notrace(s, flags);
244
245 kmemtrace_mark_alloc(KMEMTRACE_TYPE_KMALLOC,
246 _THIS_IP_, ret,
247 size, s->size, flags);
248
249 return ret;
Christoph Lameteraadb4bc2007-10-16 01:24:38 -0700250 }
251 }
252 return __kmalloc(size, flags);
Christoph Lameter81819f02007-05-06 14:49:36 -0700253}
254
Christoph Lameter81819f02007-05-06 14:49:36 -0700255#ifdef CONFIG_NUMA
Paul Mundt6193a2f2007-07-15 23:38:22 -0700256void *__kmalloc_node(size_t size, gfp_t flags, int node);
257void *kmem_cache_alloc_node(struct kmem_cache *, gfp_t flags, int node);
Christoph Lameter81819f02007-05-06 14:49:36 -0700258
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +0300259#ifdef CONFIG_KMEMTRACE
260extern void *kmem_cache_alloc_node_notrace(struct kmem_cache *s,
261 gfp_t gfpflags,
262 int node);
263#else
264static __always_inline void *
265kmem_cache_alloc_node_notrace(struct kmem_cache *s,
266 gfp_t gfpflags,
267 int node)
268{
269 return kmem_cache_alloc_node(s, gfpflags, node);
270}
271#endif
272
Christoph Lameteraa137f92007-08-31 00:48:45 -0700273static __always_inline void *kmalloc_node(size_t size, gfp_t flags, int node)
Christoph Lameter81819f02007-05-06 14:49:36 -0700274{
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +0300275 void *ret;
276
Christoph Lameteraadb4bc2007-10-16 01:24:38 -0700277 if (__builtin_constant_p(size) &&
Christoph Lameter331dc552008-02-14 14:28:09 -0800278 size <= PAGE_SIZE && !(flags & SLUB_DMA)) {
Christoph Lameteraadb4bc2007-10-16 01:24:38 -0700279 struct kmem_cache *s = kmalloc_slab(size);
Christoph Lameter81819f02007-05-06 14:49:36 -0700280
281 if (!s)
Christoph Lameter272c1d22007-06-08 13:46:49 -0700282 return ZERO_SIZE_PTR;
Christoph Lameter81819f02007-05-06 14:49:36 -0700283
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +0300284 ret = kmem_cache_alloc_node_notrace(s, flags, node);
285
286 kmemtrace_mark_alloc_node(KMEMTRACE_TYPE_KMALLOC,
287 _THIS_IP_, ret,
288 size, s->size, flags, node);
289
290 return ret;
Christoph Lameteraadb4bc2007-10-16 01:24:38 -0700291 }
292 return __kmalloc_node(size, flags, node);
Christoph Lameter81819f02007-05-06 14:49:36 -0700293}
294#endif
295
Christoph Lameter81819f02007-05-06 14:49:36 -0700296#endif /* _LINUX_SLUB_DEF_H */