blob: f80b52388a12260cbb4a3f86dc5af91b199acbf0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/mm/slab.c
3 * Written by Mark Hemment, 1996/97.
4 * (markhe@nextd.demon.co.uk)
5 *
6 * kmem_cache_destroy() + some cleanup - 1999 Andrea Arcangeli
7 *
8 * Major cleanup, different bufctl logic, per-cpu arrays
9 * (c) 2000 Manfred Spraul
10 *
11 * Cleanup, make the head arrays unconditional, preparation for NUMA
12 * (c) 2002 Manfred Spraul
13 *
14 * An implementation of the Slab Allocator as described in outline in;
15 * UNIX Internals: The New Frontiers by Uresh Vahalia
16 * Pub: Prentice Hall ISBN 0-13-101908-2
17 * or with a little more detail in;
18 * The Slab Allocator: An Object-Caching Kernel Memory Allocator
19 * Jeff Bonwick (Sun Microsystems).
20 * Presented at: USENIX Summer 1994 Technical Conference
21 *
22 * The memory is organized in caches, one cache for each object type.
23 * (e.g. inode_cache, dentry_cache, buffer_head, vm_area_struct)
24 * Each cache consists out of many slabs (they are small (usually one
25 * page long) and always contiguous), and each slab contains multiple
26 * initialized objects.
27 *
28 * This means, that your constructor is used only for newly allocated
29 * slabs and you must pass objects with the same intializations to
30 * kmem_cache_free.
31 *
32 * Each cache can only support one memory type (GFP_DMA, GFP_HIGHMEM,
33 * normal). If you need a special memory type, then must create a new
34 * cache for that memory type.
35 *
36 * In order to reduce fragmentation, the slabs are sorted in 3 groups:
37 * full slabs with 0 free objects
38 * partial slabs
39 * empty slabs with no allocated objects
40 *
41 * If partial slabs exist, then new allocations come from these slabs,
42 * otherwise from empty slabs or new slabs are allocated.
43 *
44 * kmem_cache_destroy() CAN CRASH if you try to allocate from the cache
45 * during kmem_cache_destroy(). The caller must prevent concurrent allocs.
46 *
47 * Each cache has a short per-cpu head array, most allocs
48 * and frees go into that array, and if that array overflows, then 1/2
49 * of the entries in the array are given back into the global cache.
50 * The head array is strictly LIFO and should improve the cache hit rates.
51 * On SMP, it additionally reduces the spinlock operations.
52 *
Andrew Mortona737b3e2006-03-22 00:08:11 -080053 * The c_cpuarray may not be read with enabled local interrupts -
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 * it's changed with a smp_call_function().
55 *
56 * SMP synchronization:
57 * constructors and destructors are called without any locking.
Pekka Enberg343e0d72006-02-01 03:05:50 -080058 * Several members in struct kmem_cache and struct slab never change, they
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 * are accessed without any locking.
60 * The per-cpu arrays are never accessed from the wrong cpu, no locking,
61 * and local interrupts are disabled so slab code is preempt-safe.
62 * The non-constant members are protected with a per-cache irq spinlock.
63 *
64 * Many thanks to Mark Hemment, who wrote another per-cpu slab patch
65 * in 2000 - many ideas in the current implementation are derived from
66 * his patch.
67 *
68 * Further notes from the original documentation:
69 *
70 * 11 April '97. Started multi-threading - markhe
Ingo Molnarfc0abb12006-01-18 17:42:33 -080071 * The global cache-chain is protected by the mutex 'cache_chain_mutex'.
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 * The sem is only needed when accessing/extending the cache-chain, which
73 * can never happen inside an interrupt (kmem_cache_create(),
74 * kmem_cache_shrink() and kmem_cache_reap()).
75 *
76 * At present, each engine can be growing a cache. This should be blocked.
77 *
Christoph Lametere498be72005-09-09 13:03:32 -070078 * 15 March 2005. NUMA slab allocator.
79 * Shai Fultheim <shai@scalex86.org>.
80 * Shobhit Dayal <shobhit@calsoftinc.com>
81 * Alok N Kataria <alokk@calsoftinc.com>
82 * Christoph Lameter <christoph@lameter.com>
83 *
84 * Modified the slab allocator to be node aware on NUMA systems.
85 * Each node has its own list of partial, free and full slabs.
86 * All object allocations for a node occur from node specific slab lists.
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 */
88
89#include <linux/config.h>
90#include <linux/slab.h>
91#include <linux/mm.h>
92#include <linux/swap.h>
93#include <linux/cache.h>
94#include <linux/interrupt.h>
95#include <linux/init.h>
96#include <linux/compiler.h>
Paul Jackson101a5002006-03-24 03:16:07 -080097#include <linux/cpuset.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070098#include <linux/seq_file.h>
99#include <linux/notifier.h>
100#include <linux/kallsyms.h>
101#include <linux/cpu.h>
102#include <linux/sysctl.h>
103#include <linux/module.h>
104#include <linux/rcupdate.h>
Paulo Marques543537b2005-06-23 00:09:02 -0700105#include <linux/string.h>
Christoph Lametere498be72005-09-09 13:03:32 -0700106#include <linux/nodemask.h>
Christoph Lameterdc85da12006-01-18 17:42:36 -0800107#include <linux/mempolicy.h>
Ingo Molnarfc0abb12006-01-18 17:42:33 -0800108#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110#include <asm/uaccess.h>
111#include <asm/cacheflush.h>
112#include <asm/tlbflush.h>
113#include <asm/page.h>
114
115/*
116 * DEBUG - 1 for kmem_cache_create() to honour; SLAB_DEBUG_INITIAL,
117 * SLAB_RED_ZONE & SLAB_POISON.
118 * 0 for faster, smaller code (especially in the critical paths).
119 *
120 * STATS - 1 to collect stats for /proc/slabinfo.
121 * 0 for faster, smaller code (especially in the critical paths).
122 *
123 * FORCED_DEBUG - 1 enables SLAB_RED_ZONE and SLAB_POISON (if possible)
124 */
125
126#ifdef CONFIG_DEBUG_SLAB
127#define DEBUG 1
128#define STATS 1
129#define FORCED_DEBUG 1
130#else
131#define DEBUG 0
132#define STATS 0
133#define FORCED_DEBUG 0
134#endif
135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136/* Shouldn't this be in a header file somewhere? */
137#define BYTES_PER_WORD sizeof(void *)
138
139#ifndef cache_line_size
140#define cache_line_size() L1_CACHE_BYTES
141#endif
142
143#ifndef ARCH_KMALLOC_MINALIGN
144/*
145 * Enforce a minimum alignment for the kmalloc caches.
146 * Usually, the kmalloc caches are cache_line_size() aligned, except when
147 * DEBUG and FORCED_DEBUG are enabled, then they are BYTES_PER_WORD aligned.
148 * Some archs want to perform DMA into kmalloc caches and need a guaranteed
149 * alignment larger than BYTES_PER_WORD. ARCH_KMALLOC_MINALIGN allows that.
150 * Note that this flag disables some debug features.
151 */
152#define ARCH_KMALLOC_MINALIGN 0
153#endif
154
155#ifndef ARCH_SLAB_MINALIGN
156/*
157 * Enforce a minimum alignment for all caches.
158 * Intended for archs that get misalignment faults even for BYTES_PER_WORD
159 * aligned buffers. Includes ARCH_KMALLOC_MINALIGN.
160 * If possible: Do not enable this flag for CONFIG_DEBUG_SLAB, it disables
161 * some debug features.
162 */
163#define ARCH_SLAB_MINALIGN 0
164#endif
165
166#ifndef ARCH_KMALLOC_FLAGS
167#define ARCH_KMALLOC_FLAGS SLAB_HWCACHE_ALIGN
168#endif
169
170/* Legal flag mask for kmem_cache_create(). */
171#if DEBUG
172# define CREATE_MASK (SLAB_DEBUG_INITIAL | SLAB_RED_ZONE | \
173 SLAB_POISON | SLAB_HWCACHE_ALIGN | \
Christoph Lameterac2b8982006-03-22 00:08:15 -0800174 SLAB_CACHE_DMA | \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 SLAB_MUST_HWCACHE_ALIGN | SLAB_STORE_USER | \
176 SLAB_RECLAIM_ACCOUNT | SLAB_PANIC | \
Paul Jackson101a5002006-03-24 03:16:07 -0800177 SLAB_DESTROY_BY_RCU | SLAB_MEM_SPREAD)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178#else
Christoph Lameterac2b8982006-03-22 00:08:15 -0800179# define CREATE_MASK (SLAB_HWCACHE_ALIGN | \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 SLAB_CACHE_DMA | SLAB_MUST_HWCACHE_ALIGN | \
181 SLAB_RECLAIM_ACCOUNT | SLAB_PANIC | \
Paul Jackson101a5002006-03-24 03:16:07 -0800182 SLAB_DESTROY_BY_RCU | SLAB_MEM_SPREAD)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183#endif
184
185/*
186 * kmem_bufctl_t:
187 *
188 * Bufctl's are used for linking objs within a slab
189 * linked offsets.
190 *
191 * This implementation relies on "struct page" for locating the cache &
192 * slab an object belongs to.
193 * This allows the bufctl structure to be small (one int), but limits
194 * the number of objects a slab (not a cache) can contain when off-slab
195 * bufctls are used. The limit is the size of the largest general cache
196 * that does not use off-slab slabs.
197 * For 32bit archs with 4 kB pages, is this 56.
198 * This is not serious, as it is only for large objects, when it is unwise
199 * to have too many per slab.
200 * Note: This limit can be raised by introducing a general cache whose size
201 * is less than 512 (PAGE_SIZE<<3), but greater than 256.
202 */
203
Kyle Moffettfa5b08d2005-09-03 15:55:03 -0700204typedef unsigned int kmem_bufctl_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205#define BUFCTL_END (((kmem_bufctl_t)(~0U))-0)
206#define BUFCTL_FREE (((kmem_bufctl_t)(~0U))-1)
207#define SLAB_LIMIT (((kmem_bufctl_t)(~0U))-2)
208
209/* Max number of objs-per-slab for caches which use off-slab slabs.
210 * Needed to avoid a possible looping condition in cache_grow().
211 */
212static unsigned long offslab_limit;
213
214/*
215 * struct slab
216 *
217 * Manages the objs in a slab. Placed either at the beginning of mem allocated
218 * for a slab, or allocated from an general cache.
219 * Slabs are chained into three list: fully used, partial, fully free slabs.
220 */
221struct slab {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800222 struct list_head list;
223 unsigned long colouroff;
224 void *s_mem; /* including colour offset */
225 unsigned int inuse; /* num of objs active in slab */
226 kmem_bufctl_t free;
227 unsigned short nodeid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228};
229
230/*
231 * struct slab_rcu
232 *
233 * slab_destroy on a SLAB_DESTROY_BY_RCU cache uses this structure to
234 * arrange for kmem_freepages to be called via RCU. This is useful if
235 * we need to approach a kernel structure obliquely, from its address
236 * obtained without the usual locking. We can lock the structure to
237 * stabilize it and check it's still at the given address, only if we
238 * can be sure that the memory has not been meanwhile reused for some
239 * other kind of object (which our subsystem's lock might corrupt).
240 *
241 * rcu_read_lock before reading the address, then rcu_read_unlock after
242 * taking the spinlock within the structure expected at that address.
243 *
244 * We assume struct slab_rcu can overlay struct slab when destroying.
245 */
246struct slab_rcu {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800247 struct rcu_head head;
Pekka Enberg343e0d72006-02-01 03:05:50 -0800248 struct kmem_cache *cachep;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800249 void *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250};
251
252/*
253 * struct array_cache
254 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 * Purpose:
256 * - LIFO ordering, to hand out cache-warm objects from _alloc
257 * - reduce the number of linked list operations
258 * - reduce spinlock operations
259 *
260 * The limit is stored in the per-cpu structure to reduce the data cache
261 * footprint.
262 *
263 */
264struct array_cache {
265 unsigned int avail;
266 unsigned int limit;
267 unsigned int batchcount;
268 unsigned int touched;
Christoph Lametere498be72005-09-09 13:03:32 -0700269 spinlock_t lock;
Andrew Mortona737b3e2006-03-22 00:08:11 -0800270 void *entry[0]; /*
271 * Must have this definition in here for the proper
272 * alignment of array_cache. Also simplifies accessing
273 * the entries.
274 * [0] is for gcc 2.95. It should really be [].
275 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276};
277
Andrew Mortona737b3e2006-03-22 00:08:11 -0800278/*
279 * bootstrap: The caches do not work without cpuarrays anymore, but the
280 * cpuarrays are allocated from the generic caches...
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 */
282#define BOOT_CPUCACHE_ENTRIES 1
283struct arraycache_init {
284 struct array_cache cache;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800285 void *entries[BOOT_CPUCACHE_ENTRIES];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286};
287
288/*
Christoph Lametere498be72005-09-09 13:03:32 -0700289 * The slab lists for all objects.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 */
291struct kmem_list3 {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800292 struct list_head slabs_partial; /* partial list first, better asm code */
293 struct list_head slabs_full;
294 struct list_head slabs_free;
295 unsigned long free_objects;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800296 unsigned int free_limit;
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -0800297 unsigned int colour_next; /* Per-node cache coloring */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800298 spinlock_t list_lock;
299 struct array_cache *shared; /* shared per node */
300 struct array_cache **alien; /* on other nodes */
Christoph Lameter35386e32006-03-22 00:09:05 -0800301 unsigned long next_reap; /* updated without locking */
302 int free_touched; /* updated without locking */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303};
304
Christoph Lametere498be72005-09-09 13:03:32 -0700305/*
306 * Need this for bootstrapping a per node allocator.
307 */
308#define NUM_INIT_LISTS (2 * MAX_NUMNODES + 1)
309struct kmem_list3 __initdata initkmem_list3[NUM_INIT_LISTS];
310#define CACHE_CACHE 0
311#define SIZE_AC 1
312#define SIZE_L3 (1 + MAX_NUMNODES)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Christoph Lametere498be72005-09-09 13:03:32 -0700314/*
Andrew Mortona737b3e2006-03-22 00:08:11 -0800315 * This function must be completely optimized away if a constant is passed to
316 * it. Mostly the same as what is in linux/slab.h except it returns an index.
Christoph Lametere498be72005-09-09 13:03:32 -0700317 */
Ivan Kokshaysky7243cc02005-09-22 21:43:58 -0700318static __always_inline int index_of(const size_t size)
Christoph Lametere498be72005-09-09 13:03:32 -0700319{
Steven Rostedt5ec8a842006-02-01 03:05:44 -0800320 extern void __bad_size(void);
321
Christoph Lametere498be72005-09-09 13:03:32 -0700322 if (__builtin_constant_p(size)) {
323 int i = 0;
324
325#define CACHE(x) \
326 if (size <=x) \
327 return i; \
328 else \
329 i++;
330#include "linux/kmalloc_sizes.h"
331#undef CACHE
Steven Rostedt5ec8a842006-02-01 03:05:44 -0800332 __bad_size();
Ivan Kokshaysky7243cc02005-09-22 21:43:58 -0700333 } else
Steven Rostedt5ec8a842006-02-01 03:05:44 -0800334 __bad_size();
Christoph Lametere498be72005-09-09 13:03:32 -0700335 return 0;
336}
337
338#define INDEX_AC index_of(sizeof(struct arraycache_init))
339#define INDEX_L3 index_of(sizeof(struct kmem_list3))
340
Pekka Enberg5295a742006-02-01 03:05:48 -0800341static void kmem_list3_init(struct kmem_list3 *parent)
Christoph Lametere498be72005-09-09 13:03:32 -0700342{
343 INIT_LIST_HEAD(&parent->slabs_full);
344 INIT_LIST_HEAD(&parent->slabs_partial);
345 INIT_LIST_HEAD(&parent->slabs_free);
346 parent->shared = NULL;
347 parent->alien = NULL;
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -0800348 parent->colour_next = 0;
Christoph Lametere498be72005-09-09 13:03:32 -0700349 spin_lock_init(&parent->list_lock);
350 parent->free_objects = 0;
351 parent->free_touched = 0;
352}
353
Andrew Mortona737b3e2006-03-22 00:08:11 -0800354#define MAKE_LIST(cachep, listp, slab, nodeid) \
355 do { \
356 INIT_LIST_HEAD(listp); \
357 list_splice(&(cachep->nodelists[nodeid]->slab), listp); \
Christoph Lametere498be72005-09-09 13:03:32 -0700358 } while (0)
359
Andrew Mortona737b3e2006-03-22 00:08:11 -0800360#define MAKE_ALL_LISTS(cachep, ptr, nodeid) \
361 do { \
Christoph Lametere498be72005-09-09 13:03:32 -0700362 MAKE_LIST((cachep), (&(ptr)->slabs_full), slabs_full, nodeid); \
363 MAKE_LIST((cachep), (&(ptr)->slabs_partial), slabs_partial, nodeid); \
364 MAKE_LIST((cachep), (&(ptr)->slabs_free), slabs_free, nodeid); \
365 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
367/*
Pekka Enberg343e0d72006-02-01 03:05:50 -0800368 * struct kmem_cache
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 *
370 * manages a cache.
371 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800372
Pekka J Enberg2109a2d2005-11-07 00:58:01 -0800373struct kmem_cache {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374/* 1) per-cpu data, touched during every alloc/free */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800375 struct array_cache *array[NR_CPUS];
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -0800376/* 2) Cache tunables. Protected by cache_chain_mutex */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800377 unsigned int batchcount;
378 unsigned int limit;
379 unsigned int shared;
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -0800380
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800381 unsigned int buffer_size;
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -0800382/* 3) touched by every alloc & free from the backend */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800383 struct kmem_list3 *nodelists[MAX_NUMNODES];
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -0800384
Andrew Mortona737b3e2006-03-22 00:08:11 -0800385 unsigned int flags; /* constant flags */
386 unsigned int num; /* # of objs per slab */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -0800388/* 4) cache_grow/shrink */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 /* order of pgs per slab (2^n) */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800390 unsigned int gfporder;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
392 /* force GFP flags, e.g. GFP_DMA */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800393 gfp_t gfpflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
Andrew Mortona737b3e2006-03-22 00:08:11 -0800395 size_t colour; /* cache colouring range */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800396 unsigned int colour_off; /* colour offset */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800397 struct kmem_cache *slabp_cache;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800398 unsigned int slab_size;
Andrew Mortona737b3e2006-03-22 00:08:11 -0800399 unsigned int dflags; /* dynamic flags */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
401 /* constructor func */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800402 void (*ctor) (void *, struct kmem_cache *, unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
404 /* de-constructor func */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800405 void (*dtor) (void *, struct kmem_cache *, unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -0800407/* 5) cache creation/removal */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800408 const char *name;
409 struct list_head next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -0800411/* 6) statistics */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412#if STATS
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800413 unsigned long num_active;
414 unsigned long num_allocations;
415 unsigned long high_mark;
416 unsigned long grown;
417 unsigned long reaped;
418 unsigned long errors;
419 unsigned long max_freeable;
420 unsigned long node_allocs;
421 unsigned long node_frees;
422 atomic_t allochit;
423 atomic_t allocmiss;
424 atomic_t freehit;
425 atomic_t freemiss;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426#endif
427#if DEBUG
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800428 /*
429 * If debugging is enabled, then the allocator can add additional
430 * fields and/or padding to every object. buffer_size contains the total
431 * object size including these internal fields, the following two
432 * variables contain the offset to the user object and its size.
433 */
434 int obj_offset;
435 int obj_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436#endif
437};
438
439#define CFLGS_OFF_SLAB (0x80000000UL)
440#define OFF_SLAB(x) ((x)->flags & CFLGS_OFF_SLAB)
441
442#define BATCHREFILL_LIMIT 16
Andrew Mortona737b3e2006-03-22 00:08:11 -0800443/*
444 * Optimization question: fewer reaps means less probability for unnessary
445 * cpucache drain/refill cycles.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 *
Adrian Bunkdc6f3f22005-11-08 16:44:08 +0100447 * OTOH the cpuarrays can contain lots of objects,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 * which could lock up otherwise freeable slabs.
449 */
450#define REAPTIMEOUT_CPUC (2*HZ)
451#define REAPTIMEOUT_LIST3 (4*HZ)
452
453#if STATS
454#define STATS_INC_ACTIVE(x) ((x)->num_active++)
455#define STATS_DEC_ACTIVE(x) ((x)->num_active--)
456#define STATS_INC_ALLOCED(x) ((x)->num_allocations++)
457#define STATS_INC_GROWN(x) ((x)->grown++)
458#define STATS_INC_REAPED(x) ((x)->reaped++)
Andrew Mortona737b3e2006-03-22 00:08:11 -0800459#define STATS_SET_HIGH(x) \
460 do { \
461 if ((x)->num_active > (x)->high_mark) \
462 (x)->high_mark = (x)->num_active; \
463 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464#define STATS_INC_ERR(x) ((x)->errors++)
465#define STATS_INC_NODEALLOCS(x) ((x)->node_allocs++)
Christoph Lametere498be72005-09-09 13:03:32 -0700466#define STATS_INC_NODEFREES(x) ((x)->node_frees++)
Andrew Mortona737b3e2006-03-22 00:08:11 -0800467#define STATS_SET_FREEABLE(x, i) \
468 do { \
469 if ((x)->max_freeable < i) \
470 (x)->max_freeable = i; \
471 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472#define STATS_INC_ALLOCHIT(x) atomic_inc(&(x)->allochit)
473#define STATS_INC_ALLOCMISS(x) atomic_inc(&(x)->allocmiss)
474#define STATS_INC_FREEHIT(x) atomic_inc(&(x)->freehit)
475#define STATS_INC_FREEMISS(x) atomic_inc(&(x)->freemiss)
476#else
477#define STATS_INC_ACTIVE(x) do { } while (0)
478#define STATS_DEC_ACTIVE(x) do { } while (0)
479#define STATS_INC_ALLOCED(x) do { } while (0)
480#define STATS_INC_GROWN(x) do { } while (0)
481#define STATS_INC_REAPED(x) do { } while (0)
482#define STATS_SET_HIGH(x) do { } while (0)
483#define STATS_INC_ERR(x) do { } while (0)
484#define STATS_INC_NODEALLOCS(x) do { } while (0)
Christoph Lametere498be72005-09-09 13:03:32 -0700485#define STATS_INC_NODEFREES(x) do { } while (0)
Andrew Mortona737b3e2006-03-22 00:08:11 -0800486#define STATS_SET_FREEABLE(x, i) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487#define STATS_INC_ALLOCHIT(x) do { } while (0)
488#define STATS_INC_ALLOCMISS(x) do { } while (0)
489#define STATS_INC_FREEHIT(x) do { } while (0)
490#define STATS_INC_FREEMISS(x) do { } while (0)
491#endif
492
493#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -0800494/*
495 * Magic nums for obj red zoning.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 * Placed in the first word before and the first word after an obj.
497 */
498#define RED_INACTIVE 0x5A2CF071UL /* when obj is inactive */
499#define RED_ACTIVE 0x170FC2A5UL /* when obj is active */
500
501/* ...and for poisoning */
502#define POISON_INUSE 0x5a /* for use-uninitialised poisoning */
503#define POISON_FREE 0x6b /* for use-after-free poisoning */
504#define POISON_END 0xa5 /* end-byte of poisoning */
505
Andrew Mortona737b3e2006-03-22 00:08:11 -0800506/*
507 * memory layout of objects:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 * 0 : objp
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800509 * 0 .. cachep->obj_offset - BYTES_PER_WORD - 1: padding. This ensures that
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 * the end of an object is aligned with the end of the real
511 * allocation. Catches writes behind the end of the allocation.
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800512 * cachep->obj_offset - BYTES_PER_WORD .. cachep->obj_offset - 1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 * redzone word.
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800514 * cachep->obj_offset: The real object.
515 * cachep->buffer_size - 2* BYTES_PER_WORD: redzone word [BYTES_PER_WORD long]
Andrew Mortona737b3e2006-03-22 00:08:11 -0800516 * cachep->buffer_size - 1* BYTES_PER_WORD: last caller address
517 * [BYTES_PER_WORD long]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800519static int obj_offset(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520{
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800521 return cachep->obj_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522}
523
Pekka Enberg343e0d72006-02-01 03:05:50 -0800524static int obj_size(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525{
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800526 return cachep->obj_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527}
528
Pekka Enberg343e0d72006-02-01 03:05:50 -0800529static unsigned long *dbg_redzone1(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530{
531 BUG_ON(!(cachep->flags & SLAB_RED_ZONE));
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800532 return (unsigned long*) (objp+obj_offset(cachep)-BYTES_PER_WORD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533}
534
Pekka Enberg343e0d72006-02-01 03:05:50 -0800535static unsigned long *dbg_redzone2(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536{
537 BUG_ON(!(cachep->flags & SLAB_RED_ZONE));
538 if (cachep->flags & SLAB_STORE_USER)
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800539 return (unsigned long *)(objp + cachep->buffer_size -
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800540 2 * BYTES_PER_WORD);
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800541 return (unsigned long *)(objp + cachep->buffer_size - BYTES_PER_WORD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542}
543
Pekka Enberg343e0d72006-02-01 03:05:50 -0800544static void **dbg_userword(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545{
546 BUG_ON(!(cachep->flags & SLAB_STORE_USER));
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800547 return (void **)(objp + cachep->buffer_size - BYTES_PER_WORD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548}
549
550#else
551
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800552#define obj_offset(x) 0
553#define obj_size(cachep) (cachep->buffer_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554#define dbg_redzone1(cachep, objp) ({BUG(); (unsigned long *)NULL;})
555#define dbg_redzone2(cachep, objp) ({BUG(); (unsigned long *)NULL;})
556#define dbg_userword(cachep, objp) ({BUG(); (void **)NULL;})
557
558#endif
559
560/*
Andrew Mortona737b3e2006-03-22 00:08:11 -0800561 * Maximum size of an obj (in 2^order pages) and absolute limit for the gfp
562 * order.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700563 */
564#if defined(CONFIG_LARGE_ALLOCS)
565#define MAX_OBJ_ORDER 13 /* up to 32Mb */
566#define MAX_GFP_ORDER 13 /* up to 32Mb */
567#elif defined(CONFIG_MMU)
568#define MAX_OBJ_ORDER 5 /* 32 pages */
569#define MAX_GFP_ORDER 5 /* 32 pages */
570#else
571#define MAX_OBJ_ORDER 8 /* up to 1Mb */
572#define MAX_GFP_ORDER 8 /* up to 1Mb */
573#endif
574
575/*
576 * Do not go above this order unless 0 objects fit into the slab.
577 */
578#define BREAK_GFP_ORDER_HI 1
579#define BREAK_GFP_ORDER_LO 0
580static int slab_break_gfp_order = BREAK_GFP_ORDER_LO;
581
Andrew Mortona737b3e2006-03-22 00:08:11 -0800582/*
583 * Functions for storing/retrieving the cachep and or slab from the page
584 * allocator. These are used to find the slab an obj belongs to. With kfree(),
585 * these are used to find the cache which an obj belongs to.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 */
Pekka Enberg065d41c2005-11-13 16:06:46 -0800587static inline void page_set_cache(struct page *page, struct kmem_cache *cache)
588{
589 page->lru.next = (struct list_head *)cache;
590}
591
592static inline struct kmem_cache *page_get_cache(struct page *page)
593{
Nick Piggin84097512006-03-22 00:08:34 -0800594 if (unlikely(PageCompound(page)))
595 page = (struct page *)page_private(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 Enberg065d41c2005-11-13 16:06:46 -0800608 return (struct slab *)page->lru.prev;
609}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610
Pekka Enberg6ed5eb22006-02-01 03:05:49 -0800611static inline struct kmem_cache *virt_to_cache(const void *obj)
612{
613 struct page *page = virt_to_page(obj);
614 return page_get_cache(page);
615}
616
617static inline struct slab *virt_to_slab(const void *obj)
618{
619 struct page *page = virt_to_page(obj);
620 return page_get_slab(page);
621}
622
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800623static inline void *index_to_obj(struct kmem_cache *cache, struct slab *slab,
624 unsigned int idx)
625{
626 return slab->s_mem + cache->buffer_size * idx;
627}
628
629static inline unsigned int obj_to_index(struct kmem_cache *cache,
630 struct slab *slab, void *obj)
631{
632 return (unsigned)(obj - slab->s_mem) / cache->buffer_size;
633}
634
Andrew Mortona737b3e2006-03-22 00:08:11 -0800635/*
636 * These are the default caches for kmalloc. Custom caches can have other sizes.
637 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638struct cache_sizes malloc_sizes[] = {
639#define CACHE(x) { .cs_size = (x) },
640#include <linux/kmalloc_sizes.h>
641 CACHE(ULONG_MAX)
642#undef CACHE
643};
644EXPORT_SYMBOL(malloc_sizes);
645
646/* Must match cache_sizes above. Out of line to keep cache footprint low. */
647struct cache_names {
648 char *name;
649 char *name_dma;
650};
651
652static struct cache_names __initdata cache_names[] = {
653#define CACHE(x) { .name = "size-" #x, .name_dma = "size-" #x "(DMA)" },
654#include <linux/kmalloc_sizes.h>
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800655 {NULL,}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656#undef CACHE
657};
658
659static struct arraycache_init initarray_cache __initdata =
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800660 { {0, BOOT_CPUCACHE_ENTRIES, 1, 0} };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661static struct arraycache_init initarray_generic =
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800662 { {0, BOOT_CPUCACHE_ENTRIES, 1, 0} };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
664/* internal cache of cache description objs */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800665static struct kmem_cache cache_cache = {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800666 .batchcount = 1,
667 .limit = BOOT_CPUCACHE_ENTRIES,
668 .shared = 1,
Pekka Enberg343e0d72006-02-01 03:05:50 -0800669 .buffer_size = sizeof(struct kmem_cache),
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800670 .name = "kmem_cache",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671#if DEBUG
Pekka Enberg343e0d72006-02-01 03:05:50 -0800672 .obj_size = sizeof(struct kmem_cache),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673#endif
674};
675
676/* Guard access to the cache-chain. */
Ingo Molnarfc0abb12006-01-18 17:42:33 -0800677static DEFINE_MUTEX(cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678static struct list_head cache_chain;
679
680/*
Andrew Mortona737b3e2006-03-22 00:08:11 -0800681 * vm_enough_memory() looks at this to determine how many slab-allocated pages
682 * are possibly freeable under pressure
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 *
684 * SLAB_RECLAIM_ACCOUNT turns this on per-slab
685 */
686atomic_t slab_reclaim_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
688/*
689 * chicken and egg problem: delay the per-cpu array allocation
690 * until the general caches are up.
691 */
692static enum {
693 NONE,
Christoph Lametere498be72005-09-09 13:03:32 -0700694 PARTIAL_AC,
695 PARTIAL_L3,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 FULL
697} g_cpucache_up;
698
699static DEFINE_PER_CPU(struct work_struct, reap_work);
700
Andrew Mortona737b3e2006-03-22 00:08:11 -0800701static void free_block(struct kmem_cache *cachep, void **objpp, int len,
702 int node);
Pekka Enberg343e0d72006-02-01 03:05:50 -0800703static void enable_cpucache(struct kmem_cache *cachep);
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800704static void cache_reap(void *unused);
Pekka Enberg343e0d72006-02-01 03:05:50 -0800705static int __node_shrink(struct kmem_cache *cachep, int node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706
Pekka Enberg343e0d72006-02-01 03:05:50 -0800707static inline struct array_cache *cpu_cache_get(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708{
709 return cachep->array[smp_processor_id()];
710}
711
Andrew Mortona737b3e2006-03-22 00:08:11 -0800712static inline struct kmem_cache *__find_general_cachep(size_t size,
713 gfp_t gfpflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714{
715 struct cache_sizes *csizep = malloc_sizes;
716
717#if DEBUG
718 /* This happens if someone tries to call
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800719 * kmem_cache_create(), or __kmalloc(), before
720 * the generic caches are initialized.
721 */
Alok Katariac7e43c72005-09-14 12:17:53 -0700722 BUG_ON(malloc_sizes[INDEX_AC].cs_cachep == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723#endif
724 while (size > csizep->cs_size)
725 csizep++;
726
727 /*
Martin Hicks0abf40c2005-09-03 15:54:54 -0700728 * Really subtle: The last entry with cs->cs_size==ULONG_MAX
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729 * has cs_{dma,}cachep==NULL. Thus no special case
730 * for large kmalloc calls required.
731 */
732 if (unlikely(gfpflags & GFP_DMA))
733 return csizep->cs_dmacachep;
734 return csizep->cs_cachep;
735}
736
Pekka Enberg343e0d72006-02-01 03:05:50 -0800737struct kmem_cache *kmem_find_general_cachep(size_t size, gfp_t gfpflags)
Manfred Spraul97e2bde2005-05-01 08:58:38 -0700738{
739 return __find_general_cachep(size, gfpflags);
740}
741EXPORT_SYMBOL(kmem_find_general_cachep);
742
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800743static size_t slab_mgmt_size(size_t nr_objs, size_t align)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744{
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800745 return ALIGN(sizeof(struct slab)+nr_objs*sizeof(kmem_bufctl_t), align);
746}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747
Andrew Mortona737b3e2006-03-22 00:08:11 -0800748/*
749 * Calculate the number of objects and left-over bytes for a given buffer size.
750 */
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800751static void cache_estimate(unsigned long gfporder, size_t buffer_size,
752 size_t align, int flags, size_t *left_over,
753 unsigned int *num)
754{
755 int nr_objs;
756 size_t mgmt_size;
757 size_t slab_size = PAGE_SIZE << gfporder;
758
759 /*
760 * The slab management structure can be either off the slab or
761 * on it. For the latter case, the memory allocated for a
762 * slab is used for:
763 *
764 * - The struct slab
765 * - One kmem_bufctl_t for each object
766 * - Padding to respect alignment of @align
767 * - @buffer_size bytes for each object
768 *
769 * If the slab management structure is off the slab, then the
770 * alignment will already be calculated into the size. Because
771 * the slabs are all pages aligned, the objects will be at the
772 * correct alignment when allocated.
773 */
774 if (flags & CFLGS_OFF_SLAB) {
775 mgmt_size = 0;
776 nr_objs = slab_size / buffer_size;
777
778 if (nr_objs > SLAB_LIMIT)
779 nr_objs = SLAB_LIMIT;
780 } else {
781 /*
782 * Ignore padding for the initial guess. The padding
783 * is at most @align-1 bytes, and @buffer_size is at
784 * least @align. In the worst case, this result will
785 * be one greater than the number of objects that fit
786 * into the memory allocation when taking the padding
787 * into account.
788 */
789 nr_objs = (slab_size - sizeof(struct slab)) /
790 (buffer_size + sizeof(kmem_bufctl_t));
791
792 /*
793 * This calculated number will be either the right
794 * amount, or one greater than what we want.
795 */
796 if (slab_mgmt_size(nr_objs, align) + nr_objs*buffer_size
797 > slab_size)
798 nr_objs--;
799
800 if (nr_objs > SLAB_LIMIT)
801 nr_objs = SLAB_LIMIT;
802
803 mgmt_size = slab_mgmt_size(nr_objs, align);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804 }
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800805 *num = nr_objs;
806 *left_over = slab_size - nr_objs*buffer_size - mgmt_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807}
808
809#define slab_error(cachep, msg) __slab_error(__FUNCTION__, cachep, msg)
810
Andrew Mortona737b3e2006-03-22 00:08:11 -0800811static void __slab_error(const char *function, struct kmem_cache *cachep,
812 char *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813{
814 printk(KERN_ERR "slab error in %s(): cache `%s': %s\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800815 function, cachep->name, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 dump_stack();
817}
818
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800819#ifdef CONFIG_NUMA
820/*
821 * Special reaping functions for NUMA systems called from cache_reap().
822 * These take care of doing round robin flushing of alien caches (containing
823 * objects freed on different nodes from which they were allocated) and the
824 * flushing of remote pcps by calling drain_node_pages.
825 */
826static DEFINE_PER_CPU(unsigned long, reap_node);
827
828static void init_reap_node(int cpu)
829{
830 int node;
831
832 node = next_node(cpu_to_node(cpu), node_online_map);
833 if (node == MAX_NUMNODES)
Paul Jackson442295c2006-03-22 00:09:11 -0800834 node = first_node(node_online_map);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800835
836 __get_cpu_var(reap_node) = node;
837}
838
839static void next_reap_node(void)
840{
841 int node = __get_cpu_var(reap_node);
842
843 /*
844 * Also drain per cpu pages on remote zones
845 */
846 if (node != numa_node_id())
847 drain_node_pages(node);
848
849 node = next_node(node, node_online_map);
850 if (unlikely(node >= MAX_NUMNODES))
851 node = first_node(node_online_map);
852 __get_cpu_var(reap_node) = node;
853}
854
855#else
856#define init_reap_node(cpu) do { } while (0)
857#define next_reap_node(void) do { } while (0)
858#endif
859
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860/*
861 * Initiate the reap timer running on the target CPU. We run at around 1 to 2Hz
862 * via the workqueue/eventd.
863 * Add the CPU number into the expiration time to minimize the possibility of
864 * the CPUs getting into lockstep and contending for the global cache chain
865 * lock.
866 */
867static void __devinit start_cpu_timer(int cpu)
868{
869 struct work_struct *reap_work = &per_cpu(reap_work, cpu);
870
871 /*
872 * When this gets called from do_initcalls via cpucache_init(),
873 * init_workqueues() has already run, so keventd will be setup
874 * at that time.
875 */
876 if (keventd_up() && reap_work->func == NULL) {
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800877 init_reap_node(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 INIT_WORK(reap_work, cache_reap, NULL);
879 schedule_delayed_work_on(cpu, reap_work, HZ + 3 * cpu);
880 }
881}
882
Christoph Lametere498be72005-09-09 13:03:32 -0700883static struct array_cache *alloc_arraycache(int node, int entries,
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800884 int batchcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885{
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800886 int memsize = sizeof(void *) * entries + sizeof(struct array_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 struct array_cache *nc = NULL;
888
Christoph Lametere498be72005-09-09 13:03:32 -0700889 nc = kmalloc_node(memsize, GFP_KERNEL, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 if (nc) {
891 nc->avail = 0;
892 nc->limit = entries;
893 nc->batchcount = batchcount;
894 nc->touched = 0;
Christoph Lametere498be72005-09-09 13:03:32 -0700895 spin_lock_init(&nc->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 }
897 return nc;
898}
899
Christoph Lametere498be72005-09-09 13:03:32 -0700900#ifdef CONFIG_NUMA
Pekka Enberg343e0d72006-02-01 03:05:50 -0800901static void *__cache_alloc_node(struct kmem_cache *, gfp_t, int);
Paul Jacksonc61afb12006-03-24 03:16:08 -0800902static void *alternate_node_alloc(struct kmem_cache *, gfp_t);
Christoph Lameterdc85da12006-01-18 17:42:36 -0800903
Pekka Enberg5295a742006-02-01 03:05:48 -0800904static struct array_cache **alloc_alien_cache(int node, int limit)
Christoph Lametere498be72005-09-09 13:03:32 -0700905{
906 struct array_cache **ac_ptr;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800907 int memsize = sizeof(void *) * MAX_NUMNODES;
Christoph Lametere498be72005-09-09 13:03:32 -0700908 int i;
909
910 if (limit > 1)
911 limit = 12;
912 ac_ptr = kmalloc_node(memsize, GFP_KERNEL, node);
913 if (ac_ptr) {
914 for_each_node(i) {
915 if (i == node || !node_online(i)) {
916 ac_ptr[i] = NULL;
917 continue;
918 }
919 ac_ptr[i] = alloc_arraycache(node, limit, 0xbaadf00d);
920 if (!ac_ptr[i]) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800921 for (i--; i <= 0; i--)
Christoph Lametere498be72005-09-09 13:03:32 -0700922 kfree(ac_ptr[i]);
923 kfree(ac_ptr);
924 return NULL;
925 }
926 }
927 }
928 return ac_ptr;
929}
930
Pekka Enberg5295a742006-02-01 03:05:48 -0800931static void free_alien_cache(struct array_cache **ac_ptr)
Christoph Lametere498be72005-09-09 13:03:32 -0700932{
933 int i;
934
935 if (!ac_ptr)
936 return;
Christoph Lametere498be72005-09-09 13:03:32 -0700937 for_each_node(i)
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800938 kfree(ac_ptr[i]);
Christoph Lametere498be72005-09-09 13:03:32 -0700939 kfree(ac_ptr);
940}
941
Pekka Enberg343e0d72006-02-01 03:05:50 -0800942static void __drain_alien_cache(struct kmem_cache *cachep,
Pekka Enberg5295a742006-02-01 03:05:48 -0800943 struct array_cache *ac, int node)
Christoph Lametere498be72005-09-09 13:03:32 -0700944{
945 struct kmem_list3 *rl3 = cachep->nodelists[node];
946
947 if (ac->avail) {
948 spin_lock(&rl3->list_lock);
Christoph Lameterff694162005-09-22 21:44:02 -0700949 free_block(cachep, ac->entry, ac->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -0700950 ac->avail = 0;
951 spin_unlock(&rl3->list_lock);
952 }
953}
954
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800955/*
956 * Called from cache_reap() to regularly drain alien caches round robin.
957 */
958static void reap_alien(struct kmem_cache *cachep, struct kmem_list3 *l3)
959{
960 int node = __get_cpu_var(reap_node);
961
962 if (l3->alien) {
963 struct array_cache *ac = l3->alien[node];
964 if (ac && ac->avail) {
965 spin_lock_irq(&ac->lock);
966 __drain_alien_cache(cachep, ac, node);
967 spin_unlock_irq(&ac->lock);
968 }
969 }
970}
971
Andrew Mortona737b3e2006-03-22 00:08:11 -0800972static void drain_alien_cache(struct kmem_cache *cachep,
973 struct array_cache **alien)
Christoph Lametere498be72005-09-09 13:03:32 -0700974{
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800975 int i = 0;
Christoph Lametere498be72005-09-09 13:03:32 -0700976 struct array_cache *ac;
977 unsigned long flags;
978
979 for_each_online_node(i) {
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -0800980 ac = alien[i];
Christoph Lametere498be72005-09-09 13:03:32 -0700981 if (ac) {
982 spin_lock_irqsave(&ac->lock, flags);
983 __drain_alien_cache(cachep, ac, i);
984 spin_unlock_irqrestore(&ac->lock, flags);
985 }
986 }
987}
988#else
Linus Torvalds7a21ef62006-02-05 11:26:38 -0800989
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -0800990#define drain_alien_cache(cachep, alien) do { } while (0)
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800991#define reap_alien(cachep, l3) do { } while (0)
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -0800992
Linus Torvalds7a21ef62006-02-05 11:26:38 -0800993static inline struct array_cache **alloc_alien_cache(int node, int limit)
994{
995 return (struct array_cache **) 0x01020304ul;
996}
997
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -0800998static inline void free_alien_cache(struct array_cache **ac_ptr)
999{
1000}
Linus Torvalds7a21ef62006-02-05 11:26:38 -08001001
Christoph Lametere498be72005-09-09 13:03:32 -07001002#endif
1003
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004static int __devinit cpuup_callback(struct notifier_block *nfb,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001005 unsigned long action, void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006{
1007 long cpu = (long)hcpu;
Pekka Enberg343e0d72006-02-01 03:05:50 -08001008 struct kmem_cache *cachep;
Christoph Lametere498be72005-09-09 13:03:32 -07001009 struct kmem_list3 *l3 = NULL;
1010 int node = cpu_to_node(cpu);
1011 int memsize = sizeof(struct kmem_list3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012
1013 switch (action) {
1014 case CPU_UP_PREPARE:
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001015 mutex_lock(&cache_chain_mutex);
Andrew Mortona737b3e2006-03-22 00:08:11 -08001016 /*
1017 * We need to do this right in the beginning since
Christoph Lametere498be72005-09-09 13:03:32 -07001018 * alloc_arraycache's are going to use this list.
1019 * kmalloc_node allows us to add the slab to the right
1020 * kmem_list3 and not this cpu's kmem_list3
1021 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022
Christoph Lametere498be72005-09-09 13:03:32 -07001023 list_for_each_entry(cachep, &cache_chain, next) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08001024 /*
1025 * Set up the size64 kmemlist for cpu before we can
Christoph Lametere498be72005-09-09 13:03:32 -07001026 * begin anything. Make sure some other cpu on this
1027 * node has not already allocated this
1028 */
1029 if (!cachep->nodelists[node]) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08001030 l3 = kmalloc_node(memsize, GFP_KERNEL, node);
1031 if (!l3)
Christoph Lametere498be72005-09-09 13:03:32 -07001032 goto bad;
1033 kmem_list3_init(l3);
1034 l3->next_reap = jiffies + REAPTIMEOUT_LIST3 +
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001035 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
Christoph Lametere498be72005-09-09 13:03:32 -07001036
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001037 /*
1038 * The l3s don't come and go as CPUs come and
1039 * go. cache_chain_mutex is sufficient
1040 * protection here.
1041 */
Christoph Lametere498be72005-09-09 13:03:32 -07001042 cachep->nodelists[node] = l3;
1043 }
1044
1045 spin_lock_irq(&cachep->nodelists[node]->list_lock);
1046 cachep->nodelists[node]->free_limit =
Andrew Mortona737b3e2006-03-22 00:08:11 -08001047 (1 + nr_cpus_node(node)) *
1048 cachep->batchcount + cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07001049 spin_unlock_irq(&cachep->nodelists[node]->list_lock);
1050 }
1051
Andrew Mortona737b3e2006-03-22 00:08:11 -08001052 /*
1053 * Now we can go ahead with allocating the shared arrays and
1054 * array caches
1055 */
Christoph Lametere498be72005-09-09 13:03:32 -07001056 list_for_each_entry(cachep, &cache_chain, next) {
Tobias Klausercd105df2006-01-08 01:00:59 -08001057 struct array_cache *nc;
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001058 struct array_cache *shared;
1059 struct array_cache **alien;
Tobias Klausercd105df2006-01-08 01:00:59 -08001060
Christoph Lametere498be72005-09-09 13:03:32 -07001061 nc = alloc_arraycache(node, cachep->limit,
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001062 cachep->batchcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 if (!nc)
1064 goto bad;
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001065 shared = alloc_arraycache(node,
1066 cachep->shared * cachep->batchcount,
1067 0xbaadf00d);
1068 if (!shared)
1069 goto bad;
Linus Torvalds7a21ef62006-02-05 11:26:38 -08001070
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001071 alien = alloc_alien_cache(node, cachep->limit);
1072 if (!alien)
1073 goto bad;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001074 cachep->array[cpu] = nc;
Christoph Lametere498be72005-09-09 13:03:32 -07001075 l3 = cachep->nodelists[node];
1076 BUG_ON(!l3);
Christoph Lametere498be72005-09-09 13:03:32 -07001077
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001078 spin_lock_irq(&l3->list_lock);
1079 if (!l3->shared) {
1080 /*
1081 * We are serialised from CPU_DEAD or
1082 * CPU_UP_CANCELLED by the cpucontrol lock
1083 */
1084 l3->shared = shared;
1085 shared = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07001086 }
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001087#ifdef CONFIG_NUMA
1088 if (!l3->alien) {
1089 l3->alien = alien;
1090 alien = NULL;
1091 }
1092#endif
1093 spin_unlock_irq(&l3->list_lock);
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001094 kfree(shared);
1095 free_alien_cache(alien);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 }
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001097 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 break;
1099 case CPU_ONLINE:
1100 start_cpu_timer(cpu);
1101 break;
1102#ifdef CONFIG_HOTPLUG_CPU
1103 case CPU_DEAD:
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001104 /*
1105 * Even if all the cpus of a node are down, we don't free the
1106 * kmem_list3 of any cache. This to avoid a race between
1107 * cpu_down, and a kmalloc allocation from another cpu for
1108 * memory from the node of the cpu going down. The list3
1109 * structure is usually allocated from kmem_cache_create() and
1110 * gets destroyed at kmem_cache_destroy().
1111 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001112 /* fall thru */
1113 case CPU_UP_CANCELED:
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001114 mutex_lock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 list_for_each_entry(cachep, &cache_chain, next) {
1116 struct array_cache *nc;
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001117 struct array_cache *shared;
1118 struct array_cache **alien;
Christoph Lametere498be72005-09-09 13:03:32 -07001119 cpumask_t mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120
Christoph Lametere498be72005-09-09 13:03:32 -07001121 mask = node_to_cpumask(node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122 /* cpu is dead; no one can alloc from it. */
1123 nc = cachep->array[cpu];
1124 cachep->array[cpu] = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07001125 l3 = cachep->nodelists[node];
1126
1127 if (!l3)
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001128 goto free_array_cache;
Christoph Lametere498be72005-09-09 13:03:32 -07001129
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08001130 spin_lock_irq(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07001131
1132 /* Free limit for this kmem_list3 */
1133 l3->free_limit -= cachep->batchcount;
1134 if (nc)
Christoph Lameterff694162005-09-22 21:44:02 -07001135 free_block(cachep, nc->entry, nc->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -07001136
1137 if (!cpus_empty(mask)) {
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08001138 spin_unlock_irq(&l3->list_lock);
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001139 goto free_array_cache;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001140 }
Christoph Lametere498be72005-09-09 13:03:32 -07001141
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001142 shared = l3->shared;
1143 if (shared) {
Christoph Lametere498be72005-09-09 13:03:32 -07001144 free_block(cachep, l3->shared->entry,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001145 l3->shared->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -07001146 l3->shared = NULL;
1147 }
Christoph Lametere498be72005-09-09 13:03:32 -07001148
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001149 alien = l3->alien;
1150 l3->alien = NULL;
1151
1152 spin_unlock_irq(&l3->list_lock);
1153
1154 kfree(shared);
1155 if (alien) {
1156 drain_alien_cache(cachep, alien);
1157 free_alien_cache(alien);
Christoph Lametere498be72005-09-09 13:03:32 -07001158 }
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001159free_array_cache:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 kfree(nc);
1161 }
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001162 /*
1163 * In the previous loop, all the objects were freed to
1164 * the respective cache's slabs, now we can go ahead and
1165 * shrink each nodelist to its limit.
1166 */
1167 list_for_each_entry(cachep, &cache_chain, next) {
1168 l3 = cachep->nodelists[node];
1169 if (!l3)
1170 continue;
1171 spin_lock_irq(&l3->list_lock);
1172 /* free slabs belonging to this node */
1173 __node_shrink(cachep, node);
1174 spin_unlock_irq(&l3->list_lock);
1175 }
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001176 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 break;
1178#endif
1179 }
1180 return NOTIFY_OK;
Andrew Mortona737b3e2006-03-22 00:08:11 -08001181bad:
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001182 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 return NOTIFY_BAD;
1184}
1185
1186static struct notifier_block cpucache_notifier = { &cpuup_callback, NULL, 0 };
1187
Christoph Lametere498be72005-09-09 13:03:32 -07001188/*
1189 * swap the static kmem_list3 with kmalloced memory
1190 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08001191static void init_list(struct kmem_cache *cachep, struct kmem_list3 *list,
1192 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07001193{
1194 struct kmem_list3 *ptr;
1195
1196 BUG_ON(cachep->nodelists[nodeid] != list);
1197 ptr = kmalloc_node(sizeof(struct kmem_list3), GFP_KERNEL, nodeid);
1198 BUG_ON(!ptr);
1199
1200 local_irq_disable();
1201 memcpy(ptr, list, sizeof(struct kmem_list3));
1202 MAKE_ALL_LISTS(cachep, ptr, nodeid);
1203 cachep->nodelists[nodeid] = ptr;
1204 local_irq_enable();
1205}
1206
Andrew Mortona737b3e2006-03-22 00:08:11 -08001207/*
1208 * Initialisation. Called after the page allocator have been initialised and
1209 * before smp_init().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 */
1211void __init kmem_cache_init(void)
1212{
1213 size_t left_over;
1214 struct cache_sizes *sizes;
1215 struct cache_names *names;
Christoph Lametere498be72005-09-09 13:03:32 -07001216 int i;
Jack Steiner07ed76b2006-03-07 21:55:46 -08001217 int order;
Christoph Lametere498be72005-09-09 13:03:32 -07001218
1219 for (i = 0; i < NUM_INIT_LISTS; i++) {
1220 kmem_list3_init(&initkmem_list3[i]);
1221 if (i < MAX_NUMNODES)
1222 cache_cache.nodelists[i] = NULL;
1223 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
1225 /*
1226 * Fragmentation resistance on low memory - only use bigger
1227 * page orders on machines with more than 32MB of memory.
1228 */
1229 if (num_physpages > (32 << 20) >> PAGE_SHIFT)
1230 slab_break_gfp_order = BREAK_GFP_ORDER_HI;
1231
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 /* Bootstrap is tricky, because several objects are allocated
1233 * from caches that do not exist yet:
Andrew Mortona737b3e2006-03-22 00:08:11 -08001234 * 1) initialize the cache_cache cache: it contains the struct
1235 * kmem_cache structures of all caches, except cache_cache itself:
1236 * cache_cache is statically allocated.
Christoph Lametere498be72005-09-09 13:03:32 -07001237 * Initially an __init data area is used for the head array and the
1238 * kmem_list3 structures, it's replaced with a kmalloc allocated
1239 * array at the end of the bootstrap.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 * 2) Create the first kmalloc cache.
Pekka Enberg343e0d72006-02-01 03:05:50 -08001241 * The struct kmem_cache for the new cache is allocated normally.
Christoph Lametere498be72005-09-09 13:03:32 -07001242 * An __init data area is used for the head array.
1243 * 3) Create the remaining kmalloc caches, with minimally sized
1244 * head arrays.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 * 4) Replace the __init data head arrays for cache_cache and the first
1246 * kmalloc cache with kmalloc allocated arrays.
Christoph Lametere498be72005-09-09 13:03:32 -07001247 * 5) Replace the __init data for kmem_list3 for cache_cache and
1248 * the other cache's with kmalloc allocated memory.
1249 * 6) Resize the head arrays of the kmalloc caches to their final sizes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001250 */
1251
1252 /* 1) create the cache_cache */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 INIT_LIST_HEAD(&cache_chain);
1254 list_add(&cache_cache.next, &cache_chain);
1255 cache_cache.colour_off = cache_line_size();
1256 cache_cache.array[smp_processor_id()] = &initarray_cache.cache;
Christoph Lametere498be72005-09-09 13:03:32 -07001257 cache_cache.nodelists[numa_node_id()] = &initkmem_list3[CACHE_CACHE];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
Andrew Mortona737b3e2006-03-22 00:08:11 -08001259 cache_cache.buffer_size = ALIGN(cache_cache.buffer_size,
1260 cache_line_size());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261
Jack Steiner07ed76b2006-03-07 21:55:46 -08001262 for (order = 0; order < MAX_ORDER; order++) {
1263 cache_estimate(order, cache_cache.buffer_size,
1264 cache_line_size(), 0, &left_over, &cache_cache.num);
1265 if (cache_cache.num)
1266 break;
1267 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 if (!cache_cache.num)
1269 BUG();
Jack Steiner07ed76b2006-03-07 21:55:46 -08001270 cache_cache.gfporder = order;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001271 cache_cache.colour = left_over / cache_cache.colour_off;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001272 cache_cache.slab_size = ALIGN(cache_cache.num * sizeof(kmem_bufctl_t) +
1273 sizeof(struct slab), cache_line_size());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001274
1275 /* 2+3) create the kmalloc caches */
1276 sizes = malloc_sizes;
1277 names = cache_names;
1278
Andrew Mortona737b3e2006-03-22 00:08:11 -08001279 /*
1280 * Initialize the caches that provide memory for the array cache and the
1281 * kmem_list3 structures first. Without this, further allocations will
1282 * bug.
Christoph Lametere498be72005-09-09 13:03:32 -07001283 */
1284
1285 sizes[INDEX_AC].cs_cachep = kmem_cache_create(names[INDEX_AC].name,
Andrew Mortona737b3e2006-03-22 00:08:11 -08001286 sizes[INDEX_AC].cs_size,
1287 ARCH_KMALLOC_MINALIGN,
1288 ARCH_KMALLOC_FLAGS|SLAB_PANIC,
1289 NULL, NULL);
Christoph Lametere498be72005-09-09 13:03:32 -07001290
Andrew Mortona737b3e2006-03-22 00:08:11 -08001291 if (INDEX_AC != INDEX_L3) {
Christoph Lametere498be72005-09-09 13:03:32 -07001292 sizes[INDEX_L3].cs_cachep =
Andrew Mortona737b3e2006-03-22 00:08:11 -08001293 kmem_cache_create(names[INDEX_L3].name,
1294 sizes[INDEX_L3].cs_size,
1295 ARCH_KMALLOC_MINALIGN,
1296 ARCH_KMALLOC_FLAGS|SLAB_PANIC,
1297 NULL, NULL);
1298 }
Christoph Lametere498be72005-09-09 13:03:32 -07001299
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300 while (sizes->cs_size != ULONG_MAX) {
Christoph Lametere498be72005-09-09 13:03:32 -07001301 /*
1302 * For performance, all the general caches are L1 aligned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 * This should be particularly beneficial on SMP boxes, as it
1304 * eliminates "false sharing".
1305 * Note for systems short on memory removing the alignment will
Christoph Lametere498be72005-09-09 13:03:32 -07001306 * allow tighter packing of the smaller caches.
1307 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08001308 if (!sizes->cs_cachep) {
Christoph Lametere498be72005-09-09 13:03:32 -07001309 sizes->cs_cachep = kmem_cache_create(names->name,
Andrew Mortona737b3e2006-03-22 00:08:11 -08001310 sizes->cs_size,
1311 ARCH_KMALLOC_MINALIGN,
1312 ARCH_KMALLOC_FLAGS|SLAB_PANIC,
1313 NULL, NULL);
1314 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315
1316 /* Inc off-slab bufctl limit until the ceiling is hit. */
1317 if (!(OFF_SLAB(sizes->cs_cachep))) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001318 offslab_limit = sizes->cs_size - sizeof(struct slab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 offslab_limit /= sizeof(kmem_bufctl_t);
1320 }
1321
1322 sizes->cs_dmacachep = kmem_cache_create(names->name_dma,
Andrew Mortona737b3e2006-03-22 00:08:11 -08001323 sizes->cs_size,
1324 ARCH_KMALLOC_MINALIGN,
1325 ARCH_KMALLOC_FLAGS|SLAB_CACHE_DMA|
1326 SLAB_PANIC,
1327 NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 sizes++;
1329 names++;
1330 }
1331 /* 4) Replace the bootstrap head arrays */
1332 {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001333 void *ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001334
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 ptr = kmalloc(sizeof(struct arraycache_init), GFP_KERNEL);
Christoph Lametere498be72005-09-09 13:03:32 -07001336
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 local_irq_disable();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001338 BUG_ON(cpu_cache_get(&cache_cache) != &initarray_cache.cache);
1339 memcpy(ptr, cpu_cache_get(&cache_cache),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001340 sizeof(struct arraycache_init));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 cache_cache.array[smp_processor_id()] = ptr;
1342 local_irq_enable();
Christoph Lametere498be72005-09-09 13:03:32 -07001343
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 ptr = kmalloc(sizeof(struct arraycache_init), GFP_KERNEL);
Christoph Lametere498be72005-09-09 13:03:32 -07001345
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 local_irq_disable();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001347 BUG_ON(cpu_cache_get(malloc_sizes[INDEX_AC].cs_cachep)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001348 != &initarray_generic.cache);
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001349 memcpy(ptr, cpu_cache_get(malloc_sizes[INDEX_AC].cs_cachep),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001350 sizeof(struct arraycache_init));
Christoph Lametere498be72005-09-09 13:03:32 -07001351 malloc_sizes[INDEX_AC].cs_cachep->array[smp_processor_id()] =
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001352 ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 local_irq_enable();
1354 }
Christoph Lametere498be72005-09-09 13:03:32 -07001355 /* 5) Replace the bootstrap kmem_list3's */
1356 {
1357 int node;
1358 /* Replace the static kmem_list3 structures for the boot cpu */
1359 init_list(&cache_cache, &initkmem_list3[CACHE_CACHE],
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001360 numa_node_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361
Christoph Lametere498be72005-09-09 13:03:32 -07001362 for_each_online_node(node) {
1363 init_list(malloc_sizes[INDEX_AC].cs_cachep,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001364 &initkmem_list3[SIZE_AC + node], node);
Christoph Lametere498be72005-09-09 13:03:32 -07001365
1366 if (INDEX_AC != INDEX_L3) {
1367 init_list(malloc_sizes[INDEX_L3].cs_cachep,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001368 &initkmem_list3[SIZE_L3 + node],
1369 node);
Christoph Lametere498be72005-09-09 13:03:32 -07001370 }
1371 }
1372 }
1373
1374 /* 6) resize the head arrays to their final sizes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 {
Pekka Enberg343e0d72006-02-01 03:05:50 -08001376 struct kmem_cache *cachep;
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001377 mutex_lock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 list_for_each_entry(cachep, &cache_chain, next)
Andrew Mortona737b3e2006-03-22 00:08:11 -08001379 enable_cpucache(cachep);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001380 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 }
1382
1383 /* Done! */
1384 g_cpucache_up = FULL;
1385
Andrew Mortona737b3e2006-03-22 00:08:11 -08001386 /*
1387 * Register a cpu startup notifier callback that initializes
1388 * cpu_cache_get for all new cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 */
1390 register_cpu_notifier(&cpucache_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001391
Andrew Mortona737b3e2006-03-22 00:08:11 -08001392 /*
1393 * The reap timers are started later, with a module init call: That part
1394 * of the kernel is not yet operational.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 */
1396}
1397
1398static int __init cpucache_init(void)
1399{
1400 int cpu;
1401
Andrew Mortona737b3e2006-03-22 00:08:11 -08001402 /*
1403 * Register the timers that return unneeded pages to the page allocator
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 */
Christoph Lametere498be72005-09-09 13:03:32 -07001405 for_each_online_cpu(cpu)
Andrew Mortona737b3e2006-03-22 00:08:11 -08001406 start_cpu_timer(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 return 0;
1408}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409__initcall(cpucache_init);
1410
1411/*
1412 * Interface to system's page allocator. No need to hold the cache-lock.
1413 *
1414 * If we requested dmaable memory, we will get it. Even if we
1415 * did not request dmaable memory, we might get it, but that
1416 * would be relatively rare and ignorable.
1417 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001418static void *kmem_getpages(struct kmem_cache *cachep, gfp_t flags, int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419{
1420 struct page *page;
1421 void *addr;
1422 int i;
1423
1424 flags |= cachep->gfpflags;
Christoph Lameter50c85a12005-11-13 16:06:47 -08001425 page = alloc_pages_node(nodeid, flags, cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 if (!page)
1427 return NULL;
1428 addr = page_address(page);
1429
1430 i = (1 << cachep->gfporder);
1431 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1432 atomic_add(i, &slab_reclaim_pages);
1433 add_page_state(nr_slab, i);
1434 while (i--) {
Nick Pigginf205b2f2006-03-22 00:08:02 -08001435 __SetPageSlab(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 page++;
1437 }
1438 return addr;
1439}
1440
1441/*
1442 * Interface to system's page release.
1443 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001444static void kmem_freepages(struct kmem_cache *cachep, void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001446 unsigned long i = (1 << cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 struct page *page = virt_to_page(addr);
1448 const unsigned long nr_freed = i;
1449
1450 while (i--) {
Nick Pigginf205b2f2006-03-22 00:08:02 -08001451 BUG_ON(!PageSlab(page));
1452 __ClearPageSlab(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 page++;
1454 }
1455 sub_page_state(nr_slab, nr_freed);
1456 if (current->reclaim_state)
1457 current->reclaim_state->reclaimed_slab += nr_freed;
1458 free_pages((unsigned long)addr, cachep->gfporder);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001459 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1460 atomic_sub(1 << cachep->gfporder, &slab_reclaim_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461}
1462
1463static void kmem_rcu_free(struct rcu_head *head)
1464{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001465 struct slab_rcu *slab_rcu = (struct slab_rcu *)head;
Pekka Enberg343e0d72006-02-01 03:05:50 -08001466 struct kmem_cache *cachep = slab_rcu->cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467
1468 kmem_freepages(cachep, slab_rcu->addr);
1469 if (OFF_SLAB(cachep))
1470 kmem_cache_free(cachep->slabp_cache, slab_rcu);
1471}
1472
1473#if DEBUG
1474
1475#ifdef CONFIG_DEBUG_PAGEALLOC
Pekka Enberg343e0d72006-02-01 03:05:50 -08001476static void store_stackinfo(struct kmem_cache *cachep, unsigned long *addr,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001477 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478{
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001479 int size = obj_size(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001481 addr = (unsigned long *)&((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001483 if (size < 5 * sizeof(unsigned long))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 return;
1485
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001486 *addr++ = 0x12345678;
1487 *addr++ = caller;
1488 *addr++ = smp_processor_id();
1489 size -= 3 * sizeof(unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490 {
1491 unsigned long *sptr = &caller;
1492 unsigned long svalue;
1493
1494 while (!kstack_end(sptr)) {
1495 svalue = *sptr++;
1496 if (kernel_text_address(svalue)) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001497 *addr++ = svalue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 size -= sizeof(unsigned long);
1499 if (size <= sizeof(unsigned long))
1500 break;
1501 }
1502 }
1503
1504 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001505 *addr++ = 0x87654321;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506}
1507#endif
1508
Pekka Enberg343e0d72006-02-01 03:05:50 -08001509static void poison_obj(struct kmem_cache *cachep, void *addr, unsigned char val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510{
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001511 int size = obj_size(cachep);
1512 addr = &((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513
1514 memset(addr, val, size);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001515 *(unsigned char *)(addr + size - 1) = POISON_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516}
1517
1518static void dump_line(char *data, int offset, int limit)
1519{
1520 int i;
1521 printk(KERN_ERR "%03x:", offset);
Andrew Mortona737b3e2006-03-22 00:08:11 -08001522 for (i = 0; i < limit; i++)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001523 printk(" %02x", (unsigned char)data[offset + i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 printk("\n");
1525}
1526#endif
1527
1528#if DEBUG
1529
Pekka Enberg343e0d72006-02-01 03:05:50 -08001530static void print_objinfo(struct kmem_cache *cachep, void *objp, int lines)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531{
1532 int i, size;
1533 char *realobj;
1534
1535 if (cachep->flags & SLAB_RED_ZONE) {
1536 printk(KERN_ERR "Redzone: 0x%lx/0x%lx.\n",
Andrew Mortona737b3e2006-03-22 00:08:11 -08001537 *dbg_redzone1(cachep, objp),
1538 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 }
1540
1541 if (cachep->flags & SLAB_STORE_USER) {
1542 printk(KERN_ERR "Last user: [<%p>]",
Andrew Mortona737b3e2006-03-22 00:08:11 -08001543 *dbg_userword(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 print_symbol("(%s)",
Andrew Mortona737b3e2006-03-22 00:08:11 -08001545 (unsigned long)*dbg_userword(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 printk("\n");
1547 }
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001548 realobj = (char *)objp + obj_offset(cachep);
1549 size = obj_size(cachep);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001550 for (i = 0; i < size && lines; i += 16, lines--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 int limit;
1552 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001553 if (i + limit > size)
1554 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 dump_line(realobj, i, limit);
1556 }
1557}
1558
Pekka Enberg343e0d72006-02-01 03:05:50 -08001559static void check_poison_obj(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560{
1561 char *realobj;
1562 int size, i;
1563 int lines = 0;
1564
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001565 realobj = (char *)objp + obj_offset(cachep);
1566 size = obj_size(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001568 for (i = 0; i < size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 char exp = POISON_FREE;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001570 if (i == size - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001571 exp = POISON_END;
1572 if (realobj[i] != exp) {
1573 int limit;
1574 /* Mismatch ! */
1575 /* Print header */
1576 if (lines == 0) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001577 printk(KERN_ERR
Andrew Mortona737b3e2006-03-22 00:08:11 -08001578 "Slab corruption: start=%p, len=%d\n",
1579 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 print_objinfo(cachep, objp, 0);
1581 }
1582 /* Hexdump the affected line */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001583 i = (i / 16) * 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001585 if (i + limit > size)
1586 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 dump_line(realobj, i, limit);
1588 i += 16;
1589 lines++;
1590 /* Limit to 5 lines */
1591 if (lines > 5)
1592 break;
1593 }
1594 }
1595 if (lines != 0) {
1596 /* Print some data about the neighboring objects, if they
1597 * exist:
1598 */
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08001599 struct slab *slabp = virt_to_slab(objp);
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001600 unsigned int objnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001602 objnr = obj_to_index(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 if (objnr) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001604 objp = index_to_obj(cachep, slabp, objnr - 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001605 realobj = (char *)objp + obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 printk(KERN_ERR "Prev obj: start=%p, len=%d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001607 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 print_objinfo(cachep, objp, 2);
1609 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001610 if (objnr + 1 < cachep->num) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001611 objp = index_to_obj(cachep, slabp, objnr + 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001612 realobj = (char *)objp + obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 printk(KERN_ERR "Next obj: start=%p, len=%d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001614 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 print_objinfo(cachep, objp, 2);
1616 }
1617 }
1618}
1619#endif
1620
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621#if DEBUG
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001622/**
Randy Dunlap911851e2006-03-22 00:08:14 -08001623 * slab_destroy_objs - destroy a slab and its objects
1624 * @cachep: cache pointer being destroyed
1625 * @slabp: slab pointer being destroyed
1626 *
1627 * Call the registered destructor for each object in a slab that is being
1628 * destroyed.
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001629 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001630static void slab_destroy_objs(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001631{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 int i;
1633 for (i = 0; i < cachep->num; i++) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001634 void *objp = index_to_obj(cachep, slabp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635
1636 if (cachep->flags & SLAB_POISON) {
1637#ifdef CONFIG_DEBUG_PAGEALLOC
Andrew Mortona737b3e2006-03-22 00:08:11 -08001638 if (cachep->buffer_size % PAGE_SIZE == 0 &&
1639 OFF_SLAB(cachep))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001640 kernel_map_pages(virt_to_page(objp),
Andrew Mortona737b3e2006-03-22 00:08:11 -08001641 cachep->buffer_size / PAGE_SIZE, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 else
1643 check_poison_obj(cachep, objp);
1644#else
1645 check_poison_obj(cachep, objp);
1646#endif
1647 }
1648 if (cachep->flags & SLAB_RED_ZONE) {
1649 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
1650 slab_error(cachep, "start of a freed object "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001651 "was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
1653 slab_error(cachep, "end of a freed object "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001654 "was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 }
1656 if (cachep->dtor && !(cachep->flags & SLAB_POISON))
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001657 (cachep->dtor) (objp + obj_offset(cachep), cachep, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 }
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001659}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660#else
Pekka Enberg343e0d72006-02-01 03:05:50 -08001661static void slab_destroy_objs(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001662{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 if (cachep->dtor) {
1664 int i;
1665 for (i = 0; i < cachep->num; i++) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001666 void *objp = index_to_obj(cachep, slabp, i);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001667 (cachep->dtor) (objp, cachep, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 }
1669 }
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001670}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671#endif
1672
Randy Dunlap911851e2006-03-22 00:08:14 -08001673/**
1674 * slab_destroy - destroy and release all objects in a slab
1675 * @cachep: cache pointer being destroyed
1676 * @slabp: slab pointer being destroyed
1677 *
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001678 * Destroy all the objs in a slab, and release the mem back to the system.
Andrew Mortona737b3e2006-03-22 00:08:11 -08001679 * Before calling the slab must have been unlinked from the cache. The
1680 * cache-lock is not held/needed.
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001681 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001682static void slab_destroy(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001683{
1684 void *addr = slabp->s_mem - slabp->colouroff;
1685
1686 slab_destroy_objs(cachep, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 if (unlikely(cachep->flags & SLAB_DESTROY_BY_RCU)) {
1688 struct slab_rcu *slab_rcu;
1689
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001690 slab_rcu = (struct slab_rcu *)slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 slab_rcu->cachep = cachep;
1692 slab_rcu->addr = addr;
1693 call_rcu(&slab_rcu->head, kmem_rcu_free);
1694 } else {
1695 kmem_freepages(cachep, addr);
1696 if (OFF_SLAB(cachep))
1697 kmem_cache_free(cachep->slabp_cache, slabp);
1698 }
1699}
1700
Andrew Mortona737b3e2006-03-22 00:08:11 -08001701/*
1702 * For setting up all the kmem_list3s for cache whose buffer_size is same as
1703 * size of kmem_list3.
1704 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001705static void set_up_list3s(struct kmem_cache *cachep, int index)
Christoph Lametere498be72005-09-09 13:03:32 -07001706{
1707 int node;
1708
1709 for_each_online_node(node) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001710 cachep->nodelists[node] = &initkmem_list3[index + node];
Christoph Lametere498be72005-09-09 13:03:32 -07001711 cachep->nodelists[node]->next_reap = jiffies +
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001712 REAPTIMEOUT_LIST3 +
1713 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
Christoph Lametere498be72005-09-09 13:03:32 -07001714 }
1715}
1716
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717/**
Randy.Dunlapa70773d2006-02-01 03:05:52 -08001718 * calculate_slab_order - calculate size (page order) of slabs
1719 * @cachep: pointer to the cache that is being created
1720 * @size: size of objects to be created in this cache.
1721 * @align: required alignment for the objects.
1722 * @flags: slab allocation flags
1723 *
1724 * Also calculates the number of objects per slab.
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001725 *
1726 * This could be made much more intelligent. For now, try to avoid using
1727 * high order pages for slabs. When the gfp() functions are more friendly
1728 * towards high-order requests, this should be changed.
1729 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08001730static size_t calculate_slab_order(struct kmem_cache *cachep,
Randy Dunlapee13d782006-02-01 03:05:53 -08001731 size_t size, size_t align, unsigned long flags)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001732{
1733 size_t left_over = 0;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001734 int gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001735
Andrew Mortona737b3e2006-03-22 00:08:11 -08001736 for (gfporder = 0; gfporder <= MAX_GFP_ORDER; gfporder++) {
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001737 unsigned int num;
1738 size_t remainder;
1739
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001740 cache_estimate(gfporder, size, align, flags, &remainder, &num);
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001741 if (!num)
1742 continue;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001743
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001744 /* More than offslab_limit objects will cause problems */
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001745 if ((flags & CFLGS_OFF_SLAB) && num > offslab_limit)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001746 break;
1747
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001748 /* Found something acceptable - save it away */
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001749 cachep->num = num;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001750 cachep->gfporder = gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001751 left_over = remainder;
1752
1753 /*
Linus Torvaldsf78bb8a2006-03-08 10:33:05 -08001754 * A VFS-reclaimable slab tends to have most allocations
1755 * as GFP_NOFS and we really don't want to have to be allocating
1756 * higher-order pages when we are unable to shrink dcache.
1757 */
1758 if (flags & SLAB_RECLAIM_ACCOUNT)
1759 break;
1760
1761 /*
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001762 * Large number of objects is good, but very large slabs are
1763 * currently bad for the gfp()s.
1764 */
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001765 if (gfporder >= slab_break_gfp_order)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001766 break;
1767
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001768 /*
1769 * Acceptable internal fragmentation?
1770 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08001771 if (left_over * 8 <= (PAGE_SIZE << gfporder))
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001772 break;
1773 }
1774 return left_over;
1775}
1776
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08001777static void setup_cpu_cache(struct kmem_cache *cachep)
1778{
1779 if (g_cpucache_up == FULL) {
1780 enable_cpucache(cachep);
1781 return;
1782 }
1783 if (g_cpucache_up == NONE) {
1784 /*
1785 * Note: the first kmem_cache_create must create the cache
1786 * that's used by kmalloc(24), otherwise the creation of
1787 * further caches will BUG().
1788 */
1789 cachep->array[smp_processor_id()] = &initarray_generic.cache;
1790
1791 /*
1792 * If the cache that's used by kmalloc(sizeof(kmem_list3)) is
1793 * the first cache, then we need to set up all its list3s,
1794 * otherwise the creation of further caches will BUG().
1795 */
1796 set_up_list3s(cachep, SIZE_AC);
1797 if (INDEX_AC == INDEX_L3)
1798 g_cpucache_up = PARTIAL_L3;
1799 else
1800 g_cpucache_up = PARTIAL_AC;
1801 } else {
1802 cachep->array[smp_processor_id()] =
1803 kmalloc(sizeof(struct arraycache_init), GFP_KERNEL);
1804
1805 if (g_cpucache_up == PARTIAL_AC) {
1806 set_up_list3s(cachep, SIZE_L3);
1807 g_cpucache_up = PARTIAL_L3;
1808 } else {
1809 int node;
1810 for_each_online_node(node) {
1811 cachep->nodelists[node] =
1812 kmalloc_node(sizeof(struct kmem_list3),
1813 GFP_KERNEL, node);
1814 BUG_ON(!cachep->nodelists[node]);
1815 kmem_list3_init(cachep->nodelists[node]);
1816 }
1817 }
1818 }
1819 cachep->nodelists[numa_node_id()]->next_reap =
1820 jiffies + REAPTIMEOUT_LIST3 +
1821 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
1822
1823 cpu_cache_get(cachep)->avail = 0;
1824 cpu_cache_get(cachep)->limit = BOOT_CPUCACHE_ENTRIES;
1825 cpu_cache_get(cachep)->batchcount = 1;
1826 cpu_cache_get(cachep)->touched = 0;
1827 cachep->batchcount = 1;
1828 cachep->limit = BOOT_CPUCACHE_ENTRIES;
1829}
1830
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001831/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 * kmem_cache_create - Create a cache.
1833 * @name: A string which is used in /proc/slabinfo to identify this cache.
1834 * @size: The size of objects to be created in this cache.
1835 * @align: The required alignment for the objects.
1836 * @flags: SLAB flags
1837 * @ctor: A constructor for the objects.
1838 * @dtor: A destructor for the objects.
1839 *
1840 * Returns a ptr to the cache on success, NULL on failure.
1841 * Cannot be called within a int, but can be interrupted.
1842 * The @ctor is run when new pages are allocated by the cache
1843 * and the @dtor is run before the pages are handed back.
1844 *
1845 * @name must be valid until the cache is destroyed. This implies that
Andrew Mortona737b3e2006-03-22 00:08:11 -08001846 * the module calling this has to destroy the cache before getting unloaded.
1847 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848 * The flags are
1849 *
1850 * %SLAB_POISON - Poison the slab with a known test pattern (a5a5a5a5)
1851 * to catch references to uninitialised memory.
1852 *
1853 * %SLAB_RED_ZONE - Insert `Red' zones around the allocated memory to check
1854 * for buffer overruns.
1855 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 * %SLAB_HWCACHE_ALIGN - Align the objects in this cache to a hardware
1857 * cacheline. This can be beneficial if you're counting cycles as closely
1858 * as davem.
1859 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001860struct kmem_cache *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861kmem_cache_create (const char *name, size_t size, size_t align,
Andrew Mortona737b3e2006-03-22 00:08:11 -08001862 unsigned long flags,
1863 void (*ctor)(void*, struct kmem_cache *, unsigned long),
Pekka Enberg343e0d72006-02-01 03:05:50 -08001864 void (*dtor)(void*, struct kmem_cache *, unsigned long))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865{
1866 size_t left_over, slab_size, ralign;
Pekka Enberg343e0d72006-02-01 03:05:50 -08001867 struct kmem_cache *cachep = NULL;
Andrew Morton4f12bb42005-11-07 00:58:00 -08001868 struct list_head *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869
1870 /*
1871 * Sanity checks... these are all serious usage bugs.
1872 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08001873 if (!name || in_interrupt() || (size < BYTES_PER_WORD) ||
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001874 (size > (1 << MAX_OBJ_ORDER) * PAGE_SIZE) || (dtor && !ctor)) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08001875 printk(KERN_ERR "%s: Early error in slab %s\n", __FUNCTION__,
1876 name);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001877 BUG();
1878 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879
Ravikiran G Thirumalaif0188f42006-02-10 01:51:13 -08001880 /*
1881 * Prevent CPUs from coming and going.
1882 * lock_cpu_hotplug() nests outside cache_chain_mutex
1883 */
1884 lock_cpu_hotplug();
1885
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001886 mutex_lock(&cache_chain_mutex);
Andrew Morton4f12bb42005-11-07 00:58:00 -08001887
1888 list_for_each(p, &cache_chain) {
Pekka Enberg343e0d72006-02-01 03:05:50 -08001889 struct kmem_cache *pc = list_entry(p, struct kmem_cache, next);
Andrew Morton4f12bb42005-11-07 00:58:00 -08001890 mm_segment_t old_fs = get_fs();
1891 char tmp;
1892 int res;
1893
1894 /*
1895 * This happens when the module gets unloaded and doesn't
1896 * destroy its slab cache and no-one else reuses the vmalloc
1897 * area of the module. Print a warning.
1898 */
1899 set_fs(KERNEL_DS);
1900 res = __get_user(tmp, pc->name);
1901 set_fs(old_fs);
1902 if (res) {
1903 printk("SLAB: cache with size %d has lost its name\n",
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001904 pc->buffer_size);
Andrew Morton4f12bb42005-11-07 00:58:00 -08001905 continue;
1906 }
1907
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001908 if (!strcmp(pc->name, name)) {
Andrew Morton4f12bb42005-11-07 00:58:00 -08001909 printk("kmem_cache_create: duplicate cache %s\n", name);
1910 dump_stack();
1911 goto oops;
1912 }
1913 }
1914
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915#if DEBUG
1916 WARN_ON(strchr(name, ' ')); /* It confuses parsers */
1917 if ((flags & SLAB_DEBUG_INITIAL) && !ctor) {
1918 /* No constructor, but inital state check requested */
1919 printk(KERN_ERR "%s: No con, but init state check "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001920 "requested - %s\n", __FUNCTION__, name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 flags &= ~SLAB_DEBUG_INITIAL;
1922 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923#if FORCED_DEBUG
1924 /*
1925 * Enable redzoning and last user accounting, except for caches with
1926 * large objects, if the increased size would increase the object size
1927 * above the next power of two: caches with object sizes just above a
1928 * power of two have a significant amount of internal fragmentation.
1929 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08001930 if (size < 4096 || fls(size - 1) == fls(size-1 + 3 * BYTES_PER_WORD))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001931 flags |= SLAB_RED_ZONE | SLAB_STORE_USER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 if (!(flags & SLAB_DESTROY_BY_RCU))
1933 flags |= SLAB_POISON;
1934#endif
1935 if (flags & SLAB_DESTROY_BY_RCU)
1936 BUG_ON(flags & SLAB_POISON);
1937#endif
1938 if (flags & SLAB_DESTROY_BY_RCU)
1939 BUG_ON(dtor);
1940
1941 /*
Andrew Mortona737b3e2006-03-22 00:08:11 -08001942 * Always checks flags, a caller might be expecting debug support which
1943 * isn't available.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 */
1945 if (flags & ~CREATE_MASK)
1946 BUG();
1947
Andrew Mortona737b3e2006-03-22 00:08:11 -08001948 /*
1949 * Check that size is in terms of words. This is needed to avoid
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 * unaligned accesses for some archs when redzoning is used, and makes
1951 * sure any on-slab bufctl's are also correctly aligned.
1952 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001953 if (size & (BYTES_PER_WORD - 1)) {
1954 size += (BYTES_PER_WORD - 1);
1955 size &= ~(BYTES_PER_WORD - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 }
1957
Andrew Mortona737b3e2006-03-22 00:08:11 -08001958 /* calculate the final buffer alignment: */
1959
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 /* 1) arch recommendation: can be overridden for debug */
1961 if (flags & SLAB_HWCACHE_ALIGN) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08001962 /*
1963 * Default alignment: as specified by the arch code. Except if
1964 * an object is really small, then squeeze multiple objects into
1965 * one cacheline.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 */
1967 ralign = cache_line_size();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001968 while (size <= ralign / 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 ralign /= 2;
1970 } else {
1971 ralign = BYTES_PER_WORD;
1972 }
1973 /* 2) arch mandated alignment: disables debug if necessary */
1974 if (ralign < ARCH_SLAB_MINALIGN) {
1975 ralign = ARCH_SLAB_MINALIGN;
1976 if (ralign > BYTES_PER_WORD)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001977 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 }
1979 /* 3) caller mandated alignment: disables debug if necessary */
1980 if (ralign < align) {
1981 ralign = align;
1982 if (ralign > BYTES_PER_WORD)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001983 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 }
Andrew Mortona737b3e2006-03-22 00:08:11 -08001985 /*
1986 * 4) Store it. Note that the debug code below can reduce
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 * the alignment to BYTES_PER_WORD.
1988 */
1989 align = ralign;
1990
1991 /* Get cache's description obj. */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001992 cachep = kmem_cache_alloc(&cache_cache, SLAB_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 if (!cachep)
Andrew Morton4f12bb42005-11-07 00:58:00 -08001994 goto oops;
Pekka Enberg343e0d72006-02-01 03:05:50 -08001995 memset(cachep, 0, sizeof(struct kmem_cache));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996
1997#if DEBUG
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001998 cachep->obj_size = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999
2000 if (flags & SLAB_RED_ZONE) {
2001 /* redzoning only works with word aligned caches */
2002 align = BYTES_PER_WORD;
2003
2004 /* add space for red zone words */
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002005 cachep->obj_offset += BYTES_PER_WORD;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002006 size += 2 * BYTES_PER_WORD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 }
2008 if (flags & SLAB_STORE_USER) {
2009 /* user store requires word alignment and
2010 * one word storage behind the end of the real
2011 * object.
2012 */
2013 align = BYTES_PER_WORD;
2014 size += BYTES_PER_WORD;
2015 }
2016#if FORCED_DEBUG && defined(CONFIG_DEBUG_PAGEALLOC)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002017 if (size >= malloc_sizes[INDEX_L3 + 1].cs_size
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002018 && cachep->obj_size > cache_line_size() && size < PAGE_SIZE) {
2019 cachep->obj_offset += PAGE_SIZE - size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 size = PAGE_SIZE;
2021 }
2022#endif
2023#endif
2024
2025 /* Determine if the slab management is 'on' or 'off' slab. */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002026 if (size >= (PAGE_SIZE >> 3))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 /*
2028 * Size is large, assume best to place the slab management obj
2029 * off-slab (should allow better packing of objs).
2030 */
2031 flags |= CFLGS_OFF_SLAB;
2032
2033 size = ALIGN(size, align);
2034
Linus Torvaldsf78bb8a2006-03-08 10:33:05 -08002035 left_over = calculate_slab_order(cachep, size, align, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036
2037 if (!cachep->num) {
2038 printk("kmem_cache_create: couldn't create cache %s.\n", name);
2039 kmem_cache_free(&cache_cache, cachep);
2040 cachep = NULL;
Andrew Morton4f12bb42005-11-07 00:58:00 -08002041 goto oops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002043 slab_size = ALIGN(cachep->num * sizeof(kmem_bufctl_t)
2044 + sizeof(struct slab), align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045
2046 /*
2047 * If the slab has been placed off-slab, and we have enough space then
2048 * move it on-slab. This is at the expense of any extra colouring.
2049 */
2050 if (flags & CFLGS_OFF_SLAB && left_over >= slab_size) {
2051 flags &= ~CFLGS_OFF_SLAB;
2052 left_over -= slab_size;
2053 }
2054
2055 if (flags & CFLGS_OFF_SLAB) {
2056 /* really off slab. No need for manual alignment */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002057 slab_size =
2058 cachep->num * sizeof(kmem_bufctl_t) + sizeof(struct slab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 }
2060
2061 cachep->colour_off = cache_line_size();
2062 /* Offset must be a multiple of the alignment. */
2063 if (cachep->colour_off < align)
2064 cachep->colour_off = align;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002065 cachep->colour = left_over / cachep->colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 cachep->slab_size = slab_size;
2067 cachep->flags = flags;
2068 cachep->gfpflags = 0;
2069 if (flags & SLAB_CACHE_DMA)
2070 cachep->gfpflags |= GFP_DMA;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002071 cachep->buffer_size = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072
2073 if (flags & CFLGS_OFF_SLAB)
Victor Fuscob2d55072005-09-10 00:26:36 -07002074 cachep->slabp_cache = kmem_find_general_cachep(slab_size, 0u);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 cachep->ctor = ctor;
2076 cachep->dtor = dtor;
2077 cachep->name = name;
2078
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002080 setup_cpu_cache(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 /* cache setup completed, link it into the list */
2083 list_add(&cachep->next, &cache_chain);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002084oops:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 if (!cachep && (flags & SLAB_PANIC))
2086 panic("kmem_cache_create(): failed to create slab `%s'\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002087 name);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002088 mutex_unlock(&cache_chain_mutex);
Ravikiran G Thirumalaif0188f42006-02-10 01:51:13 -08002089 unlock_cpu_hotplug();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002090 return cachep;
2091}
2092EXPORT_SYMBOL(kmem_cache_create);
2093
2094#if DEBUG
2095static void check_irq_off(void)
2096{
2097 BUG_ON(!irqs_disabled());
2098}
2099
2100static void check_irq_on(void)
2101{
2102 BUG_ON(irqs_disabled());
2103}
2104
Pekka Enberg343e0d72006-02-01 03:05:50 -08002105static void check_spinlock_acquired(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106{
2107#ifdef CONFIG_SMP
2108 check_irq_off();
Christoph Lametere498be72005-09-09 13:03:32 -07002109 assert_spin_locked(&cachep->nodelists[numa_node_id()]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110#endif
2111}
Christoph Lametere498be72005-09-09 13:03:32 -07002112
Pekka Enberg343e0d72006-02-01 03:05:50 -08002113static void check_spinlock_acquired_node(struct kmem_cache *cachep, int node)
Christoph Lametere498be72005-09-09 13:03:32 -07002114{
2115#ifdef CONFIG_SMP
2116 check_irq_off();
2117 assert_spin_locked(&cachep->nodelists[node]->list_lock);
2118#endif
2119}
2120
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121#else
2122#define check_irq_off() do { } while(0)
2123#define check_irq_on() do { } while(0)
2124#define check_spinlock_acquired(x) do { } while(0)
Christoph Lametere498be72005-09-09 13:03:32 -07002125#define check_spinlock_acquired_node(x, y) do { } while(0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126#endif
2127
Christoph Lameteraab22072006-03-22 00:09:06 -08002128static void drain_array(struct kmem_cache *cachep, struct kmem_list3 *l3,
2129 struct array_cache *ac,
2130 int force, int node);
2131
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132static void do_drain(void *arg)
2133{
Andrew Mortona737b3e2006-03-22 00:08:11 -08002134 struct kmem_cache *cachep = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002135 struct array_cache *ac;
Christoph Lameterff694162005-09-22 21:44:02 -07002136 int node = numa_node_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137
2138 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002139 ac = cpu_cache_get(cachep);
Christoph Lameterff694162005-09-22 21:44:02 -07002140 spin_lock(&cachep->nodelists[node]->list_lock);
2141 free_block(cachep, ac->entry, ac->avail, node);
2142 spin_unlock(&cachep->nodelists[node]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 ac->avail = 0;
2144}
2145
Pekka Enberg343e0d72006-02-01 03:05:50 -08002146static void drain_cpu_caches(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147{
Christoph Lametere498be72005-09-09 13:03:32 -07002148 struct kmem_list3 *l3;
2149 int node;
2150
Andrew Mortona07fa392006-03-22 00:08:17 -08002151 on_each_cpu(do_drain, cachep, 1, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 check_irq_on();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002153 for_each_online_node(node) {
Christoph Lametere498be72005-09-09 13:03:32 -07002154 l3 = cachep->nodelists[node];
2155 if (l3) {
Christoph Lameteraab22072006-03-22 00:09:06 -08002156 drain_array(cachep, l3, l3->shared, 1, node);
Christoph Lametere498be72005-09-09 13:03:32 -07002157 if (l3->alien)
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08002158 drain_alien_cache(cachep, l3->alien);
Christoph Lametere498be72005-09-09 13:03:32 -07002159 }
2160 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161}
2162
Pekka Enberg343e0d72006-02-01 03:05:50 -08002163static int __node_shrink(struct kmem_cache *cachep, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164{
2165 struct slab *slabp;
Christoph Lametere498be72005-09-09 13:03:32 -07002166 struct kmem_list3 *l3 = cachep->nodelists[node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 int ret;
2168
Christoph Lametere498be72005-09-09 13:03:32 -07002169 for (;;) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 struct list_head *p;
2171
Christoph Lametere498be72005-09-09 13:03:32 -07002172 p = l3->slabs_free.prev;
2173 if (p == &l3->slabs_free)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 break;
2175
Christoph Lametere498be72005-09-09 13:03:32 -07002176 slabp = list_entry(l3->slabs_free.prev, struct slab, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177#if DEBUG
2178 if (slabp->inuse)
2179 BUG();
2180#endif
2181 list_del(&slabp->list);
2182
Christoph Lametere498be72005-09-09 13:03:32 -07002183 l3->free_objects -= cachep->num;
2184 spin_unlock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 slab_destroy(cachep, slabp);
Christoph Lametere498be72005-09-09 13:03:32 -07002186 spin_lock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002188 ret = !list_empty(&l3->slabs_full) || !list_empty(&l3->slabs_partial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 return ret;
2190}
2191
Pekka Enberg343e0d72006-02-01 03:05:50 -08002192static int __cache_shrink(struct kmem_cache *cachep)
Christoph Lametere498be72005-09-09 13:03:32 -07002193{
2194 int ret = 0, i = 0;
2195 struct kmem_list3 *l3;
2196
2197 drain_cpu_caches(cachep);
2198
2199 check_irq_on();
2200 for_each_online_node(i) {
2201 l3 = cachep->nodelists[i];
2202 if (l3) {
2203 spin_lock_irq(&l3->list_lock);
2204 ret += __node_shrink(cachep, i);
2205 spin_unlock_irq(&l3->list_lock);
2206 }
2207 }
2208 return (ret ? 1 : 0);
2209}
2210
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211/**
2212 * kmem_cache_shrink - Shrink a cache.
2213 * @cachep: The cache to shrink.
2214 *
2215 * Releases as many slabs as possible for a cache.
2216 * To help debugging, a zero exit status indicates all slabs were released.
2217 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002218int kmem_cache_shrink(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219{
2220 if (!cachep || in_interrupt())
2221 BUG();
2222
2223 return __cache_shrink(cachep);
2224}
2225EXPORT_SYMBOL(kmem_cache_shrink);
2226
2227/**
2228 * kmem_cache_destroy - delete a cache
2229 * @cachep: the cache to destroy
2230 *
Pekka Enberg343e0d72006-02-01 03:05:50 -08002231 * Remove a struct kmem_cache object from the slab cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 * Returns 0 on success.
2233 *
2234 * It is expected this function will be called by a module when it is
2235 * unloaded. This will remove the cache completely, and avoid a duplicate
2236 * cache being allocated each time a module is loaded and unloaded, if the
2237 * module doesn't have persistent in-kernel storage across loads and unloads.
2238 *
2239 * The cache must be empty before calling this function.
2240 *
2241 * The caller must guarantee that noone will allocate memory from the cache
2242 * during the kmem_cache_destroy().
2243 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002244int kmem_cache_destroy(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245{
2246 int i;
Christoph Lametere498be72005-09-09 13:03:32 -07002247 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248
2249 if (!cachep || in_interrupt())
2250 BUG();
2251
2252 /* Don't let CPUs to come and go */
2253 lock_cpu_hotplug();
2254
2255 /* Find the cache in the chain of caches. */
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002256 mutex_lock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 /*
2258 * the chain is never empty, cache_cache is never destroyed
2259 */
2260 list_del(&cachep->next);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002261 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262
2263 if (__cache_shrink(cachep)) {
2264 slab_error(cachep, "Can't free all objects");
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002265 mutex_lock(&cache_chain_mutex);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002266 list_add(&cachep->next, &cache_chain);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002267 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268 unlock_cpu_hotplug();
2269 return 1;
2270 }
2271
2272 if (unlikely(cachep->flags & SLAB_DESTROY_BY_RCU))
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07002273 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274
Christoph Lametere498be72005-09-09 13:03:32 -07002275 for_each_online_cpu(i)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002276 kfree(cachep->array[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002277
2278 /* NUMA: free the list3 structures */
Christoph Lametere498be72005-09-09 13:03:32 -07002279 for_each_online_node(i) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002280 l3 = cachep->nodelists[i];
2281 if (l3) {
Christoph Lametere498be72005-09-09 13:03:32 -07002282 kfree(l3->shared);
2283 free_alien_cache(l3->alien);
2284 kfree(l3);
2285 }
2286 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 kmem_cache_free(&cache_cache, cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 unlock_cpu_hotplug();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 return 0;
2290}
2291EXPORT_SYMBOL(kmem_cache_destroy);
2292
2293/* Get the memory for a slab management obj. */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002294static struct slab *alloc_slabmgmt(struct kmem_cache *cachep, void *objp,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002295 int colour_off, gfp_t local_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296{
2297 struct slab *slabp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002298
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 if (OFF_SLAB(cachep)) {
2300 /* Slab management obj is off-slab. */
2301 slabp = kmem_cache_alloc(cachep->slabp_cache, local_flags);
2302 if (!slabp)
2303 return NULL;
2304 } else {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002305 slabp = objp + colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 colour_off += cachep->slab_size;
2307 }
2308 slabp->inuse = 0;
2309 slabp->colouroff = colour_off;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002310 slabp->s_mem = objp + colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 return slabp;
2312}
2313
2314static inline kmem_bufctl_t *slab_bufctl(struct slab *slabp)
2315{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002316 return (kmem_bufctl_t *) (slabp + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317}
2318
Pekka Enberg343e0d72006-02-01 03:05:50 -08002319static void cache_init_objs(struct kmem_cache *cachep,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002320 struct slab *slabp, unsigned long ctor_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321{
2322 int i;
2323
2324 for (i = 0; i < cachep->num; i++) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002325 void *objp = index_to_obj(cachep, slabp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326#if DEBUG
2327 /* need to poison the objs? */
2328 if (cachep->flags & SLAB_POISON)
2329 poison_obj(cachep, objp, POISON_FREE);
2330 if (cachep->flags & SLAB_STORE_USER)
2331 *dbg_userword(cachep, objp) = NULL;
2332
2333 if (cachep->flags & SLAB_RED_ZONE) {
2334 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2335 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2336 }
2337 /*
Andrew Mortona737b3e2006-03-22 00:08:11 -08002338 * Constructors are not allowed to allocate memory from the same
2339 * cache which they are a constructor for. Otherwise, deadlock.
2340 * They must also be threaded.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 */
2342 if (cachep->ctor && !(cachep->flags & SLAB_POISON))
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002343 cachep->ctor(objp + obj_offset(cachep), cachep,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002344 ctor_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345
2346 if (cachep->flags & SLAB_RED_ZONE) {
2347 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
2348 slab_error(cachep, "constructor overwrote the"
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002349 " end of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
2351 slab_error(cachep, "constructor overwrote the"
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002352 " start of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353 }
Andrew Mortona737b3e2006-03-22 00:08:11 -08002354 if ((cachep->buffer_size % PAGE_SIZE) == 0 &&
2355 OFF_SLAB(cachep) && cachep->flags & SLAB_POISON)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002356 kernel_map_pages(virt_to_page(objp),
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002357 cachep->buffer_size / PAGE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358#else
2359 if (cachep->ctor)
2360 cachep->ctor(objp, cachep, ctor_flags);
2361#endif
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002362 slab_bufctl(slabp)[i] = i + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002364 slab_bufctl(slabp)[i - 1] = BUFCTL_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 slabp->free = 0;
2366}
2367
Pekka Enberg343e0d72006-02-01 03:05:50 -08002368static void kmem_flagcheck(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369{
Andrew Mortona737b3e2006-03-22 00:08:11 -08002370 if (flags & SLAB_DMA)
2371 BUG_ON(!(cachep->gfpflags & GFP_DMA));
2372 else
2373 BUG_ON(cachep->gfpflags & GFP_DMA);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374}
2375
Andrew Mortona737b3e2006-03-22 00:08:11 -08002376static void *slab_get_obj(struct kmem_cache *cachep, struct slab *slabp,
2377 int nodeid)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002378{
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002379 void *objp = index_to_obj(cachep, slabp, slabp->free);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002380 kmem_bufctl_t next;
2381
2382 slabp->inuse++;
2383 next = slab_bufctl(slabp)[slabp->free];
2384#if DEBUG
2385 slab_bufctl(slabp)[slabp->free] = BUFCTL_FREE;
2386 WARN_ON(slabp->nodeid != nodeid);
2387#endif
2388 slabp->free = next;
2389
2390 return objp;
2391}
2392
Andrew Mortona737b3e2006-03-22 00:08:11 -08002393static void slab_put_obj(struct kmem_cache *cachep, struct slab *slabp,
2394 void *objp, int nodeid)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002395{
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002396 unsigned int objnr = obj_to_index(cachep, slabp, objp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002397
2398#if DEBUG
2399 /* Verify that the slab belongs to the intended node */
2400 WARN_ON(slabp->nodeid != nodeid);
2401
2402 if (slab_bufctl(slabp)[objnr] != BUFCTL_FREE) {
2403 printk(KERN_ERR "slab: double free detected in cache "
Andrew Mortona737b3e2006-03-22 00:08:11 -08002404 "'%s', objp %p\n", cachep->name, objp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002405 BUG();
2406 }
2407#endif
2408 slab_bufctl(slabp)[objnr] = slabp->free;
2409 slabp->free = objnr;
2410 slabp->inuse--;
2411}
2412
Andrew Mortona737b3e2006-03-22 00:08:11 -08002413static void set_slab_attr(struct kmem_cache *cachep, struct slab *slabp,
2414 void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415{
2416 int i;
2417 struct page *page;
2418
2419 /* Nasty!!!!!! I hope this is OK. */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 page = virt_to_page(objp);
Nick Piggin84097512006-03-22 00:08:34 -08002421
2422 i = 1;
2423 if (likely(!PageCompound(page)))
2424 i <<= cachep->gfporder;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 do {
Pekka Enberg065d41c2005-11-13 16:06:46 -08002426 page_set_cache(page, cachep);
2427 page_set_slab(page, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428 page++;
2429 } while (--i);
2430}
2431
2432/*
2433 * Grow (by 1) the number of slabs within a cache. This is called by
2434 * kmem_cache_alloc() when there are no active objs left in a cache.
2435 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002436static int cache_grow(struct kmem_cache *cachep, gfp_t flags, int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002438 struct slab *slabp;
2439 void *objp;
2440 size_t offset;
2441 gfp_t local_flags;
2442 unsigned long ctor_flags;
Christoph Lametere498be72005-09-09 13:03:32 -07002443 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444
Andrew Mortona737b3e2006-03-22 00:08:11 -08002445 /*
2446 * Be lazy and only check for valid flags here, keeping it out of the
2447 * critical path in kmem_cache_alloc().
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002449 if (flags & ~(SLAB_DMA | SLAB_LEVEL_MASK | SLAB_NO_GROW))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450 BUG();
2451 if (flags & SLAB_NO_GROW)
2452 return 0;
2453
2454 ctor_flags = SLAB_CTOR_CONSTRUCTOR;
2455 local_flags = (flags & SLAB_LEVEL_MASK);
2456 if (!(local_flags & __GFP_WAIT))
2457 /*
2458 * Not allowed to sleep. Need to tell a constructor about
2459 * this - it might need to know...
2460 */
2461 ctor_flags |= SLAB_CTOR_ATOMIC;
2462
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002463 /* Take the l3 list lock to change the colour_next on this node */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464 check_irq_off();
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002465 l3 = cachep->nodelists[nodeid];
2466 spin_lock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467
2468 /* Get colour for the slab, and cal the next value. */
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002469 offset = l3->colour_next;
2470 l3->colour_next++;
2471 if (l3->colour_next >= cachep->colour)
2472 l3->colour_next = 0;
2473 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002475 offset *= cachep->colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002476
2477 if (local_flags & __GFP_WAIT)
2478 local_irq_enable();
2479
2480 /*
2481 * The test for missing atomic flag is performed here, rather than
2482 * the more obvious place, simply to reduce the critical path length
2483 * in kmem_cache_alloc(). If a caller is seriously mis-behaving they
2484 * will eventually be caught here (where it matters).
2485 */
2486 kmem_flagcheck(cachep, flags);
2487
Andrew Mortona737b3e2006-03-22 00:08:11 -08002488 /*
2489 * Get mem for the objs. Attempt to allocate a physical page from
2490 * 'nodeid'.
Christoph Lametere498be72005-09-09 13:03:32 -07002491 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002492 objp = kmem_getpages(cachep, flags, nodeid);
2493 if (!objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494 goto failed;
2495
2496 /* Get slab management. */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002497 slabp = alloc_slabmgmt(cachep, objp, offset, local_flags);
2498 if (!slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499 goto opps1;
2500
Christoph Lametere498be72005-09-09 13:03:32 -07002501 slabp->nodeid = nodeid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502 set_slab_attr(cachep, slabp, objp);
2503
2504 cache_init_objs(cachep, slabp, ctor_flags);
2505
2506 if (local_flags & __GFP_WAIT)
2507 local_irq_disable();
2508 check_irq_off();
Christoph Lametere498be72005-09-09 13:03:32 -07002509 spin_lock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510
2511 /* Make slab active. */
Christoph Lametere498be72005-09-09 13:03:32 -07002512 list_add_tail(&slabp->list, &(l3->slabs_free));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 STATS_INC_GROWN(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07002514 l3->free_objects += cachep->num;
2515 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 return 1;
Andrew Mortona737b3e2006-03-22 00:08:11 -08002517opps1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518 kmem_freepages(cachep, objp);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002519failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520 if (local_flags & __GFP_WAIT)
2521 local_irq_disable();
2522 return 0;
2523}
2524
2525#if DEBUG
2526
2527/*
2528 * Perform extra freeing checks:
2529 * - detect bad pointers.
2530 * - POISON/RED_ZONE checking
2531 * - destructor calls, for caches with POISON+dtor
2532 */
2533static void kfree_debugcheck(const void *objp)
2534{
2535 struct page *page;
2536
2537 if (!virt_addr_valid(objp)) {
2538 printk(KERN_ERR "kfree_debugcheck: out of range ptr %lxh.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002539 (unsigned long)objp);
2540 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 }
2542 page = virt_to_page(objp);
2543 if (!PageSlab(page)) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002544 printk(KERN_ERR "kfree_debugcheck: bad ptr %lxh.\n",
2545 (unsigned long)objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 BUG();
2547 }
2548}
2549
Pekka Enberg343e0d72006-02-01 03:05:50 -08002550static void *cache_free_debugcheck(struct kmem_cache *cachep, void *objp,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002551 void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552{
2553 struct page *page;
2554 unsigned int objnr;
2555 struct slab *slabp;
2556
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002557 objp -= obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558 kfree_debugcheck(objp);
2559 page = virt_to_page(objp);
2560
Pekka Enberg065d41c2005-11-13 16:06:46 -08002561 if (page_get_cache(page) != cachep) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002562 printk(KERN_ERR "mismatch in kmem_cache_free: expected "
2563 "cache %p, got %p\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002564 page_get_cache(page), cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 printk(KERN_ERR "%p is %s.\n", cachep, cachep->name);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002566 printk(KERN_ERR "%p is %s.\n", page_get_cache(page),
2567 page_get_cache(page)->name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 WARN_ON(1);
2569 }
Pekka Enberg065d41c2005-11-13 16:06:46 -08002570 slabp = page_get_slab(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571
2572 if (cachep->flags & SLAB_RED_ZONE) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002573 if (*dbg_redzone1(cachep, objp) != RED_ACTIVE ||
2574 *dbg_redzone2(cachep, objp) != RED_ACTIVE) {
2575 slab_error(cachep, "double free, or memory outside"
2576 " object was overwritten");
2577 printk(KERN_ERR "%p: redzone 1:0x%lx, "
2578 "redzone 2:0x%lx.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002579 objp, *dbg_redzone1(cachep, objp),
2580 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581 }
2582 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2583 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2584 }
2585 if (cachep->flags & SLAB_STORE_USER)
2586 *dbg_userword(cachep, objp) = caller;
2587
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002588 objnr = obj_to_index(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589
2590 BUG_ON(objnr >= cachep->num);
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002591 BUG_ON(objp != index_to_obj(cachep, slabp, objnr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592
2593 if (cachep->flags & SLAB_DEBUG_INITIAL) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002594 /*
2595 * Need to call the slab's constructor so the caller can
2596 * perform a verify of its state (debugging). Called without
2597 * the cache-lock held.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598 */
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002599 cachep->ctor(objp + obj_offset(cachep),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002600 cachep, SLAB_CTOR_CONSTRUCTOR | SLAB_CTOR_VERIFY);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 }
2602 if (cachep->flags & SLAB_POISON && cachep->dtor) {
2603 /* we want to cache poison the object,
2604 * call the destruction callback
2605 */
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002606 cachep->dtor(objp + obj_offset(cachep), cachep, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607 }
2608 if (cachep->flags & SLAB_POISON) {
2609#ifdef CONFIG_DEBUG_PAGEALLOC
Andrew Mortona737b3e2006-03-22 00:08:11 -08002610 if ((cachep->buffer_size % PAGE_SIZE)==0 && OFF_SLAB(cachep)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611 store_stackinfo(cachep, objp, (unsigned long)caller);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002612 kernel_map_pages(virt_to_page(objp),
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002613 cachep->buffer_size / PAGE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 } else {
2615 poison_obj(cachep, objp, POISON_FREE);
2616 }
2617#else
2618 poison_obj(cachep, objp, POISON_FREE);
2619#endif
2620 }
2621 return objp;
2622}
2623
Pekka Enberg343e0d72006-02-01 03:05:50 -08002624static void check_slabp(struct kmem_cache *cachep, struct slab *slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625{
2626 kmem_bufctl_t i;
2627 int entries = 0;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002628
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629 /* Check slab's freelist to see if this obj is there. */
2630 for (i = slabp->free; i != BUFCTL_END; i = slab_bufctl(slabp)[i]) {
2631 entries++;
2632 if (entries > cachep->num || i >= cachep->num)
2633 goto bad;
2634 }
2635 if (entries != cachep->num - slabp->inuse) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002636bad:
2637 printk(KERN_ERR "slab: Internal list corruption detected in "
2638 "cache '%s'(%d), slabp %p(%d). Hexdump:\n",
2639 cachep->name, cachep->num, slabp, slabp->inuse);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002640 for (i = 0;
Linus Torvalds264132b2006-03-06 12:10:07 -08002641 i < sizeof(*slabp) + cachep->num * sizeof(kmem_bufctl_t);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002642 i++) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002643 if (i % 16 == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644 printk("\n%03x:", i);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002645 printk(" %02x", ((unsigned char *)slabp)[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646 }
2647 printk("\n");
2648 BUG();
2649 }
2650}
2651#else
2652#define kfree_debugcheck(x) do { } while(0)
2653#define cache_free_debugcheck(x,objp,z) (objp)
2654#define check_slabp(x,y) do { } while(0)
2655#endif
2656
Pekka Enberg343e0d72006-02-01 03:05:50 -08002657static void *cache_alloc_refill(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658{
2659 int batchcount;
2660 struct kmem_list3 *l3;
2661 struct array_cache *ac;
2662
2663 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002664 ac = cpu_cache_get(cachep);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002665retry:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 batchcount = ac->batchcount;
2667 if (!ac->touched && batchcount > BATCHREFILL_LIMIT) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002668 /*
2669 * If there was little recent activity on this cache, then
2670 * perform only a partial refill. Otherwise we could generate
2671 * refill bouncing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672 */
2673 batchcount = BATCHREFILL_LIMIT;
2674 }
Christoph Lametere498be72005-09-09 13:03:32 -07002675 l3 = cachep->nodelists[numa_node_id()];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676
Christoph Lametere498be72005-09-09 13:03:32 -07002677 BUG_ON(ac->avail > 0 || !l3);
2678 spin_lock(&l3->list_lock);
2679
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680 if (l3->shared) {
2681 struct array_cache *shared_array = l3->shared;
2682 if (shared_array->avail) {
2683 if (batchcount > shared_array->avail)
2684 batchcount = shared_array->avail;
2685 shared_array->avail -= batchcount;
2686 ac->avail = batchcount;
Christoph Lametere498be72005-09-09 13:03:32 -07002687 memcpy(ac->entry,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002688 &(shared_array->entry[shared_array->avail]),
2689 sizeof(void *) * batchcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690 shared_array->touched = 1;
2691 goto alloc_done;
2692 }
2693 }
2694 while (batchcount > 0) {
2695 struct list_head *entry;
2696 struct slab *slabp;
2697 /* Get slab alloc is to come from. */
2698 entry = l3->slabs_partial.next;
2699 if (entry == &l3->slabs_partial) {
2700 l3->free_touched = 1;
2701 entry = l3->slabs_free.next;
2702 if (entry == &l3->slabs_free)
2703 goto must_grow;
2704 }
2705
2706 slabp = list_entry(entry, struct slab, list);
2707 check_slabp(cachep, slabp);
2708 check_spinlock_acquired(cachep);
2709 while (slabp->inuse < cachep->num && batchcount--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 STATS_INC_ALLOCED(cachep);
2711 STATS_INC_ACTIVE(cachep);
2712 STATS_SET_HIGH(cachep);
2713
Matthew Dobson78d382d2006-02-01 03:05:47 -08002714 ac->entry[ac->avail++] = slab_get_obj(cachep, slabp,
2715 numa_node_id());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 }
2717 check_slabp(cachep, slabp);
2718
2719 /* move slabp to correct slabp list: */
2720 list_del(&slabp->list);
2721 if (slabp->free == BUFCTL_END)
2722 list_add(&slabp->list, &l3->slabs_full);
2723 else
2724 list_add(&slabp->list, &l3->slabs_partial);
2725 }
2726
Andrew Mortona737b3e2006-03-22 00:08:11 -08002727must_grow:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728 l3->free_objects -= ac->avail;
Andrew Mortona737b3e2006-03-22 00:08:11 -08002729alloc_done:
Christoph Lametere498be72005-09-09 13:03:32 -07002730 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731
2732 if (unlikely(!ac->avail)) {
2733 int x;
Christoph Lametere498be72005-09-09 13:03:32 -07002734 x = cache_grow(cachep, flags, numa_node_id());
2735
Andrew Mortona737b3e2006-03-22 00:08:11 -08002736 /* cache_grow can reenable interrupts, then ac could change. */
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002737 ac = cpu_cache_get(cachep);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002738 if (!x && ac->avail == 0) /* no objects in sight? abort */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739 return NULL;
2740
Andrew Mortona737b3e2006-03-22 00:08:11 -08002741 if (!ac->avail) /* objects refilled by interrupt? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742 goto retry;
2743 }
2744 ac->touched = 1;
Christoph Lametere498be72005-09-09 13:03:32 -07002745 return ac->entry[--ac->avail];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746}
2747
Andrew Mortona737b3e2006-03-22 00:08:11 -08002748static inline void cache_alloc_debugcheck_before(struct kmem_cache *cachep,
2749 gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750{
2751 might_sleep_if(flags & __GFP_WAIT);
2752#if DEBUG
2753 kmem_flagcheck(cachep, flags);
2754#endif
2755}
2756
2757#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08002758static void *cache_alloc_debugcheck_after(struct kmem_cache *cachep,
2759 gfp_t flags, void *objp, void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002761 if (!objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762 return objp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002763 if (cachep->flags & SLAB_POISON) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764#ifdef CONFIG_DEBUG_PAGEALLOC
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002765 if ((cachep->buffer_size % PAGE_SIZE) == 0 && OFF_SLAB(cachep))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002766 kernel_map_pages(virt_to_page(objp),
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002767 cachep->buffer_size / PAGE_SIZE, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768 else
2769 check_poison_obj(cachep, objp);
2770#else
2771 check_poison_obj(cachep, objp);
2772#endif
2773 poison_obj(cachep, objp, POISON_INUSE);
2774 }
2775 if (cachep->flags & SLAB_STORE_USER)
2776 *dbg_userword(cachep, objp) = caller;
2777
2778 if (cachep->flags & SLAB_RED_ZONE) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002779 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE ||
2780 *dbg_redzone2(cachep, objp) != RED_INACTIVE) {
2781 slab_error(cachep, "double free, or memory outside"
2782 " object was overwritten");
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002783 printk(KERN_ERR
Andrew Mortona737b3e2006-03-22 00:08:11 -08002784 "%p: redzone 1:0x%lx, redzone 2:0x%lx\n",
2785 objp, *dbg_redzone1(cachep, objp),
2786 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 }
2788 *dbg_redzone1(cachep, objp) = RED_ACTIVE;
2789 *dbg_redzone2(cachep, objp) = RED_ACTIVE;
2790 }
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002791 objp += obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792 if (cachep->ctor && cachep->flags & SLAB_POISON) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002793 unsigned long ctor_flags = SLAB_CTOR_CONSTRUCTOR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794
2795 if (!(flags & __GFP_WAIT))
2796 ctor_flags |= SLAB_CTOR_ATOMIC;
2797
2798 cachep->ctor(objp, cachep, ctor_flags);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002799 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800 return objp;
2801}
2802#else
2803#define cache_alloc_debugcheck_after(a,b,objp,d) (objp)
2804#endif
2805
Pekka Enberg343e0d72006-02-01 03:05:50 -08002806static inline void *____cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002808 void *objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809 struct array_cache *ac;
2810
Christoph Lameterdc85da12006-01-18 17:42:36 -08002811#ifdef CONFIG_NUMA
Paul Jacksonc61afb12006-03-24 03:16:08 -08002812 if (unlikely(current->flags & (PF_SPREAD_PAGE | PF_SPREAD_SLAB |
2813 PF_MEMPOLICY))) {
2814 objp = alternate_node_alloc(cachep, flags);
2815 if (objp != NULL)
2816 return objp;
Paul Jackson101a5002006-03-24 03:16:07 -08002817 }
Christoph Lameterdc85da12006-01-18 17:42:36 -08002818#endif
2819
Alok N Kataria5c382302005-09-27 21:45:46 -07002820 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002821 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822 if (likely(ac->avail)) {
2823 STATS_INC_ALLOCHIT(cachep);
2824 ac->touched = 1;
Christoph Lametere498be72005-09-09 13:03:32 -07002825 objp = ac->entry[--ac->avail];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826 } else {
2827 STATS_INC_ALLOCMISS(cachep);
2828 objp = cache_alloc_refill(cachep, flags);
2829 }
Alok N Kataria5c382302005-09-27 21:45:46 -07002830 return objp;
2831}
2832
Andrew Mortona737b3e2006-03-22 00:08:11 -08002833static __always_inline void *__cache_alloc(struct kmem_cache *cachep,
2834 gfp_t flags, void *caller)
Alok N Kataria5c382302005-09-27 21:45:46 -07002835{
2836 unsigned long save_flags;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002837 void *objp;
Alok N Kataria5c382302005-09-27 21:45:46 -07002838
2839 cache_alloc_debugcheck_before(cachep, flags);
2840
2841 local_irq_save(save_flags);
2842 objp = ____cache_alloc(cachep, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843 local_irq_restore(save_flags);
Eric Dumazet34342e82005-09-03 15:55:06 -07002844 objp = cache_alloc_debugcheck_after(cachep, flags, objp,
Pekka Enberg7fd6b142006-02-01 03:05:52 -08002845 caller);
Eric Dumazet34342e82005-09-03 15:55:06 -07002846 prefetchw(objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847 return objp;
2848}
2849
Christoph Lametere498be72005-09-09 13:03:32 -07002850#ifdef CONFIG_NUMA
2851/*
Paul Jacksonc61afb12006-03-24 03:16:08 -08002852 * Try allocating on another node if PF_SPREAD_PAGE|PF_SPREAD_SLAB|PF_MEMPOLICY.
2853 *
2854 * If we are in_interrupt, then process context, including cpusets and
2855 * mempolicy, may not apply and should not be used for allocation policy.
2856 */
2857static void *alternate_node_alloc(struct kmem_cache *cachep, gfp_t flags)
2858{
2859 int nid_alloc, nid_here;
2860
2861 if (in_interrupt())
2862 return NULL;
2863 nid_alloc = nid_here = numa_node_id();
2864 if (cpuset_do_slab_mem_spread() && (cachep->flags & SLAB_MEM_SPREAD))
2865 nid_alloc = cpuset_mem_spread_node();
2866 else if (current->mempolicy)
2867 nid_alloc = slab_node(current->mempolicy);
2868 if (nid_alloc != nid_here)
2869 return __cache_alloc_node(cachep, flags, nid_alloc);
2870 return NULL;
2871}
2872
2873/*
Christoph Lametere498be72005-09-09 13:03:32 -07002874 * A interface to enable slab creation on nodeid
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002876static void *__cache_alloc_node(struct kmem_cache *cachep, gfp_t flags,
2877 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07002878{
2879 struct list_head *entry;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002880 struct slab *slabp;
2881 struct kmem_list3 *l3;
2882 void *obj;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002883 int x;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002885 l3 = cachep->nodelists[nodeid];
2886 BUG_ON(!l3);
Christoph Lametere498be72005-09-09 13:03:32 -07002887
Andrew Mortona737b3e2006-03-22 00:08:11 -08002888retry:
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08002889 check_irq_off();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002890 spin_lock(&l3->list_lock);
2891 entry = l3->slabs_partial.next;
2892 if (entry == &l3->slabs_partial) {
2893 l3->free_touched = 1;
2894 entry = l3->slabs_free.next;
2895 if (entry == &l3->slabs_free)
2896 goto must_grow;
2897 }
Christoph Lametere498be72005-09-09 13:03:32 -07002898
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002899 slabp = list_entry(entry, struct slab, list);
2900 check_spinlock_acquired_node(cachep, nodeid);
2901 check_slabp(cachep, slabp);
Christoph Lametere498be72005-09-09 13:03:32 -07002902
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002903 STATS_INC_NODEALLOCS(cachep);
2904 STATS_INC_ACTIVE(cachep);
2905 STATS_SET_HIGH(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07002906
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002907 BUG_ON(slabp->inuse == cachep->num);
Christoph Lametere498be72005-09-09 13:03:32 -07002908
Matthew Dobson78d382d2006-02-01 03:05:47 -08002909 obj = slab_get_obj(cachep, slabp, nodeid);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002910 check_slabp(cachep, slabp);
2911 l3->free_objects--;
2912 /* move slabp to correct slabp list: */
2913 list_del(&slabp->list);
Christoph Lametere498be72005-09-09 13:03:32 -07002914
Andrew Mortona737b3e2006-03-22 00:08:11 -08002915 if (slabp->free == BUFCTL_END)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002916 list_add(&slabp->list, &l3->slabs_full);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002917 else
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002918 list_add(&slabp->list, &l3->slabs_partial);
Christoph Lametere498be72005-09-09 13:03:32 -07002919
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002920 spin_unlock(&l3->list_lock);
2921 goto done;
Christoph Lametere498be72005-09-09 13:03:32 -07002922
Andrew Mortona737b3e2006-03-22 00:08:11 -08002923must_grow:
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002924 spin_unlock(&l3->list_lock);
2925 x = cache_grow(cachep, flags, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07002926
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002927 if (!x)
2928 return NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07002929
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002930 goto retry;
Andrew Mortona737b3e2006-03-22 00:08:11 -08002931done:
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002932 return obj;
Christoph Lametere498be72005-09-09 13:03:32 -07002933}
2934#endif
2935
2936/*
2937 * Caller needs to acquire correct kmem_list's list_lock
2938 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002939static void free_block(struct kmem_cache *cachep, void **objpp, int nr_objects,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002940 int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941{
2942 int i;
Christoph Lametere498be72005-09-09 13:03:32 -07002943 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944
2945 for (i = 0; i < nr_objects; i++) {
2946 void *objp = objpp[i];
2947 struct slab *slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08002949 slabp = virt_to_slab(objp);
Christoph Lameterff694162005-09-22 21:44:02 -07002950 l3 = cachep->nodelists[node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951 list_del(&slabp->list);
Christoph Lameterff694162005-09-22 21:44:02 -07002952 check_spinlock_acquired_node(cachep, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953 check_slabp(cachep, slabp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002954 slab_put_obj(cachep, slabp, objp, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955 STATS_DEC_ACTIVE(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07002956 l3->free_objects++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957 check_slabp(cachep, slabp);
2958
2959 /* fixup slab chains */
2960 if (slabp->inuse == 0) {
Christoph Lametere498be72005-09-09 13:03:32 -07002961 if (l3->free_objects > l3->free_limit) {
2962 l3->free_objects -= cachep->num;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963 slab_destroy(cachep, slabp);
2964 } else {
Christoph Lametere498be72005-09-09 13:03:32 -07002965 list_add(&slabp->list, &l3->slabs_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966 }
2967 } else {
2968 /* Unconditionally move a slab to the end of the
2969 * partial list on free - maximum time for the
2970 * other objects to be freed, too.
2971 */
Christoph Lametere498be72005-09-09 13:03:32 -07002972 list_add_tail(&slabp->list, &l3->slabs_partial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973 }
2974 }
2975}
2976
Pekka Enberg343e0d72006-02-01 03:05:50 -08002977static void cache_flusharray(struct kmem_cache *cachep, struct array_cache *ac)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978{
2979 int batchcount;
Christoph Lametere498be72005-09-09 13:03:32 -07002980 struct kmem_list3 *l3;
Christoph Lameterff694162005-09-22 21:44:02 -07002981 int node = numa_node_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982
2983 batchcount = ac->batchcount;
2984#if DEBUG
2985 BUG_ON(!batchcount || batchcount > ac->avail);
2986#endif
2987 check_irq_off();
Christoph Lameterff694162005-09-22 21:44:02 -07002988 l3 = cachep->nodelists[node];
Christoph Lametere498be72005-09-09 13:03:32 -07002989 spin_lock(&l3->list_lock);
2990 if (l3->shared) {
2991 struct array_cache *shared_array = l3->shared;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002992 int max = shared_array->limit - shared_array->avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993 if (max) {
2994 if (batchcount > max)
2995 batchcount = max;
Christoph Lametere498be72005-09-09 13:03:32 -07002996 memcpy(&(shared_array->entry[shared_array->avail]),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002997 ac->entry, sizeof(void *) * batchcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998 shared_array->avail += batchcount;
2999 goto free_done;
3000 }
3001 }
3002
Christoph Lameterff694162005-09-22 21:44:02 -07003003 free_block(cachep, ac->entry, batchcount, node);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003004free_done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005#if STATS
3006 {
3007 int i = 0;
3008 struct list_head *p;
3009
Christoph Lametere498be72005-09-09 13:03:32 -07003010 p = l3->slabs_free.next;
3011 while (p != &(l3->slabs_free)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012 struct slab *slabp;
3013
3014 slabp = list_entry(p, struct slab, list);
3015 BUG_ON(slabp->inuse);
3016
3017 i++;
3018 p = p->next;
3019 }
3020 STATS_SET_FREEABLE(cachep, i);
3021 }
3022#endif
Christoph Lametere498be72005-09-09 13:03:32 -07003023 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024 ac->avail -= batchcount;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003025 memmove(ac->entry, &(ac->entry[batchcount]), sizeof(void *)*ac->avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026}
3027
3028/*
Andrew Mortona737b3e2006-03-22 00:08:11 -08003029 * Release an obj back to its cache. If the obj has a constructed state, it must
3030 * be in this state _before_ it is released. Called with disabled ints.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003032static inline void __cache_free(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033{
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003034 struct array_cache *ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035
3036 check_irq_off();
3037 objp = cache_free_debugcheck(cachep, objp, __builtin_return_address(0));
3038
Christoph Lametere498be72005-09-09 13:03:32 -07003039 /* Make sure we are not freeing a object from another
3040 * node to the array cache on this cpu.
3041 */
3042#ifdef CONFIG_NUMA
3043 {
3044 struct slab *slabp;
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08003045 slabp = virt_to_slab(objp);
Christoph Lametere498be72005-09-09 13:03:32 -07003046 if (unlikely(slabp->nodeid != numa_node_id())) {
3047 struct array_cache *alien = NULL;
3048 int nodeid = slabp->nodeid;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003049 struct kmem_list3 *l3;
Christoph Lametere498be72005-09-09 13:03:32 -07003050
Andrew Mortona737b3e2006-03-22 00:08:11 -08003051 l3 = cachep->nodelists[numa_node_id()];
Christoph Lametere498be72005-09-09 13:03:32 -07003052 STATS_INC_NODEFREES(cachep);
3053 if (l3->alien && l3->alien[nodeid]) {
3054 alien = l3->alien[nodeid];
3055 spin_lock(&alien->lock);
3056 if (unlikely(alien->avail == alien->limit))
3057 __drain_alien_cache(cachep,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003058 alien, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07003059 alien->entry[alien->avail++] = objp;
3060 spin_unlock(&alien->lock);
3061 } else {
3062 spin_lock(&(cachep->nodelists[nodeid])->
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003063 list_lock);
Christoph Lameterff694162005-09-22 21:44:02 -07003064 free_block(cachep, &objp, 1, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07003065 spin_unlock(&(cachep->nodelists[nodeid])->
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003066 list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07003067 }
3068 return;
3069 }
3070 }
3071#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072 if (likely(ac->avail < ac->limit)) {
3073 STATS_INC_FREEHIT(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003074 ac->entry[ac->avail++] = objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075 return;
3076 } else {
3077 STATS_INC_FREEMISS(cachep);
3078 cache_flusharray(cachep, ac);
Christoph Lametere498be72005-09-09 13:03:32 -07003079 ac->entry[ac->avail++] = objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003080 }
3081}
3082
3083/**
3084 * kmem_cache_alloc - Allocate an object
3085 * @cachep: The cache to allocate from.
3086 * @flags: See kmalloc().
3087 *
3088 * Allocate an object from this cache. The flags are only relevant
3089 * if the cache has no available objects.
3090 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003091void *kmem_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092{
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003093 return __cache_alloc(cachep, flags, __builtin_return_address(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094}
3095EXPORT_SYMBOL(kmem_cache_alloc);
3096
3097/**
3098 * kmem_ptr_validate - check if an untrusted pointer might
3099 * be a slab entry.
3100 * @cachep: the cache we're checking against
3101 * @ptr: pointer to validate
3102 *
3103 * This verifies that the untrusted pointer looks sane:
3104 * it is _not_ a guarantee that the pointer is actually
3105 * part of the slab cache in question, but it at least
3106 * validates that the pointer can be dereferenced and
3107 * looks half-way sane.
3108 *
3109 * Currently only used for dentry validation.
3110 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003111int fastcall kmem_ptr_validate(struct kmem_cache *cachep, void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003113 unsigned long addr = (unsigned long)ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114 unsigned long min_addr = PAGE_OFFSET;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003115 unsigned long align_mask = BYTES_PER_WORD - 1;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003116 unsigned long size = cachep->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117 struct page *page;
3118
3119 if (unlikely(addr < min_addr))
3120 goto out;
3121 if (unlikely(addr > (unsigned long)high_memory - size))
3122 goto out;
3123 if (unlikely(addr & align_mask))
3124 goto out;
3125 if (unlikely(!kern_addr_valid(addr)))
3126 goto out;
3127 if (unlikely(!kern_addr_valid(addr + size - 1)))
3128 goto out;
3129 page = virt_to_page(ptr);
3130 if (unlikely(!PageSlab(page)))
3131 goto out;
Pekka Enberg065d41c2005-11-13 16:06:46 -08003132 if (unlikely(page_get_cache(page) != cachep))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133 goto out;
3134 return 1;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003135out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003136 return 0;
3137}
3138
3139#ifdef CONFIG_NUMA
3140/**
3141 * kmem_cache_alloc_node - Allocate an object on the specified node
3142 * @cachep: The cache to allocate from.
3143 * @flags: See kmalloc().
3144 * @nodeid: node number of the target node.
3145 *
3146 * Identical to kmem_cache_alloc, except that this function is slow
3147 * and can sleep. And it will allocate memory on the given node, which
3148 * can improve the performance for cpu bound structures.
Christoph Lametere498be72005-09-09 13:03:32 -07003149 * New and improved: it will now make sure that the object gets
3150 * put on the correct node list so that there is no false sharing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003152void *kmem_cache_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153{
Christoph Lametere498be72005-09-09 13:03:32 -07003154 unsigned long save_flags;
3155 void *ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003156
Christoph Lametere498be72005-09-09 13:03:32 -07003157 cache_alloc_debugcheck_before(cachep, flags);
3158 local_irq_save(save_flags);
Christoph Lameter18f820f2006-02-01 03:05:43 -08003159
3160 if (nodeid == -1 || nodeid == numa_node_id() ||
Andrew Mortona737b3e2006-03-22 00:08:11 -08003161 !cachep->nodelists[nodeid])
Alok N Kataria5c382302005-09-27 21:45:46 -07003162 ptr = ____cache_alloc(cachep, flags);
3163 else
3164 ptr = __cache_alloc_node(cachep, flags, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07003165 local_irq_restore(save_flags);
Christoph Lameter18f820f2006-02-01 03:05:43 -08003166
3167 ptr = cache_alloc_debugcheck_after(cachep, flags, ptr,
3168 __builtin_return_address(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169
Christoph Lametere498be72005-09-09 13:03:32 -07003170 return ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003171}
3172EXPORT_SYMBOL(kmem_cache_alloc_node);
3173
Al Virodd0fc662005-10-07 07:46:04 +01003174void *kmalloc_node(size_t size, gfp_t flags, int node)
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003175{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003176 struct kmem_cache *cachep;
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003177
3178 cachep = kmem_find_general_cachep(size, flags);
3179 if (unlikely(cachep == NULL))
3180 return NULL;
3181 return kmem_cache_alloc_node(cachep, flags, node);
3182}
3183EXPORT_SYMBOL(kmalloc_node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184#endif
3185
3186/**
3187 * kmalloc - allocate memory
3188 * @size: how many bytes of memory are required.
3189 * @flags: the type of memory to allocate.
Randy Dunlap911851e2006-03-22 00:08:14 -08003190 * @caller: function caller for debug tracking of the caller
Linus Torvalds1da177e2005-04-16 15:20:36 -07003191 *
3192 * kmalloc is the normal method of allocating memory
3193 * in the kernel.
3194 *
3195 * The @flags argument may be one of:
3196 *
3197 * %GFP_USER - Allocate memory on behalf of user. May sleep.
3198 *
3199 * %GFP_KERNEL - Allocate normal kernel ram. May sleep.
3200 *
3201 * %GFP_ATOMIC - Allocation will not sleep. Use inside interrupt handlers.
3202 *
3203 * Additionally, the %GFP_DMA flag may be set to indicate the memory
3204 * must be suitable for DMA. This can mean different things on different
3205 * platforms. For example, on i386, it means that the memory must come
3206 * from the first 16MB.
3207 */
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003208static __always_inline void *__do_kmalloc(size_t size, gfp_t flags,
3209 void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003211 struct kmem_cache *cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003212
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003213 /* If you want to save a few bytes .text space: replace
3214 * __ with kmem_.
3215 * Then kmalloc uses the uninlined functions instead of the inline
3216 * functions.
3217 */
3218 cachep = __find_general_cachep(size, flags);
Andrew Mortondbdb9042005-09-23 13:24:10 -07003219 if (unlikely(cachep == NULL))
3220 return NULL;
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003221 return __cache_alloc(cachep, flags, caller);
3222}
3223
3224#ifndef CONFIG_DEBUG_SLAB
3225
3226void *__kmalloc(size_t size, gfp_t flags)
3227{
3228 return __do_kmalloc(size, flags, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003229}
3230EXPORT_SYMBOL(__kmalloc);
3231
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003232#else
3233
3234void *__kmalloc_track_caller(size_t size, gfp_t flags, void *caller)
3235{
3236 return __do_kmalloc(size, flags, caller);
3237}
3238EXPORT_SYMBOL(__kmalloc_track_caller);
3239
3240#endif
3241
Linus Torvalds1da177e2005-04-16 15:20:36 -07003242#ifdef CONFIG_SMP
3243/**
3244 * __alloc_percpu - allocate one copy of the object for every present
3245 * cpu in the system, zeroing them.
3246 * Objects should be dereferenced using the per_cpu_ptr macro only.
3247 *
3248 * @size: how many bytes of memory are required.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003249 */
Pekka Enbergf9f75002006-01-08 01:00:33 -08003250void *__alloc_percpu(size_t size)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003251{
3252 int i;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003253 struct percpu_data *pdata = kmalloc(sizeof(*pdata), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254
3255 if (!pdata)
3256 return NULL;
3257
Christoph Lametere498be72005-09-09 13:03:32 -07003258 /*
3259 * Cannot use for_each_online_cpu since a cpu may come online
3260 * and we have no way of figuring out how to fix the array
3261 * that we have allocated then....
3262 */
3263 for_each_cpu(i) {
3264 int node = cpu_to_node(i);
3265
3266 if (node_online(node))
3267 pdata->ptrs[i] = kmalloc_node(size, GFP_KERNEL, node);
3268 else
3269 pdata->ptrs[i] = kmalloc(size, GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003270
3271 if (!pdata->ptrs[i])
3272 goto unwind_oom;
3273 memset(pdata->ptrs[i], 0, size);
3274 }
3275
3276 /* Catch derefs w/o wrappers */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003277 return (void *)(~(unsigned long)pdata);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278
Andrew Mortona737b3e2006-03-22 00:08:11 -08003279unwind_oom:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280 while (--i >= 0) {
3281 if (!cpu_possible(i))
3282 continue;
3283 kfree(pdata->ptrs[i]);
3284 }
3285 kfree(pdata);
3286 return NULL;
3287}
3288EXPORT_SYMBOL(__alloc_percpu);
3289#endif
3290
3291/**
3292 * kmem_cache_free - Deallocate an object
3293 * @cachep: The cache the allocation was from.
3294 * @objp: The previously allocated object.
3295 *
3296 * Free an object which was previously allocated from this
3297 * cache.
3298 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003299void kmem_cache_free(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300{
3301 unsigned long flags;
3302
3303 local_irq_save(flags);
3304 __cache_free(cachep, objp);
3305 local_irq_restore(flags);
3306}
3307EXPORT_SYMBOL(kmem_cache_free);
3308
3309/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310 * kfree - free previously allocated memory
3311 * @objp: pointer returned by kmalloc.
3312 *
Pekka Enberg80e93ef2005-09-09 13:10:16 -07003313 * If @objp is NULL, no operation is performed.
3314 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315 * Don't free memory not originally allocated by kmalloc()
3316 * or you will run into trouble.
3317 */
3318void kfree(const void *objp)
3319{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003320 struct kmem_cache *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321 unsigned long flags;
3322
3323 if (unlikely(!objp))
3324 return;
3325 local_irq_save(flags);
3326 kfree_debugcheck(objp);
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08003327 c = virt_to_cache(objp);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003328 mutex_debug_check_no_locks_freed(objp, obj_size(c));
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003329 __cache_free(c, (void *)objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330 local_irq_restore(flags);
3331}
3332EXPORT_SYMBOL(kfree);
3333
3334#ifdef CONFIG_SMP
3335/**
3336 * free_percpu - free previously allocated percpu memory
3337 * @objp: pointer returned by alloc_percpu.
3338 *
3339 * Don't free memory not originally allocated by alloc_percpu()
3340 * The complemented objp is to check for that.
3341 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003342void free_percpu(const void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343{
3344 int i;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003345 struct percpu_data *p = (struct percpu_data *)(~(unsigned long)objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346
Christoph Lametere498be72005-09-09 13:03:32 -07003347 /*
3348 * We allocate for all cpus so we cannot use for online cpu here.
3349 */
3350 for_each_cpu(i)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003351 kfree(p->ptrs[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003352 kfree(p);
3353}
3354EXPORT_SYMBOL(free_percpu);
3355#endif
3356
Pekka Enberg343e0d72006-02-01 03:05:50 -08003357unsigned int kmem_cache_size(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003358{
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003359 return obj_size(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003360}
3361EXPORT_SYMBOL(kmem_cache_size);
3362
Pekka Enberg343e0d72006-02-01 03:05:50 -08003363const char *kmem_cache_name(struct kmem_cache *cachep)
Arnaldo Carvalho de Melo19449722005-06-18 22:46:19 -07003364{
3365 return cachep->name;
3366}
3367EXPORT_SYMBOL_GPL(kmem_cache_name);
3368
Christoph Lametere498be72005-09-09 13:03:32 -07003369/*
3370 * This initializes kmem_list3 for all nodes.
3371 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003372static int alloc_kmemlist(struct kmem_cache *cachep)
Christoph Lametere498be72005-09-09 13:03:32 -07003373{
3374 int node;
3375 struct kmem_list3 *l3;
3376 int err = 0;
3377
3378 for_each_online_node(node) {
3379 struct array_cache *nc = NULL, *new;
3380 struct array_cache **new_alien = NULL;
3381#ifdef CONFIG_NUMA
Andrew Mortona737b3e2006-03-22 00:08:11 -08003382 new_alien = alloc_alien_cache(node, cachep->limit);
3383 if (!new_alien)
Christoph Lametere498be72005-09-09 13:03:32 -07003384 goto fail;
3385#endif
Andrew Mortona737b3e2006-03-22 00:08:11 -08003386 new = alloc_arraycache(node, cachep->shared*cachep->batchcount,
3387 0xbaadf00d);
3388 if (!new)
Christoph Lametere498be72005-09-09 13:03:32 -07003389 goto fail;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003390 l3 = cachep->nodelists[node];
3391 if (l3) {
Christoph Lametere498be72005-09-09 13:03:32 -07003392 spin_lock_irq(&l3->list_lock);
3393
Andrew Mortona737b3e2006-03-22 00:08:11 -08003394 nc = cachep->nodelists[node]->shared;
3395 if (nc)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003396 free_block(cachep, nc->entry, nc->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -07003397
3398 l3->shared = new;
3399 if (!cachep->nodelists[node]->alien) {
3400 l3->alien = new_alien;
3401 new_alien = NULL;
3402 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003403 l3->free_limit = (1 + nr_cpus_node(node)) *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003404 cachep->batchcount + cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07003405 spin_unlock_irq(&l3->list_lock);
3406 kfree(nc);
3407 free_alien_cache(new_alien);
3408 continue;
3409 }
Andrew Mortona737b3e2006-03-22 00:08:11 -08003410 l3 = kmalloc_node(sizeof(struct kmem_list3), GFP_KERNEL, node);
3411 if (!l3)
Christoph Lametere498be72005-09-09 13:03:32 -07003412 goto fail;
3413
3414 kmem_list3_init(l3);
3415 l3->next_reap = jiffies + REAPTIMEOUT_LIST3 +
Andrew Mortona737b3e2006-03-22 00:08:11 -08003416 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
Christoph Lametere498be72005-09-09 13:03:32 -07003417 l3->shared = new;
3418 l3->alien = new_alien;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003419 l3->free_limit = (1 + nr_cpus_node(node)) *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003420 cachep->batchcount + cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07003421 cachep->nodelists[node] = l3;
3422 }
3423 return err;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003424fail:
Christoph Lametere498be72005-09-09 13:03:32 -07003425 err = -ENOMEM;
3426 return err;
3427}
3428
Linus Torvalds1da177e2005-04-16 15:20:36 -07003429struct ccupdate_struct {
Pekka Enberg343e0d72006-02-01 03:05:50 -08003430 struct kmem_cache *cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431 struct array_cache *new[NR_CPUS];
3432};
3433
3434static void do_ccupdate_local(void *info)
3435{
Andrew Mortona737b3e2006-03-22 00:08:11 -08003436 struct ccupdate_struct *new = info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437 struct array_cache *old;
3438
3439 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003440 old = cpu_cache_get(new->cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003441
Linus Torvalds1da177e2005-04-16 15:20:36 -07003442 new->cachep->array[smp_processor_id()] = new->new[smp_processor_id()];
3443 new->new[smp_processor_id()] = old;
3444}
3445
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -08003446/* Always called with the cache_chain_mutex held */
Andrew Mortona737b3e2006-03-22 00:08:11 -08003447static int do_tune_cpucache(struct kmem_cache *cachep, int limit,
3448 int batchcount, int shared)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449{
3450 struct ccupdate_struct new;
Christoph Lametere498be72005-09-09 13:03:32 -07003451 int i, err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003453 memset(&new.new, 0, sizeof(new.new));
Christoph Lametere498be72005-09-09 13:03:32 -07003454 for_each_online_cpu(i) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08003455 new.new[i] = alloc_arraycache(cpu_to_node(i), limit,
3456 batchcount);
Christoph Lametere498be72005-09-09 13:03:32 -07003457 if (!new.new[i]) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003458 for (i--; i >= 0; i--)
3459 kfree(new.new[i]);
Christoph Lametere498be72005-09-09 13:03:32 -07003460 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003461 }
3462 }
3463 new.cachep = cachep;
3464
Andrew Mortona07fa392006-03-22 00:08:17 -08003465 on_each_cpu(do_ccupdate_local, (void *)&new, 1, 1);
Christoph Lametere498be72005-09-09 13:03:32 -07003466
Linus Torvalds1da177e2005-04-16 15:20:36 -07003467 check_irq_on();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468 cachep->batchcount = batchcount;
3469 cachep->limit = limit;
Christoph Lametere498be72005-09-09 13:03:32 -07003470 cachep->shared = shared;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003471
Christoph Lametere498be72005-09-09 13:03:32 -07003472 for_each_online_cpu(i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003473 struct array_cache *ccold = new.new[i];
3474 if (!ccold)
3475 continue;
Christoph Lametere498be72005-09-09 13:03:32 -07003476 spin_lock_irq(&cachep->nodelists[cpu_to_node(i)]->list_lock);
Christoph Lameterff694162005-09-22 21:44:02 -07003477 free_block(cachep, ccold->entry, ccold->avail, cpu_to_node(i));
Christoph Lametere498be72005-09-09 13:03:32 -07003478 spin_unlock_irq(&cachep->nodelists[cpu_to_node(i)]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479 kfree(ccold);
3480 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481
Christoph Lametere498be72005-09-09 13:03:32 -07003482 err = alloc_kmemlist(cachep);
3483 if (err) {
3484 printk(KERN_ERR "alloc_kmemlist failed for %s, error %d.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003485 cachep->name, -err);
Christoph Lametere498be72005-09-09 13:03:32 -07003486 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488 return 0;
3489}
3490
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -08003491/* Called with cache_chain_mutex held always */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003492static void enable_cpucache(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493{
3494 int err;
3495 int limit, shared;
3496
Andrew Mortona737b3e2006-03-22 00:08:11 -08003497 /*
3498 * The head array serves three purposes:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499 * - create a LIFO ordering, i.e. return objects that are cache-warm
3500 * - reduce the number of spinlock operations.
Andrew Mortona737b3e2006-03-22 00:08:11 -08003501 * - reduce the number of linked list operations on the slab and
Linus Torvalds1da177e2005-04-16 15:20:36 -07003502 * bufctl chains: array operations are cheaper.
3503 * The numbers are guessed, we should auto-tune as described by
3504 * Bonwick.
3505 */
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003506 if (cachep->buffer_size > 131072)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003507 limit = 1;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003508 else if (cachep->buffer_size > PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003509 limit = 8;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003510 else if (cachep->buffer_size > 1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511 limit = 24;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003512 else if (cachep->buffer_size > 256)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513 limit = 54;
3514 else
3515 limit = 120;
3516
Andrew Mortona737b3e2006-03-22 00:08:11 -08003517 /*
3518 * CPU bound tasks (e.g. network routing) can exhibit cpu bound
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519 * allocation behaviour: Most allocs on one cpu, most free operations
3520 * on another cpu. For these cases, an efficient object passing between
3521 * cpus is necessary. This is provided by a shared array. The array
3522 * replaces Bonwick's magazine layer.
3523 * On uniprocessor, it's functionally equivalent (but less efficient)
3524 * to a larger limit. Thus disabled by default.
3525 */
3526 shared = 0;
3527#ifdef CONFIG_SMP
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003528 if (cachep->buffer_size <= PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003529 shared = 8;
3530#endif
3531
3532#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08003533 /*
3534 * With debugging enabled, large batchcount lead to excessively long
3535 * periods with disabled local interrupts. Limit the batchcount
Linus Torvalds1da177e2005-04-16 15:20:36 -07003536 */
3537 if (limit > 32)
3538 limit = 32;
3539#endif
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003540 err = do_tune_cpucache(cachep, limit, (limit + 1) / 2, shared);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003541 if (err)
3542 printk(KERN_ERR "enable_cpucache failed for %s, error %d.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003543 cachep->name, -err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544}
3545
Christoph Lameter1b552532006-03-22 00:09:07 -08003546/*
3547 * Drain an array if it contains any elements taking the l3 lock only if
Christoph Lameterb18e7e62006-03-22 00:09:07 -08003548 * necessary. Note that the l3 listlock also protects the array_cache
3549 * if drain_array() is used on the shared array.
Christoph Lameter1b552532006-03-22 00:09:07 -08003550 */
3551void drain_array(struct kmem_cache *cachep, struct kmem_list3 *l3,
3552 struct array_cache *ac, int force, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553{
3554 int tofree;
3555
Christoph Lameter1b552532006-03-22 00:09:07 -08003556 if (!ac || !ac->avail)
3557 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003558 if (ac->touched && !force) {
3559 ac->touched = 0;
Christoph Lameterb18e7e62006-03-22 00:09:07 -08003560 } else {
Christoph Lameter1b552532006-03-22 00:09:07 -08003561 spin_lock_irq(&l3->list_lock);
Christoph Lameterb18e7e62006-03-22 00:09:07 -08003562 if (ac->avail) {
3563 tofree = force ? ac->avail : (ac->limit + 4) / 5;
3564 if (tofree > ac->avail)
3565 tofree = (ac->avail + 1) / 2;
3566 free_block(cachep, ac->entry, tofree, node);
3567 ac->avail -= tofree;
3568 memmove(ac->entry, &(ac->entry[tofree]),
3569 sizeof(void *) * ac->avail);
3570 }
Christoph Lameter1b552532006-03-22 00:09:07 -08003571 spin_unlock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003572 }
3573}
3574
3575/**
3576 * cache_reap - Reclaim memory from caches.
Randy Dunlap1e5d5332005-11-07 01:01:06 -08003577 * @unused: unused parameter
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578 *
3579 * Called from workqueue/eventd every few seconds.
3580 * Purpose:
3581 * - clear the per-cpu caches for this CPU.
3582 * - return freeable pages to the main free memory pool.
3583 *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003584 * If we cannot acquire the cache chain mutex then just give up - we'll try
3585 * again on the next iteration.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003586 */
3587static void cache_reap(void *unused)
3588{
3589 struct list_head *walk;
Christoph Lametere498be72005-09-09 13:03:32 -07003590 struct kmem_list3 *l3;
Christoph Lameteraab22072006-03-22 00:09:06 -08003591 int node = numa_node_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003592
Ingo Molnarfc0abb12006-01-18 17:42:33 -08003593 if (!mutex_trylock(&cache_chain_mutex)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003594 /* Give up. Setup the next iteration. */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003595 schedule_delayed_work(&__get_cpu_var(reap_work),
3596 REAPTIMEOUT_CPUC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003597 return;
3598 }
3599
3600 list_for_each(walk, &cache_chain) {
Pekka Enberg343e0d72006-02-01 03:05:50 -08003601 struct kmem_cache *searchp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003602 struct list_head *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003603 int tofree;
3604 struct slab *slabp;
3605
Pekka Enberg343e0d72006-02-01 03:05:50 -08003606 searchp = list_entry(walk, struct kmem_cache, next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003607 check_irq_on();
3608
Christoph Lameter35386e32006-03-22 00:09:05 -08003609 /*
3610 * We only take the l3 lock if absolutely necessary and we
3611 * have established with reasonable certainty that
3612 * we can do some work if the lock was obtained.
3613 */
Christoph Lameteraab22072006-03-22 00:09:06 -08003614 l3 = searchp->nodelists[node];
Christoph Lameter35386e32006-03-22 00:09:05 -08003615
Christoph Lameter8fce4d82006-03-09 17:33:54 -08003616 reap_alien(searchp, l3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003617
Christoph Lameteraab22072006-03-22 00:09:06 -08003618 drain_array(searchp, l3, cpu_cache_get(searchp), 0, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619
Christoph Lameter35386e32006-03-22 00:09:05 -08003620 /*
3621 * These are racy checks but it does not matter
3622 * if we skip one check or scan twice.
3623 */
Christoph Lametere498be72005-09-09 13:03:32 -07003624 if (time_after(l3->next_reap, jiffies))
Christoph Lameter35386e32006-03-22 00:09:05 -08003625 goto next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003626
Christoph Lametere498be72005-09-09 13:03:32 -07003627 l3->next_reap = jiffies + REAPTIMEOUT_LIST3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628
Christoph Lameteraab22072006-03-22 00:09:06 -08003629 drain_array(searchp, l3, l3->shared, 0, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630
Christoph Lametere498be72005-09-09 13:03:32 -07003631 if (l3->free_touched) {
3632 l3->free_touched = 0;
Christoph Lameter35386e32006-03-22 00:09:05 -08003633 goto next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003634 }
3635
Andrew Mortona737b3e2006-03-22 00:08:11 -08003636 tofree = (l3->free_limit + 5 * searchp->num - 1) /
3637 (5 * searchp->num);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003638 do {
Christoph Lameter35386e32006-03-22 00:09:05 -08003639 /*
3640 * Do not lock if there are no free blocks.
3641 */
3642 if (list_empty(&l3->slabs_free))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003643 break;
3644
Christoph Lameter35386e32006-03-22 00:09:05 -08003645 spin_lock_irq(&l3->list_lock);
3646 p = l3->slabs_free.next;
3647 if (p == &(l3->slabs_free)) {
3648 spin_unlock_irq(&l3->list_lock);
3649 break;
3650 }
3651
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652 slabp = list_entry(p, struct slab, list);
3653 BUG_ON(slabp->inuse);
3654 list_del(&slabp->list);
3655 STATS_INC_REAPED(searchp);
3656
Andrew Mortona737b3e2006-03-22 00:08:11 -08003657 /*
3658 * Safe to drop the lock. The slab is no longer linked
3659 * to the cache. searchp cannot disappear, we hold
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660 * cache_chain_lock
3661 */
Christoph Lametere498be72005-09-09 13:03:32 -07003662 l3->free_objects -= searchp->num;
3663 spin_unlock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003664 slab_destroy(searchp, slabp);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003665 } while (--tofree > 0);
Christoph Lameter35386e32006-03-22 00:09:05 -08003666next:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003667 cond_resched();
3668 }
3669 check_irq_on();
Ingo Molnarfc0abb12006-01-18 17:42:33 -08003670 mutex_unlock(&cache_chain_mutex);
Christoph Lameter8fce4d82006-03-09 17:33:54 -08003671 next_reap_node();
Andrew Mortona737b3e2006-03-22 00:08:11 -08003672 /* Set up the next iteration */
Manfred Spraulcd61ef62005-11-07 00:58:02 -08003673 schedule_delayed_work(&__get_cpu_var(reap_work), REAPTIMEOUT_CPUC);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674}
3675
3676#ifdef CONFIG_PROC_FS
3677
Pekka Enberg85289f92006-01-08 01:00:36 -08003678static void print_slabinfo_header(struct seq_file *m)
3679{
3680 /*
3681 * Output format version, so at least we can change it
3682 * without _too_ many complaints.
3683 */
3684#if STATS
3685 seq_puts(m, "slabinfo - version: 2.1 (statistics)\n");
3686#else
3687 seq_puts(m, "slabinfo - version: 2.1\n");
3688#endif
3689 seq_puts(m, "# name <active_objs> <num_objs> <objsize> "
3690 "<objperslab> <pagesperslab>");
3691 seq_puts(m, " : tunables <limit> <batchcount> <sharedfactor>");
3692 seq_puts(m, " : slabdata <active_slabs> <num_slabs> <sharedavail>");
3693#if STATS
3694 seq_puts(m, " : globalstat <listallocs> <maxobjs> <grown> <reaped> "
3695 "<error> <maxfreeable> <nodeallocs> <remotefrees>");
3696 seq_puts(m, " : cpustat <allochit> <allocmiss> <freehit> <freemiss>");
3697#endif
3698 seq_putc(m, '\n');
3699}
3700
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701static void *s_start(struct seq_file *m, loff_t *pos)
3702{
3703 loff_t n = *pos;
3704 struct list_head *p;
3705
Ingo Molnarfc0abb12006-01-18 17:42:33 -08003706 mutex_lock(&cache_chain_mutex);
Pekka Enberg85289f92006-01-08 01:00:36 -08003707 if (!n)
3708 print_slabinfo_header(m);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003709 p = cache_chain.next;
3710 while (n--) {
3711 p = p->next;
3712 if (p == &cache_chain)
3713 return NULL;
3714 }
Pekka Enberg343e0d72006-02-01 03:05:50 -08003715 return list_entry(p, struct kmem_cache, next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003716}
3717
3718static void *s_next(struct seq_file *m, void *p, loff_t *pos)
3719{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003720 struct kmem_cache *cachep = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721 ++*pos;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003722 return cachep->next.next == &cache_chain ?
3723 NULL : list_entry(cachep->next.next, struct kmem_cache, next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003724}
3725
3726static void s_stop(struct seq_file *m, void *p)
3727{
Ingo Molnarfc0abb12006-01-18 17:42:33 -08003728 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003729}
3730
3731static int s_show(struct seq_file *m, void *p)
3732{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003733 struct kmem_cache *cachep = p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003734 struct list_head *q;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003735 struct slab *slabp;
3736 unsigned long active_objs;
3737 unsigned long num_objs;
3738 unsigned long active_slabs = 0;
3739 unsigned long num_slabs, free_objects = 0, shared_avail = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07003740 const char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003741 char *error = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07003742 int node;
3743 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003744
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745 active_objs = 0;
3746 num_slabs = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07003747 for_each_online_node(node) {
3748 l3 = cachep->nodelists[node];
3749 if (!l3)
3750 continue;
3751
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08003752 check_irq_on();
3753 spin_lock_irq(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07003754
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003755 list_for_each(q, &l3->slabs_full) {
Christoph Lametere498be72005-09-09 13:03:32 -07003756 slabp = list_entry(q, struct slab, list);
3757 if (slabp->inuse != cachep->num && !error)
3758 error = "slabs_full accounting error";
3759 active_objs += cachep->num;
3760 active_slabs++;
3761 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003762 list_for_each(q, &l3->slabs_partial) {
Christoph Lametere498be72005-09-09 13:03:32 -07003763 slabp = list_entry(q, struct slab, list);
3764 if (slabp->inuse == cachep->num && !error)
3765 error = "slabs_partial inuse accounting error";
3766 if (!slabp->inuse && !error)
3767 error = "slabs_partial/inuse accounting error";
3768 active_objs += slabp->inuse;
3769 active_slabs++;
3770 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003771 list_for_each(q, &l3->slabs_free) {
Christoph Lametere498be72005-09-09 13:03:32 -07003772 slabp = list_entry(q, struct slab, list);
3773 if (slabp->inuse && !error)
3774 error = "slabs_free/inuse accounting error";
3775 num_slabs++;
3776 }
3777 free_objects += l3->free_objects;
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08003778 if (l3->shared)
3779 shared_avail += l3->shared->avail;
Christoph Lametere498be72005-09-09 13:03:32 -07003780
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08003781 spin_unlock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003782 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003783 num_slabs += active_slabs;
3784 num_objs = num_slabs * cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07003785 if (num_objs - active_objs != free_objects && !error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003786 error = "free_objects accounting error";
3787
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003788 name = cachep->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789 if (error)
3790 printk(KERN_ERR "slab: cache %s error: %s\n", name, error);
3791
3792 seq_printf(m, "%-17s %6lu %6lu %6u %4u %4d",
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003793 name, active_objs, num_objs, cachep->buffer_size,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003794 cachep->num, (1 << cachep->gfporder));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003795 seq_printf(m, " : tunables %4u %4u %4u",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003796 cachep->limit, cachep->batchcount, cachep->shared);
Christoph Lametere498be72005-09-09 13:03:32 -07003797 seq_printf(m, " : slabdata %6lu %6lu %6lu",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003798 active_slabs, num_slabs, shared_avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003799#if STATS
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003800 { /* list3 stats */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003801 unsigned long high = cachep->high_mark;
3802 unsigned long allocs = cachep->num_allocations;
3803 unsigned long grown = cachep->grown;
3804 unsigned long reaped = cachep->reaped;
3805 unsigned long errors = cachep->errors;
3806 unsigned long max_freeable = cachep->max_freeable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003807 unsigned long node_allocs = cachep->node_allocs;
Christoph Lametere498be72005-09-09 13:03:32 -07003808 unsigned long node_frees = cachep->node_frees;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809
Christoph Lametere498be72005-09-09 13:03:32 -07003810 seq_printf(m, " : globalstat %7lu %6lu %5lu %4lu \
Andrew Mortona737b3e2006-03-22 00:08:11 -08003811 %4lu %4lu %4lu %4lu", allocs, high, grown,
3812 reaped, errors, max_freeable, node_allocs,
3813 node_frees);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003814 }
3815 /* cpu stats */
3816 {
3817 unsigned long allochit = atomic_read(&cachep->allochit);
3818 unsigned long allocmiss = atomic_read(&cachep->allocmiss);
3819 unsigned long freehit = atomic_read(&cachep->freehit);
3820 unsigned long freemiss = atomic_read(&cachep->freemiss);
3821
3822 seq_printf(m, " : cpustat %6lu %6lu %6lu %6lu",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003823 allochit, allocmiss, freehit, freemiss);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824 }
3825#endif
3826 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07003827 return 0;
3828}
3829
3830/*
3831 * slabinfo_op - iterator that generates /proc/slabinfo
3832 *
3833 * Output layout:
3834 * cache-name
3835 * num-active-objs
3836 * total-objs
3837 * object size
3838 * num-active-slabs
3839 * total-slabs
3840 * num-pages-per-slab
3841 * + further values on SMP and with statistics enabled
3842 */
3843
3844struct seq_operations slabinfo_op = {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003845 .start = s_start,
3846 .next = s_next,
3847 .stop = s_stop,
3848 .show = s_show,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003849};
3850
3851#define MAX_SLABINFO_WRITE 128
3852/**
3853 * slabinfo_write - Tuning for the slab allocator
3854 * @file: unused
3855 * @buffer: user buffer
3856 * @count: data length
3857 * @ppos: unused
3858 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003859ssize_t slabinfo_write(struct file *file, const char __user * buffer,
3860 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003861{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003862 char kbuf[MAX_SLABINFO_WRITE + 1], *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003863 int limit, batchcount, shared, res;
3864 struct list_head *p;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003865
Linus Torvalds1da177e2005-04-16 15:20:36 -07003866 if (count > MAX_SLABINFO_WRITE)
3867 return -EINVAL;
3868 if (copy_from_user(&kbuf, buffer, count))
3869 return -EFAULT;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003870 kbuf[MAX_SLABINFO_WRITE] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871
3872 tmp = strchr(kbuf, ' ');
3873 if (!tmp)
3874 return -EINVAL;
3875 *tmp = '\0';
3876 tmp++;
3877 if (sscanf(tmp, " %d %d %d", &limit, &batchcount, &shared) != 3)
3878 return -EINVAL;
3879
3880 /* Find the cache in the chain of caches. */
Ingo Molnarfc0abb12006-01-18 17:42:33 -08003881 mutex_lock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882 res = -EINVAL;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003883 list_for_each(p, &cache_chain) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08003884 struct kmem_cache *cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003885
Andrew Mortona737b3e2006-03-22 00:08:11 -08003886 cachep = list_entry(p, struct kmem_cache, next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003887 if (!strcmp(cachep->name, kbuf)) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08003888 if (limit < 1 || batchcount < 1 ||
3889 batchcount > limit || shared < 0) {
Christoph Lametere498be72005-09-09 13:03:32 -07003890 res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891 } else {
Christoph Lametere498be72005-09-09 13:03:32 -07003892 res = do_tune_cpucache(cachep, limit,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003893 batchcount, shared);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003894 }
3895 break;
3896 }
3897 }
Ingo Molnarfc0abb12006-01-18 17:42:33 -08003898 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003899 if (res >= 0)
3900 res = count;
3901 return res;
3902}
3903#endif
3904
Manfred Spraul00e145b2005-09-03 15:55:07 -07003905/**
3906 * ksize - get the actual amount of memory allocated for a given object
3907 * @objp: Pointer to the object
3908 *
3909 * kmalloc may internally round up allocations and return more memory
3910 * than requested. ksize() can be used to determine the actual amount of
3911 * memory allocated. The caller may use this additional memory, even though
3912 * a smaller amount of memory was initially specified with the kmalloc call.
3913 * The caller must guarantee that objp points to a valid object previously
3914 * allocated with either kmalloc() or kmem_cache_alloc(). The object
3915 * must not be freed during the duration of the call.
3916 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003917unsigned int ksize(const void *objp)
3918{
Manfred Spraul00e145b2005-09-03 15:55:07 -07003919 if (unlikely(objp == NULL))
3920 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08003922 return obj_size(virt_to_cache(objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923}