blob: 9cc049a942c6b6dcfcdc7dacd5211c66f799b120 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/mm/slab.c
3 * Written by Mark Hemment, 1996/97.
4 * (markhe@nextd.demon.co.uk)
5 *
6 * kmem_cache_destroy() + some cleanup - 1999 Andrea Arcangeli
7 *
8 * Major cleanup, different bufctl logic, per-cpu arrays
9 * (c) 2000 Manfred Spraul
10 *
11 * Cleanup, make the head arrays unconditional, preparation for NUMA
12 * (c) 2002 Manfred Spraul
13 *
14 * An implementation of the Slab Allocator as described in outline in;
15 * UNIX Internals: The New Frontiers by Uresh Vahalia
16 * Pub: Prentice Hall ISBN 0-13-101908-2
17 * or with a little more detail in;
18 * The Slab Allocator: An Object-Caching Kernel Memory Allocator
19 * Jeff Bonwick (Sun Microsystems).
20 * Presented at: USENIX Summer 1994 Technical Conference
21 *
22 * The memory is organized in caches, one cache for each object type.
23 * (e.g. inode_cache, dentry_cache, buffer_head, vm_area_struct)
24 * Each cache consists out of many slabs (they are small (usually one
25 * page long) and always contiguous), and each slab contains multiple
26 * initialized objects.
27 *
28 * This means, that your constructor is used only for newly allocated
29 * slabs and you must pass objects with the same intializations to
30 * kmem_cache_free.
31 *
32 * Each cache can only support one memory type (GFP_DMA, GFP_HIGHMEM,
33 * normal). If you need a special memory type, then must create a new
34 * cache for that memory type.
35 *
36 * In order to reduce fragmentation, the slabs are sorted in 3 groups:
37 * full slabs with 0 free objects
38 * partial slabs
39 * empty slabs with no allocated objects
40 *
41 * If partial slabs exist, then new allocations come from these slabs,
42 * otherwise from empty slabs or new slabs are allocated.
43 *
44 * kmem_cache_destroy() CAN CRASH if you try to allocate from the cache
45 * during kmem_cache_destroy(). The caller must prevent concurrent allocs.
46 *
47 * Each cache has a short per-cpu head array, most allocs
48 * and frees go into that array, and if that array overflows, then 1/2
49 * of the entries in the array are given back into the global cache.
50 * The head array is strictly LIFO and should improve the cache hit rates.
51 * On SMP, it additionally reduces the spinlock operations.
52 *
53 * The c_cpuarray may not be read with enabled local interrupts -
54 * it's changed with a smp_call_function().
55 *
56 * SMP synchronization:
57 * constructors and destructors are called without any locking.
Pekka Enberg343e0d72006-02-01 03:05:50 -080058 * Several members in struct kmem_cache and struct slab never change, they
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 * are accessed without any locking.
60 * The per-cpu arrays are never accessed from the wrong cpu, no locking,
61 * and local interrupts are disabled so slab code is preempt-safe.
62 * The non-constant members are protected with a per-cache irq spinlock.
63 *
64 * Many thanks to Mark Hemment, who wrote another per-cpu slab patch
65 * in 2000 - many ideas in the current implementation are derived from
66 * his patch.
67 *
68 * Further notes from the original documentation:
69 *
70 * 11 April '97. Started multi-threading - markhe
Ingo Molnarfc0abb12006-01-18 17:42:33 -080071 * The global cache-chain is protected by the mutex 'cache_chain_mutex'.
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 * The sem is only needed when accessing/extending the cache-chain, which
73 * can never happen inside an interrupt (kmem_cache_create(),
74 * kmem_cache_shrink() and kmem_cache_reap()).
75 *
76 * At present, each engine can be growing a cache. This should be blocked.
77 *
Christoph Lametere498be72005-09-09 13:03:32 -070078 * 15 March 2005. NUMA slab allocator.
79 * Shai Fultheim <shai@scalex86.org>.
80 * Shobhit Dayal <shobhit@calsoftinc.com>
81 * Alok N Kataria <alokk@calsoftinc.com>
82 * Christoph Lameter <christoph@lameter.com>
83 *
84 * Modified the slab allocator to be node aware on NUMA systems.
85 * Each node has its own list of partial, free and full slabs.
86 * All object allocations for a node occur from node specific slab lists.
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 */
88
89#include <linux/config.h>
90#include <linux/slab.h>
91#include <linux/mm.h>
92#include <linux/swap.h>
93#include <linux/cache.h>
94#include <linux/interrupt.h>
95#include <linux/init.h>
96#include <linux/compiler.h>
97#include <linux/seq_file.h>
98#include <linux/notifier.h>
99#include <linux/kallsyms.h>
100#include <linux/cpu.h>
101#include <linux/sysctl.h>
102#include <linux/module.h>
103#include <linux/rcupdate.h>
Paulo Marques543537b2005-06-23 00:09:02 -0700104#include <linux/string.h>
Christoph Lametere498be72005-09-09 13:03:32 -0700105#include <linux/nodemask.h>
Christoph Lameterdc85da12006-01-18 17:42:36 -0800106#include <linux/mempolicy.h>
Ingo Molnarfc0abb12006-01-18 17:42:33 -0800107#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109#include <asm/uaccess.h>
110#include <asm/cacheflush.h>
111#include <asm/tlbflush.h>
112#include <asm/page.h>
113
114/*
115 * DEBUG - 1 for kmem_cache_create() to honour; SLAB_DEBUG_INITIAL,
116 * SLAB_RED_ZONE & SLAB_POISON.
117 * 0 for faster, smaller code (especially in the critical paths).
118 *
119 * STATS - 1 to collect stats for /proc/slabinfo.
120 * 0 for faster, smaller code (especially in the critical paths).
121 *
122 * FORCED_DEBUG - 1 enables SLAB_RED_ZONE and SLAB_POISON (if possible)
123 */
124
125#ifdef CONFIG_DEBUG_SLAB
126#define DEBUG 1
127#define STATS 1
128#define FORCED_DEBUG 1
129#else
130#define DEBUG 0
131#define STATS 0
132#define FORCED_DEBUG 0
133#endif
134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135/* Shouldn't this be in a header file somewhere? */
136#define BYTES_PER_WORD sizeof(void *)
137
138#ifndef cache_line_size
139#define cache_line_size() L1_CACHE_BYTES
140#endif
141
142#ifndef ARCH_KMALLOC_MINALIGN
143/*
144 * Enforce a minimum alignment for the kmalloc caches.
145 * Usually, the kmalloc caches are cache_line_size() aligned, except when
146 * DEBUG and FORCED_DEBUG are enabled, then they are BYTES_PER_WORD aligned.
147 * Some archs want to perform DMA into kmalloc caches and need a guaranteed
148 * alignment larger than BYTES_PER_WORD. ARCH_KMALLOC_MINALIGN allows that.
149 * Note that this flag disables some debug features.
150 */
151#define ARCH_KMALLOC_MINALIGN 0
152#endif
153
154#ifndef ARCH_SLAB_MINALIGN
155/*
156 * Enforce a minimum alignment for all caches.
157 * Intended for archs that get misalignment faults even for BYTES_PER_WORD
158 * aligned buffers. Includes ARCH_KMALLOC_MINALIGN.
159 * If possible: Do not enable this flag for CONFIG_DEBUG_SLAB, it disables
160 * some debug features.
161 */
162#define ARCH_SLAB_MINALIGN 0
163#endif
164
165#ifndef ARCH_KMALLOC_FLAGS
166#define ARCH_KMALLOC_FLAGS SLAB_HWCACHE_ALIGN
167#endif
168
169/* Legal flag mask for kmem_cache_create(). */
170#if DEBUG
171# define CREATE_MASK (SLAB_DEBUG_INITIAL | SLAB_RED_ZONE | \
172 SLAB_POISON | SLAB_HWCACHE_ALIGN | \
173 SLAB_NO_REAP | SLAB_CACHE_DMA | \
174 SLAB_MUST_HWCACHE_ALIGN | SLAB_STORE_USER | \
175 SLAB_RECLAIM_ACCOUNT | SLAB_PANIC | \
176 SLAB_DESTROY_BY_RCU)
177#else
178# define CREATE_MASK (SLAB_HWCACHE_ALIGN | SLAB_NO_REAP | \
179 SLAB_CACHE_DMA | SLAB_MUST_HWCACHE_ALIGN | \
180 SLAB_RECLAIM_ACCOUNT | SLAB_PANIC | \
181 SLAB_DESTROY_BY_RCU)
182#endif
183
184/*
185 * kmem_bufctl_t:
186 *
187 * Bufctl's are used for linking objs within a slab
188 * linked offsets.
189 *
190 * This implementation relies on "struct page" for locating the cache &
191 * slab an object belongs to.
192 * This allows the bufctl structure to be small (one int), but limits
193 * the number of objects a slab (not a cache) can contain when off-slab
194 * bufctls are used. The limit is the size of the largest general cache
195 * that does not use off-slab slabs.
196 * For 32bit archs with 4 kB pages, is this 56.
197 * This is not serious, as it is only for large objects, when it is unwise
198 * to have too many per slab.
199 * Note: This limit can be raised by introducing a general cache whose size
200 * is less than 512 (PAGE_SIZE<<3), but greater than 256.
201 */
202
Kyle Moffettfa5b08d2005-09-03 15:55:03 -0700203typedef unsigned int kmem_bufctl_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204#define BUFCTL_END (((kmem_bufctl_t)(~0U))-0)
205#define BUFCTL_FREE (((kmem_bufctl_t)(~0U))-1)
206#define SLAB_LIMIT (((kmem_bufctl_t)(~0U))-2)
207
208/* Max number of objs-per-slab for caches which use off-slab slabs.
209 * Needed to avoid a possible looping condition in cache_grow().
210 */
211static unsigned long offslab_limit;
212
213/*
214 * struct slab
215 *
216 * Manages the objs in a slab. Placed either at the beginning of mem allocated
217 * for a slab, or allocated from an general cache.
218 * Slabs are chained into three list: fully used, partial, fully free slabs.
219 */
220struct slab {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800221 struct list_head list;
222 unsigned long colouroff;
223 void *s_mem; /* including colour offset */
224 unsigned int inuse; /* num of objs active in slab */
225 kmem_bufctl_t free;
226 unsigned short nodeid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227};
228
229/*
230 * struct slab_rcu
231 *
232 * slab_destroy on a SLAB_DESTROY_BY_RCU cache uses this structure to
233 * arrange for kmem_freepages to be called via RCU. This is useful if
234 * we need to approach a kernel structure obliquely, from its address
235 * obtained without the usual locking. We can lock the structure to
236 * stabilize it and check it's still at the given address, only if we
237 * can be sure that the memory has not been meanwhile reused for some
238 * other kind of object (which our subsystem's lock might corrupt).
239 *
240 * rcu_read_lock before reading the address, then rcu_read_unlock after
241 * taking the spinlock within the structure expected at that address.
242 *
243 * We assume struct slab_rcu can overlay struct slab when destroying.
244 */
245struct slab_rcu {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800246 struct rcu_head head;
Pekka Enberg343e0d72006-02-01 03:05:50 -0800247 struct kmem_cache *cachep;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800248 void *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249};
250
251/*
252 * struct array_cache
253 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 * Purpose:
255 * - LIFO ordering, to hand out cache-warm objects from _alloc
256 * - reduce the number of linked list operations
257 * - reduce spinlock operations
258 *
259 * The limit is stored in the per-cpu structure to reduce the data cache
260 * footprint.
261 *
262 */
263struct array_cache {
264 unsigned int avail;
265 unsigned int limit;
266 unsigned int batchcount;
267 unsigned int touched;
Christoph Lametere498be72005-09-09 13:03:32 -0700268 spinlock_t lock;
269 void *entry[0]; /*
270 * Must have this definition in here for the proper
271 * alignment of array_cache. Also simplifies accessing
272 * the entries.
273 * [0] is for gcc 2.95. It should really be [].
274 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275};
276
277/* bootstrap: The caches do not work without cpuarrays anymore,
278 * but the cpuarrays are allocated from the generic caches...
279 */
280#define BOOT_CPUCACHE_ENTRIES 1
281struct arraycache_init {
282 struct array_cache cache;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800283 void *entries[BOOT_CPUCACHE_ENTRIES];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284};
285
286/*
Christoph Lametere498be72005-09-09 13:03:32 -0700287 * The slab lists for all objects.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 */
289struct kmem_list3 {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800290 struct list_head slabs_partial; /* partial list first, better asm code */
291 struct list_head slabs_full;
292 struct list_head slabs_free;
293 unsigned long free_objects;
294 unsigned long next_reap;
295 int free_touched;
296 unsigned int free_limit;
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -0800297 unsigned int colour_next; /* Per-node cache coloring */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800298 spinlock_t list_lock;
299 struct array_cache *shared; /* shared per node */
300 struct array_cache **alien; /* on other nodes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301};
302
Christoph Lametere498be72005-09-09 13:03:32 -0700303/*
304 * Need this for bootstrapping a per node allocator.
305 */
306#define NUM_INIT_LISTS (2 * MAX_NUMNODES + 1)
307struct kmem_list3 __initdata initkmem_list3[NUM_INIT_LISTS];
308#define CACHE_CACHE 0
309#define SIZE_AC 1
310#define SIZE_L3 (1 + MAX_NUMNODES)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Christoph Lametere498be72005-09-09 13:03:32 -0700312/*
Ivan Kokshaysky7243cc02005-09-22 21:43:58 -0700313 * This function must be completely optimized away if
Christoph Lametere498be72005-09-09 13:03:32 -0700314 * a constant is passed to it. Mostly the same as
315 * what is in linux/slab.h except it returns an
316 * index.
317 */
Ivan Kokshaysky7243cc02005-09-22 21:43:58 -0700318static __always_inline int index_of(const size_t size)
Christoph Lametere498be72005-09-09 13:03:32 -0700319{
Steven Rostedt5ec8a842006-02-01 03:05:44 -0800320 extern void __bad_size(void);
321
Christoph Lametere498be72005-09-09 13:03:32 -0700322 if (__builtin_constant_p(size)) {
323 int i = 0;
324
325#define CACHE(x) \
326 if (size <=x) \
327 return i; \
328 else \
329 i++;
330#include "linux/kmalloc_sizes.h"
331#undef CACHE
Steven Rostedt5ec8a842006-02-01 03:05:44 -0800332 __bad_size();
Ivan Kokshaysky7243cc02005-09-22 21:43:58 -0700333 } else
Steven Rostedt5ec8a842006-02-01 03:05:44 -0800334 __bad_size();
Christoph Lametere498be72005-09-09 13:03:32 -0700335 return 0;
336}
337
338#define INDEX_AC index_of(sizeof(struct arraycache_init))
339#define INDEX_L3 index_of(sizeof(struct kmem_list3))
340
Pekka Enberg5295a742006-02-01 03:05:48 -0800341static void kmem_list3_init(struct kmem_list3 *parent)
Christoph Lametere498be72005-09-09 13:03:32 -0700342{
343 INIT_LIST_HEAD(&parent->slabs_full);
344 INIT_LIST_HEAD(&parent->slabs_partial);
345 INIT_LIST_HEAD(&parent->slabs_free);
346 parent->shared = NULL;
347 parent->alien = NULL;
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -0800348 parent->colour_next = 0;
Christoph Lametere498be72005-09-09 13:03:32 -0700349 spin_lock_init(&parent->list_lock);
350 parent->free_objects = 0;
351 parent->free_touched = 0;
352}
353
354#define MAKE_LIST(cachep, listp, slab, nodeid) \
355 do { \
356 INIT_LIST_HEAD(listp); \
357 list_splice(&(cachep->nodelists[nodeid]->slab), listp); \
358 } while (0)
359
360#define MAKE_ALL_LISTS(cachep, ptr, nodeid) \
361 do { \
362 MAKE_LIST((cachep), (&(ptr)->slabs_full), slabs_full, nodeid); \
363 MAKE_LIST((cachep), (&(ptr)->slabs_partial), slabs_partial, nodeid); \
364 MAKE_LIST((cachep), (&(ptr)->slabs_free), slabs_free, nodeid); \
365 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
367/*
Pekka Enberg343e0d72006-02-01 03:05:50 -0800368 * struct kmem_cache
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 *
370 * manages a cache.
371 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800372
Pekka J Enberg2109a2d2005-11-07 00:58:01 -0800373struct kmem_cache {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374/* 1) per-cpu data, touched during every alloc/free */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800375 struct array_cache *array[NR_CPUS];
376 unsigned int batchcount;
377 unsigned int limit;
378 unsigned int shared;
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800379 unsigned int buffer_size;
Christoph Lametere498be72005-09-09 13:03:32 -0700380/* 2) touched by every alloc & free from the backend */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800381 struct kmem_list3 *nodelists[MAX_NUMNODES];
382 unsigned int flags; /* constant flags */
383 unsigned int num; /* # of objs per slab */
384 spinlock_t spinlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
386/* 3) cache_grow/shrink */
387 /* order of pgs per slab (2^n) */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800388 unsigned int gfporder;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
390 /* force GFP flags, e.g. GFP_DMA */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800391 gfp_t gfpflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800393 size_t colour; /* cache colouring range */
394 unsigned int colour_off; /* colour offset */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800395 struct kmem_cache *slabp_cache;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800396 unsigned int slab_size;
397 unsigned int dflags; /* dynamic flags */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
399 /* constructor func */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800400 void (*ctor) (void *, struct kmem_cache *, unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
402 /* de-constructor func */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800403 void (*dtor) (void *, struct kmem_cache *, unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
405/* 4) cache creation/removal */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800406 const char *name;
407 struct list_head next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
409/* 5) statistics */
410#if STATS
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800411 unsigned long num_active;
412 unsigned long num_allocations;
413 unsigned long high_mark;
414 unsigned long grown;
415 unsigned long reaped;
416 unsigned long errors;
417 unsigned long max_freeable;
418 unsigned long node_allocs;
419 unsigned long node_frees;
420 atomic_t allochit;
421 atomic_t allocmiss;
422 atomic_t freehit;
423 atomic_t freemiss;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424#endif
425#if DEBUG
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800426 /*
427 * If debugging is enabled, then the allocator can add additional
428 * fields and/or padding to every object. buffer_size contains the total
429 * object size including these internal fields, the following two
430 * variables contain the offset to the user object and its size.
431 */
432 int obj_offset;
433 int obj_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434#endif
435};
436
437#define CFLGS_OFF_SLAB (0x80000000UL)
438#define OFF_SLAB(x) ((x)->flags & CFLGS_OFF_SLAB)
439
440#define BATCHREFILL_LIMIT 16
441/* Optimization question: fewer reaps means less
442 * probability for unnessary cpucache drain/refill cycles.
443 *
Adrian Bunkdc6f3f22005-11-08 16:44:08 +0100444 * OTOH the cpuarrays can contain lots of objects,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 * which could lock up otherwise freeable slabs.
446 */
447#define REAPTIMEOUT_CPUC (2*HZ)
448#define REAPTIMEOUT_LIST3 (4*HZ)
449
450#if STATS
451#define STATS_INC_ACTIVE(x) ((x)->num_active++)
452#define STATS_DEC_ACTIVE(x) ((x)->num_active--)
453#define STATS_INC_ALLOCED(x) ((x)->num_allocations++)
454#define STATS_INC_GROWN(x) ((x)->grown++)
455#define STATS_INC_REAPED(x) ((x)->reaped++)
456#define STATS_SET_HIGH(x) do { if ((x)->num_active > (x)->high_mark) \
457 (x)->high_mark = (x)->num_active; \
458 } while (0)
459#define STATS_INC_ERR(x) ((x)->errors++)
460#define STATS_INC_NODEALLOCS(x) ((x)->node_allocs++)
Christoph Lametere498be72005-09-09 13:03:32 -0700461#define STATS_INC_NODEFREES(x) ((x)->node_frees++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462#define STATS_SET_FREEABLE(x, i) \
463 do { if ((x)->max_freeable < i) \
464 (x)->max_freeable = i; \
465 } while (0)
466
467#define STATS_INC_ALLOCHIT(x) atomic_inc(&(x)->allochit)
468#define STATS_INC_ALLOCMISS(x) atomic_inc(&(x)->allocmiss)
469#define STATS_INC_FREEHIT(x) atomic_inc(&(x)->freehit)
470#define STATS_INC_FREEMISS(x) atomic_inc(&(x)->freemiss)
471#else
472#define STATS_INC_ACTIVE(x) do { } while (0)
473#define STATS_DEC_ACTIVE(x) do { } while (0)
474#define STATS_INC_ALLOCED(x) do { } while (0)
475#define STATS_INC_GROWN(x) do { } while (0)
476#define STATS_INC_REAPED(x) do { } while (0)
477#define STATS_SET_HIGH(x) do { } while (0)
478#define STATS_INC_ERR(x) do { } while (0)
479#define STATS_INC_NODEALLOCS(x) do { } while (0)
Christoph Lametere498be72005-09-09 13:03:32 -0700480#define STATS_INC_NODEFREES(x) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481#define STATS_SET_FREEABLE(x, i) \
482 do { } while (0)
483
484#define STATS_INC_ALLOCHIT(x) do { } while (0)
485#define STATS_INC_ALLOCMISS(x) do { } while (0)
486#define STATS_INC_FREEHIT(x) do { } while (0)
487#define STATS_INC_FREEMISS(x) do { } while (0)
488#endif
489
490#if DEBUG
491/* Magic nums for obj red zoning.
492 * Placed in the first word before and the first word after an obj.
493 */
494#define RED_INACTIVE 0x5A2CF071UL /* when obj is inactive */
495#define RED_ACTIVE 0x170FC2A5UL /* when obj is active */
496
497/* ...and for poisoning */
498#define POISON_INUSE 0x5a /* for use-uninitialised poisoning */
499#define POISON_FREE 0x6b /* for use-after-free poisoning */
500#define POISON_END 0xa5 /* end-byte of poisoning */
501
502/* memory layout of objects:
503 * 0 : objp
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800504 * 0 .. cachep->obj_offset - BYTES_PER_WORD - 1: padding. This ensures that
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 * the end of an object is aligned with the end of the real
506 * allocation. Catches writes behind the end of the allocation.
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800507 * cachep->obj_offset - BYTES_PER_WORD .. cachep->obj_offset - 1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 * redzone word.
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800509 * cachep->obj_offset: The real object.
510 * cachep->buffer_size - 2* BYTES_PER_WORD: redzone word [BYTES_PER_WORD long]
511 * cachep->buffer_size - 1* BYTES_PER_WORD: last caller address [BYTES_PER_WORD long]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800513static int obj_offset(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514{
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800515 return cachep->obj_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516}
517
Pekka Enberg343e0d72006-02-01 03:05:50 -0800518static int obj_size(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519{
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800520 return cachep->obj_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521}
522
Pekka Enberg343e0d72006-02-01 03:05:50 -0800523static unsigned long *dbg_redzone1(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524{
525 BUG_ON(!(cachep->flags & SLAB_RED_ZONE));
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800526 return (unsigned long*) (objp+obj_offset(cachep)-BYTES_PER_WORD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527}
528
Pekka Enberg343e0d72006-02-01 03:05:50 -0800529static unsigned long *dbg_redzone2(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530{
531 BUG_ON(!(cachep->flags & SLAB_RED_ZONE));
532 if (cachep->flags & SLAB_STORE_USER)
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800533 return (unsigned long *)(objp + cachep->buffer_size -
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800534 2 * BYTES_PER_WORD);
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800535 return (unsigned long *)(objp + cachep->buffer_size - BYTES_PER_WORD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536}
537
Pekka Enberg343e0d72006-02-01 03:05:50 -0800538static void **dbg_userword(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539{
540 BUG_ON(!(cachep->flags & SLAB_STORE_USER));
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800541 return (void **)(objp + cachep->buffer_size - BYTES_PER_WORD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542}
543
544#else
545
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800546#define obj_offset(x) 0
547#define obj_size(cachep) (cachep->buffer_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548#define dbg_redzone1(cachep, objp) ({BUG(); (unsigned long *)NULL;})
549#define dbg_redzone2(cachep, objp) ({BUG(); (unsigned long *)NULL;})
550#define dbg_userword(cachep, objp) ({BUG(); (void **)NULL;})
551
552#endif
553
554/*
555 * Maximum size of an obj (in 2^order pages)
556 * and absolute limit for the gfp order.
557 */
558#if defined(CONFIG_LARGE_ALLOCS)
559#define MAX_OBJ_ORDER 13 /* up to 32Mb */
560#define MAX_GFP_ORDER 13 /* up to 32Mb */
561#elif defined(CONFIG_MMU)
562#define MAX_OBJ_ORDER 5 /* 32 pages */
563#define MAX_GFP_ORDER 5 /* 32 pages */
564#else
565#define MAX_OBJ_ORDER 8 /* up to 1Mb */
566#define MAX_GFP_ORDER 8 /* up to 1Mb */
567#endif
568
569/*
570 * Do not go above this order unless 0 objects fit into the slab.
571 */
572#define BREAK_GFP_ORDER_HI 1
573#define BREAK_GFP_ORDER_LO 0
574static int slab_break_gfp_order = BREAK_GFP_ORDER_LO;
575
Pekka Enberg065d41c2005-11-13 16:06:46 -0800576/* Functions for storing/retrieving the cachep and or slab from the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 * global 'mem_map'. These are used to find the slab an obj belongs to.
578 * With kfree(), these are used to find the cache which an obj belongs to.
579 */
Pekka Enberg065d41c2005-11-13 16:06:46 -0800580static inline void page_set_cache(struct page *page, struct kmem_cache *cache)
581{
582 page->lru.next = (struct list_head *)cache;
583}
584
585static inline struct kmem_cache *page_get_cache(struct page *page)
586{
587 return (struct kmem_cache *)page->lru.next;
588}
589
590static inline void page_set_slab(struct page *page, struct slab *slab)
591{
592 page->lru.prev = (struct list_head *)slab;
593}
594
595static inline struct slab *page_get_slab(struct page *page)
596{
597 return (struct slab *)page->lru.prev;
598}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Pekka Enberg6ed5eb22006-02-01 03:05:49 -0800600static inline struct kmem_cache *virt_to_cache(const void *obj)
601{
602 struct page *page = virt_to_page(obj);
603 return page_get_cache(page);
604}
605
606static inline struct slab *virt_to_slab(const void *obj)
607{
608 struct page *page = virt_to_page(obj);
609 return page_get_slab(page);
610}
611
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612/* These are the default caches for kmalloc. Custom caches can have other sizes. */
613struct cache_sizes malloc_sizes[] = {
614#define CACHE(x) { .cs_size = (x) },
615#include <linux/kmalloc_sizes.h>
616 CACHE(ULONG_MAX)
617#undef CACHE
618};
619EXPORT_SYMBOL(malloc_sizes);
620
621/* Must match cache_sizes above. Out of line to keep cache footprint low. */
622struct cache_names {
623 char *name;
624 char *name_dma;
625};
626
627static struct cache_names __initdata cache_names[] = {
628#define CACHE(x) { .name = "size-" #x, .name_dma = "size-" #x "(DMA)" },
629#include <linux/kmalloc_sizes.h>
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800630 {NULL,}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631#undef CACHE
632};
633
634static struct arraycache_init initarray_cache __initdata =
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800635 { {0, BOOT_CPUCACHE_ENTRIES, 1, 0} };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636static struct arraycache_init initarray_generic =
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800637 { {0, BOOT_CPUCACHE_ENTRIES, 1, 0} };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638
639/* internal cache of cache description objs */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800640static struct kmem_cache cache_cache = {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800641 .batchcount = 1,
642 .limit = BOOT_CPUCACHE_ENTRIES,
643 .shared = 1,
Pekka Enberg343e0d72006-02-01 03:05:50 -0800644 .buffer_size = sizeof(struct kmem_cache),
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800645 .flags = SLAB_NO_REAP,
646 .spinlock = SPIN_LOCK_UNLOCKED,
647 .name = "kmem_cache",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648#if DEBUG
Pekka Enberg343e0d72006-02-01 03:05:50 -0800649 .obj_size = sizeof(struct kmem_cache),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650#endif
651};
652
653/* Guard access to the cache-chain. */
Ingo Molnarfc0abb12006-01-18 17:42:33 -0800654static DEFINE_MUTEX(cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655static struct list_head cache_chain;
656
657/*
658 * vm_enough_memory() looks at this to determine how many
659 * slab-allocated pages are possibly freeable under pressure
660 *
661 * SLAB_RECLAIM_ACCOUNT turns this on per-slab
662 */
663atomic_t slab_reclaim_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
665/*
666 * chicken and egg problem: delay the per-cpu array allocation
667 * until the general caches are up.
668 */
669static enum {
670 NONE,
Christoph Lametere498be72005-09-09 13:03:32 -0700671 PARTIAL_AC,
672 PARTIAL_L3,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 FULL
674} g_cpucache_up;
675
676static DEFINE_PER_CPU(struct work_struct, reap_work);
677
Pekka Enberg343e0d72006-02-01 03:05:50 -0800678static void free_block(struct kmem_cache *cachep, void **objpp, int len, int node);
679static void enable_cpucache(struct kmem_cache *cachep);
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800680static void cache_reap(void *unused);
Pekka Enberg343e0d72006-02-01 03:05:50 -0800681static int __node_shrink(struct kmem_cache *cachep, int node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
Pekka Enberg343e0d72006-02-01 03:05:50 -0800683static inline struct array_cache *cpu_cache_get(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684{
685 return cachep->array[smp_processor_id()];
686}
687
Pekka Enberg343e0d72006-02-01 03:05:50 -0800688static inline struct kmem_cache *__find_general_cachep(size_t size, gfp_t gfpflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689{
690 struct cache_sizes *csizep = malloc_sizes;
691
692#if DEBUG
693 /* This happens if someone tries to call
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800694 * kmem_cache_create(), or __kmalloc(), before
695 * the generic caches are initialized.
696 */
Alok Katariac7e43c72005-09-14 12:17:53 -0700697 BUG_ON(malloc_sizes[INDEX_AC].cs_cachep == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698#endif
699 while (size > csizep->cs_size)
700 csizep++;
701
702 /*
Martin Hicks0abf40c2005-09-03 15:54:54 -0700703 * Really subtle: The last entry with cs->cs_size==ULONG_MAX
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 * has cs_{dma,}cachep==NULL. Thus no special case
705 * for large kmalloc calls required.
706 */
707 if (unlikely(gfpflags & GFP_DMA))
708 return csizep->cs_dmacachep;
709 return csizep->cs_cachep;
710}
711
Pekka Enberg343e0d72006-02-01 03:05:50 -0800712struct kmem_cache *kmem_find_general_cachep(size_t size, gfp_t gfpflags)
Manfred Spraul97e2bde2005-05-01 08:58:38 -0700713{
714 return __find_general_cachep(size, gfpflags);
715}
716EXPORT_SYMBOL(kmem_find_general_cachep);
717
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800718static size_t slab_mgmt_size(size_t nr_objs, size_t align)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719{
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800720 return ALIGN(sizeof(struct slab)+nr_objs*sizeof(kmem_bufctl_t), align);
721}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800723/* Calculate the number of objects and left-over bytes for a given
724 buffer size. */
725static void cache_estimate(unsigned long gfporder, size_t buffer_size,
726 size_t align, int flags, size_t *left_over,
727 unsigned int *num)
728{
729 int nr_objs;
730 size_t mgmt_size;
731 size_t slab_size = PAGE_SIZE << gfporder;
732
733 /*
734 * The slab management structure can be either off the slab or
735 * on it. For the latter case, the memory allocated for a
736 * slab is used for:
737 *
738 * - The struct slab
739 * - One kmem_bufctl_t for each object
740 * - Padding to respect alignment of @align
741 * - @buffer_size bytes for each object
742 *
743 * If the slab management structure is off the slab, then the
744 * alignment will already be calculated into the size. Because
745 * the slabs are all pages aligned, the objects will be at the
746 * correct alignment when allocated.
747 */
748 if (flags & CFLGS_OFF_SLAB) {
749 mgmt_size = 0;
750 nr_objs = slab_size / buffer_size;
751
752 if (nr_objs > SLAB_LIMIT)
753 nr_objs = SLAB_LIMIT;
754 } else {
755 /*
756 * Ignore padding for the initial guess. The padding
757 * is at most @align-1 bytes, and @buffer_size is at
758 * least @align. In the worst case, this result will
759 * be one greater than the number of objects that fit
760 * into the memory allocation when taking the padding
761 * into account.
762 */
763 nr_objs = (slab_size - sizeof(struct slab)) /
764 (buffer_size + sizeof(kmem_bufctl_t));
765
766 /*
767 * This calculated number will be either the right
768 * amount, or one greater than what we want.
769 */
770 if (slab_mgmt_size(nr_objs, align) + nr_objs*buffer_size
771 > slab_size)
772 nr_objs--;
773
774 if (nr_objs > SLAB_LIMIT)
775 nr_objs = SLAB_LIMIT;
776
777 mgmt_size = slab_mgmt_size(nr_objs, align);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778 }
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800779 *num = nr_objs;
780 *left_over = slab_size - nr_objs*buffer_size - mgmt_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781}
782
783#define slab_error(cachep, msg) __slab_error(__FUNCTION__, cachep, msg)
784
Pekka Enberg343e0d72006-02-01 03:05:50 -0800785static void __slab_error(const char *function, struct kmem_cache *cachep, char *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786{
787 printk(KERN_ERR "slab error in %s(): cache `%s': %s\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800788 function, cachep->name, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 dump_stack();
790}
791
792/*
793 * Initiate the reap timer running on the target CPU. We run at around 1 to 2Hz
794 * via the workqueue/eventd.
795 * Add the CPU number into the expiration time to minimize the possibility of
796 * the CPUs getting into lockstep and contending for the global cache chain
797 * lock.
798 */
799static void __devinit start_cpu_timer(int cpu)
800{
801 struct work_struct *reap_work = &per_cpu(reap_work, cpu);
802
803 /*
804 * When this gets called from do_initcalls via cpucache_init(),
805 * init_workqueues() has already run, so keventd will be setup
806 * at that time.
807 */
808 if (keventd_up() && reap_work->func == NULL) {
809 INIT_WORK(reap_work, cache_reap, NULL);
810 schedule_delayed_work_on(cpu, reap_work, HZ + 3 * cpu);
811 }
812}
813
Christoph Lametere498be72005-09-09 13:03:32 -0700814static struct array_cache *alloc_arraycache(int node, int entries,
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800815 int batchcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816{
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800817 int memsize = sizeof(void *) * entries + sizeof(struct array_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 struct array_cache *nc = NULL;
819
Christoph Lametere498be72005-09-09 13:03:32 -0700820 nc = kmalloc_node(memsize, GFP_KERNEL, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 if (nc) {
822 nc->avail = 0;
823 nc->limit = entries;
824 nc->batchcount = batchcount;
825 nc->touched = 0;
Christoph Lametere498be72005-09-09 13:03:32 -0700826 spin_lock_init(&nc->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 }
828 return nc;
829}
830
Christoph Lametere498be72005-09-09 13:03:32 -0700831#ifdef CONFIG_NUMA
Pekka Enberg343e0d72006-02-01 03:05:50 -0800832static void *__cache_alloc_node(struct kmem_cache *, gfp_t, int);
Christoph Lameterdc85da12006-01-18 17:42:36 -0800833
Pekka Enberg5295a742006-02-01 03:05:48 -0800834static struct array_cache **alloc_alien_cache(int node, int limit)
Christoph Lametere498be72005-09-09 13:03:32 -0700835{
836 struct array_cache **ac_ptr;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800837 int memsize = sizeof(void *) * MAX_NUMNODES;
Christoph Lametere498be72005-09-09 13:03:32 -0700838 int i;
839
840 if (limit > 1)
841 limit = 12;
842 ac_ptr = kmalloc_node(memsize, GFP_KERNEL, node);
843 if (ac_ptr) {
844 for_each_node(i) {
845 if (i == node || !node_online(i)) {
846 ac_ptr[i] = NULL;
847 continue;
848 }
849 ac_ptr[i] = alloc_arraycache(node, limit, 0xbaadf00d);
850 if (!ac_ptr[i]) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800851 for (i--; i <= 0; i--)
Christoph Lametere498be72005-09-09 13:03:32 -0700852 kfree(ac_ptr[i]);
853 kfree(ac_ptr);
854 return NULL;
855 }
856 }
857 }
858 return ac_ptr;
859}
860
Pekka Enberg5295a742006-02-01 03:05:48 -0800861static void free_alien_cache(struct array_cache **ac_ptr)
Christoph Lametere498be72005-09-09 13:03:32 -0700862{
863 int i;
864
865 if (!ac_ptr)
866 return;
867
868 for_each_node(i)
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800869 kfree(ac_ptr[i]);
Christoph Lametere498be72005-09-09 13:03:32 -0700870
871 kfree(ac_ptr);
872}
873
Pekka Enberg343e0d72006-02-01 03:05:50 -0800874static void __drain_alien_cache(struct kmem_cache *cachep,
Pekka Enberg5295a742006-02-01 03:05:48 -0800875 struct array_cache *ac, int node)
Christoph Lametere498be72005-09-09 13:03:32 -0700876{
877 struct kmem_list3 *rl3 = cachep->nodelists[node];
878
879 if (ac->avail) {
880 spin_lock(&rl3->list_lock);
Christoph Lameterff694162005-09-22 21:44:02 -0700881 free_block(cachep, ac->entry, ac->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -0700882 ac->avail = 0;
883 spin_unlock(&rl3->list_lock);
884 }
885}
886
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -0800887static void drain_alien_cache(struct kmem_cache *cachep, struct array_cache **alien)
Christoph Lametere498be72005-09-09 13:03:32 -0700888{
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800889 int i = 0;
Christoph Lametere498be72005-09-09 13:03:32 -0700890 struct array_cache *ac;
891 unsigned long flags;
892
893 for_each_online_node(i) {
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -0800894 ac = alien[i];
Christoph Lametere498be72005-09-09 13:03:32 -0700895 if (ac) {
896 spin_lock_irqsave(&ac->lock, flags);
897 __drain_alien_cache(cachep, ac, i);
898 spin_unlock_irqrestore(&ac->lock, flags);
899 }
900 }
901}
902#else
903#define alloc_alien_cache(node, limit) do { } while (0)
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -0800904#define drain_alien_cache(cachep, alien) do { } while (0)
905
906static inline void free_alien_cache(struct array_cache **ac_ptr)
907{
908}
Christoph Lametere498be72005-09-09 13:03:32 -0700909#endif
910
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911static int __devinit cpuup_callback(struct notifier_block *nfb,
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800912 unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913{
914 long cpu = (long)hcpu;
Pekka Enberg343e0d72006-02-01 03:05:50 -0800915 struct kmem_cache *cachep;
Christoph Lametere498be72005-09-09 13:03:32 -0700916 struct kmem_list3 *l3 = NULL;
917 int node = cpu_to_node(cpu);
918 int memsize = sizeof(struct kmem_list3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919
920 switch (action) {
921 case CPU_UP_PREPARE:
Ingo Molnarfc0abb12006-01-18 17:42:33 -0800922 mutex_lock(&cache_chain_mutex);
Christoph Lametere498be72005-09-09 13:03:32 -0700923 /* we need to do this right in the beginning since
924 * alloc_arraycache's are going to use this list.
925 * kmalloc_node allows us to add the slab to the right
926 * kmem_list3 and not this cpu's kmem_list3
927 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
Christoph Lametere498be72005-09-09 13:03:32 -0700929 list_for_each_entry(cachep, &cache_chain, next) {
930 /* setup the size64 kmemlist for cpu before we can
931 * begin anything. Make sure some other cpu on this
932 * node has not already allocated this
933 */
934 if (!cachep->nodelists[node]) {
935 if (!(l3 = kmalloc_node(memsize,
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800936 GFP_KERNEL, node)))
Christoph Lametere498be72005-09-09 13:03:32 -0700937 goto bad;
938 kmem_list3_init(l3);
939 l3->next_reap = jiffies + REAPTIMEOUT_LIST3 +
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800940 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
Christoph Lametere498be72005-09-09 13:03:32 -0700941
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -0800942 /*
943 * The l3s don't come and go as CPUs come and
944 * go. cache_chain_mutex is sufficient
945 * protection here.
946 */
Christoph Lametere498be72005-09-09 13:03:32 -0700947 cachep->nodelists[node] = l3;
948 }
949
950 spin_lock_irq(&cachep->nodelists[node]->list_lock);
951 cachep->nodelists[node]->free_limit =
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800952 (1 + nr_cpus_node(node)) *
953 cachep->batchcount + cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -0700954 spin_unlock_irq(&cachep->nodelists[node]->list_lock);
955 }
956
957 /* Now we can go ahead with allocating the shared array's
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800958 & array cache's */
Christoph Lametere498be72005-09-09 13:03:32 -0700959 list_for_each_entry(cachep, &cache_chain, next) {
Tobias Klausercd105df2006-01-08 01:00:59 -0800960 struct array_cache *nc;
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -0800961 struct array_cache *shared;
962 struct array_cache **alien;
Tobias Klausercd105df2006-01-08 01:00:59 -0800963
Christoph Lametere498be72005-09-09 13:03:32 -0700964 nc = alloc_arraycache(node, cachep->limit,
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -0800965 cachep->batchcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 if (!nc)
967 goto bad;
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -0800968 shared = alloc_arraycache(node,
969 cachep->shared * cachep->batchcount,
970 0xbaadf00d);
971 if (!shared)
972 goto bad;
973#ifdef CONFIG_NUMA
974 alien = alloc_alien_cache(node, cachep->limit);
975 if (!alien)
976 goto bad;
977#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 cachep->array[cpu] = nc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979
Christoph Lametere498be72005-09-09 13:03:32 -0700980 l3 = cachep->nodelists[node];
981 BUG_ON(!l3);
Christoph Lametere498be72005-09-09 13:03:32 -0700982
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -0800983 spin_lock_irq(&l3->list_lock);
984 if (!l3->shared) {
985 /*
986 * We are serialised from CPU_DEAD or
987 * CPU_UP_CANCELLED by the cpucontrol lock
988 */
989 l3->shared = shared;
990 shared = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -0700991 }
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -0800992#ifdef CONFIG_NUMA
993 if (!l3->alien) {
994 l3->alien = alien;
995 alien = NULL;
996 }
997#endif
998 spin_unlock_irq(&l3->list_lock);
999
1000 kfree(shared);
1001 free_alien_cache(alien);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 }
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001003 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 break;
1005 case CPU_ONLINE:
1006 start_cpu_timer(cpu);
1007 break;
1008#ifdef CONFIG_HOTPLUG_CPU
1009 case CPU_DEAD:
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001010 /*
1011 * Even if all the cpus of a node are down, we don't free the
1012 * kmem_list3 of any cache. This to avoid a race between
1013 * cpu_down, and a kmalloc allocation from another cpu for
1014 * memory from the node of the cpu going down. The list3
1015 * structure is usually allocated from kmem_cache_create() and
1016 * gets destroyed at kmem_cache_destroy().
1017 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001018 /* fall thru */
1019 case CPU_UP_CANCELED:
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001020 mutex_lock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021
1022 list_for_each_entry(cachep, &cache_chain, next) {
1023 struct array_cache *nc;
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001024 struct array_cache *shared;
1025 struct array_cache **alien;
Christoph Lametere498be72005-09-09 13:03:32 -07001026 cpumask_t mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027
Christoph Lametere498be72005-09-09 13:03:32 -07001028 mask = node_to_cpumask(node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 /* cpu is dead; no one can alloc from it. */
1030 nc = cachep->array[cpu];
1031 cachep->array[cpu] = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07001032 l3 = cachep->nodelists[node];
1033
1034 if (!l3)
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001035 goto free_array_cache;
Christoph Lametere498be72005-09-09 13:03:32 -07001036
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08001037 spin_lock_irq(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07001038
1039 /* Free limit for this kmem_list3 */
1040 l3->free_limit -= cachep->batchcount;
1041 if (nc)
Christoph Lameterff694162005-09-22 21:44:02 -07001042 free_block(cachep, nc->entry, nc->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -07001043
1044 if (!cpus_empty(mask)) {
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08001045 spin_unlock_irq(&l3->list_lock);
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001046 goto free_array_cache;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001047 }
Christoph Lametere498be72005-09-09 13:03:32 -07001048
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001049 shared = l3->shared;
1050 if (shared) {
Christoph Lametere498be72005-09-09 13:03:32 -07001051 free_block(cachep, l3->shared->entry,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001052 l3->shared->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -07001053 l3->shared = NULL;
1054 }
Christoph Lametere498be72005-09-09 13:03:32 -07001055
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001056 alien = l3->alien;
1057 l3->alien = NULL;
1058
1059 spin_unlock_irq(&l3->list_lock);
1060
1061 kfree(shared);
1062 if (alien) {
1063 drain_alien_cache(cachep, alien);
1064 free_alien_cache(alien);
Christoph Lametere498be72005-09-09 13:03:32 -07001065 }
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001066free_array_cache:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 kfree(nc);
1068 }
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001069 /*
1070 * In the previous loop, all the objects were freed to
1071 * the respective cache's slabs, now we can go ahead and
1072 * shrink each nodelist to its limit.
1073 */
1074 list_for_each_entry(cachep, &cache_chain, next) {
1075 l3 = cachep->nodelists[node];
1076 if (!l3)
1077 continue;
1078 spin_lock_irq(&l3->list_lock);
1079 /* free slabs belonging to this node */
1080 __node_shrink(cachep, node);
1081 spin_unlock_irq(&l3->list_lock);
1082 }
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001083 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 break;
1085#endif
1086 }
1087 return NOTIFY_OK;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001088 bad:
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001089 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 return NOTIFY_BAD;
1091}
1092
1093static struct notifier_block cpucache_notifier = { &cpuup_callback, NULL, 0 };
1094
Christoph Lametere498be72005-09-09 13:03:32 -07001095/*
1096 * swap the static kmem_list3 with kmalloced memory
1097 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001098static void init_list(struct kmem_cache *cachep, struct kmem_list3 *list, int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07001099{
1100 struct kmem_list3 *ptr;
1101
1102 BUG_ON(cachep->nodelists[nodeid] != list);
1103 ptr = kmalloc_node(sizeof(struct kmem_list3), GFP_KERNEL, nodeid);
1104 BUG_ON(!ptr);
1105
1106 local_irq_disable();
1107 memcpy(ptr, list, sizeof(struct kmem_list3));
1108 MAKE_ALL_LISTS(cachep, ptr, nodeid);
1109 cachep->nodelists[nodeid] = ptr;
1110 local_irq_enable();
1111}
1112
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113/* Initialisation.
1114 * Called after the gfp() functions have been enabled, and before smp_init().
1115 */
1116void __init kmem_cache_init(void)
1117{
1118 size_t left_over;
1119 struct cache_sizes *sizes;
1120 struct cache_names *names;
Christoph Lametere498be72005-09-09 13:03:32 -07001121 int i;
1122
1123 for (i = 0; i < NUM_INIT_LISTS; i++) {
1124 kmem_list3_init(&initkmem_list3[i]);
1125 if (i < MAX_NUMNODES)
1126 cache_cache.nodelists[i] = NULL;
1127 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128
1129 /*
1130 * Fragmentation resistance on low memory - only use bigger
1131 * page orders on machines with more than 32MB of memory.
1132 */
1133 if (num_physpages > (32 << 20) >> PAGE_SHIFT)
1134 slab_break_gfp_order = BREAK_GFP_ORDER_HI;
1135
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 /* Bootstrap is tricky, because several objects are allocated
1137 * from caches that do not exist yet:
Pekka Enberg343e0d72006-02-01 03:05:50 -08001138 * 1) initialize the cache_cache cache: it contains the struct kmem_cache
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139 * structures of all caches, except cache_cache itself: cache_cache
1140 * is statically allocated.
Christoph Lametere498be72005-09-09 13:03:32 -07001141 * Initially an __init data area is used for the head array and the
1142 * kmem_list3 structures, it's replaced with a kmalloc allocated
1143 * array at the end of the bootstrap.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 * 2) Create the first kmalloc cache.
Pekka Enberg343e0d72006-02-01 03:05:50 -08001145 * The struct kmem_cache for the new cache is allocated normally.
Christoph Lametere498be72005-09-09 13:03:32 -07001146 * An __init data area is used for the head array.
1147 * 3) Create the remaining kmalloc caches, with minimally sized
1148 * head arrays.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 * 4) Replace the __init data head arrays for cache_cache and the first
1150 * kmalloc cache with kmalloc allocated arrays.
Christoph Lametere498be72005-09-09 13:03:32 -07001151 * 5) Replace the __init data for kmem_list3 for cache_cache and
1152 * the other cache's with kmalloc allocated memory.
1153 * 6) Resize the head arrays of the kmalloc caches to their final sizes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 */
1155
1156 /* 1) create the cache_cache */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 INIT_LIST_HEAD(&cache_chain);
1158 list_add(&cache_cache.next, &cache_chain);
1159 cache_cache.colour_off = cache_line_size();
1160 cache_cache.array[smp_processor_id()] = &initarray_cache.cache;
Christoph Lametere498be72005-09-09 13:03:32 -07001161 cache_cache.nodelists[numa_node_id()] = &initkmem_list3[CACHE_CACHE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001163 cache_cache.buffer_size = ALIGN(cache_cache.buffer_size, cache_line_size());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001165 cache_estimate(0, cache_cache.buffer_size, cache_line_size(), 0,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001166 &left_over, &cache_cache.num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 if (!cache_cache.num)
1168 BUG();
1169
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001170 cache_cache.colour = left_over / cache_cache.colour_off;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001171 cache_cache.slab_size = ALIGN(cache_cache.num * sizeof(kmem_bufctl_t) +
1172 sizeof(struct slab), cache_line_size());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173
1174 /* 2+3) create the kmalloc caches */
1175 sizes = malloc_sizes;
1176 names = cache_names;
1177
Christoph Lametere498be72005-09-09 13:03:32 -07001178 /* Initialize the caches that provide memory for the array cache
1179 * and the kmem_list3 structures first.
1180 * Without this, further allocations will bug
1181 */
1182
1183 sizes[INDEX_AC].cs_cachep = kmem_cache_create(names[INDEX_AC].name,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001184 sizes[INDEX_AC].cs_size,
1185 ARCH_KMALLOC_MINALIGN,
1186 (ARCH_KMALLOC_FLAGS |
1187 SLAB_PANIC), NULL, NULL);
Christoph Lametere498be72005-09-09 13:03:32 -07001188
1189 if (INDEX_AC != INDEX_L3)
1190 sizes[INDEX_L3].cs_cachep =
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001191 kmem_cache_create(names[INDEX_L3].name,
1192 sizes[INDEX_L3].cs_size,
1193 ARCH_KMALLOC_MINALIGN,
1194 (ARCH_KMALLOC_FLAGS | SLAB_PANIC), NULL,
1195 NULL);
Christoph Lametere498be72005-09-09 13:03:32 -07001196
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 while (sizes->cs_size != ULONG_MAX) {
Christoph Lametere498be72005-09-09 13:03:32 -07001198 /*
1199 * For performance, all the general caches are L1 aligned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 * This should be particularly beneficial on SMP boxes, as it
1201 * eliminates "false sharing".
1202 * Note for systems short on memory removing the alignment will
Christoph Lametere498be72005-09-09 13:03:32 -07001203 * allow tighter packing of the smaller caches.
1204 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001205 if (!sizes->cs_cachep)
Christoph Lametere498be72005-09-09 13:03:32 -07001206 sizes->cs_cachep = kmem_cache_create(names->name,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001207 sizes->cs_size,
1208 ARCH_KMALLOC_MINALIGN,
1209 (ARCH_KMALLOC_FLAGS
1210 | SLAB_PANIC),
1211 NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
1213 /* Inc off-slab bufctl limit until the ceiling is hit. */
1214 if (!(OFF_SLAB(sizes->cs_cachep))) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001215 offslab_limit = sizes->cs_size - sizeof(struct slab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 offslab_limit /= sizeof(kmem_bufctl_t);
1217 }
1218
1219 sizes->cs_dmacachep = kmem_cache_create(names->name_dma,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001220 sizes->cs_size,
1221 ARCH_KMALLOC_MINALIGN,
1222 (ARCH_KMALLOC_FLAGS |
1223 SLAB_CACHE_DMA |
1224 SLAB_PANIC), NULL,
1225 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226
1227 sizes++;
1228 names++;
1229 }
1230 /* 4) Replace the bootstrap head arrays */
1231 {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001232 void *ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001233
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 ptr = kmalloc(sizeof(struct arraycache_init), GFP_KERNEL);
Christoph Lametere498be72005-09-09 13:03:32 -07001235
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 local_irq_disable();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001237 BUG_ON(cpu_cache_get(&cache_cache) != &initarray_cache.cache);
1238 memcpy(ptr, cpu_cache_get(&cache_cache),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001239 sizeof(struct arraycache_init));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 cache_cache.array[smp_processor_id()] = ptr;
1241 local_irq_enable();
Christoph Lametere498be72005-09-09 13:03:32 -07001242
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 ptr = kmalloc(sizeof(struct arraycache_init), GFP_KERNEL);
Christoph Lametere498be72005-09-09 13:03:32 -07001244
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 local_irq_disable();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001246 BUG_ON(cpu_cache_get(malloc_sizes[INDEX_AC].cs_cachep)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001247 != &initarray_generic.cache);
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001248 memcpy(ptr, cpu_cache_get(malloc_sizes[INDEX_AC].cs_cachep),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001249 sizeof(struct arraycache_init));
Christoph Lametere498be72005-09-09 13:03:32 -07001250 malloc_sizes[INDEX_AC].cs_cachep->array[smp_processor_id()] =
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001251 ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252 local_irq_enable();
1253 }
Christoph Lametere498be72005-09-09 13:03:32 -07001254 /* 5) Replace the bootstrap kmem_list3's */
1255 {
1256 int node;
1257 /* Replace the static kmem_list3 structures for the boot cpu */
1258 init_list(&cache_cache, &initkmem_list3[CACHE_CACHE],
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001259 numa_node_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001260
Christoph Lametere498be72005-09-09 13:03:32 -07001261 for_each_online_node(node) {
1262 init_list(malloc_sizes[INDEX_AC].cs_cachep,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001263 &initkmem_list3[SIZE_AC + node], node);
Christoph Lametere498be72005-09-09 13:03:32 -07001264
1265 if (INDEX_AC != INDEX_L3) {
1266 init_list(malloc_sizes[INDEX_L3].cs_cachep,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001267 &initkmem_list3[SIZE_L3 + node],
1268 node);
Christoph Lametere498be72005-09-09 13:03:32 -07001269 }
1270 }
1271 }
1272
1273 /* 6) resize the head arrays to their final sizes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274 {
Pekka Enberg343e0d72006-02-01 03:05:50 -08001275 struct kmem_cache *cachep;
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001276 mutex_lock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 list_for_each_entry(cachep, &cache_chain, next)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001278 enable_cpucache(cachep);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001279 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001280 }
1281
1282 /* Done! */
1283 g_cpucache_up = FULL;
1284
1285 /* Register a cpu startup notifier callback
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001286 * that initializes cpu_cache_get for all new cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07001287 */
1288 register_cpu_notifier(&cpucache_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
1290 /* The reap timers are started later, with a module init call:
1291 * That part of the kernel is not yet operational.
1292 */
1293}
1294
1295static int __init cpucache_init(void)
1296{
1297 int cpu;
1298
1299 /*
1300 * Register the timers that return unneeded
1301 * pages to gfp.
1302 */
Christoph Lametere498be72005-09-09 13:03:32 -07001303 for_each_online_cpu(cpu)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001304 start_cpu_timer(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305
1306 return 0;
1307}
1308
1309__initcall(cpucache_init);
1310
1311/*
1312 * Interface to system's page allocator. No need to hold the cache-lock.
1313 *
1314 * If we requested dmaable memory, we will get it. Even if we
1315 * did not request dmaable memory, we might get it, but that
1316 * would be relatively rare and ignorable.
1317 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001318static void *kmem_getpages(struct kmem_cache *cachep, gfp_t flags, int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319{
1320 struct page *page;
1321 void *addr;
1322 int i;
1323
1324 flags |= cachep->gfpflags;
Christoph Lameter50c85a12005-11-13 16:06:47 -08001325 page = alloc_pages_node(nodeid, flags, cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 if (!page)
1327 return NULL;
1328 addr = page_address(page);
1329
1330 i = (1 << cachep->gfporder);
1331 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1332 atomic_add(i, &slab_reclaim_pages);
1333 add_page_state(nr_slab, i);
1334 while (i--) {
1335 SetPageSlab(page);
1336 page++;
1337 }
1338 return addr;
1339}
1340
1341/*
1342 * Interface to system's page release.
1343 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001344static void kmem_freepages(struct kmem_cache *cachep, void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001346 unsigned long i = (1 << cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 struct page *page = virt_to_page(addr);
1348 const unsigned long nr_freed = i;
1349
1350 while (i--) {
1351 if (!TestClearPageSlab(page))
1352 BUG();
1353 page++;
1354 }
1355 sub_page_state(nr_slab, nr_freed);
1356 if (current->reclaim_state)
1357 current->reclaim_state->reclaimed_slab += nr_freed;
1358 free_pages((unsigned long)addr, cachep->gfporder);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001359 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1360 atomic_sub(1 << cachep->gfporder, &slab_reclaim_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361}
1362
1363static void kmem_rcu_free(struct rcu_head *head)
1364{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001365 struct slab_rcu *slab_rcu = (struct slab_rcu *)head;
Pekka Enberg343e0d72006-02-01 03:05:50 -08001366 struct kmem_cache *cachep = slab_rcu->cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
1368 kmem_freepages(cachep, slab_rcu->addr);
1369 if (OFF_SLAB(cachep))
1370 kmem_cache_free(cachep->slabp_cache, slab_rcu);
1371}
1372
1373#if DEBUG
1374
1375#ifdef CONFIG_DEBUG_PAGEALLOC
Pekka Enberg343e0d72006-02-01 03:05:50 -08001376static void store_stackinfo(struct kmem_cache *cachep, unsigned long *addr,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001377 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378{
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001379 int size = obj_size(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001381 addr = (unsigned long *)&((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001383 if (size < 5 * sizeof(unsigned long))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 return;
1385
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001386 *addr++ = 0x12345678;
1387 *addr++ = caller;
1388 *addr++ = smp_processor_id();
1389 size -= 3 * sizeof(unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 {
1391 unsigned long *sptr = &caller;
1392 unsigned long svalue;
1393
1394 while (!kstack_end(sptr)) {
1395 svalue = *sptr++;
1396 if (kernel_text_address(svalue)) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001397 *addr++ = svalue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001398 size -= sizeof(unsigned long);
1399 if (size <= sizeof(unsigned long))
1400 break;
1401 }
1402 }
1403
1404 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001405 *addr++ = 0x87654321;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406}
1407#endif
1408
Pekka Enberg343e0d72006-02-01 03:05:50 -08001409static void poison_obj(struct kmem_cache *cachep, void *addr, unsigned char val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410{
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001411 int size = obj_size(cachep);
1412 addr = &((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413
1414 memset(addr, val, size);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001415 *(unsigned char *)(addr + size - 1) = POISON_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416}
1417
1418static void dump_line(char *data, int offset, int limit)
1419{
1420 int i;
1421 printk(KERN_ERR "%03x:", offset);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001422 for (i = 0; i < limit; i++) {
1423 printk(" %02x", (unsigned char)data[offset + i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 }
1425 printk("\n");
1426}
1427#endif
1428
1429#if DEBUG
1430
Pekka Enberg343e0d72006-02-01 03:05:50 -08001431static void print_objinfo(struct kmem_cache *cachep, void *objp, int lines)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432{
1433 int i, size;
1434 char *realobj;
1435
1436 if (cachep->flags & SLAB_RED_ZONE) {
1437 printk(KERN_ERR "Redzone: 0x%lx/0x%lx.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001438 *dbg_redzone1(cachep, objp),
1439 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 }
1441
1442 if (cachep->flags & SLAB_STORE_USER) {
1443 printk(KERN_ERR "Last user: [<%p>]",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001444 *dbg_userword(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 print_symbol("(%s)",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001446 (unsigned long)*dbg_userword(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 printk("\n");
1448 }
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001449 realobj = (char *)objp + obj_offset(cachep);
1450 size = obj_size(cachep);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001451 for (i = 0; i < size && lines; i += 16, lines--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 int limit;
1453 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001454 if (i + limit > size)
1455 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 dump_line(realobj, i, limit);
1457 }
1458}
1459
Pekka Enberg343e0d72006-02-01 03:05:50 -08001460static void check_poison_obj(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461{
1462 char *realobj;
1463 int size, i;
1464 int lines = 0;
1465
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001466 realobj = (char *)objp + obj_offset(cachep);
1467 size = obj_size(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001469 for (i = 0; i < size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 char exp = POISON_FREE;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001471 if (i == size - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 exp = POISON_END;
1473 if (realobj[i] != exp) {
1474 int limit;
1475 /* Mismatch ! */
1476 /* Print header */
1477 if (lines == 0) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001478 printk(KERN_ERR
1479 "Slab corruption: start=%p, len=%d\n",
1480 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 print_objinfo(cachep, objp, 0);
1482 }
1483 /* Hexdump the affected line */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001484 i = (i / 16) * 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001486 if (i + limit > size)
1487 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 dump_line(realobj, i, limit);
1489 i += 16;
1490 lines++;
1491 /* Limit to 5 lines */
1492 if (lines > 5)
1493 break;
1494 }
1495 }
1496 if (lines != 0) {
1497 /* Print some data about the neighboring objects, if they
1498 * exist:
1499 */
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08001500 struct slab *slabp = virt_to_slab(objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501 int objnr;
1502
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001503 objnr = (unsigned)(objp - slabp->s_mem) / cachep->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 if (objnr) {
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001505 objp = slabp->s_mem + (objnr - 1) * cachep->buffer_size;
1506 realobj = (char *)objp + obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 printk(KERN_ERR "Prev obj: start=%p, len=%d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001508 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 print_objinfo(cachep, objp, 2);
1510 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001511 if (objnr + 1 < cachep->num) {
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001512 objp = slabp->s_mem + (objnr + 1) * cachep->buffer_size;
1513 realobj = (char *)objp + obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514 printk(KERN_ERR "Next obj: start=%p, len=%d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001515 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516 print_objinfo(cachep, objp, 2);
1517 }
1518 }
1519}
1520#endif
1521
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522#if DEBUG
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001523/**
1524 * slab_destroy_objs - call the registered destructor for each object in
1525 * a slab that is to be destroyed.
1526 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001527static void slab_destroy_objs(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001528{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 int i;
1530 for (i = 0; i < cachep->num; i++) {
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001531 void *objp = slabp->s_mem + cachep->buffer_size * i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532
1533 if (cachep->flags & SLAB_POISON) {
1534#ifdef CONFIG_DEBUG_PAGEALLOC
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001535 if ((cachep->buffer_size % PAGE_SIZE) == 0
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001536 && OFF_SLAB(cachep))
1537 kernel_map_pages(virt_to_page(objp),
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001538 cachep->buffer_size / PAGE_SIZE,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001539 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 else
1541 check_poison_obj(cachep, objp);
1542#else
1543 check_poison_obj(cachep, objp);
1544#endif
1545 }
1546 if (cachep->flags & SLAB_RED_ZONE) {
1547 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
1548 slab_error(cachep, "start of a freed object "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001549 "was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
1551 slab_error(cachep, "end of a freed object "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001552 "was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 }
1554 if (cachep->dtor && !(cachep->flags & SLAB_POISON))
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001555 (cachep->dtor) (objp + obj_offset(cachep), cachep, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 }
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001557}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558#else
Pekka Enberg343e0d72006-02-01 03:05:50 -08001559static void slab_destroy_objs(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001560{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 if (cachep->dtor) {
1562 int i;
1563 for (i = 0; i < cachep->num; i++) {
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001564 void *objp = slabp->s_mem + cachep->buffer_size * i;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001565 (cachep->dtor) (objp, cachep, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 }
1567 }
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001568}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569#endif
1570
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001571/**
1572 * Destroy all the objs in a slab, and release the mem back to the system.
1573 * Before calling the slab must have been unlinked from the cache.
1574 * The cache-lock is not held/needed.
1575 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001576static void slab_destroy(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001577{
1578 void *addr = slabp->s_mem - slabp->colouroff;
1579
1580 slab_destroy_objs(cachep, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 if (unlikely(cachep->flags & SLAB_DESTROY_BY_RCU)) {
1582 struct slab_rcu *slab_rcu;
1583
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001584 slab_rcu = (struct slab_rcu *)slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 slab_rcu->cachep = cachep;
1586 slab_rcu->addr = addr;
1587 call_rcu(&slab_rcu->head, kmem_rcu_free);
1588 } else {
1589 kmem_freepages(cachep, addr);
1590 if (OFF_SLAB(cachep))
1591 kmem_cache_free(cachep->slabp_cache, slabp);
1592 }
1593}
1594
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001595/* For setting up all the kmem_list3s for cache whose buffer_size is same
Christoph Lametere498be72005-09-09 13:03:32 -07001596 as size of kmem_list3. */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001597static void set_up_list3s(struct kmem_cache *cachep, int index)
Christoph Lametere498be72005-09-09 13:03:32 -07001598{
1599 int node;
1600
1601 for_each_online_node(node) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001602 cachep->nodelists[node] = &initkmem_list3[index + node];
Christoph Lametere498be72005-09-09 13:03:32 -07001603 cachep->nodelists[node]->next_reap = jiffies +
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001604 REAPTIMEOUT_LIST3 +
1605 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
Christoph Lametere498be72005-09-09 13:03:32 -07001606 }
1607}
1608
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609/**
Randy.Dunlapa70773d2006-02-01 03:05:52 -08001610 * calculate_slab_order - calculate size (page order) of slabs
1611 * @cachep: pointer to the cache that is being created
1612 * @size: size of objects to be created in this cache.
1613 * @align: required alignment for the objects.
1614 * @flags: slab allocation flags
1615 *
1616 * Also calculates the number of objects per slab.
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001617 *
1618 * This could be made much more intelligent. For now, try to avoid using
1619 * high order pages for slabs. When the gfp() functions are more friendly
1620 * towards high-order requests, this should be changed.
1621 */
Randy Dunlapee13d782006-02-01 03:05:53 -08001622static inline size_t calculate_slab_order(struct kmem_cache *cachep,
1623 size_t size, size_t align, unsigned long flags)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001624{
1625 size_t left_over = 0;
1626
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001627 for (;; cachep->gfporder++) {
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001628 unsigned int num;
1629 size_t remainder;
1630
1631 if (cachep->gfporder > MAX_GFP_ORDER) {
1632 cachep->num = 0;
1633 break;
1634 }
1635
1636 cache_estimate(cachep->gfporder, size, align, flags,
1637 &remainder, &num);
1638 if (!num)
1639 continue;
1640 /* More than offslab_limit objects will cause problems */
1641 if (flags & CFLGS_OFF_SLAB && cachep->num > offslab_limit)
1642 break;
1643
1644 cachep->num = num;
1645 left_over = remainder;
1646
1647 /*
1648 * Large number of objects is good, but very large slabs are
1649 * currently bad for the gfp()s.
1650 */
1651 if (cachep->gfporder >= slab_break_gfp_order)
1652 break;
1653
1654 if ((left_over * 8) <= (PAGE_SIZE << cachep->gfporder))
1655 /* Acceptable internal fragmentation */
1656 break;
1657 }
1658 return left_over;
1659}
1660
1661/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662 * kmem_cache_create - Create a cache.
1663 * @name: A string which is used in /proc/slabinfo to identify this cache.
1664 * @size: The size of objects to be created in this cache.
1665 * @align: The required alignment for the objects.
1666 * @flags: SLAB flags
1667 * @ctor: A constructor for the objects.
1668 * @dtor: A destructor for the objects.
1669 *
1670 * Returns a ptr to the cache on success, NULL on failure.
1671 * Cannot be called within a int, but can be interrupted.
1672 * The @ctor is run when new pages are allocated by the cache
1673 * and the @dtor is run before the pages are handed back.
1674 *
1675 * @name must be valid until the cache is destroyed. This implies that
1676 * the module calling this has to destroy the cache before getting
1677 * unloaded.
1678 *
1679 * The flags are
1680 *
1681 * %SLAB_POISON - Poison the slab with a known test pattern (a5a5a5a5)
1682 * to catch references to uninitialised memory.
1683 *
1684 * %SLAB_RED_ZONE - Insert `Red' zones around the allocated memory to check
1685 * for buffer overruns.
1686 *
1687 * %SLAB_NO_REAP - Don't automatically reap this cache when we're under
1688 * memory pressure.
1689 *
1690 * %SLAB_HWCACHE_ALIGN - Align the objects in this cache to a hardware
1691 * cacheline. This can be beneficial if you're counting cycles as closely
1692 * as davem.
1693 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001694struct kmem_cache *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695kmem_cache_create (const char *name, size_t size, size_t align,
Pekka Enberg343e0d72006-02-01 03:05:50 -08001696 unsigned long flags, void (*ctor)(void*, struct kmem_cache *, unsigned long),
1697 void (*dtor)(void*, struct kmem_cache *, unsigned long))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698{
1699 size_t left_over, slab_size, ralign;
Pekka Enberg343e0d72006-02-01 03:05:50 -08001700 struct kmem_cache *cachep = NULL;
Andrew Morton4f12bb42005-11-07 00:58:00 -08001701 struct list_head *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702
1703 /*
1704 * Sanity checks... these are all serious usage bugs.
1705 */
1706 if ((!name) ||
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001707 in_interrupt() ||
1708 (size < BYTES_PER_WORD) ||
1709 (size > (1 << MAX_OBJ_ORDER) * PAGE_SIZE) || (dtor && !ctor)) {
1710 printk(KERN_ERR "%s: Early error in slab %s\n",
1711 __FUNCTION__, name);
1712 BUG();
1713 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001715 mutex_lock(&cache_chain_mutex);
Andrew Morton4f12bb42005-11-07 00:58:00 -08001716
1717 list_for_each(p, &cache_chain) {
Pekka Enberg343e0d72006-02-01 03:05:50 -08001718 struct kmem_cache *pc = list_entry(p, struct kmem_cache, next);
Andrew Morton4f12bb42005-11-07 00:58:00 -08001719 mm_segment_t old_fs = get_fs();
1720 char tmp;
1721 int res;
1722
1723 /*
1724 * This happens when the module gets unloaded and doesn't
1725 * destroy its slab cache and no-one else reuses the vmalloc
1726 * area of the module. Print a warning.
1727 */
1728 set_fs(KERNEL_DS);
1729 res = __get_user(tmp, pc->name);
1730 set_fs(old_fs);
1731 if (res) {
1732 printk("SLAB: cache with size %d has lost its name\n",
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001733 pc->buffer_size);
Andrew Morton4f12bb42005-11-07 00:58:00 -08001734 continue;
1735 }
1736
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001737 if (!strcmp(pc->name, name)) {
Andrew Morton4f12bb42005-11-07 00:58:00 -08001738 printk("kmem_cache_create: duplicate cache %s\n", name);
1739 dump_stack();
1740 goto oops;
1741 }
1742 }
1743
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744#if DEBUG
1745 WARN_ON(strchr(name, ' ')); /* It confuses parsers */
1746 if ((flags & SLAB_DEBUG_INITIAL) && !ctor) {
1747 /* No constructor, but inital state check requested */
1748 printk(KERN_ERR "%s: No con, but init state check "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001749 "requested - %s\n", __FUNCTION__, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750 flags &= ~SLAB_DEBUG_INITIAL;
1751 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752#if FORCED_DEBUG
1753 /*
1754 * Enable redzoning and last user accounting, except for caches with
1755 * large objects, if the increased size would increase the object size
1756 * above the next power of two: caches with object sizes just above a
1757 * power of two have a significant amount of internal fragmentation.
1758 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001759 if ((size < 4096
1760 || fls(size - 1) == fls(size - 1 + 3 * BYTES_PER_WORD)))
1761 flags |= SLAB_RED_ZONE | SLAB_STORE_USER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 if (!(flags & SLAB_DESTROY_BY_RCU))
1763 flags |= SLAB_POISON;
1764#endif
1765 if (flags & SLAB_DESTROY_BY_RCU)
1766 BUG_ON(flags & SLAB_POISON);
1767#endif
1768 if (flags & SLAB_DESTROY_BY_RCU)
1769 BUG_ON(dtor);
1770
1771 /*
1772 * Always checks flags, a caller might be expecting debug
1773 * support which isn't available.
1774 */
1775 if (flags & ~CREATE_MASK)
1776 BUG();
1777
1778 /* Check that size is in terms of words. This is needed to avoid
1779 * unaligned accesses for some archs when redzoning is used, and makes
1780 * sure any on-slab bufctl's are also correctly aligned.
1781 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001782 if (size & (BYTES_PER_WORD - 1)) {
1783 size += (BYTES_PER_WORD - 1);
1784 size &= ~(BYTES_PER_WORD - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 }
1786
1787 /* calculate out the final buffer alignment: */
1788 /* 1) arch recommendation: can be overridden for debug */
1789 if (flags & SLAB_HWCACHE_ALIGN) {
1790 /* Default alignment: as specified by the arch code.
1791 * Except if an object is really small, then squeeze multiple
1792 * objects into one cacheline.
1793 */
1794 ralign = cache_line_size();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001795 while (size <= ralign / 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 ralign /= 2;
1797 } else {
1798 ralign = BYTES_PER_WORD;
1799 }
1800 /* 2) arch mandated alignment: disables debug if necessary */
1801 if (ralign < ARCH_SLAB_MINALIGN) {
1802 ralign = ARCH_SLAB_MINALIGN;
1803 if (ralign > BYTES_PER_WORD)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001804 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 }
1806 /* 3) caller mandated alignment: disables debug if necessary */
1807 if (ralign < align) {
1808 ralign = align;
1809 if (ralign > BYTES_PER_WORD)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001810 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 }
1812 /* 4) Store it. Note that the debug code below can reduce
1813 * the alignment to BYTES_PER_WORD.
1814 */
1815 align = ralign;
1816
1817 /* Get cache's description obj. */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001818 cachep = kmem_cache_alloc(&cache_cache, SLAB_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 if (!cachep)
Andrew Morton4f12bb42005-11-07 00:58:00 -08001820 goto oops;
Pekka Enberg343e0d72006-02-01 03:05:50 -08001821 memset(cachep, 0, sizeof(struct kmem_cache));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822
1823#if DEBUG
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001824 cachep->obj_size = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825
1826 if (flags & SLAB_RED_ZONE) {
1827 /* redzoning only works with word aligned caches */
1828 align = BYTES_PER_WORD;
1829
1830 /* add space for red zone words */
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001831 cachep->obj_offset += BYTES_PER_WORD;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001832 size += 2 * BYTES_PER_WORD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 }
1834 if (flags & SLAB_STORE_USER) {
1835 /* user store requires word alignment and
1836 * one word storage behind the end of the real
1837 * object.
1838 */
1839 align = BYTES_PER_WORD;
1840 size += BYTES_PER_WORD;
1841 }
1842#if FORCED_DEBUG && defined(CONFIG_DEBUG_PAGEALLOC)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001843 if (size >= malloc_sizes[INDEX_L3 + 1].cs_size
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001844 && cachep->obj_size > cache_line_size() && size < PAGE_SIZE) {
1845 cachep->obj_offset += PAGE_SIZE - size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 size = PAGE_SIZE;
1847 }
1848#endif
1849#endif
1850
1851 /* Determine if the slab management is 'on' or 'off' slab. */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001852 if (size >= (PAGE_SIZE >> 3))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 /*
1854 * Size is large, assume best to place the slab management obj
1855 * off-slab (should allow better packing of objs).
1856 */
1857 flags |= CFLGS_OFF_SLAB;
1858
1859 size = ALIGN(size, align);
1860
1861 if ((flags & SLAB_RECLAIM_ACCOUNT) && size <= PAGE_SIZE) {
1862 /*
1863 * A VFS-reclaimable slab tends to have most allocations
1864 * as GFP_NOFS and we really don't want to have to be allocating
1865 * higher-order pages when we are unable to shrink dcache.
1866 */
1867 cachep->gfporder = 0;
1868 cache_estimate(cachep->gfporder, size, align, flags,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001869 &left_over, &cachep->num);
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001870 } else
1871 left_over = calculate_slab_order(cachep, size, align, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001872
1873 if (!cachep->num) {
1874 printk("kmem_cache_create: couldn't create cache %s.\n", name);
1875 kmem_cache_free(&cache_cache, cachep);
1876 cachep = NULL;
Andrew Morton4f12bb42005-11-07 00:58:00 -08001877 goto oops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001879 slab_size = ALIGN(cachep->num * sizeof(kmem_bufctl_t)
1880 + sizeof(struct slab), align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881
1882 /*
1883 * If the slab has been placed off-slab, and we have enough space then
1884 * move it on-slab. This is at the expense of any extra colouring.
1885 */
1886 if (flags & CFLGS_OFF_SLAB && left_over >= slab_size) {
1887 flags &= ~CFLGS_OFF_SLAB;
1888 left_over -= slab_size;
1889 }
1890
1891 if (flags & CFLGS_OFF_SLAB) {
1892 /* really off slab. No need for manual alignment */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001893 slab_size =
1894 cachep->num * sizeof(kmem_bufctl_t) + sizeof(struct slab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 }
1896
1897 cachep->colour_off = cache_line_size();
1898 /* Offset must be a multiple of the alignment. */
1899 if (cachep->colour_off < align)
1900 cachep->colour_off = align;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001901 cachep->colour = left_over / cachep->colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 cachep->slab_size = slab_size;
1903 cachep->flags = flags;
1904 cachep->gfpflags = 0;
1905 if (flags & SLAB_CACHE_DMA)
1906 cachep->gfpflags |= GFP_DMA;
1907 spin_lock_init(&cachep->spinlock);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001908 cachep->buffer_size = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909
1910 if (flags & CFLGS_OFF_SLAB)
Victor Fuscob2d55072005-09-10 00:26:36 -07001911 cachep->slabp_cache = kmem_find_general_cachep(slab_size, 0u);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 cachep->ctor = ctor;
1913 cachep->dtor = dtor;
1914 cachep->name = name;
1915
1916 /* Don't let CPUs to come and go */
1917 lock_cpu_hotplug();
1918
1919 if (g_cpucache_up == FULL) {
1920 enable_cpucache(cachep);
1921 } else {
1922 if (g_cpucache_up == NONE) {
1923 /* Note: the first kmem_cache_create must create
1924 * the cache that's used by kmalloc(24), otherwise
1925 * the creation of further caches will BUG().
1926 */
Christoph Lametere498be72005-09-09 13:03:32 -07001927 cachep->array[smp_processor_id()] =
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001928 &initarray_generic.cache;
Christoph Lametere498be72005-09-09 13:03:32 -07001929
1930 /* If the cache that's used by
1931 * kmalloc(sizeof(kmem_list3)) is the first cache,
1932 * then we need to set up all its list3s, otherwise
1933 * the creation of further caches will BUG().
1934 */
1935 set_up_list3s(cachep, SIZE_AC);
1936 if (INDEX_AC == INDEX_L3)
1937 g_cpucache_up = PARTIAL_L3;
1938 else
1939 g_cpucache_up = PARTIAL_AC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 } else {
Christoph Lametere498be72005-09-09 13:03:32 -07001941 cachep->array[smp_processor_id()] =
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001942 kmalloc(sizeof(struct arraycache_init), GFP_KERNEL);
Christoph Lametere498be72005-09-09 13:03:32 -07001943
1944 if (g_cpucache_up == PARTIAL_AC) {
1945 set_up_list3s(cachep, SIZE_L3);
1946 g_cpucache_up = PARTIAL_L3;
1947 } else {
1948 int node;
1949 for_each_online_node(node) {
1950
1951 cachep->nodelists[node] =
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001952 kmalloc_node(sizeof
1953 (struct kmem_list3),
1954 GFP_KERNEL, node);
Christoph Lametere498be72005-09-09 13:03:32 -07001955 BUG_ON(!cachep->nodelists[node]);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001956 kmem_list3_init(cachep->
1957 nodelists[node]);
Christoph Lametere498be72005-09-09 13:03:32 -07001958 }
1959 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 }
Christoph Lametere498be72005-09-09 13:03:32 -07001961 cachep->nodelists[numa_node_id()]->next_reap =
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001962 jiffies + REAPTIMEOUT_LIST3 +
1963 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
Christoph Lametere498be72005-09-09 13:03:32 -07001964
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001965 BUG_ON(!cpu_cache_get(cachep));
1966 cpu_cache_get(cachep)->avail = 0;
1967 cpu_cache_get(cachep)->limit = BOOT_CPUCACHE_ENTRIES;
1968 cpu_cache_get(cachep)->batchcount = 1;
1969 cpu_cache_get(cachep)->touched = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 cachep->batchcount = 1;
1971 cachep->limit = BOOT_CPUCACHE_ENTRIES;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001972 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 /* cache setup completed, link it into the list */
1975 list_add(&cachep->next, &cache_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 unlock_cpu_hotplug();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001977 oops:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 if (!cachep && (flags & SLAB_PANIC))
1979 panic("kmem_cache_create(): failed to create slab `%s'\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001980 name);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001981 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 return cachep;
1983}
1984EXPORT_SYMBOL(kmem_cache_create);
1985
1986#if DEBUG
1987static void check_irq_off(void)
1988{
1989 BUG_ON(!irqs_disabled());
1990}
1991
1992static void check_irq_on(void)
1993{
1994 BUG_ON(irqs_disabled());
1995}
1996
Pekka Enberg343e0d72006-02-01 03:05:50 -08001997static void check_spinlock_acquired(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998{
1999#ifdef CONFIG_SMP
2000 check_irq_off();
Christoph Lametere498be72005-09-09 13:03:32 -07002001 assert_spin_locked(&cachep->nodelists[numa_node_id()]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002#endif
2003}
Christoph Lametere498be72005-09-09 13:03:32 -07002004
Pekka Enberg343e0d72006-02-01 03:05:50 -08002005static void check_spinlock_acquired_node(struct kmem_cache *cachep, int node)
Christoph Lametere498be72005-09-09 13:03:32 -07002006{
2007#ifdef CONFIG_SMP
2008 check_irq_off();
2009 assert_spin_locked(&cachep->nodelists[node]->list_lock);
2010#endif
2011}
2012
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013#else
2014#define check_irq_off() do { } while(0)
2015#define check_irq_on() do { } while(0)
2016#define check_spinlock_acquired(x) do { } while(0)
Christoph Lametere498be72005-09-09 13:03:32 -07002017#define check_spinlock_acquired_node(x, y) do { } while(0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018#endif
2019
2020/*
2021 * Waits for all CPUs to execute func().
2022 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002023static void smp_call_function_all_cpus(void (*func)(void *arg), void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024{
2025 check_irq_on();
2026 preempt_disable();
2027
2028 local_irq_disable();
2029 func(arg);
2030 local_irq_enable();
2031
2032 if (smp_call_function(func, arg, 1, 1))
2033 BUG();
2034
2035 preempt_enable();
2036}
2037
Pekka Enberg343e0d72006-02-01 03:05:50 -08002038static void drain_array_locked(struct kmem_cache *cachep, struct array_cache *ac,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002039 int force, int node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040
2041static void do_drain(void *arg)
2042{
Pekka Enberg343e0d72006-02-01 03:05:50 -08002043 struct kmem_cache *cachep = (struct kmem_cache *) arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 struct array_cache *ac;
Christoph Lameterff694162005-09-22 21:44:02 -07002045 int node = numa_node_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046
2047 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002048 ac = cpu_cache_get(cachep);
Christoph Lameterff694162005-09-22 21:44:02 -07002049 spin_lock(&cachep->nodelists[node]->list_lock);
2050 free_block(cachep, ac->entry, ac->avail, node);
2051 spin_unlock(&cachep->nodelists[node]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 ac->avail = 0;
2053}
2054
Pekka Enberg343e0d72006-02-01 03:05:50 -08002055static void drain_cpu_caches(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056{
Christoph Lametere498be72005-09-09 13:03:32 -07002057 struct kmem_list3 *l3;
2058 int node;
2059
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 smp_call_function_all_cpus(do_drain, cachep);
2061 check_irq_on();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002062 for_each_online_node(node) {
Christoph Lametere498be72005-09-09 13:03:32 -07002063 l3 = cachep->nodelists[node];
2064 if (l3) {
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08002065 spin_lock_irq(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07002066 drain_array_locked(cachep, l3->shared, 1, node);
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08002067 spin_unlock_irq(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07002068 if (l3->alien)
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08002069 drain_alien_cache(cachep, l3->alien);
Christoph Lametere498be72005-09-09 13:03:32 -07002070 }
2071 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072}
2073
Pekka Enberg343e0d72006-02-01 03:05:50 -08002074static int __node_shrink(struct kmem_cache *cachep, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075{
2076 struct slab *slabp;
Christoph Lametere498be72005-09-09 13:03:32 -07002077 struct kmem_list3 *l3 = cachep->nodelists[node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 int ret;
2079
Christoph Lametere498be72005-09-09 13:03:32 -07002080 for (;;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 struct list_head *p;
2082
Christoph Lametere498be72005-09-09 13:03:32 -07002083 p = l3->slabs_free.prev;
2084 if (p == &l3->slabs_free)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 break;
2086
Christoph Lametere498be72005-09-09 13:03:32 -07002087 slabp = list_entry(l3->slabs_free.prev, struct slab, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088#if DEBUG
2089 if (slabp->inuse)
2090 BUG();
2091#endif
2092 list_del(&slabp->list);
2093
Christoph Lametere498be72005-09-09 13:03:32 -07002094 l3->free_objects -= cachep->num;
2095 spin_unlock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 slab_destroy(cachep, slabp);
Christoph Lametere498be72005-09-09 13:03:32 -07002097 spin_lock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002099 ret = !list_empty(&l3->slabs_full) || !list_empty(&l3->slabs_partial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 return ret;
2101}
2102
Pekka Enberg343e0d72006-02-01 03:05:50 -08002103static int __cache_shrink(struct kmem_cache *cachep)
Christoph Lametere498be72005-09-09 13:03:32 -07002104{
2105 int ret = 0, i = 0;
2106 struct kmem_list3 *l3;
2107
2108 drain_cpu_caches(cachep);
2109
2110 check_irq_on();
2111 for_each_online_node(i) {
2112 l3 = cachep->nodelists[i];
2113 if (l3) {
2114 spin_lock_irq(&l3->list_lock);
2115 ret += __node_shrink(cachep, i);
2116 spin_unlock_irq(&l3->list_lock);
2117 }
2118 }
2119 return (ret ? 1 : 0);
2120}
2121
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122/**
2123 * kmem_cache_shrink - Shrink a cache.
2124 * @cachep: The cache to shrink.
2125 *
2126 * Releases as many slabs as possible for a cache.
2127 * To help debugging, a zero exit status indicates all slabs were released.
2128 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002129int kmem_cache_shrink(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130{
2131 if (!cachep || in_interrupt())
2132 BUG();
2133
2134 return __cache_shrink(cachep);
2135}
2136EXPORT_SYMBOL(kmem_cache_shrink);
2137
2138/**
2139 * kmem_cache_destroy - delete a cache
2140 * @cachep: the cache to destroy
2141 *
Pekka Enberg343e0d72006-02-01 03:05:50 -08002142 * Remove a struct kmem_cache object from the slab cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 * Returns 0 on success.
2144 *
2145 * It is expected this function will be called by a module when it is
2146 * unloaded. This will remove the cache completely, and avoid a duplicate
2147 * cache being allocated each time a module is loaded and unloaded, if the
2148 * module doesn't have persistent in-kernel storage across loads and unloads.
2149 *
2150 * The cache must be empty before calling this function.
2151 *
2152 * The caller must guarantee that noone will allocate memory from the cache
2153 * during the kmem_cache_destroy().
2154 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002155int kmem_cache_destroy(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156{
2157 int i;
Christoph Lametere498be72005-09-09 13:03:32 -07002158 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159
2160 if (!cachep || in_interrupt())
2161 BUG();
2162
2163 /* Don't let CPUs to come and go */
2164 lock_cpu_hotplug();
2165
2166 /* Find the cache in the chain of caches. */
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002167 mutex_lock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168 /*
2169 * the chain is never empty, cache_cache is never destroyed
2170 */
2171 list_del(&cachep->next);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002172 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173
2174 if (__cache_shrink(cachep)) {
2175 slab_error(cachep, "Can't free all objects");
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002176 mutex_lock(&cache_chain_mutex);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002177 list_add(&cachep->next, &cache_chain);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002178 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 unlock_cpu_hotplug();
2180 return 1;
2181 }
2182
2183 if (unlikely(cachep->flags & SLAB_DESTROY_BY_RCU))
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07002184 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185
Christoph Lametere498be72005-09-09 13:03:32 -07002186 for_each_online_cpu(i)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002187 kfree(cachep->array[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188
2189 /* NUMA: free the list3 structures */
Christoph Lametere498be72005-09-09 13:03:32 -07002190 for_each_online_node(i) {
2191 if ((l3 = cachep->nodelists[i])) {
2192 kfree(l3->shared);
2193 free_alien_cache(l3->alien);
2194 kfree(l3);
2195 }
2196 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 kmem_cache_free(&cache_cache, cachep);
2198
2199 unlock_cpu_hotplug();
2200
2201 return 0;
2202}
2203EXPORT_SYMBOL(kmem_cache_destroy);
2204
2205/* Get the memory for a slab management obj. */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002206static struct slab *alloc_slabmgmt(struct kmem_cache *cachep, void *objp,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002207 int colour_off, gfp_t local_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208{
2209 struct slab *slabp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002210
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 if (OFF_SLAB(cachep)) {
2212 /* Slab management obj is off-slab. */
2213 slabp = kmem_cache_alloc(cachep->slabp_cache, local_flags);
2214 if (!slabp)
2215 return NULL;
2216 } else {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002217 slabp = objp + colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 colour_off += cachep->slab_size;
2219 }
2220 slabp->inuse = 0;
2221 slabp->colouroff = colour_off;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002222 slabp->s_mem = objp + colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223
2224 return slabp;
2225}
2226
2227static inline kmem_bufctl_t *slab_bufctl(struct slab *slabp)
2228{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002229 return (kmem_bufctl_t *) (slabp + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230}
2231
Pekka Enberg343e0d72006-02-01 03:05:50 -08002232static void cache_init_objs(struct kmem_cache *cachep,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002233 struct slab *slabp, unsigned long ctor_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234{
2235 int i;
2236
2237 for (i = 0; i < cachep->num; i++) {
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002238 void *objp = slabp->s_mem + cachep->buffer_size * i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239#if DEBUG
2240 /* need to poison the objs? */
2241 if (cachep->flags & SLAB_POISON)
2242 poison_obj(cachep, objp, POISON_FREE);
2243 if (cachep->flags & SLAB_STORE_USER)
2244 *dbg_userword(cachep, objp) = NULL;
2245
2246 if (cachep->flags & SLAB_RED_ZONE) {
2247 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2248 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2249 }
2250 /*
2251 * Constructors are not allowed to allocate memory from
2252 * the same cache which they are a constructor for.
2253 * Otherwise, deadlock. They must also be threaded.
2254 */
2255 if (cachep->ctor && !(cachep->flags & SLAB_POISON))
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002256 cachep->ctor(objp + obj_offset(cachep), cachep,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002257 ctor_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258
2259 if (cachep->flags & SLAB_RED_ZONE) {
2260 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
2261 slab_error(cachep, "constructor overwrote the"
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002262 " end of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
2264 slab_error(cachep, "constructor overwrote the"
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002265 " start of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 }
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002267 if ((cachep->buffer_size % PAGE_SIZE) == 0 && OFF_SLAB(cachep)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002268 && cachep->flags & SLAB_POISON)
2269 kernel_map_pages(virt_to_page(objp),
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002270 cachep->buffer_size / PAGE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002271#else
2272 if (cachep->ctor)
2273 cachep->ctor(objp, cachep, ctor_flags);
2274#endif
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002275 slab_bufctl(slabp)[i] = i + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002277 slab_bufctl(slabp)[i - 1] = BUFCTL_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 slabp->free = 0;
2279}
2280
Pekka Enberg343e0d72006-02-01 03:05:50 -08002281static void kmem_flagcheck(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282{
2283 if (flags & SLAB_DMA) {
2284 if (!(cachep->gfpflags & GFP_DMA))
2285 BUG();
2286 } else {
2287 if (cachep->gfpflags & GFP_DMA)
2288 BUG();
2289 }
2290}
2291
Pekka Enberg343e0d72006-02-01 03:05:50 -08002292static void *slab_get_obj(struct kmem_cache *cachep, struct slab *slabp, int nodeid)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002293{
2294 void *objp = slabp->s_mem + (slabp->free * cachep->buffer_size);
2295 kmem_bufctl_t next;
2296
2297 slabp->inuse++;
2298 next = slab_bufctl(slabp)[slabp->free];
2299#if DEBUG
2300 slab_bufctl(slabp)[slabp->free] = BUFCTL_FREE;
2301 WARN_ON(slabp->nodeid != nodeid);
2302#endif
2303 slabp->free = next;
2304
2305 return objp;
2306}
2307
Pekka Enberg343e0d72006-02-01 03:05:50 -08002308static void slab_put_obj(struct kmem_cache *cachep, struct slab *slabp, void *objp,
Matthew Dobson78d382d2006-02-01 03:05:47 -08002309 int nodeid)
2310{
2311 unsigned int objnr = (unsigned)(objp-slabp->s_mem) / cachep->buffer_size;
2312
2313#if DEBUG
2314 /* Verify that the slab belongs to the intended node */
2315 WARN_ON(slabp->nodeid != nodeid);
2316
2317 if (slab_bufctl(slabp)[objnr] != BUFCTL_FREE) {
2318 printk(KERN_ERR "slab: double free detected in cache "
2319 "'%s', objp %p\n", cachep->name, objp);
2320 BUG();
2321 }
2322#endif
2323 slab_bufctl(slabp)[objnr] = slabp->free;
2324 slabp->free = objnr;
2325 slabp->inuse--;
2326}
2327
Pekka Enberg343e0d72006-02-01 03:05:50 -08002328static void set_slab_attr(struct kmem_cache *cachep, struct slab *slabp, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329{
2330 int i;
2331 struct page *page;
2332
2333 /* Nasty!!!!!! I hope this is OK. */
2334 i = 1 << cachep->gfporder;
2335 page = virt_to_page(objp);
2336 do {
Pekka Enberg065d41c2005-11-13 16:06:46 -08002337 page_set_cache(page, cachep);
2338 page_set_slab(page, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002339 page++;
2340 } while (--i);
2341}
2342
2343/*
2344 * Grow (by 1) the number of slabs within a cache. This is called by
2345 * kmem_cache_alloc() when there are no active objs left in a cache.
2346 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002347static int cache_grow(struct kmem_cache *cachep, gfp_t flags, int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002349 struct slab *slabp;
2350 void *objp;
2351 size_t offset;
2352 gfp_t local_flags;
2353 unsigned long ctor_flags;
Christoph Lametere498be72005-09-09 13:03:32 -07002354 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355
2356 /* Be lazy and only check for valid flags here,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002357 * keeping it out of the critical path in kmem_cache_alloc().
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002359 if (flags & ~(SLAB_DMA | SLAB_LEVEL_MASK | SLAB_NO_GROW))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360 BUG();
2361 if (flags & SLAB_NO_GROW)
2362 return 0;
2363
2364 ctor_flags = SLAB_CTOR_CONSTRUCTOR;
2365 local_flags = (flags & SLAB_LEVEL_MASK);
2366 if (!(local_flags & __GFP_WAIT))
2367 /*
2368 * Not allowed to sleep. Need to tell a constructor about
2369 * this - it might need to know...
2370 */
2371 ctor_flags |= SLAB_CTOR_ATOMIC;
2372
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002373 /* Take the l3 list lock to change the colour_next on this node */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 check_irq_off();
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002375 l3 = cachep->nodelists[nodeid];
2376 spin_lock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377
2378 /* Get colour for the slab, and cal the next value. */
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002379 offset = l3->colour_next;
2380 l3->colour_next++;
2381 if (l3->colour_next >= cachep->colour)
2382 l3->colour_next = 0;
2383 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002385 offset *= cachep->colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386
2387 if (local_flags & __GFP_WAIT)
2388 local_irq_enable();
2389
2390 /*
2391 * The test for missing atomic flag is performed here, rather than
2392 * the more obvious place, simply to reduce the critical path length
2393 * in kmem_cache_alloc(). If a caller is seriously mis-behaving they
2394 * will eventually be caught here (where it matters).
2395 */
2396 kmem_flagcheck(cachep, flags);
2397
Christoph Lametere498be72005-09-09 13:03:32 -07002398 /* Get mem for the objs.
2399 * Attempt to allocate a physical page from 'nodeid',
2400 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 if (!(objp = kmem_getpages(cachep, flags, nodeid)))
2402 goto failed;
2403
2404 /* Get slab management. */
2405 if (!(slabp = alloc_slabmgmt(cachep, objp, offset, local_flags)))
2406 goto opps1;
2407
Christoph Lametere498be72005-09-09 13:03:32 -07002408 slabp->nodeid = nodeid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 set_slab_attr(cachep, slabp, objp);
2410
2411 cache_init_objs(cachep, slabp, ctor_flags);
2412
2413 if (local_flags & __GFP_WAIT)
2414 local_irq_disable();
2415 check_irq_off();
Christoph Lametere498be72005-09-09 13:03:32 -07002416 spin_lock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417
2418 /* Make slab active. */
Christoph Lametere498be72005-09-09 13:03:32 -07002419 list_add_tail(&slabp->list, &(l3->slabs_free));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 STATS_INC_GROWN(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07002421 l3->free_objects += cachep->num;
2422 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 return 1;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002424 opps1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 kmem_freepages(cachep, objp);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002426 failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 if (local_flags & __GFP_WAIT)
2428 local_irq_disable();
2429 return 0;
2430}
2431
2432#if DEBUG
2433
2434/*
2435 * Perform extra freeing checks:
2436 * - detect bad pointers.
2437 * - POISON/RED_ZONE checking
2438 * - destructor calls, for caches with POISON+dtor
2439 */
2440static void kfree_debugcheck(const void *objp)
2441{
2442 struct page *page;
2443
2444 if (!virt_addr_valid(objp)) {
2445 printk(KERN_ERR "kfree_debugcheck: out of range ptr %lxh.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002446 (unsigned long)objp);
2447 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448 }
2449 page = virt_to_page(objp);
2450 if (!PageSlab(page)) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002451 printk(KERN_ERR "kfree_debugcheck: bad ptr %lxh.\n",
2452 (unsigned long)objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453 BUG();
2454 }
2455}
2456
Pekka Enberg343e0d72006-02-01 03:05:50 -08002457static void *cache_free_debugcheck(struct kmem_cache *cachep, void *objp,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002458 void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459{
2460 struct page *page;
2461 unsigned int objnr;
2462 struct slab *slabp;
2463
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002464 objp -= obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465 kfree_debugcheck(objp);
2466 page = virt_to_page(objp);
2467
Pekka Enberg065d41c2005-11-13 16:06:46 -08002468 if (page_get_cache(page) != cachep) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002469 printk(KERN_ERR
2470 "mismatch in kmem_cache_free: expected cache %p, got %p\n",
2471 page_get_cache(page), cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 printk(KERN_ERR "%p is %s.\n", cachep, cachep->name);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002473 printk(KERN_ERR "%p is %s.\n", page_get_cache(page),
2474 page_get_cache(page)->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 WARN_ON(1);
2476 }
Pekka Enberg065d41c2005-11-13 16:06:46 -08002477 slabp = page_get_slab(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478
2479 if (cachep->flags & SLAB_RED_ZONE) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002480 if (*dbg_redzone1(cachep, objp) != RED_ACTIVE
2481 || *dbg_redzone2(cachep, objp) != RED_ACTIVE) {
2482 slab_error(cachep,
2483 "double free, or memory outside"
2484 " object was overwritten");
2485 printk(KERN_ERR
2486 "%p: redzone 1: 0x%lx, redzone 2: 0x%lx.\n",
2487 objp, *dbg_redzone1(cachep, objp),
2488 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489 }
2490 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2491 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2492 }
2493 if (cachep->flags & SLAB_STORE_USER)
2494 *dbg_userword(cachep, objp) = caller;
2495
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002496 objnr = (unsigned)(objp - slabp->s_mem) / cachep->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497
2498 BUG_ON(objnr >= cachep->num);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002499 BUG_ON(objp != slabp->s_mem + objnr * cachep->buffer_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500
2501 if (cachep->flags & SLAB_DEBUG_INITIAL) {
2502 /* Need to call the slab's constructor so the
2503 * caller can perform a verify of its state (debugging).
2504 * Called without the cache-lock held.
2505 */
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002506 cachep->ctor(objp + obj_offset(cachep),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002507 cachep, SLAB_CTOR_CONSTRUCTOR | SLAB_CTOR_VERIFY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508 }
2509 if (cachep->flags & SLAB_POISON && cachep->dtor) {
2510 /* we want to cache poison the object,
2511 * call the destruction callback
2512 */
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002513 cachep->dtor(objp + obj_offset(cachep), cachep, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 }
2515 if (cachep->flags & SLAB_POISON) {
2516#ifdef CONFIG_DEBUG_PAGEALLOC
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002517 if ((cachep->buffer_size % PAGE_SIZE) == 0 && OFF_SLAB(cachep)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 store_stackinfo(cachep, objp, (unsigned long)caller);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002519 kernel_map_pages(virt_to_page(objp),
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002520 cachep->buffer_size / PAGE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521 } else {
2522 poison_obj(cachep, objp, POISON_FREE);
2523 }
2524#else
2525 poison_obj(cachep, objp, POISON_FREE);
2526#endif
2527 }
2528 return objp;
2529}
2530
Pekka Enberg343e0d72006-02-01 03:05:50 -08002531static void check_slabp(struct kmem_cache *cachep, struct slab *slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532{
2533 kmem_bufctl_t i;
2534 int entries = 0;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002535
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 /* Check slab's freelist to see if this obj is there. */
2537 for (i = slabp->free; i != BUFCTL_END; i = slab_bufctl(slabp)[i]) {
2538 entries++;
2539 if (entries > cachep->num || i >= cachep->num)
2540 goto bad;
2541 }
2542 if (entries != cachep->num - slabp->inuse) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002543 bad:
2544 printk(KERN_ERR
2545 "slab: Internal list corruption detected in cache '%s'(%d), slabp %p(%d). Hexdump:\n",
2546 cachep->name, cachep->num, slabp, slabp->inuse);
2547 for (i = 0;
2548 i < sizeof(slabp) + cachep->num * sizeof(kmem_bufctl_t);
2549 i++) {
2550 if ((i % 16) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 printk("\n%03x:", i);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002552 printk(" %02x", ((unsigned char *)slabp)[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553 }
2554 printk("\n");
2555 BUG();
2556 }
2557}
2558#else
2559#define kfree_debugcheck(x) do { } while(0)
2560#define cache_free_debugcheck(x,objp,z) (objp)
2561#define check_slabp(x,y) do { } while(0)
2562#endif
2563
Pekka Enberg343e0d72006-02-01 03:05:50 -08002564static void *cache_alloc_refill(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565{
2566 int batchcount;
2567 struct kmem_list3 *l3;
2568 struct array_cache *ac;
2569
2570 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002571 ac = cpu_cache_get(cachep);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002572 retry:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 batchcount = ac->batchcount;
2574 if (!ac->touched && batchcount > BATCHREFILL_LIMIT) {
2575 /* if there was little recent activity on this
2576 * cache, then perform only a partial refill.
2577 * Otherwise we could generate refill bouncing.
2578 */
2579 batchcount = BATCHREFILL_LIMIT;
2580 }
Christoph Lametere498be72005-09-09 13:03:32 -07002581 l3 = cachep->nodelists[numa_node_id()];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582
Christoph Lametere498be72005-09-09 13:03:32 -07002583 BUG_ON(ac->avail > 0 || !l3);
2584 spin_lock(&l3->list_lock);
2585
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586 if (l3->shared) {
2587 struct array_cache *shared_array = l3->shared;
2588 if (shared_array->avail) {
2589 if (batchcount > shared_array->avail)
2590 batchcount = shared_array->avail;
2591 shared_array->avail -= batchcount;
2592 ac->avail = batchcount;
Christoph Lametere498be72005-09-09 13:03:32 -07002593 memcpy(ac->entry,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002594 &(shared_array->entry[shared_array->avail]),
2595 sizeof(void *) * batchcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 shared_array->touched = 1;
2597 goto alloc_done;
2598 }
2599 }
2600 while (batchcount > 0) {
2601 struct list_head *entry;
2602 struct slab *slabp;
2603 /* Get slab alloc is to come from. */
2604 entry = l3->slabs_partial.next;
2605 if (entry == &l3->slabs_partial) {
2606 l3->free_touched = 1;
2607 entry = l3->slabs_free.next;
2608 if (entry == &l3->slabs_free)
2609 goto must_grow;
2610 }
2611
2612 slabp = list_entry(entry, struct slab, list);
2613 check_slabp(cachep, slabp);
2614 check_spinlock_acquired(cachep);
2615 while (slabp->inuse < cachep->num && batchcount--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616 STATS_INC_ALLOCED(cachep);
2617 STATS_INC_ACTIVE(cachep);
2618 STATS_SET_HIGH(cachep);
2619
Matthew Dobson78d382d2006-02-01 03:05:47 -08002620 ac->entry[ac->avail++] = slab_get_obj(cachep, slabp,
2621 numa_node_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 }
2623 check_slabp(cachep, slabp);
2624
2625 /* move slabp to correct slabp list: */
2626 list_del(&slabp->list);
2627 if (slabp->free == BUFCTL_END)
2628 list_add(&slabp->list, &l3->slabs_full);
2629 else
2630 list_add(&slabp->list, &l3->slabs_partial);
2631 }
2632
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002633 must_grow:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634 l3->free_objects -= ac->avail;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002635 alloc_done:
Christoph Lametere498be72005-09-09 13:03:32 -07002636 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637
2638 if (unlikely(!ac->avail)) {
2639 int x;
Christoph Lametere498be72005-09-09 13:03:32 -07002640 x = cache_grow(cachep, flags, numa_node_id());
2641
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 // cache_grow can reenable interrupts, then ac could change.
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002643 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644 if (!x && ac->avail == 0) // no objects in sight? abort
2645 return NULL;
2646
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002647 if (!ac->avail) // objects refilled by interrupt?
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648 goto retry;
2649 }
2650 ac->touched = 1;
Christoph Lametere498be72005-09-09 13:03:32 -07002651 return ac->entry[--ac->avail];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652}
2653
2654static inline void
Pekka Enberg343e0d72006-02-01 03:05:50 -08002655cache_alloc_debugcheck_before(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656{
2657 might_sleep_if(flags & __GFP_WAIT);
2658#if DEBUG
2659 kmem_flagcheck(cachep, flags);
2660#endif
2661}
2662
2663#if DEBUG
Pekka Enberg343e0d72006-02-01 03:05:50 -08002664static void *cache_alloc_debugcheck_after(struct kmem_cache *cachep, gfp_t flags,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002665 void *objp, void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002667 if (!objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668 return objp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002669 if (cachep->flags & SLAB_POISON) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670#ifdef CONFIG_DEBUG_PAGEALLOC
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002671 if ((cachep->buffer_size % PAGE_SIZE) == 0 && OFF_SLAB(cachep))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002672 kernel_map_pages(virt_to_page(objp),
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002673 cachep->buffer_size / PAGE_SIZE, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674 else
2675 check_poison_obj(cachep, objp);
2676#else
2677 check_poison_obj(cachep, objp);
2678#endif
2679 poison_obj(cachep, objp, POISON_INUSE);
2680 }
2681 if (cachep->flags & SLAB_STORE_USER)
2682 *dbg_userword(cachep, objp) = caller;
2683
2684 if (cachep->flags & SLAB_RED_ZONE) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002685 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE
2686 || *dbg_redzone2(cachep, objp) != RED_INACTIVE) {
2687 slab_error(cachep,
2688 "double free, or memory outside"
2689 " object was overwritten");
2690 printk(KERN_ERR
2691 "%p: redzone 1: 0x%lx, redzone 2: 0x%lx.\n",
2692 objp, *dbg_redzone1(cachep, objp),
2693 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694 }
2695 *dbg_redzone1(cachep, objp) = RED_ACTIVE;
2696 *dbg_redzone2(cachep, objp) = RED_ACTIVE;
2697 }
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002698 objp += obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699 if (cachep->ctor && cachep->flags & SLAB_POISON) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002700 unsigned long ctor_flags = SLAB_CTOR_CONSTRUCTOR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701
2702 if (!(flags & __GFP_WAIT))
2703 ctor_flags |= SLAB_CTOR_ATOMIC;
2704
2705 cachep->ctor(objp, cachep, ctor_flags);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002706 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 return objp;
2708}
2709#else
2710#define cache_alloc_debugcheck_after(a,b,objp,d) (objp)
2711#endif
2712
Pekka Enberg343e0d72006-02-01 03:05:50 -08002713static inline void *____cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002715 void *objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 struct array_cache *ac;
2717
Christoph Lameterdc85da12006-01-18 17:42:36 -08002718#ifdef CONFIG_NUMA
Christoph Lameter86c562a2006-01-18 17:42:37 -08002719 if (unlikely(current->mempolicy && !in_interrupt())) {
Christoph Lameterdc85da12006-01-18 17:42:36 -08002720 int nid = slab_node(current->mempolicy);
2721
2722 if (nid != numa_node_id())
2723 return __cache_alloc_node(cachep, flags, nid);
2724 }
2725#endif
2726
Alok N Kataria5c382302005-09-27 21:45:46 -07002727 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002728 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729 if (likely(ac->avail)) {
2730 STATS_INC_ALLOCHIT(cachep);
2731 ac->touched = 1;
Christoph Lametere498be72005-09-09 13:03:32 -07002732 objp = ac->entry[--ac->avail];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733 } else {
2734 STATS_INC_ALLOCMISS(cachep);
2735 objp = cache_alloc_refill(cachep, flags);
2736 }
Alok N Kataria5c382302005-09-27 21:45:46 -07002737 return objp;
2738}
2739
Pekka Enberg7fd6b142006-02-01 03:05:52 -08002740static __always_inline void *
2741__cache_alloc(struct kmem_cache *cachep, gfp_t flags, void *caller)
Alok N Kataria5c382302005-09-27 21:45:46 -07002742{
2743 unsigned long save_flags;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002744 void *objp;
Alok N Kataria5c382302005-09-27 21:45:46 -07002745
2746 cache_alloc_debugcheck_before(cachep, flags);
2747
2748 local_irq_save(save_flags);
2749 objp = ____cache_alloc(cachep, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750 local_irq_restore(save_flags);
Eric Dumazet34342e82005-09-03 15:55:06 -07002751 objp = cache_alloc_debugcheck_after(cachep, flags, objp,
Pekka Enberg7fd6b142006-02-01 03:05:52 -08002752 caller);
Eric Dumazet34342e82005-09-03 15:55:06 -07002753 prefetchw(objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754 return objp;
2755}
2756
Christoph Lametere498be72005-09-09 13:03:32 -07002757#ifdef CONFIG_NUMA
2758/*
2759 * A interface to enable slab creation on nodeid
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002761static void *__cache_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07002762{
2763 struct list_head *entry;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002764 struct slab *slabp;
2765 struct kmem_list3 *l3;
2766 void *obj;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002767 int x;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002769 l3 = cachep->nodelists[nodeid];
2770 BUG_ON(!l3);
Christoph Lametere498be72005-09-09 13:03:32 -07002771
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002772 retry:
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08002773 check_irq_off();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002774 spin_lock(&l3->list_lock);
2775 entry = l3->slabs_partial.next;
2776 if (entry == &l3->slabs_partial) {
2777 l3->free_touched = 1;
2778 entry = l3->slabs_free.next;
2779 if (entry == &l3->slabs_free)
2780 goto must_grow;
2781 }
Christoph Lametere498be72005-09-09 13:03:32 -07002782
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002783 slabp = list_entry(entry, struct slab, list);
2784 check_spinlock_acquired_node(cachep, nodeid);
2785 check_slabp(cachep, slabp);
Christoph Lametere498be72005-09-09 13:03:32 -07002786
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002787 STATS_INC_NODEALLOCS(cachep);
2788 STATS_INC_ACTIVE(cachep);
2789 STATS_SET_HIGH(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07002790
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002791 BUG_ON(slabp->inuse == cachep->num);
Christoph Lametere498be72005-09-09 13:03:32 -07002792
Matthew Dobson78d382d2006-02-01 03:05:47 -08002793 obj = slab_get_obj(cachep, slabp, nodeid);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002794 check_slabp(cachep, slabp);
2795 l3->free_objects--;
2796 /* move slabp to correct slabp list: */
2797 list_del(&slabp->list);
Christoph Lametere498be72005-09-09 13:03:32 -07002798
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002799 if (slabp->free == BUFCTL_END) {
2800 list_add(&slabp->list, &l3->slabs_full);
2801 } else {
2802 list_add(&slabp->list, &l3->slabs_partial);
2803 }
Christoph Lametere498be72005-09-09 13:03:32 -07002804
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002805 spin_unlock(&l3->list_lock);
2806 goto done;
Christoph Lametere498be72005-09-09 13:03:32 -07002807
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002808 must_grow:
2809 spin_unlock(&l3->list_lock);
2810 x = cache_grow(cachep, flags, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07002811
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002812 if (!x)
2813 return NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07002814
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002815 goto retry;
2816 done:
2817 return obj;
Christoph Lametere498be72005-09-09 13:03:32 -07002818}
2819#endif
2820
2821/*
2822 * Caller needs to acquire correct kmem_list's list_lock
2823 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002824static void free_block(struct kmem_cache *cachep, void **objpp, int nr_objects,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002825 int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826{
2827 int i;
Christoph Lametere498be72005-09-09 13:03:32 -07002828 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829
2830 for (i = 0; i < nr_objects; i++) {
2831 void *objp = objpp[i];
2832 struct slab *slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08002834 slabp = virt_to_slab(objp);
Christoph Lameterff694162005-09-22 21:44:02 -07002835 l3 = cachep->nodelists[node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836 list_del(&slabp->list);
Christoph Lameterff694162005-09-22 21:44:02 -07002837 check_spinlock_acquired_node(cachep, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838 check_slabp(cachep, slabp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002839 slab_put_obj(cachep, slabp, objp, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 STATS_DEC_ACTIVE(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07002841 l3->free_objects++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842 check_slabp(cachep, slabp);
2843
2844 /* fixup slab chains */
2845 if (slabp->inuse == 0) {
Christoph Lametere498be72005-09-09 13:03:32 -07002846 if (l3->free_objects > l3->free_limit) {
2847 l3->free_objects -= cachep->num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848 slab_destroy(cachep, slabp);
2849 } else {
Christoph Lametere498be72005-09-09 13:03:32 -07002850 list_add(&slabp->list, &l3->slabs_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851 }
2852 } else {
2853 /* Unconditionally move a slab to the end of the
2854 * partial list on free - maximum time for the
2855 * other objects to be freed, too.
2856 */
Christoph Lametere498be72005-09-09 13:03:32 -07002857 list_add_tail(&slabp->list, &l3->slabs_partial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858 }
2859 }
2860}
2861
Pekka Enberg343e0d72006-02-01 03:05:50 -08002862static void cache_flusharray(struct kmem_cache *cachep, struct array_cache *ac)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863{
2864 int batchcount;
Christoph Lametere498be72005-09-09 13:03:32 -07002865 struct kmem_list3 *l3;
Christoph Lameterff694162005-09-22 21:44:02 -07002866 int node = numa_node_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867
2868 batchcount = ac->batchcount;
2869#if DEBUG
2870 BUG_ON(!batchcount || batchcount > ac->avail);
2871#endif
2872 check_irq_off();
Christoph Lameterff694162005-09-22 21:44:02 -07002873 l3 = cachep->nodelists[node];
Christoph Lametere498be72005-09-09 13:03:32 -07002874 spin_lock(&l3->list_lock);
2875 if (l3->shared) {
2876 struct array_cache *shared_array = l3->shared;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002877 int max = shared_array->limit - shared_array->avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878 if (max) {
2879 if (batchcount > max)
2880 batchcount = max;
Christoph Lametere498be72005-09-09 13:03:32 -07002881 memcpy(&(shared_array->entry[shared_array->avail]),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002882 ac->entry, sizeof(void *) * batchcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883 shared_array->avail += batchcount;
2884 goto free_done;
2885 }
2886 }
2887
Christoph Lameterff694162005-09-22 21:44:02 -07002888 free_block(cachep, ac->entry, batchcount, node);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002889 free_done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890#if STATS
2891 {
2892 int i = 0;
2893 struct list_head *p;
2894
Christoph Lametere498be72005-09-09 13:03:32 -07002895 p = l3->slabs_free.next;
2896 while (p != &(l3->slabs_free)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897 struct slab *slabp;
2898
2899 slabp = list_entry(p, struct slab, list);
2900 BUG_ON(slabp->inuse);
2901
2902 i++;
2903 p = p->next;
2904 }
2905 STATS_SET_FREEABLE(cachep, i);
2906 }
2907#endif
Christoph Lametere498be72005-09-09 13:03:32 -07002908 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 ac->avail -= batchcount;
Christoph Lametere498be72005-09-09 13:03:32 -07002910 memmove(ac->entry, &(ac->entry[batchcount]),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002911 sizeof(void *) * ac->avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912}
2913
2914/*
2915 * __cache_free
2916 * Release an obj back to its cache. If the obj has a constructed
2917 * state, it must be in this state _before_ it is released.
2918 *
2919 * Called with disabled ints.
2920 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002921static inline void __cache_free(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922{
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002923 struct array_cache *ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924
2925 check_irq_off();
2926 objp = cache_free_debugcheck(cachep, objp, __builtin_return_address(0));
2927
Christoph Lametere498be72005-09-09 13:03:32 -07002928 /* Make sure we are not freeing a object from another
2929 * node to the array cache on this cpu.
2930 */
2931#ifdef CONFIG_NUMA
2932 {
2933 struct slab *slabp;
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08002934 slabp = virt_to_slab(objp);
Christoph Lametere498be72005-09-09 13:03:32 -07002935 if (unlikely(slabp->nodeid != numa_node_id())) {
2936 struct array_cache *alien = NULL;
2937 int nodeid = slabp->nodeid;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002938 struct kmem_list3 *l3 =
2939 cachep->nodelists[numa_node_id()];
Christoph Lametere498be72005-09-09 13:03:32 -07002940
2941 STATS_INC_NODEFREES(cachep);
2942 if (l3->alien && l3->alien[nodeid]) {
2943 alien = l3->alien[nodeid];
2944 spin_lock(&alien->lock);
2945 if (unlikely(alien->avail == alien->limit))
2946 __drain_alien_cache(cachep,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002947 alien, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07002948 alien->entry[alien->avail++] = objp;
2949 spin_unlock(&alien->lock);
2950 } else {
2951 spin_lock(&(cachep->nodelists[nodeid])->
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002952 list_lock);
Christoph Lameterff694162005-09-22 21:44:02 -07002953 free_block(cachep, &objp, 1, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07002954 spin_unlock(&(cachep->nodelists[nodeid])->
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002955 list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07002956 }
2957 return;
2958 }
2959 }
2960#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961 if (likely(ac->avail < ac->limit)) {
2962 STATS_INC_FREEHIT(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07002963 ac->entry[ac->avail++] = objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964 return;
2965 } else {
2966 STATS_INC_FREEMISS(cachep);
2967 cache_flusharray(cachep, ac);
Christoph Lametere498be72005-09-09 13:03:32 -07002968 ac->entry[ac->avail++] = objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969 }
2970}
2971
2972/**
2973 * kmem_cache_alloc - Allocate an object
2974 * @cachep: The cache to allocate from.
2975 * @flags: See kmalloc().
2976 *
2977 * Allocate an object from this cache. The flags are only relevant
2978 * if the cache has no available objects.
2979 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002980void *kmem_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981{
Pekka Enberg7fd6b142006-02-01 03:05:52 -08002982 return __cache_alloc(cachep, flags, __builtin_return_address(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983}
2984EXPORT_SYMBOL(kmem_cache_alloc);
2985
2986/**
2987 * kmem_ptr_validate - check if an untrusted pointer might
2988 * be a slab entry.
2989 * @cachep: the cache we're checking against
2990 * @ptr: pointer to validate
2991 *
2992 * This verifies that the untrusted pointer looks sane:
2993 * it is _not_ a guarantee that the pointer is actually
2994 * part of the slab cache in question, but it at least
2995 * validates that the pointer can be dereferenced and
2996 * looks half-way sane.
2997 *
2998 * Currently only used for dentry validation.
2999 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003000int fastcall kmem_ptr_validate(struct kmem_cache *cachep, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003002 unsigned long addr = (unsigned long)ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003 unsigned long min_addr = PAGE_OFFSET;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003004 unsigned long align_mask = BYTES_PER_WORD - 1;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003005 unsigned long size = cachep->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006 struct page *page;
3007
3008 if (unlikely(addr < min_addr))
3009 goto out;
3010 if (unlikely(addr > (unsigned long)high_memory - size))
3011 goto out;
3012 if (unlikely(addr & align_mask))
3013 goto out;
3014 if (unlikely(!kern_addr_valid(addr)))
3015 goto out;
3016 if (unlikely(!kern_addr_valid(addr + size - 1)))
3017 goto out;
3018 page = virt_to_page(ptr);
3019 if (unlikely(!PageSlab(page)))
3020 goto out;
Pekka Enberg065d41c2005-11-13 16:06:46 -08003021 if (unlikely(page_get_cache(page) != cachep))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022 goto out;
3023 return 1;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003024 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025 return 0;
3026}
3027
3028#ifdef CONFIG_NUMA
3029/**
3030 * kmem_cache_alloc_node - Allocate an object on the specified node
3031 * @cachep: The cache to allocate from.
3032 * @flags: See kmalloc().
3033 * @nodeid: node number of the target node.
3034 *
3035 * Identical to kmem_cache_alloc, except that this function is slow
3036 * and can sleep. And it will allocate memory on the given node, which
3037 * can improve the performance for cpu bound structures.
Christoph Lametere498be72005-09-09 13:03:32 -07003038 * New and improved: it will now make sure that the object gets
3039 * put on the correct node list so that there is no false sharing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003041void *kmem_cache_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042{
Christoph Lametere498be72005-09-09 13:03:32 -07003043 unsigned long save_flags;
3044 void *ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045
Christoph Lametere498be72005-09-09 13:03:32 -07003046 cache_alloc_debugcheck_before(cachep, flags);
3047 local_irq_save(save_flags);
Christoph Lameter18f820f2006-02-01 03:05:43 -08003048
3049 if (nodeid == -1 || nodeid == numa_node_id() ||
3050 !cachep->nodelists[nodeid])
Alok N Kataria5c382302005-09-27 21:45:46 -07003051 ptr = ____cache_alloc(cachep, flags);
3052 else
3053 ptr = __cache_alloc_node(cachep, flags, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07003054 local_irq_restore(save_flags);
Christoph Lameter18f820f2006-02-01 03:05:43 -08003055
3056 ptr = cache_alloc_debugcheck_after(cachep, flags, ptr,
3057 __builtin_return_address(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058
Christoph Lametere498be72005-09-09 13:03:32 -07003059 return ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003060}
3061EXPORT_SYMBOL(kmem_cache_alloc_node);
3062
Al Virodd0fc662005-10-07 07:46:04 +01003063void *kmalloc_node(size_t size, gfp_t flags, int node)
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003064{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003065 struct kmem_cache *cachep;
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003066
3067 cachep = kmem_find_general_cachep(size, flags);
3068 if (unlikely(cachep == NULL))
3069 return NULL;
3070 return kmem_cache_alloc_node(cachep, flags, node);
3071}
3072EXPORT_SYMBOL(kmalloc_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073#endif
3074
3075/**
3076 * kmalloc - allocate memory
3077 * @size: how many bytes of memory are required.
3078 * @flags: the type of memory to allocate.
3079 *
3080 * kmalloc is the normal method of allocating memory
3081 * in the kernel.
3082 *
3083 * The @flags argument may be one of:
3084 *
3085 * %GFP_USER - Allocate memory on behalf of user. May sleep.
3086 *
3087 * %GFP_KERNEL - Allocate normal kernel ram. May sleep.
3088 *
3089 * %GFP_ATOMIC - Allocation will not sleep. Use inside interrupt handlers.
3090 *
3091 * Additionally, the %GFP_DMA flag may be set to indicate the memory
3092 * must be suitable for DMA. This can mean different things on different
3093 * platforms. For example, on i386, it means that the memory must come
3094 * from the first 16MB.
3095 */
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003096static __always_inline void *__do_kmalloc(size_t size, gfp_t flags,
3097 void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003099 struct kmem_cache *cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003101 /* If you want to save a few bytes .text space: replace
3102 * __ with kmem_.
3103 * Then kmalloc uses the uninlined functions instead of the inline
3104 * functions.
3105 */
3106 cachep = __find_general_cachep(size, flags);
Andrew Mortondbdb9042005-09-23 13:24:10 -07003107 if (unlikely(cachep == NULL))
3108 return NULL;
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003109 return __cache_alloc(cachep, flags, caller);
3110}
3111
3112#ifndef CONFIG_DEBUG_SLAB
3113
3114void *__kmalloc(size_t size, gfp_t flags)
3115{
3116 return __do_kmalloc(size, flags, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117}
3118EXPORT_SYMBOL(__kmalloc);
3119
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003120#else
3121
3122void *__kmalloc_track_caller(size_t size, gfp_t flags, void *caller)
3123{
3124 return __do_kmalloc(size, flags, caller);
3125}
3126EXPORT_SYMBOL(__kmalloc_track_caller);
3127
3128#endif
3129
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130#ifdef CONFIG_SMP
3131/**
3132 * __alloc_percpu - allocate one copy of the object for every present
3133 * cpu in the system, zeroing them.
3134 * Objects should be dereferenced using the per_cpu_ptr macro only.
3135 *
3136 * @size: how many bytes of memory are required.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137 */
Pekka Enbergf9f75002006-01-08 01:00:33 -08003138void *__alloc_percpu(size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139{
3140 int i;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003141 struct percpu_data *pdata = kmalloc(sizeof(*pdata), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142
3143 if (!pdata)
3144 return NULL;
3145
Christoph Lametere498be72005-09-09 13:03:32 -07003146 /*
3147 * Cannot use for_each_online_cpu since a cpu may come online
3148 * and we have no way of figuring out how to fix the array
3149 * that we have allocated then....
3150 */
3151 for_each_cpu(i) {
3152 int node = cpu_to_node(i);
3153
3154 if (node_online(node))
3155 pdata->ptrs[i] = kmalloc_node(size, GFP_KERNEL, node);
3156 else
3157 pdata->ptrs[i] = kmalloc(size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158
3159 if (!pdata->ptrs[i])
3160 goto unwind_oom;
3161 memset(pdata->ptrs[i], 0, size);
3162 }
3163
3164 /* Catch derefs w/o wrappers */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003165 return (void *)(~(unsigned long)pdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003167 unwind_oom:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168 while (--i >= 0) {
3169 if (!cpu_possible(i))
3170 continue;
3171 kfree(pdata->ptrs[i]);
3172 }
3173 kfree(pdata);
3174 return NULL;
3175}
3176EXPORT_SYMBOL(__alloc_percpu);
3177#endif
3178
3179/**
3180 * kmem_cache_free - Deallocate an object
3181 * @cachep: The cache the allocation was from.
3182 * @objp: The previously allocated object.
3183 *
3184 * Free an object which was previously allocated from this
3185 * cache.
3186 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003187void kmem_cache_free(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188{
3189 unsigned long flags;
3190
3191 local_irq_save(flags);
3192 __cache_free(cachep, objp);
3193 local_irq_restore(flags);
3194}
3195EXPORT_SYMBOL(kmem_cache_free);
3196
3197/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198 * kfree - free previously allocated memory
3199 * @objp: pointer returned by kmalloc.
3200 *
Pekka Enberg80e93ef2005-09-09 13:10:16 -07003201 * If @objp is NULL, no operation is performed.
3202 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203 * Don't free memory not originally allocated by kmalloc()
3204 * or you will run into trouble.
3205 */
3206void kfree(const void *objp)
3207{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003208 struct kmem_cache *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209 unsigned long flags;
3210
3211 if (unlikely(!objp))
3212 return;
3213 local_irq_save(flags);
3214 kfree_debugcheck(objp);
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08003215 c = virt_to_cache(objp);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003216 mutex_debug_check_no_locks_freed(objp, obj_size(c));
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003217 __cache_free(c, (void *)objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218 local_irq_restore(flags);
3219}
3220EXPORT_SYMBOL(kfree);
3221
3222#ifdef CONFIG_SMP
3223/**
3224 * free_percpu - free previously allocated percpu memory
3225 * @objp: pointer returned by alloc_percpu.
3226 *
3227 * Don't free memory not originally allocated by alloc_percpu()
3228 * The complemented objp is to check for that.
3229 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003230void free_percpu(const void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231{
3232 int i;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003233 struct percpu_data *p = (struct percpu_data *)(~(unsigned long)objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234
Christoph Lametere498be72005-09-09 13:03:32 -07003235 /*
3236 * We allocate for all cpus so we cannot use for online cpu here.
3237 */
3238 for_each_cpu(i)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003239 kfree(p->ptrs[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240 kfree(p);
3241}
3242EXPORT_SYMBOL(free_percpu);
3243#endif
3244
Pekka Enberg343e0d72006-02-01 03:05:50 -08003245unsigned int kmem_cache_size(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003246{
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003247 return obj_size(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248}
3249EXPORT_SYMBOL(kmem_cache_size);
3250
Pekka Enberg343e0d72006-02-01 03:05:50 -08003251const char *kmem_cache_name(struct kmem_cache *cachep)
Arnaldo Carvalho de Melo19449722005-06-18 22:46:19 -07003252{
3253 return cachep->name;
3254}
3255EXPORT_SYMBOL_GPL(kmem_cache_name);
3256
Christoph Lametere498be72005-09-09 13:03:32 -07003257/*
3258 * This initializes kmem_list3 for all nodes.
3259 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003260static int alloc_kmemlist(struct kmem_cache *cachep)
Christoph Lametere498be72005-09-09 13:03:32 -07003261{
3262 int node;
3263 struct kmem_list3 *l3;
3264 int err = 0;
3265
3266 for_each_online_node(node) {
3267 struct array_cache *nc = NULL, *new;
3268 struct array_cache **new_alien = NULL;
3269#ifdef CONFIG_NUMA
3270 if (!(new_alien = alloc_alien_cache(node, cachep->limit)))
3271 goto fail;
3272#endif
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003273 if (!(new = alloc_arraycache(node, (cachep->shared *
3274 cachep->batchcount),
3275 0xbaadf00d)))
Christoph Lametere498be72005-09-09 13:03:32 -07003276 goto fail;
3277 if ((l3 = cachep->nodelists[node])) {
3278
3279 spin_lock_irq(&l3->list_lock);
3280
3281 if ((nc = cachep->nodelists[node]->shared))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003282 free_block(cachep, nc->entry, nc->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -07003283
3284 l3->shared = new;
3285 if (!cachep->nodelists[node]->alien) {
3286 l3->alien = new_alien;
3287 new_alien = NULL;
3288 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003289 l3->free_limit = (1 + nr_cpus_node(node)) *
3290 cachep->batchcount + cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07003291 spin_unlock_irq(&l3->list_lock);
3292 kfree(nc);
3293 free_alien_cache(new_alien);
3294 continue;
3295 }
3296 if (!(l3 = kmalloc_node(sizeof(struct kmem_list3),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003297 GFP_KERNEL, node)))
Christoph Lametere498be72005-09-09 13:03:32 -07003298 goto fail;
3299
3300 kmem_list3_init(l3);
3301 l3->next_reap = jiffies + REAPTIMEOUT_LIST3 +
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003302 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
Christoph Lametere498be72005-09-09 13:03:32 -07003303 l3->shared = new;
3304 l3->alien = new_alien;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003305 l3->free_limit = (1 + nr_cpus_node(node)) *
3306 cachep->batchcount + cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07003307 cachep->nodelists[node] = l3;
3308 }
3309 return err;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003310 fail:
Christoph Lametere498be72005-09-09 13:03:32 -07003311 err = -ENOMEM;
3312 return err;
3313}
3314
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315struct ccupdate_struct {
Pekka Enberg343e0d72006-02-01 03:05:50 -08003316 struct kmem_cache *cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317 struct array_cache *new[NR_CPUS];
3318};
3319
3320static void do_ccupdate_local(void *info)
3321{
3322 struct ccupdate_struct *new = (struct ccupdate_struct *)info;
3323 struct array_cache *old;
3324
3325 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003326 old = cpu_cache_get(new->cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003327
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328 new->cachep->array[smp_processor_id()] = new->new[smp_processor_id()];
3329 new->new[smp_processor_id()] = old;
3330}
3331
Pekka Enberg343e0d72006-02-01 03:05:50 -08003332static int do_tune_cpucache(struct kmem_cache *cachep, int limit, int batchcount,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003333 int shared)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334{
3335 struct ccupdate_struct new;
Christoph Lametere498be72005-09-09 13:03:32 -07003336 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003338 memset(&new.new, 0, sizeof(new.new));
Christoph Lametere498be72005-09-09 13:03:32 -07003339 for_each_online_cpu(i) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003340 new.new[i] =
3341 alloc_arraycache(cpu_to_node(i), limit, batchcount);
Christoph Lametere498be72005-09-09 13:03:32 -07003342 if (!new.new[i]) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003343 for (i--; i >= 0; i--)
3344 kfree(new.new[i]);
Christoph Lametere498be72005-09-09 13:03:32 -07003345 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346 }
3347 }
3348 new.cachep = cachep;
3349
3350 smp_call_function_all_cpus(do_ccupdate_local, (void *)&new);
Christoph Lametere498be72005-09-09 13:03:32 -07003351
Linus Torvalds1da177e2005-04-16 15:20:36 -07003352 check_irq_on();
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08003353 spin_lock(&cachep->spinlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354 cachep->batchcount = batchcount;
3355 cachep->limit = limit;
Christoph Lametere498be72005-09-09 13:03:32 -07003356 cachep->shared = shared;
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08003357 spin_unlock(&cachep->spinlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003358
Christoph Lametere498be72005-09-09 13:03:32 -07003359 for_each_online_cpu(i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360 struct array_cache *ccold = new.new[i];
3361 if (!ccold)
3362 continue;
Christoph Lametere498be72005-09-09 13:03:32 -07003363 spin_lock_irq(&cachep->nodelists[cpu_to_node(i)]->list_lock);
Christoph Lameterff694162005-09-22 21:44:02 -07003364 free_block(cachep, ccold->entry, ccold->avail, cpu_to_node(i));
Christoph Lametere498be72005-09-09 13:03:32 -07003365 spin_unlock_irq(&cachep->nodelists[cpu_to_node(i)]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366 kfree(ccold);
3367 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368
Christoph Lametere498be72005-09-09 13:03:32 -07003369 err = alloc_kmemlist(cachep);
3370 if (err) {
3371 printk(KERN_ERR "alloc_kmemlist failed for %s, error %d.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003372 cachep->name, -err);
Christoph Lametere498be72005-09-09 13:03:32 -07003373 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003374 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375 return 0;
3376}
3377
Pekka Enberg343e0d72006-02-01 03:05:50 -08003378static void enable_cpucache(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379{
3380 int err;
3381 int limit, shared;
3382
3383 /* The head array serves three purposes:
3384 * - create a LIFO ordering, i.e. return objects that are cache-warm
3385 * - reduce the number of spinlock operations.
3386 * - reduce the number of linked list operations on the slab and
3387 * bufctl chains: array operations are cheaper.
3388 * The numbers are guessed, we should auto-tune as described by
3389 * Bonwick.
3390 */
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003391 if (cachep->buffer_size > 131072)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392 limit = 1;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003393 else if (cachep->buffer_size > PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003394 limit = 8;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003395 else if (cachep->buffer_size > 1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003396 limit = 24;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003397 else if (cachep->buffer_size > 256)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398 limit = 54;
3399 else
3400 limit = 120;
3401
3402 /* Cpu bound tasks (e.g. network routing) can exhibit cpu bound
3403 * allocation behaviour: Most allocs on one cpu, most free operations
3404 * on another cpu. For these cases, an efficient object passing between
3405 * cpus is necessary. This is provided by a shared array. The array
3406 * replaces Bonwick's magazine layer.
3407 * On uniprocessor, it's functionally equivalent (but less efficient)
3408 * to a larger limit. Thus disabled by default.
3409 */
3410 shared = 0;
3411#ifdef CONFIG_SMP
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003412 if (cachep->buffer_size <= PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003413 shared = 8;
3414#endif
3415
3416#if DEBUG
3417 /* With debugging enabled, large batchcount lead to excessively
3418 * long periods with disabled local interrupts. Limit the
3419 * batchcount
3420 */
3421 if (limit > 32)
3422 limit = 32;
3423#endif
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003424 err = do_tune_cpucache(cachep, limit, (limit + 1) / 2, shared);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003425 if (err)
3426 printk(KERN_ERR "enable_cpucache failed for %s, error %d.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003427 cachep->name, -err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428}
3429
Pekka Enberg343e0d72006-02-01 03:05:50 -08003430static void drain_array_locked(struct kmem_cache *cachep, struct array_cache *ac,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003431 int force, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432{
3433 int tofree;
3434
Christoph Lametere498be72005-09-09 13:03:32 -07003435 check_spinlock_acquired_node(cachep, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436 if (ac->touched && !force) {
3437 ac->touched = 0;
3438 } else if (ac->avail) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003439 tofree = force ? ac->avail : (ac->limit + 4) / 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440 if (tofree > ac->avail) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003441 tofree = (ac->avail + 1) / 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003442 }
Christoph Lameterff694162005-09-22 21:44:02 -07003443 free_block(cachep, ac->entry, tofree, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444 ac->avail -= tofree;
Christoph Lametere498be72005-09-09 13:03:32 -07003445 memmove(ac->entry, &(ac->entry[tofree]),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003446 sizeof(void *) * ac->avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447 }
3448}
3449
3450/**
3451 * cache_reap - Reclaim memory from caches.
Randy Dunlap1e5d5332005-11-07 01:01:06 -08003452 * @unused: unused parameter
Linus Torvalds1da177e2005-04-16 15:20:36 -07003453 *
3454 * Called from workqueue/eventd every few seconds.
3455 * Purpose:
3456 * - clear the per-cpu caches for this CPU.
3457 * - return freeable pages to the main free memory pool.
3458 *
Ingo Molnarfc0abb12006-01-18 17:42:33 -08003459 * If we cannot acquire the cache chain mutex then just give up - we'll
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460 * try again on the next iteration.
3461 */
3462static void cache_reap(void *unused)
3463{
3464 struct list_head *walk;
Christoph Lametere498be72005-09-09 13:03:32 -07003465 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003466
Ingo Molnarfc0abb12006-01-18 17:42:33 -08003467 if (!mutex_trylock(&cache_chain_mutex)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468 /* Give up. Setup the next iteration. */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003469 schedule_delayed_work(&__get_cpu_var(reap_work),
3470 REAPTIMEOUT_CPUC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471 return;
3472 }
3473
3474 list_for_each(walk, &cache_chain) {
Pekka Enberg343e0d72006-02-01 03:05:50 -08003475 struct kmem_cache *searchp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003476 struct list_head *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003477 int tofree;
3478 struct slab *slabp;
3479
Pekka Enberg343e0d72006-02-01 03:05:50 -08003480 searchp = list_entry(walk, struct kmem_cache, next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481
3482 if (searchp->flags & SLAB_NO_REAP)
3483 goto next;
3484
3485 check_irq_on();
3486
Christoph Lametere498be72005-09-09 13:03:32 -07003487 l3 = searchp->nodelists[numa_node_id()];
3488 if (l3->alien)
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08003489 drain_alien_cache(searchp, l3->alien);
Christoph Lametere498be72005-09-09 13:03:32 -07003490 spin_lock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003492 drain_array_locked(searchp, cpu_cache_get(searchp), 0,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003493 numa_node_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07003494
Christoph Lametere498be72005-09-09 13:03:32 -07003495 if (time_after(l3->next_reap, jiffies))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003496 goto next_unlock;
3497
Christoph Lametere498be72005-09-09 13:03:32 -07003498 l3->next_reap = jiffies + REAPTIMEOUT_LIST3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499
Christoph Lametere498be72005-09-09 13:03:32 -07003500 if (l3->shared)
3501 drain_array_locked(searchp, l3->shared, 0,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003502 numa_node_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503
Christoph Lametere498be72005-09-09 13:03:32 -07003504 if (l3->free_touched) {
3505 l3->free_touched = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506 goto next_unlock;
3507 }
3508
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003509 tofree =
3510 (l3->free_limit + 5 * searchp->num -
3511 1) / (5 * searchp->num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512 do {
Christoph Lametere498be72005-09-09 13:03:32 -07003513 p = l3->slabs_free.next;
3514 if (p == &(l3->slabs_free))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515 break;
3516
3517 slabp = list_entry(p, struct slab, list);
3518 BUG_ON(slabp->inuse);
3519 list_del(&slabp->list);
3520 STATS_INC_REAPED(searchp);
3521
3522 /* Safe to drop the lock. The slab is no longer
3523 * linked to the cache.
3524 * searchp cannot disappear, we hold
3525 * cache_chain_lock
3526 */
Christoph Lametere498be72005-09-09 13:03:32 -07003527 l3->free_objects -= searchp->num;
3528 spin_unlock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529 slab_destroy(searchp, slabp);
Christoph Lametere498be72005-09-09 13:03:32 -07003530 spin_lock_irq(&l3->list_lock);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003531 } while (--tofree > 0);
3532 next_unlock:
Christoph Lametere498be72005-09-09 13:03:32 -07003533 spin_unlock_irq(&l3->list_lock);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003534 next:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003535 cond_resched();
3536 }
3537 check_irq_on();
Ingo Molnarfc0abb12006-01-18 17:42:33 -08003538 mutex_unlock(&cache_chain_mutex);
Christoph Lameter4ae7c032005-06-21 17:14:57 -07003539 drain_remote_pages();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540 /* Setup the next iteration */
Manfred Spraulcd61ef62005-11-07 00:58:02 -08003541 schedule_delayed_work(&__get_cpu_var(reap_work), REAPTIMEOUT_CPUC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542}
3543
3544#ifdef CONFIG_PROC_FS
3545
Pekka Enberg85289f92006-01-08 01:00:36 -08003546static void print_slabinfo_header(struct seq_file *m)
3547{
3548 /*
3549 * Output format version, so at least we can change it
3550 * without _too_ many complaints.
3551 */
3552#if STATS
3553 seq_puts(m, "slabinfo - version: 2.1 (statistics)\n");
3554#else
3555 seq_puts(m, "slabinfo - version: 2.1\n");
3556#endif
3557 seq_puts(m, "# name <active_objs> <num_objs> <objsize> "
3558 "<objperslab> <pagesperslab>");
3559 seq_puts(m, " : tunables <limit> <batchcount> <sharedfactor>");
3560 seq_puts(m, " : slabdata <active_slabs> <num_slabs> <sharedavail>");
3561#if STATS
3562 seq_puts(m, " : globalstat <listallocs> <maxobjs> <grown> <reaped> "
3563 "<error> <maxfreeable> <nodeallocs> <remotefrees>");
3564 seq_puts(m, " : cpustat <allochit> <allocmiss> <freehit> <freemiss>");
3565#endif
3566 seq_putc(m, '\n');
3567}
3568
Linus Torvalds1da177e2005-04-16 15:20:36 -07003569static void *s_start(struct seq_file *m, loff_t *pos)
3570{
3571 loff_t n = *pos;
3572 struct list_head *p;
3573
Ingo Molnarfc0abb12006-01-18 17:42:33 -08003574 mutex_lock(&cache_chain_mutex);
Pekka Enberg85289f92006-01-08 01:00:36 -08003575 if (!n)
3576 print_slabinfo_header(m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577 p = cache_chain.next;
3578 while (n--) {
3579 p = p->next;
3580 if (p == &cache_chain)
3581 return NULL;
3582 }
Pekka Enberg343e0d72006-02-01 03:05:50 -08003583 return list_entry(p, struct kmem_cache, next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584}
3585
3586static void *s_next(struct seq_file *m, void *p, loff_t *pos)
3587{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003588 struct kmem_cache *cachep = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003589 ++*pos;
3590 return cachep->next.next == &cache_chain ? NULL
Pekka Enberg343e0d72006-02-01 03:05:50 -08003591 : list_entry(cachep->next.next, struct kmem_cache, next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003592}
3593
3594static void s_stop(struct seq_file *m, void *p)
3595{
Ingo Molnarfc0abb12006-01-18 17:42:33 -08003596 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003597}
3598
3599static int s_show(struct seq_file *m, void *p)
3600{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003601 struct kmem_cache *cachep = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003602 struct list_head *q;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003603 struct slab *slabp;
3604 unsigned long active_objs;
3605 unsigned long num_objs;
3606 unsigned long active_slabs = 0;
3607 unsigned long num_slabs, free_objects = 0, shared_avail = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07003608 const char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003609 char *error = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07003610 int node;
3611 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003612
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08003613 spin_lock(&cachep->spinlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614 active_objs = 0;
3615 num_slabs = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07003616 for_each_online_node(node) {
3617 l3 = cachep->nodelists[node];
3618 if (!l3)
3619 continue;
3620
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08003621 check_irq_on();
3622 spin_lock_irq(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07003623
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003624 list_for_each(q, &l3->slabs_full) {
Christoph Lametere498be72005-09-09 13:03:32 -07003625 slabp = list_entry(q, struct slab, list);
3626 if (slabp->inuse != cachep->num && !error)
3627 error = "slabs_full accounting error";
3628 active_objs += cachep->num;
3629 active_slabs++;
3630 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003631 list_for_each(q, &l3->slabs_partial) {
Christoph Lametere498be72005-09-09 13:03:32 -07003632 slabp = list_entry(q, struct slab, list);
3633 if (slabp->inuse == cachep->num && !error)
3634 error = "slabs_partial inuse accounting error";
3635 if (!slabp->inuse && !error)
3636 error = "slabs_partial/inuse accounting error";
3637 active_objs += slabp->inuse;
3638 active_slabs++;
3639 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003640 list_for_each(q, &l3->slabs_free) {
Christoph Lametere498be72005-09-09 13:03:32 -07003641 slabp = list_entry(q, struct slab, list);
3642 if (slabp->inuse && !error)
3643 error = "slabs_free/inuse accounting error";
3644 num_slabs++;
3645 }
3646 free_objects += l3->free_objects;
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08003647 if (l3->shared)
3648 shared_avail += l3->shared->avail;
Christoph Lametere498be72005-09-09 13:03:32 -07003649
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08003650 spin_unlock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003651 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003652 num_slabs += active_slabs;
3653 num_objs = num_slabs * cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07003654 if (num_objs - active_objs != free_objects && !error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655 error = "free_objects accounting error";
3656
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003657 name = cachep->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003658 if (error)
3659 printk(KERN_ERR "slab: cache %s error: %s\n", name, error);
3660
3661 seq_printf(m, "%-17s %6lu %6lu %6u %4u %4d",
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003662 name, active_objs, num_objs, cachep->buffer_size,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003663 cachep->num, (1 << cachep->gfporder));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003664 seq_printf(m, " : tunables %4u %4u %4u",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003665 cachep->limit, cachep->batchcount, cachep->shared);
Christoph Lametere498be72005-09-09 13:03:32 -07003666 seq_printf(m, " : slabdata %6lu %6lu %6lu",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003667 active_slabs, num_slabs, shared_avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668#if STATS
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003669 { /* list3 stats */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003670 unsigned long high = cachep->high_mark;
3671 unsigned long allocs = cachep->num_allocations;
3672 unsigned long grown = cachep->grown;
3673 unsigned long reaped = cachep->reaped;
3674 unsigned long errors = cachep->errors;
3675 unsigned long max_freeable = cachep->max_freeable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676 unsigned long node_allocs = cachep->node_allocs;
Christoph Lametere498be72005-09-09 13:03:32 -07003677 unsigned long node_frees = cachep->node_frees;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003678
Christoph Lametere498be72005-09-09 13:03:32 -07003679 seq_printf(m, " : globalstat %7lu %6lu %5lu %4lu \
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003680 %4lu %4lu %4lu %4lu", allocs, high, grown, reaped, errors, max_freeable, node_allocs, node_frees);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681 }
3682 /* cpu stats */
3683 {
3684 unsigned long allochit = atomic_read(&cachep->allochit);
3685 unsigned long allocmiss = atomic_read(&cachep->allocmiss);
3686 unsigned long freehit = atomic_read(&cachep->freehit);
3687 unsigned long freemiss = atomic_read(&cachep->freemiss);
3688
3689 seq_printf(m, " : cpustat %6lu %6lu %6lu %6lu",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003690 allochit, allocmiss, freehit, freemiss);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691 }
3692#endif
3693 seq_putc(m, '\n');
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08003694 spin_unlock(&cachep->spinlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003695 return 0;
3696}
3697
3698/*
3699 * slabinfo_op - iterator that generates /proc/slabinfo
3700 *
3701 * Output layout:
3702 * cache-name
3703 * num-active-objs
3704 * total-objs
3705 * object size
3706 * num-active-slabs
3707 * total-slabs
3708 * num-pages-per-slab
3709 * + further values on SMP and with statistics enabled
3710 */
3711
3712struct seq_operations slabinfo_op = {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003713 .start = s_start,
3714 .next = s_next,
3715 .stop = s_stop,
3716 .show = s_show,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003717};
3718
3719#define MAX_SLABINFO_WRITE 128
3720/**
3721 * slabinfo_write - Tuning for the slab allocator
3722 * @file: unused
3723 * @buffer: user buffer
3724 * @count: data length
3725 * @ppos: unused
3726 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003727ssize_t slabinfo_write(struct file *file, const char __user * buffer,
3728 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003729{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003730 char kbuf[MAX_SLABINFO_WRITE + 1], *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731 int limit, batchcount, shared, res;
3732 struct list_head *p;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003733
Linus Torvalds1da177e2005-04-16 15:20:36 -07003734 if (count > MAX_SLABINFO_WRITE)
3735 return -EINVAL;
3736 if (copy_from_user(&kbuf, buffer, count))
3737 return -EFAULT;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003738 kbuf[MAX_SLABINFO_WRITE] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739
3740 tmp = strchr(kbuf, ' ');
3741 if (!tmp)
3742 return -EINVAL;
3743 *tmp = '\0';
3744 tmp++;
3745 if (sscanf(tmp, " %d %d %d", &limit, &batchcount, &shared) != 3)
3746 return -EINVAL;
3747
3748 /* Find the cache in the chain of caches. */
Ingo Molnarfc0abb12006-01-18 17:42:33 -08003749 mutex_lock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003750 res = -EINVAL;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003751 list_for_each(p, &cache_chain) {
Pekka Enberg343e0d72006-02-01 03:05:50 -08003752 struct kmem_cache *cachep = list_entry(p, struct kmem_cache,
3753 next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003754
3755 if (!strcmp(cachep->name, kbuf)) {
3756 if (limit < 1 ||
3757 batchcount < 1 ||
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003758 batchcount > limit || shared < 0) {
Christoph Lametere498be72005-09-09 13:03:32 -07003759 res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003760 } else {
Christoph Lametere498be72005-09-09 13:03:32 -07003761 res = do_tune_cpucache(cachep, limit,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003762 batchcount, shared);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003763 }
3764 break;
3765 }
3766 }
Ingo Molnarfc0abb12006-01-18 17:42:33 -08003767 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768 if (res >= 0)
3769 res = count;
3770 return res;
3771}
3772#endif
3773
Manfred Spraul00e145b2005-09-03 15:55:07 -07003774/**
3775 * ksize - get the actual amount of memory allocated for a given object
3776 * @objp: Pointer to the object
3777 *
3778 * kmalloc may internally round up allocations and return more memory
3779 * than requested. ksize() can be used to determine the actual amount of
3780 * memory allocated. The caller may use this additional memory, even though
3781 * a smaller amount of memory was initially specified with the kmalloc call.
3782 * The caller must guarantee that objp points to a valid object previously
3783 * allocated with either kmalloc() or kmem_cache_alloc(). The object
3784 * must not be freed during the duration of the call.
3785 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003786unsigned int ksize(const void *objp)
3787{
Manfred Spraul00e145b2005-09-03 15:55:07 -07003788 if (unlikely(objp == NULL))
3789 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003790
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08003791 return obj_size(virt_to_cache(objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003792}