blob: 6a1ad0b9a94f51bece1c62b1bf2a7d4da7785205 [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>
Pekka Enbergc175eea2008-05-09 20:35:53 +0200117#include <linux/kmemcheck.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119#include <asm/cacheflush.h>
120#include <asm/tlbflush.h>
121#include <asm/page.h>
122
123/*
Christoph Lameter50953fe2007-05-06 14:50:16 -0700124 * DEBUG - 1 for kmem_cache_create() to honour; SLAB_RED_ZONE & SLAB_POISON.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 * 0 for faster, smaller code (especially in the critical paths).
126 *
127 * STATS - 1 to collect stats for /proc/slabinfo.
128 * 0 for faster, smaller code (especially in the critical paths).
129 *
130 * FORCED_DEBUG - 1 enables SLAB_RED_ZONE and SLAB_POISON (if possible)
131 */
132
133#ifdef CONFIG_DEBUG_SLAB
134#define DEBUG 1
135#define STATS 1
136#define FORCED_DEBUG 1
137#else
138#define DEBUG 0
139#define STATS 0
140#define FORCED_DEBUG 0
141#endif
142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143/* Shouldn't this be in a header file somewhere? */
144#define BYTES_PER_WORD sizeof(void *)
David Woodhouse87a927c2007-07-04 21:26:44 -0400145#define REDZONE_ALIGN max(BYTES_PER_WORD, __alignof__(unsigned long long))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147#ifndef ARCH_KMALLOC_MINALIGN
148/*
149 * Enforce a minimum alignment for the kmalloc caches.
150 * Usually, the kmalloc caches are cache_line_size() aligned, except when
151 * DEBUG and FORCED_DEBUG are enabled, then they are BYTES_PER_WORD aligned.
152 * Some archs want to perform DMA into kmalloc caches and need a guaranteed
David Woodhouseb46b8f12007-05-08 00:22:59 -0700153 * alignment larger than the alignment of a 64-bit integer.
154 * ARCH_KMALLOC_MINALIGN allows that.
155 * Note that increasing this value may disable some debug features.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 */
David Woodhouseb46b8f12007-05-08 00:22:59 -0700157#define ARCH_KMALLOC_MINALIGN __alignof__(unsigned long long)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158#endif
159
160#ifndef ARCH_SLAB_MINALIGN
161/*
162 * Enforce a minimum alignment for all caches.
163 * Intended for archs that get misalignment faults even for BYTES_PER_WORD
164 * aligned buffers. Includes ARCH_KMALLOC_MINALIGN.
165 * If possible: Do not enable this flag for CONFIG_DEBUG_SLAB, it disables
166 * some debug features.
167 */
168#define ARCH_SLAB_MINALIGN 0
169#endif
170
171#ifndef ARCH_KMALLOC_FLAGS
172#define ARCH_KMALLOC_FLAGS SLAB_HWCACHE_ALIGN
173#endif
174
175/* Legal flag mask for kmem_cache_create(). */
176#if DEBUG
Christoph Lameter50953fe2007-05-06 14:50:16 -0700177# define CREATE_MASK (SLAB_RED_ZONE | \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 SLAB_POISON | SLAB_HWCACHE_ALIGN | \
Christoph Lameterac2b8982006-03-22 00:08:15 -0800179 SLAB_CACHE_DMA | \
Christoph Lameter5af60832007-05-06 14:49:56 -0700180 SLAB_STORE_USER | \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 SLAB_RECLAIM_ACCOUNT | SLAB_PANIC | \
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700182 SLAB_DESTROY_BY_RCU | SLAB_MEM_SPREAD | \
Pekka Enbergc175eea2008-05-09 20:35:53 +0200183 SLAB_DEBUG_OBJECTS | SLAB_NOLEAKTRACE | SLAB_NOTRACK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184#else
Christoph Lameterac2b8982006-03-22 00:08:15 -0800185# define CREATE_MASK (SLAB_HWCACHE_ALIGN | \
Christoph Lameter5af60832007-05-06 14:49:56 -0700186 SLAB_CACHE_DMA | \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 SLAB_RECLAIM_ACCOUNT | SLAB_PANIC | \
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700188 SLAB_DESTROY_BY_RCU | SLAB_MEM_SPREAD | \
Pekka Enbergc175eea2008-05-09 20:35:53 +0200189 SLAB_DEBUG_OBJECTS | SLAB_NOLEAKTRACE | SLAB_NOTRACK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190#endif
191
192/*
193 * kmem_bufctl_t:
194 *
195 * Bufctl's are used for linking objs within a slab
196 * linked offsets.
197 *
198 * This implementation relies on "struct page" for locating the cache &
199 * slab an object belongs to.
200 * This allows the bufctl structure to be small (one int), but limits
201 * the number of objects a slab (not a cache) can contain when off-slab
202 * bufctls are used. The limit is the size of the largest general cache
203 * that does not use off-slab slabs.
204 * For 32bit archs with 4 kB pages, is this 56.
205 * This is not serious, as it is only for large objects, when it is unwise
206 * to have too many per slab.
207 * Note: This limit can be raised by introducing a general cache whose size
208 * is less than 512 (PAGE_SIZE<<3), but greater than 256.
209 */
210
Kyle Moffettfa5b08d2005-09-03 15:55:03 -0700211typedef unsigned int kmem_bufctl_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212#define BUFCTL_END (((kmem_bufctl_t)(~0U))-0)
213#define BUFCTL_FREE (((kmem_bufctl_t)(~0U))-1)
Al Viro871751e2006-03-25 03:06:39 -0800214#define BUFCTL_ACTIVE (((kmem_bufctl_t)(~0U))-2)
215#define SLAB_LIMIT (((kmem_bufctl_t)(~0U))-3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217/*
218 * struct slab
219 *
220 * Manages the objs in a slab. Placed either at the beginning of mem allocated
221 * for a slab, or allocated from an general cache.
222 * Slabs are chained into three list: fully used, partial, fully free slabs.
223 */
224struct slab {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800225 struct list_head list;
226 unsigned long colouroff;
227 void *s_mem; /* including colour offset */
228 unsigned int inuse; /* num of objs active in slab */
229 kmem_bufctl_t free;
230 unsigned short nodeid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231};
232
233/*
234 * struct slab_rcu
235 *
236 * slab_destroy on a SLAB_DESTROY_BY_RCU cache uses this structure to
237 * arrange for kmem_freepages to be called via RCU. This is useful if
238 * we need to approach a kernel structure obliquely, from its address
239 * obtained without the usual locking. We can lock the structure to
240 * stabilize it and check it's still at the given address, only if we
241 * can be sure that the memory has not been meanwhile reused for some
242 * other kind of object (which our subsystem's lock might corrupt).
243 *
244 * rcu_read_lock before reading the address, then rcu_read_unlock after
245 * taking the spinlock within the structure expected at that address.
246 *
247 * We assume struct slab_rcu can overlay struct slab when destroying.
248 */
249struct slab_rcu {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800250 struct rcu_head head;
Pekka Enberg343e0d72006-02-01 03:05:50 -0800251 struct kmem_cache *cachep;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800252 void *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253};
254
255/*
256 * struct array_cache
257 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 * Purpose:
259 * - LIFO ordering, to hand out cache-warm objects from _alloc
260 * - reduce the number of linked list operations
261 * - reduce spinlock operations
262 *
263 * The limit is stored in the per-cpu structure to reduce the data cache
264 * footprint.
265 *
266 */
267struct array_cache {
268 unsigned int avail;
269 unsigned int limit;
270 unsigned int batchcount;
271 unsigned int touched;
Christoph Lametere498be72005-09-09 13:03:32 -0700272 spinlock_t lock;
Robert P. J. Daybda5b652007-10-16 23:30:05 -0700273 void *entry[]; /*
Andrew Mortona737b3e2006-03-22 00:08:11 -0800274 * Must have this definition in here for the proper
275 * alignment of array_cache. Also simplifies accessing
276 * the entries.
Andrew Mortona737b3e2006-03-22 00:08:11 -0800277 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278};
279
Andrew Mortona737b3e2006-03-22 00:08:11 -0800280/*
281 * bootstrap: The caches do not work without cpuarrays anymore, but the
282 * cpuarrays are allocated from the generic caches...
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 */
284#define BOOT_CPUCACHE_ENTRIES 1
285struct arraycache_init {
286 struct array_cache cache;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800287 void *entries[BOOT_CPUCACHE_ENTRIES];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288};
289
290/*
Christoph Lametere498be72005-09-09 13:03:32 -0700291 * The slab lists for all objects.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 */
293struct kmem_list3 {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800294 struct list_head slabs_partial; /* partial list first, better asm code */
295 struct list_head slabs_full;
296 struct list_head slabs_free;
297 unsigned long free_objects;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800298 unsigned int free_limit;
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -0800299 unsigned int colour_next; /* Per-node cache coloring */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800300 spinlock_t list_lock;
301 struct array_cache *shared; /* shared per node */
302 struct array_cache **alien; /* on other nodes */
Christoph Lameter35386e32006-03-22 00:09:05 -0800303 unsigned long next_reap; /* updated without locking */
304 int free_touched; /* updated without locking */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305};
306
Christoph Lametere498be72005-09-09 13:03:32 -0700307/*
308 * Need this for bootstrapping a per node allocator.
309 */
Pekka Enberg556a1692008-01-25 08:20:51 +0200310#define NUM_INIT_LISTS (3 * MAX_NUMNODES)
Christoph Lametere498be72005-09-09 13:03:32 -0700311struct kmem_list3 __initdata initkmem_list3[NUM_INIT_LISTS];
312#define CACHE_CACHE 0
Pekka Enberg556a1692008-01-25 08:20:51 +0200313#define SIZE_AC MAX_NUMNODES
314#define SIZE_L3 (2 * MAX_NUMNODES)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315
Christoph Lametered11d9e2006-06-30 01:55:45 -0700316static int drain_freelist(struct kmem_cache *cache,
317 struct kmem_list3 *l3, int tofree);
318static void free_block(struct kmem_cache *cachep, void **objpp, int len,
319 int node);
Pekka Enberg83b519e2009-06-10 19:40:04 +0300320static int enable_cpucache(struct kmem_cache *cachep, gfp_t gfp);
David Howells65f27f32006-11-22 14:55:48 +0000321static void cache_reap(struct work_struct *unused);
Christoph Lametered11d9e2006-06-30 01:55:45 -0700322
Christoph Lametere498be72005-09-09 13:03:32 -0700323/*
Andrew Mortona737b3e2006-03-22 00:08:11 -0800324 * This function must be completely optimized away if a constant is passed to
325 * it. Mostly the same as what is in linux/slab.h except it returns an index.
Christoph Lametere498be72005-09-09 13:03:32 -0700326 */
Ivan Kokshaysky7243cc02005-09-22 21:43:58 -0700327static __always_inline int index_of(const size_t size)
Christoph Lametere498be72005-09-09 13:03:32 -0700328{
Steven Rostedt5ec8a842006-02-01 03:05:44 -0800329 extern void __bad_size(void);
330
Christoph Lametere498be72005-09-09 13:03:32 -0700331 if (__builtin_constant_p(size)) {
332 int i = 0;
333
334#define CACHE(x) \
335 if (size <=x) \
336 return i; \
337 else \
338 i++;
Joe Perches1c61fc42008-03-05 13:58:17 -0800339#include <linux/kmalloc_sizes.h>
Christoph Lametere498be72005-09-09 13:03:32 -0700340#undef CACHE
Steven Rostedt5ec8a842006-02-01 03:05:44 -0800341 __bad_size();
Ivan Kokshaysky7243cc02005-09-22 21:43:58 -0700342 } else
Steven Rostedt5ec8a842006-02-01 03:05:44 -0800343 __bad_size();
Christoph Lametere498be72005-09-09 13:03:32 -0700344 return 0;
345}
346
Ingo Molnare0a42722006-06-23 02:03:46 -0700347static int slab_early_init = 1;
348
Christoph Lametere498be72005-09-09 13:03:32 -0700349#define INDEX_AC index_of(sizeof(struct arraycache_init))
350#define INDEX_L3 index_of(sizeof(struct kmem_list3))
351
Pekka Enberg5295a742006-02-01 03:05:48 -0800352static void kmem_list3_init(struct kmem_list3 *parent)
Christoph Lametere498be72005-09-09 13:03:32 -0700353{
354 INIT_LIST_HEAD(&parent->slabs_full);
355 INIT_LIST_HEAD(&parent->slabs_partial);
356 INIT_LIST_HEAD(&parent->slabs_free);
357 parent->shared = NULL;
358 parent->alien = NULL;
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -0800359 parent->colour_next = 0;
Christoph Lametere498be72005-09-09 13:03:32 -0700360 spin_lock_init(&parent->list_lock);
361 parent->free_objects = 0;
362 parent->free_touched = 0;
363}
364
Andrew Mortona737b3e2006-03-22 00:08:11 -0800365#define MAKE_LIST(cachep, listp, slab, nodeid) \
366 do { \
367 INIT_LIST_HEAD(listp); \
368 list_splice(&(cachep->nodelists[nodeid]->slab), listp); \
Christoph Lametere498be72005-09-09 13:03:32 -0700369 } while (0)
370
Andrew Mortona737b3e2006-03-22 00:08:11 -0800371#define MAKE_ALL_LISTS(cachep, ptr, nodeid) \
372 do { \
Christoph Lametere498be72005-09-09 13:03:32 -0700373 MAKE_LIST((cachep), (&(ptr)->slabs_full), slabs_full, nodeid); \
374 MAKE_LIST((cachep), (&(ptr)->slabs_partial), slabs_partial, nodeid); \
375 MAKE_LIST((cachep), (&(ptr)->slabs_free), slabs_free, nodeid); \
376 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378#define CFLGS_OFF_SLAB (0x80000000UL)
379#define OFF_SLAB(x) ((x)->flags & CFLGS_OFF_SLAB)
380
381#define BATCHREFILL_LIMIT 16
Andrew Mortona737b3e2006-03-22 00:08:11 -0800382/*
383 * Optimization question: fewer reaps means less probability for unnessary
384 * cpucache drain/refill cycles.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 *
Adrian Bunkdc6f3f22005-11-08 16:44:08 +0100386 * OTOH the cpuarrays can contain lots of objects,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 * which could lock up otherwise freeable slabs.
388 */
389#define REAPTIMEOUT_CPUC (2*HZ)
390#define REAPTIMEOUT_LIST3 (4*HZ)
391
392#if STATS
393#define STATS_INC_ACTIVE(x) ((x)->num_active++)
394#define STATS_DEC_ACTIVE(x) ((x)->num_active--)
395#define STATS_INC_ALLOCED(x) ((x)->num_allocations++)
396#define STATS_INC_GROWN(x) ((x)->grown++)
Christoph Lametered11d9e2006-06-30 01:55:45 -0700397#define STATS_ADD_REAPED(x,y) ((x)->reaped += (y))
Andrew Mortona737b3e2006-03-22 00:08:11 -0800398#define STATS_SET_HIGH(x) \
399 do { \
400 if ((x)->num_active > (x)->high_mark) \
401 (x)->high_mark = (x)->num_active; \
402 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403#define STATS_INC_ERR(x) ((x)->errors++)
404#define STATS_INC_NODEALLOCS(x) ((x)->node_allocs++)
Christoph Lametere498be72005-09-09 13:03:32 -0700405#define STATS_INC_NODEFREES(x) ((x)->node_frees++)
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -0700406#define STATS_INC_ACOVERFLOW(x) ((x)->node_overflow++)
Andrew Mortona737b3e2006-03-22 00:08:11 -0800407#define STATS_SET_FREEABLE(x, i) \
408 do { \
409 if ((x)->max_freeable < i) \
410 (x)->max_freeable = i; \
411 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412#define STATS_INC_ALLOCHIT(x) atomic_inc(&(x)->allochit)
413#define STATS_INC_ALLOCMISS(x) atomic_inc(&(x)->allocmiss)
414#define STATS_INC_FREEHIT(x) atomic_inc(&(x)->freehit)
415#define STATS_INC_FREEMISS(x) atomic_inc(&(x)->freemiss)
416#else
417#define STATS_INC_ACTIVE(x) do { } while (0)
418#define STATS_DEC_ACTIVE(x) do { } while (0)
419#define STATS_INC_ALLOCED(x) do { } while (0)
420#define STATS_INC_GROWN(x) do { } while (0)
Christoph Lametered11d9e2006-06-30 01:55:45 -0700421#define STATS_ADD_REAPED(x,y) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422#define STATS_SET_HIGH(x) do { } while (0)
423#define STATS_INC_ERR(x) do { } while (0)
424#define STATS_INC_NODEALLOCS(x) do { } while (0)
Christoph Lametere498be72005-09-09 13:03:32 -0700425#define STATS_INC_NODEFREES(x) do { } while (0)
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -0700426#define STATS_INC_ACOVERFLOW(x) do { } while (0)
Andrew Mortona737b3e2006-03-22 00:08:11 -0800427#define STATS_SET_FREEABLE(x, i) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428#define STATS_INC_ALLOCHIT(x) do { } while (0)
429#define STATS_INC_ALLOCMISS(x) do { } while (0)
430#define STATS_INC_FREEHIT(x) do { } while (0)
431#define STATS_INC_FREEMISS(x) do { } while (0)
432#endif
433
434#if DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
Andrew Mortona737b3e2006-03-22 00:08:11 -0800436/*
437 * memory layout of objects:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 * 0 : objp
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800439 * 0 .. cachep->obj_offset - BYTES_PER_WORD - 1: padding. This ensures that
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 * the end of an object is aligned with the end of the real
441 * allocation. Catches writes behind the end of the allocation.
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800442 * cachep->obj_offset - BYTES_PER_WORD .. cachep->obj_offset - 1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 * redzone word.
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800444 * cachep->obj_offset: The real object.
445 * cachep->buffer_size - 2* BYTES_PER_WORD: redzone word [BYTES_PER_WORD long]
Andrew Mortona737b3e2006-03-22 00:08:11 -0800446 * cachep->buffer_size - 1* BYTES_PER_WORD: last caller address
447 * [BYTES_PER_WORD long]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448 */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800449static int obj_offset(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450{
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800451 return cachep->obj_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452}
453
Pekka Enberg343e0d72006-02-01 03:05:50 -0800454static int obj_size(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455{
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800456 return cachep->obj_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457}
458
David Woodhouseb46b8f12007-05-08 00:22:59 -0700459static unsigned long long *dbg_redzone1(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460{
461 BUG_ON(!(cachep->flags & SLAB_RED_ZONE));
David Woodhouseb46b8f12007-05-08 00:22:59 -0700462 return (unsigned long long*) (objp + obj_offset(cachep) -
463 sizeof(unsigned long long));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464}
465
David Woodhouseb46b8f12007-05-08 00:22:59 -0700466static unsigned long long *dbg_redzone2(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467{
468 BUG_ON(!(cachep->flags & SLAB_RED_ZONE));
469 if (cachep->flags & SLAB_STORE_USER)
David Woodhouseb46b8f12007-05-08 00:22:59 -0700470 return (unsigned long long *)(objp + cachep->buffer_size -
471 sizeof(unsigned long long) -
David Woodhouse87a927c2007-07-04 21:26:44 -0400472 REDZONE_ALIGN);
David Woodhouseb46b8f12007-05-08 00:22:59 -0700473 return (unsigned long long *) (objp + cachep->buffer_size -
474 sizeof(unsigned long long));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475}
476
Pekka Enberg343e0d72006-02-01 03:05:50 -0800477static void **dbg_userword(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478{
479 BUG_ON(!(cachep->flags & SLAB_STORE_USER));
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800480 return (void **)(objp + cachep->buffer_size - BYTES_PER_WORD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481}
482
483#else
484
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800485#define obj_offset(x) 0
486#define obj_size(cachep) (cachep->buffer_size)
David Woodhouseb46b8f12007-05-08 00:22:59 -0700487#define dbg_redzone1(cachep, objp) ({BUG(); (unsigned long long *)NULL;})
488#define dbg_redzone2(cachep, objp) ({BUG(); (unsigned long long *)NULL;})
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489#define dbg_userword(cachep, objp) ({BUG(); (void **)NULL;})
490
491#endif
492
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +0300493#ifdef CONFIG_KMEMTRACE
494size_t slab_buffer_size(struct kmem_cache *cachep)
495{
496 return cachep->buffer_size;
497}
498EXPORT_SYMBOL(slab_buffer_size);
499#endif
500
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 * Do not go above this order unless 0 objects fit into the slab.
503 */
504#define BREAK_GFP_ORDER_HI 1
505#define BREAK_GFP_ORDER_LO 0
506static int slab_break_gfp_order = BREAK_GFP_ORDER_LO;
507
Andrew Mortona737b3e2006-03-22 00:08:11 -0800508/*
509 * Functions for storing/retrieving the cachep and or slab from the page
510 * allocator. These are used to find the slab an obj belongs to. With kfree(),
511 * these are used to find the cache which an obj belongs to.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 */
Pekka Enberg065d41c2005-11-13 16:06:46 -0800513static inline void page_set_cache(struct page *page, struct kmem_cache *cache)
514{
515 page->lru.next = (struct list_head *)cache;
516}
517
518static inline struct kmem_cache *page_get_cache(struct page *page)
519{
Christoph Lameterd85f3382007-05-06 14:49:39 -0700520 page = compound_head(page);
Pekka Enbergddc2e812006-06-23 02:03:40 -0700521 BUG_ON(!PageSlab(page));
Pekka Enberg065d41c2005-11-13 16:06:46 -0800522 return (struct kmem_cache *)page->lru.next;
523}
524
525static inline void page_set_slab(struct page *page, struct slab *slab)
526{
527 page->lru.prev = (struct list_head *)slab;
528}
529
530static inline struct slab *page_get_slab(struct page *page)
531{
Pekka Enbergddc2e812006-06-23 02:03:40 -0700532 BUG_ON(!PageSlab(page));
Pekka Enberg065d41c2005-11-13 16:06:46 -0800533 return (struct slab *)page->lru.prev;
534}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700535
Pekka Enberg6ed5eb22006-02-01 03:05:49 -0800536static inline struct kmem_cache *virt_to_cache(const void *obj)
537{
Christoph Lameterb49af682007-05-06 14:49:41 -0700538 struct page *page = virt_to_head_page(obj);
Pekka Enberg6ed5eb22006-02-01 03:05:49 -0800539 return page_get_cache(page);
540}
541
542static inline struct slab *virt_to_slab(const void *obj)
543{
Christoph Lameterb49af682007-05-06 14:49:41 -0700544 struct page *page = virt_to_head_page(obj);
Pekka Enberg6ed5eb22006-02-01 03:05:49 -0800545 return page_get_slab(page);
546}
547
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800548static inline void *index_to_obj(struct kmem_cache *cache, struct slab *slab,
549 unsigned int idx)
550{
551 return slab->s_mem + cache->buffer_size * idx;
552}
553
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800554/*
555 * We want to avoid an expensive divide : (offset / cache->buffer_size)
556 * Using the fact that buffer_size is a constant for a particular cache,
557 * we can replace (offset / cache->buffer_size) by
558 * reciprocal_divide(offset, cache->reciprocal_buffer_size)
559 */
560static inline unsigned int obj_to_index(const struct kmem_cache *cache,
561 const struct slab *slab, void *obj)
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800562{
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800563 u32 offset = (obj - slab->s_mem);
564 return reciprocal_divide(offset, cache->reciprocal_buffer_size);
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800565}
566
Andrew Mortona737b3e2006-03-22 00:08:11 -0800567/*
568 * These are the default caches for kmalloc. Custom caches can have other sizes.
569 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570struct cache_sizes malloc_sizes[] = {
571#define CACHE(x) { .cs_size = (x) },
572#include <linux/kmalloc_sizes.h>
573 CACHE(ULONG_MAX)
574#undef CACHE
575};
576EXPORT_SYMBOL(malloc_sizes);
577
578/* Must match cache_sizes above. Out of line to keep cache footprint low. */
579struct cache_names {
580 char *name;
581 char *name_dma;
582};
583
584static struct cache_names __initdata cache_names[] = {
585#define CACHE(x) { .name = "size-" #x, .name_dma = "size-" #x "(DMA)" },
586#include <linux/kmalloc_sizes.h>
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800587 {NULL,}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588#undef CACHE
589};
590
591static struct arraycache_init initarray_cache __initdata =
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800592 { {0, BOOT_CPUCACHE_ENTRIES, 1, 0} };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593static struct arraycache_init initarray_generic =
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800594 { {0, BOOT_CPUCACHE_ENTRIES, 1, 0} };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
596/* internal cache of cache description objs */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800597static struct kmem_cache cache_cache = {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800598 .batchcount = 1,
599 .limit = BOOT_CPUCACHE_ENTRIES,
600 .shared = 1,
Pekka Enberg343e0d72006-02-01 03:05:50 -0800601 .buffer_size = sizeof(struct kmem_cache),
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800602 .name = "kmem_cache",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603};
604
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -0700605#define BAD_ALIEN_MAGIC 0x01020304ul
606
Arjan van de Venf1aaee52006-07-13 14:46:03 +0200607#ifdef CONFIG_LOCKDEP
608
609/*
610 * Slab sometimes uses the kmalloc slabs to store the slab headers
611 * for other slabs "off slab".
612 * The locking for this is tricky in that it nests within the locks
613 * of all other slabs in a few places; to deal with this special
614 * locking we put on-slab caches into a separate lock-class.
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -0700615 *
616 * We set lock class for alien array caches which are up during init.
617 * The lock annotation will be lost if all cpus of a node goes down and
618 * then comes back up during hotplug
Arjan van de Venf1aaee52006-07-13 14:46:03 +0200619 */
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -0700620static struct lock_class_key on_slab_l3_key;
621static struct lock_class_key on_slab_alc_key;
Arjan van de Venf1aaee52006-07-13 14:46:03 +0200622
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -0700623static inline void init_lock_keys(void)
624
Arjan van de Venf1aaee52006-07-13 14:46:03 +0200625{
626 int q;
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -0700627 struct cache_sizes *s = malloc_sizes;
Arjan van de Venf1aaee52006-07-13 14:46:03 +0200628
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -0700629 while (s->cs_size != ULONG_MAX) {
630 for_each_node(q) {
631 struct array_cache **alc;
632 int r;
633 struct kmem_list3 *l3 = s->cs_cachep->nodelists[q];
634 if (!l3 || OFF_SLAB(s->cs_cachep))
635 continue;
636 lockdep_set_class(&l3->list_lock, &on_slab_l3_key);
637 alc = l3->alien;
638 /*
639 * FIXME: This check for BAD_ALIEN_MAGIC
640 * should go away when common slab code is taught to
641 * work even without alien caches.
642 * Currently, non NUMA code returns BAD_ALIEN_MAGIC
643 * for alloc_alien_cache,
644 */
645 if (!alc || (unsigned long)alc == BAD_ALIEN_MAGIC)
646 continue;
647 for_each_node(r) {
648 if (alc[r])
649 lockdep_set_class(&alc[r]->lock,
650 &on_slab_alc_key);
651 }
652 }
653 s++;
Arjan van de Venf1aaee52006-07-13 14:46:03 +0200654 }
655}
Arjan van de Venf1aaee52006-07-13 14:46:03 +0200656#else
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -0700657static inline void init_lock_keys(void)
Arjan van de Venf1aaee52006-07-13 14:46:03 +0200658{
659}
660#endif
661
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -0800662/*
Gautham R Shenoy95402b32008-01-25 21:08:02 +0100663 * Guard access to the cache-chain.
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -0800664 */
Ingo Molnarfc0abb12006-01-18 17:42:33 -0800665static DEFINE_MUTEX(cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666static struct list_head cache_chain;
667
668/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 * chicken and egg problem: delay the per-cpu array allocation
670 * until the general caches are up.
671 */
672static enum {
673 NONE,
Christoph Lametere498be72005-09-09 13:03:32 -0700674 PARTIAL_AC,
675 PARTIAL_L3,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 FULL
677} g_cpucache_up;
678
Mike Kravetz39d24e62006-05-15 09:44:13 -0700679/*
680 * used by boot code to determine if it can use slab based allocator
681 */
682int slab_is_available(void)
683{
684 return g_cpucache_up == FULL;
685}
686
David Howells52bad642006-11-22 14:54:01 +0000687static DEFINE_PER_CPU(struct delayed_work, reap_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688
Pekka Enberg343e0d72006-02-01 03:05:50 -0800689static inline struct array_cache *cpu_cache_get(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690{
691 return cachep->array[smp_processor_id()];
692}
693
Andrew Mortona737b3e2006-03-22 00:08:11 -0800694static inline struct kmem_cache *__find_general_cachep(size_t size,
695 gfp_t gfpflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696{
697 struct cache_sizes *csizep = malloc_sizes;
698
699#if DEBUG
700 /* This happens if someone tries to call
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800701 * kmem_cache_create(), or __kmalloc(), before
702 * the generic caches are initialized.
703 */
Alok Katariac7e43c72005-09-14 12:17:53 -0700704 BUG_ON(malloc_sizes[INDEX_AC].cs_cachep == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705#endif
Christoph Lameter6cb8f912007-07-17 04:03:22 -0700706 if (!size)
707 return ZERO_SIZE_PTR;
708
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 while (size > csizep->cs_size)
710 csizep++;
711
712 /*
Martin Hicks0abf40c2005-09-03 15:54:54 -0700713 * Really subtle: The last entry with cs->cs_size==ULONG_MAX
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714 * has cs_{dma,}cachep==NULL. Thus no special case
715 * for large kmalloc calls required.
716 */
Christoph Lameter4b51d662007-02-10 01:43:10 -0800717#ifdef CONFIG_ZONE_DMA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 if (unlikely(gfpflags & GFP_DMA))
719 return csizep->cs_dmacachep;
Christoph Lameter4b51d662007-02-10 01:43:10 -0800720#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 return csizep->cs_cachep;
722}
723
Adrian Bunkb2213852006-09-25 23:31:02 -0700724static struct kmem_cache *kmem_find_general_cachep(size_t size, gfp_t gfpflags)
Manfred Spraul97e2bde2005-05-01 08:58:38 -0700725{
726 return __find_general_cachep(size, gfpflags);
727}
Manfred Spraul97e2bde2005-05-01 08:58:38 -0700728
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800729static size_t slab_mgmt_size(size_t nr_objs, size_t align)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730{
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800731 return ALIGN(sizeof(struct slab)+nr_objs*sizeof(kmem_bufctl_t), align);
732}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733
Andrew Mortona737b3e2006-03-22 00:08:11 -0800734/*
735 * Calculate the number of objects and left-over bytes for a given buffer size.
736 */
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800737static void cache_estimate(unsigned long gfporder, size_t buffer_size,
738 size_t align, int flags, size_t *left_over,
739 unsigned int *num)
740{
741 int nr_objs;
742 size_t mgmt_size;
743 size_t slab_size = PAGE_SIZE << gfporder;
744
745 /*
746 * The slab management structure can be either off the slab or
747 * on it. For the latter case, the memory allocated for a
748 * slab is used for:
749 *
750 * - The struct slab
751 * - One kmem_bufctl_t for each object
752 * - Padding to respect alignment of @align
753 * - @buffer_size bytes for each object
754 *
755 * If the slab management structure is off the slab, then the
756 * alignment will already be calculated into the size. Because
757 * the slabs are all pages aligned, the objects will be at the
758 * correct alignment when allocated.
759 */
760 if (flags & CFLGS_OFF_SLAB) {
761 mgmt_size = 0;
762 nr_objs = slab_size / buffer_size;
763
764 if (nr_objs > SLAB_LIMIT)
765 nr_objs = SLAB_LIMIT;
766 } else {
767 /*
768 * Ignore padding for the initial guess. The padding
769 * is at most @align-1 bytes, and @buffer_size is at
770 * least @align. In the worst case, this result will
771 * be one greater than the number of objects that fit
772 * into the memory allocation when taking the padding
773 * into account.
774 */
775 nr_objs = (slab_size - sizeof(struct slab)) /
776 (buffer_size + sizeof(kmem_bufctl_t));
777
778 /*
779 * This calculated number will be either the right
780 * amount, or one greater than what we want.
781 */
782 if (slab_mgmt_size(nr_objs, align) + nr_objs*buffer_size
783 > slab_size)
784 nr_objs--;
785
786 if (nr_objs > SLAB_LIMIT)
787 nr_objs = SLAB_LIMIT;
788
789 mgmt_size = slab_mgmt_size(nr_objs, align);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 }
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800791 *num = nr_objs;
792 *left_over = slab_size - nr_objs*buffer_size - mgmt_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793}
794
Harvey Harrisond40cee22008-04-30 00:55:07 -0700795#define slab_error(cachep, msg) __slab_error(__func__, cachep, msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700796
Andrew Mortona737b3e2006-03-22 00:08:11 -0800797static void __slab_error(const char *function, struct kmem_cache *cachep,
798 char *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799{
800 printk(KERN_ERR "slab error in %s(): cache `%s': %s\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800801 function, cachep->name, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 dump_stack();
803}
804
Paul Menage3395ee02006-12-06 20:32:16 -0800805/*
806 * By default on NUMA we use alien caches to stage the freeing of
807 * objects allocated from other nodes. This causes massive memory
808 * inefficiencies when using fake NUMA setup to split memory into a
809 * large number of small nodes, so it can be disabled on the command
810 * line
811 */
812
813static int use_alien_caches __read_mostly = 1;
Siddha, Suresh B1807a1a2007-08-22 14:01:49 -0700814static int numa_platform __read_mostly = 1;
Paul Menage3395ee02006-12-06 20:32:16 -0800815static int __init noaliencache_setup(char *s)
816{
817 use_alien_caches = 0;
818 return 1;
819}
820__setup("noaliencache", noaliencache_setup);
821
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800822#ifdef CONFIG_NUMA
823/*
824 * Special reaping functions for NUMA systems called from cache_reap().
825 * These take care of doing round robin flushing of alien caches (containing
826 * objects freed on different nodes from which they were allocated) and the
827 * flushing of remote pcps by calling drain_node_pages.
828 */
829static DEFINE_PER_CPU(unsigned long, reap_node);
830
831static void init_reap_node(int cpu)
832{
833 int node;
834
835 node = next_node(cpu_to_node(cpu), node_online_map);
836 if (node == MAX_NUMNODES)
Paul Jackson442295c2006-03-22 00:09:11 -0800837 node = first_node(node_online_map);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800838
Daniel Yeisley7f6b8872006-11-02 22:07:14 -0800839 per_cpu(reap_node, cpu) = node;
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800840}
841
842static void next_reap_node(void)
843{
844 int node = __get_cpu_var(reap_node);
845
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800846 node = next_node(node, node_online_map);
847 if (unlikely(node >= MAX_NUMNODES))
848 node = first_node(node_online_map);
849 __get_cpu_var(reap_node) = node;
850}
851
852#else
853#define init_reap_node(cpu) do { } while (0)
854#define next_reap_node(void) do { } while (0)
855#endif
856
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857/*
858 * Initiate the reap timer running on the target CPU. We run at around 1 to 2Hz
859 * via the workqueue/eventd.
860 * Add the CPU number into the expiration time to minimize the possibility of
861 * the CPUs getting into lockstep and contending for the global cache chain
862 * lock.
863 */
Adrian Bunk897e6792007-07-15 23:38:20 -0700864static void __cpuinit start_cpu_timer(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865{
David Howells52bad642006-11-22 14:54:01 +0000866 struct delayed_work *reap_work = &per_cpu(reap_work, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867
868 /*
869 * When this gets called from do_initcalls via cpucache_init(),
870 * init_workqueues() has already run, so keventd will be setup
871 * at that time.
872 */
David Howells52bad642006-11-22 14:54:01 +0000873 if (keventd_up() && reap_work->work.func == NULL) {
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800874 init_reap_node(cpu);
David Howells65f27f32006-11-22 14:55:48 +0000875 INIT_DELAYED_WORK(reap_work, cache_reap);
Arjan van de Ven2b284212006-12-10 02:21:28 -0800876 schedule_delayed_work_on(cpu, reap_work,
877 __round_jiffies_relative(HZ, cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 }
879}
880
Christoph Lametere498be72005-09-09 13:03:32 -0700881static struct array_cache *alloc_arraycache(int node, int entries,
Pekka Enberg83b519e2009-06-10 19:40:04 +0300882 int batchcount, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883{
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800884 int memsize = sizeof(void *) * entries + sizeof(struct array_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 struct array_cache *nc = NULL;
886
Pekka Enberg83b519e2009-06-10 19:40:04 +0300887 nc = kmalloc_node(memsize, gfp, node);
Catalin Marinasd5cff632009-06-11 13:22:40 +0100888 /*
889 * The array_cache structures contain pointers to free object.
890 * However, when such objects are allocated or transfered to another
891 * cache the pointers are not cleared and they could be counted as
892 * valid references during a kmemleak scan. Therefore, kmemleak must
893 * not scan such objects.
894 */
895 kmemleak_no_scan(nc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700896 if (nc) {
897 nc->avail = 0;
898 nc->limit = entries;
899 nc->batchcount = batchcount;
900 nc->touched = 0;
Christoph Lametere498be72005-09-09 13:03:32 -0700901 spin_lock_init(&nc->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 }
903 return nc;
904}
905
Christoph Lameter3ded1752006-03-25 03:06:44 -0800906/*
907 * Transfer objects in one arraycache to another.
908 * Locking must be handled by the caller.
909 *
910 * Return the number of entries transferred.
911 */
912static int transfer_objects(struct array_cache *to,
913 struct array_cache *from, unsigned int max)
914{
915 /* Figure out how many entries to transfer */
916 int nr = min(min(from->avail, max), to->limit - to->avail);
917
918 if (!nr)
919 return 0;
920
921 memcpy(to->entry + to->avail, from->entry + from->avail -nr,
922 sizeof(void *) *nr);
923
924 from->avail -= nr;
925 to->avail += nr;
926 to->touched = 1;
927 return nr;
928}
929
Christoph Lameter765c4502006-09-27 01:50:08 -0700930#ifndef CONFIG_NUMA
931
932#define drain_alien_cache(cachep, alien) do { } while (0)
933#define reap_alien(cachep, l3) do { } while (0)
934
Pekka Enberg83b519e2009-06-10 19:40:04 +0300935static inline struct array_cache **alloc_alien_cache(int node, int limit, gfp_t gfp)
Christoph Lameter765c4502006-09-27 01:50:08 -0700936{
937 return (struct array_cache **)BAD_ALIEN_MAGIC;
938}
939
940static inline void free_alien_cache(struct array_cache **ac_ptr)
941{
942}
943
944static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
945{
946 return 0;
947}
948
949static inline void *alternate_node_alloc(struct kmem_cache *cachep,
950 gfp_t flags)
951{
952 return NULL;
953}
954
Christoph Hellwig8b98c162006-12-06 20:32:30 -0800955static inline void *____cache_alloc_node(struct kmem_cache *cachep,
Christoph Lameter765c4502006-09-27 01:50:08 -0700956 gfp_t flags, int nodeid)
957{
958 return NULL;
959}
960
961#else /* CONFIG_NUMA */
962
Christoph Hellwig8b98c162006-12-06 20:32:30 -0800963static void *____cache_alloc_node(struct kmem_cache *, gfp_t, int);
Paul Jacksonc61afb12006-03-24 03:16:08 -0800964static void *alternate_node_alloc(struct kmem_cache *, gfp_t);
Christoph Lameterdc85da12006-01-18 17:42:36 -0800965
Pekka Enberg83b519e2009-06-10 19:40:04 +0300966static struct array_cache **alloc_alien_cache(int node, int limit, gfp_t gfp)
Christoph Lametere498be72005-09-09 13:03:32 -0700967{
968 struct array_cache **ac_ptr;
Christoph Lameter8ef82862007-02-20 13:57:52 -0800969 int memsize = sizeof(void *) * nr_node_ids;
Christoph Lametere498be72005-09-09 13:03:32 -0700970 int i;
971
972 if (limit > 1)
973 limit = 12;
Pekka Enberg83b519e2009-06-10 19:40:04 +0300974 ac_ptr = kmalloc_node(memsize, gfp, node);
Christoph Lametere498be72005-09-09 13:03:32 -0700975 if (ac_ptr) {
976 for_each_node(i) {
977 if (i == node || !node_online(i)) {
978 ac_ptr[i] = NULL;
979 continue;
980 }
Pekka Enberg83b519e2009-06-10 19:40:04 +0300981 ac_ptr[i] = alloc_arraycache(node, limit, 0xbaadf00d, gfp);
Christoph Lametere498be72005-09-09 13:03:32 -0700982 if (!ac_ptr[i]) {
Akinobu Mitacc550de2007-11-14 16:58:35 -0800983 for (i--; i >= 0; i--)
Christoph Lametere498be72005-09-09 13:03:32 -0700984 kfree(ac_ptr[i]);
985 kfree(ac_ptr);
986 return NULL;
987 }
988 }
989 }
990 return ac_ptr;
991}
992
Pekka Enberg5295a742006-02-01 03:05:48 -0800993static void free_alien_cache(struct array_cache **ac_ptr)
Christoph Lametere498be72005-09-09 13:03:32 -0700994{
995 int i;
996
997 if (!ac_ptr)
998 return;
Christoph Lametere498be72005-09-09 13:03:32 -0700999 for_each_node(i)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001000 kfree(ac_ptr[i]);
Christoph Lametere498be72005-09-09 13:03:32 -07001001 kfree(ac_ptr);
1002}
1003
Pekka Enberg343e0d72006-02-01 03:05:50 -08001004static void __drain_alien_cache(struct kmem_cache *cachep,
Pekka Enberg5295a742006-02-01 03:05:48 -08001005 struct array_cache *ac, int node)
Christoph Lametere498be72005-09-09 13:03:32 -07001006{
1007 struct kmem_list3 *rl3 = cachep->nodelists[node];
1008
1009 if (ac->avail) {
1010 spin_lock(&rl3->list_lock);
Christoph Lametere00946f2006-03-25 03:06:45 -08001011 /*
1012 * Stuff objects into the remote nodes shared array first.
1013 * That way we could avoid the overhead of putting the objects
1014 * into the free lists and getting them back later.
1015 */
shin, jacob693f7d32006-04-28 10:54:37 -05001016 if (rl3->shared)
1017 transfer_objects(rl3->shared, ac, ac->limit);
Christoph Lametere00946f2006-03-25 03:06:45 -08001018
Christoph Lameterff694162005-09-22 21:44:02 -07001019 free_block(cachep, ac->entry, ac->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -07001020 ac->avail = 0;
1021 spin_unlock(&rl3->list_lock);
1022 }
1023}
1024
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001025/*
1026 * Called from cache_reap() to regularly drain alien caches round robin.
1027 */
1028static void reap_alien(struct kmem_cache *cachep, struct kmem_list3 *l3)
1029{
1030 int node = __get_cpu_var(reap_node);
1031
1032 if (l3->alien) {
1033 struct array_cache *ac = l3->alien[node];
Christoph Lametere00946f2006-03-25 03:06:45 -08001034
1035 if (ac && ac->avail && spin_trylock_irq(&ac->lock)) {
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001036 __drain_alien_cache(cachep, ac, node);
1037 spin_unlock_irq(&ac->lock);
1038 }
1039 }
1040}
1041
Andrew Mortona737b3e2006-03-22 00:08:11 -08001042static void drain_alien_cache(struct kmem_cache *cachep,
1043 struct array_cache **alien)
Christoph Lametere498be72005-09-09 13:03:32 -07001044{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001045 int i = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07001046 struct array_cache *ac;
1047 unsigned long flags;
1048
1049 for_each_online_node(i) {
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001050 ac = alien[i];
Christoph Lametere498be72005-09-09 13:03:32 -07001051 if (ac) {
1052 spin_lock_irqsave(&ac->lock, flags);
1053 __drain_alien_cache(cachep, ac, i);
1054 spin_unlock_irqrestore(&ac->lock, flags);
1055 }
1056 }
1057}
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001058
Ingo Molnar873623d2006-07-13 14:44:38 +02001059static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001060{
1061 struct slab *slabp = virt_to_slab(objp);
1062 int nodeid = slabp->nodeid;
1063 struct kmem_list3 *l3;
1064 struct array_cache *alien = NULL;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001065 int node;
1066
1067 node = numa_node_id();
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001068
1069 /*
1070 * Make sure we are not freeing a object from another node to the array
1071 * cache on this cpu.
1072 */
Siddha, Suresh B62918a02007-05-02 19:27:18 +02001073 if (likely(slabp->nodeid == node))
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001074 return 0;
1075
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001076 l3 = cachep->nodelists[node];
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001077 STATS_INC_NODEFREES(cachep);
1078 if (l3->alien && l3->alien[nodeid]) {
1079 alien = l3->alien[nodeid];
Ingo Molnar873623d2006-07-13 14:44:38 +02001080 spin_lock(&alien->lock);
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001081 if (unlikely(alien->avail == alien->limit)) {
1082 STATS_INC_ACOVERFLOW(cachep);
1083 __drain_alien_cache(cachep, alien, nodeid);
1084 }
1085 alien->entry[alien->avail++] = objp;
1086 spin_unlock(&alien->lock);
1087 } else {
1088 spin_lock(&(cachep->nodelists[nodeid])->list_lock);
1089 free_block(cachep, &objp, 1, nodeid);
1090 spin_unlock(&(cachep->nodelists[nodeid])->list_lock);
1091 }
1092 return 1;
1093}
Christoph Lametere498be72005-09-09 13:03:32 -07001094#endif
1095
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001096static void __cpuinit cpuup_canceled(long cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097{
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001098 struct kmem_cache *cachep;
1099 struct kmem_list3 *l3 = NULL;
1100 int node = cpu_to_node(cpu);
Rusty Russella70f7302009-03-13 14:49:46 +10301101 const struct cpumask *mask = cpumask_of_node(node);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001102
1103 list_for_each_entry(cachep, &cache_chain, next) {
1104 struct array_cache *nc;
1105 struct array_cache *shared;
1106 struct array_cache **alien;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001107
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001108 /* cpu is dead; no one can alloc from it. */
1109 nc = cachep->array[cpu];
1110 cachep->array[cpu] = NULL;
1111 l3 = cachep->nodelists[node];
1112
1113 if (!l3)
1114 goto free_array_cache;
1115
1116 spin_lock_irq(&l3->list_lock);
1117
1118 /* Free limit for this kmem_list3 */
1119 l3->free_limit -= cachep->batchcount;
1120 if (nc)
1121 free_block(cachep, nc->entry, nc->avail, node);
1122
Mike Travisc5f59f02008-04-04 18:11:10 -07001123 if (!cpus_empty(*mask)) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001124 spin_unlock_irq(&l3->list_lock);
1125 goto free_array_cache;
1126 }
1127
1128 shared = l3->shared;
1129 if (shared) {
1130 free_block(cachep, shared->entry,
1131 shared->avail, node);
1132 l3->shared = NULL;
1133 }
1134
1135 alien = l3->alien;
1136 l3->alien = NULL;
1137
1138 spin_unlock_irq(&l3->list_lock);
1139
1140 kfree(shared);
1141 if (alien) {
1142 drain_alien_cache(cachep, alien);
1143 free_alien_cache(alien);
1144 }
1145free_array_cache:
1146 kfree(nc);
1147 }
1148 /*
1149 * In the previous loop, all the objects were freed to
1150 * the respective cache's slabs, now we can go ahead and
1151 * shrink each nodelist to its limit.
1152 */
1153 list_for_each_entry(cachep, &cache_chain, next) {
1154 l3 = cachep->nodelists[node];
1155 if (!l3)
1156 continue;
1157 drain_freelist(cachep, l3, l3->free_objects);
1158 }
1159}
1160
1161static int __cpuinit cpuup_prepare(long cpu)
1162{
Pekka Enberg343e0d72006-02-01 03:05:50 -08001163 struct kmem_cache *cachep;
Christoph Lametere498be72005-09-09 13:03:32 -07001164 struct kmem_list3 *l3 = NULL;
1165 int node = cpu_to_node(cpu);
David Howellsea02e3d2007-07-19 01:49:09 -07001166 const int memsize = sizeof(struct kmem_list3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001167
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001168 /*
1169 * We need to do this right in the beginning since
1170 * alloc_arraycache's are going to use this list.
1171 * kmalloc_node allows us to add the slab to the right
1172 * kmem_list3 and not this cpu's kmem_list3
1173 */
1174
1175 list_for_each_entry(cachep, &cache_chain, next) {
1176 /*
1177 * Set up the size64 kmemlist for cpu before we can
1178 * begin anything. Make sure some other cpu on this
1179 * node has not already allocated this
1180 */
1181 if (!cachep->nodelists[node]) {
1182 l3 = kmalloc_node(memsize, GFP_KERNEL, node);
1183 if (!l3)
1184 goto bad;
1185 kmem_list3_init(l3);
1186 l3->next_reap = jiffies + REAPTIMEOUT_LIST3 +
1187 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
1188
1189 /*
1190 * The l3s don't come and go as CPUs come and
1191 * go. cache_chain_mutex is sufficient
1192 * protection here.
1193 */
1194 cachep->nodelists[node] = l3;
1195 }
1196
1197 spin_lock_irq(&cachep->nodelists[node]->list_lock);
1198 cachep->nodelists[node]->free_limit =
1199 (1 + nr_cpus_node(node)) *
1200 cachep->batchcount + cachep->num;
1201 spin_unlock_irq(&cachep->nodelists[node]->list_lock);
1202 }
1203
1204 /*
1205 * Now we can go ahead with allocating the shared arrays and
1206 * array caches
1207 */
1208 list_for_each_entry(cachep, &cache_chain, next) {
1209 struct array_cache *nc;
1210 struct array_cache *shared = NULL;
1211 struct array_cache **alien = NULL;
1212
1213 nc = alloc_arraycache(node, cachep->limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03001214 cachep->batchcount, GFP_KERNEL);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001215 if (!nc)
1216 goto bad;
1217 if (cachep->shared) {
1218 shared = alloc_arraycache(node,
1219 cachep->shared * cachep->batchcount,
Pekka Enberg83b519e2009-06-10 19:40:04 +03001220 0xbaadf00d, GFP_KERNEL);
Akinobu Mita12d00f62007-10-18 03:05:11 -07001221 if (!shared) {
1222 kfree(nc);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001223 goto bad;
Akinobu Mita12d00f62007-10-18 03:05:11 -07001224 }
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001225 }
1226 if (use_alien_caches) {
Pekka Enberg83b519e2009-06-10 19:40:04 +03001227 alien = alloc_alien_cache(node, cachep->limit, GFP_KERNEL);
Akinobu Mita12d00f62007-10-18 03:05:11 -07001228 if (!alien) {
1229 kfree(shared);
1230 kfree(nc);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001231 goto bad;
Akinobu Mita12d00f62007-10-18 03:05:11 -07001232 }
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001233 }
1234 cachep->array[cpu] = nc;
1235 l3 = cachep->nodelists[node];
1236 BUG_ON(!l3);
1237
1238 spin_lock_irq(&l3->list_lock);
1239 if (!l3->shared) {
1240 /*
1241 * We are serialised from CPU_DEAD or
1242 * CPU_UP_CANCELLED by the cpucontrol lock
1243 */
1244 l3->shared = shared;
1245 shared = NULL;
1246 }
1247#ifdef CONFIG_NUMA
1248 if (!l3->alien) {
1249 l3->alien = alien;
1250 alien = NULL;
1251 }
1252#endif
1253 spin_unlock_irq(&l3->list_lock);
1254 kfree(shared);
1255 free_alien_cache(alien);
1256 }
1257 return 0;
1258bad:
Akinobu Mita12d00f62007-10-18 03:05:11 -07001259 cpuup_canceled(cpu);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001260 return -ENOMEM;
1261}
1262
1263static int __cpuinit cpuup_callback(struct notifier_block *nfb,
1264 unsigned long action, void *hcpu)
1265{
1266 long cpu = (long)hcpu;
1267 int err = 0;
1268
Linus Torvalds1da177e2005-04-16 15:20:36 -07001269 switch (action) {
Heiko Carstens38c3bd92007-05-09 02:34:05 -07001270 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001271 case CPU_UP_PREPARE_FROZEN:
Gautham R Shenoy95402b32008-01-25 21:08:02 +01001272 mutex_lock(&cache_chain_mutex);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001273 err = cpuup_prepare(cpu);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01001274 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 break;
1276 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001277 case CPU_ONLINE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 start_cpu_timer(cpu);
1279 break;
1280#ifdef CONFIG_HOTPLUG_CPU
Christoph Lameter5830c592007-05-09 02:34:22 -07001281 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001282 case CPU_DOWN_PREPARE_FROZEN:
Christoph Lameter5830c592007-05-09 02:34:22 -07001283 /*
1284 * Shutdown cache reaper. Note that the cache_chain_mutex is
1285 * held so that if cache_reap() is invoked it cannot do
1286 * anything expensive but will only modify reap_work
1287 * and reschedule the timer.
1288 */
1289 cancel_rearming_delayed_work(&per_cpu(reap_work, cpu));
1290 /* Now the cache_reaper is guaranteed to be not running. */
1291 per_cpu(reap_work, cpu).work.func = NULL;
1292 break;
1293 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001294 case CPU_DOWN_FAILED_FROZEN:
Christoph Lameter5830c592007-05-09 02:34:22 -07001295 start_cpu_timer(cpu);
1296 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001298 case CPU_DEAD_FROZEN:
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001299 /*
1300 * Even if all the cpus of a node are down, we don't free the
1301 * kmem_list3 of any cache. This to avoid a race between
1302 * cpu_down, and a kmalloc allocation from another cpu for
1303 * memory from the node of the cpu going down. The list3
1304 * structure is usually allocated from kmem_cache_create() and
1305 * gets destroyed at kmem_cache_destroy().
1306 */
Simon Arlott183ff222007-10-20 01:27:18 +02001307 /* fall through */
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08001308#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001310 case CPU_UP_CANCELED_FROZEN:
Gautham R Shenoy95402b32008-01-25 21:08:02 +01001311 mutex_lock(&cache_chain_mutex);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001312 cpuup_canceled(cpu);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001313 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 }
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001316 return err ? NOTIFY_BAD : NOTIFY_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317}
1318
Chandra Seetharaman74b85f32006-06-27 02:54:09 -07001319static struct notifier_block __cpuinitdata cpucache_notifier = {
1320 &cpuup_callback, NULL, 0
1321};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
Christoph Lametere498be72005-09-09 13:03:32 -07001323/*
1324 * swap the static kmem_list3 with kmalloced memory
1325 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08001326static void init_list(struct kmem_cache *cachep, struct kmem_list3 *list,
1327 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07001328{
1329 struct kmem_list3 *ptr;
1330
Pekka Enberg83b519e2009-06-10 19:40:04 +03001331 ptr = kmalloc_node(sizeof(struct kmem_list3), GFP_NOWAIT, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07001332 BUG_ON(!ptr);
1333
Christoph Lametere498be72005-09-09 13:03:32 -07001334 memcpy(ptr, list, sizeof(struct kmem_list3));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001335 /*
1336 * Do not assume that spinlocks can be initialized via memcpy:
1337 */
1338 spin_lock_init(&ptr->list_lock);
1339
Christoph Lametere498be72005-09-09 13:03:32 -07001340 MAKE_ALL_LISTS(cachep, ptr, nodeid);
1341 cachep->nodelists[nodeid] = ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001342}
1343
Andrew Mortona737b3e2006-03-22 00:08:11 -08001344/*
Pekka Enberg556a1692008-01-25 08:20:51 +02001345 * For setting up all the kmem_list3s for cache whose buffer_size is same as
1346 * size of kmem_list3.
1347 */
1348static void __init set_up_list3s(struct kmem_cache *cachep, int index)
1349{
1350 int node;
1351
1352 for_each_online_node(node) {
1353 cachep->nodelists[node] = &initkmem_list3[index + node];
1354 cachep->nodelists[node]->next_reap = jiffies +
1355 REAPTIMEOUT_LIST3 +
1356 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
1357 }
1358}
1359
1360/*
Andrew Mortona737b3e2006-03-22 00:08:11 -08001361 * Initialisation. Called after the page allocator have been initialised and
1362 * before smp_init().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 */
1364void __init kmem_cache_init(void)
1365{
1366 size_t left_over;
1367 struct cache_sizes *sizes;
1368 struct cache_names *names;
Christoph Lametere498be72005-09-09 13:03:32 -07001369 int i;
Jack Steiner07ed76b2006-03-07 21:55:46 -08001370 int order;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001371 int node;
Christoph Lametere498be72005-09-09 13:03:32 -07001372
Siddha, Suresh B1807a1a2007-08-22 14:01:49 -07001373 if (num_possible_nodes() == 1) {
Siddha, Suresh B62918a02007-05-02 19:27:18 +02001374 use_alien_caches = 0;
Siddha, Suresh B1807a1a2007-08-22 14:01:49 -07001375 numa_platform = 0;
1376 }
Siddha, Suresh B62918a02007-05-02 19:27:18 +02001377
Christoph Lametere498be72005-09-09 13:03:32 -07001378 for (i = 0; i < NUM_INIT_LISTS; i++) {
1379 kmem_list3_init(&initkmem_list3[i]);
1380 if (i < MAX_NUMNODES)
1381 cache_cache.nodelists[i] = NULL;
1382 }
Pekka Enberg556a1692008-01-25 08:20:51 +02001383 set_up_list3s(&cache_cache, CACHE_CACHE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001384
1385 /*
1386 * Fragmentation resistance on low memory - only use bigger
1387 * page orders on machines with more than 32MB of memory.
1388 */
1389 if (num_physpages > (32 << 20) >> PAGE_SHIFT)
1390 slab_break_gfp_order = BREAK_GFP_ORDER_HI;
1391
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 /* Bootstrap is tricky, because several objects are allocated
1393 * from caches that do not exist yet:
Andrew Mortona737b3e2006-03-22 00:08:11 -08001394 * 1) initialize the cache_cache cache: it contains the struct
1395 * kmem_cache structures of all caches, except cache_cache itself:
1396 * cache_cache is statically allocated.
Christoph Lametere498be72005-09-09 13:03:32 -07001397 * Initially an __init data area is used for the head array and the
1398 * kmem_list3 structures, it's replaced with a kmalloc allocated
1399 * array at the end of the bootstrap.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 * 2) Create the first kmalloc cache.
Pekka Enberg343e0d72006-02-01 03:05:50 -08001401 * The struct kmem_cache for the new cache is allocated normally.
Christoph Lametere498be72005-09-09 13:03:32 -07001402 * An __init data area is used for the head array.
1403 * 3) Create the remaining kmalloc caches, with minimally sized
1404 * head arrays.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 * 4) Replace the __init data head arrays for cache_cache and the first
1406 * kmalloc cache with kmalloc allocated arrays.
Christoph Lametere498be72005-09-09 13:03:32 -07001407 * 5) Replace the __init data for kmem_list3 for cache_cache and
1408 * the other cache's with kmalloc allocated memory.
1409 * 6) Resize the head arrays of the kmalloc caches to their final sizes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 */
1411
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001412 node = numa_node_id();
1413
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 /* 1) create the cache_cache */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 INIT_LIST_HEAD(&cache_chain);
1416 list_add(&cache_cache.next, &cache_chain);
1417 cache_cache.colour_off = cache_line_size();
1418 cache_cache.array[smp_processor_id()] = &initarray_cache.cache;
Daniel Yeisleyec1f5ee2008-03-25 23:59:08 +02001419 cache_cache.nodelists[node] = &initkmem_list3[CACHE_CACHE + node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
Eric Dumazet8da34302007-05-06 14:49:29 -07001421 /*
1422 * struct kmem_cache size depends on nr_node_ids, which
1423 * can be less than MAX_NUMNODES.
1424 */
1425 cache_cache.buffer_size = offsetof(struct kmem_cache, nodelists) +
1426 nr_node_ids * sizeof(struct kmem_list3 *);
1427#if DEBUG
1428 cache_cache.obj_size = cache_cache.buffer_size;
1429#endif
Andrew Mortona737b3e2006-03-22 00:08:11 -08001430 cache_cache.buffer_size = ALIGN(cache_cache.buffer_size,
1431 cache_line_size());
Eric Dumazet6a2d7a92006-12-13 00:34:27 -08001432 cache_cache.reciprocal_buffer_size =
1433 reciprocal_value(cache_cache.buffer_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434
Jack Steiner07ed76b2006-03-07 21:55:46 -08001435 for (order = 0; order < MAX_ORDER; order++) {
1436 cache_estimate(order, cache_cache.buffer_size,
1437 cache_line_size(), 0, &left_over, &cache_cache.num);
1438 if (cache_cache.num)
1439 break;
1440 }
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02001441 BUG_ON(!cache_cache.num);
Jack Steiner07ed76b2006-03-07 21:55:46 -08001442 cache_cache.gfporder = order;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001443 cache_cache.colour = left_over / cache_cache.colour_off;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001444 cache_cache.slab_size = ALIGN(cache_cache.num * sizeof(kmem_bufctl_t) +
1445 sizeof(struct slab), cache_line_size());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446
1447 /* 2+3) create the kmalloc caches */
1448 sizes = malloc_sizes;
1449 names = cache_names;
1450
Andrew Mortona737b3e2006-03-22 00:08:11 -08001451 /*
1452 * Initialize the caches that provide memory for the array cache and the
1453 * kmem_list3 structures first. Without this, further allocations will
1454 * bug.
Christoph Lametere498be72005-09-09 13:03:32 -07001455 */
1456
1457 sizes[INDEX_AC].cs_cachep = kmem_cache_create(names[INDEX_AC].name,
Andrew Mortona737b3e2006-03-22 00:08:11 -08001458 sizes[INDEX_AC].cs_size,
1459 ARCH_KMALLOC_MINALIGN,
1460 ARCH_KMALLOC_FLAGS|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09001461 NULL);
Christoph Lametere498be72005-09-09 13:03:32 -07001462
Andrew Mortona737b3e2006-03-22 00:08:11 -08001463 if (INDEX_AC != INDEX_L3) {
Christoph Lametere498be72005-09-09 13:03:32 -07001464 sizes[INDEX_L3].cs_cachep =
Andrew Mortona737b3e2006-03-22 00:08:11 -08001465 kmem_cache_create(names[INDEX_L3].name,
1466 sizes[INDEX_L3].cs_size,
1467 ARCH_KMALLOC_MINALIGN,
1468 ARCH_KMALLOC_FLAGS|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09001469 NULL);
Andrew Mortona737b3e2006-03-22 00:08:11 -08001470 }
Christoph Lametere498be72005-09-09 13:03:32 -07001471
Ingo Molnare0a42722006-06-23 02:03:46 -07001472 slab_early_init = 0;
1473
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 while (sizes->cs_size != ULONG_MAX) {
Christoph Lametere498be72005-09-09 13:03:32 -07001475 /*
1476 * For performance, all the general caches are L1 aligned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 * This should be particularly beneficial on SMP boxes, as it
1478 * eliminates "false sharing".
1479 * Note for systems short on memory removing the alignment will
Christoph Lametere498be72005-09-09 13:03:32 -07001480 * allow tighter packing of the smaller caches.
1481 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08001482 if (!sizes->cs_cachep) {
Christoph Lametere498be72005-09-09 13:03:32 -07001483 sizes->cs_cachep = kmem_cache_create(names->name,
Andrew Mortona737b3e2006-03-22 00:08:11 -08001484 sizes->cs_size,
1485 ARCH_KMALLOC_MINALIGN,
1486 ARCH_KMALLOC_FLAGS|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09001487 NULL);
Andrew Mortona737b3e2006-03-22 00:08:11 -08001488 }
Christoph Lameter4b51d662007-02-10 01:43:10 -08001489#ifdef CONFIG_ZONE_DMA
1490 sizes->cs_dmacachep = kmem_cache_create(
1491 names->name_dma,
Andrew Mortona737b3e2006-03-22 00:08:11 -08001492 sizes->cs_size,
1493 ARCH_KMALLOC_MINALIGN,
1494 ARCH_KMALLOC_FLAGS|SLAB_CACHE_DMA|
1495 SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09001496 NULL);
Christoph Lameter4b51d662007-02-10 01:43:10 -08001497#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 sizes++;
1499 names++;
1500 }
1501 /* 4) Replace the bootstrap head arrays */
1502 {
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001503 struct array_cache *ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001504
Pekka Enberg83b519e2009-06-10 19:40:04 +03001505 ptr = kmalloc(sizeof(struct arraycache_init), GFP_NOWAIT);
Christoph Lametere498be72005-09-09 13:03:32 -07001506
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001507 BUG_ON(cpu_cache_get(&cache_cache) != &initarray_cache.cache);
1508 memcpy(ptr, cpu_cache_get(&cache_cache),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001509 sizeof(struct arraycache_init));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001510 /*
1511 * Do not assume that spinlocks can be initialized via memcpy:
1512 */
1513 spin_lock_init(&ptr->lock);
1514
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 cache_cache.array[smp_processor_id()] = ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001516
Pekka Enberg83b519e2009-06-10 19:40:04 +03001517 ptr = kmalloc(sizeof(struct arraycache_init), GFP_NOWAIT);
Christoph Lametere498be72005-09-09 13:03:32 -07001518
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001519 BUG_ON(cpu_cache_get(malloc_sizes[INDEX_AC].cs_cachep)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001520 != &initarray_generic.cache);
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001521 memcpy(ptr, cpu_cache_get(malloc_sizes[INDEX_AC].cs_cachep),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001522 sizeof(struct arraycache_init));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001523 /*
1524 * Do not assume that spinlocks can be initialized via memcpy:
1525 */
1526 spin_lock_init(&ptr->lock);
1527
Christoph Lametere498be72005-09-09 13:03:32 -07001528 malloc_sizes[INDEX_AC].cs_cachep->array[smp_processor_id()] =
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001529 ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 }
Christoph Lametere498be72005-09-09 13:03:32 -07001531 /* 5) Replace the bootstrap kmem_list3's */
1532 {
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001533 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534
Mel Gorman9c09a952008-01-24 05:49:54 -08001535 for_each_online_node(nid) {
Daniel Yeisleyec1f5ee2008-03-25 23:59:08 +02001536 init_list(&cache_cache, &initkmem_list3[CACHE_CACHE + nid], nid);
Pekka Enberg556a1692008-01-25 08:20:51 +02001537
Christoph Lametere498be72005-09-09 13:03:32 -07001538 init_list(malloc_sizes[INDEX_AC].cs_cachep,
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001539 &initkmem_list3[SIZE_AC + nid], nid);
Christoph Lametere498be72005-09-09 13:03:32 -07001540
1541 if (INDEX_AC != INDEX_L3) {
1542 init_list(malloc_sizes[INDEX_L3].cs_cachep,
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001543 &initkmem_list3[SIZE_L3 + nid], nid);
Christoph Lametere498be72005-09-09 13:03:32 -07001544 }
1545 }
1546 }
1547
1548 /* 6) resize the head arrays to their final sizes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 {
Pekka Enberg343e0d72006-02-01 03:05:50 -08001550 struct kmem_cache *cachep;
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001551 mutex_lock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 list_for_each_entry(cachep, &cache_chain, next)
Pekka Enberg83b519e2009-06-10 19:40:04 +03001553 if (enable_cpucache(cachep, GFP_NOWAIT))
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07001554 BUG();
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001555 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 }
1557
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -07001558 /* Annotate slab for lockdep -- annotate the malloc caches */
1559 init_lock_keys();
1560
1561
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 /* Done! */
1563 g_cpucache_up = FULL;
1564
Andrew Mortona737b3e2006-03-22 00:08:11 -08001565 /*
1566 * Register a cpu startup notifier callback that initializes
1567 * cpu_cache_get for all new cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 */
1569 register_cpu_notifier(&cpucache_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570
Andrew Mortona737b3e2006-03-22 00:08:11 -08001571 /*
1572 * The reap timers are started later, with a module init call: That part
1573 * of the kernel is not yet operational.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 */
1575}
1576
1577static int __init cpucache_init(void)
1578{
1579 int cpu;
1580
Andrew Mortona737b3e2006-03-22 00:08:11 -08001581 /*
1582 * Register the timers that return unneeded pages to the page allocator
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 */
Christoph Lametere498be72005-09-09 13:03:32 -07001584 for_each_online_cpu(cpu)
Andrew Mortona737b3e2006-03-22 00:08:11 -08001585 start_cpu_timer(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 return 0;
1587}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588__initcall(cpucache_init);
1589
1590/*
1591 * Interface to system's page allocator. No need to hold the cache-lock.
1592 *
1593 * If we requested dmaable memory, we will get it. Even if we
1594 * did not request dmaable memory, we might get it, but that
1595 * would be relatively rare and ignorable.
1596 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001597static void *kmem_getpages(struct kmem_cache *cachep, gfp_t flags, int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598{
1599 struct page *page;
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001600 int nr_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 int i;
1602
Luke Yangd6fef9d2006-04-10 22:52:56 -07001603#ifndef CONFIG_MMU
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001604 /*
1605 * Nommu uses slab's for process anonymous memory allocations, and thus
1606 * requires __GFP_COMP to properly refcount higher order allocations
Luke Yangd6fef9d2006-04-10 22:52:56 -07001607 */
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001608 flags |= __GFP_COMP;
Luke Yangd6fef9d2006-04-10 22:52:56 -07001609#endif
Christoph Lameter765c4502006-09-27 01:50:08 -07001610
Christoph Lameter3c517a62006-12-06 20:33:29 -08001611 flags |= cachep->gfpflags;
Mel Gormane12ba742007-10-16 01:25:52 -07001612 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1613 flags |= __GFP_RECLAIMABLE;
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001614
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001615 page = alloc_pages_node(nodeid, flags | __GFP_NOTRACK, cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 if (!page)
1617 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001619 nr_pages = (1 << cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
Christoph Lameter972d1a72006-09-25 23:31:51 -07001621 add_zone_page_state(page_zone(page),
1622 NR_SLAB_RECLAIMABLE, nr_pages);
1623 else
1624 add_zone_page_state(page_zone(page),
1625 NR_SLAB_UNRECLAIMABLE, nr_pages);
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001626 for (i = 0; i < nr_pages; i++)
1627 __SetPageSlab(page + i);
Pekka Enbergc175eea2008-05-09 20:35:53 +02001628
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001629 if (kmemcheck_enabled && !(cachep->flags & SLAB_NOTRACK)) {
1630 kmemcheck_alloc_shadow(page, cachep->gfporder, flags, nodeid);
1631
1632 if (cachep->ctor)
1633 kmemcheck_mark_uninitialized_pages(page, nr_pages);
1634 else
1635 kmemcheck_mark_unallocated_pages(page, nr_pages);
1636 }
Pekka Enbergc175eea2008-05-09 20:35:53 +02001637
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001638 return page_address(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639}
1640
1641/*
1642 * Interface to system's page release.
1643 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001644static void kmem_freepages(struct kmem_cache *cachep, void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001646 unsigned long i = (1 << cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 struct page *page = virt_to_page(addr);
1648 const unsigned long nr_freed = i;
1649
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001650 kmemcheck_free_shadow(page, cachep->gfporder);
Pekka Enbergc175eea2008-05-09 20:35:53 +02001651
Christoph Lameter972d1a72006-09-25 23:31:51 -07001652 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1653 sub_zone_page_state(page_zone(page),
1654 NR_SLAB_RECLAIMABLE, nr_freed);
1655 else
1656 sub_zone_page_state(page_zone(page),
1657 NR_SLAB_UNRECLAIMABLE, nr_freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 while (i--) {
Nick Pigginf205b2f2006-03-22 00:08:02 -08001659 BUG_ON(!PageSlab(page));
1660 __ClearPageSlab(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 page++;
1662 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 if (current->reclaim_state)
1664 current->reclaim_state->reclaimed_slab += nr_freed;
1665 free_pages((unsigned long)addr, cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666}
1667
1668static void kmem_rcu_free(struct rcu_head *head)
1669{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001670 struct slab_rcu *slab_rcu = (struct slab_rcu *)head;
Pekka Enberg343e0d72006-02-01 03:05:50 -08001671 struct kmem_cache *cachep = slab_rcu->cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672
1673 kmem_freepages(cachep, slab_rcu->addr);
1674 if (OFF_SLAB(cachep))
1675 kmem_cache_free(cachep->slabp_cache, slab_rcu);
1676}
1677
1678#if DEBUG
1679
1680#ifdef CONFIG_DEBUG_PAGEALLOC
Pekka Enberg343e0d72006-02-01 03:05:50 -08001681static void store_stackinfo(struct kmem_cache *cachep, unsigned long *addr,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001682 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683{
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001684 int size = obj_size(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001686 addr = (unsigned long *)&((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001688 if (size < 5 * sizeof(unsigned long))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 return;
1690
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001691 *addr++ = 0x12345678;
1692 *addr++ = caller;
1693 *addr++ = smp_processor_id();
1694 size -= 3 * sizeof(unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 {
1696 unsigned long *sptr = &caller;
1697 unsigned long svalue;
1698
1699 while (!kstack_end(sptr)) {
1700 svalue = *sptr++;
1701 if (kernel_text_address(svalue)) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001702 *addr++ = svalue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 size -= sizeof(unsigned long);
1704 if (size <= sizeof(unsigned long))
1705 break;
1706 }
1707 }
1708
1709 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001710 *addr++ = 0x87654321;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711}
1712#endif
1713
Pekka Enberg343e0d72006-02-01 03:05:50 -08001714static void poison_obj(struct kmem_cache *cachep, void *addr, unsigned char val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715{
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001716 int size = obj_size(cachep);
1717 addr = &((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718
1719 memset(addr, val, size);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001720 *(unsigned char *)(addr + size - 1) = POISON_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001721}
1722
1723static void dump_line(char *data, int offset, int limit)
1724{
1725 int i;
Dave Jonesaa83aa42006-09-29 01:59:51 -07001726 unsigned char error = 0;
1727 int bad_count = 0;
1728
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729 printk(KERN_ERR "%03x:", offset);
Dave Jonesaa83aa42006-09-29 01:59:51 -07001730 for (i = 0; i < limit; i++) {
1731 if (data[offset + i] != POISON_FREE) {
1732 error = data[offset + i];
1733 bad_count++;
1734 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001735 printk(" %02x", (unsigned char)data[offset + i]);
Dave Jonesaa83aa42006-09-29 01:59:51 -07001736 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 printk("\n");
Dave Jonesaa83aa42006-09-29 01:59:51 -07001738
1739 if (bad_count == 1) {
1740 error ^= POISON_FREE;
1741 if (!(error & (error - 1))) {
1742 printk(KERN_ERR "Single bit error detected. Probably "
1743 "bad RAM.\n");
1744#ifdef CONFIG_X86
1745 printk(KERN_ERR "Run memtest86+ or a similar memory "
1746 "test tool.\n");
1747#else
1748 printk(KERN_ERR "Run a memory test tool.\n");
1749#endif
1750 }
1751 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752}
1753#endif
1754
1755#if DEBUG
1756
Pekka Enberg343e0d72006-02-01 03:05:50 -08001757static void print_objinfo(struct kmem_cache *cachep, void *objp, int lines)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758{
1759 int i, size;
1760 char *realobj;
1761
1762 if (cachep->flags & SLAB_RED_ZONE) {
David Woodhouseb46b8f12007-05-08 00:22:59 -07001763 printk(KERN_ERR "Redzone: 0x%llx/0x%llx.\n",
Andrew Mortona737b3e2006-03-22 00:08:11 -08001764 *dbg_redzone1(cachep, objp),
1765 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766 }
1767
1768 if (cachep->flags & SLAB_STORE_USER) {
1769 printk(KERN_ERR "Last user: [<%p>]",
Andrew Mortona737b3e2006-03-22 00:08:11 -08001770 *dbg_userword(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 print_symbol("(%s)",
Andrew Mortona737b3e2006-03-22 00:08:11 -08001772 (unsigned long)*dbg_userword(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773 printk("\n");
1774 }
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001775 realobj = (char *)objp + obj_offset(cachep);
1776 size = obj_size(cachep);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001777 for (i = 0; i < size && lines; i += 16, lines--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 int limit;
1779 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001780 if (i + limit > size)
1781 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 dump_line(realobj, i, limit);
1783 }
1784}
1785
Pekka Enberg343e0d72006-02-01 03:05:50 -08001786static void check_poison_obj(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787{
1788 char *realobj;
1789 int size, i;
1790 int lines = 0;
1791
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001792 realobj = (char *)objp + obj_offset(cachep);
1793 size = obj_size(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001795 for (i = 0; i < size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 char exp = POISON_FREE;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001797 if (i == size - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 exp = POISON_END;
1799 if (realobj[i] != exp) {
1800 int limit;
1801 /* Mismatch ! */
1802 /* Print header */
1803 if (lines == 0) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001804 printk(KERN_ERR
David Howellse94a40c2007-04-02 23:46:28 +01001805 "Slab corruption: %s start=%p, len=%d\n",
1806 cachep->name, realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 print_objinfo(cachep, objp, 0);
1808 }
1809 /* Hexdump the affected line */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001810 i = (i / 16) * 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001812 if (i + limit > size)
1813 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 dump_line(realobj, i, limit);
1815 i += 16;
1816 lines++;
1817 /* Limit to 5 lines */
1818 if (lines > 5)
1819 break;
1820 }
1821 }
1822 if (lines != 0) {
1823 /* Print some data about the neighboring objects, if they
1824 * exist:
1825 */
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08001826 struct slab *slabp = virt_to_slab(objp);
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001827 unsigned int objnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001829 objnr = obj_to_index(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 if (objnr) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001831 objp = index_to_obj(cachep, slabp, objnr - 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001832 realobj = (char *)objp + obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 printk(KERN_ERR "Prev obj: start=%p, len=%d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001834 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 print_objinfo(cachep, objp, 2);
1836 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001837 if (objnr + 1 < cachep->num) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001838 objp = index_to_obj(cachep, slabp, objnr + 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001839 realobj = (char *)objp + obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 printk(KERN_ERR "Next obj: start=%p, len=%d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001841 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 print_objinfo(cachep, objp, 2);
1843 }
1844 }
1845}
1846#endif
1847
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848#if DEBUG
Rabin Vincente79aec22008-07-04 00:40:32 +05301849static void slab_destroy_debugcheck(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001850{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 int i;
1852 for (i = 0; i < cachep->num; i++) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001853 void *objp = index_to_obj(cachep, slabp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854
1855 if (cachep->flags & SLAB_POISON) {
1856#ifdef CONFIG_DEBUG_PAGEALLOC
Andrew Mortona737b3e2006-03-22 00:08:11 -08001857 if (cachep->buffer_size % PAGE_SIZE == 0 &&
1858 OFF_SLAB(cachep))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001859 kernel_map_pages(virt_to_page(objp),
Andrew Mortona737b3e2006-03-22 00:08:11 -08001860 cachep->buffer_size / PAGE_SIZE, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 else
1862 check_poison_obj(cachep, objp);
1863#else
1864 check_poison_obj(cachep, objp);
1865#endif
1866 }
1867 if (cachep->flags & SLAB_RED_ZONE) {
1868 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
1869 slab_error(cachep, "start of a freed object "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001870 "was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
1872 slab_error(cachep, "end of a freed object "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001873 "was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 }
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001876}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877#else
Rabin Vincente79aec22008-07-04 00:40:32 +05301878static void slab_destroy_debugcheck(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001879{
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001880}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881#endif
1882
Randy Dunlap911851e2006-03-22 00:08:14 -08001883/**
1884 * slab_destroy - destroy and release all objects in a slab
1885 * @cachep: cache pointer being destroyed
1886 * @slabp: slab pointer being destroyed
1887 *
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001888 * Destroy all the objs in a slab, and release the mem back to the system.
Andrew Mortona737b3e2006-03-22 00:08:11 -08001889 * Before calling the slab must have been unlinked from the cache. The
1890 * cache-lock is not held/needed.
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001891 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001892static void slab_destroy(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001893{
1894 void *addr = slabp->s_mem - slabp->colouroff;
1895
Rabin Vincente79aec22008-07-04 00:40:32 +05301896 slab_destroy_debugcheck(cachep, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 if (unlikely(cachep->flags & SLAB_DESTROY_BY_RCU)) {
1898 struct slab_rcu *slab_rcu;
1899
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001900 slab_rcu = (struct slab_rcu *)slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 slab_rcu->cachep = cachep;
1902 slab_rcu->addr = addr;
1903 call_rcu(&slab_rcu->head, kmem_rcu_free);
1904 } else {
1905 kmem_freepages(cachep, addr);
Ingo Molnar873623d2006-07-13 14:44:38 +02001906 if (OFF_SLAB(cachep))
1907 kmem_cache_free(cachep->slabp_cache, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 }
1909}
1910
Christoph Lameter117f6eb2006-09-25 23:31:37 -07001911static void __kmem_cache_destroy(struct kmem_cache *cachep)
1912{
1913 int i;
1914 struct kmem_list3 *l3;
1915
1916 for_each_online_cpu(i)
1917 kfree(cachep->array[i]);
1918
1919 /* NUMA: free the list3 structures */
1920 for_each_online_node(i) {
1921 l3 = cachep->nodelists[i];
1922 if (l3) {
1923 kfree(l3->shared);
1924 free_alien_cache(l3->alien);
1925 kfree(l3);
1926 }
1927 }
1928 kmem_cache_free(&cache_cache, cachep);
1929}
1930
1931
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932/**
Randy.Dunlapa70773d2006-02-01 03:05:52 -08001933 * calculate_slab_order - calculate size (page order) of slabs
1934 * @cachep: pointer to the cache that is being created
1935 * @size: size of objects to be created in this cache.
1936 * @align: required alignment for the objects.
1937 * @flags: slab allocation flags
1938 *
1939 * Also calculates the number of objects per slab.
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001940 *
1941 * This could be made much more intelligent. For now, try to avoid using
1942 * high order pages for slabs. When the gfp() functions are more friendly
1943 * towards high-order requests, this should be changed.
1944 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08001945static size_t calculate_slab_order(struct kmem_cache *cachep,
Randy Dunlapee13d782006-02-01 03:05:53 -08001946 size_t size, size_t align, unsigned long flags)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001947{
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02001948 unsigned long offslab_limit;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001949 size_t left_over = 0;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001950 int gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001951
Christoph Lameter0aa817f2007-05-16 22:11:01 -07001952 for (gfporder = 0; gfporder <= KMALLOC_MAX_ORDER; gfporder++) {
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001953 unsigned int num;
1954 size_t remainder;
1955
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001956 cache_estimate(gfporder, size, align, flags, &remainder, &num);
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001957 if (!num)
1958 continue;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001959
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02001960 if (flags & CFLGS_OFF_SLAB) {
1961 /*
1962 * Max number of objs-per-slab for caches which
1963 * use off-slab slabs. Needed to avoid a possible
1964 * looping condition in cache_grow().
1965 */
1966 offslab_limit = size - sizeof(struct slab);
1967 offslab_limit /= sizeof(kmem_bufctl_t);
1968
1969 if (num > offslab_limit)
1970 break;
1971 }
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001972
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001973 /* Found something acceptable - save it away */
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001974 cachep->num = num;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001975 cachep->gfporder = gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001976 left_over = remainder;
1977
1978 /*
Linus Torvaldsf78bb8a2006-03-08 10:33:05 -08001979 * A VFS-reclaimable slab tends to have most allocations
1980 * as GFP_NOFS and we really don't want to have to be allocating
1981 * higher-order pages when we are unable to shrink dcache.
1982 */
1983 if (flags & SLAB_RECLAIM_ACCOUNT)
1984 break;
1985
1986 /*
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001987 * Large number of objects is good, but very large slabs are
1988 * currently bad for the gfp()s.
1989 */
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001990 if (gfporder >= slab_break_gfp_order)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001991 break;
1992
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001993 /*
1994 * Acceptable internal fragmentation?
1995 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08001996 if (left_over * 8 <= (PAGE_SIZE << gfporder))
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001997 break;
1998 }
1999 return left_over;
2000}
2001
Pekka Enberg83b519e2009-06-10 19:40:04 +03002002static int __init_refok setup_cpu_cache(struct kmem_cache *cachep, gfp_t gfp)
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002003{
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002004 if (g_cpucache_up == FULL)
Pekka Enberg83b519e2009-06-10 19:40:04 +03002005 return enable_cpucache(cachep, gfp);
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002006
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002007 if (g_cpucache_up == NONE) {
2008 /*
2009 * Note: the first kmem_cache_create must create the cache
2010 * that's used by kmalloc(24), otherwise the creation of
2011 * further caches will BUG().
2012 */
2013 cachep->array[smp_processor_id()] = &initarray_generic.cache;
2014
2015 /*
2016 * If the cache that's used by kmalloc(sizeof(kmem_list3)) is
2017 * the first cache, then we need to set up all its list3s,
2018 * otherwise the creation of further caches will BUG().
2019 */
2020 set_up_list3s(cachep, SIZE_AC);
2021 if (INDEX_AC == INDEX_L3)
2022 g_cpucache_up = PARTIAL_L3;
2023 else
2024 g_cpucache_up = PARTIAL_AC;
2025 } else {
2026 cachep->array[smp_processor_id()] =
Pekka Enberg83b519e2009-06-10 19:40:04 +03002027 kmalloc(sizeof(struct arraycache_init), gfp);
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002028
2029 if (g_cpucache_up == PARTIAL_AC) {
2030 set_up_list3s(cachep, SIZE_L3);
2031 g_cpucache_up = PARTIAL_L3;
2032 } else {
2033 int node;
Pekka Enberg556a1692008-01-25 08:20:51 +02002034 for_each_online_node(node) {
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002035 cachep->nodelists[node] =
2036 kmalloc_node(sizeof(struct kmem_list3),
2037 GFP_KERNEL, node);
2038 BUG_ON(!cachep->nodelists[node]);
2039 kmem_list3_init(cachep->nodelists[node]);
2040 }
2041 }
2042 }
2043 cachep->nodelists[numa_node_id()]->next_reap =
2044 jiffies + REAPTIMEOUT_LIST3 +
2045 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
2046
2047 cpu_cache_get(cachep)->avail = 0;
2048 cpu_cache_get(cachep)->limit = BOOT_CPUCACHE_ENTRIES;
2049 cpu_cache_get(cachep)->batchcount = 1;
2050 cpu_cache_get(cachep)->touched = 0;
2051 cachep->batchcount = 1;
2052 cachep->limit = BOOT_CPUCACHE_ENTRIES;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002053 return 0;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002054}
2055
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002056/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057 * kmem_cache_create - Create a cache.
2058 * @name: A string which is used in /proc/slabinfo to identify this cache.
2059 * @size: The size of objects to be created in this cache.
2060 * @align: The required alignment for the objects.
2061 * @flags: SLAB flags
2062 * @ctor: A constructor for the objects.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 *
2064 * Returns a ptr to the cache on success, NULL on failure.
2065 * Cannot be called within a int, but can be interrupted.
Paul Mundt20c2df82007-07-20 10:11:58 +09002066 * The @ctor is run when new pages are allocated by the cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 *
2068 * @name must be valid until the cache is destroyed. This implies that
Andrew Mortona737b3e2006-03-22 00:08:11 -08002069 * the module calling this has to destroy the cache before getting unloaded.
Catalin Marinas249da162008-11-21 12:56:22 +00002070 * Note that kmem_cache_name() is not guaranteed to return the same pointer,
2071 * therefore applications must manage it themselves.
Andrew Mortona737b3e2006-03-22 00:08:11 -08002072 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 * The flags are
2074 *
2075 * %SLAB_POISON - Poison the slab with a known test pattern (a5a5a5a5)
2076 * to catch references to uninitialised memory.
2077 *
2078 * %SLAB_RED_ZONE - Insert `Red' zones around the allocated memory to check
2079 * for buffer overruns.
2080 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 * %SLAB_HWCACHE_ALIGN - Align the objects in this cache to a hardware
2082 * cacheline. This can be beneficial if you're counting cycles as closely
2083 * as davem.
2084 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002085struct kmem_cache *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086kmem_cache_create (const char *name, size_t size, size_t align,
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002087 unsigned long flags, void (*ctor)(void *))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088{
2089 size_t left_over, slab_size, ralign;
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07002090 struct kmem_cache *cachep = NULL, *pc;
Pekka Enberg83b519e2009-06-10 19:40:04 +03002091 gfp_t gfp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092
2093 /*
2094 * Sanity checks... these are all serious usage bugs.
2095 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002096 if (!name || in_interrupt() || (size < BYTES_PER_WORD) ||
Paul Mundt20c2df82007-07-20 10:11:58 +09002097 size > KMALLOC_MAX_SIZE) {
Harvey Harrisond40cee22008-04-30 00:55:07 -07002098 printk(KERN_ERR "%s: Early error in slab %s\n", __func__,
Andrew Mortona737b3e2006-03-22 00:08:11 -08002099 name);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002100 BUG();
2101 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102
Ravikiran G Thirumalaif0188f42006-02-10 01:51:13 -08002103 /*
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002104 * We use cache_chain_mutex to ensure a consistent view of
Rusty Russell174596a2009-01-01 10:12:29 +10302105 * cpu_online_mask as well. Please see cpuup_callback
Ravikiran G Thirumalaif0188f42006-02-10 01:51:13 -08002106 */
Pekka Enberg83b519e2009-06-10 19:40:04 +03002107 if (slab_is_available()) {
2108 get_online_cpus();
2109 mutex_lock(&cache_chain_mutex);
2110 }
Andrew Morton4f12bb42005-11-07 00:58:00 -08002111
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07002112 list_for_each_entry(pc, &cache_chain, next) {
Andrew Morton4f12bb42005-11-07 00:58:00 -08002113 char tmp;
2114 int res;
2115
2116 /*
2117 * This happens when the module gets unloaded and doesn't
2118 * destroy its slab cache and no-one else reuses the vmalloc
2119 * area of the module. Print a warning.
2120 */
Andrew Morton138ae662006-12-06 20:36:41 -08002121 res = probe_kernel_address(pc->name, tmp);
Andrew Morton4f12bb42005-11-07 00:58:00 -08002122 if (res) {
matzeb4169522007-05-06 14:49:52 -07002123 printk(KERN_ERR
2124 "SLAB: cache with size %d has lost its name\n",
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002125 pc->buffer_size);
Andrew Morton4f12bb42005-11-07 00:58:00 -08002126 continue;
2127 }
2128
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002129 if (!strcmp(pc->name, name)) {
matzeb4169522007-05-06 14:49:52 -07002130 printk(KERN_ERR
2131 "kmem_cache_create: duplicate cache %s\n", name);
Andrew Morton4f12bb42005-11-07 00:58:00 -08002132 dump_stack();
2133 goto oops;
2134 }
2135 }
2136
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137#if DEBUG
2138 WARN_ON(strchr(name, ' ')); /* It confuses parsers */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139#if FORCED_DEBUG
2140 /*
2141 * Enable redzoning and last user accounting, except for caches with
2142 * large objects, if the increased size would increase the object size
2143 * above the next power of two: caches with object sizes just above a
2144 * power of two have a significant amount of internal fragmentation.
2145 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002146 if (size < 4096 || fls(size - 1) == fls(size-1 + REDZONE_ALIGN +
2147 2 * sizeof(unsigned long long)))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002148 flags |= SLAB_RED_ZONE | SLAB_STORE_USER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149 if (!(flags & SLAB_DESTROY_BY_RCU))
2150 flags |= SLAB_POISON;
2151#endif
2152 if (flags & SLAB_DESTROY_BY_RCU)
2153 BUG_ON(flags & SLAB_POISON);
2154#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 /*
Andrew Mortona737b3e2006-03-22 00:08:11 -08002156 * Always checks flags, a caller might be expecting debug support which
2157 * isn't available.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 */
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002159 BUG_ON(flags & ~CREATE_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160
Andrew Mortona737b3e2006-03-22 00:08:11 -08002161 /*
2162 * Check that size is in terms of words. This is needed to avoid
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 * unaligned accesses for some archs when redzoning is used, and makes
2164 * sure any on-slab bufctl's are also correctly aligned.
2165 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002166 if (size & (BYTES_PER_WORD - 1)) {
2167 size += (BYTES_PER_WORD - 1);
2168 size &= ~(BYTES_PER_WORD - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 }
2170
Andrew Mortona737b3e2006-03-22 00:08:11 -08002171 /* calculate the final buffer alignment: */
2172
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173 /* 1) arch recommendation: can be overridden for debug */
2174 if (flags & SLAB_HWCACHE_ALIGN) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002175 /*
2176 * Default alignment: as specified by the arch code. Except if
2177 * an object is really small, then squeeze multiple objects into
2178 * one cacheline.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179 */
2180 ralign = cache_line_size();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002181 while (size <= ralign / 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 ralign /= 2;
2183 } else {
2184 ralign = BYTES_PER_WORD;
2185 }
Pekka Enbergca5f9702006-09-25 23:31:25 -07002186
2187 /*
David Woodhouse87a927c2007-07-04 21:26:44 -04002188 * Redzoning and user store require word alignment or possibly larger.
2189 * Note this will be overridden by architecture or caller mandated
2190 * alignment if either is greater than BYTES_PER_WORD.
Pekka Enbergca5f9702006-09-25 23:31:25 -07002191 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002192 if (flags & SLAB_STORE_USER)
2193 ralign = BYTES_PER_WORD;
2194
2195 if (flags & SLAB_RED_ZONE) {
2196 ralign = REDZONE_ALIGN;
2197 /* If redzoning, ensure that the second redzone is suitably
2198 * aligned, by adjusting the object size accordingly. */
2199 size += REDZONE_ALIGN - 1;
2200 size &= ~(REDZONE_ALIGN - 1);
2201 }
Pekka Enbergca5f9702006-09-25 23:31:25 -07002202
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002203 /* 2) arch mandated alignment */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 if (ralign < ARCH_SLAB_MINALIGN) {
2205 ralign = ARCH_SLAB_MINALIGN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 }
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002207 /* 3) caller mandated alignment */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 if (ralign < align) {
2209 ralign = align;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 }
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002211 /* disable debug if necessary */
David Woodhouseb46b8f12007-05-08 00:22:59 -07002212 if (ralign > __alignof__(unsigned long long))
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002213 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002214 /*
Pekka Enbergca5f9702006-09-25 23:31:25 -07002215 * 4) Store it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 */
2217 align = ralign;
2218
Pekka Enberg83b519e2009-06-10 19:40:04 +03002219 if (slab_is_available())
2220 gfp = GFP_KERNEL;
2221 else
2222 gfp = GFP_NOWAIT;
2223
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 /* Get cache's description obj. */
Pekka Enberg83b519e2009-06-10 19:40:04 +03002225 cachep = kmem_cache_zalloc(&cache_cache, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 if (!cachep)
Andrew Morton4f12bb42005-11-07 00:58:00 -08002227 goto oops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228
2229#if DEBUG
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002230 cachep->obj_size = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231
Pekka Enbergca5f9702006-09-25 23:31:25 -07002232 /*
2233 * Both debugging options require word-alignment which is calculated
2234 * into align above.
2235 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 if (flags & SLAB_RED_ZONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 /* add space for red zone words */
David Woodhouseb46b8f12007-05-08 00:22:59 -07002238 cachep->obj_offset += sizeof(unsigned long long);
2239 size += 2 * sizeof(unsigned long long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 }
2241 if (flags & SLAB_STORE_USER) {
Pekka Enbergca5f9702006-09-25 23:31:25 -07002242 /* user store requires one word storage behind the end of
David Woodhouse87a927c2007-07-04 21:26:44 -04002243 * the real object. But if the second red zone needs to be
2244 * aligned to 64 bits, we must allow that much space.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002246 if (flags & SLAB_RED_ZONE)
2247 size += REDZONE_ALIGN;
2248 else
2249 size += BYTES_PER_WORD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 }
2251#if FORCED_DEBUG && defined(CONFIG_DEBUG_PAGEALLOC)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002252 if (size >= malloc_sizes[INDEX_L3 + 1].cs_size
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002253 && cachep->obj_size > cache_line_size() && size < PAGE_SIZE) {
2254 cachep->obj_offset += PAGE_SIZE - size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 size = PAGE_SIZE;
2256 }
2257#endif
2258#endif
2259
Ingo Molnare0a42722006-06-23 02:03:46 -07002260 /*
2261 * Determine if the slab management is 'on' or 'off' slab.
2262 * (bootstrapping cannot cope with offslab caches so don't do
2263 * it too early on.)
2264 */
2265 if ((size >= (PAGE_SIZE >> 3)) && !slab_early_init)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 /*
2267 * Size is large, assume best to place the slab management obj
2268 * off-slab (should allow better packing of objs).
2269 */
2270 flags |= CFLGS_OFF_SLAB;
2271
2272 size = ALIGN(size, align);
2273
Linus Torvaldsf78bb8a2006-03-08 10:33:05 -08002274 left_over = calculate_slab_order(cachep, size, align, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275
2276 if (!cachep->num) {
matzeb4169522007-05-06 14:49:52 -07002277 printk(KERN_ERR
2278 "kmem_cache_create: couldn't create cache %s.\n", name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 kmem_cache_free(&cache_cache, cachep);
2280 cachep = NULL;
Andrew Morton4f12bb42005-11-07 00:58:00 -08002281 goto oops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002283 slab_size = ALIGN(cachep->num * sizeof(kmem_bufctl_t)
2284 + sizeof(struct slab), align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285
2286 /*
2287 * If the slab has been placed off-slab, and we have enough space then
2288 * move it on-slab. This is at the expense of any extra colouring.
2289 */
2290 if (flags & CFLGS_OFF_SLAB && left_over >= slab_size) {
2291 flags &= ~CFLGS_OFF_SLAB;
2292 left_over -= slab_size;
2293 }
2294
2295 if (flags & CFLGS_OFF_SLAB) {
2296 /* really off slab. No need for manual alignment */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002297 slab_size =
2298 cachep->num * sizeof(kmem_bufctl_t) + sizeof(struct slab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 }
2300
2301 cachep->colour_off = cache_line_size();
2302 /* Offset must be a multiple of the alignment. */
2303 if (cachep->colour_off < align)
2304 cachep->colour_off = align;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002305 cachep->colour = left_over / cachep->colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 cachep->slab_size = slab_size;
2307 cachep->flags = flags;
2308 cachep->gfpflags = 0;
Christoph Lameter4b51d662007-02-10 01:43:10 -08002309 if (CONFIG_ZONE_DMA_FLAG && (flags & SLAB_CACHE_DMA))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 cachep->gfpflags |= GFP_DMA;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002311 cachep->buffer_size = size;
Eric Dumazet6a2d7a92006-12-13 00:34:27 -08002312 cachep->reciprocal_buffer_size = reciprocal_value(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002314 if (flags & CFLGS_OFF_SLAB) {
Victor Fuscob2d55072005-09-10 00:26:36 -07002315 cachep->slabp_cache = kmem_find_general_cachep(slab_size, 0u);
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002316 /*
2317 * This is a possibility for one of the malloc_sizes caches.
2318 * But since we go off slab only for object size greater than
2319 * PAGE_SIZE/8, and malloc_sizes gets created in ascending order,
2320 * this should not happen at all.
2321 * But leave a BUG_ON for some lucky dude.
2322 */
Christoph Lameter6cb8f912007-07-17 04:03:22 -07002323 BUG_ON(ZERO_OR_NULL_PTR(cachep->slabp_cache));
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002324 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 cachep->ctor = ctor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 cachep->name = name;
2327
Pekka Enberg83b519e2009-06-10 19:40:04 +03002328 if (setup_cpu_cache(cachep, gfp)) {
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002329 __kmem_cache_destroy(cachep);
2330 cachep = NULL;
2331 goto oops;
2332 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 /* cache setup completed, link it into the list */
2335 list_add(&cachep->next, &cache_chain);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002336oops:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 if (!cachep && (flags & SLAB_PANIC))
2338 panic("kmem_cache_create(): failed to create slab `%s'\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002339 name);
Pekka Enberg83b519e2009-06-10 19:40:04 +03002340 if (slab_is_available()) {
2341 mutex_unlock(&cache_chain_mutex);
2342 put_online_cpus();
2343 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344 return cachep;
2345}
2346EXPORT_SYMBOL(kmem_cache_create);
2347
2348#if DEBUG
2349static void check_irq_off(void)
2350{
2351 BUG_ON(!irqs_disabled());
2352}
2353
2354static void check_irq_on(void)
2355{
2356 BUG_ON(irqs_disabled());
2357}
2358
Pekka Enberg343e0d72006-02-01 03:05:50 -08002359static void check_spinlock_acquired(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360{
2361#ifdef CONFIG_SMP
2362 check_irq_off();
Christoph Lametere498be72005-09-09 13:03:32 -07002363 assert_spin_locked(&cachep->nodelists[numa_node_id()]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364#endif
2365}
Christoph Lametere498be72005-09-09 13:03:32 -07002366
Pekka Enberg343e0d72006-02-01 03:05:50 -08002367static void check_spinlock_acquired_node(struct kmem_cache *cachep, int node)
Christoph Lametere498be72005-09-09 13:03:32 -07002368{
2369#ifdef CONFIG_SMP
2370 check_irq_off();
2371 assert_spin_locked(&cachep->nodelists[node]->list_lock);
2372#endif
2373}
2374
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375#else
2376#define check_irq_off() do { } while(0)
2377#define check_irq_on() do { } while(0)
2378#define check_spinlock_acquired(x) do { } while(0)
Christoph Lametere498be72005-09-09 13:03:32 -07002379#define check_spinlock_acquired_node(x, y) do { } while(0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380#endif
2381
Christoph Lameteraab22072006-03-22 00:09:06 -08002382static void drain_array(struct kmem_cache *cachep, struct kmem_list3 *l3,
2383 struct array_cache *ac,
2384 int force, int node);
2385
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386static void do_drain(void *arg)
2387{
Andrew Mortona737b3e2006-03-22 00:08:11 -08002388 struct kmem_cache *cachep = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389 struct array_cache *ac;
Christoph Lameterff694162005-09-22 21:44:02 -07002390 int node = numa_node_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391
2392 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002393 ac = cpu_cache_get(cachep);
Christoph Lameterff694162005-09-22 21:44:02 -07002394 spin_lock(&cachep->nodelists[node]->list_lock);
2395 free_block(cachep, ac->entry, ac->avail, node);
2396 spin_unlock(&cachep->nodelists[node]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 ac->avail = 0;
2398}
2399
Pekka Enberg343e0d72006-02-01 03:05:50 -08002400static void drain_cpu_caches(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401{
Christoph Lametere498be72005-09-09 13:03:32 -07002402 struct kmem_list3 *l3;
2403 int node;
2404
Jens Axboe15c8b6c2008-05-09 09:39:44 +02002405 on_each_cpu(do_drain, cachep, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 check_irq_on();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002407 for_each_online_node(node) {
Christoph Lametere498be72005-09-09 13:03:32 -07002408 l3 = cachep->nodelists[node];
Roland Dreiera4523a82006-05-15 11:41:00 -07002409 if (l3 && l3->alien)
2410 drain_alien_cache(cachep, l3->alien);
2411 }
2412
2413 for_each_online_node(node) {
2414 l3 = cachep->nodelists[node];
2415 if (l3)
Christoph Lameteraab22072006-03-22 00:09:06 -08002416 drain_array(cachep, l3, l3->shared, 1, node);
Christoph Lametere498be72005-09-09 13:03:32 -07002417 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418}
2419
Christoph Lametered11d9e2006-06-30 01:55:45 -07002420/*
2421 * Remove slabs from the list of free slabs.
2422 * Specify the number of slabs to drain in tofree.
2423 *
2424 * Returns the actual number of slabs released.
2425 */
2426static int drain_freelist(struct kmem_cache *cache,
2427 struct kmem_list3 *l3, int tofree)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428{
Christoph Lametered11d9e2006-06-30 01:55:45 -07002429 struct list_head *p;
2430 int nr_freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 struct slab *slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432
Christoph Lametered11d9e2006-06-30 01:55:45 -07002433 nr_freed = 0;
2434 while (nr_freed < tofree && !list_empty(&l3->slabs_free)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435
Christoph Lametered11d9e2006-06-30 01:55:45 -07002436 spin_lock_irq(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07002437 p = l3->slabs_free.prev;
Christoph Lametered11d9e2006-06-30 01:55:45 -07002438 if (p == &l3->slabs_free) {
2439 spin_unlock_irq(&l3->list_lock);
2440 goto out;
2441 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442
Christoph Lametered11d9e2006-06-30 01:55:45 -07002443 slabp = list_entry(p, struct slab, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444#if DEBUG
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002445 BUG_ON(slabp->inuse);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446#endif
2447 list_del(&slabp->list);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002448 /*
2449 * Safe to drop the lock. The slab is no longer linked
2450 * to the cache.
2451 */
2452 l3->free_objects -= cache->num;
Christoph Lametere498be72005-09-09 13:03:32 -07002453 spin_unlock_irq(&l3->list_lock);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002454 slab_destroy(cache, slabp);
2455 nr_freed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 }
Christoph Lametered11d9e2006-06-30 01:55:45 -07002457out:
2458 return nr_freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459}
2460
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002461/* Called with cache_chain_mutex held to protect against cpu hotplug */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002462static int __cache_shrink(struct kmem_cache *cachep)
Christoph Lametere498be72005-09-09 13:03:32 -07002463{
2464 int ret = 0, i = 0;
2465 struct kmem_list3 *l3;
2466
2467 drain_cpu_caches(cachep);
2468
2469 check_irq_on();
2470 for_each_online_node(i) {
2471 l3 = cachep->nodelists[i];
Christoph Lametered11d9e2006-06-30 01:55:45 -07002472 if (!l3)
2473 continue;
2474
2475 drain_freelist(cachep, l3, l3->free_objects);
2476
2477 ret += !list_empty(&l3->slabs_full) ||
2478 !list_empty(&l3->slabs_partial);
Christoph Lametere498be72005-09-09 13:03:32 -07002479 }
2480 return (ret ? 1 : 0);
2481}
2482
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483/**
2484 * kmem_cache_shrink - Shrink a cache.
2485 * @cachep: The cache to shrink.
2486 *
2487 * Releases as many slabs as possible for a cache.
2488 * To help debugging, a zero exit status indicates all slabs were released.
2489 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002490int kmem_cache_shrink(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491{
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002492 int ret;
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002493 BUG_ON(!cachep || in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002495 get_online_cpus();
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002496 mutex_lock(&cache_chain_mutex);
2497 ret = __cache_shrink(cachep);
2498 mutex_unlock(&cache_chain_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002499 put_online_cpus();
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002500 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501}
2502EXPORT_SYMBOL(kmem_cache_shrink);
2503
2504/**
2505 * kmem_cache_destroy - delete a cache
2506 * @cachep: the cache to destroy
2507 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08002508 * Remove a &struct kmem_cache object from the slab cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 *
2510 * It is expected this function will be called by a module when it is
2511 * unloaded. This will remove the cache completely, and avoid a duplicate
2512 * cache being allocated each time a module is loaded and unloaded, if the
2513 * module doesn't have persistent in-kernel storage across loads and unloads.
2514 *
2515 * The cache must be empty before calling this function.
2516 *
2517 * The caller must guarantee that noone will allocate memory from the cache
2518 * during the kmem_cache_destroy().
2519 */
Alexey Dobriyan133d2052006-09-27 01:49:41 -07002520void kmem_cache_destroy(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521{
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002522 BUG_ON(!cachep || in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524 /* Find the cache in the chain of caches. */
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002525 get_online_cpus();
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002526 mutex_lock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527 /*
2528 * the chain is never empty, cache_cache is never destroyed
2529 */
2530 list_del(&cachep->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531 if (__cache_shrink(cachep)) {
2532 slab_error(cachep, "Can't free all objects");
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002533 list_add(&cachep->next, &cache_chain);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002534 mutex_unlock(&cache_chain_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002535 put_online_cpus();
Alexey Dobriyan133d2052006-09-27 01:49:41 -07002536 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537 }
2538
2539 if (unlikely(cachep->flags & SLAB_DESTROY_BY_RCU))
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07002540 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541
Christoph Lameter117f6eb2006-09-25 23:31:37 -07002542 __kmem_cache_destroy(cachep);
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002543 mutex_unlock(&cache_chain_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002544 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545}
2546EXPORT_SYMBOL(kmem_cache_destroy);
2547
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002548/*
2549 * Get the memory for a slab management obj.
2550 * For a slab cache when the slab descriptor is off-slab, slab descriptors
2551 * always come from malloc_sizes caches. The slab descriptor cannot
2552 * come from the same cache which is getting created because,
2553 * when we are searching for an appropriate cache for these
2554 * descriptors in kmem_cache_create, we search through the malloc_sizes array.
2555 * If we are creating a malloc_sizes cache here it would not be visible to
2556 * kmem_find_general_cachep till the initialization is complete.
2557 * Hence we cannot have slabp_cache same as the original cache.
2558 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002559static struct slab *alloc_slabmgmt(struct kmem_cache *cachep, void *objp,
Ravikiran G Thirumalai5b74ada2006-04-10 22:52:53 -07002560 int colour_off, gfp_t local_flags,
2561 int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562{
2563 struct slab *slabp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002564
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 if (OFF_SLAB(cachep)) {
2566 /* Slab management obj is off-slab. */
Ravikiran G Thirumalai5b74ada2006-04-10 22:52:53 -07002567 slabp = kmem_cache_alloc_node(cachep->slabp_cache,
Pekka Enberg8759ec52008-11-26 10:01:31 +02002568 local_flags, nodeid);
Catalin Marinasd5cff632009-06-11 13:22:40 +01002569 /*
2570 * If the first object in the slab is leaked (it's allocated
2571 * but no one has a reference to it), we want to make sure
2572 * kmemleak does not treat the ->s_mem pointer as a reference
2573 * to the object. Otherwise we will not report the leak.
2574 */
2575 kmemleak_scan_area(slabp, offsetof(struct slab, list),
2576 sizeof(struct list_head), local_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577 if (!slabp)
2578 return NULL;
2579 } else {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002580 slabp = objp + colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581 colour_off += cachep->slab_size;
2582 }
2583 slabp->inuse = 0;
2584 slabp->colouroff = colour_off;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002585 slabp->s_mem = objp + colour_off;
Ravikiran G Thirumalai5b74ada2006-04-10 22:52:53 -07002586 slabp->nodeid = nodeid;
Marcin Slusarze51bfd02008-02-10 11:21:54 +01002587 slabp->free = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588 return slabp;
2589}
2590
2591static inline kmem_bufctl_t *slab_bufctl(struct slab *slabp)
2592{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002593 return (kmem_bufctl_t *) (slabp + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594}
2595
Pekka Enberg343e0d72006-02-01 03:05:50 -08002596static void cache_init_objs(struct kmem_cache *cachep,
Christoph Lametera35afb82007-05-16 22:10:57 -07002597 struct slab *slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598{
2599 int i;
2600
2601 for (i = 0; i < cachep->num; i++) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002602 void *objp = index_to_obj(cachep, slabp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603#if DEBUG
2604 /* need to poison the objs? */
2605 if (cachep->flags & SLAB_POISON)
2606 poison_obj(cachep, objp, POISON_FREE);
2607 if (cachep->flags & SLAB_STORE_USER)
2608 *dbg_userword(cachep, objp) = NULL;
2609
2610 if (cachep->flags & SLAB_RED_ZONE) {
2611 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2612 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2613 }
2614 /*
Andrew Mortona737b3e2006-03-22 00:08:11 -08002615 * Constructors are not allowed to allocate memory from the same
2616 * cache which they are a constructor for. Otherwise, deadlock.
2617 * They must also be threaded.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618 */
2619 if (cachep->ctor && !(cachep->flags & SLAB_POISON))
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002620 cachep->ctor(objp + obj_offset(cachep));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621
2622 if (cachep->flags & SLAB_RED_ZONE) {
2623 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
2624 slab_error(cachep, "constructor overwrote the"
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002625 " end of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
2627 slab_error(cachep, "constructor overwrote the"
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002628 " start of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629 }
Andrew Mortona737b3e2006-03-22 00:08:11 -08002630 if ((cachep->buffer_size % PAGE_SIZE) == 0 &&
2631 OFF_SLAB(cachep) && cachep->flags & SLAB_POISON)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002632 kernel_map_pages(virt_to_page(objp),
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002633 cachep->buffer_size / PAGE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634#else
2635 if (cachep->ctor)
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002636 cachep->ctor(objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637#endif
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002638 slab_bufctl(slabp)[i] = i + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002640 slab_bufctl(slabp)[i - 1] = BUFCTL_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641}
2642
Pekka Enberg343e0d72006-02-01 03:05:50 -08002643static void kmem_flagcheck(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644{
Christoph Lameter4b51d662007-02-10 01:43:10 -08002645 if (CONFIG_ZONE_DMA_FLAG) {
2646 if (flags & GFP_DMA)
2647 BUG_ON(!(cachep->gfpflags & GFP_DMA));
2648 else
2649 BUG_ON(cachep->gfpflags & GFP_DMA);
2650 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651}
2652
Andrew Mortona737b3e2006-03-22 00:08:11 -08002653static void *slab_get_obj(struct kmem_cache *cachep, struct slab *slabp,
2654 int nodeid)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002655{
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002656 void *objp = index_to_obj(cachep, slabp, slabp->free);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002657 kmem_bufctl_t next;
2658
2659 slabp->inuse++;
2660 next = slab_bufctl(slabp)[slabp->free];
2661#if DEBUG
2662 slab_bufctl(slabp)[slabp->free] = BUFCTL_FREE;
2663 WARN_ON(slabp->nodeid != nodeid);
2664#endif
2665 slabp->free = next;
2666
2667 return objp;
2668}
2669
Andrew Mortona737b3e2006-03-22 00:08:11 -08002670static void slab_put_obj(struct kmem_cache *cachep, struct slab *slabp,
2671 void *objp, int nodeid)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002672{
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002673 unsigned int objnr = obj_to_index(cachep, slabp, objp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002674
2675#if DEBUG
2676 /* Verify that the slab belongs to the intended node */
2677 WARN_ON(slabp->nodeid != nodeid);
2678
Al Viro871751e2006-03-25 03:06:39 -08002679 if (slab_bufctl(slabp)[objnr] + 1 <= SLAB_LIMIT + 1) {
Matthew Dobson78d382d2006-02-01 03:05:47 -08002680 printk(KERN_ERR "slab: double free detected in cache "
Andrew Mortona737b3e2006-03-22 00:08:11 -08002681 "'%s', objp %p\n", cachep->name, objp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002682 BUG();
2683 }
2684#endif
2685 slab_bufctl(slabp)[objnr] = slabp->free;
2686 slabp->free = objnr;
2687 slabp->inuse--;
2688}
2689
Pekka Enberg47768742006-06-23 02:03:07 -07002690/*
2691 * Map pages beginning at addr to the given cache and slab. This is required
2692 * for the slab allocator to be able to lookup the cache and slab of a
2693 * virtual address for kfree, ksize, kmem_ptr_validate, and slab debugging.
2694 */
2695static void slab_map_pages(struct kmem_cache *cache, struct slab *slab,
2696 void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697{
Pekka Enberg47768742006-06-23 02:03:07 -07002698 int nr_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699 struct page *page;
2700
Pekka Enberg47768742006-06-23 02:03:07 -07002701 page = virt_to_page(addr);
Nick Piggin84097512006-03-22 00:08:34 -08002702
Pekka Enberg47768742006-06-23 02:03:07 -07002703 nr_pages = 1;
Nick Piggin84097512006-03-22 00:08:34 -08002704 if (likely(!PageCompound(page)))
Pekka Enberg47768742006-06-23 02:03:07 -07002705 nr_pages <<= cache->gfporder;
2706
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 do {
Pekka Enberg47768742006-06-23 02:03:07 -07002708 page_set_cache(page, cache);
2709 page_set_slab(page, slab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710 page++;
Pekka Enberg47768742006-06-23 02:03:07 -07002711 } while (--nr_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712}
2713
2714/*
2715 * Grow (by 1) the number of slabs within a cache. This is called by
2716 * kmem_cache_alloc() when there are no active objs left in a cache.
2717 */
Christoph Lameter3c517a62006-12-06 20:33:29 -08002718static int cache_grow(struct kmem_cache *cachep,
2719 gfp_t flags, int nodeid, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002721 struct slab *slabp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002722 size_t offset;
2723 gfp_t local_flags;
Christoph Lametere498be72005-09-09 13:03:32 -07002724 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725
Andrew Mortona737b3e2006-03-22 00:08:11 -08002726 /*
2727 * Be lazy and only check for valid flags here, keeping it out of the
2728 * critical path in kmem_cache_alloc().
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729 */
Christoph Lameter6cb06222007-10-16 01:25:41 -07002730 BUG_ON(flags & GFP_SLAB_BUG_MASK);
2731 local_flags = flags & (GFP_CONSTRAINT_MASK|GFP_RECLAIM_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002733 /* Take the l3 list lock to change the colour_next on this node */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734 check_irq_off();
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002735 l3 = cachep->nodelists[nodeid];
2736 spin_lock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737
2738 /* Get colour for the slab, and cal the next value. */
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002739 offset = l3->colour_next;
2740 l3->colour_next++;
2741 if (l3->colour_next >= cachep->colour)
2742 l3->colour_next = 0;
2743 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002745 offset *= cachep->colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746
2747 if (local_flags & __GFP_WAIT)
2748 local_irq_enable();
2749
2750 /*
2751 * The test for missing atomic flag is performed here, rather than
2752 * the more obvious place, simply to reduce the critical path length
2753 * in kmem_cache_alloc(). If a caller is seriously mis-behaving they
2754 * will eventually be caught here (where it matters).
2755 */
2756 kmem_flagcheck(cachep, flags);
2757
Andrew Mortona737b3e2006-03-22 00:08:11 -08002758 /*
2759 * Get mem for the objs. Attempt to allocate a physical page from
2760 * 'nodeid'.
Christoph Lametere498be72005-09-09 13:03:32 -07002761 */
Christoph Lameter3c517a62006-12-06 20:33:29 -08002762 if (!objp)
Andrew Mortonb8c1c5d2007-07-24 12:02:40 -07002763 objp = kmem_getpages(cachep, local_flags, nodeid);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002764 if (!objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765 goto failed;
2766
2767 /* Get slab management. */
Christoph Lameter3c517a62006-12-06 20:33:29 -08002768 slabp = alloc_slabmgmt(cachep, objp, offset,
Christoph Lameter6cb06222007-10-16 01:25:41 -07002769 local_flags & ~GFP_CONSTRAINT_MASK, nodeid);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002770 if (!slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771 goto opps1;
2772
Pekka Enberg47768742006-06-23 02:03:07 -07002773 slab_map_pages(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774
Christoph Lametera35afb82007-05-16 22:10:57 -07002775 cache_init_objs(cachep, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776
2777 if (local_flags & __GFP_WAIT)
2778 local_irq_disable();
2779 check_irq_off();
Christoph Lametere498be72005-09-09 13:03:32 -07002780 spin_lock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781
2782 /* Make slab active. */
Christoph Lametere498be72005-09-09 13:03:32 -07002783 list_add_tail(&slabp->list, &(l3->slabs_free));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784 STATS_INC_GROWN(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07002785 l3->free_objects += cachep->num;
2786 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 return 1;
Andrew Mortona737b3e2006-03-22 00:08:11 -08002788opps1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789 kmem_freepages(cachep, objp);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002790failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791 if (local_flags & __GFP_WAIT)
2792 local_irq_disable();
2793 return 0;
2794}
2795
2796#if DEBUG
2797
2798/*
2799 * Perform extra freeing checks:
2800 * - detect bad pointers.
2801 * - POISON/RED_ZONE checking
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802 */
2803static void kfree_debugcheck(const void *objp)
2804{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805 if (!virt_addr_valid(objp)) {
2806 printk(KERN_ERR "kfree_debugcheck: out of range ptr %lxh.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002807 (unsigned long)objp);
2808 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810}
2811
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002812static inline void verify_redzone_free(struct kmem_cache *cache, void *obj)
2813{
David Woodhouseb46b8f12007-05-08 00:22:59 -07002814 unsigned long long redzone1, redzone2;
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002815
2816 redzone1 = *dbg_redzone1(cache, obj);
2817 redzone2 = *dbg_redzone2(cache, obj);
2818
2819 /*
2820 * Redzone is ok.
2821 */
2822 if (redzone1 == RED_ACTIVE && redzone2 == RED_ACTIVE)
2823 return;
2824
2825 if (redzone1 == RED_INACTIVE && redzone2 == RED_INACTIVE)
2826 slab_error(cache, "double free detected");
2827 else
2828 slab_error(cache, "memory outside object was overwritten");
2829
David Woodhouseb46b8f12007-05-08 00:22:59 -07002830 printk(KERN_ERR "%p: redzone 1:0x%llx, redzone 2:0x%llx.\n",
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002831 obj, redzone1, redzone2);
2832}
2833
Pekka Enberg343e0d72006-02-01 03:05:50 -08002834static void *cache_free_debugcheck(struct kmem_cache *cachep, void *objp,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002835 void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836{
2837 struct page *page;
2838 unsigned int objnr;
2839 struct slab *slabp;
2840
Matthew Wilcox80cbd912007-11-29 12:05:13 -07002841 BUG_ON(virt_to_cache(objp) != cachep);
2842
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002843 objp -= obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844 kfree_debugcheck(objp);
Christoph Lameterb49af682007-05-06 14:49:41 -07002845 page = virt_to_head_page(objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846
Pekka Enberg065d41c2005-11-13 16:06:46 -08002847 slabp = page_get_slab(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848
2849 if (cachep->flags & SLAB_RED_ZONE) {
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002850 verify_redzone_free(cachep, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2852 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2853 }
2854 if (cachep->flags & SLAB_STORE_USER)
2855 *dbg_userword(cachep, objp) = caller;
2856
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002857 objnr = obj_to_index(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858
2859 BUG_ON(objnr >= cachep->num);
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002860 BUG_ON(objp != index_to_obj(cachep, slabp, objnr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861
Al Viro871751e2006-03-25 03:06:39 -08002862#ifdef CONFIG_DEBUG_SLAB_LEAK
2863 slab_bufctl(slabp)[objnr] = BUFCTL_FREE;
2864#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865 if (cachep->flags & SLAB_POISON) {
2866#ifdef CONFIG_DEBUG_PAGEALLOC
Andrew Mortona737b3e2006-03-22 00:08:11 -08002867 if ((cachep->buffer_size % PAGE_SIZE)==0 && OFF_SLAB(cachep)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868 store_stackinfo(cachep, objp, (unsigned long)caller);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002869 kernel_map_pages(virt_to_page(objp),
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002870 cachep->buffer_size / PAGE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871 } else {
2872 poison_obj(cachep, objp, POISON_FREE);
2873 }
2874#else
2875 poison_obj(cachep, objp, POISON_FREE);
2876#endif
2877 }
2878 return objp;
2879}
2880
Pekka Enberg343e0d72006-02-01 03:05:50 -08002881static void check_slabp(struct kmem_cache *cachep, struct slab *slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882{
2883 kmem_bufctl_t i;
2884 int entries = 0;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002885
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886 /* Check slab's freelist to see if this obj is there. */
2887 for (i = slabp->free; i != BUFCTL_END; i = slab_bufctl(slabp)[i]) {
2888 entries++;
2889 if (entries > cachep->num || i >= cachep->num)
2890 goto bad;
2891 }
2892 if (entries != cachep->num - slabp->inuse) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002893bad:
2894 printk(KERN_ERR "slab: Internal list corruption detected in "
2895 "cache '%s'(%d), slabp %p(%d). Hexdump:\n",
2896 cachep->name, cachep->num, slabp, slabp->inuse);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002897 for (i = 0;
Linus Torvalds264132b2006-03-06 12:10:07 -08002898 i < sizeof(*slabp) + cachep->num * sizeof(kmem_bufctl_t);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002899 i++) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002900 if (i % 16 == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 printk("\n%03x:", i);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002902 printk(" %02x", ((unsigned char *)slabp)[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903 }
2904 printk("\n");
2905 BUG();
2906 }
2907}
2908#else
2909#define kfree_debugcheck(x) do { } while(0)
2910#define cache_free_debugcheck(x,objp,z) (objp)
2911#define check_slabp(x,y) do { } while(0)
2912#endif
2913
Pekka Enberg343e0d72006-02-01 03:05:50 -08002914static void *cache_alloc_refill(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915{
2916 int batchcount;
2917 struct kmem_list3 *l3;
2918 struct array_cache *ac;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07002919 int node;
2920
Andrew Mortona737b3e2006-03-22 00:08:11 -08002921retry:
Joe Korty6d2144d2008-03-05 15:04:59 -08002922 check_irq_off();
2923 node = numa_node_id();
2924 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925 batchcount = ac->batchcount;
2926 if (!ac->touched && batchcount > BATCHREFILL_LIMIT) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002927 /*
2928 * If there was little recent activity on this cache, then
2929 * perform only a partial refill. Otherwise we could generate
2930 * refill bouncing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002931 */
2932 batchcount = BATCHREFILL_LIMIT;
2933 }
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07002934 l3 = cachep->nodelists[node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935
Christoph Lametere498be72005-09-09 13:03:32 -07002936 BUG_ON(ac->avail > 0 || !l3);
2937 spin_lock(&l3->list_lock);
2938
Christoph Lameter3ded1752006-03-25 03:06:44 -08002939 /* See if we can refill from the shared array */
2940 if (l3->shared && transfer_objects(ac, l3->shared, batchcount))
2941 goto alloc_done;
2942
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943 while (batchcount > 0) {
2944 struct list_head *entry;
2945 struct slab *slabp;
2946 /* Get slab alloc is to come from. */
2947 entry = l3->slabs_partial.next;
2948 if (entry == &l3->slabs_partial) {
2949 l3->free_touched = 1;
2950 entry = l3->slabs_free.next;
2951 if (entry == &l3->slabs_free)
2952 goto must_grow;
2953 }
2954
2955 slabp = list_entry(entry, struct slab, list);
2956 check_slabp(cachep, slabp);
2957 check_spinlock_acquired(cachep);
Pekka Enberg714b8172007-05-06 14:49:03 -07002958
2959 /*
2960 * The slab was either on partial or free list so
2961 * there must be at least one object available for
2962 * allocation.
2963 */
roel kluin249b9f32008-10-29 17:18:07 -04002964 BUG_ON(slabp->inuse >= cachep->num);
Pekka Enberg714b8172007-05-06 14:49:03 -07002965
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966 while (slabp->inuse < cachep->num && batchcount--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967 STATS_INC_ALLOCED(cachep);
2968 STATS_INC_ACTIVE(cachep);
2969 STATS_SET_HIGH(cachep);
2970
Matthew Dobson78d382d2006-02-01 03:05:47 -08002971 ac->entry[ac->avail++] = slab_get_obj(cachep, slabp,
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07002972 node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973 }
2974 check_slabp(cachep, slabp);
2975
2976 /* move slabp to correct slabp list: */
2977 list_del(&slabp->list);
2978 if (slabp->free == BUFCTL_END)
2979 list_add(&slabp->list, &l3->slabs_full);
2980 else
2981 list_add(&slabp->list, &l3->slabs_partial);
2982 }
2983
Andrew Mortona737b3e2006-03-22 00:08:11 -08002984must_grow:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985 l3->free_objects -= ac->avail;
Andrew Mortona737b3e2006-03-22 00:08:11 -08002986alloc_done:
Christoph Lametere498be72005-09-09 13:03:32 -07002987 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988
2989 if (unlikely(!ac->avail)) {
2990 int x;
Christoph Lameter3c517a62006-12-06 20:33:29 -08002991 x = cache_grow(cachep, flags | GFP_THISNODE, node, NULL);
Christoph Lametere498be72005-09-09 13:03:32 -07002992
Andrew Mortona737b3e2006-03-22 00:08:11 -08002993 /* cache_grow can reenable interrupts, then ac could change. */
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002994 ac = cpu_cache_get(cachep);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002995 if (!x && ac->avail == 0) /* no objects in sight? abort */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996 return NULL;
2997
Andrew Mortona737b3e2006-03-22 00:08:11 -08002998 if (!ac->avail) /* objects refilled by interrupt? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999 goto retry;
3000 }
3001 ac->touched = 1;
Christoph Lametere498be72005-09-09 13:03:32 -07003002 return ac->entry[--ac->avail];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003}
3004
Andrew Mortona737b3e2006-03-22 00:08:11 -08003005static inline void cache_alloc_debugcheck_before(struct kmem_cache *cachep,
3006 gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007{
3008 might_sleep_if(flags & __GFP_WAIT);
3009#if DEBUG
3010 kmem_flagcheck(cachep, flags);
3011#endif
3012}
3013
3014#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08003015static void *cache_alloc_debugcheck_after(struct kmem_cache *cachep,
3016 gfp_t flags, void *objp, void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003018 if (!objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019 return objp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003020 if (cachep->flags & SLAB_POISON) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003021#ifdef CONFIG_DEBUG_PAGEALLOC
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003022 if ((cachep->buffer_size % PAGE_SIZE) == 0 && OFF_SLAB(cachep))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003023 kernel_map_pages(virt_to_page(objp),
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003024 cachep->buffer_size / PAGE_SIZE, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025 else
3026 check_poison_obj(cachep, objp);
3027#else
3028 check_poison_obj(cachep, objp);
3029#endif
3030 poison_obj(cachep, objp, POISON_INUSE);
3031 }
3032 if (cachep->flags & SLAB_STORE_USER)
3033 *dbg_userword(cachep, objp) = caller;
3034
3035 if (cachep->flags & SLAB_RED_ZONE) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08003036 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE ||
3037 *dbg_redzone2(cachep, objp) != RED_INACTIVE) {
3038 slab_error(cachep, "double free, or memory outside"
3039 " object was overwritten");
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003040 printk(KERN_ERR
David Woodhouseb46b8f12007-05-08 00:22:59 -07003041 "%p: redzone 1:0x%llx, redzone 2:0x%llx\n",
Andrew Mortona737b3e2006-03-22 00:08:11 -08003042 objp, *dbg_redzone1(cachep, objp),
3043 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044 }
3045 *dbg_redzone1(cachep, objp) = RED_ACTIVE;
3046 *dbg_redzone2(cachep, objp) = RED_ACTIVE;
3047 }
Al Viro871751e2006-03-25 03:06:39 -08003048#ifdef CONFIG_DEBUG_SLAB_LEAK
3049 {
3050 struct slab *slabp;
3051 unsigned objnr;
3052
Christoph Lameterb49af682007-05-06 14:49:41 -07003053 slabp = page_get_slab(virt_to_head_page(objp));
Al Viro871751e2006-03-25 03:06:39 -08003054 objnr = (unsigned)(objp - slabp->s_mem) / cachep->buffer_size;
3055 slab_bufctl(slabp)[objnr] = BUFCTL_ACTIVE;
3056 }
3057#endif
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003058 objp += obj_offset(cachep);
Christoph Lameter4f104932007-05-06 14:50:17 -07003059 if (cachep->ctor && cachep->flags & SLAB_POISON)
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07003060 cachep->ctor(objp);
Kevin Hilmana44b56d2006-12-06 20:32:11 -08003061#if ARCH_SLAB_MINALIGN
3062 if ((u32)objp & (ARCH_SLAB_MINALIGN-1)) {
3063 printk(KERN_ERR "0x%p: not aligned to ARCH_SLAB_MINALIGN=%d\n",
3064 objp, ARCH_SLAB_MINALIGN);
3065 }
3066#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067 return objp;
3068}
3069#else
3070#define cache_alloc_debugcheck_after(a,b,objp,d) (objp)
3071#endif
3072
Akinobu Mita773ff602008-12-23 19:37:01 +09003073static bool slab_should_failslab(struct kmem_cache *cachep, gfp_t flags)
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003074{
3075 if (cachep == &cache_cache)
Akinobu Mita773ff602008-12-23 19:37:01 +09003076 return false;
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003077
Akinobu Mita773ff602008-12-23 19:37:01 +09003078 return should_failslab(obj_size(cachep), flags);
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003079}
3080
Pekka Enberg343e0d72006-02-01 03:05:50 -08003081static inline void *____cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003083 void *objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084 struct array_cache *ac;
3085
Alok N Kataria5c382302005-09-27 21:45:46 -07003086 check_irq_off();
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003087
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003088 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089 if (likely(ac->avail)) {
3090 STATS_INC_ALLOCHIT(cachep);
3091 ac->touched = 1;
Christoph Lametere498be72005-09-09 13:03:32 -07003092 objp = ac->entry[--ac->avail];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093 } else {
3094 STATS_INC_ALLOCMISS(cachep);
3095 objp = cache_alloc_refill(cachep, flags);
3096 }
Catalin Marinasd5cff632009-06-11 13:22:40 +01003097 /*
3098 * To avoid a false negative, if an object that is in one of the
3099 * per-CPU caches is leaked, we need to make sure kmemleak doesn't
3100 * treat the array pointers as a reference to the object.
3101 */
3102 kmemleak_erase(&ac->entry[ac->avail]);
Alok N Kataria5c382302005-09-27 21:45:46 -07003103 return objp;
3104}
3105
Christoph Lametere498be72005-09-09 13:03:32 -07003106#ifdef CONFIG_NUMA
3107/*
Paul Jacksonb2455392006-03-24 03:16:12 -08003108 * Try allocating on another node if PF_SPREAD_SLAB|PF_MEMPOLICY.
Paul Jacksonc61afb12006-03-24 03:16:08 -08003109 *
3110 * If we are in_interrupt, then process context, including cpusets and
3111 * mempolicy, may not apply and should not be used for allocation policy.
3112 */
3113static void *alternate_node_alloc(struct kmem_cache *cachep, gfp_t flags)
3114{
3115 int nid_alloc, nid_here;
3116
Christoph Lameter765c4502006-09-27 01:50:08 -07003117 if (in_interrupt() || (flags & __GFP_THISNODE))
Paul Jacksonc61afb12006-03-24 03:16:08 -08003118 return NULL;
3119 nid_alloc = nid_here = numa_node_id();
3120 if (cpuset_do_slab_mem_spread() && (cachep->flags & SLAB_MEM_SPREAD))
3121 nid_alloc = cpuset_mem_spread_node();
3122 else if (current->mempolicy)
3123 nid_alloc = slab_node(current->mempolicy);
3124 if (nid_alloc != nid_here)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003125 return ____cache_alloc_node(cachep, flags, nid_alloc);
Paul Jacksonc61afb12006-03-24 03:16:08 -08003126 return NULL;
3127}
3128
3129/*
Christoph Lameter765c4502006-09-27 01:50:08 -07003130 * Fallback function if there was no memory available and no objects on a
Christoph Lameter3c517a62006-12-06 20:33:29 -08003131 * certain node and fall back is permitted. First we scan all the
3132 * available nodelists for available objects. If that fails then we
3133 * perform an allocation without specifying a node. This allows the page
3134 * allocator to do its reclaim / fallback magic. We then insert the
3135 * slab into the proper nodelist and then allocate from it.
Christoph Lameter765c4502006-09-27 01:50:08 -07003136 */
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003137static void *fallback_alloc(struct kmem_cache *cache, gfp_t flags)
Christoph Lameter765c4502006-09-27 01:50:08 -07003138{
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003139 struct zonelist *zonelist;
3140 gfp_t local_flags;
Mel Gormandd1a2392008-04-28 02:12:17 -07003141 struct zoneref *z;
Mel Gorman54a6eb52008-04-28 02:12:16 -07003142 struct zone *zone;
3143 enum zone_type high_zoneidx = gfp_zone(flags);
Christoph Lameter765c4502006-09-27 01:50:08 -07003144 void *obj = NULL;
Christoph Lameter3c517a62006-12-06 20:33:29 -08003145 int nid;
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003146
3147 if (flags & __GFP_THISNODE)
3148 return NULL;
3149
Mel Gorman0e884602008-04-28 02:12:14 -07003150 zonelist = node_zonelist(slab_node(current->mempolicy), flags);
Christoph Lameter6cb06222007-10-16 01:25:41 -07003151 local_flags = flags & (GFP_CONSTRAINT_MASK|GFP_RECLAIM_MASK);
Christoph Lameter765c4502006-09-27 01:50:08 -07003152
Christoph Lameter3c517a62006-12-06 20:33:29 -08003153retry:
3154 /*
3155 * Look through allowed nodes for objects available
3156 * from existing per node queues.
3157 */
Mel Gorman54a6eb52008-04-28 02:12:16 -07003158 for_each_zone_zonelist(zone, z, zonelist, high_zoneidx) {
3159 nid = zone_to_nid(zone);
Christoph Lameteraedb0eb2006-10-21 10:24:16 -07003160
Mel Gorman54a6eb52008-04-28 02:12:16 -07003161 if (cpuset_zone_allowed_hardwall(zone, flags) &&
Christoph Lameter3c517a62006-12-06 20:33:29 -08003162 cache->nodelists[nid] &&
Christoph Lameter481c5342008-06-21 16:46:35 -07003163 cache->nodelists[nid]->free_objects) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003164 obj = ____cache_alloc_node(cache,
3165 flags | GFP_THISNODE, nid);
Christoph Lameter481c5342008-06-21 16:46:35 -07003166 if (obj)
3167 break;
3168 }
Christoph Lameter3c517a62006-12-06 20:33:29 -08003169 }
3170
Christoph Lametercfce6602007-05-06 14:50:17 -07003171 if (!obj) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003172 /*
3173 * This allocation will be performed within the constraints
3174 * of the current cpuset / memory policy requirements.
3175 * We may trigger various forms of reclaim on the allowed
3176 * set and go into memory reserves if necessary.
3177 */
Christoph Lameterdd47ea72006-12-13 00:34:11 -08003178 if (local_flags & __GFP_WAIT)
3179 local_irq_enable();
3180 kmem_flagcheck(cache, flags);
Christoph Lameter9ac33b22008-03-04 12:24:22 -08003181 obj = kmem_getpages(cache, local_flags, -1);
Christoph Lameterdd47ea72006-12-13 00:34:11 -08003182 if (local_flags & __GFP_WAIT)
3183 local_irq_disable();
Christoph Lameter3c517a62006-12-06 20:33:29 -08003184 if (obj) {
3185 /*
3186 * Insert into the appropriate per node queues
3187 */
3188 nid = page_to_nid(virt_to_page(obj));
3189 if (cache_grow(cache, flags, nid, obj)) {
3190 obj = ____cache_alloc_node(cache,
3191 flags | GFP_THISNODE, nid);
3192 if (!obj)
3193 /*
3194 * Another processor may allocate the
3195 * objects in the slab since we are
3196 * not holding any locks.
3197 */
3198 goto retry;
3199 } else {
Hugh Dickinsb6a60452007-01-05 16:36:36 -08003200 /* cache_grow already freed obj */
Christoph Lameter3c517a62006-12-06 20:33:29 -08003201 obj = NULL;
3202 }
3203 }
Christoph Lameteraedb0eb2006-10-21 10:24:16 -07003204 }
Christoph Lameter765c4502006-09-27 01:50:08 -07003205 return obj;
3206}
3207
3208/*
Christoph Lametere498be72005-09-09 13:03:32 -07003209 * A interface to enable slab creation on nodeid
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210 */
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003211static void *____cache_alloc_node(struct kmem_cache *cachep, gfp_t flags,
Andrew Mortona737b3e2006-03-22 00:08:11 -08003212 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07003213{
3214 struct list_head *entry;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003215 struct slab *slabp;
3216 struct kmem_list3 *l3;
3217 void *obj;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003218 int x;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003219
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003220 l3 = cachep->nodelists[nodeid];
3221 BUG_ON(!l3);
Christoph Lametere498be72005-09-09 13:03:32 -07003222
Andrew Mortona737b3e2006-03-22 00:08:11 -08003223retry:
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08003224 check_irq_off();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003225 spin_lock(&l3->list_lock);
3226 entry = l3->slabs_partial.next;
3227 if (entry == &l3->slabs_partial) {
3228 l3->free_touched = 1;
3229 entry = l3->slabs_free.next;
3230 if (entry == &l3->slabs_free)
3231 goto must_grow;
3232 }
Christoph Lametere498be72005-09-09 13:03:32 -07003233
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003234 slabp = list_entry(entry, struct slab, list);
3235 check_spinlock_acquired_node(cachep, nodeid);
3236 check_slabp(cachep, slabp);
Christoph Lametere498be72005-09-09 13:03:32 -07003237
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003238 STATS_INC_NODEALLOCS(cachep);
3239 STATS_INC_ACTIVE(cachep);
3240 STATS_SET_HIGH(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003241
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003242 BUG_ON(slabp->inuse == cachep->num);
Christoph Lametere498be72005-09-09 13:03:32 -07003243
Matthew Dobson78d382d2006-02-01 03:05:47 -08003244 obj = slab_get_obj(cachep, slabp, nodeid);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003245 check_slabp(cachep, slabp);
3246 l3->free_objects--;
3247 /* move slabp to correct slabp list: */
3248 list_del(&slabp->list);
Christoph Lametere498be72005-09-09 13:03:32 -07003249
Andrew Mortona737b3e2006-03-22 00:08:11 -08003250 if (slabp->free == BUFCTL_END)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003251 list_add(&slabp->list, &l3->slabs_full);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003252 else
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003253 list_add(&slabp->list, &l3->slabs_partial);
Christoph Lametere498be72005-09-09 13:03:32 -07003254
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003255 spin_unlock(&l3->list_lock);
3256 goto done;
Christoph Lametere498be72005-09-09 13:03:32 -07003257
Andrew Mortona737b3e2006-03-22 00:08:11 -08003258must_grow:
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003259 spin_unlock(&l3->list_lock);
Christoph Lameter3c517a62006-12-06 20:33:29 -08003260 x = cache_grow(cachep, flags | GFP_THISNODE, nodeid, NULL);
Christoph Lameter765c4502006-09-27 01:50:08 -07003261 if (x)
3262 goto retry;
Christoph Lametere498be72005-09-09 13:03:32 -07003263
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003264 return fallback_alloc(cachep, flags);
Christoph Lameter765c4502006-09-27 01:50:08 -07003265
Andrew Mortona737b3e2006-03-22 00:08:11 -08003266done:
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003267 return obj;
Christoph Lametere498be72005-09-09 13:03:32 -07003268}
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003269
3270/**
3271 * kmem_cache_alloc_node - Allocate an object on the specified node
3272 * @cachep: The cache to allocate from.
3273 * @flags: See kmalloc().
3274 * @nodeid: node number of the target node.
3275 * @caller: return address of caller, used for debug information
3276 *
3277 * Identical to kmem_cache_alloc but it will allocate memory on the given
3278 * node, which can improve the performance for cpu bound structures.
3279 *
3280 * Fallback to other node is possible if __GFP_THISNODE is not set.
3281 */
3282static __always_inline void *
3283__cache_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid,
3284 void *caller)
3285{
3286 unsigned long save_flags;
3287 void *ptr;
3288
Nick Piggincf40bd12009-01-21 08:12:39 +01003289 lockdep_trace_alloc(flags);
3290
Akinobu Mita773ff602008-12-23 19:37:01 +09003291 if (slab_should_failslab(cachep, flags))
Akinobu Mita824ebef2007-05-06 14:49:58 -07003292 return NULL;
3293
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003294 cache_alloc_debugcheck_before(cachep, flags);
3295 local_irq_save(save_flags);
3296
3297 if (unlikely(nodeid == -1))
3298 nodeid = numa_node_id();
3299
3300 if (unlikely(!cachep->nodelists[nodeid])) {
3301 /* Node not bootstrapped yet */
3302 ptr = fallback_alloc(cachep, flags);
3303 goto out;
3304 }
3305
3306 if (nodeid == numa_node_id()) {
3307 /*
3308 * Use the locally cached objects if possible.
3309 * However ____cache_alloc does not allow fallback
3310 * to other nodes. It may fail while we still have
3311 * objects on other nodes available.
3312 */
3313 ptr = ____cache_alloc(cachep, flags);
3314 if (ptr)
3315 goto out;
3316 }
3317 /* ___cache_alloc_node can fall back to other nodes */
3318 ptr = ____cache_alloc_node(cachep, flags, nodeid);
3319 out:
3320 local_irq_restore(save_flags);
3321 ptr = cache_alloc_debugcheck_after(cachep, flags, ptr, caller);
Catalin Marinasd5cff632009-06-11 13:22:40 +01003322 kmemleak_alloc_recursive(ptr, obj_size(cachep), 1, cachep->flags,
3323 flags);
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003324
Pekka Enbergc175eea2008-05-09 20:35:53 +02003325 if (likely(ptr))
3326 kmemcheck_slab_alloc(cachep, flags, ptr, obj_size(cachep));
3327
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003328 if (unlikely((flags & __GFP_ZERO) && ptr))
3329 memset(ptr, 0, obj_size(cachep));
3330
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003331 return ptr;
3332}
3333
3334static __always_inline void *
3335__do_cache_alloc(struct kmem_cache *cache, gfp_t flags)
3336{
3337 void *objp;
3338
3339 if (unlikely(current->flags & (PF_SPREAD_SLAB | PF_MEMPOLICY))) {
3340 objp = alternate_node_alloc(cache, flags);
3341 if (objp)
3342 goto out;
3343 }
3344 objp = ____cache_alloc(cache, flags);
3345
3346 /*
3347 * We may just have run out of memory on the local node.
3348 * ____cache_alloc_node() knows how to locate memory on other nodes
3349 */
3350 if (!objp)
3351 objp = ____cache_alloc_node(cache, flags, numa_node_id());
3352
3353 out:
3354 return objp;
3355}
3356#else
3357
3358static __always_inline void *
3359__do_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
3360{
3361 return ____cache_alloc(cachep, flags);
3362}
3363
3364#endif /* CONFIG_NUMA */
3365
3366static __always_inline void *
3367__cache_alloc(struct kmem_cache *cachep, gfp_t flags, void *caller)
3368{
3369 unsigned long save_flags;
3370 void *objp;
3371
Nick Piggincf40bd12009-01-21 08:12:39 +01003372 lockdep_trace_alloc(flags);
3373
Akinobu Mita773ff602008-12-23 19:37:01 +09003374 if (slab_should_failslab(cachep, flags))
Akinobu Mita824ebef2007-05-06 14:49:58 -07003375 return NULL;
3376
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003377 cache_alloc_debugcheck_before(cachep, flags);
3378 local_irq_save(save_flags);
3379 objp = __do_cache_alloc(cachep, flags);
3380 local_irq_restore(save_flags);
3381 objp = cache_alloc_debugcheck_after(cachep, flags, objp, caller);
Catalin Marinasd5cff632009-06-11 13:22:40 +01003382 kmemleak_alloc_recursive(objp, obj_size(cachep), 1, cachep->flags,
3383 flags);
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003384 prefetchw(objp);
3385
Pekka Enbergc175eea2008-05-09 20:35:53 +02003386 if (likely(objp))
3387 kmemcheck_slab_alloc(cachep, flags, objp, obj_size(cachep));
3388
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003389 if (unlikely((flags & __GFP_ZERO) && objp))
3390 memset(objp, 0, obj_size(cachep));
3391
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003392 return objp;
3393}
Christoph Lametere498be72005-09-09 13:03:32 -07003394
3395/*
3396 * Caller needs to acquire correct kmem_list's list_lock
3397 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003398static void free_block(struct kmem_cache *cachep, void **objpp, int nr_objects,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003399 int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400{
3401 int i;
Christoph Lametere498be72005-09-09 13:03:32 -07003402 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403
3404 for (i = 0; i < nr_objects; i++) {
3405 void *objp = objpp[i];
3406 struct slab *slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08003408 slabp = virt_to_slab(objp);
Christoph Lameterff694162005-09-22 21:44:02 -07003409 l3 = cachep->nodelists[node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410 list_del(&slabp->list);
Christoph Lameterff694162005-09-22 21:44:02 -07003411 check_spinlock_acquired_node(cachep, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412 check_slabp(cachep, slabp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08003413 slab_put_obj(cachep, slabp, objp, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414 STATS_DEC_ACTIVE(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003415 l3->free_objects++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416 check_slabp(cachep, slabp);
3417
3418 /* fixup slab chains */
3419 if (slabp->inuse == 0) {
Christoph Lametere498be72005-09-09 13:03:32 -07003420 if (l3->free_objects > l3->free_limit) {
3421 l3->free_objects -= cachep->num;
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07003422 /* No need to drop any previously held
3423 * lock here, even if we have a off-slab slab
3424 * descriptor it is guaranteed to come from
3425 * a different cache, refer to comments before
3426 * alloc_slabmgmt.
3427 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428 slab_destroy(cachep, slabp);
3429 } else {
Christoph Lametere498be72005-09-09 13:03:32 -07003430 list_add(&slabp->list, &l3->slabs_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431 }
3432 } else {
3433 /* Unconditionally move a slab to the end of the
3434 * partial list on free - maximum time for the
3435 * other objects to be freed, too.
3436 */
Christoph Lametere498be72005-09-09 13:03:32 -07003437 list_add_tail(&slabp->list, &l3->slabs_partial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438 }
3439 }
3440}
3441
Pekka Enberg343e0d72006-02-01 03:05:50 -08003442static void cache_flusharray(struct kmem_cache *cachep, struct array_cache *ac)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003443{
3444 int batchcount;
Christoph Lametere498be72005-09-09 13:03:32 -07003445 struct kmem_list3 *l3;
Christoph Lameterff694162005-09-22 21:44:02 -07003446 int node = numa_node_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447
3448 batchcount = ac->batchcount;
3449#if DEBUG
3450 BUG_ON(!batchcount || batchcount > ac->avail);
3451#endif
3452 check_irq_off();
Christoph Lameterff694162005-09-22 21:44:02 -07003453 l3 = cachep->nodelists[node];
Ingo Molnar873623d2006-07-13 14:44:38 +02003454 spin_lock(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07003455 if (l3->shared) {
3456 struct array_cache *shared_array = l3->shared;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003457 int max = shared_array->limit - shared_array->avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003458 if (max) {
3459 if (batchcount > max)
3460 batchcount = max;
Christoph Lametere498be72005-09-09 13:03:32 -07003461 memcpy(&(shared_array->entry[shared_array->avail]),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003462 ac->entry, sizeof(void *) * batchcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463 shared_array->avail += batchcount;
3464 goto free_done;
3465 }
3466 }
3467
Christoph Lameterff694162005-09-22 21:44:02 -07003468 free_block(cachep, ac->entry, batchcount, node);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003469free_done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470#if STATS
3471 {
3472 int i = 0;
3473 struct list_head *p;
3474
Christoph Lametere498be72005-09-09 13:03:32 -07003475 p = l3->slabs_free.next;
3476 while (p != &(l3->slabs_free)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003477 struct slab *slabp;
3478
3479 slabp = list_entry(p, struct slab, list);
3480 BUG_ON(slabp->inuse);
3481
3482 i++;
3483 p = p->next;
3484 }
3485 STATS_SET_FREEABLE(cachep, i);
3486 }
3487#endif
Christoph Lametere498be72005-09-09 13:03:32 -07003488 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489 ac->avail -= batchcount;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003490 memmove(ac->entry, &(ac->entry[batchcount]), sizeof(void *)*ac->avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491}
3492
3493/*
Andrew Mortona737b3e2006-03-22 00:08:11 -08003494 * Release an obj back to its cache. If the obj has a constructed state, it must
3495 * be in this state _before_ it is released. Called with disabled ints.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003496 */
Ingo Molnar873623d2006-07-13 14:44:38 +02003497static inline void __cache_free(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498{
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003499 struct array_cache *ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500
3501 check_irq_off();
Catalin Marinasd5cff632009-06-11 13:22:40 +01003502 kmemleak_free_recursive(objp, cachep->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503 objp = cache_free_debugcheck(cachep, objp, __builtin_return_address(0));
3504
Pekka Enbergc175eea2008-05-09 20:35:53 +02003505 kmemcheck_slab_free(cachep, objp, obj_size(cachep));
3506
Siddha, Suresh B1807a1a2007-08-22 14:01:49 -07003507 /*
3508 * Skip calling cache_free_alien() when the platform is not numa.
3509 * This will avoid cache misses that happen while accessing slabp (which
3510 * is per page memory reference) to get nodeid. Instead use a global
3511 * variable to skip the call, which is mostly likely to be present in
3512 * the cache.
3513 */
3514 if (numa_platform && cache_free_alien(cachep, objp))
Pekka Enberg729bd0b2006-06-23 02:03:05 -07003515 return;
Christoph Lametere498be72005-09-09 13:03:32 -07003516
Linus Torvalds1da177e2005-04-16 15:20:36 -07003517 if (likely(ac->avail < ac->limit)) {
3518 STATS_INC_FREEHIT(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003519 ac->entry[ac->avail++] = objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520 return;
3521 } else {
3522 STATS_INC_FREEMISS(cachep);
3523 cache_flusharray(cachep, ac);
Christoph Lametere498be72005-09-09 13:03:32 -07003524 ac->entry[ac->avail++] = objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003525 }
3526}
3527
3528/**
3529 * kmem_cache_alloc - Allocate an object
3530 * @cachep: The cache to allocate from.
3531 * @flags: See kmalloc().
3532 *
3533 * Allocate an object from this cache. The flags are only relevant
3534 * if the cache has no available objects.
3535 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003536void *kmem_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537{
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003538 void *ret = __cache_alloc(cachep, flags, __builtin_return_address(0));
3539
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003540 trace_kmem_cache_alloc(_RET_IP_, ret,
3541 obj_size(cachep), cachep->buffer_size, flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003542
3543 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544}
3545EXPORT_SYMBOL(kmem_cache_alloc);
3546
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003547#ifdef CONFIG_KMEMTRACE
3548void *kmem_cache_alloc_notrace(struct kmem_cache *cachep, gfp_t flags)
3549{
3550 return __cache_alloc(cachep, flags, __builtin_return_address(0));
3551}
3552EXPORT_SYMBOL(kmem_cache_alloc_notrace);
3553#endif
3554
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555/**
Randy Dunlap76824862008-03-19 17:00:40 -07003556 * kmem_ptr_validate - check if an untrusted pointer might be a slab entry.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557 * @cachep: the cache we're checking against
3558 * @ptr: pointer to validate
3559 *
Randy Dunlap76824862008-03-19 17:00:40 -07003560 * This verifies that the untrusted pointer looks sane;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003561 * it is _not_ a guarantee that the pointer is actually
3562 * part of the slab cache in question, but it at least
3563 * validates that the pointer can be dereferenced and
3564 * looks half-way sane.
3565 *
3566 * Currently only used for dentry validation.
3567 */
Christoph Lameterb7f869a2006-12-22 01:06:44 -08003568int kmem_ptr_validate(struct kmem_cache *cachep, const void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003569{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003570 unsigned long addr = (unsigned long)ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003571 unsigned long min_addr = PAGE_OFFSET;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003572 unsigned long align_mask = BYTES_PER_WORD - 1;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003573 unsigned long size = cachep->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003574 struct page *page;
3575
3576 if (unlikely(addr < min_addr))
3577 goto out;
3578 if (unlikely(addr > (unsigned long)high_memory - size))
3579 goto out;
3580 if (unlikely(addr & align_mask))
3581 goto out;
3582 if (unlikely(!kern_addr_valid(addr)))
3583 goto out;
3584 if (unlikely(!kern_addr_valid(addr + size - 1)))
3585 goto out;
3586 page = virt_to_page(ptr);
3587 if (unlikely(!PageSlab(page)))
3588 goto out;
Pekka Enberg065d41c2005-11-13 16:06:46 -08003589 if (unlikely(page_get_cache(page) != cachep))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590 goto out;
3591 return 1;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003592out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593 return 0;
3594}
3595
3596#ifdef CONFIG_NUMA
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003597void *kmem_cache_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid)
3598{
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003599 void *ret = __cache_alloc_node(cachep, flags, nodeid,
3600 __builtin_return_address(0));
3601
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003602 trace_kmem_cache_alloc_node(_RET_IP_, ret,
3603 obj_size(cachep), cachep->buffer_size,
3604 flags, nodeid);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003605
3606 return ret;
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003607}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003608EXPORT_SYMBOL(kmem_cache_alloc_node);
3609
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003610#ifdef CONFIG_KMEMTRACE
3611void *kmem_cache_alloc_node_notrace(struct kmem_cache *cachep,
3612 gfp_t flags,
3613 int nodeid)
3614{
3615 return __cache_alloc_node(cachep, flags, nodeid,
3616 __builtin_return_address(0));
3617}
3618EXPORT_SYMBOL(kmem_cache_alloc_node_notrace);
3619#endif
3620
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003621static __always_inline void *
3622__do_kmalloc_node(size_t size, gfp_t flags, int node, void *caller)
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003623{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003624 struct kmem_cache *cachep;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003625 void *ret;
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003626
3627 cachep = kmem_find_general_cachep(size, flags);
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003628 if (unlikely(ZERO_OR_NULL_PTR(cachep)))
3629 return cachep;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003630 ret = kmem_cache_alloc_node_notrace(cachep, flags, node);
3631
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003632 trace_kmalloc_node((unsigned long) caller, ret,
3633 size, cachep->buffer_size, flags, node);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003634
3635 return ret;
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003636}
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003637
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003638#if defined(CONFIG_DEBUG_SLAB) || defined(CONFIG_KMEMTRACE)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003639void *__kmalloc_node(size_t size, gfp_t flags, int node)
3640{
3641 return __do_kmalloc_node(size, flags, node,
3642 __builtin_return_address(0));
3643}
Christoph Hellwigdbe5e692006-09-25 23:31:36 -07003644EXPORT_SYMBOL(__kmalloc_node);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003645
3646void *__kmalloc_node_track_caller(size_t size, gfp_t flags,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003647 int node, unsigned long caller)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003648{
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003649 return __do_kmalloc_node(size, flags, node, (void *)caller);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003650}
3651EXPORT_SYMBOL(__kmalloc_node_track_caller);
3652#else
3653void *__kmalloc_node(size_t size, gfp_t flags, int node)
3654{
3655 return __do_kmalloc_node(size, flags, node, NULL);
3656}
3657EXPORT_SYMBOL(__kmalloc_node);
3658#endif /* CONFIG_DEBUG_SLAB */
3659#endif /* CONFIG_NUMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660
3661/**
Paul Drynoff800590f2006-06-23 02:03:48 -07003662 * __do_kmalloc - allocate memory
Linus Torvalds1da177e2005-04-16 15:20:36 -07003663 * @size: how many bytes of memory are required.
Paul Drynoff800590f2006-06-23 02:03:48 -07003664 * @flags: the type of memory to allocate (see kmalloc).
Randy Dunlap911851e2006-03-22 00:08:14 -08003665 * @caller: function caller for debug tracking of the caller
Linus Torvalds1da177e2005-04-16 15:20:36 -07003666 */
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003667static __always_inline void *__do_kmalloc(size_t size, gfp_t flags,
3668 void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003669{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003670 struct kmem_cache *cachep;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003671 void *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003672
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003673 /* If you want to save a few bytes .text space: replace
3674 * __ with kmem_.
3675 * Then kmalloc uses the uninlined functions instead of the inline
3676 * functions.
3677 */
3678 cachep = __find_general_cachep(size, flags);
Linus Torvaldsa5c96d82007-07-19 13:17:15 -07003679 if (unlikely(ZERO_OR_NULL_PTR(cachep)))
3680 return cachep;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003681 ret = __cache_alloc(cachep, flags, caller);
3682
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003683 trace_kmalloc((unsigned long) caller, ret,
3684 size, cachep->buffer_size, flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003685
3686 return ret;
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003687}
3688
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003689
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003690#if defined(CONFIG_DEBUG_SLAB) || defined(CONFIG_KMEMTRACE)
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003691void *__kmalloc(size_t size, gfp_t flags)
3692{
Al Viro871751e2006-03-25 03:06:39 -08003693 return __do_kmalloc(size, flags, __builtin_return_address(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003694}
3695EXPORT_SYMBOL(__kmalloc);
3696
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003697void *__kmalloc_track_caller(size_t size, gfp_t flags, unsigned long caller)
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003698{
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003699 return __do_kmalloc(size, flags, (void *)caller);
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003700}
3701EXPORT_SYMBOL(__kmalloc_track_caller);
Christoph Hellwig1d2c8ee2006-10-04 02:15:25 -07003702
3703#else
3704void *__kmalloc(size_t size, gfp_t flags)
3705{
3706 return __do_kmalloc(size, flags, NULL);
3707}
3708EXPORT_SYMBOL(__kmalloc);
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003709#endif
3710
Linus Torvalds1da177e2005-04-16 15:20:36 -07003711/**
3712 * kmem_cache_free - Deallocate an object
3713 * @cachep: The cache the allocation was from.
3714 * @objp: The previously allocated object.
3715 *
3716 * Free an object which was previously allocated from this
3717 * cache.
3718 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003719void kmem_cache_free(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720{
3721 unsigned long flags;
3722
3723 local_irq_save(flags);
Ingo Molnar898552c2007-02-10 01:44:57 -08003724 debug_check_no_locks_freed(objp, obj_size(cachep));
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -07003725 if (!(cachep->flags & SLAB_DEBUG_OBJECTS))
3726 debug_check_no_obj_freed(objp, obj_size(cachep));
Ingo Molnar873623d2006-07-13 14:44:38 +02003727 __cache_free(cachep, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003728 local_irq_restore(flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003729
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003730 trace_kmem_cache_free(_RET_IP_, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731}
3732EXPORT_SYMBOL(kmem_cache_free);
3733
3734/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003735 * kfree - free previously allocated memory
3736 * @objp: pointer returned by kmalloc.
3737 *
Pekka Enberg80e93ef2005-09-09 13:10:16 -07003738 * If @objp is NULL, no operation is performed.
3739 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003740 * Don't free memory not originally allocated by kmalloc()
3741 * or you will run into trouble.
3742 */
3743void kfree(const void *objp)
3744{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003745 struct kmem_cache *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003746 unsigned long flags;
3747
Pekka Enberg2121db72009-03-25 11:05:57 +02003748 trace_kfree(_RET_IP_, objp);
3749
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003750 if (unlikely(ZERO_OR_NULL_PTR(objp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003751 return;
3752 local_irq_save(flags);
3753 kfree_debugcheck(objp);
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08003754 c = virt_to_cache(objp);
Ingo Molnarf9b84042006-06-27 02:54:49 -07003755 debug_check_no_locks_freed(objp, obj_size(c));
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -07003756 debug_check_no_obj_freed(objp, obj_size(c));
Ingo Molnar873623d2006-07-13 14:44:38 +02003757 __cache_free(c, (void *)objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003758 local_irq_restore(flags);
3759}
3760EXPORT_SYMBOL(kfree);
3761
Pekka Enberg343e0d72006-02-01 03:05:50 -08003762unsigned int kmem_cache_size(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003763{
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003764 return obj_size(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003765}
3766EXPORT_SYMBOL(kmem_cache_size);
3767
Pekka Enberg343e0d72006-02-01 03:05:50 -08003768const char *kmem_cache_name(struct kmem_cache *cachep)
Arnaldo Carvalho de Melo19449722005-06-18 22:46:19 -07003769{
3770 return cachep->name;
3771}
3772EXPORT_SYMBOL_GPL(kmem_cache_name);
3773
Christoph Lametere498be72005-09-09 13:03:32 -07003774/*
Simon Arlott183ff222007-10-20 01:27:18 +02003775 * This initializes kmem_list3 or resizes various caches for all nodes.
Christoph Lametere498be72005-09-09 13:03:32 -07003776 */
Pekka Enberg83b519e2009-06-10 19:40:04 +03003777static int alloc_kmemlist(struct kmem_cache *cachep, gfp_t gfp)
Christoph Lametere498be72005-09-09 13:03:32 -07003778{
3779 int node;
3780 struct kmem_list3 *l3;
Christoph Lametercafeb022006-03-25 03:06:46 -08003781 struct array_cache *new_shared;
Paul Menage3395ee02006-12-06 20:32:16 -08003782 struct array_cache **new_alien = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07003783
Mel Gorman9c09a952008-01-24 05:49:54 -08003784 for_each_online_node(node) {
Christoph Lametercafeb022006-03-25 03:06:46 -08003785
Paul Menage3395ee02006-12-06 20:32:16 -08003786 if (use_alien_caches) {
Pekka Enberg83b519e2009-06-10 19:40:04 +03003787 new_alien = alloc_alien_cache(node, cachep->limit, gfp);
Paul Menage3395ee02006-12-06 20:32:16 -08003788 if (!new_alien)
3789 goto fail;
3790 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003791
Eric Dumazet63109842007-05-06 14:49:28 -07003792 new_shared = NULL;
3793 if (cachep->shared) {
3794 new_shared = alloc_arraycache(node,
Christoph Lameter0718dc22006-03-25 03:06:47 -08003795 cachep->shared*cachep->batchcount,
Pekka Enberg83b519e2009-06-10 19:40:04 +03003796 0xbaadf00d, gfp);
Eric Dumazet63109842007-05-06 14:49:28 -07003797 if (!new_shared) {
3798 free_alien_cache(new_alien);
3799 goto fail;
3800 }
Christoph Lameter0718dc22006-03-25 03:06:47 -08003801 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003802
Andrew Mortona737b3e2006-03-22 00:08:11 -08003803 l3 = cachep->nodelists[node];
3804 if (l3) {
Christoph Lametercafeb022006-03-25 03:06:46 -08003805 struct array_cache *shared = l3->shared;
3806
Christoph Lametere498be72005-09-09 13:03:32 -07003807 spin_lock_irq(&l3->list_lock);
3808
Christoph Lametercafeb022006-03-25 03:06:46 -08003809 if (shared)
Christoph Lameter0718dc22006-03-25 03:06:47 -08003810 free_block(cachep, shared->entry,
3811 shared->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -07003812
Christoph Lametercafeb022006-03-25 03:06:46 -08003813 l3->shared = new_shared;
3814 if (!l3->alien) {
Christoph Lametere498be72005-09-09 13:03:32 -07003815 l3->alien = new_alien;
3816 new_alien = NULL;
3817 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003818 l3->free_limit = (1 + nr_cpus_node(node)) *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003819 cachep->batchcount + cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07003820 spin_unlock_irq(&l3->list_lock);
Christoph Lametercafeb022006-03-25 03:06:46 -08003821 kfree(shared);
Christoph Lametere498be72005-09-09 13:03:32 -07003822 free_alien_cache(new_alien);
3823 continue;
3824 }
Pekka Enberg83b519e2009-06-10 19:40:04 +03003825 l3 = kmalloc_node(sizeof(struct kmem_list3), gfp, node);
Christoph Lameter0718dc22006-03-25 03:06:47 -08003826 if (!l3) {
3827 free_alien_cache(new_alien);
3828 kfree(new_shared);
Christoph Lametere498be72005-09-09 13:03:32 -07003829 goto fail;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003830 }
Christoph Lametere498be72005-09-09 13:03:32 -07003831
3832 kmem_list3_init(l3);
3833 l3->next_reap = jiffies + REAPTIMEOUT_LIST3 +
Andrew Mortona737b3e2006-03-22 00:08:11 -08003834 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
Christoph Lametercafeb022006-03-25 03:06:46 -08003835 l3->shared = new_shared;
Christoph Lametere498be72005-09-09 13:03:32 -07003836 l3->alien = new_alien;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003837 l3->free_limit = (1 + nr_cpus_node(node)) *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003838 cachep->batchcount + cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07003839 cachep->nodelists[node] = l3;
3840 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003841 return 0;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003842
Andrew Mortona737b3e2006-03-22 00:08:11 -08003843fail:
Christoph Lameter0718dc22006-03-25 03:06:47 -08003844 if (!cachep->next.next) {
3845 /* Cache is not active yet. Roll back what we did */
3846 node--;
3847 while (node >= 0) {
3848 if (cachep->nodelists[node]) {
3849 l3 = cachep->nodelists[node];
3850
3851 kfree(l3->shared);
3852 free_alien_cache(l3->alien);
3853 kfree(l3);
3854 cachep->nodelists[node] = NULL;
3855 }
3856 node--;
3857 }
3858 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003859 return -ENOMEM;
Christoph Lametere498be72005-09-09 13:03:32 -07003860}
3861
Linus Torvalds1da177e2005-04-16 15:20:36 -07003862struct ccupdate_struct {
Pekka Enberg343e0d72006-02-01 03:05:50 -08003863 struct kmem_cache *cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003864 struct array_cache *new[NR_CPUS];
3865};
3866
3867static void do_ccupdate_local(void *info)
3868{
Andrew Mortona737b3e2006-03-22 00:08:11 -08003869 struct ccupdate_struct *new = info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003870 struct array_cache *old;
3871
3872 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003873 old = cpu_cache_get(new->cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003874
Linus Torvalds1da177e2005-04-16 15:20:36 -07003875 new->cachep->array[smp_processor_id()] = new->new[smp_processor_id()];
3876 new->new[smp_processor_id()] = old;
3877}
3878
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -08003879/* Always called with the cache_chain_mutex held */
Andrew Mortona737b3e2006-03-22 00:08:11 -08003880static int do_tune_cpucache(struct kmem_cache *cachep, int limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03003881 int batchcount, int shared, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882{
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003883 struct ccupdate_struct *new;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07003884 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003885
Pekka Enberg83b519e2009-06-10 19:40:04 +03003886 new = kzalloc(sizeof(*new), gfp);
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003887 if (!new)
3888 return -ENOMEM;
3889
Christoph Lametere498be72005-09-09 13:03:32 -07003890 for_each_online_cpu(i) {
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003891 new->new[i] = alloc_arraycache(cpu_to_node(i), limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03003892 batchcount, gfp);
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003893 if (!new->new[i]) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003894 for (i--; i >= 0; i--)
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003895 kfree(new->new[i]);
3896 kfree(new);
Christoph Lametere498be72005-09-09 13:03:32 -07003897 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898 }
3899 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003900 new->cachep = cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901
Jens Axboe15c8b6c2008-05-09 09:39:44 +02003902 on_each_cpu(do_ccupdate_local, (void *)new, 1);
Christoph Lametere498be72005-09-09 13:03:32 -07003903
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904 check_irq_on();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905 cachep->batchcount = batchcount;
3906 cachep->limit = limit;
Christoph Lametere498be72005-09-09 13:03:32 -07003907 cachep->shared = shared;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003908
Christoph Lametere498be72005-09-09 13:03:32 -07003909 for_each_online_cpu(i) {
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003910 struct array_cache *ccold = new->new[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911 if (!ccold)
3912 continue;
Christoph Lametere498be72005-09-09 13:03:32 -07003913 spin_lock_irq(&cachep->nodelists[cpu_to_node(i)]->list_lock);
Christoph Lameterff694162005-09-22 21:44:02 -07003914 free_block(cachep, ccold->entry, ccold->avail, cpu_to_node(i));
Christoph Lametere498be72005-09-09 13:03:32 -07003915 spin_unlock_irq(&cachep->nodelists[cpu_to_node(i)]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003916 kfree(ccold);
3917 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003918 kfree(new);
Pekka Enberg83b519e2009-06-10 19:40:04 +03003919 return alloc_kmemlist(cachep, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003920}
3921
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -08003922/* Called with cache_chain_mutex held always */
Pekka Enberg83b519e2009-06-10 19:40:04 +03003923static int enable_cpucache(struct kmem_cache *cachep, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003924{
3925 int err;
3926 int limit, shared;
3927
Andrew Mortona737b3e2006-03-22 00:08:11 -08003928 /*
3929 * The head array serves three purposes:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930 * - create a LIFO ordering, i.e. return objects that are cache-warm
3931 * - reduce the number of spinlock operations.
Andrew Mortona737b3e2006-03-22 00:08:11 -08003932 * - reduce the number of linked list operations on the slab and
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933 * bufctl chains: array operations are cheaper.
3934 * The numbers are guessed, we should auto-tune as described by
3935 * Bonwick.
3936 */
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003937 if (cachep->buffer_size > 131072)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003938 limit = 1;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003939 else if (cachep->buffer_size > PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940 limit = 8;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003941 else if (cachep->buffer_size > 1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942 limit = 24;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003943 else if (cachep->buffer_size > 256)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003944 limit = 54;
3945 else
3946 limit = 120;
3947
Andrew Mortona737b3e2006-03-22 00:08:11 -08003948 /*
3949 * CPU bound tasks (e.g. network routing) can exhibit cpu bound
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950 * allocation behaviour: Most allocs on one cpu, most free operations
3951 * on another cpu. For these cases, an efficient object passing between
3952 * cpus is necessary. This is provided by a shared array. The array
3953 * replaces Bonwick's magazine layer.
3954 * On uniprocessor, it's functionally equivalent (but less efficient)
3955 * to a larger limit. Thus disabled by default.
3956 */
3957 shared = 0;
Eric Dumazet364fbb22007-05-06 14:49:27 -07003958 if (cachep->buffer_size <= PAGE_SIZE && num_possible_cpus() > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003959 shared = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960
3961#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08003962 /*
3963 * With debugging enabled, large batchcount lead to excessively long
3964 * periods with disabled local interrupts. Limit the batchcount
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965 */
3966 if (limit > 32)
3967 limit = 32;
3968#endif
Pekka Enberg83b519e2009-06-10 19:40:04 +03003969 err = do_tune_cpucache(cachep, limit, (limit + 1) / 2, shared, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003970 if (err)
3971 printk(KERN_ERR "enable_cpucache failed for %s, error %d.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003972 cachep->name, -err);
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07003973 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003974}
3975
Christoph Lameter1b552532006-03-22 00:09:07 -08003976/*
3977 * Drain an array if it contains any elements taking the l3 lock only if
Christoph Lameterb18e7e62006-03-22 00:09:07 -08003978 * necessary. Note that the l3 listlock also protects the array_cache
3979 * if drain_array() is used on the shared array.
Christoph Lameter1b552532006-03-22 00:09:07 -08003980 */
3981void drain_array(struct kmem_cache *cachep, struct kmem_list3 *l3,
3982 struct array_cache *ac, int force, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003983{
3984 int tofree;
3985
Christoph Lameter1b552532006-03-22 00:09:07 -08003986 if (!ac || !ac->avail)
3987 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003988 if (ac->touched && !force) {
3989 ac->touched = 0;
Christoph Lameterb18e7e62006-03-22 00:09:07 -08003990 } else {
Christoph Lameter1b552532006-03-22 00:09:07 -08003991 spin_lock_irq(&l3->list_lock);
Christoph Lameterb18e7e62006-03-22 00:09:07 -08003992 if (ac->avail) {
3993 tofree = force ? ac->avail : (ac->limit + 4) / 5;
3994 if (tofree > ac->avail)
3995 tofree = (ac->avail + 1) / 2;
3996 free_block(cachep, ac->entry, tofree, node);
3997 ac->avail -= tofree;
3998 memmove(ac->entry, &(ac->entry[tofree]),
3999 sizeof(void *) * ac->avail);
4000 }
Christoph Lameter1b552532006-03-22 00:09:07 -08004001 spin_unlock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004002 }
4003}
4004
4005/**
4006 * cache_reap - Reclaim memory from caches.
Randy Dunlap05fb6bf2007-02-28 20:12:13 -08004007 * @w: work descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008 *
4009 * Called from workqueue/eventd every few seconds.
4010 * Purpose:
4011 * - clear the per-cpu caches for this CPU.
4012 * - return freeable pages to the main free memory pool.
4013 *
Andrew Mortona737b3e2006-03-22 00:08:11 -08004014 * If we cannot acquire the cache chain mutex then just give up - we'll try
4015 * again on the next iteration.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004016 */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004017static void cache_reap(struct work_struct *w)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004018{
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004019 struct kmem_cache *searchp;
Christoph Lametere498be72005-09-09 13:03:32 -07004020 struct kmem_list3 *l3;
Christoph Lameteraab22072006-03-22 00:09:06 -08004021 int node = numa_node_id();
Jean Delvarebf6aede2009-04-02 16:56:54 -07004022 struct delayed_work *work = to_delayed_work(w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004023
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004024 if (!mutex_trylock(&cache_chain_mutex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004025 /* Give up. Setup the next iteration. */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004026 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004027
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004028 list_for_each_entry(searchp, &cache_chain, next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029 check_irq_on();
4030
Christoph Lameter35386e32006-03-22 00:09:05 -08004031 /*
4032 * We only take the l3 lock if absolutely necessary and we
4033 * have established with reasonable certainty that
4034 * we can do some work if the lock was obtained.
4035 */
Christoph Lameteraab22072006-03-22 00:09:06 -08004036 l3 = searchp->nodelists[node];
Christoph Lameter35386e32006-03-22 00:09:05 -08004037
Christoph Lameter8fce4d82006-03-09 17:33:54 -08004038 reap_alien(searchp, l3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004039
Christoph Lameteraab22072006-03-22 00:09:06 -08004040 drain_array(searchp, l3, cpu_cache_get(searchp), 0, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041
Christoph Lameter35386e32006-03-22 00:09:05 -08004042 /*
4043 * These are racy checks but it does not matter
4044 * if we skip one check or scan twice.
4045 */
Christoph Lametere498be72005-09-09 13:03:32 -07004046 if (time_after(l3->next_reap, jiffies))
Christoph Lameter35386e32006-03-22 00:09:05 -08004047 goto next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004048
Christoph Lametere498be72005-09-09 13:03:32 -07004049 l3->next_reap = jiffies + REAPTIMEOUT_LIST3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004050
Christoph Lameteraab22072006-03-22 00:09:06 -08004051 drain_array(searchp, l3, l3->shared, 0, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004052
Christoph Lametered11d9e2006-06-30 01:55:45 -07004053 if (l3->free_touched)
Christoph Lametere498be72005-09-09 13:03:32 -07004054 l3->free_touched = 0;
Christoph Lametered11d9e2006-06-30 01:55:45 -07004055 else {
4056 int freed;
4057
4058 freed = drain_freelist(searchp, l3, (l3->free_limit +
4059 5 * searchp->num - 1) / (5 * searchp->num));
4060 STATS_ADD_REAPED(searchp, freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004061 }
Christoph Lameter35386e32006-03-22 00:09:05 -08004062next:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004063 cond_resched();
4064 }
4065 check_irq_on();
Ingo Molnarfc0abb12006-01-18 17:42:33 -08004066 mutex_unlock(&cache_chain_mutex);
Christoph Lameter8fce4d82006-03-09 17:33:54 -08004067 next_reap_node();
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004068out:
Andrew Mortona737b3e2006-03-22 00:08:11 -08004069 /* Set up the next iteration */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004070 schedule_delayed_work(work, round_jiffies_relative(REAPTIMEOUT_CPUC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004071}
4072
Linus Torvalds158a9622008-01-02 13:04:48 -08004073#ifdef CONFIG_SLABINFO
Linus Torvalds1da177e2005-04-16 15:20:36 -07004074
Pekka Enberg85289f92006-01-08 01:00:36 -08004075static void print_slabinfo_header(struct seq_file *m)
4076{
4077 /*
4078 * Output format version, so at least we can change it
4079 * without _too_ many complaints.
4080 */
4081#if STATS
4082 seq_puts(m, "slabinfo - version: 2.1 (statistics)\n");
4083#else
4084 seq_puts(m, "slabinfo - version: 2.1\n");
4085#endif
4086 seq_puts(m, "# name <active_objs> <num_objs> <objsize> "
4087 "<objperslab> <pagesperslab>");
4088 seq_puts(m, " : tunables <limit> <batchcount> <sharedfactor>");
4089 seq_puts(m, " : slabdata <active_slabs> <num_slabs> <sharedavail>");
4090#if STATS
4091 seq_puts(m, " : globalstat <listallocs> <maxobjs> <grown> <reaped> "
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -07004092 "<error> <maxfreeable> <nodeallocs> <remotefrees> <alienoverflow>");
Pekka Enberg85289f92006-01-08 01:00:36 -08004093 seq_puts(m, " : cpustat <allochit> <allocmiss> <freehit> <freemiss>");
4094#endif
4095 seq_putc(m, '\n');
4096}
4097
Linus Torvalds1da177e2005-04-16 15:20:36 -07004098static void *s_start(struct seq_file *m, loff_t *pos)
4099{
4100 loff_t n = *pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004101
Ingo Molnarfc0abb12006-01-18 17:42:33 -08004102 mutex_lock(&cache_chain_mutex);
Pekka Enberg85289f92006-01-08 01:00:36 -08004103 if (!n)
4104 print_slabinfo_header(m);
Pavel Emelianovb92151b2007-07-15 23:38:04 -07004105
4106 return seq_list_start(&cache_chain, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004107}
4108
4109static void *s_next(struct seq_file *m, void *p, loff_t *pos)
4110{
Pavel Emelianovb92151b2007-07-15 23:38:04 -07004111 return seq_list_next(p, &cache_chain, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004112}
4113
4114static void s_stop(struct seq_file *m, void *p)
4115{
Ingo Molnarfc0abb12006-01-18 17:42:33 -08004116 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004117}
4118
4119static int s_show(struct seq_file *m, void *p)
4120{
Pavel Emelianovb92151b2007-07-15 23:38:04 -07004121 struct kmem_cache *cachep = list_entry(p, struct kmem_cache, next);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004122 struct slab *slabp;
4123 unsigned long active_objs;
4124 unsigned long num_objs;
4125 unsigned long active_slabs = 0;
4126 unsigned long num_slabs, free_objects = 0, shared_avail = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07004127 const char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128 char *error = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07004129 int node;
4130 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004131
Linus Torvalds1da177e2005-04-16 15:20:36 -07004132 active_objs = 0;
4133 num_slabs = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07004134 for_each_online_node(node) {
4135 l3 = cachep->nodelists[node];
4136 if (!l3)
4137 continue;
4138
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08004139 check_irq_on();
4140 spin_lock_irq(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07004141
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004142 list_for_each_entry(slabp, &l3->slabs_full, list) {
Christoph Lametere498be72005-09-09 13:03:32 -07004143 if (slabp->inuse != cachep->num && !error)
4144 error = "slabs_full accounting error";
4145 active_objs += cachep->num;
4146 active_slabs++;
4147 }
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004148 list_for_each_entry(slabp, &l3->slabs_partial, list) {
Christoph Lametere498be72005-09-09 13:03:32 -07004149 if (slabp->inuse == cachep->num && !error)
4150 error = "slabs_partial inuse accounting error";
4151 if (!slabp->inuse && !error)
4152 error = "slabs_partial/inuse accounting error";
4153 active_objs += slabp->inuse;
4154 active_slabs++;
4155 }
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004156 list_for_each_entry(slabp, &l3->slabs_free, list) {
Christoph Lametere498be72005-09-09 13:03:32 -07004157 if (slabp->inuse && !error)
4158 error = "slabs_free/inuse accounting error";
4159 num_slabs++;
4160 }
4161 free_objects += l3->free_objects;
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08004162 if (l3->shared)
4163 shared_avail += l3->shared->avail;
Christoph Lametere498be72005-09-09 13:03:32 -07004164
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08004165 spin_unlock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004166 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004167 num_slabs += active_slabs;
4168 num_objs = num_slabs * cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07004169 if (num_objs - active_objs != free_objects && !error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004170 error = "free_objects accounting error";
4171
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004172 name = cachep->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004173 if (error)
4174 printk(KERN_ERR "slab: cache %s error: %s\n", name, error);
4175
4176 seq_printf(m, "%-17s %6lu %6lu %6u %4u %4d",
Manfred Spraul3dafccf2006-02-01 03:05:42 -08004177 name, active_objs, num_objs, cachep->buffer_size,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004178 cachep->num, (1 << cachep->gfporder));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004179 seq_printf(m, " : tunables %4u %4u %4u",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004180 cachep->limit, cachep->batchcount, cachep->shared);
Christoph Lametere498be72005-09-09 13:03:32 -07004181 seq_printf(m, " : slabdata %6lu %6lu %6lu",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004182 active_slabs, num_slabs, shared_avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004183#if STATS
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004184 { /* list3 stats */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004185 unsigned long high = cachep->high_mark;
4186 unsigned long allocs = cachep->num_allocations;
4187 unsigned long grown = cachep->grown;
4188 unsigned long reaped = cachep->reaped;
4189 unsigned long errors = cachep->errors;
4190 unsigned long max_freeable = cachep->max_freeable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004191 unsigned long node_allocs = cachep->node_allocs;
Christoph Lametere498be72005-09-09 13:03:32 -07004192 unsigned long node_frees = cachep->node_frees;
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -07004193 unsigned long overflows = cachep->node_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004194
Christoph Lametere498be72005-09-09 13:03:32 -07004195 seq_printf(m, " : globalstat %7lu %6lu %5lu %4lu \
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -07004196 %4lu %4lu %4lu %4lu %4lu", allocs, high, grown,
Andrew Mortona737b3e2006-03-22 00:08:11 -08004197 reaped, errors, max_freeable, node_allocs,
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -07004198 node_frees, overflows);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004199 }
4200 /* cpu stats */
4201 {
4202 unsigned long allochit = atomic_read(&cachep->allochit);
4203 unsigned long allocmiss = atomic_read(&cachep->allocmiss);
4204 unsigned long freehit = atomic_read(&cachep->freehit);
4205 unsigned long freemiss = atomic_read(&cachep->freemiss);
4206
4207 seq_printf(m, " : cpustat %6lu %6lu %6lu %6lu",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004208 allochit, allocmiss, freehit, freemiss);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004209 }
4210#endif
4211 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07004212 return 0;
4213}
4214
4215/*
4216 * slabinfo_op - iterator that generates /proc/slabinfo
4217 *
4218 * Output layout:
4219 * cache-name
4220 * num-active-objs
4221 * total-objs
4222 * object size
4223 * num-active-slabs
4224 * total-slabs
4225 * num-pages-per-slab
4226 * + further values on SMP and with statistics enabled
4227 */
4228
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04004229static const struct seq_operations slabinfo_op = {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004230 .start = s_start,
4231 .next = s_next,
4232 .stop = s_stop,
4233 .show = s_show,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004234};
4235
4236#define MAX_SLABINFO_WRITE 128
4237/**
4238 * slabinfo_write - Tuning for the slab allocator
4239 * @file: unused
4240 * @buffer: user buffer
4241 * @count: data length
4242 * @ppos: unused
4243 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004244ssize_t slabinfo_write(struct file *file, const char __user * buffer,
4245 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004246{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004247 char kbuf[MAX_SLABINFO_WRITE + 1], *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004248 int limit, batchcount, shared, res;
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004249 struct kmem_cache *cachep;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004250
Linus Torvalds1da177e2005-04-16 15:20:36 -07004251 if (count > MAX_SLABINFO_WRITE)
4252 return -EINVAL;
4253 if (copy_from_user(&kbuf, buffer, count))
4254 return -EFAULT;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004255 kbuf[MAX_SLABINFO_WRITE] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07004256
4257 tmp = strchr(kbuf, ' ');
4258 if (!tmp)
4259 return -EINVAL;
4260 *tmp = '\0';
4261 tmp++;
4262 if (sscanf(tmp, " %d %d %d", &limit, &batchcount, &shared) != 3)
4263 return -EINVAL;
4264
4265 /* Find the cache in the chain of caches. */
Ingo Molnarfc0abb12006-01-18 17:42:33 -08004266 mutex_lock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004267 res = -EINVAL;
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004268 list_for_each_entry(cachep, &cache_chain, next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004269 if (!strcmp(cachep->name, kbuf)) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08004270 if (limit < 1 || batchcount < 1 ||
4271 batchcount > limit || shared < 0) {
Christoph Lametere498be72005-09-09 13:03:32 -07004272 res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004273 } else {
Christoph Lametere498be72005-09-09 13:03:32 -07004274 res = do_tune_cpucache(cachep, limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03004275 batchcount, shared,
4276 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004277 }
4278 break;
4279 }
4280 }
Ingo Molnarfc0abb12006-01-18 17:42:33 -08004281 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004282 if (res >= 0)
4283 res = count;
4284 return res;
4285}
Al Viro871751e2006-03-25 03:06:39 -08004286
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04004287static int slabinfo_open(struct inode *inode, struct file *file)
4288{
4289 return seq_open(file, &slabinfo_op);
4290}
4291
4292static const struct file_operations proc_slabinfo_operations = {
4293 .open = slabinfo_open,
4294 .read = seq_read,
4295 .write = slabinfo_write,
4296 .llseek = seq_lseek,
4297 .release = seq_release,
4298};
4299
Al Viro871751e2006-03-25 03:06:39 -08004300#ifdef CONFIG_DEBUG_SLAB_LEAK
4301
4302static void *leaks_start(struct seq_file *m, loff_t *pos)
4303{
Al Viro871751e2006-03-25 03:06:39 -08004304 mutex_lock(&cache_chain_mutex);
Pavel Emelianovb92151b2007-07-15 23:38:04 -07004305 return seq_list_start(&cache_chain, *pos);
Al Viro871751e2006-03-25 03:06:39 -08004306}
4307
4308static inline int add_caller(unsigned long *n, unsigned long v)
4309{
4310 unsigned long *p;
4311 int l;
4312 if (!v)
4313 return 1;
4314 l = n[1];
4315 p = n + 2;
4316 while (l) {
4317 int i = l/2;
4318 unsigned long *q = p + 2 * i;
4319 if (*q == v) {
4320 q[1]++;
4321 return 1;
4322 }
4323 if (*q > v) {
4324 l = i;
4325 } else {
4326 p = q + 2;
4327 l -= i + 1;
4328 }
4329 }
4330 if (++n[1] == n[0])
4331 return 0;
4332 memmove(p + 2, p, n[1] * 2 * sizeof(unsigned long) - ((void *)p - (void *)n));
4333 p[0] = v;
4334 p[1] = 1;
4335 return 1;
4336}
4337
4338static void handle_slab(unsigned long *n, struct kmem_cache *c, struct slab *s)
4339{
4340 void *p;
4341 int i;
4342 if (n[0] == n[1])
4343 return;
4344 for (i = 0, p = s->s_mem; i < c->num; i++, p += c->buffer_size) {
4345 if (slab_bufctl(s)[i] != BUFCTL_ACTIVE)
4346 continue;
4347 if (!add_caller(n, (unsigned long)*dbg_userword(c, p)))
4348 return;
4349 }
4350}
4351
4352static void show_symbol(struct seq_file *m, unsigned long address)
4353{
4354#ifdef CONFIG_KALLSYMS
Al Viro871751e2006-03-25 03:06:39 -08004355 unsigned long offset, size;
Tejun Heo9281ace2007-07-17 04:03:51 -07004356 char modname[MODULE_NAME_LEN], name[KSYM_NAME_LEN];
Al Viro871751e2006-03-25 03:06:39 -08004357
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004358 if (lookup_symbol_attrs(address, &size, &offset, modname, name) == 0) {
Al Viro871751e2006-03-25 03:06:39 -08004359 seq_printf(m, "%s+%#lx/%#lx", name, offset, size);
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004360 if (modname[0])
Al Viro871751e2006-03-25 03:06:39 -08004361 seq_printf(m, " [%s]", modname);
4362 return;
4363 }
4364#endif
4365 seq_printf(m, "%p", (void *)address);
4366}
4367
4368static int leaks_show(struct seq_file *m, void *p)
4369{
Pavel Emelianovb92151b2007-07-15 23:38:04 -07004370 struct kmem_cache *cachep = list_entry(p, struct kmem_cache, next);
Al Viro871751e2006-03-25 03:06:39 -08004371 struct slab *slabp;
4372 struct kmem_list3 *l3;
4373 const char *name;
4374 unsigned long *n = m->private;
4375 int node;
4376 int i;
4377
4378 if (!(cachep->flags & SLAB_STORE_USER))
4379 return 0;
4380 if (!(cachep->flags & SLAB_RED_ZONE))
4381 return 0;
4382
4383 /* OK, we can do it */
4384
4385 n[1] = 0;
4386
4387 for_each_online_node(node) {
4388 l3 = cachep->nodelists[node];
4389 if (!l3)
4390 continue;
4391
4392 check_irq_on();
4393 spin_lock_irq(&l3->list_lock);
4394
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004395 list_for_each_entry(slabp, &l3->slabs_full, list)
Al Viro871751e2006-03-25 03:06:39 -08004396 handle_slab(n, cachep, slabp);
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004397 list_for_each_entry(slabp, &l3->slabs_partial, list)
Al Viro871751e2006-03-25 03:06:39 -08004398 handle_slab(n, cachep, slabp);
Al Viro871751e2006-03-25 03:06:39 -08004399 spin_unlock_irq(&l3->list_lock);
4400 }
4401 name = cachep->name;
4402 if (n[0] == n[1]) {
4403 /* Increase the buffer size */
4404 mutex_unlock(&cache_chain_mutex);
4405 m->private = kzalloc(n[0] * 4 * sizeof(unsigned long), GFP_KERNEL);
4406 if (!m->private) {
4407 /* Too bad, we are really out */
4408 m->private = n;
4409 mutex_lock(&cache_chain_mutex);
4410 return -ENOMEM;
4411 }
4412 *(unsigned long *)m->private = n[0] * 2;
4413 kfree(n);
4414 mutex_lock(&cache_chain_mutex);
4415 /* Now make sure this entry will be retried */
4416 m->count = m->size;
4417 return 0;
4418 }
4419 for (i = 0; i < n[1]; i++) {
4420 seq_printf(m, "%s: %lu ", name, n[2*i+3]);
4421 show_symbol(m, n[2*i+2]);
4422 seq_putc(m, '\n');
4423 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004424
Al Viro871751e2006-03-25 03:06:39 -08004425 return 0;
4426}
4427
Alexey Dobriyana0ec95a82008-10-06 00:59:10 +04004428static const struct seq_operations slabstats_op = {
Al Viro871751e2006-03-25 03:06:39 -08004429 .start = leaks_start,
4430 .next = s_next,
4431 .stop = s_stop,
4432 .show = leaks_show,
4433};
Alexey Dobriyana0ec95a82008-10-06 00:59:10 +04004434
4435static int slabstats_open(struct inode *inode, struct file *file)
4436{
4437 unsigned long *n = kzalloc(PAGE_SIZE, GFP_KERNEL);
4438 int ret = -ENOMEM;
4439 if (n) {
4440 ret = seq_open(file, &slabstats_op);
4441 if (!ret) {
4442 struct seq_file *m = file->private_data;
4443 *n = PAGE_SIZE / (2 * sizeof(unsigned long));
4444 m->private = n;
4445 n = NULL;
4446 }
4447 kfree(n);
4448 }
4449 return ret;
4450}
4451
4452static const struct file_operations proc_slabstats_operations = {
4453 .open = slabstats_open,
4454 .read = seq_read,
4455 .llseek = seq_lseek,
4456 .release = seq_release_private,
4457};
Al Viro871751e2006-03-25 03:06:39 -08004458#endif
Alexey Dobriyana0ec95a82008-10-06 00:59:10 +04004459
4460static int __init slab_proc_init(void)
4461{
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04004462 proc_create("slabinfo",S_IWUSR|S_IRUGO,NULL,&proc_slabinfo_operations);
Alexey Dobriyana0ec95a82008-10-06 00:59:10 +04004463#ifdef CONFIG_DEBUG_SLAB_LEAK
4464 proc_create("slab_allocators", 0, NULL, &proc_slabstats_operations);
4465#endif
4466 return 0;
4467}
4468module_init(slab_proc_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004469#endif
4470
Manfred Spraul00e145b2005-09-03 15:55:07 -07004471/**
4472 * ksize - get the actual amount of memory allocated for a given object
4473 * @objp: Pointer to the object
4474 *
4475 * kmalloc may internally round up allocations and return more memory
4476 * than requested. ksize() can be used to determine the actual amount of
4477 * memory allocated. The caller may use this additional memory, even though
4478 * a smaller amount of memory was initially specified with the kmalloc call.
4479 * The caller must guarantee that objp points to a valid object previously
4480 * allocated with either kmalloc() or kmem_cache_alloc(). The object
4481 * must not be freed during the duration of the call.
4482 */
Pekka Enbergfd76bab2007-05-06 14:48:40 -07004483size_t ksize(const void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004484{
Christoph Lameteref8b4522007-10-16 01:24:46 -07004485 BUG_ON(!objp);
4486 if (unlikely(objp == ZERO_SIZE_PTR))
Manfred Spraul00e145b2005-09-03 15:55:07 -07004487 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004488
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08004489 return obj_size(virt_to_cache(objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004490}
Kirill A. Shutemovb1aabec2009-02-10 15:21:44 +02004491EXPORT_SYMBOL(ksize);