[PATCH] user of the jiffies rounding code: JBD
[linux-2.6-block.git] / mm / slab.c
CommitLineData
1da177e4
LT
1/*
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 *
a737b3e2 53 * The c_cpuarray may not be read with enabled local interrupts -
1da177e4
LT
54 * it's changed with a smp_call_function().
55 *
56 * SMP synchronization:
57 * constructors and destructors are called without any locking.
343e0d7a 58 * Several members in struct kmem_cache and struct slab never change, they
1da177e4
LT
59 * 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
fc0abb14 71 * The global cache-chain is protected by the mutex 'cache_chain_mutex'.
1da177e4
LT
72 * 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 *
e498be7d
CL
78 * 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.
1da177e4
LT
87 */
88
1da177e4
LT
89#include <linux/slab.h>
90#include <linux/mm.h>
c9cf5528 91#include <linux/poison.h>
1da177e4
LT
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>
101a5001 97#include <linux/cpuset.h>
1da177e4
LT
98#include <linux/seq_file.h>
99#include <linux/notifier.h>
100#include <linux/kallsyms.h>
101#include <linux/cpu.h>
102#include <linux/sysctl.h>
103#include <linux/module.h>
104#include <linux/rcupdate.h>
543537bd 105#include <linux/string.h>
138ae663 106#include <linux/uaccess.h>
e498be7d 107#include <linux/nodemask.h>
dc85da15 108#include <linux/mempolicy.h>
fc0abb14 109#include <linux/mutex.h>
8a8b6502 110#include <linux/fault-inject.h>
e7eebaf6 111#include <linux/rtmutex.h>
1da177e4 112
1da177e4
LT
113#include <asm/cacheflush.h>
114#include <asm/tlbflush.h>
115#include <asm/page.h>
116
117/*
118 * DEBUG - 1 for kmem_cache_create() to honour; SLAB_DEBUG_INITIAL,
119 * SLAB_RED_ZONE & SLAB_POISON.
120 * 0 for faster, smaller code (especially in the critical paths).
121 *
122 * STATS - 1 to collect stats for /proc/slabinfo.
123 * 0 for faster, smaller code (especially in the critical paths).
124 *
125 * FORCED_DEBUG - 1 enables SLAB_RED_ZONE and SLAB_POISON (if possible)
126 */
127
128#ifdef CONFIG_DEBUG_SLAB
129#define DEBUG 1
130#define STATS 1
131#define FORCED_DEBUG 1
132#else
133#define DEBUG 0
134#define STATS 0
135#define FORCED_DEBUG 0
136#endif
137
1da177e4
LT
138/* Shouldn't this be in a header file somewhere? */
139#define BYTES_PER_WORD sizeof(void *)
140
141#ifndef cache_line_size
142#define cache_line_size() L1_CACHE_BYTES
143#endif
144
145#ifndef ARCH_KMALLOC_MINALIGN
146/*
147 * Enforce a minimum alignment for the kmalloc caches.
148 * Usually, the kmalloc caches are cache_line_size() aligned, except when
149 * DEBUG and FORCED_DEBUG are enabled, then they are BYTES_PER_WORD aligned.
150 * Some archs want to perform DMA into kmalloc caches and need a guaranteed
151 * alignment larger than BYTES_PER_WORD. ARCH_KMALLOC_MINALIGN allows that.
152 * Note that this flag disables some debug features.
153 */
154#define ARCH_KMALLOC_MINALIGN 0
155#endif
156
157#ifndef ARCH_SLAB_MINALIGN
158/*
159 * Enforce a minimum alignment for all caches.
160 * Intended for archs that get misalignment faults even for BYTES_PER_WORD
161 * aligned buffers. Includes ARCH_KMALLOC_MINALIGN.
162 * If possible: Do not enable this flag for CONFIG_DEBUG_SLAB, it disables
163 * some debug features.
164 */
165#define ARCH_SLAB_MINALIGN 0
166#endif
167
168#ifndef ARCH_KMALLOC_FLAGS
169#define ARCH_KMALLOC_FLAGS SLAB_HWCACHE_ALIGN
170#endif
171
172/* Legal flag mask for kmem_cache_create(). */
173#if DEBUG
174# define CREATE_MASK (SLAB_DEBUG_INITIAL | SLAB_RED_ZONE | \
175 SLAB_POISON | SLAB_HWCACHE_ALIGN | \
ac2b898c 176 SLAB_CACHE_DMA | \
1da177e4
LT
177 SLAB_MUST_HWCACHE_ALIGN | SLAB_STORE_USER | \
178 SLAB_RECLAIM_ACCOUNT | SLAB_PANIC | \
101a5001 179 SLAB_DESTROY_BY_RCU | SLAB_MEM_SPREAD)
1da177e4 180#else
ac2b898c 181# define CREATE_MASK (SLAB_HWCACHE_ALIGN | \
1da177e4
LT
182 SLAB_CACHE_DMA | SLAB_MUST_HWCACHE_ALIGN | \
183 SLAB_RECLAIM_ACCOUNT | SLAB_PANIC | \
101a5001 184 SLAB_DESTROY_BY_RCU | SLAB_MEM_SPREAD)
1da177e4
LT
185#endif
186
187/*
188 * kmem_bufctl_t:
189 *
190 * Bufctl's are used for linking objs within a slab
191 * linked offsets.
192 *
193 * This implementation relies on "struct page" for locating the cache &
194 * slab an object belongs to.
195 * This allows the bufctl structure to be small (one int), but limits
196 * the number of objects a slab (not a cache) can contain when off-slab
197 * bufctls are used. The limit is the size of the largest general cache
198 * that does not use off-slab slabs.
199 * For 32bit archs with 4 kB pages, is this 56.
200 * This is not serious, as it is only for large objects, when it is unwise
201 * to have too many per slab.
202 * Note: This limit can be raised by introducing a general cache whose size
203 * is less than 512 (PAGE_SIZE<<3), but greater than 256.
204 */
205
fa5b08d5 206typedef unsigned int kmem_bufctl_t;
1da177e4
LT
207#define BUFCTL_END (((kmem_bufctl_t)(~0U))-0)
208#define BUFCTL_FREE (((kmem_bufctl_t)(~0U))-1)
871751e2
AV
209#define BUFCTL_ACTIVE (((kmem_bufctl_t)(~0U))-2)
210#define SLAB_LIMIT (((kmem_bufctl_t)(~0U))-3)
1da177e4 211
1da177e4
LT
212/*
213 * struct slab
214 *
215 * Manages the objs in a slab. Placed either at the beginning of mem allocated
216 * for a slab, or allocated from an general cache.
217 * Slabs are chained into three list: fully used, partial, fully free slabs.
218 */
219struct slab {
b28a02de
PE
220 struct list_head list;
221 unsigned long colouroff;
222 void *s_mem; /* including colour offset */
223 unsigned int inuse; /* num of objs active in slab */
224 kmem_bufctl_t free;
225 unsigned short nodeid;
1da177e4
LT
226};
227
228/*
229 * struct slab_rcu
230 *
231 * slab_destroy on a SLAB_DESTROY_BY_RCU cache uses this structure to
232 * arrange for kmem_freepages to be called via RCU. This is useful if
233 * we need to approach a kernel structure obliquely, from its address
234 * obtained without the usual locking. We can lock the structure to
235 * stabilize it and check it's still at the given address, only if we
236 * can be sure that the memory has not been meanwhile reused for some
237 * other kind of object (which our subsystem's lock might corrupt).
238 *
239 * rcu_read_lock before reading the address, then rcu_read_unlock after
240 * taking the spinlock within the structure expected at that address.
241 *
242 * We assume struct slab_rcu can overlay struct slab when destroying.
243 */
244struct slab_rcu {
b28a02de 245 struct rcu_head head;
343e0d7a 246 struct kmem_cache *cachep;
b28a02de 247 void *addr;
1da177e4
LT
248};
249
250/*
251 * struct array_cache
252 *
1da177e4
LT
253 * Purpose:
254 * - LIFO ordering, to hand out cache-warm objects from _alloc
255 * - reduce the number of linked list operations
256 * - reduce spinlock operations
257 *
258 * The limit is stored in the per-cpu structure to reduce the data cache
259 * footprint.
260 *
261 */
262struct array_cache {
263 unsigned int avail;
264 unsigned int limit;
265 unsigned int batchcount;
266 unsigned int touched;
e498be7d 267 spinlock_t lock;
a737b3e2
AM
268 void *entry[0]; /*
269 * Must have this definition in here for the proper
270 * alignment of array_cache. Also simplifies accessing
271 * the entries.
272 * [0] is for gcc 2.95. It should really be [].
273 */
1da177e4
LT
274};
275
a737b3e2
AM
276/*
277 * bootstrap: The caches do not work without cpuarrays anymore, but the
278 * cpuarrays are allocated from the generic caches...
1da177e4
LT
279 */
280#define BOOT_CPUCACHE_ENTRIES 1
281struct arraycache_init {
282 struct array_cache cache;
b28a02de 283 void *entries[BOOT_CPUCACHE_ENTRIES];
1da177e4
LT
284};
285
286/*
e498be7d 287 * The slab lists for all objects.
1da177e4
LT
288 */
289struct kmem_list3 {
b28a02de
PE
290 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;
b28a02de 294 unsigned int free_limit;
2e1217cf 295 unsigned int colour_next; /* Per-node cache coloring */
b28a02de
PE
296 spinlock_t list_lock;
297 struct array_cache *shared; /* shared per node */
298 struct array_cache **alien; /* on other nodes */
35386e3b
CL
299 unsigned long next_reap; /* updated without locking */
300 int free_touched; /* updated without locking */
1da177e4
LT
301};
302
e498be7d
CL
303/*
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)
311
ed11d9eb
CL
312static int drain_freelist(struct kmem_cache *cache,
313 struct kmem_list3 *l3, int tofree);
314static void free_block(struct kmem_cache *cachep, void **objpp, int len,
315 int node);
2ed3a4ef 316static int enable_cpucache(struct kmem_cache *cachep);
65f27f38 317static void cache_reap(struct work_struct *unused);
ed11d9eb 318
e498be7d 319/*
a737b3e2
AM
320 * This function must be completely optimized away if a constant is passed to
321 * it. Mostly the same as what is in linux/slab.h except it returns an index.
e498be7d 322 */
7243cc05 323static __always_inline int index_of(const size_t size)
e498be7d 324{
5ec8a847
SR
325 extern void __bad_size(void);
326
e498be7d
CL
327 if (__builtin_constant_p(size)) {
328 int i = 0;
329
330#define CACHE(x) \
331 if (size <=x) \
332 return i; \
333 else \
334 i++;
335#include "linux/kmalloc_sizes.h"
336#undef CACHE
5ec8a847 337 __bad_size();
7243cc05 338 } else
5ec8a847 339 __bad_size();
e498be7d
CL
340 return 0;
341}
342
e0a42726
IM
343static int slab_early_init = 1;
344
e498be7d
CL
345#define INDEX_AC index_of(sizeof(struct arraycache_init))
346#define INDEX_L3 index_of(sizeof(struct kmem_list3))
1da177e4 347
5295a74c 348static void kmem_list3_init(struct kmem_list3 *parent)
e498be7d
CL
349{
350 INIT_LIST_HEAD(&parent->slabs_full);
351 INIT_LIST_HEAD(&parent->slabs_partial);
352 INIT_LIST_HEAD(&parent->slabs_free);
353 parent->shared = NULL;
354 parent->alien = NULL;
2e1217cf 355 parent->colour_next = 0;
e498be7d
CL
356 spin_lock_init(&parent->list_lock);
357 parent->free_objects = 0;
358 parent->free_touched = 0;
359}
360
a737b3e2
AM
361#define MAKE_LIST(cachep, listp, slab, nodeid) \
362 do { \
363 INIT_LIST_HEAD(listp); \
364 list_splice(&(cachep->nodelists[nodeid]->slab), listp); \
e498be7d
CL
365 } while (0)
366
a737b3e2
AM
367#define MAKE_ALL_LISTS(cachep, ptr, nodeid) \
368 do { \
e498be7d
CL
369 MAKE_LIST((cachep), (&(ptr)->slabs_full), slabs_full, nodeid); \
370 MAKE_LIST((cachep), (&(ptr)->slabs_partial), slabs_partial, nodeid); \
371 MAKE_LIST((cachep), (&(ptr)->slabs_free), slabs_free, nodeid); \
372 } while (0)
1da177e4
LT
373
374/*
343e0d7a 375 * struct kmem_cache
1da177e4
LT
376 *
377 * manages a cache.
378 */
b28a02de 379
2109a2d1 380struct kmem_cache {
1da177e4 381/* 1) per-cpu data, touched during every alloc/free */
b28a02de 382 struct array_cache *array[NR_CPUS];
b5d8ca7c 383/* 2) Cache tunables. Protected by cache_chain_mutex */
b28a02de
PE
384 unsigned int batchcount;
385 unsigned int limit;
386 unsigned int shared;
b5d8ca7c 387
3dafccf2 388 unsigned int buffer_size;
b5d8ca7c 389/* 3) touched by every alloc & free from the backend */
b28a02de 390 struct kmem_list3 *nodelists[MAX_NUMNODES];
b5d8ca7c 391
a737b3e2
AM
392 unsigned int flags; /* constant flags */
393 unsigned int num; /* # of objs per slab */
1da177e4 394
b5d8ca7c 395/* 4) cache_grow/shrink */
1da177e4 396 /* order of pgs per slab (2^n) */
b28a02de 397 unsigned int gfporder;
1da177e4
LT
398
399 /* force GFP flags, e.g. GFP_DMA */
b28a02de 400 gfp_t gfpflags;
1da177e4 401
a737b3e2 402 size_t colour; /* cache colouring range */
b28a02de 403 unsigned int colour_off; /* colour offset */
343e0d7a 404 struct kmem_cache *slabp_cache;
b28a02de 405 unsigned int slab_size;
a737b3e2 406 unsigned int dflags; /* dynamic flags */
1da177e4
LT
407
408 /* constructor func */
343e0d7a 409 void (*ctor) (void *, struct kmem_cache *, unsigned long);
1da177e4
LT
410
411 /* de-constructor func */
343e0d7a 412 void (*dtor) (void *, struct kmem_cache *, unsigned long);
1da177e4 413
b5d8ca7c 414/* 5) cache creation/removal */
b28a02de
PE
415 const char *name;
416 struct list_head next;
1da177e4 417
b5d8ca7c 418/* 6) statistics */
1da177e4 419#if STATS
b28a02de
PE
420 unsigned long num_active;
421 unsigned long num_allocations;
422 unsigned long high_mark;
423 unsigned long grown;
424 unsigned long reaped;
425 unsigned long errors;
426 unsigned long max_freeable;
427 unsigned long node_allocs;
428 unsigned long node_frees;
fb7faf33 429 unsigned long node_overflow;
b28a02de
PE
430 atomic_t allochit;
431 atomic_t allocmiss;
432 atomic_t freehit;
433 atomic_t freemiss;
1da177e4
LT
434#endif
435#if DEBUG
3dafccf2
MS
436 /*
437 * If debugging is enabled, then the allocator can add additional
438 * fields and/or padding to every object. buffer_size contains the total
439 * object size including these internal fields, the following two
440 * variables contain the offset to the user object and its size.
441 */
442 int obj_offset;
443 int obj_size;
1da177e4
LT
444#endif
445};
446
447#define CFLGS_OFF_SLAB (0x80000000UL)
448#define OFF_SLAB(x) ((x)->flags & CFLGS_OFF_SLAB)
449
450#define BATCHREFILL_LIMIT 16
a737b3e2
AM
451/*
452 * Optimization question: fewer reaps means less probability for unnessary
453 * cpucache drain/refill cycles.
1da177e4 454 *
dc6f3f27 455 * OTOH the cpuarrays can contain lots of objects,
1da177e4
LT
456 * which could lock up otherwise freeable slabs.
457 */
458#define REAPTIMEOUT_CPUC (2*HZ)
459#define REAPTIMEOUT_LIST3 (4*HZ)
460
461#if STATS
462#define STATS_INC_ACTIVE(x) ((x)->num_active++)
463#define STATS_DEC_ACTIVE(x) ((x)->num_active--)
464#define STATS_INC_ALLOCED(x) ((x)->num_allocations++)
465#define STATS_INC_GROWN(x) ((x)->grown++)
ed11d9eb 466#define STATS_ADD_REAPED(x,y) ((x)->reaped += (y))
a737b3e2
AM
467#define STATS_SET_HIGH(x) \
468 do { \
469 if ((x)->num_active > (x)->high_mark) \
470 (x)->high_mark = (x)->num_active; \
471 } while (0)
1da177e4
LT
472#define STATS_INC_ERR(x) ((x)->errors++)
473#define STATS_INC_NODEALLOCS(x) ((x)->node_allocs++)
e498be7d 474#define STATS_INC_NODEFREES(x) ((x)->node_frees++)
fb7faf33 475#define STATS_INC_ACOVERFLOW(x) ((x)->node_overflow++)
a737b3e2
AM
476#define STATS_SET_FREEABLE(x, i) \
477 do { \
478 if ((x)->max_freeable < i) \
479 (x)->max_freeable = i; \
480 } while (0)
1da177e4
LT
481#define STATS_INC_ALLOCHIT(x) atomic_inc(&(x)->allochit)
482#define STATS_INC_ALLOCMISS(x) atomic_inc(&(x)->allocmiss)
483#define STATS_INC_FREEHIT(x) atomic_inc(&(x)->freehit)
484#define STATS_INC_FREEMISS(x) atomic_inc(&(x)->freemiss)
485#else
486#define STATS_INC_ACTIVE(x) do { } while (0)
487#define STATS_DEC_ACTIVE(x) do { } while (0)
488#define STATS_INC_ALLOCED(x) do { } while (0)
489#define STATS_INC_GROWN(x) do { } while (0)
ed11d9eb 490#define STATS_ADD_REAPED(x,y) do { } while (0)
1da177e4
LT
491#define STATS_SET_HIGH(x) do { } while (0)
492#define STATS_INC_ERR(x) do { } while (0)
493#define STATS_INC_NODEALLOCS(x) do { } while (0)
e498be7d 494#define STATS_INC_NODEFREES(x) do { } while (0)
fb7faf33 495#define STATS_INC_ACOVERFLOW(x) do { } while (0)
a737b3e2 496#define STATS_SET_FREEABLE(x, i) do { } while (0)
1da177e4
LT
497#define STATS_INC_ALLOCHIT(x) do { } while (0)
498#define STATS_INC_ALLOCMISS(x) do { } while (0)
499#define STATS_INC_FREEHIT(x) do { } while (0)
500#define STATS_INC_FREEMISS(x) do { } while (0)
501#endif
502
503#if DEBUG
1da177e4 504
a737b3e2
AM
505/*
506 * memory layout of objects:
1da177e4 507 * 0 : objp
3dafccf2 508 * 0 .. cachep->obj_offset - BYTES_PER_WORD - 1: padding. This ensures that
1da177e4
LT
509 * the end of an object is aligned with the end of the real
510 * allocation. Catches writes behind the end of the allocation.
3dafccf2 511 * cachep->obj_offset - BYTES_PER_WORD .. cachep->obj_offset - 1:
1da177e4 512 * redzone word.
3dafccf2
MS
513 * cachep->obj_offset: The real object.
514 * cachep->buffer_size - 2* BYTES_PER_WORD: redzone word [BYTES_PER_WORD long]
a737b3e2
AM
515 * cachep->buffer_size - 1* BYTES_PER_WORD: last caller address
516 * [BYTES_PER_WORD long]
1da177e4 517 */
343e0d7a 518static int obj_offset(struct kmem_cache *cachep)
1da177e4 519{
3dafccf2 520 return cachep->obj_offset;
1da177e4
LT
521}
522
343e0d7a 523static int obj_size(struct kmem_cache *cachep)
1da177e4 524{
3dafccf2 525 return cachep->obj_size;
1da177e4
LT
526}
527
343e0d7a 528static unsigned long *dbg_redzone1(struct kmem_cache *cachep, void *objp)
1da177e4
LT
529{
530 BUG_ON(!(cachep->flags & SLAB_RED_ZONE));
3dafccf2 531 return (unsigned long*) (objp+obj_offset(cachep)-BYTES_PER_WORD);
1da177e4
LT
532}
533
343e0d7a 534static unsigned long *dbg_redzone2(struct kmem_cache *cachep, void *objp)
1da177e4
LT
535{
536 BUG_ON(!(cachep->flags & SLAB_RED_ZONE));
537 if (cachep->flags & SLAB_STORE_USER)
3dafccf2 538 return (unsigned long *)(objp + cachep->buffer_size -
b28a02de 539 2 * BYTES_PER_WORD);
3dafccf2 540 return (unsigned long *)(objp + cachep->buffer_size - BYTES_PER_WORD);
1da177e4
LT
541}
542
343e0d7a 543static void **dbg_userword(struct kmem_cache *cachep, void *objp)
1da177e4
LT
544{
545 BUG_ON(!(cachep->flags & SLAB_STORE_USER));
3dafccf2 546 return (void **)(objp + cachep->buffer_size - BYTES_PER_WORD);
1da177e4
LT
547}
548
549#else
550
3dafccf2
MS
551#define obj_offset(x) 0
552#define obj_size(cachep) (cachep->buffer_size)
1da177e4
LT
553#define dbg_redzone1(cachep, objp) ({BUG(); (unsigned long *)NULL;})
554#define dbg_redzone2(cachep, objp) ({BUG(); (unsigned long *)NULL;})
555#define dbg_userword(cachep, objp) ({BUG(); (void **)NULL;})
556
557#endif
558
559/*
a737b3e2
AM
560 * Maximum size of an obj (in 2^order pages) and absolute limit for the gfp
561 * order.
1da177e4
LT
562 */
563#if defined(CONFIG_LARGE_ALLOCS)
564#define MAX_OBJ_ORDER 13 /* up to 32Mb */
565#define MAX_GFP_ORDER 13 /* up to 32Mb */
566#elif defined(CONFIG_MMU)
567#define MAX_OBJ_ORDER 5 /* 32 pages */
568#define MAX_GFP_ORDER 5 /* 32 pages */
569#else
570#define MAX_OBJ_ORDER 8 /* up to 1Mb */
571#define MAX_GFP_ORDER 8 /* up to 1Mb */
572#endif
573
574/*
575 * Do not go above this order unless 0 objects fit into the slab.
576 */
577#define BREAK_GFP_ORDER_HI 1
578#define BREAK_GFP_ORDER_LO 0
579static int slab_break_gfp_order = BREAK_GFP_ORDER_LO;
580
a737b3e2
AM
581/*
582 * Functions for storing/retrieving the cachep and or slab from the page
583 * allocator. These are used to find the slab an obj belongs to. With kfree(),
584 * these are used to find the cache which an obj belongs to.
1da177e4 585 */
065d41cb
PE
586static inline void page_set_cache(struct page *page, struct kmem_cache *cache)
587{
588 page->lru.next = (struct list_head *)cache;
589}
590
591static inline struct kmem_cache *page_get_cache(struct page *page)
592{
84097518
NP
593 if (unlikely(PageCompound(page)))
594 page = (struct page *)page_private(page);
ddc2e812 595 BUG_ON(!PageSlab(page));
065d41cb
PE
596 return (struct kmem_cache *)page->lru.next;
597}
598
599static inline void page_set_slab(struct page *page, struct slab *slab)
600{
601 page->lru.prev = (struct list_head *)slab;
602}
603
604static inline struct slab *page_get_slab(struct page *page)
605{
84097518
NP
606 if (unlikely(PageCompound(page)))
607 page = (struct page *)page_private(page);
ddc2e812 608 BUG_ON(!PageSlab(page));
065d41cb
PE
609 return (struct slab *)page->lru.prev;
610}
1da177e4 611
6ed5eb22
PE
612static inline struct kmem_cache *virt_to_cache(const void *obj)
613{
614 struct page *page = virt_to_page(obj);
615 return page_get_cache(page);
616}
617
618static inline struct slab *virt_to_slab(const void *obj)
619{
620 struct page *page = virt_to_page(obj);
621 return page_get_slab(page);
622}
623
8fea4e96
PE
624static inline void *index_to_obj(struct kmem_cache *cache, struct slab *slab,
625 unsigned int idx)
626{
627 return slab->s_mem + cache->buffer_size * idx;
628}
629
630static inline unsigned int obj_to_index(struct kmem_cache *cache,
631 struct slab *slab, void *obj)
632{
633 return (unsigned)(obj - slab->s_mem) / cache->buffer_size;
634}
635
a737b3e2
AM
636/*
637 * These are the default caches for kmalloc. Custom caches can have other sizes.
638 */
1da177e4
LT
639struct cache_sizes malloc_sizes[] = {
640#define CACHE(x) { .cs_size = (x) },
641#include <linux/kmalloc_sizes.h>
642 CACHE(ULONG_MAX)
643#undef CACHE
644};
645EXPORT_SYMBOL(malloc_sizes);
646
647/* Must match cache_sizes above. Out of line to keep cache footprint low. */
648struct cache_names {
649 char *name;
650 char *name_dma;
651};
652
653static struct cache_names __initdata cache_names[] = {
654#define CACHE(x) { .name = "size-" #x, .name_dma = "size-" #x "(DMA)" },
655#include <linux/kmalloc_sizes.h>
b28a02de 656 {NULL,}
1da177e4
LT
657#undef CACHE
658};
659
660static struct arraycache_init initarray_cache __initdata =
b28a02de 661 { {0, BOOT_CPUCACHE_ENTRIES, 1, 0} };
1da177e4 662static struct arraycache_init initarray_generic =
b28a02de 663 { {0, BOOT_CPUCACHE_ENTRIES, 1, 0} };
1da177e4
LT
664
665/* internal cache of cache description objs */
343e0d7a 666static struct kmem_cache cache_cache = {
b28a02de
PE
667 .batchcount = 1,
668 .limit = BOOT_CPUCACHE_ENTRIES,
669 .shared = 1,
343e0d7a 670 .buffer_size = sizeof(struct kmem_cache),
b28a02de 671 .name = "kmem_cache",
1da177e4 672#if DEBUG
343e0d7a 673 .obj_size = sizeof(struct kmem_cache),
1da177e4
LT
674#endif
675};
676
056c6241
RT
677#define BAD_ALIEN_MAGIC 0x01020304ul
678
f1aaee53
AV
679#ifdef CONFIG_LOCKDEP
680
681/*
682 * Slab sometimes uses the kmalloc slabs to store the slab headers
683 * for other slabs "off slab".
684 * The locking for this is tricky in that it nests within the locks
685 * of all other slabs in a few places; to deal with this special
686 * locking we put on-slab caches into a separate lock-class.
056c6241
RT
687 *
688 * We set lock class for alien array caches which are up during init.
689 * The lock annotation will be lost if all cpus of a node goes down and
690 * then comes back up during hotplug
f1aaee53 691 */
056c6241
RT
692static struct lock_class_key on_slab_l3_key;
693static struct lock_class_key on_slab_alc_key;
694
695static inline void init_lock_keys(void)
f1aaee53 696
f1aaee53
AV
697{
698 int q;
056c6241
RT
699 struct cache_sizes *s = malloc_sizes;
700
701 while (s->cs_size != ULONG_MAX) {
702 for_each_node(q) {
703 struct array_cache **alc;
704 int r;
705 struct kmem_list3 *l3 = s->cs_cachep->nodelists[q];
706 if (!l3 || OFF_SLAB(s->cs_cachep))
707 continue;
708 lockdep_set_class(&l3->list_lock, &on_slab_l3_key);
709 alc = l3->alien;
710 /*
711 * FIXME: This check for BAD_ALIEN_MAGIC
712 * should go away when common slab code is taught to
713 * work even without alien caches.
714 * Currently, non NUMA code returns BAD_ALIEN_MAGIC
715 * for alloc_alien_cache,
716 */
717 if (!alc || (unsigned long)alc == BAD_ALIEN_MAGIC)
718 continue;
719 for_each_node(r) {
720 if (alc[r])
721 lockdep_set_class(&alc[r]->lock,
722 &on_slab_alc_key);
723 }
724 }
725 s++;
f1aaee53
AV
726 }
727}
f1aaee53 728#else
056c6241 729static inline void init_lock_keys(void)
f1aaee53
AV
730{
731}
732#endif
733
8f5be20b
RT
734/*
735 * 1. Guard access to the cache-chain.
736 * 2. Protect sanity of cpu_online_map against cpu hotplug events
737 */
fc0abb14 738static DEFINE_MUTEX(cache_chain_mutex);
1da177e4
LT
739static struct list_head cache_chain;
740
1da177e4
LT
741/*
742 * chicken and egg problem: delay the per-cpu array allocation
743 * until the general caches are up.
744 */
745static enum {
746 NONE,
e498be7d
CL
747 PARTIAL_AC,
748 PARTIAL_L3,
1da177e4
LT
749 FULL
750} g_cpucache_up;
751
39d24e64
MK
752/*
753 * used by boot code to determine if it can use slab based allocator
754 */
755int slab_is_available(void)
756{
757 return g_cpucache_up == FULL;
758}
759
52bad64d 760static DEFINE_PER_CPU(struct delayed_work, reap_work);
1da177e4 761
343e0d7a 762static inline struct array_cache *cpu_cache_get(struct kmem_cache *cachep)
1da177e4
LT
763{
764 return cachep->array[smp_processor_id()];
765}
766
a737b3e2
AM
767static inline struct kmem_cache *__find_general_cachep(size_t size,
768 gfp_t gfpflags)
1da177e4
LT
769{
770 struct cache_sizes *csizep = malloc_sizes;
771
772#if DEBUG
773 /* This happens if someone tries to call
b28a02de
PE
774 * kmem_cache_create(), or __kmalloc(), before
775 * the generic caches are initialized.
776 */
c7e43c78 777 BUG_ON(malloc_sizes[INDEX_AC].cs_cachep == NULL);
1da177e4
LT
778#endif
779 while (size > csizep->cs_size)
780 csizep++;
781
782 /*
0abf40c1 783 * Really subtle: The last entry with cs->cs_size==ULONG_MAX
1da177e4
LT
784 * has cs_{dma,}cachep==NULL. Thus no special case
785 * for large kmalloc calls required.
786 */
787 if (unlikely(gfpflags & GFP_DMA))
788 return csizep->cs_dmacachep;
789 return csizep->cs_cachep;
790}
791
b221385b 792static struct kmem_cache *kmem_find_general_cachep(size_t size, gfp_t gfpflags)
97e2bde4
MS
793{
794 return __find_general_cachep(size, gfpflags);
795}
97e2bde4 796
fbaccacf 797static size_t slab_mgmt_size(size_t nr_objs, size_t align)
1da177e4 798{
fbaccacf
SR
799 return ALIGN(sizeof(struct slab)+nr_objs*sizeof(kmem_bufctl_t), align);
800}
1da177e4 801
a737b3e2
AM
802/*
803 * Calculate the number of objects and left-over bytes for a given buffer size.
804 */
fbaccacf
SR
805static void cache_estimate(unsigned long gfporder, size_t buffer_size,
806 size_t align, int flags, size_t *left_over,
807 unsigned int *num)
808{
809 int nr_objs;
810 size_t mgmt_size;
811 size_t slab_size = PAGE_SIZE << gfporder;
1da177e4 812
fbaccacf
SR
813 /*
814 * The slab management structure can be either off the slab or
815 * on it. For the latter case, the memory allocated for a
816 * slab is used for:
817 *
818 * - The struct slab
819 * - One kmem_bufctl_t for each object
820 * - Padding to respect alignment of @align
821 * - @buffer_size bytes for each object
822 *
823 * If the slab management structure is off the slab, then the
824 * alignment will already be calculated into the size. Because
825 * the slabs are all pages aligned, the objects will be at the
826 * correct alignment when allocated.
827 */
828 if (flags & CFLGS_OFF_SLAB) {
829 mgmt_size = 0;
830 nr_objs = slab_size / buffer_size;
831
832 if (nr_objs > SLAB_LIMIT)
833 nr_objs = SLAB_LIMIT;
834 } else {
835 /*
836 * Ignore padding for the initial guess. The padding
837 * is at most @align-1 bytes, and @buffer_size is at
838 * least @align. In the worst case, this result will
839 * be one greater than the number of objects that fit
840 * into the memory allocation when taking the padding
841 * into account.
842 */
843 nr_objs = (slab_size - sizeof(struct slab)) /
844 (buffer_size + sizeof(kmem_bufctl_t));
845
846 /*
847 * This calculated number will be either the right
848 * amount, or one greater than what we want.
849 */
850 if (slab_mgmt_size(nr_objs, align) + nr_objs*buffer_size
851 > slab_size)
852 nr_objs--;
853
854 if (nr_objs > SLAB_LIMIT)
855 nr_objs = SLAB_LIMIT;
856
857 mgmt_size = slab_mgmt_size(nr_objs, align);
858 }
859 *num = nr_objs;
860 *left_over = slab_size - nr_objs*buffer_size - mgmt_size;
1da177e4
LT
861}
862
863#define slab_error(cachep, msg) __slab_error(__FUNCTION__, cachep, msg)
864
a737b3e2
AM
865static void __slab_error(const char *function, struct kmem_cache *cachep,
866 char *msg)
1da177e4
LT
867{
868 printk(KERN_ERR "slab error in %s(): cache `%s': %s\n",
b28a02de 869 function, cachep->name, msg);
1da177e4
LT
870 dump_stack();
871}
872
3395ee05
PM
873/*
874 * By default on NUMA we use alien caches to stage the freeing of
875 * objects allocated from other nodes. This causes massive memory
876 * inefficiencies when using fake NUMA setup to split memory into a
877 * large number of small nodes, so it can be disabled on the command
878 * line
879 */
880
881static int use_alien_caches __read_mostly = 1;
882static int __init noaliencache_setup(char *s)
883{
884 use_alien_caches = 0;
885 return 1;
886}
887__setup("noaliencache", noaliencache_setup);
888
8fce4d8e
CL
889#ifdef CONFIG_NUMA
890/*
891 * Special reaping functions for NUMA systems called from cache_reap().
892 * These take care of doing round robin flushing of alien caches (containing
893 * objects freed on different nodes from which they were allocated) and the
894 * flushing of remote pcps by calling drain_node_pages.
895 */
896static DEFINE_PER_CPU(unsigned long, reap_node);
897
898static void init_reap_node(int cpu)
899{
900 int node;
901
902 node = next_node(cpu_to_node(cpu), node_online_map);
903 if (node == MAX_NUMNODES)
442295c9 904 node = first_node(node_online_map);
8fce4d8e 905
7f6b8876 906 per_cpu(reap_node, cpu) = node;
8fce4d8e
CL
907}
908
909static void next_reap_node(void)
910{
911 int node = __get_cpu_var(reap_node);
912
913 /*
914 * Also drain per cpu pages on remote zones
915 */
916 if (node != numa_node_id())
917 drain_node_pages(node);
918
919 node = next_node(node, node_online_map);
920 if (unlikely(node >= MAX_NUMNODES))
921 node = first_node(node_online_map);
922 __get_cpu_var(reap_node) = node;
923}
924
925#else
926#define init_reap_node(cpu) do { } while (0)
927#define next_reap_node(void) do { } while (0)
928#endif
929
1da177e4
LT
930/*
931 * Initiate the reap timer running on the target CPU. We run at around 1 to 2Hz
932 * via the workqueue/eventd.
933 * Add the CPU number into the expiration time to minimize the possibility of
934 * the CPUs getting into lockstep and contending for the global cache chain
935 * lock.
936 */
937static void __devinit start_cpu_timer(int cpu)
938{
52bad64d 939 struct delayed_work *reap_work = &per_cpu(reap_work, cpu);
1da177e4
LT
940
941 /*
942 * When this gets called from do_initcalls via cpucache_init(),
943 * init_workqueues() has already run, so keventd will be setup
944 * at that time.
945 */
52bad64d 946 if (keventd_up() && reap_work->work.func == NULL) {
8fce4d8e 947 init_reap_node(cpu);
65f27f38 948 INIT_DELAYED_WORK(reap_work, cache_reap);
1da177e4
LT
949 schedule_delayed_work_on(cpu, reap_work, HZ + 3 * cpu);
950 }
951}
952
e498be7d 953static struct array_cache *alloc_arraycache(int node, int entries,
b28a02de 954 int batchcount)
1da177e4 955{
b28a02de 956 int memsize = sizeof(void *) * entries + sizeof(struct array_cache);
1da177e4
LT
957 struct array_cache *nc = NULL;
958
e498be7d 959 nc = kmalloc_node(memsize, GFP_KERNEL, node);
1da177e4
LT
960 if (nc) {
961 nc->avail = 0;
962 nc->limit = entries;
963 nc->batchcount = batchcount;
964 nc->touched = 0;
e498be7d 965 spin_lock_init(&nc->lock);
1da177e4
LT
966 }
967 return nc;
968}
969
3ded175a
CL
970/*
971 * Transfer objects in one arraycache to another.
972 * Locking must be handled by the caller.
973 *
974 * Return the number of entries transferred.
975 */
976static int transfer_objects(struct array_cache *to,
977 struct array_cache *from, unsigned int max)
978{
979 /* Figure out how many entries to transfer */
980 int nr = min(min(from->avail, max), to->limit - to->avail);
981
982 if (!nr)
983 return 0;
984
985 memcpy(to->entry + to->avail, from->entry + from->avail -nr,
986 sizeof(void *) *nr);
987
988 from->avail -= nr;
989 to->avail += nr;
990 to->touched = 1;
991 return nr;
992}
993
765c4507
CL
994#ifndef CONFIG_NUMA
995
996#define drain_alien_cache(cachep, alien) do { } while (0)
997#define reap_alien(cachep, l3) do { } while (0)
998
999static inline struct array_cache **alloc_alien_cache(int node, int limit)
1000{
1001 return (struct array_cache **)BAD_ALIEN_MAGIC;
1002}
1003
1004static inline void free_alien_cache(struct array_cache **ac_ptr)
1005{
1006}
1007
1008static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
1009{
1010 return 0;
1011}
1012
1013static inline void *alternate_node_alloc(struct kmem_cache *cachep,
1014 gfp_t flags)
1015{
1016 return NULL;
1017}
1018
8b98c169 1019static inline void *____cache_alloc_node(struct kmem_cache *cachep,
765c4507
CL
1020 gfp_t flags, int nodeid)
1021{
1022 return NULL;
1023}
1024
1025#else /* CONFIG_NUMA */
1026
8b98c169 1027static void *____cache_alloc_node(struct kmem_cache *, gfp_t, int);
c61afb18 1028static void *alternate_node_alloc(struct kmem_cache *, gfp_t);
dc85da15 1029
5295a74c 1030static struct array_cache **alloc_alien_cache(int node, int limit)
e498be7d
CL
1031{
1032 struct array_cache **ac_ptr;
b28a02de 1033 int memsize = sizeof(void *) * MAX_NUMNODES;
e498be7d
CL
1034 int i;
1035
1036 if (limit > 1)
1037 limit = 12;
1038 ac_ptr = kmalloc_node(memsize, GFP_KERNEL, node);
1039 if (ac_ptr) {
1040 for_each_node(i) {
1041 if (i == node || !node_online(i)) {
1042 ac_ptr[i] = NULL;
1043 continue;
1044 }
1045 ac_ptr[i] = alloc_arraycache(node, limit, 0xbaadf00d);
1046 if (!ac_ptr[i]) {
b28a02de 1047 for (i--; i <= 0; i--)
e498be7d
CL
1048 kfree(ac_ptr[i]);
1049 kfree(ac_ptr);
1050 return NULL;
1051 }
1052 }
1053 }
1054 return ac_ptr;
1055}
1056
5295a74c 1057static void free_alien_cache(struct array_cache **ac_ptr)
e498be7d
CL
1058{
1059 int i;
1060
1061 if (!ac_ptr)
1062 return;
e498be7d 1063 for_each_node(i)
b28a02de 1064 kfree(ac_ptr[i]);
e498be7d
CL
1065 kfree(ac_ptr);
1066}
1067
343e0d7a 1068static void __drain_alien_cache(struct kmem_cache *cachep,
5295a74c 1069 struct array_cache *ac, int node)
e498be7d
CL
1070{
1071 struct kmem_list3 *rl3 = cachep->nodelists[node];
1072
1073 if (ac->avail) {
1074 spin_lock(&rl3->list_lock);
e00946fe
CL
1075 /*
1076 * Stuff objects into the remote nodes shared array first.
1077 * That way we could avoid the overhead of putting the objects
1078 * into the free lists and getting them back later.
1079 */
693f7d36 1080 if (rl3->shared)
1081 transfer_objects(rl3->shared, ac, ac->limit);
e00946fe 1082
ff69416e 1083 free_block(cachep, ac->entry, ac->avail, node);
e498be7d
CL
1084 ac->avail = 0;
1085 spin_unlock(&rl3->list_lock);
1086 }
1087}
1088
8fce4d8e
CL
1089/*
1090 * Called from cache_reap() to regularly drain alien caches round robin.
1091 */
1092static void reap_alien(struct kmem_cache *cachep, struct kmem_list3 *l3)
1093{
1094 int node = __get_cpu_var(reap_node);
1095
1096 if (l3->alien) {
1097 struct array_cache *ac = l3->alien[node];
e00946fe
CL
1098
1099 if (ac && ac->avail && spin_trylock_irq(&ac->lock)) {
8fce4d8e
CL
1100 __drain_alien_cache(cachep, ac, node);
1101 spin_unlock_irq(&ac->lock);
1102 }
1103 }
1104}
1105
a737b3e2
AM
1106static void drain_alien_cache(struct kmem_cache *cachep,
1107 struct array_cache **alien)
e498be7d 1108{
b28a02de 1109 int i = 0;
e498be7d
CL
1110 struct array_cache *ac;
1111 unsigned long flags;
1112
1113 for_each_online_node(i) {
4484ebf1 1114 ac = alien[i];
e498be7d
CL
1115 if (ac) {
1116 spin_lock_irqsave(&ac->lock, flags);
1117 __drain_alien_cache(cachep, ac, i);
1118 spin_unlock_irqrestore(&ac->lock, flags);
1119 }
1120 }
1121}
729bd0b7 1122
873623df 1123static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
729bd0b7
PE
1124{
1125 struct slab *slabp = virt_to_slab(objp);
1126 int nodeid = slabp->nodeid;
1127 struct kmem_list3 *l3;
1128 struct array_cache *alien = NULL;
1ca4cb24
PE
1129 int node;
1130
1131 node = numa_node_id();
729bd0b7
PE
1132
1133 /*
1134 * Make sure we are not freeing a object from another node to the array
1135 * cache on this cpu.
1136 */
3395ee05 1137 if (likely(slabp->nodeid == node) || unlikely(!use_alien_caches))
729bd0b7
PE
1138 return 0;
1139
1ca4cb24 1140 l3 = cachep->nodelists[node];
729bd0b7
PE
1141 STATS_INC_NODEFREES(cachep);
1142 if (l3->alien && l3->alien[nodeid]) {
1143 alien = l3->alien[nodeid];
873623df 1144 spin_lock(&alien->lock);
729bd0b7
PE
1145 if (unlikely(alien->avail == alien->limit)) {
1146 STATS_INC_ACOVERFLOW(cachep);
1147 __drain_alien_cache(cachep, alien, nodeid);
1148 }
1149 alien->entry[alien->avail++] = objp;
1150 spin_unlock(&alien->lock);
1151 } else {
1152 spin_lock(&(cachep->nodelists[nodeid])->list_lock);
1153 free_block(cachep, &objp, 1, nodeid);
1154 spin_unlock(&(cachep->nodelists[nodeid])->list_lock);
1155 }
1156 return 1;
1157}
e498be7d
CL
1158#endif
1159
8c78f307 1160static int __cpuinit cpuup_callback(struct notifier_block *nfb,
b28a02de 1161 unsigned long action, void *hcpu)
1da177e4
LT
1162{
1163 long cpu = (long)hcpu;
343e0d7a 1164 struct kmem_cache *cachep;
e498be7d
CL
1165 struct kmem_list3 *l3 = NULL;
1166 int node = cpu_to_node(cpu);
1167 int memsize = sizeof(struct kmem_list3);
1da177e4
LT
1168
1169 switch (action) {
1170 case CPU_UP_PREPARE:
fc0abb14 1171 mutex_lock(&cache_chain_mutex);
a737b3e2
AM
1172 /*
1173 * We need to do this right in the beginning since
e498be7d
CL
1174 * alloc_arraycache's are going to use this list.
1175 * kmalloc_node allows us to add the slab to the right
1176 * kmem_list3 and not this cpu's kmem_list3
1177 */
1178
1da177e4 1179 list_for_each_entry(cachep, &cache_chain, next) {
a737b3e2
AM
1180 /*
1181 * Set up the size64 kmemlist for cpu before we can
e498be7d
CL
1182 * begin anything. Make sure some other cpu on this
1183 * node has not already allocated this
1184 */
1185 if (!cachep->nodelists[node]) {
a737b3e2
AM
1186 l3 = kmalloc_node(memsize, GFP_KERNEL, node);
1187 if (!l3)
e498be7d
CL
1188 goto bad;
1189 kmem_list3_init(l3);
1190 l3->next_reap = jiffies + REAPTIMEOUT_LIST3 +
b28a02de 1191 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
e498be7d 1192
4484ebf1
RT
1193 /*
1194 * The l3s don't come and go as CPUs come and
1195 * go. cache_chain_mutex is sufficient
1196 * protection here.
1197 */
e498be7d
CL
1198 cachep->nodelists[node] = l3;
1199 }
1da177e4 1200
e498be7d
CL
1201 spin_lock_irq(&cachep->nodelists[node]->list_lock);
1202 cachep->nodelists[node]->free_limit =
a737b3e2
AM
1203 (1 + nr_cpus_node(node)) *
1204 cachep->batchcount + cachep->num;
e498be7d
CL
1205 spin_unlock_irq(&cachep->nodelists[node]->list_lock);
1206 }
1207
a737b3e2
AM
1208 /*
1209 * Now we can go ahead with allocating the shared arrays and
1210 * array caches
1211 */
e498be7d 1212 list_for_each_entry(cachep, &cache_chain, next) {
cd105df4 1213 struct array_cache *nc;
4484ebf1 1214 struct array_cache *shared;
3395ee05 1215 struct array_cache **alien = NULL;
cd105df4 1216
e498be7d 1217 nc = alloc_arraycache(node, cachep->limit,
4484ebf1 1218 cachep->batchcount);
1da177e4
LT
1219 if (!nc)
1220 goto bad;
4484ebf1
RT
1221 shared = alloc_arraycache(node,
1222 cachep->shared * cachep->batchcount,
1223 0xbaadf00d);
1224 if (!shared)
1225 goto bad;
7a21ef6f 1226
3395ee05
PM
1227 if (use_alien_caches) {
1228 alien = alloc_alien_cache(node, cachep->limit);
1229 if (!alien)
1230 goto bad;
1231 }
1da177e4 1232 cachep->array[cpu] = nc;
e498be7d
CL
1233 l3 = cachep->nodelists[node];
1234 BUG_ON(!l3);
e498be7d 1235
4484ebf1
RT
1236 spin_lock_irq(&l3->list_lock);
1237 if (!l3->shared) {
1238 /*
1239 * We are serialised from CPU_DEAD or
1240 * CPU_UP_CANCELLED by the cpucontrol lock
1241 */
1242 l3->shared = shared;
1243 shared = NULL;
e498be7d 1244 }
4484ebf1
RT
1245#ifdef CONFIG_NUMA
1246 if (!l3->alien) {
1247 l3->alien = alien;
1248 alien = NULL;
1249 }
1250#endif
1251 spin_unlock_irq(&l3->list_lock);
4484ebf1
RT
1252 kfree(shared);
1253 free_alien_cache(alien);
1da177e4 1254 }
1da177e4
LT
1255 break;
1256 case CPU_ONLINE:
8f5be20b 1257 mutex_unlock(&cache_chain_mutex);
1da177e4
LT
1258 start_cpu_timer(cpu);
1259 break;
1260#ifdef CONFIG_HOTPLUG_CPU
8f5be20b
RT
1261 case CPU_DOWN_PREPARE:
1262 mutex_lock(&cache_chain_mutex);
1263 break;
1264 case CPU_DOWN_FAILED:
1265 mutex_unlock(&cache_chain_mutex);
1266 break;
1da177e4 1267 case CPU_DEAD:
4484ebf1
RT
1268 /*
1269 * Even if all the cpus of a node are down, we don't free the
1270 * kmem_list3 of any cache. This to avoid a race between
1271 * cpu_down, and a kmalloc allocation from another cpu for
1272 * memory from the node of the cpu going down. The list3
1273 * structure is usually allocated from kmem_cache_create() and
1274 * gets destroyed at kmem_cache_destroy().
1275 */
1da177e4 1276 /* fall thru */
8f5be20b 1277#endif
1da177e4 1278 case CPU_UP_CANCELED:
1da177e4
LT
1279 list_for_each_entry(cachep, &cache_chain, next) {
1280 struct array_cache *nc;
4484ebf1
RT
1281 struct array_cache *shared;
1282 struct array_cache **alien;
e498be7d 1283 cpumask_t mask;
1da177e4 1284
e498be7d 1285 mask = node_to_cpumask(node);
1da177e4
LT
1286 /* cpu is dead; no one can alloc from it. */
1287 nc = cachep->array[cpu];
1288 cachep->array[cpu] = NULL;
e498be7d
CL
1289 l3 = cachep->nodelists[node];
1290
1291 if (!l3)
4484ebf1 1292 goto free_array_cache;
e498be7d 1293
ca3b9b91 1294 spin_lock_irq(&l3->list_lock);
e498be7d
CL
1295
1296 /* Free limit for this kmem_list3 */
1297 l3->free_limit -= cachep->batchcount;
1298 if (nc)
ff69416e 1299 free_block(cachep, nc->entry, nc->avail, node);
e498be7d
CL
1300
1301 if (!cpus_empty(mask)) {
ca3b9b91 1302 spin_unlock_irq(&l3->list_lock);
4484ebf1 1303 goto free_array_cache;
b28a02de 1304 }
e498be7d 1305
4484ebf1
RT
1306 shared = l3->shared;
1307 if (shared) {
e498be7d 1308 free_block(cachep, l3->shared->entry,
b28a02de 1309 l3->shared->avail, node);
e498be7d
CL
1310 l3->shared = NULL;
1311 }
e498be7d 1312
4484ebf1
RT
1313 alien = l3->alien;
1314 l3->alien = NULL;
1315
1316 spin_unlock_irq(&l3->list_lock);
1317
1318 kfree(shared);
1319 if (alien) {
1320 drain_alien_cache(cachep, alien);
1321 free_alien_cache(alien);
e498be7d 1322 }
4484ebf1 1323free_array_cache:
1da177e4
LT
1324 kfree(nc);
1325 }
4484ebf1
RT
1326 /*
1327 * In the previous loop, all the objects were freed to
1328 * the respective cache's slabs, now we can go ahead and
1329 * shrink each nodelist to its limit.
1330 */
1331 list_for_each_entry(cachep, &cache_chain, next) {
1332 l3 = cachep->nodelists[node];
1333 if (!l3)
1334 continue;
ed11d9eb 1335 drain_freelist(cachep, l3, l3->free_objects);
4484ebf1 1336 }
fc0abb14 1337 mutex_unlock(&cache_chain_mutex);
1da177e4 1338 break;
1da177e4
LT
1339 }
1340 return NOTIFY_OK;
a737b3e2 1341bad:
1da177e4
LT
1342 return NOTIFY_BAD;
1343}
1344
74b85f37
CS
1345static struct notifier_block __cpuinitdata cpucache_notifier = {
1346 &cpuup_callback, NULL, 0
1347};
1da177e4 1348
e498be7d
CL
1349/*
1350 * swap the static kmem_list3 with kmalloced memory
1351 */
a737b3e2
AM
1352static void init_list(struct kmem_cache *cachep, struct kmem_list3 *list,
1353 int nodeid)
e498be7d
CL
1354{
1355 struct kmem_list3 *ptr;
1356
e498be7d
CL
1357 ptr = kmalloc_node(sizeof(struct kmem_list3), GFP_KERNEL, nodeid);
1358 BUG_ON(!ptr);
1359
1360 local_irq_disable();
1361 memcpy(ptr, list, sizeof(struct kmem_list3));
2b2d5493
IM
1362 /*
1363 * Do not assume that spinlocks can be initialized via memcpy:
1364 */
1365 spin_lock_init(&ptr->list_lock);
1366
e498be7d
CL
1367 MAKE_ALL_LISTS(cachep, ptr, nodeid);
1368 cachep->nodelists[nodeid] = ptr;
1369 local_irq_enable();
1370}
1371
a737b3e2
AM
1372/*
1373 * Initialisation. Called after the page allocator have been initialised and
1374 * before smp_init().
1da177e4
LT
1375 */
1376void __init kmem_cache_init(void)
1377{
1378 size_t left_over;
1379 struct cache_sizes *sizes;
1380 struct cache_names *names;
e498be7d 1381 int i;
07ed76b2 1382 int order;
1ca4cb24 1383 int node;
e498be7d
CL
1384
1385 for (i = 0; i < NUM_INIT_LISTS; i++) {
1386 kmem_list3_init(&initkmem_list3[i]);
1387 if (i < MAX_NUMNODES)
1388 cache_cache.nodelists[i] = NULL;
1389 }
1da177e4
LT
1390
1391 /*
1392 * Fragmentation resistance on low memory - only use bigger
1393 * page orders on machines with more than 32MB of memory.
1394 */
1395 if (num_physpages > (32 << 20) >> PAGE_SHIFT)
1396 slab_break_gfp_order = BREAK_GFP_ORDER_HI;
1397
1da177e4
LT
1398 /* Bootstrap is tricky, because several objects are allocated
1399 * from caches that do not exist yet:
a737b3e2
AM
1400 * 1) initialize the cache_cache cache: it contains the struct
1401 * kmem_cache structures of all caches, except cache_cache itself:
1402 * cache_cache is statically allocated.
e498be7d
CL
1403 * Initially an __init data area is used for the head array and the
1404 * kmem_list3 structures, it's replaced with a kmalloc allocated
1405 * array at the end of the bootstrap.
1da177e4 1406 * 2) Create the first kmalloc cache.
343e0d7a 1407 * The struct kmem_cache for the new cache is allocated normally.
e498be7d
CL
1408 * An __init data area is used for the head array.
1409 * 3) Create the remaining kmalloc caches, with minimally sized
1410 * head arrays.
1da177e4
LT
1411 * 4) Replace the __init data head arrays for cache_cache and the first
1412 * kmalloc cache with kmalloc allocated arrays.
e498be7d
CL
1413 * 5) Replace the __init data for kmem_list3 for cache_cache and
1414 * the other cache's with kmalloc allocated memory.
1415 * 6) Resize the head arrays of the kmalloc caches to their final sizes.
1da177e4
LT
1416 */
1417
1ca4cb24
PE
1418 node = numa_node_id();
1419
1da177e4 1420 /* 1) create the cache_cache */
1da177e4
LT
1421 INIT_LIST_HEAD(&cache_chain);
1422 list_add(&cache_cache.next, &cache_chain);
1423 cache_cache.colour_off = cache_line_size();
1424 cache_cache.array[smp_processor_id()] = &initarray_cache.cache;
1ca4cb24 1425 cache_cache.nodelists[node] = &initkmem_list3[CACHE_CACHE];
1da177e4 1426
a737b3e2
AM
1427 cache_cache.buffer_size = ALIGN(cache_cache.buffer_size,
1428 cache_line_size());
1da177e4 1429
07ed76b2
JS
1430 for (order = 0; order < MAX_ORDER; order++) {
1431 cache_estimate(order, cache_cache.buffer_size,
1432 cache_line_size(), 0, &left_over, &cache_cache.num);
1433 if (cache_cache.num)
1434 break;
1435 }
40094fa6 1436 BUG_ON(!cache_cache.num);
07ed76b2 1437 cache_cache.gfporder = order;
b28a02de 1438 cache_cache.colour = left_over / cache_cache.colour_off;
b28a02de
PE
1439 cache_cache.slab_size = ALIGN(cache_cache.num * sizeof(kmem_bufctl_t) +
1440 sizeof(struct slab), cache_line_size());
1da177e4
LT
1441
1442 /* 2+3) create the kmalloc caches */
1443 sizes = malloc_sizes;
1444 names = cache_names;
1445
a737b3e2
AM
1446 /*
1447 * Initialize the caches that provide memory for the array cache and the
1448 * kmem_list3 structures first. Without this, further allocations will
1449 * bug.
e498be7d
CL
1450 */
1451
1452 sizes[INDEX_AC].cs_cachep = kmem_cache_create(names[INDEX_AC].name,
a737b3e2
AM
1453 sizes[INDEX_AC].cs_size,
1454 ARCH_KMALLOC_MINALIGN,
1455 ARCH_KMALLOC_FLAGS|SLAB_PANIC,
1456 NULL, NULL);
e498be7d 1457
a737b3e2 1458 if (INDEX_AC != INDEX_L3) {
e498be7d 1459 sizes[INDEX_L3].cs_cachep =
a737b3e2
AM
1460 kmem_cache_create(names[INDEX_L3].name,
1461 sizes[INDEX_L3].cs_size,
1462 ARCH_KMALLOC_MINALIGN,
1463 ARCH_KMALLOC_FLAGS|SLAB_PANIC,
1464 NULL, NULL);
1465 }
e498be7d 1466
e0a42726
IM
1467 slab_early_init = 0;
1468
1da177e4 1469 while (sizes->cs_size != ULONG_MAX) {
e498be7d
CL
1470 /*
1471 * For performance, all the general caches are L1 aligned.
1da177e4
LT
1472 * This should be particularly beneficial on SMP boxes, as it
1473 * eliminates "false sharing".
1474 * Note for systems short on memory removing the alignment will
e498be7d
CL
1475 * allow tighter packing of the smaller caches.
1476 */
a737b3e2 1477 if (!sizes->cs_cachep) {
e498be7d 1478 sizes->cs_cachep = kmem_cache_create(names->name,
a737b3e2
AM
1479 sizes->cs_size,
1480 ARCH_KMALLOC_MINALIGN,
1481 ARCH_KMALLOC_FLAGS|SLAB_PANIC,
1482 NULL, NULL);
1483 }
1da177e4 1484
1da177e4 1485 sizes->cs_dmacachep = kmem_cache_create(names->name_dma,
a737b3e2
AM
1486 sizes->cs_size,
1487 ARCH_KMALLOC_MINALIGN,
1488 ARCH_KMALLOC_FLAGS|SLAB_CACHE_DMA|
1489 SLAB_PANIC,
1490 NULL, NULL);
1da177e4
LT
1491 sizes++;
1492 names++;
1493 }
1494 /* 4) Replace the bootstrap head arrays */
1495 {
2b2d5493 1496 struct array_cache *ptr;
e498be7d 1497
1da177e4 1498 ptr = kmalloc(sizeof(struct arraycache_init), GFP_KERNEL);
e498be7d 1499
1da177e4 1500 local_irq_disable();
9a2dba4b
PE
1501 BUG_ON(cpu_cache_get(&cache_cache) != &initarray_cache.cache);
1502 memcpy(ptr, cpu_cache_get(&cache_cache),
b28a02de 1503 sizeof(struct arraycache_init));
2b2d5493
IM
1504 /*
1505 * Do not assume that spinlocks can be initialized via memcpy:
1506 */
1507 spin_lock_init(&ptr->lock);
1508
1da177e4
LT
1509 cache_cache.array[smp_processor_id()] = ptr;
1510 local_irq_enable();
e498be7d 1511
1da177e4 1512 ptr = kmalloc(sizeof(struct arraycache_init), GFP_KERNEL);
e498be7d 1513
1da177e4 1514 local_irq_disable();
9a2dba4b 1515 BUG_ON(cpu_cache_get(malloc_sizes[INDEX_AC].cs_cachep)
b28a02de 1516 != &initarray_generic.cache);
9a2dba4b 1517 memcpy(ptr, cpu_cache_get(malloc_sizes[INDEX_AC].cs_cachep),
b28a02de 1518 sizeof(struct arraycache_init));
2b2d5493
IM
1519 /*
1520 * Do not assume that spinlocks can be initialized via memcpy:
1521 */
1522 spin_lock_init(&ptr->lock);
1523
e498be7d 1524 malloc_sizes[INDEX_AC].cs_cachep->array[smp_processor_id()] =
b28a02de 1525 ptr;
1da177e4
LT
1526 local_irq_enable();
1527 }
e498be7d
CL
1528 /* 5) Replace the bootstrap kmem_list3's */
1529 {
1ca4cb24
PE
1530 int nid;
1531
e498be7d 1532 /* Replace the static kmem_list3 structures for the boot cpu */
1ca4cb24 1533 init_list(&cache_cache, &initkmem_list3[CACHE_CACHE], node);
e498be7d 1534
1ca4cb24 1535 for_each_online_node(nid) {
e498be7d 1536 init_list(malloc_sizes[INDEX_AC].cs_cachep,
1ca4cb24 1537 &initkmem_list3[SIZE_AC + nid], nid);
e498be7d
CL
1538
1539 if (INDEX_AC != INDEX_L3) {
1540 init_list(malloc_sizes[INDEX_L3].cs_cachep,
1ca4cb24 1541 &initkmem_list3[SIZE_L3 + nid], nid);
e498be7d
CL
1542 }
1543 }
1544 }
1da177e4 1545
e498be7d 1546 /* 6) resize the head arrays to their final sizes */
1da177e4 1547 {
343e0d7a 1548 struct kmem_cache *cachep;
fc0abb14 1549 mutex_lock(&cache_chain_mutex);
1da177e4 1550 list_for_each_entry(cachep, &cache_chain, next)
2ed3a4ef
CL
1551 if (enable_cpucache(cachep))
1552 BUG();
fc0abb14 1553 mutex_unlock(&cache_chain_mutex);
1da177e4
LT
1554 }
1555
056c6241
RT
1556 /* Annotate slab for lockdep -- annotate the malloc caches */
1557 init_lock_keys();
1558
1559
1da177e4
LT
1560 /* Done! */
1561 g_cpucache_up = FULL;
1562
a737b3e2
AM
1563 /*
1564 * Register a cpu startup notifier callback that initializes
1565 * cpu_cache_get for all new cpus
1da177e4
LT
1566 */
1567 register_cpu_notifier(&cpucache_notifier);
1da177e4 1568
a737b3e2
AM
1569 /*
1570 * The reap timers are started later, with a module init call: That part
1571 * of the kernel is not yet operational.
1da177e4
LT
1572 */
1573}
1574
1575static int __init cpucache_init(void)
1576{
1577 int cpu;
1578
a737b3e2
AM
1579 /*
1580 * Register the timers that return unneeded pages to the page allocator
1da177e4 1581 */
e498be7d 1582 for_each_online_cpu(cpu)
a737b3e2 1583 start_cpu_timer(cpu);
1da177e4
LT
1584 return 0;
1585}
1da177e4
LT
1586__initcall(cpucache_init);
1587
1588/*
1589 * Interface to system's page allocator. No need to hold the cache-lock.
1590 *
1591 * If we requested dmaable memory, we will get it. Even if we
1592 * did not request dmaable memory, we might get it, but that
1593 * would be relatively rare and ignorable.
1594 */
343e0d7a 1595static void *kmem_getpages(struct kmem_cache *cachep, gfp_t flags, int nodeid)
1da177e4
LT
1596{
1597 struct page *page;
e1b6aa6f 1598 int nr_pages;
1da177e4
LT
1599 int i;
1600
d6fef9da 1601#ifndef CONFIG_MMU
e1b6aa6f
CH
1602 /*
1603 * Nommu uses slab's for process anonymous memory allocations, and thus
1604 * requires __GFP_COMP to properly refcount higher order allocations
d6fef9da 1605 */
e1b6aa6f 1606 flags |= __GFP_COMP;
d6fef9da 1607#endif
765c4507 1608
3c517a61 1609 flags |= cachep->gfpflags;
e1b6aa6f
CH
1610
1611 page = alloc_pages_node(nodeid, flags, cachep->gfporder);
1da177e4
LT
1612 if (!page)
1613 return NULL;
1da177e4 1614
e1b6aa6f 1615 nr_pages = (1 << cachep->gfporder);
1da177e4 1616 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
972d1a7b
CL
1617 add_zone_page_state(page_zone(page),
1618 NR_SLAB_RECLAIMABLE, nr_pages);
1619 else
1620 add_zone_page_state(page_zone(page),
1621 NR_SLAB_UNRECLAIMABLE, nr_pages);
e1b6aa6f
CH
1622 for (i = 0; i < nr_pages; i++)
1623 __SetPageSlab(page + i);
1624 return page_address(page);
1da177e4
LT
1625}
1626
1627/*
1628 * Interface to system's page release.
1629 */
343e0d7a 1630static void kmem_freepages(struct kmem_cache *cachep, void *addr)
1da177e4 1631{
b28a02de 1632 unsigned long i = (1 << cachep->gfporder);
1da177e4
LT
1633 struct page *page = virt_to_page(addr);
1634 const unsigned long nr_freed = i;
1635
972d1a7b
CL
1636 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1637 sub_zone_page_state(page_zone(page),
1638 NR_SLAB_RECLAIMABLE, nr_freed);
1639 else
1640 sub_zone_page_state(page_zone(page),
1641 NR_SLAB_UNRECLAIMABLE, nr_freed);
1da177e4 1642 while (i--) {
f205b2fe
NP
1643 BUG_ON(!PageSlab(page));
1644 __ClearPageSlab(page);
1da177e4
LT
1645 page++;
1646 }
1da177e4
LT
1647 if (current->reclaim_state)
1648 current->reclaim_state->reclaimed_slab += nr_freed;
1649 free_pages((unsigned long)addr, cachep->gfporder);
1da177e4
LT
1650}
1651
1652static void kmem_rcu_free(struct rcu_head *head)
1653{
b28a02de 1654 struct slab_rcu *slab_rcu = (struct slab_rcu *)head;
343e0d7a 1655 struct kmem_cache *cachep = slab_rcu->cachep;
1da177e4
LT
1656
1657 kmem_freepages(cachep, slab_rcu->addr);
1658 if (OFF_SLAB(cachep))
1659 kmem_cache_free(cachep->slabp_cache, slab_rcu);
1660}
1661
1662#if DEBUG
1663
1664#ifdef CONFIG_DEBUG_PAGEALLOC
343e0d7a 1665static void store_stackinfo(struct kmem_cache *cachep, unsigned long *addr,
b28a02de 1666 unsigned long caller)
1da177e4 1667{
3dafccf2 1668 int size = obj_size(cachep);
1da177e4 1669
3dafccf2 1670 addr = (unsigned long *)&((char *)addr)[obj_offset(cachep)];
1da177e4 1671
b28a02de 1672 if (size < 5 * sizeof(unsigned long))
1da177e4
LT
1673 return;
1674
b28a02de
PE
1675 *addr++ = 0x12345678;
1676 *addr++ = caller;
1677 *addr++ = smp_processor_id();
1678 size -= 3 * sizeof(unsigned long);
1da177e4
LT
1679 {
1680 unsigned long *sptr = &caller;
1681 unsigned long svalue;
1682
1683 while (!kstack_end(sptr)) {
1684 svalue = *sptr++;
1685 if (kernel_text_address(svalue)) {
b28a02de 1686 *addr++ = svalue;
1da177e4
LT
1687 size -= sizeof(unsigned long);
1688 if (size <= sizeof(unsigned long))
1689 break;
1690 }
1691 }
1692
1693 }
b28a02de 1694 *addr++ = 0x87654321;
1da177e4
LT
1695}
1696#endif
1697
343e0d7a 1698static void poison_obj(struct kmem_cache *cachep, void *addr, unsigned char val)
1da177e4 1699{
3dafccf2
MS
1700 int size = obj_size(cachep);
1701 addr = &((char *)addr)[obj_offset(cachep)];
1da177e4
LT
1702
1703 memset(addr, val, size);
b28a02de 1704 *(unsigned char *)(addr + size - 1) = POISON_END;
1da177e4
LT
1705}
1706
1707static void dump_line(char *data, int offset, int limit)
1708{
1709 int i;
aa83aa40
DJ
1710 unsigned char error = 0;
1711 int bad_count = 0;
1712
1da177e4 1713 printk(KERN_ERR "%03x:", offset);
aa83aa40
DJ
1714 for (i = 0; i < limit; i++) {
1715 if (data[offset + i] != POISON_FREE) {
1716 error = data[offset + i];
1717 bad_count++;
1718 }
b28a02de 1719 printk(" %02x", (unsigned char)data[offset + i]);
aa83aa40 1720 }
1da177e4 1721 printk("\n");
aa83aa40
DJ
1722
1723 if (bad_count == 1) {
1724 error ^= POISON_FREE;
1725 if (!(error & (error - 1))) {
1726 printk(KERN_ERR "Single bit error detected. Probably "
1727 "bad RAM.\n");
1728#ifdef CONFIG_X86
1729 printk(KERN_ERR "Run memtest86+ or a similar memory "
1730 "test tool.\n");
1731#else
1732 printk(KERN_ERR "Run a memory test tool.\n");
1733#endif
1734 }
1735 }
1da177e4
LT
1736}
1737#endif
1738
1739#if DEBUG
1740
343e0d7a 1741static void print_objinfo(struct kmem_cache *cachep, void *objp, int lines)
1da177e4
LT
1742{
1743 int i, size;
1744 char *realobj;
1745
1746 if (cachep->flags & SLAB_RED_ZONE) {
1747 printk(KERN_ERR "Redzone: 0x%lx/0x%lx.\n",
a737b3e2
AM
1748 *dbg_redzone1(cachep, objp),
1749 *dbg_redzone2(cachep, objp));
1da177e4
LT
1750 }
1751
1752 if (cachep->flags & SLAB_STORE_USER) {
1753 printk(KERN_ERR "Last user: [<%p>]",
a737b3e2 1754 *dbg_userword(cachep, objp));
1da177e4 1755 print_symbol("(%s)",
a737b3e2 1756 (unsigned long)*dbg_userword(cachep, objp));
1da177e4
LT
1757 printk("\n");
1758 }
3dafccf2
MS
1759 realobj = (char *)objp + obj_offset(cachep);
1760 size = obj_size(cachep);
b28a02de 1761 for (i = 0; i < size && lines; i += 16, lines--) {
1da177e4
LT
1762 int limit;
1763 limit = 16;
b28a02de
PE
1764 if (i + limit > size)
1765 limit = size - i;
1da177e4
LT
1766 dump_line(realobj, i, limit);
1767 }
1768}
1769
343e0d7a 1770static void check_poison_obj(struct kmem_cache *cachep, void *objp)
1da177e4
LT
1771{
1772 char *realobj;
1773 int size, i;
1774 int lines = 0;
1775
3dafccf2
MS
1776 realobj = (char *)objp + obj_offset(cachep);
1777 size = obj_size(cachep);
1da177e4 1778
b28a02de 1779 for (i = 0; i < size; i++) {
1da177e4 1780 char exp = POISON_FREE;
b28a02de 1781 if (i == size - 1)
1da177e4
LT
1782 exp = POISON_END;
1783 if (realobj[i] != exp) {
1784 int limit;
1785 /* Mismatch ! */
1786 /* Print header */
1787 if (lines == 0) {
b28a02de 1788 printk(KERN_ERR
a737b3e2
AM
1789 "Slab corruption: start=%p, len=%d\n",
1790 realobj, size);
1da177e4
LT
1791 print_objinfo(cachep, objp, 0);
1792 }
1793 /* Hexdump the affected line */
b28a02de 1794 i = (i / 16) * 16;
1da177e4 1795 limit = 16;
b28a02de
PE
1796 if (i + limit > size)
1797 limit = size - i;
1da177e4
LT
1798 dump_line(realobj, i, limit);
1799 i += 16;
1800 lines++;
1801 /* Limit to 5 lines */
1802 if (lines > 5)
1803 break;
1804 }
1805 }
1806 if (lines != 0) {
1807 /* Print some data about the neighboring objects, if they
1808 * exist:
1809 */
6ed5eb22 1810 struct slab *slabp = virt_to_slab(objp);
8fea4e96 1811 unsigned int objnr;
1da177e4 1812
8fea4e96 1813 objnr = obj_to_index(cachep, slabp, objp);
1da177e4 1814 if (objnr) {
8fea4e96 1815 objp = index_to_obj(cachep, slabp, objnr - 1);
3dafccf2 1816 realobj = (char *)objp + obj_offset(cachep);
1da177e4 1817 printk(KERN_ERR "Prev obj: start=%p, len=%d\n",
b28a02de 1818 realobj, size);
1da177e4
LT
1819 print_objinfo(cachep, objp, 2);
1820 }
b28a02de 1821 if (objnr + 1 < cachep->num) {
8fea4e96 1822 objp = index_to_obj(cachep, slabp, objnr + 1);
3dafccf2 1823 realobj = (char *)objp + obj_offset(cachep);
1da177e4 1824 printk(KERN_ERR "Next obj: start=%p, len=%d\n",
b28a02de 1825 realobj, size);
1da177e4
LT
1826 print_objinfo(cachep, objp, 2);
1827 }
1828 }
1829}
1830#endif
1831
12dd36fa
MD
1832#if DEBUG
1833/**
911851e6
RD
1834 * slab_destroy_objs - destroy a slab and its objects
1835 * @cachep: cache pointer being destroyed
1836 * @slabp: slab pointer being destroyed
1837 *
1838 * Call the registered destructor for each object in a slab that is being
1839 * destroyed.
1da177e4 1840 */
343e0d7a 1841static void slab_destroy_objs(struct kmem_cache *cachep, struct slab *slabp)
1da177e4 1842{
1da177e4
LT
1843 int i;
1844 for (i = 0; i < cachep->num; i++) {
8fea4e96 1845 void *objp = index_to_obj(cachep, slabp, i);
1da177e4
LT
1846
1847 if (cachep->flags & SLAB_POISON) {
1848#ifdef CONFIG_DEBUG_PAGEALLOC
a737b3e2
AM
1849 if (cachep->buffer_size % PAGE_SIZE == 0 &&
1850 OFF_SLAB(cachep))
b28a02de 1851 kernel_map_pages(virt_to_page(objp),
a737b3e2 1852 cachep->buffer_size / PAGE_SIZE, 1);
1da177e4
LT
1853 else
1854 check_poison_obj(cachep, objp);
1855#else
1856 check_poison_obj(cachep, objp);
1857#endif
1858 }
1859 if (cachep->flags & SLAB_RED_ZONE) {
1860 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
1861 slab_error(cachep, "start of a freed object "
b28a02de 1862 "was overwritten");
1da177e4
LT
1863 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
1864 slab_error(cachep, "end of a freed object "
b28a02de 1865 "was overwritten");
1da177e4
LT
1866 }
1867 if (cachep->dtor && !(cachep->flags & SLAB_POISON))
3dafccf2 1868 (cachep->dtor) (objp + obj_offset(cachep), cachep, 0);
1da177e4 1869 }
12dd36fa 1870}
1da177e4 1871#else
343e0d7a 1872static void slab_destroy_objs(struct kmem_cache *cachep, struct slab *slabp)
12dd36fa 1873{
1da177e4
LT
1874 if (cachep->dtor) {
1875 int i;
1876 for (i = 0; i < cachep->num; i++) {
8fea4e96 1877 void *objp = index_to_obj(cachep, slabp, i);
b28a02de 1878 (cachep->dtor) (objp, cachep, 0);
1da177e4
LT
1879 }
1880 }
12dd36fa 1881}
1da177e4
LT
1882#endif
1883
911851e6
RD
1884/**
1885 * slab_destroy - destroy and release all objects in a slab
1886 * @cachep: cache pointer being destroyed
1887 * @slabp: slab pointer being destroyed
1888 *
12dd36fa 1889 * Destroy all the objs in a slab, and release the mem back to the system.
a737b3e2
AM
1890 * Before calling the slab must have been unlinked from the cache. The
1891 * cache-lock is not held/needed.
12dd36fa 1892 */
343e0d7a 1893static void slab_destroy(struct kmem_cache *cachep, struct slab *slabp)
12dd36fa
MD
1894{
1895 void *addr = slabp->s_mem - slabp->colouroff;
1896
1897 slab_destroy_objs(cachep, slabp);
1da177e4
LT
1898 if (unlikely(cachep->flags & SLAB_DESTROY_BY_RCU)) {
1899 struct slab_rcu *slab_rcu;
1900
b28a02de 1901 slab_rcu = (struct slab_rcu *)slabp;
1da177e4
LT
1902 slab_rcu->cachep = cachep;
1903 slab_rcu->addr = addr;
1904 call_rcu(&slab_rcu->head, kmem_rcu_free);
1905 } else {
1906 kmem_freepages(cachep, addr);
873623df
IM
1907 if (OFF_SLAB(cachep))
1908 kmem_cache_free(cachep->slabp_cache, slabp);
1da177e4
LT
1909 }
1910}
1911
a737b3e2
AM
1912/*
1913 * For setting up all the kmem_list3s for cache whose buffer_size is same as
1914 * size of kmem_list3.
1915 */
343e0d7a 1916static void set_up_list3s(struct kmem_cache *cachep, int index)
e498be7d
CL
1917{
1918 int node;
1919
1920 for_each_online_node(node) {
b28a02de 1921 cachep->nodelists[node] = &initkmem_list3[index + node];
e498be7d 1922 cachep->nodelists[node]->next_reap = jiffies +
b28a02de
PE
1923 REAPTIMEOUT_LIST3 +
1924 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
e498be7d
CL
1925 }
1926}
1927
117f6eb1
CL
1928static void __kmem_cache_destroy(struct kmem_cache *cachep)
1929{
1930 int i;
1931 struct kmem_list3 *l3;
1932
1933 for_each_online_cpu(i)
1934 kfree(cachep->array[i]);
1935
1936 /* NUMA: free the list3 structures */
1937 for_each_online_node(i) {
1938 l3 = cachep->nodelists[i];
1939 if (l3) {
1940 kfree(l3->shared);
1941 free_alien_cache(l3->alien);
1942 kfree(l3);
1943 }
1944 }
1945 kmem_cache_free(&cache_cache, cachep);
1946}
1947
1948
4d268eba 1949/**
a70773dd
RD
1950 * calculate_slab_order - calculate size (page order) of slabs
1951 * @cachep: pointer to the cache that is being created
1952 * @size: size of objects to be created in this cache.
1953 * @align: required alignment for the objects.
1954 * @flags: slab allocation flags
1955 *
1956 * Also calculates the number of objects per slab.
4d268eba
PE
1957 *
1958 * This could be made much more intelligent. For now, try to avoid using
1959 * high order pages for slabs. When the gfp() functions are more friendly
1960 * towards high-order requests, this should be changed.
1961 */
a737b3e2 1962static size_t calculate_slab_order(struct kmem_cache *cachep,
ee13d785 1963 size_t size, size_t align, unsigned long flags)
4d268eba 1964{
b1ab41c4 1965 unsigned long offslab_limit;
4d268eba 1966 size_t left_over = 0;
9888e6fa 1967 int gfporder;
4d268eba 1968
a737b3e2 1969 for (gfporder = 0; gfporder <= MAX_GFP_ORDER; gfporder++) {
4d268eba
PE
1970 unsigned int num;
1971 size_t remainder;
1972
9888e6fa 1973 cache_estimate(gfporder, size, align, flags, &remainder, &num);
4d268eba
PE
1974 if (!num)
1975 continue;
9888e6fa 1976
b1ab41c4
IM
1977 if (flags & CFLGS_OFF_SLAB) {
1978 /*
1979 * Max number of objs-per-slab for caches which
1980 * use off-slab slabs. Needed to avoid a possible
1981 * looping condition in cache_grow().
1982 */
1983 offslab_limit = size - sizeof(struct slab);
1984 offslab_limit /= sizeof(kmem_bufctl_t);
1985
1986 if (num > offslab_limit)
1987 break;
1988 }
4d268eba 1989
9888e6fa 1990 /* Found something acceptable - save it away */
4d268eba 1991 cachep->num = num;
9888e6fa 1992 cachep->gfporder = gfporder;
4d268eba
PE
1993 left_over = remainder;
1994
f78bb8ad
LT
1995 /*
1996 * A VFS-reclaimable slab tends to have most allocations
1997 * as GFP_NOFS and we really don't want to have to be allocating
1998 * higher-order pages when we are unable to shrink dcache.
1999 */
2000 if (flags & SLAB_RECLAIM_ACCOUNT)
2001 break;
2002
4d268eba
PE
2003 /*
2004 * Large number of objects is good, but very large slabs are
2005 * currently bad for the gfp()s.
2006 */
9888e6fa 2007 if (gfporder >= slab_break_gfp_order)
4d268eba
PE
2008 break;
2009
9888e6fa
LT
2010 /*
2011 * Acceptable internal fragmentation?
2012 */
a737b3e2 2013 if (left_over * 8 <= (PAGE_SIZE << gfporder))
4d268eba
PE
2014 break;
2015 }
2016 return left_over;
2017}
2018
2ed3a4ef 2019static int setup_cpu_cache(struct kmem_cache *cachep)
f30cf7d1 2020{
2ed3a4ef
CL
2021 if (g_cpucache_up == FULL)
2022 return enable_cpucache(cachep);
2023
f30cf7d1
PE
2024 if (g_cpucache_up == NONE) {
2025 /*
2026 * Note: the first kmem_cache_create must create the cache
2027 * that's used by kmalloc(24), otherwise the creation of
2028 * further caches will BUG().
2029 */
2030 cachep->array[smp_processor_id()] = &initarray_generic.cache;
2031
2032 /*
2033 * If the cache that's used by kmalloc(sizeof(kmem_list3)) is
2034 * the first cache, then we need to set up all its list3s,
2035 * otherwise the creation of further caches will BUG().
2036 */
2037 set_up_list3s(cachep, SIZE_AC);
2038 if (INDEX_AC == INDEX_L3)
2039 g_cpucache_up = PARTIAL_L3;
2040 else
2041 g_cpucache_up = PARTIAL_AC;
2042 } else {
2043 cachep->array[smp_processor_id()] =
2044 kmalloc(sizeof(struct arraycache_init), GFP_KERNEL);
2045
2046 if (g_cpucache_up == PARTIAL_AC) {
2047 set_up_list3s(cachep, SIZE_L3);
2048 g_cpucache_up = PARTIAL_L3;
2049 } else {
2050 int node;
2051 for_each_online_node(node) {
2052 cachep->nodelists[node] =
2053 kmalloc_node(sizeof(struct kmem_list3),
2054 GFP_KERNEL, node);
2055 BUG_ON(!cachep->nodelists[node]);
2056 kmem_list3_init(cachep->nodelists[node]);
2057 }
2058 }
2059 }
2060 cachep->nodelists[numa_node_id()]->next_reap =
2061 jiffies + REAPTIMEOUT_LIST3 +
2062 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
2063
2064 cpu_cache_get(cachep)->avail = 0;
2065 cpu_cache_get(cachep)->limit = BOOT_CPUCACHE_ENTRIES;
2066 cpu_cache_get(cachep)->batchcount = 1;
2067 cpu_cache_get(cachep)->touched = 0;
2068 cachep->batchcount = 1;
2069 cachep->limit = BOOT_CPUCACHE_ENTRIES;
2ed3a4ef 2070 return 0;
f30cf7d1
PE
2071}
2072
1da177e4
LT
2073/**
2074 * kmem_cache_create - Create a cache.
2075 * @name: A string which is used in /proc/slabinfo to identify this cache.
2076 * @size: The size of objects to be created in this cache.
2077 * @align: The required alignment for the objects.
2078 * @flags: SLAB flags
2079 * @ctor: A constructor for the objects.
2080 * @dtor: A destructor for the objects.
2081 *
2082 * Returns a ptr to the cache on success, NULL on failure.
2083 * Cannot be called within a int, but can be interrupted.
2084 * The @ctor is run when new pages are allocated by the cache
2085 * and the @dtor is run before the pages are handed back.
2086 *
2087 * @name must be valid until the cache is destroyed. This implies that
a737b3e2
AM
2088 * the module calling this has to destroy the cache before getting unloaded.
2089 *
1da177e4
LT
2090 * The flags are
2091 *
2092 * %SLAB_POISON - Poison the slab with a known test pattern (a5a5a5a5)
2093 * to catch references to uninitialised memory.
2094 *
2095 * %SLAB_RED_ZONE - Insert `Red' zones around the allocated memory to check
2096 * for buffer overruns.
2097 *
1da177e4
LT
2098 * %SLAB_HWCACHE_ALIGN - Align the objects in this cache to a hardware
2099 * cacheline. This can be beneficial if you're counting cycles as closely
2100 * as davem.
2101 */
343e0d7a 2102struct kmem_cache *
1da177e4 2103kmem_cache_create (const char *name, size_t size, size_t align,
a737b3e2
AM
2104 unsigned long flags,
2105 void (*ctor)(void*, struct kmem_cache *, unsigned long),
343e0d7a 2106 void (*dtor)(void*, struct kmem_cache *, unsigned long))
1da177e4
LT
2107{
2108 size_t left_over, slab_size, ralign;
7a7c381d 2109 struct kmem_cache *cachep = NULL, *pc;
1da177e4
LT
2110
2111 /*
2112 * Sanity checks... these are all serious usage bugs.
2113 */
a737b3e2 2114 if (!name || in_interrupt() || (size < BYTES_PER_WORD) ||
b28a02de 2115 (size > (1 << MAX_OBJ_ORDER) * PAGE_SIZE) || (dtor && !ctor)) {
a737b3e2
AM
2116 printk(KERN_ERR "%s: Early error in slab %s\n", __FUNCTION__,
2117 name);
b28a02de
PE
2118 BUG();
2119 }
1da177e4 2120
f0188f47 2121 /*
8f5be20b
RT
2122 * We use cache_chain_mutex to ensure a consistent view of
2123 * cpu_online_map as well. Please see cpuup_callback
f0188f47 2124 */
fc0abb14 2125 mutex_lock(&cache_chain_mutex);
4f12bb4f 2126
7a7c381d 2127 list_for_each_entry(pc, &cache_chain, next) {
4f12bb4f
AM
2128 char tmp;
2129 int res;
2130
2131 /*
2132 * This happens when the module gets unloaded and doesn't
2133 * destroy its slab cache and no-one else reuses the vmalloc
2134 * area of the module. Print a warning.
2135 */
138ae663 2136 res = probe_kernel_address(pc->name, tmp);
4f12bb4f
AM
2137 if (res) {
2138 printk("SLAB: cache with size %d has lost its name\n",
3dafccf2 2139 pc->buffer_size);
4f12bb4f
AM
2140 continue;
2141 }
2142
b28a02de 2143 if (!strcmp(pc->name, name)) {
4f12bb4f
AM
2144 printk("kmem_cache_create: duplicate cache %s\n", name);
2145 dump_stack();
2146 goto oops;
2147 }
2148 }
2149
1da177e4
LT
2150#if DEBUG
2151 WARN_ON(strchr(name, ' ')); /* It confuses parsers */
2152 if ((flags & SLAB_DEBUG_INITIAL) && !ctor) {
2153 /* No constructor, but inital state check requested */
2154 printk(KERN_ERR "%s: No con, but init state check "
b28a02de 2155 "requested - %s\n", __FUNCTION__, name);
1da177e4
LT
2156 flags &= ~SLAB_DEBUG_INITIAL;
2157 }
1da177e4
LT
2158#if FORCED_DEBUG
2159 /*
2160 * Enable redzoning and last user accounting, except for caches with
2161 * large objects, if the increased size would increase the object size
2162 * above the next power of two: caches with object sizes just above a
2163 * power of two have a significant amount of internal fragmentation.
2164 */
a737b3e2 2165 if (size < 4096 || fls(size - 1) == fls(size-1 + 3 * BYTES_PER_WORD))
b28a02de 2166 flags |= SLAB_RED_ZONE | SLAB_STORE_USER;
1da177e4
LT
2167 if (!(flags & SLAB_DESTROY_BY_RCU))
2168 flags |= SLAB_POISON;
2169#endif
2170 if (flags & SLAB_DESTROY_BY_RCU)
2171 BUG_ON(flags & SLAB_POISON);
2172#endif
2173 if (flags & SLAB_DESTROY_BY_RCU)
2174 BUG_ON(dtor);
2175
2176 /*
a737b3e2
AM
2177 * Always checks flags, a caller might be expecting debug support which
2178 * isn't available.
1da177e4 2179 */
40094fa6 2180 BUG_ON(flags & ~CREATE_MASK);
1da177e4 2181
a737b3e2
AM
2182 /*
2183 * Check that size is in terms of words. This is needed to avoid
1da177e4
LT
2184 * unaligned accesses for some archs when redzoning is used, and makes
2185 * sure any on-slab bufctl's are also correctly aligned.
2186 */
b28a02de
PE
2187 if (size & (BYTES_PER_WORD - 1)) {
2188 size += (BYTES_PER_WORD - 1);
2189 size &= ~(BYTES_PER_WORD - 1);
1da177e4
LT
2190 }
2191
a737b3e2
AM
2192 /* calculate the final buffer alignment: */
2193
1da177e4
LT
2194 /* 1) arch recommendation: can be overridden for debug */
2195 if (flags & SLAB_HWCACHE_ALIGN) {
a737b3e2
AM
2196 /*
2197 * Default alignment: as specified by the arch code. Except if
2198 * an object is really small, then squeeze multiple objects into
2199 * one cacheline.
1da177e4
LT
2200 */
2201 ralign = cache_line_size();
b28a02de 2202 while (size <= ralign / 2)
1da177e4
LT
2203 ralign /= 2;
2204 } else {
2205 ralign = BYTES_PER_WORD;
2206 }
ca5f9703
PE
2207
2208 /*
2209 * Redzoning and user store require word alignment. Note this will be
2210 * overridden by architecture or caller mandated alignment if either
2211 * is greater than BYTES_PER_WORD.
2212 */
2213 if (flags & SLAB_RED_ZONE || flags & SLAB_STORE_USER)
2214 ralign = BYTES_PER_WORD;
2215
a44b56d3 2216 /* 2) arch mandated alignment */
1da177e4
LT
2217 if (ralign < ARCH_SLAB_MINALIGN) {
2218 ralign = ARCH_SLAB_MINALIGN;
1da177e4 2219 }
a44b56d3 2220 /* 3) caller mandated alignment */
1da177e4
LT
2221 if (ralign < align) {
2222 ralign = align;
1da177e4 2223 }
a44b56d3
KH
2224 /* disable debug if necessary */
2225 if (ralign > BYTES_PER_WORD)
2226 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
a737b3e2 2227 /*
ca5f9703 2228 * 4) Store it.
1da177e4
LT
2229 */
2230 align = ralign;
2231
2232 /* Get cache's description obj. */
e94b1766 2233 cachep = kmem_cache_zalloc(&cache_cache, GFP_KERNEL);
1da177e4 2234 if (!cachep)
4f12bb4f 2235 goto oops;
1da177e4
LT
2236
2237#if DEBUG
3dafccf2 2238 cachep->obj_size = size;
1da177e4 2239
ca5f9703
PE
2240 /*
2241 * Both debugging options require word-alignment which is calculated
2242 * into align above.
2243 */
1da177e4 2244 if (flags & SLAB_RED_ZONE) {
1da177e4 2245 /* add space for red zone words */
3dafccf2 2246 cachep->obj_offset += BYTES_PER_WORD;
b28a02de 2247 size += 2 * BYTES_PER_WORD;
1da177e4
LT
2248 }
2249 if (flags & SLAB_STORE_USER) {
ca5f9703
PE
2250 /* user store requires one word storage behind the end of
2251 * the real object.
1da177e4 2252 */
1da177e4
LT
2253 size += BYTES_PER_WORD;
2254 }
2255#if FORCED_DEBUG && defined(CONFIG_DEBUG_PAGEALLOC)
b28a02de 2256 if (size >= malloc_sizes[INDEX_L3 + 1].cs_size
3dafccf2
MS
2257 && cachep->obj_size > cache_line_size() && size < PAGE_SIZE) {
2258 cachep->obj_offset += PAGE_SIZE - size;
1da177e4
LT
2259 size = PAGE_SIZE;
2260 }
2261#endif
2262#endif
2263
e0a42726
IM
2264 /*
2265 * Determine if the slab management is 'on' or 'off' slab.
2266 * (bootstrapping cannot cope with offslab caches so don't do
2267 * it too early on.)
2268 */
2269 if ((size >= (PAGE_SIZE >> 3)) && !slab_early_init)
1da177e4
LT
2270 /*
2271 * Size is large, assume best to place the slab management obj
2272 * off-slab (should allow better packing of objs).
2273 */
2274 flags |= CFLGS_OFF_SLAB;
2275
2276 size = ALIGN(size, align);
2277
f78bb8ad 2278 left_over = calculate_slab_order(cachep, size, align, flags);
1da177e4
LT
2279
2280 if (!cachep->num) {
2281 printk("kmem_cache_create: couldn't create cache %s.\n", name);
2282 kmem_cache_free(&cache_cache, cachep);
2283 cachep = NULL;
4f12bb4f 2284 goto oops;
1da177e4 2285 }
b28a02de
PE
2286 slab_size = ALIGN(cachep->num * sizeof(kmem_bufctl_t)
2287 + sizeof(struct slab), align);
1da177e4
LT
2288
2289 /*
2290 * If the slab has been placed off-slab, and we have enough space then
2291 * move it on-slab. This is at the expense of any extra colouring.
2292 */
2293 if (flags & CFLGS_OFF_SLAB && left_over >= slab_size) {
2294 flags &= ~CFLGS_OFF_SLAB;
2295 left_over -= slab_size;
2296 }
2297
2298 if (flags & CFLGS_OFF_SLAB) {
2299 /* really off slab. No need for manual alignment */
b28a02de
PE
2300 slab_size =
2301 cachep->num * sizeof(kmem_bufctl_t) + sizeof(struct slab);
1da177e4
LT
2302 }
2303
2304 cachep->colour_off = cache_line_size();
2305 /* Offset must be a multiple of the alignment. */
2306 if (cachep->colour_off < align)
2307 cachep->colour_off = align;
b28a02de 2308 cachep->colour = left_over / cachep->colour_off;
1da177e4
LT
2309 cachep->slab_size = slab_size;
2310 cachep->flags = flags;
2311 cachep->gfpflags = 0;
2312 if (flags & SLAB_CACHE_DMA)
2313 cachep->gfpflags |= GFP_DMA;
3dafccf2 2314 cachep->buffer_size = size;
1da177e4 2315
e5ac9c5a 2316 if (flags & CFLGS_OFF_SLAB) {
b2d55073 2317 cachep->slabp_cache = kmem_find_general_cachep(slab_size, 0u);
e5ac9c5a
RT
2318 /*
2319 * This is a possibility for one of the malloc_sizes caches.
2320 * But since we go off slab only for object size greater than
2321 * PAGE_SIZE/8, and malloc_sizes gets created in ascending order,
2322 * this should not happen at all.
2323 * But leave a BUG_ON for some lucky dude.
2324 */
2325 BUG_ON(!cachep->slabp_cache);
2326 }
1da177e4
LT
2327 cachep->ctor = ctor;
2328 cachep->dtor = dtor;
2329 cachep->name = name;
2330
2ed3a4ef
CL
2331 if (setup_cpu_cache(cachep)) {
2332 __kmem_cache_destroy(cachep);
2333 cachep = NULL;
2334 goto oops;
2335 }
1da177e4 2336
1da177e4
LT
2337 /* cache setup completed, link it into the list */
2338 list_add(&cachep->next, &cache_chain);
a737b3e2 2339oops:
1da177e4
LT
2340 if (!cachep && (flags & SLAB_PANIC))
2341 panic("kmem_cache_create(): failed to create slab `%s'\n",
b28a02de 2342 name);
fc0abb14 2343 mutex_unlock(&cache_chain_mutex);
1da177e4
LT
2344 return cachep;
2345}
2346EXPORT_SYMBOL(kmem_cache_create);
2347
2348#if DEBUG
2349static void check_irq_off(void)
2350{
2351 BUG_ON(!irqs_disabled());
2352}
2353
2354static void check_irq_on(void)
2355{
2356 BUG_ON(irqs_disabled());
2357}
2358
343e0d7a 2359static void check_spinlock_acquired(struct kmem_cache *cachep)
1da177e4
LT
2360{
2361#ifdef CONFIG_SMP
2362 check_irq_off();
e498be7d 2363 assert_spin_locked(&cachep->nodelists[numa_node_id()]->list_lock);
1da177e4
LT
2364#endif
2365}
e498be7d 2366
343e0d7a 2367static void check_spinlock_acquired_node(struct kmem_cache *cachep, int node)
e498be7d
CL
2368{
2369#ifdef CONFIG_SMP
2370 check_irq_off();
2371 assert_spin_locked(&cachep->nodelists[node]->list_lock);
2372#endif
2373}
2374
1da177e4
LT
2375#else
2376#define check_irq_off() do { } while(0)
2377#define check_irq_on() do { } while(0)
2378#define check_spinlock_acquired(x) do { } while(0)
e498be7d 2379#define check_spinlock_acquired_node(x, y) do { } while(0)
1da177e4
LT
2380#endif
2381
aab2207c
CL
2382static void drain_array(struct kmem_cache *cachep, struct kmem_list3 *l3,
2383 struct array_cache *ac,
2384 int force, int node);
2385
1da177e4
LT
2386static void do_drain(void *arg)
2387{
a737b3e2 2388 struct kmem_cache *cachep = arg;
1da177e4 2389 struct array_cache *ac;
ff69416e 2390 int node = numa_node_id();
1da177e4
LT
2391
2392 check_irq_off();
9a2dba4b 2393 ac = cpu_cache_get(cachep);
ff69416e
CL
2394 spin_lock(&cachep->nodelists[node]->list_lock);
2395 free_block(cachep, ac->entry, ac->avail, node);
2396 spin_unlock(&cachep->nodelists[node]->list_lock);
1da177e4
LT
2397 ac->avail = 0;
2398}
2399
343e0d7a 2400static void drain_cpu_caches(struct kmem_cache *cachep)
1da177e4 2401{
e498be7d
CL
2402 struct kmem_list3 *l3;
2403 int node;
2404
a07fa394 2405 on_each_cpu(do_drain, cachep, 1, 1);
1da177e4 2406 check_irq_on();
b28a02de 2407 for_each_online_node(node) {
e498be7d 2408 l3 = cachep->nodelists[node];
a4523a8b
RD
2409 if (l3 && l3->alien)
2410 drain_alien_cache(cachep, l3->alien);
2411 }
2412
2413 for_each_online_node(node) {
2414 l3 = cachep->nodelists[node];
2415 if (l3)
aab2207c 2416 drain_array(cachep, l3, l3->shared, 1, node);
e498be7d 2417 }
1da177e4
LT
2418}
2419
ed11d9eb
CL
2420/*
2421 * Remove slabs from the list of free slabs.
2422 * Specify the number of slabs to drain in tofree.
2423 *
2424 * Returns the actual number of slabs released.
2425 */
2426static int drain_freelist(struct kmem_cache *cache,
2427 struct kmem_list3 *l3, int tofree)
1da177e4 2428{
ed11d9eb
CL
2429 struct list_head *p;
2430 int nr_freed;
1da177e4 2431 struct slab *slabp;
1da177e4 2432
ed11d9eb
CL
2433 nr_freed = 0;
2434 while (nr_freed < tofree && !list_empty(&l3->slabs_free)) {
1da177e4 2435
ed11d9eb 2436 spin_lock_irq(&l3->list_lock);
e498be7d 2437 p = l3->slabs_free.prev;
ed11d9eb
CL
2438 if (p == &l3->slabs_free) {
2439 spin_unlock_irq(&l3->list_lock);
2440 goto out;
2441 }
1da177e4 2442
ed11d9eb 2443 slabp = list_entry(p, struct slab, list);
1da177e4 2444#if DEBUG
40094fa6 2445 BUG_ON(slabp->inuse);
1da177e4
LT
2446#endif
2447 list_del(&slabp->list);
ed11d9eb
CL
2448 /*
2449 * Safe to drop the lock. The slab is no longer linked
2450 * to the cache.
2451 */
2452 l3->free_objects -= cache->num;
e498be7d 2453 spin_unlock_irq(&l3->list_lock);
ed11d9eb
CL
2454 slab_destroy(cache, slabp);
2455 nr_freed++;
1da177e4 2456 }
ed11d9eb
CL
2457out:
2458 return nr_freed;
1da177e4
LT
2459}
2460
8f5be20b 2461/* Called with cache_chain_mutex held to protect against cpu hotplug */
343e0d7a 2462static int __cache_shrink(struct kmem_cache *cachep)
e498be7d
CL
2463{
2464 int ret = 0, i = 0;
2465 struct kmem_list3 *l3;
2466
2467 drain_cpu_caches(cachep);
2468
2469 check_irq_on();
2470 for_each_online_node(i) {
2471 l3 = cachep->nodelists[i];
ed11d9eb
CL
2472 if (!l3)
2473 continue;
2474
2475 drain_freelist(cachep, l3, l3->free_objects);
2476
2477 ret += !list_empty(&l3->slabs_full) ||
2478 !list_empty(&l3->slabs_partial);
e498be7d
CL
2479 }
2480 return (ret ? 1 : 0);
2481}
2482
1da177e4
LT
2483/**
2484 * kmem_cache_shrink - Shrink a cache.
2485 * @cachep: The cache to shrink.
2486 *
2487 * Releases as many slabs as possible for a cache.
2488 * To help debugging, a zero exit status indicates all slabs were released.
2489 */
343e0d7a 2490int kmem_cache_shrink(struct kmem_cache *cachep)
1da177e4 2491{
8f5be20b 2492 int ret;
40094fa6 2493 BUG_ON(!cachep || in_interrupt());
1da177e4 2494
8f5be20b
RT
2495 mutex_lock(&cache_chain_mutex);
2496 ret = __cache_shrink(cachep);
2497 mutex_unlock(&cache_chain_mutex);
2498 return ret;
1da177e4
LT
2499}
2500EXPORT_SYMBOL(kmem_cache_shrink);
2501
2502/**
2503 * kmem_cache_destroy - delete a cache
2504 * @cachep: the cache to destroy
2505 *
343e0d7a 2506 * Remove a struct kmem_cache object from the slab cache.
1da177e4
LT
2507 *
2508 * It is expected this function will be called by a module when it is
2509 * unloaded. This will remove the cache completely, and avoid a duplicate
2510 * cache being allocated each time a module is loaded and unloaded, if the
2511 * module doesn't have persistent in-kernel storage across loads and unloads.
2512 *
2513 * The cache must be empty before calling this function.
2514 *
2515 * The caller must guarantee that noone will allocate memory from the cache
2516 * during the kmem_cache_destroy().
2517 */
133d205a 2518void kmem_cache_destroy(struct kmem_cache *cachep)
1da177e4 2519{
40094fa6 2520 BUG_ON(!cachep || in_interrupt());
1da177e4 2521
1da177e4 2522 /* Find the cache in the chain of caches. */
fc0abb14 2523 mutex_lock(&cache_chain_mutex);
1da177e4
LT
2524 /*
2525 * the chain is never empty, cache_cache is never destroyed
2526 */
2527 list_del(&cachep->next);
1da177e4
LT
2528 if (__cache_shrink(cachep)) {
2529 slab_error(cachep, "Can't free all objects");
b28a02de 2530 list_add(&cachep->next, &cache_chain);
fc0abb14 2531 mutex_unlock(&cache_chain_mutex);
133d205a 2532 return;
1da177e4
LT
2533 }
2534
2535 if (unlikely(cachep->flags & SLAB_DESTROY_BY_RCU))
fbd568a3 2536 synchronize_rcu();
1da177e4 2537
117f6eb1 2538 __kmem_cache_destroy(cachep);
8f5be20b 2539 mutex_unlock(&cache_chain_mutex);
1da177e4
LT
2540}
2541EXPORT_SYMBOL(kmem_cache_destroy);
2542
e5ac9c5a
RT
2543/*
2544 * Get the memory for a slab management obj.
2545 * For a slab cache when the slab descriptor is off-slab, slab descriptors
2546 * always come from malloc_sizes caches. The slab descriptor cannot
2547 * come from the same cache which is getting created because,
2548 * when we are searching for an appropriate cache for these
2549 * descriptors in kmem_cache_create, we search through the malloc_sizes array.
2550 * If we are creating a malloc_sizes cache here it would not be visible to
2551 * kmem_find_general_cachep till the initialization is complete.
2552 * Hence we cannot have slabp_cache same as the original cache.
2553 */
343e0d7a 2554static struct slab *alloc_slabmgmt(struct kmem_cache *cachep, void *objp,
5b74ada7
RT
2555 int colour_off, gfp_t local_flags,
2556 int nodeid)
1da177e4
LT
2557{
2558 struct slab *slabp;
b28a02de 2559
1da177e4
LT
2560 if (OFF_SLAB(cachep)) {
2561 /* Slab management obj is off-slab. */
5b74ada7 2562 slabp = kmem_cache_alloc_node(cachep->slabp_cache,
3c517a61 2563 local_flags & ~GFP_THISNODE, nodeid);
1da177e4
LT
2564 if (!slabp)
2565 return NULL;
2566 } else {
b28a02de 2567 slabp = objp + colour_off;
1da177e4
LT
2568 colour_off += cachep->slab_size;
2569 }
2570 slabp->inuse = 0;
2571 slabp->colouroff = colour_off;
b28a02de 2572 slabp->s_mem = objp + colour_off;
5b74ada7 2573 slabp->nodeid = nodeid;
1da177e4
LT
2574 return slabp;
2575}
2576
2577static inline kmem_bufctl_t *slab_bufctl(struct slab *slabp)
2578{
b28a02de 2579 return (kmem_bufctl_t *) (slabp + 1);
1da177e4
LT
2580}
2581
343e0d7a 2582static void cache_init_objs(struct kmem_cache *cachep,
b28a02de 2583 struct slab *slabp, unsigned long ctor_flags)
1da177e4
LT
2584{
2585 int i;
2586
2587 for (i = 0; i < cachep->num; i++) {
8fea4e96 2588 void *objp = index_to_obj(cachep, slabp, i);
1da177e4
LT
2589#if DEBUG
2590 /* need to poison the objs? */
2591 if (cachep->flags & SLAB_POISON)
2592 poison_obj(cachep, objp, POISON_FREE);
2593 if (cachep->flags & SLAB_STORE_USER)
2594 *dbg_userword(cachep, objp) = NULL;
2595
2596 if (cachep->flags & SLAB_RED_ZONE) {
2597 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2598 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2599 }
2600 /*
a737b3e2
AM
2601 * Constructors are not allowed to allocate memory from the same
2602 * cache which they are a constructor for. Otherwise, deadlock.
2603 * They must also be threaded.
1da177e4
LT
2604 */
2605 if (cachep->ctor && !(cachep->flags & SLAB_POISON))
3dafccf2 2606 cachep->ctor(objp + obj_offset(cachep), cachep,
b28a02de 2607 ctor_flags);
1da177e4
LT
2608
2609 if (cachep->flags & SLAB_RED_ZONE) {
2610 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
2611 slab_error(cachep, "constructor overwrote the"
b28a02de 2612 " end of an object");
1da177e4
LT
2613 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
2614 slab_error(cachep, "constructor overwrote the"
b28a02de 2615 " start of an object");
1da177e4 2616 }
a737b3e2
AM
2617 if ((cachep->buffer_size % PAGE_SIZE) == 0 &&
2618 OFF_SLAB(cachep) && cachep->flags & SLAB_POISON)
b28a02de 2619 kernel_map_pages(virt_to_page(objp),
3dafccf2 2620 cachep->buffer_size / PAGE_SIZE, 0);
1da177e4
LT
2621#else
2622 if (cachep->ctor)
2623 cachep->ctor(objp, cachep, ctor_flags);
2624#endif
b28a02de 2625 slab_bufctl(slabp)[i] = i + 1;
1da177e4 2626 }
b28a02de 2627 slab_bufctl(slabp)[i - 1] = BUFCTL_END;
1da177e4
LT
2628 slabp->free = 0;
2629}
2630
343e0d7a 2631static void kmem_flagcheck(struct kmem_cache *cachep, gfp_t flags)
1da177e4 2632{
441e143e 2633 if (flags & GFP_DMA)
a737b3e2
AM
2634 BUG_ON(!(cachep->gfpflags & GFP_DMA));
2635 else
2636 BUG_ON(cachep->gfpflags & GFP_DMA);
1da177e4
LT
2637}
2638
a737b3e2
AM
2639static void *slab_get_obj(struct kmem_cache *cachep, struct slab *slabp,
2640 int nodeid)
78d382d7 2641{
8fea4e96 2642 void *objp = index_to_obj(cachep, slabp, slabp->free);
78d382d7
MD
2643 kmem_bufctl_t next;
2644
2645 slabp->inuse++;
2646 next = slab_bufctl(slabp)[slabp->free];
2647#if DEBUG
2648 slab_bufctl(slabp)[slabp->free] = BUFCTL_FREE;
2649 WARN_ON(slabp->nodeid != nodeid);
2650#endif
2651 slabp->free = next;
2652
2653 return objp;
2654}
2655
a737b3e2
AM
2656static void slab_put_obj(struct kmem_cache *cachep, struct slab *slabp,
2657 void *objp, int nodeid)
78d382d7 2658{
8fea4e96 2659 unsigned int objnr = obj_to_index(cachep, slabp, objp);
78d382d7
MD
2660
2661#if DEBUG
2662 /* Verify that the slab belongs to the intended node */
2663 WARN_ON(slabp->nodeid != nodeid);
2664
871751e2 2665 if (slab_bufctl(slabp)[objnr] + 1 <= SLAB_LIMIT + 1) {
78d382d7 2666 printk(KERN_ERR "slab: double free detected in cache "
a737b3e2 2667 "'%s', objp %p\n", cachep->name, objp);
78d382d7
MD
2668 BUG();
2669 }
2670#endif
2671 slab_bufctl(slabp)[objnr] = slabp->free;
2672 slabp->free = objnr;
2673 slabp->inuse--;
2674}
2675
4776874f
PE
2676/*
2677 * Map pages beginning at addr to the given cache and slab. This is required
2678 * for the slab allocator to be able to lookup the cache and slab of a
2679 * virtual address for kfree, ksize, kmem_ptr_validate, and slab debugging.
2680 */
2681static void slab_map_pages(struct kmem_cache *cache, struct slab *slab,
2682 void *addr)
1da177e4 2683{
4776874f 2684 int nr_pages;
1da177e4
LT
2685 struct page *page;
2686
4776874f 2687 page = virt_to_page(addr);
84097518 2688
4776874f 2689 nr_pages = 1;
84097518 2690 if (likely(!PageCompound(page)))
4776874f
PE
2691 nr_pages <<= cache->gfporder;
2692
1da177e4 2693 do {
4776874f
PE
2694 page_set_cache(page, cache);
2695 page_set_slab(page, slab);
1da177e4 2696 page++;
4776874f 2697 } while (--nr_pages);
1da177e4
LT
2698}
2699
2700/*
2701 * Grow (by 1) the number of slabs within a cache. This is called by
2702 * kmem_cache_alloc() when there are no active objs left in a cache.
2703 */
3c517a61
CL
2704static int cache_grow(struct kmem_cache *cachep,
2705 gfp_t flags, int nodeid, void *objp)
1da177e4 2706{
b28a02de 2707 struct slab *slabp;
b28a02de
PE
2708 size_t offset;
2709 gfp_t local_flags;
2710 unsigned long ctor_flags;
e498be7d 2711 struct kmem_list3 *l3;
1da177e4 2712
a737b3e2
AM
2713 /*
2714 * Be lazy and only check for valid flags here, keeping it out of the
2715 * critical path in kmem_cache_alloc().
1da177e4 2716 */
441e143e 2717 BUG_ON(flags & ~(GFP_DMA | GFP_LEVEL_MASK | __GFP_NO_GROW));
6e0eaa4b 2718 if (flags & __GFP_NO_GROW)
1da177e4
LT
2719 return 0;
2720
2721 ctor_flags = SLAB_CTOR_CONSTRUCTOR;
a06d72c1 2722 local_flags = (flags & GFP_LEVEL_MASK);
1da177e4
LT
2723 if (!(local_flags & __GFP_WAIT))
2724 /*
2725 * Not allowed to sleep. Need to tell a constructor about
2726 * this - it might need to know...
2727 */
2728 ctor_flags |= SLAB_CTOR_ATOMIC;
2729
2e1217cf 2730 /* Take the l3 list lock to change the colour_next on this node */
1da177e4 2731 check_irq_off();
2e1217cf
RT
2732 l3 = cachep->nodelists[nodeid];
2733 spin_lock(&l3->list_lock);
1da177e4
LT
2734
2735 /* Get colour for the slab, and cal the next value. */
2e1217cf
RT
2736 offset = l3->colour_next;
2737 l3->colour_next++;
2738 if (l3->colour_next >= cachep->colour)
2739 l3->colour_next = 0;
2740 spin_unlock(&l3->list_lock);
1da177e4 2741
2e1217cf 2742 offset *= cachep->colour_off;
1da177e4
LT
2743
2744 if (local_flags & __GFP_WAIT)
2745 local_irq_enable();
2746
2747 /*
2748 * The test for missing atomic flag is performed here, rather than
2749 * the more obvious place, simply to reduce the critical path length
2750 * in kmem_cache_alloc(). If a caller is seriously mis-behaving they
2751 * will eventually be caught here (where it matters).
2752 */
2753 kmem_flagcheck(cachep, flags);
2754
a737b3e2
AM
2755 /*
2756 * Get mem for the objs. Attempt to allocate a physical page from
2757 * 'nodeid'.
e498be7d 2758 */
3c517a61
CL
2759 if (!objp)
2760 objp = kmem_getpages(cachep, flags, nodeid);
a737b3e2 2761 if (!objp)
1da177e4
LT
2762 goto failed;
2763
2764 /* Get slab management. */
3c517a61
CL
2765 slabp = alloc_slabmgmt(cachep, objp, offset,
2766 local_flags & ~GFP_THISNODE, nodeid);
a737b3e2 2767 if (!slabp)
1da177e4
LT
2768 goto opps1;
2769
e498be7d 2770 slabp->nodeid = nodeid;
4776874f 2771 slab_map_pages(cachep, slabp, objp);
1da177e4
LT
2772
2773 cache_init_objs(cachep, slabp, ctor_flags);
2774
2775 if (local_flags & __GFP_WAIT)
2776 local_irq_disable();
2777 check_irq_off();
e498be7d 2778 spin_lock(&l3->list_lock);
1da177e4
LT
2779
2780 /* Make slab active. */
e498be7d 2781 list_add_tail(&slabp->list, &(l3->slabs_free));
1da177e4 2782 STATS_INC_GROWN(cachep);
e498be7d
CL
2783 l3->free_objects += cachep->num;
2784 spin_unlock(&l3->list_lock);
1da177e4 2785 return 1;
a737b3e2 2786opps1:
1da177e4 2787 kmem_freepages(cachep, objp);
a737b3e2 2788failed:
1da177e4
LT
2789 if (local_flags & __GFP_WAIT)
2790 local_irq_disable();
2791 return 0;
2792}
2793
2794#if DEBUG
2795
2796/*
2797 * Perform extra freeing checks:
2798 * - detect bad pointers.
2799 * - POISON/RED_ZONE checking
2800 * - destructor calls, for caches with POISON+dtor
2801 */
2802static void kfree_debugcheck(const void *objp)
2803{
2804 struct page *page;
2805
2806 if (!virt_addr_valid(objp)) {
2807 printk(KERN_ERR "kfree_debugcheck: out of range ptr %lxh.\n",
b28a02de
PE
2808 (unsigned long)objp);
2809 BUG();
1da177e4
LT
2810 }
2811 page = virt_to_page(objp);
2812 if (!PageSlab(page)) {
b28a02de
PE
2813 printk(KERN_ERR "kfree_debugcheck: bad ptr %lxh.\n",
2814 (unsigned long)objp);
1da177e4
LT
2815 BUG();
2816 }
2817}
2818
58ce1fd5
PE
2819static inline void verify_redzone_free(struct kmem_cache *cache, void *obj)
2820{
2821 unsigned long redzone1, redzone2;
2822
2823 redzone1 = *dbg_redzone1(cache, obj);
2824 redzone2 = *dbg_redzone2(cache, obj);
2825
2826 /*
2827 * Redzone is ok.
2828 */
2829 if (redzone1 == RED_ACTIVE && redzone2 == RED_ACTIVE)
2830 return;
2831
2832 if (redzone1 == RED_INACTIVE && redzone2 == RED_INACTIVE)
2833 slab_error(cache, "double free detected");
2834 else
2835 slab_error(cache, "memory outside object was overwritten");
2836
2837 printk(KERN_ERR "%p: redzone 1:0x%lx, redzone 2:0x%lx.\n",
2838 obj, redzone1, redzone2);
2839}
2840
343e0d7a 2841static void *cache_free_debugcheck(struct kmem_cache *cachep, void *objp,
b28a02de 2842 void *caller)
1da177e4
LT
2843{
2844 struct page *page;
2845 unsigned int objnr;
2846 struct slab *slabp;
2847
3dafccf2 2848 objp -= obj_offset(cachep);
1da177e4
LT
2849 kfree_debugcheck(objp);
2850 page = virt_to_page(objp);
2851
065d41cb 2852 slabp = page_get_slab(page);
1da177e4
LT
2853
2854 if (cachep->flags & SLAB_RED_ZONE) {
58ce1fd5 2855 verify_redzone_free(cachep, objp);
1da177e4
LT
2856 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2857 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2858 }
2859 if (cachep->flags & SLAB_STORE_USER)
2860 *dbg_userword(cachep, objp) = caller;
2861
8fea4e96 2862 objnr = obj_to_index(cachep, slabp, objp);
1da177e4
LT
2863
2864 BUG_ON(objnr >= cachep->num);
8fea4e96 2865 BUG_ON(objp != index_to_obj(cachep, slabp, objnr));
1da177e4
LT
2866
2867 if (cachep->flags & SLAB_DEBUG_INITIAL) {
a737b3e2
AM
2868 /*
2869 * Need to call the slab's constructor so the caller can
2870 * perform a verify of its state (debugging). Called without
2871 * the cache-lock held.
1da177e4 2872 */
3dafccf2 2873 cachep->ctor(objp + obj_offset(cachep),
b28a02de 2874 cachep, SLAB_CTOR_CONSTRUCTOR | SLAB_CTOR_VERIFY);
1da177e4
LT
2875 }
2876 if (cachep->flags & SLAB_POISON && cachep->dtor) {
2877 /* we want to cache poison the object,
2878 * call the destruction callback
2879 */
3dafccf2 2880 cachep->dtor(objp + obj_offset(cachep), cachep, 0);
1da177e4 2881 }
871751e2
AV
2882#ifdef CONFIG_DEBUG_SLAB_LEAK
2883 slab_bufctl(slabp)[objnr] = BUFCTL_FREE;
2884#endif
1da177e4
LT
2885 if (cachep->flags & SLAB_POISON) {
2886#ifdef CONFIG_DEBUG_PAGEALLOC
a737b3e2 2887 if ((cachep->buffer_size % PAGE_SIZE)==0 && OFF_SLAB(cachep)) {
1da177e4 2888 store_stackinfo(cachep, objp, (unsigned long)caller);
b28a02de 2889 kernel_map_pages(virt_to_page(objp),
3dafccf2 2890 cachep->buffer_size / PAGE_SIZE, 0);
1da177e4
LT
2891 } else {
2892 poison_obj(cachep, objp, POISON_FREE);
2893 }
2894#else
2895 poison_obj(cachep, objp, POISON_FREE);
2896#endif
2897 }
2898 return objp;
2899}
2900
343e0d7a 2901static void check_slabp(struct kmem_cache *cachep, struct slab *slabp)
1da177e4
LT
2902{
2903 kmem_bufctl_t i;
2904 int entries = 0;
b28a02de 2905
1da177e4
LT
2906 /* Check slab's freelist to see if this obj is there. */
2907 for (i = slabp->free; i != BUFCTL_END; i = slab_bufctl(slabp)[i]) {
2908 entries++;
2909 if (entries > cachep->num || i >= cachep->num)
2910 goto bad;
2911 }
2912 if (entries != cachep->num - slabp->inuse) {
a737b3e2
AM
2913bad:
2914 printk(KERN_ERR "slab: Internal list corruption detected in "
2915 "cache '%s'(%d), slabp %p(%d). Hexdump:\n",
2916 cachep->name, cachep->num, slabp, slabp->inuse);
b28a02de 2917 for (i = 0;
264132bc 2918 i < sizeof(*slabp) + cachep->num * sizeof(kmem_bufctl_t);
b28a02de 2919 i++) {
a737b3e2 2920 if (i % 16 == 0)
1da177e4 2921 printk("\n%03x:", i);
b28a02de 2922 printk(" %02x", ((unsigned char *)slabp)[i]);
1da177e4
LT
2923 }
2924 printk("\n");
2925 BUG();
2926 }
2927}
2928#else
2929#define kfree_debugcheck(x) do { } while(0)
2930#define cache_free_debugcheck(x,objp,z) (objp)
2931#define check_slabp(x,y) do { } while(0)
2932#endif
2933
343e0d7a 2934static void *cache_alloc_refill(struct kmem_cache *cachep, gfp_t flags)
1da177e4
LT
2935{
2936 int batchcount;
2937 struct kmem_list3 *l3;
2938 struct array_cache *ac;
1ca4cb24
PE
2939 int node;
2940
2941 node = numa_node_id();
1da177e4
LT
2942
2943 check_irq_off();
9a2dba4b 2944 ac = cpu_cache_get(cachep);
a737b3e2 2945retry:
1da177e4
LT
2946 batchcount = ac->batchcount;
2947 if (!ac->touched && batchcount > BATCHREFILL_LIMIT) {
a737b3e2
AM
2948 /*
2949 * If there was little recent activity on this cache, then
2950 * perform only a partial refill. Otherwise we could generate
2951 * refill bouncing.
1da177e4
LT
2952 */
2953 batchcount = BATCHREFILL_LIMIT;
2954 }
1ca4cb24 2955 l3 = cachep->nodelists[node];
e498be7d
CL
2956
2957 BUG_ON(ac->avail > 0 || !l3);
2958 spin_lock(&l3->list_lock);
1da177e4 2959
3ded175a
CL
2960 /* See if we can refill from the shared array */
2961 if (l3->shared && transfer_objects(ac, l3->shared, batchcount))
2962 goto alloc_done;
2963
1da177e4
LT
2964 while (batchcount > 0) {
2965 struct list_head *entry;
2966 struct slab *slabp;
2967 /* Get slab alloc is to come from. */
2968 entry = l3->slabs_partial.next;
2969 if (entry == &l3->slabs_partial) {
2970 l3->free_touched = 1;
2971 entry = l3->slabs_free.next;
2972 if (entry == &l3->slabs_free)
2973 goto must_grow;
2974 }
2975
2976 slabp = list_entry(entry, struct slab, list);
2977 check_slabp(cachep, slabp);
2978 check_spinlock_acquired(cachep);
2979 while (slabp->inuse < cachep->num && batchcount--) {
1da177e4
LT
2980 STATS_INC_ALLOCED(cachep);
2981 STATS_INC_ACTIVE(cachep);
2982 STATS_SET_HIGH(cachep);
2983
78d382d7 2984 ac->entry[ac->avail++] = slab_get_obj(cachep, slabp,
1ca4cb24 2985 node);
1da177e4
LT
2986 }
2987 check_slabp(cachep, slabp);
2988
2989 /* move slabp to correct slabp list: */
2990 list_del(&slabp->list);
2991 if (slabp->free == BUFCTL_END)
2992 list_add(&slabp->list, &l3->slabs_full);
2993 else
2994 list_add(&slabp->list, &l3->slabs_partial);
2995 }
2996
a737b3e2 2997must_grow:
1da177e4 2998 l3->free_objects -= ac->avail;
a737b3e2 2999alloc_done:
e498be7d 3000 spin_unlock(&l3->list_lock);
1da177e4
LT
3001
3002 if (unlikely(!ac->avail)) {
3003 int x;
3c517a61 3004 x = cache_grow(cachep, flags | GFP_THISNODE, node, NULL);
e498be7d 3005
a737b3e2 3006 /* cache_grow can reenable interrupts, then ac could change. */
9a2dba4b 3007 ac = cpu_cache_get(cachep);
a737b3e2 3008 if (!x && ac->avail == 0) /* no objects in sight? abort */
1da177e4
LT
3009 return NULL;
3010
a737b3e2 3011 if (!ac->avail) /* objects refilled by interrupt? */
1da177e4
LT
3012 goto retry;
3013 }
3014 ac->touched = 1;
e498be7d 3015 return ac->entry[--ac->avail];
1da177e4
LT
3016}
3017
a737b3e2
AM
3018static inline void cache_alloc_debugcheck_before(struct kmem_cache *cachep,
3019 gfp_t flags)
1da177e4
LT
3020{
3021 might_sleep_if(flags & __GFP_WAIT);
3022#if DEBUG
3023 kmem_flagcheck(cachep, flags);
3024#endif
3025}
3026
3027#if DEBUG
a737b3e2
AM
3028static void *cache_alloc_debugcheck_after(struct kmem_cache *cachep,
3029 gfp_t flags, void *objp, void *caller)
1da177e4 3030{
b28a02de 3031 if (!objp)
1da177e4 3032 return objp;
b28a02de 3033 if (cachep->flags & SLAB_POISON) {
1da177e4 3034#ifdef CONFIG_DEBUG_PAGEALLOC
3dafccf2 3035 if ((cachep->buffer_size % PAGE_SIZE) == 0 && OFF_SLAB(cachep))
b28a02de 3036 kernel_map_pages(virt_to_page(objp),
3dafccf2 3037 cachep->buffer_size / PAGE_SIZE, 1);
1da177e4
LT
3038 else
3039 check_poison_obj(cachep, objp);
3040#else
3041 check_poison_obj(cachep, objp);
3042#endif
3043 poison_obj(cachep, objp, POISON_INUSE);
3044 }
3045 if (cachep->flags & SLAB_STORE_USER)
3046 *dbg_userword(cachep, objp) = caller;
3047
3048 if (cachep->flags & SLAB_RED_ZONE) {
a737b3e2
AM
3049 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE ||
3050 *dbg_redzone2(cachep, objp) != RED_INACTIVE) {
3051 slab_error(cachep, "double free, or memory outside"
3052 " object was overwritten");
b28a02de 3053 printk(KERN_ERR
a737b3e2
AM
3054 "%p: redzone 1:0x%lx, redzone 2:0x%lx\n",
3055 objp, *dbg_redzone1(cachep, objp),
3056 *dbg_redzone2(cachep, objp));
1da177e4
LT
3057 }
3058 *dbg_redzone1(cachep, objp) = RED_ACTIVE;
3059 *dbg_redzone2(cachep, objp) = RED_ACTIVE;
3060 }
871751e2
AV
3061#ifdef CONFIG_DEBUG_SLAB_LEAK
3062 {
3063 struct slab *slabp;
3064 unsigned objnr;
3065
3066 slabp = page_get_slab(virt_to_page(objp));
3067 objnr = (unsigned)(objp - slabp->s_mem) / cachep->buffer_size;
3068 slab_bufctl(slabp)[objnr] = BUFCTL_ACTIVE;
3069 }
3070#endif
3dafccf2 3071 objp += obj_offset(cachep);
1da177e4 3072 if (cachep->ctor && cachep->flags & SLAB_POISON) {
b28a02de 3073 unsigned long ctor_flags = SLAB_CTOR_CONSTRUCTOR;
1da177e4
LT
3074
3075 if (!(flags & __GFP_WAIT))
3076 ctor_flags |= SLAB_CTOR_ATOMIC;
3077
3078 cachep->ctor(objp, cachep, ctor_flags);
b28a02de 3079 }
a44b56d3
KH
3080#if ARCH_SLAB_MINALIGN
3081 if ((u32)objp & (ARCH_SLAB_MINALIGN-1)) {
3082 printk(KERN_ERR "0x%p: not aligned to ARCH_SLAB_MINALIGN=%d\n",
3083 objp, ARCH_SLAB_MINALIGN);
3084 }
3085#endif
1da177e4
LT
3086 return objp;
3087}
3088#else
3089#define cache_alloc_debugcheck_after(a,b,objp,d) (objp)
3090#endif
3091
8a8b6502
AM
3092#ifdef CONFIG_FAILSLAB
3093
3094static struct failslab_attr {
3095
3096 struct fault_attr attr;
3097
3098 u32 ignore_gfp_wait;
3099#ifdef CONFIG_FAULT_INJECTION_DEBUG_FS
3100 struct dentry *ignore_gfp_wait_file;
3101#endif
3102
3103} failslab = {
3104 .attr = FAULT_ATTR_INITIALIZER,
6b1b60f4 3105 .ignore_gfp_wait = 1,
8a8b6502
AM
3106};
3107
3108static int __init setup_failslab(char *str)
3109{
3110 return setup_fault_attr(&failslab.attr, str);
3111}
3112__setup("failslab=", setup_failslab);
3113
3114static int should_failslab(struct kmem_cache *cachep, gfp_t flags)
3115{
3116 if (cachep == &cache_cache)
3117 return 0;
3118 if (flags & __GFP_NOFAIL)
3119 return 0;
3120 if (failslab.ignore_gfp_wait && (flags & __GFP_WAIT))
3121 return 0;
3122
3123 return should_fail(&failslab.attr, obj_size(cachep));
3124}
3125
3126#ifdef CONFIG_FAULT_INJECTION_DEBUG_FS
3127
3128static int __init failslab_debugfs(void)
3129{
3130 mode_t mode = S_IFREG | S_IRUSR | S_IWUSR;
3131 struct dentry *dir;
3132 int err;
3133
3134 err = init_fault_attr_dentries(&failslab.attr, "failslab");
3135 if (err)
3136 return err;
3137 dir = failslab.attr.dentries.dir;
3138
3139 failslab.ignore_gfp_wait_file =
3140 debugfs_create_bool("ignore-gfp-wait", mode, dir,
3141 &failslab.ignore_gfp_wait);
3142
3143 if (!failslab.ignore_gfp_wait_file) {
3144 err = -ENOMEM;
3145 debugfs_remove(failslab.ignore_gfp_wait_file);
3146 cleanup_fault_attr_dentries(&failslab.attr);
3147 }
3148
3149 return err;
3150}
3151
3152late_initcall(failslab_debugfs);
3153
3154#endif /* CONFIG_FAULT_INJECTION_DEBUG_FS */
3155
3156#else /* CONFIG_FAILSLAB */
3157
3158static inline int should_failslab(struct kmem_cache *cachep, gfp_t flags)
3159{
3160 return 0;
3161}
3162
3163#endif /* CONFIG_FAILSLAB */
3164
343e0d7a 3165static inline void *____cache_alloc(struct kmem_cache *cachep, gfp_t flags)
1da177e4 3166{
b28a02de 3167 void *objp;
1da177e4
LT
3168 struct array_cache *ac;
3169
5c382300 3170 check_irq_off();
8a8b6502
AM
3171
3172 if (should_failslab(cachep, flags))
3173 return NULL;
3174
9a2dba4b 3175 ac = cpu_cache_get(cachep);
1da177e4
LT
3176 if (likely(ac->avail)) {
3177 STATS_INC_ALLOCHIT(cachep);
3178 ac->touched = 1;
e498be7d 3179 objp = ac->entry[--ac->avail];
1da177e4
LT
3180 } else {
3181 STATS_INC_ALLOCMISS(cachep);
3182 objp = cache_alloc_refill(cachep, flags);
3183 }
5c382300
AK
3184 return objp;
3185}
3186
a737b3e2
AM
3187static __always_inline void *__cache_alloc(struct kmem_cache *cachep,
3188 gfp_t flags, void *caller)
5c382300
AK
3189{
3190 unsigned long save_flags;
de3083ec 3191 void *objp = NULL;
5c382300
AK
3192
3193 cache_alloc_debugcheck_before(cachep, flags);
3194
3195 local_irq_save(save_flags);
de3083ec 3196
765c4507
CL
3197 if (unlikely(NUMA_BUILD &&
3198 current->flags & (PF_SPREAD_SLAB | PF_MEMPOLICY)))
de3083ec 3199 objp = alternate_node_alloc(cachep, flags);
de3083ec
CL
3200
3201 if (!objp)
3202 objp = ____cache_alloc(cachep, flags);
765c4507
CL
3203 /*
3204 * We may just have run out of memory on the local node.
8b98c169 3205 * ____cache_alloc_node() knows how to locate memory on other nodes
765c4507
CL
3206 */
3207 if (NUMA_BUILD && !objp)
8b98c169 3208 objp = ____cache_alloc_node(cachep, flags, numa_node_id());
1da177e4 3209 local_irq_restore(save_flags);
34342e86 3210 objp = cache_alloc_debugcheck_after(cachep, flags, objp,
7fd6b141 3211 caller);
34342e86 3212 prefetchw(objp);
1da177e4
LT
3213 return objp;
3214}
3215
e498be7d 3216#ifdef CONFIG_NUMA
c61afb18 3217/*
b2455396 3218 * Try allocating on another node if PF_SPREAD_SLAB|PF_MEMPOLICY.
c61afb18
PJ
3219 *
3220 * If we are in_interrupt, then process context, including cpusets and
3221 * mempolicy, may not apply and should not be used for allocation policy.
3222 */
3223static void *alternate_node_alloc(struct kmem_cache *cachep, gfp_t flags)
3224{
3225 int nid_alloc, nid_here;
3226
765c4507 3227 if (in_interrupt() || (flags & __GFP_THISNODE))
c61afb18
PJ
3228 return NULL;
3229 nid_alloc = nid_here = numa_node_id();
3230 if (cpuset_do_slab_mem_spread() && (cachep->flags & SLAB_MEM_SPREAD))
3231 nid_alloc = cpuset_mem_spread_node();
3232 else if (current->mempolicy)
3233 nid_alloc = slab_node(current->mempolicy);
3234 if (nid_alloc != nid_here)
8b98c169 3235 return ____cache_alloc_node(cachep, flags, nid_alloc);
c61afb18
PJ
3236 return NULL;
3237}
3238
765c4507
CL
3239/*
3240 * Fallback function if there was no memory available and no objects on a
3c517a61
CL
3241 * certain node and fall back is permitted. First we scan all the
3242 * available nodelists for available objects. If that fails then we
3243 * perform an allocation without specifying a node. This allows the page
3244 * allocator to do its reclaim / fallback magic. We then insert the
3245 * slab into the proper nodelist and then allocate from it.
765c4507
CL
3246 */
3247void *fallback_alloc(struct kmem_cache *cache, gfp_t flags)
3248{
3249 struct zonelist *zonelist = &NODE_DATA(slab_node(current->mempolicy))
3250 ->node_zonelists[gfp_zone(flags)];
3251 struct zone **z;
3252 void *obj = NULL;
3c517a61 3253 int nid;
765c4507 3254
3c517a61
CL
3255retry:
3256 /*
3257 * Look through allowed nodes for objects available
3258 * from existing per node queues.
3259 */
aedb0eb1 3260 for (z = zonelist->zones; *z && !obj; z++) {
3c517a61 3261 nid = zone_to_nid(*z);
aedb0eb1 3262
b8b50b65 3263 if (cpuset_zone_allowed(*z, flags | __GFP_HARDWALL) &&
3c517a61
CL
3264 cache->nodelists[nid] &&
3265 cache->nodelists[nid]->free_objects)
3266 obj = ____cache_alloc_node(cache,
3267 flags | GFP_THISNODE, nid);
3268 }
3269
3270 if (!obj) {
3271 /*
3272 * This allocation will be performed within the constraints
3273 * of the current cpuset / memory policy requirements.
3274 * We may trigger various forms of reclaim on the allowed
3275 * set and go into memory reserves if necessary.
3276 */
3277 obj = kmem_getpages(cache, flags, -1);
3278 if (obj) {
3279 /*
3280 * Insert into the appropriate per node queues
3281 */
3282 nid = page_to_nid(virt_to_page(obj));
3283 if (cache_grow(cache, flags, nid, obj)) {
3284 obj = ____cache_alloc_node(cache,
3285 flags | GFP_THISNODE, nid);
3286 if (!obj)
3287 /*
3288 * Another processor may allocate the
3289 * objects in the slab since we are
3290 * not holding any locks.
3291 */
3292 goto retry;
3293 } else {
3294 kmem_freepages(cache, obj);
3295 obj = NULL;
3296 }
3297 }
aedb0eb1 3298 }
765c4507
CL
3299 return obj;
3300}
3301
e498be7d
CL
3302/*
3303 * A interface to enable slab creation on nodeid
1da177e4 3304 */
8b98c169 3305static void *____cache_alloc_node(struct kmem_cache *cachep, gfp_t flags,
a737b3e2 3306 int nodeid)
e498be7d
CL
3307{
3308 struct list_head *entry;
b28a02de
PE
3309 struct slab *slabp;
3310 struct kmem_list3 *l3;
3311 void *obj;
b28a02de
PE
3312 int x;
3313
3314 l3 = cachep->nodelists[nodeid];
3315 BUG_ON(!l3);
3316
a737b3e2 3317retry:
ca3b9b91 3318 check_irq_off();
b28a02de
PE
3319 spin_lock(&l3->list_lock);
3320 entry = l3->slabs_partial.next;
3321 if (entry == &l3->slabs_partial) {
3322 l3->free_touched = 1;
3323 entry = l3->slabs_free.next;
3324 if (entry == &l3->slabs_free)
3325 goto must_grow;
3326 }
3327
3328 slabp = list_entry(entry, struct slab, list);
3329 check_spinlock_acquired_node(cachep, nodeid);
3330 check_slabp(cachep, slabp);
3331
3332 STATS_INC_NODEALLOCS(cachep);
3333 STATS_INC_ACTIVE(cachep);
3334 STATS_SET_HIGH(cachep);
3335
3336 BUG_ON(slabp->inuse == cachep->num);
3337
78d382d7 3338 obj = slab_get_obj(cachep, slabp, nodeid);
b28a02de
PE
3339 check_slabp(cachep, slabp);
3340 l3->free_objects--;
3341 /* move slabp to correct slabp list: */
3342 list_del(&slabp->list);
3343
a737b3e2 3344 if (slabp->free == BUFCTL_END)
b28a02de 3345 list_add(&slabp->list, &l3->slabs_full);
a737b3e2 3346 else
b28a02de 3347 list_add(&slabp->list, &l3->slabs_partial);
e498be7d 3348
b28a02de
PE
3349 spin_unlock(&l3->list_lock);
3350 goto done;
e498be7d 3351
a737b3e2 3352must_grow:
b28a02de 3353 spin_unlock(&l3->list_lock);
3c517a61 3354 x = cache_grow(cachep, flags | GFP_THISNODE, nodeid, NULL);
765c4507
CL
3355 if (x)
3356 goto retry;
1da177e4 3357
765c4507
CL
3358 if (!(flags & __GFP_THISNODE))
3359 /* Unable to grow the cache. Fall back to other nodes. */
3360 return fallback_alloc(cachep, flags);
3361
3362 return NULL;
e498be7d 3363
a737b3e2 3364done:
b28a02de 3365 return obj;
e498be7d
CL
3366}
3367#endif
3368
3369/*
3370 * Caller needs to acquire correct kmem_list's list_lock
3371 */
343e0d7a 3372static void free_block(struct kmem_cache *cachep, void **objpp, int nr_objects,
b28a02de 3373 int node)
1da177e4
LT
3374{
3375 int i;
e498be7d 3376 struct kmem_list3 *l3;
1da177e4
LT
3377
3378 for (i = 0; i < nr_objects; i++) {
3379 void *objp = objpp[i];
3380 struct slab *slabp;
1da177e4 3381
6ed5eb22 3382 slabp = virt_to_slab(objp);
ff69416e 3383 l3 = cachep->nodelists[node];
1da177e4 3384 list_del(&slabp->list);
ff69416e 3385 check_spinlock_acquired_node(cachep, node);
1da177e4 3386 check_slabp(cachep, slabp);
78d382d7 3387 slab_put_obj(cachep, slabp, objp, node);
1da177e4 3388 STATS_DEC_ACTIVE(cachep);
e498be7d 3389 l3->free_objects++;
1da177e4
LT
3390 check_slabp(cachep, slabp);
3391
3392 /* fixup slab chains */
3393 if (slabp->inuse == 0) {
e498be7d
CL
3394 if (l3->free_objects > l3->free_limit) {
3395 l3->free_objects -= cachep->num;
e5ac9c5a
RT
3396 /* No need to drop any previously held
3397 * lock here, even if we have a off-slab slab
3398 * descriptor it is guaranteed to come from
3399 * a different cache, refer to comments before
3400 * alloc_slabmgmt.
3401 */
1da177e4
LT
3402 slab_destroy(cachep, slabp);
3403 } else {
e498be7d 3404 list_add(&slabp->list, &l3->slabs_free);
1da177e4
LT
3405 }
3406 } else {
3407 /* Unconditionally move a slab to the end of the
3408 * partial list on free - maximum time for the
3409 * other objects to be freed, too.
3410 */
e498be7d 3411 list_add_tail(&slabp->list, &l3->slabs_partial);
1da177e4
LT
3412 }
3413 }
3414}
3415
343e0d7a 3416static void cache_flusharray(struct kmem_cache *cachep, struct array_cache *ac)
1da177e4
LT
3417{
3418 int batchcount;
e498be7d 3419 struct kmem_list3 *l3;
ff69416e 3420 int node = numa_node_id();
1da177e4
LT
3421
3422 batchcount = ac->batchcount;
3423#if DEBUG
3424 BUG_ON(!batchcount || batchcount > ac->avail);
3425#endif
3426 check_irq_off();
ff69416e 3427 l3 = cachep->nodelists[node];
873623df 3428 spin_lock(&l3->list_lock);
e498be7d
CL
3429 if (l3->shared) {
3430 struct array_cache *shared_array = l3->shared;
b28a02de 3431 int max = shared_array->limit - shared_array->avail;
1da177e4
LT
3432 if (max) {
3433 if (batchcount > max)
3434 batchcount = max;
e498be7d 3435 memcpy(&(shared_array->entry[shared_array->avail]),
b28a02de 3436 ac->entry, sizeof(void *) * batchcount);
1da177e4
LT
3437 shared_array->avail += batchcount;
3438 goto free_done;
3439 }
3440 }
3441
ff69416e 3442 free_block(cachep, ac->entry, batchcount, node);
a737b3e2 3443free_done:
1da177e4
LT
3444#if STATS
3445 {
3446 int i = 0;
3447 struct list_head *p;
3448
e498be7d
CL
3449 p = l3->slabs_free.next;
3450 while (p != &(l3->slabs_free)) {
1da177e4
LT
3451 struct slab *slabp;
3452
3453 slabp = list_entry(p, struct slab, list);
3454 BUG_ON(slabp->inuse);
3455
3456 i++;
3457 p = p->next;
3458 }
3459 STATS_SET_FREEABLE(cachep, i);
3460 }
3461#endif
e498be7d 3462 spin_unlock(&l3->list_lock);
1da177e4 3463 ac->avail -= batchcount;
a737b3e2 3464 memmove(ac->entry, &(ac->entry[batchcount]), sizeof(void *)*ac->avail);
1da177e4
LT
3465}
3466
3467/*
a737b3e2
AM
3468 * Release an obj back to its cache. If the obj has a constructed state, it must
3469 * be in this state _before_ it is released. Called with disabled ints.
1da177e4 3470 */
873623df 3471static inline void __cache_free(struct kmem_cache *cachep, void *objp)
1da177e4 3472{
9a2dba4b 3473 struct array_cache *ac = cpu_cache_get(cachep);
1da177e4
LT
3474
3475 check_irq_off();
3476 objp = cache_free_debugcheck(cachep, objp, __builtin_return_address(0));
3477
873623df 3478 if (cache_free_alien(cachep, objp))
729bd0b7
PE
3479 return;
3480
1da177e4
LT
3481 if (likely(ac->avail < ac->limit)) {
3482 STATS_INC_FREEHIT(cachep);
e498be7d 3483 ac->entry[ac->avail++] = objp;
1da177e4
LT
3484 return;
3485 } else {
3486 STATS_INC_FREEMISS(cachep);
3487 cache_flusharray(cachep, ac);
e498be7d 3488 ac->entry[ac->avail++] = objp;
1da177e4
LT
3489 }
3490}
3491
3492/**
3493 * kmem_cache_alloc - Allocate an object
3494 * @cachep: The cache to allocate from.
3495 * @flags: See kmalloc().
3496 *
3497 * Allocate an object from this cache. The flags are only relevant
3498 * if the cache has no available objects.
3499 */
343e0d7a 3500void *kmem_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
1da177e4 3501{
7fd6b141 3502 return __cache_alloc(cachep, flags, __builtin_return_address(0));
1da177e4
LT
3503}
3504EXPORT_SYMBOL(kmem_cache_alloc);
3505
a8c0f9a4 3506/**
b8008b2b 3507 * kmem_cache_zalloc - Allocate an object. The memory is set to zero.
a8c0f9a4
PE
3508 * @cache: The cache to allocate from.
3509 * @flags: See kmalloc().
3510 *
3511 * Allocate an object from this cache and set the allocated memory to zero.
3512 * The flags are only relevant if the cache has no available objects.
3513 */
3514void *kmem_cache_zalloc(struct kmem_cache *cache, gfp_t flags)
3515{
3516 void *ret = __cache_alloc(cache, flags, __builtin_return_address(0));
3517 if (ret)
3518 memset(ret, 0, obj_size(cache));
3519 return ret;
3520}
3521EXPORT_SYMBOL(kmem_cache_zalloc);
3522
1da177e4
LT
3523/**
3524 * kmem_ptr_validate - check if an untrusted pointer might
3525 * be a slab entry.
3526 * @cachep: the cache we're checking against
3527 * @ptr: pointer to validate
3528 *
3529 * This verifies that the untrusted pointer looks sane:
3530 * it is _not_ a guarantee that the pointer is actually
3531 * part of the slab cache in question, but it at least
3532 * validates that the pointer can be dereferenced and
3533 * looks half-way sane.
3534 *
3535 * Currently only used for dentry validation.
3536 */
343e0d7a 3537int fastcall kmem_ptr_validate(struct kmem_cache *cachep, void *ptr)
1da177e4 3538{
b28a02de 3539 unsigned long addr = (unsigned long)ptr;
1da177e4 3540 unsigned long min_addr = PAGE_OFFSET;
b28a02de 3541 unsigned long align_mask = BYTES_PER_WORD - 1;
3dafccf2 3542 unsigned long size = cachep->buffer_size;
1da177e4
LT
3543 struct page *page;
3544
3545 if (unlikely(addr < min_addr))
3546 goto out;
3547 if (unlikely(addr > (unsigned long)high_memory - size))
3548 goto out;
3549 if (unlikely(addr & align_mask))
3550 goto out;
3551 if (unlikely(!kern_addr_valid(addr)))
3552 goto out;
3553 if (unlikely(!kern_addr_valid(addr + size - 1)))
3554 goto out;
3555 page = virt_to_page(ptr);
3556 if (unlikely(!PageSlab(page)))
3557 goto out;
065d41cb 3558 if (unlikely(page_get_cache(page) != cachep))
1da177e4
LT
3559 goto out;
3560 return 1;
a737b3e2 3561out:
1da177e4
LT
3562 return 0;
3563}
3564
3565#ifdef CONFIG_NUMA
3566/**
3567 * kmem_cache_alloc_node - Allocate an object on the specified node
3568 * @cachep: The cache to allocate from.
3569 * @flags: See kmalloc().
3570 * @nodeid: node number of the target node.
3571 *
5bcd234d
CL
3572 * Identical to kmem_cache_alloc but it will allocate memory on the given
3573 * node, which can improve the performance for cpu bound structures.
3574 *
3575 * Fallback to other node is possible if __GFP_THISNODE is not set.
1da177e4 3576 */
8b98c169
CH
3577static __always_inline void *
3578__cache_alloc_node(struct kmem_cache *cachep, gfp_t flags,
3579 int nodeid, void *caller)
1da177e4 3580{
e498be7d 3581 unsigned long save_flags;
5bcd234d 3582 void *ptr = NULL;
1da177e4 3583
e498be7d
CL
3584 cache_alloc_debugcheck_before(cachep, flags);
3585 local_irq_save(save_flags);
18f820f6 3586
5bcd234d
CL
3587 if (unlikely(nodeid == -1))
3588 nodeid = numa_node_id();
18f820f6 3589
5bcd234d
CL
3590 if (likely(cachep->nodelists[nodeid])) {
3591 if (nodeid == numa_node_id()) {
3592 /*
3593 * Use the locally cached objects if possible.
3594 * However ____cache_alloc does not allow fallback
3595 * to other nodes. It may fail while we still have
3596 * objects on other nodes available.
3597 */
3598 ptr = ____cache_alloc(cachep, flags);
3599 }
3600 if (!ptr) {
3601 /* ___cache_alloc_node can fall back to other nodes */
3602 ptr = ____cache_alloc_node(cachep, flags, nodeid);
3603 }
3604 } else {
3605 /* Node not bootstrapped yet */
3606 if (!(flags & __GFP_THISNODE))
3607 ptr = fallback_alloc(cachep, flags);
3608 }
3609
3610 local_irq_restore(save_flags);
8b98c169 3611 ptr = cache_alloc_debugcheck_after(cachep, flags, ptr, caller);
1da177e4 3612
e498be7d 3613 return ptr;
1da177e4 3614}
8b98c169
CH
3615
3616void *kmem_cache_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid)
3617{
3618 return __cache_alloc_node(cachep, flags, nodeid,
3619 __builtin_return_address(0));
3620}
1da177e4
LT
3621EXPORT_SYMBOL(kmem_cache_alloc_node);
3622
8b98c169
CH
3623static __always_inline void *
3624__do_kmalloc_node(size_t size, gfp_t flags, int node, void *caller)
97e2bde4 3625{
343e0d7a 3626 struct kmem_cache *cachep;
97e2bde4
MS
3627
3628 cachep = kmem_find_general_cachep(size, flags);
3629 if (unlikely(cachep == NULL))
3630 return NULL;
3631 return kmem_cache_alloc_node(cachep, flags, node);
3632}
8b98c169
CH
3633
3634#ifdef CONFIG_DEBUG_SLAB
3635void *__kmalloc_node(size_t size, gfp_t flags, int node)
3636{
3637 return __do_kmalloc_node(size, flags, node,
3638 __builtin_return_address(0));
3639}
dbe5e69d 3640EXPORT_SYMBOL(__kmalloc_node);
8b98c169
CH
3641
3642void *__kmalloc_node_track_caller(size_t size, gfp_t flags,
3643 int node, void *caller)
3644{
3645 return __do_kmalloc_node(size, flags, node, caller);
3646}
3647EXPORT_SYMBOL(__kmalloc_node_track_caller);
3648#else
3649void *__kmalloc_node(size_t size, gfp_t flags, int node)
3650{
3651 return __do_kmalloc_node(size, flags, node, NULL);
3652}
3653EXPORT_SYMBOL(__kmalloc_node);
3654#endif /* CONFIG_DEBUG_SLAB */
3655#endif /* CONFIG_NUMA */
1da177e4
LT
3656
3657/**
800590f5 3658 * __do_kmalloc - allocate memory
1da177e4 3659 * @size: how many bytes of memory are required.
800590f5 3660 * @flags: the type of memory to allocate (see kmalloc).
911851e6 3661 * @caller: function caller for debug tracking of the caller
1da177e4 3662 */
7fd6b141
PE
3663static __always_inline void *__do_kmalloc(size_t size, gfp_t flags,
3664 void *caller)
1da177e4 3665{
343e0d7a 3666 struct kmem_cache *cachep;
1da177e4 3667
97e2bde4
MS
3668 /* If you want to save a few bytes .text space: replace
3669 * __ with kmem_.
3670 * Then kmalloc uses the uninlined functions instead of the inline
3671 * functions.
3672 */
3673 cachep = __find_general_cachep(size, flags);
dbdb9045
AM
3674 if (unlikely(cachep == NULL))
3675 return NULL;
7fd6b141
PE
3676 return __cache_alloc(cachep, flags, caller);
3677}
3678
7fd6b141 3679
1d2c8eea 3680#ifdef CONFIG_DEBUG_SLAB
7fd6b141
PE
3681void *__kmalloc(size_t size, gfp_t flags)
3682{
871751e2 3683 return __do_kmalloc(size, flags, __builtin_return_address(0));
1da177e4
LT
3684}
3685EXPORT_SYMBOL(__kmalloc);
3686
7fd6b141
PE
3687void *__kmalloc_track_caller(size_t size, gfp_t flags, void *caller)
3688{
3689 return __do_kmalloc(size, flags, caller);
3690}
3691EXPORT_SYMBOL(__kmalloc_track_caller);
1d2c8eea
CH
3692
3693#else
3694void *__kmalloc(size_t size, gfp_t flags)
3695{
3696 return __do_kmalloc(size, flags, NULL);
3697}
3698EXPORT_SYMBOL(__kmalloc);
7fd6b141
PE
3699#endif
3700
1da177e4
LT
3701/**
3702 * kmem_cache_free - Deallocate an object
3703 * @cachep: The cache the allocation was from.
3704 * @objp: The previously allocated object.
3705 *
3706 * Free an object which was previously allocated from this
3707 * cache.
3708 */
343e0d7a 3709void kmem_cache_free(struct kmem_cache *cachep, void *objp)
1da177e4
LT
3710{
3711 unsigned long flags;
3712
ddc2e812
PE
3713 BUG_ON(virt_to_cache(objp) != cachep);
3714
1da177e4 3715 local_irq_save(flags);
873623df 3716 __cache_free(cachep, objp);
1da177e4
LT
3717 local_irq_restore(flags);
3718}
3719EXPORT_SYMBOL(kmem_cache_free);
3720
1da177e4
LT
3721/**
3722 * kfree - free previously allocated memory
3723 * @objp: pointer returned by kmalloc.
3724 *
80e93eff
PE
3725 * If @objp is NULL, no operation is performed.
3726 *
1da177e4
LT
3727 * Don't free memory not originally allocated by kmalloc()
3728 * or you will run into trouble.
3729 */
3730void kfree(const void *objp)
3731{
343e0d7a 3732 struct kmem_cache *c;
1da177e4
LT
3733 unsigned long flags;
3734
3735 if (unlikely(!objp))
3736 return;
3737 local_irq_save(flags);
3738 kfree_debugcheck(objp);
6ed5eb22 3739 c = virt_to_cache(objp);
f9b8404c 3740 debug_check_no_locks_freed(objp, obj_size(c));
873623df 3741 __cache_free(c, (void *)objp);
1da177e4
LT
3742 local_irq_restore(flags);
3743}
3744EXPORT_SYMBOL(kfree);
3745
343e0d7a 3746unsigned int kmem_cache_size(struct kmem_cache *cachep)
1da177e4 3747{
3dafccf2 3748 return obj_size(cachep);
1da177e4
LT
3749}
3750EXPORT_SYMBOL(kmem_cache_size);
3751
343e0d7a 3752const char *kmem_cache_name(struct kmem_cache *cachep)
1944972d
ACM
3753{
3754 return cachep->name;
3755}
3756EXPORT_SYMBOL_GPL(kmem_cache_name);
3757
e498be7d 3758/*
0718dc2a 3759 * This initializes kmem_list3 or resizes varioius caches for all nodes.
e498be7d 3760 */
343e0d7a 3761static int alloc_kmemlist(struct kmem_cache *cachep)
e498be7d
CL
3762{
3763 int node;
3764 struct kmem_list3 *l3;
cafeb02e 3765 struct array_cache *new_shared;
3395ee05 3766 struct array_cache **new_alien = NULL;
e498be7d
CL
3767
3768 for_each_online_node(node) {
cafeb02e 3769
3395ee05
PM
3770 if (use_alien_caches) {
3771 new_alien = alloc_alien_cache(node, cachep->limit);
3772 if (!new_alien)
3773 goto fail;
3774 }
cafeb02e 3775
0718dc2a
CL
3776 new_shared = alloc_arraycache(node,
3777 cachep->shared*cachep->batchcount,
a737b3e2 3778 0xbaadf00d);
0718dc2a
CL
3779 if (!new_shared) {
3780 free_alien_cache(new_alien);
e498be7d 3781 goto fail;
0718dc2a 3782 }
cafeb02e 3783
a737b3e2
AM
3784 l3 = cachep->nodelists[node];
3785 if (l3) {
cafeb02e
CL
3786 struct array_cache *shared = l3->shared;
3787
e498be7d
CL
3788 spin_lock_irq(&l3->list_lock);
3789
cafeb02e 3790 if (shared)
0718dc2a
CL
3791 free_block(cachep, shared->entry,
3792 shared->avail, node);
e498be7d 3793
cafeb02e
CL
3794 l3->shared = new_shared;
3795 if (!l3->alien) {
e498be7d
CL
3796 l3->alien = new_alien;
3797 new_alien = NULL;
3798 }
b28a02de 3799 l3->free_limit = (1 + nr_cpus_node(node)) *
a737b3e2 3800 cachep->batchcount + cachep->num;
e498be7d 3801 spin_unlock_irq(&l3->list_lock);
cafeb02e 3802 kfree(shared);
e498be7d
CL
3803 free_alien_cache(new_alien);
3804 continue;
3805 }
a737b3e2 3806 l3 = kmalloc_node(sizeof(struct kmem_list3), GFP_KERNEL, node);
0718dc2a
CL
3807 if (!l3) {
3808 free_alien_cache(new_alien);
3809 kfree(new_shared);
e498be7d 3810 goto fail;
0718dc2a 3811 }
e498be7d
CL
3812
3813 kmem_list3_init(l3);
3814 l3->next_reap = jiffies + REAPTIMEOUT_LIST3 +
a737b3e2 3815 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
cafeb02e 3816 l3->shared = new_shared;
e498be7d 3817 l3->alien = new_alien;
b28a02de 3818 l3->free_limit = (1 + nr_cpus_node(node)) *
a737b3e2 3819 cachep->batchcount + cachep->num;
e498be7d
CL
3820 cachep->nodelists[node] = l3;
3821 }
cafeb02e 3822 return 0;
0718dc2a 3823
a737b3e2 3824fail:
0718dc2a
CL
3825 if (!cachep->next.next) {
3826 /* Cache is not active yet. Roll back what we did */
3827 node--;
3828 while (node >= 0) {
3829 if (cachep->nodelists[node]) {
3830 l3 = cachep->nodelists[node];
3831
3832 kfree(l3->shared);
3833 free_alien_cache(l3->alien);
3834 kfree(l3);
3835 cachep->nodelists[node] = NULL;
3836 }
3837 node--;
3838 }
3839 }
cafeb02e 3840 return -ENOMEM;
e498be7d
CL
3841}
3842
1da177e4 3843struct ccupdate_struct {
343e0d7a 3844 struct kmem_cache *cachep;
1da177e4
LT
3845 struct array_cache *new[NR_CPUS];
3846};
3847
3848static void do_ccupdate_local(void *info)
3849{
a737b3e2 3850 struct ccupdate_struct *new = info;
1da177e4
LT
3851 struct array_cache *old;
3852
3853 check_irq_off();
9a2dba4b 3854 old = cpu_cache_get(new->cachep);
e498be7d 3855
1da177e4
LT
3856 new->cachep->array[smp_processor_id()] = new->new[smp_processor_id()];
3857 new->new[smp_processor_id()] = old;
3858}
3859
b5d8ca7c 3860/* Always called with the cache_chain_mutex held */
a737b3e2
AM
3861static int do_tune_cpucache(struct kmem_cache *cachep, int limit,
3862 int batchcount, int shared)
1da177e4 3863{
d2e7b7d0 3864 struct ccupdate_struct *new;
2ed3a4ef 3865 int i;
1da177e4 3866
d2e7b7d0
SS
3867 new = kzalloc(sizeof(*new), GFP_KERNEL);
3868 if (!new)
3869 return -ENOMEM;
3870
e498be7d 3871 for_each_online_cpu(i) {
d2e7b7d0 3872 new->new[i] = alloc_arraycache(cpu_to_node(i), limit,
a737b3e2 3873 batchcount);
d2e7b7d0 3874 if (!new->new[i]) {
b28a02de 3875 for (i--; i >= 0; i--)
d2e7b7d0
SS
3876 kfree(new->new[i]);
3877 kfree(new);
e498be7d 3878 return -ENOMEM;
1da177e4
LT
3879 }
3880 }
d2e7b7d0 3881 new->cachep = cachep;
1da177e4 3882
d2e7b7d0 3883 on_each_cpu(do_ccupdate_local, (void *)new, 1, 1);
e498be7d 3884
1da177e4 3885 check_irq_on();
1da177e4
LT
3886 cachep->batchcount = batchcount;
3887 cachep->limit = limit;
e498be7d 3888 cachep->shared = shared;
1da177e4 3889
e498be7d 3890 for_each_online_cpu(i) {
d2e7b7d0 3891 struct array_cache *ccold = new->new[i];
1da177e4
LT
3892 if (!ccold)
3893 continue;
e498be7d 3894 spin_lock_irq(&cachep->nodelists[cpu_to_node(i)]->list_lock);
ff69416e 3895 free_block(cachep, ccold->entry, ccold->avail, cpu_to_node(i));
e498be7d 3896 spin_unlock_irq(&cachep->nodelists[cpu_to_node(i)]->list_lock);
1da177e4
LT
3897 kfree(ccold);
3898 }
d2e7b7d0 3899 kfree(new);
2ed3a4ef 3900 return alloc_kmemlist(cachep);
1da177e4
LT
3901}
3902
b5d8ca7c 3903/* Called with cache_chain_mutex held always */
2ed3a4ef 3904static int enable_cpucache(struct kmem_cache *cachep)
1da177e4
LT
3905{
3906 int err;
3907 int limit, shared;
3908
a737b3e2
AM
3909 /*
3910 * The head array serves three purposes:
1da177e4
LT
3911 * - create a LIFO ordering, i.e. return objects that are cache-warm
3912 * - reduce the number of spinlock operations.
a737b3e2 3913 * - reduce the number of linked list operations on the slab and
1da177e4
LT
3914 * bufctl chains: array operations are cheaper.
3915 * The numbers are guessed, we should auto-tune as described by
3916 * Bonwick.
3917 */
3dafccf2 3918 if (cachep->buffer_size > 131072)
1da177e4 3919 limit = 1;
3dafccf2 3920 else if (cachep->buffer_size > PAGE_SIZE)
1da177e4 3921 limit = 8;
3dafccf2 3922 else if (cachep->buffer_size > 1024)
1da177e4 3923 limit = 24;
3dafccf2 3924 else if (cachep->buffer_size > 256)
1da177e4
LT
3925 limit = 54;
3926 else
3927 limit = 120;
3928
a737b3e2
AM
3929 /*
3930 * CPU bound tasks (e.g. network routing) can exhibit cpu bound
1da177e4
LT
3931 * allocation behaviour: Most allocs on one cpu, most free operations
3932 * on another cpu. For these cases, an efficient object passing between
3933 * cpus is necessary. This is provided by a shared array. The array
3934 * replaces Bonwick's magazine layer.
3935 * On uniprocessor, it's functionally equivalent (but less efficient)
3936 * to a larger limit. Thus disabled by default.
3937 */
3938 shared = 0;
3939#ifdef CONFIG_SMP
3dafccf2 3940 if (cachep->buffer_size <= PAGE_SIZE)
1da177e4
LT
3941 shared = 8;
3942#endif
3943
3944#if DEBUG
a737b3e2
AM
3945 /*
3946 * With debugging enabled, large batchcount lead to excessively long
3947 * periods with disabled local interrupts. Limit the batchcount
1da177e4
LT
3948 */
3949 if (limit > 32)
3950 limit = 32;
3951#endif
b28a02de 3952 err = do_tune_cpucache(cachep, limit, (limit + 1) / 2, shared);
1da177e4
LT
3953 if (err)
3954 printk(KERN_ERR "enable_cpucache failed for %s, error %d.\n",
b28a02de 3955 cachep->name, -err);
2ed3a4ef 3956 return err;
1da177e4
LT
3957}
3958
1b55253a
CL
3959/*
3960 * Drain an array if it contains any elements taking the l3 lock only if
b18e7e65
CL
3961 * necessary. Note that the l3 listlock also protects the array_cache
3962 * if drain_array() is used on the shared array.
1b55253a
CL
3963 */
3964void drain_array(struct kmem_cache *cachep, struct kmem_list3 *l3,
3965 struct array_cache *ac, int force, int node)
1da177e4
LT
3966{
3967 int tofree;
3968
1b55253a
CL
3969 if (!ac || !ac->avail)
3970 return;
1da177e4
LT
3971 if (ac->touched && !force) {
3972 ac->touched = 0;
b18e7e65 3973 } else {
1b55253a 3974 spin_lock_irq(&l3->list_lock);
b18e7e65
CL
3975 if (ac->avail) {
3976 tofree = force ? ac->avail : (ac->limit + 4) / 5;
3977 if (tofree > ac->avail)
3978 tofree = (ac->avail + 1) / 2;
3979 free_block(cachep, ac->entry, tofree, node);
3980 ac->avail -= tofree;
3981 memmove(ac->entry, &(ac->entry[tofree]),
3982 sizeof(void *) * ac->avail);
3983 }
1b55253a 3984 spin_unlock_irq(&l3->list_lock);
1da177e4
LT
3985 }
3986}
3987
3988/**
3989 * cache_reap - Reclaim memory from caches.
1e5d5331 3990 * @unused: unused parameter
1da177e4
LT
3991 *
3992 * Called from workqueue/eventd every few seconds.
3993 * Purpose:
3994 * - clear the per-cpu caches for this CPU.
3995 * - return freeable pages to the main free memory pool.
3996 *
a737b3e2
AM
3997 * If we cannot acquire the cache chain mutex then just give up - we'll try
3998 * again on the next iteration.
1da177e4 3999 */
65f27f38 4000static void cache_reap(struct work_struct *unused)
1da177e4 4001{
7a7c381d 4002 struct kmem_cache *searchp;
e498be7d 4003 struct kmem_list3 *l3;
aab2207c 4004 int node = numa_node_id();
1da177e4 4005
fc0abb14 4006 if (!mutex_trylock(&cache_chain_mutex)) {
1da177e4 4007 /* Give up. Setup the next iteration. */
b28a02de
PE
4008 schedule_delayed_work(&__get_cpu_var(reap_work),
4009 REAPTIMEOUT_CPUC);
1da177e4
LT
4010 return;
4011 }
4012
7a7c381d 4013 list_for_each_entry(searchp, &cache_chain, next) {
1da177e4
LT
4014 check_irq_on();
4015
35386e3b
CL
4016 /*
4017 * We only take the l3 lock if absolutely necessary and we
4018 * have established with reasonable certainty that
4019 * we can do some work if the lock was obtained.
4020 */
aab2207c 4021 l3 = searchp->nodelists[node];
35386e3b 4022
8fce4d8e 4023 reap_alien(searchp, l3);
1da177e4 4024
aab2207c 4025 drain_array(searchp, l3, cpu_cache_get(searchp), 0, node);
1da177e4 4026
35386e3b
CL
4027 /*
4028 * These are racy checks but it does not matter
4029 * if we skip one check or scan twice.
4030 */
e498be7d 4031 if (time_after(l3->next_reap, jiffies))
35386e3b 4032 goto next;
1da177e4 4033
e498be7d 4034 l3->next_reap = jiffies + REAPTIMEOUT_LIST3;
1da177e4 4035
aab2207c 4036 drain_array(searchp, l3, l3->shared, 0, node);
1da177e4 4037
ed11d9eb 4038 if (l3->free_touched)
e498be7d 4039 l3->free_touched = 0;
ed11d9eb
CL
4040 else {
4041 int freed;
1da177e4 4042
ed11d9eb
CL
4043 freed = drain_freelist(searchp, l3, (l3->free_limit +
4044 5 * searchp->num - 1) / (5 * searchp->num));
4045 STATS_ADD_REAPED(searchp, freed);
4046 }
35386e3b 4047next:
1da177e4
LT
4048 cond_resched();
4049 }
4050 check_irq_on();
fc0abb14 4051 mutex_unlock(&cache_chain_mutex);
8fce4d8e 4052 next_reap_node();
2244b95a 4053 refresh_cpu_vm_stats(smp_processor_id());
a737b3e2 4054 /* Set up the next iteration */
cd61ef62 4055 schedule_delayed_work(&__get_cpu_var(reap_work), REAPTIMEOUT_CPUC);
1da177e4
LT
4056}
4057
4058#ifdef CONFIG_PROC_FS
4059
85289f98 4060static void print_slabinfo_header(struct seq_file *m)
1da177e4 4061{
85289f98
PE
4062 /*
4063 * Output format version, so at least we can change it
4064 * without _too_ many complaints.
4065 */
1da177e4 4066#if STATS
85289f98 4067 seq_puts(m, "slabinfo - version: 2.1 (statistics)\n");
1da177e4 4068#else
85289f98 4069 seq_puts(m, "slabinfo - version: 2.1\n");
1da177e4 4070#endif
85289f98
PE
4071 seq_puts(m, "# name <active_objs> <num_objs> <objsize> "
4072 "<objperslab> <pagesperslab>");
4073 seq_puts(m, " : tunables <limit> <batchcount> <sharedfactor>");
4074 seq_puts(m, " : slabdata <active_slabs> <num_slabs> <sharedavail>");
1da177e4 4075#if STATS
85289f98 4076 seq_puts(m, " : globalstat <listallocs> <maxobjs> <grown> <reaped> "
fb7faf33 4077 "<error> <maxfreeable> <nodeallocs> <remotefrees> <alienoverflow>");
85289f98 4078 seq_puts(m, " : cpustat <allochit> <allocmiss> <freehit> <freemiss>");
1da177e4 4079#endif
85289f98
PE
4080 seq_putc(m, '\n');
4081}
4082
4083static void *s_start(struct seq_file *m, loff_t *pos)
4084{
4085 loff_t n = *pos;
4086 struct list_head *p;
4087
fc0abb14 4088 mutex_lock(&cache_chain_mutex);
85289f98
PE
4089 if (!n)
4090 print_slabinfo_header(m);
1da177e4
LT
4091 p = cache_chain.next;
4092 while (n--) {
4093 p = p->next;
4094 if (p == &cache_chain)
4095 return NULL;
4096 }
343e0d7a 4097 return list_entry(p, struct kmem_cache, next);
1da177e4
LT
4098}
4099
4100static void *s_next(struct seq_file *m, void *p, loff_t *pos)
4101{
343e0d7a 4102 struct kmem_cache *cachep = p;
1da177e4 4103 ++*pos;
a737b3e2
AM
4104 return cachep->next.next == &cache_chain ?
4105 NULL : list_entry(cachep->next.next, struct kmem_cache, next);
1da177e4
LT
4106}
4107
4108static void s_stop(struct seq_file *m, void *p)
4109{
fc0abb14 4110 mutex_unlock(&cache_chain_mutex);
1da177e4
LT
4111}
4112
4113static int s_show(struct seq_file *m, void *p)
4114{
343e0d7a 4115 struct kmem_cache *cachep = p;
b28a02de
PE
4116 struct slab *slabp;
4117 unsigned long active_objs;
4118 unsigned long num_objs;
4119 unsigned long active_slabs = 0;
4120 unsigned long num_slabs, free_objects = 0, shared_avail = 0;
e498be7d 4121 const char *name;
1da177e4 4122 char *error = NULL;
e498be7d
CL
4123 int node;
4124 struct kmem_list3 *l3;
1da177e4 4125
1da177e4
LT
4126 active_objs = 0;
4127 num_slabs = 0;
e498be7d
CL
4128 for_each_online_node(node) {
4129 l3 = cachep->nodelists[node];
4130 if (!l3)
4131 continue;
4132
ca3b9b91
RT
4133 check_irq_on();
4134 spin_lock_irq(&l3->list_lock);
e498be7d 4135
7a7c381d 4136 list_for_each_entry(slabp, &l3->slabs_full, list) {
e498be7d
CL
4137 if (slabp->inuse != cachep->num && !error)
4138 error = "slabs_full accounting error";
4139 active_objs += cachep->num;
4140 active_slabs++;
4141 }
7a7c381d 4142 list_for_each_entry(slabp, &l3->slabs_partial, list) {
e498be7d
CL
4143 if (slabp->inuse == cachep->num && !error)
4144 error = "slabs_partial inuse accounting error";
4145 if (!slabp->inuse && !error)
4146 error = "slabs_partial/inuse accounting error";
4147 active_objs += slabp->inuse;
4148 active_slabs++;
4149 }
7a7c381d 4150 list_for_each_entry(slabp, &l3->slabs_free, list) {
e498be7d
CL
4151 if (slabp->inuse && !error)
4152 error = "slabs_free/inuse accounting error";
4153 num_slabs++;
4154 }
4155 free_objects += l3->free_objects;
4484ebf1
RT
4156 if (l3->shared)
4157 shared_avail += l3->shared->avail;
e498be7d 4158
ca3b9b91 4159 spin_unlock_irq(&l3->list_lock);
1da177e4 4160 }
b28a02de
PE
4161 num_slabs += active_slabs;
4162 num_objs = num_slabs * cachep->num;
e498be7d 4163 if (num_objs - active_objs != free_objects && !error)
1da177e4
LT
4164 error = "free_objects accounting error";
4165
b28a02de 4166 name = cachep->name;
1da177e4
LT
4167 if (error)
4168 printk(KERN_ERR "slab: cache %s error: %s\n", name, error);
4169
4170 seq_printf(m, "%-17s %6lu %6lu %6u %4u %4d",
3dafccf2 4171 name, active_objs, num_objs, cachep->buffer_size,
b28a02de 4172 cachep->num, (1 << cachep->gfporder));
1da177e4 4173 seq_printf(m, " : tunables %4u %4u %4u",
b28a02de 4174 cachep->limit, cachep->batchcount, cachep->shared);
e498be7d 4175 seq_printf(m, " : slabdata %6lu %6lu %6lu",
b28a02de 4176 active_slabs, num_slabs, shared_avail);
1da177e4 4177#if STATS
b28a02de 4178 { /* list3 stats */
1da177e4
LT
4179 unsigned long high = cachep->high_mark;
4180 unsigned long allocs = cachep->num_allocations;
4181 unsigned long grown = cachep->grown;
4182 unsigned long reaped = cachep->reaped;
4183 unsigned long errors = cachep->errors;
4184 unsigned long max_freeable = cachep->max_freeable;
1da177e4 4185 unsigned long node_allocs = cachep->node_allocs;
e498be7d 4186 unsigned long node_frees = cachep->node_frees;
fb7faf33 4187 unsigned long overflows = cachep->node_overflow;
1da177e4 4188
e498be7d 4189 seq_printf(m, " : globalstat %7lu %6lu %5lu %4lu \
fb7faf33 4190 %4lu %4lu %4lu %4lu %4lu", allocs, high, grown,
a737b3e2 4191 reaped, errors, max_freeable, node_allocs,
fb7faf33 4192 node_frees, overflows);
1da177e4
LT
4193 }
4194 /* cpu stats */
4195 {
4196 unsigned long allochit = atomic_read(&cachep->allochit);
4197 unsigned long allocmiss = atomic_read(&cachep->allocmiss);
4198 unsigned long freehit = atomic_read(&cachep->freehit);
4199 unsigned long freemiss = atomic_read(&cachep->freemiss);
4200
4201 seq_printf(m, " : cpustat %6lu %6lu %6lu %6lu",
b28a02de 4202 allochit, allocmiss, freehit, freemiss);
1da177e4
LT
4203 }
4204#endif
4205 seq_putc(m, '\n');
1da177e4
LT
4206 return 0;
4207}
4208
4209/*
4210 * slabinfo_op - iterator that generates /proc/slabinfo
4211 *
4212 * Output layout:
4213 * cache-name
4214 * num-active-objs
4215 * total-objs
4216 * object size
4217 * num-active-slabs
4218 * total-slabs
4219 * num-pages-per-slab
4220 * + further values on SMP and with statistics enabled
4221 */
4222
15ad7cdc 4223const struct seq_operations slabinfo_op = {
b28a02de
PE
4224 .start = s_start,
4225 .next = s_next,
4226 .stop = s_stop,
4227 .show = s_show,
1da177e4
LT
4228};
4229
4230#define MAX_SLABINFO_WRITE 128
4231/**
4232 * slabinfo_write - Tuning for the slab allocator
4233 * @file: unused
4234 * @buffer: user buffer
4235 * @count: data length
4236 * @ppos: unused
4237 */
b28a02de
PE
4238ssize_t slabinfo_write(struct file *file, const char __user * buffer,
4239 size_t count, loff_t *ppos)
1da177e4 4240{
b28a02de 4241 char kbuf[MAX_SLABINFO_WRITE + 1], *tmp;
1da177e4 4242 int limit, batchcount, shared, res;
7a7c381d 4243 struct kmem_cache *cachep;
b28a02de 4244
1da177e4
LT
4245 if (count > MAX_SLABINFO_WRITE)
4246 return -EINVAL;
4247 if (copy_from_user(&kbuf, buffer, count))
4248 return -EFAULT;
b28a02de 4249 kbuf[MAX_SLABINFO_WRITE] = '\0';
1da177e4
LT
4250
4251 tmp = strchr(kbuf, ' ');
4252 if (!tmp)
4253 return -EINVAL;
4254 *tmp = '\0';
4255 tmp++;
4256 if (sscanf(tmp, " %d %d %d", &limit, &batchcount, &shared) != 3)
4257 return -EINVAL;
4258
4259 /* Find the cache in the chain of caches. */
fc0abb14 4260 mutex_lock(&cache_chain_mutex);
1da177e4 4261 res = -EINVAL;
7a7c381d 4262 list_for_each_entry(cachep, &cache_chain, next) {
1da177e4 4263 if (!strcmp(cachep->name, kbuf)) {
a737b3e2
AM
4264 if (limit < 1 || batchcount < 1 ||
4265 batchcount > limit || shared < 0) {
e498be7d 4266 res = 0;
1da177e4 4267 } else {
e498be7d 4268 res = do_tune_cpucache(cachep, limit,
b28a02de 4269 batchcount, shared);
1da177e4
LT
4270 }
4271 break;
4272 }
4273 }
fc0abb14 4274 mutex_unlock(&cache_chain_mutex);
1da177e4
LT
4275 if (res >= 0)
4276 res = count;
4277 return res;
4278}
871751e2
AV
4279
4280#ifdef CONFIG_DEBUG_SLAB_LEAK
4281
4282static void *leaks_start(struct seq_file *m, loff_t *pos)
4283{
4284 loff_t n = *pos;
4285 struct list_head *p;
4286
4287 mutex_lock(&cache_chain_mutex);
4288 p = cache_chain.next;
4289 while (n--) {
4290 p = p->next;
4291 if (p == &cache_chain)
4292 return NULL;
4293 }
4294 return list_entry(p, struct kmem_cache, next);
4295}
4296
4297static inline int add_caller(unsigned long *n, unsigned long v)
4298{
4299 unsigned long *p;
4300 int l;
4301 if (!v)
4302 return 1;
4303 l = n[1];
4304 p = n + 2;
4305 while (l) {
4306 int i = l/2;
4307 unsigned long *q = p + 2 * i;
4308 if (*q == v) {
4309 q[1]++;
4310 return 1;
4311 }
4312 if (*q > v) {
4313 l = i;
4314 } else {
4315 p = q + 2;
4316 l -= i + 1;
4317 }
4318 }
4319 if (++n[1] == n[0])
4320 return 0;
4321 memmove(p + 2, p, n[1] * 2 * sizeof(unsigned long) - ((void *)p - (void *)n));
4322 p[0] = v;
4323 p[1] = 1;
4324 return 1;
4325}
4326
4327static void handle_slab(unsigned long *n, struct kmem_cache *c, struct slab *s)
4328{
4329 void *p;
4330 int i;
4331 if (n[0] == n[1])
4332 return;
4333 for (i = 0, p = s->s_mem; i < c->num; i++, p += c->buffer_size) {
4334 if (slab_bufctl(s)[i] != BUFCTL_ACTIVE)
4335 continue;
4336 if (!add_caller(n, (unsigned long)*dbg_userword(c, p)))
4337 return;
4338 }
4339}
4340
4341static void show_symbol(struct seq_file *m, unsigned long address)
4342{
4343#ifdef CONFIG_KALLSYMS
4344 char *modname;
4345 const char *name;
4346 unsigned long offset, size;
4347 char namebuf[KSYM_NAME_LEN+1];
4348
4349 name = kallsyms_lookup(address, &size, &offset, &modname, namebuf);
4350
4351 if (name) {
4352 seq_printf(m, "%s+%#lx/%#lx", name, offset, size);
4353 if (modname)
4354 seq_printf(m, " [%s]", modname);
4355 return;
4356 }
4357#endif
4358 seq_printf(m, "%p", (void *)address);
4359}
4360
4361static int leaks_show(struct seq_file *m, void *p)
4362{
4363 struct kmem_cache *cachep = p;
871751e2
AV
4364 struct slab *slabp;
4365 struct kmem_list3 *l3;
4366 const char *name;
4367 unsigned long *n = m->private;
4368 int node;
4369 int i;
4370
4371 if (!(cachep->flags & SLAB_STORE_USER))
4372 return 0;
4373 if (!(cachep->flags & SLAB_RED_ZONE))
4374 return 0;
4375
4376 /* OK, we can do it */
4377
4378 n[1] = 0;
4379
4380 for_each_online_node(node) {
4381 l3 = cachep->nodelists[node];
4382 if (!l3)
4383 continue;
4384
4385 check_irq_on();
4386 spin_lock_irq(&l3->list_lock);
4387
7a7c381d 4388 list_for_each_entry(slabp, &l3->slabs_full, list)
871751e2 4389 handle_slab(n, cachep, slabp);
7a7c381d 4390 list_for_each_entry(slabp, &l3->slabs_partial, list)
871751e2 4391 handle_slab(n, cachep, slabp);
871751e2
AV
4392 spin_unlock_irq(&l3->list_lock);
4393 }
4394 name = cachep->name;
4395 if (n[0] == n[1]) {
4396 /* Increase the buffer size */
4397 mutex_unlock(&cache_chain_mutex);
4398 m->private = kzalloc(n[0] * 4 * sizeof(unsigned long), GFP_KERNEL);
4399 if (!m->private) {
4400 /* Too bad, we are really out */
4401 m->private = n;
4402 mutex_lock(&cache_chain_mutex);
4403 return -ENOMEM;
4404 }
4405 *(unsigned long *)m->private = n[0] * 2;
4406 kfree(n);
4407 mutex_lock(&cache_chain_mutex);
4408 /* Now make sure this entry will be retried */
4409 m->count = m->size;
4410 return 0;
4411 }
4412 for (i = 0; i < n[1]; i++) {
4413 seq_printf(m, "%s: %lu ", name, n[2*i+3]);
4414 show_symbol(m, n[2*i+2]);
4415 seq_putc(m, '\n');
4416 }
d2e7b7d0 4417
871751e2
AV
4418 return 0;
4419}
4420
15ad7cdc 4421const struct seq_operations slabstats_op = {
871751e2
AV
4422 .start = leaks_start,
4423 .next = s_next,
4424 .stop = s_stop,
4425 .show = leaks_show,
4426};
4427#endif
1da177e4
LT
4428#endif
4429
00e145b6
MS
4430/**
4431 * ksize - get the actual amount of memory allocated for a given object
4432 * @objp: Pointer to the object
4433 *
4434 * kmalloc may internally round up allocations and return more memory
4435 * than requested. ksize() can be used to determine the actual amount of
4436 * memory allocated. The caller may use this additional memory, even though
4437 * a smaller amount of memory was initially specified with the kmalloc call.
4438 * The caller must guarantee that objp points to a valid object previously
4439 * allocated with either kmalloc() or kmem_cache_alloc(). The object
4440 * must not be freed during the duration of the call.
4441 */
1da177e4
LT
4442unsigned int ksize(const void *objp)
4443{
00e145b6
MS
4444 if (unlikely(objp == NULL))
4445 return 0;
1da177e4 4446
6ed5eb22 4447 return obj_size(virt_to_cache(objp));
1da177e4 4448}