blob: 3d18b711ab8289ce94736a7a9a4114e15efc78c8 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/mm/slab.c
3 * Written by Mark Hemment, 1996/97.
4 * (markhe@nextd.demon.co.uk)
5 *
6 * kmem_cache_destroy() + some cleanup - 1999 Andrea Arcangeli
7 *
8 * Major cleanup, different bufctl logic, per-cpu arrays
9 * (c) 2000 Manfred Spraul
10 *
11 * Cleanup, make the head arrays unconditional, preparation for NUMA
12 * (c) 2002 Manfred Spraul
13 *
14 * An implementation of the Slab Allocator as described in outline in;
15 * UNIX Internals: The New Frontiers by Uresh Vahalia
16 * Pub: Prentice Hall ISBN 0-13-101908-2
17 * or with a little more detail in;
18 * The Slab Allocator: An Object-Caching Kernel Memory Allocator
19 * Jeff Bonwick (Sun Microsystems).
20 * Presented at: USENIX Summer 1994 Technical Conference
21 *
22 * The memory is organized in caches, one cache for each object type.
23 * (e.g. inode_cache, dentry_cache, buffer_head, vm_area_struct)
24 * Each cache consists out of many slabs (they are small (usually one
25 * page long) and always contiguous), and each slab contains multiple
26 * initialized objects.
27 *
28 * This means, that your constructor is used only for newly allocated
29 * slabs and you must pass objects with the same intializations to
30 * kmem_cache_free.
31 *
32 * Each cache can only support one memory type (GFP_DMA, GFP_HIGHMEM,
33 * normal). If you need a special memory type, then must create a new
34 * cache for that memory type.
35 *
36 * In order to reduce fragmentation, the slabs are sorted in 3 groups:
37 * full slabs with 0 free objects
38 * partial slabs
39 * empty slabs with no allocated objects
40 *
41 * If partial slabs exist, then new allocations come from these slabs,
42 * otherwise from empty slabs or new slabs are allocated.
43 *
44 * kmem_cache_destroy() CAN CRASH if you try to allocate from the cache
45 * during kmem_cache_destroy(). The caller must prevent concurrent allocs.
46 *
47 * Each cache has a short per-cpu head array, most allocs
48 * and frees go into that array, and if that array overflows, then 1/2
49 * of the entries in the array are given back into the global cache.
50 * The head array is strictly LIFO and should improve the cache hit rates.
51 * On SMP, it additionally reduces the spinlock operations.
52 *
53 * The c_cpuarray may not be read with enabled local interrupts -
54 * it's changed with a smp_call_function().
55 *
56 * SMP synchronization:
57 * constructors and destructors are called without any locking.
Pekka Enberg343e0d72006-02-01 03:05:50 -080058 * Several members in struct kmem_cache and struct slab never change, they
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 * are accessed without any locking.
60 * The per-cpu arrays are never accessed from the wrong cpu, no locking,
61 * and local interrupts are disabled so slab code is preempt-safe.
62 * The non-constant members are protected with a per-cache irq spinlock.
63 *
64 * Many thanks to Mark Hemment, who wrote another per-cpu slab patch
65 * in 2000 - many ideas in the current implementation are derived from
66 * his patch.
67 *
68 * Further notes from the original documentation:
69 *
70 * 11 April '97. Started multi-threading - markhe
Ingo Molnarfc0abb12006-01-18 17:42:33 -080071 * The global cache-chain is protected by the mutex 'cache_chain_mutex'.
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 * The sem is only needed when accessing/extending the cache-chain, which
73 * can never happen inside an interrupt (kmem_cache_create(),
74 * kmem_cache_shrink() and kmem_cache_reap()).
75 *
76 * At present, each engine can be growing a cache. This should be blocked.
77 *
Christoph Lametere498be72005-09-09 13:03:32 -070078 * 15 March 2005. NUMA slab allocator.
79 * Shai Fultheim <shai@scalex86.org>.
80 * Shobhit Dayal <shobhit@calsoftinc.com>
81 * Alok N Kataria <alokk@calsoftinc.com>
82 * Christoph Lameter <christoph@lameter.com>
83 *
84 * Modified the slab allocator to be node aware on NUMA systems.
85 * Each node has its own list of partial, free and full slabs.
86 * All object allocations for a node occur from node specific slab lists.
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 */
88
89#include <linux/config.h>
90#include <linux/slab.h>
91#include <linux/mm.h>
92#include <linux/swap.h>
93#include <linux/cache.h>
94#include <linux/interrupt.h>
95#include <linux/init.h>
96#include <linux/compiler.h>
97#include <linux/seq_file.h>
98#include <linux/notifier.h>
99#include <linux/kallsyms.h>
100#include <linux/cpu.h>
101#include <linux/sysctl.h>
102#include <linux/module.h>
103#include <linux/rcupdate.h>
Paulo Marques543537b2005-06-23 00:09:02 -0700104#include <linux/string.h>
Christoph Lametere498be72005-09-09 13:03:32 -0700105#include <linux/nodemask.h>
Christoph Lameterdc85da12006-01-18 17:42:36 -0800106#include <linux/mempolicy.h>
Ingo Molnarfc0abb12006-01-18 17:42:33 -0800107#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109#include <asm/uaccess.h>
110#include <asm/cacheflush.h>
111#include <asm/tlbflush.h>
112#include <asm/page.h>
113
114/*
115 * DEBUG - 1 for kmem_cache_create() to honour; SLAB_DEBUG_INITIAL,
116 * SLAB_RED_ZONE & SLAB_POISON.
117 * 0 for faster, smaller code (especially in the critical paths).
118 *
119 * STATS - 1 to collect stats for /proc/slabinfo.
120 * 0 for faster, smaller code (especially in the critical paths).
121 *
122 * FORCED_DEBUG - 1 enables SLAB_RED_ZONE and SLAB_POISON (if possible)
123 */
124
125#ifdef CONFIG_DEBUG_SLAB
126#define DEBUG 1
127#define STATS 1
128#define FORCED_DEBUG 1
129#else
130#define DEBUG 0
131#define STATS 0
132#define FORCED_DEBUG 0
133#endif
134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135/* Shouldn't this be in a header file somewhere? */
136#define BYTES_PER_WORD sizeof(void *)
137
138#ifndef cache_line_size
139#define cache_line_size() L1_CACHE_BYTES
140#endif
141
142#ifndef ARCH_KMALLOC_MINALIGN
143/*
144 * Enforce a minimum alignment for the kmalloc caches.
145 * Usually, the kmalloc caches are cache_line_size() aligned, except when
146 * DEBUG and FORCED_DEBUG are enabled, then they are BYTES_PER_WORD aligned.
147 * Some archs want to perform DMA into kmalloc caches and need a guaranteed
148 * alignment larger than BYTES_PER_WORD. ARCH_KMALLOC_MINALIGN allows that.
149 * Note that this flag disables some debug features.
150 */
151#define ARCH_KMALLOC_MINALIGN 0
152#endif
153
154#ifndef ARCH_SLAB_MINALIGN
155/*
156 * Enforce a minimum alignment for all caches.
157 * Intended for archs that get misalignment faults even for BYTES_PER_WORD
158 * aligned buffers. Includes ARCH_KMALLOC_MINALIGN.
159 * If possible: Do not enable this flag for CONFIG_DEBUG_SLAB, it disables
160 * some debug features.
161 */
162#define ARCH_SLAB_MINALIGN 0
163#endif
164
165#ifndef ARCH_KMALLOC_FLAGS
166#define ARCH_KMALLOC_FLAGS SLAB_HWCACHE_ALIGN
167#endif
168
169/* Legal flag mask for kmem_cache_create(). */
170#if DEBUG
171# define CREATE_MASK (SLAB_DEBUG_INITIAL | SLAB_RED_ZONE | \
172 SLAB_POISON | SLAB_HWCACHE_ALIGN | \
173 SLAB_NO_REAP | SLAB_CACHE_DMA | \
174 SLAB_MUST_HWCACHE_ALIGN | SLAB_STORE_USER | \
175 SLAB_RECLAIM_ACCOUNT | SLAB_PANIC | \
176 SLAB_DESTROY_BY_RCU)
177#else
178# define CREATE_MASK (SLAB_HWCACHE_ALIGN | SLAB_NO_REAP | \
179 SLAB_CACHE_DMA | SLAB_MUST_HWCACHE_ALIGN | \
180 SLAB_RECLAIM_ACCOUNT | SLAB_PANIC | \
181 SLAB_DESTROY_BY_RCU)
182#endif
183
184/*
185 * kmem_bufctl_t:
186 *
187 * Bufctl's are used for linking objs within a slab
188 * linked offsets.
189 *
190 * This implementation relies on "struct page" for locating the cache &
191 * slab an object belongs to.
192 * This allows the bufctl structure to be small (one int), but limits
193 * the number of objects a slab (not a cache) can contain when off-slab
194 * bufctls are used. The limit is the size of the largest general cache
195 * that does not use off-slab slabs.
196 * For 32bit archs with 4 kB pages, is this 56.
197 * This is not serious, as it is only for large objects, when it is unwise
198 * to have too many per slab.
199 * Note: This limit can be raised by introducing a general cache whose size
200 * is less than 512 (PAGE_SIZE<<3), but greater than 256.
201 */
202
Kyle Moffettfa5b08d2005-09-03 15:55:03 -0700203typedef unsigned int kmem_bufctl_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204#define BUFCTL_END (((kmem_bufctl_t)(~0U))-0)
205#define BUFCTL_FREE (((kmem_bufctl_t)(~0U))-1)
206#define SLAB_LIMIT (((kmem_bufctl_t)(~0U))-2)
207
208/* Max number of objs-per-slab for caches which use off-slab slabs.
209 * Needed to avoid a possible looping condition in cache_grow().
210 */
211static unsigned long offslab_limit;
212
213/*
214 * struct slab
215 *
216 * Manages the objs in a slab. Placed either at the beginning of mem allocated
217 * for a slab, or allocated from an general cache.
218 * Slabs are chained into three list: fully used, partial, fully free slabs.
219 */
220struct slab {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800221 struct list_head list;
222 unsigned long colouroff;
223 void *s_mem; /* including colour offset */
224 unsigned int inuse; /* num of objs active in slab */
225 kmem_bufctl_t free;
226 unsigned short nodeid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227};
228
229/*
230 * struct slab_rcu
231 *
232 * slab_destroy on a SLAB_DESTROY_BY_RCU cache uses this structure to
233 * arrange for kmem_freepages to be called via RCU. This is useful if
234 * we need to approach a kernel structure obliquely, from its address
235 * obtained without the usual locking. We can lock the structure to
236 * stabilize it and check it's still at the given address, only if we
237 * can be sure that the memory has not been meanwhile reused for some
238 * other kind of object (which our subsystem's lock might corrupt).
239 *
240 * rcu_read_lock before reading the address, then rcu_read_unlock after
241 * taking the spinlock within the structure expected at that address.
242 *
243 * We assume struct slab_rcu can overlay struct slab when destroying.
244 */
245struct slab_rcu {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800246 struct rcu_head head;
Pekka Enberg343e0d72006-02-01 03:05:50 -0800247 struct kmem_cache *cachep;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800248 void *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249};
250
251/*
252 * struct array_cache
253 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 * Purpose:
255 * - LIFO ordering, to hand out cache-warm objects from _alloc
256 * - reduce the number of linked list operations
257 * - reduce spinlock operations
258 *
259 * The limit is stored in the per-cpu structure to reduce the data cache
260 * footprint.
261 *
262 */
263struct array_cache {
264 unsigned int avail;
265 unsigned int limit;
266 unsigned int batchcount;
267 unsigned int touched;
Christoph Lametere498be72005-09-09 13:03:32 -0700268 spinlock_t lock;
269 void *entry[0]; /*
270 * Must have this definition in here for the proper
271 * alignment of array_cache. Also simplifies accessing
272 * the entries.
273 * [0] is for gcc 2.95. It should really be [].
274 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275};
276
277/* bootstrap: The caches do not work without cpuarrays anymore,
278 * but the cpuarrays are allocated from the generic caches...
279 */
280#define BOOT_CPUCACHE_ENTRIES 1
281struct arraycache_init {
282 struct array_cache cache;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800283 void *entries[BOOT_CPUCACHE_ENTRIES];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284};
285
286/*
Christoph Lametere498be72005-09-09 13:03:32 -0700287 * The slab lists for all objects.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 */
289struct kmem_list3 {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800290 struct list_head slabs_partial; /* partial list first, better asm code */
291 struct list_head slabs_full;
292 struct list_head slabs_free;
293 unsigned long free_objects;
294 unsigned long next_reap;
295 int free_touched;
296 unsigned int free_limit;
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -0800297 unsigned int colour_next; /* Per-node cache coloring */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800298 spinlock_t list_lock;
299 struct array_cache *shared; /* shared per node */
300 struct array_cache **alien; /* on other nodes */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301};
302
Christoph Lametere498be72005-09-09 13:03:32 -0700303/*
304 * Need this for bootstrapping a per node allocator.
305 */
306#define NUM_INIT_LISTS (2 * MAX_NUMNODES + 1)
307struct kmem_list3 __initdata initkmem_list3[NUM_INIT_LISTS];
308#define CACHE_CACHE 0
309#define SIZE_AC 1
310#define SIZE_L3 (1 + MAX_NUMNODES)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Christoph Lametere498be72005-09-09 13:03:32 -0700312/*
Ivan Kokshaysky7243cc02005-09-22 21:43:58 -0700313 * This function must be completely optimized away if
Christoph Lametere498be72005-09-09 13:03:32 -0700314 * a constant is passed to it. Mostly the same as
315 * what is in linux/slab.h except it returns an
316 * index.
317 */
Ivan Kokshaysky7243cc02005-09-22 21:43:58 -0700318static __always_inline int index_of(const size_t size)
Christoph Lametere498be72005-09-09 13:03:32 -0700319{
Steven Rostedt5ec8a842006-02-01 03:05:44 -0800320 extern void __bad_size(void);
321
Christoph Lametere498be72005-09-09 13:03:32 -0700322 if (__builtin_constant_p(size)) {
323 int i = 0;
324
325#define CACHE(x) \
326 if (size <=x) \
327 return i; \
328 else \
329 i++;
330#include "linux/kmalloc_sizes.h"
331#undef CACHE
Steven Rostedt5ec8a842006-02-01 03:05:44 -0800332 __bad_size();
Ivan Kokshaysky7243cc02005-09-22 21:43:58 -0700333 } else
Steven Rostedt5ec8a842006-02-01 03:05:44 -0800334 __bad_size();
Christoph Lametere498be72005-09-09 13:03:32 -0700335 return 0;
336}
337
338#define INDEX_AC index_of(sizeof(struct arraycache_init))
339#define INDEX_L3 index_of(sizeof(struct kmem_list3))
340
Pekka Enberg5295a742006-02-01 03:05:48 -0800341static void kmem_list3_init(struct kmem_list3 *parent)
Christoph Lametere498be72005-09-09 13:03:32 -0700342{
343 INIT_LIST_HEAD(&parent->slabs_full);
344 INIT_LIST_HEAD(&parent->slabs_partial);
345 INIT_LIST_HEAD(&parent->slabs_free);
346 parent->shared = NULL;
347 parent->alien = NULL;
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -0800348 parent->colour_next = 0;
Christoph Lametere498be72005-09-09 13:03:32 -0700349 spin_lock_init(&parent->list_lock);
350 parent->free_objects = 0;
351 parent->free_touched = 0;
352}
353
354#define MAKE_LIST(cachep, listp, slab, nodeid) \
355 do { \
356 INIT_LIST_HEAD(listp); \
357 list_splice(&(cachep->nodelists[nodeid]->slab), listp); \
358 } while (0)
359
360#define MAKE_ALL_LISTS(cachep, ptr, nodeid) \
361 do { \
362 MAKE_LIST((cachep), (&(ptr)->slabs_full), slabs_full, nodeid); \
363 MAKE_LIST((cachep), (&(ptr)->slabs_partial), slabs_partial, nodeid); \
364 MAKE_LIST((cachep), (&(ptr)->slabs_free), slabs_free, nodeid); \
365 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
367/*
Pekka Enberg343e0d72006-02-01 03:05:50 -0800368 * struct kmem_cache
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 *
370 * manages a cache.
371 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800372
Pekka J Enberg2109a2d2005-11-07 00:58:01 -0800373struct kmem_cache {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374/* 1) per-cpu data, touched during every alloc/free */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800375 struct array_cache *array[NR_CPUS];
376 unsigned int batchcount;
377 unsigned int limit;
378 unsigned int shared;
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800379 unsigned int buffer_size;
Christoph Lametere498be72005-09-09 13:03:32 -0700380/* 2) touched by every alloc & free from the backend */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800381 struct kmem_list3 *nodelists[MAX_NUMNODES];
382 unsigned int flags; /* constant flags */
383 unsigned int num; /* # of objs per slab */
384 spinlock_t spinlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
386/* 3) cache_grow/shrink */
387 /* order of pgs per slab (2^n) */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800388 unsigned int gfporder;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
390 /* force GFP flags, e.g. GFP_DMA */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800391 gfp_t gfpflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800393 size_t colour; /* cache colouring range */
394 unsigned int colour_off; /* colour offset */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800395 struct kmem_cache *slabp_cache;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800396 unsigned int slab_size;
397 unsigned int dflags; /* dynamic flags */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
399 /* constructor func */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800400 void (*ctor) (void *, struct kmem_cache *, unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
402 /* de-constructor func */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800403 void (*dtor) (void *, struct kmem_cache *, unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
405/* 4) cache creation/removal */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800406 const char *name;
407 struct list_head next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
409/* 5) statistics */
410#if STATS
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800411 unsigned long num_active;
412 unsigned long num_allocations;
413 unsigned long high_mark;
414 unsigned long grown;
415 unsigned long reaped;
416 unsigned long errors;
417 unsigned long max_freeable;
418 unsigned long node_allocs;
419 unsigned long node_frees;
420 atomic_t allochit;
421 atomic_t allocmiss;
422 atomic_t freehit;
423 atomic_t freemiss;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424#endif
425#if DEBUG
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800426 /*
427 * If debugging is enabled, then the allocator can add additional
428 * fields and/or padding to every object. buffer_size contains the total
429 * object size including these internal fields, the following two
430 * variables contain the offset to the user object and its size.
431 */
432 int obj_offset;
433 int obj_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434#endif
435};
436
437#define CFLGS_OFF_SLAB (0x80000000UL)
438#define OFF_SLAB(x) ((x)->flags & CFLGS_OFF_SLAB)
439
440#define BATCHREFILL_LIMIT 16
441/* Optimization question: fewer reaps means less
442 * probability for unnessary cpucache drain/refill cycles.
443 *
Adrian Bunkdc6f3f22005-11-08 16:44:08 +0100444 * OTOH the cpuarrays can contain lots of objects,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 * which could lock up otherwise freeable slabs.
446 */
447#define REAPTIMEOUT_CPUC (2*HZ)
448#define REAPTIMEOUT_LIST3 (4*HZ)
449
450#if STATS
451#define STATS_INC_ACTIVE(x) ((x)->num_active++)
452#define STATS_DEC_ACTIVE(x) ((x)->num_active--)
453#define STATS_INC_ALLOCED(x) ((x)->num_allocations++)
454#define STATS_INC_GROWN(x) ((x)->grown++)
455#define STATS_INC_REAPED(x) ((x)->reaped++)
456#define STATS_SET_HIGH(x) do { if ((x)->num_active > (x)->high_mark) \
457 (x)->high_mark = (x)->num_active; \
458 } while (0)
459#define STATS_INC_ERR(x) ((x)->errors++)
460#define STATS_INC_NODEALLOCS(x) ((x)->node_allocs++)
Christoph Lametere498be72005-09-09 13:03:32 -0700461#define STATS_INC_NODEFREES(x) ((x)->node_frees++)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462#define STATS_SET_FREEABLE(x, i) \
463 do { if ((x)->max_freeable < i) \
464 (x)->max_freeable = i; \
465 } while (0)
466
467#define STATS_INC_ALLOCHIT(x) atomic_inc(&(x)->allochit)
468#define STATS_INC_ALLOCMISS(x) atomic_inc(&(x)->allocmiss)
469#define STATS_INC_FREEHIT(x) atomic_inc(&(x)->freehit)
470#define STATS_INC_FREEMISS(x) atomic_inc(&(x)->freemiss)
471#else
472#define STATS_INC_ACTIVE(x) do { } while (0)
473#define STATS_DEC_ACTIVE(x) do { } while (0)
474#define STATS_INC_ALLOCED(x) do { } while (0)
475#define STATS_INC_GROWN(x) do { } while (0)
476#define STATS_INC_REAPED(x) do { } while (0)
477#define STATS_SET_HIGH(x) do { } while (0)
478#define STATS_INC_ERR(x) do { } while (0)
479#define STATS_INC_NODEALLOCS(x) do { } while (0)
Christoph Lametere498be72005-09-09 13:03:32 -0700480#define STATS_INC_NODEFREES(x) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481#define STATS_SET_FREEABLE(x, i) \
482 do { } while (0)
483
484#define STATS_INC_ALLOCHIT(x) do { } while (0)
485#define STATS_INC_ALLOCMISS(x) do { } while (0)
486#define STATS_INC_FREEHIT(x) do { } while (0)
487#define STATS_INC_FREEMISS(x) do { } while (0)
488#endif
489
490#if DEBUG
491/* Magic nums for obj red zoning.
492 * Placed in the first word before and the first word after an obj.
493 */
494#define RED_INACTIVE 0x5A2CF071UL /* when obj is inactive */
495#define RED_ACTIVE 0x170FC2A5UL /* when obj is active */
496
497/* ...and for poisoning */
498#define POISON_INUSE 0x5a /* for use-uninitialised poisoning */
499#define POISON_FREE 0x6b /* for use-after-free poisoning */
500#define POISON_END 0xa5 /* end-byte of poisoning */
501
502/* memory layout of objects:
503 * 0 : objp
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800504 * 0 .. cachep->obj_offset - BYTES_PER_WORD - 1: padding. This ensures that
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 * the end of an object is aligned with the end of the real
506 * allocation. Catches writes behind the end of the allocation.
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800507 * cachep->obj_offset - BYTES_PER_WORD .. cachep->obj_offset - 1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 * redzone word.
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800509 * cachep->obj_offset: The real object.
510 * cachep->buffer_size - 2* BYTES_PER_WORD: redzone word [BYTES_PER_WORD long]
511 * cachep->buffer_size - 1* BYTES_PER_WORD: last caller address [BYTES_PER_WORD long]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800513static int obj_offset(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514{
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800515 return cachep->obj_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516}
517
Pekka Enberg343e0d72006-02-01 03:05:50 -0800518static int obj_size(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519{
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800520 return cachep->obj_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521}
522
Pekka Enberg343e0d72006-02-01 03:05:50 -0800523static unsigned long *dbg_redzone1(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524{
525 BUG_ON(!(cachep->flags & SLAB_RED_ZONE));
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800526 return (unsigned long*) (objp+obj_offset(cachep)-BYTES_PER_WORD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527}
528
Pekka Enberg343e0d72006-02-01 03:05:50 -0800529static unsigned long *dbg_redzone2(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530{
531 BUG_ON(!(cachep->flags & SLAB_RED_ZONE));
532 if (cachep->flags & SLAB_STORE_USER)
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800533 return (unsigned long *)(objp + cachep->buffer_size -
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800534 2 * BYTES_PER_WORD);
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800535 return (unsigned long *)(objp + cachep->buffer_size - BYTES_PER_WORD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536}
537
Pekka Enberg343e0d72006-02-01 03:05:50 -0800538static void **dbg_userword(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539{
540 BUG_ON(!(cachep->flags & SLAB_STORE_USER));
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800541 return (void **)(objp + cachep->buffer_size - BYTES_PER_WORD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542}
543
544#else
545
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800546#define obj_offset(x) 0
547#define obj_size(cachep) (cachep->buffer_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548#define dbg_redzone1(cachep, objp) ({BUG(); (unsigned long *)NULL;})
549#define dbg_redzone2(cachep, objp) ({BUG(); (unsigned long *)NULL;})
550#define dbg_userword(cachep, objp) ({BUG(); (void **)NULL;})
551
552#endif
553
554/*
555 * Maximum size of an obj (in 2^order pages)
556 * and absolute limit for the gfp order.
557 */
558#if defined(CONFIG_LARGE_ALLOCS)
559#define MAX_OBJ_ORDER 13 /* up to 32Mb */
560#define MAX_GFP_ORDER 13 /* up to 32Mb */
561#elif defined(CONFIG_MMU)
562#define MAX_OBJ_ORDER 5 /* 32 pages */
563#define MAX_GFP_ORDER 5 /* 32 pages */
564#else
565#define MAX_OBJ_ORDER 8 /* up to 1Mb */
566#define MAX_GFP_ORDER 8 /* up to 1Mb */
567#endif
568
569/*
570 * Do not go above this order unless 0 objects fit into the slab.
571 */
572#define BREAK_GFP_ORDER_HI 1
573#define BREAK_GFP_ORDER_LO 0
574static int slab_break_gfp_order = BREAK_GFP_ORDER_LO;
575
Pekka Enberg065d41c2005-11-13 16:06:46 -0800576/* Functions for storing/retrieving the cachep and or slab from the
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577 * global 'mem_map'. These are used to find the slab an obj belongs to.
578 * With kfree(), these are used to find the cache which an obj belongs to.
579 */
Pekka Enberg065d41c2005-11-13 16:06:46 -0800580static inline void page_set_cache(struct page *page, struct kmem_cache *cache)
581{
582 page->lru.next = (struct list_head *)cache;
583}
584
585static inline struct kmem_cache *page_get_cache(struct page *page)
586{
587 return (struct kmem_cache *)page->lru.next;
588}
589
590static inline void page_set_slab(struct page *page, struct slab *slab)
591{
592 page->lru.prev = (struct list_head *)slab;
593}
594
595static inline struct slab *page_get_slab(struct page *page)
596{
597 return (struct slab *)page->lru.prev;
598}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599
Pekka Enberg6ed5eb22006-02-01 03:05:49 -0800600static inline struct kmem_cache *virt_to_cache(const void *obj)
601{
602 struct page *page = virt_to_page(obj);
603 return page_get_cache(page);
604}
605
606static inline struct slab *virt_to_slab(const void *obj)
607{
608 struct page *page = virt_to_page(obj);
609 return page_get_slab(page);
610}
611
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800612static inline void *index_to_obj(struct kmem_cache *cache, struct slab *slab,
613 unsigned int idx)
614{
615 return slab->s_mem + cache->buffer_size * idx;
616}
617
618static inline unsigned int obj_to_index(struct kmem_cache *cache,
619 struct slab *slab, void *obj)
620{
621 return (unsigned)(obj - slab->s_mem) / cache->buffer_size;
622}
623
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624/* These are the default caches for kmalloc. Custom caches can have other sizes. */
625struct cache_sizes malloc_sizes[] = {
626#define CACHE(x) { .cs_size = (x) },
627#include <linux/kmalloc_sizes.h>
628 CACHE(ULONG_MAX)
629#undef CACHE
630};
631EXPORT_SYMBOL(malloc_sizes);
632
633/* Must match cache_sizes above. Out of line to keep cache footprint low. */
634struct cache_names {
635 char *name;
636 char *name_dma;
637};
638
639static struct cache_names __initdata cache_names[] = {
640#define CACHE(x) { .name = "size-" #x, .name_dma = "size-" #x "(DMA)" },
641#include <linux/kmalloc_sizes.h>
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800642 {NULL,}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643#undef CACHE
644};
645
646static struct arraycache_init initarray_cache __initdata =
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800647 { {0, BOOT_CPUCACHE_ENTRIES, 1, 0} };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648static struct arraycache_init initarray_generic =
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800649 { {0, BOOT_CPUCACHE_ENTRIES, 1, 0} };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
651/* internal cache of cache description objs */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800652static struct kmem_cache cache_cache = {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800653 .batchcount = 1,
654 .limit = BOOT_CPUCACHE_ENTRIES,
655 .shared = 1,
Pekka Enberg343e0d72006-02-01 03:05:50 -0800656 .buffer_size = sizeof(struct kmem_cache),
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800657 .flags = SLAB_NO_REAP,
658 .spinlock = SPIN_LOCK_UNLOCKED,
659 .name = "kmem_cache",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660#if DEBUG
Pekka Enberg343e0d72006-02-01 03:05:50 -0800661 .obj_size = sizeof(struct kmem_cache),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662#endif
663};
664
665/* Guard access to the cache-chain. */
Ingo Molnarfc0abb12006-01-18 17:42:33 -0800666static DEFINE_MUTEX(cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667static struct list_head cache_chain;
668
669/*
670 * vm_enough_memory() looks at this to determine how many
671 * slab-allocated pages are possibly freeable under pressure
672 *
673 * SLAB_RECLAIM_ACCOUNT turns this on per-slab
674 */
675atomic_t slab_reclaim_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
677/*
678 * chicken and egg problem: delay the per-cpu array allocation
679 * until the general caches are up.
680 */
681static enum {
682 NONE,
Christoph Lametere498be72005-09-09 13:03:32 -0700683 PARTIAL_AC,
684 PARTIAL_L3,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 FULL
686} g_cpucache_up;
687
688static DEFINE_PER_CPU(struct work_struct, reap_work);
689
Pekka Enberg343e0d72006-02-01 03:05:50 -0800690static void free_block(struct kmem_cache *cachep, void **objpp, int len, int node);
691static void enable_cpucache(struct kmem_cache *cachep);
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800692static void cache_reap(void *unused);
Pekka Enberg343e0d72006-02-01 03:05:50 -0800693static int __node_shrink(struct kmem_cache *cachep, int node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694
Pekka Enberg343e0d72006-02-01 03:05:50 -0800695static inline struct array_cache *cpu_cache_get(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696{
697 return cachep->array[smp_processor_id()];
698}
699
Pekka Enberg343e0d72006-02-01 03:05:50 -0800700static inline struct kmem_cache *__find_general_cachep(size_t size, gfp_t gfpflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701{
702 struct cache_sizes *csizep = malloc_sizes;
703
704#if DEBUG
705 /* This happens if someone tries to call
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800706 * kmem_cache_create(), or __kmalloc(), before
707 * the generic caches are initialized.
708 */
Alok Katariac7e43c72005-09-14 12:17:53 -0700709 BUG_ON(malloc_sizes[INDEX_AC].cs_cachep == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710#endif
711 while (size > csizep->cs_size)
712 csizep++;
713
714 /*
Martin Hicks0abf40c2005-09-03 15:54:54 -0700715 * Really subtle: The last entry with cs->cs_size==ULONG_MAX
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 * has cs_{dma,}cachep==NULL. Thus no special case
717 * for large kmalloc calls required.
718 */
719 if (unlikely(gfpflags & GFP_DMA))
720 return csizep->cs_dmacachep;
721 return csizep->cs_cachep;
722}
723
Pekka Enberg343e0d72006-02-01 03:05:50 -0800724struct kmem_cache *kmem_find_general_cachep(size_t size, gfp_t gfpflags)
Manfred Spraul97e2bde2005-05-01 08:58:38 -0700725{
726 return __find_general_cachep(size, gfpflags);
727}
728EXPORT_SYMBOL(kmem_find_general_cachep);
729
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800730static size_t slab_mgmt_size(size_t nr_objs, size_t align)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731{
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800732 return ALIGN(sizeof(struct slab)+nr_objs*sizeof(kmem_bufctl_t), align);
733}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800735/* Calculate the number of objects and left-over bytes for a given
736 buffer size. */
737static void cache_estimate(unsigned long gfporder, size_t buffer_size,
738 size_t align, int flags, size_t *left_over,
739 unsigned int *num)
740{
741 int nr_objs;
742 size_t mgmt_size;
743 size_t slab_size = PAGE_SIZE << gfporder;
744
745 /*
746 * The slab management structure can be either off the slab or
747 * on it. For the latter case, the memory allocated for a
748 * slab is used for:
749 *
750 * - The struct slab
751 * - One kmem_bufctl_t for each object
752 * - Padding to respect alignment of @align
753 * - @buffer_size bytes for each object
754 *
755 * If the slab management structure is off the slab, then the
756 * alignment will already be calculated into the size. Because
757 * the slabs are all pages aligned, the objects will be at the
758 * correct alignment when allocated.
759 */
760 if (flags & CFLGS_OFF_SLAB) {
761 mgmt_size = 0;
762 nr_objs = slab_size / buffer_size;
763
764 if (nr_objs > SLAB_LIMIT)
765 nr_objs = SLAB_LIMIT;
766 } else {
767 /*
768 * Ignore padding for the initial guess. The padding
769 * is at most @align-1 bytes, and @buffer_size is at
770 * least @align. In the worst case, this result will
771 * be one greater than the number of objects that fit
772 * into the memory allocation when taking the padding
773 * into account.
774 */
775 nr_objs = (slab_size - sizeof(struct slab)) /
776 (buffer_size + sizeof(kmem_bufctl_t));
777
778 /*
779 * This calculated number will be either the right
780 * amount, or one greater than what we want.
781 */
782 if (slab_mgmt_size(nr_objs, align) + nr_objs*buffer_size
783 > slab_size)
784 nr_objs--;
785
786 if (nr_objs > SLAB_LIMIT)
787 nr_objs = SLAB_LIMIT;
788
789 mgmt_size = slab_mgmt_size(nr_objs, align);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 }
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800791 *num = nr_objs;
792 *left_over = slab_size - nr_objs*buffer_size - mgmt_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793}
794
795#define slab_error(cachep, msg) __slab_error(__FUNCTION__, cachep, msg)
796
Pekka Enberg343e0d72006-02-01 03:05:50 -0800797static void __slab_error(const char *function, struct kmem_cache *cachep, char *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798{
799 printk(KERN_ERR "slab error in %s(): cache `%s': %s\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800800 function, cachep->name, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 dump_stack();
802}
803
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800804#ifdef CONFIG_NUMA
805/*
806 * Special reaping functions for NUMA systems called from cache_reap().
807 * These take care of doing round robin flushing of alien caches (containing
808 * objects freed on different nodes from which they were allocated) and the
809 * flushing of remote pcps by calling drain_node_pages.
810 */
811static DEFINE_PER_CPU(unsigned long, reap_node);
812
813static void init_reap_node(int cpu)
814{
815 int node;
816
817 node = next_node(cpu_to_node(cpu), node_online_map);
818 if (node == MAX_NUMNODES)
819 node = 0;
820
821 __get_cpu_var(reap_node) = node;
822}
823
824static void next_reap_node(void)
825{
826 int node = __get_cpu_var(reap_node);
827
828 /*
829 * Also drain per cpu pages on remote zones
830 */
831 if (node != numa_node_id())
832 drain_node_pages(node);
833
834 node = next_node(node, node_online_map);
835 if (unlikely(node >= MAX_NUMNODES))
836 node = first_node(node_online_map);
837 __get_cpu_var(reap_node) = node;
838}
839
840#else
841#define init_reap_node(cpu) do { } while (0)
842#define next_reap_node(void) do { } while (0)
843#endif
844
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845/*
846 * Initiate the reap timer running on the target CPU. We run at around 1 to 2Hz
847 * via the workqueue/eventd.
848 * Add the CPU number into the expiration time to minimize the possibility of
849 * the CPUs getting into lockstep and contending for the global cache chain
850 * lock.
851 */
852static void __devinit start_cpu_timer(int cpu)
853{
854 struct work_struct *reap_work = &per_cpu(reap_work, cpu);
855
856 /*
857 * When this gets called from do_initcalls via cpucache_init(),
858 * init_workqueues() has already run, so keventd will be setup
859 * at that time.
860 */
861 if (keventd_up() && reap_work->func == NULL) {
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800862 init_reap_node(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 INIT_WORK(reap_work, cache_reap, NULL);
864 schedule_delayed_work_on(cpu, reap_work, HZ + 3 * cpu);
865 }
866}
867
Christoph Lametere498be72005-09-09 13:03:32 -0700868static struct array_cache *alloc_arraycache(int node, int entries,
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800869 int batchcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870{
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800871 int memsize = sizeof(void *) * entries + sizeof(struct array_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 struct array_cache *nc = NULL;
873
Christoph Lametere498be72005-09-09 13:03:32 -0700874 nc = kmalloc_node(memsize, GFP_KERNEL, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 if (nc) {
876 nc->avail = 0;
877 nc->limit = entries;
878 nc->batchcount = batchcount;
879 nc->touched = 0;
Christoph Lametere498be72005-09-09 13:03:32 -0700880 spin_lock_init(&nc->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 }
882 return nc;
883}
884
Christoph Lametere498be72005-09-09 13:03:32 -0700885#ifdef CONFIG_NUMA
Pekka Enberg343e0d72006-02-01 03:05:50 -0800886static void *__cache_alloc_node(struct kmem_cache *, gfp_t, int);
Christoph Lameterdc85da12006-01-18 17:42:36 -0800887
Pekka Enberg5295a742006-02-01 03:05:48 -0800888static struct array_cache **alloc_alien_cache(int node, int limit)
Christoph Lametere498be72005-09-09 13:03:32 -0700889{
890 struct array_cache **ac_ptr;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800891 int memsize = sizeof(void *) * MAX_NUMNODES;
Christoph Lametere498be72005-09-09 13:03:32 -0700892 int i;
893
894 if (limit > 1)
895 limit = 12;
896 ac_ptr = kmalloc_node(memsize, GFP_KERNEL, node);
897 if (ac_ptr) {
898 for_each_node(i) {
899 if (i == node || !node_online(i)) {
900 ac_ptr[i] = NULL;
901 continue;
902 }
903 ac_ptr[i] = alloc_arraycache(node, limit, 0xbaadf00d);
904 if (!ac_ptr[i]) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800905 for (i--; i <= 0; i--)
Christoph Lametere498be72005-09-09 13:03:32 -0700906 kfree(ac_ptr[i]);
907 kfree(ac_ptr);
908 return NULL;
909 }
910 }
911 }
912 return ac_ptr;
913}
914
Pekka Enberg5295a742006-02-01 03:05:48 -0800915static void free_alien_cache(struct array_cache **ac_ptr)
Christoph Lametere498be72005-09-09 13:03:32 -0700916{
917 int i;
918
919 if (!ac_ptr)
920 return;
921
922 for_each_node(i)
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800923 kfree(ac_ptr[i]);
Christoph Lametere498be72005-09-09 13:03:32 -0700924
925 kfree(ac_ptr);
926}
927
Pekka Enberg343e0d72006-02-01 03:05:50 -0800928static void __drain_alien_cache(struct kmem_cache *cachep,
Pekka Enberg5295a742006-02-01 03:05:48 -0800929 struct array_cache *ac, int node)
Christoph Lametere498be72005-09-09 13:03:32 -0700930{
931 struct kmem_list3 *rl3 = cachep->nodelists[node];
932
933 if (ac->avail) {
934 spin_lock(&rl3->list_lock);
Christoph Lameterff694162005-09-22 21:44:02 -0700935 free_block(cachep, ac->entry, ac->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -0700936 ac->avail = 0;
937 spin_unlock(&rl3->list_lock);
938 }
939}
940
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800941/*
942 * Called from cache_reap() to regularly drain alien caches round robin.
943 */
944static void reap_alien(struct kmem_cache *cachep, struct kmem_list3 *l3)
945{
946 int node = __get_cpu_var(reap_node);
947
948 if (l3->alien) {
949 struct array_cache *ac = l3->alien[node];
950 if (ac && ac->avail) {
951 spin_lock_irq(&ac->lock);
952 __drain_alien_cache(cachep, ac, node);
953 spin_unlock_irq(&ac->lock);
954 }
955 }
956}
957
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -0800958static void drain_alien_cache(struct kmem_cache *cachep, struct array_cache **alien)
Christoph Lametere498be72005-09-09 13:03:32 -0700959{
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800960 int i = 0;
Christoph Lametere498be72005-09-09 13:03:32 -0700961 struct array_cache *ac;
962 unsigned long flags;
963
964 for_each_online_node(i) {
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -0800965 ac = alien[i];
Christoph Lametere498be72005-09-09 13:03:32 -0700966 if (ac) {
967 spin_lock_irqsave(&ac->lock, flags);
968 __drain_alien_cache(cachep, ac, i);
969 spin_unlock_irqrestore(&ac->lock, flags);
970 }
971 }
972}
973#else
Linus Torvalds7a21ef62006-02-05 11:26:38 -0800974
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -0800975#define drain_alien_cache(cachep, alien) do { } while (0)
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800976#define reap_alien(cachep, l3) do { } while (0)
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -0800977
Linus Torvalds7a21ef62006-02-05 11:26:38 -0800978static inline struct array_cache **alloc_alien_cache(int node, int limit)
979{
980 return (struct array_cache **) 0x01020304ul;
981}
982
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -0800983static inline void free_alien_cache(struct array_cache **ac_ptr)
984{
985}
Linus Torvalds7a21ef62006-02-05 11:26:38 -0800986
Christoph Lametere498be72005-09-09 13:03:32 -0700987#endif
988
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989static int __devinit cpuup_callback(struct notifier_block *nfb,
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800990 unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700991{
992 long cpu = (long)hcpu;
Pekka Enberg343e0d72006-02-01 03:05:50 -0800993 struct kmem_cache *cachep;
Christoph Lametere498be72005-09-09 13:03:32 -0700994 struct kmem_list3 *l3 = NULL;
995 int node = cpu_to_node(cpu);
996 int memsize = sizeof(struct kmem_list3);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997
998 switch (action) {
999 case CPU_UP_PREPARE:
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001000 mutex_lock(&cache_chain_mutex);
Christoph Lametere498be72005-09-09 13:03:32 -07001001 /* we need to do this right in the beginning since
1002 * alloc_arraycache's are going to use this list.
1003 * kmalloc_node allows us to add the slab to the right
1004 * kmem_list3 and not this cpu's kmem_list3
1005 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006
Christoph Lametere498be72005-09-09 13:03:32 -07001007 list_for_each_entry(cachep, &cache_chain, next) {
1008 /* setup the size64 kmemlist for cpu before we can
1009 * begin anything. Make sure some other cpu on this
1010 * node has not already allocated this
1011 */
1012 if (!cachep->nodelists[node]) {
1013 if (!(l3 = kmalloc_node(memsize,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001014 GFP_KERNEL, node)))
Christoph Lametere498be72005-09-09 13:03:32 -07001015 goto bad;
1016 kmem_list3_init(l3);
1017 l3->next_reap = jiffies + REAPTIMEOUT_LIST3 +
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001018 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
Christoph Lametere498be72005-09-09 13:03:32 -07001019
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001020 /*
1021 * The l3s don't come and go as CPUs come and
1022 * go. cache_chain_mutex is sufficient
1023 * protection here.
1024 */
Christoph Lametere498be72005-09-09 13:03:32 -07001025 cachep->nodelists[node] = l3;
1026 }
1027
1028 spin_lock_irq(&cachep->nodelists[node]->list_lock);
1029 cachep->nodelists[node]->free_limit =
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001030 (1 + nr_cpus_node(node)) *
1031 cachep->batchcount + cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07001032 spin_unlock_irq(&cachep->nodelists[node]->list_lock);
1033 }
1034
1035 /* Now we can go ahead with allocating the shared array's
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001036 & array cache's */
Christoph Lametere498be72005-09-09 13:03:32 -07001037 list_for_each_entry(cachep, &cache_chain, next) {
Tobias Klausercd105df2006-01-08 01:00:59 -08001038 struct array_cache *nc;
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001039 struct array_cache *shared;
1040 struct array_cache **alien;
Tobias Klausercd105df2006-01-08 01:00:59 -08001041
Christoph Lametere498be72005-09-09 13:03:32 -07001042 nc = alloc_arraycache(node, cachep->limit,
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001043 cachep->batchcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 if (!nc)
1045 goto bad;
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001046 shared = alloc_arraycache(node,
1047 cachep->shared * cachep->batchcount,
1048 0xbaadf00d);
1049 if (!shared)
1050 goto bad;
Linus Torvalds7a21ef62006-02-05 11:26:38 -08001051
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001052 alien = alloc_alien_cache(node, cachep->limit);
1053 if (!alien)
1054 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 cachep->array[cpu] = nc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
Christoph Lametere498be72005-09-09 13:03:32 -07001057 l3 = cachep->nodelists[node];
1058 BUG_ON(!l3);
Christoph Lametere498be72005-09-09 13:03:32 -07001059
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001060 spin_lock_irq(&l3->list_lock);
1061 if (!l3->shared) {
1062 /*
1063 * We are serialised from CPU_DEAD or
1064 * CPU_UP_CANCELLED by the cpucontrol lock
1065 */
1066 l3->shared = shared;
1067 shared = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07001068 }
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001069#ifdef CONFIG_NUMA
1070 if (!l3->alien) {
1071 l3->alien = alien;
1072 alien = NULL;
1073 }
1074#endif
1075 spin_unlock_irq(&l3->list_lock);
1076
1077 kfree(shared);
1078 free_alien_cache(alien);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001079 }
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001080 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 break;
1082 case CPU_ONLINE:
1083 start_cpu_timer(cpu);
1084 break;
1085#ifdef CONFIG_HOTPLUG_CPU
1086 case CPU_DEAD:
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001087 /*
1088 * Even if all the cpus of a node are down, we don't free the
1089 * kmem_list3 of any cache. This to avoid a race between
1090 * cpu_down, and a kmalloc allocation from another cpu for
1091 * memory from the node of the cpu going down. The list3
1092 * structure is usually allocated from kmem_cache_create() and
1093 * gets destroyed at kmem_cache_destroy().
1094 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 /* fall thru */
1096 case CPU_UP_CANCELED:
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001097 mutex_lock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098
1099 list_for_each_entry(cachep, &cache_chain, next) {
1100 struct array_cache *nc;
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001101 struct array_cache *shared;
1102 struct array_cache **alien;
Christoph Lametere498be72005-09-09 13:03:32 -07001103 cpumask_t mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
Christoph Lametere498be72005-09-09 13:03:32 -07001105 mask = node_to_cpumask(node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 /* cpu is dead; no one can alloc from it. */
1107 nc = cachep->array[cpu];
1108 cachep->array[cpu] = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07001109 l3 = cachep->nodelists[node];
1110
1111 if (!l3)
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001112 goto free_array_cache;
Christoph Lametere498be72005-09-09 13:03:32 -07001113
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08001114 spin_lock_irq(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07001115
1116 /* Free limit for this kmem_list3 */
1117 l3->free_limit -= cachep->batchcount;
1118 if (nc)
Christoph Lameterff694162005-09-22 21:44:02 -07001119 free_block(cachep, nc->entry, nc->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -07001120
1121 if (!cpus_empty(mask)) {
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08001122 spin_unlock_irq(&l3->list_lock);
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001123 goto free_array_cache;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001124 }
Christoph Lametere498be72005-09-09 13:03:32 -07001125
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001126 shared = l3->shared;
1127 if (shared) {
Christoph Lametere498be72005-09-09 13:03:32 -07001128 free_block(cachep, l3->shared->entry,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001129 l3->shared->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -07001130 l3->shared = NULL;
1131 }
Christoph Lametere498be72005-09-09 13:03:32 -07001132
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001133 alien = l3->alien;
1134 l3->alien = NULL;
1135
1136 spin_unlock_irq(&l3->list_lock);
1137
1138 kfree(shared);
1139 if (alien) {
1140 drain_alien_cache(cachep, alien);
1141 free_alien_cache(alien);
Christoph Lametere498be72005-09-09 13:03:32 -07001142 }
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001143free_array_cache:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 kfree(nc);
1145 }
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001146 /*
1147 * In the previous loop, all the objects were freed to
1148 * the respective cache's slabs, now we can go ahead and
1149 * shrink each nodelist to its limit.
1150 */
1151 list_for_each_entry(cachep, &cache_chain, next) {
1152 l3 = cachep->nodelists[node];
1153 if (!l3)
1154 continue;
1155 spin_lock_irq(&l3->list_lock);
1156 /* free slabs belonging to this node */
1157 __node_shrink(cachep, node);
1158 spin_unlock_irq(&l3->list_lock);
1159 }
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001160 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 break;
1162#endif
1163 }
1164 return NOTIFY_OK;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001165 bad:
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001166 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167 return NOTIFY_BAD;
1168}
1169
1170static struct notifier_block cpucache_notifier = { &cpuup_callback, NULL, 0 };
1171
Christoph Lametere498be72005-09-09 13:03:32 -07001172/*
1173 * swap the static kmem_list3 with kmalloced memory
1174 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001175static void init_list(struct kmem_cache *cachep, struct kmem_list3 *list, int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07001176{
1177 struct kmem_list3 *ptr;
1178
1179 BUG_ON(cachep->nodelists[nodeid] != list);
1180 ptr = kmalloc_node(sizeof(struct kmem_list3), GFP_KERNEL, nodeid);
1181 BUG_ON(!ptr);
1182
1183 local_irq_disable();
1184 memcpy(ptr, list, sizeof(struct kmem_list3));
1185 MAKE_ALL_LISTS(cachep, ptr, nodeid);
1186 cachep->nodelists[nodeid] = ptr;
1187 local_irq_enable();
1188}
1189
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190/* Initialisation.
1191 * Called after the gfp() functions have been enabled, and before smp_init().
1192 */
1193void __init kmem_cache_init(void)
1194{
1195 size_t left_over;
1196 struct cache_sizes *sizes;
1197 struct cache_names *names;
Christoph Lametere498be72005-09-09 13:03:32 -07001198 int i;
Jack Steiner07ed76b2006-03-07 21:55:46 -08001199 int order;
Christoph Lametere498be72005-09-09 13:03:32 -07001200
1201 for (i = 0; i < NUM_INIT_LISTS; i++) {
1202 kmem_list3_init(&initkmem_list3[i]);
1203 if (i < MAX_NUMNODES)
1204 cache_cache.nodelists[i] = NULL;
1205 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
1207 /*
1208 * Fragmentation resistance on low memory - only use bigger
1209 * page orders on machines with more than 32MB of memory.
1210 */
1211 if (num_physpages > (32 << 20) >> PAGE_SHIFT)
1212 slab_break_gfp_order = BREAK_GFP_ORDER_HI;
1213
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 /* Bootstrap is tricky, because several objects are allocated
1215 * from caches that do not exist yet:
Pekka Enberg343e0d72006-02-01 03:05:50 -08001216 * 1) initialize the cache_cache cache: it contains the struct kmem_cache
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 * structures of all caches, except cache_cache itself: cache_cache
1218 * is statically allocated.
Christoph Lametere498be72005-09-09 13:03:32 -07001219 * Initially an __init data area is used for the head array and the
1220 * kmem_list3 structures, it's replaced with a kmalloc allocated
1221 * array at the end of the bootstrap.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222 * 2) Create the first kmalloc cache.
Pekka Enberg343e0d72006-02-01 03:05:50 -08001223 * The struct kmem_cache for the new cache is allocated normally.
Christoph Lametere498be72005-09-09 13:03:32 -07001224 * An __init data area is used for the head array.
1225 * 3) Create the remaining kmalloc caches, with minimally sized
1226 * head arrays.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 * 4) Replace the __init data head arrays for cache_cache and the first
1228 * kmalloc cache with kmalloc allocated arrays.
Christoph Lametere498be72005-09-09 13:03:32 -07001229 * 5) Replace the __init data for kmem_list3 for cache_cache and
1230 * the other cache's with kmalloc allocated memory.
1231 * 6) Resize the head arrays of the kmalloc caches to their final sizes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 */
1233
1234 /* 1) create the cache_cache */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 INIT_LIST_HEAD(&cache_chain);
1236 list_add(&cache_cache.next, &cache_chain);
1237 cache_cache.colour_off = cache_line_size();
1238 cache_cache.array[smp_processor_id()] = &initarray_cache.cache;
Christoph Lametere498be72005-09-09 13:03:32 -07001239 cache_cache.nodelists[numa_node_id()] = &initkmem_list3[CACHE_CACHE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001241 cache_cache.buffer_size = ALIGN(cache_cache.buffer_size, cache_line_size());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242
Jack Steiner07ed76b2006-03-07 21:55:46 -08001243 for (order = 0; order < MAX_ORDER; order++) {
1244 cache_estimate(order, cache_cache.buffer_size,
1245 cache_line_size(), 0, &left_over, &cache_cache.num);
1246 if (cache_cache.num)
1247 break;
1248 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 if (!cache_cache.num)
1250 BUG();
Jack Steiner07ed76b2006-03-07 21:55:46 -08001251 cache_cache.gfporder = order;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001252 cache_cache.colour = left_over / cache_cache.colour_off;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001253 cache_cache.slab_size = ALIGN(cache_cache.num * sizeof(kmem_bufctl_t) +
1254 sizeof(struct slab), cache_line_size());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
1256 /* 2+3) create the kmalloc caches */
1257 sizes = malloc_sizes;
1258 names = cache_names;
1259
Christoph Lametere498be72005-09-09 13:03:32 -07001260 /* Initialize the caches that provide memory for the array cache
1261 * and the kmem_list3 structures first.
1262 * Without this, further allocations will bug
1263 */
1264
1265 sizes[INDEX_AC].cs_cachep = kmem_cache_create(names[INDEX_AC].name,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001266 sizes[INDEX_AC].cs_size,
1267 ARCH_KMALLOC_MINALIGN,
1268 (ARCH_KMALLOC_FLAGS |
1269 SLAB_PANIC), NULL, NULL);
Christoph Lametere498be72005-09-09 13:03:32 -07001270
1271 if (INDEX_AC != INDEX_L3)
1272 sizes[INDEX_L3].cs_cachep =
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001273 kmem_cache_create(names[INDEX_L3].name,
1274 sizes[INDEX_L3].cs_size,
1275 ARCH_KMALLOC_MINALIGN,
1276 (ARCH_KMALLOC_FLAGS | SLAB_PANIC), NULL,
1277 NULL);
Christoph Lametere498be72005-09-09 13:03:32 -07001278
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 while (sizes->cs_size != ULONG_MAX) {
Christoph Lametere498be72005-09-09 13:03:32 -07001280 /*
1281 * For performance, all the general caches are L1 aligned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 * This should be particularly beneficial on SMP boxes, as it
1283 * eliminates "false sharing".
1284 * Note for systems short on memory removing the alignment will
Christoph Lametere498be72005-09-09 13:03:32 -07001285 * allow tighter packing of the smaller caches.
1286 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001287 if (!sizes->cs_cachep)
Christoph Lametere498be72005-09-09 13:03:32 -07001288 sizes->cs_cachep = kmem_cache_create(names->name,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001289 sizes->cs_size,
1290 ARCH_KMALLOC_MINALIGN,
1291 (ARCH_KMALLOC_FLAGS
1292 | SLAB_PANIC),
1293 NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294
1295 /* Inc off-slab bufctl limit until the ceiling is hit. */
1296 if (!(OFF_SLAB(sizes->cs_cachep))) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001297 offslab_limit = sizes->cs_size - sizeof(struct slab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 offslab_limit /= sizeof(kmem_bufctl_t);
1299 }
1300
1301 sizes->cs_dmacachep = kmem_cache_create(names->name_dma,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001302 sizes->cs_size,
1303 ARCH_KMALLOC_MINALIGN,
1304 (ARCH_KMALLOC_FLAGS |
1305 SLAB_CACHE_DMA |
1306 SLAB_PANIC), NULL,
1307 NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001308
1309 sizes++;
1310 names++;
1311 }
1312 /* 4) Replace the bootstrap head arrays */
1313 {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001314 void *ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001315
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 ptr = kmalloc(sizeof(struct arraycache_init), GFP_KERNEL);
Christoph Lametere498be72005-09-09 13:03:32 -07001317
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 local_irq_disable();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001319 BUG_ON(cpu_cache_get(&cache_cache) != &initarray_cache.cache);
1320 memcpy(ptr, cpu_cache_get(&cache_cache),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001321 sizeof(struct arraycache_init));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 cache_cache.array[smp_processor_id()] = ptr;
1323 local_irq_enable();
Christoph Lametere498be72005-09-09 13:03:32 -07001324
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 ptr = kmalloc(sizeof(struct arraycache_init), GFP_KERNEL);
Christoph Lametere498be72005-09-09 13:03:32 -07001326
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 local_irq_disable();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001328 BUG_ON(cpu_cache_get(malloc_sizes[INDEX_AC].cs_cachep)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001329 != &initarray_generic.cache);
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001330 memcpy(ptr, cpu_cache_get(malloc_sizes[INDEX_AC].cs_cachep),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001331 sizeof(struct arraycache_init));
Christoph Lametere498be72005-09-09 13:03:32 -07001332 malloc_sizes[INDEX_AC].cs_cachep->array[smp_processor_id()] =
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001333 ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 local_irq_enable();
1335 }
Christoph Lametere498be72005-09-09 13:03:32 -07001336 /* 5) Replace the bootstrap kmem_list3's */
1337 {
1338 int node;
1339 /* Replace the static kmem_list3 structures for the boot cpu */
1340 init_list(&cache_cache, &initkmem_list3[CACHE_CACHE],
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001341 numa_node_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342
Christoph Lametere498be72005-09-09 13:03:32 -07001343 for_each_online_node(node) {
1344 init_list(malloc_sizes[INDEX_AC].cs_cachep,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001345 &initkmem_list3[SIZE_AC + node], node);
Christoph Lametere498be72005-09-09 13:03:32 -07001346
1347 if (INDEX_AC != INDEX_L3) {
1348 init_list(malloc_sizes[INDEX_L3].cs_cachep,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001349 &initkmem_list3[SIZE_L3 + node],
1350 node);
Christoph Lametere498be72005-09-09 13:03:32 -07001351 }
1352 }
1353 }
1354
1355 /* 6) resize the head arrays to their final sizes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 {
Pekka Enberg343e0d72006-02-01 03:05:50 -08001357 struct kmem_cache *cachep;
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001358 mutex_lock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 list_for_each_entry(cachep, &cache_chain, next)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001360 enable_cpucache(cachep);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001361 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 }
1363
1364 /* Done! */
1365 g_cpucache_up = FULL;
1366
1367 /* Register a cpu startup notifier callback
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001368 * that initializes cpu_cache_get for all new cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 */
1370 register_cpu_notifier(&cpucache_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371
1372 /* The reap timers are started later, with a module init call:
1373 * That part of the kernel is not yet operational.
1374 */
1375}
1376
1377static int __init cpucache_init(void)
1378{
1379 int cpu;
1380
1381 /*
1382 * Register the timers that return unneeded
1383 * pages to gfp.
1384 */
Christoph Lametere498be72005-09-09 13:03:32 -07001385 for_each_online_cpu(cpu)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001386 start_cpu_timer(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387
1388 return 0;
1389}
1390
1391__initcall(cpucache_init);
1392
1393/*
1394 * Interface to system's page allocator. No need to hold the cache-lock.
1395 *
1396 * If we requested dmaable memory, we will get it. Even if we
1397 * did not request dmaable memory, we might get it, but that
1398 * would be relatively rare and ignorable.
1399 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001400static void *kmem_getpages(struct kmem_cache *cachep, gfp_t flags, int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401{
1402 struct page *page;
1403 void *addr;
1404 int i;
1405
1406 flags |= cachep->gfpflags;
Christoph Lameter50c85a12005-11-13 16:06:47 -08001407 page = alloc_pages_node(nodeid, flags, cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 if (!page)
1409 return NULL;
1410 addr = page_address(page);
1411
1412 i = (1 << cachep->gfporder);
1413 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1414 atomic_add(i, &slab_reclaim_pages);
1415 add_page_state(nr_slab, i);
1416 while (i--) {
Nick Pigginf205b2f2006-03-22 00:08:02 -08001417 __SetPageSlab(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 page++;
1419 }
1420 return addr;
1421}
1422
1423/*
1424 * Interface to system's page release.
1425 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001426static void kmem_freepages(struct kmem_cache *cachep, void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001428 unsigned long i = (1 << cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 struct page *page = virt_to_page(addr);
1430 const unsigned long nr_freed = i;
1431
1432 while (i--) {
Nick Pigginf205b2f2006-03-22 00:08:02 -08001433 BUG_ON(!PageSlab(page));
1434 __ClearPageSlab(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 page++;
1436 }
1437 sub_page_state(nr_slab, nr_freed);
1438 if (current->reclaim_state)
1439 current->reclaim_state->reclaimed_slab += nr_freed;
1440 free_pages((unsigned long)addr, cachep->gfporder);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001441 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1442 atomic_sub(1 << cachep->gfporder, &slab_reclaim_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443}
1444
1445static void kmem_rcu_free(struct rcu_head *head)
1446{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001447 struct slab_rcu *slab_rcu = (struct slab_rcu *)head;
Pekka Enberg343e0d72006-02-01 03:05:50 -08001448 struct kmem_cache *cachep = slab_rcu->cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449
1450 kmem_freepages(cachep, slab_rcu->addr);
1451 if (OFF_SLAB(cachep))
1452 kmem_cache_free(cachep->slabp_cache, slab_rcu);
1453}
1454
1455#if DEBUG
1456
1457#ifdef CONFIG_DEBUG_PAGEALLOC
Pekka Enberg343e0d72006-02-01 03:05:50 -08001458static void store_stackinfo(struct kmem_cache *cachep, unsigned long *addr,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001459 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460{
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001461 int size = obj_size(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001463 addr = (unsigned long *)&((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001465 if (size < 5 * sizeof(unsigned long))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 return;
1467
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001468 *addr++ = 0x12345678;
1469 *addr++ = caller;
1470 *addr++ = smp_processor_id();
1471 size -= 3 * sizeof(unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 {
1473 unsigned long *sptr = &caller;
1474 unsigned long svalue;
1475
1476 while (!kstack_end(sptr)) {
1477 svalue = *sptr++;
1478 if (kernel_text_address(svalue)) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001479 *addr++ = svalue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 size -= sizeof(unsigned long);
1481 if (size <= sizeof(unsigned long))
1482 break;
1483 }
1484 }
1485
1486 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001487 *addr++ = 0x87654321;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488}
1489#endif
1490
Pekka Enberg343e0d72006-02-01 03:05:50 -08001491static void poison_obj(struct kmem_cache *cachep, void *addr, unsigned char val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492{
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001493 int size = obj_size(cachep);
1494 addr = &((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
1496 memset(addr, val, size);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001497 *(unsigned char *)(addr + size - 1) = POISON_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498}
1499
1500static void dump_line(char *data, int offset, int limit)
1501{
1502 int i;
1503 printk(KERN_ERR "%03x:", offset);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001504 for (i = 0; i < limit; i++) {
1505 printk(" %02x", (unsigned char)data[offset + i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 }
1507 printk("\n");
1508}
1509#endif
1510
1511#if DEBUG
1512
Pekka Enberg343e0d72006-02-01 03:05:50 -08001513static void print_objinfo(struct kmem_cache *cachep, void *objp, int lines)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514{
1515 int i, size;
1516 char *realobj;
1517
1518 if (cachep->flags & SLAB_RED_ZONE) {
1519 printk(KERN_ERR "Redzone: 0x%lx/0x%lx.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001520 *dbg_redzone1(cachep, objp),
1521 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 }
1523
1524 if (cachep->flags & SLAB_STORE_USER) {
1525 printk(KERN_ERR "Last user: [<%p>]",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001526 *dbg_userword(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527 print_symbol("(%s)",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001528 (unsigned long)*dbg_userword(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 printk("\n");
1530 }
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001531 realobj = (char *)objp + obj_offset(cachep);
1532 size = obj_size(cachep);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001533 for (i = 0; i < size && lines; i += 16, lines--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 int limit;
1535 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001536 if (i + limit > size)
1537 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 dump_line(realobj, i, limit);
1539 }
1540}
1541
Pekka Enberg343e0d72006-02-01 03:05:50 -08001542static void check_poison_obj(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543{
1544 char *realobj;
1545 int size, i;
1546 int lines = 0;
1547
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001548 realobj = (char *)objp + obj_offset(cachep);
1549 size = obj_size(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001551 for (i = 0; i < size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 char exp = POISON_FREE;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001553 if (i == size - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 exp = POISON_END;
1555 if (realobj[i] != exp) {
1556 int limit;
1557 /* Mismatch ! */
1558 /* Print header */
1559 if (lines == 0) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001560 printk(KERN_ERR
1561 "Slab corruption: start=%p, len=%d\n",
1562 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 print_objinfo(cachep, objp, 0);
1564 }
1565 /* Hexdump the affected line */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001566 i = (i / 16) * 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001568 if (i + limit > size)
1569 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 dump_line(realobj, i, limit);
1571 i += 16;
1572 lines++;
1573 /* Limit to 5 lines */
1574 if (lines > 5)
1575 break;
1576 }
1577 }
1578 if (lines != 0) {
1579 /* Print some data about the neighboring objects, if they
1580 * exist:
1581 */
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08001582 struct slab *slabp = virt_to_slab(objp);
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001583 unsigned int objnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001585 objnr = obj_to_index(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 if (objnr) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001587 objp = index_to_obj(cachep, slabp, objnr - 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001588 realobj = (char *)objp + obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 printk(KERN_ERR "Prev obj: start=%p, len=%d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001590 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 print_objinfo(cachep, objp, 2);
1592 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001593 if (objnr + 1 < cachep->num) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001594 objp = index_to_obj(cachep, slabp, objnr + 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001595 realobj = (char *)objp + obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596 printk(KERN_ERR "Next obj: start=%p, len=%d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001597 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 print_objinfo(cachep, objp, 2);
1599 }
1600 }
1601}
1602#endif
1603
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604#if DEBUG
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001605/**
1606 * slab_destroy_objs - call the registered destructor for each object in
1607 * a slab that is to be destroyed.
1608 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001609static void slab_destroy_objs(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001610{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 int i;
1612 for (i = 0; i < cachep->num; i++) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001613 void *objp = index_to_obj(cachep, slabp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614
1615 if (cachep->flags & SLAB_POISON) {
1616#ifdef CONFIG_DEBUG_PAGEALLOC
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001617 if ((cachep->buffer_size % PAGE_SIZE) == 0
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001618 && OFF_SLAB(cachep))
1619 kernel_map_pages(virt_to_page(objp),
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001620 cachep->buffer_size / PAGE_SIZE,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001621 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 else
1623 check_poison_obj(cachep, objp);
1624#else
1625 check_poison_obj(cachep, objp);
1626#endif
1627 }
1628 if (cachep->flags & SLAB_RED_ZONE) {
1629 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
1630 slab_error(cachep, "start of a freed object "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001631 "was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
1633 slab_error(cachep, "end of a freed object "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001634 "was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 }
1636 if (cachep->dtor && !(cachep->flags & SLAB_POISON))
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001637 (cachep->dtor) (objp + obj_offset(cachep), cachep, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 }
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001639}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640#else
Pekka Enberg343e0d72006-02-01 03:05:50 -08001641static void slab_destroy_objs(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001642{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 if (cachep->dtor) {
1644 int i;
1645 for (i = 0; i < cachep->num; i++) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001646 void *objp = index_to_obj(cachep, slabp, i);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001647 (cachep->dtor) (objp, cachep, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 }
1649 }
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001650}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651#endif
1652
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001653/**
1654 * Destroy all the objs in a slab, and release the mem back to the system.
1655 * Before calling the slab must have been unlinked from the cache.
1656 * The cache-lock is not held/needed.
1657 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001658static void slab_destroy(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001659{
1660 void *addr = slabp->s_mem - slabp->colouroff;
1661
1662 slab_destroy_objs(cachep, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 if (unlikely(cachep->flags & SLAB_DESTROY_BY_RCU)) {
1664 struct slab_rcu *slab_rcu;
1665
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001666 slab_rcu = (struct slab_rcu *)slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 slab_rcu->cachep = cachep;
1668 slab_rcu->addr = addr;
1669 call_rcu(&slab_rcu->head, kmem_rcu_free);
1670 } else {
1671 kmem_freepages(cachep, addr);
1672 if (OFF_SLAB(cachep))
1673 kmem_cache_free(cachep->slabp_cache, slabp);
1674 }
1675}
1676
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001677/* For setting up all the kmem_list3s for cache whose buffer_size is same
Christoph Lametere498be72005-09-09 13:03:32 -07001678 as size of kmem_list3. */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001679static void set_up_list3s(struct kmem_cache *cachep, int index)
Christoph Lametere498be72005-09-09 13:03:32 -07001680{
1681 int node;
1682
1683 for_each_online_node(node) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001684 cachep->nodelists[node] = &initkmem_list3[index + node];
Christoph Lametere498be72005-09-09 13:03:32 -07001685 cachep->nodelists[node]->next_reap = jiffies +
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001686 REAPTIMEOUT_LIST3 +
1687 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
Christoph Lametere498be72005-09-09 13:03:32 -07001688 }
1689}
1690
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691/**
Randy.Dunlapa70773d2006-02-01 03:05:52 -08001692 * calculate_slab_order - calculate size (page order) of slabs
1693 * @cachep: pointer to the cache that is being created
1694 * @size: size of objects to be created in this cache.
1695 * @align: required alignment for the objects.
1696 * @flags: slab allocation flags
1697 *
1698 * Also calculates the number of objects per slab.
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001699 *
1700 * This could be made much more intelligent. For now, try to avoid using
1701 * high order pages for slabs. When the gfp() functions are more friendly
1702 * towards high-order requests, this should be changed.
1703 */
Randy Dunlapee13d782006-02-01 03:05:53 -08001704static inline size_t calculate_slab_order(struct kmem_cache *cachep,
1705 size_t size, size_t align, unsigned long flags)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001706{
1707 size_t left_over = 0;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001708 int gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001709
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001710 for (gfporder = 0 ; gfporder <= MAX_GFP_ORDER; gfporder++) {
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001711 unsigned int num;
1712 size_t remainder;
1713
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001714 cache_estimate(gfporder, size, align, flags, &remainder, &num);
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001715 if (!num)
1716 continue;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001717
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001718 /* More than offslab_limit objects will cause problems */
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001719 if ((flags & CFLGS_OFF_SLAB) && num > offslab_limit)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001720 break;
1721
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001722 /* Found something acceptable - save it away */
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001723 cachep->num = num;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001724 cachep->gfporder = gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001725 left_over = remainder;
1726
1727 /*
Linus Torvaldsf78bb8a2006-03-08 10:33:05 -08001728 * A VFS-reclaimable slab tends to have most allocations
1729 * as GFP_NOFS and we really don't want to have to be allocating
1730 * higher-order pages when we are unable to shrink dcache.
1731 */
1732 if (flags & SLAB_RECLAIM_ACCOUNT)
1733 break;
1734
1735 /*
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001736 * Large number of objects is good, but very large slabs are
1737 * currently bad for the gfp()s.
1738 */
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001739 if (gfporder >= slab_break_gfp_order)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001740 break;
1741
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001742 /*
1743 * Acceptable internal fragmentation?
1744 */
1745 if ((left_over * 8) <= (PAGE_SIZE << gfporder))
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001746 break;
1747 }
1748 return left_over;
1749}
1750
1751/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 * kmem_cache_create - Create a cache.
1753 * @name: A string which is used in /proc/slabinfo to identify this cache.
1754 * @size: The size of objects to be created in this cache.
1755 * @align: The required alignment for the objects.
1756 * @flags: SLAB flags
1757 * @ctor: A constructor for the objects.
1758 * @dtor: A destructor for the objects.
1759 *
1760 * Returns a ptr to the cache on success, NULL on failure.
1761 * Cannot be called within a int, but can be interrupted.
1762 * The @ctor is run when new pages are allocated by the cache
1763 * and the @dtor is run before the pages are handed back.
1764 *
1765 * @name must be valid until the cache is destroyed. This implies that
1766 * the module calling this has to destroy the cache before getting
1767 * unloaded.
1768 *
1769 * The flags are
1770 *
1771 * %SLAB_POISON - Poison the slab with a known test pattern (a5a5a5a5)
1772 * to catch references to uninitialised memory.
1773 *
1774 * %SLAB_RED_ZONE - Insert `Red' zones around the allocated memory to check
1775 * for buffer overruns.
1776 *
1777 * %SLAB_NO_REAP - Don't automatically reap this cache when we're under
1778 * memory pressure.
1779 *
1780 * %SLAB_HWCACHE_ALIGN - Align the objects in this cache to a hardware
1781 * cacheline. This can be beneficial if you're counting cycles as closely
1782 * as davem.
1783 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001784struct kmem_cache *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785kmem_cache_create (const char *name, size_t size, size_t align,
Pekka Enberg343e0d72006-02-01 03:05:50 -08001786 unsigned long flags, void (*ctor)(void*, struct kmem_cache *, unsigned long),
1787 void (*dtor)(void*, struct kmem_cache *, unsigned long))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788{
1789 size_t left_over, slab_size, ralign;
Pekka Enberg343e0d72006-02-01 03:05:50 -08001790 struct kmem_cache *cachep = NULL;
Andrew Morton4f12bb42005-11-07 00:58:00 -08001791 struct list_head *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792
1793 /*
1794 * Sanity checks... these are all serious usage bugs.
1795 */
1796 if ((!name) ||
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001797 in_interrupt() ||
1798 (size < BYTES_PER_WORD) ||
1799 (size > (1 << MAX_OBJ_ORDER) * PAGE_SIZE) || (dtor && !ctor)) {
1800 printk(KERN_ERR "%s: Early error in slab %s\n",
1801 __FUNCTION__, name);
1802 BUG();
1803 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804
Ravikiran G Thirumalaif0188f42006-02-10 01:51:13 -08001805 /*
1806 * Prevent CPUs from coming and going.
1807 * lock_cpu_hotplug() nests outside cache_chain_mutex
1808 */
1809 lock_cpu_hotplug();
1810
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001811 mutex_lock(&cache_chain_mutex);
Andrew Morton4f12bb42005-11-07 00:58:00 -08001812
1813 list_for_each(p, &cache_chain) {
Pekka Enberg343e0d72006-02-01 03:05:50 -08001814 struct kmem_cache *pc = list_entry(p, struct kmem_cache, next);
Andrew Morton4f12bb42005-11-07 00:58:00 -08001815 mm_segment_t old_fs = get_fs();
1816 char tmp;
1817 int res;
1818
1819 /*
1820 * This happens when the module gets unloaded and doesn't
1821 * destroy its slab cache and no-one else reuses the vmalloc
1822 * area of the module. Print a warning.
1823 */
1824 set_fs(KERNEL_DS);
1825 res = __get_user(tmp, pc->name);
1826 set_fs(old_fs);
1827 if (res) {
1828 printk("SLAB: cache with size %d has lost its name\n",
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001829 pc->buffer_size);
Andrew Morton4f12bb42005-11-07 00:58:00 -08001830 continue;
1831 }
1832
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001833 if (!strcmp(pc->name, name)) {
Andrew Morton4f12bb42005-11-07 00:58:00 -08001834 printk("kmem_cache_create: duplicate cache %s\n", name);
1835 dump_stack();
1836 goto oops;
1837 }
1838 }
1839
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840#if DEBUG
1841 WARN_ON(strchr(name, ' ')); /* It confuses parsers */
1842 if ((flags & SLAB_DEBUG_INITIAL) && !ctor) {
1843 /* No constructor, but inital state check requested */
1844 printk(KERN_ERR "%s: No con, but init state check "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001845 "requested - %s\n", __FUNCTION__, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 flags &= ~SLAB_DEBUG_INITIAL;
1847 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848#if FORCED_DEBUG
1849 /*
1850 * Enable redzoning and last user accounting, except for caches with
1851 * large objects, if the increased size would increase the object size
1852 * above the next power of two: caches with object sizes just above a
1853 * power of two have a significant amount of internal fragmentation.
1854 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001855 if ((size < 4096
1856 || fls(size - 1) == fls(size - 1 + 3 * BYTES_PER_WORD)))
1857 flags |= SLAB_RED_ZONE | SLAB_STORE_USER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 if (!(flags & SLAB_DESTROY_BY_RCU))
1859 flags |= SLAB_POISON;
1860#endif
1861 if (flags & SLAB_DESTROY_BY_RCU)
1862 BUG_ON(flags & SLAB_POISON);
1863#endif
1864 if (flags & SLAB_DESTROY_BY_RCU)
1865 BUG_ON(dtor);
1866
1867 /*
1868 * Always checks flags, a caller might be expecting debug
1869 * support which isn't available.
1870 */
1871 if (flags & ~CREATE_MASK)
1872 BUG();
1873
1874 /* Check that size is in terms of words. This is needed to avoid
1875 * unaligned accesses for some archs when redzoning is used, and makes
1876 * sure any on-slab bufctl's are also correctly aligned.
1877 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001878 if (size & (BYTES_PER_WORD - 1)) {
1879 size += (BYTES_PER_WORD - 1);
1880 size &= ~(BYTES_PER_WORD - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 }
1882
1883 /* calculate out the final buffer alignment: */
1884 /* 1) arch recommendation: can be overridden for debug */
1885 if (flags & SLAB_HWCACHE_ALIGN) {
1886 /* Default alignment: as specified by the arch code.
1887 * Except if an object is really small, then squeeze multiple
1888 * objects into one cacheline.
1889 */
1890 ralign = cache_line_size();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001891 while (size <= ralign / 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 ralign /= 2;
1893 } else {
1894 ralign = BYTES_PER_WORD;
1895 }
1896 /* 2) arch mandated alignment: disables debug if necessary */
1897 if (ralign < ARCH_SLAB_MINALIGN) {
1898 ralign = ARCH_SLAB_MINALIGN;
1899 if (ralign > BYTES_PER_WORD)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001900 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 }
1902 /* 3) caller mandated alignment: disables debug if necessary */
1903 if (ralign < align) {
1904 ralign = align;
1905 if (ralign > BYTES_PER_WORD)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001906 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907 }
1908 /* 4) Store it. Note that the debug code below can reduce
1909 * the alignment to BYTES_PER_WORD.
1910 */
1911 align = ralign;
1912
1913 /* Get cache's description obj. */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001914 cachep = kmem_cache_alloc(&cache_cache, SLAB_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 if (!cachep)
Andrew Morton4f12bb42005-11-07 00:58:00 -08001916 goto oops;
Pekka Enberg343e0d72006-02-01 03:05:50 -08001917 memset(cachep, 0, sizeof(struct kmem_cache));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918
1919#if DEBUG
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001920 cachep->obj_size = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921
1922 if (flags & SLAB_RED_ZONE) {
1923 /* redzoning only works with word aligned caches */
1924 align = BYTES_PER_WORD;
1925
1926 /* add space for red zone words */
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001927 cachep->obj_offset += BYTES_PER_WORD;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001928 size += 2 * BYTES_PER_WORD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929 }
1930 if (flags & SLAB_STORE_USER) {
1931 /* user store requires word alignment and
1932 * one word storage behind the end of the real
1933 * object.
1934 */
1935 align = BYTES_PER_WORD;
1936 size += BYTES_PER_WORD;
1937 }
1938#if FORCED_DEBUG && defined(CONFIG_DEBUG_PAGEALLOC)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001939 if (size >= malloc_sizes[INDEX_L3 + 1].cs_size
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001940 && cachep->obj_size > cache_line_size() && size < PAGE_SIZE) {
1941 cachep->obj_offset += PAGE_SIZE - size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 size = PAGE_SIZE;
1943 }
1944#endif
1945#endif
1946
1947 /* Determine if the slab management is 'on' or 'off' slab. */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001948 if (size >= (PAGE_SIZE >> 3))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 /*
1950 * Size is large, assume best to place the slab management obj
1951 * off-slab (should allow better packing of objs).
1952 */
1953 flags |= CFLGS_OFF_SLAB;
1954
1955 size = ALIGN(size, align);
1956
Linus Torvaldsf78bb8a2006-03-08 10:33:05 -08001957 left_over = calculate_slab_order(cachep, size, align, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958
1959 if (!cachep->num) {
1960 printk("kmem_cache_create: couldn't create cache %s.\n", name);
1961 kmem_cache_free(&cache_cache, cachep);
1962 cachep = NULL;
Andrew Morton4f12bb42005-11-07 00:58:00 -08001963 goto oops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001965 slab_size = ALIGN(cachep->num * sizeof(kmem_bufctl_t)
1966 + sizeof(struct slab), align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967
1968 /*
1969 * If the slab has been placed off-slab, and we have enough space then
1970 * move it on-slab. This is at the expense of any extra colouring.
1971 */
1972 if (flags & CFLGS_OFF_SLAB && left_over >= slab_size) {
1973 flags &= ~CFLGS_OFF_SLAB;
1974 left_over -= slab_size;
1975 }
1976
1977 if (flags & CFLGS_OFF_SLAB) {
1978 /* really off slab. No need for manual alignment */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001979 slab_size =
1980 cachep->num * sizeof(kmem_bufctl_t) + sizeof(struct slab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 }
1982
1983 cachep->colour_off = cache_line_size();
1984 /* Offset must be a multiple of the alignment. */
1985 if (cachep->colour_off < align)
1986 cachep->colour_off = align;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001987 cachep->colour = left_over / cachep->colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 cachep->slab_size = slab_size;
1989 cachep->flags = flags;
1990 cachep->gfpflags = 0;
1991 if (flags & SLAB_CACHE_DMA)
1992 cachep->gfpflags |= GFP_DMA;
1993 spin_lock_init(&cachep->spinlock);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001994 cachep->buffer_size = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995
1996 if (flags & CFLGS_OFF_SLAB)
Victor Fuscob2d55072005-09-10 00:26:36 -07001997 cachep->slabp_cache = kmem_find_general_cachep(slab_size, 0u);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 cachep->ctor = ctor;
1999 cachep->dtor = dtor;
2000 cachep->name = name;
2001
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002
2003 if (g_cpucache_up == FULL) {
2004 enable_cpucache(cachep);
2005 } else {
2006 if (g_cpucache_up == NONE) {
2007 /* Note: the first kmem_cache_create must create
2008 * the cache that's used by kmalloc(24), otherwise
2009 * the creation of further caches will BUG().
2010 */
Christoph Lametere498be72005-09-09 13:03:32 -07002011 cachep->array[smp_processor_id()] =
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002012 &initarray_generic.cache;
Christoph Lametere498be72005-09-09 13:03:32 -07002013
2014 /* If the cache that's used by
2015 * kmalloc(sizeof(kmem_list3)) is the first cache,
2016 * then we need to set up all its list3s, otherwise
2017 * the creation of further caches will BUG().
2018 */
2019 set_up_list3s(cachep, SIZE_AC);
2020 if (INDEX_AC == INDEX_L3)
2021 g_cpucache_up = PARTIAL_L3;
2022 else
2023 g_cpucache_up = PARTIAL_AC;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024 } else {
Christoph Lametere498be72005-09-09 13:03:32 -07002025 cachep->array[smp_processor_id()] =
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002026 kmalloc(sizeof(struct arraycache_init), GFP_KERNEL);
Christoph Lametere498be72005-09-09 13:03:32 -07002027
2028 if (g_cpucache_up == PARTIAL_AC) {
2029 set_up_list3s(cachep, SIZE_L3);
2030 g_cpucache_up = PARTIAL_L3;
2031 } else {
2032 int node;
2033 for_each_online_node(node) {
2034
2035 cachep->nodelists[node] =
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002036 kmalloc_node(sizeof
2037 (struct kmem_list3),
2038 GFP_KERNEL, node);
Christoph Lametere498be72005-09-09 13:03:32 -07002039 BUG_ON(!cachep->nodelists[node]);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002040 kmem_list3_init(cachep->
2041 nodelists[node]);
Christoph Lametere498be72005-09-09 13:03:32 -07002042 }
2043 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 }
Christoph Lametere498be72005-09-09 13:03:32 -07002045 cachep->nodelists[numa_node_id()]->next_reap =
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002046 jiffies + REAPTIMEOUT_LIST3 +
2047 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
Christoph Lametere498be72005-09-09 13:03:32 -07002048
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002049 BUG_ON(!cpu_cache_get(cachep));
2050 cpu_cache_get(cachep)->avail = 0;
2051 cpu_cache_get(cachep)->limit = BOOT_CPUCACHE_ENTRIES;
2052 cpu_cache_get(cachep)->batchcount = 1;
2053 cpu_cache_get(cachep)->touched = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 cachep->batchcount = 1;
2055 cachep->limit = BOOT_CPUCACHE_ENTRIES;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002056 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 /* cache setup completed, link it into the list */
2059 list_add(&cachep->next, &cache_chain);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002060 oops:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 if (!cachep && (flags & SLAB_PANIC))
2062 panic("kmem_cache_create(): failed to create slab `%s'\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002063 name);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002064 mutex_unlock(&cache_chain_mutex);
Ravikiran G Thirumalaif0188f42006-02-10 01:51:13 -08002065 unlock_cpu_hotplug();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 return cachep;
2067}
2068EXPORT_SYMBOL(kmem_cache_create);
2069
2070#if DEBUG
2071static void check_irq_off(void)
2072{
2073 BUG_ON(!irqs_disabled());
2074}
2075
2076static void check_irq_on(void)
2077{
2078 BUG_ON(irqs_disabled());
2079}
2080
Pekka Enberg343e0d72006-02-01 03:05:50 -08002081static void check_spinlock_acquired(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082{
2083#ifdef CONFIG_SMP
2084 check_irq_off();
Christoph Lametere498be72005-09-09 13:03:32 -07002085 assert_spin_locked(&cachep->nodelists[numa_node_id()]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086#endif
2087}
Christoph Lametere498be72005-09-09 13:03:32 -07002088
Pekka Enberg343e0d72006-02-01 03:05:50 -08002089static void check_spinlock_acquired_node(struct kmem_cache *cachep, int node)
Christoph Lametere498be72005-09-09 13:03:32 -07002090{
2091#ifdef CONFIG_SMP
2092 check_irq_off();
2093 assert_spin_locked(&cachep->nodelists[node]->list_lock);
2094#endif
2095}
2096
Linus Torvalds1da177e2005-04-16 15:20:36 -07002097#else
2098#define check_irq_off() do { } while(0)
2099#define check_irq_on() do { } while(0)
2100#define check_spinlock_acquired(x) do { } while(0)
Christoph Lametere498be72005-09-09 13:03:32 -07002101#define check_spinlock_acquired_node(x, y) do { } while(0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102#endif
2103
2104/*
2105 * Waits for all CPUs to execute func().
2106 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002107static void smp_call_function_all_cpus(void (*func)(void *arg), void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108{
2109 check_irq_on();
2110 preempt_disable();
2111
2112 local_irq_disable();
2113 func(arg);
2114 local_irq_enable();
2115
2116 if (smp_call_function(func, arg, 1, 1))
2117 BUG();
2118
2119 preempt_enable();
2120}
2121
Pekka Enberg343e0d72006-02-01 03:05:50 -08002122static void drain_array_locked(struct kmem_cache *cachep, struct array_cache *ac,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002123 int force, int node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124
2125static void do_drain(void *arg)
2126{
Pekka Enberg343e0d72006-02-01 03:05:50 -08002127 struct kmem_cache *cachep = (struct kmem_cache *) arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 struct array_cache *ac;
Christoph Lameterff694162005-09-22 21:44:02 -07002129 int node = numa_node_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130
2131 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002132 ac = cpu_cache_get(cachep);
Christoph Lameterff694162005-09-22 21:44:02 -07002133 spin_lock(&cachep->nodelists[node]->list_lock);
2134 free_block(cachep, ac->entry, ac->avail, node);
2135 spin_unlock(&cachep->nodelists[node]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 ac->avail = 0;
2137}
2138
Pekka Enberg343e0d72006-02-01 03:05:50 -08002139static void drain_cpu_caches(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140{
Christoph Lametere498be72005-09-09 13:03:32 -07002141 struct kmem_list3 *l3;
2142 int node;
2143
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 smp_call_function_all_cpus(do_drain, cachep);
2145 check_irq_on();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002146 for_each_online_node(node) {
Christoph Lametere498be72005-09-09 13:03:32 -07002147 l3 = cachep->nodelists[node];
2148 if (l3) {
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08002149 spin_lock_irq(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07002150 drain_array_locked(cachep, l3->shared, 1, node);
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08002151 spin_unlock_irq(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07002152 if (l3->alien)
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08002153 drain_alien_cache(cachep, l3->alien);
Christoph Lametere498be72005-09-09 13:03:32 -07002154 }
2155 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156}
2157
Pekka Enberg343e0d72006-02-01 03:05:50 -08002158static int __node_shrink(struct kmem_cache *cachep, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159{
2160 struct slab *slabp;
Christoph Lametere498be72005-09-09 13:03:32 -07002161 struct kmem_list3 *l3 = cachep->nodelists[node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 int ret;
2163
Christoph Lametere498be72005-09-09 13:03:32 -07002164 for (;;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 struct list_head *p;
2166
Christoph Lametere498be72005-09-09 13:03:32 -07002167 p = l3->slabs_free.prev;
2168 if (p == &l3->slabs_free)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 break;
2170
Christoph Lametere498be72005-09-09 13:03:32 -07002171 slabp = list_entry(l3->slabs_free.prev, struct slab, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172#if DEBUG
2173 if (slabp->inuse)
2174 BUG();
2175#endif
2176 list_del(&slabp->list);
2177
Christoph Lametere498be72005-09-09 13:03:32 -07002178 l3->free_objects -= cachep->num;
2179 spin_unlock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180 slab_destroy(cachep, slabp);
Christoph Lametere498be72005-09-09 13:03:32 -07002181 spin_lock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002183 ret = !list_empty(&l3->slabs_full) || !list_empty(&l3->slabs_partial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 return ret;
2185}
2186
Pekka Enberg343e0d72006-02-01 03:05:50 -08002187static int __cache_shrink(struct kmem_cache *cachep)
Christoph Lametere498be72005-09-09 13:03:32 -07002188{
2189 int ret = 0, i = 0;
2190 struct kmem_list3 *l3;
2191
2192 drain_cpu_caches(cachep);
2193
2194 check_irq_on();
2195 for_each_online_node(i) {
2196 l3 = cachep->nodelists[i];
2197 if (l3) {
2198 spin_lock_irq(&l3->list_lock);
2199 ret += __node_shrink(cachep, i);
2200 spin_unlock_irq(&l3->list_lock);
2201 }
2202 }
2203 return (ret ? 1 : 0);
2204}
2205
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206/**
2207 * kmem_cache_shrink - Shrink a cache.
2208 * @cachep: The cache to shrink.
2209 *
2210 * Releases as many slabs as possible for a cache.
2211 * To help debugging, a zero exit status indicates all slabs were released.
2212 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002213int kmem_cache_shrink(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214{
2215 if (!cachep || in_interrupt())
2216 BUG();
2217
2218 return __cache_shrink(cachep);
2219}
2220EXPORT_SYMBOL(kmem_cache_shrink);
2221
2222/**
2223 * kmem_cache_destroy - delete a cache
2224 * @cachep: the cache to destroy
2225 *
Pekka Enberg343e0d72006-02-01 03:05:50 -08002226 * Remove a struct kmem_cache object from the slab cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 * Returns 0 on success.
2228 *
2229 * It is expected this function will be called by a module when it is
2230 * unloaded. This will remove the cache completely, and avoid a duplicate
2231 * cache being allocated each time a module is loaded and unloaded, if the
2232 * module doesn't have persistent in-kernel storage across loads and unloads.
2233 *
2234 * The cache must be empty before calling this function.
2235 *
2236 * The caller must guarantee that noone will allocate memory from the cache
2237 * during the kmem_cache_destroy().
2238 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002239int kmem_cache_destroy(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240{
2241 int i;
Christoph Lametere498be72005-09-09 13:03:32 -07002242 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243
2244 if (!cachep || in_interrupt())
2245 BUG();
2246
2247 /* Don't let CPUs to come and go */
2248 lock_cpu_hotplug();
2249
2250 /* Find the cache in the chain of caches. */
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002251 mutex_lock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 /*
2253 * the chain is never empty, cache_cache is never destroyed
2254 */
2255 list_del(&cachep->next);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002256 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257
2258 if (__cache_shrink(cachep)) {
2259 slab_error(cachep, "Can't free all objects");
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002260 mutex_lock(&cache_chain_mutex);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002261 list_add(&cachep->next, &cache_chain);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002262 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 unlock_cpu_hotplug();
2264 return 1;
2265 }
2266
2267 if (unlikely(cachep->flags & SLAB_DESTROY_BY_RCU))
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07002268 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269
Christoph Lametere498be72005-09-09 13:03:32 -07002270 for_each_online_cpu(i)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002271 kfree(cachep->array[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272
2273 /* NUMA: free the list3 structures */
Christoph Lametere498be72005-09-09 13:03:32 -07002274 for_each_online_node(i) {
2275 if ((l3 = cachep->nodelists[i])) {
2276 kfree(l3->shared);
2277 free_alien_cache(l3->alien);
2278 kfree(l3);
2279 }
2280 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 kmem_cache_free(&cache_cache, cachep);
2282
2283 unlock_cpu_hotplug();
2284
2285 return 0;
2286}
2287EXPORT_SYMBOL(kmem_cache_destroy);
2288
2289/* Get the memory for a slab management obj. */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002290static struct slab *alloc_slabmgmt(struct kmem_cache *cachep, void *objp,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002291 int colour_off, gfp_t local_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292{
2293 struct slab *slabp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002294
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 if (OFF_SLAB(cachep)) {
2296 /* Slab management obj is off-slab. */
2297 slabp = kmem_cache_alloc(cachep->slabp_cache, local_flags);
2298 if (!slabp)
2299 return NULL;
2300 } else {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002301 slabp = objp + colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 colour_off += cachep->slab_size;
2303 }
2304 slabp->inuse = 0;
2305 slabp->colouroff = colour_off;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002306 slabp->s_mem = objp + colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307
2308 return slabp;
2309}
2310
2311static inline kmem_bufctl_t *slab_bufctl(struct slab *slabp)
2312{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002313 return (kmem_bufctl_t *) (slabp + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314}
2315
Pekka Enberg343e0d72006-02-01 03:05:50 -08002316static void cache_init_objs(struct kmem_cache *cachep,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002317 struct slab *slabp, unsigned long ctor_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318{
2319 int i;
2320
2321 for (i = 0; i < cachep->num; i++) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002322 void *objp = index_to_obj(cachep, slabp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323#if DEBUG
2324 /* need to poison the objs? */
2325 if (cachep->flags & SLAB_POISON)
2326 poison_obj(cachep, objp, POISON_FREE);
2327 if (cachep->flags & SLAB_STORE_USER)
2328 *dbg_userword(cachep, objp) = NULL;
2329
2330 if (cachep->flags & SLAB_RED_ZONE) {
2331 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2332 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2333 }
2334 /*
2335 * Constructors are not allowed to allocate memory from
2336 * the same cache which they are a constructor for.
2337 * Otherwise, deadlock. They must also be threaded.
2338 */
2339 if (cachep->ctor && !(cachep->flags & SLAB_POISON))
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002340 cachep->ctor(objp + obj_offset(cachep), cachep,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002341 ctor_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342
2343 if (cachep->flags & SLAB_RED_ZONE) {
2344 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
2345 slab_error(cachep, "constructor overwrote the"
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002346 " end of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
2348 slab_error(cachep, "constructor overwrote the"
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002349 " start of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 }
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002351 if ((cachep->buffer_size % PAGE_SIZE) == 0 && OFF_SLAB(cachep)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002352 && cachep->flags & SLAB_POISON)
2353 kernel_map_pages(virt_to_page(objp),
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002354 cachep->buffer_size / PAGE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355#else
2356 if (cachep->ctor)
2357 cachep->ctor(objp, cachep, ctor_flags);
2358#endif
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002359 slab_bufctl(slabp)[i] = i + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002361 slab_bufctl(slabp)[i - 1] = BUFCTL_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 slabp->free = 0;
2363}
2364
Pekka Enberg343e0d72006-02-01 03:05:50 -08002365static void kmem_flagcheck(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366{
2367 if (flags & SLAB_DMA) {
2368 if (!(cachep->gfpflags & GFP_DMA))
2369 BUG();
2370 } else {
2371 if (cachep->gfpflags & GFP_DMA)
2372 BUG();
2373 }
2374}
2375
Pekka Enberg343e0d72006-02-01 03:05:50 -08002376static void *slab_get_obj(struct kmem_cache *cachep, struct slab *slabp, int nodeid)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002377{
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002378 void *objp = index_to_obj(cachep, slabp, slabp->free);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002379 kmem_bufctl_t next;
2380
2381 slabp->inuse++;
2382 next = slab_bufctl(slabp)[slabp->free];
2383#if DEBUG
2384 slab_bufctl(slabp)[slabp->free] = BUFCTL_FREE;
2385 WARN_ON(slabp->nodeid != nodeid);
2386#endif
2387 slabp->free = next;
2388
2389 return objp;
2390}
2391
Pekka Enberg343e0d72006-02-01 03:05:50 -08002392static void slab_put_obj(struct kmem_cache *cachep, struct slab *slabp, void *objp,
Matthew Dobson78d382d2006-02-01 03:05:47 -08002393 int nodeid)
2394{
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002395 unsigned int objnr = obj_to_index(cachep, slabp, objp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002396
2397#if DEBUG
2398 /* Verify that the slab belongs to the intended node */
2399 WARN_ON(slabp->nodeid != nodeid);
2400
2401 if (slab_bufctl(slabp)[objnr] != BUFCTL_FREE) {
2402 printk(KERN_ERR "slab: double free detected in cache "
2403 "'%s', objp %p\n", cachep->name, objp);
2404 BUG();
2405 }
2406#endif
2407 slab_bufctl(slabp)[objnr] = slabp->free;
2408 slabp->free = objnr;
2409 slabp->inuse--;
2410}
2411
Pekka Enberg343e0d72006-02-01 03:05:50 -08002412static void set_slab_attr(struct kmem_cache *cachep, struct slab *slabp, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413{
2414 int i;
2415 struct page *page;
2416
2417 /* Nasty!!!!!! I hope this is OK. */
2418 i = 1 << cachep->gfporder;
2419 page = virt_to_page(objp);
2420 do {
Pekka Enberg065d41c2005-11-13 16:06:46 -08002421 page_set_cache(page, cachep);
2422 page_set_slab(page, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 page++;
2424 } while (--i);
2425}
2426
2427/*
2428 * Grow (by 1) the number of slabs within a cache. This is called by
2429 * kmem_cache_alloc() when there are no active objs left in a cache.
2430 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002431static int cache_grow(struct kmem_cache *cachep, gfp_t flags, int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002433 struct slab *slabp;
2434 void *objp;
2435 size_t offset;
2436 gfp_t local_flags;
2437 unsigned long ctor_flags;
Christoph Lametere498be72005-09-09 13:03:32 -07002438 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439
2440 /* Be lazy and only check for valid flags here,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002441 * keeping it out of the critical path in kmem_cache_alloc().
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002443 if (flags & ~(SLAB_DMA | SLAB_LEVEL_MASK | SLAB_NO_GROW))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 BUG();
2445 if (flags & SLAB_NO_GROW)
2446 return 0;
2447
2448 ctor_flags = SLAB_CTOR_CONSTRUCTOR;
2449 local_flags = (flags & SLAB_LEVEL_MASK);
2450 if (!(local_flags & __GFP_WAIT))
2451 /*
2452 * Not allowed to sleep. Need to tell a constructor about
2453 * this - it might need to know...
2454 */
2455 ctor_flags |= SLAB_CTOR_ATOMIC;
2456
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002457 /* Take the l3 list lock to change the colour_next on this node */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458 check_irq_off();
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002459 l3 = cachep->nodelists[nodeid];
2460 spin_lock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461
2462 /* Get colour for the slab, and cal the next value. */
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002463 offset = l3->colour_next;
2464 l3->colour_next++;
2465 if (l3->colour_next >= cachep->colour)
2466 l3->colour_next = 0;
2467 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002469 offset *= cachep->colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470
2471 if (local_flags & __GFP_WAIT)
2472 local_irq_enable();
2473
2474 /*
2475 * The test for missing atomic flag is performed here, rather than
2476 * the more obvious place, simply to reduce the critical path length
2477 * in kmem_cache_alloc(). If a caller is seriously mis-behaving they
2478 * will eventually be caught here (where it matters).
2479 */
2480 kmem_flagcheck(cachep, flags);
2481
Christoph Lametere498be72005-09-09 13:03:32 -07002482 /* Get mem for the objs.
2483 * Attempt to allocate a physical page from 'nodeid',
2484 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485 if (!(objp = kmem_getpages(cachep, flags, nodeid)))
2486 goto failed;
2487
2488 /* Get slab management. */
2489 if (!(slabp = alloc_slabmgmt(cachep, objp, offset, local_flags)))
2490 goto opps1;
2491
Christoph Lametere498be72005-09-09 13:03:32 -07002492 slabp->nodeid = nodeid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 set_slab_attr(cachep, slabp, objp);
2494
2495 cache_init_objs(cachep, slabp, ctor_flags);
2496
2497 if (local_flags & __GFP_WAIT)
2498 local_irq_disable();
2499 check_irq_off();
Christoph Lametere498be72005-09-09 13:03:32 -07002500 spin_lock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501
2502 /* Make slab active. */
Christoph Lametere498be72005-09-09 13:03:32 -07002503 list_add_tail(&slabp->list, &(l3->slabs_free));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504 STATS_INC_GROWN(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07002505 l3->free_objects += cachep->num;
2506 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507 return 1;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002508 opps1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 kmem_freepages(cachep, objp);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002510 failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 if (local_flags & __GFP_WAIT)
2512 local_irq_disable();
2513 return 0;
2514}
2515
2516#if DEBUG
2517
2518/*
2519 * Perform extra freeing checks:
2520 * - detect bad pointers.
2521 * - POISON/RED_ZONE checking
2522 * - destructor calls, for caches with POISON+dtor
2523 */
2524static void kfree_debugcheck(const void *objp)
2525{
2526 struct page *page;
2527
2528 if (!virt_addr_valid(objp)) {
2529 printk(KERN_ERR "kfree_debugcheck: out of range ptr %lxh.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002530 (unsigned long)objp);
2531 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532 }
2533 page = virt_to_page(objp);
2534 if (!PageSlab(page)) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002535 printk(KERN_ERR "kfree_debugcheck: bad ptr %lxh.\n",
2536 (unsigned long)objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537 BUG();
2538 }
2539}
2540
Pekka Enberg343e0d72006-02-01 03:05:50 -08002541static void *cache_free_debugcheck(struct kmem_cache *cachep, void *objp,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002542 void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543{
2544 struct page *page;
2545 unsigned int objnr;
2546 struct slab *slabp;
2547
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002548 objp -= obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 kfree_debugcheck(objp);
2550 page = virt_to_page(objp);
2551
Pekka Enberg065d41c2005-11-13 16:06:46 -08002552 if (page_get_cache(page) != cachep) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002553 printk(KERN_ERR
2554 "mismatch in kmem_cache_free: expected cache %p, got %p\n",
2555 page_get_cache(page), cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 printk(KERN_ERR "%p is %s.\n", cachep, cachep->name);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002557 printk(KERN_ERR "%p is %s.\n", page_get_cache(page),
2558 page_get_cache(page)->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002559 WARN_ON(1);
2560 }
Pekka Enberg065d41c2005-11-13 16:06:46 -08002561 slabp = page_get_slab(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562
2563 if (cachep->flags & SLAB_RED_ZONE) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002564 if (*dbg_redzone1(cachep, objp) != RED_ACTIVE
2565 || *dbg_redzone2(cachep, objp) != RED_ACTIVE) {
2566 slab_error(cachep,
2567 "double free, or memory outside"
2568 " object was overwritten");
2569 printk(KERN_ERR
2570 "%p: redzone 1: 0x%lx, redzone 2: 0x%lx.\n",
2571 objp, *dbg_redzone1(cachep, objp),
2572 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573 }
2574 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2575 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2576 }
2577 if (cachep->flags & SLAB_STORE_USER)
2578 *dbg_userword(cachep, objp) = caller;
2579
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002580 objnr = obj_to_index(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581
2582 BUG_ON(objnr >= cachep->num);
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002583 BUG_ON(objp != index_to_obj(cachep, slabp, objnr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584
2585 if (cachep->flags & SLAB_DEBUG_INITIAL) {
2586 /* Need to call the slab's constructor so the
2587 * caller can perform a verify of its state (debugging).
2588 * Called without the cache-lock held.
2589 */
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002590 cachep->ctor(objp + obj_offset(cachep),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002591 cachep, SLAB_CTOR_CONSTRUCTOR | SLAB_CTOR_VERIFY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 }
2593 if (cachep->flags & SLAB_POISON && cachep->dtor) {
2594 /* we want to cache poison the object,
2595 * call the destruction callback
2596 */
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002597 cachep->dtor(objp + obj_offset(cachep), cachep, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598 }
2599 if (cachep->flags & SLAB_POISON) {
2600#ifdef CONFIG_DEBUG_PAGEALLOC
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002601 if ((cachep->buffer_size % PAGE_SIZE) == 0 && OFF_SLAB(cachep)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 store_stackinfo(cachep, objp, (unsigned long)caller);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002603 kernel_map_pages(virt_to_page(objp),
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002604 cachep->buffer_size / PAGE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605 } else {
2606 poison_obj(cachep, objp, POISON_FREE);
2607 }
2608#else
2609 poison_obj(cachep, objp, POISON_FREE);
2610#endif
2611 }
2612 return objp;
2613}
2614
Pekka Enberg343e0d72006-02-01 03:05:50 -08002615static void check_slabp(struct kmem_cache *cachep, struct slab *slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616{
2617 kmem_bufctl_t i;
2618 int entries = 0;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002619
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 /* Check slab's freelist to see if this obj is there. */
2621 for (i = slabp->free; i != BUFCTL_END; i = slab_bufctl(slabp)[i]) {
2622 entries++;
2623 if (entries > cachep->num || i >= cachep->num)
2624 goto bad;
2625 }
2626 if (entries != cachep->num - slabp->inuse) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002627 bad:
2628 printk(KERN_ERR
2629 "slab: Internal list corruption detected in cache '%s'(%d), slabp %p(%d). Hexdump:\n",
2630 cachep->name, cachep->num, slabp, slabp->inuse);
2631 for (i = 0;
Linus Torvalds264132b2006-03-06 12:10:07 -08002632 i < sizeof(*slabp) + cachep->num * sizeof(kmem_bufctl_t);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002633 i++) {
2634 if ((i % 16) == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 printk("\n%03x:", i);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002636 printk(" %02x", ((unsigned char *)slabp)[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637 }
2638 printk("\n");
2639 BUG();
2640 }
2641}
2642#else
2643#define kfree_debugcheck(x) do { } while(0)
2644#define cache_free_debugcheck(x,objp,z) (objp)
2645#define check_slabp(x,y) do { } while(0)
2646#endif
2647
Pekka Enberg343e0d72006-02-01 03:05:50 -08002648static void *cache_alloc_refill(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649{
2650 int batchcount;
2651 struct kmem_list3 *l3;
2652 struct array_cache *ac;
2653
2654 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002655 ac = cpu_cache_get(cachep);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002656 retry:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657 batchcount = ac->batchcount;
2658 if (!ac->touched && batchcount > BATCHREFILL_LIMIT) {
2659 /* if there was little recent activity on this
2660 * cache, then perform only a partial refill.
2661 * Otherwise we could generate refill bouncing.
2662 */
2663 batchcount = BATCHREFILL_LIMIT;
2664 }
Christoph Lametere498be72005-09-09 13:03:32 -07002665 l3 = cachep->nodelists[numa_node_id()];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666
Christoph Lametere498be72005-09-09 13:03:32 -07002667 BUG_ON(ac->avail > 0 || !l3);
2668 spin_lock(&l3->list_lock);
2669
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670 if (l3->shared) {
2671 struct array_cache *shared_array = l3->shared;
2672 if (shared_array->avail) {
2673 if (batchcount > shared_array->avail)
2674 batchcount = shared_array->avail;
2675 shared_array->avail -= batchcount;
2676 ac->avail = batchcount;
Christoph Lametere498be72005-09-09 13:03:32 -07002677 memcpy(ac->entry,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002678 &(shared_array->entry[shared_array->avail]),
2679 sizeof(void *) * batchcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680 shared_array->touched = 1;
2681 goto alloc_done;
2682 }
2683 }
2684 while (batchcount > 0) {
2685 struct list_head *entry;
2686 struct slab *slabp;
2687 /* Get slab alloc is to come from. */
2688 entry = l3->slabs_partial.next;
2689 if (entry == &l3->slabs_partial) {
2690 l3->free_touched = 1;
2691 entry = l3->slabs_free.next;
2692 if (entry == &l3->slabs_free)
2693 goto must_grow;
2694 }
2695
2696 slabp = list_entry(entry, struct slab, list);
2697 check_slabp(cachep, slabp);
2698 check_spinlock_acquired(cachep);
2699 while (slabp->inuse < cachep->num && batchcount--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700 STATS_INC_ALLOCED(cachep);
2701 STATS_INC_ACTIVE(cachep);
2702 STATS_SET_HIGH(cachep);
2703
Matthew Dobson78d382d2006-02-01 03:05:47 -08002704 ac->entry[ac->avail++] = slab_get_obj(cachep, slabp,
2705 numa_node_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706 }
2707 check_slabp(cachep, slabp);
2708
2709 /* move slabp to correct slabp list: */
2710 list_del(&slabp->list);
2711 if (slabp->free == BUFCTL_END)
2712 list_add(&slabp->list, &l3->slabs_full);
2713 else
2714 list_add(&slabp->list, &l3->slabs_partial);
2715 }
2716
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002717 must_grow:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 l3->free_objects -= ac->avail;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002719 alloc_done:
Christoph Lametere498be72005-09-09 13:03:32 -07002720 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721
2722 if (unlikely(!ac->avail)) {
2723 int x;
Christoph Lametere498be72005-09-09 13:03:32 -07002724 x = cache_grow(cachep, flags, numa_node_id());
2725
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726 // cache_grow can reenable interrupts, then ac could change.
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002727 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728 if (!x && ac->avail == 0) // no objects in sight? abort
2729 return NULL;
2730
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002731 if (!ac->avail) // objects refilled by interrupt?
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732 goto retry;
2733 }
2734 ac->touched = 1;
Christoph Lametere498be72005-09-09 13:03:32 -07002735 return ac->entry[--ac->avail];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736}
2737
2738static inline void
Pekka Enberg343e0d72006-02-01 03:05:50 -08002739cache_alloc_debugcheck_before(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740{
2741 might_sleep_if(flags & __GFP_WAIT);
2742#if DEBUG
2743 kmem_flagcheck(cachep, flags);
2744#endif
2745}
2746
2747#if DEBUG
Pekka Enberg343e0d72006-02-01 03:05:50 -08002748static void *cache_alloc_debugcheck_after(struct kmem_cache *cachep, gfp_t flags,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002749 void *objp, void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002751 if (!objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752 return objp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002753 if (cachep->flags & SLAB_POISON) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754#ifdef CONFIG_DEBUG_PAGEALLOC
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002755 if ((cachep->buffer_size % PAGE_SIZE) == 0 && OFF_SLAB(cachep))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002756 kernel_map_pages(virt_to_page(objp),
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002757 cachep->buffer_size / PAGE_SIZE, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758 else
2759 check_poison_obj(cachep, objp);
2760#else
2761 check_poison_obj(cachep, objp);
2762#endif
2763 poison_obj(cachep, objp, POISON_INUSE);
2764 }
2765 if (cachep->flags & SLAB_STORE_USER)
2766 *dbg_userword(cachep, objp) = caller;
2767
2768 if (cachep->flags & SLAB_RED_ZONE) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002769 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE
2770 || *dbg_redzone2(cachep, objp) != RED_INACTIVE) {
2771 slab_error(cachep,
2772 "double free, or memory outside"
2773 " object was overwritten");
2774 printk(KERN_ERR
2775 "%p: redzone 1: 0x%lx, redzone 2: 0x%lx.\n",
2776 objp, *dbg_redzone1(cachep, objp),
2777 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778 }
2779 *dbg_redzone1(cachep, objp) = RED_ACTIVE;
2780 *dbg_redzone2(cachep, objp) = RED_ACTIVE;
2781 }
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002782 objp += obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783 if (cachep->ctor && cachep->flags & SLAB_POISON) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002784 unsigned long ctor_flags = SLAB_CTOR_CONSTRUCTOR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785
2786 if (!(flags & __GFP_WAIT))
2787 ctor_flags |= SLAB_CTOR_ATOMIC;
2788
2789 cachep->ctor(objp, cachep, ctor_flags);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002790 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791 return objp;
2792}
2793#else
2794#define cache_alloc_debugcheck_after(a,b,objp,d) (objp)
2795#endif
2796
Pekka Enberg343e0d72006-02-01 03:05:50 -08002797static inline void *____cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002799 void *objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800 struct array_cache *ac;
2801
Christoph Lameterdc85da12006-01-18 17:42:36 -08002802#ifdef CONFIG_NUMA
Christoph Lameter86c562a2006-01-18 17:42:37 -08002803 if (unlikely(current->mempolicy && !in_interrupt())) {
Christoph Lameterdc85da12006-01-18 17:42:36 -08002804 int nid = slab_node(current->mempolicy);
2805
2806 if (nid != numa_node_id())
2807 return __cache_alloc_node(cachep, flags, nid);
2808 }
2809#endif
2810
Alok N Kataria5c382302005-09-27 21:45:46 -07002811 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002812 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813 if (likely(ac->avail)) {
2814 STATS_INC_ALLOCHIT(cachep);
2815 ac->touched = 1;
Christoph Lametere498be72005-09-09 13:03:32 -07002816 objp = ac->entry[--ac->avail];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817 } else {
2818 STATS_INC_ALLOCMISS(cachep);
2819 objp = cache_alloc_refill(cachep, flags);
2820 }
Alok N Kataria5c382302005-09-27 21:45:46 -07002821 return objp;
2822}
2823
Pekka Enberg7fd6b142006-02-01 03:05:52 -08002824static __always_inline void *
2825__cache_alloc(struct kmem_cache *cachep, gfp_t flags, void *caller)
Alok N Kataria5c382302005-09-27 21:45:46 -07002826{
2827 unsigned long save_flags;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002828 void *objp;
Alok N Kataria5c382302005-09-27 21:45:46 -07002829
2830 cache_alloc_debugcheck_before(cachep, flags);
2831
2832 local_irq_save(save_flags);
2833 objp = ____cache_alloc(cachep, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834 local_irq_restore(save_flags);
Eric Dumazet34342e82005-09-03 15:55:06 -07002835 objp = cache_alloc_debugcheck_after(cachep, flags, objp,
Pekka Enberg7fd6b142006-02-01 03:05:52 -08002836 caller);
Eric Dumazet34342e82005-09-03 15:55:06 -07002837 prefetchw(objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838 return objp;
2839}
2840
Christoph Lametere498be72005-09-09 13:03:32 -07002841#ifdef CONFIG_NUMA
2842/*
2843 * A interface to enable slab creation on nodeid
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002845static void *__cache_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07002846{
2847 struct list_head *entry;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002848 struct slab *slabp;
2849 struct kmem_list3 *l3;
2850 void *obj;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002851 int x;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002853 l3 = cachep->nodelists[nodeid];
2854 BUG_ON(!l3);
Christoph Lametere498be72005-09-09 13:03:32 -07002855
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002856 retry:
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08002857 check_irq_off();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002858 spin_lock(&l3->list_lock);
2859 entry = l3->slabs_partial.next;
2860 if (entry == &l3->slabs_partial) {
2861 l3->free_touched = 1;
2862 entry = l3->slabs_free.next;
2863 if (entry == &l3->slabs_free)
2864 goto must_grow;
2865 }
Christoph Lametere498be72005-09-09 13:03:32 -07002866
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002867 slabp = list_entry(entry, struct slab, list);
2868 check_spinlock_acquired_node(cachep, nodeid);
2869 check_slabp(cachep, slabp);
Christoph Lametere498be72005-09-09 13:03:32 -07002870
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002871 STATS_INC_NODEALLOCS(cachep);
2872 STATS_INC_ACTIVE(cachep);
2873 STATS_SET_HIGH(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07002874
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002875 BUG_ON(slabp->inuse == cachep->num);
Christoph Lametere498be72005-09-09 13:03:32 -07002876
Matthew Dobson78d382d2006-02-01 03:05:47 -08002877 obj = slab_get_obj(cachep, slabp, nodeid);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002878 check_slabp(cachep, slabp);
2879 l3->free_objects--;
2880 /* move slabp to correct slabp list: */
2881 list_del(&slabp->list);
Christoph Lametere498be72005-09-09 13:03:32 -07002882
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002883 if (slabp->free == BUFCTL_END) {
2884 list_add(&slabp->list, &l3->slabs_full);
2885 } else {
2886 list_add(&slabp->list, &l3->slabs_partial);
2887 }
Christoph Lametere498be72005-09-09 13:03:32 -07002888
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002889 spin_unlock(&l3->list_lock);
2890 goto done;
Christoph Lametere498be72005-09-09 13:03:32 -07002891
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002892 must_grow:
2893 spin_unlock(&l3->list_lock);
2894 x = cache_grow(cachep, flags, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07002895
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002896 if (!x)
2897 return NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07002898
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002899 goto retry;
2900 done:
2901 return obj;
Christoph Lametere498be72005-09-09 13:03:32 -07002902}
2903#endif
2904
2905/*
2906 * Caller needs to acquire correct kmem_list's list_lock
2907 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002908static void free_block(struct kmem_cache *cachep, void **objpp, int nr_objects,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002909 int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910{
2911 int i;
Christoph Lametere498be72005-09-09 13:03:32 -07002912 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913
2914 for (i = 0; i < nr_objects; i++) {
2915 void *objp = objpp[i];
2916 struct slab *slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002917
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08002918 slabp = virt_to_slab(objp);
Christoph Lameterff694162005-09-22 21:44:02 -07002919 l3 = cachep->nodelists[node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920 list_del(&slabp->list);
Christoph Lameterff694162005-09-22 21:44:02 -07002921 check_spinlock_acquired_node(cachep, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 check_slabp(cachep, slabp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002923 slab_put_obj(cachep, slabp, objp, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 STATS_DEC_ACTIVE(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07002925 l3->free_objects++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926 check_slabp(cachep, slabp);
2927
2928 /* fixup slab chains */
2929 if (slabp->inuse == 0) {
Christoph Lametere498be72005-09-09 13:03:32 -07002930 if (l3->free_objects > l3->free_limit) {
2931 l3->free_objects -= cachep->num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932 slab_destroy(cachep, slabp);
2933 } else {
Christoph Lametere498be72005-09-09 13:03:32 -07002934 list_add(&slabp->list, &l3->slabs_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935 }
2936 } else {
2937 /* Unconditionally move a slab to the end of the
2938 * partial list on free - maximum time for the
2939 * other objects to be freed, too.
2940 */
Christoph Lametere498be72005-09-09 13:03:32 -07002941 list_add_tail(&slabp->list, &l3->slabs_partial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942 }
2943 }
2944}
2945
Pekka Enberg343e0d72006-02-01 03:05:50 -08002946static void cache_flusharray(struct kmem_cache *cachep, struct array_cache *ac)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947{
2948 int batchcount;
Christoph Lametere498be72005-09-09 13:03:32 -07002949 struct kmem_list3 *l3;
Christoph Lameterff694162005-09-22 21:44:02 -07002950 int node = numa_node_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951
2952 batchcount = ac->batchcount;
2953#if DEBUG
2954 BUG_ON(!batchcount || batchcount > ac->avail);
2955#endif
2956 check_irq_off();
Christoph Lameterff694162005-09-22 21:44:02 -07002957 l3 = cachep->nodelists[node];
Christoph Lametere498be72005-09-09 13:03:32 -07002958 spin_lock(&l3->list_lock);
2959 if (l3->shared) {
2960 struct array_cache *shared_array = l3->shared;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002961 int max = shared_array->limit - shared_array->avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962 if (max) {
2963 if (batchcount > max)
2964 batchcount = max;
Christoph Lametere498be72005-09-09 13:03:32 -07002965 memcpy(&(shared_array->entry[shared_array->avail]),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002966 ac->entry, sizeof(void *) * batchcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967 shared_array->avail += batchcount;
2968 goto free_done;
2969 }
2970 }
2971
Christoph Lameterff694162005-09-22 21:44:02 -07002972 free_block(cachep, ac->entry, batchcount, node);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002973 free_done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974#if STATS
2975 {
2976 int i = 0;
2977 struct list_head *p;
2978
Christoph Lametere498be72005-09-09 13:03:32 -07002979 p = l3->slabs_free.next;
2980 while (p != &(l3->slabs_free)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981 struct slab *slabp;
2982
2983 slabp = list_entry(p, struct slab, list);
2984 BUG_ON(slabp->inuse);
2985
2986 i++;
2987 p = p->next;
2988 }
2989 STATS_SET_FREEABLE(cachep, i);
2990 }
2991#endif
Christoph Lametere498be72005-09-09 13:03:32 -07002992 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993 ac->avail -= batchcount;
Christoph Lametere498be72005-09-09 13:03:32 -07002994 memmove(ac->entry, &(ac->entry[batchcount]),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002995 sizeof(void *) * ac->avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996}
2997
2998/*
2999 * __cache_free
3000 * Release an obj back to its cache. If the obj has a constructed
3001 * state, it must be in this state _before_ it is released.
3002 *
3003 * Called with disabled ints.
3004 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003005static inline void __cache_free(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006{
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003007 struct array_cache *ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008
3009 check_irq_off();
3010 objp = cache_free_debugcheck(cachep, objp, __builtin_return_address(0));
3011
Christoph Lametere498be72005-09-09 13:03:32 -07003012 /* Make sure we are not freeing a object from another
3013 * node to the array cache on this cpu.
3014 */
3015#ifdef CONFIG_NUMA
3016 {
3017 struct slab *slabp;
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08003018 slabp = virt_to_slab(objp);
Christoph Lametere498be72005-09-09 13:03:32 -07003019 if (unlikely(slabp->nodeid != numa_node_id())) {
3020 struct array_cache *alien = NULL;
3021 int nodeid = slabp->nodeid;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003022 struct kmem_list3 *l3 =
3023 cachep->nodelists[numa_node_id()];
Christoph Lametere498be72005-09-09 13:03:32 -07003024
3025 STATS_INC_NODEFREES(cachep);
3026 if (l3->alien && l3->alien[nodeid]) {
3027 alien = l3->alien[nodeid];
3028 spin_lock(&alien->lock);
3029 if (unlikely(alien->avail == alien->limit))
3030 __drain_alien_cache(cachep,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003031 alien, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07003032 alien->entry[alien->avail++] = objp;
3033 spin_unlock(&alien->lock);
3034 } else {
3035 spin_lock(&(cachep->nodelists[nodeid])->
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003036 list_lock);
Christoph Lameterff694162005-09-22 21:44:02 -07003037 free_block(cachep, &objp, 1, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07003038 spin_unlock(&(cachep->nodelists[nodeid])->
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003039 list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07003040 }
3041 return;
3042 }
3043 }
3044#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045 if (likely(ac->avail < ac->limit)) {
3046 STATS_INC_FREEHIT(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003047 ac->entry[ac->avail++] = objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048 return;
3049 } else {
3050 STATS_INC_FREEMISS(cachep);
3051 cache_flusharray(cachep, ac);
Christoph Lametere498be72005-09-09 13:03:32 -07003052 ac->entry[ac->avail++] = objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053 }
3054}
3055
3056/**
3057 * kmem_cache_alloc - Allocate an object
3058 * @cachep: The cache to allocate from.
3059 * @flags: See kmalloc().
3060 *
3061 * Allocate an object from this cache. The flags are only relevant
3062 * if the cache has no available objects.
3063 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003064void *kmem_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065{
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003066 return __cache_alloc(cachep, flags, __builtin_return_address(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067}
3068EXPORT_SYMBOL(kmem_cache_alloc);
3069
3070/**
3071 * kmem_ptr_validate - check if an untrusted pointer might
3072 * be a slab entry.
3073 * @cachep: the cache we're checking against
3074 * @ptr: pointer to validate
3075 *
3076 * This verifies that the untrusted pointer looks sane:
3077 * it is _not_ a guarantee that the pointer is actually
3078 * part of the slab cache in question, but it at least
3079 * validates that the pointer can be dereferenced and
3080 * looks half-way sane.
3081 *
3082 * Currently only used for dentry validation.
3083 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003084int fastcall kmem_ptr_validate(struct kmem_cache *cachep, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003086 unsigned long addr = (unsigned long)ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087 unsigned long min_addr = PAGE_OFFSET;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003088 unsigned long align_mask = BYTES_PER_WORD - 1;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003089 unsigned long size = cachep->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090 struct page *page;
3091
3092 if (unlikely(addr < min_addr))
3093 goto out;
3094 if (unlikely(addr > (unsigned long)high_memory - size))
3095 goto out;
3096 if (unlikely(addr & align_mask))
3097 goto out;
3098 if (unlikely(!kern_addr_valid(addr)))
3099 goto out;
3100 if (unlikely(!kern_addr_valid(addr + size - 1)))
3101 goto out;
3102 page = virt_to_page(ptr);
3103 if (unlikely(!PageSlab(page)))
3104 goto out;
Pekka Enberg065d41c2005-11-13 16:06:46 -08003105 if (unlikely(page_get_cache(page) != cachep))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106 goto out;
3107 return 1;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003108 out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109 return 0;
3110}
3111
3112#ifdef CONFIG_NUMA
3113/**
3114 * kmem_cache_alloc_node - Allocate an object on the specified node
3115 * @cachep: The cache to allocate from.
3116 * @flags: See kmalloc().
3117 * @nodeid: node number of the target node.
3118 *
3119 * Identical to kmem_cache_alloc, except that this function is slow
3120 * and can sleep. And it will allocate memory on the given node, which
3121 * can improve the performance for cpu bound structures.
Christoph Lametere498be72005-09-09 13:03:32 -07003122 * New and improved: it will now make sure that the object gets
3123 * put on the correct node list so that there is no false sharing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003125void *kmem_cache_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126{
Christoph Lametere498be72005-09-09 13:03:32 -07003127 unsigned long save_flags;
3128 void *ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129
Christoph Lametere498be72005-09-09 13:03:32 -07003130 cache_alloc_debugcheck_before(cachep, flags);
3131 local_irq_save(save_flags);
Christoph Lameter18f820f2006-02-01 03:05:43 -08003132
3133 if (nodeid == -1 || nodeid == numa_node_id() ||
3134 !cachep->nodelists[nodeid])
Alok N Kataria5c382302005-09-27 21:45:46 -07003135 ptr = ____cache_alloc(cachep, flags);
3136 else
3137 ptr = __cache_alloc_node(cachep, flags, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07003138 local_irq_restore(save_flags);
Christoph Lameter18f820f2006-02-01 03:05:43 -08003139
3140 ptr = cache_alloc_debugcheck_after(cachep, flags, ptr,
3141 __builtin_return_address(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142
Christoph Lametere498be72005-09-09 13:03:32 -07003143 return ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144}
3145EXPORT_SYMBOL(kmem_cache_alloc_node);
3146
Al Virodd0fc662005-10-07 07:46:04 +01003147void *kmalloc_node(size_t size, gfp_t flags, int node)
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003148{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003149 struct kmem_cache *cachep;
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003150
3151 cachep = kmem_find_general_cachep(size, flags);
3152 if (unlikely(cachep == NULL))
3153 return NULL;
3154 return kmem_cache_alloc_node(cachep, flags, node);
3155}
3156EXPORT_SYMBOL(kmalloc_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157#endif
3158
3159/**
3160 * kmalloc - allocate memory
3161 * @size: how many bytes of memory are required.
3162 * @flags: the type of memory to allocate.
3163 *
3164 * kmalloc is the normal method of allocating memory
3165 * in the kernel.
3166 *
3167 * The @flags argument may be one of:
3168 *
3169 * %GFP_USER - Allocate memory on behalf of user. May sleep.
3170 *
3171 * %GFP_KERNEL - Allocate normal kernel ram. May sleep.
3172 *
3173 * %GFP_ATOMIC - Allocation will not sleep. Use inside interrupt handlers.
3174 *
3175 * Additionally, the %GFP_DMA flag may be set to indicate the memory
3176 * must be suitable for DMA. This can mean different things on different
3177 * platforms. For example, on i386, it means that the memory must come
3178 * from the first 16MB.
3179 */
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003180static __always_inline void *__do_kmalloc(size_t size, gfp_t flags,
3181 void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003183 struct kmem_cache *cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003185 /* If you want to save a few bytes .text space: replace
3186 * __ with kmem_.
3187 * Then kmalloc uses the uninlined functions instead of the inline
3188 * functions.
3189 */
3190 cachep = __find_general_cachep(size, flags);
Andrew Mortondbdb9042005-09-23 13:24:10 -07003191 if (unlikely(cachep == NULL))
3192 return NULL;
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003193 return __cache_alloc(cachep, flags, caller);
3194}
3195
3196#ifndef CONFIG_DEBUG_SLAB
3197
3198void *__kmalloc(size_t size, gfp_t flags)
3199{
3200 return __do_kmalloc(size, flags, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201}
3202EXPORT_SYMBOL(__kmalloc);
3203
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003204#else
3205
3206void *__kmalloc_track_caller(size_t size, gfp_t flags, void *caller)
3207{
3208 return __do_kmalloc(size, flags, caller);
3209}
3210EXPORT_SYMBOL(__kmalloc_track_caller);
3211
3212#endif
3213
Linus Torvalds1da177e2005-04-16 15:20:36 -07003214#ifdef CONFIG_SMP
3215/**
3216 * __alloc_percpu - allocate one copy of the object for every present
3217 * cpu in the system, zeroing them.
3218 * Objects should be dereferenced using the per_cpu_ptr macro only.
3219 *
3220 * @size: how many bytes of memory are required.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221 */
Pekka Enbergf9f75002006-01-08 01:00:33 -08003222void *__alloc_percpu(size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223{
3224 int i;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003225 struct percpu_data *pdata = kmalloc(sizeof(*pdata), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226
3227 if (!pdata)
3228 return NULL;
3229
Christoph Lametere498be72005-09-09 13:03:32 -07003230 /*
3231 * Cannot use for_each_online_cpu since a cpu may come online
3232 * and we have no way of figuring out how to fix the array
3233 * that we have allocated then....
3234 */
3235 for_each_cpu(i) {
3236 int node = cpu_to_node(i);
3237
3238 if (node_online(node))
3239 pdata->ptrs[i] = kmalloc_node(size, GFP_KERNEL, node);
3240 else
3241 pdata->ptrs[i] = kmalloc(size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003242
3243 if (!pdata->ptrs[i])
3244 goto unwind_oom;
3245 memset(pdata->ptrs[i], 0, size);
3246 }
3247
3248 /* Catch derefs w/o wrappers */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003249 return (void *)(~(unsigned long)pdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003251 unwind_oom:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252 while (--i >= 0) {
3253 if (!cpu_possible(i))
3254 continue;
3255 kfree(pdata->ptrs[i]);
3256 }
3257 kfree(pdata);
3258 return NULL;
3259}
3260EXPORT_SYMBOL(__alloc_percpu);
3261#endif
3262
3263/**
3264 * kmem_cache_free - Deallocate an object
3265 * @cachep: The cache the allocation was from.
3266 * @objp: The previously allocated object.
3267 *
3268 * Free an object which was previously allocated from this
3269 * cache.
3270 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003271void kmem_cache_free(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272{
3273 unsigned long flags;
3274
3275 local_irq_save(flags);
3276 __cache_free(cachep, objp);
3277 local_irq_restore(flags);
3278}
3279EXPORT_SYMBOL(kmem_cache_free);
3280
3281/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282 * kfree - free previously allocated memory
3283 * @objp: pointer returned by kmalloc.
3284 *
Pekka Enberg80e93ef2005-09-09 13:10:16 -07003285 * If @objp is NULL, no operation is performed.
3286 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287 * Don't free memory not originally allocated by kmalloc()
3288 * or you will run into trouble.
3289 */
3290void kfree(const void *objp)
3291{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003292 struct kmem_cache *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293 unsigned long flags;
3294
3295 if (unlikely(!objp))
3296 return;
3297 local_irq_save(flags);
3298 kfree_debugcheck(objp);
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08003299 c = virt_to_cache(objp);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003300 mutex_debug_check_no_locks_freed(objp, obj_size(c));
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003301 __cache_free(c, (void *)objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302 local_irq_restore(flags);
3303}
3304EXPORT_SYMBOL(kfree);
3305
3306#ifdef CONFIG_SMP
3307/**
3308 * free_percpu - free previously allocated percpu memory
3309 * @objp: pointer returned by alloc_percpu.
3310 *
3311 * Don't free memory not originally allocated by alloc_percpu()
3312 * The complemented objp is to check for that.
3313 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003314void free_percpu(const void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315{
3316 int i;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003317 struct percpu_data *p = (struct percpu_data *)(~(unsigned long)objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318
Christoph Lametere498be72005-09-09 13:03:32 -07003319 /*
3320 * We allocate for all cpus so we cannot use for online cpu here.
3321 */
3322 for_each_cpu(i)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003323 kfree(p->ptrs[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003324 kfree(p);
3325}
3326EXPORT_SYMBOL(free_percpu);
3327#endif
3328
Pekka Enberg343e0d72006-02-01 03:05:50 -08003329unsigned int kmem_cache_size(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330{
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003331 return obj_size(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332}
3333EXPORT_SYMBOL(kmem_cache_size);
3334
Pekka Enberg343e0d72006-02-01 03:05:50 -08003335const char *kmem_cache_name(struct kmem_cache *cachep)
Arnaldo Carvalho de Melo19449722005-06-18 22:46:19 -07003336{
3337 return cachep->name;
3338}
3339EXPORT_SYMBOL_GPL(kmem_cache_name);
3340
Christoph Lametere498be72005-09-09 13:03:32 -07003341/*
3342 * This initializes kmem_list3 for all nodes.
3343 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003344static int alloc_kmemlist(struct kmem_cache *cachep)
Christoph Lametere498be72005-09-09 13:03:32 -07003345{
3346 int node;
3347 struct kmem_list3 *l3;
3348 int err = 0;
3349
3350 for_each_online_node(node) {
3351 struct array_cache *nc = NULL, *new;
3352 struct array_cache **new_alien = NULL;
3353#ifdef CONFIG_NUMA
3354 if (!(new_alien = alloc_alien_cache(node, cachep->limit)))
3355 goto fail;
3356#endif
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003357 if (!(new = alloc_arraycache(node, (cachep->shared *
3358 cachep->batchcount),
3359 0xbaadf00d)))
Christoph Lametere498be72005-09-09 13:03:32 -07003360 goto fail;
3361 if ((l3 = cachep->nodelists[node])) {
3362
3363 spin_lock_irq(&l3->list_lock);
3364
3365 if ((nc = cachep->nodelists[node]->shared))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003366 free_block(cachep, nc->entry, nc->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -07003367
3368 l3->shared = new;
3369 if (!cachep->nodelists[node]->alien) {
3370 l3->alien = new_alien;
3371 new_alien = NULL;
3372 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003373 l3->free_limit = (1 + nr_cpus_node(node)) *
3374 cachep->batchcount + cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07003375 spin_unlock_irq(&l3->list_lock);
3376 kfree(nc);
3377 free_alien_cache(new_alien);
3378 continue;
3379 }
3380 if (!(l3 = kmalloc_node(sizeof(struct kmem_list3),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003381 GFP_KERNEL, node)))
Christoph Lametere498be72005-09-09 13:03:32 -07003382 goto fail;
3383
3384 kmem_list3_init(l3);
3385 l3->next_reap = jiffies + REAPTIMEOUT_LIST3 +
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003386 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
Christoph Lametere498be72005-09-09 13:03:32 -07003387 l3->shared = new;
3388 l3->alien = new_alien;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003389 l3->free_limit = (1 + nr_cpus_node(node)) *
3390 cachep->batchcount + cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07003391 cachep->nodelists[node] = l3;
3392 }
3393 return err;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003394 fail:
Christoph Lametere498be72005-09-09 13:03:32 -07003395 err = -ENOMEM;
3396 return err;
3397}
3398
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399struct ccupdate_struct {
Pekka Enberg343e0d72006-02-01 03:05:50 -08003400 struct kmem_cache *cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401 struct array_cache *new[NR_CPUS];
3402};
3403
3404static void do_ccupdate_local(void *info)
3405{
3406 struct ccupdate_struct *new = (struct ccupdate_struct *)info;
3407 struct array_cache *old;
3408
3409 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003410 old = cpu_cache_get(new->cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003411
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412 new->cachep->array[smp_processor_id()] = new->new[smp_processor_id()];
3413 new->new[smp_processor_id()] = old;
3414}
3415
Pekka Enberg343e0d72006-02-01 03:05:50 -08003416static int do_tune_cpucache(struct kmem_cache *cachep, int limit, int batchcount,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003417 int shared)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418{
3419 struct ccupdate_struct new;
Christoph Lametere498be72005-09-09 13:03:32 -07003420 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003421
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003422 memset(&new.new, 0, sizeof(new.new));
Christoph Lametere498be72005-09-09 13:03:32 -07003423 for_each_online_cpu(i) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003424 new.new[i] =
3425 alloc_arraycache(cpu_to_node(i), limit, batchcount);
Christoph Lametere498be72005-09-09 13:03:32 -07003426 if (!new.new[i]) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003427 for (i--; i >= 0; i--)
3428 kfree(new.new[i]);
Christoph Lametere498be72005-09-09 13:03:32 -07003429 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430 }
3431 }
3432 new.cachep = cachep;
3433
3434 smp_call_function_all_cpus(do_ccupdate_local, (void *)&new);
Christoph Lametere498be72005-09-09 13:03:32 -07003435
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436 check_irq_on();
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08003437 spin_lock(&cachep->spinlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438 cachep->batchcount = batchcount;
3439 cachep->limit = limit;
Christoph Lametere498be72005-09-09 13:03:32 -07003440 cachep->shared = shared;
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08003441 spin_unlock(&cachep->spinlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003442
Christoph Lametere498be72005-09-09 13:03:32 -07003443 for_each_online_cpu(i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444 struct array_cache *ccold = new.new[i];
3445 if (!ccold)
3446 continue;
Christoph Lametere498be72005-09-09 13:03:32 -07003447 spin_lock_irq(&cachep->nodelists[cpu_to_node(i)]->list_lock);
Christoph Lameterff694162005-09-22 21:44:02 -07003448 free_block(cachep, ccold->entry, ccold->avail, cpu_to_node(i));
Christoph Lametere498be72005-09-09 13:03:32 -07003449 spin_unlock_irq(&cachep->nodelists[cpu_to_node(i)]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450 kfree(ccold);
3451 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452
Christoph Lametere498be72005-09-09 13:03:32 -07003453 err = alloc_kmemlist(cachep);
3454 if (err) {
3455 printk(KERN_ERR "alloc_kmemlist failed for %s, error %d.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003456 cachep->name, -err);
Christoph Lametere498be72005-09-09 13:03:32 -07003457 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003458 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459 return 0;
3460}
3461
Pekka Enberg343e0d72006-02-01 03:05:50 -08003462static void enable_cpucache(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463{
3464 int err;
3465 int limit, shared;
3466
3467 /* The head array serves three purposes:
3468 * - create a LIFO ordering, i.e. return objects that are cache-warm
3469 * - reduce the number of spinlock operations.
3470 * - reduce the number of linked list operations on the slab and
3471 * bufctl chains: array operations are cheaper.
3472 * The numbers are guessed, we should auto-tune as described by
3473 * Bonwick.
3474 */
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003475 if (cachep->buffer_size > 131072)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476 limit = 1;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003477 else if (cachep->buffer_size > PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003478 limit = 8;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003479 else if (cachep->buffer_size > 1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003480 limit = 24;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003481 else if (cachep->buffer_size > 256)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482 limit = 54;
3483 else
3484 limit = 120;
3485
3486 /* Cpu bound tasks (e.g. network routing) can exhibit cpu bound
3487 * allocation behaviour: Most allocs on one cpu, most free operations
3488 * on another cpu. For these cases, an efficient object passing between
3489 * cpus is necessary. This is provided by a shared array. The array
3490 * replaces Bonwick's magazine layer.
3491 * On uniprocessor, it's functionally equivalent (but less efficient)
3492 * to a larger limit. Thus disabled by default.
3493 */
3494 shared = 0;
3495#ifdef CONFIG_SMP
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003496 if (cachep->buffer_size <= PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497 shared = 8;
3498#endif
3499
3500#if DEBUG
3501 /* With debugging enabled, large batchcount lead to excessively
3502 * long periods with disabled local interrupts. Limit the
3503 * batchcount
3504 */
3505 if (limit > 32)
3506 limit = 32;
3507#endif
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003508 err = do_tune_cpucache(cachep, limit, (limit + 1) / 2, shared);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003509 if (err)
3510 printk(KERN_ERR "enable_cpucache failed for %s, error %d.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003511 cachep->name, -err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512}
3513
Pekka Enberg343e0d72006-02-01 03:05:50 -08003514static void drain_array_locked(struct kmem_cache *cachep, struct array_cache *ac,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003515 int force, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516{
3517 int tofree;
3518
Christoph Lametere498be72005-09-09 13:03:32 -07003519 check_spinlock_acquired_node(cachep, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520 if (ac->touched && !force) {
3521 ac->touched = 0;
3522 } else if (ac->avail) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003523 tofree = force ? ac->avail : (ac->limit + 4) / 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003524 if (tofree > ac->avail) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003525 tofree = (ac->avail + 1) / 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526 }
Christoph Lameterff694162005-09-22 21:44:02 -07003527 free_block(cachep, ac->entry, tofree, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528 ac->avail -= tofree;
Christoph Lametere498be72005-09-09 13:03:32 -07003529 memmove(ac->entry, &(ac->entry[tofree]),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003530 sizeof(void *) * ac->avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531 }
3532}
3533
3534/**
3535 * cache_reap - Reclaim memory from caches.
Randy Dunlap1e5d5332005-11-07 01:01:06 -08003536 * @unused: unused parameter
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537 *
3538 * Called from workqueue/eventd every few seconds.
3539 * Purpose:
3540 * - clear the per-cpu caches for this CPU.
3541 * - return freeable pages to the main free memory pool.
3542 *
Ingo Molnarfc0abb12006-01-18 17:42:33 -08003543 * If we cannot acquire the cache chain mutex then just give up - we'll
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544 * try again on the next iteration.
3545 */
3546static void cache_reap(void *unused)
3547{
3548 struct list_head *walk;
Christoph Lametere498be72005-09-09 13:03:32 -07003549 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003550
Ingo Molnarfc0abb12006-01-18 17:42:33 -08003551 if (!mutex_trylock(&cache_chain_mutex)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552 /* Give up. Setup the next iteration. */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003553 schedule_delayed_work(&__get_cpu_var(reap_work),
3554 REAPTIMEOUT_CPUC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555 return;
3556 }
3557
3558 list_for_each(walk, &cache_chain) {
Pekka Enberg343e0d72006-02-01 03:05:50 -08003559 struct kmem_cache *searchp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003560 struct list_head *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003561 int tofree;
3562 struct slab *slabp;
3563
Pekka Enberg343e0d72006-02-01 03:05:50 -08003564 searchp = list_entry(walk, struct kmem_cache, next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003565
3566 if (searchp->flags & SLAB_NO_REAP)
3567 goto next;
3568
3569 check_irq_on();
3570
Christoph Lametere498be72005-09-09 13:03:32 -07003571 l3 = searchp->nodelists[numa_node_id()];
Christoph Lameter8fce4d82006-03-09 17:33:54 -08003572 reap_alien(searchp, l3);
Christoph Lametere498be72005-09-09 13:03:32 -07003573 spin_lock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003574
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003575 drain_array_locked(searchp, cpu_cache_get(searchp), 0,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003576 numa_node_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577
Christoph Lametere498be72005-09-09 13:03:32 -07003578 if (time_after(l3->next_reap, jiffies))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003579 goto next_unlock;
3580
Christoph Lametere498be72005-09-09 13:03:32 -07003581 l3->next_reap = jiffies + REAPTIMEOUT_LIST3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003582
Christoph Lametere498be72005-09-09 13:03:32 -07003583 if (l3->shared)
3584 drain_array_locked(searchp, l3->shared, 0,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003585 numa_node_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07003586
Christoph Lametere498be72005-09-09 13:03:32 -07003587 if (l3->free_touched) {
3588 l3->free_touched = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003589 goto next_unlock;
3590 }
3591
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003592 tofree =
3593 (l3->free_limit + 5 * searchp->num -
3594 1) / (5 * searchp->num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595 do {
Christoph Lametere498be72005-09-09 13:03:32 -07003596 p = l3->slabs_free.next;
3597 if (p == &(l3->slabs_free))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003598 break;
3599
3600 slabp = list_entry(p, struct slab, list);
3601 BUG_ON(slabp->inuse);
3602 list_del(&slabp->list);
3603 STATS_INC_REAPED(searchp);
3604
3605 /* Safe to drop the lock. The slab is no longer
3606 * linked to the cache.
3607 * searchp cannot disappear, we hold
3608 * cache_chain_lock
3609 */
Christoph Lametere498be72005-09-09 13:03:32 -07003610 l3->free_objects -= searchp->num;
3611 spin_unlock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003612 slab_destroy(searchp, slabp);
Christoph Lametere498be72005-09-09 13:03:32 -07003613 spin_lock_irq(&l3->list_lock);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003614 } while (--tofree > 0);
3615 next_unlock:
Christoph Lametere498be72005-09-09 13:03:32 -07003616 spin_unlock_irq(&l3->list_lock);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003617 next:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003618 cond_resched();
3619 }
3620 check_irq_on();
Ingo Molnarfc0abb12006-01-18 17:42:33 -08003621 mutex_unlock(&cache_chain_mutex);
Christoph Lameter8fce4d82006-03-09 17:33:54 -08003622 next_reap_node();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003623 /* Setup the next iteration */
Manfred Spraulcd61ef62005-11-07 00:58:02 -08003624 schedule_delayed_work(&__get_cpu_var(reap_work), REAPTIMEOUT_CPUC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625}
3626
3627#ifdef CONFIG_PROC_FS
3628
Pekka Enberg85289f92006-01-08 01:00:36 -08003629static void print_slabinfo_header(struct seq_file *m)
3630{
3631 /*
3632 * Output format version, so at least we can change it
3633 * without _too_ many complaints.
3634 */
3635#if STATS
3636 seq_puts(m, "slabinfo - version: 2.1 (statistics)\n");
3637#else
3638 seq_puts(m, "slabinfo - version: 2.1\n");
3639#endif
3640 seq_puts(m, "# name <active_objs> <num_objs> <objsize> "
3641 "<objperslab> <pagesperslab>");
3642 seq_puts(m, " : tunables <limit> <batchcount> <sharedfactor>");
3643 seq_puts(m, " : slabdata <active_slabs> <num_slabs> <sharedavail>");
3644#if STATS
3645 seq_puts(m, " : globalstat <listallocs> <maxobjs> <grown> <reaped> "
3646 "<error> <maxfreeable> <nodeallocs> <remotefrees>");
3647 seq_puts(m, " : cpustat <allochit> <allocmiss> <freehit> <freemiss>");
3648#endif
3649 seq_putc(m, '\n');
3650}
3651
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652static void *s_start(struct seq_file *m, loff_t *pos)
3653{
3654 loff_t n = *pos;
3655 struct list_head *p;
3656
Ingo Molnarfc0abb12006-01-18 17:42:33 -08003657 mutex_lock(&cache_chain_mutex);
Pekka Enberg85289f92006-01-08 01:00:36 -08003658 if (!n)
3659 print_slabinfo_header(m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660 p = cache_chain.next;
3661 while (n--) {
3662 p = p->next;
3663 if (p == &cache_chain)
3664 return NULL;
3665 }
Pekka Enberg343e0d72006-02-01 03:05:50 -08003666 return list_entry(p, struct kmem_cache, next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003667}
3668
3669static void *s_next(struct seq_file *m, void *p, loff_t *pos)
3670{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003671 struct kmem_cache *cachep = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003672 ++*pos;
3673 return cachep->next.next == &cache_chain ? NULL
Pekka Enberg343e0d72006-02-01 03:05:50 -08003674 : list_entry(cachep->next.next, struct kmem_cache, next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003675}
3676
3677static void s_stop(struct seq_file *m, void *p)
3678{
Ingo Molnarfc0abb12006-01-18 17:42:33 -08003679 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003680}
3681
3682static int s_show(struct seq_file *m, void *p)
3683{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003684 struct kmem_cache *cachep = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685 struct list_head *q;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003686 struct slab *slabp;
3687 unsigned long active_objs;
3688 unsigned long num_objs;
3689 unsigned long active_slabs = 0;
3690 unsigned long num_slabs, free_objects = 0, shared_avail = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07003691 const char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003692 char *error = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07003693 int node;
3694 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003695
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08003696 spin_lock(&cachep->spinlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003697 active_objs = 0;
3698 num_slabs = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07003699 for_each_online_node(node) {
3700 l3 = cachep->nodelists[node];
3701 if (!l3)
3702 continue;
3703
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08003704 check_irq_on();
3705 spin_lock_irq(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07003706
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003707 list_for_each(q, &l3->slabs_full) {
Christoph Lametere498be72005-09-09 13:03:32 -07003708 slabp = list_entry(q, struct slab, list);
3709 if (slabp->inuse != cachep->num && !error)
3710 error = "slabs_full accounting error";
3711 active_objs += cachep->num;
3712 active_slabs++;
3713 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003714 list_for_each(q, &l3->slabs_partial) {
Christoph Lametere498be72005-09-09 13:03:32 -07003715 slabp = list_entry(q, struct slab, list);
3716 if (slabp->inuse == cachep->num && !error)
3717 error = "slabs_partial inuse accounting error";
3718 if (!slabp->inuse && !error)
3719 error = "slabs_partial/inuse accounting error";
3720 active_objs += slabp->inuse;
3721 active_slabs++;
3722 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003723 list_for_each(q, &l3->slabs_free) {
Christoph Lametere498be72005-09-09 13:03:32 -07003724 slabp = list_entry(q, struct slab, list);
3725 if (slabp->inuse && !error)
3726 error = "slabs_free/inuse accounting error";
3727 num_slabs++;
3728 }
3729 free_objects += l3->free_objects;
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08003730 if (l3->shared)
3731 shared_avail += l3->shared->avail;
Christoph Lametere498be72005-09-09 13:03:32 -07003732
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08003733 spin_unlock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003734 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003735 num_slabs += active_slabs;
3736 num_objs = num_slabs * cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07003737 if (num_objs - active_objs != free_objects && !error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003738 error = "free_objects accounting error";
3739
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003740 name = cachep->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003741 if (error)
3742 printk(KERN_ERR "slab: cache %s error: %s\n", name, error);
3743
3744 seq_printf(m, "%-17s %6lu %6lu %6u %4u %4d",
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003745 name, active_objs, num_objs, cachep->buffer_size,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003746 cachep->num, (1 << cachep->gfporder));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747 seq_printf(m, " : tunables %4u %4u %4u",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003748 cachep->limit, cachep->batchcount, cachep->shared);
Christoph Lametere498be72005-09-09 13:03:32 -07003749 seq_printf(m, " : slabdata %6lu %6lu %6lu",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003750 active_slabs, num_slabs, shared_avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003751#if STATS
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003752 { /* list3 stats */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753 unsigned long high = cachep->high_mark;
3754 unsigned long allocs = cachep->num_allocations;
3755 unsigned long grown = cachep->grown;
3756 unsigned long reaped = cachep->reaped;
3757 unsigned long errors = cachep->errors;
3758 unsigned long max_freeable = cachep->max_freeable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759 unsigned long node_allocs = cachep->node_allocs;
Christoph Lametere498be72005-09-09 13:03:32 -07003760 unsigned long node_frees = cachep->node_frees;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761
Christoph Lametere498be72005-09-09 13:03:32 -07003762 seq_printf(m, " : globalstat %7lu %6lu %5lu %4lu \
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003763 %4lu %4lu %4lu %4lu", allocs, high, grown, reaped, errors, max_freeable, node_allocs, node_frees);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003764 }
3765 /* cpu stats */
3766 {
3767 unsigned long allochit = atomic_read(&cachep->allochit);
3768 unsigned long allocmiss = atomic_read(&cachep->allocmiss);
3769 unsigned long freehit = atomic_read(&cachep->freehit);
3770 unsigned long freemiss = atomic_read(&cachep->freemiss);
3771
3772 seq_printf(m, " : cpustat %6lu %6lu %6lu %6lu",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003773 allochit, allocmiss, freehit, freemiss);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003774 }
3775#endif
3776 seq_putc(m, '\n');
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08003777 spin_unlock(&cachep->spinlock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003778 return 0;
3779}
3780
3781/*
3782 * slabinfo_op - iterator that generates /proc/slabinfo
3783 *
3784 * Output layout:
3785 * cache-name
3786 * num-active-objs
3787 * total-objs
3788 * object size
3789 * num-active-slabs
3790 * total-slabs
3791 * num-pages-per-slab
3792 * + further values on SMP and with statistics enabled
3793 */
3794
3795struct seq_operations slabinfo_op = {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003796 .start = s_start,
3797 .next = s_next,
3798 .stop = s_stop,
3799 .show = s_show,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003800};
3801
3802#define MAX_SLABINFO_WRITE 128
3803/**
3804 * slabinfo_write - Tuning for the slab allocator
3805 * @file: unused
3806 * @buffer: user buffer
3807 * @count: data length
3808 * @ppos: unused
3809 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003810ssize_t slabinfo_write(struct file *file, const char __user * buffer,
3811 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003812{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003813 char kbuf[MAX_SLABINFO_WRITE + 1], *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003814 int limit, batchcount, shared, res;
3815 struct list_head *p;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003816
Linus Torvalds1da177e2005-04-16 15:20:36 -07003817 if (count > MAX_SLABINFO_WRITE)
3818 return -EINVAL;
3819 if (copy_from_user(&kbuf, buffer, count))
3820 return -EFAULT;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003821 kbuf[MAX_SLABINFO_WRITE] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822
3823 tmp = strchr(kbuf, ' ');
3824 if (!tmp)
3825 return -EINVAL;
3826 *tmp = '\0';
3827 tmp++;
3828 if (sscanf(tmp, " %d %d %d", &limit, &batchcount, &shared) != 3)
3829 return -EINVAL;
3830
3831 /* Find the cache in the chain of caches. */
Ingo Molnarfc0abb12006-01-18 17:42:33 -08003832 mutex_lock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833 res = -EINVAL;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003834 list_for_each(p, &cache_chain) {
Pekka Enberg343e0d72006-02-01 03:05:50 -08003835 struct kmem_cache *cachep = list_entry(p, struct kmem_cache,
3836 next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837
3838 if (!strcmp(cachep->name, kbuf)) {
3839 if (limit < 1 ||
3840 batchcount < 1 ||
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003841 batchcount > limit || shared < 0) {
Christoph Lametere498be72005-09-09 13:03:32 -07003842 res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843 } else {
Christoph Lametere498be72005-09-09 13:03:32 -07003844 res = do_tune_cpucache(cachep, limit,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003845 batchcount, shared);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003846 }
3847 break;
3848 }
3849 }
Ingo Molnarfc0abb12006-01-18 17:42:33 -08003850 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003851 if (res >= 0)
3852 res = count;
3853 return res;
3854}
3855#endif
3856
Manfred Spraul00e145b2005-09-03 15:55:07 -07003857/**
3858 * ksize - get the actual amount of memory allocated for a given object
3859 * @objp: Pointer to the object
3860 *
3861 * kmalloc may internally round up allocations and return more memory
3862 * than requested. ksize() can be used to determine the actual amount of
3863 * memory allocated. The caller may use this additional memory, even though
3864 * a smaller amount of memory was initially specified with the kmalloc call.
3865 * The caller must guarantee that objp points to a valid object previously
3866 * allocated with either kmalloc() or kmem_cache_alloc(). The object
3867 * must not be freed during the duration of the call.
3868 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003869unsigned int ksize(const void *objp)
3870{
Manfred Spraul00e145b2005-09-03 15:55:07 -07003871 if (unlikely(objp == NULL))
3872 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003873
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08003874 return obj_size(virt_to_cache(objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003875}