blob: afabad54c4c6b3385d149baa28f4c959ba346c36 [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 *
Andrew Mortona737b3e2006-03-22 00:08:11 -080053 * The c_cpuarray may not be read with enabled local interrupts -
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 * 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>
Paul Jackson101a5002006-03-24 03:16:07 -080097#include <linux/cpuset.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070098#include <linux/seq_file.h>
99#include <linux/notifier.h>
100#include <linux/kallsyms.h>
101#include <linux/cpu.h>
102#include <linux/sysctl.h>
103#include <linux/module.h>
104#include <linux/rcupdate.h>
Paulo Marques543537b2005-06-23 00:09:02 -0700105#include <linux/string.h>
Christoph Lametere498be72005-09-09 13:03:32 -0700106#include <linux/nodemask.h>
Christoph Lameterdc85da12006-01-18 17:42:36 -0800107#include <linux/mempolicy.h>
Ingo Molnarfc0abb12006-01-18 17:42:33 -0800108#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110#include <asm/uaccess.h>
111#include <asm/cacheflush.h>
112#include <asm/tlbflush.h>
113#include <asm/page.h>
114
115/*
116 * DEBUG - 1 for kmem_cache_create() to honour; SLAB_DEBUG_INITIAL,
117 * SLAB_RED_ZONE & SLAB_POISON.
118 * 0 for faster, smaller code (especially in the critical paths).
119 *
120 * STATS - 1 to collect stats for /proc/slabinfo.
121 * 0 for faster, smaller code (especially in the critical paths).
122 *
123 * FORCED_DEBUG - 1 enables SLAB_RED_ZONE and SLAB_POISON (if possible)
124 */
125
126#ifdef CONFIG_DEBUG_SLAB
127#define DEBUG 1
128#define STATS 1
129#define FORCED_DEBUG 1
130#else
131#define DEBUG 0
132#define STATS 0
133#define FORCED_DEBUG 0
134#endif
135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136/* Shouldn't this be in a header file somewhere? */
137#define BYTES_PER_WORD sizeof(void *)
138
139#ifndef cache_line_size
140#define cache_line_size() L1_CACHE_BYTES
141#endif
142
143#ifndef ARCH_KMALLOC_MINALIGN
144/*
145 * Enforce a minimum alignment for the kmalloc caches.
146 * Usually, the kmalloc caches are cache_line_size() aligned, except when
147 * DEBUG and FORCED_DEBUG are enabled, then they are BYTES_PER_WORD aligned.
148 * Some archs want to perform DMA into kmalloc caches and need a guaranteed
149 * alignment larger than BYTES_PER_WORD. ARCH_KMALLOC_MINALIGN allows that.
150 * Note that this flag disables some debug features.
151 */
152#define ARCH_KMALLOC_MINALIGN 0
153#endif
154
155#ifndef ARCH_SLAB_MINALIGN
156/*
157 * Enforce a minimum alignment for all caches.
158 * Intended for archs that get misalignment faults even for BYTES_PER_WORD
159 * aligned buffers. Includes ARCH_KMALLOC_MINALIGN.
160 * If possible: Do not enable this flag for CONFIG_DEBUG_SLAB, it disables
161 * some debug features.
162 */
163#define ARCH_SLAB_MINALIGN 0
164#endif
165
166#ifndef ARCH_KMALLOC_FLAGS
167#define ARCH_KMALLOC_FLAGS SLAB_HWCACHE_ALIGN
168#endif
169
170/* Legal flag mask for kmem_cache_create(). */
171#if DEBUG
172# define CREATE_MASK (SLAB_DEBUG_INITIAL | SLAB_RED_ZONE | \
173 SLAB_POISON | SLAB_HWCACHE_ALIGN | \
Christoph Lameterac2b8982006-03-22 00:08:15 -0800174 SLAB_CACHE_DMA | \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 SLAB_MUST_HWCACHE_ALIGN | SLAB_STORE_USER | \
176 SLAB_RECLAIM_ACCOUNT | SLAB_PANIC | \
Paul Jackson101a5002006-03-24 03:16:07 -0800177 SLAB_DESTROY_BY_RCU | SLAB_MEM_SPREAD)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178#else
Christoph Lameterac2b8982006-03-22 00:08:15 -0800179# define CREATE_MASK (SLAB_HWCACHE_ALIGN | \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 SLAB_CACHE_DMA | SLAB_MUST_HWCACHE_ALIGN | \
181 SLAB_RECLAIM_ACCOUNT | SLAB_PANIC | \
Paul Jackson101a5002006-03-24 03:16:07 -0800182 SLAB_DESTROY_BY_RCU | SLAB_MEM_SPREAD)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183#endif
184
185/*
186 * kmem_bufctl_t:
187 *
188 * Bufctl's are used for linking objs within a slab
189 * linked offsets.
190 *
191 * This implementation relies on "struct page" for locating the cache &
192 * slab an object belongs to.
193 * This allows the bufctl structure to be small (one int), but limits
194 * the number of objects a slab (not a cache) can contain when off-slab
195 * bufctls are used. The limit is the size of the largest general cache
196 * that does not use off-slab slabs.
197 * For 32bit archs with 4 kB pages, is this 56.
198 * This is not serious, as it is only for large objects, when it is unwise
199 * to have too many per slab.
200 * Note: This limit can be raised by introducing a general cache whose size
201 * is less than 512 (PAGE_SIZE<<3), but greater than 256.
202 */
203
Kyle Moffettfa5b08d2005-09-03 15:55:03 -0700204typedef unsigned int kmem_bufctl_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205#define BUFCTL_END (((kmem_bufctl_t)(~0U))-0)
206#define BUFCTL_FREE (((kmem_bufctl_t)(~0U))-1)
Al Viro871751e2006-03-25 03:06:39 -0800207#define BUFCTL_ACTIVE (((kmem_bufctl_t)(~0U))-2)
208#define SLAB_LIMIT (((kmem_bufctl_t)(~0U))-3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
210/* Max number of objs-per-slab for caches which use off-slab slabs.
211 * Needed to avoid a possible looping condition in cache_grow().
212 */
213static unsigned long offslab_limit;
214
215/*
216 * struct slab
217 *
218 * Manages the objs in a slab. Placed either at the beginning of mem allocated
219 * for a slab, or allocated from an general cache.
220 * Slabs are chained into three list: fully used, partial, fully free slabs.
221 */
222struct slab {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800223 struct list_head list;
224 unsigned long colouroff;
225 void *s_mem; /* including colour offset */
226 unsigned int inuse; /* num of objs active in slab */
227 kmem_bufctl_t free;
228 unsigned short nodeid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229};
230
231/*
232 * struct slab_rcu
233 *
234 * slab_destroy on a SLAB_DESTROY_BY_RCU cache uses this structure to
235 * arrange for kmem_freepages to be called via RCU. This is useful if
236 * we need to approach a kernel structure obliquely, from its address
237 * obtained without the usual locking. We can lock the structure to
238 * stabilize it and check it's still at the given address, only if we
239 * can be sure that the memory has not been meanwhile reused for some
240 * other kind of object (which our subsystem's lock might corrupt).
241 *
242 * rcu_read_lock before reading the address, then rcu_read_unlock after
243 * taking the spinlock within the structure expected at that address.
244 *
245 * We assume struct slab_rcu can overlay struct slab when destroying.
246 */
247struct slab_rcu {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800248 struct rcu_head head;
Pekka Enberg343e0d72006-02-01 03:05:50 -0800249 struct kmem_cache *cachep;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800250 void *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251};
252
253/*
254 * struct array_cache
255 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 * Purpose:
257 * - LIFO ordering, to hand out cache-warm objects from _alloc
258 * - reduce the number of linked list operations
259 * - reduce spinlock operations
260 *
261 * The limit is stored in the per-cpu structure to reduce the data cache
262 * footprint.
263 *
264 */
265struct array_cache {
266 unsigned int avail;
267 unsigned int limit;
268 unsigned int batchcount;
269 unsigned int touched;
Christoph Lametere498be72005-09-09 13:03:32 -0700270 spinlock_t lock;
Andrew Mortona737b3e2006-03-22 00:08:11 -0800271 void *entry[0]; /*
272 * Must have this definition in here for the proper
273 * alignment of array_cache. Also simplifies accessing
274 * the entries.
275 * [0] is for gcc 2.95. It should really be [].
276 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277};
278
Andrew Mortona737b3e2006-03-22 00:08:11 -0800279/*
280 * bootstrap: The caches do not work without cpuarrays anymore, but the
281 * cpuarrays are allocated from the generic caches...
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 */
283#define BOOT_CPUCACHE_ENTRIES 1
284struct arraycache_init {
285 struct array_cache cache;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800286 void *entries[BOOT_CPUCACHE_ENTRIES];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287};
288
289/*
Christoph Lametere498be72005-09-09 13:03:32 -0700290 * The slab lists for all objects.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 */
292struct kmem_list3 {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800293 struct list_head slabs_partial; /* partial list first, better asm code */
294 struct list_head slabs_full;
295 struct list_head slabs_free;
296 unsigned long free_objects;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800297 unsigned int free_limit;
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -0800298 unsigned int colour_next; /* Per-node cache coloring */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800299 spinlock_t list_lock;
300 struct array_cache *shared; /* shared per node */
301 struct array_cache **alien; /* on other nodes */
Christoph Lameter35386e32006-03-22 00:09:05 -0800302 unsigned long next_reap; /* updated without locking */
303 int free_touched; /* updated without locking */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304};
305
Christoph Lametere498be72005-09-09 13:03:32 -0700306/*
307 * Need this for bootstrapping a per node allocator.
308 */
309#define NUM_INIT_LISTS (2 * MAX_NUMNODES + 1)
310struct kmem_list3 __initdata initkmem_list3[NUM_INIT_LISTS];
311#define CACHE_CACHE 0
312#define SIZE_AC 1
313#define SIZE_L3 (1 + MAX_NUMNODES)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Christoph Lametere498be72005-09-09 13:03:32 -0700315/*
Andrew Mortona737b3e2006-03-22 00:08:11 -0800316 * This function must be completely optimized away if a constant is passed to
317 * it. Mostly the same as what is in linux/slab.h except it returns an index.
Christoph Lametere498be72005-09-09 13:03:32 -0700318 */
Ivan Kokshaysky7243cc02005-09-22 21:43:58 -0700319static __always_inline int index_of(const size_t size)
Christoph Lametere498be72005-09-09 13:03:32 -0700320{
Steven Rostedt5ec8a842006-02-01 03:05:44 -0800321 extern void __bad_size(void);
322
Christoph Lametere498be72005-09-09 13:03:32 -0700323 if (__builtin_constant_p(size)) {
324 int i = 0;
325
326#define CACHE(x) \
327 if (size <=x) \
328 return i; \
329 else \
330 i++;
331#include "linux/kmalloc_sizes.h"
332#undef CACHE
Steven Rostedt5ec8a842006-02-01 03:05:44 -0800333 __bad_size();
Ivan Kokshaysky7243cc02005-09-22 21:43:58 -0700334 } else
Steven Rostedt5ec8a842006-02-01 03:05:44 -0800335 __bad_size();
Christoph Lametere498be72005-09-09 13:03:32 -0700336 return 0;
337}
338
339#define INDEX_AC index_of(sizeof(struct arraycache_init))
340#define INDEX_L3 index_of(sizeof(struct kmem_list3))
341
Pekka Enberg5295a742006-02-01 03:05:48 -0800342static void kmem_list3_init(struct kmem_list3 *parent)
Christoph Lametere498be72005-09-09 13:03:32 -0700343{
344 INIT_LIST_HEAD(&parent->slabs_full);
345 INIT_LIST_HEAD(&parent->slabs_partial);
346 INIT_LIST_HEAD(&parent->slabs_free);
347 parent->shared = NULL;
348 parent->alien = NULL;
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -0800349 parent->colour_next = 0;
Christoph Lametere498be72005-09-09 13:03:32 -0700350 spin_lock_init(&parent->list_lock);
351 parent->free_objects = 0;
352 parent->free_touched = 0;
353}
354
Andrew Mortona737b3e2006-03-22 00:08:11 -0800355#define MAKE_LIST(cachep, listp, slab, nodeid) \
356 do { \
357 INIT_LIST_HEAD(listp); \
358 list_splice(&(cachep->nodelists[nodeid]->slab), listp); \
Christoph Lametere498be72005-09-09 13:03:32 -0700359 } while (0)
360
Andrew Mortona737b3e2006-03-22 00:08:11 -0800361#define MAKE_ALL_LISTS(cachep, ptr, nodeid) \
362 do { \
Christoph Lametere498be72005-09-09 13:03:32 -0700363 MAKE_LIST((cachep), (&(ptr)->slabs_full), slabs_full, nodeid); \
364 MAKE_LIST((cachep), (&(ptr)->slabs_partial), slabs_partial, nodeid); \
365 MAKE_LIST((cachep), (&(ptr)->slabs_free), slabs_free, nodeid); \
366 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367
368/*
Pekka Enberg343e0d72006-02-01 03:05:50 -0800369 * struct kmem_cache
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 *
371 * manages a cache.
372 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800373
Pekka J Enberg2109a2d2005-11-07 00:58:01 -0800374struct kmem_cache {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375/* 1) per-cpu data, touched during every alloc/free */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800376 struct array_cache *array[NR_CPUS];
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -0800377/* 2) Cache tunables. Protected by cache_chain_mutex */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800378 unsigned int batchcount;
379 unsigned int limit;
380 unsigned int shared;
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -0800381
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800382 unsigned int buffer_size;
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -0800383/* 3) touched by every alloc & free from the backend */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800384 struct kmem_list3 *nodelists[MAX_NUMNODES];
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -0800385
Andrew Mortona737b3e2006-03-22 00:08:11 -0800386 unsigned int flags; /* constant flags */
387 unsigned int num; /* # of objs per slab */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -0800389/* 4) cache_grow/shrink */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390 /* order of pgs per slab (2^n) */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800391 unsigned int gfporder;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392
393 /* force GFP flags, e.g. GFP_DMA */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800394 gfp_t gfpflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
Andrew Mortona737b3e2006-03-22 00:08:11 -0800396 size_t colour; /* cache colouring range */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800397 unsigned int colour_off; /* colour offset */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800398 struct kmem_cache *slabp_cache;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800399 unsigned int slab_size;
Andrew Mortona737b3e2006-03-22 00:08:11 -0800400 unsigned int dflags; /* dynamic flags */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
402 /* constructor func */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800403 void (*ctor) (void *, struct kmem_cache *, unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
405 /* de-constructor func */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800406 void (*dtor) (void *, struct kmem_cache *, unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -0800408/* 5) cache creation/removal */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800409 const char *name;
410 struct list_head next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -0800412/* 6) statistics */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413#if STATS
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800414 unsigned long num_active;
415 unsigned long num_allocations;
416 unsigned long high_mark;
417 unsigned long grown;
418 unsigned long reaped;
419 unsigned long errors;
420 unsigned long max_freeable;
421 unsigned long node_allocs;
422 unsigned long node_frees;
423 atomic_t allochit;
424 atomic_t allocmiss;
425 atomic_t freehit;
426 atomic_t freemiss;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427#endif
428#if DEBUG
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800429 /*
430 * If debugging is enabled, then the allocator can add additional
431 * fields and/or padding to every object. buffer_size contains the total
432 * object size including these internal fields, the following two
433 * variables contain the offset to the user object and its size.
434 */
435 int obj_offset;
436 int obj_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437#endif
438};
439
440#define CFLGS_OFF_SLAB (0x80000000UL)
441#define OFF_SLAB(x) ((x)->flags & CFLGS_OFF_SLAB)
442
443#define BATCHREFILL_LIMIT 16
Andrew Mortona737b3e2006-03-22 00:08:11 -0800444/*
445 * Optimization question: fewer reaps means less probability for unnessary
446 * cpucache drain/refill cycles.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 *
Adrian Bunkdc6f3f22005-11-08 16:44:08 +0100448 * OTOH the cpuarrays can contain lots of objects,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 * which could lock up otherwise freeable slabs.
450 */
451#define REAPTIMEOUT_CPUC (2*HZ)
452#define REAPTIMEOUT_LIST3 (4*HZ)
453
454#if STATS
455#define STATS_INC_ACTIVE(x) ((x)->num_active++)
456#define STATS_DEC_ACTIVE(x) ((x)->num_active--)
457#define STATS_INC_ALLOCED(x) ((x)->num_allocations++)
458#define STATS_INC_GROWN(x) ((x)->grown++)
459#define STATS_INC_REAPED(x) ((x)->reaped++)
Andrew Mortona737b3e2006-03-22 00:08:11 -0800460#define STATS_SET_HIGH(x) \
461 do { \
462 if ((x)->num_active > (x)->high_mark) \
463 (x)->high_mark = (x)->num_active; \
464 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465#define STATS_INC_ERR(x) ((x)->errors++)
466#define STATS_INC_NODEALLOCS(x) ((x)->node_allocs++)
Christoph Lametere498be72005-09-09 13:03:32 -0700467#define STATS_INC_NODEFREES(x) ((x)->node_frees++)
Andrew Mortona737b3e2006-03-22 00:08:11 -0800468#define STATS_SET_FREEABLE(x, i) \
469 do { \
470 if ((x)->max_freeable < i) \
471 (x)->max_freeable = i; \
472 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473#define STATS_INC_ALLOCHIT(x) atomic_inc(&(x)->allochit)
474#define STATS_INC_ALLOCMISS(x) atomic_inc(&(x)->allocmiss)
475#define STATS_INC_FREEHIT(x) atomic_inc(&(x)->freehit)
476#define STATS_INC_FREEMISS(x) atomic_inc(&(x)->freemiss)
477#else
478#define STATS_INC_ACTIVE(x) do { } while (0)
479#define STATS_DEC_ACTIVE(x) do { } while (0)
480#define STATS_INC_ALLOCED(x) do { } while (0)
481#define STATS_INC_GROWN(x) do { } while (0)
482#define STATS_INC_REAPED(x) do { } while (0)
483#define STATS_SET_HIGH(x) do { } while (0)
484#define STATS_INC_ERR(x) do { } while (0)
485#define STATS_INC_NODEALLOCS(x) do { } while (0)
Christoph Lametere498be72005-09-09 13:03:32 -0700486#define STATS_INC_NODEFREES(x) do { } while (0)
Andrew Mortona737b3e2006-03-22 00:08:11 -0800487#define STATS_SET_FREEABLE(x, i) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488#define STATS_INC_ALLOCHIT(x) do { } while (0)
489#define STATS_INC_ALLOCMISS(x) do { } while (0)
490#define STATS_INC_FREEHIT(x) do { } while (0)
491#define STATS_INC_FREEMISS(x) do { } while (0)
492#endif
493
494#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -0800495/*
496 * Magic nums for obj red zoning.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 * Placed in the first word before and the first word after an obj.
498 */
499#define RED_INACTIVE 0x5A2CF071UL /* when obj is inactive */
500#define RED_ACTIVE 0x170FC2A5UL /* when obj is active */
501
502/* ...and for poisoning */
503#define POISON_INUSE 0x5a /* for use-uninitialised poisoning */
504#define POISON_FREE 0x6b /* for use-after-free poisoning */
505#define POISON_END 0xa5 /* end-byte of poisoning */
506
Andrew Mortona737b3e2006-03-22 00:08:11 -0800507/*
508 * memory layout of objects:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 * 0 : objp
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800510 * 0 .. cachep->obj_offset - BYTES_PER_WORD - 1: padding. This ensures that
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 * the end of an object is aligned with the end of the real
512 * allocation. Catches writes behind the end of the allocation.
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800513 * cachep->obj_offset - BYTES_PER_WORD .. cachep->obj_offset - 1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 * redzone word.
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800515 * cachep->obj_offset: The real object.
516 * cachep->buffer_size - 2* BYTES_PER_WORD: redzone word [BYTES_PER_WORD long]
Andrew Mortona737b3e2006-03-22 00:08:11 -0800517 * cachep->buffer_size - 1* BYTES_PER_WORD: last caller address
518 * [BYTES_PER_WORD long]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800520static int obj_offset(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521{
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800522 return cachep->obj_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523}
524
Pekka Enberg343e0d72006-02-01 03:05:50 -0800525static int obj_size(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526{
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800527 return cachep->obj_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528}
529
Pekka Enberg343e0d72006-02-01 03:05:50 -0800530static unsigned long *dbg_redzone1(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531{
532 BUG_ON(!(cachep->flags & SLAB_RED_ZONE));
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800533 return (unsigned long*) (objp+obj_offset(cachep)-BYTES_PER_WORD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534}
535
Pekka Enberg343e0d72006-02-01 03:05:50 -0800536static unsigned long *dbg_redzone2(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537{
538 BUG_ON(!(cachep->flags & SLAB_RED_ZONE));
539 if (cachep->flags & SLAB_STORE_USER)
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800540 return (unsigned long *)(objp + cachep->buffer_size -
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800541 2 * BYTES_PER_WORD);
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800542 return (unsigned long *)(objp + cachep->buffer_size - BYTES_PER_WORD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543}
544
Pekka Enberg343e0d72006-02-01 03:05:50 -0800545static void **dbg_userword(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546{
547 BUG_ON(!(cachep->flags & SLAB_STORE_USER));
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800548 return (void **)(objp + cachep->buffer_size - BYTES_PER_WORD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549}
550
551#else
552
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800553#define obj_offset(x) 0
554#define obj_size(cachep) (cachep->buffer_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555#define dbg_redzone1(cachep, objp) ({BUG(); (unsigned long *)NULL;})
556#define dbg_redzone2(cachep, objp) ({BUG(); (unsigned long *)NULL;})
557#define dbg_userword(cachep, objp) ({BUG(); (void **)NULL;})
558
559#endif
560
561/*
Andrew Mortona737b3e2006-03-22 00:08:11 -0800562 * Maximum size of an obj (in 2^order pages) and absolute limit for the gfp
563 * order.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 */
565#if defined(CONFIG_LARGE_ALLOCS)
566#define MAX_OBJ_ORDER 13 /* up to 32Mb */
567#define MAX_GFP_ORDER 13 /* up to 32Mb */
568#elif defined(CONFIG_MMU)
569#define MAX_OBJ_ORDER 5 /* 32 pages */
570#define MAX_GFP_ORDER 5 /* 32 pages */
571#else
572#define MAX_OBJ_ORDER 8 /* up to 1Mb */
573#define MAX_GFP_ORDER 8 /* up to 1Mb */
574#endif
575
576/*
577 * Do not go above this order unless 0 objects fit into the slab.
578 */
579#define BREAK_GFP_ORDER_HI 1
580#define BREAK_GFP_ORDER_LO 0
581static int slab_break_gfp_order = BREAK_GFP_ORDER_LO;
582
Andrew Mortona737b3e2006-03-22 00:08:11 -0800583/*
584 * Functions for storing/retrieving the cachep and or slab from the page
585 * allocator. These are used to find the slab an obj belongs to. With kfree(),
586 * these are used to find the cache which an obj belongs to.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 */
Pekka Enberg065d41c2005-11-13 16:06:46 -0800588static inline void page_set_cache(struct page *page, struct kmem_cache *cache)
589{
590 page->lru.next = (struct list_head *)cache;
591}
592
593static inline struct kmem_cache *page_get_cache(struct page *page)
594{
Nick Piggin84097512006-03-22 00:08:34 -0800595 if (unlikely(PageCompound(page)))
596 page = (struct page *)page_private(page);
Pekka Enberg065d41c2005-11-13 16:06:46 -0800597 return (struct kmem_cache *)page->lru.next;
598}
599
600static inline void page_set_slab(struct page *page, struct slab *slab)
601{
602 page->lru.prev = (struct list_head *)slab;
603}
604
605static inline struct slab *page_get_slab(struct page *page)
606{
Nick Piggin84097512006-03-22 00:08:34 -0800607 if (unlikely(PageCompound(page)))
608 page = (struct page *)page_private(page);
Pekka Enberg065d41c2005-11-13 16:06:46 -0800609 return (struct slab *)page->lru.prev;
610}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Pekka Enberg6ed5eb22006-02-01 03:05:49 -0800612static inline struct kmem_cache *virt_to_cache(const void *obj)
613{
614 struct page *page = virt_to_page(obj);
615 return page_get_cache(page);
616}
617
618static inline struct slab *virt_to_slab(const void *obj)
619{
620 struct page *page = virt_to_page(obj);
621 return page_get_slab(page);
622}
623
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800624static inline void *index_to_obj(struct kmem_cache *cache, struct slab *slab,
625 unsigned int idx)
626{
627 return slab->s_mem + cache->buffer_size * idx;
628}
629
630static inline unsigned int obj_to_index(struct kmem_cache *cache,
631 struct slab *slab, void *obj)
632{
633 return (unsigned)(obj - slab->s_mem) / cache->buffer_size;
634}
635
Andrew Mortona737b3e2006-03-22 00:08:11 -0800636/*
637 * These are the default caches for kmalloc. Custom caches can have other sizes.
638 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639struct cache_sizes malloc_sizes[] = {
640#define CACHE(x) { .cs_size = (x) },
641#include <linux/kmalloc_sizes.h>
642 CACHE(ULONG_MAX)
643#undef CACHE
644};
645EXPORT_SYMBOL(malloc_sizes);
646
647/* Must match cache_sizes above. Out of line to keep cache footprint low. */
648struct cache_names {
649 char *name;
650 char *name_dma;
651};
652
653static struct cache_names __initdata cache_names[] = {
654#define CACHE(x) { .name = "size-" #x, .name_dma = "size-" #x "(DMA)" },
655#include <linux/kmalloc_sizes.h>
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800656 {NULL,}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657#undef CACHE
658};
659
660static struct arraycache_init initarray_cache __initdata =
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800661 { {0, BOOT_CPUCACHE_ENTRIES, 1, 0} };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662static struct arraycache_init initarray_generic =
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800663 { {0, BOOT_CPUCACHE_ENTRIES, 1, 0} };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
665/* internal cache of cache description objs */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800666static struct kmem_cache cache_cache = {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800667 .batchcount = 1,
668 .limit = BOOT_CPUCACHE_ENTRIES,
669 .shared = 1,
Pekka Enberg343e0d72006-02-01 03:05:50 -0800670 .buffer_size = sizeof(struct kmem_cache),
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800671 .name = "kmem_cache",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672#if DEBUG
Pekka Enberg343e0d72006-02-01 03:05:50 -0800673 .obj_size = sizeof(struct kmem_cache),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674#endif
675};
676
677/* Guard access to the cache-chain. */
Ingo Molnarfc0abb12006-01-18 17:42:33 -0800678static DEFINE_MUTEX(cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679static struct list_head cache_chain;
680
681/*
Andrew Mortona737b3e2006-03-22 00:08:11 -0800682 * vm_enough_memory() looks at this to determine how many slab-allocated pages
683 * are possibly freeable under pressure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684 *
685 * SLAB_RECLAIM_ACCOUNT turns this on per-slab
686 */
687atomic_t slab_reclaim_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
689/*
690 * chicken and egg problem: delay the per-cpu array allocation
691 * until the general caches are up.
692 */
693static enum {
694 NONE,
Christoph Lametere498be72005-09-09 13:03:32 -0700695 PARTIAL_AC,
696 PARTIAL_L3,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 FULL
698} g_cpucache_up;
699
700static DEFINE_PER_CPU(struct work_struct, reap_work);
701
Andrew Mortona737b3e2006-03-22 00:08:11 -0800702static void free_block(struct kmem_cache *cachep, void **objpp, int len,
703 int node);
Pekka Enberg343e0d72006-02-01 03:05:50 -0800704static void enable_cpucache(struct kmem_cache *cachep);
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800705static void cache_reap(void *unused);
Pekka Enberg343e0d72006-02-01 03:05:50 -0800706static int __node_shrink(struct kmem_cache *cachep, int node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707
Pekka Enberg343e0d72006-02-01 03:05:50 -0800708static inline struct array_cache *cpu_cache_get(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709{
710 return cachep->array[smp_processor_id()];
711}
712
Andrew Mortona737b3e2006-03-22 00:08:11 -0800713static inline struct kmem_cache *__find_general_cachep(size_t size,
714 gfp_t gfpflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715{
716 struct cache_sizes *csizep = malloc_sizes;
717
718#if DEBUG
719 /* This happens if someone tries to call
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800720 * kmem_cache_create(), or __kmalloc(), before
721 * the generic caches are initialized.
722 */
Alok Katariac7e43c72005-09-14 12:17:53 -0700723 BUG_ON(malloc_sizes[INDEX_AC].cs_cachep == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724#endif
725 while (size > csizep->cs_size)
726 csizep++;
727
728 /*
Martin Hicks0abf40c2005-09-03 15:54:54 -0700729 * Really subtle: The last entry with cs->cs_size==ULONG_MAX
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 * has cs_{dma,}cachep==NULL. Thus no special case
731 * for large kmalloc calls required.
732 */
733 if (unlikely(gfpflags & GFP_DMA))
734 return csizep->cs_dmacachep;
735 return csizep->cs_cachep;
736}
737
Pekka Enberg343e0d72006-02-01 03:05:50 -0800738struct kmem_cache *kmem_find_general_cachep(size_t size, gfp_t gfpflags)
Manfred Spraul97e2bde2005-05-01 08:58:38 -0700739{
740 return __find_general_cachep(size, gfpflags);
741}
742EXPORT_SYMBOL(kmem_find_general_cachep);
743
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800744static size_t slab_mgmt_size(size_t nr_objs, size_t align)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745{
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800746 return ALIGN(sizeof(struct slab)+nr_objs*sizeof(kmem_bufctl_t), align);
747}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748
Andrew Mortona737b3e2006-03-22 00:08:11 -0800749/*
750 * Calculate the number of objects and left-over bytes for a given buffer size.
751 */
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800752static void cache_estimate(unsigned long gfporder, size_t buffer_size,
753 size_t align, int flags, size_t *left_over,
754 unsigned int *num)
755{
756 int nr_objs;
757 size_t mgmt_size;
758 size_t slab_size = PAGE_SIZE << gfporder;
759
760 /*
761 * The slab management structure can be either off the slab or
762 * on it. For the latter case, the memory allocated for a
763 * slab is used for:
764 *
765 * - The struct slab
766 * - One kmem_bufctl_t for each object
767 * - Padding to respect alignment of @align
768 * - @buffer_size bytes for each object
769 *
770 * If the slab management structure is off the slab, then the
771 * alignment will already be calculated into the size. Because
772 * the slabs are all pages aligned, the objects will be at the
773 * correct alignment when allocated.
774 */
775 if (flags & CFLGS_OFF_SLAB) {
776 mgmt_size = 0;
777 nr_objs = slab_size / buffer_size;
778
779 if (nr_objs > SLAB_LIMIT)
780 nr_objs = SLAB_LIMIT;
781 } else {
782 /*
783 * Ignore padding for the initial guess. The padding
784 * is at most @align-1 bytes, and @buffer_size is at
785 * least @align. In the worst case, this result will
786 * be one greater than the number of objects that fit
787 * into the memory allocation when taking the padding
788 * into account.
789 */
790 nr_objs = (slab_size - sizeof(struct slab)) /
791 (buffer_size + sizeof(kmem_bufctl_t));
792
793 /*
794 * This calculated number will be either the right
795 * amount, or one greater than what we want.
796 */
797 if (slab_mgmt_size(nr_objs, align) + nr_objs*buffer_size
798 > slab_size)
799 nr_objs--;
800
801 if (nr_objs > SLAB_LIMIT)
802 nr_objs = SLAB_LIMIT;
803
804 mgmt_size = slab_mgmt_size(nr_objs, align);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 }
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800806 *num = nr_objs;
807 *left_over = slab_size - nr_objs*buffer_size - mgmt_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808}
809
810#define slab_error(cachep, msg) __slab_error(__FUNCTION__, cachep, msg)
811
Andrew Mortona737b3e2006-03-22 00:08:11 -0800812static void __slab_error(const char *function, struct kmem_cache *cachep,
813 char *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814{
815 printk(KERN_ERR "slab error in %s(): cache `%s': %s\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800816 function, cachep->name, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 dump_stack();
818}
819
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800820#ifdef CONFIG_NUMA
821/*
822 * Special reaping functions for NUMA systems called from cache_reap().
823 * These take care of doing round robin flushing of alien caches (containing
824 * objects freed on different nodes from which they were allocated) and the
825 * flushing of remote pcps by calling drain_node_pages.
826 */
827static DEFINE_PER_CPU(unsigned long, reap_node);
828
829static void init_reap_node(int cpu)
830{
831 int node;
832
833 node = next_node(cpu_to_node(cpu), node_online_map);
834 if (node == MAX_NUMNODES)
Paul Jackson442295c2006-03-22 00:09:11 -0800835 node = first_node(node_online_map);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800836
837 __get_cpu_var(reap_node) = node;
838}
839
840static void next_reap_node(void)
841{
842 int node = __get_cpu_var(reap_node);
843
844 /*
845 * Also drain per cpu pages on remote zones
846 */
847 if (node != numa_node_id())
848 drain_node_pages(node);
849
850 node = next_node(node, node_online_map);
851 if (unlikely(node >= MAX_NUMNODES))
852 node = first_node(node_online_map);
853 __get_cpu_var(reap_node) = node;
854}
855
856#else
857#define init_reap_node(cpu) do { } while (0)
858#define next_reap_node(void) do { } while (0)
859#endif
860
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861/*
862 * Initiate the reap timer running on the target CPU. We run at around 1 to 2Hz
863 * via the workqueue/eventd.
864 * Add the CPU number into the expiration time to minimize the possibility of
865 * the CPUs getting into lockstep and contending for the global cache chain
866 * lock.
867 */
868static void __devinit start_cpu_timer(int cpu)
869{
870 struct work_struct *reap_work = &per_cpu(reap_work, cpu);
871
872 /*
873 * When this gets called from do_initcalls via cpucache_init(),
874 * init_workqueues() has already run, so keventd will be setup
875 * at that time.
876 */
877 if (keventd_up() && reap_work->func == NULL) {
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800878 init_reap_node(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 INIT_WORK(reap_work, cache_reap, NULL);
880 schedule_delayed_work_on(cpu, reap_work, HZ + 3 * cpu);
881 }
882}
883
Christoph Lametere498be72005-09-09 13:03:32 -0700884static struct array_cache *alloc_arraycache(int node, int entries,
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800885 int batchcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886{
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800887 int memsize = sizeof(void *) * entries + sizeof(struct array_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 struct array_cache *nc = NULL;
889
Christoph Lametere498be72005-09-09 13:03:32 -0700890 nc = kmalloc_node(memsize, GFP_KERNEL, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 if (nc) {
892 nc->avail = 0;
893 nc->limit = entries;
894 nc->batchcount = batchcount;
895 nc->touched = 0;
Christoph Lametere498be72005-09-09 13:03:32 -0700896 spin_lock_init(&nc->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 }
898 return nc;
899}
900
Christoph Lameter3ded1752006-03-25 03:06:44 -0800901/*
902 * Transfer objects in one arraycache to another.
903 * Locking must be handled by the caller.
904 *
905 * Return the number of entries transferred.
906 */
907static int transfer_objects(struct array_cache *to,
908 struct array_cache *from, unsigned int max)
909{
910 /* Figure out how many entries to transfer */
911 int nr = min(min(from->avail, max), to->limit - to->avail);
912
913 if (!nr)
914 return 0;
915
916 memcpy(to->entry + to->avail, from->entry + from->avail -nr,
917 sizeof(void *) *nr);
918
919 from->avail -= nr;
920 to->avail += nr;
921 to->touched = 1;
922 return nr;
923}
924
Christoph Lametere498be72005-09-09 13:03:32 -0700925#ifdef CONFIG_NUMA
Pekka Enberg343e0d72006-02-01 03:05:50 -0800926static void *__cache_alloc_node(struct kmem_cache *, gfp_t, int);
Paul Jacksonc61afb12006-03-24 03:16:08 -0800927static void *alternate_node_alloc(struct kmem_cache *, gfp_t);
Christoph Lameterdc85da12006-01-18 17:42:36 -0800928
Pekka Enberg5295a742006-02-01 03:05:48 -0800929static struct array_cache **alloc_alien_cache(int node, int limit)
Christoph Lametere498be72005-09-09 13:03:32 -0700930{
931 struct array_cache **ac_ptr;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800932 int memsize = sizeof(void *) * MAX_NUMNODES;
Christoph Lametere498be72005-09-09 13:03:32 -0700933 int i;
934
935 if (limit > 1)
936 limit = 12;
937 ac_ptr = kmalloc_node(memsize, GFP_KERNEL, node);
938 if (ac_ptr) {
939 for_each_node(i) {
940 if (i == node || !node_online(i)) {
941 ac_ptr[i] = NULL;
942 continue;
943 }
944 ac_ptr[i] = alloc_arraycache(node, limit, 0xbaadf00d);
945 if (!ac_ptr[i]) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800946 for (i--; i <= 0; i--)
Christoph Lametere498be72005-09-09 13:03:32 -0700947 kfree(ac_ptr[i]);
948 kfree(ac_ptr);
949 return NULL;
950 }
951 }
952 }
953 return ac_ptr;
954}
955
Pekka Enberg5295a742006-02-01 03:05:48 -0800956static void free_alien_cache(struct array_cache **ac_ptr)
Christoph Lametere498be72005-09-09 13:03:32 -0700957{
958 int i;
959
960 if (!ac_ptr)
961 return;
Christoph Lametere498be72005-09-09 13:03:32 -0700962 for_each_node(i)
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800963 kfree(ac_ptr[i]);
Christoph Lametere498be72005-09-09 13:03:32 -0700964 kfree(ac_ptr);
965}
966
Pekka Enberg343e0d72006-02-01 03:05:50 -0800967static void __drain_alien_cache(struct kmem_cache *cachep,
Pekka Enberg5295a742006-02-01 03:05:48 -0800968 struct array_cache *ac, int node)
Christoph Lametere498be72005-09-09 13:03:32 -0700969{
970 struct kmem_list3 *rl3 = cachep->nodelists[node];
971
972 if (ac->avail) {
973 spin_lock(&rl3->list_lock);
Christoph Lametere00946f2006-03-25 03:06:45 -0800974 /*
975 * Stuff objects into the remote nodes shared array first.
976 * That way we could avoid the overhead of putting the objects
977 * into the free lists and getting them back later.
978 */
979 transfer_objects(rl3->shared, ac, ac->limit);
980
Christoph Lameterff694162005-09-22 21:44:02 -0700981 free_block(cachep, ac->entry, ac->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -0700982 ac->avail = 0;
983 spin_unlock(&rl3->list_lock);
984 }
985}
986
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800987/*
988 * Called from cache_reap() to regularly drain alien caches round robin.
989 */
990static void reap_alien(struct kmem_cache *cachep, struct kmem_list3 *l3)
991{
992 int node = __get_cpu_var(reap_node);
993
994 if (l3->alien) {
995 struct array_cache *ac = l3->alien[node];
Christoph Lametere00946f2006-03-25 03:06:45 -0800996
997 if (ac && ac->avail && spin_trylock_irq(&ac->lock)) {
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800998 __drain_alien_cache(cachep, ac, node);
999 spin_unlock_irq(&ac->lock);
1000 }
1001 }
1002}
1003
Andrew Mortona737b3e2006-03-22 00:08:11 -08001004static void drain_alien_cache(struct kmem_cache *cachep,
1005 struct array_cache **alien)
Christoph Lametere498be72005-09-09 13:03:32 -07001006{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001007 int i = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07001008 struct array_cache *ac;
1009 unsigned long flags;
1010
1011 for_each_online_node(i) {
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001012 ac = alien[i];
Christoph Lametere498be72005-09-09 13:03:32 -07001013 if (ac) {
1014 spin_lock_irqsave(&ac->lock, flags);
1015 __drain_alien_cache(cachep, ac, i);
1016 spin_unlock_irqrestore(&ac->lock, flags);
1017 }
1018 }
1019}
1020#else
Linus Torvalds7a21ef62006-02-05 11:26:38 -08001021
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001022#define drain_alien_cache(cachep, alien) do { } while (0)
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001023#define reap_alien(cachep, l3) do { } while (0)
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001024
Linus Torvalds7a21ef62006-02-05 11:26:38 -08001025static inline struct array_cache **alloc_alien_cache(int node, int limit)
1026{
1027 return (struct array_cache **) 0x01020304ul;
1028}
1029
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001030static inline void free_alien_cache(struct array_cache **ac_ptr)
1031{
1032}
Linus Torvalds7a21ef62006-02-05 11:26:38 -08001033
Christoph Lametere498be72005-09-09 13:03:32 -07001034#endif
1035
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036static int __devinit cpuup_callback(struct notifier_block *nfb,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001037 unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038{
1039 long cpu = (long)hcpu;
Pekka Enberg343e0d72006-02-01 03:05:50 -08001040 struct kmem_cache *cachep;
Christoph Lametere498be72005-09-09 13:03:32 -07001041 struct kmem_list3 *l3 = NULL;
1042 int node = cpu_to_node(cpu);
1043 int memsize = sizeof(struct kmem_list3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044
1045 switch (action) {
1046 case CPU_UP_PREPARE:
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001047 mutex_lock(&cache_chain_mutex);
Andrew Mortona737b3e2006-03-22 00:08:11 -08001048 /*
1049 * We need to do this right in the beginning since
Christoph Lametere498be72005-09-09 13:03:32 -07001050 * alloc_arraycache's are going to use this list.
1051 * kmalloc_node allows us to add the slab to the right
1052 * kmem_list3 and not this cpu's kmem_list3
1053 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054
Christoph Lametere498be72005-09-09 13:03:32 -07001055 list_for_each_entry(cachep, &cache_chain, next) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08001056 /*
1057 * Set up the size64 kmemlist for cpu before we can
Christoph Lametere498be72005-09-09 13:03:32 -07001058 * begin anything. Make sure some other cpu on this
1059 * node has not already allocated this
1060 */
1061 if (!cachep->nodelists[node]) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08001062 l3 = kmalloc_node(memsize, GFP_KERNEL, node);
1063 if (!l3)
Christoph Lametere498be72005-09-09 13:03:32 -07001064 goto bad;
1065 kmem_list3_init(l3);
1066 l3->next_reap = jiffies + REAPTIMEOUT_LIST3 +
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001067 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
Christoph Lametere498be72005-09-09 13:03:32 -07001068
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001069 /*
1070 * The l3s don't come and go as CPUs come and
1071 * go. cache_chain_mutex is sufficient
1072 * protection here.
1073 */
Christoph Lametere498be72005-09-09 13:03:32 -07001074 cachep->nodelists[node] = l3;
1075 }
1076
1077 spin_lock_irq(&cachep->nodelists[node]->list_lock);
1078 cachep->nodelists[node]->free_limit =
Andrew Mortona737b3e2006-03-22 00:08:11 -08001079 (1 + nr_cpus_node(node)) *
1080 cachep->batchcount + cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07001081 spin_unlock_irq(&cachep->nodelists[node]->list_lock);
1082 }
1083
Andrew Mortona737b3e2006-03-22 00:08:11 -08001084 /*
1085 * Now we can go ahead with allocating the shared arrays and
1086 * array caches
1087 */
Christoph Lametere498be72005-09-09 13:03:32 -07001088 list_for_each_entry(cachep, &cache_chain, next) {
Tobias Klausercd105df2006-01-08 01:00:59 -08001089 struct array_cache *nc;
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001090 struct array_cache *shared;
1091 struct array_cache **alien;
Tobias Klausercd105df2006-01-08 01:00:59 -08001092
Christoph Lametere498be72005-09-09 13:03:32 -07001093 nc = alloc_arraycache(node, cachep->limit,
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001094 cachep->batchcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 if (!nc)
1096 goto bad;
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001097 shared = alloc_arraycache(node,
1098 cachep->shared * cachep->batchcount,
1099 0xbaadf00d);
1100 if (!shared)
1101 goto bad;
Linus Torvalds7a21ef62006-02-05 11:26:38 -08001102
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001103 alien = alloc_alien_cache(node, cachep->limit);
1104 if (!alien)
1105 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106 cachep->array[cpu] = nc;
Christoph Lametere498be72005-09-09 13:03:32 -07001107 l3 = cachep->nodelists[node];
1108 BUG_ON(!l3);
Christoph Lametere498be72005-09-09 13:03:32 -07001109
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001110 spin_lock_irq(&l3->list_lock);
1111 if (!l3->shared) {
1112 /*
1113 * We are serialised from CPU_DEAD or
1114 * CPU_UP_CANCELLED by the cpucontrol lock
1115 */
1116 l3->shared = shared;
1117 shared = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07001118 }
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001119#ifdef CONFIG_NUMA
1120 if (!l3->alien) {
1121 l3->alien = alien;
1122 alien = NULL;
1123 }
1124#endif
1125 spin_unlock_irq(&l3->list_lock);
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001126 kfree(shared);
1127 free_alien_cache(alien);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 }
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001129 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130 break;
1131 case CPU_ONLINE:
1132 start_cpu_timer(cpu);
1133 break;
1134#ifdef CONFIG_HOTPLUG_CPU
1135 case CPU_DEAD:
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001136 /*
1137 * Even if all the cpus of a node are down, we don't free the
1138 * kmem_list3 of any cache. This to avoid a race between
1139 * cpu_down, and a kmalloc allocation from another cpu for
1140 * memory from the node of the cpu going down. The list3
1141 * structure is usually allocated from kmem_cache_create() and
1142 * gets destroyed at kmem_cache_destroy().
1143 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144 /* fall thru */
1145 case CPU_UP_CANCELED:
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001146 mutex_lock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 list_for_each_entry(cachep, &cache_chain, next) {
1148 struct array_cache *nc;
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001149 struct array_cache *shared;
1150 struct array_cache **alien;
Christoph Lametere498be72005-09-09 13:03:32 -07001151 cpumask_t mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152
Christoph Lametere498be72005-09-09 13:03:32 -07001153 mask = node_to_cpumask(node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154 /* cpu is dead; no one can alloc from it. */
1155 nc = cachep->array[cpu];
1156 cachep->array[cpu] = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07001157 l3 = cachep->nodelists[node];
1158
1159 if (!l3)
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001160 goto free_array_cache;
Christoph Lametere498be72005-09-09 13:03:32 -07001161
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08001162 spin_lock_irq(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07001163
1164 /* Free limit for this kmem_list3 */
1165 l3->free_limit -= cachep->batchcount;
1166 if (nc)
Christoph Lameterff694162005-09-22 21:44:02 -07001167 free_block(cachep, nc->entry, nc->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -07001168
1169 if (!cpus_empty(mask)) {
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08001170 spin_unlock_irq(&l3->list_lock);
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001171 goto free_array_cache;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001172 }
Christoph Lametere498be72005-09-09 13:03:32 -07001173
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001174 shared = l3->shared;
1175 if (shared) {
Christoph Lametere498be72005-09-09 13:03:32 -07001176 free_block(cachep, l3->shared->entry,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001177 l3->shared->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -07001178 l3->shared = NULL;
1179 }
Christoph Lametere498be72005-09-09 13:03:32 -07001180
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001181 alien = l3->alien;
1182 l3->alien = NULL;
1183
1184 spin_unlock_irq(&l3->list_lock);
1185
1186 kfree(shared);
1187 if (alien) {
1188 drain_alien_cache(cachep, alien);
1189 free_alien_cache(alien);
Christoph Lametere498be72005-09-09 13:03:32 -07001190 }
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001191free_array_cache:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 kfree(nc);
1193 }
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001194 /*
1195 * In the previous loop, all the objects were freed to
1196 * the respective cache's slabs, now we can go ahead and
1197 * shrink each nodelist to its limit.
1198 */
1199 list_for_each_entry(cachep, &cache_chain, next) {
1200 l3 = cachep->nodelists[node];
1201 if (!l3)
1202 continue;
1203 spin_lock_irq(&l3->list_lock);
1204 /* free slabs belonging to this node */
1205 __node_shrink(cachep, node);
1206 spin_unlock_irq(&l3->list_lock);
1207 }
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001208 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001209 break;
1210#endif
1211 }
1212 return NOTIFY_OK;
Andrew Mortona737b3e2006-03-22 00:08:11 -08001213bad:
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001214 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 return NOTIFY_BAD;
1216}
1217
1218static struct notifier_block cpucache_notifier = { &cpuup_callback, NULL, 0 };
1219
Christoph Lametere498be72005-09-09 13:03:32 -07001220/*
1221 * swap the static kmem_list3 with kmalloced memory
1222 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08001223static void init_list(struct kmem_cache *cachep, struct kmem_list3 *list,
1224 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07001225{
1226 struct kmem_list3 *ptr;
1227
1228 BUG_ON(cachep->nodelists[nodeid] != list);
1229 ptr = kmalloc_node(sizeof(struct kmem_list3), GFP_KERNEL, nodeid);
1230 BUG_ON(!ptr);
1231
1232 local_irq_disable();
1233 memcpy(ptr, list, sizeof(struct kmem_list3));
1234 MAKE_ALL_LISTS(cachep, ptr, nodeid);
1235 cachep->nodelists[nodeid] = ptr;
1236 local_irq_enable();
1237}
1238
Andrew Mortona737b3e2006-03-22 00:08:11 -08001239/*
1240 * Initialisation. Called after the page allocator have been initialised and
1241 * before smp_init().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 */
1243void __init kmem_cache_init(void)
1244{
1245 size_t left_over;
1246 struct cache_sizes *sizes;
1247 struct cache_names *names;
Christoph Lametere498be72005-09-09 13:03:32 -07001248 int i;
Jack Steiner07ed76b2006-03-07 21:55:46 -08001249 int order;
Christoph Lametere498be72005-09-09 13:03:32 -07001250
1251 for (i = 0; i < NUM_INIT_LISTS; i++) {
1252 kmem_list3_init(&initkmem_list3[i]);
1253 if (i < MAX_NUMNODES)
1254 cache_cache.nodelists[i] = NULL;
1255 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256
1257 /*
1258 * Fragmentation resistance on low memory - only use bigger
1259 * page orders on machines with more than 32MB of memory.
1260 */
1261 if (num_physpages > (32 << 20) >> PAGE_SHIFT)
1262 slab_break_gfp_order = BREAK_GFP_ORDER_HI;
1263
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 /* Bootstrap is tricky, because several objects are allocated
1265 * from caches that do not exist yet:
Andrew Mortona737b3e2006-03-22 00:08:11 -08001266 * 1) initialize the cache_cache cache: it contains the struct
1267 * kmem_cache structures of all caches, except cache_cache itself:
1268 * cache_cache is statically allocated.
Christoph Lametere498be72005-09-09 13:03:32 -07001269 * Initially an __init data area is used for the head array and the
1270 * kmem_list3 structures, it's replaced with a kmalloc allocated
1271 * array at the end of the bootstrap.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 * 2) Create the first kmalloc cache.
Pekka Enberg343e0d72006-02-01 03:05:50 -08001273 * The struct kmem_cache for the new cache is allocated normally.
Christoph Lametere498be72005-09-09 13:03:32 -07001274 * An __init data area is used for the head array.
1275 * 3) Create the remaining kmalloc caches, with minimally sized
1276 * head arrays.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001277 * 4) Replace the __init data head arrays for cache_cache and the first
1278 * kmalloc cache with kmalloc allocated arrays.
Christoph Lametere498be72005-09-09 13:03:32 -07001279 * 5) Replace the __init data for kmem_list3 for cache_cache and
1280 * the other cache's with kmalloc allocated memory.
1281 * 6) Resize the head arrays of the kmalloc caches to their final sizes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 */
1283
1284 /* 1) create the cache_cache */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 INIT_LIST_HEAD(&cache_chain);
1286 list_add(&cache_cache.next, &cache_chain);
1287 cache_cache.colour_off = cache_line_size();
1288 cache_cache.array[smp_processor_id()] = &initarray_cache.cache;
Christoph Lametere498be72005-09-09 13:03:32 -07001289 cache_cache.nodelists[numa_node_id()] = &initkmem_list3[CACHE_CACHE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290
Andrew Mortona737b3e2006-03-22 00:08:11 -08001291 cache_cache.buffer_size = ALIGN(cache_cache.buffer_size,
1292 cache_line_size());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001293
Jack Steiner07ed76b2006-03-07 21:55:46 -08001294 for (order = 0; order < MAX_ORDER; order++) {
1295 cache_estimate(order, cache_cache.buffer_size,
1296 cache_line_size(), 0, &left_over, &cache_cache.num);
1297 if (cache_cache.num)
1298 break;
1299 }
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02001300 BUG_ON(!cache_cache.num);
Jack Steiner07ed76b2006-03-07 21:55:46 -08001301 cache_cache.gfporder = order;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001302 cache_cache.colour = left_over / cache_cache.colour_off;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001303 cache_cache.slab_size = ALIGN(cache_cache.num * sizeof(kmem_bufctl_t) +
1304 sizeof(struct slab), cache_line_size());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305
1306 /* 2+3) create the kmalloc caches */
1307 sizes = malloc_sizes;
1308 names = cache_names;
1309
Andrew Mortona737b3e2006-03-22 00:08:11 -08001310 /*
1311 * Initialize the caches that provide memory for the array cache and the
1312 * kmem_list3 structures first. Without this, further allocations will
1313 * bug.
Christoph Lametere498be72005-09-09 13:03:32 -07001314 */
1315
1316 sizes[INDEX_AC].cs_cachep = kmem_cache_create(names[INDEX_AC].name,
Andrew Mortona737b3e2006-03-22 00:08:11 -08001317 sizes[INDEX_AC].cs_size,
1318 ARCH_KMALLOC_MINALIGN,
1319 ARCH_KMALLOC_FLAGS|SLAB_PANIC,
1320 NULL, NULL);
Christoph Lametere498be72005-09-09 13:03:32 -07001321
Andrew Mortona737b3e2006-03-22 00:08:11 -08001322 if (INDEX_AC != INDEX_L3) {
Christoph Lametere498be72005-09-09 13:03:32 -07001323 sizes[INDEX_L3].cs_cachep =
Andrew Mortona737b3e2006-03-22 00:08:11 -08001324 kmem_cache_create(names[INDEX_L3].name,
1325 sizes[INDEX_L3].cs_size,
1326 ARCH_KMALLOC_MINALIGN,
1327 ARCH_KMALLOC_FLAGS|SLAB_PANIC,
1328 NULL, NULL);
1329 }
Christoph Lametere498be72005-09-09 13:03:32 -07001330
Linus Torvalds1da177e2005-04-16 15:20:36 -07001331 while (sizes->cs_size != ULONG_MAX) {
Christoph Lametere498be72005-09-09 13:03:32 -07001332 /*
1333 * For performance, all the general caches are L1 aligned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 * This should be particularly beneficial on SMP boxes, as it
1335 * eliminates "false sharing".
1336 * Note for systems short on memory removing the alignment will
Christoph Lametere498be72005-09-09 13:03:32 -07001337 * allow tighter packing of the smaller caches.
1338 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08001339 if (!sizes->cs_cachep) {
Christoph Lametere498be72005-09-09 13:03:32 -07001340 sizes->cs_cachep = kmem_cache_create(names->name,
Andrew Mortona737b3e2006-03-22 00:08:11 -08001341 sizes->cs_size,
1342 ARCH_KMALLOC_MINALIGN,
1343 ARCH_KMALLOC_FLAGS|SLAB_PANIC,
1344 NULL, NULL);
1345 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346
1347 /* Inc off-slab bufctl limit until the ceiling is hit. */
1348 if (!(OFF_SLAB(sizes->cs_cachep))) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001349 offslab_limit = sizes->cs_size - sizeof(struct slab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350 offslab_limit /= sizeof(kmem_bufctl_t);
1351 }
1352
1353 sizes->cs_dmacachep = kmem_cache_create(names->name_dma,
Andrew Mortona737b3e2006-03-22 00:08:11 -08001354 sizes->cs_size,
1355 ARCH_KMALLOC_MINALIGN,
1356 ARCH_KMALLOC_FLAGS|SLAB_CACHE_DMA|
1357 SLAB_PANIC,
1358 NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 sizes++;
1360 names++;
1361 }
1362 /* 4) Replace the bootstrap head arrays */
1363 {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001364 void *ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001365
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366 ptr = kmalloc(sizeof(struct arraycache_init), GFP_KERNEL);
Christoph Lametere498be72005-09-09 13:03:32 -07001367
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 local_irq_disable();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001369 BUG_ON(cpu_cache_get(&cache_cache) != &initarray_cache.cache);
1370 memcpy(ptr, cpu_cache_get(&cache_cache),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001371 sizeof(struct arraycache_init));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 cache_cache.array[smp_processor_id()] = ptr;
1373 local_irq_enable();
Christoph Lametere498be72005-09-09 13:03:32 -07001374
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 ptr = kmalloc(sizeof(struct arraycache_init), GFP_KERNEL);
Christoph Lametere498be72005-09-09 13:03:32 -07001376
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 local_irq_disable();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001378 BUG_ON(cpu_cache_get(malloc_sizes[INDEX_AC].cs_cachep)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001379 != &initarray_generic.cache);
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001380 memcpy(ptr, cpu_cache_get(malloc_sizes[INDEX_AC].cs_cachep),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001381 sizeof(struct arraycache_init));
Christoph Lametere498be72005-09-09 13:03:32 -07001382 malloc_sizes[INDEX_AC].cs_cachep->array[smp_processor_id()] =
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001383 ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384 local_irq_enable();
1385 }
Christoph Lametere498be72005-09-09 13:03:32 -07001386 /* 5) Replace the bootstrap kmem_list3's */
1387 {
1388 int node;
1389 /* Replace the static kmem_list3 structures for the boot cpu */
1390 init_list(&cache_cache, &initkmem_list3[CACHE_CACHE],
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001391 numa_node_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392
Christoph Lametere498be72005-09-09 13:03:32 -07001393 for_each_online_node(node) {
1394 init_list(malloc_sizes[INDEX_AC].cs_cachep,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001395 &initkmem_list3[SIZE_AC + node], node);
Christoph Lametere498be72005-09-09 13:03:32 -07001396
1397 if (INDEX_AC != INDEX_L3) {
1398 init_list(malloc_sizes[INDEX_L3].cs_cachep,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001399 &initkmem_list3[SIZE_L3 + node],
1400 node);
Christoph Lametere498be72005-09-09 13:03:32 -07001401 }
1402 }
1403 }
1404
1405 /* 6) resize the head arrays to their final sizes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 {
Pekka Enberg343e0d72006-02-01 03:05:50 -08001407 struct kmem_cache *cachep;
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001408 mutex_lock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 list_for_each_entry(cachep, &cache_chain, next)
Andrew Mortona737b3e2006-03-22 00:08:11 -08001410 enable_cpucache(cachep);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001411 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 }
1413
1414 /* Done! */
1415 g_cpucache_up = FULL;
1416
Andrew Mortona737b3e2006-03-22 00:08:11 -08001417 /*
1418 * Register a cpu startup notifier callback that initializes
1419 * cpu_cache_get for all new cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420 */
1421 register_cpu_notifier(&cpucache_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422
Andrew Mortona737b3e2006-03-22 00:08:11 -08001423 /*
1424 * The reap timers are started later, with a module init call: That part
1425 * of the kernel is not yet operational.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 */
1427}
1428
1429static int __init cpucache_init(void)
1430{
1431 int cpu;
1432
Andrew Mortona737b3e2006-03-22 00:08:11 -08001433 /*
1434 * Register the timers that return unneeded pages to the page allocator
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 */
Christoph Lametere498be72005-09-09 13:03:32 -07001436 for_each_online_cpu(cpu)
Andrew Mortona737b3e2006-03-22 00:08:11 -08001437 start_cpu_timer(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438 return 0;
1439}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440__initcall(cpucache_init);
1441
1442/*
1443 * Interface to system's page allocator. No need to hold the cache-lock.
1444 *
1445 * If we requested dmaable memory, we will get it. Even if we
1446 * did not request dmaable memory, we might get it, but that
1447 * would be relatively rare and ignorable.
1448 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001449static void *kmem_getpages(struct kmem_cache *cachep, gfp_t flags, int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450{
1451 struct page *page;
1452 void *addr;
1453 int i;
1454
1455 flags |= cachep->gfpflags;
Christoph Lameter50c85a12005-11-13 16:06:47 -08001456 page = alloc_pages_node(nodeid, flags, cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 if (!page)
1458 return NULL;
1459 addr = page_address(page);
1460
1461 i = (1 << cachep->gfporder);
1462 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1463 atomic_add(i, &slab_reclaim_pages);
1464 add_page_state(nr_slab, i);
1465 while (i--) {
Nick Pigginf205b2f2006-03-22 00:08:02 -08001466 __SetPageSlab(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467 page++;
1468 }
1469 return addr;
1470}
1471
1472/*
1473 * Interface to system's page release.
1474 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001475static void kmem_freepages(struct kmem_cache *cachep, void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001477 unsigned long i = (1 << cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 struct page *page = virt_to_page(addr);
1479 const unsigned long nr_freed = i;
1480
1481 while (i--) {
Nick Pigginf205b2f2006-03-22 00:08:02 -08001482 BUG_ON(!PageSlab(page));
1483 __ClearPageSlab(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 page++;
1485 }
1486 sub_page_state(nr_slab, nr_freed);
1487 if (current->reclaim_state)
1488 current->reclaim_state->reclaimed_slab += nr_freed;
1489 free_pages((unsigned long)addr, cachep->gfporder);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001490 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1491 atomic_sub(1 << cachep->gfporder, &slab_reclaim_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492}
1493
1494static void kmem_rcu_free(struct rcu_head *head)
1495{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001496 struct slab_rcu *slab_rcu = (struct slab_rcu *)head;
Pekka Enberg343e0d72006-02-01 03:05:50 -08001497 struct kmem_cache *cachep = slab_rcu->cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498
1499 kmem_freepages(cachep, slab_rcu->addr);
1500 if (OFF_SLAB(cachep))
1501 kmem_cache_free(cachep->slabp_cache, slab_rcu);
1502}
1503
1504#if DEBUG
1505
1506#ifdef CONFIG_DEBUG_PAGEALLOC
Pekka Enberg343e0d72006-02-01 03:05:50 -08001507static void store_stackinfo(struct kmem_cache *cachep, unsigned long *addr,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001508 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509{
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001510 int size = obj_size(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001512 addr = (unsigned long *)&((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001514 if (size < 5 * sizeof(unsigned long))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 return;
1516
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001517 *addr++ = 0x12345678;
1518 *addr++ = caller;
1519 *addr++ = smp_processor_id();
1520 size -= 3 * sizeof(unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 {
1522 unsigned long *sptr = &caller;
1523 unsigned long svalue;
1524
1525 while (!kstack_end(sptr)) {
1526 svalue = *sptr++;
1527 if (kernel_text_address(svalue)) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001528 *addr++ = svalue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 size -= sizeof(unsigned long);
1530 if (size <= sizeof(unsigned long))
1531 break;
1532 }
1533 }
1534
1535 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001536 *addr++ = 0x87654321;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537}
1538#endif
1539
Pekka Enberg343e0d72006-02-01 03:05:50 -08001540static void poison_obj(struct kmem_cache *cachep, void *addr, unsigned char val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541{
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001542 int size = obj_size(cachep);
1543 addr = &((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
1545 memset(addr, val, size);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001546 *(unsigned char *)(addr + size - 1) = POISON_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547}
1548
1549static void dump_line(char *data, int offset, int limit)
1550{
1551 int i;
1552 printk(KERN_ERR "%03x:", offset);
Andrew Mortona737b3e2006-03-22 00:08:11 -08001553 for (i = 0; i < limit; i++)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001554 printk(" %02x", (unsigned char)data[offset + i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 printk("\n");
1556}
1557#endif
1558
1559#if DEBUG
1560
Pekka Enberg343e0d72006-02-01 03:05:50 -08001561static void print_objinfo(struct kmem_cache *cachep, void *objp, int lines)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562{
1563 int i, size;
1564 char *realobj;
1565
1566 if (cachep->flags & SLAB_RED_ZONE) {
1567 printk(KERN_ERR "Redzone: 0x%lx/0x%lx.\n",
Andrew Mortona737b3e2006-03-22 00:08:11 -08001568 *dbg_redzone1(cachep, objp),
1569 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 }
1571
1572 if (cachep->flags & SLAB_STORE_USER) {
1573 printk(KERN_ERR "Last user: [<%p>]",
Andrew Mortona737b3e2006-03-22 00:08:11 -08001574 *dbg_userword(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 print_symbol("(%s)",
Andrew Mortona737b3e2006-03-22 00:08:11 -08001576 (unsigned long)*dbg_userword(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577 printk("\n");
1578 }
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001579 realobj = (char *)objp + obj_offset(cachep);
1580 size = obj_size(cachep);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001581 for (i = 0; i < size && lines; i += 16, lines--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 int limit;
1583 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001584 if (i + limit > size)
1585 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 dump_line(realobj, i, limit);
1587 }
1588}
1589
Pekka Enberg343e0d72006-02-01 03:05:50 -08001590static void check_poison_obj(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591{
1592 char *realobj;
1593 int size, i;
1594 int lines = 0;
1595
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001596 realobj = (char *)objp + obj_offset(cachep);
1597 size = obj_size(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001599 for (i = 0; i < size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 char exp = POISON_FREE;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001601 if (i == size - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 exp = POISON_END;
1603 if (realobj[i] != exp) {
1604 int limit;
1605 /* Mismatch ! */
1606 /* Print header */
1607 if (lines == 0) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001608 printk(KERN_ERR
Andrew Mortona737b3e2006-03-22 00:08:11 -08001609 "Slab corruption: start=%p, len=%d\n",
1610 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 print_objinfo(cachep, objp, 0);
1612 }
1613 /* Hexdump the affected line */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001614 i = (i / 16) * 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001616 if (i + limit > size)
1617 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 dump_line(realobj, i, limit);
1619 i += 16;
1620 lines++;
1621 /* Limit to 5 lines */
1622 if (lines > 5)
1623 break;
1624 }
1625 }
1626 if (lines != 0) {
1627 /* Print some data about the neighboring objects, if they
1628 * exist:
1629 */
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08001630 struct slab *slabp = virt_to_slab(objp);
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001631 unsigned int objnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001633 objnr = obj_to_index(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 if (objnr) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001635 objp = index_to_obj(cachep, slabp, objnr - 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001636 realobj = (char *)objp + obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 printk(KERN_ERR "Prev obj: start=%p, len=%d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001638 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 print_objinfo(cachep, objp, 2);
1640 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001641 if (objnr + 1 < cachep->num) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001642 objp = index_to_obj(cachep, slabp, objnr + 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001643 realobj = (char *)objp + obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 printk(KERN_ERR "Next obj: start=%p, len=%d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001645 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 print_objinfo(cachep, objp, 2);
1647 }
1648 }
1649}
1650#endif
1651
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652#if DEBUG
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001653/**
Randy Dunlap911851e2006-03-22 00:08:14 -08001654 * slab_destroy_objs - destroy a slab and its objects
1655 * @cachep: cache pointer being destroyed
1656 * @slabp: slab pointer being destroyed
1657 *
1658 * Call the registered destructor for each object in a slab that is being
1659 * destroyed.
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001660 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001661static void slab_destroy_objs(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001662{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 int i;
1664 for (i = 0; i < cachep->num; i++) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001665 void *objp = index_to_obj(cachep, slabp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666
1667 if (cachep->flags & SLAB_POISON) {
1668#ifdef CONFIG_DEBUG_PAGEALLOC
Andrew Mortona737b3e2006-03-22 00:08:11 -08001669 if (cachep->buffer_size % PAGE_SIZE == 0 &&
1670 OFF_SLAB(cachep))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001671 kernel_map_pages(virt_to_page(objp),
Andrew Mortona737b3e2006-03-22 00:08:11 -08001672 cachep->buffer_size / PAGE_SIZE, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 else
1674 check_poison_obj(cachep, objp);
1675#else
1676 check_poison_obj(cachep, objp);
1677#endif
1678 }
1679 if (cachep->flags & SLAB_RED_ZONE) {
1680 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
1681 slab_error(cachep, "start of a freed object "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001682 "was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
1684 slab_error(cachep, "end of a freed object "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001685 "was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686 }
1687 if (cachep->dtor && !(cachep->flags & SLAB_POISON))
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001688 (cachep->dtor) (objp + obj_offset(cachep), cachep, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 }
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001690}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691#else
Pekka Enberg343e0d72006-02-01 03:05:50 -08001692static void slab_destroy_objs(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001693{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694 if (cachep->dtor) {
1695 int i;
1696 for (i = 0; i < cachep->num; i++) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001697 void *objp = index_to_obj(cachep, slabp, i);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001698 (cachep->dtor) (objp, cachep, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 }
1700 }
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001701}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702#endif
1703
Randy Dunlap911851e2006-03-22 00:08:14 -08001704/**
1705 * slab_destroy - destroy and release all objects in a slab
1706 * @cachep: cache pointer being destroyed
1707 * @slabp: slab pointer being destroyed
1708 *
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001709 * Destroy all the objs in a slab, and release the mem back to the system.
Andrew Mortona737b3e2006-03-22 00:08:11 -08001710 * Before calling the slab must have been unlinked from the cache. The
1711 * cache-lock is not held/needed.
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001712 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001713static void slab_destroy(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001714{
1715 void *addr = slabp->s_mem - slabp->colouroff;
1716
1717 slab_destroy_objs(cachep, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 if (unlikely(cachep->flags & SLAB_DESTROY_BY_RCU)) {
1719 struct slab_rcu *slab_rcu;
1720
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001721 slab_rcu = (struct slab_rcu *)slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 slab_rcu->cachep = cachep;
1723 slab_rcu->addr = addr;
1724 call_rcu(&slab_rcu->head, kmem_rcu_free);
1725 } else {
1726 kmem_freepages(cachep, addr);
1727 if (OFF_SLAB(cachep))
1728 kmem_cache_free(cachep->slabp_cache, slabp);
1729 }
1730}
1731
Andrew Mortona737b3e2006-03-22 00:08:11 -08001732/*
1733 * For setting up all the kmem_list3s for cache whose buffer_size is same as
1734 * size of kmem_list3.
1735 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001736static void set_up_list3s(struct kmem_cache *cachep, int index)
Christoph Lametere498be72005-09-09 13:03:32 -07001737{
1738 int node;
1739
1740 for_each_online_node(node) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001741 cachep->nodelists[node] = &initkmem_list3[index + node];
Christoph Lametere498be72005-09-09 13:03:32 -07001742 cachep->nodelists[node]->next_reap = jiffies +
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001743 REAPTIMEOUT_LIST3 +
1744 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
Christoph Lametere498be72005-09-09 13:03:32 -07001745 }
1746}
1747
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748/**
Randy.Dunlapa70773d2006-02-01 03:05:52 -08001749 * calculate_slab_order - calculate size (page order) of slabs
1750 * @cachep: pointer to the cache that is being created
1751 * @size: size of objects to be created in this cache.
1752 * @align: required alignment for the objects.
1753 * @flags: slab allocation flags
1754 *
1755 * Also calculates the number of objects per slab.
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001756 *
1757 * This could be made much more intelligent. For now, try to avoid using
1758 * high order pages for slabs. When the gfp() functions are more friendly
1759 * towards high-order requests, this should be changed.
1760 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08001761static size_t calculate_slab_order(struct kmem_cache *cachep,
Randy Dunlapee13d782006-02-01 03:05:53 -08001762 size_t size, size_t align, unsigned long flags)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001763{
1764 size_t left_over = 0;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001765 int gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001766
Andrew Mortona737b3e2006-03-22 00:08:11 -08001767 for (gfporder = 0; gfporder <= MAX_GFP_ORDER; gfporder++) {
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001768 unsigned int num;
1769 size_t remainder;
1770
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001771 cache_estimate(gfporder, size, align, flags, &remainder, &num);
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001772 if (!num)
1773 continue;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001774
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001775 /* More than offslab_limit objects will cause problems */
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001776 if ((flags & CFLGS_OFF_SLAB) && num > offslab_limit)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001777 break;
1778
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001779 /* Found something acceptable - save it away */
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001780 cachep->num = num;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001781 cachep->gfporder = gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001782 left_over = remainder;
1783
1784 /*
Linus Torvaldsf78bb8a2006-03-08 10:33:05 -08001785 * A VFS-reclaimable slab tends to have most allocations
1786 * as GFP_NOFS and we really don't want to have to be allocating
1787 * higher-order pages when we are unable to shrink dcache.
1788 */
1789 if (flags & SLAB_RECLAIM_ACCOUNT)
1790 break;
1791
1792 /*
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001793 * Large number of objects is good, but very large slabs are
1794 * currently bad for the gfp()s.
1795 */
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001796 if (gfporder >= slab_break_gfp_order)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001797 break;
1798
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001799 /*
1800 * Acceptable internal fragmentation?
1801 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08001802 if (left_over * 8 <= (PAGE_SIZE << gfporder))
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001803 break;
1804 }
1805 return left_over;
1806}
1807
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08001808static void setup_cpu_cache(struct kmem_cache *cachep)
1809{
1810 if (g_cpucache_up == FULL) {
1811 enable_cpucache(cachep);
1812 return;
1813 }
1814 if (g_cpucache_up == NONE) {
1815 /*
1816 * Note: the first kmem_cache_create must create the cache
1817 * that's used by kmalloc(24), otherwise the creation of
1818 * further caches will BUG().
1819 */
1820 cachep->array[smp_processor_id()] = &initarray_generic.cache;
1821
1822 /*
1823 * If the cache that's used by kmalloc(sizeof(kmem_list3)) is
1824 * the first cache, then we need to set up all its list3s,
1825 * otherwise the creation of further caches will BUG().
1826 */
1827 set_up_list3s(cachep, SIZE_AC);
1828 if (INDEX_AC == INDEX_L3)
1829 g_cpucache_up = PARTIAL_L3;
1830 else
1831 g_cpucache_up = PARTIAL_AC;
1832 } else {
1833 cachep->array[smp_processor_id()] =
1834 kmalloc(sizeof(struct arraycache_init), GFP_KERNEL);
1835
1836 if (g_cpucache_up == PARTIAL_AC) {
1837 set_up_list3s(cachep, SIZE_L3);
1838 g_cpucache_up = PARTIAL_L3;
1839 } else {
1840 int node;
1841 for_each_online_node(node) {
1842 cachep->nodelists[node] =
1843 kmalloc_node(sizeof(struct kmem_list3),
1844 GFP_KERNEL, node);
1845 BUG_ON(!cachep->nodelists[node]);
1846 kmem_list3_init(cachep->nodelists[node]);
1847 }
1848 }
1849 }
1850 cachep->nodelists[numa_node_id()]->next_reap =
1851 jiffies + REAPTIMEOUT_LIST3 +
1852 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
1853
1854 cpu_cache_get(cachep)->avail = 0;
1855 cpu_cache_get(cachep)->limit = BOOT_CPUCACHE_ENTRIES;
1856 cpu_cache_get(cachep)->batchcount = 1;
1857 cpu_cache_get(cachep)->touched = 0;
1858 cachep->batchcount = 1;
1859 cachep->limit = BOOT_CPUCACHE_ENTRIES;
1860}
1861
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001862/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 * kmem_cache_create - Create a cache.
1864 * @name: A string which is used in /proc/slabinfo to identify this cache.
1865 * @size: The size of objects to be created in this cache.
1866 * @align: The required alignment for the objects.
1867 * @flags: SLAB flags
1868 * @ctor: A constructor for the objects.
1869 * @dtor: A destructor for the objects.
1870 *
1871 * Returns a ptr to the cache on success, NULL on failure.
1872 * Cannot be called within a int, but can be interrupted.
1873 * The @ctor is run when new pages are allocated by the cache
1874 * and the @dtor is run before the pages are handed back.
1875 *
1876 * @name must be valid until the cache is destroyed. This implies that
Andrew Mortona737b3e2006-03-22 00:08:11 -08001877 * the module calling this has to destroy the cache before getting unloaded.
1878 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 * The flags are
1880 *
1881 * %SLAB_POISON - Poison the slab with a known test pattern (a5a5a5a5)
1882 * to catch references to uninitialised memory.
1883 *
1884 * %SLAB_RED_ZONE - Insert `Red' zones around the allocated memory to check
1885 * for buffer overruns.
1886 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 * %SLAB_HWCACHE_ALIGN - Align the objects in this cache to a hardware
1888 * cacheline. This can be beneficial if you're counting cycles as closely
1889 * as davem.
1890 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001891struct kmem_cache *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892kmem_cache_create (const char *name, size_t size, size_t align,
Andrew Mortona737b3e2006-03-22 00:08:11 -08001893 unsigned long flags,
1894 void (*ctor)(void*, struct kmem_cache *, unsigned long),
Pekka Enberg343e0d72006-02-01 03:05:50 -08001895 void (*dtor)(void*, struct kmem_cache *, unsigned long))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896{
1897 size_t left_over, slab_size, ralign;
Pekka Enberg343e0d72006-02-01 03:05:50 -08001898 struct kmem_cache *cachep = NULL;
Andrew Morton4f12bb42005-11-07 00:58:00 -08001899 struct list_head *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900
1901 /*
1902 * Sanity checks... these are all serious usage bugs.
1903 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08001904 if (!name || in_interrupt() || (size < BYTES_PER_WORD) ||
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001905 (size > (1 << MAX_OBJ_ORDER) * PAGE_SIZE) || (dtor && !ctor)) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08001906 printk(KERN_ERR "%s: Early error in slab %s\n", __FUNCTION__,
1907 name);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001908 BUG();
1909 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910
Ravikiran G Thirumalaif0188f42006-02-10 01:51:13 -08001911 /*
1912 * Prevent CPUs from coming and going.
1913 * lock_cpu_hotplug() nests outside cache_chain_mutex
1914 */
1915 lock_cpu_hotplug();
1916
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001917 mutex_lock(&cache_chain_mutex);
Andrew Morton4f12bb42005-11-07 00:58:00 -08001918
1919 list_for_each(p, &cache_chain) {
Pekka Enberg343e0d72006-02-01 03:05:50 -08001920 struct kmem_cache *pc = list_entry(p, struct kmem_cache, next);
Andrew Morton4f12bb42005-11-07 00:58:00 -08001921 mm_segment_t old_fs = get_fs();
1922 char tmp;
1923 int res;
1924
1925 /*
1926 * This happens when the module gets unloaded and doesn't
1927 * destroy its slab cache and no-one else reuses the vmalloc
1928 * area of the module. Print a warning.
1929 */
1930 set_fs(KERNEL_DS);
1931 res = __get_user(tmp, pc->name);
1932 set_fs(old_fs);
1933 if (res) {
1934 printk("SLAB: cache with size %d has lost its name\n",
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001935 pc->buffer_size);
Andrew Morton4f12bb42005-11-07 00:58:00 -08001936 continue;
1937 }
1938
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001939 if (!strcmp(pc->name, name)) {
Andrew Morton4f12bb42005-11-07 00:58:00 -08001940 printk("kmem_cache_create: duplicate cache %s\n", name);
1941 dump_stack();
1942 goto oops;
1943 }
1944 }
1945
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946#if DEBUG
1947 WARN_ON(strchr(name, ' ')); /* It confuses parsers */
1948 if ((flags & SLAB_DEBUG_INITIAL) && !ctor) {
1949 /* No constructor, but inital state check requested */
1950 printk(KERN_ERR "%s: No con, but init state check "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001951 "requested - %s\n", __FUNCTION__, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 flags &= ~SLAB_DEBUG_INITIAL;
1953 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954#if FORCED_DEBUG
1955 /*
1956 * Enable redzoning and last user accounting, except for caches with
1957 * large objects, if the increased size would increase the object size
1958 * above the next power of two: caches with object sizes just above a
1959 * power of two have a significant amount of internal fragmentation.
1960 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08001961 if (size < 4096 || fls(size - 1) == fls(size-1 + 3 * BYTES_PER_WORD))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001962 flags |= SLAB_RED_ZONE | SLAB_STORE_USER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 if (!(flags & SLAB_DESTROY_BY_RCU))
1964 flags |= SLAB_POISON;
1965#endif
1966 if (flags & SLAB_DESTROY_BY_RCU)
1967 BUG_ON(flags & SLAB_POISON);
1968#endif
1969 if (flags & SLAB_DESTROY_BY_RCU)
1970 BUG_ON(dtor);
1971
1972 /*
Andrew Mortona737b3e2006-03-22 00:08:11 -08001973 * Always checks flags, a caller might be expecting debug support which
1974 * isn't available.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 */
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02001976 BUG_ON(flags & ~CREATE_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977
Andrew Mortona737b3e2006-03-22 00:08:11 -08001978 /*
1979 * Check that size is in terms of words. This is needed to avoid
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 * unaligned accesses for some archs when redzoning is used, and makes
1981 * sure any on-slab bufctl's are also correctly aligned.
1982 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001983 if (size & (BYTES_PER_WORD - 1)) {
1984 size += (BYTES_PER_WORD - 1);
1985 size &= ~(BYTES_PER_WORD - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 }
1987
Andrew Mortona737b3e2006-03-22 00:08:11 -08001988 /* calculate the final buffer alignment: */
1989
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 /* 1) arch recommendation: can be overridden for debug */
1991 if (flags & SLAB_HWCACHE_ALIGN) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08001992 /*
1993 * Default alignment: as specified by the arch code. Except if
1994 * an object is really small, then squeeze multiple objects into
1995 * one cacheline.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 */
1997 ralign = cache_line_size();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001998 while (size <= ralign / 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 ralign /= 2;
2000 } else {
2001 ralign = BYTES_PER_WORD;
2002 }
2003 /* 2) arch mandated alignment: disables debug if necessary */
2004 if (ralign < ARCH_SLAB_MINALIGN) {
2005 ralign = ARCH_SLAB_MINALIGN;
2006 if (ralign > BYTES_PER_WORD)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002007 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 }
2009 /* 3) caller mandated alignment: disables debug if necessary */
2010 if (ralign < align) {
2011 ralign = align;
2012 if (ralign > BYTES_PER_WORD)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002013 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 }
Andrew Mortona737b3e2006-03-22 00:08:11 -08002015 /*
2016 * 4) Store it. Note that the debug code below can reduce
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 * the alignment to BYTES_PER_WORD.
2018 */
2019 align = ralign;
2020
2021 /* Get cache's description obj. */
Pekka Enbergc5e3b832006-03-25 03:06:43 -08002022 cachep = kmem_cache_zalloc(&cache_cache, SLAB_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023 if (!cachep)
Andrew Morton4f12bb42005-11-07 00:58:00 -08002024 goto oops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025
2026#if DEBUG
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002027 cachep->obj_size = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028
2029 if (flags & SLAB_RED_ZONE) {
2030 /* redzoning only works with word aligned caches */
2031 align = BYTES_PER_WORD;
2032
2033 /* add space for red zone words */
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002034 cachep->obj_offset += BYTES_PER_WORD;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002035 size += 2 * BYTES_PER_WORD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 }
2037 if (flags & SLAB_STORE_USER) {
2038 /* user store requires word alignment and
2039 * one word storage behind the end of the real
2040 * object.
2041 */
2042 align = BYTES_PER_WORD;
2043 size += BYTES_PER_WORD;
2044 }
2045#if FORCED_DEBUG && defined(CONFIG_DEBUG_PAGEALLOC)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002046 if (size >= malloc_sizes[INDEX_L3 + 1].cs_size
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002047 && cachep->obj_size > cache_line_size() && size < PAGE_SIZE) {
2048 cachep->obj_offset += PAGE_SIZE - size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 size = PAGE_SIZE;
2050 }
2051#endif
2052#endif
2053
2054 /* Determine if the slab management is 'on' or 'off' slab. */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002055 if (size >= (PAGE_SIZE >> 3))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 /*
2057 * Size is large, assume best to place the slab management obj
2058 * off-slab (should allow better packing of objs).
2059 */
2060 flags |= CFLGS_OFF_SLAB;
2061
2062 size = ALIGN(size, align);
2063
Linus Torvaldsf78bb8a2006-03-08 10:33:05 -08002064 left_over = calculate_slab_order(cachep, size, align, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065
2066 if (!cachep->num) {
2067 printk("kmem_cache_create: couldn't create cache %s.\n", name);
2068 kmem_cache_free(&cache_cache, cachep);
2069 cachep = NULL;
Andrew Morton4f12bb42005-11-07 00:58:00 -08002070 goto oops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002072 slab_size = ALIGN(cachep->num * sizeof(kmem_bufctl_t)
2073 + sizeof(struct slab), align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074
2075 /*
2076 * If the slab has been placed off-slab, and we have enough space then
2077 * move it on-slab. This is at the expense of any extra colouring.
2078 */
2079 if (flags & CFLGS_OFF_SLAB && left_over >= slab_size) {
2080 flags &= ~CFLGS_OFF_SLAB;
2081 left_over -= slab_size;
2082 }
2083
2084 if (flags & CFLGS_OFF_SLAB) {
2085 /* really off slab. No need for manual alignment */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002086 slab_size =
2087 cachep->num * sizeof(kmem_bufctl_t) + sizeof(struct slab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 }
2089
2090 cachep->colour_off = cache_line_size();
2091 /* Offset must be a multiple of the alignment. */
2092 if (cachep->colour_off < align)
2093 cachep->colour_off = align;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002094 cachep->colour = left_over / cachep->colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 cachep->slab_size = slab_size;
2096 cachep->flags = flags;
2097 cachep->gfpflags = 0;
2098 if (flags & SLAB_CACHE_DMA)
2099 cachep->gfpflags |= GFP_DMA;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002100 cachep->buffer_size = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101
2102 if (flags & CFLGS_OFF_SLAB)
Victor Fuscob2d55072005-09-10 00:26:36 -07002103 cachep->slabp_cache = kmem_find_general_cachep(slab_size, 0u);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 cachep->ctor = ctor;
2105 cachep->dtor = dtor;
2106 cachep->name = name;
2107
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002109 setup_cpu_cache(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 /* cache setup completed, link it into the list */
2112 list_add(&cachep->next, &cache_chain);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002113oops:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 if (!cachep && (flags & SLAB_PANIC))
2115 panic("kmem_cache_create(): failed to create slab `%s'\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002116 name);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002117 mutex_unlock(&cache_chain_mutex);
Ravikiran G Thirumalaif0188f42006-02-10 01:51:13 -08002118 unlock_cpu_hotplug();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 return cachep;
2120}
2121EXPORT_SYMBOL(kmem_cache_create);
2122
2123#if DEBUG
2124static void check_irq_off(void)
2125{
2126 BUG_ON(!irqs_disabled());
2127}
2128
2129static void check_irq_on(void)
2130{
2131 BUG_ON(irqs_disabled());
2132}
2133
Pekka Enberg343e0d72006-02-01 03:05:50 -08002134static void check_spinlock_acquired(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135{
2136#ifdef CONFIG_SMP
2137 check_irq_off();
Christoph Lametere498be72005-09-09 13:03:32 -07002138 assert_spin_locked(&cachep->nodelists[numa_node_id()]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139#endif
2140}
Christoph Lametere498be72005-09-09 13:03:32 -07002141
Pekka Enberg343e0d72006-02-01 03:05:50 -08002142static void check_spinlock_acquired_node(struct kmem_cache *cachep, int node)
Christoph Lametere498be72005-09-09 13:03:32 -07002143{
2144#ifdef CONFIG_SMP
2145 check_irq_off();
2146 assert_spin_locked(&cachep->nodelists[node]->list_lock);
2147#endif
2148}
2149
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150#else
2151#define check_irq_off() do { } while(0)
2152#define check_irq_on() do { } while(0)
2153#define check_spinlock_acquired(x) do { } while(0)
Christoph Lametere498be72005-09-09 13:03:32 -07002154#define check_spinlock_acquired_node(x, y) do { } while(0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155#endif
2156
Christoph Lameteraab22072006-03-22 00:09:06 -08002157static void drain_array(struct kmem_cache *cachep, struct kmem_list3 *l3,
2158 struct array_cache *ac,
2159 int force, int node);
2160
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161static void do_drain(void *arg)
2162{
Andrew Mortona737b3e2006-03-22 00:08:11 -08002163 struct kmem_cache *cachep = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 struct array_cache *ac;
Christoph Lameterff694162005-09-22 21:44:02 -07002165 int node = numa_node_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166
2167 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002168 ac = cpu_cache_get(cachep);
Christoph Lameterff694162005-09-22 21:44:02 -07002169 spin_lock(&cachep->nodelists[node]->list_lock);
2170 free_block(cachep, ac->entry, ac->avail, node);
2171 spin_unlock(&cachep->nodelists[node]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 ac->avail = 0;
2173}
2174
Pekka Enberg343e0d72006-02-01 03:05:50 -08002175static void drain_cpu_caches(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176{
Christoph Lametere498be72005-09-09 13:03:32 -07002177 struct kmem_list3 *l3;
2178 int node;
2179
Andrew Mortona07fa392006-03-22 00:08:17 -08002180 on_each_cpu(do_drain, cachep, 1, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 check_irq_on();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002182 for_each_online_node(node) {
Christoph Lametere498be72005-09-09 13:03:32 -07002183 l3 = cachep->nodelists[node];
2184 if (l3) {
Christoph Lameteraab22072006-03-22 00:09:06 -08002185 drain_array(cachep, l3, l3->shared, 1, node);
Christoph Lametere498be72005-09-09 13:03:32 -07002186 if (l3->alien)
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08002187 drain_alien_cache(cachep, l3->alien);
Christoph Lametere498be72005-09-09 13:03:32 -07002188 }
2189 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002190}
2191
Pekka Enberg343e0d72006-02-01 03:05:50 -08002192static int __node_shrink(struct kmem_cache *cachep, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193{
2194 struct slab *slabp;
Christoph Lametere498be72005-09-09 13:03:32 -07002195 struct kmem_list3 *l3 = cachep->nodelists[node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 int ret;
2197
Christoph Lametere498be72005-09-09 13:03:32 -07002198 for (;;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 struct list_head *p;
2200
Christoph Lametere498be72005-09-09 13:03:32 -07002201 p = l3->slabs_free.prev;
2202 if (p == &l3->slabs_free)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002203 break;
2204
Christoph Lametere498be72005-09-09 13:03:32 -07002205 slabp = list_entry(l3->slabs_free.prev, struct slab, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206#if DEBUG
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002207 BUG_ON(slabp->inuse);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208#endif
2209 list_del(&slabp->list);
2210
Christoph Lametere498be72005-09-09 13:03:32 -07002211 l3->free_objects -= cachep->num;
2212 spin_unlock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213 slab_destroy(cachep, slabp);
Christoph Lametere498be72005-09-09 13:03:32 -07002214 spin_lock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002216 ret = !list_empty(&l3->slabs_full) || !list_empty(&l3->slabs_partial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 return ret;
2218}
2219
Pekka Enberg343e0d72006-02-01 03:05:50 -08002220static int __cache_shrink(struct kmem_cache *cachep)
Christoph Lametere498be72005-09-09 13:03:32 -07002221{
2222 int ret = 0, i = 0;
2223 struct kmem_list3 *l3;
2224
2225 drain_cpu_caches(cachep);
2226
2227 check_irq_on();
2228 for_each_online_node(i) {
2229 l3 = cachep->nodelists[i];
2230 if (l3) {
2231 spin_lock_irq(&l3->list_lock);
2232 ret += __node_shrink(cachep, i);
2233 spin_unlock_irq(&l3->list_lock);
2234 }
2235 }
2236 return (ret ? 1 : 0);
2237}
2238
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239/**
2240 * kmem_cache_shrink - Shrink a cache.
2241 * @cachep: The cache to shrink.
2242 *
2243 * Releases as many slabs as possible for a cache.
2244 * To help debugging, a zero exit status indicates all slabs were released.
2245 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002246int kmem_cache_shrink(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247{
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002248 BUG_ON(!cachep || in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249
2250 return __cache_shrink(cachep);
2251}
2252EXPORT_SYMBOL(kmem_cache_shrink);
2253
2254/**
2255 * kmem_cache_destroy - delete a cache
2256 * @cachep: the cache to destroy
2257 *
Pekka Enberg343e0d72006-02-01 03:05:50 -08002258 * Remove a struct kmem_cache object from the slab cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 * Returns 0 on success.
2260 *
2261 * It is expected this function will be called by a module when it is
2262 * unloaded. This will remove the cache completely, and avoid a duplicate
2263 * cache being allocated each time a module is loaded and unloaded, if the
2264 * module doesn't have persistent in-kernel storage across loads and unloads.
2265 *
2266 * The cache must be empty before calling this function.
2267 *
2268 * The caller must guarantee that noone will allocate memory from the cache
2269 * during the kmem_cache_destroy().
2270 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002271int kmem_cache_destroy(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272{
2273 int i;
Christoph Lametere498be72005-09-09 13:03:32 -07002274 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002276 BUG_ON(!cachep || in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277
2278 /* Don't let CPUs to come and go */
2279 lock_cpu_hotplug();
2280
2281 /* Find the cache in the chain of caches. */
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002282 mutex_lock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 /*
2284 * the chain is never empty, cache_cache is never destroyed
2285 */
2286 list_del(&cachep->next);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002287 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288
2289 if (__cache_shrink(cachep)) {
2290 slab_error(cachep, "Can't free all objects");
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002291 mutex_lock(&cache_chain_mutex);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002292 list_add(&cachep->next, &cache_chain);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002293 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 unlock_cpu_hotplug();
2295 return 1;
2296 }
2297
2298 if (unlikely(cachep->flags & SLAB_DESTROY_BY_RCU))
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07002299 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300
Christoph Lametere498be72005-09-09 13:03:32 -07002301 for_each_online_cpu(i)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002302 kfree(cachep->array[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303
2304 /* NUMA: free the list3 structures */
Christoph Lametere498be72005-09-09 13:03:32 -07002305 for_each_online_node(i) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002306 l3 = cachep->nodelists[i];
2307 if (l3) {
Christoph Lametere498be72005-09-09 13:03:32 -07002308 kfree(l3->shared);
2309 free_alien_cache(l3->alien);
2310 kfree(l3);
2311 }
2312 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 kmem_cache_free(&cache_cache, cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 unlock_cpu_hotplug();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 return 0;
2316}
2317EXPORT_SYMBOL(kmem_cache_destroy);
2318
2319/* Get the memory for a slab management obj. */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002320static struct slab *alloc_slabmgmt(struct kmem_cache *cachep, void *objp,
Ravikiran G Thirumalai5b74ada2006-04-10 22:52:53 -07002321 int colour_off, gfp_t local_flags,
2322 int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323{
2324 struct slab *slabp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002325
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 if (OFF_SLAB(cachep)) {
2327 /* Slab management obj is off-slab. */
Ravikiran G Thirumalai5b74ada2006-04-10 22:52:53 -07002328 slabp = kmem_cache_alloc_node(cachep->slabp_cache,
2329 local_flags, nodeid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 if (!slabp)
2331 return NULL;
2332 } else {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002333 slabp = objp + colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 colour_off += cachep->slab_size;
2335 }
2336 slabp->inuse = 0;
2337 slabp->colouroff = colour_off;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002338 slabp->s_mem = objp + colour_off;
Ravikiran G Thirumalai5b74ada2006-04-10 22:52:53 -07002339 slabp->nodeid = nodeid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 return slabp;
2341}
2342
2343static inline kmem_bufctl_t *slab_bufctl(struct slab *slabp)
2344{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002345 return (kmem_bufctl_t *) (slabp + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346}
2347
Pekka Enberg343e0d72006-02-01 03:05:50 -08002348static void cache_init_objs(struct kmem_cache *cachep,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002349 struct slab *slabp, unsigned long ctor_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350{
2351 int i;
2352
2353 for (i = 0; i < cachep->num; i++) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002354 void *objp = index_to_obj(cachep, slabp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355#if DEBUG
2356 /* need to poison the objs? */
2357 if (cachep->flags & SLAB_POISON)
2358 poison_obj(cachep, objp, POISON_FREE);
2359 if (cachep->flags & SLAB_STORE_USER)
2360 *dbg_userword(cachep, objp) = NULL;
2361
2362 if (cachep->flags & SLAB_RED_ZONE) {
2363 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2364 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2365 }
2366 /*
Andrew Mortona737b3e2006-03-22 00:08:11 -08002367 * Constructors are not allowed to allocate memory from the same
2368 * cache which they are a constructor for. Otherwise, deadlock.
2369 * They must also be threaded.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 */
2371 if (cachep->ctor && !(cachep->flags & SLAB_POISON))
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002372 cachep->ctor(objp + obj_offset(cachep), cachep,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002373 ctor_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374
2375 if (cachep->flags & SLAB_RED_ZONE) {
2376 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
2377 slab_error(cachep, "constructor overwrote the"
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002378 " end of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
2380 slab_error(cachep, "constructor overwrote the"
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002381 " start of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002382 }
Andrew Mortona737b3e2006-03-22 00:08:11 -08002383 if ((cachep->buffer_size % PAGE_SIZE) == 0 &&
2384 OFF_SLAB(cachep) && cachep->flags & SLAB_POISON)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002385 kernel_map_pages(virt_to_page(objp),
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002386 cachep->buffer_size / PAGE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387#else
2388 if (cachep->ctor)
2389 cachep->ctor(objp, cachep, ctor_flags);
2390#endif
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002391 slab_bufctl(slabp)[i] = i + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002393 slab_bufctl(slabp)[i - 1] = BUFCTL_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394 slabp->free = 0;
2395}
2396
Pekka Enberg343e0d72006-02-01 03:05:50 -08002397static void kmem_flagcheck(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398{
Andrew Mortona737b3e2006-03-22 00:08:11 -08002399 if (flags & SLAB_DMA)
2400 BUG_ON(!(cachep->gfpflags & GFP_DMA));
2401 else
2402 BUG_ON(cachep->gfpflags & GFP_DMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403}
2404
Andrew Mortona737b3e2006-03-22 00:08:11 -08002405static void *slab_get_obj(struct kmem_cache *cachep, struct slab *slabp,
2406 int nodeid)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002407{
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002408 void *objp = index_to_obj(cachep, slabp, slabp->free);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002409 kmem_bufctl_t next;
2410
2411 slabp->inuse++;
2412 next = slab_bufctl(slabp)[slabp->free];
2413#if DEBUG
2414 slab_bufctl(slabp)[slabp->free] = BUFCTL_FREE;
2415 WARN_ON(slabp->nodeid != nodeid);
2416#endif
2417 slabp->free = next;
2418
2419 return objp;
2420}
2421
Andrew Mortona737b3e2006-03-22 00:08:11 -08002422static void slab_put_obj(struct kmem_cache *cachep, struct slab *slabp,
2423 void *objp, int nodeid)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002424{
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002425 unsigned int objnr = obj_to_index(cachep, slabp, objp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002426
2427#if DEBUG
2428 /* Verify that the slab belongs to the intended node */
2429 WARN_ON(slabp->nodeid != nodeid);
2430
Al Viro871751e2006-03-25 03:06:39 -08002431 if (slab_bufctl(slabp)[objnr] + 1 <= SLAB_LIMIT + 1) {
Matthew Dobson78d382d2006-02-01 03:05:47 -08002432 printk(KERN_ERR "slab: double free detected in cache "
Andrew Mortona737b3e2006-03-22 00:08:11 -08002433 "'%s', objp %p\n", cachep->name, objp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002434 BUG();
2435 }
2436#endif
2437 slab_bufctl(slabp)[objnr] = slabp->free;
2438 slabp->free = objnr;
2439 slabp->inuse--;
2440}
2441
Andrew Mortona737b3e2006-03-22 00:08:11 -08002442static void set_slab_attr(struct kmem_cache *cachep, struct slab *slabp,
2443 void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444{
2445 int i;
2446 struct page *page;
2447
2448 /* Nasty!!!!!! I hope this is OK. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 page = virt_to_page(objp);
Nick Piggin84097512006-03-22 00:08:34 -08002450
2451 i = 1;
2452 if (likely(!PageCompound(page)))
2453 i <<= cachep->gfporder;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 do {
Pekka Enberg065d41c2005-11-13 16:06:46 -08002455 page_set_cache(page, cachep);
2456 page_set_slab(page, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 page++;
2458 } while (--i);
2459}
2460
2461/*
2462 * Grow (by 1) the number of slabs within a cache. This is called by
2463 * kmem_cache_alloc() when there are no active objs left in a cache.
2464 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002465static int cache_grow(struct kmem_cache *cachep, gfp_t flags, int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002467 struct slab *slabp;
2468 void *objp;
2469 size_t offset;
2470 gfp_t local_flags;
2471 unsigned long ctor_flags;
Christoph Lametere498be72005-09-09 13:03:32 -07002472 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473
Andrew Mortona737b3e2006-03-22 00:08:11 -08002474 /*
2475 * Be lazy and only check for valid flags here, keeping it out of the
2476 * critical path in kmem_cache_alloc().
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477 */
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002478 BUG_ON(flags & ~(SLAB_DMA | SLAB_LEVEL_MASK | SLAB_NO_GROW));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479 if (flags & SLAB_NO_GROW)
2480 return 0;
2481
2482 ctor_flags = SLAB_CTOR_CONSTRUCTOR;
2483 local_flags = (flags & SLAB_LEVEL_MASK);
2484 if (!(local_flags & __GFP_WAIT))
2485 /*
2486 * Not allowed to sleep. Need to tell a constructor about
2487 * this - it might need to know...
2488 */
2489 ctor_flags |= SLAB_CTOR_ATOMIC;
2490
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002491 /* Take the l3 list lock to change the colour_next on this node */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492 check_irq_off();
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002493 l3 = cachep->nodelists[nodeid];
2494 spin_lock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495
2496 /* Get colour for the slab, and cal the next value. */
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002497 offset = l3->colour_next;
2498 l3->colour_next++;
2499 if (l3->colour_next >= cachep->colour)
2500 l3->colour_next = 0;
2501 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002503 offset *= cachep->colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504
2505 if (local_flags & __GFP_WAIT)
2506 local_irq_enable();
2507
2508 /*
2509 * The test for missing atomic flag is performed here, rather than
2510 * the more obvious place, simply to reduce the critical path length
2511 * in kmem_cache_alloc(). If a caller is seriously mis-behaving they
2512 * will eventually be caught here (where it matters).
2513 */
2514 kmem_flagcheck(cachep, flags);
2515
Andrew Mortona737b3e2006-03-22 00:08:11 -08002516 /*
2517 * Get mem for the objs. Attempt to allocate a physical page from
2518 * 'nodeid'.
Christoph Lametere498be72005-09-09 13:03:32 -07002519 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002520 objp = kmem_getpages(cachep, flags, nodeid);
2521 if (!objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522 goto failed;
2523
2524 /* Get slab management. */
Ravikiran G Thirumalai5b74ada2006-04-10 22:52:53 -07002525 slabp = alloc_slabmgmt(cachep, objp, offset, local_flags, nodeid);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002526 if (!slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527 goto opps1;
2528
Christoph Lametere498be72005-09-09 13:03:32 -07002529 slabp->nodeid = nodeid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 set_slab_attr(cachep, slabp, objp);
2531
2532 cache_init_objs(cachep, slabp, ctor_flags);
2533
2534 if (local_flags & __GFP_WAIT)
2535 local_irq_disable();
2536 check_irq_off();
Christoph Lametere498be72005-09-09 13:03:32 -07002537 spin_lock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538
2539 /* Make slab active. */
Christoph Lametere498be72005-09-09 13:03:32 -07002540 list_add_tail(&slabp->list, &(l3->slabs_free));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 STATS_INC_GROWN(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07002542 l3->free_objects += cachep->num;
2543 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544 return 1;
Andrew Mortona737b3e2006-03-22 00:08:11 -08002545opps1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 kmem_freepages(cachep, objp);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002547failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 if (local_flags & __GFP_WAIT)
2549 local_irq_disable();
2550 return 0;
2551}
2552
2553#if DEBUG
2554
2555/*
2556 * Perform extra freeing checks:
2557 * - detect bad pointers.
2558 * - POISON/RED_ZONE checking
2559 * - destructor calls, for caches with POISON+dtor
2560 */
2561static void kfree_debugcheck(const void *objp)
2562{
2563 struct page *page;
2564
2565 if (!virt_addr_valid(objp)) {
2566 printk(KERN_ERR "kfree_debugcheck: out of range ptr %lxh.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002567 (unsigned long)objp);
2568 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569 }
2570 page = virt_to_page(objp);
2571 if (!PageSlab(page)) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002572 printk(KERN_ERR "kfree_debugcheck: bad ptr %lxh.\n",
2573 (unsigned long)objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574 BUG();
2575 }
2576}
2577
Pekka Enberg343e0d72006-02-01 03:05:50 -08002578static void *cache_free_debugcheck(struct kmem_cache *cachep, void *objp,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002579 void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580{
2581 struct page *page;
2582 unsigned int objnr;
2583 struct slab *slabp;
2584
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002585 objp -= obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586 kfree_debugcheck(objp);
2587 page = virt_to_page(objp);
2588
Pekka Enberg065d41c2005-11-13 16:06:46 -08002589 if (page_get_cache(page) != cachep) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002590 printk(KERN_ERR "mismatch in kmem_cache_free: expected "
2591 "cache %p, got %p\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002592 page_get_cache(page), cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 printk(KERN_ERR "%p is %s.\n", cachep, cachep->name);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002594 printk(KERN_ERR "%p is %s.\n", page_get_cache(page),
2595 page_get_cache(page)->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 WARN_ON(1);
2597 }
Pekka Enberg065d41c2005-11-13 16:06:46 -08002598 slabp = page_get_slab(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599
2600 if (cachep->flags & SLAB_RED_ZONE) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002601 if (*dbg_redzone1(cachep, objp) != RED_ACTIVE ||
2602 *dbg_redzone2(cachep, objp) != RED_ACTIVE) {
2603 slab_error(cachep, "double free, or memory outside"
2604 " object was overwritten");
2605 printk(KERN_ERR "%p: redzone 1:0x%lx, "
2606 "redzone 2:0x%lx.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002607 objp, *dbg_redzone1(cachep, objp),
2608 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609 }
2610 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2611 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2612 }
2613 if (cachep->flags & SLAB_STORE_USER)
2614 *dbg_userword(cachep, objp) = caller;
2615
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002616 objnr = obj_to_index(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617
2618 BUG_ON(objnr >= cachep->num);
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002619 BUG_ON(objp != index_to_obj(cachep, slabp, objnr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620
2621 if (cachep->flags & SLAB_DEBUG_INITIAL) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002622 /*
2623 * Need to call the slab's constructor so the caller can
2624 * perform a verify of its state (debugging). Called without
2625 * the cache-lock held.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626 */
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002627 cachep->ctor(objp + obj_offset(cachep),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002628 cachep, SLAB_CTOR_CONSTRUCTOR | SLAB_CTOR_VERIFY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629 }
2630 if (cachep->flags & SLAB_POISON && cachep->dtor) {
2631 /* we want to cache poison the object,
2632 * call the destruction callback
2633 */
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002634 cachep->dtor(objp + obj_offset(cachep), cachep, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 }
Al Viro871751e2006-03-25 03:06:39 -08002636#ifdef CONFIG_DEBUG_SLAB_LEAK
2637 slab_bufctl(slabp)[objnr] = BUFCTL_FREE;
2638#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639 if (cachep->flags & SLAB_POISON) {
2640#ifdef CONFIG_DEBUG_PAGEALLOC
Andrew Mortona737b3e2006-03-22 00:08:11 -08002641 if ((cachep->buffer_size % PAGE_SIZE)==0 && OFF_SLAB(cachep)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642 store_stackinfo(cachep, objp, (unsigned long)caller);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002643 kernel_map_pages(virt_to_page(objp),
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002644 cachep->buffer_size / PAGE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 } else {
2646 poison_obj(cachep, objp, POISON_FREE);
2647 }
2648#else
2649 poison_obj(cachep, objp, POISON_FREE);
2650#endif
2651 }
2652 return objp;
2653}
2654
Pekka Enberg343e0d72006-02-01 03:05:50 -08002655static void check_slabp(struct kmem_cache *cachep, struct slab *slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656{
2657 kmem_bufctl_t i;
2658 int entries = 0;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002659
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 /* Check slab's freelist to see if this obj is there. */
2661 for (i = slabp->free; i != BUFCTL_END; i = slab_bufctl(slabp)[i]) {
2662 entries++;
2663 if (entries > cachep->num || i >= cachep->num)
2664 goto bad;
2665 }
2666 if (entries != cachep->num - slabp->inuse) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002667bad:
2668 printk(KERN_ERR "slab: Internal list corruption detected in "
2669 "cache '%s'(%d), slabp %p(%d). Hexdump:\n",
2670 cachep->name, cachep->num, slabp, slabp->inuse);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002671 for (i = 0;
Linus Torvalds264132b2006-03-06 12:10:07 -08002672 i < sizeof(*slabp) + cachep->num * sizeof(kmem_bufctl_t);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002673 i++) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002674 if (i % 16 == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675 printk("\n%03x:", i);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002676 printk(" %02x", ((unsigned char *)slabp)[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677 }
2678 printk("\n");
2679 BUG();
2680 }
2681}
2682#else
2683#define kfree_debugcheck(x) do { } while(0)
2684#define cache_free_debugcheck(x,objp,z) (objp)
2685#define check_slabp(x,y) do { } while(0)
2686#endif
2687
Pekka Enberg343e0d72006-02-01 03:05:50 -08002688static void *cache_alloc_refill(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689{
2690 int batchcount;
2691 struct kmem_list3 *l3;
2692 struct array_cache *ac;
2693
2694 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002695 ac = cpu_cache_get(cachep);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002696retry:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697 batchcount = ac->batchcount;
2698 if (!ac->touched && batchcount > BATCHREFILL_LIMIT) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002699 /*
2700 * If there was little recent activity on this cache, then
2701 * perform only a partial refill. Otherwise we could generate
2702 * refill bouncing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703 */
2704 batchcount = BATCHREFILL_LIMIT;
2705 }
Christoph Lametere498be72005-09-09 13:03:32 -07002706 l3 = cachep->nodelists[numa_node_id()];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707
Christoph Lametere498be72005-09-09 13:03:32 -07002708 BUG_ON(ac->avail > 0 || !l3);
2709 spin_lock(&l3->list_lock);
2710
Christoph Lameter3ded1752006-03-25 03:06:44 -08002711 /* See if we can refill from the shared array */
2712 if (l3->shared && transfer_objects(ac, l3->shared, batchcount))
2713 goto alloc_done;
2714
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715 while (batchcount > 0) {
2716 struct list_head *entry;
2717 struct slab *slabp;
2718 /* Get slab alloc is to come from. */
2719 entry = l3->slabs_partial.next;
2720 if (entry == &l3->slabs_partial) {
2721 l3->free_touched = 1;
2722 entry = l3->slabs_free.next;
2723 if (entry == &l3->slabs_free)
2724 goto must_grow;
2725 }
2726
2727 slabp = list_entry(entry, struct slab, list);
2728 check_slabp(cachep, slabp);
2729 check_spinlock_acquired(cachep);
2730 while (slabp->inuse < cachep->num && batchcount--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731 STATS_INC_ALLOCED(cachep);
2732 STATS_INC_ACTIVE(cachep);
2733 STATS_SET_HIGH(cachep);
2734
Matthew Dobson78d382d2006-02-01 03:05:47 -08002735 ac->entry[ac->avail++] = slab_get_obj(cachep, slabp,
2736 numa_node_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737 }
2738 check_slabp(cachep, slabp);
2739
2740 /* move slabp to correct slabp list: */
2741 list_del(&slabp->list);
2742 if (slabp->free == BUFCTL_END)
2743 list_add(&slabp->list, &l3->slabs_full);
2744 else
2745 list_add(&slabp->list, &l3->slabs_partial);
2746 }
2747
Andrew Mortona737b3e2006-03-22 00:08:11 -08002748must_grow:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749 l3->free_objects -= ac->avail;
Andrew Mortona737b3e2006-03-22 00:08:11 -08002750alloc_done:
Christoph Lametere498be72005-09-09 13:03:32 -07002751 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752
2753 if (unlikely(!ac->avail)) {
2754 int x;
Christoph Lametere498be72005-09-09 13:03:32 -07002755 x = cache_grow(cachep, flags, numa_node_id());
2756
Andrew Mortona737b3e2006-03-22 00:08:11 -08002757 /* cache_grow can reenable interrupts, then ac could change. */
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002758 ac = cpu_cache_get(cachep);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002759 if (!x && ac->avail == 0) /* no objects in sight? abort */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760 return NULL;
2761
Andrew Mortona737b3e2006-03-22 00:08:11 -08002762 if (!ac->avail) /* objects refilled by interrupt? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763 goto retry;
2764 }
2765 ac->touched = 1;
Christoph Lametere498be72005-09-09 13:03:32 -07002766 return ac->entry[--ac->avail];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767}
2768
Andrew Mortona737b3e2006-03-22 00:08:11 -08002769static inline void cache_alloc_debugcheck_before(struct kmem_cache *cachep,
2770 gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771{
2772 might_sleep_if(flags & __GFP_WAIT);
2773#if DEBUG
2774 kmem_flagcheck(cachep, flags);
2775#endif
2776}
2777
2778#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08002779static void *cache_alloc_debugcheck_after(struct kmem_cache *cachep,
2780 gfp_t flags, void *objp, void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002782 if (!objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783 return objp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002784 if (cachep->flags & SLAB_POISON) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785#ifdef CONFIG_DEBUG_PAGEALLOC
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002786 if ((cachep->buffer_size % PAGE_SIZE) == 0 && OFF_SLAB(cachep))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002787 kernel_map_pages(virt_to_page(objp),
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002788 cachep->buffer_size / PAGE_SIZE, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789 else
2790 check_poison_obj(cachep, objp);
2791#else
2792 check_poison_obj(cachep, objp);
2793#endif
2794 poison_obj(cachep, objp, POISON_INUSE);
2795 }
2796 if (cachep->flags & SLAB_STORE_USER)
2797 *dbg_userword(cachep, objp) = caller;
2798
2799 if (cachep->flags & SLAB_RED_ZONE) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002800 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE ||
2801 *dbg_redzone2(cachep, objp) != RED_INACTIVE) {
2802 slab_error(cachep, "double free, or memory outside"
2803 " object was overwritten");
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002804 printk(KERN_ERR
Andrew Mortona737b3e2006-03-22 00:08:11 -08002805 "%p: redzone 1:0x%lx, redzone 2:0x%lx\n",
2806 objp, *dbg_redzone1(cachep, objp),
2807 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808 }
2809 *dbg_redzone1(cachep, objp) = RED_ACTIVE;
2810 *dbg_redzone2(cachep, objp) = RED_ACTIVE;
2811 }
Al Viro871751e2006-03-25 03:06:39 -08002812#ifdef CONFIG_DEBUG_SLAB_LEAK
2813 {
2814 struct slab *slabp;
2815 unsigned objnr;
2816
2817 slabp = page_get_slab(virt_to_page(objp));
2818 objnr = (unsigned)(objp - slabp->s_mem) / cachep->buffer_size;
2819 slab_bufctl(slabp)[objnr] = BUFCTL_ACTIVE;
2820 }
2821#endif
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002822 objp += obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 if (cachep->ctor && cachep->flags & SLAB_POISON) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002824 unsigned long ctor_flags = SLAB_CTOR_CONSTRUCTOR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825
2826 if (!(flags & __GFP_WAIT))
2827 ctor_flags |= SLAB_CTOR_ATOMIC;
2828
2829 cachep->ctor(objp, cachep, ctor_flags);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002830 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831 return objp;
2832}
2833#else
2834#define cache_alloc_debugcheck_after(a,b,objp,d) (objp)
2835#endif
2836
Pekka Enberg343e0d72006-02-01 03:05:50 -08002837static inline void *____cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002839 void *objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 struct array_cache *ac;
2841
Christoph Lameterdc85da12006-01-18 17:42:36 -08002842#ifdef CONFIG_NUMA
Paul Jacksonb2455392006-03-24 03:16:12 -08002843 if (unlikely(current->flags & (PF_SPREAD_SLAB | PF_MEMPOLICY))) {
Paul Jacksonc61afb12006-03-24 03:16:08 -08002844 objp = alternate_node_alloc(cachep, flags);
2845 if (objp != NULL)
2846 return objp;
Paul Jackson101a5002006-03-24 03:16:07 -08002847 }
Christoph Lameterdc85da12006-01-18 17:42:36 -08002848#endif
2849
Alok N Kataria5c382302005-09-27 21:45:46 -07002850 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002851 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852 if (likely(ac->avail)) {
2853 STATS_INC_ALLOCHIT(cachep);
2854 ac->touched = 1;
Christoph Lametere498be72005-09-09 13:03:32 -07002855 objp = ac->entry[--ac->avail];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856 } else {
2857 STATS_INC_ALLOCMISS(cachep);
2858 objp = cache_alloc_refill(cachep, flags);
2859 }
Alok N Kataria5c382302005-09-27 21:45:46 -07002860 return objp;
2861}
2862
Andrew Mortona737b3e2006-03-22 00:08:11 -08002863static __always_inline void *__cache_alloc(struct kmem_cache *cachep,
2864 gfp_t flags, void *caller)
Alok N Kataria5c382302005-09-27 21:45:46 -07002865{
2866 unsigned long save_flags;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002867 void *objp;
Alok N Kataria5c382302005-09-27 21:45:46 -07002868
2869 cache_alloc_debugcheck_before(cachep, flags);
2870
2871 local_irq_save(save_flags);
2872 objp = ____cache_alloc(cachep, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873 local_irq_restore(save_flags);
Eric Dumazet34342e82005-09-03 15:55:06 -07002874 objp = cache_alloc_debugcheck_after(cachep, flags, objp,
Pekka Enberg7fd6b142006-02-01 03:05:52 -08002875 caller);
Eric Dumazet34342e82005-09-03 15:55:06 -07002876 prefetchw(objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 return objp;
2878}
2879
Christoph Lametere498be72005-09-09 13:03:32 -07002880#ifdef CONFIG_NUMA
2881/*
Paul Jacksonb2455392006-03-24 03:16:12 -08002882 * Try allocating on another node if PF_SPREAD_SLAB|PF_MEMPOLICY.
Paul Jacksonc61afb12006-03-24 03:16:08 -08002883 *
2884 * If we are in_interrupt, then process context, including cpusets and
2885 * mempolicy, may not apply and should not be used for allocation policy.
2886 */
2887static void *alternate_node_alloc(struct kmem_cache *cachep, gfp_t flags)
2888{
2889 int nid_alloc, nid_here;
2890
2891 if (in_interrupt())
2892 return NULL;
2893 nid_alloc = nid_here = numa_node_id();
2894 if (cpuset_do_slab_mem_spread() && (cachep->flags & SLAB_MEM_SPREAD))
2895 nid_alloc = cpuset_mem_spread_node();
2896 else if (current->mempolicy)
2897 nid_alloc = slab_node(current->mempolicy);
2898 if (nid_alloc != nid_here)
2899 return __cache_alloc_node(cachep, flags, nid_alloc);
2900 return NULL;
2901}
2902
2903/*
Christoph Lametere498be72005-09-09 13:03:32 -07002904 * A interface to enable slab creation on nodeid
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002906static void *__cache_alloc_node(struct kmem_cache *cachep, gfp_t flags,
2907 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07002908{
2909 struct list_head *entry;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002910 struct slab *slabp;
2911 struct kmem_list3 *l3;
2912 void *obj;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002913 int x;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002915 l3 = cachep->nodelists[nodeid];
2916 BUG_ON(!l3);
Christoph Lametere498be72005-09-09 13:03:32 -07002917
Andrew Mortona737b3e2006-03-22 00:08:11 -08002918retry:
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08002919 check_irq_off();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002920 spin_lock(&l3->list_lock);
2921 entry = l3->slabs_partial.next;
2922 if (entry == &l3->slabs_partial) {
2923 l3->free_touched = 1;
2924 entry = l3->slabs_free.next;
2925 if (entry == &l3->slabs_free)
2926 goto must_grow;
2927 }
Christoph Lametere498be72005-09-09 13:03:32 -07002928
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002929 slabp = list_entry(entry, struct slab, list);
2930 check_spinlock_acquired_node(cachep, nodeid);
2931 check_slabp(cachep, slabp);
Christoph Lametere498be72005-09-09 13:03:32 -07002932
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002933 STATS_INC_NODEALLOCS(cachep);
2934 STATS_INC_ACTIVE(cachep);
2935 STATS_SET_HIGH(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07002936
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002937 BUG_ON(slabp->inuse == cachep->num);
Christoph Lametere498be72005-09-09 13:03:32 -07002938
Matthew Dobson78d382d2006-02-01 03:05:47 -08002939 obj = slab_get_obj(cachep, slabp, nodeid);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002940 check_slabp(cachep, slabp);
2941 l3->free_objects--;
2942 /* move slabp to correct slabp list: */
2943 list_del(&slabp->list);
Christoph Lametere498be72005-09-09 13:03:32 -07002944
Andrew Mortona737b3e2006-03-22 00:08:11 -08002945 if (slabp->free == BUFCTL_END)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002946 list_add(&slabp->list, &l3->slabs_full);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002947 else
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002948 list_add(&slabp->list, &l3->slabs_partial);
Christoph Lametere498be72005-09-09 13:03:32 -07002949
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002950 spin_unlock(&l3->list_lock);
2951 goto done;
Christoph Lametere498be72005-09-09 13:03:32 -07002952
Andrew Mortona737b3e2006-03-22 00:08:11 -08002953must_grow:
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002954 spin_unlock(&l3->list_lock);
2955 x = cache_grow(cachep, flags, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07002956
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002957 if (!x)
2958 return NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07002959
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002960 goto retry;
Andrew Mortona737b3e2006-03-22 00:08:11 -08002961done:
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002962 return obj;
Christoph Lametere498be72005-09-09 13:03:32 -07002963}
2964#endif
2965
2966/*
2967 * Caller needs to acquire correct kmem_list's list_lock
2968 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002969static void free_block(struct kmem_cache *cachep, void **objpp, int nr_objects,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002970 int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971{
2972 int i;
Christoph Lametere498be72005-09-09 13:03:32 -07002973 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974
2975 for (i = 0; i < nr_objects; i++) {
2976 void *objp = objpp[i];
2977 struct slab *slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08002979 slabp = virt_to_slab(objp);
Christoph Lameterff694162005-09-22 21:44:02 -07002980 l3 = cachep->nodelists[node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981 list_del(&slabp->list);
Christoph Lameterff694162005-09-22 21:44:02 -07002982 check_spinlock_acquired_node(cachep, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983 check_slabp(cachep, slabp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002984 slab_put_obj(cachep, slabp, objp, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985 STATS_DEC_ACTIVE(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07002986 l3->free_objects++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002987 check_slabp(cachep, slabp);
2988
2989 /* fixup slab chains */
2990 if (slabp->inuse == 0) {
Christoph Lametere498be72005-09-09 13:03:32 -07002991 if (l3->free_objects > l3->free_limit) {
2992 l3->free_objects -= cachep->num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993 slab_destroy(cachep, slabp);
2994 } else {
Christoph Lametere498be72005-09-09 13:03:32 -07002995 list_add(&slabp->list, &l3->slabs_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996 }
2997 } else {
2998 /* Unconditionally move a slab to the end of the
2999 * partial list on free - maximum time for the
3000 * other objects to be freed, too.
3001 */
Christoph Lametere498be72005-09-09 13:03:32 -07003002 list_add_tail(&slabp->list, &l3->slabs_partial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003 }
3004 }
3005}
3006
Pekka Enberg343e0d72006-02-01 03:05:50 -08003007static void cache_flusharray(struct kmem_cache *cachep, struct array_cache *ac)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008{
3009 int batchcount;
Christoph Lametere498be72005-09-09 13:03:32 -07003010 struct kmem_list3 *l3;
Christoph Lameterff694162005-09-22 21:44:02 -07003011 int node = numa_node_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012
3013 batchcount = ac->batchcount;
3014#if DEBUG
3015 BUG_ON(!batchcount || batchcount > ac->avail);
3016#endif
3017 check_irq_off();
Christoph Lameterff694162005-09-22 21:44:02 -07003018 l3 = cachep->nodelists[node];
Christoph Lametere498be72005-09-09 13:03:32 -07003019 spin_lock(&l3->list_lock);
3020 if (l3->shared) {
3021 struct array_cache *shared_array = l3->shared;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003022 int max = shared_array->limit - shared_array->avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023 if (max) {
3024 if (batchcount > max)
3025 batchcount = max;
Christoph Lametere498be72005-09-09 13:03:32 -07003026 memcpy(&(shared_array->entry[shared_array->avail]),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003027 ac->entry, sizeof(void *) * batchcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028 shared_array->avail += batchcount;
3029 goto free_done;
3030 }
3031 }
3032
Christoph Lameterff694162005-09-22 21:44:02 -07003033 free_block(cachep, ac->entry, batchcount, node);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003034free_done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035#if STATS
3036 {
3037 int i = 0;
3038 struct list_head *p;
3039
Christoph Lametere498be72005-09-09 13:03:32 -07003040 p = l3->slabs_free.next;
3041 while (p != &(l3->slabs_free)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042 struct slab *slabp;
3043
3044 slabp = list_entry(p, struct slab, list);
3045 BUG_ON(slabp->inuse);
3046
3047 i++;
3048 p = p->next;
3049 }
3050 STATS_SET_FREEABLE(cachep, i);
3051 }
3052#endif
Christoph Lametere498be72005-09-09 13:03:32 -07003053 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054 ac->avail -= batchcount;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003055 memmove(ac->entry, &(ac->entry[batchcount]), sizeof(void *)*ac->avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056}
3057
3058/*
Andrew Mortona737b3e2006-03-22 00:08:11 -08003059 * Release an obj back to its cache. If the obj has a constructed state, it must
3060 * be in this state _before_ it is released. Called with disabled ints.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003061 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003062static inline void __cache_free(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063{
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003064 struct array_cache *ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065
3066 check_irq_off();
3067 objp = cache_free_debugcheck(cachep, objp, __builtin_return_address(0));
3068
Christoph Lametere498be72005-09-09 13:03:32 -07003069 /* Make sure we are not freeing a object from another
3070 * node to the array cache on this cpu.
3071 */
3072#ifdef CONFIG_NUMA
3073 {
3074 struct slab *slabp;
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08003075 slabp = virt_to_slab(objp);
Christoph Lametere498be72005-09-09 13:03:32 -07003076 if (unlikely(slabp->nodeid != numa_node_id())) {
3077 struct array_cache *alien = NULL;
3078 int nodeid = slabp->nodeid;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003079 struct kmem_list3 *l3;
Christoph Lametere498be72005-09-09 13:03:32 -07003080
Andrew Mortona737b3e2006-03-22 00:08:11 -08003081 l3 = cachep->nodelists[numa_node_id()];
Christoph Lametere498be72005-09-09 13:03:32 -07003082 STATS_INC_NODEFREES(cachep);
3083 if (l3->alien && l3->alien[nodeid]) {
3084 alien = l3->alien[nodeid];
3085 spin_lock(&alien->lock);
3086 if (unlikely(alien->avail == alien->limit))
3087 __drain_alien_cache(cachep,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003088 alien, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07003089 alien->entry[alien->avail++] = objp;
3090 spin_unlock(&alien->lock);
3091 } else {
3092 spin_lock(&(cachep->nodelists[nodeid])->
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003093 list_lock);
Christoph Lameterff694162005-09-22 21:44:02 -07003094 free_block(cachep, &objp, 1, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07003095 spin_unlock(&(cachep->nodelists[nodeid])->
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003096 list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07003097 }
3098 return;
3099 }
3100 }
3101#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102 if (likely(ac->avail < ac->limit)) {
3103 STATS_INC_FREEHIT(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003104 ac->entry[ac->avail++] = objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 return;
3106 } else {
3107 STATS_INC_FREEMISS(cachep);
3108 cache_flusharray(cachep, ac);
Christoph Lametere498be72005-09-09 13:03:32 -07003109 ac->entry[ac->avail++] = objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110 }
3111}
3112
3113/**
3114 * kmem_cache_alloc - Allocate an object
3115 * @cachep: The cache to allocate from.
3116 * @flags: See kmalloc().
3117 *
3118 * Allocate an object from this cache. The flags are only relevant
3119 * if the cache has no available objects.
3120 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003121void *kmem_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122{
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003123 return __cache_alloc(cachep, flags, __builtin_return_address(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124}
3125EXPORT_SYMBOL(kmem_cache_alloc);
3126
3127/**
Pekka Enberga8c0f9a2006-03-25 03:06:42 -08003128 * kmem_cache_alloc - Allocate an object. The memory is set to zero.
3129 * @cache: The cache to allocate from.
3130 * @flags: See kmalloc().
3131 *
3132 * Allocate an object from this cache and set the allocated memory to zero.
3133 * The flags are only relevant if the cache has no available objects.
3134 */
3135void *kmem_cache_zalloc(struct kmem_cache *cache, gfp_t flags)
3136{
3137 void *ret = __cache_alloc(cache, flags, __builtin_return_address(0));
3138 if (ret)
3139 memset(ret, 0, obj_size(cache));
3140 return ret;
3141}
3142EXPORT_SYMBOL(kmem_cache_zalloc);
3143
3144/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145 * kmem_ptr_validate - check if an untrusted pointer might
3146 * be a slab entry.
3147 * @cachep: the cache we're checking against
3148 * @ptr: pointer to validate
3149 *
3150 * This verifies that the untrusted pointer looks sane:
3151 * it is _not_ a guarantee that the pointer is actually
3152 * part of the slab cache in question, but it at least
3153 * validates that the pointer can be dereferenced and
3154 * looks half-way sane.
3155 *
3156 * Currently only used for dentry validation.
3157 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003158int fastcall kmem_ptr_validate(struct kmem_cache *cachep, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003160 unsigned long addr = (unsigned long)ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161 unsigned long min_addr = PAGE_OFFSET;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003162 unsigned long align_mask = BYTES_PER_WORD - 1;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003163 unsigned long size = cachep->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164 struct page *page;
3165
3166 if (unlikely(addr < min_addr))
3167 goto out;
3168 if (unlikely(addr > (unsigned long)high_memory - size))
3169 goto out;
3170 if (unlikely(addr & align_mask))
3171 goto out;
3172 if (unlikely(!kern_addr_valid(addr)))
3173 goto out;
3174 if (unlikely(!kern_addr_valid(addr + size - 1)))
3175 goto out;
3176 page = virt_to_page(ptr);
3177 if (unlikely(!PageSlab(page)))
3178 goto out;
Pekka Enberg065d41c2005-11-13 16:06:46 -08003179 if (unlikely(page_get_cache(page) != cachep))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180 goto out;
3181 return 1;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003182out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183 return 0;
3184}
3185
3186#ifdef CONFIG_NUMA
3187/**
3188 * kmem_cache_alloc_node - Allocate an object on the specified node
3189 * @cachep: The cache to allocate from.
3190 * @flags: See kmalloc().
3191 * @nodeid: node number of the target node.
3192 *
3193 * Identical to kmem_cache_alloc, except that this function is slow
3194 * and can sleep. And it will allocate memory on the given node, which
3195 * can improve the performance for cpu bound structures.
Christoph Lametere498be72005-09-09 13:03:32 -07003196 * New and improved: it will now make sure that the object gets
3197 * put on the correct node list so that there is no false sharing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003199void *kmem_cache_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200{
Christoph Lametere498be72005-09-09 13:03:32 -07003201 unsigned long save_flags;
3202 void *ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003203
Christoph Lametere498be72005-09-09 13:03:32 -07003204 cache_alloc_debugcheck_before(cachep, flags);
3205 local_irq_save(save_flags);
Christoph Lameter18f820f2006-02-01 03:05:43 -08003206
3207 if (nodeid == -1 || nodeid == numa_node_id() ||
Andrew Mortona737b3e2006-03-22 00:08:11 -08003208 !cachep->nodelists[nodeid])
Alok N Kataria5c382302005-09-27 21:45:46 -07003209 ptr = ____cache_alloc(cachep, flags);
3210 else
3211 ptr = __cache_alloc_node(cachep, flags, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07003212 local_irq_restore(save_flags);
Christoph Lameter18f820f2006-02-01 03:05:43 -08003213
3214 ptr = cache_alloc_debugcheck_after(cachep, flags, ptr,
3215 __builtin_return_address(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216
Christoph Lametere498be72005-09-09 13:03:32 -07003217 return ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003218}
3219EXPORT_SYMBOL(kmem_cache_alloc_node);
3220
Al Virodd0fc662005-10-07 07:46:04 +01003221void *kmalloc_node(size_t size, gfp_t flags, int node)
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003222{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003223 struct kmem_cache *cachep;
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003224
3225 cachep = kmem_find_general_cachep(size, flags);
3226 if (unlikely(cachep == NULL))
3227 return NULL;
3228 return kmem_cache_alloc_node(cachep, flags, node);
3229}
3230EXPORT_SYMBOL(kmalloc_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231#endif
3232
3233/**
3234 * kmalloc - allocate memory
3235 * @size: how many bytes of memory are required.
3236 * @flags: the type of memory to allocate.
Randy Dunlap911851e2006-03-22 00:08:14 -08003237 * @caller: function caller for debug tracking of the caller
Linus Torvalds1da177e2005-04-16 15:20:36 -07003238 *
3239 * kmalloc is the normal method of allocating memory
3240 * in the kernel.
3241 *
3242 * The @flags argument may be one of:
3243 *
3244 * %GFP_USER - Allocate memory on behalf of user. May sleep.
3245 *
3246 * %GFP_KERNEL - Allocate normal kernel ram. May sleep.
3247 *
3248 * %GFP_ATOMIC - Allocation will not sleep. Use inside interrupt handlers.
3249 *
3250 * Additionally, the %GFP_DMA flag may be set to indicate the memory
3251 * must be suitable for DMA. This can mean different things on different
3252 * platforms. For example, on i386, it means that the memory must come
3253 * from the first 16MB.
3254 */
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003255static __always_inline void *__do_kmalloc(size_t size, gfp_t flags,
3256 void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003258 struct kmem_cache *cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003260 /* If you want to save a few bytes .text space: replace
3261 * __ with kmem_.
3262 * Then kmalloc uses the uninlined functions instead of the inline
3263 * functions.
3264 */
3265 cachep = __find_general_cachep(size, flags);
Andrew Mortondbdb9042005-09-23 13:24:10 -07003266 if (unlikely(cachep == NULL))
3267 return NULL;
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003268 return __cache_alloc(cachep, flags, caller);
3269}
3270
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003271
3272void *__kmalloc(size_t size, gfp_t flags)
3273{
Al Viro871751e2006-03-25 03:06:39 -08003274#ifndef CONFIG_DEBUG_SLAB
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003275 return __do_kmalloc(size, flags, NULL);
Al Viro871751e2006-03-25 03:06:39 -08003276#else
3277 return __do_kmalloc(size, flags, __builtin_return_address(0));
3278#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279}
3280EXPORT_SYMBOL(__kmalloc);
3281
Al Viro871751e2006-03-25 03:06:39 -08003282#ifdef CONFIG_DEBUG_SLAB
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003283void *__kmalloc_track_caller(size_t size, gfp_t flags, void *caller)
3284{
3285 return __do_kmalloc(size, flags, caller);
3286}
3287EXPORT_SYMBOL(__kmalloc_track_caller);
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003288#endif
3289
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290#ifdef CONFIG_SMP
3291/**
3292 * __alloc_percpu - allocate one copy of the object for every present
3293 * cpu in the system, zeroing them.
3294 * Objects should be dereferenced using the per_cpu_ptr macro only.
3295 *
3296 * @size: how many bytes of memory are required.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003297 */
Pekka Enbergf9f75002006-01-08 01:00:33 -08003298void *__alloc_percpu(size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299{
3300 int i;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003301 struct percpu_data *pdata = kmalloc(sizeof(*pdata), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302
3303 if (!pdata)
3304 return NULL;
3305
Christoph Lametere498be72005-09-09 13:03:32 -07003306 /*
3307 * Cannot use for_each_online_cpu since a cpu may come online
3308 * and we have no way of figuring out how to fix the array
3309 * that we have allocated then....
3310 */
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08003311 for_each_possible_cpu(i) {
Christoph Lametere498be72005-09-09 13:03:32 -07003312 int node = cpu_to_node(i);
3313
3314 if (node_online(node))
3315 pdata->ptrs[i] = kmalloc_node(size, GFP_KERNEL, node);
3316 else
3317 pdata->ptrs[i] = kmalloc(size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318
3319 if (!pdata->ptrs[i])
3320 goto unwind_oom;
3321 memset(pdata->ptrs[i], 0, size);
3322 }
3323
3324 /* Catch derefs w/o wrappers */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003325 return (void *)(~(unsigned long)pdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003326
Andrew Mortona737b3e2006-03-22 00:08:11 -08003327unwind_oom:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328 while (--i >= 0) {
3329 if (!cpu_possible(i))
3330 continue;
3331 kfree(pdata->ptrs[i]);
3332 }
3333 kfree(pdata);
3334 return NULL;
3335}
3336EXPORT_SYMBOL(__alloc_percpu);
3337#endif
3338
3339/**
3340 * kmem_cache_free - Deallocate an object
3341 * @cachep: The cache the allocation was from.
3342 * @objp: The previously allocated object.
3343 *
3344 * Free an object which was previously allocated from this
3345 * cache.
3346 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003347void kmem_cache_free(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003348{
3349 unsigned long flags;
3350
3351 local_irq_save(flags);
3352 __cache_free(cachep, objp);
3353 local_irq_restore(flags);
3354}
3355EXPORT_SYMBOL(kmem_cache_free);
3356
3357/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003358 * kfree - free previously allocated memory
3359 * @objp: pointer returned by kmalloc.
3360 *
Pekka Enberg80e93ef2005-09-09 13:10:16 -07003361 * If @objp is NULL, no operation is performed.
3362 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003363 * Don't free memory not originally allocated by kmalloc()
3364 * or you will run into trouble.
3365 */
3366void kfree(const void *objp)
3367{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003368 struct kmem_cache *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369 unsigned long flags;
3370
3371 if (unlikely(!objp))
3372 return;
3373 local_irq_save(flags);
3374 kfree_debugcheck(objp);
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08003375 c = virt_to_cache(objp);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003376 mutex_debug_check_no_locks_freed(objp, obj_size(c));
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003377 __cache_free(c, (void *)objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378 local_irq_restore(flags);
3379}
3380EXPORT_SYMBOL(kfree);
3381
3382#ifdef CONFIG_SMP
3383/**
3384 * free_percpu - free previously allocated percpu memory
3385 * @objp: pointer returned by alloc_percpu.
3386 *
3387 * Don't free memory not originally allocated by alloc_percpu()
3388 * The complemented objp is to check for that.
3389 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003390void free_percpu(const void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391{
3392 int i;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003393 struct percpu_data *p = (struct percpu_data *)(~(unsigned long)objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003394
Christoph Lametere498be72005-09-09 13:03:32 -07003395 /*
3396 * We allocate for all cpus so we cannot use for online cpu here.
3397 */
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08003398 for_each_possible_cpu(i)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003399 kfree(p->ptrs[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400 kfree(p);
3401}
3402EXPORT_SYMBOL(free_percpu);
3403#endif
3404
Pekka Enberg343e0d72006-02-01 03:05:50 -08003405unsigned int kmem_cache_size(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406{
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003407 return obj_size(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408}
3409EXPORT_SYMBOL(kmem_cache_size);
3410
Pekka Enberg343e0d72006-02-01 03:05:50 -08003411const char *kmem_cache_name(struct kmem_cache *cachep)
Arnaldo Carvalho de Melo19449722005-06-18 22:46:19 -07003412{
3413 return cachep->name;
3414}
3415EXPORT_SYMBOL_GPL(kmem_cache_name);
3416
Christoph Lametere498be72005-09-09 13:03:32 -07003417/*
Christoph Lameter0718dc22006-03-25 03:06:47 -08003418 * This initializes kmem_list3 or resizes varioius caches for all nodes.
Christoph Lametere498be72005-09-09 13:03:32 -07003419 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003420static int alloc_kmemlist(struct kmem_cache *cachep)
Christoph Lametere498be72005-09-09 13:03:32 -07003421{
3422 int node;
3423 struct kmem_list3 *l3;
Christoph Lametercafeb022006-03-25 03:06:46 -08003424 struct array_cache *new_shared;
3425 struct array_cache **new_alien;
Christoph Lametere498be72005-09-09 13:03:32 -07003426
3427 for_each_online_node(node) {
Christoph Lametercafeb022006-03-25 03:06:46 -08003428
Andrew Mortona737b3e2006-03-22 00:08:11 -08003429 new_alien = alloc_alien_cache(node, cachep->limit);
3430 if (!new_alien)
Christoph Lametere498be72005-09-09 13:03:32 -07003431 goto fail;
Christoph Lametercafeb022006-03-25 03:06:46 -08003432
Christoph Lameter0718dc22006-03-25 03:06:47 -08003433 new_shared = alloc_arraycache(node,
3434 cachep->shared*cachep->batchcount,
Andrew Mortona737b3e2006-03-22 00:08:11 -08003435 0xbaadf00d);
Christoph Lameter0718dc22006-03-25 03:06:47 -08003436 if (!new_shared) {
3437 free_alien_cache(new_alien);
Christoph Lametere498be72005-09-09 13:03:32 -07003438 goto fail;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003439 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003440
Andrew Mortona737b3e2006-03-22 00:08:11 -08003441 l3 = cachep->nodelists[node];
3442 if (l3) {
Christoph Lametercafeb022006-03-25 03:06:46 -08003443 struct array_cache *shared = l3->shared;
3444
Christoph Lametere498be72005-09-09 13:03:32 -07003445 spin_lock_irq(&l3->list_lock);
3446
Christoph Lametercafeb022006-03-25 03:06:46 -08003447 if (shared)
Christoph Lameter0718dc22006-03-25 03:06:47 -08003448 free_block(cachep, shared->entry,
3449 shared->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -07003450
Christoph Lametercafeb022006-03-25 03:06:46 -08003451 l3->shared = new_shared;
3452 if (!l3->alien) {
Christoph Lametere498be72005-09-09 13:03:32 -07003453 l3->alien = new_alien;
3454 new_alien = NULL;
3455 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003456 l3->free_limit = (1 + nr_cpus_node(node)) *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003457 cachep->batchcount + cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07003458 spin_unlock_irq(&l3->list_lock);
Christoph Lametercafeb022006-03-25 03:06:46 -08003459 kfree(shared);
Christoph Lametere498be72005-09-09 13:03:32 -07003460 free_alien_cache(new_alien);
3461 continue;
3462 }
Andrew Mortona737b3e2006-03-22 00:08:11 -08003463 l3 = kmalloc_node(sizeof(struct kmem_list3), GFP_KERNEL, node);
Christoph Lameter0718dc22006-03-25 03:06:47 -08003464 if (!l3) {
3465 free_alien_cache(new_alien);
3466 kfree(new_shared);
Christoph Lametere498be72005-09-09 13:03:32 -07003467 goto fail;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003468 }
Christoph Lametere498be72005-09-09 13:03:32 -07003469
3470 kmem_list3_init(l3);
3471 l3->next_reap = jiffies + REAPTIMEOUT_LIST3 +
Andrew Mortona737b3e2006-03-22 00:08:11 -08003472 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
Christoph Lametercafeb022006-03-25 03:06:46 -08003473 l3->shared = new_shared;
Christoph Lametere498be72005-09-09 13:03:32 -07003474 l3->alien = new_alien;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003475 l3->free_limit = (1 + nr_cpus_node(node)) *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003476 cachep->batchcount + cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07003477 cachep->nodelists[node] = l3;
3478 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003479 return 0;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003480
Andrew Mortona737b3e2006-03-22 00:08:11 -08003481fail:
Christoph Lameter0718dc22006-03-25 03:06:47 -08003482 if (!cachep->next.next) {
3483 /* Cache is not active yet. Roll back what we did */
3484 node--;
3485 while (node >= 0) {
3486 if (cachep->nodelists[node]) {
3487 l3 = cachep->nodelists[node];
3488
3489 kfree(l3->shared);
3490 free_alien_cache(l3->alien);
3491 kfree(l3);
3492 cachep->nodelists[node] = NULL;
3493 }
3494 node--;
3495 }
3496 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003497 return -ENOMEM;
Christoph Lametere498be72005-09-09 13:03:32 -07003498}
3499
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500struct ccupdate_struct {
Pekka Enberg343e0d72006-02-01 03:05:50 -08003501 struct kmem_cache *cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003502 struct array_cache *new[NR_CPUS];
3503};
3504
3505static void do_ccupdate_local(void *info)
3506{
Andrew Mortona737b3e2006-03-22 00:08:11 -08003507 struct ccupdate_struct *new = info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003508 struct array_cache *old;
3509
3510 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003511 old = cpu_cache_get(new->cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003512
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513 new->cachep->array[smp_processor_id()] = new->new[smp_processor_id()];
3514 new->new[smp_processor_id()] = old;
3515}
3516
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -08003517/* Always called with the cache_chain_mutex held */
Andrew Mortona737b3e2006-03-22 00:08:11 -08003518static int do_tune_cpucache(struct kmem_cache *cachep, int limit,
3519 int batchcount, int shared)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520{
3521 struct ccupdate_struct new;
Christoph Lametere498be72005-09-09 13:03:32 -07003522 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003524 memset(&new.new, 0, sizeof(new.new));
Christoph Lametere498be72005-09-09 13:03:32 -07003525 for_each_online_cpu(i) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08003526 new.new[i] = alloc_arraycache(cpu_to_node(i), limit,
3527 batchcount);
Christoph Lametere498be72005-09-09 13:03:32 -07003528 if (!new.new[i]) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003529 for (i--; i >= 0; i--)
3530 kfree(new.new[i]);
Christoph Lametere498be72005-09-09 13:03:32 -07003531 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003532 }
3533 }
3534 new.cachep = cachep;
3535
Andrew Mortona07fa392006-03-22 00:08:17 -08003536 on_each_cpu(do_ccupdate_local, (void *)&new, 1, 1);
Christoph Lametere498be72005-09-09 13:03:32 -07003537
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538 check_irq_on();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003539 cachep->batchcount = batchcount;
3540 cachep->limit = limit;
Christoph Lametere498be72005-09-09 13:03:32 -07003541 cachep->shared = shared;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542
Christoph Lametere498be72005-09-09 13:03:32 -07003543 for_each_online_cpu(i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544 struct array_cache *ccold = new.new[i];
3545 if (!ccold)
3546 continue;
Christoph Lametere498be72005-09-09 13:03:32 -07003547 spin_lock_irq(&cachep->nodelists[cpu_to_node(i)]->list_lock);
Christoph Lameterff694162005-09-22 21:44:02 -07003548 free_block(cachep, ccold->entry, ccold->avail, cpu_to_node(i));
Christoph Lametere498be72005-09-09 13:03:32 -07003549 spin_unlock_irq(&cachep->nodelists[cpu_to_node(i)]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003550 kfree(ccold);
3551 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552
Christoph Lametere498be72005-09-09 13:03:32 -07003553 err = alloc_kmemlist(cachep);
3554 if (err) {
3555 printk(KERN_ERR "alloc_kmemlist failed for %s, error %d.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003556 cachep->name, -err);
Christoph Lametere498be72005-09-09 13:03:32 -07003557 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003558 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003559 return 0;
3560}
3561
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -08003562/* Called with cache_chain_mutex held always */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003563static void enable_cpucache(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003564{
3565 int err;
3566 int limit, shared;
3567
Andrew Mortona737b3e2006-03-22 00:08:11 -08003568 /*
3569 * The head array serves three purposes:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003570 * - create a LIFO ordering, i.e. return objects that are cache-warm
3571 * - reduce the number of spinlock operations.
Andrew Mortona737b3e2006-03-22 00:08:11 -08003572 * - reduce the number of linked list operations on the slab and
Linus Torvalds1da177e2005-04-16 15:20:36 -07003573 * bufctl chains: array operations are cheaper.
3574 * The numbers are guessed, we should auto-tune as described by
3575 * Bonwick.
3576 */
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003577 if (cachep->buffer_size > 131072)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578 limit = 1;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003579 else if (cachep->buffer_size > PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003580 limit = 8;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003581 else if (cachep->buffer_size > 1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003582 limit = 24;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003583 else if (cachep->buffer_size > 256)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584 limit = 54;
3585 else
3586 limit = 120;
3587
Andrew Mortona737b3e2006-03-22 00:08:11 -08003588 /*
3589 * CPU bound tasks (e.g. network routing) can exhibit cpu bound
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590 * allocation behaviour: Most allocs on one cpu, most free operations
3591 * on another cpu. For these cases, an efficient object passing between
3592 * cpus is necessary. This is provided by a shared array. The array
3593 * replaces Bonwick's magazine layer.
3594 * On uniprocessor, it's functionally equivalent (but less efficient)
3595 * to a larger limit. Thus disabled by default.
3596 */
3597 shared = 0;
3598#ifdef CONFIG_SMP
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003599 if (cachep->buffer_size <= PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003600 shared = 8;
3601#endif
3602
3603#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08003604 /*
3605 * With debugging enabled, large batchcount lead to excessively long
3606 * periods with disabled local interrupts. Limit the batchcount
Linus Torvalds1da177e2005-04-16 15:20:36 -07003607 */
3608 if (limit > 32)
3609 limit = 32;
3610#endif
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003611 err = do_tune_cpucache(cachep, limit, (limit + 1) / 2, shared);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003612 if (err)
3613 printk(KERN_ERR "enable_cpucache failed for %s, error %d.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003614 cachep->name, -err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615}
3616
Christoph Lameter1b552532006-03-22 00:09:07 -08003617/*
3618 * Drain an array if it contains any elements taking the l3 lock only if
Christoph Lameterb18e7e62006-03-22 00:09:07 -08003619 * necessary. Note that the l3 listlock also protects the array_cache
3620 * if drain_array() is used on the shared array.
Christoph Lameter1b552532006-03-22 00:09:07 -08003621 */
3622void drain_array(struct kmem_cache *cachep, struct kmem_list3 *l3,
3623 struct array_cache *ac, int force, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003624{
3625 int tofree;
3626
Christoph Lameter1b552532006-03-22 00:09:07 -08003627 if (!ac || !ac->avail)
3628 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003629 if (ac->touched && !force) {
3630 ac->touched = 0;
Christoph Lameterb18e7e62006-03-22 00:09:07 -08003631 } else {
Christoph Lameter1b552532006-03-22 00:09:07 -08003632 spin_lock_irq(&l3->list_lock);
Christoph Lameterb18e7e62006-03-22 00:09:07 -08003633 if (ac->avail) {
3634 tofree = force ? ac->avail : (ac->limit + 4) / 5;
3635 if (tofree > ac->avail)
3636 tofree = (ac->avail + 1) / 2;
3637 free_block(cachep, ac->entry, tofree, node);
3638 ac->avail -= tofree;
3639 memmove(ac->entry, &(ac->entry[tofree]),
3640 sizeof(void *) * ac->avail);
3641 }
Christoph Lameter1b552532006-03-22 00:09:07 -08003642 spin_unlock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003643 }
3644}
3645
3646/**
3647 * cache_reap - Reclaim memory from caches.
Randy Dunlap1e5d5332005-11-07 01:01:06 -08003648 * @unused: unused parameter
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649 *
3650 * Called from workqueue/eventd every few seconds.
3651 * Purpose:
3652 * - clear the per-cpu caches for this CPU.
3653 * - return freeable pages to the main free memory pool.
3654 *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003655 * If we cannot acquire the cache chain mutex then just give up - we'll try
3656 * again on the next iteration.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003657 */
3658static void cache_reap(void *unused)
3659{
3660 struct list_head *walk;
Christoph Lametere498be72005-09-09 13:03:32 -07003661 struct kmem_list3 *l3;
Christoph Lameteraab22072006-03-22 00:09:06 -08003662 int node = numa_node_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003663
Ingo Molnarfc0abb12006-01-18 17:42:33 -08003664 if (!mutex_trylock(&cache_chain_mutex)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003665 /* Give up. Setup the next iteration. */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003666 schedule_delayed_work(&__get_cpu_var(reap_work),
3667 REAPTIMEOUT_CPUC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668 return;
3669 }
3670
3671 list_for_each(walk, &cache_chain) {
Pekka Enberg343e0d72006-02-01 03:05:50 -08003672 struct kmem_cache *searchp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003673 struct list_head *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674 int tofree;
3675 struct slab *slabp;
3676
Pekka Enberg343e0d72006-02-01 03:05:50 -08003677 searchp = list_entry(walk, struct kmem_cache, next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003678 check_irq_on();
3679
Christoph Lameter35386e32006-03-22 00:09:05 -08003680 /*
3681 * We only take the l3 lock if absolutely necessary and we
3682 * have established with reasonable certainty that
3683 * we can do some work if the lock was obtained.
3684 */
Christoph Lameteraab22072006-03-22 00:09:06 -08003685 l3 = searchp->nodelists[node];
Christoph Lameter35386e32006-03-22 00:09:05 -08003686
Christoph Lameter8fce4d82006-03-09 17:33:54 -08003687 reap_alien(searchp, l3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688
Christoph Lameteraab22072006-03-22 00:09:06 -08003689 drain_array(searchp, l3, cpu_cache_get(searchp), 0, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003690
Christoph Lameter35386e32006-03-22 00:09:05 -08003691 /*
3692 * These are racy checks but it does not matter
3693 * if we skip one check or scan twice.
3694 */
Christoph Lametere498be72005-09-09 13:03:32 -07003695 if (time_after(l3->next_reap, jiffies))
Christoph Lameter35386e32006-03-22 00:09:05 -08003696 goto next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003697
Christoph Lametere498be72005-09-09 13:03:32 -07003698 l3->next_reap = jiffies + REAPTIMEOUT_LIST3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003699
Christoph Lameteraab22072006-03-22 00:09:06 -08003700 drain_array(searchp, l3, l3->shared, 0, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701
Christoph Lametere498be72005-09-09 13:03:32 -07003702 if (l3->free_touched) {
3703 l3->free_touched = 0;
Christoph Lameter35386e32006-03-22 00:09:05 -08003704 goto next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003705 }
3706
Andrew Mortona737b3e2006-03-22 00:08:11 -08003707 tofree = (l3->free_limit + 5 * searchp->num - 1) /
3708 (5 * searchp->num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003709 do {
Christoph Lameter35386e32006-03-22 00:09:05 -08003710 /*
3711 * Do not lock if there are no free blocks.
3712 */
3713 if (list_empty(&l3->slabs_free))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003714 break;
3715
Christoph Lameter35386e32006-03-22 00:09:05 -08003716 spin_lock_irq(&l3->list_lock);
3717 p = l3->slabs_free.next;
3718 if (p == &(l3->slabs_free)) {
3719 spin_unlock_irq(&l3->list_lock);
3720 break;
3721 }
3722
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723 slabp = list_entry(p, struct slab, list);
3724 BUG_ON(slabp->inuse);
3725 list_del(&slabp->list);
3726 STATS_INC_REAPED(searchp);
3727
Andrew Mortona737b3e2006-03-22 00:08:11 -08003728 /*
3729 * Safe to drop the lock. The slab is no longer linked
3730 * to the cache. searchp cannot disappear, we hold
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731 * cache_chain_lock
3732 */
Christoph Lametere498be72005-09-09 13:03:32 -07003733 l3->free_objects -= searchp->num;
3734 spin_unlock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003735 slab_destroy(searchp, slabp);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003736 } while (--tofree > 0);
Christoph Lameter35386e32006-03-22 00:09:05 -08003737next:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003738 cond_resched();
3739 }
3740 check_irq_on();
Ingo Molnarfc0abb12006-01-18 17:42:33 -08003741 mutex_unlock(&cache_chain_mutex);
Christoph Lameter8fce4d82006-03-09 17:33:54 -08003742 next_reap_node();
Andrew Mortona737b3e2006-03-22 00:08:11 -08003743 /* Set up the next iteration */
Manfred Spraulcd61ef62005-11-07 00:58:02 -08003744 schedule_delayed_work(&__get_cpu_var(reap_work), REAPTIMEOUT_CPUC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745}
3746
3747#ifdef CONFIG_PROC_FS
3748
Pekka Enberg85289f92006-01-08 01:00:36 -08003749static void print_slabinfo_header(struct seq_file *m)
3750{
3751 /*
3752 * Output format version, so at least we can change it
3753 * without _too_ many complaints.
3754 */
3755#if STATS
3756 seq_puts(m, "slabinfo - version: 2.1 (statistics)\n");
3757#else
3758 seq_puts(m, "slabinfo - version: 2.1\n");
3759#endif
3760 seq_puts(m, "# name <active_objs> <num_objs> <objsize> "
3761 "<objperslab> <pagesperslab>");
3762 seq_puts(m, " : tunables <limit> <batchcount> <sharedfactor>");
3763 seq_puts(m, " : slabdata <active_slabs> <num_slabs> <sharedavail>");
3764#if STATS
3765 seq_puts(m, " : globalstat <listallocs> <maxobjs> <grown> <reaped> "
3766 "<error> <maxfreeable> <nodeallocs> <remotefrees>");
3767 seq_puts(m, " : cpustat <allochit> <allocmiss> <freehit> <freemiss>");
3768#endif
3769 seq_putc(m, '\n');
3770}
3771
Linus Torvalds1da177e2005-04-16 15:20:36 -07003772static void *s_start(struct seq_file *m, loff_t *pos)
3773{
3774 loff_t n = *pos;
3775 struct list_head *p;
3776
Ingo Molnarfc0abb12006-01-18 17:42:33 -08003777 mutex_lock(&cache_chain_mutex);
Pekka Enberg85289f92006-01-08 01:00:36 -08003778 if (!n)
3779 print_slabinfo_header(m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003780 p = cache_chain.next;
3781 while (n--) {
3782 p = p->next;
3783 if (p == &cache_chain)
3784 return NULL;
3785 }
Pekka Enberg343e0d72006-02-01 03:05:50 -08003786 return list_entry(p, struct kmem_cache, next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003787}
3788
3789static void *s_next(struct seq_file *m, void *p, loff_t *pos)
3790{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003791 struct kmem_cache *cachep = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003792 ++*pos;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003793 return cachep->next.next == &cache_chain ?
3794 NULL : list_entry(cachep->next.next, struct kmem_cache, next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003795}
3796
3797static void s_stop(struct seq_file *m, void *p)
3798{
Ingo Molnarfc0abb12006-01-18 17:42:33 -08003799 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003800}
3801
3802static int s_show(struct seq_file *m, void *p)
3803{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003804 struct kmem_cache *cachep = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003805 struct list_head *q;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003806 struct slab *slabp;
3807 unsigned long active_objs;
3808 unsigned long num_objs;
3809 unsigned long active_slabs = 0;
3810 unsigned long num_slabs, free_objects = 0, shared_avail = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07003811 const char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003812 char *error = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07003813 int node;
3814 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003815
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816 active_objs = 0;
3817 num_slabs = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07003818 for_each_online_node(node) {
3819 l3 = cachep->nodelists[node];
3820 if (!l3)
3821 continue;
3822
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08003823 check_irq_on();
3824 spin_lock_irq(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07003825
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003826 list_for_each(q, &l3->slabs_full) {
Christoph Lametere498be72005-09-09 13:03:32 -07003827 slabp = list_entry(q, struct slab, list);
3828 if (slabp->inuse != cachep->num && !error)
3829 error = "slabs_full accounting error";
3830 active_objs += cachep->num;
3831 active_slabs++;
3832 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003833 list_for_each(q, &l3->slabs_partial) {
Christoph Lametere498be72005-09-09 13:03:32 -07003834 slabp = list_entry(q, struct slab, list);
3835 if (slabp->inuse == cachep->num && !error)
3836 error = "slabs_partial inuse accounting error";
3837 if (!slabp->inuse && !error)
3838 error = "slabs_partial/inuse accounting error";
3839 active_objs += slabp->inuse;
3840 active_slabs++;
3841 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003842 list_for_each(q, &l3->slabs_free) {
Christoph Lametere498be72005-09-09 13:03:32 -07003843 slabp = list_entry(q, struct slab, list);
3844 if (slabp->inuse && !error)
3845 error = "slabs_free/inuse accounting error";
3846 num_slabs++;
3847 }
3848 free_objects += l3->free_objects;
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08003849 if (l3->shared)
3850 shared_avail += l3->shared->avail;
Christoph Lametere498be72005-09-09 13:03:32 -07003851
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08003852 spin_unlock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003854 num_slabs += active_slabs;
3855 num_objs = num_slabs * cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07003856 if (num_objs - active_objs != free_objects && !error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857 error = "free_objects accounting error";
3858
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003859 name = cachep->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860 if (error)
3861 printk(KERN_ERR "slab: cache %s error: %s\n", name, error);
3862
3863 seq_printf(m, "%-17s %6lu %6lu %6u %4u %4d",
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003864 name, active_objs, num_objs, cachep->buffer_size,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003865 cachep->num, (1 << cachep->gfporder));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003866 seq_printf(m, " : tunables %4u %4u %4u",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003867 cachep->limit, cachep->batchcount, cachep->shared);
Christoph Lametere498be72005-09-09 13:03:32 -07003868 seq_printf(m, " : slabdata %6lu %6lu %6lu",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003869 active_slabs, num_slabs, shared_avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003870#if STATS
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003871 { /* list3 stats */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003872 unsigned long high = cachep->high_mark;
3873 unsigned long allocs = cachep->num_allocations;
3874 unsigned long grown = cachep->grown;
3875 unsigned long reaped = cachep->reaped;
3876 unsigned long errors = cachep->errors;
3877 unsigned long max_freeable = cachep->max_freeable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878 unsigned long node_allocs = cachep->node_allocs;
Christoph Lametere498be72005-09-09 13:03:32 -07003879 unsigned long node_frees = cachep->node_frees;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003880
Christoph Lametere498be72005-09-09 13:03:32 -07003881 seq_printf(m, " : globalstat %7lu %6lu %5lu %4lu \
Andrew Mortona737b3e2006-03-22 00:08:11 -08003882 %4lu %4lu %4lu %4lu", allocs, high, grown,
3883 reaped, errors, max_freeable, node_allocs,
3884 node_frees);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003885 }
3886 /* cpu stats */
3887 {
3888 unsigned long allochit = atomic_read(&cachep->allochit);
3889 unsigned long allocmiss = atomic_read(&cachep->allocmiss);
3890 unsigned long freehit = atomic_read(&cachep->freehit);
3891 unsigned long freemiss = atomic_read(&cachep->freemiss);
3892
3893 seq_printf(m, " : cpustat %6lu %6lu %6lu %6lu",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003894 allochit, allocmiss, freehit, freemiss);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003895 }
3896#endif
3897 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898 return 0;
3899}
3900
3901/*
3902 * slabinfo_op - iterator that generates /proc/slabinfo
3903 *
3904 * Output layout:
3905 * cache-name
3906 * num-active-objs
3907 * total-objs
3908 * object size
3909 * num-active-slabs
3910 * total-slabs
3911 * num-pages-per-slab
3912 * + further values on SMP and with statistics enabled
3913 */
3914
3915struct seq_operations slabinfo_op = {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003916 .start = s_start,
3917 .next = s_next,
3918 .stop = s_stop,
3919 .show = s_show,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003920};
3921
3922#define MAX_SLABINFO_WRITE 128
3923/**
3924 * slabinfo_write - Tuning for the slab allocator
3925 * @file: unused
3926 * @buffer: user buffer
3927 * @count: data length
3928 * @ppos: unused
3929 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003930ssize_t slabinfo_write(struct file *file, const char __user * buffer,
3931 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003933 char kbuf[MAX_SLABINFO_WRITE + 1], *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003934 int limit, batchcount, shared, res;
3935 struct list_head *p;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003936
Linus Torvalds1da177e2005-04-16 15:20:36 -07003937 if (count > MAX_SLABINFO_WRITE)
3938 return -EINVAL;
3939 if (copy_from_user(&kbuf, buffer, count))
3940 return -EFAULT;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003941 kbuf[MAX_SLABINFO_WRITE] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942
3943 tmp = strchr(kbuf, ' ');
3944 if (!tmp)
3945 return -EINVAL;
3946 *tmp = '\0';
3947 tmp++;
3948 if (sscanf(tmp, " %d %d %d", &limit, &batchcount, &shared) != 3)
3949 return -EINVAL;
3950
3951 /* Find the cache in the chain of caches. */
Ingo Molnarfc0abb12006-01-18 17:42:33 -08003952 mutex_lock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953 res = -EINVAL;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003954 list_for_each(p, &cache_chain) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08003955 struct kmem_cache *cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956
Andrew Mortona737b3e2006-03-22 00:08:11 -08003957 cachep = list_entry(p, struct kmem_cache, next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958 if (!strcmp(cachep->name, kbuf)) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08003959 if (limit < 1 || batchcount < 1 ||
3960 batchcount > limit || shared < 0) {
Christoph Lametere498be72005-09-09 13:03:32 -07003961 res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003962 } else {
Christoph Lametere498be72005-09-09 13:03:32 -07003963 res = do_tune_cpucache(cachep, limit,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003964 batchcount, shared);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965 }
3966 break;
3967 }
3968 }
Ingo Molnarfc0abb12006-01-18 17:42:33 -08003969 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003970 if (res >= 0)
3971 res = count;
3972 return res;
3973}
Al Viro871751e2006-03-25 03:06:39 -08003974
3975#ifdef CONFIG_DEBUG_SLAB_LEAK
3976
3977static void *leaks_start(struct seq_file *m, loff_t *pos)
3978{
3979 loff_t n = *pos;
3980 struct list_head *p;
3981
3982 mutex_lock(&cache_chain_mutex);
3983 p = cache_chain.next;
3984 while (n--) {
3985 p = p->next;
3986 if (p == &cache_chain)
3987 return NULL;
3988 }
3989 return list_entry(p, struct kmem_cache, next);
3990}
3991
3992static inline int add_caller(unsigned long *n, unsigned long v)
3993{
3994 unsigned long *p;
3995 int l;
3996 if (!v)
3997 return 1;
3998 l = n[1];
3999 p = n + 2;
4000 while (l) {
4001 int i = l/2;
4002 unsigned long *q = p + 2 * i;
4003 if (*q == v) {
4004 q[1]++;
4005 return 1;
4006 }
4007 if (*q > v) {
4008 l = i;
4009 } else {
4010 p = q + 2;
4011 l -= i + 1;
4012 }
4013 }
4014 if (++n[1] == n[0])
4015 return 0;
4016 memmove(p + 2, p, n[1] * 2 * sizeof(unsigned long) - ((void *)p - (void *)n));
4017 p[0] = v;
4018 p[1] = 1;
4019 return 1;
4020}
4021
4022static void handle_slab(unsigned long *n, struct kmem_cache *c, struct slab *s)
4023{
4024 void *p;
4025 int i;
4026 if (n[0] == n[1])
4027 return;
4028 for (i = 0, p = s->s_mem; i < c->num; i++, p += c->buffer_size) {
4029 if (slab_bufctl(s)[i] != BUFCTL_ACTIVE)
4030 continue;
4031 if (!add_caller(n, (unsigned long)*dbg_userword(c, p)))
4032 return;
4033 }
4034}
4035
4036static void show_symbol(struct seq_file *m, unsigned long address)
4037{
4038#ifdef CONFIG_KALLSYMS
4039 char *modname;
4040 const char *name;
4041 unsigned long offset, size;
4042 char namebuf[KSYM_NAME_LEN+1];
4043
4044 name = kallsyms_lookup(address, &size, &offset, &modname, namebuf);
4045
4046 if (name) {
4047 seq_printf(m, "%s+%#lx/%#lx", name, offset, size);
4048 if (modname)
4049 seq_printf(m, " [%s]", modname);
4050 return;
4051 }
4052#endif
4053 seq_printf(m, "%p", (void *)address);
4054}
4055
4056static int leaks_show(struct seq_file *m, void *p)
4057{
4058 struct kmem_cache *cachep = p;
4059 struct list_head *q;
4060 struct slab *slabp;
4061 struct kmem_list3 *l3;
4062 const char *name;
4063 unsigned long *n = m->private;
4064 int node;
4065 int i;
4066
4067 if (!(cachep->flags & SLAB_STORE_USER))
4068 return 0;
4069 if (!(cachep->flags & SLAB_RED_ZONE))
4070 return 0;
4071
4072 /* OK, we can do it */
4073
4074 n[1] = 0;
4075
4076 for_each_online_node(node) {
4077 l3 = cachep->nodelists[node];
4078 if (!l3)
4079 continue;
4080
4081 check_irq_on();
4082 spin_lock_irq(&l3->list_lock);
4083
4084 list_for_each(q, &l3->slabs_full) {
4085 slabp = list_entry(q, struct slab, list);
4086 handle_slab(n, cachep, slabp);
4087 }
4088 list_for_each(q, &l3->slabs_partial) {
4089 slabp = list_entry(q, struct slab, list);
4090 handle_slab(n, cachep, slabp);
4091 }
4092 spin_unlock_irq(&l3->list_lock);
4093 }
4094 name = cachep->name;
4095 if (n[0] == n[1]) {
4096 /* Increase the buffer size */
4097 mutex_unlock(&cache_chain_mutex);
4098 m->private = kzalloc(n[0] * 4 * sizeof(unsigned long), GFP_KERNEL);
4099 if (!m->private) {
4100 /* Too bad, we are really out */
4101 m->private = n;
4102 mutex_lock(&cache_chain_mutex);
4103 return -ENOMEM;
4104 }
4105 *(unsigned long *)m->private = n[0] * 2;
4106 kfree(n);
4107 mutex_lock(&cache_chain_mutex);
4108 /* Now make sure this entry will be retried */
4109 m->count = m->size;
4110 return 0;
4111 }
4112 for (i = 0; i < n[1]; i++) {
4113 seq_printf(m, "%s: %lu ", name, n[2*i+3]);
4114 show_symbol(m, n[2*i+2]);
4115 seq_putc(m, '\n');
4116 }
4117 return 0;
4118}
4119
4120struct seq_operations slabstats_op = {
4121 .start = leaks_start,
4122 .next = s_next,
4123 .stop = s_stop,
4124 .show = leaks_show,
4125};
4126#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004127#endif
4128
Manfred Spraul00e145b2005-09-03 15:55:07 -07004129/**
4130 * ksize - get the actual amount of memory allocated for a given object
4131 * @objp: Pointer to the object
4132 *
4133 * kmalloc may internally round up allocations and return more memory
4134 * than requested. ksize() can be used to determine the actual amount of
4135 * memory allocated. The caller may use this additional memory, even though
4136 * a smaller amount of memory was initially specified with the kmalloc call.
4137 * The caller must guarantee that objp points to a valid object previously
4138 * allocated with either kmalloc() or kmem_cache_alloc(). The object
4139 * must not be freed during the duration of the call.
4140 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004141unsigned int ksize(const void *objp)
4142{
Manfred Spraul00e145b2005-09-03 15:55:07 -07004143 if (unlikely(objp == NULL))
4144 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004145
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08004146 return obj_size(virt_to_cache(objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004147}