blob: 21ba0603570001bccb5cf97e3a1bf2adbb3a470d [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>
Randy Dunlapc9cf5522006-06-27 02:53:52 -070092#include <linux/poison.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070093#include <linux/swap.h>
94#include <linux/cache.h>
95#include <linux/interrupt.h>
96#include <linux/init.h>
97#include <linux/compiler.h>
Paul Jackson101a5002006-03-24 03:16:07 -080098#include <linux/cpuset.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070099#include <linux/seq_file.h>
100#include <linux/notifier.h>
101#include <linux/kallsyms.h>
102#include <linux/cpu.h>
103#include <linux/sysctl.h>
104#include <linux/module.h>
105#include <linux/rcupdate.h>
Paulo Marques543537b2005-06-23 00:09:02 -0700106#include <linux/string.h>
Christoph Lametere498be72005-09-09 13:03:32 -0700107#include <linux/nodemask.h>
Christoph Lameterdc85da12006-01-18 17:42:36 -0800108#include <linux/mempolicy.h>
Ingo Molnarfc0abb12006-01-18 17:42:33 -0800109#include <linux/mutex.h>
Ingo Molnare7eebaf2006-06-27 02:54:55 -0700110#include <linux/rtmutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
112#include <asm/uaccess.h>
113#include <asm/cacheflush.h>
114#include <asm/tlbflush.h>
115#include <asm/page.h>
116
117/*
118 * DEBUG - 1 for kmem_cache_create() to honour; SLAB_DEBUG_INITIAL,
119 * SLAB_RED_ZONE & SLAB_POISON.
120 * 0 for faster, smaller code (especially in the critical paths).
121 *
122 * STATS - 1 to collect stats for /proc/slabinfo.
123 * 0 for faster, smaller code (especially in the critical paths).
124 *
125 * FORCED_DEBUG - 1 enables SLAB_RED_ZONE and SLAB_POISON (if possible)
126 */
127
128#ifdef CONFIG_DEBUG_SLAB
129#define DEBUG 1
130#define STATS 1
131#define FORCED_DEBUG 1
132#else
133#define DEBUG 0
134#define STATS 0
135#define FORCED_DEBUG 0
136#endif
137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138/* Shouldn't this be in a header file somewhere? */
139#define BYTES_PER_WORD sizeof(void *)
140
141#ifndef cache_line_size
142#define cache_line_size() L1_CACHE_BYTES
143#endif
144
145#ifndef ARCH_KMALLOC_MINALIGN
146/*
147 * Enforce a minimum alignment for the kmalloc caches.
148 * Usually, the kmalloc caches are cache_line_size() aligned, except when
149 * DEBUG and FORCED_DEBUG are enabled, then they are BYTES_PER_WORD aligned.
150 * Some archs want to perform DMA into kmalloc caches and need a guaranteed
151 * alignment larger than BYTES_PER_WORD. ARCH_KMALLOC_MINALIGN allows that.
152 * Note that this flag disables some debug features.
153 */
154#define ARCH_KMALLOC_MINALIGN 0
155#endif
156
157#ifndef ARCH_SLAB_MINALIGN
158/*
159 * Enforce a minimum alignment for all caches.
160 * Intended for archs that get misalignment faults even for BYTES_PER_WORD
161 * aligned buffers. Includes ARCH_KMALLOC_MINALIGN.
162 * If possible: Do not enable this flag for CONFIG_DEBUG_SLAB, it disables
163 * some debug features.
164 */
165#define ARCH_SLAB_MINALIGN 0
166#endif
167
168#ifndef ARCH_KMALLOC_FLAGS
169#define ARCH_KMALLOC_FLAGS SLAB_HWCACHE_ALIGN
170#endif
171
172/* Legal flag mask for kmem_cache_create(). */
173#if DEBUG
174# define CREATE_MASK (SLAB_DEBUG_INITIAL | SLAB_RED_ZONE | \
175 SLAB_POISON | SLAB_HWCACHE_ALIGN | \
Christoph Lameterac2b8982006-03-22 00:08:15 -0800176 SLAB_CACHE_DMA | \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 SLAB_MUST_HWCACHE_ALIGN | SLAB_STORE_USER | \
178 SLAB_RECLAIM_ACCOUNT | SLAB_PANIC | \
Paul Jackson101a5002006-03-24 03:16:07 -0800179 SLAB_DESTROY_BY_RCU | SLAB_MEM_SPREAD)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180#else
Christoph Lameterac2b8982006-03-22 00:08:15 -0800181# define CREATE_MASK (SLAB_HWCACHE_ALIGN | \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 SLAB_CACHE_DMA | SLAB_MUST_HWCACHE_ALIGN | \
183 SLAB_RECLAIM_ACCOUNT | SLAB_PANIC | \
Paul Jackson101a5002006-03-24 03:16:07 -0800184 SLAB_DESTROY_BY_RCU | SLAB_MEM_SPREAD)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185#endif
186
187/*
188 * kmem_bufctl_t:
189 *
190 * Bufctl's are used for linking objs within a slab
191 * linked offsets.
192 *
193 * This implementation relies on "struct page" for locating the cache &
194 * slab an object belongs to.
195 * This allows the bufctl structure to be small (one int), but limits
196 * the number of objects a slab (not a cache) can contain when off-slab
197 * bufctls are used. The limit is the size of the largest general cache
198 * that does not use off-slab slabs.
199 * For 32bit archs with 4 kB pages, is this 56.
200 * This is not serious, as it is only for large objects, when it is unwise
201 * to have too many per slab.
202 * Note: This limit can be raised by introducing a general cache whose size
203 * is less than 512 (PAGE_SIZE<<3), but greater than 256.
204 */
205
Kyle Moffettfa5b08d2005-09-03 15:55:03 -0700206typedef unsigned int kmem_bufctl_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207#define BUFCTL_END (((kmem_bufctl_t)(~0U))-0)
208#define BUFCTL_FREE (((kmem_bufctl_t)(~0U))-1)
Al Viro871751e2006-03-25 03:06:39 -0800209#define BUFCTL_ACTIVE (((kmem_bufctl_t)(~0U))-2)
210#define SLAB_LIMIT (((kmem_bufctl_t)(~0U))-3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212/*
213 * struct slab
214 *
215 * Manages the objs in a slab. Placed either at the beginning of mem allocated
216 * for a slab, or allocated from an general cache.
217 * Slabs are chained into three list: fully used, partial, fully free slabs.
218 */
219struct slab {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800220 struct list_head list;
221 unsigned long colouroff;
222 void *s_mem; /* including colour offset */
223 unsigned int inuse; /* num of objs active in slab */
224 kmem_bufctl_t free;
225 unsigned short nodeid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226};
227
228/*
229 * struct slab_rcu
230 *
231 * slab_destroy on a SLAB_DESTROY_BY_RCU cache uses this structure to
232 * arrange for kmem_freepages to be called via RCU. This is useful if
233 * we need to approach a kernel structure obliquely, from its address
234 * obtained without the usual locking. We can lock the structure to
235 * stabilize it and check it's still at the given address, only if we
236 * can be sure that the memory has not been meanwhile reused for some
237 * other kind of object (which our subsystem's lock might corrupt).
238 *
239 * rcu_read_lock before reading the address, then rcu_read_unlock after
240 * taking the spinlock within the structure expected at that address.
241 *
242 * We assume struct slab_rcu can overlay struct slab when destroying.
243 */
244struct slab_rcu {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800245 struct rcu_head head;
Pekka Enberg343e0d72006-02-01 03:05:50 -0800246 struct kmem_cache *cachep;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800247 void *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248};
249
250/*
251 * struct array_cache
252 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 * Purpose:
254 * - LIFO ordering, to hand out cache-warm objects from _alloc
255 * - reduce the number of linked list operations
256 * - reduce spinlock operations
257 *
258 * The limit is stored in the per-cpu structure to reduce the data cache
259 * footprint.
260 *
261 */
262struct array_cache {
263 unsigned int avail;
264 unsigned int limit;
265 unsigned int batchcount;
266 unsigned int touched;
Christoph Lametere498be72005-09-09 13:03:32 -0700267 spinlock_t lock;
Andrew Mortona737b3e2006-03-22 00:08:11 -0800268 void *entry[0]; /*
269 * Must have this definition in here for the proper
270 * alignment of array_cache. Also simplifies accessing
271 * the entries.
272 * [0] is for gcc 2.95. It should really be [].
273 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274};
275
Andrew Mortona737b3e2006-03-22 00:08:11 -0800276/*
277 * bootstrap: The caches do not work without cpuarrays anymore, but the
278 * cpuarrays are allocated from the generic caches...
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 */
280#define BOOT_CPUCACHE_ENTRIES 1
281struct arraycache_init {
282 struct array_cache cache;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800283 void *entries[BOOT_CPUCACHE_ENTRIES];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284};
285
286/*
Christoph Lametere498be72005-09-09 13:03:32 -0700287 * The slab lists for all objects.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 */
289struct kmem_list3 {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800290 struct list_head slabs_partial; /* partial list first, better asm code */
291 struct list_head slabs_full;
292 struct list_head slabs_free;
293 unsigned long free_objects;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800294 unsigned int free_limit;
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -0800295 unsigned int colour_next; /* Per-node cache coloring */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800296 spinlock_t list_lock;
297 struct array_cache *shared; /* shared per node */
298 struct array_cache **alien; /* on other nodes */
Christoph Lameter35386e32006-03-22 00:09:05 -0800299 unsigned long next_reap; /* updated without locking */
300 int free_touched; /* updated without locking */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301};
302
Christoph Lametere498be72005-09-09 13:03:32 -0700303/*
304 * Need this for bootstrapping a per node allocator.
305 */
306#define NUM_INIT_LISTS (2 * MAX_NUMNODES + 1)
307struct kmem_list3 __initdata initkmem_list3[NUM_INIT_LISTS];
308#define CACHE_CACHE 0
309#define SIZE_AC 1
310#define SIZE_L3 (1 + MAX_NUMNODES)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
Christoph Lametered11d9e2006-06-30 01:55:45 -0700312static int drain_freelist(struct kmem_cache *cache,
313 struct kmem_list3 *l3, int tofree);
314static void free_block(struct kmem_cache *cachep, void **objpp, int len,
315 int node);
316static void enable_cpucache(struct kmem_cache *cachep);
317static void cache_reap(void *unused);
318
Christoph Lametere498be72005-09-09 13:03:32 -0700319/*
Andrew Mortona737b3e2006-03-22 00:08:11 -0800320 * This function must be completely optimized away if a constant is passed to
321 * it. Mostly the same as what is in linux/slab.h except it returns an index.
Christoph Lametere498be72005-09-09 13:03:32 -0700322 */
Ivan Kokshaysky7243cc02005-09-22 21:43:58 -0700323static __always_inline int index_of(const size_t size)
Christoph Lametere498be72005-09-09 13:03:32 -0700324{
Steven Rostedt5ec8a842006-02-01 03:05:44 -0800325 extern void __bad_size(void);
326
Christoph Lametere498be72005-09-09 13:03:32 -0700327 if (__builtin_constant_p(size)) {
328 int i = 0;
329
330#define CACHE(x) \
331 if (size <=x) \
332 return i; \
333 else \
334 i++;
335#include "linux/kmalloc_sizes.h"
336#undef CACHE
Steven Rostedt5ec8a842006-02-01 03:05:44 -0800337 __bad_size();
Ivan Kokshaysky7243cc02005-09-22 21:43:58 -0700338 } else
Steven Rostedt5ec8a842006-02-01 03:05:44 -0800339 __bad_size();
Christoph Lametere498be72005-09-09 13:03:32 -0700340 return 0;
341}
342
Ingo Molnare0a42722006-06-23 02:03:46 -0700343static int slab_early_init = 1;
344
Christoph Lametere498be72005-09-09 13:03:32 -0700345#define INDEX_AC index_of(sizeof(struct arraycache_init))
346#define INDEX_L3 index_of(sizeof(struct kmem_list3))
347
Pekka Enberg5295a742006-02-01 03:05:48 -0800348static void kmem_list3_init(struct kmem_list3 *parent)
Christoph Lametere498be72005-09-09 13:03:32 -0700349{
350 INIT_LIST_HEAD(&parent->slabs_full);
351 INIT_LIST_HEAD(&parent->slabs_partial);
352 INIT_LIST_HEAD(&parent->slabs_free);
353 parent->shared = NULL;
354 parent->alien = NULL;
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -0800355 parent->colour_next = 0;
Christoph Lametere498be72005-09-09 13:03:32 -0700356 spin_lock_init(&parent->list_lock);
357 parent->free_objects = 0;
358 parent->free_touched = 0;
359}
360
Andrew Mortona737b3e2006-03-22 00:08:11 -0800361#define MAKE_LIST(cachep, listp, slab, nodeid) \
362 do { \
363 INIT_LIST_HEAD(listp); \
364 list_splice(&(cachep->nodelists[nodeid]->slab), listp); \
Christoph Lametere498be72005-09-09 13:03:32 -0700365 } while (0)
366
Andrew Mortona737b3e2006-03-22 00:08:11 -0800367#define MAKE_ALL_LISTS(cachep, ptr, nodeid) \
368 do { \
Christoph Lametere498be72005-09-09 13:03:32 -0700369 MAKE_LIST((cachep), (&(ptr)->slabs_full), slabs_full, nodeid); \
370 MAKE_LIST((cachep), (&(ptr)->slabs_partial), slabs_partial, nodeid); \
371 MAKE_LIST((cachep), (&(ptr)->slabs_free), slabs_free, nodeid); \
372 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
374/*
Pekka Enberg343e0d72006-02-01 03:05:50 -0800375 * struct kmem_cache
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 *
377 * manages a cache.
378 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800379
Pekka J Enberg2109a2d2005-11-07 00:58:01 -0800380struct kmem_cache {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381/* 1) per-cpu data, touched during every alloc/free */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800382 struct array_cache *array[NR_CPUS];
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -0800383/* 2) Cache tunables. Protected by cache_chain_mutex */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800384 unsigned int batchcount;
385 unsigned int limit;
386 unsigned int shared;
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -0800387
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800388 unsigned int buffer_size;
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -0800389/* 3) touched by every alloc & free from the backend */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800390 struct kmem_list3 *nodelists[MAX_NUMNODES];
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -0800391
Andrew Mortona737b3e2006-03-22 00:08:11 -0800392 unsigned int flags; /* constant flags */
393 unsigned int num; /* # of objs per slab */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -0800395/* 4) cache_grow/shrink */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 /* order of pgs per slab (2^n) */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800397 unsigned int gfporder;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398
399 /* force GFP flags, e.g. GFP_DMA */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800400 gfp_t gfpflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401
Andrew Mortona737b3e2006-03-22 00:08:11 -0800402 size_t colour; /* cache colouring range */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800403 unsigned int colour_off; /* colour offset */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800404 struct kmem_cache *slabp_cache;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800405 unsigned int slab_size;
Andrew Mortona737b3e2006-03-22 00:08:11 -0800406 unsigned int dflags; /* dynamic flags */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
408 /* constructor func */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800409 void (*ctor) (void *, struct kmem_cache *, unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
411 /* de-constructor func */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800412 void (*dtor) (void *, struct kmem_cache *, unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -0800414/* 5) cache creation/removal */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800415 const char *name;
416 struct list_head next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -0800418/* 6) statistics */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419#if STATS
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800420 unsigned long num_active;
421 unsigned long num_allocations;
422 unsigned long high_mark;
423 unsigned long grown;
424 unsigned long reaped;
425 unsigned long errors;
426 unsigned long max_freeable;
427 unsigned long node_allocs;
428 unsigned long node_frees;
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -0700429 unsigned long node_overflow;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800430 atomic_t allochit;
431 atomic_t allocmiss;
432 atomic_t freehit;
433 atomic_t freemiss;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434#endif
435#if DEBUG
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800436 /*
437 * If debugging is enabled, then the allocator can add additional
438 * fields and/or padding to every object. buffer_size contains the total
439 * object size including these internal fields, the following two
440 * variables contain the offset to the user object and its size.
441 */
442 int obj_offset;
443 int obj_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444#endif
445};
446
447#define CFLGS_OFF_SLAB (0x80000000UL)
448#define OFF_SLAB(x) ((x)->flags & CFLGS_OFF_SLAB)
449
450#define BATCHREFILL_LIMIT 16
Andrew Mortona737b3e2006-03-22 00:08:11 -0800451/*
452 * Optimization question: fewer reaps means less probability for unnessary
453 * cpucache drain/refill cycles.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 *
Adrian Bunkdc6f3f22005-11-08 16:44:08 +0100455 * OTOH the cpuarrays can contain lots of objects,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 * which could lock up otherwise freeable slabs.
457 */
458#define REAPTIMEOUT_CPUC (2*HZ)
459#define REAPTIMEOUT_LIST3 (4*HZ)
460
461#if STATS
462#define STATS_INC_ACTIVE(x) ((x)->num_active++)
463#define STATS_DEC_ACTIVE(x) ((x)->num_active--)
464#define STATS_INC_ALLOCED(x) ((x)->num_allocations++)
465#define STATS_INC_GROWN(x) ((x)->grown++)
Christoph Lametered11d9e2006-06-30 01:55:45 -0700466#define STATS_ADD_REAPED(x,y) ((x)->reaped += (y))
Andrew Mortona737b3e2006-03-22 00:08:11 -0800467#define STATS_SET_HIGH(x) \
468 do { \
469 if ((x)->num_active > (x)->high_mark) \
470 (x)->high_mark = (x)->num_active; \
471 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472#define STATS_INC_ERR(x) ((x)->errors++)
473#define STATS_INC_NODEALLOCS(x) ((x)->node_allocs++)
Christoph Lametere498be72005-09-09 13:03:32 -0700474#define STATS_INC_NODEFREES(x) ((x)->node_frees++)
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -0700475#define STATS_INC_ACOVERFLOW(x) ((x)->node_overflow++)
Andrew Mortona737b3e2006-03-22 00:08:11 -0800476#define STATS_SET_FREEABLE(x, i) \
477 do { \
478 if ((x)->max_freeable < i) \
479 (x)->max_freeable = i; \
480 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481#define STATS_INC_ALLOCHIT(x) atomic_inc(&(x)->allochit)
482#define STATS_INC_ALLOCMISS(x) atomic_inc(&(x)->allocmiss)
483#define STATS_INC_FREEHIT(x) atomic_inc(&(x)->freehit)
484#define STATS_INC_FREEMISS(x) atomic_inc(&(x)->freemiss)
485#else
486#define STATS_INC_ACTIVE(x) do { } while (0)
487#define STATS_DEC_ACTIVE(x) do { } while (0)
488#define STATS_INC_ALLOCED(x) do { } while (0)
489#define STATS_INC_GROWN(x) do { } while (0)
Christoph Lametered11d9e2006-06-30 01:55:45 -0700490#define STATS_ADD_REAPED(x,y) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491#define STATS_SET_HIGH(x) do { } while (0)
492#define STATS_INC_ERR(x) do { } while (0)
493#define STATS_INC_NODEALLOCS(x) do { } while (0)
Christoph Lametere498be72005-09-09 13:03:32 -0700494#define STATS_INC_NODEFREES(x) do { } while (0)
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -0700495#define STATS_INC_ACOVERFLOW(x) do { } while (0)
Andrew Mortona737b3e2006-03-22 00:08:11 -0800496#define STATS_SET_FREEABLE(x, i) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497#define STATS_INC_ALLOCHIT(x) do { } while (0)
498#define STATS_INC_ALLOCMISS(x) do { } while (0)
499#define STATS_INC_FREEHIT(x) do { } while (0)
500#define STATS_INC_FREEMISS(x) do { } while (0)
501#endif
502
503#if DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
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 Enbergddc2e812006-06-23 02:03:40 -0700595 BUG_ON(!PageSlab(page));
Pekka Enberg065d41c2005-11-13 16:06:46 -0800596 return (struct kmem_cache *)page->lru.next;
597}
598
599static inline void page_set_slab(struct page *page, struct slab *slab)
600{
601 page->lru.prev = (struct list_head *)slab;
602}
603
604static inline struct slab *page_get_slab(struct page *page)
605{
Nick Piggin84097512006-03-22 00:08:34 -0800606 if (unlikely(PageCompound(page)))
607 page = (struct page *)page_private(page);
Pekka Enbergddc2e812006-06-23 02:03:40 -0700608 BUG_ON(!PageSlab(page));
Pekka Enberg065d41c2005-11-13 16:06:46 -0800609 return (struct slab *)page->lru.prev;
610}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -0800612static inline struct kmem_cache *virt_to_cache(const void *obj)
613{
614 struct page *page = virt_to_page(obj);
615 return page_get_cache(page);
616}
617
618static inline struct slab *virt_to_slab(const void *obj)
619{
620 struct page *page = virt_to_page(obj);
621 return page_get_slab(page);
622}
623
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800624static inline void *index_to_obj(struct kmem_cache *cache, struct slab *slab,
625 unsigned int idx)
626{
627 return slab->s_mem + cache->buffer_size * idx;
628}
629
630static inline unsigned int obj_to_index(struct kmem_cache *cache,
631 struct slab *slab, void *obj)
632{
633 return (unsigned)(obj - slab->s_mem) / cache->buffer_size;
634}
635
Andrew Mortona737b3e2006-03-22 00:08:11 -0800636/*
637 * These are the default caches for kmalloc. Custom caches can have other sizes.
638 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639struct cache_sizes malloc_sizes[] = {
640#define CACHE(x) { .cs_size = (x) },
641#include <linux/kmalloc_sizes.h>
642 CACHE(ULONG_MAX)
643#undef CACHE
644};
645EXPORT_SYMBOL(malloc_sizes);
646
647/* Must match cache_sizes above. Out of line to keep cache footprint low. */
648struct cache_names {
649 char *name;
650 char *name_dma;
651};
652
653static struct cache_names __initdata cache_names[] = {
654#define CACHE(x) { .name = "size-" #x, .name_dma = "size-" #x "(DMA)" },
655#include <linux/kmalloc_sizes.h>
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800656 {NULL,}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657#undef CACHE
658};
659
660static struct arraycache_init initarray_cache __initdata =
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800661 { {0, BOOT_CPUCACHE_ENTRIES, 1, 0} };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662static struct arraycache_init initarray_generic =
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800663 { {0, BOOT_CPUCACHE_ENTRIES, 1, 0} };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
665/* internal cache of cache description objs */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800666static struct kmem_cache cache_cache = {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800667 .batchcount = 1,
668 .limit = BOOT_CPUCACHE_ENTRIES,
669 .shared = 1,
Pekka Enberg343e0d72006-02-01 03:05:50 -0800670 .buffer_size = sizeof(struct kmem_cache),
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800671 .name = "kmem_cache",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672#if DEBUG
Pekka Enberg343e0d72006-02-01 03:05:50 -0800673 .obj_size = sizeof(struct kmem_cache),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674#endif
675};
676
Arjan van de Venf1aaee52006-07-13 14:46:03 +0200677#ifdef CONFIG_LOCKDEP
678
679/*
680 * Slab sometimes uses the kmalloc slabs to store the slab headers
681 * for other slabs "off slab".
682 * The locking for this is tricky in that it nests within the locks
683 * of all other slabs in a few places; to deal with this special
684 * locking we put on-slab caches into a separate lock-class.
685 */
686static struct lock_class_key on_slab_key;
687
688static inline void init_lock_keys(struct cache_sizes *s)
689{
690 int q;
691
692 for (q = 0; q < MAX_NUMNODES; q++) {
693 if (!s->cs_cachep->nodelists[q] || OFF_SLAB(s->cs_cachep))
694 continue;
695 lockdep_set_class(&s->cs_cachep->nodelists[q]->list_lock,
696 &on_slab_key);
697 }
698}
699
700#else
701static inline void init_lock_keys(struct cache_sizes *s)
702{
703}
704#endif
705
706
707
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708/* Guard access to the cache-chain. */
Ingo Molnarfc0abb12006-01-18 17:42:33 -0800709static DEFINE_MUTEX(cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710static struct list_head cache_chain;
711
712/*
Andrew Mortona737b3e2006-03-22 00:08:11 -0800713 * vm_enough_memory() looks at this to determine how many slab-allocated pages
714 * are possibly freeable under pressure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 *
716 * SLAB_RECLAIM_ACCOUNT turns this on per-slab
717 */
718atomic_t slab_reclaim_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
720/*
721 * chicken and egg problem: delay the per-cpu array allocation
722 * until the general caches are up.
723 */
724static enum {
725 NONE,
Christoph Lametere498be72005-09-09 13:03:32 -0700726 PARTIAL_AC,
727 PARTIAL_L3,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 FULL
729} g_cpucache_up;
730
Mike Kravetz39d24e62006-05-15 09:44:13 -0700731/*
732 * used by boot code to determine if it can use slab based allocator
733 */
734int slab_is_available(void)
735{
736 return g_cpucache_up == FULL;
737}
738
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739static DEFINE_PER_CPU(struct work_struct, reap_work);
740
Pekka Enberg343e0d72006-02-01 03:05:50 -0800741static inline struct array_cache *cpu_cache_get(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742{
743 return cachep->array[smp_processor_id()];
744}
745
Andrew Mortona737b3e2006-03-22 00:08:11 -0800746static inline struct kmem_cache *__find_general_cachep(size_t size,
747 gfp_t gfpflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748{
749 struct cache_sizes *csizep = malloc_sizes;
750
751#if DEBUG
752 /* This happens if someone tries to call
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800753 * kmem_cache_create(), or __kmalloc(), before
754 * the generic caches are initialized.
755 */
Alok Katariac7e43c72005-09-14 12:17:53 -0700756 BUG_ON(malloc_sizes[INDEX_AC].cs_cachep == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757#endif
758 while (size > csizep->cs_size)
759 csizep++;
760
761 /*
Martin Hicks0abf40c2005-09-03 15:54:54 -0700762 * Really subtle: The last entry with cs->cs_size==ULONG_MAX
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 * has cs_{dma,}cachep==NULL. Thus no special case
764 * for large kmalloc calls required.
765 */
766 if (unlikely(gfpflags & GFP_DMA))
767 return csizep->cs_dmacachep;
768 return csizep->cs_cachep;
769}
770
Pekka Enberg343e0d72006-02-01 03:05:50 -0800771struct kmem_cache *kmem_find_general_cachep(size_t size, gfp_t gfpflags)
Manfred Spraul97e2bde2005-05-01 08:58:38 -0700772{
773 return __find_general_cachep(size, gfpflags);
774}
775EXPORT_SYMBOL(kmem_find_general_cachep);
776
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800777static size_t slab_mgmt_size(size_t nr_objs, size_t align)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778{
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800779 return ALIGN(sizeof(struct slab)+nr_objs*sizeof(kmem_bufctl_t), align);
780}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
Andrew Mortona737b3e2006-03-22 00:08:11 -0800782/*
783 * Calculate the number of objects and left-over bytes for a given buffer size.
784 */
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800785static void cache_estimate(unsigned long gfporder, size_t buffer_size,
786 size_t align, int flags, size_t *left_over,
787 unsigned int *num)
788{
789 int nr_objs;
790 size_t mgmt_size;
791 size_t slab_size = PAGE_SIZE << gfporder;
792
793 /*
794 * The slab management structure can be either off the slab or
795 * on it. For the latter case, the memory allocated for a
796 * slab is used for:
797 *
798 * - The struct slab
799 * - One kmem_bufctl_t for each object
800 * - Padding to respect alignment of @align
801 * - @buffer_size bytes for each object
802 *
803 * If the slab management structure is off the slab, then the
804 * alignment will already be calculated into the size. Because
805 * the slabs are all pages aligned, the objects will be at the
806 * correct alignment when allocated.
807 */
808 if (flags & CFLGS_OFF_SLAB) {
809 mgmt_size = 0;
810 nr_objs = slab_size / buffer_size;
811
812 if (nr_objs > SLAB_LIMIT)
813 nr_objs = SLAB_LIMIT;
814 } else {
815 /*
816 * Ignore padding for the initial guess. The padding
817 * is at most @align-1 bytes, and @buffer_size is at
818 * least @align. In the worst case, this result will
819 * be one greater than the number of objects that fit
820 * into the memory allocation when taking the padding
821 * into account.
822 */
823 nr_objs = (slab_size - sizeof(struct slab)) /
824 (buffer_size + sizeof(kmem_bufctl_t));
825
826 /*
827 * This calculated number will be either the right
828 * amount, or one greater than what we want.
829 */
830 if (slab_mgmt_size(nr_objs, align) + nr_objs*buffer_size
831 > slab_size)
832 nr_objs--;
833
834 if (nr_objs > SLAB_LIMIT)
835 nr_objs = SLAB_LIMIT;
836
837 mgmt_size = slab_mgmt_size(nr_objs, align);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 }
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800839 *num = nr_objs;
840 *left_over = slab_size - nr_objs*buffer_size - mgmt_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841}
842
843#define slab_error(cachep, msg) __slab_error(__FUNCTION__, cachep, msg)
844
Andrew Mortona737b3e2006-03-22 00:08:11 -0800845static void __slab_error(const char *function, struct kmem_cache *cachep,
846 char *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847{
848 printk(KERN_ERR "slab error in %s(): cache `%s': %s\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800849 function, cachep->name, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 dump_stack();
851}
852
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800853#ifdef CONFIG_NUMA
854/*
855 * Special reaping functions for NUMA systems called from cache_reap().
856 * These take care of doing round robin flushing of alien caches (containing
857 * objects freed on different nodes from which they were allocated) and the
858 * flushing of remote pcps by calling drain_node_pages.
859 */
860static DEFINE_PER_CPU(unsigned long, reap_node);
861
862static void init_reap_node(int cpu)
863{
864 int node;
865
866 node = next_node(cpu_to_node(cpu), node_online_map);
867 if (node == MAX_NUMNODES)
Paul Jackson442295c2006-03-22 00:09:11 -0800868 node = first_node(node_online_map);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800869
870 __get_cpu_var(reap_node) = node;
871}
872
873static void next_reap_node(void)
874{
875 int node = __get_cpu_var(reap_node);
876
877 /*
878 * Also drain per cpu pages on remote zones
879 */
880 if (node != numa_node_id())
881 drain_node_pages(node);
882
883 node = next_node(node, node_online_map);
884 if (unlikely(node >= MAX_NUMNODES))
885 node = first_node(node_online_map);
886 __get_cpu_var(reap_node) = node;
887}
888
889#else
890#define init_reap_node(cpu) do { } while (0)
891#define next_reap_node(void) do { } while (0)
892#endif
893
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894/*
895 * Initiate the reap timer running on the target CPU. We run at around 1 to 2Hz
896 * via the workqueue/eventd.
897 * Add the CPU number into the expiration time to minimize the possibility of
898 * the CPUs getting into lockstep and contending for the global cache chain
899 * lock.
900 */
901static void __devinit start_cpu_timer(int cpu)
902{
903 struct work_struct *reap_work = &per_cpu(reap_work, cpu);
904
905 /*
906 * When this gets called from do_initcalls via cpucache_init(),
907 * init_workqueues() has already run, so keventd will be setup
908 * at that time.
909 */
910 if (keventd_up() && reap_work->func == NULL) {
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800911 init_reap_node(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 INIT_WORK(reap_work, cache_reap, NULL);
913 schedule_delayed_work_on(cpu, reap_work, HZ + 3 * cpu);
914 }
915}
916
Christoph Lametere498be72005-09-09 13:03:32 -0700917static struct array_cache *alloc_arraycache(int node, int entries,
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800918 int batchcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919{
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800920 int memsize = sizeof(void *) * entries + sizeof(struct array_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 struct array_cache *nc = NULL;
922
Christoph Lametere498be72005-09-09 13:03:32 -0700923 nc = kmalloc_node(memsize, GFP_KERNEL, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 if (nc) {
925 nc->avail = 0;
926 nc->limit = entries;
927 nc->batchcount = batchcount;
928 nc->touched = 0;
Christoph Lametere498be72005-09-09 13:03:32 -0700929 spin_lock_init(&nc->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 }
931 return nc;
932}
933
Christoph Lameter3ded1752006-03-25 03:06:44 -0800934/*
935 * Transfer objects in one arraycache to another.
936 * Locking must be handled by the caller.
937 *
938 * Return the number of entries transferred.
939 */
940static int transfer_objects(struct array_cache *to,
941 struct array_cache *from, unsigned int max)
942{
943 /* Figure out how many entries to transfer */
944 int nr = min(min(from->avail, max), to->limit - to->avail);
945
946 if (!nr)
947 return 0;
948
949 memcpy(to->entry + to->avail, from->entry + from->avail -nr,
950 sizeof(void *) *nr);
951
952 from->avail -= nr;
953 to->avail += nr;
954 to->touched = 1;
955 return nr;
956}
957
Christoph Lametere498be72005-09-09 13:03:32 -0700958#ifdef CONFIG_NUMA
Pekka Enberg343e0d72006-02-01 03:05:50 -0800959static void *__cache_alloc_node(struct kmem_cache *, gfp_t, int);
Paul Jacksonc61afb12006-03-24 03:16:08 -0800960static void *alternate_node_alloc(struct kmem_cache *, gfp_t);
Christoph Lameterdc85da12006-01-18 17:42:36 -0800961
Pekka Enberg5295a742006-02-01 03:05:48 -0800962static struct array_cache **alloc_alien_cache(int node, int limit)
Christoph Lametere498be72005-09-09 13:03:32 -0700963{
964 struct array_cache **ac_ptr;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800965 int memsize = sizeof(void *) * MAX_NUMNODES;
Christoph Lametere498be72005-09-09 13:03:32 -0700966 int i;
967
968 if (limit > 1)
969 limit = 12;
970 ac_ptr = kmalloc_node(memsize, GFP_KERNEL, node);
971 if (ac_ptr) {
972 for_each_node(i) {
973 if (i == node || !node_online(i)) {
974 ac_ptr[i] = NULL;
975 continue;
976 }
977 ac_ptr[i] = alloc_arraycache(node, limit, 0xbaadf00d);
978 if (!ac_ptr[i]) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800979 for (i--; i <= 0; i--)
Christoph Lametere498be72005-09-09 13:03:32 -0700980 kfree(ac_ptr[i]);
981 kfree(ac_ptr);
982 return NULL;
983 }
984 }
985 }
986 return ac_ptr;
987}
988
Pekka Enberg5295a742006-02-01 03:05:48 -0800989static void free_alien_cache(struct array_cache **ac_ptr)
Christoph Lametere498be72005-09-09 13:03:32 -0700990{
991 int i;
992
993 if (!ac_ptr)
994 return;
Christoph Lametere498be72005-09-09 13:03:32 -0700995 for_each_node(i)
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800996 kfree(ac_ptr[i]);
Christoph Lametere498be72005-09-09 13:03:32 -0700997 kfree(ac_ptr);
998}
999
Pekka Enberg343e0d72006-02-01 03:05:50 -08001000static void __drain_alien_cache(struct kmem_cache *cachep,
Pekka Enberg5295a742006-02-01 03:05:48 -08001001 struct array_cache *ac, int node)
Christoph Lametere498be72005-09-09 13:03:32 -07001002{
1003 struct kmem_list3 *rl3 = cachep->nodelists[node];
1004
1005 if (ac->avail) {
1006 spin_lock(&rl3->list_lock);
Christoph Lametere00946f2006-03-25 03:06:45 -08001007 /*
1008 * Stuff objects into the remote nodes shared array first.
1009 * That way we could avoid the overhead of putting the objects
1010 * into the free lists and getting them back later.
1011 */
shin, jacob693f7d32006-04-28 10:54:37 -05001012 if (rl3->shared)
1013 transfer_objects(rl3->shared, ac, ac->limit);
Christoph Lametere00946f2006-03-25 03:06:45 -08001014
Christoph Lameterff694162005-09-22 21:44:02 -07001015 free_block(cachep, ac->entry, ac->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -07001016 ac->avail = 0;
1017 spin_unlock(&rl3->list_lock);
1018 }
1019}
1020
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001021/*
1022 * Called from cache_reap() to regularly drain alien caches round robin.
1023 */
1024static void reap_alien(struct kmem_cache *cachep, struct kmem_list3 *l3)
1025{
1026 int node = __get_cpu_var(reap_node);
1027
1028 if (l3->alien) {
1029 struct array_cache *ac = l3->alien[node];
Christoph Lametere00946f2006-03-25 03:06:45 -08001030
1031 if (ac && ac->avail && spin_trylock_irq(&ac->lock)) {
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001032 __drain_alien_cache(cachep, ac, node);
1033 spin_unlock_irq(&ac->lock);
1034 }
1035 }
1036}
1037
Andrew Mortona737b3e2006-03-22 00:08:11 -08001038static void drain_alien_cache(struct kmem_cache *cachep,
1039 struct array_cache **alien)
Christoph Lametere498be72005-09-09 13:03:32 -07001040{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001041 int i = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07001042 struct array_cache *ac;
1043 unsigned long flags;
1044
1045 for_each_online_node(i) {
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001046 ac = alien[i];
Christoph Lametere498be72005-09-09 13:03:32 -07001047 if (ac) {
1048 spin_lock_irqsave(&ac->lock, flags);
1049 __drain_alien_cache(cachep, ac, i);
1050 spin_unlock_irqrestore(&ac->lock, flags);
1051 }
1052 }
1053}
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001054
Ingo Molnar873623d2006-07-13 14:44:38 +02001055static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001056{
1057 struct slab *slabp = virt_to_slab(objp);
1058 int nodeid = slabp->nodeid;
1059 struct kmem_list3 *l3;
1060 struct array_cache *alien = NULL;
1061
1062 /*
1063 * Make sure we are not freeing a object from another node to the array
1064 * cache on this cpu.
1065 */
1066 if (likely(slabp->nodeid == numa_node_id()))
1067 return 0;
1068
1069 l3 = cachep->nodelists[numa_node_id()];
1070 STATS_INC_NODEFREES(cachep);
1071 if (l3->alien && l3->alien[nodeid]) {
1072 alien = l3->alien[nodeid];
Ingo Molnar873623d2006-07-13 14:44:38 +02001073 spin_lock(&alien->lock);
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001074 if (unlikely(alien->avail == alien->limit)) {
1075 STATS_INC_ACOVERFLOW(cachep);
1076 __drain_alien_cache(cachep, alien, nodeid);
1077 }
1078 alien->entry[alien->avail++] = objp;
1079 spin_unlock(&alien->lock);
1080 } else {
1081 spin_lock(&(cachep->nodelists[nodeid])->list_lock);
1082 free_block(cachep, &objp, 1, nodeid);
1083 spin_unlock(&(cachep->nodelists[nodeid])->list_lock);
1084 }
1085 return 1;
1086}
1087
Christoph Lametere498be72005-09-09 13:03:32 -07001088#else
Linus Torvalds7a21ef62006-02-05 11:26:38 -08001089
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001090#define drain_alien_cache(cachep, alien) do { } while (0)
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001091#define reap_alien(cachep, l3) do { } while (0)
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001092
Linus Torvalds7a21ef62006-02-05 11:26:38 -08001093static inline struct array_cache **alloc_alien_cache(int node, int limit)
1094{
1095 return (struct array_cache **) 0x01020304ul;
1096}
1097
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001098static inline void free_alien_cache(struct array_cache **ac_ptr)
1099{
1100}
Linus Torvalds7a21ef62006-02-05 11:26:38 -08001101
Ingo Molnar873623d2006-07-13 14:44:38 +02001102static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001103{
1104 return 0;
1105}
1106
Christoph Lametere498be72005-09-09 13:03:32 -07001107#endif
1108
Chandra Seetharaman8c78f302006-07-30 03:03:35 -07001109static int __cpuinit cpuup_callback(struct notifier_block *nfb,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001110 unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111{
1112 long cpu = (long)hcpu;
Pekka Enberg343e0d72006-02-01 03:05:50 -08001113 struct kmem_cache *cachep;
Christoph Lametere498be72005-09-09 13:03:32 -07001114 struct kmem_list3 *l3 = NULL;
1115 int node = cpu_to_node(cpu);
1116 int memsize = sizeof(struct kmem_list3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117
1118 switch (action) {
1119 case CPU_UP_PREPARE:
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001120 mutex_lock(&cache_chain_mutex);
Andrew Mortona737b3e2006-03-22 00:08:11 -08001121 /*
1122 * We need to do this right in the beginning since
Christoph Lametere498be72005-09-09 13:03:32 -07001123 * alloc_arraycache's are going to use this list.
1124 * kmalloc_node allows us to add the slab to the right
1125 * kmem_list3 and not this cpu's kmem_list3
1126 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
Christoph Lametere498be72005-09-09 13:03:32 -07001128 list_for_each_entry(cachep, &cache_chain, next) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08001129 /*
1130 * Set up the size64 kmemlist for cpu before we can
Christoph Lametere498be72005-09-09 13:03:32 -07001131 * begin anything. Make sure some other cpu on this
1132 * node has not already allocated this
1133 */
1134 if (!cachep->nodelists[node]) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08001135 l3 = kmalloc_node(memsize, GFP_KERNEL, node);
1136 if (!l3)
Christoph Lametere498be72005-09-09 13:03:32 -07001137 goto bad;
1138 kmem_list3_init(l3);
1139 l3->next_reap = jiffies + REAPTIMEOUT_LIST3 +
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001140 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
Christoph Lametere498be72005-09-09 13:03:32 -07001141
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001142 /*
1143 * The l3s don't come and go as CPUs come and
1144 * go. cache_chain_mutex is sufficient
1145 * protection here.
1146 */
Christoph Lametere498be72005-09-09 13:03:32 -07001147 cachep->nodelists[node] = l3;
1148 }
1149
1150 spin_lock_irq(&cachep->nodelists[node]->list_lock);
1151 cachep->nodelists[node]->free_limit =
Andrew Mortona737b3e2006-03-22 00:08:11 -08001152 (1 + nr_cpus_node(node)) *
1153 cachep->batchcount + cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07001154 spin_unlock_irq(&cachep->nodelists[node]->list_lock);
1155 }
1156
Andrew Mortona737b3e2006-03-22 00:08:11 -08001157 /*
1158 * Now we can go ahead with allocating the shared arrays and
1159 * array caches
1160 */
Christoph Lametere498be72005-09-09 13:03:32 -07001161 list_for_each_entry(cachep, &cache_chain, next) {
Tobias Klausercd105df2006-01-08 01:00:59 -08001162 struct array_cache *nc;
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001163 struct array_cache *shared;
1164 struct array_cache **alien;
Tobias Klausercd105df2006-01-08 01:00:59 -08001165
Christoph Lametere498be72005-09-09 13:03:32 -07001166 nc = alloc_arraycache(node, cachep->limit,
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001167 cachep->batchcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168 if (!nc)
1169 goto bad;
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001170 shared = alloc_arraycache(node,
1171 cachep->shared * cachep->batchcount,
1172 0xbaadf00d);
1173 if (!shared)
1174 goto bad;
Linus Torvalds7a21ef62006-02-05 11:26:38 -08001175
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001176 alien = alloc_alien_cache(node, cachep->limit);
1177 if (!alien)
1178 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 cachep->array[cpu] = nc;
Christoph Lametere498be72005-09-09 13:03:32 -07001180 l3 = cachep->nodelists[node];
1181 BUG_ON(!l3);
Christoph Lametere498be72005-09-09 13:03:32 -07001182
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001183 spin_lock_irq(&l3->list_lock);
1184 if (!l3->shared) {
1185 /*
1186 * We are serialised from CPU_DEAD or
1187 * CPU_UP_CANCELLED by the cpucontrol lock
1188 */
1189 l3->shared = shared;
1190 shared = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07001191 }
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001192#ifdef CONFIG_NUMA
1193 if (!l3->alien) {
1194 l3->alien = alien;
1195 alien = NULL;
1196 }
1197#endif
1198 spin_unlock_irq(&l3->list_lock);
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001199 kfree(shared);
1200 free_alien_cache(alien);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 }
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001202 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 break;
1204 case CPU_ONLINE:
1205 start_cpu_timer(cpu);
1206 break;
1207#ifdef CONFIG_HOTPLUG_CPU
1208 case CPU_DEAD:
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001209 /*
1210 * Even if all the cpus of a node are down, we don't free the
1211 * kmem_list3 of any cache. This to avoid a race between
1212 * cpu_down, and a kmalloc allocation from another cpu for
1213 * memory from the node of the cpu going down. The list3
1214 * structure is usually allocated from kmem_cache_create() and
1215 * gets destroyed at kmem_cache_destroy().
1216 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 /* fall thru */
1218 case CPU_UP_CANCELED:
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001219 mutex_lock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 list_for_each_entry(cachep, &cache_chain, next) {
1221 struct array_cache *nc;
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001222 struct array_cache *shared;
1223 struct array_cache **alien;
Christoph Lametere498be72005-09-09 13:03:32 -07001224 cpumask_t mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001225
Christoph Lametere498be72005-09-09 13:03:32 -07001226 mask = node_to_cpumask(node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001227 /* cpu is dead; no one can alloc from it. */
1228 nc = cachep->array[cpu];
1229 cachep->array[cpu] = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07001230 l3 = cachep->nodelists[node];
1231
1232 if (!l3)
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001233 goto free_array_cache;
Christoph Lametere498be72005-09-09 13:03:32 -07001234
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08001235 spin_lock_irq(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07001236
1237 /* Free limit for this kmem_list3 */
1238 l3->free_limit -= cachep->batchcount;
1239 if (nc)
Christoph Lameterff694162005-09-22 21:44:02 -07001240 free_block(cachep, nc->entry, nc->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -07001241
1242 if (!cpus_empty(mask)) {
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08001243 spin_unlock_irq(&l3->list_lock);
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001244 goto free_array_cache;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001245 }
Christoph Lametere498be72005-09-09 13:03:32 -07001246
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001247 shared = l3->shared;
1248 if (shared) {
Christoph Lametere498be72005-09-09 13:03:32 -07001249 free_block(cachep, l3->shared->entry,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001250 l3->shared->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -07001251 l3->shared = NULL;
1252 }
Christoph Lametere498be72005-09-09 13:03:32 -07001253
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001254 alien = l3->alien;
1255 l3->alien = NULL;
1256
1257 spin_unlock_irq(&l3->list_lock);
1258
1259 kfree(shared);
1260 if (alien) {
1261 drain_alien_cache(cachep, alien);
1262 free_alien_cache(alien);
Christoph Lametere498be72005-09-09 13:03:32 -07001263 }
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001264free_array_cache:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 kfree(nc);
1266 }
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001267 /*
1268 * In the previous loop, all the objects were freed to
1269 * the respective cache's slabs, now we can go ahead and
1270 * shrink each nodelist to its limit.
1271 */
1272 list_for_each_entry(cachep, &cache_chain, next) {
1273 l3 = cachep->nodelists[node];
1274 if (!l3)
1275 continue;
Christoph Lametered11d9e2006-06-30 01:55:45 -07001276 drain_freelist(cachep, l3, l3->free_objects);
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001277 }
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001278 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 break;
1280#endif
1281 }
1282 return NOTIFY_OK;
Andrew Mortona737b3e2006-03-22 00:08:11 -08001283bad:
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001284 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 return NOTIFY_BAD;
1286}
1287
Chandra Seetharaman74b85f32006-06-27 02:54:09 -07001288static struct notifier_block __cpuinitdata cpucache_notifier = {
1289 &cpuup_callback, NULL, 0
1290};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291
Christoph Lametere498be72005-09-09 13:03:32 -07001292/*
1293 * swap the static kmem_list3 with kmalloced memory
1294 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08001295static void init_list(struct kmem_cache *cachep, struct kmem_list3 *list,
1296 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07001297{
1298 struct kmem_list3 *ptr;
1299
1300 BUG_ON(cachep->nodelists[nodeid] != list);
1301 ptr = kmalloc_node(sizeof(struct kmem_list3), GFP_KERNEL, nodeid);
1302 BUG_ON(!ptr);
1303
1304 local_irq_disable();
1305 memcpy(ptr, list, sizeof(struct kmem_list3));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001306 /*
1307 * Do not assume that spinlocks can be initialized via memcpy:
1308 */
1309 spin_lock_init(&ptr->list_lock);
1310
Christoph Lametere498be72005-09-09 13:03:32 -07001311 MAKE_ALL_LISTS(cachep, ptr, nodeid);
1312 cachep->nodelists[nodeid] = ptr;
1313 local_irq_enable();
1314}
1315
Andrew Mortona737b3e2006-03-22 00:08:11 -08001316/*
1317 * Initialisation. Called after the page allocator have been initialised and
1318 * before smp_init().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 */
1320void __init kmem_cache_init(void)
1321{
1322 size_t left_over;
1323 struct cache_sizes *sizes;
1324 struct cache_names *names;
Christoph Lametere498be72005-09-09 13:03:32 -07001325 int i;
Jack Steiner07ed76b2006-03-07 21:55:46 -08001326 int order;
Christoph Lametere498be72005-09-09 13:03:32 -07001327
1328 for (i = 0; i < NUM_INIT_LISTS; i++) {
1329 kmem_list3_init(&initkmem_list3[i]);
1330 if (i < MAX_NUMNODES)
1331 cache_cache.nodelists[i] = NULL;
1332 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333
1334 /*
1335 * Fragmentation resistance on low memory - only use bigger
1336 * page orders on machines with more than 32MB of memory.
1337 */
1338 if (num_physpages > (32 << 20) >> PAGE_SHIFT)
1339 slab_break_gfp_order = BREAK_GFP_ORDER_HI;
1340
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 /* Bootstrap is tricky, because several objects are allocated
1342 * from caches that do not exist yet:
Andrew Mortona737b3e2006-03-22 00:08:11 -08001343 * 1) initialize the cache_cache cache: it contains the struct
1344 * kmem_cache structures of all caches, except cache_cache itself:
1345 * cache_cache is statically allocated.
Christoph Lametere498be72005-09-09 13:03:32 -07001346 * Initially an __init data area is used for the head array and the
1347 * kmem_list3 structures, it's replaced with a kmalloc allocated
1348 * array at the end of the bootstrap.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 * 2) Create the first kmalloc cache.
Pekka Enberg343e0d72006-02-01 03:05:50 -08001350 * The struct kmem_cache for the new cache is allocated normally.
Christoph Lametere498be72005-09-09 13:03:32 -07001351 * An __init data area is used for the head array.
1352 * 3) Create the remaining kmalloc caches, with minimally sized
1353 * head arrays.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 * 4) Replace the __init data head arrays for cache_cache and the first
1355 * kmalloc cache with kmalloc allocated arrays.
Christoph Lametere498be72005-09-09 13:03:32 -07001356 * 5) Replace the __init data for kmem_list3 for cache_cache and
1357 * the other cache's with kmalloc allocated memory.
1358 * 6) Resize the head arrays of the kmalloc caches to their final sizes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 */
1360
1361 /* 1) create the cache_cache */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 INIT_LIST_HEAD(&cache_chain);
1363 list_add(&cache_cache.next, &cache_chain);
1364 cache_cache.colour_off = cache_line_size();
1365 cache_cache.array[smp_processor_id()] = &initarray_cache.cache;
Christoph Lametere498be72005-09-09 13:03:32 -07001366 cache_cache.nodelists[numa_node_id()] = &initkmem_list3[CACHE_CACHE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367
Andrew Mortona737b3e2006-03-22 00:08:11 -08001368 cache_cache.buffer_size = ALIGN(cache_cache.buffer_size,
1369 cache_line_size());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
Jack Steiner07ed76b2006-03-07 21:55:46 -08001371 for (order = 0; order < MAX_ORDER; order++) {
1372 cache_estimate(order, cache_cache.buffer_size,
1373 cache_line_size(), 0, &left_over, &cache_cache.num);
1374 if (cache_cache.num)
1375 break;
1376 }
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02001377 BUG_ON(!cache_cache.num);
Jack Steiner07ed76b2006-03-07 21:55:46 -08001378 cache_cache.gfporder = order;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001379 cache_cache.colour = left_over / cache_cache.colour_off;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001380 cache_cache.slab_size = ALIGN(cache_cache.num * sizeof(kmem_bufctl_t) +
1381 sizeof(struct slab), cache_line_size());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382
1383 /* 2+3) create the kmalloc caches */
1384 sizes = malloc_sizes;
1385 names = cache_names;
1386
Andrew Mortona737b3e2006-03-22 00:08:11 -08001387 /*
1388 * Initialize the caches that provide memory for the array cache and the
1389 * kmem_list3 structures first. Without this, further allocations will
1390 * bug.
Christoph Lametere498be72005-09-09 13:03:32 -07001391 */
1392
1393 sizes[INDEX_AC].cs_cachep = kmem_cache_create(names[INDEX_AC].name,
Andrew Mortona737b3e2006-03-22 00:08:11 -08001394 sizes[INDEX_AC].cs_size,
1395 ARCH_KMALLOC_MINALIGN,
1396 ARCH_KMALLOC_FLAGS|SLAB_PANIC,
1397 NULL, NULL);
Christoph Lametere498be72005-09-09 13:03:32 -07001398
Andrew Mortona737b3e2006-03-22 00:08:11 -08001399 if (INDEX_AC != INDEX_L3) {
Christoph Lametere498be72005-09-09 13:03:32 -07001400 sizes[INDEX_L3].cs_cachep =
Andrew Mortona737b3e2006-03-22 00:08:11 -08001401 kmem_cache_create(names[INDEX_L3].name,
1402 sizes[INDEX_L3].cs_size,
1403 ARCH_KMALLOC_MINALIGN,
1404 ARCH_KMALLOC_FLAGS|SLAB_PANIC,
1405 NULL, NULL);
1406 }
Christoph Lametere498be72005-09-09 13:03:32 -07001407
Ingo Molnare0a42722006-06-23 02:03:46 -07001408 slab_early_init = 0;
1409
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 while (sizes->cs_size != ULONG_MAX) {
Christoph Lametere498be72005-09-09 13:03:32 -07001411 /*
1412 * For performance, all the general caches are L1 aligned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 * This should be particularly beneficial on SMP boxes, as it
1414 * eliminates "false sharing".
1415 * Note for systems short on memory removing the alignment will
Christoph Lametere498be72005-09-09 13:03:32 -07001416 * allow tighter packing of the smaller caches.
1417 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08001418 if (!sizes->cs_cachep) {
Christoph Lametere498be72005-09-09 13:03:32 -07001419 sizes->cs_cachep = kmem_cache_create(names->name,
Andrew Mortona737b3e2006-03-22 00:08:11 -08001420 sizes->cs_size,
1421 ARCH_KMALLOC_MINALIGN,
1422 ARCH_KMALLOC_FLAGS|SLAB_PANIC,
1423 NULL, NULL);
1424 }
Arjan van de Venf1aaee52006-07-13 14:46:03 +02001425 init_lock_keys(sizes);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426
Linus Torvalds1da177e2005-04-16 15:20:36 -07001427 sizes->cs_dmacachep = kmem_cache_create(names->name_dma,
Andrew Mortona737b3e2006-03-22 00:08:11 -08001428 sizes->cs_size,
1429 ARCH_KMALLOC_MINALIGN,
1430 ARCH_KMALLOC_FLAGS|SLAB_CACHE_DMA|
1431 SLAB_PANIC,
1432 NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 sizes++;
1434 names++;
1435 }
1436 /* 4) Replace the bootstrap head arrays */
1437 {
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001438 struct array_cache *ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001439
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 ptr = kmalloc(sizeof(struct arraycache_init), GFP_KERNEL);
Christoph Lametere498be72005-09-09 13:03:32 -07001441
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442 local_irq_disable();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001443 BUG_ON(cpu_cache_get(&cache_cache) != &initarray_cache.cache);
1444 memcpy(ptr, cpu_cache_get(&cache_cache),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001445 sizeof(struct arraycache_init));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001446 /*
1447 * Do not assume that spinlocks can be initialized via memcpy:
1448 */
1449 spin_lock_init(&ptr->lock);
1450
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 cache_cache.array[smp_processor_id()] = ptr;
1452 local_irq_enable();
Christoph Lametere498be72005-09-09 13:03:32 -07001453
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 ptr = kmalloc(sizeof(struct arraycache_init), GFP_KERNEL);
Christoph Lametere498be72005-09-09 13:03:32 -07001455
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 local_irq_disable();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001457 BUG_ON(cpu_cache_get(malloc_sizes[INDEX_AC].cs_cachep)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001458 != &initarray_generic.cache);
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001459 memcpy(ptr, cpu_cache_get(malloc_sizes[INDEX_AC].cs_cachep),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001460 sizeof(struct arraycache_init));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001461 /*
1462 * Do not assume that spinlocks can be initialized via memcpy:
1463 */
1464 spin_lock_init(&ptr->lock);
1465
Christoph Lametere498be72005-09-09 13:03:32 -07001466 malloc_sizes[INDEX_AC].cs_cachep->array[smp_processor_id()] =
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001467 ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 local_irq_enable();
1469 }
Christoph Lametere498be72005-09-09 13:03:32 -07001470 /* 5) Replace the bootstrap kmem_list3's */
1471 {
1472 int node;
1473 /* Replace the static kmem_list3 structures for the boot cpu */
1474 init_list(&cache_cache, &initkmem_list3[CACHE_CACHE],
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001475 numa_node_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476
Christoph Lametere498be72005-09-09 13:03:32 -07001477 for_each_online_node(node) {
1478 init_list(malloc_sizes[INDEX_AC].cs_cachep,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001479 &initkmem_list3[SIZE_AC + node], node);
Christoph Lametere498be72005-09-09 13:03:32 -07001480
1481 if (INDEX_AC != INDEX_L3) {
1482 init_list(malloc_sizes[INDEX_L3].cs_cachep,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001483 &initkmem_list3[SIZE_L3 + node],
1484 node);
Christoph Lametere498be72005-09-09 13:03:32 -07001485 }
1486 }
1487 }
1488
1489 /* 6) resize the head arrays to their final sizes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 {
Pekka Enberg343e0d72006-02-01 03:05:50 -08001491 struct kmem_cache *cachep;
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001492 mutex_lock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 list_for_each_entry(cachep, &cache_chain, next)
Andrew Mortona737b3e2006-03-22 00:08:11 -08001494 enable_cpucache(cachep);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001495 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 }
1497
1498 /* Done! */
1499 g_cpucache_up = FULL;
1500
Andrew Mortona737b3e2006-03-22 00:08:11 -08001501 /*
1502 * Register a cpu startup notifier callback that initializes
1503 * cpu_cache_get for all new cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 */
1505 register_cpu_notifier(&cpucache_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506
Andrew Mortona737b3e2006-03-22 00:08:11 -08001507 /*
1508 * The reap timers are started later, with a module init call: That part
1509 * of the kernel is not yet operational.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 */
1511}
1512
1513static int __init cpucache_init(void)
1514{
1515 int cpu;
1516
Andrew Mortona737b3e2006-03-22 00:08:11 -08001517 /*
1518 * Register the timers that return unneeded pages to the page allocator
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 */
Christoph Lametere498be72005-09-09 13:03:32 -07001520 for_each_online_cpu(cpu)
Andrew Mortona737b3e2006-03-22 00:08:11 -08001521 start_cpu_timer(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 return 0;
1523}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524__initcall(cpucache_init);
1525
1526/*
1527 * Interface to system's page allocator. No need to hold the cache-lock.
1528 *
1529 * If we requested dmaable memory, we will get it. Even if we
1530 * did not request dmaable memory, we might get it, but that
1531 * would be relatively rare and ignorable.
1532 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001533static void *kmem_getpages(struct kmem_cache *cachep, gfp_t flags, int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534{
1535 struct page *page;
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001536 int nr_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 int i;
1538
Luke Yangd6fef9d2006-04-10 22:52:56 -07001539#ifndef CONFIG_MMU
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001540 /*
1541 * Nommu uses slab's for process anonymous memory allocations, and thus
1542 * requires __GFP_COMP to properly refcount higher order allocations
Luke Yangd6fef9d2006-04-10 22:52:56 -07001543 */
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001544 flags |= __GFP_COMP;
Luke Yangd6fef9d2006-04-10 22:52:56 -07001545#endif
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001546 flags |= cachep->gfpflags;
1547
1548 page = alloc_pages_node(nodeid, flags, cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 if (!page)
1550 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001552 nr_pages = (1 << cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001554 atomic_add(nr_pages, &slab_reclaim_pages);
Christoph Lameter9a865ff2006-06-30 01:55:38 -07001555 add_zone_page_state(page_zone(page), NR_SLAB, nr_pages);
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001556 for (i = 0; i < nr_pages; i++)
1557 __SetPageSlab(page + i);
1558 return page_address(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559}
1560
1561/*
1562 * Interface to system's page release.
1563 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001564static void kmem_freepages(struct kmem_cache *cachep, void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001566 unsigned long i = (1 << cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 struct page *page = virt_to_page(addr);
1568 const unsigned long nr_freed = i;
1569
Christoph Lameter9a865ff2006-06-30 01:55:38 -07001570 sub_zone_page_state(page_zone(page), NR_SLAB, nr_freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 while (i--) {
Nick Pigginf205b2f2006-03-22 00:08:02 -08001572 BUG_ON(!PageSlab(page));
1573 __ClearPageSlab(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 page++;
1575 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 if (current->reclaim_state)
1577 current->reclaim_state->reclaimed_slab += nr_freed;
1578 free_pages((unsigned long)addr, cachep->gfporder);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001579 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1580 atomic_sub(1 << cachep->gfporder, &slab_reclaim_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581}
1582
1583static void kmem_rcu_free(struct rcu_head *head)
1584{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001585 struct slab_rcu *slab_rcu = (struct slab_rcu *)head;
Pekka Enberg343e0d72006-02-01 03:05:50 -08001586 struct kmem_cache *cachep = slab_rcu->cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587
1588 kmem_freepages(cachep, slab_rcu->addr);
1589 if (OFF_SLAB(cachep))
1590 kmem_cache_free(cachep->slabp_cache, slab_rcu);
1591}
1592
1593#if DEBUG
1594
1595#ifdef CONFIG_DEBUG_PAGEALLOC
Pekka Enberg343e0d72006-02-01 03:05:50 -08001596static void store_stackinfo(struct kmem_cache *cachep, unsigned long *addr,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001597 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598{
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001599 int size = obj_size(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001601 addr = (unsigned long *)&((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001603 if (size < 5 * sizeof(unsigned long))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 return;
1605
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001606 *addr++ = 0x12345678;
1607 *addr++ = caller;
1608 *addr++ = smp_processor_id();
1609 size -= 3 * sizeof(unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 {
1611 unsigned long *sptr = &caller;
1612 unsigned long svalue;
1613
1614 while (!kstack_end(sptr)) {
1615 svalue = *sptr++;
1616 if (kernel_text_address(svalue)) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001617 *addr++ = svalue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 size -= sizeof(unsigned long);
1619 if (size <= sizeof(unsigned long))
1620 break;
1621 }
1622 }
1623
1624 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001625 *addr++ = 0x87654321;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626}
1627#endif
1628
Pekka Enberg343e0d72006-02-01 03:05:50 -08001629static void poison_obj(struct kmem_cache *cachep, void *addr, unsigned char val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630{
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001631 int size = obj_size(cachep);
1632 addr = &((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633
1634 memset(addr, val, size);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001635 *(unsigned char *)(addr + size - 1) = POISON_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636}
1637
1638static void dump_line(char *data, int offset, int limit)
1639{
1640 int i;
1641 printk(KERN_ERR "%03x:", offset);
Andrew Mortona737b3e2006-03-22 00:08:11 -08001642 for (i = 0; i < limit; i++)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001643 printk(" %02x", (unsigned char)data[offset + i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 printk("\n");
1645}
1646#endif
1647
1648#if DEBUG
1649
Pekka Enberg343e0d72006-02-01 03:05:50 -08001650static void print_objinfo(struct kmem_cache *cachep, void *objp, int lines)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651{
1652 int i, size;
1653 char *realobj;
1654
1655 if (cachep->flags & SLAB_RED_ZONE) {
1656 printk(KERN_ERR "Redzone: 0x%lx/0x%lx.\n",
Andrew Mortona737b3e2006-03-22 00:08:11 -08001657 *dbg_redzone1(cachep, objp),
1658 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 }
1660
1661 if (cachep->flags & SLAB_STORE_USER) {
1662 printk(KERN_ERR "Last user: [<%p>]",
Andrew Mortona737b3e2006-03-22 00:08:11 -08001663 *dbg_userword(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 print_symbol("(%s)",
Andrew Mortona737b3e2006-03-22 00:08:11 -08001665 (unsigned long)*dbg_userword(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 printk("\n");
1667 }
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001668 realobj = (char *)objp + obj_offset(cachep);
1669 size = obj_size(cachep);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001670 for (i = 0; i < size && lines; i += 16, lines--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 int limit;
1672 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001673 if (i + limit > size)
1674 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 dump_line(realobj, i, limit);
1676 }
1677}
1678
Pekka Enberg343e0d72006-02-01 03:05:50 -08001679static void check_poison_obj(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680{
1681 char *realobj;
1682 int size, i;
1683 int lines = 0;
1684
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001685 realobj = (char *)objp + obj_offset(cachep);
1686 size = obj_size(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001688 for (i = 0; i < size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 char exp = POISON_FREE;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001690 if (i == size - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 exp = POISON_END;
1692 if (realobj[i] != exp) {
1693 int limit;
1694 /* Mismatch ! */
1695 /* Print header */
1696 if (lines == 0) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001697 printk(KERN_ERR
Andrew Mortona737b3e2006-03-22 00:08:11 -08001698 "Slab corruption: start=%p, len=%d\n",
1699 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 print_objinfo(cachep, objp, 0);
1701 }
1702 /* Hexdump the affected line */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001703 i = (i / 16) * 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001705 if (i + limit > size)
1706 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 dump_line(realobj, i, limit);
1708 i += 16;
1709 lines++;
1710 /* Limit to 5 lines */
1711 if (lines > 5)
1712 break;
1713 }
1714 }
1715 if (lines != 0) {
1716 /* Print some data about the neighboring objects, if they
1717 * exist:
1718 */
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -08001719 struct slab *slabp = virt_to_slab(objp);
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001720 unsigned int objnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001722 objnr = obj_to_index(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 if (objnr) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001724 objp = index_to_obj(cachep, slabp, objnr - 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001725 realobj = (char *)objp + obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 printk(KERN_ERR "Prev obj: start=%p, len=%d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001727 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728 print_objinfo(cachep, objp, 2);
1729 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001730 if (objnr + 1 < cachep->num) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001731 objp = index_to_obj(cachep, slabp, objnr + 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001732 realobj = (char *)objp + obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 printk(KERN_ERR "Next obj: start=%p, len=%d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001734 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 print_objinfo(cachep, objp, 2);
1736 }
1737 }
1738}
1739#endif
1740
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741#if DEBUG
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001742/**
Randy Dunlap911851e2006-03-22 00:08:14 -08001743 * slab_destroy_objs - destroy a slab and its objects
1744 * @cachep: cache pointer being destroyed
1745 * @slabp: slab pointer being destroyed
1746 *
1747 * Call the registered destructor for each object in a slab that is being
1748 * destroyed.
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001749 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001750static void slab_destroy_objs(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001751{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 int i;
1753 for (i = 0; i < cachep->num; i++) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001754 void *objp = index_to_obj(cachep, slabp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755
1756 if (cachep->flags & SLAB_POISON) {
1757#ifdef CONFIG_DEBUG_PAGEALLOC
Andrew Mortona737b3e2006-03-22 00:08:11 -08001758 if (cachep->buffer_size % PAGE_SIZE == 0 &&
1759 OFF_SLAB(cachep))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001760 kernel_map_pages(virt_to_page(objp),
Andrew Mortona737b3e2006-03-22 00:08:11 -08001761 cachep->buffer_size / PAGE_SIZE, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 else
1763 check_poison_obj(cachep, objp);
1764#else
1765 check_poison_obj(cachep, objp);
1766#endif
1767 }
1768 if (cachep->flags & SLAB_RED_ZONE) {
1769 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
1770 slab_error(cachep, "start of a freed object "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001771 "was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
1773 slab_error(cachep, "end of a freed object "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001774 "was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 }
1776 if (cachep->dtor && !(cachep->flags & SLAB_POISON))
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001777 (cachep->dtor) (objp + obj_offset(cachep), cachep, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 }
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001779}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780#else
Pekka Enberg343e0d72006-02-01 03:05:50 -08001781static void slab_destroy_objs(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001782{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 if (cachep->dtor) {
1784 int i;
1785 for (i = 0; i < cachep->num; i++) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001786 void *objp = index_to_obj(cachep, slabp, i);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001787 (cachep->dtor) (objp, cachep, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 }
1789 }
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001790}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791#endif
1792
Randy Dunlap911851e2006-03-22 00:08:14 -08001793/**
1794 * slab_destroy - destroy and release all objects in a slab
1795 * @cachep: cache pointer being destroyed
1796 * @slabp: slab pointer being destroyed
1797 *
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001798 * Destroy all the objs in a slab, and release the mem back to the system.
Andrew Mortona737b3e2006-03-22 00:08:11 -08001799 * Before calling the slab must have been unlinked from the cache. The
1800 * cache-lock is not held/needed.
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001801 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001802static void slab_destroy(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001803{
1804 void *addr = slabp->s_mem - slabp->colouroff;
1805
1806 slab_destroy_objs(cachep, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 if (unlikely(cachep->flags & SLAB_DESTROY_BY_RCU)) {
1808 struct slab_rcu *slab_rcu;
1809
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001810 slab_rcu = (struct slab_rcu *)slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 slab_rcu->cachep = cachep;
1812 slab_rcu->addr = addr;
1813 call_rcu(&slab_rcu->head, kmem_rcu_free);
1814 } else {
1815 kmem_freepages(cachep, addr);
Ingo Molnar873623d2006-07-13 14:44:38 +02001816 if (OFF_SLAB(cachep))
1817 kmem_cache_free(cachep->slabp_cache, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 }
1819}
1820
Andrew Mortona737b3e2006-03-22 00:08:11 -08001821/*
1822 * For setting up all the kmem_list3s for cache whose buffer_size is same as
1823 * size of kmem_list3.
1824 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001825static void set_up_list3s(struct kmem_cache *cachep, int index)
Christoph Lametere498be72005-09-09 13:03:32 -07001826{
1827 int node;
1828
1829 for_each_online_node(node) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001830 cachep->nodelists[node] = &initkmem_list3[index + node];
Christoph Lametere498be72005-09-09 13:03:32 -07001831 cachep->nodelists[node]->next_reap = jiffies +
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001832 REAPTIMEOUT_LIST3 +
1833 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
Christoph Lametere498be72005-09-09 13:03:32 -07001834 }
1835}
1836
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837/**
Randy.Dunlapa70773d2006-02-01 03:05:52 -08001838 * calculate_slab_order - calculate size (page order) of slabs
1839 * @cachep: pointer to the cache that is being created
1840 * @size: size of objects to be created in this cache.
1841 * @align: required alignment for the objects.
1842 * @flags: slab allocation flags
1843 *
1844 * Also calculates the number of objects per slab.
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001845 *
1846 * This could be made much more intelligent. For now, try to avoid using
1847 * high order pages for slabs. When the gfp() functions are more friendly
1848 * towards high-order requests, this should be changed.
1849 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08001850static size_t calculate_slab_order(struct kmem_cache *cachep,
Randy Dunlapee13d782006-02-01 03:05:53 -08001851 size_t size, size_t align, unsigned long flags)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001852{
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02001853 unsigned long offslab_limit;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001854 size_t left_over = 0;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001855 int gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001856
Andrew Mortona737b3e2006-03-22 00:08:11 -08001857 for (gfporder = 0; gfporder <= MAX_GFP_ORDER; gfporder++) {
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001858 unsigned int num;
1859 size_t remainder;
1860
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001861 cache_estimate(gfporder, size, align, flags, &remainder, &num);
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001862 if (!num)
1863 continue;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001864
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02001865 if (flags & CFLGS_OFF_SLAB) {
1866 /*
1867 * Max number of objs-per-slab for caches which
1868 * use off-slab slabs. Needed to avoid a possible
1869 * looping condition in cache_grow().
1870 */
1871 offslab_limit = size - sizeof(struct slab);
1872 offslab_limit /= sizeof(kmem_bufctl_t);
1873
1874 if (num > offslab_limit)
1875 break;
1876 }
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001877
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001878 /* Found something acceptable - save it away */
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001879 cachep->num = num;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001880 cachep->gfporder = gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001881 left_over = remainder;
1882
1883 /*
Linus Torvaldsf78bb8a2006-03-08 10:33:05 -08001884 * A VFS-reclaimable slab tends to have most allocations
1885 * as GFP_NOFS and we really don't want to have to be allocating
1886 * higher-order pages when we are unable to shrink dcache.
1887 */
1888 if (flags & SLAB_RECLAIM_ACCOUNT)
1889 break;
1890
1891 /*
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001892 * Large number of objects is good, but very large slabs are
1893 * currently bad for the gfp()s.
1894 */
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001895 if (gfporder >= slab_break_gfp_order)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001896 break;
1897
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001898 /*
1899 * Acceptable internal fragmentation?
1900 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08001901 if (left_over * 8 <= (PAGE_SIZE << gfporder))
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001902 break;
1903 }
1904 return left_over;
1905}
1906
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08001907static void setup_cpu_cache(struct kmem_cache *cachep)
1908{
1909 if (g_cpucache_up == FULL) {
1910 enable_cpucache(cachep);
1911 return;
1912 }
1913 if (g_cpucache_up == NONE) {
1914 /*
1915 * Note: the first kmem_cache_create must create the cache
1916 * that's used by kmalloc(24), otherwise the creation of
1917 * further caches will BUG().
1918 */
1919 cachep->array[smp_processor_id()] = &initarray_generic.cache;
1920
1921 /*
1922 * If the cache that's used by kmalloc(sizeof(kmem_list3)) is
1923 * the first cache, then we need to set up all its list3s,
1924 * otherwise the creation of further caches will BUG().
1925 */
1926 set_up_list3s(cachep, SIZE_AC);
1927 if (INDEX_AC == INDEX_L3)
1928 g_cpucache_up = PARTIAL_L3;
1929 else
1930 g_cpucache_up = PARTIAL_AC;
1931 } else {
1932 cachep->array[smp_processor_id()] =
1933 kmalloc(sizeof(struct arraycache_init), GFP_KERNEL);
1934
1935 if (g_cpucache_up == PARTIAL_AC) {
1936 set_up_list3s(cachep, SIZE_L3);
1937 g_cpucache_up = PARTIAL_L3;
1938 } else {
1939 int node;
1940 for_each_online_node(node) {
1941 cachep->nodelists[node] =
1942 kmalloc_node(sizeof(struct kmem_list3),
1943 GFP_KERNEL, node);
1944 BUG_ON(!cachep->nodelists[node]);
1945 kmem_list3_init(cachep->nodelists[node]);
1946 }
1947 }
1948 }
1949 cachep->nodelists[numa_node_id()]->next_reap =
1950 jiffies + REAPTIMEOUT_LIST3 +
1951 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
1952
1953 cpu_cache_get(cachep)->avail = 0;
1954 cpu_cache_get(cachep)->limit = BOOT_CPUCACHE_ENTRIES;
1955 cpu_cache_get(cachep)->batchcount = 1;
1956 cpu_cache_get(cachep)->touched = 0;
1957 cachep->batchcount = 1;
1958 cachep->limit = BOOT_CPUCACHE_ENTRIES;
1959}
1960
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001961/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 * kmem_cache_create - Create a cache.
1963 * @name: A string which is used in /proc/slabinfo to identify this cache.
1964 * @size: The size of objects to be created in this cache.
1965 * @align: The required alignment for the objects.
1966 * @flags: SLAB flags
1967 * @ctor: A constructor for the objects.
1968 * @dtor: A destructor for the objects.
1969 *
1970 * Returns a ptr to the cache on success, NULL on failure.
1971 * Cannot be called within a int, but can be interrupted.
1972 * The @ctor is run when new pages are allocated by the cache
1973 * and the @dtor is run before the pages are handed back.
1974 *
1975 * @name must be valid until the cache is destroyed. This implies that
Andrew Mortona737b3e2006-03-22 00:08:11 -08001976 * the module calling this has to destroy the cache before getting unloaded.
1977 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 * The flags are
1979 *
1980 * %SLAB_POISON - Poison the slab with a known test pattern (a5a5a5a5)
1981 * to catch references to uninitialised memory.
1982 *
1983 * %SLAB_RED_ZONE - Insert `Red' zones around the allocated memory to check
1984 * for buffer overruns.
1985 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986 * %SLAB_HWCACHE_ALIGN - Align the objects in this cache to a hardware
1987 * cacheline. This can be beneficial if you're counting cycles as closely
1988 * as davem.
1989 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001990struct kmem_cache *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991kmem_cache_create (const char *name, size_t size, size_t align,
Andrew Mortona737b3e2006-03-22 00:08:11 -08001992 unsigned long flags,
1993 void (*ctor)(void*, struct kmem_cache *, unsigned long),
Pekka Enberg343e0d72006-02-01 03:05:50 -08001994 void (*dtor)(void*, struct kmem_cache *, unsigned long))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995{
1996 size_t left_over, slab_size, ralign;
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07001997 struct kmem_cache *cachep = NULL, *pc;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998
1999 /*
2000 * Sanity checks... these are all serious usage bugs.
2001 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002002 if (!name || in_interrupt() || (size < BYTES_PER_WORD) ||
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002003 (size > (1 << MAX_OBJ_ORDER) * PAGE_SIZE) || (dtor && !ctor)) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002004 printk(KERN_ERR "%s: Early error in slab %s\n", __FUNCTION__,
2005 name);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002006 BUG();
2007 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008
Ravikiran G Thirumalaif0188f42006-02-10 01:51:13 -08002009 /*
2010 * Prevent CPUs from coming and going.
2011 * lock_cpu_hotplug() nests outside cache_chain_mutex
2012 */
2013 lock_cpu_hotplug();
2014
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002015 mutex_lock(&cache_chain_mutex);
Andrew Morton4f12bb42005-11-07 00:58:00 -08002016
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07002017 list_for_each_entry(pc, &cache_chain, next) {
Andrew Morton4f12bb42005-11-07 00:58:00 -08002018 mm_segment_t old_fs = get_fs();
2019 char tmp;
2020 int res;
2021
2022 /*
2023 * This happens when the module gets unloaded and doesn't
2024 * destroy its slab cache and no-one else reuses the vmalloc
2025 * area of the module. Print a warning.
2026 */
2027 set_fs(KERNEL_DS);
2028 res = __get_user(tmp, pc->name);
2029 set_fs(old_fs);
2030 if (res) {
2031 printk("SLAB: cache with size %d has lost its name\n",
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002032 pc->buffer_size);
Andrew Morton4f12bb42005-11-07 00:58:00 -08002033 continue;
2034 }
2035
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002036 if (!strcmp(pc->name, name)) {
Andrew Morton4f12bb42005-11-07 00:58:00 -08002037 printk("kmem_cache_create: duplicate cache %s\n", name);
2038 dump_stack();
2039 goto oops;
2040 }
2041 }
2042
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043#if DEBUG
2044 WARN_ON(strchr(name, ' ')); /* It confuses parsers */
2045 if ((flags & SLAB_DEBUG_INITIAL) && !ctor) {
2046 /* No constructor, but inital state check requested */
2047 printk(KERN_ERR "%s: No con, but init state check "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002048 "requested - %s\n", __FUNCTION__, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049 flags &= ~SLAB_DEBUG_INITIAL;
2050 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051#if FORCED_DEBUG
2052 /*
2053 * Enable redzoning and last user accounting, except for caches with
2054 * large objects, if the increased size would increase the object size
2055 * above the next power of two: caches with object sizes just above a
2056 * power of two have a significant amount of internal fragmentation.
2057 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002058 if (size < 4096 || fls(size - 1) == fls(size-1 + 3 * BYTES_PER_WORD))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002059 flags |= SLAB_RED_ZONE | SLAB_STORE_USER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 if (!(flags & SLAB_DESTROY_BY_RCU))
2061 flags |= SLAB_POISON;
2062#endif
2063 if (flags & SLAB_DESTROY_BY_RCU)
2064 BUG_ON(flags & SLAB_POISON);
2065#endif
2066 if (flags & SLAB_DESTROY_BY_RCU)
2067 BUG_ON(dtor);
2068
2069 /*
Andrew Mortona737b3e2006-03-22 00:08:11 -08002070 * Always checks flags, a caller might be expecting debug support which
2071 * isn't available.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 */
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002073 BUG_ON(flags & ~CREATE_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074
Andrew Mortona737b3e2006-03-22 00:08:11 -08002075 /*
2076 * Check that size is in terms of words. This is needed to avoid
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 * unaligned accesses for some archs when redzoning is used, and makes
2078 * sure any on-slab bufctl's are also correctly aligned.
2079 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002080 if (size & (BYTES_PER_WORD - 1)) {
2081 size += (BYTES_PER_WORD - 1);
2082 size &= ~(BYTES_PER_WORD - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 }
2084
Andrew Mortona737b3e2006-03-22 00:08:11 -08002085 /* calculate the final buffer alignment: */
2086
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 /* 1) arch recommendation: can be overridden for debug */
2088 if (flags & SLAB_HWCACHE_ALIGN) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002089 /*
2090 * Default alignment: as specified by the arch code. Except if
2091 * an object is really small, then squeeze multiple objects into
2092 * one cacheline.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 */
2094 ralign = cache_line_size();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002095 while (size <= ralign / 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 ralign /= 2;
2097 } else {
2098 ralign = BYTES_PER_WORD;
2099 }
2100 /* 2) arch mandated alignment: disables debug if necessary */
2101 if (ralign < ARCH_SLAB_MINALIGN) {
2102 ralign = ARCH_SLAB_MINALIGN;
2103 if (ralign > BYTES_PER_WORD)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002104 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 }
2106 /* 3) caller mandated alignment: disables debug if necessary */
2107 if (ralign < align) {
2108 ralign = align;
2109 if (ralign > BYTES_PER_WORD)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002110 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 }
Andrew Mortona737b3e2006-03-22 00:08:11 -08002112 /*
2113 * 4) Store it. Note that the debug code below can reduce
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 * the alignment to BYTES_PER_WORD.
2115 */
2116 align = ralign;
2117
2118 /* Get cache's description obj. */
Pekka Enbergc5e3b832006-03-25 03:06:43 -08002119 cachep = kmem_cache_zalloc(&cache_cache, SLAB_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 if (!cachep)
Andrew Morton4f12bb42005-11-07 00:58:00 -08002121 goto oops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122
2123#if DEBUG
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002124 cachep->obj_size = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125
2126 if (flags & SLAB_RED_ZONE) {
2127 /* redzoning only works with word aligned caches */
2128 align = BYTES_PER_WORD;
2129
2130 /* add space for red zone words */
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002131 cachep->obj_offset += BYTES_PER_WORD;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002132 size += 2 * BYTES_PER_WORD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133 }
2134 if (flags & SLAB_STORE_USER) {
2135 /* user store requires word alignment and
2136 * one word storage behind the end of the real
2137 * object.
2138 */
2139 align = BYTES_PER_WORD;
2140 size += BYTES_PER_WORD;
2141 }
2142#if FORCED_DEBUG && defined(CONFIG_DEBUG_PAGEALLOC)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002143 if (size >= malloc_sizes[INDEX_L3 + 1].cs_size
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002144 && cachep->obj_size > cache_line_size() && size < PAGE_SIZE) {
2145 cachep->obj_offset += PAGE_SIZE - size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 size = PAGE_SIZE;
2147 }
2148#endif
2149#endif
2150
Ingo Molnare0a42722006-06-23 02:03:46 -07002151 /*
2152 * Determine if the slab management is 'on' or 'off' slab.
2153 * (bootstrapping cannot cope with offslab caches so don't do
2154 * it too early on.)
2155 */
2156 if ((size >= (PAGE_SIZE >> 3)) && !slab_early_init)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 /*
2158 * Size is large, assume best to place the slab management obj
2159 * off-slab (should allow better packing of objs).
2160 */
2161 flags |= CFLGS_OFF_SLAB;
2162
2163 size = ALIGN(size, align);
2164
Linus Torvaldsf78bb8a2006-03-08 10:33:05 -08002165 left_over = calculate_slab_order(cachep, size, align, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166
2167 if (!cachep->num) {
2168 printk("kmem_cache_create: couldn't create cache %s.\n", name);
2169 kmem_cache_free(&cache_cache, cachep);
2170 cachep = NULL;
Andrew Morton4f12bb42005-11-07 00:58:00 -08002171 goto oops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002173 slab_size = ALIGN(cachep->num * sizeof(kmem_bufctl_t)
2174 + sizeof(struct slab), align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175
2176 /*
2177 * If the slab has been placed off-slab, and we have enough space then
2178 * move it on-slab. This is at the expense of any extra colouring.
2179 */
2180 if (flags & CFLGS_OFF_SLAB && left_over >= slab_size) {
2181 flags &= ~CFLGS_OFF_SLAB;
2182 left_over -= slab_size;
2183 }
2184
2185 if (flags & CFLGS_OFF_SLAB) {
2186 /* really off slab. No need for manual alignment */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002187 slab_size =
2188 cachep->num * sizeof(kmem_bufctl_t) + sizeof(struct slab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 }
2190
2191 cachep->colour_off = cache_line_size();
2192 /* Offset must be a multiple of the alignment. */
2193 if (cachep->colour_off < align)
2194 cachep->colour_off = align;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002195 cachep->colour = left_over / cachep->colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 cachep->slab_size = slab_size;
2197 cachep->flags = flags;
2198 cachep->gfpflags = 0;
2199 if (flags & SLAB_CACHE_DMA)
2200 cachep->gfpflags |= GFP_DMA;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002201 cachep->buffer_size = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202
2203 if (flags & CFLGS_OFF_SLAB)
Victor Fuscob2d55072005-09-10 00:26:36 -07002204 cachep->slabp_cache = kmem_find_general_cachep(slab_size, 0u);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 cachep->ctor = ctor;
2206 cachep->dtor = dtor;
2207 cachep->name = name;
2208
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002210 setup_cpu_cache(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 /* cache setup completed, link it into the list */
2213 list_add(&cachep->next, &cache_chain);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002214oops:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 if (!cachep && (flags & SLAB_PANIC))
2216 panic("kmem_cache_create(): failed to create slab `%s'\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002217 name);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002218 mutex_unlock(&cache_chain_mutex);
Ravikiran G Thirumalaif0188f42006-02-10 01:51:13 -08002219 unlock_cpu_hotplug();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 return cachep;
2221}
2222EXPORT_SYMBOL(kmem_cache_create);
2223
2224#if DEBUG
2225static void check_irq_off(void)
2226{
2227 BUG_ON(!irqs_disabled());
2228}
2229
2230static void check_irq_on(void)
2231{
2232 BUG_ON(irqs_disabled());
2233}
2234
Pekka Enberg343e0d72006-02-01 03:05:50 -08002235static void check_spinlock_acquired(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236{
2237#ifdef CONFIG_SMP
2238 check_irq_off();
Christoph Lametere498be72005-09-09 13:03:32 -07002239 assert_spin_locked(&cachep->nodelists[numa_node_id()]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240#endif
2241}
Christoph Lametere498be72005-09-09 13:03:32 -07002242
Pekka Enberg343e0d72006-02-01 03:05:50 -08002243static void check_spinlock_acquired_node(struct kmem_cache *cachep, int node)
Christoph Lametere498be72005-09-09 13:03:32 -07002244{
2245#ifdef CONFIG_SMP
2246 check_irq_off();
2247 assert_spin_locked(&cachep->nodelists[node]->list_lock);
2248#endif
2249}
2250
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251#else
2252#define check_irq_off() do { } while(0)
2253#define check_irq_on() do { } while(0)
2254#define check_spinlock_acquired(x) do { } while(0)
Christoph Lametere498be72005-09-09 13:03:32 -07002255#define check_spinlock_acquired_node(x, y) do { } while(0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256#endif
2257
Christoph Lameteraab22072006-03-22 00:09:06 -08002258static void drain_array(struct kmem_cache *cachep, struct kmem_list3 *l3,
2259 struct array_cache *ac,
2260 int force, int node);
2261
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262static void do_drain(void *arg)
2263{
Andrew Mortona737b3e2006-03-22 00:08:11 -08002264 struct kmem_cache *cachep = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 struct array_cache *ac;
Christoph Lameterff694162005-09-22 21:44:02 -07002266 int node = numa_node_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267
2268 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002269 ac = cpu_cache_get(cachep);
Christoph Lameterff694162005-09-22 21:44:02 -07002270 spin_lock(&cachep->nodelists[node]->list_lock);
2271 free_block(cachep, ac->entry, ac->avail, node);
2272 spin_unlock(&cachep->nodelists[node]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 ac->avail = 0;
2274}
2275
Pekka Enberg343e0d72006-02-01 03:05:50 -08002276static void drain_cpu_caches(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277{
Christoph Lametere498be72005-09-09 13:03:32 -07002278 struct kmem_list3 *l3;
2279 int node;
2280
Andrew Mortona07fa392006-03-22 00:08:17 -08002281 on_each_cpu(do_drain, cachep, 1, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 check_irq_on();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002283 for_each_online_node(node) {
Christoph Lametere498be72005-09-09 13:03:32 -07002284 l3 = cachep->nodelists[node];
Roland Dreiera4523a82006-05-15 11:41:00 -07002285 if (l3 && l3->alien)
2286 drain_alien_cache(cachep, l3->alien);
2287 }
2288
2289 for_each_online_node(node) {
2290 l3 = cachep->nodelists[node];
2291 if (l3)
Christoph Lameteraab22072006-03-22 00:09:06 -08002292 drain_array(cachep, l3, l3->shared, 1, node);
Christoph Lametere498be72005-09-09 13:03:32 -07002293 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294}
2295
Christoph Lametered11d9e2006-06-30 01:55:45 -07002296/*
2297 * Remove slabs from the list of free slabs.
2298 * Specify the number of slabs to drain in tofree.
2299 *
2300 * Returns the actual number of slabs released.
2301 */
2302static int drain_freelist(struct kmem_cache *cache,
2303 struct kmem_list3 *l3, int tofree)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304{
Christoph Lametered11d9e2006-06-30 01:55:45 -07002305 struct list_head *p;
2306 int nr_freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 struct slab *slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308
Christoph Lametered11d9e2006-06-30 01:55:45 -07002309 nr_freed = 0;
2310 while (nr_freed < tofree && !list_empty(&l3->slabs_free)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311
Christoph Lametered11d9e2006-06-30 01:55:45 -07002312 spin_lock_irq(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07002313 p = l3->slabs_free.prev;
Christoph Lametered11d9e2006-06-30 01:55:45 -07002314 if (p == &l3->slabs_free) {
2315 spin_unlock_irq(&l3->list_lock);
2316 goto out;
2317 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318
Christoph Lametered11d9e2006-06-30 01:55:45 -07002319 slabp = list_entry(p, struct slab, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320#if DEBUG
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002321 BUG_ON(slabp->inuse);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322#endif
2323 list_del(&slabp->list);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002324 /*
2325 * Safe to drop the lock. The slab is no longer linked
2326 * to the cache.
2327 */
2328 l3->free_objects -= cache->num;
Christoph Lametere498be72005-09-09 13:03:32 -07002329 spin_unlock_irq(&l3->list_lock);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002330 slab_destroy(cache, slabp);
2331 nr_freed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002332 }
Christoph Lametered11d9e2006-06-30 01:55:45 -07002333out:
2334 return nr_freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335}
2336
Pekka Enberg343e0d72006-02-01 03:05:50 -08002337static int __cache_shrink(struct kmem_cache *cachep)
Christoph Lametere498be72005-09-09 13:03:32 -07002338{
2339 int ret = 0, i = 0;
2340 struct kmem_list3 *l3;
2341
2342 drain_cpu_caches(cachep);
2343
2344 check_irq_on();
2345 for_each_online_node(i) {
2346 l3 = cachep->nodelists[i];
Christoph Lametered11d9e2006-06-30 01:55:45 -07002347 if (!l3)
2348 continue;
2349
2350 drain_freelist(cachep, l3, l3->free_objects);
2351
2352 ret += !list_empty(&l3->slabs_full) ||
2353 !list_empty(&l3->slabs_partial);
Christoph Lametere498be72005-09-09 13:03:32 -07002354 }
2355 return (ret ? 1 : 0);
2356}
2357
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358/**
2359 * kmem_cache_shrink - Shrink a cache.
2360 * @cachep: The cache to shrink.
2361 *
2362 * Releases as many slabs as possible for a cache.
2363 * To help debugging, a zero exit status indicates all slabs were released.
2364 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002365int kmem_cache_shrink(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366{
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002367 BUG_ON(!cachep || in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368
2369 return __cache_shrink(cachep);
2370}
2371EXPORT_SYMBOL(kmem_cache_shrink);
2372
2373/**
2374 * kmem_cache_destroy - delete a cache
2375 * @cachep: the cache to destroy
2376 *
Pekka Enberg343e0d72006-02-01 03:05:50 -08002377 * Remove a struct kmem_cache object from the slab cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 * Returns 0 on success.
2379 *
2380 * It is expected this function will be called by a module when it is
2381 * unloaded. This will remove the cache completely, and avoid a duplicate
2382 * cache being allocated each time a module is loaded and unloaded, if the
2383 * module doesn't have persistent in-kernel storage across loads and unloads.
2384 *
2385 * The cache must be empty before calling this function.
2386 *
2387 * The caller must guarantee that noone will allocate memory from the cache
2388 * during the kmem_cache_destroy().
2389 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002390int kmem_cache_destroy(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391{
2392 int i;
Christoph Lametere498be72005-09-09 13:03:32 -07002393 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002395 BUG_ON(!cachep || in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396
2397 /* Don't let CPUs to come and go */
2398 lock_cpu_hotplug();
2399
2400 /* Find the cache in the chain of caches. */
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002401 mutex_lock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 /*
2403 * the chain is never empty, cache_cache is never destroyed
2404 */
2405 list_del(&cachep->next);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002406 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407
2408 if (__cache_shrink(cachep)) {
2409 slab_error(cachep, "Can't free all objects");
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002410 mutex_lock(&cache_chain_mutex);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002411 list_add(&cachep->next, &cache_chain);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002412 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 unlock_cpu_hotplug();
2414 return 1;
2415 }
2416
2417 if (unlikely(cachep->flags & SLAB_DESTROY_BY_RCU))
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07002418 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419
Christoph Lametere498be72005-09-09 13:03:32 -07002420 for_each_online_cpu(i)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002421 kfree(cachep->array[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422
2423 /* NUMA: free the list3 structures */
Christoph Lametere498be72005-09-09 13:03:32 -07002424 for_each_online_node(i) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002425 l3 = cachep->nodelists[i];
2426 if (l3) {
Christoph Lametere498be72005-09-09 13:03:32 -07002427 kfree(l3->shared);
2428 free_alien_cache(l3->alien);
2429 kfree(l3);
2430 }
2431 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 kmem_cache_free(&cache_cache, cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433 unlock_cpu_hotplug();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434 return 0;
2435}
2436EXPORT_SYMBOL(kmem_cache_destroy);
2437
2438/* Get the memory for a slab management obj. */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002439static struct slab *alloc_slabmgmt(struct kmem_cache *cachep, void *objp,
Ravikiran G Thirumalai5b74ada2006-04-10 22:52:53 -07002440 int colour_off, gfp_t local_flags,
2441 int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442{
2443 struct slab *slabp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002444
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445 if (OFF_SLAB(cachep)) {
2446 /* Slab management obj is off-slab. */
Ravikiran G Thirumalai5b74ada2006-04-10 22:52:53 -07002447 slabp = kmem_cache_alloc_node(cachep->slabp_cache,
2448 local_flags, nodeid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 if (!slabp)
2450 return NULL;
2451 } else {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002452 slabp = objp + colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453 colour_off += cachep->slab_size;
2454 }
2455 slabp->inuse = 0;
2456 slabp->colouroff = colour_off;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002457 slabp->s_mem = objp + colour_off;
Ravikiran G Thirumalai5b74ada2006-04-10 22:52:53 -07002458 slabp->nodeid = nodeid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 return slabp;
2460}
2461
2462static inline kmem_bufctl_t *slab_bufctl(struct slab *slabp)
2463{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002464 return (kmem_bufctl_t *) (slabp + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465}
2466
Pekka Enberg343e0d72006-02-01 03:05:50 -08002467static void cache_init_objs(struct kmem_cache *cachep,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002468 struct slab *slabp, unsigned long ctor_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469{
2470 int i;
2471
2472 for (i = 0; i < cachep->num; i++) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002473 void *objp = index_to_obj(cachep, slabp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474#if DEBUG
2475 /* need to poison the objs? */
2476 if (cachep->flags & SLAB_POISON)
2477 poison_obj(cachep, objp, POISON_FREE);
2478 if (cachep->flags & SLAB_STORE_USER)
2479 *dbg_userword(cachep, objp) = NULL;
2480
2481 if (cachep->flags & SLAB_RED_ZONE) {
2482 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2483 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2484 }
2485 /*
Andrew Mortona737b3e2006-03-22 00:08:11 -08002486 * Constructors are not allowed to allocate memory from the same
2487 * cache which they are a constructor for. Otherwise, deadlock.
2488 * They must also be threaded.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489 */
2490 if (cachep->ctor && !(cachep->flags & SLAB_POISON))
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002491 cachep->ctor(objp + obj_offset(cachep), cachep,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002492 ctor_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493
2494 if (cachep->flags & SLAB_RED_ZONE) {
2495 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
2496 slab_error(cachep, "constructor overwrote the"
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002497 " end of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
2499 slab_error(cachep, "constructor overwrote the"
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002500 " start of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501 }
Andrew Mortona737b3e2006-03-22 00:08:11 -08002502 if ((cachep->buffer_size % PAGE_SIZE) == 0 &&
2503 OFF_SLAB(cachep) && cachep->flags & SLAB_POISON)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002504 kernel_map_pages(virt_to_page(objp),
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002505 cachep->buffer_size / PAGE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506#else
2507 if (cachep->ctor)
2508 cachep->ctor(objp, cachep, ctor_flags);
2509#endif
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002510 slab_bufctl(slabp)[i] = i + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002512 slab_bufctl(slabp)[i - 1] = BUFCTL_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 slabp->free = 0;
2514}
2515
Pekka Enberg343e0d72006-02-01 03:05:50 -08002516static void kmem_flagcheck(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517{
Andrew Mortona737b3e2006-03-22 00:08:11 -08002518 if (flags & SLAB_DMA)
2519 BUG_ON(!(cachep->gfpflags & GFP_DMA));
2520 else
2521 BUG_ON(cachep->gfpflags & GFP_DMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522}
2523
Andrew Mortona737b3e2006-03-22 00:08:11 -08002524static void *slab_get_obj(struct kmem_cache *cachep, struct slab *slabp,
2525 int nodeid)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002526{
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002527 void *objp = index_to_obj(cachep, slabp, slabp->free);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002528 kmem_bufctl_t next;
2529
2530 slabp->inuse++;
2531 next = slab_bufctl(slabp)[slabp->free];
2532#if DEBUG
2533 slab_bufctl(slabp)[slabp->free] = BUFCTL_FREE;
2534 WARN_ON(slabp->nodeid != nodeid);
2535#endif
2536 slabp->free = next;
2537
2538 return objp;
2539}
2540
Andrew Mortona737b3e2006-03-22 00:08:11 -08002541static void slab_put_obj(struct kmem_cache *cachep, struct slab *slabp,
2542 void *objp, int nodeid)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002543{
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002544 unsigned int objnr = obj_to_index(cachep, slabp, objp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002545
2546#if DEBUG
2547 /* Verify that the slab belongs to the intended node */
2548 WARN_ON(slabp->nodeid != nodeid);
2549
Al Viro871751e2006-03-25 03:06:39 -08002550 if (slab_bufctl(slabp)[objnr] + 1 <= SLAB_LIMIT + 1) {
Matthew Dobson78d382d2006-02-01 03:05:47 -08002551 printk(KERN_ERR "slab: double free detected in cache "
Andrew Mortona737b3e2006-03-22 00:08:11 -08002552 "'%s', objp %p\n", cachep->name, objp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002553 BUG();
2554 }
2555#endif
2556 slab_bufctl(slabp)[objnr] = slabp->free;
2557 slabp->free = objnr;
2558 slabp->inuse--;
2559}
2560
Pekka Enberg47768742006-06-23 02:03:07 -07002561/*
2562 * Map pages beginning at addr to the given cache and slab. This is required
2563 * for the slab allocator to be able to lookup the cache and slab of a
2564 * virtual address for kfree, ksize, kmem_ptr_validate, and slab debugging.
2565 */
2566static void slab_map_pages(struct kmem_cache *cache, struct slab *slab,
2567 void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568{
Pekka Enberg47768742006-06-23 02:03:07 -07002569 int nr_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570 struct page *page;
2571
Pekka Enberg47768742006-06-23 02:03:07 -07002572 page = virt_to_page(addr);
Nick Piggin84097512006-03-22 00:08:34 -08002573
Pekka Enberg47768742006-06-23 02:03:07 -07002574 nr_pages = 1;
Nick Piggin84097512006-03-22 00:08:34 -08002575 if (likely(!PageCompound(page)))
Pekka Enberg47768742006-06-23 02:03:07 -07002576 nr_pages <<= cache->gfporder;
2577
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578 do {
Pekka Enberg47768742006-06-23 02:03:07 -07002579 page_set_cache(page, cache);
2580 page_set_slab(page, slab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581 page++;
Pekka Enberg47768742006-06-23 02:03:07 -07002582 } while (--nr_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583}
2584
2585/*
2586 * Grow (by 1) the number of slabs within a cache. This is called by
2587 * kmem_cache_alloc() when there are no active objs left in a cache.
2588 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002589static int cache_grow(struct kmem_cache *cachep, gfp_t flags, int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002591 struct slab *slabp;
2592 void *objp;
2593 size_t offset;
2594 gfp_t local_flags;
2595 unsigned long ctor_flags;
Christoph Lametere498be72005-09-09 13:03:32 -07002596 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597
Andrew Mortona737b3e2006-03-22 00:08:11 -08002598 /*
2599 * Be lazy and only check for valid flags here, keeping it out of the
2600 * critical path in kmem_cache_alloc().
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 */
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002602 BUG_ON(flags & ~(SLAB_DMA | SLAB_LEVEL_MASK | SLAB_NO_GROW));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603 if (flags & SLAB_NO_GROW)
2604 return 0;
2605
2606 ctor_flags = SLAB_CTOR_CONSTRUCTOR;
2607 local_flags = (flags & SLAB_LEVEL_MASK);
2608 if (!(local_flags & __GFP_WAIT))
2609 /*
2610 * Not allowed to sleep. Need to tell a constructor about
2611 * this - it might need to know...
2612 */
2613 ctor_flags |= SLAB_CTOR_ATOMIC;
2614
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002615 /* Take the l3 list lock to change the colour_next on this node */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616 check_irq_off();
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002617 l3 = cachep->nodelists[nodeid];
2618 spin_lock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619
2620 /* Get colour for the slab, and cal the next value. */
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002621 offset = l3->colour_next;
2622 l3->colour_next++;
2623 if (l3->colour_next >= cachep->colour)
2624 l3->colour_next = 0;
2625 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002627 offset *= cachep->colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628
2629 if (local_flags & __GFP_WAIT)
2630 local_irq_enable();
2631
2632 /*
2633 * The test for missing atomic flag is performed here, rather than
2634 * the more obvious place, simply to reduce the critical path length
2635 * in kmem_cache_alloc(). If a caller is seriously mis-behaving they
2636 * will eventually be caught here (where it matters).
2637 */
2638 kmem_flagcheck(cachep, flags);
2639
Andrew Mortona737b3e2006-03-22 00:08:11 -08002640 /*
2641 * Get mem for the objs. Attempt to allocate a physical page from
2642 * 'nodeid'.
Christoph Lametere498be72005-09-09 13:03:32 -07002643 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002644 objp = kmem_getpages(cachep, flags, nodeid);
2645 if (!objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646 goto failed;
2647
2648 /* Get slab management. */
Ravikiran G Thirumalai5b74ada2006-04-10 22:52:53 -07002649 slabp = alloc_slabmgmt(cachep, objp, offset, local_flags, nodeid);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002650 if (!slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651 goto opps1;
2652
Christoph Lametere498be72005-09-09 13:03:32 -07002653 slabp->nodeid = nodeid;
Pekka Enberg47768742006-06-23 02:03:07 -07002654 slab_map_pages(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002655
2656 cache_init_objs(cachep, slabp, ctor_flags);
2657
2658 if (local_flags & __GFP_WAIT)
2659 local_irq_disable();
2660 check_irq_off();
Christoph Lametere498be72005-09-09 13:03:32 -07002661 spin_lock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662
2663 /* Make slab active. */
Christoph Lametere498be72005-09-09 13:03:32 -07002664 list_add_tail(&slabp->list, &(l3->slabs_free));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665 STATS_INC_GROWN(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07002666 l3->free_objects += cachep->num;
2667 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668 return 1;
Andrew Mortona737b3e2006-03-22 00:08:11 -08002669opps1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670 kmem_freepages(cachep, objp);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002671failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672 if (local_flags & __GFP_WAIT)
2673 local_irq_disable();
2674 return 0;
2675}
2676
2677#if DEBUG
2678
2679/*
2680 * Perform extra freeing checks:
2681 * - detect bad pointers.
2682 * - POISON/RED_ZONE checking
2683 * - destructor calls, for caches with POISON+dtor
2684 */
2685static void kfree_debugcheck(const void *objp)
2686{
2687 struct page *page;
2688
2689 if (!virt_addr_valid(objp)) {
2690 printk(KERN_ERR "kfree_debugcheck: out of range ptr %lxh.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002691 (unsigned long)objp);
2692 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693 }
2694 page = virt_to_page(objp);
2695 if (!PageSlab(page)) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002696 printk(KERN_ERR "kfree_debugcheck: bad ptr %lxh.\n",
2697 (unsigned long)objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698 BUG();
2699 }
2700}
2701
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002702static inline void verify_redzone_free(struct kmem_cache *cache, void *obj)
2703{
2704 unsigned long redzone1, redzone2;
2705
2706 redzone1 = *dbg_redzone1(cache, obj);
2707 redzone2 = *dbg_redzone2(cache, obj);
2708
2709 /*
2710 * Redzone is ok.
2711 */
2712 if (redzone1 == RED_ACTIVE && redzone2 == RED_ACTIVE)
2713 return;
2714
2715 if (redzone1 == RED_INACTIVE && redzone2 == RED_INACTIVE)
2716 slab_error(cache, "double free detected");
2717 else
2718 slab_error(cache, "memory outside object was overwritten");
2719
2720 printk(KERN_ERR "%p: redzone 1:0x%lx, redzone 2:0x%lx.\n",
2721 obj, redzone1, redzone2);
2722}
2723
Pekka Enberg343e0d72006-02-01 03:05:50 -08002724static void *cache_free_debugcheck(struct kmem_cache *cachep, void *objp,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002725 void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726{
2727 struct page *page;
2728 unsigned int objnr;
2729 struct slab *slabp;
2730
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002731 objp -= obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732 kfree_debugcheck(objp);
2733 page = virt_to_page(objp);
2734
Pekka Enberg065d41c2005-11-13 16:06:46 -08002735 slabp = page_get_slab(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736
2737 if (cachep->flags & SLAB_RED_ZONE) {
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002738 verify_redzone_free(cachep, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2740 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2741 }
2742 if (cachep->flags & SLAB_STORE_USER)
2743 *dbg_userword(cachep, objp) = caller;
2744
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002745 objnr = obj_to_index(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746
2747 BUG_ON(objnr >= cachep->num);
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002748 BUG_ON(objp != index_to_obj(cachep, slabp, objnr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749
2750 if (cachep->flags & SLAB_DEBUG_INITIAL) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002751 /*
2752 * Need to call the slab's constructor so the caller can
2753 * perform a verify of its state (debugging). Called without
2754 * the cache-lock held.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755 */
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002756 cachep->ctor(objp + obj_offset(cachep),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002757 cachep, SLAB_CTOR_CONSTRUCTOR | SLAB_CTOR_VERIFY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758 }
2759 if (cachep->flags & SLAB_POISON && cachep->dtor) {
2760 /* we want to cache poison the object,
2761 * call the destruction callback
2762 */
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002763 cachep->dtor(objp + obj_offset(cachep), cachep, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764 }
Al Viro871751e2006-03-25 03:06:39 -08002765#ifdef CONFIG_DEBUG_SLAB_LEAK
2766 slab_bufctl(slabp)[objnr] = BUFCTL_FREE;
2767#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768 if (cachep->flags & SLAB_POISON) {
2769#ifdef CONFIG_DEBUG_PAGEALLOC
Andrew Mortona737b3e2006-03-22 00:08:11 -08002770 if ((cachep->buffer_size % PAGE_SIZE)==0 && OFF_SLAB(cachep)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771 store_stackinfo(cachep, objp, (unsigned long)caller);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002772 kernel_map_pages(virt_to_page(objp),
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002773 cachep->buffer_size / PAGE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774 } else {
2775 poison_obj(cachep, objp, POISON_FREE);
2776 }
2777#else
2778 poison_obj(cachep, objp, POISON_FREE);
2779#endif
2780 }
2781 return objp;
2782}
2783
Pekka Enberg343e0d72006-02-01 03:05:50 -08002784static void check_slabp(struct kmem_cache *cachep, struct slab *slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785{
2786 kmem_bufctl_t i;
2787 int entries = 0;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002788
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789 /* Check slab's freelist to see if this obj is there. */
2790 for (i = slabp->free; i != BUFCTL_END; i = slab_bufctl(slabp)[i]) {
2791 entries++;
2792 if (entries > cachep->num || i >= cachep->num)
2793 goto bad;
2794 }
2795 if (entries != cachep->num - slabp->inuse) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002796bad:
2797 printk(KERN_ERR "slab: Internal list corruption detected in "
2798 "cache '%s'(%d), slabp %p(%d). Hexdump:\n",
2799 cachep->name, cachep->num, slabp, slabp->inuse);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002800 for (i = 0;
Linus Torvalds264132b2006-03-06 12:10:07 -08002801 i < sizeof(*slabp) + cachep->num * sizeof(kmem_bufctl_t);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002802 i++) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002803 if (i % 16 == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804 printk("\n%03x:", i);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002805 printk(" %02x", ((unsigned char *)slabp)[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806 }
2807 printk("\n");
2808 BUG();
2809 }
2810}
2811#else
2812#define kfree_debugcheck(x) do { } while(0)
2813#define cache_free_debugcheck(x,objp,z) (objp)
2814#define check_slabp(x,y) do { } while(0)
2815#endif
2816
Pekka Enberg343e0d72006-02-01 03:05:50 -08002817static void *cache_alloc_refill(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818{
2819 int batchcount;
2820 struct kmem_list3 *l3;
2821 struct array_cache *ac;
2822
2823 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002824 ac = cpu_cache_get(cachep);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002825retry:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826 batchcount = ac->batchcount;
2827 if (!ac->touched && batchcount > BATCHREFILL_LIMIT) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002828 /*
2829 * If there was little recent activity on this cache, then
2830 * perform only a partial refill. Otherwise we could generate
2831 * refill bouncing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832 */
2833 batchcount = BATCHREFILL_LIMIT;
2834 }
Christoph Lametere498be72005-09-09 13:03:32 -07002835 l3 = cachep->nodelists[numa_node_id()];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836
Christoph Lametere498be72005-09-09 13:03:32 -07002837 BUG_ON(ac->avail > 0 || !l3);
2838 spin_lock(&l3->list_lock);
2839
Christoph Lameter3ded1752006-03-25 03:06:44 -08002840 /* See if we can refill from the shared array */
2841 if (l3->shared && transfer_objects(ac, l3->shared, batchcount))
2842 goto alloc_done;
2843
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844 while (batchcount > 0) {
2845 struct list_head *entry;
2846 struct slab *slabp;
2847 /* Get slab alloc is to come from. */
2848 entry = l3->slabs_partial.next;
2849 if (entry == &l3->slabs_partial) {
2850 l3->free_touched = 1;
2851 entry = l3->slabs_free.next;
2852 if (entry == &l3->slabs_free)
2853 goto must_grow;
2854 }
2855
2856 slabp = list_entry(entry, struct slab, list);
2857 check_slabp(cachep, slabp);
2858 check_spinlock_acquired(cachep);
2859 while (slabp->inuse < cachep->num && batchcount--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860 STATS_INC_ALLOCED(cachep);
2861 STATS_INC_ACTIVE(cachep);
2862 STATS_SET_HIGH(cachep);
2863
Matthew Dobson78d382d2006-02-01 03:05:47 -08002864 ac->entry[ac->avail++] = slab_get_obj(cachep, slabp,
2865 numa_node_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 }
2867 check_slabp(cachep, slabp);
2868
2869 /* move slabp to correct slabp list: */
2870 list_del(&slabp->list);
2871 if (slabp->free == BUFCTL_END)
2872 list_add(&slabp->list, &l3->slabs_full);
2873 else
2874 list_add(&slabp->list, &l3->slabs_partial);
2875 }
2876
Andrew Mortona737b3e2006-03-22 00:08:11 -08002877must_grow:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878 l3->free_objects -= ac->avail;
Andrew Mortona737b3e2006-03-22 00:08:11 -08002879alloc_done:
Christoph Lametere498be72005-09-09 13:03:32 -07002880 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881
2882 if (unlikely(!ac->avail)) {
2883 int x;
Christoph Lametere498be72005-09-09 13:03:32 -07002884 x = cache_grow(cachep, flags, numa_node_id());
2885
Andrew Mortona737b3e2006-03-22 00:08:11 -08002886 /* cache_grow can reenable interrupts, then ac could change. */
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002887 ac = cpu_cache_get(cachep);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002888 if (!x && ac->avail == 0) /* no objects in sight? abort */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889 return NULL;
2890
Andrew Mortona737b3e2006-03-22 00:08:11 -08002891 if (!ac->avail) /* objects refilled by interrupt? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892 goto retry;
2893 }
2894 ac->touched = 1;
Christoph Lametere498be72005-09-09 13:03:32 -07002895 return ac->entry[--ac->avail];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896}
2897
Andrew Mortona737b3e2006-03-22 00:08:11 -08002898static inline void cache_alloc_debugcheck_before(struct kmem_cache *cachep,
2899 gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900{
2901 might_sleep_if(flags & __GFP_WAIT);
2902#if DEBUG
2903 kmem_flagcheck(cachep, flags);
2904#endif
2905}
2906
2907#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08002908static void *cache_alloc_debugcheck_after(struct kmem_cache *cachep,
2909 gfp_t flags, void *objp, void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002911 if (!objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912 return objp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002913 if (cachep->flags & SLAB_POISON) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914#ifdef CONFIG_DEBUG_PAGEALLOC
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002915 if ((cachep->buffer_size % PAGE_SIZE) == 0 && OFF_SLAB(cachep))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002916 kernel_map_pages(virt_to_page(objp),
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002917 cachep->buffer_size / PAGE_SIZE, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918 else
2919 check_poison_obj(cachep, objp);
2920#else
2921 check_poison_obj(cachep, objp);
2922#endif
2923 poison_obj(cachep, objp, POISON_INUSE);
2924 }
2925 if (cachep->flags & SLAB_STORE_USER)
2926 *dbg_userword(cachep, objp) = caller;
2927
2928 if (cachep->flags & SLAB_RED_ZONE) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002929 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE ||
2930 *dbg_redzone2(cachep, objp) != RED_INACTIVE) {
2931 slab_error(cachep, "double free, or memory outside"
2932 " object was overwritten");
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002933 printk(KERN_ERR
Andrew Mortona737b3e2006-03-22 00:08:11 -08002934 "%p: redzone 1:0x%lx, redzone 2:0x%lx\n",
2935 objp, *dbg_redzone1(cachep, objp),
2936 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937 }
2938 *dbg_redzone1(cachep, objp) = RED_ACTIVE;
2939 *dbg_redzone2(cachep, objp) = RED_ACTIVE;
2940 }
Al Viro871751e2006-03-25 03:06:39 -08002941#ifdef CONFIG_DEBUG_SLAB_LEAK
2942 {
2943 struct slab *slabp;
2944 unsigned objnr;
2945
2946 slabp = page_get_slab(virt_to_page(objp));
2947 objnr = (unsigned)(objp - slabp->s_mem) / cachep->buffer_size;
2948 slab_bufctl(slabp)[objnr] = BUFCTL_ACTIVE;
2949 }
2950#endif
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002951 objp += obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952 if (cachep->ctor && cachep->flags & SLAB_POISON) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002953 unsigned long ctor_flags = SLAB_CTOR_CONSTRUCTOR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954
2955 if (!(flags & __GFP_WAIT))
2956 ctor_flags |= SLAB_CTOR_ATOMIC;
2957
2958 cachep->ctor(objp, cachep, ctor_flags);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002959 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960 return objp;
2961}
2962#else
2963#define cache_alloc_debugcheck_after(a,b,objp,d) (objp)
2964#endif
2965
Pekka Enberg343e0d72006-02-01 03:05:50 -08002966static inline void *____cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002968 void *objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969 struct array_cache *ac;
2970
Christoph Lameterdc85da12006-01-18 17:42:36 -08002971#ifdef CONFIG_NUMA
Paul Jacksonb2455392006-03-24 03:16:12 -08002972 if (unlikely(current->flags & (PF_SPREAD_SLAB | PF_MEMPOLICY))) {
Paul Jacksonc61afb12006-03-24 03:16:08 -08002973 objp = alternate_node_alloc(cachep, flags);
2974 if (objp != NULL)
2975 return objp;
Paul Jackson101a5002006-03-24 03:16:07 -08002976 }
Christoph Lameterdc85da12006-01-18 17:42:36 -08002977#endif
2978
Alok N Kataria5c382302005-09-27 21:45:46 -07002979 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002980 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981 if (likely(ac->avail)) {
2982 STATS_INC_ALLOCHIT(cachep);
2983 ac->touched = 1;
Christoph Lametere498be72005-09-09 13:03:32 -07002984 objp = ac->entry[--ac->avail];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985 } else {
2986 STATS_INC_ALLOCMISS(cachep);
2987 objp = cache_alloc_refill(cachep, flags);
2988 }
Alok N Kataria5c382302005-09-27 21:45:46 -07002989 return objp;
2990}
2991
Andrew Mortona737b3e2006-03-22 00:08:11 -08002992static __always_inline void *__cache_alloc(struct kmem_cache *cachep,
2993 gfp_t flags, void *caller)
Alok N Kataria5c382302005-09-27 21:45:46 -07002994{
2995 unsigned long save_flags;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002996 void *objp;
Alok N Kataria5c382302005-09-27 21:45:46 -07002997
2998 cache_alloc_debugcheck_before(cachep, flags);
2999
3000 local_irq_save(save_flags);
3001 objp = ____cache_alloc(cachep, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002 local_irq_restore(save_flags);
Eric Dumazet34342e82005-09-03 15:55:06 -07003003 objp = cache_alloc_debugcheck_after(cachep, flags, objp,
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003004 caller);
Eric Dumazet34342e82005-09-03 15:55:06 -07003005 prefetchw(objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006 return objp;
3007}
3008
Christoph Lametere498be72005-09-09 13:03:32 -07003009#ifdef CONFIG_NUMA
3010/*
Paul Jacksonb2455392006-03-24 03:16:12 -08003011 * Try allocating on another node if PF_SPREAD_SLAB|PF_MEMPOLICY.
Paul Jacksonc61afb12006-03-24 03:16:08 -08003012 *
3013 * If we are in_interrupt, then process context, including cpusets and
3014 * mempolicy, may not apply and should not be used for allocation policy.
3015 */
3016static void *alternate_node_alloc(struct kmem_cache *cachep, gfp_t flags)
3017{
3018 int nid_alloc, nid_here;
3019
3020 if (in_interrupt())
3021 return NULL;
3022 nid_alloc = nid_here = numa_node_id();
3023 if (cpuset_do_slab_mem_spread() && (cachep->flags & SLAB_MEM_SPREAD))
3024 nid_alloc = cpuset_mem_spread_node();
3025 else if (current->mempolicy)
3026 nid_alloc = slab_node(current->mempolicy);
3027 if (nid_alloc != nid_here)
3028 return __cache_alloc_node(cachep, flags, nid_alloc);
3029 return NULL;
3030}
3031
3032/*
Christoph Lametere498be72005-09-09 13:03:32 -07003033 * A interface to enable slab creation on nodeid
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08003035static void *__cache_alloc_node(struct kmem_cache *cachep, gfp_t flags,
3036 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07003037{
3038 struct list_head *entry;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003039 struct slab *slabp;
3040 struct kmem_list3 *l3;
3041 void *obj;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003042 int x;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003044 l3 = cachep->nodelists[nodeid];
3045 BUG_ON(!l3);
Christoph Lametere498be72005-09-09 13:03:32 -07003046
Andrew Mortona737b3e2006-03-22 00:08:11 -08003047retry:
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08003048 check_irq_off();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003049 spin_lock(&l3->list_lock);
3050 entry = l3->slabs_partial.next;
3051 if (entry == &l3->slabs_partial) {
3052 l3->free_touched = 1;
3053 entry = l3->slabs_free.next;
3054 if (entry == &l3->slabs_free)
3055 goto must_grow;
3056 }
Christoph Lametere498be72005-09-09 13:03:32 -07003057
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003058 slabp = list_entry(entry, struct slab, list);
3059 check_spinlock_acquired_node(cachep, nodeid);
3060 check_slabp(cachep, slabp);
Christoph Lametere498be72005-09-09 13:03:32 -07003061
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003062 STATS_INC_NODEALLOCS(cachep);
3063 STATS_INC_ACTIVE(cachep);
3064 STATS_SET_HIGH(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003065
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003066 BUG_ON(slabp->inuse == cachep->num);
Christoph Lametere498be72005-09-09 13:03:32 -07003067
Matthew Dobson78d382d2006-02-01 03:05:47 -08003068 obj = slab_get_obj(cachep, slabp, nodeid);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003069 check_slabp(cachep, slabp);
3070 l3->free_objects--;
3071 /* move slabp to correct slabp list: */
3072 list_del(&slabp->list);
Christoph Lametere498be72005-09-09 13:03:32 -07003073
Andrew Mortona737b3e2006-03-22 00:08:11 -08003074 if (slabp->free == BUFCTL_END)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003075 list_add(&slabp->list, &l3->slabs_full);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003076 else
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003077 list_add(&slabp->list, &l3->slabs_partial);
Christoph Lametere498be72005-09-09 13:03:32 -07003078
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003079 spin_unlock(&l3->list_lock);
3080 goto done;
Christoph Lametere498be72005-09-09 13:03:32 -07003081
Andrew Mortona737b3e2006-03-22 00:08:11 -08003082must_grow:
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003083 spin_unlock(&l3->list_lock);
3084 x = cache_grow(cachep, flags, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07003085
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003086 if (!x)
3087 return NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07003088
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003089 goto retry;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003090done:
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003091 return obj;
Christoph Lametere498be72005-09-09 13:03:32 -07003092}
3093#endif
3094
3095/*
3096 * Caller needs to acquire correct kmem_list's list_lock
3097 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003098static void free_block(struct kmem_cache *cachep, void **objpp, int nr_objects,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003099 int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100{
3101 int i;
Christoph Lametere498be72005-09-09 13:03:32 -07003102 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103
3104 for (i = 0; i < nr_objects; i++) {
3105 void *objp = objpp[i];
3106 struct slab *slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -08003108 slabp = virt_to_slab(objp);
Christoph Lameterff694162005-09-22 21:44:02 -07003109 l3 = cachep->nodelists[node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110 list_del(&slabp->list);
Christoph Lameterff694162005-09-22 21:44:02 -07003111 check_spinlock_acquired_node(cachep, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112 check_slabp(cachep, slabp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08003113 slab_put_obj(cachep, slabp, objp, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114 STATS_DEC_ACTIVE(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003115 l3->free_objects++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116 check_slabp(cachep, slabp);
3117
3118 /* fixup slab chains */
3119 if (slabp->inuse == 0) {
Christoph Lametere498be72005-09-09 13:03:32 -07003120 if (l3->free_objects > l3->free_limit) {
3121 l3->free_objects -= cachep->num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122 slab_destroy(cachep, slabp);
3123 } else {
Christoph Lametere498be72005-09-09 13:03:32 -07003124 list_add(&slabp->list, &l3->slabs_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003125 }
3126 } else {
3127 /* Unconditionally move a slab to the end of the
3128 * partial list on free - maximum time for the
3129 * other objects to be freed, too.
3130 */
Christoph Lametere498be72005-09-09 13:03:32 -07003131 list_add_tail(&slabp->list, &l3->slabs_partial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003132 }
3133 }
3134}
3135
Pekka Enberg343e0d72006-02-01 03:05:50 -08003136static void cache_flusharray(struct kmem_cache *cachep, struct array_cache *ac)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137{
3138 int batchcount;
Christoph Lametere498be72005-09-09 13:03:32 -07003139 struct kmem_list3 *l3;
Christoph Lameterff694162005-09-22 21:44:02 -07003140 int node = numa_node_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141
3142 batchcount = ac->batchcount;
3143#if DEBUG
3144 BUG_ON(!batchcount || batchcount > ac->avail);
3145#endif
3146 check_irq_off();
Christoph Lameterff694162005-09-22 21:44:02 -07003147 l3 = cachep->nodelists[node];
Ingo Molnar873623d2006-07-13 14:44:38 +02003148 spin_lock(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07003149 if (l3->shared) {
3150 struct array_cache *shared_array = l3->shared;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003151 int max = shared_array->limit - shared_array->avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152 if (max) {
3153 if (batchcount > max)
3154 batchcount = max;
Christoph Lametere498be72005-09-09 13:03:32 -07003155 memcpy(&(shared_array->entry[shared_array->avail]),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003156 ac->entry, sizeof(void *) * batchcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003157 shared_array->avail += batchcount;
3158 goto free_done;
3159 }
3160 }
3161
Christoph Lameterff694162005-09-22 21:44:02 -07003162 free_block(cachep, ac->entry, batchcount, node);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003163free_done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164#if STATS
3165 {
3166 int i = 0;
3167 struct list_head *p;
3168
Christoph Lametere498be72005-09-09 13:03:32 -07003169 p = l3->slabs_free.next;
3170 while (p != &(l3->slabs_free)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171 struct slab *slabp;
3172
3173 slabp = list_entry(p, struct slab, list);
3174 BUG_ON(slabp->inuse);
3175
3176 i++;
3177 p = p->next;
3178 }
3179 STATS_SET_FREEABLE(cachep, i);
3180 }
3181#endif
Christoph Lametere498be72005-09-09 13:03:32 -07003182 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003183 ac->avail -= batchcount;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003184 memmove(ac->entry, &(ac->entry[batchcount]), sizeof(void *)*ac->avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003185}
3186
3187/*
Andrew Mortona737b3e2006-03-22 00:08:11 -08003188 * Release an obj back to its cache. If the obj has a constructed state, it must
3189 * be in this state _before_ it is released. Called with disabled ints.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190 */
Ingo Molnar873623d2006-07-13 14:44:38 +02003191static inline void __cache_free(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192{
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003193 struct array_cache *ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003194
3195 check_irq_off();
3196 objp = cache_free_debugcheck(cachep, objp, __builtin_return_address(0));
3197
Ingo Molnar873623d2006-07-13 14:44:38 +02003198 if (cache_free_alien(cachep, objp))
Pekka Enberg729bd0b2006-06-23 02:03:05 -07003199 return;
Christoph Lametere498be72005-09-09 13:03:32 -07003200
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201 if (likely(ac->avail < ac->limit)) {
3202 STATS_INC_FREEHIT(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003203 ac->entry[ac->avail++] = objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204 return;
3205 } else {
3206 STATS_INC_FREEMISS(cachep);
3207 cache_flusharray(cachep, ac);
Christoph Lametere498be72005-09-09 13:03:32 -07003208 ac->entry[ac->avail++] = objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209 }
3210}
3211
3212/**
3213 * kmem_cache_alloc - Allocate an object
3214 * @cachep: The cache to allocate from.
3215 * @flags: See kmalloc().
3216 *
3217 * Allocate an object from this cache. The flags are only relevant
3218 * if the cache has no available objects.
3219 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003220void *kmem_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003221{
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003222 return __cache_alloc(cachep, flags, __builtin_return_address(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223}
3224EXPORT_SYMBOL(kmem_cache_alloc);
3225
3226/**
Rolf Eike Beerb8008b22006-07-30 03:04:04 -07003227 * kmem_cache_zalloc - Allocate an object. The memory is set to zero.
Pekka Enberga8c0f9a2006-03-25 03:06:42 -08003228 * @cache: The cache to allocate from.
3229 * @flags: See kmalloc().
3230 *
3231 * Allocate an object from this cache and set the allocated memory to zero.
3232 * The flags are only relevant if the cache has no available objects.
3233 */
3234void *kmem_cache_zalloc(struct kmem_cache *cache, gfp_t flags)
3235{
3236 void *ret = __cache_alloc(cache, flags, __builtin_return_address(0));
3237 if (ret)
3238 memset(ret, 0, obj_size(cache));
3239 return ret;
3240}
3241EXPORT_SYMBOL(kmem_cache_zalloc);
3242
3243/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244 * kmem_ptr_validate - check if an untrusted pointer might
3245 * be a slab entry.
3246 * @cachep: the cache we're checking against
3247 * @ptr: pointer to validate
3248 *
3249 * This verifies that the untrusted pointer looks sane:
3250 * it is _not_ a guarantee that the pointer is actually
3251 * part of the slab cache in question, but it at least
3252 * validates that the pointer can be dereferenced and
3253 * looks half-way sane.
3254 *
3255 * Currently only used for dentry validation.
3256 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003257int fastcall kmem_ptr_validate(struct kmem_cache *cachep, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003259 unsigned long addr = (unsigned long)ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260 unsigned long min_addr = PAGE_OFFSET;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003261 unsigned long align_mask = BYTES_PER_WORD - 1;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003262 unsigned long size = cachep->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003263 struct page *page;
3264
3265 if (unlikely(addr < min_addr))
3266 goto out;
3267 if (unlikely(addr > (unsigned long)high_memory - size))
3268 goto out;
3269 if (unlikely(addr & align_mask))
3270 goto out;
3271 if (unlikely(!kern_addr_valid(addr)))
3272 goto out;
3273 if (unlikely(!kern_addr_valid(addr + size - 1)))
3274 goto out;
3275 page = virt_to_page(ptr);
3276 if (unlikely(!PageSlab(page)))
3277 goto out;
Pekka Enberg065d41c2005-11-13 16:06:46 -08003278 if (unlikely(page_get_cache(page) != cachep))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279 goto out;
3280 return 1;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003281out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282 return 0;
3283}
3284
3285#ifdef CONFIG_NUMA
3286/**
3287 * kmem_cache_alloc_node - Allocate an object on the specified node
3288 * @cachep: The cache to allocate from.
3289 * @flags: See kmalloc().
3290 * @nodeid: node number of the target node.
3291 *
3292 * Identical to kmem_cache_alloc, except that this function is slow
3293 * and can sleep. And it will allocate memory on the given node, which
3294 * can improve the performance for cpu bound structures.
Christoph Lametere498be72005-09-09 13:03:32 -07003295 * New and improved: it will now make sure that the object gets
3296 * put on the correct node list so that there is no false sharing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003297 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003298void *kmem_cache_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299{
Christoph Lametere498be72005-09-09 13:03:32 -07003300 unsigned long save_flags;
3301 void *ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302
Christoph Lametere498be72005-09-09 13:03:32 -07003303 cache_alloc_debugcheck_before(cachep, flags);
3304 local_irq_save(save_flags);
Christoph Lameter18f820f2006-02-01 03:05:43 -08003305
3306 if (nodeid == -1 || nodeid == numa_node_id() ||
Andrew Mortona737b3e2006-03-22 00:08:11 -08003307 !cachep->nodelists[nodeid])
Alok N Kataria5c382302005-09-27 21:45:46 -07003308 ptr = ____cache_alloc(cachep, flags);
3309 else
3310 ptr = __cache_alloc_node(cachep, flags, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07003311 local_irq_restore(save_flags);
Christoph Lameter18f820f2006-02-01 03:05:43 -08003312
3313 ptr = cache_alloc_debugcheck_after(cachep, flags, ptr,
3314 __builtin_return_address(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315
Christoph Lametere498be72005-09-09 13:03:32 -07003316 return ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317}
3318EXPORT_SYMBOL(kmem_cache_alloc_node);
3319
Al Virodd0fc662005-10-07 07:46:04 +01003320void *kmalloc_node(size_t size, gfp_t flags, int node)
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003321{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003322 struct kmem_cache *cachep;
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003323
3324 cachep = kmem_find_general_cachep(size, flags);
3325 if (unlikely(cachep == NULL))
3326 return NULL;
3327 return kmem_cache_alloc_node(cachep, flags, node);
3328}
3329EXPORT_SYMBOL(kmalloc_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330#endif
3331
3332/**
Paul Drynoff800590f2006-06-23 02:03:48 -07003333 * __do_kmalloc - allocate memory
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334 * @size: how many bytes of memory are required.
Paul Drynoff800590f2006-06-23 02:03:48 -07003335 * @flags: the type of memory to allocate (see kmalloc).
Randy Dunlap911851e2006-03-22 00:08:14 -08003336 * @caller: function caller for debug tracking of the caller
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337 */
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003338static __always_inline void *__do_kmalloc(size_t size, gfp_t flags,
3339 void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003340{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003341 struct kmem_cache *cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003342
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003343 /* If you want to save a few bytes .text space: replace
3344 * __ with kmem_.
3345 * Then kmalloc uses the uninlined functions instead of the inline
3346 * functions.
3347 */
3348 cachep = __find_general_cachep(size, flags);
Andrew Mortondbdb9042005-09-23 13:24:10 -07003349 if (unlikely(cachep == NULL))
3350 return NULL;
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003351 return __cache_alloc(cachep, flags, caller);
3352}
3353
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003354
3355void *__kmalloc(size_t size, gfp_t flags)
3356{
Al Viro871751e2006-03-25 03:06:39 -08003357#ifndef CONFIG_DEBUG_SLAB
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003358 return __do_kmalloc(size, flags, NULL);
Al Viro871751e2006-03-25 03:06:39 -08003359#else
3360 return __do_kmalloc(size, flags, __builtin_return_address(0));
3361#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362}
3363EXPORT_SYMBOL(__kmalloc);
3364
Al Viro871751e2006-03-25 03:06:39 -08003365#ifdef CONFIG_DEBUG_SLAB
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003366void *__kmalloc_track_caller(size_t size, gfp_t flags, void *caller)
3367{
3368 return __do_kmalloc(size, flags, caller);
3369}
3370EXPORT_SYMBOL(__kmalloc_track_caller);
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003371#endif
3372
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373#ifdef CONFIG_SMP
3374/**
3375 * __alloc_percpu - allocate one copy of the object for every present
3376 * cpu in the system, zeroing them.
3377 * Objects should be dereferenced using the per_cpu_ptr macro only.
3378 *
3379 * @size: how many bytes of memory are required.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380 */
Pekka Enbergf9f75002006-01-08 01:00:33 -08003381void *__alloc_percpu(size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003382{
3383 int i;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003384 struct percpu_data *pdata = kmalloc(sizeof(*pdata), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385
3386 if (!pdata)
3387 return NULL;
3388
Christoph Lametere498be72005-09-09 13:03:32 -07003389 /*
3390 * Cannot use for_each_online_cpu since a cpu may come online
3391 * and we have no way of figuring out how to fix the array
3392 * that we have allocated then....
3393 */
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08003394 for_each_possible_cpu(i) {
Christoph Lametere498be72005-09-09 13:03:32 -07003395 int node = cpu_to_node(i);
3396
3397 if (node_online(node))
3398 pdata->ptrs[i] = kmalloc_node(size, GFP_KERNEL, node);
3399 else
3400 pdata->ptrs[i] = kmalloc(size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401
3402 if (!pdata->ptrs[i])
3403 goto unwind_oom;
3404 memset(pdata->ptrs[i], 0, size);
3405 }
3406
3407 /* Catch derefs w/o wrappers */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003408 return (void *)(~(unsigned long)pdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409
Andrew Mortona737b3e2006-03-22 00:08:11 -08003410unwind_oom:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411 while (--i >= 0) {
3412 if (!cpu_possible(i))
3413 continue;
3414 kfree(pdata->ptrs[i]);
3415 }
3416 kfree(pdata);
3417 return NULL;
3418}
3419EXPORT_SYMBOL(__alloc_percpu);
3420#endif
3421
3422/**
3423 * kmem_cache_free - Deallocate an object
3424 * @cachep: The cache the allocation was from.
3425 * @objp: The previously allocated object.
3426 *
3427 * Free an object which was previously allocated from this
3428 * cache.
3429 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003430void kmem_cache_free(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431{
3432 unsigned long flags;
3433
Pekka Enbergddc2e812006-06-23 02:03:40 -07003434 BUG_ON(virt_to_cache(objp) != cachep);
3435
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436 local_irq_save(flags);
Ingo Molnar873623d2006-07-13 14:44:38 +02003437 __cache_free(cachep, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438 local_irq_restore(flags);
3439}
3440EXPORT_SYMBOL(kmem_cache_free);
3441
3442/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443 * kfree - free previously allocated memory
3444 * @objp: pointer returned by kmalloc.
3445 *
Pekka Enberg80e93ef2005-09-09 13:10:16 -07003446 * If @objp is NULL, no operation is performed.
3447 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448 * Don't free memory not originally allocated by kmalloc()
3449 * or you will run into trouble.
3450 */
3451void kfree(const void *objp)
3452{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003453 struct kmem_cache *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003454 unsigned long flags;
3455
3456 if (unlikely(!objp))
3457 return;
3458 local_irq_save(flags);
3459 kfree_debugcheck(objp);
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -08003460 c = virt_to_cache(objp);
Ingo Molnarf9b84042006-06-27 02:54:49 -07003461 debug_check_no_locks_freed(objp, obj_size(c));
Ingo Molnar873623d2006-07-13 14:44:38 +02003462 __cache_free(c, (void *)objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463 local_irq_restore(flags);
3464}
3465EXPORT_SYMBOL(kfree);
3466
3467#ifdef CONFIG_SMP
3468/**
3469 * free_percpu - free previously allocated percpu memory
3470 * @objp: pointer returned by alloc_percpu.
3471 *
3472 * Don't free memory not originally allocated by alloc_percpu()
3473 * The complemented objp is to check for that.
3474 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003475void free_percpu(const void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476{
3477 int i;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003478 struct percpu_data *p = (struct percpu_data *)(~(unsigned long)objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479
Christoph Lametere498be72005-09-09 13:03:32 -07003480 /*
3481 * We allocate for all cpus so we cannot use for online cpu here.
3482 */
KAMEZAWA Hiroyuki0a945022006-03-28 01:56:37 -08003483 for_each_possible_cpu(i)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003484 kfree(p->ptrs[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003485 kfree(p);
3486}
3487EXPORT_SYMBOL(free_percpu);
3488#endif
3489
Pekka Enberg343e0d72006-02-01 03:05:50 -08003490unsigned int kmem_cache_size(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491{
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003492 return obj_size(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493}
3494EXPORT_SYMBOL(kmem_cache_size);
3495
Pekka Enberg343e0d72006-02-01 03:05:50 -08003496const char *kmem_cache_name(struct kmem_cache *cachep)
Arnaldo Carvalho de Melo19449722005-06-18 22:46:19 -07003497{
3498 return cachep->name;
3499}
3500EXPORT_SYMBOL_GPL(kmem_cache_name);
3501
Christoph Lametere498be72005-09-09 13:03:32 -07003502/*
Christoph Lameter0718dc22006-03-25 03:06:47 -08003503 * This initializes kmem_list3 or resizes varioius caches for all nodes.
Christoph Lametere498be72005-09-09 13:03:32 -07003504 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003505static int alloc_kmemlist(struct kmem_cache *cachep)
Christoph Lametere498be72005-09-09 13:03:32 -07003506{
3507 int node;
3508 struct kmem_list3 *l3;
Christoph Lametercafeb022006-03-25 03:06:46 -08003509 struct array_cache *new_shared;
3510 struct array_cache **new_alien;
Christoph Lametere498be72005-09-09 13:03:32 -07003511
3512 for_each_online_node(node) {
Christoph Lametercafeb022006-03-25 03:06:46 -08003513
Andrew Mortona737b3e2006-03-22 00:08:11 -08003514 new_alien = alloc_alien_cache(node, cachep->limit);
3515 if (!new_alien)
Christoph Lametere498be72005-09-09 13:03:32 -07003516 goto fail;
Christoph Lametercafeb022006-03-25 03:06:46 -08003517
Christoph Lameter0718dc22006-03-25 03:06:47 -08003518 new_shared = alloc_arraycache(node,
3519 cachep->shared*cachep->batchcount,
Andrew Mortona737b3e2006-03-22 00:08:11 -08003520 0xbaadf00d);
Christoph Lameter0718dc22006-03-25 03:06:47 -08003521 if (!new_shared) {
3522 free_alien_cache(new_alien);
Christoph Lametere498be72005-09-09 13:03:32 -07003523 goto fail;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003524 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003525
Andrew Mortona737b3e2006-03-22 00:08:11 -08003526 l3 = cachep->nodelists[node];
3527 if (l3) {
Christoph Lametercafeb022006-03-25 03:06:46 -08003528 struct array_cache *shared = l3->shared;
3529
Christoph Lametere498be72005-09-09 13:03:32 -07003530 spin_lock_irq(&l3->list_lock);
3531
Christoph Lametercafeb022006-03-25 03:06:46 -08003532 if (shared)
Christoph Lameter0718dc22006-03-25 03:06:47 -08003533 free_block(cachep, shared->entry,
3534 shared->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -07003535
Christoph Lametercafeb022006-03-25 03:06:46 -08003536 l3->shared = new_shared;
3537 if (!l3->alien) {
Christoph Lametere498be72005-09-09 13:03:32 -07003538 l3->alien = new_alien;
3539 new_alien = NULL;
3540 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003541 l3->free_limit = (1 + nr_cpus_node(node)) *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003542 cachep->batchcount + cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07003543 spin_unlock_irq(&l3->list_lock);
Christoph Lametercafeb022006-03-25 03:06:46 -08003544 kfree(shared);
Christoph Lametere498be72005-09-09 13:03:32 -07003545 free_alien_cache(new_alien);
3546 continue;
3547 }
Andrew Mortona737b3e2006-03-22 00:08:11 -08003548 l3 = kmalloc_node(sizeof(struct kmem_list3), GFP_KERNEL, node);
Christoph Lameter0718dc22006-03-25 03:06:47 -08003549 if (!l3) {
3550 free_alien_cache(new_alien);
3551 kfree(new_shared);
Christoph Lametere498be72005-09-09 13:03:32 -07003552 goto fail;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003553 }
Christoph Lametere498be72005-09-09 13:03:32 -07003554
3555 kmem_list3_init(l3);
3556 l3->next_reap = jiffies + REAPTIMEOUT_LIST3 +
Andrew Mortona737b3e2006-03-22 00:08:11 -08003557 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
Christoph Lametercafeb022006-03-25 03:06:46 -08003558 l3->shared = new_shared;
Christoph Lametere498be72005-09-09 13:03:32 -07003559 l3->alien = new_alien;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003560 l3->free_limit = (1 + nr_cpus_node(node)) *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003561 cachep->batchcount + cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07003562 cachep->nodelists[node] = l3;
3563 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003564 return 0;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003565
Andrew Mortona737b3e2006-03-22 00:08:11 -08003566fail:
Christoph Lameter0718dc22006-03-25 03:06:47 -08003567 if (!cachep->next.next) {
3568 /* Cache is not active yet. Roll back what we did */
3569 node--;
3570 while (node >= 0) {
3571 if (cachep->nodelists[node]) {
3572 l3 = cachep->nodelists[node];
3573
3574 kfree(l3->shared);
3575 free_alien_cache(l3->alien);
3576 kfree(l3);
3577 cachep->nodelists[node] = NULL;
3578 }
3579 node--;
3580 }
3581 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003582 return -ENOMEM;
Christoph Lametere498be72005-09-09 13:03:32 -07003583}
3584
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585struct ccupdate_struct {
Pekka Enberg343e0d72006-02-01 03:05:50 -08003586 struct kmem_cache *cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003587 struct array_cache *new[NR_CPUS];
3588};
3589
3590static void do_ccupdate_local(void *info)
3591{
Andrew Mortona737b3e2006-03-22 00:08:11 -08003592 struct ccupdate_struct *new = info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593 struct array_cache *old;
3594
3595 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003596 old = cpu_cache_get(new->cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003597
Linus Torvalds1da177e2005-04-16 15:20:36 -07003598 new->cachep->array[smp_processor_id()] = new->new[smp_processor_id()];
3599 new->new[smp_processor_id()] = old;
3600}
3601
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -08003602/* Always called with the cache_chain_mutex held */
Andrew Mortona737b3e2006-03-22 00:08:11 -08003603static int do_tune_cpucache(struct kmem_cache *cachep, int limit,
3604 int batchcount, int shared)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003605{
3606 struct ccupdate_struct new;
Christoph Lametere498be72005-09-09 13:03:32 -07003607 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003608
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003609 memset(&new.new, 0, sizeof(new.new));
Christoph Lametere498be72005-09-09 13:03:32 -07003610 for_each_online_cpu(i) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08003611 new.new[i] = alloc_arraycache(cpu_to_node(i), limit,
3612 batchcount);
Christoph Lametere498be72005-09-09 13:03:32 -07003613 if (!new.new[i]) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003614 for (i--; i >= 0; i--)
3615 kfree(new.new[i]);
Christoph Lametere498be72005-09-09 13:03:32 -07003616 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003617 }
3618 }
3619 new.cachep = cachep;
3620
Andrew Mortona07fa392006-03-22 00:08:17 -08003621 on_each_cpu(do_ccupdate_local, (void *)&new, 1, 1);
Christoph Lametere498be72005-09-09 13:03:32 -07003622
Linus Torvalds1da177e2005-04-16 15:20:36 -07003623 check_irq_on();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003624 cachep->batchcount = batchcount;
3625 cachep->limit = limit;
Christoph Lametere498be72005-09-09 13:03:32 -07003626 cachep->shared = shared;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627
Christoph Lametere498be72005-09-09 13:03:32 -07003628 for_each_online_cpu(i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003629 struct array_cache *ccold = new.new[i];
3630 if (!ccold)
3631 continue;
Christoph Lametere498be72005-09-09 13:03:32 -07003632 spin_lock_irq(&cachep->nodelists[cpu_to_node(i)]->list_lock);
Christoph Lameterff694162005-09-22 21:44:02 -07003633 free_block(cachep, ccold->entry, ccold->avail, cpu_to_node(i));
Christoph Lametere498be72005-09-09 13:03:32 -07003634 spin_unlock_irq(&cachep->nodelists[cpu_to_node(i)]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003635 kfree(ccold);
3636 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637
Christoph Lametere498be72005-09-09 13:03:32 -07003638 err = alloc_kmemlist(cachep);
3639 if (err) {
3640 printk(KERN_ERR "alloc_kmemlist failed for %s, error %d.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003641 cachep->name, -err);
Christoph Lametere498be72005-09-09 13:03:32 -07003642 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003643 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003644 return 0;
3645}
3646
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -08003647/* Called with cache_chain_mutex held always */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003648static void enable_cpucache(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649{
3650 int err;
3651 int limit, shared;
3652
Andrew Mortona737b3e2006-03-22 00:08:11 -08003653 /*
3654 * The head array serves three purposes:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655 * - create a LIFO ordering, i.e. return objects that are cache-warm
3656 * - reduce the number of spinlock operations.
Andrew Mortona737b3e2006-03-22 00:08:11 -08003657 * - reduce the number of linked list operations on the slab and
Linus Torvalds1da177e2005-04-16 15:20:36 -07003658 * bufctl chains: array operations are cheaper.
3659 * The numbers are guessed, we should auto-tune as described by
3660 * Bonwick.
3661 */
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003662 if (cachep->buffer_size > 131072)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003663 limit = 1;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003664 else if (cachep->buffer_size > PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003665 limit = 8;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003666 else if (cachep->buffer_size > 1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003667 limit = 24;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003668 else if (cachep->buffer_size > 256)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003669 limit = 54;
3670 else
3671 limit = 120;
3672
Andrew Mortona737b3e2006-03-22 00:08:11 -08003673 /*
3674 * CPU bound tasks (e.g. network routing) can exhibit cpu bound
Linus Torvalds1da177e2005-04-16 15:20:36 -07003675 * allocation behaviour: Most allocs on one cpu, most free operations
3676 * on another cpu. For these cases, an efficient object passing between
3677 * cpus is necessary. This is provided by a shared array. The array
3678 * replaces Bonwick's magazine layer.
3679 * On uniprocessor, it's functionally equivalent (but less efficient)
3680 * to a larger limit. Thus disabled by default.
3681 */
3682 shared = 0;
3683#ifdef CONFIG_SMP
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003684 if (cachep->buffer_size <= PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685 shared = 8;
3686#endif
3687
3688#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08003689 /*
3690 * With debugging enabled, large batchcount lead to excessively long
3691 * periods with disabled local interrupts. Limit the batchcount
Linus Torvalds1da177e2005-04-16 15:20:36 -07003692 */
3693 if (limit > 32)
3694 limit = 32;
3695#endif
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003696 err = do_tune_cpucache(cachep, limit, (limit + 1) / 2, shared);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003697 if (err)
3698 printk(KERN_ERR "enable_cpucache failed for %s, error %d.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003699 cachep->name, -err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003700}
3701
Christoph Lameter1b552532006-03-22 00:09:07 -08003702/*
3703 * Drain an array if it contains any elements taking the l3 lock only if
Christoph Lameterb18e7e62006-03-22 00:09:07 -08003704 * necessary. Note that the l3 listlock also protects the array_cache
3705 * if drain_array() is used on the shared array.
Christoph Lameter1b552532006-03-22 00:09:07 -08003706 */
3707void drain_array(struct kmem_cache *cachep, struct kmem_list3 *l3,
3708 struct array_cache *ac, int force, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003709{
3710 int tofree;
3711
Christoph Lameter1b552532006-03-22 00:09:07 -08003712 if (!ac || !ac->avail)
3713 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003714 if (ac->touched && !force) {
3715 ac->touched = 0;
Christoph Lameterb18e7e62006-03-22 00:09:07 -08003716 } else {
Christoph Lameter1b552532006-03-22 00:09:07 -08003717 spin_lock_irq(&l3->list_lock);
Christoph Lameterb18e7e62006-03-22 00:09:07 -08003718 if (ac->avail) {
3719 tofree = force ? ac->avail : (ac->limit + 4) / 5;
3720 if (tofree > ac->avail)
3721 tofree = (ac->avail + 1) / 2;
3722 free_block(cachep, ac->entry, tofree, node);
3723 ac->avail -= tofree;
3724 memmove(ac->entry, &(ac->entry[tofree]),
3725 sizeof(void *) * ac->avail);
3726 }
Christoph Lameter1b552532006-03-22 00:09:07 -08003727 spin_unlock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003728 }
3729}
3730
3731/**
3732 * cache_reap - Reclaim memory from caches.
Randy Dunlap1e5d5332005-11-07 01:01:06 -08003733 * @unused: unused parameter
Linus Torvalds1da177e2005-04-16 15:20:36 -07003734 *
3735 * Called from workqueue/eventd every few seconds.
3736 * Purpose:
3737 * - clear the per-cpu caches for this CPU.
3738 * - return freeable pages to the main free memory pool.
3739 *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003740 * If we cannot acquire the cache chain mutex then just give up - we'll try
3741 * again on the next iteration.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003742 */
3743static void cache_reap(void *unused)
3744{
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07003745 struct kmem_cache *searchp;
Christoph Lametere498be72005-09-09 13:03:32 -07003746 struct kmem_list3 *l3;
Christoph Lameteraab22072006-03-22 00:09:06 -08003747 int node = numa_node_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748
Ingo Molnarfc0abb12006-01-18 17:42:33 -08003749 if (!mutex_trylock(&cache_chain_mutex)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003750 /* Give up. Setup the next iteration. */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003751 schedule_delayed_work(&__get_cpu_var(reap_work),
3752 REAPTIMEOUT_CPUC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003753 return;
3754 }
3755
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07003756 list_for_each_entry(searchp, &cache_chain, next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757 check_irq_on();
3758
Christoph Lameter35386e32006-03-22 00:09:05 -08003759 /*
3760 * We only take the l3 lock if absolutely necessary and we
3761 * have established with reasonable certainty that
3762 * we can do some work if the lock was obtained.
3763 */
Christoph Lameteraab22072006-03-22 00:09:06 -08003764 l3 = searchp->nodelists[node];
Christoph Lameter35386e32006-03-22 00:09:05 -08003765
Christoph Lameter8fce4d82006-03-09 17:33:54 -08003766 reap_alien(searchp, l3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003767
Christoph Lameteraab22072006-03-22 00:09:06 -08003768 drain_array(searchp, l3, cpu_cache_get(searchp), 0, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003769
Christoph Lameter35386e32006-03-22 00:09:05 -08003770 /*
3771 * These are racy checks but it does not matter
3772 * if we skip one check or scan twice.
3773 */
Christoph Lametere498be72005-09-09 13:03:32 -07003774 if (time_after(l3->next_reap, jiffies))
Christoph Lameter35386e32006-03-22 00:09:05 -08003775 goto next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003776
Christoph Lametere498be72005-09-09 13:03:32 -07003777 l3->next_reap = jiffies + REAPTIMEOUT_LIST3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003778
Christoph Lameteraab22072006-03-22 00:09:06 -08003779 drain_array(searchp, l3, l3->shared, 0, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003780
Christoph Lametered11d9e2006-06-30 01:55:45 -07003781 if (l3->free_touched)
Christoph Lametere498be72005-09-09 13:03:32 -07003782 l3->free_touched = 0;
Christoph Lametered11d9e2006-06-30 01:55:45 -07003783 else {
3784 int freed;
3785
3786 freed = drain_freelist(searchp, l3, (l3->free_limit +
3787 5 * searchp->num - 1) / (5 * searchp->num));
3788 STATS_ADD_REAPED(searchp, freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789 }
Christoph Lameter35386e32006-03-22 00:09:05 -08003790next:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791 cond_resched();
3792 }
3793 check_irq_on();
Ingo Molnarfc0abb12006-01-18 17:42:33 -08003794 mutex_unlock(&cache_chain_mutex);
Christoph Lameter8fce4d82006-03-09 17:33:54 -08003795 next_reap_node();
Christoph Lameter2244b952006-06-30 01:55:33 -07003796 refresh_cpu_vm_stats(smp_processor_id());
Andrew Mortona737b3e2006-03-22 00:08:11 -08003797 /* Set up the next iteration */
Manfred Spraulcd61ef62005-11-07 00:58:02 -08003798 schedule_delayed_work(&__get_cpu_var(reap_work), REAPTIMEOUT_CPUC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003799}
3800
3801#ifdef CONFIG_PROC_FS
3802
Pekka Enberg85289f92006-01-08 01:00:36 -08003803static void print_slabinfo_header(struct seq_file *m)
3804{
3805 /*
3806 * Output format version, so at least we can change it
3807 * without _too_ many complaints.
3808 */
3809#if STATS
3810 seq_puts(m, "slabinfo - version: 2.1 (statistics)\n");
3811#else
3812 seq_puts(m, "slabinfo - version: 2.1\n");
3813#endif
3814 seq_puts(m, "# name <active_objs> <num_objs> <objsize> "
3815 "<objperslab> <pagesperslab>");
3816 seq_puts(m, " : tunables <limit> <batchcount> <sharedfactor>");
3817 seq_puts(m, " : slabdata <active_slabs> <num_slabs> <sharedavail>");
3818#if STATS
3819 seq_puts(m, " : globalstat <listallocs> <maxobjs> <grown> <reaped> "
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -07003820 "<error> <maxfreeable> <nodeallocs> <remotefrees> <alienoverflow>");
Pekka Enberg85289f92006-01-08 01:00:36 -08003821 seq_puts(m, " : cpustat <allochit> <allocmiss> <freehit> <freemiss>");
3822#endif
3823 seq_putc(m, '\n');
3824}
3825
Linus Torvalds1da177e2005-04-16 15:20:36 -07003826static void *s_start(struct seq_file *m, loff_t *pos)
3827{
3828 loff_t n = *pos;
3829 struct list_head *p;
3830
Ingo Molnarfc0abb12006-01-18 17:42:33 -08003831 mutex_lock(&cache_chain_mutex);
Pekka Enberg85289f92006-01-08 01:00:36 -08003832 if (!n)
3833 print_slabinfo_header(m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003834 p = cache_chain.next;
3835 while (n--) {
3836 p = p->next;
3837 if (p == &cache_chain)
3838 return NULL;
3839 }
Pekka Enberg343e0d72006-02-01 03:05:50 -08003840 return list_entry(p, struct kmem_cache, next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841}
3842
3843static void *s_next(struct seq_file *m, void *p, loff_t *pos)
3844{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003845 struct kmem_cache *cachep = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003846 ++*pos;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003847 return cachep->next.next == &cache_chain ?
3848 NULL : list_entry(cachep->next.next, struct kmem_cache, next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003849}
3850
3851static void s_stop(struct seq_file *m, void *p)
3852{
Ingo Molnarfc0abb12006-01-18 17:42:33 -08003853 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003854}
3855
3856static int s_show(struct seq_file *m, void *p)
3857{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003858 struct kmem_cache *cachep = p;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003859 struct slab *slabp;
3860 unsigned long active_objs;
3861 unsigned long num_objs;
3862 unsigned long active_slabs = 0;
3863 unsigned long num_slabs, free_objects = 0, shared_avail = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07003864 const char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865 char *error = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07003866 int node;
3867 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003868
Linus Torvalds1da177e2005-04-16 15:20:36 -07003869 active_objs = 0;
3870 num_slabs = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07003871 for_each_online_node(node) {
3872 l3 = cachep->nodelists[node];
3873 if (!l3)
3874 continue;
3875
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08003876 check_irq_on();
3877 spin_lock_irq(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07003878
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07003879 list_for_each_entry(slabp, &l3->slabs_full, list) {
Christoph Lametere498be72005-09-09 13:03:32 -07003880 if (slabp->inuse != cachep->num && !error)
3881 error = "slabs_full accounting error";
3882 active_objs += cachep->num;
3883 active_slabs++;
3884 }
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07003885 list_for_each_entry(slabp, &l3->slabs_partial, list) {
Christoph Lametere498be72005-09-09 13:03:32 -07003886 if (slabp->inuse == cachep->num && !error)
3887 error = "slabs_partial inuse accounting error";
3888 if (!slabp->inuse && !error)
3889 error = "slabs_partial/inuse accounting error";
3890 active_objs += slabp->inuse;
3891 active_slabs++;
3892 }
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07003893 list_for_each_entry(slabp, &l3->slabs_free, list) {
Christoph Lametere498be72005-09-09 13:03:32 -07003894 if (slabp->inuse && !error)
3895 error = "slabs_free/inuse accounting error";
3896 num_slabs++;
3897 }
3898 free_objects += l3->free_objects;
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08003899 if (l3->shared)
3900 shared_avail += l3->shared->avail;
Christoph Lametere498be72005-09-09 13:03:32 -07003901
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08003902 spin_unlock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003903 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003904 num_slabs += active_slabs;
3905 num_objs = num_slabs * cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07003906 if (num_objs - active_objs != free_objects && !error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907 error = "free_objects accounting error";
3908
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003909 name = cachep->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003910 if (error)
3911 printk(KERN_ERR "slab: cache %s error: %s\n", name, error);
3912
3913 seq_printf(m, "%-17s %6lu %6lu %6u %4u %4d",
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003914 name, active_objs, num_objs, cachep->buffer_size,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003915 cachep->num, (1 << cachep->gfporder));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003916 seq_printf(m, " : tunables %4u %4u %4u",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003917 cachep->limit, cachep->batchcount, cachep->shared);
Christoph Lametere498be72005-09-09 13:03:32 -07003918 seq_printf(m, " : slabdata %6lu %6lu %6lu",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003919 active_slabs, num_slabs, shared_avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003920#if STATS
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003921 { /* list3 stats */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922 unsigned long high = cachep->high_mark;
3923 unsigned long allocs = cachep->num_allocations;
3924 unsigned long grown = cachep->grown;
3925 unsigned long reaped = cachep->reaped;
3926 unsigned long errors = cachep->errors;
3927 unsigned long max_freeable = cachep->max_freeable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003928 unsigned long node_allocs = cachep->node_allocs;
Christoph Lametere498be72005-09-09 13:03:32 -07003929 unsigned long node_frees = cachep->node_frees;
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -07003930 unsigned long overflows = cachep->node_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003931
Christoph Lametere498be72005-09-09 13:03:32 -07003932 seq_printf(m, " : globalstat %7lu %6lu %5lu %4lu \
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -07003933 %4lu %4lu %4lu %4lu %4lu", allocs, high, grown,
Andrew Mortona737b3e2006-03-22 00:08:11 -08003934 reaped, errors, max_freeable, node_allocs,
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -07003935 node_frees, overflows);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003936 }
3937 /* cpu stats */
3938 {
3939 unsigned long allochit = atomic_read(&cachep->allochit);
3940 unsigned long allocmiss = atomic_read(&cachep->allocmiss);
3941 unsigned long freehit = atomic_read(&cachep->freehit);
3942 unsigned long freemiss = atomic_read(&cachep->freemiss);
3943
3944 seq_printf(m, " : cpustat %6lu %6lu %6lu %6lu",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003945 allochit, allocmiss, freehit, freemiss);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003946 }
3947#endif
3948 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07003949 return 0;
3950}
3951
3952/*
3953 * slabinfo_op - iterator that generates /proc/slabinfo
3954 *
3955 * Output layout:
3956 * cache-name
3957 * num-active-objs
3958 * total-objs
3959 * object size
3960 * num-active-slabs
3961 * total-slabs
3962 * num-pages-per-slab
3963 * + further values on SMP and with statistics enabled
3964 */
3965
3966struct seq_operations slabinfo_op = {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003967 .start = s_start,
3968 .next = s_next,
3969 .stop = s_stop,
3970 .show = s_show,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003971};
3972
3973#define MAX_SLABINFO_WRITE 128
3974/**
3975 * slabinfo_write - Tuning for the slab allocator
3976 * @file: unused
3977 * @buffer: user buffer
3978 * @count: data length
3979 * @ppos: unused
3980 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003981ssize_t slabinfo_write(struct file *file, const char __user * buffer,
3982 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003983{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003984 char kbuf[MAX_SLABINFO_WRITE + 1], *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003985 int limit, batchcount, shared, res;
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07003986 struct kmem_cache *cachep;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003987
Linus Torvalds1da177e2005-04-16 15:20:36 -07003988 if (count > MAX_SLABINFO_WRITE)
3989 return -EINVAL;
3990 if (copy_from_user(&kbuf, buffer, count))
3991 return -EFAULT;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003992 kbuf[MAX_SLABINFO_WRITE] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07003993
3994 tmp = strchr(kbuf, ' ');
3995 if (!tmp)
3996 return -EINVAL;
3997 *tmp = '\0';
3998 tmp++;
3999 if (sscanf(tmp, " %d %d %d", &limit, &batchcount, &shared) != 3)
4000 return -EINVAL;
4001
4002 /* Find the cache in the chain of caches. */
Ingo Molnarfc0abb12006-01-18 17:42:33 -08004003 mutex_lock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004004 res = -EINVAL;
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004005 list_for_each_entry(cachep, &cache_chain, next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004006 if (!strcmp(cachep->name, kbuf)) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08004007 if (limit < 1 || batchcount < 1 ||
4008 batchcount > limit || shared < 0) {
Christoph Lametere498be72005-09-09 13:03:32 -07004009 res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004010 } else {
Christoph Lametere498be72005-09-09 13:03:32 -07004011 res = do_tune_cpucache(cachep, limit,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004012 batchcount, shared);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004013 }
4014 break;
4015 }
4016 }
Ingo Molnarfc0abb12006-01-18 17:42:33 -08004017 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004018 if (res >= 0)
4019 res = count;
4020 return res;
4021}
Al Viro871751e2006-03-25 03:06:39 -08004022
4023#ifdef CONFIG_DEBUG_SLAB_LEAK
4024
4025static void *leaks_start(struct seq_file *m, loff_t *pos)
4026{
4027 loff_t n = *pos;
4028 struct list_head *p;
4029
4030 mutex_lock(&cache_chain_mutex);
4031 p = cache_chain.next;
4032 while (n--) {
4033 p = p->next;
4034 if (p == &cache_chain)
4035 return NULL;
4036 }
4037 return list_entry(p, struct kmem_cache, next);
4038}
4039
4040static inline int add_caller(unsigned long *n, unsigned long v)
4041{
4042 unsigned long *p;
4043 int l;
4044 if (!v)
4045 return 1;
4046 l = n[1];
4047 p = n + 2;
4048 while (l) {
4049 int i = l/2;
4050 unsigned long *q = p + 2 * i;
4051 if (*q == v) {
4052 q[1]++;
4053 return 1;
4054 }
4055 if (*q > v) {
4056 l = i;
4057 } else {
4058 p = q + 2;
4059 l -= i + 1;
4060 }
4061 }
4062 if (++n[1] == n[0])
4063 return 0;
4064 memmove(p + 2, p, n[1] * 2 * sizeof(unsigned long) - ((void *)p - (void *)n));
4065 p[0] = v;
4066 p[1] = 1;
4067 return 1;
4068}
4069
4070static void handle_slab(unsigned long *n, struct kmem_cache *c, struct slab *s)
4071{
4072 void *p;
4073 int i;
4074 if (n[0] == n[1])
4075 return;
4076 for (i = 0, p = s->s_mem; i < c->num; i++, p += c->buffer_size) {
4077 if (slab_bufctl(s)[i] != BUFCTL_ACTIVE)
4078 continue;
4079 if (!add_caller(n, (unsigned long)*dbg_userword(c, p)))
4080 return;
4081 }
4082}
4083
4084static void show_symbol(struct seq_file *m, unsigned long address)
4085{
4086#ifdef CONFIG_KALLSYMS
4087 char *modname;
4088 const char *name;
4089 unsigned long offset, size;
4090 char namebuf[KSYM_NAME_LEN+1];
4091
4092 name = kallsyms_lookup(address, &size, &offset, &modname, namebuf);
4093
4094 if (name) {
4095 seq_printf(m, "%s+%#lx/%#lx", name, offset, size);
4096 if (modname)
4097 seq_printf(m, " [%s]", modname);
4098 return;
4099 }
4100#endif
4101 seq_printf(m, "%p", (void *)address);
4102}
4103
4104static int leaks_show(struct seq_file *m, void *p)
4105{
4106 struct kmem_cache *cachep = p;
Al Viro871751e2006-03-25 03:06:39 -08004107 struct slab *slabp;
4108 struct kmem_list3 *l3;
4109 const char *name;
4110 unsigned long *n = m->private;
4111 int node;
4112 int i;
4113
4114 if (!(cachep->flags & SLAB_STORE_USER))
4115 return 0;
4116 if (!(cachep->flags & SLAB_RED_ZONE))
4117 return 0;
4118
4119 /* OK, we can do it */
4120
4121 n[1] = 0;
4122
4123 for_each_online_node(node) {
4124 l3 = cachep->nodelists[node];
4125 if (!l3)
4126 continue;
4127
4128 check_irq_on();
4129 spin_lock_irq(&l3->list_lock);
4130
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004131 list_for_each_entry(slabp, &l3->slabs_full, list)
Al Viro871751e2006-03-25 03:06:39 -08004132 handle_slab(n, cachep, slabp);
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004133 list_for_each_entry(slabp, &l3->slabs_partial, list)
Al Viro871751e2006-03-25 03:06:39 -08004134 handle_slab(n, cachep, slabp);
Al Viro871751e2006-03-25 03:06:39 -08004135 spin_unlock_irq(&l3->list_lock);
4136 }
4137 name = cachep->name;
4138 if (n[0] == n[1]) {
4139 /* Increase the buffer size */
4140 mutex_unlock(&cache_chain_mutex);
4141 m->private = kzalloc(n[0] * 4 * sizeof(unsigned long), GFP_KERNEL);
4142 if (!m->private) {
4143 /* Too bad, we are really out */
4144 m->private = n;
4145 mutex_lock(&cache_chain_mutex);
4146 return -ENOMEM;
4147 }
4148 *(unsigned long *)m->private = n[0] * 2;
4149 kfree(n);
4150 mutex_lock(&cache_chain_mutex);
4151 /* Now make sure this entry will be retried */
4152 m->count = m->size;
4153 return 0;
4154 }
4155 for (i = 0; i < n[1]; i++) {
4156 seq_printf(m, "%s: %lu ", name, n[2*i+3]);
4157 show_symbol(m, n[2*i+2]);
4158 seq_putc(m, '\n');
4159 }
4160 return 0;
4161}
4162
4163struct seq_operations slabstats_op = {
4164 .start = leaks_start,
4165 .next = s_next,
4166 .stop = s_stop,
4167 .show = leaks_show,
4168};
4169#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004170#endif
4171
Manfred Spraul00e145b2005-09-03 15:55:07 -07004172/**
4173 * ksize - get the actual amount of memory allocated for a given object
4174 * @objp: Pointer to the object
4175 *
4176 * kmalloc may internally round up allocations and return more memory
4177 * than requested. ksize() can be used to determine the actual amount of
4178 * memory allocated. The caller may use this additional memory, even though
4179 * a smaller amount of memory was initially specified with the kmalloc call.
4180 * The caller must guarantee that objp points to a valid object previously
4181 * allocated with either kmalloc() or kmem_cache_alloc(). The object
4182 * must not be freed during the duration of the call.
4183 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004184unsigned int ksize(const void *objp)
4185{
Manfred Spraul00e145b2005-09-03 15:55:07 -07004186 if (unlikely(objp == NULL))
4187 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004188
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -08004189 return obj_size(virt_to_cache(objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004190}