blob: ff0ab772f49d13d5fa27374d53bf902540ec8e3b [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>
97#include <linux/seq_file.h>
98#include <linux/notifier.h>
99#include <linux/kallsyms.h>
100#include <linux/cpu.h>
101#include <linux/sysctl.h>
102#include <linux/module.h>
103#include <linux/rcupdate.h>
Paulo Marques543537b2005-06-23 00:09:02 -0700104#include <linux/string.h>
Christoph Lametere498be72005-09-09 13:03:32 -0700105#include <linux/nodemask.h>
Christoph Lameterdc85da12006-01-18 17:42:36 -0800106#include <linux/mempolicy.h>
Ingo Molnarfc0abb12006-01-18 17:42:33 -0800107#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
109#include <asm/uaccess.h>
110#include <asm/cacheflush.h>
111#include <asm/tlbflush.h>
112#include <asm/page.h>
113
114/*
115 * DEBUG - 1 for kmem_cache_create() to honour; SLAB_DEBUG_INITIAL,
116 * SLAB_RED_ZONE & SLAB_POISON.
117 * 0 for faster, smaller code (especially in the critical paths).
118 *
119 * STATS - 1 to collect stats for /proc/slabinfo.
120 * 0 for faster, smaller code (especially in the critical paths).
121 *
122 * FORCED_DEBUG - 1 enables SLAB_RED_ZONE and SLAB_POISON (if possible)
123 */
124
125#ifdef CONFIG_DEBUG_SLAB
126#define DEBUG 1
127#define STATS 1
128#define FORCED_DEBUG 1
129#else
130#define DEBUG 0
131#define STATS 0
132#define FORCED_DEBUG 0
133#endif
134
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135/* Shouldn't this be in a header file somewhere? */
136#define BYTES_PER_WORD sizeof(void *)
137
138#ifndef cache_line_size
139#define cache_line_size() L1_CACHE_BYTES
140#endif
141
142#ifndef ARCH_KMALLOC_MINALIGN
143/*
144 * Enforce a minimum alignment for the kmalloc caches.
145 * Usually, the kmalloc caches are cache_line_size() aligned, except when
146 * DEBUG and FORCED_DEBUG are enabled, then they are BYTES_PER_WORD aligned.
147 * Some archs want to perform DMA into kmalloc caches and need a guaranteed
148 * alignment larger than BYTES_PER_WORD. ARCH_KMALLOC_MINALIGN allows that.
149 * Note that this flag disables some debug features.
150 */
151#define ARCH_KMALLOC_MINALIGN 0
152#endif
153
154#ifndef ARCH_SLAB_MINALIGN
155/*
156 * Enforce a minimum alignment for all caches.
157 * Intended for archs that get misalignment faults even for BYTES_PER_WORD
158 * aligned buffers. Includes ARCH_KMALLOC_MINALIGN.
159 * If possible: Do not enable this flag for CONFIG_DEBUG_SLAB, it disables
160 * some debug features.
161 */
162#define ARCH_SLAB_MINALIGN 0
163#endif
164
165#ifndef ARCH_KMALLOC_FLAGS
166#define ARCH_KMALLOC_FLAGS SLAB_HWCACHE_ALIGN
167#endif
168
169/* Legal flag mask for kmem_cache_create(). */
170#if DEBUG
171# define CREATE_MASK (SLAB_DEBUG_INITIAL | SLAB_RED_ZONE | \
172 SLAB_POISON | SLAB_HWCACHE_ALIGN | \
Christoph Lameterac2b8982006-03-22 00:08:15 -0800173 SLAB_CACHE_DMA | \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 SLAB_MUST_HWCACHE_ALIGN | SLAB_STORE_USER | \
175 SLAB_RECLAIM_ACCOUNT | SLAB_PANIC | \
176 SLAB_DESTROY_BY_RCU)
177#else
Christoph Lameterac2b8982006-03-22 00:08:15 -0800178# define CREATE_MASK (SLAB_HWCACHE_ALIGN | \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 SLAB_CACHE_DMA | SLAB_MUST_HWCACHE_ALIGN | \
180 SLAB_RECLAIM_ACCOUNT | SLAB_PANIC | \
181 SLAB_DESTROY_BY_RCU)
182#endif
183
184/*
185 * kmem_bufctl_t:
186 *
187 * Bufctl's are used for linking objs within a slab
188 * linked offsets.
189 *
190 * This implementation relies on "struct page" for locating the cache &
191 * slab an object belongs to.
192 * This allows the bufctl structure to be small (one int), but limits
193 * the number of objects a slab (not a cache) can contain when off-slab
194 * bufctls are used. The limit is the size of the largest general cache
195 * that does not use off-slab slabs.
196 * For 32bit archs with 4 kB pages, is this 56.
197 * This is not serious, as it is only for large objects, when it is unwise
198 * to have too many per slab.
199 * Note: This limit can be raised by introducing a general cache whose size
200 * is less than 512 (PAGE_SIZE<<3), but greater than 256.
201 */
202
Kyle Moffettfa5b08d2005-09-03 15:55:03 -0700203typedef unsigned int kmem_bufctl_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204#define BUFCTL_END (((kmem_bufctl_t)(~0U))-0)
205#define BUFCTL_FREE (((kmem_bufctl_t)(~0U))-1)
206#define SLAB_LIMIT (((kmem_bufctl_t)(~0U))-2)
207
208/* Max number of objs-per-slab for caches which use off-slab slabs.
209 * Needed to avoid a possible looping condition in cache_grow().
210 */
211static unsigned long offslab_limit;
212
213/*
214 * struct slab
215 *
216 * Manages the objs in a slab. Placed either at the beginning of mem allocated
217 * for a slab, or allocated from an general cache.
218 * Slabs are chained into three list: fully used, partial, fully free slabs.
219 */
220struct slab {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800221 struct list_head list;
222 unsigned long colouroff;
223 void *s_mem; /* including colour offset */
224 unsigned int inuse; /* num of objs active in slab */
225 kmem_bufctl_t free;
226 unsigned short nodeid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227};
228
229/*
230 * struct slab_rcu
231 *
232 * slab_destroy on a SLAB_DESTROY_BY_RCU cache uses this structure to
233 * arrange for kmem_freepages to be called via RCU. This is useful if
234 * we need to approach a kernel structure obliquely, from its address
235 * obtained without the usual locking. We can lock the structure to
236 * stabilize it and check it's still at the given address, only if we
237 * can be sure that the memory has not been meanwhile reused for some
238 * other kind of object (which our subsystem's lock might corrupt).
239 *
240 * rcu_read_lock before reading the address, then rcu_read_unlock after
241 * taking the spinlock within the structure expected at that address.
242 *
243 * We assume struct slab_rcu can overlay struct slab when destroying.
244 */
245struct slab_rcu {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800246 struct rcu_head head;
Pekka Enberg343e0d72006-02-01 03:05:50 -0800247 struct kmem_cache *cachep;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800248 void *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249};
250
251/*
252 * struct array_cache
253 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 * Purpose:
255 * - LIFO ordering, to hand out cache-warm objects from _alloc
256 * - reduce the number of linked list operations
257 * - reduce spinlock operations
258 *
259 * The limit is stored in the per-cpu structure to reduce the data cache
260 * footprint.
261 *
262 */
263struct array_cache {
264 unsigned int avail;
265 unsigned int limit;
266 unsigned int batchcount;
267 unsigned int touched;
Christoph Lametere498be72005-09-09 13:03:32 -0700268 spinlock_t lock;
Andrew Mortona737b3e2006-03-22 00:08:11 -0800269 void *entry[0]; /*
270 * Must have this definition in here for the proper
271 * alignment of array_cache. Also simplifies accessing
272 * the entries.
273 * [0] is for gcc 2.95. It should really be [].
274 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275};
276
Andrew Mortona737b3e2006-03-22 00:08:11 -0800277/*
278 * bootstrap: The caches do not work without cpuarrays anymore, but the
279 * cpuarrays are allocated from the generic caches...
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 */
281#define BOOT_CPUCACHE_ENTRIES 1
282struct arraycache_init {
283 struct array_cache cache;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800284 void *entries[BOOT_CPUCACHE_ENTRIES];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285};
286
287/*
Christoph Lametere498be72005-09-09 13:03:32 -0700288 * The slab lists for all objects.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 */
290struct kmem_list3 {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800291 struct list_head slabs_partial; /* partial list first, better asm code */
292 struct list_head slabs_full;
293 struct list_head slabs_free;
294 unsigned long free_objects;
295 unsigned long next_reap;
296 int free_touched;
297 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 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302};
303
Christoph Lametere498be72005-09-09 13:03:32 -0700304/*
305 * Need this for bootstrapping a per node allocator.
306 */
307#define NUM_INIT_LISTS (2 * MAX_NUMNODES + 1)
308struct kmem_list3 __initdata initkmem_list3[NUM_INIT_LISTS];
309#define CACHE_CACHE 0
310#define SIZE_AC 1
311#define SIZE_L3 (1 + MAX_NUMNODES)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Christoph Lametere498be72005-09-09 13:03:32 -0700313/*
Andrew Mortona737b3e2006-03-22 00:08:11 -0800314 * This function must be completely optimized away if a constant is passed to
315 * it. Mostly the same as what is in linux/slab.h except it returns an index.
Christoph Lametere498be72005-09-09 13:03:32 -0700316 */
Ivan Kokshaysky7243cc02005-09-22 21:43:58 -0700317static __always_inline int index_of(const size_t size)
Christoph Lametere498be72005-09-09 13:03:32 -0700318{
Steven Rostedt5ec8a842006-02-01 03:05:44 -0800319 extern void __bad_size(void);
320
Christoph Lametere498be72005-09-09 13:03:32 -0700321 if (__builtin_constant_p(size)) {
322 int i = 0;
323
324#define CACHE(x) \
325 if (size <=x) \
326 return i; \
327 else \
328 i++;
329#include "linux/kmalloc_sizes.h"
330#undef CACHE
Steven Rostedt5ec8a842006-02-01 03:05:44 -0800331 __bad_size();
Ivan Kokshaysky7243cc02005-09-22 21:43:58 -0700332 } else
Steven Rostedt5ec8a842006-02-01 03:05:44 -0800333 __bad_size();
Christoph Lametere498be72005-09-09 13:03:32 -0700334 return 0;
335}
336
337#define INDEX_AC index_of(sizeof(struct arraycache_init))
338#define INDEX_L3 index_of(sizeof(struct kmem_list3))
339
Pekka Enberg5295a742006-02-01 03:05:48 -0800340static void kmem_list3_init(struct kmem_list3 *parent)
Christoph Lametere498be72005-09-09 13:03:32 -0700341{
342 INIT_LIST_HEAD(&parent->slabs_full);
343 INIT_LIST_HEAD(&parent->slabs_partial);
344 INIT_LIST_HEAD(&parent->slabs_free);
345 parent->shared = NULL;
346 parent->alien = NULL;
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -0800347 parent->colour_next = 0;
Christoph Lametere498be72005-09-09 13:03:32 -0700348 spin_lock_init(&parent->list_lock);
349 parent->free_objects = 0;
350 parent->free_touched = 0;
351}
352
Andrew Mortona737b3e2006-03-22 00:08:11 -0800353#define MAKE_LIST(cachep, listp, slab, nodeid) \
354 do { \
355 INIT_LIST_HEAD(listp); \
356 list_splice(&(cachep->nodelists[nodeid]->slab), listp); \
Christoph Lametere498be72005-09-09 13:03:32 -0700357 } while (0)
358
Andrew Mortona737b3e2006-03-22 00:08:11 -0800359#define MAKE_ALL_LISTS(cachep, ptr, nodeid) \
360 do { \
Christoph Lametere498be72005-09-09 13:03:32 -0700361 MAKE_LIST((cachep), (&(ptr)->slabs_full), slabs_full, nodeid); \
362 MAKE_LIST((cachep), (&(ptr)->slabs_partial), slabs_partial, nodeid); \
363 MAKE_LIST((cachep), (&(ptr)->slabs_free), slabs_free, nodeid); \
364 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365
366/*
Pekka Enberg343e0d72006-02-01 03:05:50 -0800367 * struct kmem_cache
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 *
369 * manages a cache.
370 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800371
Pekka J Enberg2109a2d2005-11-07 00:58:01 -0800372struct kmem_cache {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373/* 1) per-cpu data, touched during every alloc/free */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800374 struct array_cache *array[NR_CPUS];
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -0800375/* 2) Cache tunables. Protected by cache_chain_mutex */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800376 unsigned int batchcount;
377 unsigned int limit;
378 unsigned int shared;
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -0800379
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800380 unsigned int buffer_size;
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -0800381/* 3) touched by every alloc & free from the backend */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800382 struct kmem_list3 *nodelists[MAX_NUMNODES];
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -0800383
Andrew Mortona737b3e2006-03-22 00:08:11 -0800384 unsigned int flags; /* constant flags */
385 unsigned int num; /* # of objs per slab */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -0800387/* 4) cache_grow/shrink */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 /* order of pgs per slab (2^n) */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800389 unsigned int gfporder;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
391 /* force GFP flags, e.g. GFP_DMA */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800392 gfp_t gfpflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393
Andrew Mortona737b3e2006-03-22 00:08:11 -0800394 size_t colour; /* cache colouring range */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800395 unsigned int colour_off; /* colour offset */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800396 struct kmem_cache *slabp_cache;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800397 unsigned int slab_size;
Andrew Mortona737b3e2006-03-22 00:08:11 -0800398 unsigned int dflags; /* dynamic flags */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
400 /* constructor func */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800401 void (*ctor) (void *, struct kmem_cache *, unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
403 /* de-constructor func */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800404 void (*dtor) (void *, struct kmem_cache *, unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -0800406/* 5) cache creation/removal */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800407 const char *name;
408 struct list_head next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -0800410/* 6) statistics */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411#if STATS
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800412 unsigned long num_active;
413 unsigned long num_allocations;
414 unsigned long high_mark;
415 unsigned long grown;
416 unsigned long reaped;
417 unsigned long errors;
418 unsigned long max_freeable;
419 unsigned long node_allocs;
420 unsigned long node_frees;
421 atomic_t allochit;
422 atomic_t allocmiss;
423 atomic_t freehit;
424 atomic_t freemiss;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425#endif
426#if DEBUG
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800427 /*
428 * If debugging is enabled, then the allocator can add additional
429 * fields and/or padding to every object. buffer_size contains the total
430 * object size including these internal fields, the following two
431 * variables contain the offset to the user object and its size.
432 */
433 int obj_offset;
434 int obj_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435#endif
436};
437
438#define CFLGS_OFF_SLAB (0x80000000UL)
439#define OFF_SLAB(x) ((x)->flags & CFLGS_OFF_SLAB)
440
441#define BATCHREFILL_LIMIT 16
Andrew Mortona737b3e2006-03-22 00:08:11 -0800442/*
443 * Optimization question: fewer reaps means less probability for unnessary
444 * cpucache drain/refill cycles.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 *
Adrian Bunkdc6f3f22005-11-08 16:44:08 +0100446 * OTOH the cpuarrays can contain lots of objects,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 * which could lock up otherwise freeable slabs.
448 */
449#define REAPTIMEOUT_CPUC (2*HZ)
450#define REAPTIMEOUT_LIST3 (4*HZ)
451
452#if STATS
453#define STATS_INC_ACTIVE(x) ((x)->num_active++)
454#define STATS_DEC_ACTIVE(x) ((x)->num_active--)
455#define STATS_INC_ALLOCED(x) ((x)->num_allocations++)
456#define STATS_INC_GROWN(x) ((x)->grown++)
457#define STATS_INC_REAPED(x) ((x)->reaped++)
Andrew Mortona737b3e2006-03-22 00:08:11 -0800458#define STATS_SET_HIGH(x) \
459 do { \
460 if ((x)->num_active > (x)->high_mark) \
461 (x)->high_mark = (x)->num_active; \
462 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463#define STATS_INC_ERR(x) ((x)->errors++)
464#define STATS_INC_NODEALLOCS(x) ((x)->node_allocs++)
Christoph Lametere498be72005-09-09 13:03:32 -0700465#define STATS_INC_NODEFREES(x) ((x)->node_frees++)
Andrew Mortona737b3e2006-03-22 00:08:11 -0800466#define STATS_SET_FREEABLE(x, i) \
467 do { \
468 if ((x)->max_freeable < i) \
469 (x)->max_freeable = i; \
470 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471#define STATS_INC_ALLOCHIT(x) atomic_inc(&(x)->allochit)
472#define STATS_INC_ALLOCMISS(x) atomic_inc(&(x)->allocmiss)
473#define STATS_INC_FREEHIT(x) atomic_inc(&(x)->freehit)
474#define STATS_INC_FREEMISS(x) atomic_inc(&(x)->freemiss)
475#else
476#define STATS_INC_ACTIVE(x) do { } while (0)
477#define STATS_DEC_ACTIVE(x) do { } while (0)
478#define STATS_INC_ALLOCED(x) do { } while (0)
479#define STATS_INC_GROWN(x) do { } while (0)
480#define STATS_INC_REAPED(x) do { } while (0)
481#define STATS_SET_HIGH(x) do { } while (0)
482#define STATS_INC_ERR(x) do { } while (0)
483#define STATS_INC_NODEALLOCS(x) do { } while (0)
Christoph Lametere498be72005-09-09 13:03:32 -0700484#define STATS_INC_NODEFREES(x) do { } while (0)
Andrew Mortona737b3e2006-03-22 00:08:11 -0800485#define STATS_SET_FREEABLE(x, i) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486#define STATS_INC_ALLOCHIT(x) do { } while (0)
487#define STATS_INC_ALLOCMISS(x) do { } while (0)
488#define STATS_INC_FREEHIT(x) do { } while (0)
489#define STATS_INC_FREEMISS(x) do { } while (0)
490#endif
491
492#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -0800493/*
494 * Magic nums for obj red zoning.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 * Placed in the first word before and the first word after an obj.
496 */
497#define RED_INACTIVE 0x5A2CF071UL /* when obj is inactive */
498#define RED_ACTIVE 0x170FC2A5UL /* when obj is active */
499
500/* ...and for poisoning */
501#define POISON_INUSE 0x5a /* for use-uninitialised poisoning */
502#define POISON_FREE 0x6b /* for use-after-free poisoning */
503#define POISON_END 0xa5 /* end-byte of poisoning */
504
Andrew Mortona737b3e2006-03-22 00:08:11 -0800505/*
506 * memory layout of objects:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 * 0 : objp
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800508 * 0 .. cachep->obj_offset - BYTES_PER_WORD - 1: padding. This ensures that
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 * the end of an object is aligned with the end of the real
510 * allocation. Catches writes behind the end of the allocation.
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800511 * cachep->obj_offset - BYTES_PER_WORD .. cachep->obj_offset - 1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 * redzone word.
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800513 * cachep->obj_offset: The real object.
514 * cachep->buffer_size - 2* BYTES_PER_WORD: redzone word [BYTES_PER_WORD long]
Andrew Mortona737b3e2006-03-22 00:08:11 -0800515 * cachep->buffer_size - 1* BYTES_PER_WORD: last caller address
516 * [BYTES_PER_WORD long]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800518static int obj_offset(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519{
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800520 return cachep->obj_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521}
522
Pekka Enberg343e0d72006-02-01 03:05:50 -0800523static int obj_size(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524{
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800525 return cachep->obj_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526}
527
Pekka Enberg343e0d72006-02-01 03:05:50 -0800528static unsigned long *dbg_redzone1(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529{
530 BUG_ON(!(cachep->flags & SLAB_RED_ZONE));
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800531 return (unsigned long*) (objp+obj_offset(cachep)-BYTES_PER_WORD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532}
533
Pekka Enberg343e0d72006-02-01 03:05:50 -0800534static unsigned long *dbg_redzone2(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535{
536 BUG_ON(!(cachep->flags & SLAB_RED_ZONE));
537 if (cachep->flags & SLAB_STORE_USER)
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800538 return (unsigned long *)(objp + cachep->buffer_size -
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800539 2 * BYTES_PER_WORD);
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800540 return (unsigned long *)(objp + cachep->buffer_size - BYTES_PER_WORD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541}
542
Pekka Enberg343e0d72006-02-01 03:05:50 -0800543static void **dbg_userword(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544{
545 BUG_ON(!(cachep->flags & SLAB_STORE_USER));
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800546 return (void **)(objp + cachep->buffer_size - BYTES_PER_WORD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547}
548
549#else
550
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800551#define obj_offset(x) 0
552#define obj_size(cachep) (cachep->buffer_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553#define dbg_redzone1(cachep, objp) ({BUG(); (unsigned long *)NULL;})
554#define dbg_redzone2(cachep, objp) ({BUG(); (unsigned long *)NULL;})
555#define dbg_userword(cachep, objp) ({BUG(); (void **)NULL;})
556
557#endif
558
559/*
Andrew Mortona737b3e2006-03-22 00:08:11 -0800560 * Maximum size of an obj (in 2^order pages) and absolute limit for the gfp
561 * order.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 */
563#if defined(CONFIG_LARGE_ALLOCS)
564#define MAX_OBJ_ORDER 13 /* up to 32Mb */
565#define MAX_GFP_ORDER 13 /* up to 32Mb */
566#elif defined(CONFIG_MMU)
567#define MAX_OBJ_ORDER 5 /* 32 pages */
568#define MAX_GFP_ORDER 5 /* 32 pages */
569#else
570#define MAX_OBJ_ORDER 8 /* up to 1Mb */
571#define MAX_GFP_ORDER 8 /* up to 1Mb */
572#endif
573
574/*
575 * Do not go above this order unless 0 objects fit into the slab.
576 */
577#define BREAK_GFP_ORDER_HI 1
578#define BREAK_GFP_ORDER_LO 0
579static int slab_break_gfp_order = BREAK_GFP_ORDER_LO;
580
Andrew Mortona737b3e2006-03-22 00:08:11 -0800581/*
582 * Functions for storing/retrieving the cachep and or slab from the page
583 * allocator. These are used to find the slab an obj belongs to. With kfree(),
584 * these are used to find the cache which an obj belongs to.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700585 */
Pekka Enberg065d41c2005-11-13 16:06:46 -0800586static inline void page_set_cache(struct page *page, struct kmem_cache *cache)
587{
588 page->lru.next = (struct list_head *)cache;
589}
590
591static inline struct kmem_cache *page_get_cache(struct page *page)
592{
Nick Piggin84097512006-03-22 00:08:34 -0800593 if (unlikely(PageCompound(page)))
594 page = (struct page *)page_private(page);
Pekka Enberg065d41c2005-11-13 16:06:46 -0800595 return (struct kmem_cache *)page->lru.next;
596}
597
598static inline void page_set_slab(struct page *page, struct slab *slab)
599{
600 page->lru.prev = (struct list_head *)slab;
601}
602
603static inline struct slab *page_get_slab(struct page *page)
604{
Nick Piggin84097512006-03-22 00:08:34 -0800605 if (unlikely(PageCompound(page)))
606 page = (struct page *)page_private(page);
Pekka Enberg065d41c2005-11-13 16:06:46 -0800607 return (struct slab *)page->lru.prev;
608}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Pekka Enberg6ed5eb22006-02-01 03:05:49 -0800610static inline struct kmem_cache *virt_to_cache(const void *obj)
611{
612 struct page *page = virt_to_page(obj);
613 return page_get_cache(page);
614}
615
616static inline struct slab *virt_to_slab(const void *obj)
617{
618 struct page *page = virt_to_page(obj);
619 return page_get_slab(page);
620}
621
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800622static inline void *index_to_obj(struct kmem_cache *cache, struct slab *slab,
623 unsigned int idx)
624{
625 return slab->s_mem + cache->buffer_size * idx;
626}
627
628static inline unsigned int obj_to_index(struct kmem_cache *cache,
629 struct slab *slab, void *obj)
630{
631 return (unsigned)(obj - slab->s_mem) / cache->buffer_size;
632}
633
Andrew Mortona737b3e2006-03-22 00:08:11 -0800634/*
635 * These are the default caches for kmalloc. Custom caches can have other sizes.
636 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637struct cache_sizes malloc_sizes[] = {
638#define CACHE(x) { .cs_size = (x) },
639#include <linux/kmalloc_sizes.h>
640 CACHE(ULONG_MAX)
641#undef CACHE
642};
643EXPORT_SYMBOL(malloc_sizes);
644
645/* Must match cache_sizes above. Out of line to keep cache footprint low. */
646struct cache_names {
647 char *name;
648 char *name_dma;
649};
650
651static struct cache_names __initdata cache_names[] = {
652#define CACHE(x) { .name = "size-" #x, .name_dma = "size-" #x "(DMA)" },
653#include <linux/kmalloc_sizes.h>
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800654 {NULL,}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655#undef CACHE
656};
657
658static struct arraycache_init initarray_cache __initdata =
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800659 { {0, BOOT_CPUCACHE_ENTRIES, 1, 0} };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660static struct arraycache_init initarray_generic =
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800661 { {0, BOOT_CPUCACHE_ENTRIES, 1, 0} };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
663/* internal cache of cache description objs */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800664static struct kmem_cache cache_cache = {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800665 .batchcount = 1,
666 .limit = BOOT_CPUCACHE_ENTRIES,
667 .shared = 1,
Pekka Enberg343e0d72006-02-01 03:05:50 -0800668 .buffer_size = sizeof(struct kmem_cache),
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800669 .name = "kmem_cache",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670#if DEBUG
Pekka Enberg343e0d72006-02-01 03:05:50 -0800671 .obj_size = sizeof(struct kmem_cache),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672#endif
673};
674
675/* Guard access to the cache-chain. */
Ingo Molnarfc0abb12006-01-18 17:42:33 -0800676static DEFINE_MUTEX(cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677static struct list_head cache_chain;
678
679/*
Andrew Mortona737b3e2006-03-22 00:08:11 -0800680 * vm_enough_memory() looks at this to determine how many slab-allocated pages
681 * are possibly freeable under pressure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 *
683 * SLAB_RECLAIM_ACCOUNT turns this on per-slab
684 */
685atomic_t slab_reclaim_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
687/*
688 * chicken and egg problem: delay the per-cpu array allocation
689 * until the general caches are up.
690 */
691static enum {
692 NONE,
Christoph Lametere498be72005-09-09 13:03:32 -0700693 PARTIAL_AC,
694 PARTIAL_L3,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 FULL
696} g_cpucache_up;
697
698static DEFINE_PER_CPU(struct work_struct, reap_work);
699
Andrew Mortona737b3e2006-03-22 00:08:11 -0800700static void free_block(struct kmem_cache *cachep, void **objpp, int len,
701 int node);
Pekka Enberg343e0d72006-02-01 03:05:50 -0800702static void enable_cpucache(struct kmem_cache *cachep);
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800703static void cache_reap(void *unused);
Pekka Enberg343e0d72006-02-01 03:05:50 -0800704static int __node_shrink(struct kmem_cache *cachep, int node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
Pekka Enberg343e0d72006-02-01 03:05:50 -0800706static inline struct array_cache *cpu_cache_get(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707{
708 return cachep->array[smp_processor_id()];
709}
710
Andrew Mortona737b3e2006-03-22 00:08:11 -0800711static inline struct kmem_cache *__find_general_cachep(size_t size,
712 gfp_t gfpflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713{
714 struct cache_sizes *csizep = malloc_sizes;
715
716#if DEBUG
717 /* This happens if someone tries to call
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800718 * kmem_cache_create(), or __kmalloc(), before
719 * the generic caches are initialized.
720 */
Alok Katariac7e43c72005-09-14 12:17:53 -0700721 BUG_ON(malloc_sizes[INDEX_AC].cs_cachep == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722#endif
723 while (size > csizep->cs_size)
724 csizep++;
725
726 /*
Martin Hicks0abf40c2005-09-03 15:54:54 -0700727 * Really subtle: The last entry with cs->cs_size==ULONG_MAX
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 * has cs_{dma,}cachep==NULL. Thus no special case
729 * for large kmalloc calls required.
730 */
731 if (unlikely(gfpflags & GFP_DMA))
732 return csizep->cs_dmacachep;
733 return csizep->cs_cachep;
734}
735
Pekka Enberg343e0d72006-02-01 03:05:50 -0800736struct kmem_cache *kmem_find_general_cachep(size_t size, gfp_t gfpflags)
Manfred Spraul97e2bde2005-05-01 08:58:38 -0700737{
738 return __find_general_cachep(size, gfpflags);
739}
740EXPORT_SYMBOL(kmem_find_general_cachep);
741
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800742static size_t slab_mgmt_size(size_t nr_objs, size_t align)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743{
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800744 return ALIGN(sizeof(struct slab)+nr_objs*sizeof(kmem_bufctl_t), align);
745}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
Andrew Mortona737b3e2006-03-22 00:08:11 -0800747/*
748 * Calculate the number of objects and left-over bytes for a given buffer size.
749 */
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800750static void cache_estimate(unsigned long gfporder, size_t buffer_size,
751 size_t align, int flags, size_t *left_over,
752 unsigned int *num)
753{
754 int nr_objs;
755 size_t mgmt_size;
756 size_t slab_size = PAGE_SIZE << gfporder;
757
758 /*
759 * The slab management structure can be either off the slab or
760 * on it. For the latter case, the memory allocated for a
761 * slab is used for:
762 *
763 * - The struct slab
764 * - One kmem_bufctl_t for each object
765 * - Padding to respect alignment of @align
766 * - @buffer_size bytes for each object
767 *
768 * If the slab management structure is off the slab, then the
769 * alignment will already be calculated into the size. Because
770 * the slabs are all pages aligned, the objects will be at the
771 * correct alignment when allocated.
772 */
773 if (flags & CFLGS_OFF_SLAB) {
774 mgmt_size = 0;
775 nr_objs = slab_size / buffer_size;
776
777 if (nr_objs > SLAB_LIMIT)
778 nr_objs = SLAB_LIMIT;
779 } else {
780 /*
781 * Ignore padding for the initial guess. The padding
782 * is at most @align-1 bytes, and @buffer_size is at
783 * least @align. In the worst case, this result will
784 * be one greater than the number of objects that fit
785 * into the memory allocation when taking the padding
786 * into account.
787 */
788 nr_objs = (slab_size - sizeof(struct slab)) /
789 (buffer_size + sizeof(kmem_bufctl_t));
790
791 /*
792 * This calculated number will be either the right
793 * amount, or one greater than what we want.
794 */
795 if (slab_mgmt_size(nr_objs, align) + nr_objs*buffer_size
796 > slab_size)
797 nr_objs--;
798
799 if (nr_objs > SLAB_LIMIT)
800 nr_objs = SLAB_LIMIT;
801
802 mgmt_size = slab_mgmt_size(nr_objs, align);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 }
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800804 *num = nr_objs;
805 *left_over = slab_size - nr_objs*buffer_size - mgmt_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806}
807
808#define slab_error(cachep, msg) __slab_error(__FUNCTION__, cachep, msg)
809
Andrew Mortona737b3e2006-03-22 00:08:11 -0800810static void __slab_error(const char *function, struct kmem_cache *cachep,
811 char *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812{
813 printk(KERN_ERR "slab error in %s(): cache `%s': %s\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800814 function, cachep->name, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 dump_stack();
816}
817
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800818#ifdef CONFIG_NUMA
819/*
820 * Special reaping functions for NUMA systems called from cache_reap().
821 * These take care of doing round robin flushing of alien caches (containing
822 * objects freed on different nodes from which they were allocated) and the
823 * flushing of remote pcps by calling drain_node_pages.
824 */
825static DEFINE_PER_CPU(unsigned long, reap_node);
826
827static void init_reap_node(int cpu)
828{
829 int node;
830
831 node = next_node(cpu_to_node(cpu), node_online_map);
832 if (node == MAX_NUMNODES)
833 node = 0;
834
835 __get_cpu_var(reap_node) = node;
836}
837
838static void next_reap_node(void)
839{
840 int node = __get_cpu_var(reap_node);
841
842 /*
843 * Also drain per cpu pages on remote zones
844 */
845 if (node != numa_node_id())
846 drain_node_pages(node);
847
848 node = next_node(node, node_online_map);
849 if (unlikely(node >= MAX_NUMNODES))
850 node = first_node(node_online_map);
851 __get_cpu_var(reap_node) = node;
852}
853
854#else
855#define init_reap_node(cpu) do { } while (0)
856#define next_reap_node(void) do { } while (0)
857#endif
858
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859/*
860 * Initiate the reap timer running on the target CPU. We run at around 1 to 2Hz
861 * via the workqueue/eventd.
862 * Add the CPU number into the expiration time to minimize the possibility of
863 * the CPUs getting into lockstep and contending for the global cache chain
864 * lock.
865 */
866static void __devinit start_cpu_timer(int cpu)
867{
868 struct work_struct *reap_work = &per_cpu(reap_work, cpu);
869
870 /*
871 * When this gets called from do_initcalls via cpucache_init(),
872 * init_workqueues() has already run, so keventd will be setup
873 * at that time.
874 */
875 if (keventd_up() && reap_work->func == NULL) {
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800876 init_reap_node(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 INIT_WORK(reap_work, cache_reap, NULL);
878 schedule_delayed_work_on(cpu, reap_work, HZ + 3 * cpu);
879 }
880}
881
Christoph Lametere498be72005-09-09 13:03:32 -0700882static struct array_cache *alloc_arraycache(int node, int entries,
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800883 int batchcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884{
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800885 int memsize = sizeof(void *) * entries + sizeof(struct array_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886 struct array_cache *nc = NULL;
887
Christoph Lametere498be72005-09-09 13:03:32 -0700888 nc = kmalloc_node(memsize, GFP_KERNEL, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 if (nc) {
890 nc->avail = 0;
891 nc->limit = entries;
892 nc->batchcount = batchcount;
893 nc->touched = 0;
Christoph Lametere498be72005-09-09 13:03:32 -0700894 spin_lock_init(&nc->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 }
896 return nc;
897}
898
Christoph Lametere498be72005-09-09 13:03:32 -0700899#ifdef CONFIG_NUMA
Pekka Enberg343e0d72006-02-01 03:05:50 -0800900static void *__cache_alloc_node(struct kmem_cache *, gfp_t, int);
Christoph Lameterdc85da12006-01-18 17:42:36 -0800901
Pekka Enberg5295a742006-02-01 03:05:48 -0800902static struct array_cache **alloc_alien_cache(int node, int limit)
Christoph Lametere498be72005-09-09 13:03:32 -0700903{
904 struct array_cache **ac_ptr;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800905 int memsize = sizeof(void *) * MAX_NUMNODES;
Christoph Lametere498be72005-09-09 13:03:32 -0700906 int i;
907
908 if (limit > 1)
909 limit = 12;
910 ac_ptr = kmalloc_node(memsize, GFP_KERNEL, node);
911 if (ac_ptr) {
912 for_each_node(i) {
913 if (i == node || !node_online(i)) {
914 ac_ptr[i] = NULL;
915 continue;
916 }
917 ac_ptr[i] = alloc_arraycache(node, limit, 0xbaadf00d);
918 if (!ac_ptr[i]) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800919 for (i--; i <= 0; i--)
Christoph Lametere498be72005-09-09 13:03:32 -0700920 kfree(ac_ptr[i]);
921 kfree(ac_ptr);
922 return NULL;
923 }
924 }
925 }
926 return ac_ptr;
927}
928
Pekka Enberg5295a742006-02-01 03:05:48 -0800929static void free_alien_cache(struct array_cache **ac_ptr)
Christoph Lametere498be72005-09-09 13:03:32 -0700930{
931 int i;
932
933 if (!ac_ptr)
934 return;
Christoph Lametere498be72005-09-09 13:03:32 -0700935 for_each_node(i)
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800936 kfree(ac_ptr[i]);
Christoph Lametere498be72005-09-09 13:03:32 -0700937 kfree(ac_ptr);
938}
939
Pekka Enberg343e0d72006-02-01 03:05:50 -0800940static void __drain_alien_cache(struct kmem_cache *cachep,
Pekka Enberg5295a742006-02-01 03:05:48 -0800941 struct array_cache *ac, int node)
Christoph Lametere498be72005-09-09 13:03:32 -0700942{
943 struct kmem_list3 *rl3 = cachep->nodelists[node];
944
945 if (ac->avail) {
946 spin_lock(&rl3->list_lock);
Christoph Lameterff694162005-09-22 21:44:02 -0700947 free_block(cachep, ac->entry, ac->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -0700948 ac->avail = 0;
949 spin_unlock(&rl3->list_lock);
950 }
951}
952
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800953/*
954 * Called from cache_reap() to regularly drain alien caches round robin.
955 */
956static void reap_alien(struct kmem_cache *cachep, struct kmem_list3 *l3)
957{
958 int node = __get_cpu_var(reap_node);
959
960 if (l3->alien) {
961 struct array_cache *ac = l3->alien[node];
962 if (ac && ac->avail) {
963 spin_lock_irq(&ac->lock);
964 __drain_alien_cache(cachep, ac, node);
965 spin_unlock_irq(&ac->lock);
966 }
967 }
968}
969
Andrew Mortona737b3e2006-03-22 00:08:11 -0800970static void drain_alien_cache(struct kmem_cache *cachep,
971 struct array_cache **alien)
Christoph Lametere498be72005-09-09 13:03:32 -0700972{
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800973 int i = 0;
Christoph Lametere498be72005-09-09 13:03:32 -0700974 struct array_cache *ac;
975 unsigned long flags;
976
977 for_each_online_node(i) {
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -0800978 ac = alien[i];
Christoph Lametere498be72005-09-09 13:03:32 -0700979 if (ac) {
980 spin_lock_irqsave(&ac->lock, flags);
981 __drain_alien_cache(cachep, ac, i);
982 spin_unlock_irqrestore(&ac->lock, flags);
983 }
984 }
985}
986#else
Linus Torvalds7a21ef62006-02-05 11:26:38 -0800987
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -0800988#define drain_alien_cache(cachep, alien) do { } while (0)
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800989#define reap_alien(cachep, l3) do { } while (0)
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -0800990
Linus Torvalds7a21ef62006-02-05 11:26:38 -0800991static inline struct array_cache **alloc_alien_cache(int node, int limit)
992{
993 return (struct array_cache **) 0x01020304ul;
994}
995
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -0800996static inline void free_alien_cache(struct array_cache **ac_ptr)
997{
998}
Linus Torvalds7a21ef62006-02-05 11:26:38 -0800999
Christoph Lametere498be72005-09-09 13:03:32 -07001000#endif
1001
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002static int __devinit cpuup_callback(struct notifier_block *nfb,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001003 unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004{
1005 long cpu = (long)hcpu;
Pekka Enberg343e0d72006-02-01 03:05:50 -08001006 struct kmem_cache *cachep;
Christoph Lametere498be72005-09-09 13:03:32 -07001007 struct kmem_list3 *l3 = NULL;
1008 int node = cpu_to_node(cpu);
1009 int memsize = sizeof(struct kmem_list3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
1011 switch (action) {
1012 case CPU_UP_PREPARE:
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001013 mutex_lock(&cache_chain_mutex);
Andrew Mortona737b3e2006-03-22 00:08:11 -08001014 /*
1015 * We need to do this right in the beginning since
Christoph Lametere498be72005-09-09 13:03:32 -07001016 * alloc_arraycache's are going to use this list.
1017 * kmalloc_node allows us to add the slab to the right
1018 * kmem_list3 and not this cpu's kmem_list3
1019 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
Christoph Lametere498be72005-09-09 13:03:32 -07001021 list_for_each_entry(cachep, &cache_chain, next) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08001022 /*
1023 * Set up the size64 kmemlist for cpu before we can
Christoph Lametere498be72005-09-09 13:03:32 -07001024 * begin anything. Make sure some other cpu on this
1025 * node has not already allocated this
1026 */
1027 if (!cachep->nodelists[node]) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08001028 l3 = kmalloc_node(memsize, GFP_KERNEL, node);
1029 if (!l3)
Christoph Lametere498be72005-09-09 13:03:32 -07001030 goto bad;
1031 kmem_list3_init(l3);
1032 l3->next_reap = jiffies + REAPTIMEOUT_LIST3 +
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001033 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
Christoph Lametere498be72005-09-09 13:03:32 -07001034
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001035 /*
1036 * The l3s don't come and go as CPUs come and
1037 * go. cache_chain_mutex is sufficient
1038 * protection here.
1039 */
Christoph Lametere498be72005-09-09 13:03:32 -07001040 cachep->nodelists[node] = l3;
1041 }
1042
1043 spin_lock_irq(&cachep->nodelists[node]->list_lock);
1044 cachep->nodelists[node]->free_limit =
Andrew Mortona737b3e2006-03-22 00:08:11 -08001045 (1 + nr_cpus_node(node)) *
1046 cachep->batchcount + cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07001047 spin_unlock_irq(&cachep->nodelists[node]->list_lock);
1048 }
1049
Andrew Mortona737b3e2006-03-22 00:08:11 -08001050 /*
1051 * Now we can go ahead with allocating the shared arrays and
1052 * array caches
1053 */
Christoph Lametere498be72005-09-09 13:03:32 -07001054 list_for_each_entry(cachep, &cache_chain, next) {
Tobias Klausercd105df2006-01-08 01:00:59 -08001055 struct array_cache *nc;
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001056 struct array_cache *shared;
1057 struct array_cache **alien;
Tobias Klausercd105df2006-01-08 01:00:59 -08001058
Christoph Lametere498be72005-09-09 13:03:32 -07001059 nc = alloc_arraycache(node, cachep->limit,
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001060 cachep->batchcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001061 if (!nc)
1062 goto bad;
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001063 shared = alloc_arraycache(node,
1064 cachep->shared * cachep->batchcount,
1065 0xbaadf00d);
1066 if (!shared)
1067 goto bad;
Linus Torvalds7a21ef62006-02-05 11:26:38 -08001068
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001069 alien = alloc_alien_cache(node, cachep->limit);
1070 if (!alien)
1071 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 cachep->array[cpu] = nc;
Christoph Lametere498be72005-09-09 13:03:32 -07001073 l3 = cachep->nodelists[node];
1074 BUG_ON(!l3);
Christoph Lametere498be72005-09-09 13:03:32 -07001075
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001076 spin_lock_irq(&l3->list_lock);
1077 if (!l3->shared) {
1078 /*
1079 * We are serialised from CPU_DEAD or
1080 * CPU_UP_CANCELLED by the cpucontrol lock
1081 */
1082 l3->shared = shared;
1083 shared = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07001084 }
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001085#ifdef CONFIG_NUMA
1086 if (!l3->alien) {
1087 l3->alien = alien;
1088 alien = NULL;
1089 }
1090#endif
1091 spin_unlock_irq(&l3->list_lock);
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001092 kfree(shared);
1093 free_alien_cache(alien);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001094 }
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001095 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 break;
1097 case CPU_ONLINE:
1098 start_cpu_timer(cpu);
1099 break;
1100#ifdef CONFIG_HOTPLUG_CPU
1101 case CPU_DEAD:
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001102 /*
1103 * Even if all the cpus of a node are down, we don't free the
1104 * kmem_list3 of any cache. This to avoid a race between
1105 * cpu_down, and a kmalloc allocation from another cpu for
1106 * memory from the node of the cpu going down. The list3
1107 * structure is usually allocated from kmem_cache_create() and
1108 * gets destroyed at kmem_cache_destroy().
1109 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001110 /* fall thru */
1111 case CPU_UP_CANCELED:
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001112 mutex_lock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113 list_for_each_entry(cachep, &cache_chain, next) {
1114 struct array_cache *nc;
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001115 struct array_cache *shared;
1116 struct array_cache **alien;
Christoph Lametere498be72005-09-09 13:03:32 -07001117 cpumask_t mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118
Christoph Lametere498be72005-09-09 13:03:32 -07001119 mask = node_to_cpumask(node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 /* cpu is dead; no one can alloc from it. */
1121 nc = cachep->array[cpu];
1122 cachep->array[cpu] = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07001123 l3 = cachep->nodelists[node];
1124
1125 if (!l3)
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001126 goto free_array_cache;
Christoph Lametere498be72005-09-09 13:03:32 -07001127
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08001128 spin_lock_irq(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07001129
1130 /* Free limit for this kmem_list3 */
1131 l3->free_limit -= cachep->batchcount;
1132 if (nc)
Christoph Lameterff694162005-09-22 21:44:02 -07001133 free_block(cachep, nc->entry, nc->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -07001134
1135 if (!cpus_empty(mask)) {
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08001136 spin_unlock_irq(&l3->list_lock);
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001137 goto free_array_cache;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001138 }
Christoph Lametere498be72005-09-09 13:03:32 -07001139
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001140 shared = l3->shared;
1141 if (shared) {
Christoph Lametere498be72005-09-09 13:03:32 -07001142 free_block(cachep, l3->shared->entry,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001143 l3->shared->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -07001144 l3->shared = NULL;
1145 }
Christoph Lametere498be72005-09-09 13:03:32 -07001146
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001147 alien = l3->alien;
1148 l3->alien = NULL;
1149
1150 spin_unlock_irq(&l3->list_lock);
1151
1152 kfree(shared);
1153 if (alien) {
1154 drain_alien_cache(cachep, alien);
1155 free_alien_cache(alien);
Christoph Lametere498be72005-09-09 13:03:32 -07001156 }
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001157free_array_cache:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158 kfree(nc);
1159 }
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001160 /*
1161 * In the previous loop, all the objects were freed to
1162 * the respective cache's slabs, now we can go ahead and
1163 * shrink each nodelist to its limit.
1164 */
1165 list_for_each_entry(cachep, &cache_chain, next) {
1166 l3 = cachep->nodelists[node];
1167 if (!l3)
1168 continue;
1169 spin_lock_irq(&l3->list_lock);
1170 /* free slabs belonging to this node */
1171 __node_shrink(cachep, node);
1172 spin_unlock_irq(&l3->list_lock);
1173 }
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001174 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 break;
1176#endif
1177 }
1178 return NOTIFY_OK;
Andrew Mortona737b3e2006-03-22 00:08:11 -08001179bad:
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001180 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001181 return NOTIFY_BAD;
1182}
1183
1184static struct notifier_block cpucache_notifier = { &cpuup_callback, NULL, 0 };
1185
Christoph Lametere498be72005-09-09 13:03:32 -07001186/*
1187 * swap the static kmem_list3 with kmalloced memory
1188 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08001189static void init_list(struct kmem_cache *cachep, struct kmem_list3 *list,
1190 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07001191{
1192 struct kmem_list3 *ptr;
1193
1194 BUG_ON(cachep->nodelists[nodeid] != list);
1195 ptr = kmalloc_node(sizeof(struct kmem_list3), GFP_KERNEL, nodeid);
1196 BUG_ON(!ptr);
1197
1198 local_irq_disable();
1199 memcpy(ptr, list, sizeof(struct kmem_list3));
1200 MAKE_ALL_LISTS(cachep, ptr, nodeid);
1201 cachep->nodelists[nodeid] = ptr;
1202 local_irq_enable();
1203}
1204
Andrew Mortona737b3e2006-03-22 00:08:11 -08001205/*
1206 * Initialisation. Called after the page allocator have been initialised and
1207 * before smp_init().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 */
1209void __init kmem_cache_init(void)
1210{
1211 size_t left_over;
1212 struct cache_sizes *sizes;
1213 struct cache_names *names;
Christoph Lametere498be72005-09-09 13:03:32 -07001214 int i;
Jack Steiner07ed76b2006-03-07 21:55:46 -08001215 int order;
Christoph Lametere498be72005-09-09 13:03:32 -07001216
1217 for (i = 0; i < NUM_INIT_LISTS; i++) {
1218 kmem_list3_init(&initkmem_list3[i]);
1219 if (i < MAX_NUMNODES)
1220 cache_cache.nodelists[i] = NULL;
1221 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001222
1223 /*
1224 * Fragmentation resistance on low memory - only use bigger
1225 * page orders on machines with more than 32MB of memory.
1226 */
1227 if (num_physpages > (32 << 20) >> PAGE_SHIFT)
1228 slab_break_gfp_order = BREAK_GFP_ORDER_HI;
1229
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 /* Bootstrap is tricky, because several objects are allocated
1231 * from caches that do not exist yet:
Andrew Mortona737b3e2006-03-22 00:08:11 -08001232 * 1) initialize the cache_cache cache: it contains the struct
1233 * kmem_cache structures of all caches, except cache_cache itself:
1234 * cache_cache is statically allocated.
Christoph Lametere498be72005-09-09 13:03:32 -07001235 * Initially an __init data area is used for the head array and the
1236 * kmem_list3 structures, it's replaced with a kmalloc allocated
1237 * array at the end of the bootstrap.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238 * 2) Create the first kmalloc cache.
Pekka Enberg343e0d72006-02-01 03:05:50 -08001239 * The struct kmem_cache for the new cache is allocated normally.
Christoph Lametere498be72005-09-09 13:03:32 -07001240 * An __init data area is used for the head array.
1241 * 3) Create the remaining kmalloc caches, with minimally sized
1242 * head arrays.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001243 * 4) Replace the __init data head arrays for cache_cache and the first
1244 * kmalloc cache with kmalloc allocated arrays.
Christoph Lametere498be72005-09-09 13:03:32 -07001245 * 5) Replace the __init data for kmem_list3 for cache_cache and
1246 * the other cache's with kmalloc allocated memory.
1247 * 6) Resize the head arrays of the kmalloc caches to their final sizes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 */
1249
1250 /* 1) create the cache_cache */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 INIT_LIST_HEAD(&cache_chain);
1252 list_add(&cache_cache.next, &cache_chain);
1253 cache_cache.colour_off = cache_line_size();
1254 cache_cache.array[smp_processor_id()] = &initarray_cache.cache;
Christoph Lametere498be72005-09-09 13:03:32 -07001255 cache_cache.nodelists[numa_node_id()] = &initkmem_list3[CACHE_CACHE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256
Andrew Mortona737b3e2006-03-22 00:08:11 -08001257 cache_cache.buffer_size = ALIGN(cache_cache.buffer_size,
1258 cache_line_size());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259
Jack Steiner07ed76b2006-03-07 21:55:46 -08001260 for (order = 0; order < MAX_ORDER; order++) {
1261 cache_estimate(order, cache_cache.buffer_size,
1262 cache_line_size(), 0, &left_over, &cache_cache.num);
1263 if (cache_cache.num)
1264 break;
1265 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001266 if (!cache_cache.num)
1267 BUG();
Jack Steiner07ed76b2006-03-07 21:55:46 -08001268 cache_cache.gfporder = order;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001269 cache_cache.colour = left_over / cache_cache.colour_off;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001270 cache_cache.slab_size = ALIGN(cache_cache.num * sizeof(kmem_bufctl_t) +
1271 sizeof(struct slab), cache_line_size());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272
1273 /* 2+3) create the kmalloc caches */
1274 sizes = malloc_sizes;
1275 names = cache_names;
1276
Andrew Mortona737b3e2006-03-22 00:08:11 -08001277 /*
1278 * Initialize the caches that provide memory for the array cache and the
1279 * kmem_list3 structures first. Without this, further allocations will
1280 * bug.
Christoph Lametere498be72005-09-09 13:03:32 -07001281 */
1282
1283 sizes[INDEX_AC].cs_cachep = kmem_cache_create(names[INDEX_AC].name,
Andrew Mortona737b3e2006-03-22 00:08:11 -08001284 sizes[INDEX_AC].cs_size,
1285 ARCH_KMALLOC_MINALIGN,
1286 ARCH_KMALLOC_FLAGS|SLAB_PANIC,
1287 NULL, NULL);
Christoph Lametere498be72005-09-09 13:03:32 -07001288
Andrew Mortona737b3e2006-03-22 00:08:11 -08001289 if (INDEX_AC != INDEX_L3) {
Christoph Lametere498be72005-09-09 13:03:32 -07001290 sizes[INDEX_L3].cs_cachep =
Andrew Mortona737b3e2006-03-22 00:08:11 -08001291 kmem_cache_create(names[INDEX_L3].name,
1292 sizes[INDEX_L3].cs_size,
1293 ARCH_KMALLOC_MINALIGN,
1294 ARCH_KMALLOC_FLAGS|SLAB_PANIC,
1295 NULL, NULL);
1296 }
Christoph Lametere498be72005-09-09 13:03:32 -07001297
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 while (sizes->cs_size != ULONG_MAX) {
Christoph Lametere498be72005-09-09 13:03:32 -07001299 /*
1300 * For performance, all the general caches are L1 aligned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 * This should be particularly beneficial on SMP boxes, as it
1302 * eliminates "false sharing".
1303 * Note for systems short on memory removing the alignment will
Christoph Lametere498be72005-09-09 13:03:32 -07001304 * allow tighter packing of the smaller caches.
1305 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08001306 if (!sizes->cs_cachep) {
Christoph Lametere498be72005-09-09 13:03:32 -07001307 sizes->cs_cachep = kmem_cache_create(names->name,
Andrew Mortona737b3e2006-03-22 00:08:11 -08001308 sizes->cs_size,
1309 ARCH_KMALLOC_MINALIGN,
1310 ARCH_KMALLOC_FLAGS|SLAB_PANIC,
1311 NULL, NULL);
1312 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
1314 /* Inc off-slab bufctl limit until the ceiling is hit. */
1315 if (!(OFF_SLAB(sizes->cs_cachep))) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001316 offslab_limit = sizes->cs_size - sizeof(struct slab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 offslab_limit /= sizeof(kmem_bufctl_t);
1318 }
1319
1320 sizes->cs_dmacachep = kmem_cache_create(names->name_dma,
Andrew Mortona737b3e2006-03-22 00:08:11 -08001321 sizes->cs_size,
1322 ARCH_KMALLOC_MINALIGN,
1323 ARCH_KMALLOC_FLAGS|SLAB_CACHE_DMA|
1324 SLAB_PANIC,
1325 NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326 sizes++;
1327 names++;
1328 }
1329 /* 4) Replace the bootstrap head arrays */
1330 {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001331 void *ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001332
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 ptr = kmalloc(sizeof(struct arraycache_init), GFP_KERNEL);
Christoph Lametere498be72005-09-09 13:03:32 -07001334
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 local_irq_disable();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001336 BUG_ON(cpu_cache_get(&cache_cache) != &initarray_cache.cache);
1337 memcpy(ptr, cpu_cache_get(&cache_cache),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001338 sizeof(struct arraycache_init));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 cache_cache.array[smp_processor_id()] = ptr;
1340 local_irq_enable();
Christoph Lametere498be72005-09-09 13:03:32 -07001341
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 ptr = kmalloc(sizeof(struct arraycache_init), GFP_KERNEL);
Christoph Lametere498be72005-09-09 13:03:32 -07001343
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 local_irq_disable();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001345 BUG_ON(cpu_cache_get(malloc_sizes[INDEX_AC].cs_cachep)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001346 != &initarray_generic.cache);
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001347 memcpy(ptr, cpu_cache_get(malloc_sizes[INDEX_AC].cs_cachep),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001348 sizeof(struct arraycache_init));
Christoph Lametere498be72005-09-09 13:03:32 -07001349 malloc_sizes[INDEX_AC].cs_cachep->array[smp_processor_id()] =
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001350 ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 local_irq_enable();
1352 }
Christoph Lametere498be72005-09-09 13:03:32 -07001353 /* 5) Replace the bootstrap kmem_list3's */
1354 {
1355 int node;
1356 /* Replace the static kmem_list3 structures for the boot cpu */
1357 init_list(&cache_cache, &initkmem_list3[CACHE_CACHE],
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001358 numa_node_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
Christoph Lametere498be72005-09-09 13:03:32 -07001360 for_each_online_node(node) {
1361 init_list(malloc_sizes[INDEX_AC].cs_cachep,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001362 &initkmem_list3[SIZE_AC + node], node);
Christoph Lametere498be72005-09-09 13:03:32 -07001363
1364 if (INDEX_AC != INDEX_L3) {
1365 init_list(malloc_sizes[INDEX_L3].cs_cachep,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001366 &initkmem_list3[SIZE_L3 + node],
1367 node);
Christoph Lametere498be72005-09-09 13:03:32 -07001368 }
1369 }
1370 }
1371
1372 /* 6) resize the head arrays to their final sizes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001373 {
Pekka Enberg343e0d72006-02-01 03:05:50 -08001374 struct kmem_cache *cachep;
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001375 mutex_lock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 list_for_each_entry(cachep, &cache_chain, next)
Andrew Mortona737b3e2006-03-22 00:08:11 -08001377 enable_cpucache(cachep);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001378 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 }
1380
1381 /* Done! */
1382 g_cpucache_up = FULL;
1383
Andrew Mortona737b3e2006-03-22 00:08:11 -08001384 /*
1385 * Register a cpu startup notifier callback that initializes
1386 * cpu_cache_get for all new cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 */
1388 register_cpu_notifier(&cpucache_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389
Andrew Mortona737b3e2006-03-22 00:08:11 -08001390 /*
1391 * The reap timers are started later, with a module init call: That part
1392 * of the kernel is not yet operational.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 */
1394}
1395
1396static int __init cpucache_init(void)
1397{
1398 int cpu;
1399
Andrew Mortona737b3e2006-03-22 00:08:11 -08001400 /*
1401 * Register the timers that return unneeded pages to the page allocator
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 */
Christoph Lametere498be72005-09-09 13:03:32 -07001403 for_each_online_cpu(cpu)
Andrew Mortona737b3e2006-03-22 00:08:11 -08001404 start_cpu_timer(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 return 0;
1406}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407__initcall(cpucache_init);
1408
1409/*
1410 * Interface to system's page allocator. No need to hold the cache-lock.
1411 *
1412 * If we requested dmaable memory, we will get it. Even if we
1413 * did not request dmaable memory, we might get it, but that
1414 * would be relatively rare and ignorable.
1415 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001416static void *kmem_getpages(struct kmem_cache *cachep, gfp_t flags, int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417{
1418 struct page *page;
1419 void *addr;
1420 int i;
1421
1422 flags |= cachep->gfpflags;
Christoph Lameter50c85a12005-11-13 16:06:47 -08001423 page = alloc_pages_node(nodeid, flags, cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 if (!page)
1425 return NULL;
1426 addr = page_address(page);
1427
1428 i = (1 << cachep->gfporder);
1429 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1430 atomic_add(i, &slab_reclaim_pages);
1431 add_page_state(nr_slab, i);
1432 while (i--) {
Nick Pigginf205b2f2006-03-22 00:08:02 -08001433 __SetPageSlab(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 page++;
1435 }
1436 return addr;
1437}
1438
1439/*
1440 * Interface to system's page release.
1441 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001442static void kmem_freepages(struct kmem_cache *cachep, void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001444 unsigned long i = (1 << cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 struct page *page = virt_to_page(addr);
1446 const unsigned long nr_freed = i;
1447
1448 while (i--) {
Nick Pigginf205b2f2006-03-22 00:08:02 -08001449 BUG_ON(!PageSlab(page));
1450 __ClearPageSlab(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 page++;
1452 }
1453 sub_page_state(nr_slab, nr_freed);
1454 if (current->reclaim_state)
1455 current->reclaim_state->reclaimed_slab += nr_freed;
1456 free_pages((unsigned long)addr, cachep->gfporder);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001457 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1458 atomic_sub(1 << cachep->gfporder, &slab_reclaim_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459}
1460
1461static void kmem_rcu_free(struct rcu_head *head)
1462{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001463 struct slab_rcu *slab_rcu = (struct slab_rcu *)head;
Pekka Enberg343e0d72006-02-01 03:05:50 -08001464 struct kmem_cache *cachep = slab_rcu->cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
1466 kmem_freepages(cachep, slab_rcu->addr);
1467 if (OFF_SLAB(cachep))
1468 kmem_cache_free(cachep->slabp_cache, slab_rcu);
1469}
1470
1471#if DEBUG
1472
1473#ifdef CONFIG_DEBUG_PAGEALLOC
Pekka Enberg343e0d72006-02-01 03:05:50 -08001474static void store_stackinfo(struct kmem_cache *cachep, unsigned long *addr,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001475 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476{
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001477 int size = obj_size(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001479 addr = (unsigned long *)&((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001481 if (size < 5 * sizeof(unsigned long))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 return;
1483
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001484 *addr++ = 0x12345678;
1485 *addr++ = caller;
1486 *addr++ = smp_processor_id();
1487 size -= 3 * sizeof(unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 {
1489 unsigned long *sptr = &caller;
1490 unsigned long svalue;
1491
1492 while (!kstack_end(sptr)) {
1493 svalue = *sptr++;
1494 if (kernel_text_address(svalue)) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001495 *addr++ = svalue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 size -= sizeof(unsigned long);
1497 if (size <= sizeof(unsigned long))
1498 break;
1499 }
1500 }
1501
1502 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001503 *addr++ = 0x87654321;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504}
1505#endif
1506
Pekka Enberg343e0d72006-02-01 03:05:50 -08001507static void poison_obj(struct kmem_cache *cachep, void *addr, unsigned char val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508{
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001509 int size = obj_size(cachep);
1510 addr = &((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511
1512 memset(addr, val, size);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001513 *(unsigned char *)(addr + size - 1) = POISON_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001514}
1515
1516static void dump_line(char *data, int offset, int limit)
1517{
1518 int i;
1519 printk(KERN_ERR "%03x:", offset);
Andrew Mortona737b3e2006-03-22 00:08:11 -08001520 for (i = 0; i < limit; i++)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001521 printk(" %02x", (unsigned char)data[offset + i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 printk("\n");
1523}
1524#endif
1525
1526#if DEBUG
1527
Pekka Enberg343e0d72006-02-01 03:05:50 -08001528static void print_objinfo(struct kmem_cache *cachep, void *objp, int lines)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529{
1530 int i, size;
1531 char *realobj;
1532
1533 if (cachep->flags & SLAB_RED_ZONE) {
1534 printk(KERN_ERR "Redzone: 0x%lx/0x%lx.\n",
Andrew Mortona737b3e2006-03-22 00:08:11 -08001535 *dbg_redzone1(cachep, objp),
1536 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 }
1538
1539 if (cachep->flags & SLAB_STORE_USER) {
1540 printk(KERN_ERR "Last user: [<%p>]",
Andrew Mortona737b3e2006-03-22 00:08:11 -08001541 *dbg_userword(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 print_symbol("(%s)",
Andrew Mortona737b3e2006-03-22 00:08:11 -08001543 (unsigned long)*dbg_userword(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 printk("\n");
1545 }
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001546 realobj = (char *)objp + obj_offset(cachep);
1547 size = obj_size(cachep);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001548 for (i = 0; i < size && lines; i += 16, lines--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 int limit;
1550 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001551 if (i + limit > size)
1552 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 dump_line(realobj, i, limit);
1554 }
1555}
1556
Pekka Enberg343e0d72006-02-01 03:05:50 -08001557static void check_poison_obj(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558{
1559 char *realobj;
1560 int size, i;
1561 int lines = 0;
1562
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001563 realobj = (char *)objp + obj_offset(cachep);
1564 size = obj_size(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001566 for (i = 0; i < size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 char exp = POISON_FREE;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001568 if (i == size - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 exp = POISON_END;
1570 if (realobj[i] != exp) {
1571 int limit;
1572 /* Mismatch ! */
1573 /* Print header */
1574 if (lines == 0) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001575 printk(KERN_ERR
Andrew Mortona737b3e2006-03-22 00:08:11 -08001576 "Slab corruption: start=%p, len=%d\n",
1577 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 print_objinfo(cachep, objp, 0);
1579 }
1580 /* Hexdump the affected line */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001581 i = (i / 16) * 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001583 if (i + limit > size)
1584 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 dump_line(realobj, i, limit);
1586 i += 16;
1587 lines++;
1588 /* Limit to 5 lines */
1589 if (lines > 5)
1590 break;
1591 }
1592 }
1593 if (lines != 0) {
1594 /* Print some data about the neighboring objects, if they
1595 * exist:
1596 */
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08001597 struct slab *slabp = virt_to_slab(objp);
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001598 unsigned int objnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001600 objnr = obj_to_index(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 if (objnr) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001602 objp = index_to_obj(cachep, slabp, objnr - 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001603 realobj = (char *)objp + obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 printk(KERN_ERR "Prev obj: start=%p, len=%d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001605 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 print_objinfo(cachep, objp, 2);
1607 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001608 if (objnr + 1 < cachep->num) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001609 objp = index_to_obj(cachep, slabp, objnr + 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001610 realobj = (char *)objp + obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 printk(KERN_ERR "Next obj: start=%p, len=%d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001612 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 print_objinfo(cachep, objp, 2);
1614 }
1615 }
1616}
1617#endif
1618
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619#if DEBUG
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001620/**
Randy Dunlap911851e2006-03-22 00:08:14 -08001621 * slab_destroy_objs - destroy a slab and its objects
1622 * @cachep: cache pointer being destroyed
1623 * @slabp: slab pointer being destroyed
1624 *
1625 * Call the registered destructor for each object in a slab that is being
1626 * destroyed.
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001627 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001628static void slab_destroy_objs(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001629{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 int i;
1631 for (i = 0; i < cachep->num; i++) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001632 void *objp = index_to_obj(cachep, slabp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633
1634 if (cachep->flags & SLAB_POISON) {
1635#ifdef CONFIG_DEBUG_PAGEALLOC
Andrew Mortona737b3e2006-03-22 00:08:11 -08001636 if (cachep->buffer_size % PAGE_SIZE == 0 &&
1637 OFF_SLAB(cachep))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001638 kernel_map_pages(virt_to_page(objp),
Andrew Mortona737b3e2006-03-22 00:08:11 -08001639 cachep->buffer_size / PAGE_SIZE, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 else
1641 check_poison_obj(cachep, objp);
1642#else
1643 check_poison_obj(cachep, objp);
1644#endif
1645 }
1646 if (cachep->flags & SLAB_RED_ZONE) {
1647 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
1648 slab_error(cachep, "start of a freed object "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001649 "was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
1651 slab_error(cachep, "end of a freed object "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001652 "was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 }
1654 if (cachep->dtor && !(cachep->flags & SLAB_POISON))
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001655 (cachep->dtor) (objp + obj_offset(cachep), cachep, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001656 }
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001657}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658#else
Pekka Enberg343e0d72006-02-01 03:05:50 -08001659static void slab_destroy_objs(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001660{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 if (cachep->dtor) {
1662 int i;
1663 for (i = 0; i < cachep->num; i++) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001664 void *objp = index_to_obj(cachep, slabp, i);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001665 (cachep->dtor) (objp, cachep, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 }
1667 }
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001668}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669#endif
1670
Randy Dunlap911851e2006-03-22 00:08:14 -08001671/**
1672 * slab_destroy - destroy and release all objects in a slab
1673 * @cachep: cache pointer being destroyed
1674 * @slabp: slab pointer being destroyed
1675 *
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001676 * Destroy all the objs in a slab, and release the mem back to the system.
Andrew Mortona737b3e2006-03-22 00:08:11 -08001677 * Before calling the slab must have been unlinked from the cache. The
1678 * cache-lock is not held/needed.
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001679 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001680static void slab_destroy(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001681{
1682 void *addr = slabp->s_mem - slabp->colouroff;
1683
1684 slab_destroy_objs(cachep, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 if (unlikely(cachep->flags & SLAB_DESTROY_BY_RCU)) {
1686 struct slab_rcu *slab_rcu;
1687
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001688 slab_rcu = (struct slab_rcu *)slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 slab_rcu->cachep = cachep;
1690 slab_rcu->addr = addr;
1691 call_rcu(&slab_rcu->head, kmem_rcu_free);
1692 } else {
1693 kmem_freepages(cachep, addr);
1694 if (OFF_SLAB(cachep))
1695 kmem_cache_free(cachep->slabp_cache, slabp);
1696 }
1697}
1698
Andrew Mortona737b3e2006-03-22 00:08:11 -08001699/*
1700 * For setting up all the kmem_list3s for cache whose buffer_size is same as
1701 * size of kmem_list3.
1702 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001703static void set_up_list3s(struct kmem_cache *cachep, int index)
Christoph Lametere498be72005-09-09 13:03:32 -07001704{
1705 int node;
1706
1707 for_each_online_node(node) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001708 cachep->nodelists[node] = &initkmem_list3[index + node];
Christoph Lametere498be72005-09-09 13:03:32 -07001709 cachep->nodelists[node]->next_reap = jiffies +
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001710 REAPTIMEOUT_LIST3 +
1711 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
Christoph Lametere498be72005-09-09 13:03:32 -07001712 }
1713}
1714
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715/**
Randy.Dunlapa70773d2006-02-01 03:05:52 -08001716 * calculate_slab_order - calculate size (page order) of slabs
1717 * @cachep: pointer to the cache that is being created
1718 * @size: size of objects to be created in this cache.
1719 * @align: required alignment for the objects.
1720 * @flags: slab allocation flags
1721 *
1722 * Also calculates the number of objects per slab.
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001723 *
1724 * This could be made much more intelligent. For now, try to avoid using
1725 * high order pages for slabs. When the gfp() functions are more friendly
1726 * towards high-order requests, this should be changed.
1727 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08001728static size_t calculate_slab_order(struct kmem_cache *cachep,
Randy Dunlapee13d782006-02-01 03:05:53 -08001729 size_t size, size_t align, unsigned long flags)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001730{
1731 size_t left_over = 0;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001732 int gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001733
Andrew Mortona737b3e2006-03-22 00:08:11 -08001734 for (gfporder = 0; gfporder <= MAX_GFP_ORDER; gfporder++) {
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001735 unsigned int num;
1736 size_t remainder;
1737
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001738 cache_estimate(gfporder, size, align, flags, &remainder, &num);
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001739 if (!num)
1740 continue;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001741
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001742 /* More than offslab_limit objects will cause problems */
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001743 if ((flags & CFLGS_OFF_SLAB) && num > offslab_limit)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001744 break;
1745
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001746 /* Found something acceptable - save it away */
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001747 cachep->num = num;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001748 cachep->gfporder = gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001749 left_over = remainder;
1750
1751 /*
Linus Torvaldsf78bb8a2006-03-08 10:33:05 -08001752 * A VFS-reclaimable slab tends to have most allocations
1753 * as GFP_NOFS and we really don't want to have to be allocating
1754 * higher-order pages when we are unable to shrink dcache.
1755 */
1756 if (flags & SLAB_RECLAIM_ACCOUNT)
1757 break;
1758
1759 /*
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001760 * Large number of objects is good, but very large slabs are
1761 * currently bad for the gfp()s.
1762 */
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001763 if (gfporder >= slab_break_gfp_order)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001764 break;
1765
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001766 /*
1767 * Acceptable internal fragmentation?
1768 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08001769 if (left_over * 8 <= (PAGE_SIZE << gfporder))
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001770 break;
1771 }
1772 return left_over;
1773}
1774
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08001775static void setup_cpu_cache(struct kmem_cache *cachep)
1776{
1777 if (g_cpucache_up == FULL) {
1778 enable_cpucache(cachep);
1779 return;
1780 }
1781 if (g_cpucache_up == NONE) {
1782 /*
1783 * Note: the first kmem_cache_create must create the cache
1784 * that's used by kmalloc(24), otherwise the creation of
1785 * further caches will BUG().
1786 */
1787 cachep->array[smp_processor_id()] = &initarray_generic.cache;
1788
1789 /*
1790 * If the cache that's used by kmalloc(sizeof(kmem_list3)) is
1791 * the first cache, then we need to set up all its list3s,
1792 * otherwise the creation of further caches will BUG().
1793 */
1794 set_up_list3s(cachep, SIZE_AC);
1795 if (INDEX_AC == INDEX_L3)
1796 g_cpucache_up = PARTIAL_L3;
1797 else
1798 g_cpucache_up = PARTIAL_AC;
1799 } else {
1800 cachep->array[smp_processor_id()] =
1801 kmalloc(sizeof(struct arraycache_init), GFP_KERNEL);
1802
1803 if (g_cpucache_up == PARTIAL_AC) {
1804 set_up_list3s(cachep, SIZE_L3);
1805 g_cpucache_up = PARTIAL_L3;
1806 } else {
1807 int node;
1808 for_each_online_node(node) {
1809 cachep->nodelists[node] =
1810 kmalloc_node(sizeof(struct kmem_list3),
1811 GFP_KERNEL, node);
1812 BUG_ON(!cachep->nodelists[node]);
1813 kmem_list3_init(cachep->nodelists[node]);
1814 }
1815 }
1816 }
1817 cachep->nodelists[numa_node_id()]->next_reap =
1818 jiffies + REAPTIMEOUT_LIST3 +
1819 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
1820
1821 cpu_cache_get(cachep)->avail = 0;
1822 cpu_cache_get(cachep)->limit = BOOT_CPUCACHE_ENTRIES;
1823 cpu_cache_get(cachep)->batchcount = 1;
1824 cpu_cache_get(cachep)->touched = 0;
1825 cachep->batchcount = 1;
1826 cachep->limit = BOOT_CPUCACHE_ENTRIES;
1827}
1828
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001829/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 * kmem_cache_create - Create a cache.
1831 * @name: A string which is used in /proc/slabinfo to identify this cache.
1832 * @size: The size of objects to be created in this cache.
1833 * @align: The required alignment for the objects.
1834 * @flags: SLAB flags
1835 * @ctor: A constructor for the objects.
1836 * @dtor: A destructor for the objects.
1837 *
1838 * Returns a ptr to the cache on success, NULL on failure.
1839 * Cannot be called within a int, but can be interrupted.
1840 * The @ctor is run when new pages are allocated by the cache
1841 * and the @dtor is run before the pages are handed back.
1842 *
1843 * @name must be valid until the cache is destroyed. This implies that
Andrew Mortona737b3e2006-03-22 00:08:11 -08001844 * the module calling this has to destroy the cache before getting unloaded.
1845 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 * The flags are
1847 *
1848 * %SLAB_POISON - Poison the slab with a known test pattern (a5a5a5a5)
1849 * to catch references to uninitialised memory.
1850 *
1851 * %SLAB_RED_ZONE - Insert `Red' zones around the allocated memory to check
1852 * for buffer overruns.
1853 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 * %SLAB_HWCACHE_ALIGN - Align the objects in this cache to a hardware
1855 * cacheline. This can be beneficial if you're counting cycles as closely
1856 * as davem.
1857 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001858struct kmem_cache *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859kmem_cache_create (const char *name, size_t size, size_t align,
Andrew Mortona737b3e2006-03-22 00:08:11 -08001860 unsigned long flags,
1861 void (*ctor)(void*, struct kmem_cache *, unsigned long),
Pekka Enberg343e0d72006-02-01 03:05:50 -08001862 void (*dtor)(void*, struct kmem_cache *, unsigned long))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863{
1864 size_t left_over, slab_size, ralign;
Pekka Enberg343e0d72006-02-01 03:05:50 -08001865 struct kmem_cache *cachep = NULL;
Andrew Morton4f12bb42005-11-07 00:58:00 -08001866 struct list_head *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867
1868 /*
1869 * Sanity checks... these are all serious usage bugs.
1870 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08001871 if (!name || in_interrupt() || (size < BYTES_PER_WORD) ||
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001872 (size > (1 << MAX_OBJ_ORDER) * PAGE_SIZE) || (dtor && !ctor)) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08001873 printk(KERN_ERR "%s: Early error in slab %s\n", __FUNCTION__,
1874 name);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001875 BUG();
1876 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877
Ravikiran G Thirumalaif0188f42006-02-10 01:51:13 -08001878 /*
1879 * Prevent CPUs from coming and going.
1880 * lock_cpu_hotplug() nests outside cache_chain_mutex
1881 */
1882 lock_cpu_hotplug();
1883
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001884 mutex_lock(&cache_chain_mutex);
Andrew Morton4f12bb42005-11-07 00:58:00 -08001885
1886 list_for_each(p, &cache_chain) {
Pekka Enberg343e0d72006-02-01 03:05:50 -08001887 struct kmem_cache *pc = list_entry(p, struct kmem_cache, next);
Andrew Morton4f12bb42005-11-07 00:58:00 -08001888 mm_segment_t old_fs = get_fs();
1889 char tmp;
1890 int res;
1891
1892 /*
1893 * This happens when the module gets unloaded and doesn't
1894 * destroy its slab cache and no-one else reuses the vmalloc
1895 * area of the module. Print a warning.
1896 */
1897 set_fs(KERNEL_DS);
1898 res = __get_user(tmp, pc->name);
1899 set_fs(old_fs);
1900 if (res) {
1901 printk("SLAB: cache with size %d has lost its name\n",
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001902 pc->buffer_size);
Andrew Morton4f12bb42005-11-07 00:58:00 -08001903 continue;
1904 }
1905
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001906 if (!strcmp(pc->name, name)) {
Andrew Morton4f12bb42005-11-07 00:58:00 -08001907 printk("kmem_cache_create: duplicate cache %s\n", name);
1908 dump_stack();
1909 goto oops;
1910 }
1911 }
1912
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913#if DEBUG
1914 WARN_ON(strchr(name, ' ')); /* It confuses parsers */
1915 if ((flags & SLAB_DEBUG_INITIAL) && !ctor) {
1916 /* No constructor, but inital state check requested */
1917 printk(KERN_ERR "%s: No con, but init state check "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001918 "requested - %s\n", __FUNCTION__, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 flags &= ~SLAB_DEBUG_INITIAL;
1920 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921#if FORCED_DEBUG
1922 /*
1923 * Enable redzoning and last user accounting, except for caches with
1924 * large objects, if the increased size would increase the object size
1925 * above the next power of two: caches with object sizes just above a
1926 * power of two have a significant amount of internal fragmentation.
1927 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08001928 if (size < 4096 || fls(size - 1) == fls(size-1 + 3 * BYTES_PER_WORD))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001929 flags |= SLAB_RED_ZONE | SLAB_STORE_USER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 if (!(flags & SLAB_DESTROY_BY_RCU))
1931 flags |= SLAB_POISON;
1932#endif
1933 if (flags & SLAB_DESTROY_BY_RCU)
1934 BUG_ON(flags & SLAB_POISON);
1935#endif
1936 if (flags & SLAB_DESTROY_BY_RCU)
1937 BUG_ON(dtor);
1938
1939 /*
Andrew Mortona737b3e2006-03-22 00:08:11 -08001940 * Always checks flags, a caller might be expecting debug support which
1941 * isn't available.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 */
1943 if (flags & ~CREATE_MASK)
1944 BUG();
1945
Andrew Mortona737b3e2006-03-22 00:08:11 -08001946 /*
1947 * Check that size is in terms of words. This is needed to avoid
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 * unaligned accesses for some archs when redzoning is used, and makes
1949 * sure any on-slab bufctl's are also correctly aligned.
1950 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001951 if (size & (BYTES_PER_WORD - 1)) {
1952 size += (BYTES_PER_WORD - 1);
1953 size &= ~(BYTES_PER_WORD - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 }
1955
Andrew Mortona737b3e2006-03-22 00:08:11 -08001956 /* calculate the final buffer alignment: */
1957
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 /* 1) arch recommendation: can be overridden for debug */
1959 if (flags & SLAB_HWCACHE_ALIGN) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08001960 /*
1961 * Default alignment: as specified by the arch code. Except if
1962 * an object is really small, then squeeze multiple objects into
1963 * one cacheline.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 */
1965 ralign = cache_line_size();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001966 while (size <= ralign / 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 ralign /= 2;
1968 } else {
1969 ralign = BYTES_PER_WORD;
1970 }
1971 /* 2) arch mandated alignment: disables debug if necessary */
1972 if (ralign < ARCH_SLAB_MINALIGN) {
1973 ralign = ARCH_SLAB_MINALIGN;
1974 if (ralign > BYTES_PER_WORD)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001975 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 }
1977 /* 3) caller mandated alignment: disables debug if necessary */
1978 if (ralign < align) {
1979 ralign = align;
1980 if (ralign > BYTES_PER_WORD)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001981 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 }
Andrew Mortona737b3e2006-03-22 00:08:11 -08001983 /*
1984 * 4) Store it. Note that the debug code below can reduce
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 * the alignment to BYTES_PER_WORD.
1986 */
1987 align = ralign;
1988
1989 /* Get cache's description obj. */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001990 cachep = kmem_cache_alloc(&cache_cache, SLAB_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 if (!cachep)
Andrew Morton4f12bb42005-11-07 00:58:00 -08001992 goto oops;
Pekka Enberg343e0d72006-02-01 03:05:50 -08001993 memset(cachep, 0, sizeof(struct kmem_cache));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994
1995#if DEBUG
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001996 cachep->obj_size = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997
1998 if (flags & SLAB_RED_ZONE) {
1999 /* redzoning only works with word aligned caches */
2000 align = BYTES_PER_WORD;
2001
2002 /* add space for red zone words */
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002003 cachep->obj_offset += BYTES_PER_WORD;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002004 size += 2 * BYTES_PER_WORD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 }
2006 if (flags & SLAB_STORE_USER) {
2007 /* user store requires word alignment and
2008 * one word storage behind the end of the real
2009 * object.
2010 */
2011 align = BYTES_PER_WORD;
2012 size += BYTES_PER_WORD;
2013 }
2014#if FORCED_DEBUG && defined(CONFIG_DEBUG_PAGEALLOC)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002015 if (size >= malloc_sizes[INDEX_L3 + 1].cs_size
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002016 && cachep->obj_size > cache_line_size() && size < PAGE_SIZE) {
2017 cachep->obj_offset += PAGE_SIZE - size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018 size = PAGE_SIZE;
2019 }
2020#endif
2021#endif
2022
2023 /* Determine if the slab management is 'on' or 'off' slab. */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002024 if (size >= (PAGE_SIZE >> 3))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 /*
2026 * Size is large, assume best to place the slab management obj
2027 * off-slab (should allow better packing of objs).
2028 */
2029 flags |= CFLGS_OFF_SLAB;
2030
2031 size = ALIGN(size, align);
2032
Linus Torvaldsf78bb8a2006-03-08 10:33:05 -08002033 left_over = calculate_slab_order(cachep, size, align, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034
2035 if (!cachep->num) {
2036 printk("kmem_cache_create: couldn't create cache %s.\n", name);
2037 kmem_cache_free(&cache_cache, cachep);
2038 cachep = NULL;
Andrew Morton4f12bb42005-11-07 00:58:00 -08002039 goto oops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002041 slab_size = ALIGN(cachep->num * sizeof(kmem_bufctl_t)
2042 + sizeof(struct slab), align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043
2044 /*
2045 * If the slab has been placed off-slab, and we have enough space then
2046 * move it on-slab. This is at the expense of any extra colouring.
2047 */
2048 if (flags & CFLGS_OFF_SLAB && left_over >= slab_size) {
2049 flags &= ~CFLGS_OFF_SLAB;
2050 left_over -= slab_size;
2051 }
2052
2053 if (flags & CFLGS_OFF_SLAB) {
2054 /* really off slab. No need for manual alignment */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002055 slab_size =
2056 cachep->num * sizeof(kmem_bufctl_t) + sizeof(struct slab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 }
2058
2059 cachep->colour_off = cache_line_size();
2060 /* Offset must be a multiple of the alignment. */
2061 if (cachep->colour_off < align)
2062 cachep->colour_off = align;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002063 cachep->colour = left_over / cachep->colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 cachep->slab_size = slab_size;
2065 cachep->flags = flags;
2066 cachep->gfpflags = 0;
2067 if (flags & SLAB_CACHE_DMA)
2068 cachep->gfpflags |= GFP_DMA;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002069 cachep->buffer_size = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070
2071 if (flags & CFLGS_OFF_SLAB)
Victor Fuscob2d55072005-09-10 00:26:36 -07002072 cachep->slabp_cache = kmem_find_general_cachep(slab_size, 0u);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 cachep->ctor = ctor;
2074 cachep->dtor = dtor;
2075 cachep->name = name;
2076
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002078 setup_cpu_cache(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 /* cache setup completed, link it into the list */
2081 list_add(&cachep->next, &cache_chain);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002082oops:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 if (!cachep && (flags & SLAB_PANIC))
2084 panic("kmem_cache_create(): failed to create slab `%s'\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002085 name);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002086 mutex_unlock(&cache_chain_mutex);
Ravikiran G Thirumalaif0188f42006-02-10 01:51:13 -08002087 unlock_cpu_hotplug();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 return cachep;
2089}
2090EXPORT_SYMBOL(kmem_cache_create);
2091
2092#if DEBUG
2093static void check_irq_off(void)
2094{
2095 BUG_ON(!irqs_disabled());
2096}
2097
2098static void check_irq_on(void)
2099{
2100 BUG_ON(irqs_disabled());
2101}
2102
Pekka Enberg343e0d72006-02-01 03:05:50 -08002103static void check_spinlock_acquired(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104{
2105#ifdef CONFIG_SMP
2106 check_irq_off();
Christoph Lametere498be72005-09-09 13:03:32 -07002107 assert_spin_locked(&cachep->nodelists[numa_node_id()]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108#endif
2109}
Christoph Lametere498be72005-09-09 13:03:32 -07002110
Pekka Enberg343e0d72006-02-01 03:05:50 -08002111static void check_spinlock_acquired_node(struct kmem_cache *cachep, int node)
Christoph Lametere498be72005-09-09 13:03:32 -07002112{
2113#ifdef CONFIG_SMP
2114 check_irq_off();
2115 assert_spin_locked(&cachep->nodelists[node]->list_lock);
2116#endif
2117}
2118
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119#else
2120#define check_irq_off() do { } while(0)
2121#define check_irq_on() do { } while(0)
2122#define check_spinlock_acquired(x) do { } while(0)
Christoph Lametere498be72005-09-09 13:03:32 -07002123#define check_spinlock_acquired_node(x, y) do { } while(0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124#endif
2125
Andrew Mortona737b3e2006-03-22 00:08:11 -08002126static void drain_array_locked(struct kmem_cache *cachep,
2127 struct array_cache *ac, int force, int node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128
2129static void do_drain(void *arg)
2130{
Andrew Mortona737b3e2006-03-22 00:08:11 -08002131 struct kmem_cache *cachep = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 struct array_cache *ac;
Christoph Lameterff694162005-09-22 21:44:02 -07002133 int node = numa_node_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134
2135 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002136 ac = cpu_cache_get(cachep);
Christoph Lameterff694162005-09-22 21:44:02 -07002137 spin_lock(&cachep->nodelists[node]->list_lock);
2138 free_block(cachep, ac->entry, ac->avail, node);
2139 spin_unlock(&cachep->nodelists[node]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 ac->avail = 0;
2141}
2142
Pekka Enberg343e0d72006-02-01 03:05:50 -08002143static void drain_cpu_caches(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144{
Christoph Lametere498be72005-09-09 13:03:32 -07002145 struct kmem_list3 *l3;
2146 int node;
2147
Andrew Mortona07fa392006-03-22 00:08:17 -08002148 on_each_cpu(do_drain, cachep, 1, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 check_irq_on();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002150 for_each_online_node(node) {
Christoph Lametere498be72005-09-09 13:03:32 -07002151 l3 = cachep->nodelists[node];
2152 if (l3) {
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08002153 spin_lock_irq(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07002154 drain_array_locked(cachep, l3->shared, 1, node);
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08002155 spin_unlock_irq(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07002156 if (l3->alien)
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08002157 drain_alien_cache(cachep, l3->alien);
Christoph Lametere498be72005-09-09 13:03:32 -07002158 }
2159 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160}
2161
Pekka Enberg343e0d72006-02-01 03:05:50 -08002162static int __node_shrink(struct kmem_cache *cachep, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163{
2164 struct slab *slabp;
Christoph Lametere498be72005-09-09 13:03:32 -07002165 struct kmem_list3 *l3 = cachep->nodelists[node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 int ret;
2167
Christoph Lametere498be72005-09-09 13:03:32 -07002168 for (;;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 struct list_head *p;
2170
Christoph Lametere498be72005-09-09 13:03:32 -07002171 p = l3->slabs_free.prev;
2172 if (p == &l3->slabs_free)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 break;
2174
Christoph Lametere498be72005-09-09 13:03:32 -07002175 slabp = list_entry(l3->slabs_free.prev, struct slab, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176#if DEBUG
2177 if (slabp->inuse)
2178 BUG();
2179#endif
2180 list_del(&slabp->list);
2181
Christoph Lametere498be72005-09-09 13:03:32 -07002182 l3->free_objects -= cachep->num;
2183 spin_unlock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184 slab_destroy(cachep, slabp);
Christoph Lametere498be72005-09-09 13:03:32 -07002185 spin_lock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002187 ret = !list_empty(&l3->slabs_full) || !list_empty(&l3->slabs_partial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 return ret;
2189}
2190
Pekka Enberg343e0d72006-02-01 03:05:50 -08002191static int __cache_shrink(struct kmem_cache *cachep)
Christoph Lametere498be72005-09-09 13:03:32 -07002192{
2193 int ret = 0, i = 0;
2194 struct kmem_list3 *l3;
2195
2196 drain_cpu_caches(cachep);
2197
2198 check_irq_on();
2199 for_each_online_node(i) {
2200 l3 = cachep->nodelists[i];
2201 if (l3) {
2202 spin_lock_irq(&l3->list_lock);
2203 ret += __node_shrink(cachep, i);
2204 spin_unlock_irq(&l3->list_lock);
2205 }
2206 }
2207 return (ret ? 1 : 0);
2208}
2209
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210/**
2211 * kmem_cache_shrink - Shrink a cache.
2212 * @cachep: The cache to shrink.
2213 *
2214 * Releases as many slabs as possible for a cache.
2215 * To help debugging, a zero exit status indicates all slabs were released.
2216 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002217int kmem_cache_shrink(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218{
2219 if (!cachep || in_interrupt())
2220 BUG();
2221
2222 return __cache_shrink(cachep);
2223}
2224EXPORT_SYMBOL(kmem_cache_shrink);
2225
2226/**
2227 * kmem_cache_destroy - delete a cache
2228 * @cachep: the cache to destroy
2229 *
Pekka Enberg343e0d72006-02-01 03:05:50 -08002230 * Remove a struct kmem_cache object from the slab cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 * Returns 0 on success.
2232 *
2233 * It is expected this function will be called by a module when it is
2234 * unloaded. This will remove the cache completely, and avoid a duplicate
2235 * cache being allocated each time a module is loaded and unloaded, if the
2236 * module doesn't have persistent in-kernel storage across loads and unloads.
2237 *
2238 * The cache must be empty before calling this function.
2239 *
2240 * The caller must guarantee that noone will allocate memory from the cache
2241 * during the kmem_cache_destroy().
2242 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002243int kmem_cache_destroy(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244{
2245 int i;
Christoph Lametere498be72005-09-09 13:03:32 -07002246 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247
2248 if (!cachep || in_interrupt())
2249 BUG();
2250
2251 /* Don't let CPUs to come and go */
2252 lock_cpu_hotplug();
2253
2254 /* Find the cache in the chain of caches. */
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002255 mutex_lock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 /*
2257 * the chain is never empty, cache_cache is never destroyed
2258 */
2259 list_del(&cachep->next);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002260 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261
2262 if (__cache_shrink(cachep)) {
2263 slab_error(cachep, "Can't free all objects");
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002264 mutex_lock(&cache_chain_mutex);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002265 list_add(&cachep->next, &cache_chain);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002266 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 unlock_cpu_hotplug();
2268 return 1;
2269 }
2270
2271 if (unlikely(cachep->flags & SLAB_DESTROY_BY_RCU))
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07002272 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273
Christoph Lametere498be72005-09-09 13:03:32 -07002274 for_each_online_cpu(i)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002275 kfree(cachep->array[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276
2277 /* NUMA: free the list3 structures */
Christoph Lametere498be72005-09-09 13:03:32 -07002278 for_each_online_node(i) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002279 l3 = cachep->nodelists[i];
2280 if (l3) {
Christoph Lametere498be72005-09-09 13:03:32 -07002281 kfree(l3->shared);
2282 free_alien_cache(l3->alien);
2283 kfree(l3);
2284 }
2285 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 kmem_cache_free(&cache_cache, cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 unlock_cpu_hotplug();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 return 0;
2289}
2290EXPORT_SYMBOL(kmem_cache_destroy);
2291
2292/* Get the memory for a slab management obj. */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002293static struct slab *alloc_slabmgmt(struct kmem_cache *cachep, void *objp,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002294 int colour_off, gfp_t local_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295{
2296 struct slab *slabp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002297
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 if (OFF_SLAB(cachep)) {
2299 /* Slab management obj is off-slab. */
2300 slabp = kmem_cache_alloc(cachep->slabp_cache, local_flags);
2301 if (!slabp)
2302 return NULL;
2303 } else {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002304 slabp = objp + colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305 colour_off += cachep->slab_size;
2306 }
2307 slabp->inuse = 0;
2308 slabp->colouroff = colour_off;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002309 slabp->s_mem = objp + colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 return slabp;
2311}
2312
2313static inline kmem_bufctl_t *slab_bufctl(struct slab *slabp)
2314{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002315 return (kmem_bufctl_t *) (slabp + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316}
2317
Pekka Enberg343e0d72006-02-01 03:05:50 -08002318static void cache_init_objs(struct kmem_cache *cachep,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002319 struct slab *slabp, unsigned long ctor_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320{
2321 int i;
2322
2323 for (i = 0; i < cachep->num; i++) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002324 void *objp = index_to_obj(cachep, slabp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325#if DEBUG
2326 /* need to poison the objs? */
2327 if (cachep->flags & SLAB_POISON)
2328 poison_obj(cachep, objp, POISON_FREE);
2329 if (cachep->flags & SLAB_STORE_USER)
2330 *dbg_userword(cachep, objp) = NULL;
2331
2332 if (cachep->flags & SLAB_RED_ZONE) {
2333 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2334 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2335 }
2336 /*
Andrew Mortona737b3e2006-03-22 00:08:11 -08002337 * Constructors are not allowed to allocate memory from the same
2338 * cache which they are a constructor for. Otherwise, deadlock.
2339 * They must also be threaded.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 */
2341 if (cachep->ctor && !(cachep->flags & SLAB_POISON))
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002342 cachep->ctor(objp + obj_offset(cachep), cachep,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002343 ctor_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344
2345 if (cachep->flags & SLAB_RED_ZONE) {
2346 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
2347 slab_error(cachep, "constructor overwrote the"
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002348 " end of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
2350 slab_error(cachep, "constructor overwrote the"
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002351 " start of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352 }
Andrew Mortona737b3e2006-03-22 00:08:11 -08002353 if ((cachep->buffer_size % PAGE_SIZE) == 0 &&
2354 OFF_SLAB(cachep) && cachep->flags & SLAB_POISON)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002355 kernel_map_pages(virt_to_page(objp),
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002356 cachep->buffer_size / PAGE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002357#else
2358 if (cachep->ctor)
2359 cachep->ctor(objp, cachep, ctor_flags);
2360#endif
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002361 slab_bufctl(slabp)[i] = i + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002363 slab_bufctl(slabp)[i - 1] = BUFCTL_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 slabp->free = 0;
2365}
2366
Pekka Enberg343e0d72006-02-01 03:05:50 -08002367static void kmem_flagcheck(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368{
Andrew Mortona737b3e2006-03-22 00:08:11 -08002369 if (flags & SLAB_DMA)
2370 BUG_ON(!(cachep->gfpflags & GFP_DMA));
2371 else
2372 BUG_ON(cachep->gfpflags & GFP_DMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373}
2374
Andrew Mortona737b3e2006-03-22 00:08:11 -08002375static void *slab_get_obj(struct kmem_cache *cachep, struct slab *slabp,
2376 int nodeid)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002377{
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002378 void *objp = index_to_obj(cachep, slabp, slabp->free);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002379 kmem_bufctl_t next;
2380
2381 slabp->inuse++;
2382 next = slab_bufctl(slabp)[slabp->free];
2383#if DEBUG
2384 slab_bufctl(slabp)[slabp->free] = BUFCTL_FREE;
2385 WARN_ON(slabp->nodeid != nodeid);
2386#endif
2387 slabp->free = next;
2388
2389 return objp;
2390}
2391
Andrew Mortona737b3e2006-03-22 00:08:11 -08002392static void slab_put_obj(struct kmem_cache *cachep, struct slab *slabp,
2393 void *objp, int nodeid)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002394{
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002395 unsigned int objnr = obj_to_index(cachep, slabp, objp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002396
2397#if DEBUG
2398 /* Verify that the slab belongs to the intended node */
2399 WARN_ON(slabp->nodeid != nodeid);
2400
2401 if (slab_bufctl(slabp)[objnr] != BUFCTL_FREE) {
2402 printk(KERN_ERR "slab: double free detected in cache "
Andrew Mortona737b3e2006-03-22 00:08:11 -08002403 "'%s', objp %p\n", cachep->name, objp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002404 BUG();
2405 }
2406#endif
2407 slab_bufctl(slabp)[objnr] = slabp->free;
2408 slabp->free = objnr;
2409 slabp->inuse--;
2410}
2411
Andrew Mortona737b3e2006-03-22 00:08:11 -08002412static void set_slab_attr(struct kmem_cache *cachep, struct slab *slabp,
2413 void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414{
2415 int i;
2416 struct page *page;
2417
2418 /* Nasty!!!!!! I hope this is OK. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 page = virt_to_page(objp);
Nick Piggin84097512006-03-22 00:08:34 -08002420
2421 i = 1;
2422 if (likely(!PageCompound(page)))
2423 i <<= cachep->gfporder;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 do {
Pekka Enberg065d41c2005-11-13 16:06:46 -08002425 page_set_cache(page, cachep);
2426 page_set_slab(page, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427 page++;
2428 } while (--i);
2429}
2430
2431/*
2432 * Grow (by 1) the number of slabs within a cache. This is called by
2433 * kmem_cache_alloc() when there are no active objs left in a cache.
2434 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002435static int cache_grow(struct kmem_cache *cachep, gfp_t flags, int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002437 struct slab *slabp;
2438 void *objp;
2439 size_t offset;
2440 gfp_t local_flags;
2441 unsigned long ctor_flags;
Christoph Lametere498be72005-09-09 13:03:32 -07002442 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443
Andrew Mortona737b3e2006-03-22 00:08:11 -08002444 /*
2445 * Be lazy and only check for valid flags here, keeping it out of the
2446 * critical path in kmem_cache_alloc().
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002448 if (flags & ~(SLAB_DMA | SLAB_LEVEL_MASK | SLAB_NO_GROW))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 BUG();
2450 if (flags & SLAB_NO_GROW)
2451 return 0;
2452
2453 ctor_flags = SLAB_CTOR_CONSTRUCTOR;
2454 local_flags = (flags & SLAB_LEVEL_MASK);
2455 if (!(local_flags & __GFP_WAIT))
2456 /*
2457 * Not allowed to sleep. Need to tell a constructor about
2458 * this - it might need to know...
2459 */
2460 ctor_flags |= SLAB_CTOR_ATOMIC;
2461
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002462 /* Take the l3 list lock to change the colour_next on this node */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463 check_irq_off();
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002464 l3 = cachep->nodelists[nodeid];
2465 spin_lock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466
2467 /* Get colour for the slab, and cal the next value. */
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002468 offset = l3->colour_next;
2469 l3->colour_next++;
2470 if (l3->colour_next >= cachep->colour)
2471 l3->colour_next = 0;
2472 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002473
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002474 offset *= cachep->colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475
2476 if (local_flags & __GFP_WAIT)
2477 local_irq_enable();
2478
2479 /*
2480 * The test for missing atomic flag is performed here, rather than
2481 * the more obvious place, simply to reduce the critical path length
2482 * in kmem_cache_alloc(). If a caller is seriously mis-behaving they
2483 * will eventually be caught here (where it matters).
2484 */
2485 kmem_flagcheck(cachep, flags);
2486
Andrew Mortona737b3e2006-03-22 00:08:11 -08002487 /*
2488 * Get mem for the objs. Attempt to allocate a physical page from
2489 * 'nodeid'.
Christoph Lametere498be72005-09-09 13:03:32 -07002490 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002491 objp = kmem_getpages(cachep, flags, nodeid);
2492 if (!objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 goto failed;
2494
2495 /* Get slab management. */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002496 slabp = alloc_slabmgmt(cachep, objp, offset, local_flags);
2497 if (!slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498 goto opps1;
2499
Christoph Lametere498be72005-09-09 13:03:32 -07002500 slabp->nodeid = nodeid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501 set_slab_attr(cachep, slabp, objp);
2502
2503 cache_init_objs(cachep, slabp, ctor_flags);
2504
2505 if (local_flags & __GFP_WAIT)
2506 local_irq_disable();
2507 check_irq_off();
Christoph Lametere498be72005-09-09 13:03:32 -07002508 spin_lock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509
2510 /* Make slab active. */
Christoph Lametere498be72005-09-09 13:03:32 -07002511 list_add_tail(&slabp->list, &(l3->slabs_free));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512 STATS_INC_GROWN(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07002513 l3->free_objects += cachep->num;
2514 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 return 1;
Andrew Mortona737b3e2006-03-22 00:08:11 -08002516opps1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517 kmem_freepages(cachep, objp);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002518failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 if (local_flags & __GFP_WAIT)
2520 local_irq_disable();
2521 return 0;
2522}
2523
2524#if DEBUG
2525
2526/*
2527 * Perform extra freeing checks:
2528 * - detect bad pointers.
2529 * - POISON/RED_ZONE checking
2530 * - destructor calls, for caches with POISON+dtor
2531 */
2532static void kfree_debugcheck(const void *objp)
2533{
2534 struct page *page;
2535
2536 if (!virt_addr_valid(objp)) {
2537 printk(KERN_ERR "kfree_debugcheck: out of range ptr %lxh.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002538 (unsigned long)objp);
2539 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540 }
2541 page = virt_to_page(objp);
2542 if (!PageSlab(page)) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002543 printk(KERN_ERR "kfree_debugcheck: bad ptr %lxh.\n",
2544 (unsigned long)objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 BUG();
2546 }
2547}
2548
Pekka Enberg343e0d72006-02-01 03:05:50 -08002549static void *cache_free_debugcheck(struct kmem_cache *cachep, void *objp,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002550 void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551{
2552 struct page *page;
2553 unsigned int objnr;
2554 struct slab *slabp;
2555
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002556 objp -= obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 kfree_debugcheck(objp);
2558 page = virt_to_page(objp);
2559
Pekka Enberg065d41c2005-11-13 16:06:46 -08002560 if (page_get_cache(page) != cachep) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002561 printk(KERN_ERR "mismatch in kmem_cache_free: expected "
2562 "cache %p, got %p\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002563 page_get_cache(page), cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564 printk(KERN_ERR "%p is %s.\n", cachep, cachep->name);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002565 printk(KERN_ERR "%p is %s.\n", page_get_cache(page),
2566 page_get_cache(page)->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567 WARN_ON(1);
2568 }
Pekka Enberg065d41c2005-11-13 16:06:46 -08002569 slabp = page_get_slab(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570
2571 if (cachep->flags & SLAB_RED_ZONE) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002572 if (*dbg_redzone1(cachep, objp) != RED_ACTIVE ||
2573 *dbg_redzone2(cachep, objp) != RED_ACTIVE) {
2574 slab_error(cachep, "double free, or memory outside"
2575 " object was overwritten");
2576 printk(KERN_ERR "%p: redzone 1:0x%lx, "
2577 "redzone 2:0x%lx.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002578 objp, *dbg_redzone1(cachep, objp),
2579 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580 }
2581 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2582 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2583 }
2584 if (cachep->flags & SLAB_STORE_USER)
2585 *dbg_userword(cachep, objp) = caller;
2586
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002587 objnr = obj_to_index(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588
2589 BUG_ON(objnr >= cachep->num);
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002590 BUG_ON(objp != index_to_obj(cachep, slabp, objnr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591
2592 if (cachep->flags & SLAB_DEBUG_INITIAL) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002593 /*
2594 * Need to call the slab's constructor so the caller can
2595 * perform a verify of its state (debugging). Called without
2596 * the cache-lock held.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597 */
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002598 cachep->ctor(objp + obj_offset(cachep),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002599 cachep, SLAB_CTOR_CONSTRUCTOR | SLAB_CTOR_VERIFY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600 }
2601 if (cachep->flags & SLAB_POISON && cachep->dtor) {
2602 /* we want to cache poison the object,
2603 * call the destruction callback
2604 */
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002605 cachep->dtor(objp + obj_offset(cachep), cachep, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 }
2607 if (cachep->flags & SLAB_POISON) {
2608#ifdef CONFIG_DEBUG_PAGEALLOC
Andrew Mortona737b3e2006-03-22 00:08:11 -08002609 if ((cachep->buffer_size % PAGE_SIZE)==0 && OFF_SLAB(cachep)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 store_stackinfo(cachep, objp, (unsigned long)caller);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002611 kernel_map_pages(virt_to_page(objp),
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002612 cachep->buffer_size / PAGE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 } else {
2614 poison_obj(cachep, objp, POISON_FREE);
2615 }
2616#else
2617 poison_obj(cachep, objp, POISON_FREE);
2618#endif
2619 }
2620 return objp;
2621}
2622
Pekka Enberg343e0d72006-02-01 03:05:50 -08002623static void check_slabp(struct kmem_cache *cachep, struct slab *slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624{
2625 kmem_bufctl_t i;
2626 int entries = 0;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002627
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 /* Check slab's freelist to see if this obj is there. */
2629 for (i = slabp->free; i != BUFCTL_END; i = slab_bufctl(slabp)[i]) {
2630 entries++;
2631 if (entries > cachep->num || i >= cachep->num)
2632 goto bad;
2633 }
2634 if (entries != cachep->num - slabp->inuse) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002635bad:
2636 printk(KERN_ERR "slab: Internal list corruption detected in "
2637 "cache '%s'(%d), slabp %p(%d). Hexdump:\n",
2638 cachep->name, cachep->num, slabp, slabp->inuse);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002639 for (i = 0;
Linus Torvalds264132b2006-03-06 12:10:07 -08002640 i < sizeof(*slabp) + cachep->num * sizeof(kmem_bufctl_t);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002641 i++) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002642 if (i % 16 == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643 printk("\n%03x:", i);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002644 printk(" %02x", ((unsigned char *)slabp)[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 }
2646 printk("\n");
2647 BUG();
2648 }
2649}
2650#else
2651#define kfree_debugcheck(x) do { } while(0)
2652#define cache_free_debugcheck(x,objp,z) (objp)
2653#define check_slabp(x,y) do { } while(0)
2654#endif
2655
Pekka Enberg343e0d72006-02-01 03:05:50 -08002656static void *cache_alloc_refill(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657{
2658 int batchcount;
2659 struct kmem_list3 *l3;
2660 struct array_cache *ac;
2661
2662 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002663 ac = cpu_cache_get(cachep);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002664retry:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665 batchcount = ac->batchcount;
2666 if (!ac->touched && batchcount > BATCHREFILL_LIMIT) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002667 /*
2668 * If there was little recent activity on this cache, then
2669 * perform only a partial refill. Otherwise we could generate
2670 * refill bouncing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671 */
2672 batchcount = BATCHREFILL_LIMIT;
2673 }
Christoph Lametere498be72005-09-09 13:03:32 -07002674 l3 = cachep->nodelists[numa_node_id()];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675
Christoph Lametere498be72005-09-09 13:03:32 -07002676 BUG_ON(ac->avail > 0 || !l3);
2677 spin_lock(&l3->list_lock);
2678
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679 if (l3->shared) {
2680 struct array_cache *shared_array = l3->shared;
2681 if (shared_array->avail) {
2682 if (batchcount > shared_array->avail)
2683 batchcount = shared_array->avail;
2684 shared_array->avail -= batchcount;
2685 ac->avail = batchcount;
Christoph Lametere498be72005-09-09 13:03:32 -07002686 memcpy(ac->entry,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002687 &(shared_array->entry[shared_array->avail]),
2688 sizeof(void *) * batchcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689 shared_array->touched = 1;
2690 goto alloc_done;
2691 }
2692 }
2693 while (batchcount > 0) {
2694 struct list_head *entry;
2695 struct slab *slabp;
2696 /* Get slab alloc is to come from. */
2697 entry = l3->slabs_partial.next;
2698 if (entry == &l3->slabs_partial) {
2699 l3->free_touched = 1;
2700 entry = l3->slabs_free.next;
2701 if (entry == &l3->slabs_free)
2702 goto must_grow;
2703 }
2704
2705 slabp = list_entry(entry, struct slab, list);
2706 check_slabp(cachep, slabp);
2707 check_spinlock_acquired(cachep);
2708 while (slabp->inuse < cachep->num && batchcount--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709 STATS_INC_ALLOCED(cachep);
2710 STATS_INC_ACTIVE(cachep);
2711 STATS_SET_HIGH(cachep);
2712
Matthew Dobson78d382d2006-02-01 03:05:47 -08002713 ac->entry[ac->avail++] = slab_get_obj(cachep, slabp,
2714 numa_node_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715 }
2716 check_slabp(cachep, slabp);
2717
2718 /* move slabp to correct slabp list: */
2719 list_del(&slabp->list);
2720 if (slabp->free == BUFCTL_END)
2721 list_add(&slabp->list, &l3->slabs_full);
2722 else
2723 list_add(&slabp->list, &l3->slabs_partial);
2724 }
2725
Andrew Mortona737b3e2006-03-22 00:08:11 -08002726must_grow:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002727 l3->free_objects -= ac->avail;
Andrew Mortona737b3e2006-03-22 00:08:11 -08002728alloc_done:
Christoph Lametere498be72005-09-09 13:03:32 -07002729 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730
2731 if (unlikely(!ac->avail)) {
2732 int x;
Christoph Lametere498be72005-09-09 13:03:32 -07002733 x = cache_grow(cachep, flags, numa_node_id());
2734
Andrew Mortona737b3e2006-03-22 00:08:11 -08002735 /* cache_grow can reenable interrupts, then ac could change. */
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002736 ac = cpu_cache_get(cachep);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002737 if (!x && ac->avail == 0) /* no objects in sight? abort */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738 return NULL;
2739
Andrew Mortona737b3e2006-03-22 00:08:11 -08002740 if (!ac->avail) /* objects refilled by interrupt? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741 goto retry;
2742 }
2743 ac->touched = 1;
Christoph Lametere498be72005-09-09 13:03:32 -07002744 return ac->entry[--ac->avail];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745}
2746
Andrew Mortona737b3e2006-03-22 00:08:11 -08002747static inline void cache_alloc_debugcheck_before(struct kmem_cache *cachep,
2748 gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749{
2750 might_sleep_if(flags & __GFP_WAIT);
2751#if DEBUG
2752 kmem_flagcheck(cachep, flags);
2753#endif
2754}
2755
2756#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08002757static void *cache_alloc_debugcheck_after(struct kmem_cache *cachep,
2758 gfp_t flags, void *objp, void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002760 if (!objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761 return objp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002762 if (cachep->flags & SLAB_POISON) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763#ifdef CONFIG_DEBUG_PAGEALLOC
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002764 if ((cachep->buffer_size % PAGE_SIZE) == 0 && OFF_SLAB(cachep))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002765 kernel_map_pages(virt_to_page(objp),
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002766 cachep->buffer_size / PAGE_SIZE, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767 else
2768 check_poison_obj(cachep, objp);
2769#else
2770 check_poison_obj(cachep, objp);
2771#endif
2772 poison_obj(cachep, objp, POISON_INUSE);
2773 }
2774 if (cachep->flags & SLAB_STORE_USER)
2775 *dbg_userword(cachep, objp) = caller;
2776
2777 if (cachep->flags & SLAB_RED_ZONE) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002778 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE ||
2779 *dbg_redzone2(cachep, objp) != RED_INACTIVE) {
2780 slab_error(cachep, "double free, or memory outside"
2781 " object was overwritten");
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002782 printk(KERN_ERR
Andrew Mortona737b3e2006-03-22 00:08:11 -08002783 "%p: redzone 1:0x%lx, redzone 2:0x%lx\n",
2784 objp, *dbg_redzone1(cachep, objp),
2785 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786 }
2787 *dbg_redzone1(cachep, objp) = RED_ACTIVE;
2788 *dbg_redzone2(cachep, objp) = RED_ACTIVE;
2789 }
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002790 objp += obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791 if (cachep->ctor && cachep->flags & SLAB_POISON) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002792 unsigned long ctor_flags = SLAB_CTOR_CONSTRUCTOR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793
2794 if (!(flags & __GFP_WAIT))
2795 ctor_flags |= SLAB_CTOR_ATOMIC;
2796
2797 cachep->ctor(objp, cachep, ctor_flags);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002798 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799 return objp;
2800}
2801#else
2802#define cache_alloc_debugcheck_after(a,b,objp,d) (objp)
2803#endif
2804
Pekka Enberg343e0d72006-02-01 03:05:50 -08002805static inline void *____cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002807 void *objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002808 struct array_cache *ac;
2809
Christoph Lameterdc85da12006-01-18 17:42:36 -08002810#ifdef CONFIG_NUMA
Christoph Lameter86c562a2006-01-18 17:42:37 -08002811 if (unlikely(current->mempolicy && !in_interrupt())) {
Christoph Lameterdc85da12006-01-18 17:42:36 -08002812 int nid = slab_node(current->mempolicy);
2813
2814 if (nid != numa_node_id())
2815 return __cache_alloc_node(cachep, flags, nid);
2816 }
2817#endif
2818
Alok N Kataria5c382302005-09-27 21:45:46 -07002819 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002820 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821 if (likely(ac->avail)) {
2822 STATS_INC_ALLOCHIT(cachep);
2823 ac->touched = 1;
Christoph Lametere498be72005-09-09 13:03:32 -07002824 objp = ac->entry[--ac->avail];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825 } else {
2826 STATS_INC_ALLOCMISS(cachep);
2827 objp = cache_alloc_refill(cachep, flags);
2828 }
Alok N Kataria5c382302005-09-27 21:45:46 -07002829 return objp;
2830}
2831
Andrew Mortona737b3e2006-03-22 00:08:11 -08002832static __always_inline void *__cache_alloc(struct kmem_cache *cachep,
2833 gfp_t flags, void *caller)
Alok N Kataria5c382302005-09-27 21:45:46 -07002834{
2835 unsigned long save_flags;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002836 void *objp;
Alok N Kataria5c382302005-09-27 21:45:46 -07002837
2838 cache_alloc_debugcheck_before(cachep, flags);
2839
2840 local_irq_save(save_flags);
2841 objp = ____cache_alloc(cachep, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842 local_irq_restore(save_flags);
Eric Dumazet34342e82005-09-03 15:55:06 -07002843 objp = cache_alloc_debugcheck_after(cachep, flags, objp,
Pekka Enberg7fd6b142006-02-01 03:05:52 -08002844 caller);
Eric Dumazet34342e82005-09-03 15:55:06 -07002845 prefetchw(objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846 return objp;
2847}
2848
Christoph Lametere498be72005-09-09 13:03:32 -07002849#ifdef CONFIG_NUMA
2850/*
2851 * A interface to enable slab creation on nodeid
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002853static void *__cache_alloc_node(struct kmem_cache *cachep, gfp_t flags,
2854 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07002855{
2856 struct list_head *entry;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002857 struct slab *slabp;
2858 struct kmem_list3 *l3;
2859 void *obj;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002860 int x;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002862 l3 = cachep->nodelists[nodeid];
2863 BUG_ON(!l3);
Christoph Lametere498be72005-09-09 13:03:32 -07002864
Andrew Mortona737b3e2006-03-22 00:08:11 -08002865retry:
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08002866 check_irq_off();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002867 spin_lock(&l3->list_lock);
2868 entry = l3->slabs_partial.next;
2869 if (entry == &l3->slabs_partial) {
2870 l3->free_touched = 1;
2871 entry = l3->slabs_free.next;
2872 if (entry == &l3->slabs_free)
2873 goto must_grow;
2874 }
Christoph Lametere498be72005-09-09 13:03:32 -07002875
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002876 slabp = list_entry(entry, struct slab, list);
2877 check_spinlock_acquired_node(cachep, nodeid);
2878 check_slabp(cachep, slabp);
Christoph Lametere498be72005-09-09 13:03:32 -07002879
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002880 STATS_INC_NODEALLOCS(cachep);
2881 STATS_INC_ACTIVE(cachep);
2882 STATS_SET_HIGH(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07002883
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002884 BUG_ON(slabp->inuse == cachep->num);
Christoph Lametere498be72005-09-09 13:03:32 -07002885
Matthew Dobson78d382d2006-02-01 03:05:47 -08002886 obj = slab_get_obj(cachep, slabp, nodeid);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002887 check_slabp(cachep, slabp);
2888 l3->free_objects--;
2889 /* move slabp to correct slabp list: */
2890 list_del(&slabp->list);
Christoph Lametere498be72005-09-09 13:03:32 -07002891
Andrew Mortona737b3e2006-03-22 00:08:11 -08002892 if (slabp->free == BUFCTL_END)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002893 list_add(&slabp->list, &l3->slabs_full);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002894 else
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002895 list_add(&slabp->list, &l3->slabs_partial);
Christoph Lametere498be72005-09-09 13:03:32 -07002896
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002897 spin_unlock(&l3->list_lock);
2898 goto done;
Christoph Lametere498be72005-09-09 13:03:32 -07002899
Andrew Mortona737b3e2006-03-22 00:08:11 -08002900must_grow:
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002901 spin_unlock(&l3->list_lock);
2902 x = cache_grow(cachep, flags, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07002903
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002904 if (!x)
2905 return NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07002906
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002907 goto retry;
Andrew Mortona737b3e2006-03-22 00:08:11 -08002908done:
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002909 return obj;
Christoph Lametere498be72005-09-09 13:03:32 -07002910}
2911#endif
2912
2913/*
2914 * Caller needs to acquire correct kmem_list's list_lock
2915 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002916static void free_block(struct kmem_cache *cachep, void **objpp, int nr_objects,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002917 int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918{
2919 int i;
Christoph Lametere498be72005-09-09 13:03:32 -07002920 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921
2922 for (i = 0; i < nr_objects; i++) {
2923 void *objp = objpp[i];
2924 struct slab *slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08002926 slabp = virt_to_slab(objp);
Christoph Lameterff694162005-09-22 21:44:02 -07002927 l3 = cachep->nodelists[node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928 list_del(&slabp->list);
Christoph Lameterff694162005-09-22 21:44:02 -07002929 check_spinlock_acquired_node(cachep, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930 check_slabp(cachep, slabp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002931 slab_put_obj(cachep, slabp, objp, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932 STATS_DEC_ACTIVE(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07002933 l3->free_objects++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934 check_slabp(cachep, slabp);
2935
2936 /* fixup slab chains */
2937 if (slabp->inuse == 0) {
Christoph Lametere498be72005-09-09 13:03:32 -07002938 if (l3->free_objects > l3->free_limit) {
2939 l3->free_objects -= cachep->num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940 slab_destroy(cachep, slabp);
2941 } else {
Christoph Lametere498be72005-09-09 13:03:32 -07002942 list_add(&slabp->list, &l3->slabs_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943 }
2944 } else {
2945 /* Unconditionally move a slab to the end of the
2946 * partial list on free - maximum time for the
2947 * other objects to be freed, too.
2948 */
Christoph Lametere498be72005-09-09 13:03:32 -07002949 list_add_tail(&slabp->list, &l3->slabs_partial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950 }
2951 }
2952}
2953
Pekka Enberg343e0d72006-02-01 03:05:50 -08002954static void cache_flusharray(struct kmem_cache *cachep, struct array_cache *ac)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955{
2956 int batchcount;
Christoph Lametere498be72005-09-09 13:03:32 -07002957 struct kmem_list3 *l3;
Christoph Lameterff694162005-09-22 21:44:02 -07002958 int node = numa_node_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959
2960 batchcount = ac->batchcount;
2961#if DEBUG
2962 BUG_ON(!batchcount || batchcount > ac->avail);
2963#endif
2964 check_irq_off();
Christoph Lameterff694162005-09-22 21:44:02 -07002965 l3 = cachep->nodelists[node];
Christoph Lametere498be72005-09-09 13:03:32 -07002966 spin_lock(&l3->list_lock);
2967 if (l3->shared) {
2968 struct array_cache *shared_array = l3->shared;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002969 int max = shared_array->limit - shared_array->avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970 if (max) {
2971 if (batchcount > max)
2972 batchcount = max;
Christoph Lametere498be72005-09-09 13:03:32 -07002973 memcpy(&(shared_array->entry[shared_array->avail]),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002974 ac->entry, sizeof(void *) * batchcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975 shared_array->avail += batchcount;
2976 goto free_done;
2977 }
2978 }
2979
Christoph Lameterff694162005-09-22 21:44:02 -07002980 free_block(cachep, ac->entry, batchcount, node);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002981free_done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982#if STATS
2983 {
2984 int i = 0;
2985 struct list_head *p;
2986
Christoph Lametere498be72005-09-09 13:03:32 -07002987 p = l3->slabs_free.next;
2988 while (p != &(l3->slabs_free)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989 struct slab *slabp;
2990
2991 slabp = list_entry(p, struct slab, list);
2992 BUG_ON(slabp->inuse);
2993
2994 i++;
2995 p = p->next;
2996 }
2997 STATS_SET_FREEABLE(cachep, i);
2998 }
2999#endif
Christoph Lametere498be72005-09-09 13:03:32 -07003000 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003001 ac->avail -= batchcount;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003002 memmove(ac->entry, &(ac->entry[batchcount]), sizeof(void *)*ac->avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003}
3004
3005/*
Andrew Mortona737b3e2006-03-22 00:08:11 -08003006 * Release an obj back to its cache. If the obj has a constructed state, it must
3007 * be in this state _before_ it is released. Called with disabled ints.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003009static inline void __cache_free(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010{
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003011 struct array_cache *ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012
3013 check_irq_off();
3014 objp = cache_free_debugcheck(cachep, objp, __builtin_return_address(0));
3015
Christoph Lametere498be72005-09-09 13:03:32 -07003016 /* Make sure we are not freeing a object from another
3017 * node to the array cache on this cpu.
3018 */
3019#ifdef CONFIG_NUMA
3020 {
3021 struct slab *slabp;
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08003022 slabp = virt_to_slab(objp);
Christoph Lametere498be72005-09-09 13:03:32 -07003023 if (unlikely(slabp->nodeid != numa_node_id())) {
3024 struct array_cache *alien = NULL;
3025 int nodeid = slabp->nodeid;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003026 struct kmem_list3 *l3;
Christoph Lametere498be72005-09-09 13:03:32 -07003027
Andrew Mortona737b3e2006-03-22 00:08:11 -08003028 l3 = cachep->nodelists[numa_node_id()];
Christoph Lametere498be72005-09-09 13:03:32 -07003029 STATS_INC_NODEFREES(cachep);
3030 if (l3->alien && l3->alien[nodeid]) {
3031 alien = l3->alien[nodeid];
3032 spin_lock(&alien->lock);
3033 if (unlikely(alien->avail == alien->limit))
3034 __drain_alien_cache(cachep,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003035 alien, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07003036 alien->entry[alien->avail++] = objp;
3037 spin_unlock(&alien->lock);
3038 } else {
3039 spin_lock(&(cachep->nodelists[nodeid])->
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003040 list_lock);
Christoph Lameterff694162005-09-22 21:44:02 -07003041 free_block(cachep, &objp, 1, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07003042 spin_unlock(&(cachep->nodelists[nodeid])->
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003043 list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07003044 }
3045 return;
3046 }
3047 }
3048#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049 if (likely(ac->avail < ac->limit)) {
3050 STATS_INC_FREEHIT(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003051 ac->entry[ac->avail++] = objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052 return;
3053 } else {
3054 STATS_INC_FREEMISS(cachep);
3055 cache_flusharray(cachep, ac);
Christoph Lametere498be72005-09-09 13:03:32 -07003056 ac->entry[ac->avail++] = objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057 }
3058}
3059
3060/**
3061 * kmem_cache_alloc - Allocate an object
3062 * @cachep: The cache to allocate from.
3063 * @flags: See kmalloc().
3064 *
3065 * Allocate an object from this cache. The flags are only relevant
3066 * if the cache has no available objects.
3067 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003068void *kmem_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069{
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003070 return __cache_alloc(cachep, flags, __builtin_return_address(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071}
3072EXPORT_SYMBOL(kmem_cache_alloc);
3073
3074/**
3075 * kmem_ptr_validate - check if an untrusted pointer might
3076 * be a slab entry.
3077 * @cachep: the cache we're checking against
3078 * @ptr: pointer to validate
3079 *
3080 * This verifies that the untrusted pointer looks sane:
3081 * it is _not_ a guarantee that the pointer is actually
3082 * part of the slab cache in question, but it at least
3083 * validates that the pointer can be dereferenced and
3084 * looks half-way sane.
3085 *
3086 * Currently only used for dentry validation.
3087 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003088int fastcall kmem_ptr_validate(struct kmem_cache *cachep, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003090 unsigned long addr = (unsigned long)ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091 unsigned long min_addr = PAGE_OFFSET;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003092 unsigned long align_mask = BYTES_PER_WORD - 1;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003093 unsigned long size = cachep->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094 struct page *page;
3095
3096 if (unlikely(addr < min_addr))
3097 goto out;
3098 if (unlikely(addr > (unsigned long)high_memory - size))
3099 goto out;
3100 if (unlikely(addr & align_mask))
3101 goto out;
3102 if (unlikely(!kern_addr_valid(addr)))
3103 goto out;
3104 if (unlikely(!kern_addr_valid(addr + size - 1)))
3105 goto out;
3106 page = virt_to_page(ptr);
3107 if (unlikely(!PageSlab(page)))
3108 goto out;
Pekka Enberg065d41c2005-11-13 16:06:46 -08003109 if (unlikely(page_get_cache(page) != cachep))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110 goto out;
3111 return 1;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003112out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113 return 0;
3114}
3115
3116#ifdef CONFIG_NUMA
3117/**
3118 * kmem_cache_alloc_node - Allocate an object on the specified node
3119 * @cachep: The cache to allocate from.
3120 * @flags: See kmalloc().
3121 * @nodeid: node number of the target node.
3122 *
3123 * Identical to kmem_cache_alloc, except that this function is slow
3124 * and can sleep. And it will allocate memory on the given node, which
3125 * can improve the performance for cpu bound structures.
Christoph Lametere498be72005-09-09 13:03:32 -07003126 * New and improved: it will now make sure that the object gets
3127 * put on the correct node list so that there is no false sharing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003129void *kmem_cache_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130{
Christoph Lametere498be72005-09-09 13:03:32 -07003131 unsigned long save_flags;
3132 void *ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133
Christoph Lametere498be72005-09-09 13:03:32 -07003134 cache_alloc_debugcheck_before(cachep, flags);
3135 local_irq_save(save_flags);
Christoph Lameter18f820f2006-02-01 03:05:43 -08003136
3137 if (nodeid == -1 || nodeid == numa_node_id() ||
Andrew Mortona737b3e2006-03-22 00:08:11 -08003138 !cachep->nodelists[nodeid])
Alok N Kataria5c382302005-09-27 21:45:46 -07003139 ptr = ____cache_alloc(cachep, flags);
3140 else
3141 ptr = __cache_alloc_node(cachep, flags, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07003142 local_irq_restore(save_flags);
Christoph Lameter18f820f2006-02-01 03:05:43 -08003143
3144 ptr = cache_alloc_debugcheck_after(cachep, flags, ptr,
3145 __builtin_return_address(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146
Christoph Lametere498be72005-09-09 13:03:32 -07003147 return ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003148}
3149EXPORT_SYMBOL(kmem_cache_alloc_node);
3150
Al Virodd0fc662005-10-07 07:46:04 +01003151void *kmalloc_node(size_t size, gfp_t flags, int node)
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003152{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003153 struct kmem_cache *cachep;
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003154
3155 cachep = kmem_find_general_cachep(size, flags);
3156 if (unlikely(cachep == NULL))
3157 return NULL;
3158 return kmem_cache_alloc_node(cachep, flags, node);
3159}
3160EXPORT_SYMBOL(kmalloc_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161#endif
3162
3163/**
3164 * kmalloc - allocate memory
3165 * @size: how many bytes of memory are required.
3166 * @flags: the type of memory to allocate.
Randy Dunlap911851e2006-03-22 00:08:14 -08003167 * @caller: function caller for debug tracking of the caller
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168 *
3169 * kmalloc is the normal method of allocating memory
3170 * in the kernel.
3171 *
3172 * The @flags argument may be one of:
3173 *
3174 * %GFP_USER - Allocate memory on behalf of user. May sleep.
3175 *
3176 * %GFP_KERNEL - Allocate normal kernel ram. May sleep.
3177 *
3178 * %GFP_ATOMIC - Allocation will not sleep. Use inside interrupt handlers.
3179 *
3180 * Additionally, the %GFP_DMA flag may be set to indicate the memory
3181 * must be suitable for DMA. This can mean different things on different
3182 * platforms. For example, on i386, it means that the memory must come
3183 * from the first 16MB.
3184 */
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003185static __always_inline void *__do_kmalloc(size_t size, gfp_t flags,
3186 void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003188 struct kmem_cache *cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003190 /* If you want to save a few bytes .text space: replace
3191 * __ with kmem_.
3192 * Then kmalloc uses the uninlined functions instead of the inline
3193 * functions.
3194 */
3195 cachep = __find_general_cachep(size, flags);
Andrew Mortondbdb9042005-09-23 13:24:10 -07003196 if (unlikely(cachep == NULL))
3197 return NULL;
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003198 return __cache_alloc(cachep, flags, caller);
3199}
3200
3201#ifndef CONFIG_DEBUG_SLAB
3202
3203void *__kmalloc(size_t size, gfp_t flags)
3204{
3205 return __do_kmalloc(size, flags, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003206}
3207EXPORT_SYMBOL(__kmalloc);
3208
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003209#else
3210
3211void *__kmalloc_track_caller(size_t size, gfp_t flags, void *caller)
3212{
3213 return __do_kmalloc(size, flags, caller);
3214}
3215EXPORT_SYMBOL(__kmalloc_track_caller);
3216
3217#endif
3218
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219#ifdef CONFIG_SMP
3220/**
3221 * __alloc_percpu - allocate one copy of the object for every present
3222 * cpu in the system, zeroing them.
3223 * Objects should be dereferenced using the per_cpu_ptr macro only.
3224 *
3225 * @size: how many bytes of memory are required.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226 */
Pekka Enbergf9f75002006-01-08 01:00:33 -08003227void *__alloc_percpu(size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228{
3229 int i;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003230 struct percpu_data *pdata = kmalloc(sizeof(*pdata), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231
3232 if (!pdata)
3233 return NULL;
3234
Christoph Lametere498be72005-09-09 13:03:32 -07003235 /*
3236 * Cannot use for_each_online_cpu since a cpu may come online
3237 * and we have no way of figuring out how to fix the array
3238 * that we have allocated then....
3239 */
3240 for_each_cpu(i) {
3241 int node = cpu_to_node(i);
3242
3243 if (node_online(node))
3244 pdata->ptrs[i] = kmalloc_node(size, GFP_KERNEL, node);
3245 else
3246 pdata->ptrs[i] = kmalloc(size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003247
3248 if (!pdata->ptrs[i])
3249 goto unwind_oom;
3250 memset(pdata->ptrs[i], 0, size);
3251 }
3252
3253 /* Catch derefs w/o wrappers */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003254 return (void *)(~(unsigned long)pdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255
Andrew Mortona737b3e2006-03-22 00:08:11 -08003256unwind_oom:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257 while (--i >= 0) {
3258 if (!cpu_possible(i))
3259 continue;
3260 kfree(pdata->ptrs[i]);
3261 }
3262 kfree(pdata);
3263 return NULL;
3264}
3265EXPORT_SYMBOL(__alloc_percpu);
3266#endif
3267
3268/**
3269 * kmem_cache_free - Deallocate an object
3270 * @cachep: The cache the allocation was from.
3271 * @objp: The previously allocated object.
3272 *
3273 * Free an object which was previously allocated from this
3274 * cache.
3275 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003276void kmem_cache_free(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277{
3278 unsigned long flags;
3279
3280 local_irq_save(flags);
3281 __cache_free(cachep, objp);
3282 local_irq_restore(flags);
3283}
3284EXPORT_SYMBOL(kmem_cache_free);
3285
3286/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003287 * kfree - free previously allocated memory
3288 * @objp: pointer returned by kmalloc.
3289 *
Pekka Enberg80e93ef2005-09-09 13:10:16 -07003290 * If @objp is NULL, no operation is performed.
3291 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292 * Don't free memory not originally allocated by kmalloc()
3293 * or you will run into trouble.
3294 */
3295void kfree(const void *objp)
3296{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003297 struct kmem_cache *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298 unsigned long flags;
3299
3300 if (unlikely(!objp))
3301 return;
3302 local_irq_save(flags);
3303 kfree_debugcheck(objp);
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08003304 c = virt_to_cache(objp);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003305 mutex_debug_check_no_locks_freed(objp, obj_size(c));
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003306 __cache_free(c, (void *)objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307 local_irq_restore(flags);
3308}
3309EXPORT_SYMBOL(kfree);
3310
3311#ifdef CONFIG_SMP
3312/**
3313 * free_percpu - free previously allocated percpu memory
3314 * @objp: pointer returned by alloc_percpu.
3315 *
3316 * Don't free memory not originally allocated by alloc_percpu()
3317 * The complemented objp is to check for that.
3318 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003319void free_percpu(const void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320{
3321 int i;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003322 struct percpu_data *p = (struct percpu_data *)(~(unsigned long)objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003323
Christoph Lametere498be72005-09-09 13:03:32 -07003324 /*
3325 * We allocate for all cpus so we cannot use for online cpu here.
3326 */
3327 for_each_cpu(i)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003328 kfree(p->ptrs[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329 kfree(p);
3330}
3331EXPORT_SYMBOL(free_percpu);
3332#endif
3333
Pekka Enberg343e0d72006-02-01 03:05:50 -08003334unsigned int kmem_cache_size(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335{
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003336 return obj_size(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337}
3338EXPORT_SYMBOL(kmem_cache_size);
3339
Pekka Enberg343e0d72006-02-01 03:05:50 -08003340const char *kmem_cache_name(struct kmem_cache *cachep)
Arnaldo Carvalho de Melo19449722005-06-18 22:46:19 -07003341{
3342 return cachep->name;
3343}
3344EXPORT_SYMBOL_GPL(kmem_cache_name);
3345
Christoph Lametere498be72005-09-09 13:03:32 -07003346/*
3347 * This initializes kmem_list3 for all nodes.
3348 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003349static int alloc_kmemlist(struct kmem_cache *cachep)
Christoph Lametere498be72005-09-09 13:03:32 -07003350{
3351 int node;
3352 struct kmem_list3 *l3;
3353 int err = 0;
3354
3355 for_each_online_node(node) {
3356 struct array_cache *nc = NULL, *new;
3357 struct array_cache **new_alien = NULL;
3358#ifdef CONFIG_NUMA
Andrew Mortona737b3e2006-03-22 00:08:11 -08003359 new_alien = alloc_alien_cache(node, cachep->limit);
3360 if (!new_alien)
Christoph Lametere498be72005-09-09 13:03:32 -07003361 goto fail;
3362#endif
Andrew Mortona737b3e2006-03-22 00:08:11 -08003363 new = alloc_arraycache(node, cachep->shared*cachep->batchcount,
3364 0xbaadf00d);
3365 if (!new)
Christoph Lametere498be72005-09-09 13:03:32 -07003366 goto fail;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003367 l3 = cachep->nodelists[node];
3368 if (l3) {
Christoph Lametere498be72005-09-09 13:03:32 -07003369 spin_lock_irq(&l3->list_lock);
3370
Andrew Mortona737b3e2006-03-22 00:08:11 -08003371 nc = cachep->nodelists[node]->shared;
3372 if (nc)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003373 free_block(cachep, nc->entry, nc->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -07003374
3375 l3->shared = new;
3376 if (!cachep->nodelists[node]->alien) {
3377 l3->alien = new_alien;
3378 new_alien = NULL;
3379 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003380 l3->free_limit = (1 + nr_cpus_node(node)) *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003381 cachep->batchcount + cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07003382 spin_unlock_irq(&l3->list_lock);
3383 kfree(nc);
3384 free_alien_cache(new_alien);
3385 continue;
3386 }
Andrew Mortona737b3e2006-03-22 00:08:11 -08003387 l3 = kmalloc_node(sizeof(struct kmem_list3), GFP_KERNEL, node);
3388 if (!l3)
Christoph Lametere498be72005-09-09 13:03:32 -07003389 goto fail;
3390
3391 kmem_list3_init(l3);
3392 l3->next_reap = jiffies + REAPTIMEOUT_LIST3 +
Andrew Mortona737b3e2006-03-22 00:08:11 -08003393 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
Christoph Lametere498be72005-09-09 13:03:32 -07003394 l3->shared = new;
3395 l3->alien = new_alien;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003396 l3->free_limit = (1 + nr_cpus_node(node)) *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003397 cachep->batchcount + cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07003398 cachep->nodelists[node] = l3;
3399 }
3400 return err;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003401fail:
Christoph Lametere498be72005-09-09 13:03:32 -07003402 err = -ENOMEM;
3403 return err;
3404}
3405
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406struct ccupdate_struct {
Pekka Enberg343e0d72006-02-01 03:05:50 -08003407 struct kmem_cache *cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408 struct array_cache *new[NR_CPUS];
3409};
3410
3411static void do_ccupdate_local(void *info)
3412{
Andrew Mortona737b3e2006-03-22 00:08:11 -08003413 struct ccupdate_struct *new = info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414 struct array_cache *old;
3415
3416 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003417 old = cpu_cache_get(new->cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003418
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419 new->cachep->array[smp_processor_id()] = new->new[smp_processor_id()];
3420 new->new[smp_processor_id()] = old;
3421}
3422
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -08003423/* Always called with the cache_chain_mutex held */
Andrew Mortona737b3e2006-03-22 00:08:11 -08003424static int do_tune_cpucache(struct kmem_cache *cachep, int limit,
3425 int batchcount, int shared)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426{
3427 struct ccupdate_struct new;
Christoph Lametere498be72005-09-09 13:03:32 -07003428 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003429
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003430 memset(&new.new, 0, sizeof(new.new));
Christoph Lametere498be72005-09-09 13:03:32 -07003431 for_each_online_cpu(i) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08003432 new.new[i] = alloc_arraycache(cpu_to_node(i), limit,
3433 batchcount);
Christoph Lametere498be72005-09-09 13:03:32 -07003434 if (!new.new[i]) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003435 for (i--; i >= 0; i--)
3436 kfree(new.new[i]);
Christoph Lametere498be72005-09-09 13:03:32 -07003437 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438 }
3439 }
3440 new.cachep = cachep;
3441
Andrew Mortona07fa392006-03-22 00:08:17 -08003442 on_each_cpu(do_ccupdate_local, (void *)&new, 1, 1);
Christoph Lametere498be72005-09-09 13:03:32 -07003443
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444 check_irq_on();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445 cachep->batchcount = batchcount;
3446 cachep->limit = limit;
Christoph Lametere498be72005-09-09 13:03:32 -07003447 cachep->shared = shared;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448
Christoph Lametere498be72005-09-09 13:03:32 -07003449 for_each_online_cpu(i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450 struct array_cache *ccold = new.new[i];
3451 if (!ccold)
3452 continue;
Christoph Lametere498be72005-09-09 13:03:32 -07003453 spin_lock_irq(&cachep->nodelists[cpu_to_node(i)]->list_lock);
Christoph Lameterff694162005-09-22 21:44:02 -07003454 free_block(cachep, ccold->entry, ccold->avail, cpu_to_node(i));
Christoph Lametere498be72005-09-09 13:03:32 -07003455 spin_unlock_irq(&cachep->nodelists[cpu_to_node(i)]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003456 kfree(ccold);
3457 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003458
Christoph Lametere498be72005-09-09 13:03:32 -07003459 err = alloc_kmemlist(cachep);
3460 if (err) {
3461 printk(KERN_ERR "alloc_kmemlist failed for %s, error %d.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003462 cachep->name, -err);
Christoph Lametere498be72005-09-09 13:03:32 -07003463 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003464 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465 return 0;
3466}
3467
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -08003468/* Called with cache_chain_mutex held always */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003469static void enable_cpucache(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470{
3471 int err;
3472 int limit, shared;
3473
Andrew Mortona737b3e2006-03-22 00:08:11 -08003474 /*
3475 * The head array serves three purposes:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476 * - create a LIFO ordering, i.e. return objects that are cache-warm
3477 * - reduce the number of spinlock operations.
Andrew Mortona737b3e2006-03-22 00:08:11 -08003478 * - reduce the number of linked list operations on the slab and
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479 * bufctl chains: array operations are cheaper.
3480 * The numbers are guessed, we should auto-tune as described by
3481 * Bonwick.
3482 */
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003483 if (cachep->buffer_size > 131072)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484 limit = 1;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003485 else if (cachep->buffer_size > PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486 limit = 8;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003487 else if (cachep->buffer_size > 1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488 limit = 24;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003489 else if (cachep->buffer_size > 256)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490 limit = 54;
3491 else
3492 limit = 120;
3493
Andrew Mortona737b3e2006-03-22 00:08:11 -08003494 /*
3495 * CPU bound tasks (e.g. network routing) can exhibit cpu bound
Linus Torvalds1da177e2005-04-16 15:20:36 -07003496 * allocation behaviour: Most allocs on one cpu, most free operations
3497 * on another cpu. For these cases, an efficient object passing between
3498 * cpus is necessary. This is provided by a shared array. The array
3499 * replaces Bonwick's magazine layer.
3500 * On uniprocessor, it's functionally equivalent (but less efficient)
3501 * to a larger limit. Thus disabled by default.
3502 */
3503 shared = 0;
3504#ifdef CONFIG_SMP
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003505 if (cachep->buffer_size <= PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506 shared = 8;
3507#endif
3508
3509#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08003510 /*
3511 * With debugging enabled, large batchcount lead to excessively long
3512 * periods with disabled local interrupts. Limit the batchcount
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513 */
3514 if (limit > 32)
3515 limit = 32;
3516#endif
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003517 err = do_tune_cpucache(cachep, limit, (limit + 1) / 2, shared);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518 if (err)
3519 printk(KERN_ERR "enable_cpucache failed for %s, error %d.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003520 cachep->name, -err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521}
3522
Andrew Mortona737b3e2006-03-22 00:08:11 -08003523static void drain_array_locked(struct kmem_cache *cachep,
3524 struct array_cache *ac, int force, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003525{
3526 int tofree;
3527
Christoph Lametere498be72005-09-09 13:03:32 -07003528 check_spinlock_acquired_node(cachep, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529 if (ac->touched && !force) {
3530 ac->touched = 0;
3531 } else if (ac->avail) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003532 tofree = force ? ac->avail : (ac->limit + 4) / 5;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003533 if (tofree > ac->avail)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003534 tofree = (ac->avail + 1) / 2;
Christoph Lameterff694162005-09-22 21:44:02 -07003535 free_block(cachep, ac->entry, tofree, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003536 ac->avail -= tofree;
Christoph Lametere498be72005-09-09 13:03:32 -07003537 memmove(ac->entry, &(ac->entry[tofree]),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003538 sizeof(void *) * ac->avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003539 }
3540}
3541
3542/**
3543 * cache_reap - Reclaim memory from caches.
Randy Dunlap1e5d5332005-11-07 01:01:06 -08003544 * @unused: unused parameter
Linus Torvalds1da177e2005-04-16 15:20:36 -07003545 *
3546 * Called from workqueue/eventd every few seconds.
3547 * Purpose:
3548 * - clear the per-cpu caches for this CPU.
3549 * - return freeable pages to the main free memory pool.
3550 *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003551 * If we cannot acquire the cache chain mutex then just give up - we'll try
3552 * again on the next iteration.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553 */
3554static void cache_reap(void *unused)
3555{
3556 struct list_head *walk;
Christoph Lametere498be72005-09-09 13:03:32 -07003557 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003558
Ingo Molnarfc0abb12006-01-18 17:42:33 -08003559 if (!mutex_trylock(&cache_chain_mutex)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560 /* Give up. Setup the next iteration. */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003561 schedule_delayed_work(&__get_cpu_var(reap_work),
3562 REAPTIMEOUT_CPUC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563 return;
3564 }
3565
3566 list_for_each(walk, &cache_chain) {
Pekka Enberg343e0d72006-02-01 03:05:50 -08003567 struct kmem_cache *searchp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003568 struct list_head *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003569 int tofree;
3570 struct slab *slabp;
3571
Pekka Enberg343e0d72006-02-01 03:05:50 -08003572 searchp = list_entry(walk, struct kmem_cache, next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003573 check_irq_on();
3574
Christoph Lametere498be72005-09-09 13:03:32 -07003575 l3 = searchp->nodelists[numa_node_id()];
Christoph Lameter8fce4d82006-03-09 17:33:54 -08003576 reap_alien(searchp, l3);
Christoph Lametere498be72005-09-09 13:03:32 -07003577 spin_lock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003579 drain_array_locked(searchp, cpu_cache_get(searchp), 0,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003580 numa_node_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581
Christoph Lametere498be72005-09-09 13:03:32 -07003582 if (time_after(l3->next_reap, jiffies))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003583 goto next_unlock;
3584
Christoph Lametere498be72005-09-09 13:03:32 -07003585 l3->next_reap = jiffies + REAPTIMEOUT_LIST3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003586
Christoph Lametere498be72005-09-09 13:03:32 -07003587 if (l3->shared)
3588 drain_array_locked(searchp, l3->shared, 0,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003589 numa_node_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590
Christoph Lametere498be72005-09-09 13:03:32 -07003591 if (l3->free_touched) {
3592 l3->free_touched = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593 goto next_unlock;
3594 }
3595
Andrew Mortona737b3e2006-03-22 00:08:11 -08003596 tofree = (l3->free_limit + 5 * searchp->num - 1) /
3597 (5 * searchp->num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003598 do {
Christoph Lametere498be72005-09-09 13:03:32 -07003599 p = l3->slabs_free.next;
3600 if (p == &(l3->slabs_free))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003601 break;
3602
3603 slabp = list_entry(p, struct slab, list);
3604 BUG_ON(slabp->inuse);
3605 list_del(&slabp->list);
3606 STATS_INC_REAPED(searchp);
3607
Andrew Mortona737b3e2006-03-22 00:08:11 -08003608 /*
3609 * Safe to drop the lock. The slab is no longer linked
3610 * to the cache. searchp cannot disappear, we hold
Linus Torvalds1da177e2005-04-16 15:20:36 -07003611 * cache_chain_lock
3612 */
Christoph Lametere498be72005-09-09 13:03:32 -07003613 l3->free_objects -= searchp->num;
3614 spin_unlock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615 slab_destroy(searchp, slabp);
Christoph Lametere498be72005-09-09 13:03:32 -07003616 spin_lock_irq(&l3->list_lock);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003617 } while (--tofree > 0);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003618next_unlock:
Christoph Lametere498be72005-09-09 13:03:32 -07003619 spin_unlock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620 cond_resched();
3621 }
3622 check_irq_on();
Ingo Molnarfc0abb12006-01-18 17:42:33 -08003623 mutex_unlock(&cache_chain_mutex);
Christoph Lameter8fce4d82006-03-09 17:33:54 -08003624 next_reap_node();
Andrew Mortona737b3e2006-03-22 00:08:11 -08003625 /* Set up the next iteration */
Manfred Spraulcd61ef62005-11-07 00:58:02 -08003626 schedule_delayed_work(&__get_cpu_var(reap_work), REAPTIMEOUT_CPUC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627}
3628
3629#ifdef CONFIG_PROC_FS
3630
Pekka Enberg85289f92006-01-08 01:00:36 -08003631static void print_slabinfo_header(struct seq_file *m)
3632{
3633 /*
3634 * Output format version, so at least we can change it
3635 * without _too_ many complaints.
3636 */
3637#if STATS
3638 seq_puts(m, "slabinfo - version: 2.1 (statistics)\n");
3639#else
3640 seq_puts(m, "slabinfo - version: 2.1\n");
3641#endif
3642 seq_puts(m, "# name <active_objs> <num_objs> <objsize> "
3643 "<objperslab> <pagesperslab>");
3644 seq_puts(m, " : tunables <limit> <batchcount> <sharedfactor>");
3645 seq_puts(m, " : slabdata <active_slabs> <num_slabs> <sharedavail>");
3646#if STATS
3647 seq_puts(m, " : globalstat <listallocs> <maxobjs> <grown> <reaped> "
3648 "<error> <maxfreeable> <nodeallocs> <remotefrees>");
3649 seq_puts(m, " : cpustat <allochit> <allocmiss> <freehit> <freemiss>");
3650#endif
3651 seq_putc(m, '\n');
3652}
3653
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654static void *s_start(struct seq_file *m, loff_t *pos)
3655{
3656 loff_t n = *pos;
3657 struct list_head *p;
3658
Ingo Molnarfc0abb12006-01-18 17:42:33 -08003659 mutex_lock(&cache_chain_mutex);
Pekka Enberg85289f92006-01-08 01:00:36 -08003660 if (!n)
3661 print_slabinfo_header(m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003662 p = cache_chain.next;
3663 while (n--) {
3664 p = p->next;
3665 if (p == &cache_chain)
3666 return NULL;
3667 }
Pekka Enberg343e0d72006-02-01 03:05:50 -08003668 return list_entry(p, struct kmem_cache, next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003669}
3670
3671static void *s_next(struct seq_file *m, void *p, loff_t *pos)
3672{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003673 struct kmem_cache *cachep = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674 ++*pos;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003675 return cachep->next.next == &cache_chain ?
3676 NULL : list_entry(cachep->next.next, struct kmem_cache, next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003677}
3678
3679static void s_stop(struct seq_file *m, void *p)
3680{
Ingo Molnarfc0abb12006-01-18 17:42:33 -08003681 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003682}
3683
3684static int s_show(struct seq_file *m, void *p)
3685{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003686 struct kmem_cache *cachep = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003687 struct list_head *q;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003688 struct slab *slabp;
3689 unsigned long active_objs;
3690 unsigned long num_objs;
3691 unsigned long active_slabs = 0;
3692 unsigned long num_slabs, free_objects = 0, shared_avail = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07003693 const char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003694 char *error = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07003695 int node;
3696 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003697
Linus Torvalds1da177e2005-04-16 15:20:36 -07003698 active_objs = 0;
3699 num_slabs = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07003700 for_each_online_node(node) {
3701 l3 = cachep->nodelists[node];
3702 if (!l3)
3703 continue;
3704
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08003705 check_irq_on();
3706 spin_lock_irq(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07003707
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003708 list_for_each(q, &l3->slabs_full) {
Christoph Lametere498be72005-09-09 13:03:32 -07003709 slabp = list_entry(q, struct slab, list);
3710 if (slabp->inuse != cachep->num && !error)
3711 error = "slabs_full accounting error";
3712 active_objs += cachep->num;
3713 active_slabs++;
3714 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003715 list_for_each(q, &l3->slabs_partial) {
Christoph Lametere498be72005-09-09 13:03:32 -07003716 slabp = list_entry(q, struct slab, list);
3717 if (slabp->inuse == cachep->num && !error)
3718 error = "slabs_partial inuse accounting error";
3719 if (!slabp->inuse && !error)
3720 error = "slabs_partial/inuse accounting error";
3721 active_objs += slabp->inuse;
3722 active_slabs++;
3723 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003724 list_for_each(q, &l3->slabs_free) {
Christoph Lametere498be72005-09-09 13:03:32 -07003725 slabp = list_entry(q, struct slab, list);
3726 if (slabp->inuse && !error)
3727 error = "slabs_free/inuse accounting error";
3728 num_slabs++;
3729 }
3730 free_objects += l3->free_objects;
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08003731 if (l3->shared)
3732 shared_avail += l3->shared->avail;
Christoph Lametere498be72005-09-09 13:03:32 -07003733
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08003734 spin_unlock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003735 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003736 num_slabs += active_slabs;
3737 num_objs = num_slabs * cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07003738 if (num_objs - active_objs != free_objects && !error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739 error = "free_objects accounting error";
3740
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003741 name = cachep->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003742 if (error)
3743 printk(KERN_ERR "slab: cache %s error: %s\n", name, error);
3744
3745 seq_printf(m, "%-17s %6lu %6lu %6u %4u %4d",
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003746 name, active_objs, num_objs, cachep->buffer_size,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003747 cachep->num, (1 << cachep->gfporder));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748 seq_printf(m, " : tunables %4u %4u %4u",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003749 cachep->limit, cachep->batchcount, cachep->shared);
Christoph Lametere498be72005-09-09 13:03:32 -07003750 seq_printf(m, " : slabdata %6lu %6lu %6lu",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003751 active_slabs, num_slabs, shared_avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003752#if STATS
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003753 { /* list3 stats */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003754 unsigned long high = cachep->high_mark;
3755 unsigned long allocs = cachep->num_allocations;
3756 unsigned long grown = cachep->grown;
3757 unsigned long reaped = cachep->reaped;
3758 unsigned long errors = cachep->errors;
3759 unsigned long max_freeable = cachep->max_freeable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003760 unsigned long node_allocs = cachep->node_allocs;
Christoph Lametere498be72005-09-09 13:03:32 -07003761 unsigned long node_frees = cachep->node_frees;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003762
Christoph Lametere498be72005-09-09 13:03:32 -07003763 seq_printf(m, " : globalstat %7lu %6lu %5lu %4lu \
Andrew Mortona737b3e2006-03-22 00:08:11 -08003764 %4lu %4lu %4lu %4lu", allocs, high, grown,
3765 reaped, errors, max_freeable, node_allocs,
3766 node_frees);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003767 }
3768 /* cpu stats */
3769 {
3770 unsigned long allochit = atomic_read(&cachep->allochit);
3771 unsigned long allocmiss = atomic_read(&cachep->allocmiss);
3772 unsigned long freehit = atomic_read(&cachep->freehit);
3773 unsigned long freemiss = atomic_read(&cachep->freemiss);
3774
3775 seq_printf(m, " : cpustat %6lu %6lu %6lu %6lu",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003776 allochit, allocmiss, freehit, freemiss);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003777 }
3778#endif
3779 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07003780 return 0;
3781}
3782
3783/*
3784 * slabinfo_op - iterator that generates /proc/slabinfo
3785 *
3786 * Output layout:
3787 * cache-name
3788 * num-active-objs
3789 * total-objs
3790 * object size
3791 * num-active-slabs
3792 * total-slabs
3793 * num-pages-per-slab
3794 * + further values on SMP and with statistics enabled
3795 */
3796
3797struct seq_operations slabinfo_op = {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003798 .start = s_start,
3799 .next = s_next,
3800 .stop = s_stop,
3801 .show = s_show,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802};
3803
3804#define MAX_SLABINFO_WRITE 128
3805/**
3806 * slabinfo_write - Tuning for the slab allocator
3807 * @file: unused
3808 * @buffer: user buffer
3809 * @count: data length
3810 * @ppos: unused
3811 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003812ssize_t slabinfo_write(struct file *file, const char __user * buffer,
3813 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003814{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003815 char kbuf[MAX_SLABINFO_WRITE + 1], *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816 int limit, batchcount, shared, res;
3817 struct list_head *p;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003818
Linus Torvalds1da177e2005-04-16 15:20:36 -07003819 if (count > MAX_SLABINFO_WRITE)
3820 return -EINVAL;
3821 if (copy_from_user(&kbuf, buffer, count))
3822 return -EFAULT;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003823 kbuf[MAX_SLABINFO_WRITE] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824
3825 tmp = strchr(kbuf, ' ');
3826 if (!tmp)
3827 return -EINVAL;
3828 *tmp = '\0';
3829 tmp++;
3830 if (sscanf(tmp, " %d %d %d", &limit, &batchcount, &shared) != 3)
3831 return -EINVAL;
3832
3833 /* Find the cache in the chain of caches. */
Ingo Molnarfc0abb12006-01-18 17:42:33 -08003834 mutex_lock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003835 res = -EINVAL;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003836 list_for_each(p, &cache_chain) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08003837 struct kmem_cache *cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003838
Andrew Mortona737b3e2006-03-22 00:08:11 -08003839 cachep = list_entry(p, struct kmem_cache, next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003840 if (!strcmp(cachep->name, kbuf)) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08003841 if (limit < 1 || batchcount < 1 ||
3842 batchcount > limit || shared < 0) {
Christoph Lametere498be72005-09-09 13:03:32 -07003843 res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844 } else {
Christoph Lametere498be72005-09-09 13:03:32 -07003845 res = do_tune_cpucache(cachep, limit,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003846 batchcount, shared);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003847 }
3848 break;
3849 }
3850 }
Ingo Molnarfc0abb12006-01-18 17:42:33 -08003851 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852 if (res >= 0)
3853 res = count;
3854 return res;
3855}
3856#endif
3857
Manfred Spraul00e145b2005-09-03 15:55:07 -07003858/**
3859 * ksize - get the actual amount of memory allocated for a given object
3860 * @objp: Pointer to the object
3861 *
3862 * kmalloc may internally round up allocations and return more memory
3863 * than requested. ksize() can be used to determine the actual amount of
3864 * memory allocated. The caller may use this additional memory, even though
3865 * a smaller amount of memory was initially specified with the kmalloc call.
3866 * The caller must guarantee that objp points to a valid object previously
3867 * allocated with either kmalloc() or kmem_cache_alloc(). The object
3868 * must not be freed during the duration of the call.
3869 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003870unsigned int ksize(const void *objp)
3871{
Manfred Spraul00e145b2005-09-03 15:55:07 -07003872 if (unlikely(objp == NULL))
3873 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003874
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08003875 return obj_size(virt_to_cache(objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003876}