blob: 744ab9a665a2d65a7bacce049ffc8a30a98af8b6 [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
Simon Arlott183ff222007-10-20 01:27:18 +020029 * slabs and you must pass objects with the same initializations to
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 * 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
Linus Torvalds1da177e2005-04-16 15:20:36 -070089#include <linux/slab.h>
90#include <linux/mm.h>
Randy Dunlapc9cf5522006-06-27 02:53:52 -070091#include <linux/poison.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070092#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>
Alexey Dobriyana0ec95a82008-10-06 00:59:10 +040098#include <linux/proc_fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070099#include <linux/seq_file.h>
100#include <linux/notifier.h>
101#include <linux/kallsyms.h>
102#include <linux/cpu.h>
103#include <linux/sysctl.h>
104#include <linux/module.h>
Zhaolei02af61b2009-04-10 14:26:18 +0800105#include <linux/kmemtrace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106#include <linux/rcupdate.h>
Paulo Marques543537b2005-06-23 00:09:02 -0700107#include <linux/string.h>
Andrew Morton138ae662006-12-06 20:36:41 -0800108#include <linux/uaccess.h>
Christoph Lametere498be72005-09-09 13:03:32 -0700109#include <linux/nodemask.h>
Catalin Marinasd5cff632009-06-11 13:22:40 +0100110#include <linux/kmemleak.h>
Christoph Lameterdc85da12006-01-18 17:42:36 -0800111#include <linux/mempolicy.h>
Ingo Molnarfc0abb12006-01-18 17:42:33 -0800112#include <linux/mutex.h>
Akinobu Mita8a8b6502006-12-08 02:39:44 -0800113#include <linux/fault-inject.h>
Ingo Molnare7eebaf2006-06-27 02:54:55 -0700114#include <linux/rtmutex.h>
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800115#include <linux/reciprocal_div.h>
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700116#include <linux/debugobjects.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118#include <asm/cacheflush.h>
119#include <asm/tlbflush.h>
120#include <asm/page.h>
121
122/*
Christoph Lameter50953fe2007-05-06 14:50:16 -0700123 * DEBUG - 1 for kmem_cache_create() to honour; SLAB_RED_ZONE & SLAB_POISON.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 * 0 for faster, smaller code (especially in the critical paths).
125 *
126 * STATS - 1 to collect stats for /proc/slabinfo.
127 * 0 for faster, smaller code (especially in the critical paths).
128 *
129 * FORCED_DEBUG - 1 enables SLAB_RED_ZONE and SLAB_POISON (if possible)
130 */
131
132#ifdef CONFIG_DEBUG_SLAB
133#define DEBUG 1
134#define STATS 1
135#define FORCED_DEBUG 1
136#else
137#define DEBUG 0
138#define STATS 0
139#define FORCED_DEBUG 0
140#endif
141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142/* Shouldn't this be in a header file somewhere? */
143#define BYTES_PER_WORD sizeof(void *)
David Woodhouse87a927c2007-07-04 21:26:44 -0400144#define REDZONE_ALIGN max(BYTES_PER_WORD, __alignof__(unsigned long long))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146#ifndef ARCH_KMALLOC_MINALIGN
147/*
148 * Enforce a minimum alignment for the kmalloc caches.
149 * Usually, the kmalloc caches are cache_line_size() aligned, except when
150 * DEBUG and FORCED_DEBUG are enabled, then they are BYTES_PER_WORD aligned.
151 * Some archs want to perform DMA into kmalloc caches and need a guaranteed
David Woodhouseb46b8f12007-05-08 00:22:59 -0700152 * alignment larger than the alignment of a 64-bit integer.
153 * ARCH_KMALLOC_MINALIGN allows that.
154 * Note that increasing this value may disable some debug features.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 */
David Woodhouseb46b8f12007-05-08 00:22:59 -0700156#define ARCH_KMALLOC_MINALIGN __alignof__(unsigned long long)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157#endif
158
159#ifndef ARCH_SLAB_MINALIGN
160/*
161 * Enforce a minimum alignment for all caches.
162 * Intended for archs that get misalignment faults even for BYTES_PER_WORD
163 * aligned buffers. Includes ARCH_KMALLOC_MINALIGN.
164 * If possible: Do not enable this flag for CONFIG_DEBUG_SLAB, it disables
165 * some debug features.
166 */
167#define ARCH_SLAB_MINALIGN 0
168#endif
169
170#ifndef ARCH_KMALLOC_FLAGS
171#define ARCH_KMALLOC_FLAGS SLAB_HWCACHE_ALIGN
172#endif
173
174/* Legal flag mask for kmem_cache_create(). */
175#if DEBUG
Christoph Lameter50953fe2007-05-06 14:50:16 -0700176# define CREATE_MASK (SLAB_RED_ZONE | \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 SLAB_POISON | SLAB_HWCACHE_ALIGN | \
Christoph Lameterac2b8982006-03-22 00:08:15 -0800178 SLAB_CACHE_DMA | \
Christoph Lameter5af60832007-05-06 14:49:56 -0700179 SLAB_STORE_USER | \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 SLAB_RECLAIM_ACCOUNT | SLAB_PANIC | \
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700181 SLAB_DESTROY_BY_RCU | SLAB_MEM_SPREAD | \
Catalin Marinasd5cff632009-06-11 13:22:40 +0100182 SLAB_DEBUG_OBJECTS | SLAB_NOLEAKTRACE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183#else
Christoph Lameterac2b8982006-03-22 00:08:15 -0800184# define CREATE_MASK (SLAB_HWCACHE_ALIGN | \
Christoph Lameter5af60832007-05-06 14:49:56 -0700185 SLAB_CACHE_DMA | \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186 SLAB_RECLAIM_ACCOUNT | SLAB_PANIC | \
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700187 SLAB_DESTROY_BY_RCU | SLAB_MEM_SPREAD | \
Catalin Marinasd5cff632009-06-11 13:22:40 +0100188 SLAB_DEBUG_OBJECTS | SLAB_NOLEAKTRACE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189#endif
190
191/*
192 * kmem_bufctl_t:
193 *
194 * Bufctl's are used for linking objs within a slab
195 * linked offsets.
196 *
197 * This implementation relies on "struct page" for locating the cache &
198 * slab an object belongs to.
199 * This allows the bufctl structure to be small (one int), but limits
200 * the number of objects a slab (not a cache) can contain when off-slab
201 * bufctls are used. The limit is the size of the largest general cache
202 * that does not use off-slab slabs.
203 * For 32bit archs with 4 kB pages, is this 56.
204 * This is not serious, as it is only for large objects, when it is unwise
205 * to have too many per slab.
206 * Note: This limit can be raised by introducing a general cache whose size
207 * is less than 512 (PAGE_SIZE<<3), but greater than 256.
208 */
209
Kyle Moffettfa5b08d2005-09-03 15:55:03 -0700210typedef unsigned int kmem_bufctl_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211#define BUFCTL_END (((kmem_bufctl_t)(~0U))-0)
212#define BUFCTL_FREE (((kmem_bufctl_t)(~0U))-1)
Al Viro871751e2006-03-25 03:06:39 -0800213#define BUFCTL_ACTIVE (((kmem_bufctl_t)(~0U))-2)
214#define SLAB_LIMIT (((kmem_bufctl_t)(~0U))-3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216/*
217 * struct slab
218 *
219 * Manages the objs in a slab. Placed either at the beginning of mem allocated
220 * for a slab, or allocated from an general cache.
221 * Slabs are chained into three list: fully used, partial, fully free slabs.
222 */
223struct slab {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800224 struct list_head list;
225 unsigned long colouroff;
226 void *s_mem; /* including colour offset */
227 unsigned int inuse; /* num of objs active in slab */
228 kmem_bufctl_t free;
229 unsigned short nodeid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230};
231
232/*
233 * struct slab_rcu
234 *
235 * slab_destroy on a SLAB_DESTROY_BY_RCU cache uses this structure to
236 * arrange for kmem_freepages to be called via RCU. This is useful if
237 * we need to approach a kernel structure obliquely, from its address
238 * obtained without the usual locking. We can lock the structure to
239 * stabilize it and check it's still at the given address, only if we
240 * can be sure that the memory has not been meanwhile reused for some
241 * other kind of object (which our subsystem's lock might corrupt).
242 *
243 * rcu_read_lock before reading the address, then rcu_read_unlock after
244 * taking the spinlock within the structure expected at that address.
245 *
246 * We assume struct slab_rcu can overlay struct slab when destroying.
247 */
248struct slab_rcu {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800249 struct rcu_head head;
Pekka Enberg343e0d72006-02-01 03:05:50 -0800250 struct kmem_cache *cachep;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800251 void *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252};
253
254/*
255 * struct array_cache
256 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 * Purpose:
258 * - LIFO ordering, to hand out cache-warm objects from _alloc
259 * - reduce the number of linked list operations
260 * - reduce spinlock operations
261 *
262 * The limit is stored in the per-cpu structure to reduce the data cache
263 * footprint.
264 *
265 */
266struct array_cache {
267 unsigned int avail;
268 unsigned int limit;
269 unsigned int batchcount;
270 unsigned int touched;
Christoph Lametere498be72005-09-09 13:03:32 -0700271 spinlock_t lock;
Robert P. J. Daybda5b652007-10-16 23:30:05 -0700272 void *entry[]; /*
Andrew Mortona737b3e2006-03-22 00:08:11 -0800273 * Must have this definition in here for the proper
274 * alignment of array_cache. Also simplifies accessing
275 * the entries.
Andrew Mortona737b3e2006-03-22 00:08:11 -0800276 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277};
278
Andrew Mortona737b3e2006-03-22 00:08:11 -0800279/*
280 * bootstrap: The caches do not work without cpuarrays anymore, but the
281 * cpuarrays are allocated from the generic caches...
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 */
283#define BOOT_CPUCACHE_ENTRIES 1
284struct arraycache_init {
285 struct array_cache cache;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800286 void *entries[BOOT_CPUCACHE_ENTRIES];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287};
288
289/*
Christoph Lametere498be72005-09-09 13:03:32 -0700290 * The slab lists for all objects.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 */
292struct kmem_list3 {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800293 struct list_head slabs_partial; /* partial list first, better asm code */
294 struct list_head slabs_full;
295 struct list_head slabs_free;
296 unsigned long free_objects;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800297 unsigned int free_limit;
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -0800298 unsigned int colour_next; /* Per-node cache coloring */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800299 spinlock_t list_lock;
300 struct array_cache *shared; /* shared per node */
301 struct array_cache **alien; /* on other nodes */
Christoph Lameter35386e32006-03-22 00:09:05 -0800302 unsigned long next_reap; /* updated without locking */
303 int free_touched; /* updated without locking */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304};
305
Christoph Lametere498be72005-09-09 13:03:32 -0700306/*
Pekka Enberg7e85ee02009-06-12 14:03:06 +0300307 * The slab allocator is initialized with interrupts disabled. Therefore, make
308 * sure early boot allocations don't accidentally enable interrupts.
309 */
310static gfp_t slab_gfp_mask __read_mostly = SLAB_GFP_BOOT_MASK;
311
312/*
Christoph Lametere498be72005-09-09 13:03:32 -0700313 * Need this for bootstrapping a per node allocator.
314 */
Pekka Enberg556a1692008-01-25 08:20:51 +0200315#define NUM_INIT_LISTS (3 * MAX_NUMNODES)
Christoph Lametere498be72005-09-09 13:03:32 -0700316struct kmem_list3 __initdata initkmem_list3[NUM_INIT_LISTS];
317#define CACHE_CACHE 0
Pekka Enberg556a1692008-01-25 08:20:51 +0200318#define SIZE_AC MAX_NUMNODES
319#define SIZE_L3 (2 * MAX_NUMNODES)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Christoph Lametered11d9e2006-06-30 01:55:45 -0700321static int drain_freelist(struct kmem_cache *cache,
322 struct kmem_list3 *l3, int tofree);
323static void free_block(struct kmem_cache *cachep, void **objpp, int len,
324 int node);
Pekka Enberg83b519e2009-06-10 19:40:04 +0300325static int enable_cpucache(struct kmem_cache *cachep, gfp_t gfp);
David Howells65f27f32006-11-22 14:55:48 +0000326static void cache_reap(struct work_struct *unused);
Christoph Lametered11d9e2006-06-30 01:55:45 -0700327
Christoph Lametere498be72005-09-09 13:03:32 -0700328/*
Andrew Mortona737b3e2006-03-22 00:08:11 -0800329 * This function must be completely optimized away if a constant is passed to
330 * it. Mostly the same as what is in linux/slab.h except it returns an index.
Christoph Lametere498be72005-09-09 13:03:32 -0700331 */
Ivan Kokshaysky7243cc02005-09-22 21:43:58 -0700332static __always_inline int index_of(const size_t size)
Christoph Lametere498be72005-09-09 13:03:32 -0700333{
Steven Rostedt5ec8a842006-02-01 03:05:44 -0800334 extern void __bad_size(void);
335
Christoph Lametere498be72005-09-09 13:03:32 -0700336 if (__builtin_constant_p(size)) {
337 int i = 0;
338
339#define CACHE(x) \
340 if (size <=x) \
341 return i; \
342 else \
343 i++;
Joe Perches1c61fc42008-03-05 13:58:17 -0800344#include <linux/kmalloc_sizes.h>
Christoph Lametere498be72005-09-09 13:03:32 -0700345#undef CACHE
Steven Rostedt5ec8a842006-02-01 03:05:44 -0800346 __bad_size();
Ivan Kokshaysky7243cc02005-09-22 21:43:58 -0700347 } else
Steven Rostedt5ec8a842006-02-01 03:05:44 -0800348 __bad_size();
Christoph Lametere498be72005-09-09 13:03:32 -0700349 return 0;
350}
351
Ingo Molnare0a42722006-06-23 02:03:46 -0700352static int slab_early_init = 1;
353
Christoph Lametere498be72005-09-09 13:03:32 -0700354#define INDEX_AC index_of(sizeof(struct arraycache_init))
355#define INDEX_L3 index_of(sizeof(struct kmem_list3))
356
Pekka Enberg5295a742006-02-01 03:05:48 -0800357static void kmem_list3_init(struct kmem_list3 *parent)
Christoph Lametere498be72005-09-09 13:03:32 -0700358{
359 INIT_LIST_HEAD(&parent->slabs_full);
360 INIT_LIST_HEAD(&parent->slabs_partial);
361 INIT_LIST_HEAD(&parent->slabs_free);
362 parent->shared = NULL;
363 parent->alien = NULL;
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -0800364 parent->colour_next = 0;
Christoph Lametere498be72005-09-09 13:03:32 -0700365 spin_lock_init(&parent->list_lock);
366 parent->free_objects = 0;
367 parent->free_touched = 0;
368}
369
Andrew Mortona737b3e2006-03-22 00:08:11 -0800370#define MAKE_LIST(cachep, listp, slab, nodeid) \
371 do { \
372 INIT_LIST_HEAD(listp); \
373 list_splice(&(cachep->nodelists[nodeid]->slab), listp); \
Christoph Lametere498be72005-09-09 13:03:32 -0700374 } while (0)
375
Andrew Mortona737b3e2006-03-22 00:08:11 -0800376#define MAKE_ALL_LISTS(cachep, ptr, nodeid) \
377 do { \
Christoph Lametere498be72005-09-09 13:03:32 -0700378 MAKE_LIST((cachep), (&(ptr)->slabs_full), slabs_full, nodeid); \
379 MAKE_LIST((cachep), (&(ptr)->slabs_partial), slabs_partial, nodeid); \
380 MAKE_LIST((cachep), (&(ptr)->slabs_free), slabs_free, nodeid); \
381 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382
383/*
Pekka Enberg343e0d72006-02-01 03:05:50 -0800384 * struct kmem_cache
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 *
386 * manages a cache.
387 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800388
Pekka J Enberg2109a2d2005-11-07 00:58:01 -0800389struct kmem_cache {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390/* 1) per-cpu data, touched during every alloc/free */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800391 struct array_cache *array[NR_CPUS];
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -0800392/* 2) Cache tunables. Protected by cache_chain_mutex */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800393 unsigned int batchcount;
394 unsigned int limit;
395 unsigned int shared;
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -0800396
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800397 unsigned int buffer_size;
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800398 u32 reciprocal_buffer_size;
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -0800399/* 3) touched by every alloc & free from the backend */
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -0800400
Andrew Mortona737b3e2006-03-22 00:08:11 -0800401 unsigned int flags; /* constant flags */
402 unsigned int num; /* # of objs per slab */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -0800404/* 4) cache_grow/shrink */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 /* order of pgs per slab (2^n) */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800406 unsigned int gfporder;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407
408 /* force GFP flags, e.g. GFP_DMA */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800409 gfp_t gfpflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Andrew Mortona737b3e2006-03-22 00:08:11 -0800411 size_t colour; /* cache colouring range */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800412 unsigned int colour_off; /* colour offset */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800413 struct kmem_cache *slabp_cache;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800414 unsigned int slab_size;
Andrew Mortona737b3e2006-03-22 00:08:11 -0800415 unsigned int dflags; /* dynamic flags */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
417 /* constructor func */
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700418 void (*ctor)(void *obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -0800420/* 5) cache creation/removal */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800421 const char *name;
422 struct list_head next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -0800424/* 6) statistics */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425#if STATS
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800426 unsigned long num_active;
427 unsigned long num_allocations;
428 unsigned long high_mark;
429 unsigned long grown;
430 unsigned long reaped;
431 unsigned long errors;
432 unsigned long max_freeable;
433 unsigned long node_allocs;
434 unsigned long node_frees;
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -0700435 unsigned long node_overflow;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800436 atomic_t allochit;
437 atomic_t allocmiss;
438 atomic_t freehit;
439 atomic_t freemiss;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440#endif
441#if DEBUG
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800442 /*
443 * If debugging is enabled, then the allocator can add additional
444 * fields and/or padding to every object. buffer_size contains the total
445 * object size including these internal fields, the following two
446 * variables contain the offset to the user object and its size.
447 */
448 int obj_offset;
449 int obj_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450#endif
Eric Dumazet8da34302007-05-06 14:49:29 -0700451 /*
452 * We put nodelists[] at the end of kmem_cache, because we want to size
453 * this array to nr_node_ids slots instead of MAX_NUMNODES
454 * (see kmem_cache_init())
455 * We still use [MAX_NUMNODES] and not [1] or [0] because cache_cache
456 * is statically defined, so we reserve the max number of nodes.
457 */
458 struct kmem_list3 *nodelists[MAX_NUMNODES];
459 /*
460 * Do not add fields after nodelists[]
461 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462};
463
464#define CFLGS_OFF_SLAB (0x80000000UL)
465#define OFF_SLAB(x) ((x)->flags & CFLGS_OFF_SLAB)
466
467#define BATCHREFILL_LIMIT 16
Andrew Mortona737b3e2006-03-22 00:08:11 -0800468/*
469 * Optimization question: fewer reaps means less probability for unnessary
470 * cpucache drain/refill cycles.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471 *
Adrian Bunkdc6f3f22005-11-08 16:44:08 +0100472 * OTOH the cpuarrays can contain lots of objects,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 * which could lock up otherwise freeable slabs.
474 */
475#define REAPTIMEOUT_CPUC (2*HZ)
476#define REAPTIMEOUT_LIST3 (4*HZ)
477
478#if STATS
479#define STATS_INC_ACTIVE(x) ((x)->num_active++)
480#define STATS_DEC_ACTIVE(x) ((x)->num_active--)
481#define STATS_INC_ALLOCED(x) ((x)->num_allocations++)
482#define STATS_INC_GROWN(x) ((x)->grown++)
Christoph Lametered11d9e2006-06-30 01:55:45 -0700483#define STATS_ADD_REAPED(x,y) ((x)->reaped += (y))
Andrew Mortona737b3e2006-03-22 00:08:11 -0800484#define STATS_SET_HIGH(x) \
485 do { \
486 if ((x)->num_active > (x)->high_mark) \
487 (x)->high_mark = (x)->num_active; \
488 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489#define STATS_INC_ERR(x) ((x)->errors++)
490#define STATS_INC_NODEALLOCS(x) ((x)->node_allocs++)
Christoph Lametere498be72005-09-09 13:03:32 -0700491#define STATS_INC_NODEFREES(x) ((x)->node_frees++)
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -0700492#define STATS_INC_ACOVERFLOW(x) ((x)->node_overflow++)
Andrew Mortona737b3e2006-03-22 00:08:11 -0800493#define STATS_SET_FREEABLE(x, i) \
494 do { \
495 if ((x)->max_freeable < i) \
496 (x)->max_freeable = i; \
497 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498#define STATS_INC_ALLOCHIT(x) atomic_inc(&(x)->allochit)
499#define STATS_INC_ALLOCMISS(x) atomic_inc(&(x)->allocmiss)
500#define STATS_INC_FREEHIT(x) atomic_inc(&(x)->freehit)
501#define STATS_INC_FREEMISS(x) atomic_inc(&(x)->freemiss)
502#else
503#define STATS_INC_ACTIVE(x) do { } while (0)
504#define STATS_DEC_ACTIVE(x) do { } while (0)
505#define STATS_INC_ALLOCED(x) do { } while (0)
506#define STATS_INC_GROWN(x) do { } while (0)
Christoph Lametered11d9e2006-06-30 01:55:45 -0700507#define STATS_ADD_REAPED(x,y) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508#define STATS_SET_HIGH(x) do { } while (0)
509#define STATS_INC_ERR(x) do { } while (0)
510#define STATS_INC_NODEALLOCS(x) do { } while (0)
Christoph Lametere498be72005-09-09 13:03:32 -0700511#define STATS_INC_NODEFREES(x) do { } while (0)
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -0700512#define STATS_INC_ACOVERFLOW(x) do { } while (0)
Andrew Mortona737b3e2006-03-22 00:08:11 -0800513#define STATS_SET_FREEABLE(x, i) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514#define STATS_INC_ALLOCHIT(x) do { } while (0)
515#define STATS_INC_ALLOCMISS(x) do { } while (0)
516#define STATS_INC_FREEHIT(x) do { } while (0)
517#define STATS_INC_FREEMISS(x) do { } while (0)
518#endif
519
520#if DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Andrew Mortona737b3e2006-03-22 00:08:11 -0800522/*
523 * memory layout of objects:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 * 0 : objp
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800525 * 0 .. cachep->obj_offset - BYTES_PER_WORD - 1: padding. This ensures that
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 * the end of an object is aligned with the end of the real
527 * allocation. Catches writes behind the end of the allocation.
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800528 * cachep->obj_offset - BYTES_PER_WORD .. cachep->obj_offset - 1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 * redzone word.
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800530 * cachep->obj_offset: The real object.
531 * cachep->buffer_size - 2* BYTES_PER_WORD: redzone word [BYTES_PER_WORD long]
Andrew Mortona737b3e2006-03-22 00:08:11 -0800532 * cachep->buffer_size - 1* BYTES_PER_WORD: last caller address
533 * [BYTES_PER_WORD long]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800535static int obj_offset(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536{
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800537 return cachep->obj_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538}
539
Pekka Enberg343e0d72006-02-01 03:05:50 -0800540static int obj_size(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541{
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800542 return cachep->obj_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543}
544
David Woodhouseb46b8f12007-05-08 00:22:59 -0700545static unsigned long long *dbg_redzone1(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546{
547 BUG_ON(!(cachep->flags & SLAB_RED_ZONE));
David Woodhouseb46b8f12007-05-08 00:22:59 -0700548 return (unsigned long long*) (objp + obj_offset(cachep) -
549 sizeof(unsigned long long));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550}
551
David Woodhouseb46b8f12007-05-08 00:22:59 -0700552static unsigned long long *dbg_redzone2(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553{
554 BUG_ON(!(cachep->flags & SLAB_RED_ZONE));
555 if (cachep->flags & SLAB_STORE_USER)
David Woodhouseb46b8f12007-05-08 00:22:59 -0700556 return (unsigned long long *)(objp + cachep->buffer_size -
557 sizeof(unsigned long long) -
David Woodhouse87a927c2007-07-04 21:26:44 -0400558 REDZONE_ALIGN);
David Woodhouseb46b8f12007-05-08 00:22:59 -0700559 return (unsigned long long *) (objp + cachep->buffer_size -
560 sizeof(unsigned long long));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561}
562
Pekka Enberg343e0d72006-02-01 03:05:50 -0800563static void **dbg_userword(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564{
565 BUG_ON(!(cachep->flags & SLAB_STORE_USER));
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800566 return (void **)(objp + cachep->buffer_size - BYTES_PER_WORD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567}
568
569#else
570
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800571#define obj_offset(x) 0
572#define obj_size(cachep) (cachep->buffer_size)
David Woodhouseb46b8f12007-05-08 00:22:59 -0700573#define dbg_redzone1(cachep, objp) ({BUG(); (unsigned long long *)NULL;})
574#define dbg_redzone2(cachep, objp) ({BUG(); (unsigned long long *)NULL;})
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575#define dbg_userword(cachep, objp) ({BUG(); (void **)NULL;})
576
577#endif
578
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +0300579#ifdef CONFIG_KMEMTRACE
580size_t slab_buffer_size(struct kmem_cache *cachep)
581{
582 return cachep->buffer_size;
583}
584EXPORT_SYMBOL(slab_buffer_size);
585#endif
586
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 * Do not go above this order unless 0 objects fit into the slab.
589 */
590#define BREAK_GFP_ORDER_HI 1
591#define BREAK_GFP_ORDER_LO 0
592static int slab_break_gfp_order = BREAK_GFP_ORDER_LO;
593
Andrew Mortona737b3e2006-03-22 00:08:11 -0800594/*
595 * Functions for storing/retrieving the cachep and or slab from the page
596 * allocator. These are used to find the slab an obj belongs to. With kfree(),
597 * these are used to find the cache which an obj belongs to.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 */
Pekka Enberg065d41c2005-11-13 16:06:46 -0800599static inline void page_set_cache(struct page *page, struct kmem_cache *cache)
600{
601 page->lru.next = (struct list_head *)cache;
602}
603
604static inline struct kmem_cache *page_get_cache(struct page *page)
605{
Christoph Lameterd85f3382007-05-06 14:49:39 -0700606 page = compound_head(page);
Pekka Enbergddc2e812006-06-23 02:03:40 -0700607 BUG_ON(!PageSlab(page));
Pekka Enberg065d41c2005-11-13 16:06:46 -0800608 return (struct kmem_cache *)page->lru.next;
609}
610
611static inline void page_set_slab(struct page *page, struct slab *slab)
612{
613 page->lru.prev = (struct list_head *)slab;
614}
615
616static inline struct slab *page_get_slab(struct page *page)
617{
Pekka Enbergddc2e812006-06-23 02:03:40 -0700618 BUG_ON(!PageSlab(page));
Pekka Enberg065d41c2005-11-13 16:06:46 -0800619 return (struct slab *)page->lru.prev;
620}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
Pekka Enberg6ed5eb22006-02-01 03:05:49 -0800622static inline struct kmem_cache *virt_to_cache(const void *obj)
623{
Christoph Lameterb49af682007-05-06 14:49:41 -0700624 struct page *page = virt_to_head_page(obj);
Pekka Enberg6ed5eb22006-02-01 03:05:49 -0800625 return page_get_cache(page);
626}
627
628static inline struct slab *virt_to_slab(const void *obj)
629{
Christoph Lameterb49af682007-05-06 14:49:41 -0700630 struct page *page = virt_to_head_page(obj);
Pekka Enberg6ed5eb22006-02-01 03:05:49 -0800631 return page_get_slab(page);
632}
633
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800634static inline void *index_to_obj(struct kmem_cache *cache, struct slab *slab,
635 unsigned int idx)
636{
637 return slab->s_mem + cache->buffer_size * idx;
638}
639
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800640/*
641 * We want to avoid an expensive divide : (offset / cache->buffer_size)
642 * Using the fact that buffer_size is a constant for a particular cache,
643 * we can replace (offset / cache->buffer_size) by
644 * reciprocal_divide(offset, cache->reciprocal_buffer_size)
645 */
646static inline unsigned int obj_to_index(const struct kmem_cache *cache,
647 const struct slab *slab, void *obj)
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800648{
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800649 u32 offset = (obj - slab->s_mem);
650 return reciprocal_divide(offset, cache->reciprocal_buffer_size);
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800651}
652
Andrew Mortona737b3e2006-03-22 00:08:11 -0800653/*
654 * These are the default caches for kmalloc. Custom caches can have other sizes.
655 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656struct cache_sizes malloc_sizes[] = {
657#define CACHE(x) { .cs_size = (x) },
658#include <linux/kmalloc_sizes.h>
659 CACHE(ULONG_MAX)
660#undef CACHE
661};
662EXPORT_SYMBOL(malloc_sizes);
663
664/* Must match cache_sizes above. Out of line to keep cache footprint low. */
665struct cache_names {
666 char *name;
667 char *name_dma;
668};
669
670static struct cache_names __initdata cache_names[] = {
671#define CACHE(x) { .name = "size-" #x, .name_dma = "size-" #x "(DMA)" },
672#include <linux/kmalloc_sizes.h>
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800673 {NULL,}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674#undef CACHE
675};
676
677static struct arraycache_init initarray_cache __initdata =
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800678 { {0, BOOT_CPUCACHE_ENTRIES, 1, 0} };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679static struct arraycache_init initarray_generic =
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800680 { {0, BOOT_CPUCACHE_ENTRIES, 1, 0} };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
682/* internal cache of cache description objs */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800683static struct kmem_cache cache_cache = {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800684 .batchcount = 1,
685 .limit = BOOT_CPUCACHE_ENTRIES,
686 .shared = 1,
Pekka Enberg343e0d72006-02-01 03:05:50 -0800687 .buffer_size = sizeof(struct kmem_cache),
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800688 .name = "kmem_cache",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689};
690
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -0700691#define BAD_ALIEN_MAGIC 0x01020304ul
692
Arjan van de Venf1aaee52006-07-13 14:46:03 +0200693#ifdef CONFIG_LOCKDEP
694
695/*
696 * Slab sometimes uses the kmalloc slabs to store the slab headers
697 * for other slabs "off slab".
698 * The locking for this is tricky in that it nests within the locks
699 * of all other slabs in a few places; to deal with this special
700 * locking we put on-slab caches into a separate lock-class.
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -0700701 *
702 * We set lock class for alien array caches which are up during init.
703 * The lock annotation will be lost if all cpus of a node goes down and
704 * then comes back up during hotplug
Arjan van de Venf1aaee52006-07-13 14:46:03 +0200705 */
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -0700706static struct lock_class_key on_slab_l3_key;
707static struct lock_class_key on_slab_alc_key;
Arjan van de Venf1aaee52006-07-13 14:46:03 +0200708
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -0700709static inline void init_lock_keys(void)
710
Arjan van de Venf1aaee52006-07-13 14:46:03 +0200711{
712 int q;
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -0700713 struct cache_sizes *s = malloc_sizes;
Arjan van de Venf1aaee52006-07-13 14:46:03 +0200714
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -0700715 while (s->cs_size != ULONG_MAX) {
716 for_each_node(q) {
717 struct array_cache **alc;
718 int r;
719 struct kmem_list3 *l3 = s->cs_cachep->nodelists[q];
720 if (!l3 || OFF_SLAB(s->cs_cachep))
721 continue;
722 lockdep_set_class(&l3->list_lock, &on_slab_l3_key);
723 alc = l3->alien;
724 /*
725 * FIXME: This check for BAD_ALIEN_MAGIC
726 * should go away when common slab code is taught to
727 * work even without alien caches.
728 * Currently, non NUMA code returns BAD_ALIEN_MAGIC
729 * for alloc_alien_cache,
730 */
731 if (!alc || (unsigned long)alc == BAD_ALIEN_MAGIC)
732 continue;
733 for_each_node(r) {
734 if (alc[r])
735 lockdep_set_class(&alc[r]->lock,
736 &on_slab_alc_key);
737 }
738 }
739 s++;
Arjan van de Venf1aaee52006-07-13 14:46:03 +0200740 }
741}
Arjan van de Venf1aaee52006-07-13 14:46:03 +0200742#else
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -0700743static inline void init_lock_keys(void)
Arjan van de Venf1aaee52006-07-13 14:46:03 +0200744{
745}
746#endif
747
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -0800748/*
Gautham R Shenoy95402b32008-01-25 21:08:02 +0100749 * Guard access to the cache-chain.
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -0800750 */
Ingo Molnarfc0abb12006-01-18 17:42:33 -0800751static DEFINE_MUTEX(cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752static struct list_head cache_chain;
753
754/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 * chicken and egg problem: delay the per-cpu array allocation
756 * until the general caches are up.
757 */
758static enum {
759 NONE,
Christoph Lametere498be72005-09-09 13:03:32 -0700760 PARTIAL_AC,
761 PARTIAL_L3,
Pekka Enberg8429db52009-06-12 15:58:59 +0300762 EARLY,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 FULL
764} g_cpucache_up;
765
Mike Kravetz39d24e62006-05-15 09:44:13 -0700766/*
767 * used by boot code to determine if it can use slab based allocator
768 */
769int slab_is_available(void)
770{
Pekka Enberg8429db52009-06-12 15:58:59 +0300771 return g_cpucache_up >= EARLY;
Mike Kravetz39d24e62006-05-15 09:44:13 -0700772}
773
David Howells52bad642006-11-22 14:54:01 +0000774static DEFINE_PER_CPU(struct delayed_work, reap_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
Pekka Enberg343e0d72006-02-01 03:05:50 -0800776static inline struct array_cache *cpu_cache_get(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777{
778 return cachep->array[smp_processor_id()];
779}
780
Andrew Mortona737b3e2006-03-22 00:08:11 -0800781static inline struct kmem_cache *__find_general_cachep(size_t size,
782 gfp_t gfpflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783{
784 struct cache_sizes *csizep = malloc_sizes;
785
786#if DEBUG
787 /* This happens if someone tries to call
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800788 * kmem_cache_create(), or __kmalloc(), before
789 * the generic caches are initialized.
790 */
Alok Katariac7e43c72005-09-14 12:17:53 -0700791 BUG_ON(malloc_sizes[INDEX_AC].cs_cachep == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792#endif
Christoph Lameter6cb8f912007-07-17 04:03:22 -0700793 if (!size)
794 return ZERO_SIZE_PTR;
795
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796 while (size > csizep->cs_size)
797 csizep++;
798
799 /*
Martin Hicks0abf40c2005-09-03 15:54:54 -0700800 * Really subtle: The last entry with cs->cs_size==ULONG_MAX
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 * has cs_{dma,}cachep==NULL. Thus no special case
802 * for large kmalloc calls required.
803 */
Christoph Lameter4b51d662007-02-10 01:43:10 -0800804#ifdef CONFIG_ZONE_DMA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 if (unlikely(gfpflags & GFP_DMA))
806 return csizep->cs_dmacachep;
Christoph Lameter4b51d662007-02-10 01:43:10 -0800807#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 return csizep->cs_cachep;
809}
810
Adrian Bunkb2213852006-09-25 23:31:02 -0700811static struct kmem_cache *kmem_find_general_cachep(size_t size, gfp_t gfpflags)
Manfred Spraul97e2bde2005-05-01 08:58:38 -0700812{
813 return __find_general_cachep(size, gfpflags);
814}
Manfred Spraul97e2bde2005-05-01 08:58:38 -0700815
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800816static size_t slab_mgmt_size(size_t nr_objs, size_t align)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817{
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800818 return ALIGN(sizeof(struct slab)+nr_objs*sizeof(kmem_bufctl_t), align);
819}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820
Andrew Mortona737b3e2006-03-22 00:08:11 -0800821/*
822 * Calculate the number of objects and left-over bytes for a given buffer size.
823 */
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800824static void cache_estimate(unsigned long gfporder, size_t buffer_size,
825 size_t align, int flags, size_t *left_over,
826 unsigned int *num)
827{
828 int nr_objs;
829 size_t mgmt_size;
830 size_t slab_size = PAGE_SIZE << gfporder;
831
832 /*
833 * The slab management structure can be either off the slab or
834 * on it. For the latter case, the memory allocated for a
835 * slab is used for:
836 *
837 * - The struct slab
838 * - One kmem_bufctl_t for each object
839 * - Padding to respect alignment of @align
840 * - @buffer_size bytes for each object
841 *
842 * If the slab management structure is off the slab, then the
843 * alignment will already be calculated into the size. Because
844 * the slabs are all pages aligned, the objects will be at the
845 * correct alignment when allocated.
846 */
847 if (flags & CFLGS_OFF_SLAB) {
848 mgmt_size = 0;
849 nr_objs = slab_size / buffer_size;
850
851 if (nr_objs > SLAB_LIMIT)
852 nr_objs = SLAB_LIMIT;
853 } else {
854 /*
855 * Ignore padding for the initial guess. The padding
856 * is at most @align-1 bytes, and @buffer_size is at
857 * least @align. In the worst case, this result will
858 * be one greater than the number of objects that fit
859 * into the memory allocation when taking the padding
860 * into account.
861 */
862 nr_objs = (slab_size - sizeof(struct slab)) /
863 (buffer_size + sizeof(kmem_bufctl_t));
864
865 /*
866 * This calculated number will be either the right
867 * amount, or one greater than what we want.
868 */
869 if (slab_mgmt_size(nr_objs, align) + nr_objs*buffer_size
870 > slab_size)
871 nr_objs--;
872
873 if (nr_objs > SLAB_LIMIT)
874 nr_objs = SLAB_LIMIT;
875
876 mgmt_size = slab_mgmt_size(nr_objs, align);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 }
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800878 *num = nr_objs;
879 *left_over = slab_size - nr_objs*buffer_size - mgmt_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880}
881
Harvey Harrisond40cee22008-04-30 00:55:07 -0700882#define slab_error(cachep, msg) __slab_error(__func__, cachep, msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883
Andrew Mortona737b3e2006-03-22 00:08:11 -0800884static void __slab_error(const char *function, struct kmem_cache *cachep,
885 char *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886{
887 printk(KERN_ERR "slab error in %s(): cache `%s': %s\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800888 function, cachep->name, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 dump_stack();
890}
891
Paul Menage3395ee02006-12-06 20:32:16 -0800892/*
893 * By default on NUMA we use alien caches to stage the freeing of
894 * objects allocated from other nodes. This causes massive memory
895 * inefficiencies when using fake NUMA setup to split memory into a
896 * large number of small nodes, so it can be disabled on the command
897 * line
898 */
899
900static int use_alien_caches __read_mostly = 1;
901static int __init noaliencache_setup(char *s)
902{
903 use_alien_caches = 0;
904 return 1;
905}
906__setup("noaliencache", noaliencache_setup);
907
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800908#ifdef CONFIG_NUMA
909/*
910 * Special reaping functions for NUMA systems called from cache_reap().
911 * These take care of doing round robin flushing of alien caches (containing
912 * objects freed on different nodes from which they were allocated) and the
913 * flushing of remote pcps by calling drain_node_pages.
914 */
915static DEFINE_PER_CPU(unsigned long, reap_node);
916
917static void init_reap_node(int cpu)
918{
919 int node;
920
921 node = next_node(cpu_to_node(cpu), node_online_map);
922 if (node == MAX_NUMNODES)
Paul Jackson442295c2006-03-22 00:09:11 -0800923 node = first_node(node_online_map);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800924
Daniel Yeisley7f6b8872006-11-02 22:07:14 -0800925 per_cpu(reap_node, cpu) = node;
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800926}
927
928static void next_reap_node(void)
929{
930 int node = __get_cpu_var(reap_node);
931
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800932 node = next_node(node, node_online_map);
933 if (unlikely(node >= MAX_NUMNODES))
934 node = first_node(node_online_map);
935 __get_cpu_var(reap_node) = node;
936}
937
938#else
939#define init_reap_node(cpu) do { } while (0)
940#define next_reap_node(void) do { } while (0)
941#endif
942
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943/*
944 * Initiate the reap timer running on the target CPU. We run at around 1 to 2Hz
945 * via the workqueue/eventd.
946 * Add the CPU number into the expiration time to minimize the possibility of
947 * the CPUs getting into lockstep and contending for the global cache chain
948 * lock.
949 */
Adrian Bunk897e6792007-07-15 23:38:20 -0700950static void __cpuinit start_cpu_timer(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951{
David Howells52bad642006-11-22 14:54:01 +0000952 struct delayed_work *reap_work = &per_cpu(reap_work, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953
954 /*
955 * When this gets called from do_initcalls via cpucache_init(),
956 * init_workqueues() has already run, so keventd will be setup
957 * at that time.
958 */
David Howells52bad642006-11-22 14:54:01 +0000959 if (keventd_up() && reap_work->work.func == NULL) {
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800960 init_reap_node(cpu);
David Howells65f27f32006-11-22 14:55:48 +0000961 INIT_DELAYED_WORK(reap_work, cache_reap);
Arjan van de Ven2b284212006-12-10 02:21:28 -0800962 schedule_delayed_work_on(cpu, reap_work,
963 __round_jiffies_relative(HZ, cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 }
965}
966
Christoph Lametere498be72005-09-09 13:03:32 -0700967static struct array_cache *alloc_arraycache(int node, int entries,
Pekka Enberg83b519e2009-06-10 19:40:04 +0300968 int batchcount, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969{
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800970 int memsize = sizeof(void *) * entries + sizeof(struct array_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 struct array_cache *nc = NULL;
972
Pekka Enberg83b519e2009-06-10 19:40:04 +0300973 nc = kmalloc_node(memsize, gfp, node);
Catalin Marinasd5cff632009-06-11 13:22:40 +0100974 /*
975 * The array_cache structures contain pointers to free object.
976 * However, when such objects are allocated or transfered to another
977 * cache the pointers are not cleared and they could be counted as
978 * valid references during a kmemleak scan. Therefore, kmemleak must
979 * not scan such objects.
980 */
981 kmemleak_no_scan(nc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982 if (nc) {
983 nc->avail = 0;
984 nc->limit = entries;
985 nc->batchcount = batchcount;
986 nc->touched = 0;
Christoph Lametere498be72005-09-09 13:03:32 -0700987 spin_lock_init(&nc->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988 }
989 return nc;
990}
991
Christoph Lameter3ded1752006-03-25 03:06:44 -0800992/*
993 * Transfer objects in one arraycache to another.
994 * Locking must be handled by the caller.
995 *
996 * Return the number of entries transferred.
997 */
998static int transfer_objects(struct array_cache *to,
999 struct array_cache *from, unsigned int max)
1000{
1001 /* Figure out how many entries to transfer */
1002 int nr = min(min(from->avail, max), to->limit - to->avail);
1003
1004 if (!nr)
1005 return 0;
1006
1007 memcpy(to->entry + to->avail, from->entry + from->avail -nr,
1008 sizeof(void *) *nr);
1009
1010 from->avail -= nr;
1011 to->avail += nr;
1012 to->touched = 1;
1013 return nr;
1014}
1015
Christoph Lameter765c4502006-09-27 01:50:08 -07001016#ifndef CONFIG_NUMA
1017
1018#define drain_alien_cache(cachep, alien) do { } while (0)
1019#define reap_alien(cachep, l3) do { } while (0)
1020
Pekka Enberg83b519e2009-06-10 19:40:04 +03001021static inline struct array_cache **alloc_alien_cache(int node, int limit, gfp_t gfp)
Christoph Lameter765c4502006-09-27 01:50:08 -07001022{
1023 return (struct array_cache **)BAD_ALIEN_MAGIC;
1024}
1025
1026static inline void free_alien_cache(struct array_cache **ac_ptr)
1027{
1028}
1029
1030static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
1031{
1032 return 0;
1033}
1034
1035static inline void *alternate_node_alloc(struct kmem_cache *cachep,
1036 gfp_t flags)
1037{
1038 return NULL;
1039}
1040
Christoph Hellwig8b98c162006-12-06 20:32:30 -08001041static inline void *____cache_alloc_node(struct kmem_cache *cachep,
Christoph Lameter765c4502006-09-27 01:50:08 -07001042 gfp_t flags, int nodeid)
1043{
1044 return NULL;
1045}
1046
1047#else /* CONFIG_NUMA */
1048
Christoph Hellwig8b98c162006-12-06 20:32:30 -08001049static void *____cache_alloc_node(struct kmem_cache *, gfp_t, int);
Paul Jacksonc61afb12006-03-24 03:16:08 -08001050static void *alternate_node_alloc(struct kmem_cache *, gfp_t);
Christoph Lameterdc85da12006-01-18 17:42:36 -08001051
Pekka Enberg83b519e2009-06-10 19:40:04 +03001052static struct array_cache **alloc_alien_cache(int node, int limit, gfp_t gfp)
Christoph Lametere498be72005-09-09 13:03:32 -07001053{
1054 struct array_cache **ac_ptr;
Christoph Lameter8ef82862007-02-20 13:57:52 -08001055 int memsize = sizeof(void *) * nr_node_ids;
Christoph Lametere498be72005-09-09 13:03:32 -07001056 int i;
1057
1058 if (limit > 1)
1059 limit = 12;
Pekka Enberg83b519e2009-06-10 19:40:04 +03001060 ac_ptr = kmalloc_node(memsize, gfp, node);
Christoph Lametere498be72005-09-09 13:03:32 -07001061 if (ac_ptr) {
1062 for_each_node(i) {
1063 if (i == node || !node_online(i)) {
1064 ac_ptr[i] = NULL;
1065 continue;
1066 }
Pekka Enberg83b519e2009-06-10 19:40:04 +03001067 ac_ptr[i] = alloc_arraycache(node, limit, 0xbaadf00d, gfp);
Christoph Lametere498be72005-09-09 13:03:32 -07001068 if (!ac_ptr[i]) {
Akinobu Mitacc550de2007-11-14 16:58:35 -08001069 for (i--; i >= 0; i--)
Christoph Lametere498be72005-09-09 13:03:32 -07001070 kfree(ac_ptr[i]);
1071 kfree(ac_ptr);
1072 return NULL;
1073 }
1074 }
1075 }
1076 return ac_ptr;
1077}
1078
Pekka Enberg5295a742006-02-01 03:05:48 -08001079static void free_alien_cache(struct array_cache **ac_ptr)
Christoph Lametere498be72005-09-09 13:03:32 -07001080{
1081 int i;
1082
1083 if (!ac_ptr)
1084 return;
Christoph Lametere498be72005-09-09 13:03:32 -07001085 for_each_node(i)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001086 kfree(ac_ptr[i]);
Christoph Lametere498be72005-09-09 13:03:32 -07001087 kfree(ac_ptr);
1088}
1089
Pekka Enberg343e0d72006-02-01 03:05:50 -08001090static void __drain_alien_cache(struct kmem_cache *cachep,
Pekka Enberg5295a742006-02-01 03:05:48 -08001091 struct array_cache *ac, int node)
Christoph Lametere498be72005-09-09 13:03:32 -07001092{
1093 struct kmem_list3 *rl3 = cachep->nodelists[node];
1094
1095 if (ac->avail) {
1096 spin_lock(&rl3->list_lock);
Christoph Lametere00946f2006-03-25 03:06:45 -08001097 /*
1098 * Stuff objects into the remote nodes shared array first.
1099 * That way we could avoid the overhead of putting the objects
1100 * into the free lists and getting them back later.
1101 */
shin, jacob693f7d32006-04-28 10:54:37 -05001102 if (rl3->shared)
1103 transfer_objects(rl3->shared, ac, ac->limit);
Christoph Lametere00946f2006-03-25 03:06:45 -08001104
Christoph Lameterff694162005-09-22 21:44:02 -07001105 free_block(cachep, ac->entry, ac->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -07001106 ac->avail = 0;
1107 spin_unlock(&rl3->list_lock);
1108 }
1109}
1110
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001111/*
1112 * Called from cache_reap() to regularly drain alien caches round robin.
1113 */
1114static void reap_alien(struct kmem_cache *cachep, struct kmem_list3 *l3)
1115{
1116 int node = __get_cpu_var(reap_node);
1117
1118 if (l3->alien) {
1119 struct array_cache *ac = l3->alien[node];
Christoph Lametere00946f2006-03-25 03:06:45 -08001120
1121 if (ac && ac->avail && spin_trylock_irq(&ac->lock)) {
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001122 __drain_alien_cache(cachep, ac, node);
1123 spin_unlock_irq(&ac->lock);
1124 }
1125 }
1126}
1127
Andrew Mortona737b3e2006-03-22 00:08:11 -08001128static void drain_alien_cache(struct kmem_cache *cachep,
1129 struct array_cache **alien)
Christoph Lametere498be72005-09-09 13:03:32 -07001130{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001131 int i = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07001132 struct array_cache *ac;
1133 unsigned long flags;
1134
1135 for_each_online_node(i) {
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001136 ac = alien[i];
Christoph Lametere498be72005-09-09 13:03:32 -07001137 if (ac) {
1138 spin_lock_irqsave(&ac->lock, flags);
1139 __drain_alien_cache(cachep, ac, i);
1140 spin_unlock_irqrestore(&ac->lock, flags);
1141 }
1142 }
1143}
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001144
Ingo Molnar873623d2006-07-13 14:44:38 +02001145static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001146{
1147 struct slab *slabp = virt_to_slab(objp);
1148 int nodeid = slabp->nodeid;
1149 struct kmem_list3 *l3;
1150 struct array_cache *alien = NULL;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001151 int node;
1152
1153 node = numa_node_id();
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001154
1155 /*
1156 * Make sure we are not freeing a object from another node to the array
1157 * cache on this cpu.
1158 */
Siddha, Suresh B62918a02007-05-02 19:27:18 +02001159 if (likely(slabp->nodeid == node))
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001160 return 0;
1161
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001162 l3 = cachep->nodelists[node];
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001163 STATS_INC_NODEFREES(cachep);
1164 if (l3->alien && l3->alien[nodeid]) {
1165 alien = l3->alien[nodeid];
Ingo Molnar873623d2006-07-13 14:44:38 +02001166 spin_lock(&alien->lock);
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001167 if (unlikely(alien->avail == alien->limit)) {
1168 STATS_INC_ACOVERFLOW(cachep);
1169 __drain_alien_cache(cachep, alien, nodeid);
1170 }
1171 alien->entry[alien->avail++] = objp;
1172 spin_unlock(&alien->lock);
1173 } else {
1174 spin_lock(&(cachep->nodelists[nodeid])->list_lock);
1175 free_block(cachep, &objp, 1, nodeid);
1176 spin_unlock(&(cachep->nodelists[nodeid])->list_lock);
1177 }
1178 return 1;
1179}
Christoph Lametere498be72005-09-09 13:03:32 -07001180#endif
1181
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001182static void __cpuinit cpuup_canceled(long cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183{
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001184 struct kmem_cache *cachep;
1185 struct kmem_list3 *l3 = NULL;
1186 int node = cpu_to_node(cpu);
Rusty Russella70f7302009-03-13 14:49:46 +10301187 const struct cpumask *mask = cpumask_of_node(node);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001188
1189 list_for_each_entry(cachep, &cache_chain, next) {
1190 struct array_cache *nc;
1191 struct array_cache *shared;
1192 struct array_cache **alien;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001193
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001194 /* cpu is dead; no one can alloc from it. */
1195 nc = cachep->array[cpu];
1196 cachep->array[cpu] = NULL;
1197 l3 = cachep->nodelists[node];
1198
1199 if (!l3)
1200 goto free_array_cache;
1201
1202 spin_lock_irq(&l3->list_lock);
1203
1204 /* Free limit for this kmem_list3 */
1205 l3->free_limit -= cachep->batchcount;
1206 if (nc)
1207 free_block(cachep, nc->entry, nc->avail, node);
1208
Mike Travisc5f59f02008-04-04 18:11:10 -07001209 if (!cpus_empty(*mask)) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001210 spin_unlock_irq(&l3->list_lock);
1211 goto free_array_cache;
1212 }
1213
1214 shared = l3->shared;
1215 if (shared) {
1216 free_block(cachep, shared->entry,
1217 shared->avail, node);
1218 l3->shared = NULL;
1219 }
1220
1221 alien = l3->alien;
1222 l3->alien = NULL;
1223
1224 spin_unlock_irq(&l3->list_lock);
1225
1226 kfree(shared);
1227 if (alien) {
1228 drain_alien_cache(cachep, alien);
1229 free_alien_cache(alien);
1230 }
1231free_array_cache:
1232 kfree(nc);
1233 }
1234 /*
1235 * In the previous loop, all the objects were freed to
1236 * the respective cache's slabs, now we can go ahead and
1237 * shrink each nodelist to its limit.
1238 */
1239 list_for_each_entry(cachep, &cache_chain, next) {
1240 l3 = cachep->nodelists[node];
1241 if (!l3)
1242 continue;
1243 drain_freelist(cachep, l3, l3->free_objects);
1244 }
1245}
1246
1247static int __cpuinit cpuup_prepare(long cpu)
1248{
Pekka Enberg343e0d72006-02-01 03:05:50 -08001249 struct kmem_cache *cachep;
Christoph Lametere498be72005-09-09 13:03:32 -07001250 struct kmem_list3 *l3 = NULL;
1251 int node = cpu_to_node(cpu);
David Howellsea02e3d2007-07-19 01:49:09 -07001252 const int memsize = sizeof(struct kmem_list3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001254 /*
1255 * We need to do this right in the beginning since
1256 * alloc_arraycache's are going to use this list.
1257 * kmalloc_node allows us to add the slab to the right
1258 * kmem_list3 and not this cpu's kmem_list3
1259 */
1260
1261 list_for_each_entry(cachep, &cache_chain, next) {
1262 /*
1263 * Set up the size64 kmemlist for cpu before we can
1264 * begin anything. Make sure some other cpu on this
1265 * node has not already allocated this
1266 */
1267 if (!cachep->nodelists[node]) {
1268 l3 = kmalloc_node(memsize, GFP_KERNEL, node);
1269 if (!l3)
1270 goto bad;
1271 kmem_list3_init(l3);
1272 l3->next_reap = jiffies + REAPTIMEOUT_LIST3 +
1273 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
1274
1275 /*
1276 * The l3s don't come and go as CPUs come and
1277 * go. cache_chain_mutex is sufficient
1278 * protection here.
1279 */
1280 cachep->nodelists[node] = l3;
1281 }
1282
1283 spin_lock_irq(&cachep->nodelists[node]->list_lock);
1284 cachep->nodelists[node]->free_limit =
1285 (1 + nr_cpus_node(node)) *
1286 cachep->batchcount + cachep->num;
1287 spin_unlock_irq(&cachep->nodelists[node]->list_lock);
1288 }
1289
1290 /*
1291 * Now we can go ahead with allocating the shared arrays and
1292 * array caches
1293 */
1294 list_for_each_entry(cachep, &cache_chain, next) {
1295 struct array_cache *nc;
1296 struct array_cache *shared = NULL;
1297 struct array_cache **alien = NULL;
1298
1299 nc = alloc_arraycache(node, cachep->limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03001300 cachep->batchcount, GFP_KERNEL);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001301 if (!nc)
1302 goto bad;
1303 if (cachep->shared) {
1304 shared = alloc_arraycache(node,
1305 cachep->shared * cachep->batchcount,
Pekka Enberg83b519e2009-06-10 19:40:04 +03001306 0xbaadf00d, GFP_KERNEL);
Akinobu Mita12d00f62007-10-18 03:05:11 -07001307 if (!shared) {
1308 kfree(nc);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001309 goto bad;
Akinobu Mita12d00f62007-10-18 03:05:11 -07001310 }
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001311 }
1312 if (use_alien_caches) {
Pekka Enberg83b519e2009-06-10 19:40:04 +03001313 alien = alloc_alien_cache(node, cachep->limit, GFP_KERNEL);
Akinobu Mita12d00f62007-10-18 03:05:11 -07001314 if (!alien) {
1315 kfree(shared);
1316 kfree(nc);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001317 goto bad;
Akinobu Mita12d00f62007-10-18 03:05:11 -07001318 }
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001319 }
1320 cachep->array[cpu] = nc;
1321 l3 = cachep->nodelists[node];
1322 BUG_ON(!l3);
1323
1324 spin_lock_irq(&l3->list_lock);
1325 if (!l3->shared) {
1326 /*
1327 * We are serialised from CPU_DEAD or
1328 * CPU_UP_CANCELLED by the cpucontrol lock
1329 */
1330 l3->shared = shared;
1331 shared = NULL;
1332 }
1333#ifdef CONFIG_NUMA
1334 if (!l3->alien) {
1335 l3->alien = alien;
1336 alien = NULL;
1337 }
1338#endif
1339 spin_unlock_irq(&l3->list_lock);
1340 kfree(shared);
1341 free_alien_cache(alien);
1342 }
1343 return 0;
1344bad:
Akinobu Mita12d00f62007-10-18 03:05:11 -07001345 cpuup_canceled(cpu);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001346 return -ENOMEM;
1347}
1348
1349static int __cpuinit cpuup_callback(struct notifier_block *nfb,
1350 unsigned long action, void *hcpu)
1351{
1352 long cpu = (long)hcpu;
1353 int err = 0;
1354
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 switch (action) {
Heiko Carstens38c3bd92007-05-09 02:34:05 -07001356 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001357 case CPU_UP_PREPARE_FROZEN:
Gautham R Shenoy95402b32008-01-25 21:08:02 +01001358 mutex_lock(&cache_chain_mutex);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001359 err = cpuup_prepare(cpu);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01001360 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 break;
1362 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001363 case CPU_ONLINE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 start_cpu_timer(cpu);
1365 break;
1366#ifdef CONFIG_HOTPLUG_CPU
Christoph Lameter5830c592007-05-09 02:34:22 -07001367 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001368 case CPU_DOWN_PREPARE_FROZEN:
Christoph Lameter5830c592007-05-09 02:34:22 -07001369 /*
1370 * Shutdown cache reaper. Note that the cache_chain_mutex is
1371 * held so that if cache_reap() is invoked it cannot do
1372 * anything expensive but will only modify reap_work
1373 * and reschedule the timer.
1374 */
1375 cancel_rearming_delayed_work(&per_cpu(reap_work, cpu));
1376 /* Now the cache_reaper is guaranteed to be not running. */
1377 per_cpu(reap_work, cpu).work.func = NULL;
1378 break;
1379 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001380 case CPU_DOWN_FAILED_FROZEN:
Christoph Lameter5830c592007-05-09 02:34:22 -07001381 start_cpu_timer(cpu);
1382 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001384 case CPU_DEAD_FROZEN:
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001385 /*
1386 * Even if all the cpus of a node are down, we don't free the
1387 * kmem_list3 of any cache. This to avoid a race between
1388 * cpu_down, and a kmalloc allocation from another cpu for
1389 * memory from the node of the cpu going down. The list3
1390 * structure is usually allocated from kmem_cache_create() and
1391 * gets destroyed at kmem_cache_destroy().
1392 */
Simon Arlott183ff222007-10-20 01:27:18 +02001393 /* fall through */
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08001394#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001396 case CPU_UP_CANCELED_FROZEN:
Gautham R Shenoy95402b32008-01-25 21:08:02 +01001397 mutex_lock(&cache_chain_mutex);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001398 cpuup_canceled(cpu);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001399 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 }
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001402 return err ? NOTIFY_BAD : NOTIFY_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403}
1404
Chandra Seetharaman74b85f32006-06-27 02:54:09 -07001405static struct notifier_block __cpuinitdata cpucache_notifier = {
1406 &cpuup_callback, NULL, 0
1407};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408
Christoph Lametere498be72005-09-09 13:03:32 -07001409/*
1410 * swap the static kmem_list3 with kmalloced memory
1411 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08001412static void init_list(struct kmem_cache *cachep, struct kmem_list3 *list,
1413 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07001414{
1415 struct kmem_list3 *ptr;
1416
Pekka Enberg83b519e2009-06-10 19:40:04 +03001417 ptr = kmalloc_node(sizeof(struct kmem_list3), GFP_NOWAIT, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07001418 BUG_ON(!ptr);
1419
Christoph Lametere498be72005-09-09 13:03:32 -07001420 memcpy(ptr, list, sizeof(struct kmem_list3));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001421 /*
1422 * Do not assume that spinlocks can be initialized via memcpy:
1423 */
1424 spin_lock_init(&ptr->list_lock);
1425
Christoph Lametere498be72005-09-09 13:03:32 -07001426 MAKE_ALL_LISTS(cachep, ptr, nodeid);
1427 cachep->nodelists[nodeid] = ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001428}
1429
Andrew Mortona737b3e2006-03-22 00:08:11 -08001430/*
Pekka Enberg556a1692008-01-25 08:20:51 +02001431 * For setting up all the kmem_list3s for cache whose buffer_size is same as
1432 * size of kmem_list3.
1433 */
1434static void __init set_up_list3s(struct kmem_cache *cachep, int index)
1435{
1436 int node;
1437
1438 for_each_online_node(node) {
1439 cachep->nodelists[node] = &initkmem_list3[index + node];
1440 cachep->nodelists[node]->next_reap = jiffies +
1441 REAPTIMEOUT_LIST3 +
1442 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
1443 }
1444}
1445
1446/*
Andrew Mortona737b3e2006-03-22 00:08:11 -08001447 * Initialisation. Called after the page allocator have been initialised and
1448 * before smp_init().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 */
1450void __init kmem_cache_init(void)
1451{
1452 size_t left_over;
1453 struct cache_sizes *sizes;
1454 struct cache_names *names;
Christoph Lametere498be72005-09-09 13:03:32 -07001455 int i;
Jack Steiner07ed76b2006-03-07 21:55:46 -08001456 int order;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001457 int node;
Christoph Lametere498be72005-09-09 13:03:32 -07001458
Mel Gormanb6e68bc2009-06-16 15:32:16 -07001459 if (num_possible_nodes() == 1)
Siddha, Suresh B62918a02007-05-02 19:27:18 +02001460 use_alien_caches = 0;
1461
Christoph Lametere498be72005-09-09 13:03:32 -07001462 for (i = 0; i < NUM_INIT_LISTS; i++) {
1463 kmem_list3_init(&initkmem_list3[i]);
1464 if (i < MAX_NUMNODES)
1465 cache_cache.nodelists[i] = NULL;
1466 }
Pekka Enberg556a1692008-01-25 08:20:51 +02001467 set_up_list3s(&cache_cache, CACHE_CACHE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468
1469 /*
1470 * Fragmentation resistance on low memory - only use bigger
1471 * page orders on machines with more than 32MB of memory.
1472 */
1473 if (num_physpages > (32 << 20) >> PAGE_SHIFT)
1474 slab_break_gfp_order = BREAK_GFP_ORDER_HI;
1475
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 /* Bootstrap is tricky, because several objects are allocated
1477 * from caches that do not exist yet:
Andrew Mortona737b3e2006-03-22 00:08:11 -08001478 * 1) initialize the cache_cache cache: it contains the struct
1479 * kmem_cache structures of all caches, except cache_cache itself:
1480 * cache_cache is statically allocated.
Christoph Lametere498be72005-09-09 13:03:32 -07001481 * Initially an __init data area is used for the head array and the
1482 * kmem_list3 structures, it's replaced with a kmalloc allocated
1483 * array at the end of the bootstrap.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 * 2) Create the first kmalloc cache.
Pekka Enberg343e0d72006-02-01 03:05:50 -08001485 * The struct kmem_cache for the new cache is allocated normally.
Christoph Lametere498be72005-09-09 13:03:32 -07001486 * An __init data area is used for the head array.
1487 * 3) Create the remaining kmalloc caches, with minimally sized
1488 * head arrays.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 * 4) Replace the __init data head arrays for cache_cache and the first
1490 * kmalloc cache with kmalloc allocated arrays.
Christoph Lametere498be72005-09-09 13:03:32 -07001491 * 5) Replace the __init data for kmem_list3 for cache_cache and
1492 * the other cache's with kmalloc allocated memory.
1493 * 6) Resize the head arrays of the kmalloc caches to their final sizes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 */
1495
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001496 node = numa_node_id();
1497
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 /* 1) create the cache_cache */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 INIT_LIST_HEAD(&cache_chain);
1500 list_add(&cache_cache.next, &cache_chain);
1501 cache_cache.colour_off = cache_line_size();
1502 cache_cache.array[smp_processor_id()] = &initarray_cache.cache;
Daniel Yeisleyec1f5ee2008-03-25 23:59:08 +02001503 cache_cache.nodelists[node] = &initkmem_list3[CACHE_CACHE + node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504
Eric Dumazet8da34302007-05-06 14:49:29 -07001505 /*
1506 * struct kmem_cache size depends on nr_node_ids, which
1507 * can be less than MAX_NUMNODES.
1508 */
1509 cache_cache.buffer_size = offsetof(struct kmem_cache, nodelists) +
1510 nr_node_ids * sizeof(struct kmem_list3 *);
1511#if DEBUG
1512 cache_cache.obj_size = cache_cache.buffer_size;
1513#endif
Andrew Mortona737b3e2006-03-22 00:08:11 -08001514 cache_cache.buffer_size = ALIGN(cache_cache.buffer_size,
1515 cache_line_size());
Eric Dumazet6a2d7a92006-12-13 00:34:27 -08001516 cache_cache.reciprocal_buffer_size =
1517 reciprocal_value(cache_cache.buffer_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518
Jack Steiner07ed76b2006-03-07 21:55:46 -08001519 for (order = 0; order < MAX_ORDER; order++) {
1520 cache_estimate(order, cache_cache.buffer_size,
1521 cache_line_size(), 0, &left_over, &cache_cache.num);
1522 if (cache_cache.num)
1523 break;
1524 }
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02001525 BUG_ON(!cache_cache.num);
Jack Steiner07ed76b2006-03-07 21:55:46 -08001526 cache_cache.gfporder = order;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001527 cache_cache.colour = left_over / cache_cache.colour_off;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001528 cache_cache.slab_size = ALIGN(cache_cache.num * sizeof(kmem_bufctl_t) +
1529 sizeof(struct slab), cache_line_size());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530
1531 /* 2+3) create the kmalloc caches */
1532 sizes = malloc_sizes;
1533 names = cache_names;
1534
Andrew Mortona737b3e2006-03-22 00:08:11 -08001535 /*
1536 * Initialize the caches that provide memory for the array cache and the
1537 * kmem_list3 structures first. Without this, further allocations will
1538 * bug.
Christoph Lametere498be72005-09-09 13:03:32 -07001539 */
1540
1541 sizes[INDEX_AC].cs_cachep = kmem_cache_create(names[INDEX_AC].name,
Andrew Mortona737b3e2006-03-22 00:08:11 -08001542 sizes[INDEX_AC].cs_size,
1543 ARCH_KMALLOC_MINALIGN,
1544 ARCH_KMALLOC_FLAGS|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09001545 NULL);
Christoph Lametere498be72005-09-09 13:03:32 -07001546
Andrew Mortona737b3e2006-03-22 00:08:11 -08001547 if (INDEX_AC != INDEX_L3) {
Christoph Lametere498be72005-09-09 13:03:32 -07001548 sizes[INDEX_L3].cs_cachep =
Andrew Mortona737b3e2006-03-22 00:08:11 -08001549 kmem_cache_create(names[INDEX_L3].name,
1550 sizes[INDEX_L3].cs_size,
1551 ARCH_KMALLOC_MINALIGN,
1552 ARCH_KMALLOC_FLAGS|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09001553 NULL);
Andrew Mortona737b3e2006-03-22 00:08:11 -08001554 }
Christoph Lametere498be72005-09-09 13:03:32 -07001555
Ingo Molnare0a42722006-06-23 02:03:46 -07001556 slab_early_init = 0;
1557
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 while (sizes->cs_size != ULONG_MAX) {
Christoph Lametere498be72005-09-09 13:03:32 -07001559 /*
1560 * For performance, all the general caches are L1 aligned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 * This should be particularly beneficial on SMP boxes, as it
1562 * eliminates "false sharing".
1563 * Note for systems short on memory removing the alignment will
Christoph Lametere498be72005-09-09 13:03:32 -07001564 * allow tighter packing of the smaller caches.
1565 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08001566 if (!sizes->cs_cachep) {
Christoph Lametere498be72005-09-09 13:03:32 -07001567 sizes->cs_cachep = kmem_cache_create(names->name,
Andrew Mortona737b3e2006-03-22 00:08:11 -08001568 sizes->cs_size,
1569 ARCH_KMALLOC_MINALIGN,
1570 ARCH_KMALLOC_FLAGS|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09001571 NULL);
Andrew Mortona737b3e2006-03-22 00:08:11 -08001572 }
Christoph Lameter4b51d662007-02-10 01:43:10 -08001573#ifdef CONFIG_ZONE_DMA
1574 sizes->cs_dmacachep = kmem_cache_create(
1575 names->name_dma,
Andrew Mortona737b3e2006-03-22 00:08:11 -08001576 sizes->cs_size,
1577 ARCH_KMALLOC_MINALIGN,
1578 ARCH_KMALLOC_FLAGS|SLAB_CACHE_DMA|
1579 SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09001580 NULL);
Christoph Lameter4b51d662007-02-10 01:43:10 -08001581#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 sizes++;
1583 names++;
1584 }
1585 /* 4) Replace the bootstrap head arrays */
1586 {
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001587 struct array_cache *ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001588
Pekka Enberg83b519e2009-06-10 19:40:04 +03001589 ptr = kmalloc(sizeof(struct arraycache_init), GFP_NOWAIT);
Christoph Lametere498be72005-09-09 13:03:32 -07001590
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001591 BUG_ON(cpu_cache_get(&cache_cache) != &initarray_cache.cache);
1592 memcpy(ptr, cpu_cache_get(&cache_cache),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001593 sizeof(struct arraycache_init));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001594 /*
1595 * Do not assume that spinlocks can be initialized via memcpy:
1596 */
1597 spin_lock_init(&ptr->lock);
1598
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 cache_cache.array[smp_processor_id()] = ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001600
Pekka Enberg83b519e2009-06-10 19:40:04 +03001601 ptr = kmalloc(sizeof(struct arraycache_init), GFP_NOWAIT);
Christoph Lametere498be72005-09-09 13:03:32 -07001602
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001603 BUG_ON(cpu_cache_get(malloc_sizes[INDEX_AC].cs_cachep)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001604 != &initarray_generic.cache);
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001605 memcpy(ptr, cpu_cache_get(malloc_sizes[INDEX_AC].cs_cachep),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001606 sizeof(struct arraycache_init));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001607 /*
1608 * Do not assume that spinlocks can be initialized via memcpy:
1609 */
1610 spin_lock_init(&ptr->lock);
1611
Christoph Lametere498be72005-09-09 13:03:32 -07001612 malloc_sizes[INDEX_AC].cs_cachep->array[smp_processor_id()] =
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001613 ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 }
Christoph Lametere498be72005-09-09 13:03:32 -07001615 /* 5) Replace the bootstrap kmem_list3's */
1616 {
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001617 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618
Mel Gorman9c09a952008-01-24 05:49:54 -08001619 for_each_online_node(nid) {
Daniel Yeisleyec1f5ee2008-03-25 23:59:08 +02001620 init_list(&cache_cache, &initkmem_list3[CACHE_CACHE + nid], nid);
Pekka Enberg556a1692008-01-25 08:20:51 +02001621
Christoph Lametere498be72005-09-09 13:03:32 -07001622 init_list(malloc_sizes[INDEX_AC].cs_cachep,
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001623 &initkmem_list3[SIZE_AC + nid], nid);
Christoph Lametere498be72005-09-09 13:03:32 -07001624
1625 if (INDEX_AC != INDEX_L3) {
1626 init_list(malloc_sizes[INDEX_L3].cs_cachep,
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001627 &initkmem_list3[SIZE_L3 + nid], nid);
Christoph Lametere498be72005-09-09 13:03:32 -07001628 }
1629 }
1630 }
1631
Pekka Enberg8429db52009-06-12 15:58:59 +03001632 g_cpucache_up = EARLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -07001634 /* Annotate slab for lockdep -- annotate the malloc caches */
1635 init_lock_keys();
Pekka Enberg8429db52009-06-12 15:58:59 +03001636}
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -07001637
Pekka Enberg8429db52009-06-12 15:58:59 +03001638void __init kmem_cache_init_late(void)
1639{
1640 struct kmem_cache *cachep;
1641
1642 /*
1643 * Interrupts are enabled now so all GFP allocations are safe.
1644 */
1645 slab_gfp_mask = __GFP_BITS_MASK;
1646
1647 /* 6) resize the head arrays to their final sizes */
1648 mutex_lock(&cache_chain_mutex);
1649 list_for_each_entry(cachep, &cache_chain, next)
1650 if (enable_cpucache(cachep, GFP_NOWAIT))
1651 BUG();
1652 mutex_unlock(&cache_chain_mutex);
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -07001653
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 /* Done! */
1655 g_cpucache_up = FULL;
1656
Andrew Mortona737b3e2006-03-22 00:08:11 -08001657 /*
1658 * Register a cpu startup notifier callback that initializes
1659 * cpu_cache_get for all new cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660 */
1661 register_cpu_notifier(&cpucache_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662
Andrew Mortona737b3e2006-03-22 00:08:11 -08001663 /*
1664 * The reap timers are started later, with a module init call: That part
1665 * of the kernel is not yet operational.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 */
1667}
1668
1669static int __init cpucache_init(void)
1670{
1671 int cpu;
1672
Andrew Mortona737b3e2006-03-22 00:08:11 -08001673 /*
1674 * Register the timers that return unneeded pages to the page allocator
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 */
Christoph Lametere498be72005-09-09 13:03:32 -07001676 for_each_online_cpu(cpu)
Andrew Mortona737b3e2006-03-22 00:08:11 -08001677 start_cpu_timer(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 return 0;
1679}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680__initcall(cpucache_init);
1681
1682/*
1683 * Interface to system's page allocator. No need to hold the cache-lock.
1684 *
1685 * If we requested dmaable memory, we will get it. Even if we
1686 * did not request dmaable memory, we might get it, but that
1687 * would be relatively rare and ignorable.
1688 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001689static void *kmem_getpages(struct kmem_cache *cachep, gfp_t flags, int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690{
1691 struct page *page;
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001692 int nr_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 int i;
1694
Luke Yangd6fef9d2006-04-10 22:52:56 -07001695#ifndef CONFIG_MMU
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001696 /*
1697 * Nommu uses slab's for process anonymous memory allocations, and thus
1698 * requires __GFP_COMP to properly refcount higher order allocations
Luke Yangd6fef9d2006-04-10 22:52:56 -07001699 */
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001700 flags |= __GFP_COMP;
Luke Yangd6fef9d2006-04-10 22:52:56 -07001701#endif
Christoph Lameter765c4502006-09-27 01:50:08 -07001702
Christoph Lameter3c517a62006-12-06 20:33:29 -08001703 flags |= cachep->gfpflags;
Mel Gormane12ba742007-10-16 01:25:52 -07001704 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1705 flags |= __GFP_RECLAIMABLE;
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001706
Mel Gorman6484eb32009-06-16 15:31:54 -07001707 page = alloc_pages_exact_node(nodeid, flags, cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 if (!page)
1709 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001710
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001711 nr_pages = (1 << cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
Christoph Lameter972d1a72006-09-25 23:31:51 -07001713 add_zone_page_state(page_zone(page),
1714 NR_SLAB_RECLAIMABLE, nr_pages);
1715 else
1716 add_zone_page_state(page_zone(page),
1717 NR_SLAB_UNRECLAIMABLE, nr_pages);
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001718 for (i = 0; i < nr_pages; i++)
1719 __SetPageSlab(page + i);
1720 return page_address(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721}
1722
1723/*
1724 * Interface to system's page release.
1725 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001726static void kmem_freepages(struct kmem_cache *cachep, void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001728 unsigned long i = (1 << cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 struct page *page = virt_to_page(addr);
1730 const unsigned long nr_freed = i;
1731
Christoph Lameter972d1a72006-09-25 23:31:51 -07001732 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1733 sub_zone_page_state(page_zone(page),
1734 NR_SLAB_RECLAIMABLE, nr_freed);
1735 else
1736 sub_zone_page_state(page_zone(page),
1737 NR_SLAB_UNRECLAIMABLE, nr_freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 while (i--) {
Nick Pigginf205b2f2006-03-22 00:08:02 -08001739 BUG_ON(!PageSlab(page));
1740 __ClearPageSlab(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 page++;
1742 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 if (current->reclaim_state)
1744 current->reclaim_state->reclaimed_slab += nr_freed;
1745 free_pages((unsigned long)addr, cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746}
1747
1748static void kmem_rcu_free(struct rcu_head *head)
1749{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001750 struct slab_rcu *slab_rcu = (struct slab_rcu *)head;
Pekka Enberg343e0d72006-02-01 03:05:50 -08001751 struct kmem_cache *cachep = slab_rcu->cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752
1753 kmem_freepages(cachep, slab_rcu->addr);
1754 if (OFF_SLAB(cachep))
1755 kmem_cache_free(cachep->slabp_cache, slab_rcu);
1756}
1757
1758#if DEBUG
1759
1760#ifdef CONFIG_DEBUG_PAGEALLOC
Pekka Enberg343e0d72006-02-01 03:05:50 -08001761static void store_stackinfo(struct kmem_cache *cachep, unsigned long *addr,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001762 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763{
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001764 int size = obj_size(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001766 addr = (unsigned long *)&((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001768 if (size < 5 * sizeof(unsigned long))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 return;
1770
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001771 *addr++ = 0x12345678;
1772 *addr++ = caller;
1773 *addr++ = smp_processor_id();
1774 size -= 3 * sizeof(unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 {
1776 unsigned long *sptr = &caller;
1777 unsigned long svalue;
1778
1779 while (!kstack_end(sptr)) {
1780 svalue = *sptr++;
1781 if (kernel_text_address(svalue)) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001782 *addr++ = svalue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 size -= sizeof(unsigned long);
1784 if (size <= sizeof(unsigned long))
1785 break;
1786 }
1787 }
1788
1789 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001790 *addr++ = 0x87654321;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791}
1792#endif
1793
Pekka Enberg343e0d72006-02-01 03:05:50 -08001794static void poison_obj(struct kmem_cache *cachep, void *addr, unsigned char val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795{
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001796 int size = obj_size(cachep);
1797 addr = &((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798
1799 memset(addr, val, size);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001800 *(unsigned char *)(addr + size - 1) = POISON_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801}
1802
1803static void dump_line(char *data, int offset, int limit)
1804{
1805 int i;
Dave Jonesaa83aa42006-09-29 01:59:51 -07001806 unsigned char error = 0;
1807 int bad_count = 0;
1808
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 printk(KERN_ERR "%03x:", offset);
Dave Jonesaa83aa42006-09-29 01:59:51 -07001810 for (i = 0; i < limit; i++) {
1811 if (data[offset + i] != POISON_FREE) {
1812 error = data[offset + i];
1813 bad_count++;
1814 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001815 printk(" %02x", (unsigned char)data[offset + i]);
Dave Jonesaa83aa42006-09-29 01:59:51 -07001816 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 printk("\n");
Dave Jonesaa83aa42006-09-29 01:59:51 -07001818
1819 if (bad_count == 1) {
1820 error ^= POISON_FREE;
1821 if (!(error & (error - 1))) {
1822 printk(KERN_ERR "Single bit error detected. Probably "
1823 "bad RAM.\n");
1824#ifdef CONFIG_X86
1825 printk(KERN_ERR "Run memtest86+ or a similar memory "
1826 "test tool.\n");
1827#else
1828 printk(KERN_ERR "Run a memory test tool.\n");
1829#endif
1830 }
1831 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832}
1833#endif
1834
1835#if DEBUG
1836
Pekka Enberg343e0d72006-02-01 03:05:50 -08001837static void print_objinfo(struct kmem_cache *cachep, void *objp, int lines)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838{
1839 int i, size;
1840 char *realobj;
1841
1842 if (cachep->flags & SLAB_RED_ZONE) {
David Woodhouseb46b8f12007-05-08 00:22:59 -07001843 printk(KERN_ERR "Redzone: 0x%llx/0x%llx.\n",
Andrew Mortona737b3e2006-03-22 00:08:11 -08001844 *dbg_redzone1(cachep, objp),
1845 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 }
1847
1848 if (cachep->flags & SLAB_STORE_USER) {
1849 printk(KERN_ERR "Last user: [<%p>]",
Andrew Mortona737b3e2006-03-22 00:08:11 -08001850 *dbg_userword(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 print_symbol("(%s)",
Andrew Mortona737b3e2006-03-22 00:08:11 -08001852 (unsigned long)*dbg_userword(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 printk("\n");
1854 }
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001855 realobj = (char *)objp + obj_offset(cachep);
1856 size = obj_size(cachep);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001857 for (i = 0; i < size && lines; i += 16, lines--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 int limit;
1859 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001860 if (i + limit > size)
1861 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 dump_line(realobj, i, limit);
1863 }
1864}
1865
Pekka Enberg343e0d72006-02-01 03:05:50 -08001866static void check_poison_obj(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867{
1868 char *realobj;
1869 int size, i;
1870 int lines = 0;
1871
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001872 realobj = (char *)objp + obj_offset(cachep);
1873 size = obj_size(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001875 for (i = 0; i < size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 char exp = POISON_FREE;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001877 if (i == size - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 exp = POISON_END;
1879 if (realobj[i] != exp) {
1880 int limit;
1881 /* Mismatch ! */
1882 /* Print header */
1883 if (lines == 0) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001884 printk(KERN_ERR
David Howellse94a40c2007-04-02 23:46:28 +01001885 "Slab corruption: %s start=%p, len=%d\n",
1886 cachep->name, realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 print_objinfo(cachep, objp, 0);
1888 }
1889 /* Hexdump the affected line */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001890 i = (i / 16) * 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001892 if (i + limit > size)
1893 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 dump_line(realobj, i, limit);
1895 i += 16;
1896 lines++;
1897 /* Limit to 5 lines */
1898 if (lines > 5)
1899 break;
1900 }
1901 }
1902 if (lines != 0) {
1903 /* Print some data about the neighboring objects, if they
1904 * exist:
1905 */
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08001906 struct slab *slabp = virt_to_slab(objp);
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001907 unsigned int objnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001909 objnr = obj_to_index(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 if (objnr) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001911 objp = index_to_obj(cachep, slabp, objnr - 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001912 realobj = (char *)objp + obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 printk(KERN_ERR "Prev obj: start=%p, len=%d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001914 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 print_objinfo(cachep, objp, 2);
1916 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001917 if (objnr + 1 < cachep->num) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001918 objp = index_to_obj(cachep, slabp, objnr + 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001919 realobj = (char *)objp + obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 printk(KERN_ERR "Next obj: start=%p, len=%d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001921 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 print_objinfo(cachep, objp, 2);
1923 }
1924 }
1925}
1926#endif
1927
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928#if DEBUG
Rabin Vincente79aec22008-07-04 00:40:32 +05301929static void slab_destroy_debugcheck(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001930{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 int i;
1932 for (i = 0; i < cachep->num; i++) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001933 void *objp = index_to_obj(cachep, slabp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934
1935 if (cachep->flags & SLAB_POISON) {
1936#ifdef CONFIG_DEBUG_PAGEALLOC
Andrew Mortona737b3e2006-03-22 00:08:11 -08001937 if (cachep->buffer_size % PAGE_SIZE == 0 &&
1938 OFF_SLAB(cachep))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001939 kernel_map_pages(virt_to_page(objp),
Andrew Mortona737b3e2006-03-22 00:08:11 -08001940 cachep->buffer_size / PAGE_SIZE, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 else
1942 check_poison_obj(cachep, objp);
1943#else
1944 check_poison_obj(cachep, objp);
1945#endif
1946 }
1947 if (cachep->flags & SLAB_RED_ZONE) {
1948 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
1949 slab_error(cachep, "start of a freed object "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001950 "was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
1952 slab_error(cachep, "end of a freed object "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001953 "was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 }
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001956}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957#else
Rabin Vincente79aec22008-07-04 00:40:32 +05301958static void slab_destroy_debugcheck(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001959{
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001960}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961#endif
1962
Randy Dunlap911851e2006-03-22 00:08:14 -08001963/**
1964 * slab_destroy - destroy and release all objects in a slab
1965 * @cachep: cache pointer being destroyed
1966 * @slabp: slab pointer being destroyed
1967 *
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001968 * Destroy all the objs in a slab, and release the mem back to the system.
Andrew Mortona737b3e2006-03-22 00:08:11 -08001969 * Before calling the slab must have been unlinked from the cache. The
1970 * cache-lock is not held/needed.
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001971 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001972static void slab_destroy(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001973{
1974 void *addr = slabp->s_mem - slabp->colouroff;
1975
Rabin Vincente79aec22008-07-04 00:40:32 +05301976 slab_destroy_debugcheck(cachep, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 if (unlikely(cachep->flags & SLAB_DESTROY_BY_RCU)) {
1978 struct slab_rcu *slab_rcu;
1979
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001980 slab_rcu = (struct slab_rcu *)slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 slab_rcu->cachep = cachep;
1982 slab_rcu->addr = addr;
1983 call_rcu(&slab_rcu->head, kmem_rcu_free);
1984 } else {
1985 kmem_freepages(cachep, addr);
Ingo Molnar873623d2006-07-13 14:44:38 +02001986 if (OFF_SLAB(cachep))
1987 kmem_cache_free(cachep->slabp_cache, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 }
1989}
1990
Christoph Lameter117f6eb2006-09-25 23:31:37 -07001991static void __kmem_cache_destroy(struct kmem_cache *cachep)
1992{
1993 int i;
1994 struct kmem_list3 *l3;
1995
1996 for_each_online_cpu(i)
1997 kfree(cachep->array[i]);
1998
1999 /* NUMA: free the list3 structures */
2000 for_each_online_node(i) {
2001 l3 = cachep->nodelists[i];
2002 if (l3) {
2003 kfree(l3->shared);
2004 free_alien_cache(l3->alien);
2005 kfree(l3);
2006 }
2007 }
2008 kmem_cache_free(&cache_cache, cachep);
2009}
2010
2011
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012/**
Randy.Dunlapa70773d2006-02-01 03:05:52 -08002013 * calculate_slab_order - calculate size (page order) of slabs
2014 * @cachep: pointer to the cache that is being created
2015 * @size: size of objects to be created in this cache.
2016 * @align: required alignment for the objects.
2017 * @flags: slab allocation flags
2018 *
2019 * Also calculates the number of objects per slab.
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002020 *
2021 * This could be made much more intelligent. For now, try to avoid using
2022 * high order pages for slabs. When the gfp() functions are more friendly
2023 * towards high-order requests, this should be changed.
2024 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002025static size_t calculate_slab_order(struct kmem_cache *cachep,
Randy Dunlapee13d782006-02-01 03:05:53 -08002026 size_t size, size_t align, unsigned long flags)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002027{
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02002028 unsigned long offslab_limit;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002029 size_t left_over = 0;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002030 int gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002031
Christoph Lameter0aa817f2007-05-16 22:11:01 -07002032 for (gfporder = 0; gfporder <= KMALLOC_MAX_ORDER; gfporder++) {
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002033 unsigned int num;
2034 size_t remainder;
2035
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002036 cache_estimate(gfporder, size, align, flags, &remainder, &num);
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002037 if (!num)
2038 continue;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002039
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02002040 if (flags & CFLGS_OFF_SLAB) {
2041 /*
2042 * Max number of objs-per-slab for caches which
2043 * use off-slab slabs. Needed to avoid a possible
2044 * looping condition in cache_grow().
2045 */
2046 offslab_limit = size - sizeof(struct slab);
2047 offslab_limit /= sizeof(kmem_bufctl_t);
2048
2049 if (num > offslab_limit)
2050 break;
2051 }
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002052
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002053 /* Found something acceptable - save it away */
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002054 cachep->num = num;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002055 cachep->gfporder = gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002056 left_over = remainder;
2057
2058 /*
Linus Torvaldsf78bb8a2006-03-08 10:33:05 -08002059 * A VFS-reclaimable slab tends to have most allocations
2060 * as GFP_NOFS and we really don't want to have to be allocating
2061 * higher-order pages when we are unable to shrink dcache.
2062 */
2063 if (flags & SLAB_RECLAIM_ACCOUNT)
2064 break;
2065
2066 /*
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002067 * Large number of objects is good, but very large slabs are
2068 * currently bad for the gfp()s.
2069 */
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002070 if (gfporder >= slab_break_gfp_order)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002071 break;
2072
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002073 /*
2074 * Acceptable internal fragmentation?
2075 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002076 if (left_over * 8 <= (PAGE_SIZE << gfporder))
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002077 break;
2078 }
2079 return left_over;
2080}
2081
Pekka Enberg83b519e2009-06-10 19:40:04 +03002082static int __init_refok setup_cpu_cache(struct kmem_cache *cachep, gfp_t gfp)
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002083{
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002084 if (g_cpucache_up == FULL)
Pekka Enberg83b519e2009-06-10 19:40:04 +03002085 return enable_cpucache(cachep, gfp);
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002086
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002087 if (g_cpucache_up == NONE) {
2088 /*
2089 * Note: the first kmem_cache_create must create the cache
2090 * that's used by kmalloc(24), otherwise the creation of
2091 * further caches will BUG().
2092 */
2093 cachep->array[smp_processor_id()] = &initarray_generic.cache;
2094
2095 /*
2096 * If the cache that's used by kmalloc(sizeof(kmem_list3)) is
2097 * the first cache, then we need to set up all its list3s,
2098 * otherwise the creation of further caches will BUG().
2099 */
2100 set_up_list3s(cachep, SIZE_AC);
2101 if (INDEX_AC == INDEX_L3)
2102 g_cpucache_up = PARTIAL_L3;
2103 else
2104 g_cpucache_up = PARTIAL_AC;
2105 } else {
2106 cachep->array[smp_processor_id()] =
Pekka Enberg83b519e2009-06-10 19:40:04 +03002107 kmalloc(sizeof(struct arraycache_init), gfp);
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002108
2109 if (g_cpucache_up == PARTIAL_AC) {
2110 set_up_list3s(cachep, SIZE_L3);
2111 g_cpucache_up = PARTIAL_L3;
2112 } else {
2113 int node;
Pekka Enberg556a1692008-01-25 08:20:51 +02002114 for_each_online_node(node) {
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002115 cachep->nodelists[node] =
2116 kmalloc_node(sizeof(struct kmem_list3),
Pekka Enbergeb91f1d2009-06-12 14:56:09 +03002117 gfp, node);
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002118 BUG_ON(!cachep->nodelists[node]);
2119 kmem_list3_init(cachep->nodelists[node]);
2120 }
2121 }
2122 }
2123 cachep->nodelists[numa_node_id()]->next_reap =
2124 jiffies + REAPTIMEOUT_LIST3 +
2125 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
2126
2127 cpu_cache_get(cachep)->avail = 0;
2128 cpu_cache_get(cachep)->limit = BOOT_CPUCACHE_ENTRIES;
2129 cpu_cache_get(cachep)->batchcount = 1;
2130 cpu_cache_get(cachep)->touched = 0;
2131 cachep->batchcount = 1;
2132 cachep->limit = BOOT_CPUCACHE_ENTRIES;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002133 return 0;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002134}
2135
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002136/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 * kmem_cache_create - Create a cache.
2138 * @name: A string which is used in /proc/slabinfo to identify this cache.
2139 * @size: The size of objects to be created in this cache.
2140 * @align: The required alignment for the objects.
2141 * @flags: SLAB flags
2142 * @ctor: A constructor for the objects.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 *
2144 * Returns a ptr to the cache on success, NULL on failure.
2145 * Cannot be called within a int, but can be interrupted.
Paul Mundt20c2df82007-07-20 10:11:58 +09002146 * The @ctor is run when new pages are allocated by the cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 *
2148 * @name must be valid until the cache is destroyed. This implies that
Andrew Mortona737b3e2006-03-22 00:08:11 -08002149 * the module calling this has to destroy the cache before getting unloaded.
Catalin Marinas249da162008-11-21 12:56:22 +00002150 * Note that kmem_cache_name() is not guaranteed to return the same pointer,
2151 * therefore applications must manage it themselves.
Andrew Mortona737b3e2006-03-22 00:08:11 -08002152 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 * The flags are
2154 *
2155 * %SLAB_POISON - Poison the slab with a known test pattern (a5a5a5a5)
2156 * to catch references to uninitialised memory.
2157 *
2158 * %SLAB_RED_ZONE - Insert `Red' zones around the allocated memory to check
2159 * for buffer overruns.
2160 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 * %SLAB_HWCACHE_ALIGN - Align the objects in this cache to a hardware
2162 * cacheline. This can be beneficial if you're counting cycles as closely
2163 * as davem.
2164 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002165struct kmem_cache *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166kmem_cache_create (const char *name, size_t size, size_t align,
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002167 unsigned long flags, void (*ctor)(void *))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002168{
2169 size_t left_over, slab_size, ralign;
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07002170 struct kmem_cache *cachep = NULL, *pc;
Pekka Enberg83b519e2009-06-10 19:40:04 +03002171 gfp_t gfp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172
2173 /*
2174 * Sanity checks... these are all serious usage bugs.
2175 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002176 if (!name || in_interrupt() || (size < BYTES_PER_WORD) ||
Paul Mundt20c2df82007-07-20 10:11:58 +09002177 size > KMALLOC_MAX_SIZE) {
Harvey Harrisond40cee22008-04-30 00:55:07 -07002178 printk(KERN_ERR "%s: Early error in slab %s\n", __func__,
Andrew Mortona737b3e2006-03-22 00:08:11 -08002179 name);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002180 BUG();
2181 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182
Ravikiran G Thirumalaif0188f42006-02-10 01:51:13 -08002183 /*
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002184 * We use cache_chain_mutex to ensure a consistent view of
Rusty Russell174596a2009-01-01 10:12:29 +10302185 * cpu_online_mask as well. Please see cpuup_callback
Ravikiran G Thirumalaif0188f42006-02-10 01:51:13 -08002186 */
Pekka Enberg83b519e2009-06-10 19:40:04 +03002187 if (slab_is_available()) {
2188 get_online_cpus();
2189 mutex_lock(&cache_chain_mutex);
2190 }
Andrew Morton4f12bb42005-11-07 00:58:00 -08002191
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07002192 list_for_each_entry(pc, &cache_chain, next) {
Andrew Morton4f12bb42005-11-07 00:58:00 -08002193 char tmp;
2194 int res;
2195
2196 /*
2197 * This happens when the module gets unloaded and doesn't
2198 * destroy its slab cache and no-one else reuses the vmalloc
2199 * area of the module. Print a warning.
2200 */
Andrew Morton138ae662006-12-06 20:36:41 -08002201 res = probe_kernel_address(pc->name, tmp);
Andrew Morton4f12bb42005-11-07 00:58:00 -08002202 if (res) {
matzeb4169522007-05-06 14:49:52 -07002203 printk(KERN_ERR
2204 "SLAB: cache with size %d has lost its name\n",
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002205 pc->buffer_size);
Andrew Morton4f12bb42005-11-07 00:58:00 -08002206 continue;
2207 }
2208
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002209 if (!strcmp(pc->name, name)) {
matzeb4169522007-05-06 14:49:52 -07002210 printk(KERN_ERR
2211 "kmem_cache_create: duplicate cache %s\n", name);
Andrew Morton4f12bb42005-11-07 00:58:00 -08002212 dump_stack();
2213 goto oops;
2214 }
2215 }
2216
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217#if DEBUG
2218 WARN_ON(strchr(name, ' ')); /* It confuses parsers */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219#if FORCED_DEBUG
2220 /*
2221 * Enable redzoning and last user accounting, except for caches with
2222 * large objects, if the increased size would increase the object size
2223 * above the next power of two: caches with object sizes just above a
2224 * power of two have a significant amount of internal fragmentation.
2225 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002226 if (size < 4096 || fls(size - 1) == fls(size-1 + REDZONE_ALIGN +
2227 2 * sizeof(unsigned long long)))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002228 flags |= SLAB_RED_ZONE | SLAB_STORE_USER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 if (!(flags & SLAB_DESTROY_BY_RCU))
2230 flags |= SLAB_POISON;
2231#endif
2232 if (flags & SLAB_DESTROY_BY_RCU)
2233 BUG_ON(flags & SLAB_POISON);
2234#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235 /*
Andrew Mortona737b3e2006-03-22 00:08:11 -08002236 * Always checks flags, a caller might be expecting debug support which
2237 * isn't available.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 */
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002239 BUG_ON(flags & ~CREATE_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240
Andrew Mortona737b3e2006-03-22 00:08:11 -08002241 /*
2242 * Check that size is in terms of words. This is needed to avoid
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 * unaligned accesses for some archs when redzoning is used, and makes
2244 * sure any on-slab bufctl's are also correctly aligned.
2245 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002246 if (size & (BYTES_PER_WORD - 1)) {
2247 size += (BYTES_PER_WORD - 1);
2248 size &= ~(BYTES_PER_WORD - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 }
2250
Andrew Mortona737b3e2006-03-22 00:08:11 -08002251 /* calculate the final buffer alignment: */
2252
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 /* 1) arch recommendation: can be overridden for debug */
2254 if (flags & SLAB_HWCACHE_ALIGN) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002255 /*
2256 * Default alignment: as specified by the arch code. Except if
2257 * an object is really small, then squeeze multiple objects into
2258 * one cacheline.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 */
2260 ralign = cache_line_size();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002261 while (size <= ralign / 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 ralign /= 2;
2263 } else {
2264 ralign = BYTES_PER_WORD;
2265 }
Pekka Enbergca5f9702006-09-25 23:31:25 -07002266
2267 /*
David Woodhouse87a927c2007-07-04 21:26:44 -04002268 * Redzoning and user store require word alignment or possibly larger.
2269 * Note this will be overridden by architecture or caller mandated
2270 * alignment if either is greater than BYTES_PER_WORD.
Pekka Enbergca5f9702006-09-25 23:31:25 -07002271 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002272 if (flags & SLAB_STORE_USER)
2273 ralign = BYTES_PER_WORD;
2274
2275 if (flags & SLAB_RED_ZONE) {
2276 ralign = REDZONE_ALIGN;
2277 /* If redzoning, ensure that the second redzone is suitably
2278 * aligned, by adjusting the object size accordingly. */
2279 size += REDZONE_ALIGN - 1;
2280 size &= ~(REDZONE_ALIGN - 1);
2281 }
Pekka Enbergca5f9702006-09-25 23:31:25 -07002282
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002283 /* 2) arch mandated alignment */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 if (ralign < ARCH_SLAB_MINALIGN) {
2285 ralign = ARCH_SLAB_MINALIGN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 }
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002287 /* 3) caller mandated alignment */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 if (ralign < align) {
2289 ralign = align;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290 }
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002291 /* disable debug if necessary */
David Woodhouseb46b8f12007-05-08 00:22:59 -07002292 if (ralign > __alignof__(unsigned long long))
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002293 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002294 /*
Pekka Enbergca5f9702006-09-25 23:31:25 -07002295 * 4) Store it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 */
2297 align = ralign;
2298
Pekka Enberg83b519e2009-06-10 19:40:04 +03002299 if (slab_is_available())
2300 gfp = GFP_KERNEL;
2301 else
2302 gfp = GFP_NOWAIT;
2303
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 /* Get cache's description obj. */
Pekka Enberg83b519e2009-06-10 19:40:04 +03002305 cachep = kmem_cache_zalloc(&cache_cache, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 if (!cachep)
Andrew Morton4f12bb42005-11-07 00:58:00 -08002307 goto oops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308
2309#if DEBUG
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002310 cachep->obj_size = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311
Pekka Enbergca5f9702006-09-25 23:31:25 -07002312 /*
2313 * Both debugging options require word-alignment which is calculated
2314 * into align above.
2315 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 if (flags & SLAB_RED_ZONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 /* add space for red zone words */
David Woodhouseb46b8f12007-05-08 00:22:59 -07002318 cachep->obj_offset += sizeof(unsigned long long);
2319 size += 2 * sizeof(unsigned long long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 }
2321 if (flags & SLAB_STORE_USER) {
Pekka Enbergca5f9702006-09-25 23:31:25 -07002322 /* user store requires one word storage behind the end of
David Woodhouse87a927c2007-07-04 21:26:44 -04002323 * the real object. But if the second red zone needs to be
2324 * aligned to 64 bits, we must allow that much space.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002326 if (flags & SLAB_RED_ZONE)
2327 size += REDZONE_ALIGN;
2328 else
2329 size += BYTES_PER_WORD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330 }
2331#if FORCED_DEBUG && defined(CONFIG_DEBUG_PAGEALLOC)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002332 if (size >= malloc_sizes[INDEX_L3 + 1].cs_size
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002333 && cachep->obj_size > cache_line_size() && size < PAGE_SIZE) {
2334 cachep->obj_offset += PAGE_SIZE - size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 size = PAGE_SIZE;
2336 }
2337#endif
2338#endif
2339
Ingo Molnare0a42722006-06-23 02:03:46 -07002340 /*
2341 * Determine if the slab management is 'on' or 'off' slab.
2342 * (bootstrapping cannot cope with offslab caches so don't do
2343 * it too early on.)
2344 */
2345 if ((size >= (PAGE_SIZE >> 3)) && !slab_early_init)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 /*
2347 * Size is large, assume best to place the slab management obj
2348 * off-slab (should allow better packing of objs).
2349 */
2350 flags |= CFLGS_OFF_SLAB;
2351
2352 size = ALIGN(size, align);
2353
Linus Torvaldsf78bb8a2006-03-08 10:33:05 -08002354 left_over = calculate_slab_order(cachep, size, align, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355
2356 if (!cachep->num) {
matzeb4169522007-05-06 14:49:52 -07002357 printk(KERN_ERR
2358 "kmem_cache_create: couldn't create cache %s.\n", name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 kmem_cache_free(&cache_cache, cachep);
2360 cachep = NULL;
Andrew Morton4f12bb42005-11-07 00:58:00 -08002361 goto oops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002363 slab_size = ALIGN(cachep->num * sizeof(kmem_bufctl_t)
2364 + sizeof(struct slab), align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365
2366 /*
2367 * If the slab has been placed off-slab, and we have enough space then
2368 * move it on-slab. This is at the expense of any extra colouring.
2369 */
2370 if (flags & CFLGS_OFF_SLAB && left_over >= slab_size) {
2371 flags &= ~CFLGS_OFF_SLAB;
2372 left_over -= slab_size;
2373 }
2374
2375 if (flags & CFLGS_OFF_SLAB) {
2376 /* really off slab. No need for manual alignment */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002377 slab_size =
2378 cachep->num * sizeof(kmem_bufctl_t) + sizeof(struct slab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 }
2380
2381 cachep->colour_off = cache_line_size();
2382 /* Offset must be a multiple of the alignment. */
2383 if (cachep->colour_off < align)
2384 cachep->colour_off = align;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002385 cachep->colour = left_over / cachep->colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 cachep->slab_size = slab_size;
2387 cachep->flags = flags;
2388 cachep->gfpflags = 0;
Christoph Lameter4b51d662007-02-10 01:43:10 -08002389 if (CONFIG_ZONE_DMA_FLAG && (flags & SLAB_CACHE_DMA))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 cachep->gfpflags |= GFP_DMA;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002391 cachep->buffer_size = size;
Eric Dumazet6a2d7a92006-12-13 00:34:27 -08002392 cachep->reciprocal_buffer_size = reciprocal_value(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002394 if (flags & CFLGS_OFF_SLAB) {
Victor Fuscob2d55072005-09-10 00:26:36 -07002395 cachep->slabp_cache = kmem_find_general_cachep(slab_size, 0u);
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002396 /*
2397 * This is a possibility for one of the malloc_sizes caches.
2398 * But since we go off slab only for object size greater than
2399 * PAGE_SIZE/8, and malloc_sizes gets created in ascending order,
2400 * this should not happen at all.
2401 * But leave a BUG_ON for some lucky dude.
2402 */
Christoph Lameter6cb8f912007-07-17 04:03:22 -07002403 BUG_ON(ZERO_OR_NULL_PTR(cachep->slabp_cache));
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002404 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 cachep->ctor = ctor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 cachep->name = name;
2407
Pekka Enberg83b519e2009-06-10 19:40:04 +03002408 if (setup_cpu_cache(cachep, gfp)) {
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002409 __kmem_cache_destroy(cachep);
2410 cachep = NULL;
2411 goto oops;
2412 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 /* cache setup completed, link it into the list */
2415 list_add(&cachep->next, &cache_chain);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002416oops:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417 if (!cachep && (flags & SLAB_PANIC))
2418 panic("kmem_cache_create(): failed to create slab `%s'\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002419 name);
Pekka Enberg83b519e2009-06-10 19:40:04 +03002420 if (slab_is_available()) {
2421 mutex_unlock(&cache_chain_mutex);
2422 put_online_cpus();
2423 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 return cachep;
2425}
2426EXPORT_SYMBOL(kmem_cache_create);
2427
2428#if DEBUG
2429static void check_irq_off(void)
2430{
2431 BUG_ON(!irqs_disabled());
2432}
2433
2434static void check_irq_on(void)
2435{
2436 BUG_ON(irqs_disabled());
2437}
2438
Pekka Enberg343e0d72006-02-01 03:05:50 -08002439static void check_spinlock_acquired(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440{
2441#ifdef CONFIG_SMP
2442 check_irq_off();
Christoph Lametere498be72005-09-09 13:03:32 -07002443 assert_spin_locked(&cachep->nodelists[numa_node_id()]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444#endif
2445}
Christoph Lametere498be72005-09-09 13:03:32 -07002446
Pekka Enberg343e0d72006-02-01 03:05:50 -08002447static void check_spinlock_acquired_node(struct kmem_cache *cachep, int node)
Christoph Lametere498be72005-09-09 13:03:32 -07002448{
2449#ifdef CONFIG_SMP
2450 check_irq_off();
2451 assert_spin_locked(&cachep->nodelists[node]->list_lock);
2452#endif
2453}
2454
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455#else
2456#define check_irq_off() do { } while(0)
2457#define check_irq_on() do { } while(0)
2458#define check_spinlock_acquired(x) do { } while(0)
Christoph Lametere498be72005-09-09 13:03:32 -07002459#define check_spinlock_acquired_node(x, y) do { } while(0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460#endif
2461
Christoph Lameteraab22072006-03-22 00:09:06 -08002462static void drain_array(struct kmem_cache *cachep, struct kmem_list3 *l3,
2463 struct array_cache *ac,
2464 int force, int node);
2465
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466static void do_drain(void *arg)
2467{
Andrew Mortona737b3e2006-03-22 00:08:11 -08002468 struct kmem_cache *cachep = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469 struct array_cache *ac;
Christoph Lameterff694162005-09-22 21:44:02 -07002470 int node = numa_node_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471
2472 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002473 ac = cpu_cache_get(cachep);
Christoph Lameterff694162005-09-22 21:44:02 -07002474 spin_lock(&cachep->nodelists[node]->list_lock);
2475 free_block(cachep, ac->entry, ac->avail, node);
2476 spin_unlock(&cachep->nodelists[node]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477 ac->avail = 0;
2478}
2479
Pekka Enberg343e0d72006-02-01 03:05:50 -08002480static void drain_cpu_caches(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481{
Christoph Lametere498be72005-09-09 13:03:32 -07002482 struct kmem_list3 *l3;
2483 int node;
2484
Jens Axboe15c8b6c2008-05-09 09:39:44 +02002485 on_each_cpu(do_drain, cachep, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 check_irq_on();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002487 for_each_online_node(node) {
Christoph Lametere498be72005-09-09 13:03:32 -07002488 l3 = cachep->nodelists[node];
Roland Dreiera4523a82006-05-15 11:41:00 -07002489 if (l3 && l3->alien)
2490 drain_alien_cache(cachep, l3->alien);
2491 }
2492
2493 for_each_online_node(node) {
2494 l3 = cachep->nodelists[node];
2495 if (l3)
Christoph Lameteraab22072006-03-22 00:09:06 -08002496 drain_array(cachep, l3, l3->shared, 1, node);
Christoph Lametere498be72005-09-09 13:03:32 -07002497 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498}
2499
Christoph Lametered11d9e2006-06-30 01:55:45 -07002500/*
2501 * Remove slabs from the list of free slabs.
2502 * Specify the number of slabs to drain in tofree.
2503 *
2504 * Returns the actual number of slabs released.
2505 */
2506static int drain_freelist(struct kmem_cache *cache,
2507 struct kmem_list3 *l3, int tofree)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508{
Christoph Lametered11d9e2006-06-30 01:55:45 -07002509 struct list_head *p;
2510 int nr_freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002511 struct slab *slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512
Christoph Lametered11d9e2006-06-30 01:55:45 -07002513 nr_freed = 0;
2514 while (nr_freed < tofree && !list_empty(&l3->slabs_free)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515
Christoph Lametered11d9e2006-06-30 01:55:45 -07002516 spin_lock_irq(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07002517 p = l3->slabs_free.prev;
Christoph Lametered11d9e2006-06-30 01:55:45 -07002518 if (p == &l3->slabs_free) {
2519 spin_unlock_irq(&l3->list_lock);
2520 goto out;
2521 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522
Christoph Lametered11d9e2006-06-30 01:55:45 -07002523 slabp = list_entry(p, struct slab, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524#if DEBUG
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002525 BUG_ON(slabp->inuse);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526#endif
2527 list_del(&slabp->list);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002528 /*
2529 * Safe to drop the lock. The slab is no longer linked
2530 * to the cache.
2531 */
2532 l3->free_objects -= cache->num;
Christoph Lametere498be72005-09-09 13:03:32 -07002533 spin_unlock_irq(&l3->list_lock);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002534 slab_destroy(cache, slabp);
2535 nr_freed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 }
Christoph Lametered11d9e2006-06-30 01:55:45 -07002537out:
2538 return nr_freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539}
2540
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002541/* Called with cache_chain_mutex held to protect against cpu hotplug */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002542static int __cache_shrink(struct kmem_cache *cachep)
Christoph Lametere498be72005-09-09 13:03:32 -07002543{
2544 int ret = 0, i = 0;
2545 struct kmem_list3 *l3;
2546
2547 drain_cpu_caches(cachep);
2548
2549 check_irq_on();
2550 for_each_online_node(i) {
2551 l3 = cachep->nodelists[i];
Christoph Lametered11d9e2006-06-30 01:55:45 -07002552 if (!l3)
2553 continue;
2554
2555 drain_freelist(cachep, l3, l3->free_objects);
2556
2557 ret += !list_empty(&l3->slabs_full) ||
2558 !list_empty(&l3->slabs_partial);
Christoph Lametere498be72005-09-09 13:03:32 -07002559 }
2560 return (ret ? 1 : 0);
2561}
2562
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563/**
2564 * kmem_cache_shrink - Shrink a cache.
2565 * @cachep: The cache to shrink.
2566 *
2567 * Releases as many slabs as possible for a cache.
2568 * To help debugging, a zero exit status indicates all slabs were released.
2569 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002570int kmem_cache_shrink(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571{
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002572 int ret;
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002573 BUG_ON(!cachep || in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002575 get_online_cpus();
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002576 mutex_lock(&cache_chain_mutex);
2577 ret = __cache_shrink(cachep);
2578 mutex_unlock(&cache_chain_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002579 put_online_cpus();
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002580 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581}
2582EXPORT_SYMBOL(kmem_cache_shrink);
2583
2584/**
2585 * kmem_cache_destroy - delete a cache
2586 * @cachep: the cache to destroy
2587 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08002588 * Remove a &struct kmem_cache object from the slab cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 *
2590 * It is expected this function will be called by a module when it is
2591 * unloaded. This will remove the cache completely, and avoid a duplicate
2592 * cache being allocated each time a module is loaded and unloaded, if the
2593 * module doesn't have persistent in-kernel storage across loads and unloads.
2594 *
2595 * The cache must be empty before calling this function.
2596 *
2597 * The caller must guarantee that noone will allocate memory from the cache
2598 * during the kmem_cache_destroy().
2599 */
Alexey Dobriyan133d2052006-09-27 01:49:41 -07002600void kmem_cache_destroy(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601{
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002602 BUG_ON(!cachep || in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604 /* Find the cache in the chain of caches. */
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002605 get_online_cpus();
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002606 mutex_lock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607 /*
2608 * the chain is never empty, cache_cache is never destroyed
2609 */
2610 list_del(&cachep->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611 if (__cache_shrink(cachep)) {
2612 slab_error(cachep, "Can't free all objects");
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002613 list_add(&cachep->next, &cache_chain);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002614 mutex_unlock(&cache_chain_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002615 put_online_cpus();
Alexey Dobriyan133d2052006-09-27 01:49:41 -07002616 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 }
2618
2619 if (unlikely(cachep->flags & SLAB_DESTROY_BY_RCU))
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07002620 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621
Christoph Lameter117f6eb2006-09-25 23:31:37 -07002622 __kmem_cache_destroy(cachep);
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002623 mutex_unlock(&cache_chain_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002624 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625}
2626EXPORT_SYMBOL(kmem_cache_destroy);
2627
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002628/*
2629 * Get the memory for a slab management obj.
2630 * For a slab cache when the slab descriptor is off-slab, slab descriptors
2631 * always come from malloc_sizes caches. The slab descriptor cannot
2632 * come from the same cache which is getting created because,
2633 * when we are searching for an appropriate cache for these
2634 * descriptors in kmem_cache_create, we search through the malloc_sizes array.
2635 * If we are creating a malloc_sizes cache here it would not be visible to
2636 * kmem_find_general_cachep till the initialization is complete.
2637 * Hence we cannot have slabp_cache same as the original cache.
2638 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002639static struct slab *alloc_slabmgmt(struct kmem_cache *cachep, void *objp,
Ravikiran G Thirumalai5b74ada2006-04-10 22:52:53 -07002640 int colour_off, gfp_t local_flags,
2641 int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642{
2643 struct slab *slabp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002644
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 if (OFF_SLAB(cachep)) {
2646 /* Slab management obj is off-slab. */
Ravikiran G Thirumalai5b74ada2006-04-10 22:52:53 -07002647 slabp = kmem_cache_alloc_node(cachep->slabp_cache,
Pekka Enberg8759ec52008-11-26 10:01:31 +02002648 local_flags, nodeid);
Catalin Marinasd5cff632009-06-11 13:22:40 +01002649 /*
2650 * If the first object in the slab is leaked (it's allocated
2651 * but no one has a reference to it), we want to make sure
2652 * kmemleak does not treat the ->s_mem pointer as a reference
2653 * to the object. Otherwise we will not report the leak.
2654 */
2655 kmemleak_scan_area(slabp, offsetof(struct slab, list),
2656 sizeof(struct list_head), local_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002657 if (!slabp)
2658 return NULL;
2659 } else {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002660 slabp = objp + colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661 colour_off += cachep->slab_size;
2662 }
2663 slabp->inuse = 0;
2664 slabp->colouroff = colour_off;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002665 slabp->s_mem = objp + colour_off;
Ravikiran G Thirumalai5b74ada2006-04-10 22:52:53 -07002666 slabp->nodeid = nodeid;
Marcin Slusarze51bfd02008-02-10 11:21:54 +01002667 slabp->free = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668 return slabp;
2669}
2670
2671static inline kmem_bufctl_t *slab_bufctl(struct slab *slabp)
2672{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002673 return (kmem_bufctl_t *) (slabp + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674}
2675
Pekka Enberg343e0d72006-02-01 03:05:50 -08002676static void cache_init_objs(struct kmem_cache *cachep,
Christoph Lametera35afb82007-05-16 22:10:57 -07002677 struct slab *slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002678{
2679 int i;
2680
2681 for (i = 0; i < cachep->num; i++) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002682 void *objp = index_to_obj(cachep, slabp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683#if DEBUG
2684 /* need to poison the objs? */
2685 if (cachep->flags & SLAB_POISON)
2686 poison_obj(cachep, objp, POISON_FREE);
2687 if (cachep->flags & SLAB_STORE_USER)
2688 *dbg_userword(cachep, objp) = NULL;
2689
2690 if (cachep->flags & SLAB_RED_ZONE) {
2691 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2692 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2693 }
2694 /*
Andrew Mortona737b3e2006-03-22 00:08:11 -08002695 * Constructors are not allowed to allocate memory from the same
2696 * cache which they are a constructor for. Otherwise, deadlock.
2697 * They must also be threaded.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698 */
2699 if (cachep->ctor && !(cachep->flags & SLAB_POISON))
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002700 cachep->ctor(objp + obj_offset(cachep));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701
2702 if (cachep->flags & SLAB_RED_ZONE) {
2703 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
2704 slab_error(cachep, "constructor overwrote the"
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002705 " end of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
2707 slab_error(cachep, "constructor overwrote the"
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002708 " start of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709 }
Andrew Mortona737b3e2006-03-22 00:08:11 -08002710 if ((cachep->buffer_size % PAGE_SIZE) == 0 &&
2711 OFF_SLAB(cachep) && cachep->flags & SLAB_POISON)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002712 kernel_map_pages(virt_to_page(objp),
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002713 cachep->buffer_size / PAGE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714#else
2715 if (cachep->ctor)
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002716 cachep->ctor(objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717#endif
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002718 slab_bufctl(slabp)[i] = i + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002720 slab_bufctl(slabp)[i - 1] = BUFCTL_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721}
2722
Pekka Enberg343e0d72006-02-01 03:05:50 -08002723static void kmem_flagcheck(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724{
Christoph Lameter4b51d662007-02-10 01:43:10 -08002725 if (CONFIG_ZONE_DMA_FLAG) {
2726 if (flags & GFP_DMA)
2727 BUG_ON(!(cachep->gfpflags & GFP_DMA));
2728 else
2729 BUG_ON(cachep->gfpflags & GFP_DMA);
2730 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731}
2732
Andrew Mortona737b3e2006-03-22 00:08:11 -08002733static void *slab_get_obj(struct kmem_cache *cachep, struct slab *slabp,
2734 int nodeid)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002735{
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002736 void *objp = index_to_obj(cachep, slabp, slabp->free);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002737 kmem_bufctl_t next;
2738
2739 slabp->inuse++;
2740 next = slab_bufctl(slabp)[slabp->free];
2741#if DEBUG
2742 slab_bufctl(slabp)[slabp->free] = BUFCTL_FREE;
2743 WARN_ON(slabp->nodeid != nodeid);
2744#endif
2745 slabp->free = next;
2746
2747 return objp;
2748}
2749
Andrew Mortona737b3e2006-03-22 00:08:11 -08002750static void slab_put_obj(struct kmem_cache *cachep, struct slab *slabp,
2751 void *objp, int nodeid)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002752{
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002753 unsigned int objnr = obj_to_index(cachep, slabp, objp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002754
2755#if DEBUG
2756 /* Verify that the slab belongs to the intended node */
2757 WARN_ON(slabp->nodeid != nodeid);
2758
Al Viro871751e2006-03-25 03:06:39 -08002759 if (slab_bufctl(slabp)[objnr] + 1 <= SLAB_LIMIT + 1) {
Matthew Dobson78d382d2006-02-01 03:05:47 -08002760 printk(KERN_ERR "slab: double free detected in cache "
Andrew Mortona737b3e2006-03-22 00:08:11 -08002761 "'%s', objp %p\n", cachep->name, objp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002762 BUG();
2763 }
2764#endif
2765 slab_bufctl(slabp)[objnr] = slabp->free;
2766 slabp->free = objnr;
2767 slabp->inuse--;
2768}
2769
Pekka Enberg47768742006-06-23 02:03:07 -07002770/*
2771 * Map pages beginning at addr to the given cache and slab. This is required
2772 * for the slab allocator to be able to lookup the cache and slab of a
2773 * virtual address for kfree, ksize, kmem_ptr_validate, and slab debugging.
2774 */
2775static void slab_map_pages(struct kmem_cache *cache, struct slab *slab,
2776 void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777{
Pekka Enberg47768742006-06-23 02:03:07 -07002778 int nr_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779 struct page *page;
2780
Pekka Enberg47768742006-06-23 02:03:07 -07002781 page = virt_to_page(addr);
Nick Piggin84097512006-03-22 00:08:34 -08002782
Pekka Enberg47768742006-06-23 02:03:07 -07002783 nr_pages = 1;
Nick Piggin84097512006-03-22 00:08:34 -08002784 if (likely(!PageCompound(page)))
Pekka Enberg47768742006-06-23 02:03:07 -07002785 nr_pages <<= cache->gfporder;
2786
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 do {
Pekka Enberg47768742006-06-23 02:03:07 -07002788 page_set_cache(page, cache);
2789 page_set_slab(page, slab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790 page++;
Pekka Enberg47768742006-06-23 02:03:07 -07002791 } while (--nr_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792}
2793
2794/*
2795 * Grow (by 1) the number of slabs within a cache. This is called by
2796 * kmem_cache_alloc() when there are no active objs left in a cache.
2797 */
Christoph Lameter3c517a62006-12-06 20:33:29 -08002798static int cache_grow(struct kmem_cache *cachep,
2799 gfp_t flags, int nodeid, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002801 struct slab *slabp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002802 size_t offset;
2803 gfp_t local_flags;
Christoph Lametere498be72005-09-09 13:03:32 -07002804 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805
Andrew Mortona737b3e2006-03-22 00:08:11 -08002806 /*
2807 * Be lazy and only check for valid flags here, keeping it out of the
2808 * critical path in kmem_cache_alloc().
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809 */
Christoph Lameter6cb06222007-10-16 01:25:41 -07002810 BUG_ON(flags & GFP_SLAB_BUG_MASK);
2811 local_flags = flags & (GFP_CONSTRAINT_MASK|GFP_RECLAIM_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002813 /* Take the l3 list lock to change the colour_next on this node */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814 check_irq_off();
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002815 l3 = cachep->nodelists[nodeid];
2816 spin_lock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817
2818 /* Get colour for the slab, and cal the next value. */
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002819 offset = l3->colour_next;
2820 l3->colour_next++;
2821 if (l3->colour_next >= cachep->colour)
2822 l3->colour_next = 0;
2823 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002825 offset *= cachep->colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826
2827 if (local_flags & __GFP_WAIT)
2828 local_irq_enable();
2829
2830 /*
2831 * The test for missing atomic flag is performed here, rather than
2832 * the more obvious place, simply to reduce the critical path length
2833 * in kmem_cache_alloc(). If a caller is seriously mis-behaving they
2834 * will eventually be caught here (where it matters).
2835 */
2836 kmem_flagcheck(cachep, flags);
2837
Andrew Mortona737b3e2006-03-22 00:08:11 -08002838 /*
2839 * Get mem for the objs. Attempt to allocate a physical page from
2840 * 'nodeid'.
Christoph Lametere498be72005-09-09 13:03:32 -07002841 */
Christoph Lameter3c517a62006-12-06 20:33:29 -08002842 if (!objp)
Andrew Mortonb8c1c5d2007-07-24 12:02:40 -07002843 objp = kmem_getpages(cachep, local_flags, nodeid);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002844 if (!objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845 goto failed;
2846
2847 /* Get slab management. */
Christoph Lameter3c517a62006-12-06 20:33:29 -08002848 slabp = alloc_slabmgmt(cachep, objp, offset,
Christoph Lameter6cb06222007-10-16 01:25:41 -07002849 local_flags & ~GFP_CONSTRAINT_MASK, nodeid);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002850 if (!slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851 goto opps1;
2852
Pekka Enberg47768742006-06-23 02:03:07 -07002853 slab_map_pages(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854
Christoph Lametera35afb82007-05-16 22:10:57 -07002855 cache_init_objs(cachep, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856
2857 if (local_flags & __GFP_WAIT)
2858 local_irq_disable();
2859 check_irq_off();
Christoph Lametere498be72005-09-09 13:03:32 -07002860 spin_lock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861
2862 /* Make slab active. */
Christoph Lametere498be72005-09-09 13:03:32 -07002863 list_add_tail(&slabp->list, &(l3->slabs_free));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864 STATS_INC_GROWN(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07002865 l3->free_objects += cachep->num;
2866 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867 return 1;
Andrew Mortona737b3e2006-03-22 00:08:11 -08002868opps1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869 kmem_freepages(cachep, objp);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002870failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871 if (local_flags & __GFP_WAIT)
2872 local_irq_disable();
2873 return 0;
2874}
2875
2876#if DEBUG
2877
2878/*
2879 * Perform extra freeing checks:
2880 * - detect bad pointers.
2881 * - POISON/RED_ZONE checking
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882 */
2883static void kfree_debugcheck(const void *objp)
2884{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885 if (!virt_addr_valid(objp)) {
2886 printk(KERN_ERR "kfree_debugcheck: out of range ptr %lxh.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002887 (unsigned long)objp);
2888 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890}
2891
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002892static inline void verify_redzone_free(struct kmem_cache *cache, void *obj)
2893{
David Woodhouseb46b8f12007-05-08 00:22:59 -07002894 unsigned long long redzone1, redzone2;
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002895
2896 redzone1 = *dbg_redzone1(cache, obj);
2897 redzone2 = *dbg_redzone2(cache, obj);
2898
2899 /*
2900 * Redzone is ok.
2901 */
2902 if (redzone1 == RED_ACTIVE && redzone2 == RED_ACTIVE)
2903 return;
2904
2905 if (redzone1 == RED_INACTIVE && redzone2 == RED_INACTIVE)
2906 slab_error(cache, "double free detected");
2907 else
2908 slab_error(cache, "memory outside object was overwritten");
2909
David Woodhouseb46b8f12007-05-08 00:22:59 -07002910 printk(KERN_ERR "%p: redzone 1:0x%llx, redzone 2:0x%llx.\n",
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002911 obj, redzone1, redzone2);
2912}
2913
Pekka Enberg343e0d72006-02-01 03:05:50 -08002914static void *cache_free_debugcheck(struct kmem_cache *cachep, void *objp,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002915 void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916{
2917 struct page *page;
2918 unsigned int objnr;
2919 struct slab *slabp;
2920
Matthew Wilcox80cbd912007-11-29 12:05:13 -07002921 BUG_ON(virt_to_cache(objp) != cachep);
2922
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002923 objp -= obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 kfree_debugcheck(objp);
Christoph Lameterb49af682007-05-06 14:49:41 -07002925 page = virt_to_head_page(objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926
Pekka Enberg065d41c2005-11-13 16:06:46 -08002927 slabp = page_get_slab(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928
2929 if (cachep->flags & SLAB_RED_ZONE) {
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002930 verify_redzone_free(cachep, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2932 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2933 }
2934 if (cachep->flags & SLAB_STORE_USER)
2935 *dbg_userword(cachep, objp) = caller;
2936
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002937 objnr = obj_to_index(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938
2939 BUG_ON(objnr >= cachep->num);
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002940 BUG_ON(objp != index_to_obj(cachep, slabp, objnr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941
Al Viro871751e2006-03-25 03:06:39 -08002942#ifdef CONFIG_DEBUG_SLAB_LEAK
2943 slab_bufctl(slabp)[objnr] = BUFCTL_FREE;
2944#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945 if (cachep->flags & SLAB_POISON) {
2946#ifdef CONFIG_DEBUG_PAGEALLOC
Andrew Mortona737b3e2006-03-22 00:08:11 -08002947 if ((cachep->buffer_size % PAGE_SIZE)==0 && OFF_SLAB(cachep)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948 store_stackinfo(cachep, objp, (unsigned long)caller);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002949 kernel_map_pages(virt_to_page(objp),
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002950 cachep->buffer_size / PAGE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951 } else {
2952 poison_obj(cachep, objp, POISON_FREE);
2953 }
2954#else
2955 poison_obj(cachep, objp, POISON_FREE);
2956#endif
2957 }
2958 return objp;
2959}
2960
Pekka Enberg343e0d72006-02-01 03:05:50 -08002961static void check_slabp(struct kmem_cache *cachep, struct slab *slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962{
2963 kmem_bufctl_t i;
2964 int entries = 0;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002965
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966 /* Check slab's freelist to see if this obj is there. */
2967 for (i = slabp->free; i != BUFCTL_END; i = slab_bufctl(slabp)[i]) {
2968 entries++;
2969 if (entries > cachep->num || i >= cachep->num)
2970 goto bad;
2971 }
2972 if (entries != cachep->num - slabp->inuse) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002973bad:
2974 printk(KERN_ERR "slab: Internal list corruption detected in "
2975 "cache '%s'(%d), slabp %p(%d). Hexdump:\n",
2976 cachep->name, cachep->num, slabp, slabp->inuse);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002977 for (i = 0;
Linus Torvalds264132b2006-03-06 12:10:07 -08002978 i < sizeof(*slabp) + cachep->num * sizeof(kmem_bufctl_t);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002979 i++) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002980 if (i % 16 == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002981 printk("\n%03x:", i);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002982 printk(" %02x", ((unsigned char *)slabp)[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983 }
2984 printk("\n");
2985 BUG();
2986 }
2987}
2988#else
2989#define kfree_debugcheck(x) do { } while(0)
2990#define cache_free_debugcheck(x,objp,z) (objp)
2991#define check_slabp(x,y) do { } while(0)
2992#endif
2993
Pekka Enberg343e0d72006-02-01 03:05:50 -08002994static void *cache_alloc_refill(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995{
2996 int batchcount;
2997 struct kmem_list3 *l3;
2998 struct array_cache *ac;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07002999 int node;
3000
Andrew Mortona737b3e2006-03-22 00:08:11 -08003001retry:
Joe Korty6d2144d2008-03-05 15:04:59 -08003002 check_irq_off();
3003 node = numa_node_id();
3004 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005 batchcount = ac->batchcount;
3006 if (!ac->touched && batchcount > BATCHREFILL_LIMIT) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08003007 /*
3008 * If there was little recent activity on this cache, then
3009 * perform only a partial refill. Otherwise we could generate
3010 * refill bouncing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011 */
3012 batchcount = BATCHREFILL_LIMIT;
3013 }
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07003014 l3 = cachep->nodelists[node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015
Christoph Lametere498be72005-09-09 13:03:32 -07003016 BUG_ON(ac->avail > 0 || !l3);
3017 spin_lock(&l3->list_lock);
3018
Christoph Lameter3ded1752006-03-25 03:06:44 -08003019 /* See if we can refill from the shared array */
3020 if (l3->shared && transfer_objects(ac, l3->shared, batchcount))
3021 goto alloc_done;
3022
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023 while (batchcount > 0) {
3024 struct list_head *entry;
3025 struct slab *slabp;
3026 /* Get slab alloc is to come from. */
3027 entry = l3->slabs_partial.next;
3028 if (entry == &l3->slabs_partial) {
3029 l3->free_touched = 1;
3030 entry = l3->slabs_free.next;
3031 if (entry == &l3->slabs_free)
3032 goto must_grow;
3033 }
3034
3035 slabp = list_entry(entry, struct slab, list);
3036 check_slabp(cachep, slabp);
3037 check_spinlock_acquired(cachep);
Pekka Enberg714b8172007-05-06 14:49:03 -07003038
3039 /*
3040 * The slab was either on partial or free list so
3041 * there must be at least one object available for
3042 * allocation.
3043 */
roel kluin249b9f32008-10-29 17:18:07 -04003044 BUG_ON(slabp->inuse >= cachep->num);
Pekka Enberg714b8172007-05-06 14:49:03 -07003045
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046 while (slabp->inuse < cachep->num && batchcount--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047 STATS_INC_ALLOCED(cachep);
3048 STATS_INC_ACTIVE(cachep);
3049 STATS_SET_HIGH(cachep);
3050
Matthew Dobson78d382d2006-02-01 03:05:47 -08003051 ac->entry[ac->avail++] = slab_get_obj(cachep, slabp,
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07003052 node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003053 }
3054 check_slabp(cachep, slabp);
3055
3056 /* move slabp to correct slabp list: */
3057 list_del(&slabp->list);
3058 if (slabp->free == BUFCTL_END)
3059 list_add(&slabp->list, &l3->slabs_full);
3060 else
3061 list_add(&slabp->list, &l3->slabs_partial);
3062 }
3063
Andrew Mortona737b3e2006-03-22 00:08:11 -08003064must_grow:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065 l3->free_objects -= ac->avail;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003066alloc_done:
Christoph Lametere498be72005-09-09 13:03:32 -07003067 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068
3069 if (unlikely(!ac->avail)) {
3070 int x;
Christoph Lameter3c517a62006-12-06 20:33:29 -08003071 x = cache_grow(cachep, flags | GFP_THISNODE, node, NULL);
Christoph Lametere498be72005-09-09 13:03:32 -07003072
Andrew Mortona737b3e2006-03-22 00:08:11 -08003073 /* cache_grow can reenable interrupts, then ac could change. */
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003074 ac = cpu_cache_get(cachep);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003075 if (!x && ac->avail == 0) /* no objects in sight? abort */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076 return NULL;
3077
Andrew Mortona737b3e2006-03-22 00:08:11 -08003078 if (!ac->avail) /* objects refilled by interrupt? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079 goto retry;
3080 }
3081 ac->touched = 1;
Christoph Lametere498be72005-09-09 13:03:32 -07003082 return ac->entry[--ac->avail];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083}
3084
Andrew Mortona737b3e2006-03-22 00:08:11 -08003085static inline void cache_alloc_debugcheck_before(struct kmem_cache *cachep,
3086 gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087{
3088 might_sleep_if(flags & __GFP_WAIT);
3089#if DEBUG
3090 kmem_flagcheck(cachep, flags);
3091#endif
3092}
3093
3094#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08003095static void *cache_alloc_debugcheck_after(struct kmem_cache *cachep,
3096 gfp_t flags, void *objp, void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003098 if (!objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099 return objp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003100 if (cachep->flags & SLAB_POISON) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101#ifdef CONFIG_DEBUG_PAGEALLOC
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003102 if ((cachep->buffer_size % PAGE_SIZE) == 0 && OFF_SLAB(cachep))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003103 kernel_map_pages(virt_to_page(objp),
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003104 cachep->buffer_size / PAGE_SIZE, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 else
3106 check_poison_obj(cachep, objp);
3107#else
3108 check_poison_obj(cachep, objp);
3109#endif
3110 poison_obj(cachep, objp, POISON_INUSE);
3111 }
3112 if (cachep->flags & SLAB_STORE_USER)
3113 *dbg_userword(cachep, objp) = caller;
3114
3115 if (cachep->flags & SLAB_RED_ZONE) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08003116 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE ||
3117 *dbg_redzone2(cachep, objp) != RED_INACTIVE) {
3118 slab_error(cachep, "double free, or memory outside"
3119 " object was overwritten");
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003120 printk(KERN_ERR
David Woodhouseb46b8f12007-05-08 00:22:59 -07003121 "%p: redzone 1:0x%llx, redzone 2:0x%llx\n",
Andrew Mortona737b3e2006-03-22 00:08:11 -08003122 objp, *dbg_redzone1(cachep, objp),
3123 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124 }
3125 *dbg_redzone1(cachep, objp) = RED_ACTIVE;
3126 *dbg_redzone2(cachep, objp) = RED_ACTIVE;
3127 }
Al Viro871751e2006-03-25 03:06:39 -08003128#ifdef CONFIG_DEBUG_SLAB_LEAK
3129 {
3130 struct slab *slabp;
3131 unsigned objnr;
3132
Christoph Lameterb49af682007-05-06 14:49:41 -07003133 slabp = page_get_slab(virt_to_head_page(objp));
Al Viro871751e2006-03-25 03:06:39 -08003134 objnr = (unsigned)(objp - slabp->s_mem) / cachep->buffer_size;
3135 slab_bufctl(slabp)[objnr] = BUFCTL_ACTIVE;
3136 }
3137#endif
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003138 objp += obj_offset(cachep);
Christoph Lameter4f104932007-05-06 14:50:17 -07003139 if (cachep->ctor && cachep->flags & SLAB_POISON)
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07003140 cachep->ctor(objp);
Kevin Hilmana44b56d2006-12-06 20:32:11 -08003141#if ARCH_SLAB_MINALIGN
3142 if ((u32)objp & (ARCH_SLAB_MINALIGN-1)) {
3143 printk(KERN_ERR "0x%p: not aligned to ARCH_SLAB_MINALIGN=%d\n",
3144 objp, ARCH_SLAB_MINALIGN);
3145 }
3146#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147 return objp;
3148}
3149#else
3150#define cache_alloc_debugcheck_after(a,b,objp,d) (objp)
3151#endif
3152
Akinobu Mita773ff602008-12-23 19:37:01 +09003153static bool slab_should_failslab(struct kmem_cache *cachep, gfp_t flags)
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003154{
3155 if (cachep == &cache_cache)
Akinobu Mita773ff602008-12-23 19:37:01 +09003156 return false;
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003157
Akinobu Mita773ff602008-12-23 19:37:01 +09003158 return should_failslab(obj_size(cachep), flags);
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003159}
3160
Pekka Enberg343e0d72006-02-01 03:05:50 -08003161static inline void *____cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003163 void *objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164 struct array_cache *ac;
3165
Alok N Kataria5c382302005-09-27 21:45:46 -07003166 check_irq_off();
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003167
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003168 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003169 if (likely(ac->avail)) {
3170 STATS_INC_ALLOCHIT(cachep);
3171 ac->touched = 1;
Christoph Lametere498be72005-09-09 13:03:32 -07003172 objp = ac->entry[--ac->avail];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173 } else {
3174 STATS_INC_ALLOCMISS(cachep);
3175 objp = cache_alloc_refill(cachep, flags);
3176 }
Catalin Marinasd5cff632009-06-11 13:22:40 +01003177 /*
3178 * To avoid a false negative, if an object that is in one of the
3179 * per-CPU caches is leaked, we need to make sure kmemleak doesn't
3180 * treat the array pointers as a reference to the object.
3181 */
3182 kmemleak_erase(&ac->entry[ac->avail]);
Alok N Kataria5c382302005-09-27 21:45:46 -07003183 return objp;
3184}
3185
Christoph Lametere498be72005-09-09 13:03:32 -07003186#ifdef CONFIG_NUMA
3187/*
Paul Jacksonb2455392006-03-24 03:16:12 -08003188 * Try allocating on another node if PF_SPREAD_SLAB|PF_MEMPOLICY.
Paul Jacksonc61afb12006-03-24 03:16:08 -08003189 *
3190 * If we are in_interrupt, then process context, including cpusets and
3191 * mempolicy, may not apply and should not be used for allocation policy.
3192 */
3193static void *alternate_node_alloc(struct kmem_cache *cachep, gfp_t flags)
3194{
3195 int nid_alloc, nid_here;
3196
Christoph Lameter765c4502006-09-27 01:50:08 -07003197 if (in_interrupt() || (flags & __GFP_THISNODE))
Paul Jacksonc61afb12006-03-24 03:16:08 -08003198 return NULL;
3199 nid_alloc = nid_here = numa_node_id();
3200 if (cpuset_do_slab_mem_spread() && (cachep->flags & SLAB_MEM_SPREAD))
3201 nid_alloc = cpuset_mem_spread_node();
3202 else if (current->mempolicy)
3203 nid_alloc = slab_node(current->mempolicy);
3204 if (nid_alloc != nid_here)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003205 return ____cache_alloc_node(cachep, flags, nid_alloc);
Paul Jacksonc61afb12006-03-24 03:16:08 -08003206 return NULL;
3207}
3208
3209/*
Christoph Lameter765c4502006-09-27 01:50:08 -07003210 * Fallback function if there was no memory available and no objects on a
Christoph Lameter3c517a62006-12-06 20:33:29 -08003211 * certain node and fall back is permitted. First we scan all the
3212 * available nodelists for available objects. If that fails then we
3213 * perform an allocation without specifying a node. This allows the page
3214 * allocator to do its reclaim / fallback magic. We then insert the
3215 * slab into the proper nodelist and then allocate from it.
Christoph Lameter765c4502006-09-27 01:50:08 -07003216 */
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003217static void *fallback_alloc(struct kmem_cache *cache, gfp_t flags)
Christoph Lameter765c4502006-09-27 01:50:08 -07003218{
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003219 struct zonelist *zonelist;
3220 gfp_t local_flags;
Mel Gormandd1a2392008-04-28 02:12:17 -07003221 struct zoneref *z;
Mel Gorman54a6eb52008-04-28 02:12:16 -07003222 struct zone *zone;
3223 enum zone_type high_zoneidx = gfp_zone(flags);
Christoph Lameter765c4502006-09-27 01:50:08 -07003224 void *obj = NULL;
Christoph Lameter3c517a62006-12-06 20:33:29 -08003225 int nid;
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003226
3227 if (flags & __GFP_THISNODE)
3228 return NULL;
3229
Mel Gorman0e884602008-04-28 02:12:14 -07003230 zonelist = node_zonelist(slab_node(current->mempolicy), flags);
Christoph Lameter6cb06222007-10-16 01:25:41 -07003231 local_flags = flags & (GFP_CONSTRAINT_MASK|GFP_RECLAIM_MASK);
Christoph Lameter765c4502006-09-27 01:50:08 -07003232
Christoph Lameter3c517a62006-12-06 20:33:29 -08003233retry:
3234 /*
3235 * Look through allowed nodes for objects available
3236 * from existing per node queues.
3237 */
Mel Gorman54a6eb52008-04-28 02:12:16 -07003238 for_each_zone_zonelist(zone, z, zonelist, high_zoneidx) {
3239 nid = zone_to_nid(zone);
Christoph Lameteraedb0eb2006-10-21 10:24:16 -07003240
Mel Gorman54a6eb52008-04-28 02:12:16 -07003241 if (cpuset_zone_allowed_hardwall(zone, flags) &&
Christoph Lameter3c517a62006-12-06 20:33:29 -08003242 cache->nodelists[nid] &&
Christoph Lameter481c5342008-06-21 16:46:35 -07003243 cache->nodelists[nid]->free_objects) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003244 obj = ____cache_alloc_node(cache,
3245 flags | GFP_THISNODE, nid);
Christoph Lameter481c5342008-06-21 16:46:35 -07003246 if (obj)
3247 break;
3248 }
Christoph Lameter3c517a62006-12-06 20:33:29 -08003249 }
3250
Christoph Lametercfce6602007-05-06 14:50:17 -07003251 if (!obj) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003252 /*
3253 * This allocation will be performed within the constraints
3254 * of the current cpuset / memory policy requirements.
3255 * We may trigger various forms of reclaim on the allowed
3256 * set and go into memory reserves if necessary.
3257 */
Christoph Lameterdd47ea72006-12-13 00:34:11 -08003258 if (local_flags & __GFP_WAIT)
3259 local_irq_enable();
3260 kmem_flagcheck(cache, flags);
Mel Gorman6484eb32009-06-16 15:31:54 -07003261 obj = kmem_getpages(cache, local_flags, numa_node_id());
Christoph Lameterdd47ea72006-12-13 00:34:11 -08003262 if (local_flags & __GFP_WAIT)
3263 local_irq_disable();
Christoph Lameter3c517a62006-12-06 20:33:29 -08003264 if (obj) {
3265 /*
3266 * Insert into the appropriate per node queues
3267 */
3268 nid = page_to_nid(virt_to_page(obj));
3269 if (cache_grow(cache, flags, nid, obj)) {
3270 obj = ____cache_alloc_node(cache,
3271 flags | GFP_THISNODE, nid);
3272 if (!obj)
3273 /*
3274 * Another processor may allocate the
3275 * objects in the slab since we are
3276 * not holding any locks.
3277 */
3278 goto retry;
3279 } else {
Hugh Dickinsb6a60452007-01-05 16:36:36 -08003280 /* cache_grow already freed obj */
Christoph Lameter3c517a62006-12-06 20:33:29 -08003281 obj = NULL;
3282 }
3283 }
Christoph Lameteraedb0eb2006-10-21 10:24:16 -07003284 }
Christoph Lameter765c4502006-09-27 01:50:08 -07003285 return obj;
3286}
3287
3288/*
Christoph Lametere498be72005-09-09 13:03:32 -07003289 * A interface to enable slab creation on nodeid
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290 */
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003291static void *____cache_alloc_node(struct kmem_cache *cachep, gfp_t flags,
Andrew Mortona737b3e2006-03-22 00:08:11 -08003292 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07003293{
3294 struct list_head *entry;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003295 struct slab *slabp;
3296 struct kmem_list3 *l3;
3297 void *obj;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003298 int x;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003300 l3 = cachep->nodelists[nodeid];
3301 BUG_ON(!l3);
Christoph Lametere498be72005-09-09 13:03:32 -07003302
Andrew Mortona737b3e2006-03-22 00:08:11 -08003303retry:
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08003304 check_irq_off();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003305 spin_lock(&l3->list_lock);
3306 entry = l3->slabs_partial.next;
3307 if (entry == &l3->slabs_partial) {
3308 l3->free_touched = 1;
3309 entry = l3->slabs_free.next;
3310 if (entry == &l3->slabs_free)
3311 goto must_grow;
3312 }
Christoph Lametere498be72005-09-09 13:03:32 -07003313
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003314 slabp = list_entry(entry, struct slab, list);
3315 check_spinlock_acquired_node(cachep, nodeid);
3316 check_slabp(cachep, slabp);
Christoph Lametere498be72005-09-09 13:03:32 -07003317
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003318 STATS_INC_NODEALLOCS(cachep);
3319 STATS_INC_ACTIVE(cachep);
3320 STATS_SET_HIGH(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003321
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003322 BUG_ON(slabp->inuse == cachep->num);
Christoph Lametere498be72005-09-09 13:03:32 -07003323
Matthew Dobson78d382d2006-02-01 03:05:47 -08003324 obj = slab_get_obj(cachep, slabp, nodeid);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003325 check_slabp(cachep, slabp);
3326 l3->free_objects--;
3327 /* move slabp to correct slabp list: */
3328 list_del(&slabp->list);
Christoph Lametere498be72005-09-09 13:03:32 -07003329
Andrew Mortona737b3e2006-03-22 00:08:11 -08003330 if (slabp->free == BUFCTL_END)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003331 list_add(&slabp->list, &l3->slabs_full);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003332 else
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003333 list_add(&slabp->list, &l3->slabs_partial);
Christoph Lametere498be72005-09-09 13:03:32 -07003334
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003335 spin_unlock(&l3->list_lock);
3336 goto done;
Christoph Lametere498be72005-09-09 13:03:32 -07003337
Andrew Mortona737b3e2006-03-22 00:08:11 -08003338must_grow:
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003339 spin_unlock(&l3->list_lock);
Christoph Lameter3c517a62006-12-06 20:33:29 -08003340 x = cache_grow(cachep, flags | GFP_THISNODE, nodeid, NULL);
Christoph Lameter765c4502006-09-27 01:50:08 -07003341 if (x)
3342 goto retry;
Christoph Lametere498be72005-09-09 13:03:32 -07003343
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003344 return fallback_alloc(cachep, flags);
Christoph Lameter765c4502006-09-27 01:50:08 -07003345
Andrew Mortona737b3e2006-03-22 00:08:11 -08003346done:
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003347 return obj;
Christoph Lametere498be72005-09-09 13:03:32 -07003348}
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003349
3350/**
3351 * kmem_cache_alloc_node - Allocate an object on the specified node
3352 * @cachep: The cache to allocate from.
3353 * @flags: See kmalloc().
3354 * @nodeid: node number of the target node.
3355 * @caller: return address of caller, used for debug information
3356 *
3357 * Identical to kmem_cache_alloc but it will allocate memory on the given
3358 * node, which can improve the performance for cpu bound structures.
3359 *
3360 * Fallback to other node is possible if __GFP_THISNODE is not set.
3361 */
3362static __always_inline void *
3363__cache_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid,
3364 void *caller)
3365{
3366 unsigned long save_flags;
3367 void *ptr;
3368
Pekka Enberg7e85ee02009-06-12 14:03:06 +03003369 flags &= slab_gfp_mask;
3370
Nick Piggincf40bd12009-01-21 08:12:39 +01003371 lockdep_trace_alloc(flags);
3372
Akinobu Mita773ff602008-12-23 19:37:01 +09003373 if (slab_should_failslab(cachep, flags))
Akinobu Mita824ebef2007-05-06 14:49:58 -07003374 return NULL;
3375
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003376 cache_alloc_debugcheck_before(cachep, flags);
3377 local_irq_save(save_flags);
3378
3379 if (unlikely(nodeid == -1))
3380 nodeid = numa_node_id();
3381
3382 if (unlikely(!cachep->nodelists[nodeid])) {
3383 /* Node not bootstrapped yet */
3384 ptr = fallback_alloc(cachep, flags);
3385 goto out;
3386 }
3387
3388 if (nodeid == numa_node_id()) {
3389 /*
3390 * Use the locally cached objects if possible.
3391 * However ____cache_alloc does not allow fallback
3392 * to other nodes. It may fail while we still have
3393 * objects on other nodes available.
3394 */
3395 ptr = ____cache_alloc(cachep, flags);
3396 if (ptr)
3397 goto out;
3398 }
3399 /* ___cache_alloc_node can fall back to other nodes */
3400 ptr = ____cache_alloc_node(cachep, flags, nodeid);
3401 out:
3402 local_irq_restore(save_flags);
3403 ptr = cache_alloc_debugcheck_after(cachep, flags, ptr, caller);
Catalin Marinasd5cff632009-06-11 13:22:40 +01003404 kmemleak_alloc_recursive(ptr, obj_size(cachep), 1, cachep->flags,
3405 flags);
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003406
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003407 if (unlikely((flags & __GFP_ZERO) && ptr))
3408 memset(ptr, 0, obj_size(cachep));
3409
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003410 return ptr;
3411}
3412
3413static __always_inline void *
3414__do_cache_alloc(struct kmem_cache *cache, gfp_t flags)
3415{
3416 void *objp;
3417
3418 if (unlikely(current->flags & (PF_SPREAD_SLAB | PF_MEMPOLICY))) {
3419 objp = alternate_node_alloc(cache, flags);
3420 if (objp)
3421 goto out;
3422 }
3423 objp = ____cache_alloc(cache, flags);
3424
3425 /*
3426 * We may just have run out of memory on the local node.
3427 * ____cache_alloc_node() knows how to locate memory on other nodes
3428 */
3429 if (!objp)
3430 objp = ____cache_alloc_node(cache, flags, numa_node_id());
3431
3432 out:
3433 return objp;
3434}
3435#else
3436
3437static __always_inline void *
3438__do_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
3439{
3440 return ____cache_alloc(cachep, flags);
3441}
3442
3443#endif /* CONFIG_NUMA */
3444
3445static __always_inline void *
3446__cache_alloc(struct kmem_cache *cachep, gfp_t flags, void *caller)
3447{
3448 unsigned long save_flags;
3449 void *objp;
3450
Pekka Enberg7e85ee02009-06-12 14:03:06 +03003451 flags &= slab_gfp_mask;
3452
Nick Piggincf40bd12009-01-21 08:12:39 +01003453 lockdep_trace_alloc(flags);
3454
Akinobu Mita773ff602008-12-23 19:37:01 +09003455 if (slab_should_failslab(cachep, flags))
Akinobu Mita824ebef2007-05-06 14:49:58 -07003456 return NULL;
3457
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003458 cache_alloc_debugcheck_before(cachep, flags);
3459 local_irq_save(save_flags);
3460 objp = __do_cache_alloc(cachep, flags);
3461 local_irq_restore(save_flags);
3462 objp = cache_alloc_debugcheck_after(cachep, flags, objp, caller);
Catalin Marinasd5cff632009-06-11 13:22:40 +01003463 kmemleak_alloc_recursive(objp, obj_size(cachep), 1, cachep->flags,
3464 flags);
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003465 prefetchw(objp);
3466
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003467 if (unlikely((flags & __GFP_ZERO) && objp))
3468 memset(objp, 0, obj_size(cachep));
3469
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003470 return objp;
3471}
Christoph Lametere498be72005-09-09 13:03:32 -07003472
3473/*
3474 * Caller needs to acquire correct kmem_list's list_lock
3475 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003476static void free_block(struct kmem_cache *cachep, void **objpp, int nr_objects,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003477 int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003478{
3479 int i;
Christoph Lametere498be72005-09-09 13:03:32 -07003480 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481
3482 for (i = 0; i < nr_objects; i++) {
3483 void *objp = objpp[i];
3484 struct slab *slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003485
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08003486 slabp = virt_to_slab(objp);
Christoph Lameterff694162005-09-22 21:44:02 -07003487 l3 = cachep->nodelists[node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488 list_del(&slabp->list);
Christoph Lameterff694162005-09-22 21:44:02 -07003489 check_spinlock_acquired_node(cachep, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490 check_slabp(cachep, slabp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08003491 slab_put_obj(cachep, slabp, objp, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003492 STATS_DEC_ACTIVE(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003493 l3->free_objects++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003494 check_slabp(cachep, slabp);
3495
3496 /* fixup slab chains */
3497 if (slabp->inuse == 0) {
Christoph Lametere498be72005-09-09 13:03:32 -07003498 if (l3->free_objects > l3->free_limit) {
3499 l3->free_objects -= cachep->num;
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07003500 /* No need to drop any previously held
3501 * lock here, even if we have a off-slab slab
3502 * descriptor it is guaranteed to come from
3503 * a different cache, refer to comments before
3504 * alloc_slabmgmt.
3505 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506 slab_destroy(cachep, slabp);
3507 } else {
Christoph Lametere498be72005-09-09 13:03:32 -07003508 list_add(&slabp->list, &l3->slabs_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003509 }
3510 } else {
3511 /* Unconditionally move a slab to the end of the
3512 * partial list on free - maximum time for the
3513 * other objects to be freed, too.
3514 */
Christoph Lametere498be72005-09-09 13:03:32 -07003515 list_add_tail(&slabp->list, &l3->slabs_partial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516 }
3517 }
3518}
3519
Pekka Enberg343e0d72006-02-01 03:05:50 -08003520static void cache_flusharray(struct kmem_cache *cachep, struct array_cache *ac)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521{
3522 int batchcount;
Christoph Lametere498be72005-09-09 13:03:32 -07003523 struct kmem_list3 *l3;
Christoph Lameterff694162005-09-22 21:44:02 -07003524 int node = numa_node_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003525
3526 batchcount = ac->batchcount;
3527#if DEBUG
3528 BUG_ON(!batchcount || batchcount > ac->avail);
3529#endif
3530 check_irq_off();
Christoph Lameterff694162005-09-22 21:44:02 -07003531 l3 = cachep->nodelists[node];
Ingo Molnar873623d2006-07-13 14:44:38 +02003532 spin_lock(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07003533 if (l3->shared) {
3534 struct array_cache *shared_array = l3->shared;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003535 int max = shared_array->limit - shared_array->avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003536 if (max) {
3537 if (batchcount > max)
3538 batchcount = max;
Christoph Lametere498be72005-09-09 13:03:32 -07003539 memcpy(&(shared_array->entry[shared_array->avail]),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003540 ac->entry, sizeof(void *) * batchcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003541 shared_array->avail += batchcount;
3542 goto free_done;
3543 }
3544 }
3545
Christoph Lameterff694162005-09-22 21:44:02 -07003546 free_block(cachep, ac->entry, batchcount, node);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003547free_done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548#if STATS
3549 {
3550 int i = 0;
3551 struct list_head *p;
3552
Christoph Lametere498be72005-09-09 13:03:32 -07003553 p = l3->slabs_free.next;
3554 while (p != &(l3->slabs_free)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555 struct slab *slabp;
3556
3557 slabp = list_entry(p, struct slab, list);
3558 BUG_ON(slabp->inuse);
3559
3560 i++;
3561 p = p->next;
3562 }
3563 STATS_SET_FREEABLE(cachep, i);
3564 }
3565#endif
Christoph Lametere498be72005-09-09 13:03:32 -07003566 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003567 ac->avail -= batchcount;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003568 memmove(ac->entry, &(ac->entry[batchcount]), sizeof(void *)*ac->avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003569}
3570
3571/*
Andrew Mortona737b3e2006-03-22 00:08:11 -08003572 * Release an obj back to its cache. If the obj has a constructed state, it must
3573 * be in this state _before_ it is released. Called with disabled ints.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003574 */
Ingo Molnar873623d2006-07-13 14:44:38 +02003575static inline void __cache_free(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003576{
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003577 struct array_cache *ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003578
3579 check_irq_off();
Catalin Marinasd5cff632009-06-11 13:22:40 +01003580 kmemleak_free_recursive(objp, cachep->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581 objp = cache_free_debugcheck(cachep, objp, __builtin_return_address(0));
3582
Siddha, Suresh B1807a1a2007-08-22 14:01:49 -07003583 /*
3584 * Skip calling cache_free_alien() when the platform is not numa.
3585 * This will avoid cache misses that happen while accessing slabp (which
3586 * is per page memory reference) to get nodeid. Instead use a global
3587 * variable to skip the call, which is mostly likely to be present in
3588 * the cache.
3589 */
Mel Gormanb6e68bc2009-06-16 15:32:16 -07003590 if (nr_online_nodes > 1 && cache_free_alien(cachep, objp))
Pekka Enberg729bd0b2006-06-23 02:03:05 -07003591 return;
Christoph Lametere498be72005-09-09 13:03:32 -07003592
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593 if (likely(ac->avail < ac->limit)) {
3594 STATS_INC_FREEHIT(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003595 ac->entry[ac->avail++] = objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003596 return;
3597 } else {
3598 STATS_INC_FREEMISS(cachep);
3599 cache_flusharray(cachep, ac);
Christoph Lametere498be72005-09-09 13:03:32 -07003600 ac->entry[ac->avail++] = objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003601 }
3602}
3603
3604/**
3605 * kmem_cache_alloc - Allocate an object
3606 * @cachep: The cache to allocate from.
3607 * @flags: See kmalloc().
3608 *
3609 * Allocate an object from this cache. The flags are only relevant
3610 * if the cache has no available objects.
3611 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003612void *kmem_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003613{
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003614 void *ret = __cache_alloc(cachep, flags, __builtin_return_address(0));
3615
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003616 trace_kmem_cache_alloc(_RET_IP_, ret,
3617 obj_size(cachep), cachep->buffer_size, flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003618
3619 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620}
3621EXPORT_SYMBOL(kmem_cache_alloc);
3622
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003623#ifdef CONFIG_KMEMTRACE
3624void *kmem_cache_alloc_notrace(struct kmem_cache *cachep, gfp_t flags)
3625{
3626 return __cache_alloc(cachep, flags, __builtin_return_address(0));
3627}
3628EXPORT_SYMBOL(kmem_cache_alloc_notrace);
3629#endif
3630
Linus Torvalds1da177e2005-04-16 15:20:36 -07003631/**
Randy Dunlap76824862008-03-19 17:00:40 -07003632 * kmem_ptr_validate - check if an untrusted pointer might be a slab entry.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003633 * @cachep: the cache we're checking against
3634 * @ptr: pointer to validate
3635 *
Randy Dunlap76824862008-03-19 17:00:40 -07003636 * This verifies that the untrusted pointer looks sane;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637 * it is _not_ a guarantee that the pointer is actually
3638 * part of the slab cache in question, but it at least
3639 * validates that the pointer can be dereferenced and
3640 * looks half-way sane.
3641 *
3642 * Currently only used for dentry validation.
3643 */
Christoph Lameterb7f869a2006-12-22 01:06:44 -08003644int kmem_ptr_validate(struct kmem_cache *cachep, const void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003645{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003646 unsigned long addr = (unsigned long)ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003647 unsigned long min_addr = PAGE_OFFSET;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003648 unsigned long align_mask = BYTES_PER_WORD - 1;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003649 unsigned long size = cachep->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003650 struct page *page;
3651
3652 if (unlikely(addr < min_addr))
3653 goto out;
3654 if (unlikely(addr > (unsigned long)high_memory - size))
3655 goto out;
3656 if (unlikely(addr & align_mask))
3657 goto out;
3658 if (unlikely(!kern_addr_valid(addr)))
3659 goto out;
3660 if (unlikely(!kern_addr_valid(addr + size - 1)))
3661 goto out;
3662 page = virt_to_page(ptr);
3663 if (unlikely(!PageSlab(page)))
3664 goto out;
Pekka Enberg065d41c2005-11-13 16:06:46 -08003665 if (unlikely(page_get_cache(page) != cachep))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003666 goto out;
3667 return 1;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003668out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003669 return 0;
3670}
3671
3672#ifdef CONFIG_NUMA
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003673void *kmem_cache_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid)
3674{
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003675 void *ret = __cache_alloc_node(cachep, flags, nodeid,
3676 __builtin_return_address(0));
3677
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003678 trace_kmem_cache_alloc_node(_RET_IP_, ret,
3679 obj_size(cachep), cachep->buffer_size,
3680 flags, nodeid);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003681
3682 return ret;
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003683}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003684EXPORT_SYMBOL(kmem_cache_alloc_node);
3685
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003686#ifdef CONFIG_KMEMTRACE
3687void *kmem_cache_alloc_node_notrace(struct kmem_cache *cachep,
3688 gfp_t flags,
3689 int nodeid)
3690{
3691 return __cache_alloc_node(cachep, flags, nodeid,
3692 __builtin_return_address(0));
3693}
3694EXPORT_SYMBOL(kmem_cache_alloc_node_notrace);
3695#endif
3696
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003697static __always_inline void *
3698__do_kmalloc_node(size_t size, gfp_t flags, int node, void *caller)
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003699{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003700 struct kmem_cache *cachep;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003701 void *ret;
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003702
3703 cachep = kmem_find_general_cachep(size, flags);
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003704 if (unlikely(ZERO_OR_NULL_PTR(cachep)))
3705 return cachep;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003706 ret = kmem_cache_alloc_node_notrace(cachep, flags, node);
3707
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003708 trace_kmalloc_node((unsigned long) caller, ret,
3709 size, cachep->buffer_size, flags, node);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003710
3711 return ret;
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003712}
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003713
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003714#if defined(CONFIG_DEBUG_SLAB) || defined(CONFIG_KMEMTRACE)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003715void *__kmalloc_node(size_t size, gfp_t flags, int node)
3716{
3717 return __do_kmalloc_node(size, flags, node,
3718 __builtin_return_address(0));
3719}
Christoph Hellwigdbe5e692006-09-25 23:31:36 -07003720EXPORT_SYMBOL(__kmalloc_node);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003721
3722void *__kmalloc_node_track_caller(size_t size, gfp_t flags,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003723 int node, unsigned long caller)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003724{
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003725 return __do_kmalloc_node(size, flags, node, (void *)caller);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003726}
3727EXPORT_SYMBOL(__kmalloc_node_track_caller);
3728#else
3729void *__kmalloc_node(size_t size, gfp_t flags, int node)
3730{
3731 return __do_kmalloc_node(size, flags, node, NULL);
3732}
3733EXPORT_SYMBOL(__kmalloc_node);
3734#endif /* CONFIG_DEBUG_SLAB */
3735#endif /* CONFIG_NUMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003736
3737/**
Paul Drynoff800590f2006-06-23 02:03:48 -07003738 * __do_kmalloc - allocate memory
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739 * @size: how many bytes of memory are required.
Paul Drynoff800590f2006-06-23 02:03:48 -07003740 * @flags: the type of memory to allocate (see kmalloc).
Randy Dunlap911851e2006-03-22 00:08:14 -08003741 * @caller: function caller for debug tracking of the caller
Linus Torvalds1da177e2005-04-16 15:20:36 -07003742 */
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003743static __always_inline void *__do_kmalloc(size_t size, gfp_t flags,
3744 void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003746 struct kmem_cache *cachep;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003747 void *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003749 /* If you want to save a few bytes .text space: replace
3750 * __ with kmem_.
3751 * Then kmalloc uses the uninlined functions instead of the inline
3752 * functions.
3753 */
3754 cachep = __find_general_cachep(size, flags);
Linus Torvaldsa5c96d82007-07-19 13:17:15 -07003755 if (unlikely(ZERO_OR_NULL_PTR(cachep)))
3756 return cachep;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003757 ret = __cache_alloc(cachep, flags, caller);
3758
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003759 trace_kmalloc((unsigned long) caller, ret,
3760 size, cachep->buffer_size, flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003761
3762 return ret;
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003763}
3764
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003765
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003766#if defined(CONFIG_DEBUG_SLAB) || defined(CONFIG_KMEMTRACE)
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003767void *__kmalloc(size_t size, gfp_t flags)
3768{
Al Viro871751e2006-03-25 03:06:39 -08003769 return __do_kmalloc(size, flags, __builtin_return_address(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770}
3771EXPORT_SYMBOL(__kmalloc);
3772
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003773void *__kmalloc_track_caller(size_t size, gfp_t flags, unsigned long caller)
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003774{
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003775 return __do_kmalloc(size, flags, (void *)caller);
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003776}
3777EXPORT_SYMBOL(__kmalloc_track_caller);
Christoph Hellwig1d2c8ee2006-10-04 02:15:25 -07003778
3779#else
3780void *__kmalloc(size_t size, gfp_t flags)
3781{
3782 return __do_kmalloc(size, flags, NULL);
3783}
3784EXPORT_SYMBOL(__kmalloc);
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003785#endif
3786
Linus Torvalds1da177e2005-04-16 15:20:36 -07003787/**
3788 * kmem_cache_free - Deallocate an object
3789 * @cachep: The cache the allocation was from.
3790 * @objp: The previously allocated object.
3791 *
3792 * Free an object which was previously allocated from this
3793 * cache.
3794 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003795void kmem_cache_free(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003796{
3797 unsigned long flags;
3798
3799 local_irq_save(flags);
Ingo Molnar898552c2007-02-10 01:44:57 -08003800 debug_check_no_locks_freed(objp, obj_size(cachep));
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -07003801 if (!(cachep->flags & SLAB_DEBUG_OBJECTS))
3802 debug_check_no_obj_freed(objp, obj_size(cachep));
Ingo Molnar873623d2006-07-13 14:44:38 +02003803 __cache_free(cachep, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804 local_irq_restore(flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003805
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003806 trace_kmem_cache_free(_RET_IP_, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003807}
3808EXPORT_SYMBOL(kmem_cache_free);
3809
3810/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003811 * kfree - free previously allocated memory
3812 * @objp: pointer returned by kmalloc.
3813 *
Pekka Enberg80e93ef2005-09-09 13:10:16 -07003814 * If @objp is NULL, no operation is performed.
3815 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816 * Don't free memory not originally allocated by kmalloc()
3817 * or you will run into trouble.
3818 */
3819void kfree(const void *objp)
3820{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003821 struct kmem_cache *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822 unsigned long flags;
3823
Pekka Enberg2121db72009-03-25 11:05:57 +02003824 trace_kfree(_RET_IP_, objp);
3825
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003826 if (unlikely(ZERO_OR_NULL_PTR(objp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003827 return;
3828 local_irq_save(flags);
3829 kfree_debugcheck(objp);
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08003830 c = virt_to_cache(objp);
Ingo Molnarf9b84042006-06-27 02:54:49 -07003831 debug_check_no_locks_freed(objp, obj_size(c));
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -07003832 debug_check_no_obj_freed(objp, obj_size(c));
Ingo Molnar873623d2006-07-13 14:44:38 +02003833 __cache_free(c, (void *)objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003834 local_irq_restore(flags);
3835}
3836EXPORT_SYMBOL(kfree);
3837
Pekka Enberg343e0d72006-02-01 03:05:50 -08003838unsigned int kmem_cache_size(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003839{
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003840 return obj_size(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841}
3842EXPORT_SYMBOL(kmem_cache_size);
3843
Pekka Enberg343e0d72006-02-01 03:05:50 -08003844const char *kmem_cache_name(struct kmem_cache *cachep)
Arnaldo Carvalho de Melo19449722005-06-18 22:46:19 -07003845{
3846 return cachep->name;
3847}
3848EXPORT_SYMBOL_GPL(kmem_cache_name);
3849
Christoph Lametere498be72005-09-09 13:03:32 -07003850/*
Simon Arlott183ff222007-10-20 01:27:18 +02003851 * This initializes kmem_list3 or resizes various caches for all nodes.
Christoph Lametere498be72005-09-09 13:03:32 -07003852 */
Pekka Enberg83b519e2009-06-10 19:40:04 +03003853static int alloc_kmemlist(struct kmem_cache *cachep, gfp_t gfp)
Christoph Lametere498be72005-09-09 13:03:32 -07003854{
3855 int node;
3856 struct kmem_list3 *l3;
Christoph Lametercafeb022006-03-25 03:06:46 -08003857 struct array_cache *new_shared;
Paul Menage3395ee02006-12-06 20:32:16 -08003858 struct array_cache **new_alien = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07003859
Mel Gorman9c09a952008-01-24 05:49:54 -08003860 for_each_online_node(node) {
Christoph Lametercafeb022006-03-25 03:06:46 -08003861
Paul Menage3395ee02006-12-06 20:32:16 -08003862 if (use_alien_caches) {
Pekka Enberg83b519e2009-06-10 19:40:04 +03003863 new_alien = alloc_alien_cache(node, cachep->limit, gfp);
Paul Menage3395ee02006-12-06 20:32:16 -08003864 if (!new_alien)
3865 goto fail;
3866 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003867
Eric Dumazet63109842007-05-06 14:49:28 -07003868 new_shared = NULL;
3869 if (cachep->shared) {
3870 new_shared = alloc_arraycache(node,
Christoph Lameter0718dc22006-03-25 03:06:47 -08003871 cachep->shared*cachep->batchcount,
Pekka Enberg83b519e2009-06-10 19:40:04 +03003872 0xbaadf00d, gfp);
Eric Dumazet63109842007-05-06 14:49:28 -07003873 if (!new_shared) {
3874 free_alien_cache(new_alien);
3875 goto fail;
3876 }
Christoph Lameter0718dc22006-03-25 03:06:47 -08003877 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003878
Andrew Mortona737b3e2006-03-22 00:08:11 -08003879 l3 = cachep->nodelists[node];
3880 if (l3) {
Christoph Lametercafeb022006-03-25 03:06:46 -08003881 struct array_cache *shared = l3->shared;
3882
Christoph Lametere498be72005-09-09 13:03:32 -07003883 spin_lock_irq(&l3->list_lock);
3884
Christoph Lametercafeb022006-03-25 03:06:46 -08003885 if (shared)
Christoph Lameter0718dc22006-03-25 03:06:47 -08003886 free_block(cachep, shared->entry,
3887 shared->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -07003888
Christoph Lametercafeb022006-03-25 03:06:46 -08003889 l3->shared = new_shared;
3890 if (!l3->alien) {
Christoph Lametere498be72005-09-09 13:03:32 -07003891 l3->alien = new_alien;
3892 new_alien = NULL;
3893 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003894 l3->free_limit = (1 + nr_cpus_node(node)) *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003895 cachep->batchcount + cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07003896 spin_unlock_irq(&l3->list_lock);
Christoph Lametercafeb022006-03-25 03:06:46 -08003897 kfree(shared);
Christoph Lametere498be72005-09-09 13:03:32 -07003898 free_alien_cache(new_alien);
3899 continue;
3900 }
Pekka Enberg83b519e2009-06-10 19:40:04 +03003901 l3 = kmalloc_node(sizeof(struct kmem_list3), gfp, node);
Christoph Lameter0718dc22006-03-25 03:06:47 -08003902 if (!l3) {
3903 free_alien_cache(new_alien);
3904 kfree(new_shared);
Christoph Lametere498be72005-09-09 13:03:32 -07003905 goto fail;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003906 }
Christoph Lametere498be72005-09-09 13:03:32 -07003907
3908 kmem_list3_init(l3);
3909 l3->next_reap = jiffies + REAPTIMEOUT_LIST3 +
Andrew Mortona737b3e2006-03-22 00:08:11 -08003910 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
Christoph Lametercafeb022006-03-25 03:06:46 -08003911 l3->shared = new_shared;
Christoph Lametere498be72005-09-09 13:03:32 -07003912 l3->alien = new_alien;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003913 l3->free_limit = (1 + nr_cpus_node(node)) *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003914 cachep->batchcount + cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07003915 cachep->nodelists[node] = l3;
3916 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003917 return 0;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003918
Andrew Mortona737b3e2006-03-22 00:08:11 -08003919fail:
Christoph Lameter0718dc22006-03-25 03:06:47 -08003920 if (!cachep->next.next) {
3921 /* Cache is not active yet. Roll back what we did */
3922 node--;
3923 while (node >= 0) {
3924 if (cachep->nodelists[node]) {
3925 l3 = cachep->nodelists[node];
3926
3927 kfree(l3->shared);
3928 free_alien_cache(l3->alien);
3929 kfree(l3);
3930 cachep->nodelists[node] = NULL;
3931 }
3932 node--;
3933 }
3934 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003935 return -ENOMEM;
Christoph Lametere498be72005-09-09 13:03:32 -07003936}
3937
Linus Torvalds1da177e2005-04-16 15:20:36 -07003938struct ccupdate_struct {
Pekka Enberg343e0d72006-02-01 03:05:50 -08003939 struct kmem_cache *cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940 struct array_cache *new[NR_CPUS];
3941};
3942
3943static void do_ccupdate_local(void *info)
3944{
Andrew Mortona737b3e2006-03-22 00:08:11 -08003945 struct ccupdate_struct *new = info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003946 struct array_cache *old;
3947
3948 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003949 old = cpu_cache_get(new->cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003950
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951 new->cachep->array[smp_processor_id()] = new->new[smp_processor_id()];
3952 new->new[smp_processor_id()] = old;
3953}
3954
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -08003955/* Always called with the cache_chain_mutex held */
Andrew Mortona737b3e2006-03-22 00:08:11 -08003956static int do_tune_cpucache(struct kmem_cache *cachep, int limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03003957 int batchcount, int shared, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958{
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003959 struct ccupdate_struct *new;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07003960 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003961
Pekka Enberg83b519e2009-06-10 19:40:04 +03003962 new = kzalloc(sizeof(*new), gfp);
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003963 if (!new)
3964 return -ENOMEM;
3965
Christoph Lametere498be72005-09-09 13:03:32 -07003966 for_each_online_cpu(i) {
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003967 new->new[i] = alloc_arraycache(cpu_to_node(i), limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03003968 batchcount, gfp);
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003969 if (!new->new[i]) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003970 for (i--; i >= 0; i--)
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003971 kfree(new->new[i]);
3972 kfree(new);
Christoph Lametere498be72005-09-09 13:03:32 -07003973 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003974 }
3975 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003976 new->cachep = cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977
Jens Axboe15c8b6c2008-05-09 09:39:44 +02003978 on_each_cpu(do_ccupdate_local, (void *)new, 1);
Christoph Lametere498be72005-09-09 13:03:32 -07003979
Linus Torvalds1da177e2005-04-16 15:20:36 -07003980 check_irq_on();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003981 cachep->batchcount = batchcount;
3982 cachep->limit = limit;
Christoph Lametere498be72005-09-09 13:03:32 -07003983 cachep->shared = shared;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003984
Christoph Lametere498be72005-09-09 13:03:32 -07003985 for_each_online_cpu(i) {
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003986 struct array_cache *ccold = new->new[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003987 if (!ccold)
3988 continue;
Christoph Lametere498be72005-09-09 13:03:32 -07003989 spin_lock_irq(&cachep->nodelists[cpu_to_node(i)]->list_lock);
Christoph Lameterff694162005-09-22 21:44:02 -07003990 free_block(cachep, ccold->entry, ccold->avail, cpu_to_node(i));
Christoph Lametere498be72005-09-09 13:03:32 -07003991 spin_unlock_irq(&cachep->nodelists[cpu_to_node(i)]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003992 kfree(ccold);
3993 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003994 kfree(new);
Pekka Enberg83b519e2009-06-10 19:40:04 +03003995 return alloc_kmemlist(cachep, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003996}
3997
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -08003998/* Called with cache_chain_mutex held always */
Pekka Enberg83b519e2009-06-10 19:40:04 +03003999static int enable_cpucache(struct kmem_cache *cachep, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004000{
4001 int err;
4002 int limit, shared;
4003
Andrew Mortona737b3e2006-03-22 00:08:11 -08004004 /*
4005 * The head array serves three purposes:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004006 * - create a LIFO ordering, i.e. return objects that are cache-warm
4007 * - reduce the number of spinlock operations.
Andrew Mortona737b3e2006-03-22 00:08:11 -08004008 * - reduce the number of linked list operations on the slab and
Linus Torvalds1da177e2005-04-16 15:20:36 -07004009 * bufctl chains: array operations are cheaper.
4010 * The numbers are guessed, we should auto-tune as described by
4011 * Bonwick.
4012 */
Manfred Spraul3dafccf2006-02-01 03:05:42 -08004013 if (cachep->buffer_size > 131072)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004014 limit = 1;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08004015 else if (cachep->buffer_size > PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004016 limit = 8;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08004017 else if (cachep->buffer_size > 1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004018 limit = 24;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08004019 else if (cachep->buffer_size > 256)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004020 limit = 54;
4021 else
4022 limit = 120;
4023
Andrew Mortona737b3e2006-03-22 00:08:11 -08004024 /*
4025 * CPU bound tasks (e.g. network routing) can exhibit cpu bound
Linus Torvalds1da177e2005-04-16 15:20:36 -07004026 * allocation behaviour: Most allocs on one cpu, most free operations
4027 * on another cpu. For these cases, an efficient object passing between
4028 * cpus is necessary. This is provided by a shared array. The array
4029 * replaces Bonwick's magazine layer.
4030 * On uniprocessor, it's functionally equivalent (but less efficient)
4031 * to a larger limit. Thus disabled by default.
4032 */
4033 shared = 0;
Eric Dumazet364fbb22007-05-06 14:49:27 -07004034 if (cachep->buffer_size <= PAGE_SIZE && num_possible_cpus() > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035 shared = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004036
4037#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08004038 /*
4039 * With debugging enabled, large batchcount lead to excessively long
4040 * periods with disabled local interrupts. Limit the batchcount
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041 */
4042 if (limit > 32)
4043 limit = 32;
4044#endif
Pekka Enberg83b519e2009-06-10 19:40:04 +03004045 err = do_tune_cpucache(cachep, limit, (limit + 1) / 2, shared, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004046 if (err)
4047 printk(KERN_ERR "enable_cpucache failed for %s, error %d.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004048 cachep->name, -err);
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07004049 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004050}
4051
Christoph Lameter1b552532006-03-22 00:09:07 -08004052/*
4053 * Drain an array if it contains any elements taking the l3 lock only if
Christoph Lameterb18e7e62006-03-22 00:09:07 -08004054 * necessary. Note that the l3 listlock also protects the array_cache
4055 * if drain_array() is used on the shared array.
Christoph Lameter1b552532006-03-22 00:09:07 -08004056 */
4057void drain_array(struct kmem_cache *cachep, struct kmem_list3 *l3,
4058 struct array_cache *ac, int force, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004059{
4060 int tofree;
4061
Christoph Lameter1b552532006-03-22 00:09:07 -08004062 if (!ac || !ac->avail)
4063 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004064 if (ac->touched && !force) {
4065 ac->touched = 0;
Christoph Lameterb18e7e62006-03-22 00:09:07 -08004066 } else {
Christoph Lameter1b552532006-03-22 00:09:07 -08004067 spin_lock_irq(&l3->list_lock);
Christoph Lameterb18e7e62006-03-22 00:09:07 -08004068 if (ac->avail) {
4069 tofree = force ? ac->avail : (ac->limit + 4) / 5;
4070 if (tofree > ac->avail)
4071 tofree = (ac->avail + 1) / 2;
4072 free_block(cachep, ac->entry, tofree, node);
4073 ac->avail -= tofree;
4074 memmove(ac->entry, &(ac->entry[tofree]),
4075 sizeof(void *) * ac->avail);
4076 }
Christoph Lameter1b552532006-03-22 00:09:07 -08004077 spin_unlock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078 }
4079}
4080
4081/**
4082 * cache_reap - Reclaim memory from caches.
Randy Dunlap05fb6bf2007-02-28 20:12:13 -08004083 * @w: work descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -07004084 *
4085 * Called from workqueue/eventd every few seconds.
4086 * Purpose:
4087 * - clear the per-cpu caches for this CPU.
4088 * - return freeable pages to the main free memory pool.
4089 *
Andrew Mortona737b3e2006-03-22 00:08:11 -08004090 * If we cannot acquire the cache chain mutex then just give up - we'll try
4091 * again on the next iteration.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004092 */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004093static void cache_reap(struct work_struct *w)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004094{
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004095 struct kmem_cache *searchp;
Christoph Lametere498be72005-09-09 13:03:32 -07004096 struct kmem_list3 *l3;
Christoph Lameteraab22072006-03-22 00:09:06 -08004097 int node = numa_node_id();
Jean Delvarebf6aede2009-04-02 16:56:54 -07004098 struct delayed_work *work = to_delayed_work(w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004099
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004100 if (!mutex_trylock(&cache_chain_mutex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004101 /* Give up. Setup the next iteration. */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004102 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004103
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004104 list_for_each_entry(searchp, &cache_chain, next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004105 check_irq_on();
4106
Christoph Lameter35386e32006-03-22 00:09:05 -08004107 /*
4108 * We only take the l3 lock if absolutely necessary and we
4109 * have established with reasonable certainty that
4110 * we can do some work if the lock was obtained.
4111 */
Christoph Lameteraab22072006-03-22 00:09:06 -08004112 l3 = searchp->nodelists[node];
Christoph Lameter35386e32006-03-22 00:09:05 -08004113
Christoph Lameter8fce4d82006-03-09 17:33:54 -08004114 reap_alien(searchp, l3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004115
Christoph Lameteraab22072006-03-22 00:09:06 -08004116 drain_array(searchp, l3, cpu_cache_get(searchp), 0, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004117
Christoph Lameter35386e32006-03-22 00:09:05 -08004118 /*
4119 * These are racy checks but it does not matter
4120 * if we skip one check or scan twice.
4121 */
Christoph Lametere498be72005-09-09 13:03:32 -07004122 if (time_after(l3->next_reap, jiffies))
Christoph Lameter35386e32006-03-22 00:09:05 -08004123 goto next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004124
Christoph Lametere498be72005-09-09 13:03:32 -07004125 l3->next_reap = jiffies + REAPTIMEOUT_LIST3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004126
Christoph Lameteraab22072006-03-22 00:09:06 -08004127 drain_array(searchp, l3, l3->shared, 0, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128
Christoph Lametered11d9e2006-06-30 01:55:45 -07004129 if (l3->free_touched)
Christoph Lametere498be72005-09-09 13:03:32 -07004130 l3->free_touched = 0;
Christoph Lametered11d9e2006-06-30 01:55:45 -07004131 else {
4132 int freed;
4133
4134 freed = drain_freelist(searchp, l3, (l3->free_limit +
4135 5 * searchp->num - 1) / (5 * searchp->num));
4136 STATS_ADD_REAPED(searchp, freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004137 }
Christoph Lameter35386e32006-03-22 00:09:05 -08004138next:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004139 cond_resched();
4140 }
4141 check_irq_on();
Ingo Molnarfc0abb12006-01-18 17:42:33 -08004142 mutex_unlock(&cache_chain_mutex);
Christoph Lameter8fce4d82006-03-09 17:33:54 -08004143 next_reap_node();
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004144out:
Andrew Mortona737b3e2006-03-22 00:08:11 -08004145 /* Set up the next iteration */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004146 schedule_delayed_work(work, round_jiffies_relative(REAPTIMEOUT_CPUC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004147}
4148
Linus Torvalds158a9622008-01-02 13:04:48 -08004149#ifdef CONFIG_SLABINFO
Linus Torvalds1da177e2005-04-16 15:20:36 -07004150
Pekka Enberg85289f92006-01-08 01:00:36 -08004151static void print_slabinfo_header(struct seq_file *m)
4152{
4153 /*
4154 * Output format version, so at least we can change it
4155 * without _too_ many complaints.
4156 */
4157#if STATS
4158 seq_puts(m, "slabinfo - version: 2.1 (statistics)\n");
4159#else
4160 seq_puts(m, "slabinfo - version: 2.1\n");
4161#endif
4162 seq_puts(m, "# name <active_objs> <num_objs> <objsize> "
4163 "<objperslab> <pagesperslab>");
4164 seq_puts(m, " : tunables <limit> <batchcount> <sharedfactor>");
4165 seq_puts(m, " : slabdata <active_slabs> <num_slabs> <sharedavail>");
4166#if STATS
4167 seq_puts(m, " : globalstat <listallocs> <maxobjs> <grown> <reaped> "
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -07004168 "<error> <maxfreeable> <nodeallocs> <remotefrees> <alienoverflow>");
Pekka Enberg85289f92006-01-08 01:00:36 -08004169 seq_puts(m, " : cpustat <allochit> <allocmiss> <freehit> <freemiss>");
4170#endif
4171 seq_putc(m, '\n');
4172}
4173
Linus Torvalds1da177e2005-04-16 15:20:36 -07004174static void *s_start(struct seq_file *m, loff_t *pos)
4175{
4176 loff_t n = *pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004177
Ingo Molnarfc0abb12006-01-18 17:42:33 -08004178 mutex_lock(&cache_chain_mutex);
Pekka Enberg85289f92006-01-08 01:00:36 -08004179 if (!n)
4180 print_slabinfo_header(m);
Pavel Emelianovb92151b2007-07-15 23:38:04 -07004181
4182 return seq_list_start(&cache_chain, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004183}
4184
4185static void *s_next(struct seq_file *m, void *p, loff_t *pos)
4186{
Pavel Emelianovb92151b2007-07-15 23:38:04 -07004187 return seq_list_next(p, &cache_chain, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004188}
4189
4190static void s_stop(struct seq_file *m, void *p)
4191{
Ingo Molnarfc0abb12006-01-18 17:42:33 -08004192 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004193}
4194
4195static int s_show(struct seq_file *m, void *p)
4196{
Pavel Emelianovb92151b2007-07-15 23:38:04 -07004197 struct kmem_cache *cachep = list_entry(p, struct kmem_cache, next);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004198 struct slab *slabp;
4199 unsigned long active_objs;
4200 unsigned long num_objs;
4201 unsigned long active_slabs = 0;
4202 unsigned long num_slabs, free_objects = 0, shared_avail = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07004203 const char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004204 char *error = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07004205 int node;
4206 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004207
Linus Torvalds1da177e2005-04-16 15:20:36 -07004208 active_objs = 0;
4209 num_slabs = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07004210 for_each_online_node(node) {
4211 l3 = cachep->nodelists[node];
4212 if (!l3)
4213 continue;
4214
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08004215 check_irq_on();
4216 spin_lock_irq(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07004217
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004218 list_for_each_entry(slabp, &l3->slabs_full, list) {
Christoph Lametere498be72005-09-09 13:03:32 -07004219 if (slabp->inuse != cachep->num && !error)
4220 error = "slabs_full accounting error";
4221 active_objs += cachep->num;
4222 active_slabs++;
4223 }
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004224 list_for_each_entry(slabp, &l3->slabs_partial, list) {
Christoph Lametere498be72005-09-09 13:03:32 -07004225 if (slabp->inuse == cachep->num && !error)
4226 error = "slabs_partial inuse accounting error";
4227 if (!slabp->inuse && !error)
4228 error = "slabs_partial/inuse accounting error";
4229 active_objs += slabp->inuse;
4230 active_slabs++;
4231 }
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004232 list_for_each_entry(slabp, &l3->slabs_free, list) {
Christoph Lametere498be72005-09-09 13:03:32 -07004233 if (slabp->inuse && !error)
4234 error = "slabs_free/inuse accounting error";
4235 num_slabs++;
4236 }
4237 free_objects += l3->free_objects;
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08004238 if (l3->shared)
4239 shared_avail += l3->shared->avail;
Christoph Lametere498be72005-09-09 13:03:32 -07004240
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08004241 spin_unlock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004242 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004243 num_slabs += active_slabs;
4244 num_objs = num_slabs * cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07004245 if (num_objs - active_objs != free_objects && !error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004246 error = "free_objects accounting error";
4247
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004248 name = cachep->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004249 if (error)
4250 printk(KERN_ERR "slab: cache %s error: %s\n", name, error);
4251
4252 seq_printf(m, "%-17s %6lu %6lu %6u %4u %4d",
Manfred Spraul3dafccf2006-02-01 03:05:42 -08004253 name, active_objs, num_objs, cachep->buffer_size,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004254 cachep->num, (1 << cachep->gfporder));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004255 seq_printf(m, " : tunables %4u %4u %4u",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004256 cachep->limit, cachep->batchcount, cachep->shared);
Christoph Lametere498be72005-09-09 13:03:32 -07004257 seq_printf(m, " : slabdata %6lu %6lu %6lu",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004258 active_slabs, num_slabs, shared_avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004259#if STATS
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004260 { /* list3 stats */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004261 unsigned long high = cachep->high_mark;
4262 unsigned long allocs = cachep->num_allocations;
4263 unsigned long grown = cachep->grown;
4264 unsigned long reaped = cachep->reaped;
4265 unsigned long errors = cachep->errors;
4266 unsigned long max_freeable = cachep->max_freeable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004267 unsigned long node_allocs = cachep->node_allocs;
Christoph Lametere498be72005-09-09 13:03:32 -07004268 unsigned long node_frees = cachep->node_frees;
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -07004269 unsigned long overflows = cachep->node_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004270
Christoph Lametere498be72005-09-09 13:03:32 -07004271 seq_printf(m, " : globalstat %7lu %6lu %5lu %4lu \
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -07004272 %4lu %4lu %4lu %4lu %4lu", allocs, high, grown,
Andrew Mortona737b3e2006-03-22 00:08:11 -08004273 reaped, errors, max_freeable, node_allocs,
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -07004274 node_frees, overflows);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004275 }
4276 /* cpu stats */
4277 {
4278 unsigned long allochit = atomic_read(&cachep->allochit);
4279 unsigned long allocmiss = atomic_read(&cachep->allocmiss);
4280 unsigned long freehit = atomic_read(&cachep->freehit);
4281 unsigned long freemiss = atomic_read(&cachep->freemiss);
4282
4283 seq_printf(m, " : cpustat %6lu %6lu %6lu %6lu",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004284 allochit, allocmiss, freehit, freemiss);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004285 }
4286#endif
4287 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07004288 return 0;
4289}
4290
4291/*
4292 * slabinfo_op - iterator that generates /proc/slabinfo
4293 *
4294 * Output layout:
4295 * cache-name
4296 * num-active-objs
4297 * total-objs
4298 * object size
4299 * num-active-slabs
4300 * total-slabs
4301 * num-pages-per-slab
4302 * + further values on SMP and with statistics enabled
4303 */
4304
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04004305static const struct seq_operations slabinfo_op = {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004306 .start = s_start,
4307 .next = s_next,
4308 .stop = s_stop,
4309 .show = s_show,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004310};
4311
4312#define MAX_SLABINFO_WRITE 128
4313/**
4314 * slabinfo_write - Tuning for the slab allocator
4315 * @file: unused
4316 * @buffer: user buffer
4317 * @count: data length
4318 * @ppos: unused
4319 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004320ssize_t slabinfo_write(struct file *file, const char __user * buffer,
4321 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004322{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004323 char kbuf[MAX_SLABINFO_WRITE + 1], *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004324 int limit, batchcount, shared, res;
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004325 struct kmem_cache *cachep;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004326
Linus Torvalds1da177e2005-04-16 15:20:36 -07004327 if (count > MAX_SLABINFO_WRITE)
4328 return -EINVAL;
4329 if (copy_from_user(&kbuf, buffer, count))
4330 return -EFAULT;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004331 kbuf[MAX_SLABINFO_WRITE] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07004332
4333 tmp = strchr(kbuf, ' ');
4334 if (!tmp)
4335 return -EINVAL;
4336 *tmp = '\0';
4337 tmp++;
4338 if (sscanf(tmp, " %d %d %d", &limit, &batchcount, &shared) != 3)
4339 return -EINVAL;
4340
4341 /* Find the cache in the chain of caches. */
Ingo Molnarfc0abb12006-01-18 17:42:33 -08004342 mutex_lock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004343 res = -EINVAL;
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004344 list_for_each_entry(cachep, &cache_chain, next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004345 if (!strcmp(cachep->name, kbuf)) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08004346 if (limit < 1 || batchcount < 1 ||
4347 batchcount > limit || shared < 0) {
Christoph Lametere498be72005-09-09 13:03:32 -07004348 res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004349 } else {
Christoph Lametere498be72005-09-09 13:03:32 -07004350 res = do_tune_cpucache(cachep, limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03004351 batchcount, shared,
4352 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004353 }
4354 break;
4355 }
4356 }
Ingo Molnarfc0abb12006-01-18 17:42:33 -08004357 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004358 if (res >= 0)
4359 res = count;
4360 return res;
4361}
Al Viro871751e2006-03-25 03:06:39 -08004362
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04004363static int slabinfo_open(struct inode *inode, struct file *file)
4364{
4365 return seq_open(file, &slabinfo_op);
4366}
4367
4368static const struct file_operations proc_slabinfo_operations = {
4369 .open = slabinfo_open,
4370 .read = seq_read,
4371 .write = slabinfo_write,
4372 .llseek = seq_lseek,
4373 .release = seq_release,
4374};
4375
Al Viro871751e2006-03-25 03:06:39 -08004376#ifdef CONFIG_DEBUG_SLAB_LEAK
4377
4378static void *leaks_start(struct seq_file *m, loff_t *pos)
4379{
Al Viro871751e2006-03-25 03:06:39 -08004380 mutex_lock(&cache_chain_mutex);
Pavel Emelianovb92151b2007-07-15 23:38:04 -07004381 return seq_list_start(&cache_chain, *pos);
Al Viro871751e2006-03-25 03:06:39 -08004382}
4383
4384static inline int add_caller(unsigned long *n, unsigned long v)
4385{
4386 unsigned long *p;
4387 int l;
4388 if (!v)
4389 return 1;
4390 l = n[1];
4391 p = n + 2;
4392 while (l) {
4393 int i = l/2;
4394 unsigned long *q = p + 2 * i;
4395 if (*q == v) {
4396 q[1]++;
4397 return 1;
4398 }
4399 if (*q > v) {
4400 l = i;
4401 } else {
4402 p = q + 2;
4403 l -= i + 1;
4404 }
4405 }
4406 if (++n[1] == n[0])
4407 return 0;
4408 memmove(p + 2, p, n[1] * 2 * sizeof(unsigned long) - ((void *)p - (void *)n));
4409 p[0] = v;
4410 p[1] = 1;
4411 return 1;
4412}
4413
4414static void handle_slab(unsigned long *n, struct kmem_cache *c, struct slab *s)
4415{
4416 void *p;
4417 int i;
4418 if (n[0] == n[1])
4419 return;
4420 for (i = 0, p = s->s_mem; i < c->num; i++, p += c->buffer_size) {
4421 if (slab_bufctl(s)[i] != BUFCTL_ACTIVE)
4422 continue;
4423 if (!add_caller(n, (unsigned long)*dbg_userword(c, p)))
4424 return;
4425 }
4426}
4427
4428static void show_symbol(struct seq_file *m, unsigned long address)
4429{
4430#ifdef CONFIG_KALLSYMS
Al Viro871751e2006-03-25 03:06:39 -08004431 unsigned long offset, size;
Tejun Heo9281ace2007-07-17 04:03:51 -07004432 char modname[MODULE_NAME_LEN], name[KSYM_NAME_LEN];
Al Viro871751e2006-03-25 03:06:39 -08004433
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004434 if (lookup_symbol_attrs(address, &size, &offset, modname, name) == 0) {
Al Viro871751e2006-03-25 03:06:39 -08004435 seq_printf(m, "%s+%#lx/%#lx", name, offset, size);
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004436 if (modname[0])
Al Viro871751e2006-03-25 03:06:39 -08004437 seq_printf(m, " [%s]", modname);
4438 return;
4439 }
4440#endif
4441 seq_printf(m, "%p", (void *)address);
4442}
4443
4444static int leaks_show(struct seq_file *m, void *p)
4445{
Pavel Emelianovb92151b2007-07-15 23:38:04 -07004446 struct kmem_cache *cachep = list_entry(p, struct kmem_cache, next);
Al Viro871751e2006-03-25 03:06:39 -08004447 struct slab *slabp;
4448 struct kmem_list3 *l3;
4449 const char *name;
4450 unsigned long *n = m->private;
4451 int node;
4452 int i;
4453
4454 if (!(cachep->flags & SLAB_STORE_USER))
4455 return 0;
4456 if (!(cachep->flags & SLAB_RED_ZONE))
4457 return 0;
4458
4459 /* OK, we can do it */
4460
4461 n[1] = 0;
4462
4463 for_each_online_node(node) {
4464 l3 = cachep->nodelists[node];
4465 if (!l3)
4466 continue;
4467
4468 check_irq_on();
4469 spin_lock_irq(&l3->list_lock);
4470
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004471 list_for_each_entry(slabp, &l3->slabs_full, list)
Al Viro871751e2006-03-25 03:06:39 -08004472 handle_slab(n, cachep, slabp);
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004473 list_for_each_entry(slabp, &l3->slabs_partial, list)
Al Viro871751e2006-03-25 03:06:39 -08004474 handle_slab(n, cachep, slabp);
Al Viro871751e2006-03-25 03:06:39 -08004475 spin_unlock_irq(&l3->list_lock);
4476 }
4477 name = cachep->name;
4478 if (n[0] == n[1]) {
4479 /* Increase the buffer size */
4480 mutex_unlock(&cache_chain_mutex);
4481 m->private = kzalloc(n[0] * 4 * sizeof(unsigned long), GFP_KERNEL);
4482 if (!m->private) {
4483 /* Too bad, we are really out */
4484 m->private = n;
4485 mutex_lock(&cache_chain_mutex);
4486 return -ENOMEM;
4487 }
4488 *(unsigned long *)m->private = n[0] * 2;
4489 kfree(n);
4490 mutex_lock(&cache_chain_mutex);
4491 /* Now make sure this entry will be retried */
4492 m->count = m->size;
4493 return 0;
4494 }
4495 for (i = 0; i < n[1]; i++) {
4496 seq_printf(m, "%s: %lu ", name, n[2*i+3]);
4497 show_symbol(m, n[2*i+2]);
4498 seq_putc(m, '\n');
4499 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004500
Al Viro871751e2006-03-25 03:06:39 -08004501 return 0;
4502}
4503
Alexey Dobriyana0ec95a82008-10-06 00:59:10 +04004504static const struct seq_operations slabstats_op = {
Al Viro871751e2006-03-25 03:06:39 -08004505 .start = leaks_start,
4506 .next = s_next,
4507 .stop = s_stop,
4508 .show = leaks_show,
4509};
Alexey Dobriyana0ec95a82008-10-06 00:59:10 +04004510
4511static int slabstats_open(struct inode *inode, struct file *file)
4512{
4513 unsigned long *n = kzalloc(PAGE_SIZE, GFP_KERNEL);
4514 int ret = -ENOMEM;
4515 if (n) {
4516 ret = seq_open(file, &slabstats_op);
4517 if (!ret) {
4518 struct seq_file *m = file->private_data;
4519 *n = PAGE_SIZE / (2 * sizeof(unsigned long));
4520 m->private = n;
4521 n = NULL;
4522 }
4523 kfree(n);
4524 }
4525 return ret;
4526}
4527
4528static const struct file_operations proc_slabstats_operations = {
4529 .open = slabstats_open,
4530 .read = seq_read,
4531 .llseek = seq_lseek,
4532 .release = seq_release_private,
4533};
Al Viro871751e2006-03-25 03:06:39 -08004534#endif
Alexey Dobriyana0ec95a82008-10-06 00:59:10 +04004535
4536static int __init slab_proc_init(void)
4537{
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04004538 proc_create("slabinfo",S_IWUSR|S_IRUGO,NULL,&proc_slabinfo_operations);
Alexey Dobriyana0ec95a82008-10-06 00:59:10 +04004539#ifdef CONFIG_DEBUG_SLAB_LEAK
4540 proc_create("slab_allocators", 0, NULL, &proc_slabstats_operations);
4541#endif
4542 return 0;
4543}
4544module_init(slab_proc_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004545#endif
4546
Manfred Spraul00e145b2005-09-03 15:55:07 -07004547/**
4548 * ksize - get the actual amount of memory allocated for a given object
4549 * @objp: Pointer to the object
4550 *
4551 * kmalloc may internally round up allocations and return more memory
4552 * than requested. ksize() can be used to determine the actual amount of
4553 * memory allocated. The caller may use this additional memory, even though
4554 * a smaller amount of memory was initially specified with the kmalloc call.
4555 * The caller must guarantee that objp points to a valid object previously
4556 * allocated with either kmalloc() or kmem_cache_alloc(). The object
4557 * must not be freed during the duration of the call.
4558 */
Pekka Enbergfd76bab2007-05-06 14:48:40 -07004559size_t ksize(const void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004560{
Christoph Lameteref8b4522007-10-16 01:24:46 -07004561 BUG_ON(!objp);
4562 if (unlikely(objp == ZERO_SIZE_PTR))
Manfred Spraul00e145b2005-09-03 15:55:07 -07004563 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004564
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08004565 return obj_size(virt_to_cache(objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004566}
Kirill A. Shutemovb1aabec2009-02-10 15:21:44 +02004567EXPORT_SYMBOL(ksize);