blob: f9626d51a4b1a4c1750bbbb38aab150af27daab0 [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
Li Zefan0f24f122009-12-11 15:45:30 +0800493#ifdef CONFIG_TRACING
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +0300494size_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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 * chicken and egg problem: delay the per-cpu array allocation
609 * until the general caches are up.
610 */
611static enum {
612 NONE,
Christoph Lametere498be72005-09-09 13:03:32 -0700613 PARTIAL_AC,
614 PARTIAL_L3,
Pekka Enberg8429db52009-06-12 15:58:59 +0300615 EARLY,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616 FULL
617} g_cpucache_up;
618
Mike Kravetz39d24e62006-05-15 09:44:13 -0700619/*
620 * used by boot code to determine if it can use slab based allocator
621 */
622int slab_is_available(void)
623{
Pekka Enberg8429db52009-06-12 15:58:59 +0300624 return g_cpucache_up >= EARLY;
Mike Kravetz39d24e62006-05-15 09:44:13 -0700625}
626
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200627#ifdef CONFIG_LOCKDEP
628
629/*
630 * Slab sometimes uses the kmalloc slabs to store the slab headers
631 * for other slabs "off slab".
632 * The locking for this is tricky in that it nests within the locks
633 * of all other slabs in a few places; to deal with this special
634 * locking we put on-slab caches into a separate lock-class.
635 *
636 * We set lock class for alien array caches which are up during init.
637 * The lock annotation will be lost if all cpus of a node goes down and
638 * then comes back up during hotplug
639 */
640static struct lock_class_key on_slab_l3_key;
641static struct lock_class_key on_slab_alc_key;
642
643static void init_node_lock_keys(int q)
644{
645 struct cache_sizes *s = malloc_sizes;
646
647 if (g_cpucache_up != FULL)
648 return;
649
650 for (s = malloc_sizes; s->cs_size != ULONG_MAX; s++) {
651 struct array_cache **alc;
652 struct kmem_list3 *l3;
653 int r;
654
655 l3 = s->cs_cachep->nodelists[q];
656 if (!l3 || OFF_SLAB(s->cs_cachep))
Pekka Enberg00afa752009-12-27 14:33:14 +0200657 continue;
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200658 lockdep_set_class(&l3->list_lock, &on_slab_l3_key);
659 alc = l3->alien;
660 /*
661 * FIXME: This check for BAD_ALIEN_MAGIC
662 * should go away when common slab code is taught to
663 * work even without alien caches.
664 * Currently, non NUMA code returns BAD_ALIEN_MAGIC
665 * for alloc_alien_cache,
666 */
667 if (!alc || (unsigned long)alc == BAD_ALIEN_MAGIC)
Pekka Enberg00afa752009-12-27 14:33:14 +0200668 continue;
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200669 for_each_node(r) {
670 if (alc[r])
671 lockdep_set_class(&alc[r]->lock,
672 &on_slab_alc_key);
673 }
674 }
675}
676
677static inline void init_lock_keys(void)
678{
679 int node;
680
681 for_each_node(node)
682 init_node_lock_keys(node);
683}
684#else
685static void init_node_lock_keys(int q)
686{
687}
688
689static inline void init_lock_keys(void)
690{
691}
692#endif
693
694/*
695 * Guard access to the cache-chain.
696 */
697static DEFINE_MUTEX(cache_chain_mutex);
698static struct list_head cache_chain;
699
Tejun Heo1871e522009-10-29 22:34:13 +0900700static DEFINE_PER_CPU(struct delayed_work, slab_reap_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
Pekka Enberg343e0d72006-02-01 03:05:50 -0800702static inline struct array_cache *cpu_cache_get(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703{
704 return cachep->array[smp_processor_id()];
705}
706
Andrew Mortona737b3e2006-03-22 00:08:11 -0800707static inline struct kmem_cache *__find_general_cachep(size_t size,
708 gfp_t gfpflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709{
710 struct cache_sizes *csizep = malloc_sizes;
711
712#if DEBUG
713 /* This happens if someone tries to call
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800714 * kmem_cache_create(), or __kmalloc(), before
715 * the generic caches are initialized.
716 */
Alok Katariac7e43c72005-09-14 12:17:53 -0700717 BUG_ON(malloc_sizes[INDEX_AC].cs_cachep == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718#endif
Christoph Lameter6cb8f912007-07-17 04:03:22 -0700719 if (!size)
720 return ZERO_SIZE_PTR;
721
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 while (size > csizep->cs_size)
723 csizep++;
724
725 /*
Martin Hicks0abf40c2005-09-03 15:54:54 -0700726 * Really subtle: The last entry with cs->cs_size==ULONG_MAX
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 * has cs_{dma,}cachep==NULL. Thus no special case
728 * for large kmalloc calls required.
729 */
Christoph Lameter4b51d662007-02-10 01:43:10 -0800730#ifdef CONFIG_ZONE_DMA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 if (unlikely(gfpflags & GFP_DMA))
732 return csizep->cs_dmacachep;
Christoph Lameter4b51d662007-02-10 01:43:10 -0800733#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 return csizep->cs_cachep;
735}
736
Adrian Bunkb2213852006-09-25 23:31:02 -0700737static struct kmem_cache *kmem_find_general_cachep(size_t size, gfp_t gfpflags)
Manfred Spraul97e2bde2005-05-01 08:58:38 -0700738{
739 return __find_general_cachep(size, gfpflags);
740}
Manfred Spraul97e2bde2005-05-01 08:58:38 -0700741
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800742static size_t slab_mgmt_size(size_t nr_objs, size_t align)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743{
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800744 return ALIGN(sizeof(struct slab)+nr_objs*sizeof(kmem_bufctl_t), align);
745}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
Andrew Mortona737b3e2006-03-22 00:08:11 -0800747/*
748 * Calculate the number of objects and left-over bytes for a given buffer size.
749 */
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800750static void cache_estimate(unsigned long gfporder, size_t buffer_size,
751 size_t align, int flags, size_t *left_over,
752 unsigned int *num)
753{
754 int nr_objs;
755 size_t mgmt_size;
756 size_t slab_size = PAGE_SIZE << gfporder;
757
758 /*
759 * The slab management structure can be either off the slab or
760 * on it. For the latter case, the memory allocated for a
761 * slab is used for:
762 *
763 * - The struct slab
764 * - One kmem_bufctl_t for each object
765 * - Padding to respect alignment of @align
766 * - @buffer_size bytes for each object
767 *
768 * If the slab management structure is off the slab, then the
769 * alignment will already be calculated into the size. Because
770 * the slabs are all pages aligned, the objects will be at the
771 * correct alignment when allocated.
772 */
773 if (flags & CFLGS_OFF_SLAB) {
774 mgmt_size = 0;
775 nr_objs = slab_size / buffer_size;
776
777 if (nr_objs > SLAB_LIMIT)
778 nr_objs = SLAB_LIMIT;
779 } else {
780 /*
781 * Ignore padding for the initial guess. The padding
782 * is at most @align-1 bytes, and @buffer_size is at
783 * least @align. In the worst case, this result will
784 * be one greater than the number of objects that fit
785 * into the memory allocation when taking the padding
786 * into account.
787 */
788 nr_objs = (slab_size - sizeof(struct slab)) /
789 (buffer_size + sizeof(kmem_bufctl_t));
790
791 /*
792 * This calculated number will be either the right
793 * amount, or one greater than what we want.
794 */
795 if (slab_mgmt_size(nr_objs, align) + nr_objs*buffer_size
796 > slab_size)
797 nr_objs--;
798
799 if (nr_objs > SLAB_LIMIT)
800 nr_objs = SLAB_LIMIT;
801
802 mgmt_size = slab_mgmt_size(nr_objs, align);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 }
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800804 *num = nr_objs;
805 *left_over = slab_size - nr_objs*buffer_size - mgmt_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806}
807
Harvey Harrisond40cee22008-04-30 00:55:07 -0700808#define slab_error(cachep, msg) __slab_error(__func__, cachep, msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
Andrew Mortona737b3e2006-03-22 00:08:11 -0800810static void __slab_error(const char *function, struct kmem_cache *cachep,
811 char *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812{
813 printk(KERN_ERR "slab error in %s(): cache `%s': %s\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800814 function, cachep->name, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 dump_stack();
816}
817
Paul Menage3395ee02006-12-06 20:32:16 -0800818/*
819 * By default on NUMA we use alien caches to stage the freeing of
820 * objects allocated from other nodes. This causes massive memory
821 * inefficiencies when using fake NUMA setup to split memory into a
822 * large number of small nodes, so it can be disabled on the command
823 * line
824 */
825
826static int use_alien_caches __read_mostly = 1;
827static int __init noaliencache_setup(char *s)
828{
829 use_alien_caches = 0;
830 return 1;
831}
832__setup("noaliencache", noaliencache_setup);
833
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800834#ifdef CONFIG_NUMA
835/*
836 * Special reaping functions for NUMA systems called from cache_reap().
837 * These take care of doing round robin flushing of alien caches (containing
838 * objects freed on different nodes from which they were allocated) and the
839 * flushing of remote pcps by calling drain_node_pages.
840 */
Tejun Heo1871e522009-10-29 22:34:13 +0900841static DEFINE_PER_CPU(unsigned long, slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800842
843static void init_reap_node(int cpu)
844{
845 int node;
846
847 node = next_node(cpu_to_node(cpu), node_online_map);
848 if (node == MAX_NUMNODES)
Paul Jackson442295c2006-03-22 00:09:11 -0800849 node = first_node(node_online_map);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800850
Tejun Heo1871e522009-10-29 22:34:13 +0900851 per_cpu(slab_reap_node, cpu) = node;
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800852}
853
854static void next_reap_node(void)
855{
Tejun Heo1871e522009-10-29 22:34:13 +0900856 int node = __get_cpu_var(slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800857
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800858 node = next_node(node, node_online_map);
859 if (unlikely(node >= MAX_NUMNODES))
860 node = first_node(node_online_map);
Tejun Heo1871e522009-10-29 22:34:13 +0900861 __get_cpu_var(slab_reap_node) = node;
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800862}
863
864#else
865#define init_reap_node(cpu) do { } while (0)
866#define next_reap_node(void) do { } while (0)
867#endif
868
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869/*
870 * Initiate the reap timer running on the target CPU. We run at around 1 to 2Hz
871 * via the workqueue/eventd.
872 * Add the CPU number into the expiration time to minimize the possibility of
873 * the CPUs getting into lockstep and contending for the global cache chain
874 * lock.
875 */
Adrian Bunk897e6792007-07-15 23:38:20 -0700876static void __cpuinit start_cpu_timer(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877{
Tejun Heo1871e522009-10-29 22:34:13 +0900878 struct delayed_work *reap_work = &per_cpu(slab_reap_work, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879
880 /*
881 * When this gets called from do_initcalls via cpucache_init(),
882 * init_workqueues() has already run, so keventd will be setup
883 * at that time.
884 */
David Howells52bad642006-11-22 14:54:01 +0000885 if (keventd_up() && reap_work->work.func == NULL) {
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800886 init_reap_node(cpu);
David Howells65f27f32006-11-22 14:55:48 +0000887 INIT_DELAYED_WORK(reap_work, cache_reap);
Arjan van de Ven2b284212006-12-10 02:21:28 -0800888 schedule_delayed_work_on(cpu, reap_work,
889 __round_jiffies_relative(HZ, cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 }
891}
892
Christoph Lametere498be72005-09-09 13:03:32 -0700893static struct array_cache *alloc_arraycache(int node, int entries,
Pekka Enberg83b519e2009-06-10 19:40:04 +0300894 int batchcount, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895{
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800896 int memsize = sizeof(void *) * entries + sizeof(struct array_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 struct array_cache *nc = NULL;
898
Pekka Enberg83b519e2009-06-10 19:40:04 +0300899 nc = kmalloc_node(memsize, gfp, node);
Catalin Marinasd5cff632009-06-11 13:22:40 +0100900 /*
901 * The array_cache structures contain pointers to free object.
902 * However, when such objects are allocated or transfered to another
903 * cache the pointers are not cleared and they could be counted as
904 * valid references during a kmemleak scan. Therefore, kmemleak must
905 * not scan such objects.
906 */
907 kmemleak_no_scan(nc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 if (nc) {
909 nc->avail = 0;
910 nc->limit = entries;
911 nc->batchcount = batchcount;
912 nc->touched = 0;
Christoph Lametere498be72005-09-09 13:03:32 -0700913 spin_lock_init(&nc->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 }
915 return nc;
916}
917
Christoph Lameter3ded1752006-03-25 03:06:44 -0800918/*
919 * Transfer objects in one arraycache to another.
920 * Locking must be handled by the caller.
921 *
922 * Return the number of entries transferred.
923 */
924static int transfer_objects(struct array_cache *to,
925 struct array_cache *from, unsigned int max)
926{
927 /* Figure out how many entries to transfer */
928 int nr = min(min(from->avail, max), to->limit - to->avail);
929
930 if (!nr)
931 return 0;
932
933 memcpy(to->entry + to->avail, from->entry + from->avail -nr,
934 sizeof(void *) *nr);
935
936 from->avail -= nr;
937 to->avail += nr;
Christoph Lameter3ded1752006-03-25 03:06:44 -0800938 return nr;
939}
940
Christoph Lameter765c4502006-09-27 01:50:08 -0700941#ifndef CONFIG_NUMA
942
943#define drain_alien_cache(cachep, alien) do { } while (0)
944#define reap_alien(cachep, l3) do { } while (0)
945
Pekka Enberg83b519e2009-06-10 19:40:04 +0300946static inline struct array_cache **alloc_alien_cache(int node, int limit, gfp_t gfp)
Christoph Lameter765c4502006-09-27 01:50:08 -0700947{
948 return (struct array_cache **)BAD_ALIEN_MAGIC;
949}
950
951static inline void free_alien_cache(struct array_cache **ac_ptr)
952{
953}
954
955static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
956{
957 return 0;
958}
959
960static inline void *alternate_node_alloc(struct kmem_cache *cachep,
961 gfp_t flags)
962{
963 return NULL;
964}
965
Christoph Hellwig8b98c162006-12-06 20:32:30 -0800966static inline void *____cache_alloc_node(struct kmem_cache *cachep,
Christoph Lameter765c4502006-09-27 01:50:08 -0700967 gfp_t flags, int nodeid)
968{
969 return NULL;
970}
971
972#else /* CONFIG_NUMA */
973
Christoph Hellwig8b98c162006-12-06 20:32:30 -0800974static void *____cache_alloc_node(struct kmem_cache *, gfp_t, int);
Paul Jacksonc61afb12006-03-24 03:16:08 -0800975static void *alternate_node_alloc(struct kmem_cache *, gfp_t);
Christoph Lameterdc85da12006-01-18 17:42:36 -0800976
Pekka Enberg83b519e2009-06-10 19:40:04 +0300977static struct array_cache **alloc_alien_cache(int node, int limit, gfp_t gfp)
Christoph Lametere498be72005-09-09 13:03:32 -0700978{
979 struct array_cache **ac_ptr;
Christoph Lameter8ef82862007-02-20 13:57:52 -0800980 int memsize = sizeof(void *) * nr_node_ids;
Christoph Lametere498be72005-09-09 13:03:32 -0700981 int i;
982
983 if (limit > 1)
984 limit = 12;
Pekka Enberg83b519e2009-06-10 19:40:04 +0300985 ac_ptr = kmalloc_node(memsize, gfp, node);
Christoph Lametere498be72005-09-09 13:03:32 -0700986 if (ac_ptr) {
987 for_each_node(i) {
988 if (i == node || !node_online(i)) {
989 ac_ptr[i] = NULL;
990 continue;
991 }
Pekka Enberg83b519e2009-06-10 19:40:04 +0300992 ac_ptr[i] = alloc_arraycache(node, limit, 0xbaadf00d, gfp);
Christoph Lametere498be72005-09-09 13:03:32 -0700993 if (!ac_ptr[i]) {
Akinobu Mitacc550de2007-11-14 16:58:35 -0800994 for (i--; i >= 0; i--)
Christoph Lametere498be72005-09-09 13:03:32 -0700995 kfree(ac_ptr[i]);
996 kfree(ac_ptr);
997 return NULL;
998 }
999 }
1000 }
1001 return ac_ptr;
1002}
1003
Pekka Enberg5295a742006-02-01 03:05:48 -08001004static void free_alien_cache(struct array_cache **ac_ptr)
Christoph Lametere498be72005-09-09 13:03:32 -07001005{
1006 int i;
1007
1008 if (!ac_ptr)
1009 return;
Christoph Lametere498be72005-09-09 13:03:32 -07001010 for_each_node(i)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001011 kfree(ac_ptr[i]);
Christoph Lametere498be72005-09-09 13:03:32 -07001012 kfree(ac_ptr);
1013}
1014
Pekka Enberg343e0d72006-02-01 03:05:50 -08001015static void __drain_alien_cache(struct kmem_cache *cachep,
Pekka Enberg5295a742006-02-01 03:05:48 -08001016 struct array_cache *ac, int node)
Christoph Lametere498be72005-09-09 13:03:32 -07001017{
1018 struct kmem_list3 *rl3 = cachep->nodelists[node];
1019
1020 if (ac->avail) {
1021 spin_lock(&rl3->list_lock);
Christoph Lametere00946f2006-03-25 03:06:45 -08001022 /*
1023 * Stuff objects into the remote nodes shared array first.
1024 * That way we could avoid the overhead of putting the objects
1025 * into the free lists and getting them back later.
1026 */
shin, jacob693f7d32006-04-28 10:54:37 -05001027 if (rl3->shared)
1028 transfer_objects(rl3->shared, ac, ac->limit);
Christoph Lametere00946f2006-03-25 03:06:45 -08001029
Christoph Lameterff694162005-09-22 21:44:02 -07001030 free_block(cachep, ac->entry, ac->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -07001031 ac->avail = 0;
1032 spin_unlock(&rl3->list_lock);
1033 }
1034}
1035
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001036/*
1037 * Called from cache_reap() to regularly drain alien caches round robin.
1038 */
1039static void reap_alien(struct kmem_cache *cachep, struct kmem_list3 *l3)
1040{
Tejun Heo1871e522009-10-29 22:34:13 +09001041 int node = __get_cpu_var(slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001042
1043 if (l3->alien) {
1044 struct array_cache *ac = l3->alien[node];
Christoph Lametere00946f2006-03-25 03:06:45 -08001045
1046 if (ac && ac->avail && spin_trylock_irq(&ac->lock)) {
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001047 __drain_alien_cache(cachep, ac, node);
1048 spin_unlock_irq(&ac->lock);
1049 }
1050 }
1051}
1052
Andrew Mortona737b3e2006-03-22 00:08:11 -08001053static void drain_alien_cache(struct kmem_cache *cachep,
1054 struct array_cache **alien)
Christoph Lametere498be72005-09-09 13:03:32 -07001055{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001056 int i = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07001057 struct array_cache *ac;
1058 unsigned long flags;
1059
1060 for_each_online_node(i) {
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001061 ac = alien[i];
Christoph Lametere498be72005-09-09 13:03:32 -07001062 if (ac) {
1063 spin_lock_irqsave(&ac->lock, flags);
1064 __drain_alien_cache(cachep, ac, i);
1065 spin_unlock_irqrestore(&ac->lock, flags);
1066 }
1067 }
1068}
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001069
Ingo Molnar873623d2006-07-13 14:44:38 +02001070static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001071{
1072 struct slab *slabp = virt_to_slab(objp);
1073 int nodeid = slabp->nodeid;
1074 struct kmem_list3 *l3;
1075 struct array_cache *alien = NULL;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001076 int node;
1077
1078 node = numa_node_id();
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001079
1080 /*
1081 * Make sure we are not freeing a object from another node to the array
1082 * cache on this cpu.
1083 */
Siddha, Suresh B62918a02007-05-02 19:27:18 +02001084 if (likely(slabp->nodeid == node))
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001085 return 0;
1086
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001087 l3 = cachep->nodelists[node];
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001088 STATS_INC_NODEFREES(cachep);
1089 if (l3->alien && l3->alien[nodeid]) {
1090 alien = l3->alien[nodeid];
Ingo Molnar873623d2006-07-13 14:44:38 +02001091 spin_lock(&alien->lock);
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001092 if (unlikely(alien->avail == alien->limit)) {
1093 STATS_INC_ACOVERFLOW(cachep);
1094 __drain_alien_cache(cachep, alien, nodeid);
1095 }
1096 alien->entry[alien->avail++] = objp;
1097 spin_unlock(&alien->lock);
1098 } else {
1099 spin_lock(&(cachep->nodelists[nodeid])->list_lock);
1100 free_block(cachep, &objp, 1, nodeid);
1101 spin_unlock(&(cachep->nodelists[nodeid])->list_lock);
1102 }
1103 return 1;
1104}
Christoph Lametere498be72005-09-09 13:03:32 -07001105#endif
1106
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001107static void __cpuinit cpuup_canceled(long cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108{
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001109 struct kmem_cache *cachep;
1110 struct kmem_list3 *l3 = NULL;
1111 int node = cpu_to_node(cpu);
Rusty Russella70f7302009-03-13 14:49:46 +10301112 const struct cpumask *mask = cpumask_of_node(node);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001113
1114 list_for_each_entry(cachep, &cache_chain, next) {
1115 struct array_cache *nc;
1116 struct array_cache *shared;
1117 struct array_cache **alien;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001118
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001119 /* cpu is dead; no one can alloc from it. */
1120 nc = cachep->array[cpu];
1121 cachep->array[cpu] = NULL;
1122 l3 = cachep->nodelists[node];
1123
1124 if (!l3)
1125 goto free_array_cache;
1126
1127 spin_lock_irq(&l3->list_lock);
1128
1129 /* Free limit for this kmem_list3 */
1130 l3->free_limit -= cachep->batchcount;
1131 if (nc)
1132 free_block(cachep, nc->entry, nc->avail, node);
1133
Rusty Russell58463c12009-12-17 11:43:12 -06001134 if (!cpumask_empty(mask)) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001135 spin_unlock_irq(&l3->list_lock);
1136 goto free_array_cache;
1137 }
1138
1139 shared = l3->shared;
1140 if (shared) {
1141 free_block(cachep, shared->entry,
1142 shared->avail, node);
1143 l3->shared = NULL;
1144 }
1145
1146 alien = l3->alien;
1147 l3->alien = NULL;
1148
1149 spin_unlock_irq(&l3->list_lock);
1150
1151 kfree(shared);
1152 if (alien) {
1153 drain_alien_cache(cachep, alien);
1154 free_alien_cache(alien);
1155 }
1156free_array_cache:
1157 kfree(nc);
1158 }
1159 /*
1160 * In the previous loop, all the objects were freed to
1161 * the respective cache's slabs, now we can go ahead and
1162 * shrink each nodelist to its limit.
1163 */
1164 list_for_each_entry(cachep, &cache_chain, next) {
1165 l3 = cachep->nodelists[node];
1166 if (!l3)
1167 continue;
1168 drain_freelist(cachep, l3, l3->free_objects);
1169 }
1170}
1171
1172static int __cpuinit cpuup_prepare(long cpu)
1173{
Pekka Enberg343e0d72006-02-01 03:05:50 -08001174 struct kmem_cache *cachep;
Christoph Lametere498be72005-09-09 13:03:32 -07001175 struct kmem_list3 *l3 = NULL;
1176 int node = cpu_to_node(cpu);
David Howellsea02e3d2007-07-19 01:49:09 -07001177 const int memsize = sizeof(struct kmem_list3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001179 /*
1180 * We need to do this right in the beginning since
1181 * alloc_arraycache's are going to use this list.
1182 * kmalloc_node allows us to add the slab to the right
1183 * kmem_list3 and not this cpu's kmem_list3
1184 */
1185
1186 list_for_each_entry(cachep, &cache_chain, next) {
1187 /*
1188 * Set up the size64 kmemlist for cpu before we can
1189 * begin anything. Make sure some other cpu on this
1190 * node has not already allocated this
1191 */
1192 if (!cachep->nodelists[node]) {
1193 l3 = kmalloc_node(memsize, GFP_KERNEL, node);
1194 if (!l3)
1195 goto bad;
1196 kmem_list3_init(l3);
1197 l3->next_reap = jiffies + REAPTIMEOUT_LIST3 +
1198 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
1199
1200 /*
1201 * The l3s don't come and go as CPUs come and
1202 * go. cache_chain_mutex is sufficient
1203 * protection here.
1204 */
1205 cachep->nodelists[node] = l3;
1206 }
1207
1208 spin_lock_irq(&cachep->nodelists[node]->list_lock);
1209 cachep->nodelists[node]->free_limit =
1210 (1 + nr_cpus_node(node)) *
1211 cachep->batchcount + cachep->num;
1212 spin_unlock_irq(&cachep->nodelists[node]->list_lock);
1213 }
1214
1215 /*
1216 * Now we can go ahead with allocating the shared arrays and
1217 * array caches
1218 */
1219 list_for_each_entry(cachep, &cache_chain, next) {
1220 struct array_cache *nc;
1221 struct array_cache *shared = NULL;
1222 struct array_cache **alien = NULL;
1223
1224 nc = alloc_arraycache(node, cachep->limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03001225 cachep->batchcount, GFP_KERNEL);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001226 if (!nc)
1227 goto bad;
1228 if (cachep->shared) {
1229 shared = alloc_arraycache(node,
1230 cachep->shared * cachep->batchcount,
Pekka Enberg83b519e2009-06-10 19:40:04 +03001231 0xbaadf00d, GFP_KERNEL);
Akinobu Mita12d00f62007-10-18 03:05:11 -07001232 if (!shared) {
1233 kfree(nc);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001234 goto bad;
Akinobu Mita12d00f62007-10-18 03:05:11 -07001235 }
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001236 }
1237 if (use_alien_caches) {
Pekka Enberg83b519e2009-06-10 19:40:04 +03001238 alien = alloc_alien_cache(node, cachep->limit, GFP_KERNEL);
Akinobu Mita12d00f62007-10-18 03:05:11 -07001239 if (!alien) {
1240 kfree(shared);
1241 kfree(nc);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001242 goto bad;
Akinobu Mita12d00f62007-10-18 03:05:11 -07001243 }
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001244 }
1245 cachep->array[cpu] = nc;
1246 l3 = cachep->nodelists[node];
1247 BUG_ON(!l3);
1248
1249 spin_lock_irq(&l3->list_lock);
1250 if (!l3->shared) {
1251 /*
1252 * We are serialised from CPU_DEAD or
1253 * CPU_UP_CANCELLED by the cpucontrol lock
1254 */
1255 l3->shared = shared;
1256 shared = NULL;
1257 }
1258#ifdef CONFIG_NUMA
1259 if (!l3->alien) {
1260 l3->alien = alien;
1261 alien = NULL;
1262 }
1263#endif
1264 spin_unlock_irq(&l3->list_lock);
1265 kfree(shared);
1266 free_alien_cache(alien);
1267 }
Pekka Enbergce79ddc2009-11-23 22:01:15 +02001268 init_node_lock_keys(node);
1269
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001270 return 0;
1271bad:
Akinobu Mita12d00f62007-10-18 03:05:11 -07001272 cpuup_canceled(cpu);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001273 return -ENOMEM;
1274}
1275
1276static int __cpuinit cpuup_callback(struct notifier_block *nfb,
1277 unsigned long action, void *hcpu)
1278{
1279 long cpu = (long)hcpu;
1280 int err = 0;
1281
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 switch (action) {
Heiko Carstens38c3bd92007-05-09 02:34:05 -07001283 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001284 case CPU_UP_PREPARE_FROZEN:
Gautham R Shenoy95402b32008-01-25 21:08:02 +01001285 mutex_lock(&cache_chain_mutex);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001286 err = cpuup_prepare(cpu);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01001287 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 break;
1289 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001290 case CPU_ONLINE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 start_cpu_timer(cpu);
1292 break;
1293#ifdef CONFIG_HOTPLUG_CPU
Christoph Lameter5830c592007-05-09 02:34:22 -07001294 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001295 case CPU_DOWN_PREPARE_FROZEN:
Christoph Lameter5830c592007-05-09 02:34:22 -07001296 /*
1297 * Shutdown cache reaper. Note that the cache_chain_mutex is
1298 * held so that if cache_reap() is invoked it cannot do
1299 * anything expensive but will only modify reap_work
1300 * and reschedule the timer.
1301 */
Tejun Heo1871e522009-10-29 22:34:13 +09001302 cancel_rearming_delayed_work(&per_cpu(slab_reap_work, cpu));
Christoph Lameter5830c592007-05-09 02:34:22 -07001303 /* Now the cache_reaper is guaranteed to be not running. */
Tejun Heo1871e522009-10-29 22:34:13 +09001304 per_cpu(slab_reap_work, cpu).work.func = NULL;
Christoph Lameter5830c592007-05-09 02:34:22 -07001305 break;
1306 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001307 case CPU_DOWN_FAILED_FROZEN:
Christoph Lameter5830c592007-05-09 02:34:22 -07001308 start_cpu_timer(cpu);
1309 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001311 case CPU_DEAD_FROZEN:
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001312 /*
1313 * Even if all the cpus of a node are down, we don't free the
1314 * kmem_list3 of any cache. This to avoid a race between
1315 * cpu_down, and a kmalloc allocation from another cpu for
1316 * memory from the node of the cpu going down. The list3
1317 * structure is usually allocated from kmem_cache_create() and
1318 * gets destroyed at kmem_cache_destroy().
1319 */
Simon Arlott183ff222007-10-20 01:27:18 +02001320 /* fall through */
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08001321#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001323 case CPU_UP_CANCELED_FROZEN:
Gautham R Shenoy95402b32008-01-25 21:08:02 +01001324 mutex_lock(&cache_chain_mutex);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001325 cpuup_canceled(cpu);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001326 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 }
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001329 return err ? NOTIFY_BAD : NOTIFY_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001330}
1331
Chandra Seetharaman74b85f32006-06-27 02:54:09 -07001332static struct notifier_block __cpuinitdata cpucache_notifier = {
1333 &cpuup_callback, NULL, 0
1334};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335
Christoph Lametere498be72005-09-09 13:03:32 -07001336/*
1337 * swap the static kmem_list3 with kmalloced memory
1338 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08001339static void init_list(struct kmem_cache *cachep, struct kmem_list3 *list,
1340 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07001341{
1342 struct kmem_list3 *ptr;
1343
Pekka Enberg83b519e2009-06-10 19:40:04 +03001344 ptr = kmalloc_node(sizeof(struct kmem_list3), GFP_NOWAIT, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07001345 BUG_ON(!ptr);
1346
Christoph Lametere498be72005-09-09 13:03:32 -07001347 memcpy(ptr, list, sizeof(struct kmem_list3));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001348 /*
1349 * Do not assume that spinlocks can be initialized via memcpy:
1350 */
1351 spin_lock_init(&ptr->list_lock);
1352
Christoph Lametere498be72005-09-09 13:03:32 -07001353 MAKE_ALL_LISTS(cachep, ptr, nodeid);
1354 cachep->nodelists[nodeid] = ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001355}
1356
Andrew Mortona737b3e2006-03-22 00:08:11 -08001357/*
Pekka Enberg556a1692008-01-25 08:20:51 +02001358 * For setting up all the kmem_list3s for cache whose buffer_size is same as
1359 * size of kmem_list3.
1360 */
1361static void __init set_up_list3s(struct kmem_cache *cachep, int index)
1362{
1363 int node;
1364
1365 for_each_online_node(node) {
1366 cachep->nodelists[node] = &initkmem_list3[index + node];
1367 cachep->nodelists[node]->next_reap = jiffies +
1368 REAPTIMEOUT_LIST3 +
1369 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
1370 }
1371}
1372
1373/*
Andrew Mortona737b3e2006-03-22 00:08:11 -08001374 * Initialisation. Called after the page allocator have been initialised and
1375 * before smp_init().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376 */
1377void __init kmem_cache_init(void)
1378{
1379 size_t left_over;
1380 struct cache_sizes *sizes;
1381 struct cache_names *names;
Christoph Lametere498be72005-09-09 13:03:32 -07001382 int i;
Jack Steiner07ed76b2006-03-07 21:55:46 -08001383 int order;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001384 int node;
Christoph Lametere498be72005-09-09 13:03:32 -07001385
Mel Gormanb6e68bc2009-06-16 15:32:16 -07001386 if (num_possible_nodes() == 1)
Siddha, Suresh B62918a02007-05-02 19:27:18 +02001387 use_alien_caches = 0;
1388
Christoph Lametere498be72005-09-09 13:03:32 -07001389 for (i = 0; i < NUM_INIT_LISTS; i++) {
1390 kmem_list3_init(&initkmem_list3[i]);
1391 if (i < MAX_NUMNODES)
1392 cache_cache.nodelists[i] = NULL;
1393 }
Pekka Enberg556a1692008-01-25 08:20:51 +02001394 set_up_list3s(&cache_cache, CACHE_CACHE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395
1396 /*
1397 * Fragmentation resistance on low memory - only use bigger
1398 * page orders on machines with more than 32MB of memory.
1399 */
Jan Beulich44813742009-09-21 17:03:05 -07001400 if (totalram_pages > (32 << 20) >> PAGE_SHIFT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 slab_break_gfp_order = BREAK_GFP_ORDER_HI;
1402
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 /* Bootstrap is tricky, because several objects are allocated
1404 * from caches that do not exist yet:
Andrew Mortona737b3e2006-03-22 00:08:11 -08001405 * 1) initialize the cache_cache cache: it contains the struct
1406 * kmem_cache structures of all caches, except cache_cache itself:
1407 * cache_cache is statically allocated.
Christoph Lametere498be72005-09-09 13:03:32 -07001408 * Initially an __init data area is used for the head array and the
1409 * kmem_list3 structures, it's replaced with a kmalloc allocated
1410 * array at the end of the bootstrap.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 * 2) Create the first kmalloc cache.
Pekka Enberg343e0d72006-02-01 03:05:50 -08001412 * The struct kmem_cache for the new cache is allocated normally.
Christoph Lametere498be72005-09-09 13:03:32 -07001413 * An __init data area is used for the head array.
1414 * 3) Create the remaining kmalloc caches, with minimally sized
1415 * head arrays.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 * 4) Replace the __init data head arrays for cache_cache and the first
1417 * kmalloc cache with kmalloc allocated arrays.
Christoph Lametere498be72005-09-09 13:03:32 -07001418 * 5) Replace the __init data for kmem_list3 for cache_cache and
1419 * the other cache's with kmalloc allocated memory.
1420 * 6) Resize the head arrays of the kmalloc caches to their final sizes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 */
1422
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001423 node = numa_node_id();
1424
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 /* 1) create the cache_cache */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 INIT_LIST_HEAD(&cache_chain);
1427 list_add(&cache_cache.next, &cache_chain);
1428 cache_cache.colour_off = cache_line_size();
1429 cache_cache.array[smp_processor_id()] = &initarray_cache.cache;
Daniel Yeisleyec1f5ee2008-03-25 23:59:08 +02001430 cache_cache.nodelists[node] = &initkmem_list3[CACHE_CACHE + node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431
Eric Dumazet8da34302007-05-06 14:49:29 -07001432 /*
1433 * struct kmem_cache size depends on nr_node_ids, which
1434 * can be less than MAX_NUMNODES.
1435 */
1436 cache_cache.buffer_size = offsetof(struct kmem_cache, nodelists) +
1437 nr_node_ids * sizeof(struct kmem_list3 *);
1438#if DEBUG
1439 cache_cache.obj_size = cache_cache.buffer_size;
1440#endif
Andrew Mortona737b3e2006-03-22 00:08:11 -08001441 cache_cache.buffer_size = ALIGN(cache_cache.buffer_size,
1442 cache_line_size());
Eric Dumazet6a2d7a92006-12-13 00:34:27 -08001443 cache_cache.reciprocal_buffer_size =
1444 reciprocal_value(cache_cache.buffer_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
Jack Steiner07ed76b2006-03-07 21:55:46 -08001446 for (order = 0; order < MAX_ORDER; order++) {
1447 cache_estimate(order, cache_cache.buffer_size,
1448 cache_line_size(), 0, &left_over, &cache_cache.num);
1449 if (cache_cache.num)
1450 break;
1451 }
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02001452 BUG_ON(!cache_cache.num);
Jack Steiner07ed76b2006-03-07 21:55:46 -08001453 cache_cache.gfporder = order;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001454 cache_cache.colour = left_over / cache_cache.colour_off;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001455 cache_cache.slab_size = ALIGN(cache_cache.num * sizeof(kmem_bufctl_t) +
1456 sizeof(struct slab), cache_line_size());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457
1458 /* 2+3) create the kmalloc caches */
1459 sizes = malloc_sizes;
1460 names = cache_names;
1461
Andrew Mortona737b3e2006-03-22 00:08:11 -08001462 /*
1463 * Initialize the caches that provide memory for the array cache and the
1464 * kmem_list3 structures first. Without this, further allocations will
1465 * bug.
Christoph Lametere498be72005-09-09 13:03:32 -07001466 */
1467
1468 sizes[INDEX_AC].cs_cachep = kmem_cache_create(names[INDEX_AC].name,
Andrew Mortona737b3e2006-03-22 00:08:11 -08001469 sizes[INDEX_AC].cs_size,
1470 ARCH_KMALLOC_MINALIGN,
1471 ARCH_KMALLOC_FLAGS|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09001472 NULL);
Christoph Lametere498be72005-09-09 13:03:32 -07001473
Andrew Mortona737b3e2006-03-22 00:08:11 -08001474 if (INDEX_AC != INDEX_L3) {
Christoph Lametere498be72005-09-09 13:03:32 -07001475 sizes[INDEX_L3].cs_cachep =
Andrew Mortona737b3e2006-03-22 00:08:11 -08001476 kmem_cache_create(names[INDEX_L3].name,
1477 sizes[INDEX_L3].cs_size,
1478 ARCH_KMALLOC_MINALIGN,
1479 ARCH_KMALLOC_FLAGS|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09001480 NULL);
Andrew Mortona737b3e2006-03-22 00:08:11 -08001481 }
Christoph Lametere498be72005-09-09 13:03:32 -07001482
Ingo Molnare0a42722006-06-23 02:03:46 -07001483 slab_early_init = 0;
1484
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 while (sizes->cs_size != ULONG_MAX) {
Christoph Lametere498be72005-09-09 13:03:32 -07001486 /*
1487 * For performance, all the general caches are L1 aligned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 * This should be particularly beneficial on SMP boxes, as it
1489 * eliminates "false sharing".
1490 * Note for systems short on memory removing the alignment will
Christoph Lametere498be72005-09-09 13:03:32 -07001491 * allow tighter packing of the smaller caches.
1492 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08001493 if (!sizes->cs_cachep) {
Christoph Lametere498be72005-09-09 13:03:32 -07001494 sizes->cs_cachep = kmem_cache_create(names->name,
Andrew Mortona737b3e2006-03-22 00:08:11 -08001495 sizes->cs_size,
1496 ARCH_KMALLOC_MINALIGN,
1497 ARCH_KMALLOC_FLAGS|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09001498 NULL);
Andrew Mortona737b3e2006-03-22 00:08:11 -08001499 }
Christoph Lameter4b51d662007-02-10 01:43:10 -08001500#ifdef CONFIG_ZONE_DMA
1501 sizes->cs_dmacachep = kmem_cache_create(
1502 names->name_dma,
Andrew Mortona737b3e2006-03-22 00:08:11 -08001503 sizes->cs_size,
1504 ARCH_KMALLOC_MINALIGN,
1505 ARCH_KMALLOC_FLAGS|SLAB_CACHE_DMA|
1506 SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09001507 NULL);
Christoph Lameter4b51d662007-02-10 01:43:10 -08001508#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509 sizes++;
1510 names++;
1511 }
1512 /* 4) Replace the bootstrap head arrays */
1513 {
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001514 struct array_cache *ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001515
Pekka Enberg83b519e2009-06-10 19:40:04 +03001516 ptr = kmalloc(sizeof(struct arraycache_init), GFP_NOWAIT);
Christoph Lametere498be72005-09-09 13:03:32 -07001517
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001518 BUG_ON(cpu_cache_get(&cache_cache) != &initarray_cache.cache);
1519 memcpy(ptr, cpu_cache_get(&cache_cache),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001520 sizeof(struct arraycache_init));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001521 /*
1522 * Do not assume that spinlocks can be initialized via memcpy:
1523 */
1524 spin_lock_init(&ptr->lock);
1525
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526 cache_cache.array[smp_processor_id()] = ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001527
Pekka Enberg83b519e2009-06-10 19:40:04 +03001528 ptr = kmalloc(sizeof(struct arraycache_init), GFP_NOWAIT);
Christoph Lametere498be72005-09-09 13:03:32 -07001529
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001530 BUG_ON(cpu_cache_get(malloc_sizes[INDEX_AC].cs_cachep)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001531 != &initarray_generic.cache);
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001532 memcpy(ptr, cpu_cache_get(malloc_sizes[INDEX_AC].cs_cachep),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001533 sizeof(struct arraycache_init));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001534 /*
1535 * Do not assume that spinlocks can be initialized via memcpy:
1536 */
1537 spin_lock_init(&ptr->lock);
1538
Christoph Lametere498be72005-09-09 13:03:32 -07001539 malloc_sizes[INDEX_AC].cs_cachep->array[smp_processor_id()] =
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001540 ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 }
Christoph Lametere498be72005-09-09 13:03:32 -07001542 /* 5) Replace the bootstrap kmem_list3's */
1543 {
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001544 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545
Mel Gorman9c09a952008-01-24 05:49:54 -08001546 for_each_online_node(nid) {
Daniel Yeisleyec1f5ee2008-03-25 23:59:08 +02001547 init_list(&cache_cache, &initkmem_list3[CACHE_CACHE + nid], nid);
Pekka Enberg556a1692008-01-25 08:20:51 +02001548
Christoph Lametere498be72005-09-09 13:03:32 -07001549 init_list(malloc_sizes[INDEX_AC].cs_cachep,
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001550 &initkmem_list3[SIZE_AC + nid], nid);
Christoph Lametere498be72005-09-09 13:03:32 -07001551
1552 if (INDEX_AC != INDEX_L3) {
1553 init_list(malloc_sizes[INDEX_L3].cs_cachep,
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001554 &initkmem_list3[SIZE_L3 + nid], nid);
Christoph Lametere498be72005-09-09 13:03:32 -07001555 }
1556 }
1557 }
1558
Pekka Enberg8429db52009-06-12 15:58:59 +03001559 g_cpucache_up = EARLY;
Pekka Enberg8429db52009-06-12 15:58:59 +03001560}
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -07001561
Pekka Enberg8429db52009-06-12 15:58:59 +03001562void __init kmem_cache_init_late(void)
1563{
1564 struct kmem_cache *cachep;
1565
Pekka Enberg8429db52009-06-12 15:58:59 +03001566 /* 6) resize the head arrays to their final sizes */
1567 mutex_lock(&cache_chain_mutex);
1568 list_for_each_entry(cachep, &cache_chain, next)
1569 if (enable_cpucache(cachep, GFP_NOWAIT))
1570 BUG();
1571 mutex_unlock(&cache_chain_mutex);
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -07001572
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 /* Done! */
1574 g_cpucache_up = FULL;
1575
Pekka Enbergec5a36f2009-06-29 09:57:10 +03001576 /* Annotate slab for lockdep -- annotate the malloc caches */
1577 init_lock_keys();
1578
Andrew Mortona737b3e2006-03-22 00:08:11 -08001579 /*
1580 * Register a cpu startup notifier callback that initializes
1581 * cpu_cache_get for all new cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 */
1583 register_cpu_notifier(&cpucache_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584
Andrew Mortona737b3e2006-03-22 00:08:11 -08001585 /*
1586 * The reap timers are started later, with a module init call: That part
1587 * of the kernel is not yet operational.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 */
1589}
1590
1591static int __init cpucache_init(void)
1592{
1593 int cpu;
1594
Andrew Mortona737b3e2006-03-22 00:08:11 -08001595 /*
1596 * Register the timers that return unneeded pages to the page allocator
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 */
Christoph Lametere498be72005-09-09 13:03:32 -07001598 for_each_online_cpu(cpu)
Andrew Mortona737b3e2006-03-22 00:08:11 -08001599 start_cpu_timer(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 return 0;
1601}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602__initcall(cpucache_init);
1603
1604/*
1605 * Interface to system's page allocator. No need to hold the cache-lock.
1606 *
1607 * If we requested dmaable memory, we will get it. Even if we
1608 * did not request dmaable memory, we might get it, but that
1609 * would be relatively rare and ignorable.
1610 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001611static void *kmem_getpages(struct kmem_cache *cachep, gfp_t flags, int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612{
1613 struct page *page;
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001614 int nr_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 int i;
1616
Luke Yangd6fef9d2006-04-10 22:52:56 -07001617#ifndef CONFIG_MMU
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001618 /*
1619 * Nommu uses slab's for process anonymous memory allocations, and thus
1620 * requires __GFP_COMP to properly refcount higher order allocations
Luke Yangd6fef9d2006-04-10 22:52:56 -07001621 */
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001622 flags |= __GFP_COMP;
Luke Yangd6fef9d2006-04-10 22:52:56 -07001623#endif
Christoph Lameter765c4502006-09-27 01:50:08 -07001624
Christoph Lameter3c517a62006-12-06 20:33:29 -08001625 flags |= cachep->gfpflags;
Mel Gormane12ba742007-10-16 01:25:52 -07001626 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1627 flags |= __GFP_RECLAIMABLE;
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001628
Linus Torvalds517d0862009-06-16 19:50:13 -07001629 page = alloc_pages_exact_node(nodeid, flags | __GFP_NOTRACK, cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 if (!page)
1631 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001633 nr_pages = (1 << cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
Christoph Lameter972d1a72006-09-25 23:31:51 -07001635 add_zone_page_state(page_zone(page),
1636 NR_SLAB_RECLAIMABLE, nr_pages);
1637 else
1638 add_zone_page_state(page_zone(page),
1639 NR_SLAB_UNRECLAIMABLE, nr_pages);
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001640 for (i = 0; i < nr_pages; i++)
1641 __SetPageSlab(page + i);
Pekka Enbergc175eea2008-05-09 20:35:53 +02001642
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001643 if (kmemcheck_enabled && !(cachep->flags & SLAB_NOTRACK)) {
1644 kmemcheck_alloc_shadow(page, cachep->gfporder, flags, nodeid);
1645
1646 if (cachep->ctor)
1647 kmemcheck_mark_uninitialized_pages(page, nr_pages);
1648 else
1649 kmemcheck_mark_unallocated_pages(page, nr_pages);
1650 }
Pekka Enbergc175eea2008-05-09 20:35:53 +02001651
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001652 return page_address(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653}
1654
1655/*
1656 * Interface to system's page release.
1657 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001658static void kmem_freepages(struct kmem_cache *cachep, void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001660 unsigned long i = (1 << cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 struct page *page = virt_to_page(addr);
1662 const unsigned long nr_freed = i;
1663
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001664 kmemcheck_free_shadow(page, cachep->gfporder);
Pekka Enbergc175eea2008-05-09 20:35:53 +02001665
Christoph Lameter972d1a72006-09-25 23:31:51 -07001666 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1667 sub_zone_page_state(page_zone(page),
1668 NR_SLAB_RECLAIMABLE, nr_freed);
1669 else
1670 sub_zone_page_state(page_zone(page),
1671 NR_SLAB_UNRECLAIMABLE, nr_freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 while (i--) {
Nick Pigginf205b2f2006-03-22 00:08:02 -08001673 BUG_ON(!PageSlab(page));
1674 __ClearPageSlab(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 page++;
1676 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 if (current->reclaim_state)
1678 current->reclaim_state->reclaimed_slab += nr_freed;
1679 free_pages((unsigned long)addr, cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680}
1681
1682static void kmem_rcu_free(struct rcu_head *head)
1683{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001684 struct slab_rcu *slab_rcu = (struct slab_rcu *)head;
Pekka Enberg343e0d72006-02-01 03:05:50 -08001685 struct kmem_cache *cachep = slab_rcu->cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686
1687 kmem_freepages(cachep, slab_rcu->addr);
1688 if (OFF_SLAB(cachep))
1689 kmem_cache_free(cachep->slabp_cache, slab_rcu);
1690}
1691
1692#if DEBUG
1693
1694#ifdef CONFIG_DEBUG_PAGEALLOC
Pekka Enberg343e0d72006-02-01 03:05:50 -08001695static void store_stackinfo(struct kmem_cache *cachep, unsigned long *addr,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001696 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697{
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001698 int size = obj_size(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001700 addr = (unsigned long *)&((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001702 if (size < 5 * sizeof(unsigned long))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 return;
1704
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001705 *addr++ = 0x12345678;
1706 *addr++ = caller;
1707 *addr++ = smp_processor_id();
1708 size -= 3 * sizeof(unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 {
1710 unsigned long *sptr = &caller;
1711 unsigned long svalue;
1712
1713 while (!kstack_end(sptr)) {
1714 svalue = *sptr++;
1715 if (kernel_text_address(svalue)) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001716 *addr++ = svalue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 size -= sizeof(unsigned long);
1718 if (size <= sizeof(unsigned long))
1719 break;
1720 }
1721 }
1722
1723 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001724 *addr++ = 0x87654321;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725}
1726#endif
1727
Pekka Enberg343e0d72006-02-01 03:05:50 -08001728static void poison_obj(struct kmem_cache *cachep, void *addr, unsigned char val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729{
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001730 int size = obj_size(cachep);
1731 addr = &((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732
1733 memset(addr, val, size);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001734 *(unsigned char *)(addr + size - 1) = POISON_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735}
1736
1737static void dump_line(char *data, int offset, int limit)
1738{
1739 int i;
Dave Jonesaa83aa42006-09-29 01:59:51 -07001740 unsigned char error = 0;
1741 int bad_count = 0;
1742
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 printk(KERN_ERR "%03x:", offset);
Dave Jonesaa83aa42006-09-29 01:59:51 -07001744 for (i = 0; i < limit; i++) {
1745 if (data[offset + i] != POISON_FREE) {
1746 error = data[offset + i];
1747 bad_count++;
1748 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001749 printk(" %02x", (unsigned char)data[offset + i]);
Dave Jonesaa83aa42006-09-29 01:59:51 -07001750 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 printk("\n");
Dave Jonesaa83aa42006-09-29 01:59:51 -07001752
1753 if (bad_count == 1) {
1754 error ^= POISON_FREE;
1755 if (!(error & (error - 1))) {
1756 printk(KERN_ERR "Single bit error detected. Probably "
1757 "bad RAM.\n");
1758#ifdef CONFIG_X86
1759 printk(KERN_ERR "Run memtest86+ or a similar memory "
1760 "test tool.\n");
1761#else
1762 printk(KERN_ERR "Run a memory test tool.\n");
1763#endif
1764 }
1765 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766}
1767#endif
1768
1769#if DEBUG
1770
Pekka Enberg343e0d72006-02-01 03:05:50 -08001771static void print_objinfo(struct kmem_cache *cachep, void *objp, int lines)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772{
1773 int i, size;
1774 char *realobj;
1775
1776 if (cachep->flags & SLAB_RED_ZONE) {
David Woodhouseb46b8f12007-05-08 00:22:59 -07001777 printk(KERN_ERR "Redzone: 0x%llx/0x%llx.\n",
Andrew Mortona737b3e2006-03-22 00:08:11 -08001778 *dbg_redzone1(cachep, objp),
1779 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 }
1781
1782 if (cachep->flags & SLAB_STORE_USER) {
1783 printk(KERN_ERR "Last user: [<%p>]",
Andrew Mortona737b3e2006-03-22 00:08:11 -08001784 *dbg_userword(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 print_symbol("(%s)",
Andrew Mortona737b3e2006-03-22 00:08:11 -08001786 (unsigned long)*dbg_userword(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 printk("\n");
1788 }
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001789 realobj = (char *)objp + obj_offset(cachep);
1790 size = obj_size(cachep);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001791 for (i = 0; i < size && lines; i += 16, lines--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 int limit;
1793 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001794 if (i + limit > size)
1795 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 dump_line(realobj, i, limit);
1797 }
1798}
1799
Pekka Enberg343e0d72006-02-01 03:05:50 -08001800static void check_poison_obj(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801{
1802 char *realobj;
1803 int size, i;
1804 int lines = 0;
1805
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001806 realobj = (char *)objp + obj_offset(cachep);
1807 size = obj_size(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001809 for (i = 0; i < size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 char exp = POISON_FREE;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001811 if (i == size - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 exp = POISON_END;
1813 if (realobj[i] != exp) {
1814 int limit;
1815 /* Mismatch ! */
1816 /* Print header */
1817 if (lines == 0) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001818 printk(KERN_ERR
David Howellse94a40c2007-04-02 23:46:28 +01001819 "Slab corruption: %s start=%p, len=%d\n",
1820 cachep->name, realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 print_objinfo(cachep, objp, 0);
1822 }
1823 /* Hexdump the affected line */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001824 i = (i / 16) * 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001826 if (i + limit > size)
1827 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 dump_line(realobj, i, limit);
1829 i += 16;
1830 lines++;
1831 /* Limit to 5 lines */
1832 if (lines > 5)
1833 break;
1834 }
1835 }
1836 if (lines != 0) {
1837 /* Print some data about the neighboring objects, if they
1838 * exist:
1839 */
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08001840 struct slab *slabp = virt_to_slab(objp);
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001841 unsigned int objnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001843 objnr = obj_to_index(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 if (objnr) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001845 objp = index_to_obj(cachep, slabp, objnr - 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001846 realobj = (char *)objp + obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 printk(KERN_ERR "Prev obj: start=%p, len=%d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001848 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 print_objinfo(cachep, objp, 2);
1850 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001851 if (objnr + 1 < cachep->num) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001852 objp = index_to_obj(cachep, slabp, objnr + 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001853 realobj = (char *)objp + obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 printk(KERN_ERR "Next obj: start=%p, len=%d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001855 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 print_objinfo(cachep, objp, 2);
1857 }
1858 }
1859}
1860#endif
1861
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862#if DEBUG
Rabin Vincente79aec22008-07-04 00:40:32 +05301863static void slab_destroy_debugcheck(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001864{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 int i;
1866 for (i = 0; i < cachep->num; i++) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001867 void *objp = index_to_obj(cachep, slabp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868
1869 if (cachep->flags & SLAB_POISON) {
1870#ifdef CONFIG_DEBUG_PAGEALLOC
Andrew Mortona737b3e2006-03-22 00:08:11 -08001871 if (cachep->buffer_size % PAGE_SIZE == 0 &&
1872 OFF_SLAB(cachep))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001873 kernel_map_pages(virt_to_page(objp),
Andrew Mortona737b3e2006-03-22 00:08:11 -08001874 cachep->buffer_size / PAGE_SIZE, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 else
1876 check_poison_obj(cachep, objp);
1877#else
1878 check_poison_obj(cachep, objp);
1879#endif
1880 }
1881 if (cachep->flags & SLAB_RED_ZONE) {
1882 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
1883 slab_error(cachep, "start of a freed object "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001884 "was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
1886 slab_error(cachep, "end of a freed object "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001887 "was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 }
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001890}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891#else
Rabin Vincente79aec22008-07-04 00:40:32 +05301892static void slab_destroy_debugcheck(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001893{
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001894}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895#endif
1896
Randy Dunlap911851e2006-03-22 00:08:14 -08001897/**
1898 * slab_destroy - destroy and release all objects in a slab
1899 * @cachep: cache pointer being destroyed
1900 * @slabp: slab pointer being destroyed
1901 *
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001902 * Destroy all the objs in a slab, and release the mem back to the system.
Andrew Mortona737b3e2006-03-22 00:08:11 -08001903 * Before calling the slab must have been unlinked from the cache. The
1904 * cache-lock is not held/needed.
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001905 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001906static void slab_destroy(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001907{
1908 void *addr = slabp->s_mem - slabp->colouroff;
1909
Rabin Vincente79aec22008-07-04 00:40:32 +05301910 slab_destroy_debugcheck(cachep, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 if (unlikely(cachep->flags & SLAB_DESTROY_BY_RCU)) {
1912 struct slab_rcu *slab_rcu;
1913
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001914 slab_rcu = (struct slab_rcu *)slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 slab_rcu->cachep = cachep;
1916 slab_rcu->addr = addr;
1917 call_rcu(&slab_rcu->head, kmem_rcu_free);
1918 } else {
1919 kmem_freepages(cachep, addr);
Ingo Molnar873623d2006-07-13 14:44:38 +02001920 if (OFF_SLAB(cachep))
1921 kmem_cache_free(cachep->slabp_cache, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 }
1923}
1924
Christoph Lameter117f6eb2006-09-25 23:31:37 -07001925static void __kmem_cache_destroy(struct kmem_cache *cachep)
1926{
1927 int i;
1928 struct kmem_list3 *l3;
1929
1930 for_each_online_cpu(i)
1931 kfree(cachep->array[i]);
1932
1933 /* NUMA: free the list3 structures */
1934 for_each_online_node(i) {
1935 l3 = cachep->nodelists[i];
1936 if (l3) {
1937 kfree(l3->shared);
1938 free_alien_cache(l3->alien);
1939 kfree(l3);
1940 }
1941 }
1942 kmem_cache_free(&cache_cache, cachep);
1943}
1944
1945
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946/**
Randy.Dunlapa70773d2006-02-01 03:05:52 -08001947 * calculate_slab_order - calculate size (page order) of slabs
1948 * @cachep: pointer to the cache that is being created
1949 * @size: size of objects to be created in this cache.
1950 * @align: required alignment for the objects.
1951 * @flags: slab allocation flags
1952 *
1953 * Also calculates the number of objects per slab.
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001954 *
1955 * This could be made much more intelligent. For now, try to avoid using
1956 * high order pages for slabs. When the gfp() functions are more friendly
1957 * towards high-order requests, this should be changed.
1958 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08001959static size_t calculate_slab_order(struct kmem_cache *cachep,
Randy Dunlapee13d782006-02-01 03:05:53 -08001960 size_t size, size_t align, unsigned long flags)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001961{
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02001962 unsigned long offslab_limit;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001963 size_t left_over = 0;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001964 int gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001965
Christoph Lameter0aa817f2007-05-16 22:11:01 -07001966 for (gfporder = 0; gfporder <= KMALLOC_MAX_ORDER; gfporder++) {
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001967 unsigned int num;
1968 size_t remainder;
1969
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001970 cache_estimate(gfporder, size, align, flags, &remainder, &num);
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001971 if (!num)
1972 continue;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001973
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02001974 if (flags & CFLGS_OFF_SLAB) {
1975 /*
1976 * Max number of objs-per-slab for caches which
1977 * use off-slab slabs. Needed to avoid a possible
1978 * looping condition in cache_grow().
1979 */
1980 offslab_limit = size - sizeof(struct slab);
1981 offslab_limit /= sizeof(kmem_bufctl_t);
1982
1983 if (num > offslab_limit)
1984 break;
1985 }
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001986
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001987 /* Found something acceptable - save it away */
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001988 cachep->num = num;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001989 cachep->gfporder = gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001990 left_over = remainder;
1991
1992 /*
Linus Torvaldsf78bb8a2006-03-08 10:33:05 -08001993 * A VFS-reclaimable slab tends to have most allocations
1994 * as GFP_NOFS and we really don't want to have to be allocating
1995 * higher-order pages when we are unable to shrink dcache.
1996 */
1997 if (flags & SLAB_RECLAIM_ACCOUNT)
1998 break;
1999
2000 /*
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002001 * Large number of objects is good, but very large slabs are
2002 * currently bad for the gfp()s.
2003 */
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002004 if (gfporder >= slab_break_gfp_order)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002005 break;
2006
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002007 /*
2008 * Acceptable internal fragmentation?
2009 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002010 if (left_over * 8 <= (PAGE_SIZE << gfporder))
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002011 break;
2012 }
2013 return left_over;
2014}
2015
Pekka Enberg83b519e2009-06-10 19:40:04 +03002016static int __init_refok setup_cpu_cache(struct kmem_cache *cachep, gfp_t gfp)
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002017{
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002018 if (g_cpucache_up == FULL)
Pekka Enberg83b519e2009-06-10 19:40:04 +03002019 return enable_cpucache(cachep, gfp);
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002020
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002021 if (g_cpucache_up == NONE) {
2022 /*
2023 * Note: the first kmem_cache_create must create the cache
2024 * that's used by kmalloc(24), otherwise the creation of
2025 * further caches will BUG().
2026 */
2027 cachep->array[smp_processor_id()] = &initarray_generic.cache;
2028
2029 /*
2030 * If the cache that's used by kmalloc(sizeof(kmem_list3)) is
2031 * the first cache, then we need to set up all its list3s,
2032 * otherwise the creation of further caches will BUG().
2033 */
2034 set_up_list3s(cachep, SIZE_AC);
2035 if (INDEX_AC == INDEX_L3)
2036 g_cpucache_up = PARTIAL_L3;
2037 else
2038 g_cpucache_up = PARTIAL_AC;
2039 } else {
2040 cachep->array[smp_processor_id()] =
Pekka Enberg83b519e2009-06-10 19:40:04 +03002041 kmalloc(sizeof(struct arraycache_init), gfp);
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002042
2043 if (g_cpucache_up == PARTIAL_AC) {
2044 set_up_list3s(cachep, SIZE_L3);
2045 g_cpucache_up = PARTIAL_L3;
2046 } else {
2047 int node;
Pekka Enberg556a1692008-01-25 08:20:51 +02002048 for_each_online_node(node) {
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002049 cachep->nodelists[node] =
2050 kmalloc_node(sizeof(struct kmem_list3),
Pekka Enbergeb91f1d2009-06-12 14:56:09 +03002051 gfp, node);
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002052 BUG_ON(!cachep->nodelists[node]);
2053 kmem_list3_init(cachep->nodelists[node]);
2054 }
2055 }
2056 }
2057 cachep->nodelists[numa_node_id()]->next_reap =
2058 jiffies + REAPTIMEOUT_LIST3 +
2059 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
2060
2061 cpu_cache_get(cachep)->avail = 0;
2062 cpu_cache_get(cachep)->limit = BOOT_CPUCACHE_ENTRIES;
2063 cpu_cache_get(cachep)->batchcount = 1;
2064 cpu_cache_get(cachep)->touched = 0;
2065 cachep->batchcount = 1;
2066 cachep->limit = BOOT_CPUCACHE_ENTRIES;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002067 return 0;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002068}
2069
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002070/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071 * kmem_cache_create - Create a cache.
2072 * @name: A string which is used in /proc/slabinfo to identify this cache.
2073 * @size: The size of objects to be created in this cache.
2074 * @align: The required alignment for the objects.
2075 * @flags: SLAB flags
2076 * @ctor: A constructor for the objects.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 *
2078 * Returns a ptr to the cache on success, NULL on failure.
2079 * Cannot be called within a int, but can be interrupted.
Paul Mundt20c2df82007-07-20 10:11:58 +09002080 * The @ctor is run when new pages are allocated by the cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 *
2082 * @name must be valid until the cache is destroyed. This implies that
Andrew Mortona737b3e2006-03-22 00:08:11 -08002083 * the module calling this has to destroy the cache before getting unloaded.
Catalin Marinas249da162008-11-21 12:56:22 +00002084 * Note that kmem_cache_name() is not guaranteed to return the same pointer,
2085 * therefore applications must manage it themselves.
Andrew Mortona737b3e2006-03-22 00:08:11 -08002086 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 * The flags are
2088 *
2089 * %SLAB_POISON - Poison the slab with a known test pattern (a5a5a5a5)
2090 * to catch references to uninitialised memory.
2091 *
2092 * %SLAB_RED_ZONE - Insert `Red' zones around the allocated memory to check
2093 * for buffer overruns.
2094 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002095 * %SLAB_HWCACHE_ALIGN - Align the objects in this cache to a hardware
2096 * cacheline. This can be beneficial if you're counting cycles as closely
2097 * as davem.
2098 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002099struct kmem_cache *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100kmem_cache_create (const char *name, size_t size, size_t align,
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002101 unsigned long flags, void (*ctor)(void *))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002102{
2103 size_t left_over, slab_size, ralign;
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07002104 struct kmem_cache *cachep = NULL, *pc;
Pekka Enberg83b519e2009-06-10 19:40:04 +03002105 gfp_t gfp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002106
2107 /*
2108 * Sanity checks... these are all serious usage bugs.
2109 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002110 if (!name || in_interrupt() || (size < BYTES_PER_WORD) ||
Paul Mundt20c2df82007-07-20 10:11:58 +09002111 size > KMALLOC_MAX_SIZE) {
Harvey Harrisond40cee22008-04-30 00:55:07 -07002112 printk(KERN_ERR "%s: Early error in slab %s\n", __func__,
Andrew Mortona737b3e2006-03-22 00:08:11 -08002113 name);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002114 BUG();
2115 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116
Ravikiran G Thirumalaif0188f42006-02-10 01:51:13 -08002117 /*
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002118 * We use cache_chain_mutex to ensure a consistent view of
Rusty Russell174596a2009-01-01 10:12:29 +10302119 * cpu_online_mask as well. Please see cpuup_callback
Ravikiran G Thirumalaif0188f42006-02-10 01:51:13 -08002120 */
Pekka Enberg83b519e2009-06-10 19:40:04 +03002121 if (slab_is_available()) {
2122 get_online_cpus();
2123 mutex_lock(&cache_chain_mutex);
2124 }
Andrew Morton4f12bb42005-11-07 00:58:00 -08002125
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07002126 list_for_each_entry(pc, &cache_chain, next) {
Andrew Morton4f12bb42005-11-07 00:58:00 -08002127 char tmp;
2128 int res;
2129
2130 /*
2131 * This happens when the module gets unloaded and doesn't
2132 * destroy its slab cache and no-one else reuses the vmalloc
2133 * area of the module. Print a warning.
2134 */
Andrew Morton138ae662006-12-06 20:36:41 -08002135 res = probe_kernel_address(pc->name, tmp);
Andrew Morton4f12bb42005-11-07 00:58:00 -08002136 if (res) {
matzeb4169522007-05-06 14:49:52 -07002137 printk(KERN_ERR
2138 "SLAB: cache with size %d has lost its name\n",
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002139 pc->buffer_size);
Andrew Morton4f12bb42005-11-07 00:58:00 -08002140 continue;
2141 }
2142
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002143 if (!strcmp(pc->name, name)) {
matzeb4169522007-05-06 14:49:52 -07002144 printk(KERN_ERR
2145 "kmem_cache_create: duplicate cache %s\n", name);
Andrew Morton4f12bb42005-11-07 00:58:00 -08002146 dump_stack();
2147 goto oops;
2148 }
2149 }
2150
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151#if DEBUG
2152 WARN_ON(strchr(name, ' ')); /* It confuses parsers */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153#if FORCED_DEBUG
2154 /*
2155 * Enable redzoning and last user accounting, except for caches with
2156 * large objects, if the increased size would increase the object size
2157 * above the next power of two: caches with object sizes just above a
2158 * power of two have a significant amount of internal fragmentation.
2159 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002160 if (size < 4096 || fls(size - 1) == fls(size-1 + REDZONE_ALIGN +
2161 2 * sizeof(unsigned long long)))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002162 flags |= SLAB_RED_ZONE | SLAB_STORE_USER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 if (!(flags & SLAB_DESTROY_BY_RCU))
2164 flags |= SLAB_POISON;
2165#endif
2166 if (flags & SLAB_DESTROY_BY_RCU)
2167 BUG_ON(flags & SLAB_POISON);
2168#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 /*
Andrew Mortona737b3e2006-03-22 00:08:11 -08002170 * Always checks flags, a caller might be expecting debug support which
2171 * isn't available.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 */
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002173 BUG_ON(flags & ~CREATE_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174
Andrew Mortona737b3e2006-03-22 00:08:11 -08002175 /*
2176 * Check that size is in terms of words. This is needed to avoid
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 * unaligned accesses for some archs when redzoning is used, and makes
2178 * sure any on-slab bufctl's are also correctly aligned.
2179 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002180 if (size & (BYTES_PER_WORD - 1)) {
2181 size += (BYTES_PER_WORD - 1);
2182 size &= ~(BYTES_PER_WORD - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 }
2184
Andrew Mortona737b3e2006-03-22 00:08:11 -08002185 /* calculate the final buffer alignment: */
2186
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187 /* 1) arch recommendation: can be overridden for debug */
2188 if (flags & SLAB_HWCACHE_ALIGN) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002189 /*
2190 * Default alignment: as specified by the arch code. Except if
2191 * an object is really small, then squeeze multiple objects into
2192 * one cacheline.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 */
2194 ralign = cache_line_size();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002195 while (size <= ralign / 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 ralign /= 2;
2197 } else {
2198 ralign = BYTES_PER_WORD;
2199 }
Pekka Enbergca5f9702006-09-25 23:31:25 -07002200
2201 /*
David Woodhouse87a927c2007-07-04 21:26:44 -04002202 * Redzoning and user store require word alignment or possibly larger.
2203 * Note this will be overridden by architecture or caller mandated
2204 * alignment if either is greater than BYTES_PER_WORD.
Pekka Enbergca5f9702006-09-25 23:31:25 -07002205 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002206 if (flags & SLAB_STORE_USER)
2207 ralign = BYTES_PER_WORD;
2208
2209 if (flags & SLAB_RED_ZONE) {
2210 ralign = REDZONE_ALIGN;
2211 /* If redzoning, ensure that the second redzone is suitably
2212 * aligned, by adjusting the object size accordingly. */
2213 size += REDZONE_ALIGN - 1;
2214 size &= ~(REDZONE_ALIGN - 1);
2215 }
Pekka Enbergca5f9702006-09-25 23:31:25 -07002216
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002217 /* 2) arch mandated alignment */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 if (ralign < ARCH_SLAB_MINALIGN) {
2219 ralign = ARCH_SLAB_MINALIGN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 }
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002221 /* 3) caller mandated alignment */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 if (ralign < align) {
2223 ralign = align;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 }
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002225 /* disable debug if necessary */
David Woodhouseb46b8f12007-05-08 00:22:59 -07002226 if (ralign > __alignof__(unsigned long long))
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002227 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002228 /*
Pekka Enbergca5f9702006-09-25 23:31:25 -07002229 * 4) Store it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 */
2231 align = ralign;
2232
Pekka Enberg83b519e2009-06-10 19:40:04 +03002233 if (slab_is_available())
2234 gfp = GFP_KERNEL;
2235 else
2236 gfp = GFP_NOWAIT;
2237
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 /* Get cache's description obj. */
Pekka Enberg83b519e2009-06-10 19:40:04 +03002239 cachep = kmem_cache_zalloc(&cache_cache, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 if (!cachep)
Andrew Morton4f12bb42005-11-07 00:58:00 -08002241 goto oops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242
2243#if DEBUG
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002244 cachep->obj_size = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245
Pekka Enbergca5f9702006-09-25 23:31:25 -07002246 /*
2247 * Both debugging options require word-alignment which is calculated
2248 * into align above.
2249 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 if (flags & SLAB_RED_ZONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 /* add space for red zone words */
David Woodhouseb46b8f12007-05-08 00:22:59 -07002252 cachep->obj_offset += sizeof(unsigned long long);
2253 size += 2 * sizeof(unsigned long long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002254 }
2255 if (flags & SLAB_STORE_USER) {
Pekka Enbergca5f9702006-09-25 23:31:25 -07002256 /* user store requires one word storage behind the end of
David Woodhouse87a927c2007-07-04 21:26:44 -04002257 * the real object. But if the second red zone needs to be
2258 * aligned to 64 bits, we must allow that much space.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002260 if (flags & SLAB_RED_ZONE)
2261 size += REDZONE_ALIGN;
2262 else
2263 size += BYTES_PER_WORD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 }
2265#if FORCED_DEBUG && defined(CONFIG_DEBUG_PAGEALLOC)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002266 if (size >= malloc_sizes[INDEX_L3 + 1].cs_size
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002267 && cachep->obj_size > cache_line_size() && size < PAGE_SIZE) {
2268 cachep->obj_offset += PAGE_SIZE - size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 size = PAGE_SIZE;
2270 }
2271#endif
2272#endif
2273
Ingo Molnare0a42722006-06-23 02:03:46 -07002274 /*
2275 * Determine if the slab management is 'on' or 'off' slab.
2276 * (bootstrapping cannot cope with offslab caches so don't do
Catalin Marinase7cb55b2009-10-28 13:33:08 +00002277 * it too early on. Always use on-slab management when
2278 * SLAB_NOLEAKTRACE to avoid recursive calls into kmemleak)
Ingo Molnare0a42722006-06-23 02:03:46 -07002279 */
Catalin Marinase7cb55b2009-10-28 13:33:08 +00002280 if ((size >= (PAGE_SIZE >> 3)) && !slab_early_init &&
2281 !(flags & SLAB_NOLEAKTRACE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 /*
2283 * Size is large, assume best to place the slab management obj
2284 * off-slab (should allow better packing of objs).
2285 */
2286 flags |= CFLGS_OFF_SLAB;
2287
2288 size = ALIGN(size, align);
2289
Linus Torvaldsf78bb8a2006-03-08 10:33:05 -08002290 left_over = calculate_slab_order(cachep, size, align, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291
2292 if (!cachep->num) {
matzeb4169522007-05-06 14:49:52 -07002293 printk(KERN_ERR
2294 "kmem_cache_create: couldn't create cache %s.\n", name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 kmem_cache_free(&cache_cache, cachep);
2296 cachep = NULL;
Andrew Morton4f12bb42005-11-07 00:58:00 -08002297 goto oops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002299 slab_size = ALIGN(cachep->num * sizeof(kmem_bufctl_t)
2300 + sizeof(struct slab), align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301
2302 /*
2303 * If the slab has been placed off-slab, and we have enough space then
2304 * move it on-slab. This is at the expense of any extra colouring.
2305 */
2306 if (flags & CFLGS_OFF_SLAB && left_over >= slab_size) {
2307 flags &= ~CFLGS_OFF_SLAB;
2308 left_over -= slab_size;
2309 }
2310
2311 if (flags & CFLGS_OFF_SLAB) {
2312 /* really off slab. No need for manual alignment */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002313 slab_size =
2314 cachep->num * sizeof(kmem_bufctl_t) + sizeof(struct slab);
Ron Lee67461362009-05-22 04:58:22 +09302315
2316#ifdef CONFIG_PAGE_POISONING
2317 /* If we're going to use the generic kernel_map_pages()
2318 * poisoning, then it's going to smash the contents of
2319 * the redzone and userword anyhow, so switch them off.
2320 */
2321 if (size % PAGE_SIZE == 0 && flags & SLAB_POISON)
2322 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
2323#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 }
2325
2326 cachep->colour_off = cache_line_size();
2327 /* Offset must be a multiple of the alignment. */
2328 if (cachep->colour_off < align)
2329 cachep->colour_off = align;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002330 cachep->colour = left_over / cachep->colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 cachep->slab_size = slab_size;
2332 cachep->flags = flags;
2333 cachep->gfpflags = 0;
Christoph Lameter4b51d662007-02-10 01:43:10 -08002334 if (CONFIG_ZONE_DMA_FLAG && (flags & SLAB_CACHE_DMA))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 cachep->gfpflags |= GFP_DMA;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002336 cachep->buffer_size = size;
Eric Dumazet6a2d7a92006-12-13 00:34:27 -08002337 cachep->reciprocal_buffer_size = reciprocal_value(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002339 if (flags & CFLGS_OFF_SLAB) {
Victor Fuscob2d55072005-09-10 00:26:36 -07002340 cachep->slabp_cache = kmem_find_general_cachep(slab_size, 0u);
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002341 /*
2342 * This is a possibility for one of the malloc_sizes caches.
2343 * But since we go off slab only for object size greater than
2344 * PAGE_SIZE/8, and malloc_sizes gets created in ascending order,
2345 * this should not happen at all.
2346 * But leave a BUG_ON for some lucky dude.
2347 */
Christoph Lameter6cb8f912007-07-17 04:03:22 -07002348 BUG_ON(ZERO_OR_NULL_PTR(cachep->slabp_cache));
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002349 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 cachep->ctor = ctor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351 cachep->name = name;
2352
Pekka Enberg83b519e2009-06-10 19:40:04 +03002353 if (setup_cpu_cache(cachep, gfp)) {
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002354 __kmem_cache_destroy(cachep);
2355 cachep = NULL;
2356 goto oops;
2357 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 /* cache setup completed, link it into the list */
2360 list_add(&cachep->next, &cache_chain);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002361oops:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 if (!cachep && (flags & SLAB_PANIC))
2363 panic("kmem_cache_create(): failed to create slab `%s'\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002364 name);
Pekka Enberg83b519e2009-06-10 19:40:04 +03002365 if (slab_is_available()) {
2366 mutex_unlock(&cache_chain_mutex);
2367 put_online_cpus();
2368 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 return cachep;
2370}
2371EXPORT_SYMBOL(kmem_cache_create);
2372
2373#if DEBUG
2374static void check_irq_off(void)
2375{
2376 BUG_ON(!irqs_disabled());
2377}
2378
2379static void check_irq_on(void)
2380{
2381 BUG_ON(irqs_disabled());
2382}
2383
Pekka Enberg343e0d72006-02-01 03:05:50 -08002384static void check_spinlock_acquired(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385{
2386#ifdef CONFIG_SMP
2387 check_irq_off();
Christoph Lametere498be72005-09-09 13:03:32 -07002388 assert_spin_locked(&cachep->nodelists[numa_node_id()]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389#endif
2390}
Christoph Lametere498be72005-09-09 13:03:32 -07002391
Pekka Enberg343e0d72006-02-01 03:05:50 -08002392static void check_spinlock_acquired_node(struct kmem_cache *cachep, int node)
Christoph Lametere498be72005-09-09 13:03:32 -07002393{
2394#ifdef CONFIG_SMP
2395 check_irq_off();
2396 assert_spin_locked(&cachep->nodelists[node]->list_lock);
2397#endif
2398}
2399
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400#else
2401#define check_irq_off() do { } while(0)
2402#define check_irq_on() do { } while(0)
2403#define check_spinlock_acquired(x) do { } while(0)
Christoph Lametere498be72005-09-09 13:03:32 -07002404#define check_spinlock_acquired_node(x, y) do { } while(0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405#endif
2406
Christoph Lameteraab22072006-03-22 00:09:06 -08002407static void drain_array(struct kmem_cache *cachep, struct kmem_list3 *l3,
2408 struct array_cache *ac,
2409 int force, int node);
2410
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411static void do_drain(void *arg)
2412{
Andrew Mortona737b3e2006-03-22 00:08:11 -08002413 struct kmem_cache *cachep = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 struct array_cache *ac;
Christoph Lameterff694162005-09-22 21:44:02 -07002415 int node = numa_node_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416
2417 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002418 ac = cpu_cache_get(cachep);
Christoph Lameterff694162005-09-22 21:44:02 -07002419 spin_lock(&cachep->nodelists[node]->list_lock);
2420 free_block(cachep, ac->entry, ac->avail, node);
2421 spin_unlock(&cachep->nodelists[node]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 ac->avail = 0;
2423}
2424
Pekka Enberg343e0d72006-02-01 03:05:50 -08002425static void drain_cpu_caches(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426{
Christoph Lametere498be72005-09-09 13:03:32 -07002427 struct kmem_list3 *l3;
2428 int node;
2429
Jens Axboe15c8b6c2008-05-09 09:39:44 +02002430 on_each_cpu(do_drain, cachep, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 check_irq_on();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002432 for_each_online_node(node) {
Christoph Lametere498be72005-09-09 13:03:32 -07002433 l3 = cachep->nodelists[node];
Roland Dreiera4523a82006-05-15 11:41:00 -07002434 if (l3 && l3->alien)
2435 drain_alien_cache(cachep, l3->alien);
2436 }
2437
2438 for_each_online_node(node) {
2439 l3 = cachep->nodelists[node];
2440 if (l3)
Christoph Lameteraab22072006-03-22 00:09:06 -08002441 drain_array(cachep, l3, l3->shared, 1, node);
Christoph Lametere498be72005-09-09 13:03:32 -07002442 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443}
2444
Christoph Lametered11d9e2006-06-30 01:55:45 -07002445/*
2446 * Remove slabs from the list of free slabs.
2447 * Specify the number of slabs to drain in tofree.
2448 *
2449 * Returns the actual number of slabs released.
2450 */
2451static int drain_freelist(struct kmem_cache *cache,
2452 struct kmem_list3 *l3, int tofree)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453{
Christoph Lametered11d9e2006-06-30 01:55:45 -07002454 struct list_head *p;
2455 int nr_freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 struct slab *slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457
Christoph Lametered11d9e2006-06-30 01:55:45 -07002458 nr_freed = 0;
2459 while (nr_freed < tofree && !list_empty(&l3->slabs_free)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460
Christoph Lametered11d9e2006-06-30 01:55:45 -07002461 spin_lock_irq(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07002462 p = l3->slabs_free.prev;
Christoph Lametered11d9e2006-06-30 01:55:45 -07002463 if (p == &l3->slabs_free) {
2464 spin_unlock_irq(&l3->list_lock);
2465 goto out;
2466 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467
Christoph Lametered11d9e2006-06-30 01:55:45 -07002468 slabp = list_entry(p, struct slab, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469#if DEBUG
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002470 BUG_ON(slabp->inuse);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471#endif
2472 list_del(&slabp->list);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002473 /*
2474 * Safe to drop the lock. The slab is no longer linked
2475 * to the cache.
2476 */
2477 l3->free_objects -= cache->num;
Christoph Lametere498be72005-09-09 13:03:32 -07002478 spin_unlock_irq(&l3->list_lock);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002479 slab_destroy(cache, slabp);
2480 nr_freed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 }
Christoph Lametered11d9e2006-06-30 01:55:45 -07002482out:
2483 return nr_freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484}
2485
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002486/* Called with cache_chain_mutex held to protect against cpu hotplug */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002487static int __cache_shrink(struct kmem_cache *cachep)
Christoph Lametere498be72005-09-09 13:03:32 -07002488{
2489 int ret = 0, i = 0;
2490 struct kmem_list3 *l3;
2491
2492 drain_cpu_caches(cachep);
2493
2494 check_irq_on();
2495 for_each_online_node(i) {
2496 l3 = cachep->nodelists[i];
Christoph Lametered11d9e2006-06-30 01:55:45 -07002497 if (!l3)
2498 continue;
2499
2500 drain_freelist(cachep, l3, l3->free_objects);
2501
2502 ret += !list_empty(&l3->slabs_full) ||
2503 !list_empty(&l3->slabs_partial);
Christoph Lametere498be72005-09-09 13:03:32 -07002504 }
2505 return (ret ? 1 : 0);
2506}
2507
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508/**
2509 * kmem_cache_shrink - Shrink a cache.
2510 * @cachep: The cache to shrink.
2511 *
2512 * Releases as many slabs as possible for a cache.
2513 * To help debugging, a zero exit status indicates all slabs were released.
2514 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002515int kmem_cache_shrink(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516{
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002517 int ret;
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002518 BUG_ON(!cachep || in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002520 get_online_cpus();
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002521 mutex_lock(&cache_chain_mutex);
2522 ret = __cache_shrink(cachep);
2523 mutex_unlock(&cache_chain_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002524 put_online_cpus();
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002525 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526}
2527EXPORT_SYMBOL(kmem_cache_shrink);
2528
2529/**
2530 * kmem_cache_destroy - delete a cache
2531 * @cachep: the cache to destroy
2532 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08002533 * Remove a &struct kmem_cache object from the slab cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534 *
2535 * It is expected this function will be called by a module when it is
2536 * unloaded. This will remove the cache completely, and avoid a duplicate
2537 * cache being allocated each time a module is loaded and unloaded, if the
2538 * module doesn't have persistent in-kernel storage across loads and unloads.
2539 *
2540 * The cache must be empty before calling this function.
2541 *
2542 * The caller must guarantee that noone will allocate memory from the cache
2543 * during the kmem_cache_destroy().
2544 */
Alexey Dobriyan133d2052006-09-27 01:49:41 -07002545void kmem_cache_destroy(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546{
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002547 BUG_ON(!cachep || in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 /* Find the cache in the chain of caches. */
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002550 get_online_cpus();
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002551 mutex_lock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 /*
2553 * the chain is never empty, cache_cache is never destroyed
2554 */
2555 list_del(&cachep->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 if (__cache_shrink(cachep)) {
2557 slab_error(cachep, "Can't free all objects");
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002558 list_add(&cachep->next, &cache_chain);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002559 mutex_unlock(&cache_chain_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002560 put_online_cpus();
Alexey Dobriyan133d2052006-09-27 01:49:41 -07002561 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 }
2563
2564 if (unlikely(cachep->flags & SLAB_DESTROY_BY_RCU))
Paul E. McKenney7ed9f7e2009-06-25 12:31:37 -07002565 rcu_barrier();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566
Christoph Lameter117f6eb2006-09-25 23:31:37 -07002567 __kmem_cache_destroy(cachep);
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002568 mutex_unlock(&cache_chain_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002569 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570}
2571EXPORT_SYMBOL(kmem_cache_destroy);
2572
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002573/*
2574 * Get the memory for a slab management obj.
2575 * For a slab cache when the slab descriptor is off-slab, slab descriptors
2576 * always come from malloc_sizes caches. The slab descriptor cannot
2577 * come from the same cache which is getting created because,
2578 * when we are searching for an appropriate cache for these
2579 * descriptors in kmem_cache_create, we search through the malloc_sizes array.
2580 * If we are creating a malloc_sizes cache here it would not be visible to
2581 * kmem_find_general_cachep till the initialization is complete.
2582 * Hence we cannot have slabp_cache same as the original cache.
2583 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002584static struct slab *alloc_slabmgmt(struct kmem_cache *cachep, void *objp,
Ravikiran G Thirumalai5b74ada2006-04-10 22:52:53 -07002585 int colour_off, gfp_t local_flags,
2586 int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587{
2588 struct slab *slabp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002589
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 if (OFF_SLAB(cachep)) {
2591 /* Slab management obj is off-slab. */
Ravikiran G Thirumalai5b74ada2006-04-10 22:52:53 -07002592 slabp = kmem_cache_alloc_node(cachep->slabp_cache,
Pekka Enberg8759ec52008-11-26 10:01:31 +02002593 local_flags, nodeid);
Catalin Marinasd5cff632009-06-11 13:22:40 +01002594 /*
2595 * If the first object in the slab is leaked (it's allocated
2596 * but no one has a reference to it), we want to make sure
2597 * kmemleak does not treat the ->s_mem pointer as a reference
2598 * to the object. Otherwise we will not report the leak.
2599 */
Catalin Marinasc017b4b2009-10-28 13:33:09 +00002600 kmemleak_scan_area(&slabp->list, sizeof(struct list_head),
2601 local_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 if (!slabp)
2603 return NULL;
2604 } else {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002605 slabp = objp + colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 colour_off += cachep->slab_size;
2607 }
2608 slabp->inuse = 0;
2609 slabp->colouroff = colour_off;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002610 slabp->s_mem = objp + colour_off;
Ravikiran G Thirumalai5b74ada2006-04-10 22:52:53 -07002611 slabp->nodeid = nodeid;
Marcin Slusarze51bfd02008-02-10 11:21:54 +01002612 slabp->free = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 return slabp;
2614}
2615
2616static inline kmem_bufctl_t *slab_bufctl(struct slab *slabp)
2617{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002618 return (kmem_bufctl_t *) (slabp + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619}
2620
Pekka Enberg343e0d72006-02-01 03:05:50 -08002621static void cache_init_objs(struct kmem_cache *cachep,
Christoph Lametera35afb82007-05-16 22:10:57 -07002622 struct slab *slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623{
2624 int i;
2625
2626 for (i = 0; i < cachep->num; i++) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002627 void *objp = index_to_obj(cachep, slabp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628#if DEBUG
2629 /* need to poison the objs? */
2630 if (cachep->flags & SLAB_POISON)
2631 poison_obj(cachep, objp, POISON_FREE);
2632 if (cachep->flags & SLAB_STORE_USER)
2633 *dbg_userword(cachep, objp) = NULL;
2634
2635 if (cachep->flags & SLAB_RED_ZONE) {
2636 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2637 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2638 }
2639 /*
Andrew Mortona737b3e2006-03-22 00:08:11 -08002640 * Constructors are not allowed to allocate memory from the same
2641 * cache which they are a constructor for. Otherwise, deadlock.
2642 * They must also be threaded.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643 */
2644 if (cachep->ctor && !(cachep->flags & SLAB_POISON))
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002645 cachep->ctor(objp + obj_offset(cachep));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646
2647 if (cachep->flags & SLAB_RED_ZONE) {
2648 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
2649 slab_error(cachep, "constructor overwrote the"
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002650 " end of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
2652 slab_error(cachep, "constructor overwrote the"
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002653 " start of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654 }
Andrew Mortona737b3e2006-03-22 00:08:11 -08002655 if ((cachep->buffer_size % PAGE_SIZE) == 0 &&
2656 OFF_SLAB(cachep) && cachep->flags & SLAB_POISON)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002657 kernel_map_pages(virt_to_page(objp),
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002658 cachep->buffer_size / PAGE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659#else
2660 if (cachep->ctor)
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002661 cachep->ctor(objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662#endif
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002663 slab_bufctl(slabp)[i] = i + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002665 slab_bufctl(slabp)[i - 1] = BUFCTL_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666}
2667
Pekka Enberg343e0d72006-02-01 03:05:50 -08002668static void kmem_flagcheck(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669{
Christoph Lameter4b51d662007-02-10 01:43:10 -08002670 if (CONFIG_ZONE_DMA_FLAG) {
2671 if (flags & GFP_DMA)
2672 BUG_ON(!(cachep->gfpflags & GFP_DMA));
2673 else
2674 BUG_ON(cachep->gfpflags & GFP_DMA);
2675 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676}
2677
Andrew Mortona737b3e2006-03-22 00:08:11 -08002678static void *slab_get_obj(struct kmem_cache *cachep, struct slab *slabp,
2679 int nodeid)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002680{
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002681 void *objp = index_to_obj(cachep, slabp, slabp->free);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002682 kmem_bufctl_t next;
2683
2684 slabp->inuse++;
2685 next = slab_bufctl(slabp)[slabp->free];
2686#if DEBUG
2687 slab_bufctl(slabp)[slabp->free] = BUFCTL_FREE;
2688 WARN_ON(slabp->nodeid != nodeid);
2689#endif
2690 slabp->free = next;
2691
2692 return objp;
2693}
2694
Andrew Mortona737b3e2006-03-22 00:08:11 -08002695static void slab_put_obj(struct kmem_cache *cachep, struct slab *slabp,
2696 void *objp, int nodeid)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002697{
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002698 unsigned int objnr = obj_to_index(cachep, slabp, objp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002699
2700#if DEBUG
2701 /* Verify that the slab belongs to the intended node */
2702 WARN_ON(slabp->nodeid != nodeid);
2703
Al Viro871751e2006-03-25 03:06:39 -08002704 if (slab_bufctl(slabp)[objnr] + 1 <= SLAB_LIMIT + 1) {
Matthew Dobson78d382d2006-02-01 03:05:47 -08002705 printk(KERN_ERR "slab: double free detected in cache "
Andrew Mortona737b3e2006-03-22 00:08:11 -08002706 "'%s', objp %p\n", cachep->name, objp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002707 BUG();
2708 }
2709#endif
2710 slab_bufctl(slabp)[objnr] = slabp->free;
2711 slabp->free = objnr;
2712 slabp->inuse--;
2713}
2714
Pekka Enberg47768742006-06-23 02:03:07 -07002715/*
2716 * Map pages beginning at addr to the given cache and slab. This is required
2717 * for the slab allocator to be able to lookup the cache and slab of a
2718 * virtual address for kfree, ksize, kmem_ptr_validate, and slab debugging.
2719 */
2720static void slab_map_pages(struct kmem_cache *cache, struct slab *slab,
2721 void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722{
Pekka Enberg47768742006-06-23 02:03:07 -07002723 int nr_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724 struct page *page;
2725
Pekka Enberg47768742006-06-23 02:03:07 -07002726 page = virt_to_page(addr);
Nick Piggin84097512006-03-22 00:08:34 -08002727
Pekka Enberg47768742006-06-23 02:03:07 -07002728 nr_pages = 1;
Nick Piggin84097512006-03-22 00:08:34 -08002729 if (likely(!PageCompound(page)))
Pekka Enberg47768742006-06-23 02:03:07 -07002730 nr_pages <<= cache->gfporder;
2731
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732 do {
Pekka Enberg47768742006-06-23 02:03:07 -07002733 page_set_cache(page, cache);
2734 page_set_slab(page, slab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735 page++;
Pekka Enberg47768742006-06-23 02:03:07 -07002736 } while (--nr_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737}
2738
2739/*
2740 * Grow (by 1) the number of slabs within a cache. This is called by
2741 * kmem_cache_alloc() when there are no active objs left in a cache.
2742 */
Christoph Lameter3c517a62006-12-06 20:33:29 -08002743static int cache_grow(struct kmem_cache *cachep,
2744 gfp_t flags, int nodeid, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002746 struct slab *slabp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002747 size_t offset;
2748 gfp_t local_flags;
Christoph Lametere498be72005-09-09 13:03:32 -07002749 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750
Andrew Mortona737b3e2006-03-22 00:08:11 -08002751 /*
2752 * Be lazy and only check for valid flags here, keeping it out of the
2753 * critical path in kmem_cache_alloc().
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754 */
Christoph Lameter6cb06222007-10-16 01:25:41 -07002755 BUG_ON(flags & GFP_SLAB_BUG_MASK);
2756 local_flags = flags & (GFP_CONSTRAINT_MASK|GFP_RECLAIM_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002758 /* Take the l3 list lock to change the colour_next on this node */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759 check_irq_off();
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002760 l3 = cachep->nodelists[nodeid];
2761 spin_lock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762
2763 /* Get colour for the slab, and cal the next value. */
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002764 offset = l3->colour_next;
2765 l3->colour_next++;
2766 if (l3->colour_next >= cachep->colour)
2767 l3->colour_next = 0;
2768 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002770 offset *= cachep->colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771
2772 if (local_flags & __GFP_WAIT)
2773 local_irq_enable();
2774
2775 /*
2776 * The test for missing atomic flag is performed here, rather than
2777 * the more obvious place, simply to reduce the critical path length
2778 * in kmem_cache_alloc(). If a caller is seriously mis-behaving they
2779 * will eventually be caught here (where it matters).
2780 */
2781 kmem_flagcheck(cachep, flags);
2782
Andrew Mortona737b3e2006-03-22 00:08:11 -08002783 /*
2784 * Get mem for the objs. Attempt to allocate a physical page from
2785 * 'nodeid'.
Christoph Lametere498be72005-09-09 13:03:32 -07002786 */
Christoph Lameter3c517a62006-12-06 20:33:29 -08002787 if (!objp)
Andrew Mortonb8c1c5d2007-07-24 12:02:40 -07002788 objp = kmem_getpages(cachep, local_flags, nodeid);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002789 if (!objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790 goto failed;
2791
2792 /* Get slab management. */
Christoph Lameter3c517a62006-12-06 20:33:29 -08002793 slabp = alloc_slabmgmt(cachep, objp, offset,
Christoph Lameter6cb06222007-10-16 01:25:41 -07002794 local_flags & ~GFP_CONSTRAINT_MASK, nodeid);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002795 if (!slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796 goto opps1;
2797
Pekka Enberg47768742006-06-23 02:03:07 -07002798 slab_map_pages(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799
Christoph Lametera35afb82007-05-16 22:10:57 -07002800 cache_init_objs(cachep, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801
2802 if (local_flags & __GFP_WAIT)
2803 local_irq_disable();
2804 check_irq_off();
Christoph Lametere498be72005-09-09 13:03:32 -07002805 spin_lock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806
2807 /* Make slab active. */
Christoph Lametere498be72005-09-09 13:03:32 -07002808 list_add_tail(&slabp->list, &(l3->slabs_free));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809 STATS_INC_GROWN(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07002810 l3->free_objects += cachep->num;
2811 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812 return 1;
Andrew Mortona737b3e2006-03-22 00:08:11 -08002813opps1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814 kmem_freepages(cachep, objp);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002815failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816 if (local_flags & __GFP_WAIT)
2817 local_irq_disable();
2818 return 0;
2819}
2820
2821#if DEBUG
2822
2823/*
2824 * Perform extra freeing checks:
2825 * - detect bad pointers.
2826 * - POISON/RED_ZONE checking
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827 */
2828static void kfree_debugcheck(const void *objp)
2829{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830 if (!virt_addr_valid(objp)) {
2831 printk(KERN_ERR "kfree_debugcheck: out of range ptr %lxh.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002832 (unsigned long)objp);
2833 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835}
2836
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002837static inline void verify_redzone_free(struct kmem_cache *cache, void *obj)
2838{
David Woodhouseb46b8f12007-05-08 00:22:59 -07002839 unsigned long long redzone1, redzone2;
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002840
2841 redzone1 = *dbg_redzone1(cache, obj);
2842 redzone2 = *dbg_redzone2(cache, obj);
2843
2844 /*
2845 * Redzone is ok.
2846 */
2847 if (redzone1 == RED_ACTIVE && redzone2 == RED_ACTIVE)
2848 return;
2849
2850 if (redzone1 == RED_INACTIVE && redzone2 == RED_INACTIVE)
2851 slab_error(cache, "double free detected");
2852 else
2853 slab_error(cache, "memory outside object was overwritten");
2854
David Woodhouseb46b8f12007-05-08 00:22:59 -07002855 printk(KERN_ERR "%p: redzone 1:0x%llx, redzone 2:0x%llx.\n",
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002856 obj, redzone1, redzone2);
2857}
2858
Pekka Enberg343e0d72006-02-01 03:05:50 -08002859static void *cache_free_debugcheck(struct kmem_cache *cachep, void *objp,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002860 void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861{
2862 struct page *page;
2863 unsigned int objnr;
2864 struct slab *slabp;
2865
Matthew Wilcox80cbd912007-11-29 12:05:13 -07002866 BUG_ON(virt_to_cache(objp) != cachep);
2867
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002868 objp -= obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869 kfree_debugcheck(objp);
Christoph Lameterb49af682007-05-06 14:49:41 -07002870 page = virt_to_head_page(objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871
Pekka Enberg065d41c2005-11-13 16:06:46 -08002872 slabp = page_get_slab(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873
2874 if (cachep->flags & SLAB_RED_ZONE) {
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002875 verify_redzone_free(cachep, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2877 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2878 }
2879 if (cachep->flags & SLAB_STORE_USER)
2880 *dbg_userword(cachep, objp) = caller;
2881
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002882 objnr = obj_to_index(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883
2884 BUG_ON(objnr >= cachep->num);
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002885 BUG_ON(objp != index_to_obj(cachep, slabp, objnr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886
Al Viro871751e2006-03-25 03:06:39 -08002887#ifdef CONFIG_DEBUG_SLAB_LEAK
2888 slab_bufctl(slabp)[objnr] = BUFCTL_FREE;
2889#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890 if (cachep->flags & SLAB_POISON) {
2891#ifdef CONFIG_DEBUG_PAGEALLOC
Andrew Mortona737b3e2006-03-22 00:08:11 -08002892 if ((cachep->buffer_size % PAGE_SIZE)==0 && OFF_SLAB(cachep)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893 store_stackinfo(cachep, objp, (unsigned long)caller);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002894 kernel_map_pages(virt_to_page(objp),
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002895 cachep->buffer_size / PAGE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 } else {
2897 poison_obj(cachep, objp, POISON_FREE);
2898 }
2899#else
2900 poison_obj(cachep, objp, POISON_FREE);
2901#endif
2902 }
2903 return objp;
2904}
2905
Pekka Enberg343e0d72006-02-01 03:05:50 -08002906static void check_slabp(struct kmem_cache *cachep, struct slab *slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907{
2908 kmem_bufctl_t i;
2909 int entries = 0;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002910
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911 /* Check slab's freelist to see if this obj is there. */
2912 for (i = slabp->free; i != BUFCTL_END; i = slab_bufctl(slabp)[i]) {
2913 entries++;
2914 if (entries > cachep->num || i >= cachep->num)
2915 goto bad;
2916 }
2917 if (entries != cachep->num - slabp->inuse) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002918bad:
2919 printk(KERN_ERR "slab: Internal list corruption detected in "
2920 "cache '%s'(%d), slabp %p(%d). Hexdump:\n",
2921 cachep->name, cachep->num, slabp, slabp->inuse);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002922 for (i = 0;
Linus Torvalds264132b2006-03-06 12:10:07 -08002923 i < sizeof(*slabp) + cachep->num * sizeof(kmem_bufctl_t);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002924 i++) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002925 if (i % 16 == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926 printk("\n%03x:", i);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002927 printk(" %02x", ((unsigned char *)slabp)[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928 }
2929 printk("\n");
2930 BUG();
2931 }
2932}
2933#else
2934#define kfree_debugcheck(x) do { } while(0)
2935#define cache_free_debugcheck(x,objp,z) (objp)
2936#define check_slabp(x,y) do { } while(0)
2937#endif
2938
Pekka Enberg343e0d72006-02-01 03:05:50 -08002939static void *cache_alloc_refill(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940{
2941 int batchcount;
2942 struct kmem_list3 *l3;
2943 struct array_cache *ac;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07002944 int node;
2945
Andrew Mortona737b3e2006-03-22 00:08:11 -08002946retry:
Joe Korty6d2144d2008-03-05 15:04:59 -08002947 check_irq_off();
2948 node = numa_node_id();
2949 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950 batchcount = ac->batchcount;
2951 if (!ac->touched && batchcount > BATCHREFILL_LIMIT) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002952 /*
2953 * If there was little recent activity on this cache, then
2954 * perform only a partial refill. Otherwise we could generate
2955 * refill bouncing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956 */
2957 batchcount = BATCHREFILL_LIMIT;
2958 }
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07002959 l3 = cachep->nodelists[node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960
Christoph Lametere498be72005-09-09 13:03:32 -07002961 BUG_ON(ac->avail > 0 || !l3);
2962 spin_lock(&l3->list_lock);
2963
Christoph Lameter3ded1752006-03-25 03:06:44 -08002964 /* See if we can refill from the shared array */
Nick Piggin44b57f12010-01-27 22:27:40 +11002965 if (l3->shared && transfer_objects(ac, l3->shared, batchcount)) {
2966 l3->shared->touched = 1;
Christoph Lameter3ded1752006-03-25 03:06:44 -08002967 goto alloc_done;
Nick Piggin44b57f12010-01-27 22:27:40 +11002968 }
Christoph Lameter3ded1752006-03-25 03:06:44 -08002969
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970 while (batchcount > 0) {
2971 struct list_head *entry;
2972 struct slab *slabp;
2973 /* Get slab alloc is to come from. */
2974 entry = l3->slabs_partial.next;
2975 if (entry == &l3->slabs_partial) {
2976 l3->free_touched = 1;
2977 entry = l3->slabs_free.next;
2978 if (entry == &l3->slabs_free)
2979 goto must_grow;
2980 }
2981
2982 slabp = list_entry(entry, struct slab, list);
2983 check_slabp(cachep, slabp);
2984 check_spinlock_acquired(cachep);
Pekka Enberg714b8172007-05-06 14:49:03 -07002985
2986 /*
2987 * The slab was either on partial or free list so
2988 * there must be at least one object available for
2989 * allocation.
2990 */
roel kluin249b9f32008-10-29 17:18:07 -04002991 BUG_ON(slabp->inuse >= cachep->num);
Pekka Enberg714b8172007-05-06 14:49:03 -07002992
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993 while (slabp->inuse < cachep->num && batchcount--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994 STATS_INC_ALLOCED(cachep);
2995 STATS_INC_ACTIVE(cachep);
2996 STATS_SET_HIGH(cachep);
2997
Matthew Dobson78d382d2006-02-01 03:05:47 -08002998 ac->entry[ac->avail++] = slab_get_obj(cachep, slabp,
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07002999 node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000 }
3001 check_slabp(cachep, slabp);
3002
3003 /* move slabp to correct slabp list: */
3004 list_del(&slabp->list);
3005 if (slabp->free == BUFCTL_END)
3006 list_add(&slabp->list, &l3->slabs_full);
3007 else
3008 list_add(&slabp->list, &l3->slabs_partial);
3009 }
3010
Andrew Mortona737b3e2006-03-22 00:08:11 -08003011must_grow:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012 l3->free_objects -= ac->avail;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003013alloc_done:
Christoph Lametere498be72005-09-09 13:03:32 -07003014 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015
3016 if (unlikely(!ac->avail)) {
3017 int x;
Christoph Lameter3c517a62006-12-06 20:33:29 -08003018 x = cache_grow(cachep, flags | GFP_THISNODE, node, NULL);
Christoph Lametere498be72005-09-09 13:03:32 -07003019
Andrew Mortona737b3e2006-03-22 00:08:11 -08003020 /* cache_grow can reenable interrupts, then ac could change. */
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003021 ac = cpu_cache_get(cachep);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003022 if (!x && ac->avail == 0) /* no objects in sight? abort */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023 return NULL;
3024
Andrew Mortona737b3e2006-03-22 00:08:11 -08003025 if (!ac->avail) /* objects refilled by interrupt? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026 goto retry;
3027 }
3028 ac->touched = 1;
Christoph Lametere498be72005-09-09 13:03:32 -07003029 return ac->entry[--ac->avail];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030}
3031
Andrew Mortona737b3e2006-03-22 00:08:11 -08003032static inline void cache_alloc_debugcheck_before(struct kmem_cache *cachep,
3033 gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034{
3035 might_sleep_if(flags & __GFP_WAIT);
3036#if DEBUG
3037 kmem_flagcheck(cachep, flags);
3038#endif
3039}
3040
3041#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08003042static void *cache_alloc_debugcheck_after(struct kmem_cache *cachep,
3043 gfp_t flags, void *objp, void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003045 if (!objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046 return objp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003047 if (cachep->flags & SLAB_POISON) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003048#ifdef CONFIG_DEBUG_PAGEALLOC
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003049 if ((cachep->buffer_size % PAGE_SIZE) == 0 && OFF_SLAB(cachep))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003050 kernel_map_pages(virt_to_page(objp),
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003051 cachep->buffer_size / PAGE_SIZE, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052 else
3053 check_poison_obj(cachep, objp);
3054#else
3055 check_poison_obj(cachep, objp);
3056#endif
3057 poison_obj(cachep, objp, POISON_INUSE);
3058 }
3059 if (cachep->flags & SLAB_STORE_USER)
3060 *dbg_userword(cachep, objp) = caller;
3061
3062 if (cachep->flags & SLAB_RED_ZONE) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08003063 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE ||
3064 *dbg_redzone2(cachep, objp) != RED_INACTIVE) {
3065 slab_error(cachep, "double free, or memory outside"
3066 " object was overwritten");
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003067 printk(KERN_ERR
David Woodhouseb46b8f12007-05-08 00:22:59 -07003068 "%p: redzone 1:0x%llx, redzone 2:0x%llx\n",
Andrew Mortona737b3e2006-03-22 00:08:11 -08003069 objp, *dbg_redzone1(cachep, objp),
3070 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071 }
3072 *dbg_redzone1(cachep, objp) = RED_ACTIVE;
3073 *dbg_redzone2(cachep, objp) = RED_ACTIVE;
3074 }
Al Viro871751e2006-03-25 03:06:39 -08003075#ifdef CONFIG_DEBUG_SLAB_LEAK
3076 {
3077 struct slab *slabp;
3078 unsigned objnr;
3079
Christoph Lameterb49af682007-05-06 14:49:41 -07003080 slabp = page_get_slab(virt_to_head_page(objp));
Al Viro871751e2006-03-25 03:06:39 -08003081 objnr = (unsigned)(objp - slabp->s_mem) / cachep->buffer_size;
3082 slab_bufctl(slabp)[objnr] = BUFCTL_ACTIVE;
3083 }
3084#endif
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003085 objp += obj_offset(cachep);
Christoph Lameter4f104932007-05-06 14:50:17 -07003086 if (cachep->ctor && cachep->flags & SLAB_POISON)
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07003087 cachep->ctor(objp);
Kevin Hilmana44b56d2006-12-06 20:32:11 -08003088#if ARCH_SLAB_MINALIGN
3089 if ((u32)objp & (ARCH_SLAB_MINALIGN-1)) {
3090 printk(KERN_ERR "0x%p: not aligned to ARCH_SLAB_MINALIGN=%d\n",
3091 objp, ARCH_SLAB_MINALIGN);
3092 }
3093#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094 return objp;
3095}
3096#else
3097#define cache_alloc_debugcheck_after(a,b,objp,d) (objp)
3098#endif
3099
Akinobu Mita773ff602008-12-23 19:37:01 +09003100static bool slab_should_failslab(struct kmem_cache *cachep, gfp_t flags)
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003101{
3102 if (cachep == &cache_cache)
Akinobu Mita773ff602008-12-23 19:37:01 +09003103 return false;
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003104
Akinobu Mita773ff602008-12-23 19:37:01 +09003105 return should_failslab(obj_size(cachep), flags);
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003106}
3107
Pekka Enberg343e0d72006-02-01 03:05:50 -08003108static inline void *____cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003110 void *objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003111 struct array_cache *ac;
3112
Alok N Kataria5c382302005-09-27 21:45:46 -07003113 check_irq_off();
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003114
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003115 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116 if (likely(ac->avail)) {
3117 STATS_INC_ALLOCHIT(cachep);
3118 ac->touched = 1;
Christoph Lametere498be72005-09-09 13:03:32 -07003119 objp = ac->entry[--ac->avail];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120 } else {
3121 STATS_INC_ALLOCMISS(cachep);
3122 objp = cache_alloc_refill(cachep, flags);
J. R. Okajimaddbf2e82009-12-02 16:55:50 +09003123 /*
3124 * the 'ac' may be updated by cache_alloc_refill(),
3125 * and kmemleak_erase() requires its correct value.
3126 */
3127 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128 }
Catalin Marinasd5cff632009-06-11 13:22:40 +01003129 /*
3130 * To avoid a false negative, if an object that is in one of the
3131 * per-CPU caches is leaked, we need to make sure kmemleak doesn't
3132 * treat the array pointers as a reference to the object.
3133 */
J. R. Okajimaf3d8b532009-12-02 16:55:49 +09003134 if (objp)
3135 kmemleak_erase(&ac->entry[ac->avail]);
Alok N Kataria5c382302005-09-27 21:45:46 -07003136 return objp;
3137}
3138
Christoph Lametere498be72005-09-09 13:03:32 -07003139#ifdef CONFIG_NUMA
3140/*
Paul Jacksonb2455392006-03-24 03:16:12 -08003141 * Try allocating on another node if PF_SPREAD_SLAB|PF_MEMPOLICY.
Paul Jacksonc61afb12006-03-24 03:16:08 -08003142 *
3143 * If we are in_interrupt, then process context, including cpusets and
3144 * mempolicy, may not apply and should not be used for allocation policy.
3145 */
3146static void *alternate_node_alloc(struct kmem_cache *cachep, gfp_t flags)
3147{
3148 int nid_alloc, nid_here;
3149
Christoph Lameter765c4502006-09-27 01:50:08 -07003150 if (in_interrupt() || (flags & __GFP_THISNODE))
Paul Jacksonc61afb12006-03-24 03:16:08 -08003151 return NULL;
3152 nid_alloc = nid_here = numa_node_id();
3153 if (cpuset_do_slab_mem_spread() && (cachep->flags & SLAB_MEM_SPREAD))
3154 nid_alloc = cpuset_mem_spread_node();
3155 else if (current->mempolicy)
3156 nid_alloc = slab_node(current->mempolicy);
3157 if (nid_alloc != nid_here)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003158 return ____cache_alloc_node(cachep, flags, nid_alloc);
Paul Jacksonc61afb12006-03-24 03:16:08 -08003159 return NULL;
3160}
3161
3162/*
Christoph Lameter765c4502006-09-27 01:50:08 -07003163 * Fallback function if there was no memory available and no objects on a
Christoph Lameter3c517a62006-12-06 20:33:29 -08003164 * certain node and fall back is permitted. First we scan all the
3165 * available nodelists for available objects. If that fails then we
3166 * perform an allocation without specifying a node. This allows the page
3167 * allocator to do its reclaim / fallback magic. We then insert the
3168 * slab into the proper nodelist and then allocate from it.
Christoph Lameter765c4502006-09-27 01:50:08 -07003169 */
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003170static void *fallback_alloc(struct kmem_cache *cache, gfp_t flags)
Christoph Lameter765c4502006-09-27 01:50:08 -07003171{
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003172 struct zonelist *zonelist;
3173 gfp_t local_flags;
Mel Gormandd1a2392008-04-28 02:12:17 -07003174 struct zoneref *z;
Mel Gorman54a6eb52008-04-28 02:12:16 -07003175 struct zone *zone;
3176 enum zone_type high_zoneidx = gfp_zone(flags);
Christoph Lameter765c4502006-09-27 01:50:08 -07003177 void *obj = NULL;
Christoph Lameter3c517a62006-12-06 20:33:29 -08003178 int nid;
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003179
3180 if (flags & __GFP_THISNODE)
3181 return NULL;
3182
Mel Gorman0e884602008-04-28 02:12:14 -07003183 zonelist = node_zonelist(slab_node(current->mempolicy), flags);
Christoph Lameter6cb06222007-10-16 01:25:41 -07003184 local_flags = flags & (GFP_CONSTRAINT_MASK|GFP_RECLAIM_MASK);
Christoph Lameter765c4502006-09-27 01:50:08 -07003185
Christoph Lameter3c517a62006-12-06 20:33:29 -08003186retry:
3187 /*
3188 * Look through allowed nodes for objects available
3189 * from existing per node queues.
3190 */
Mel Gorman54a6eb52008-04-28 02:12:16 -07003191 for_each_zone_zonelist(zone, z, zonelist, high_zoneidx) {
3192 nid = zone_to_nid(zone);
Christoph Lameteraedb0eb2006-10-21 10:24:16 -07003193
Mel Gorman54a6eb52008-04-28 02:12:16 -07003194 if (cpuset_zone_allowed_hardwall(zone, flags) &&
Christoph Lameter3c517a62006-12-06 20:33:29 -08003195 cache->nodelists[nid] &&
Christoph Lameter481c5342008-06-21 16:46:35 -07003196 cache->nodelists[nid]->free_objects) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003197 obj = ____cache_alloc_node(cache,
3198 flags | GFP_THISNODE, nid);
Christoph Lameter481c5342008-06-21 16:46:35 -07003199 if (obj)
3200 break;
3201 }
Christoph Lameter3c517a62006-12-06 20:33:29 -08003202 }
3203
Christoph Lametercfce6602007-05-06 14:50:17 -07003204 if (!obj) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003205 /*
3206 * This allocation will be performed within the constraints
3207 * of the current cpuset / memory policy requirements.
3208 * We may trigger various forms of reclaim on the allowed
3209 * set and go into memory reserves if necessary.
3210 */
Christoph Lameterdd47ea72006-12-13 00:34:11 -08003211 if (local_flags & __GFP_WAIT)
3212 local_irq_enable();
3213 kmem_flagcheck(cache, flags);
Mel Gorman6484eb32009-06-16 15:31:54 -07003214 obj = kmem_getpages(cache, local_flags, numa_node_id());
Christoph Lameterdd47ea72006-12-13 00:34:11 -08003215 if (local_flags & __GFP_WAIT)
3216 local_irq_disable();
Christoph Lameter3c517a62006-12-06 20:33:29 -08003217 if (obj) {
3218 /*
3219 * Insert into the appropriate per node queues
3220 */
3221 nid = page_to_nid(virt_to_page(obj));
3222 if (cache_grow(cache, flags, nid, obj)) {
3223 obj = ____cache_alloc_node(cache,
3224 flags | GFP_THISNODE, nid);
3225 if (!obj)
3226 /*
3227 * Another processor may allocate the
3228 * objects in the slab since we are
3229 * not holding any locks.
3230 */
3231 goto retry;
3232 } else {
Hugh Dickinsb6a60452007-01-05 16:36:36 -08003233 /* cache_grow already freed obj */
Christoph Lameter3c517a62006-12-06 20:33:29 -08003234 obj = NULL;
3235 }
3236 }
Christoph Lameteraedb0eb2006-10-21 10:24:16 -07003237 }
Christoph Lameter765c4502006-09-27 01:50:08 -07003238 return obj;
3239}
3240
3241/*
Christoph Lametere498be72005-09-09 13:03:32 -07003242 * A interface to enable slab creation on nodeid
Linus Torvalds1da177e2005-04-16 15:20:36 -07003243 */
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003244static void *____cache_alloc_node(struct kmem_cache *cachep, gfp_t flags,
Andrew Mortona737b3e2006-03-22 00:08:11 -08003245 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07003246{
3247 struct list_head *entry;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003248 struct slab *slabp;
3249 struct kmem_list3 *l3;
3250 void *obj;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003251 int x;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003253 l3 = cachep->nodelists[nodeid];
3254 BUG_ON(!l3);
Christoph Lametere498be72005-09-09 13:03:32 -07003255
Andrew Mortona737b3e2006-03-22 00:08:11 -08003256retry:
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08003257 check_irq_off();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003258 spin_lock(&l3->list_lock);
3259 entry = l3->slabs_partial.next;
3260 if (entry == &l3->slabs_partial) {
3261 l3->free_touched = 1;
3262 entry = l3->slabs_free.next;
3263 if (entry == &l3->slabs_free)
3264 goto must_grow;
3265 }
Christoph Lametere498be72005-09-09 13:03:32 -07003266
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003267 slabp = list_entry(entry, struct slab, list);
3268 check_spinlock_acquired_node(cachep, nodeid);
3269 check_slabp(cachep, slabp);
Christoph Lametere498be72005-09-09 13:03:32 -07003270
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003271 STATS_INC_NODEALLOCS(cachep);
3272 STATS_INC_ACTIVE(cachep);
3273 STATS_SET_HIGH(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003274
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003275 BUG_ON(slabp->inuse == cachep->num);
Christoph Lametere498be72005-09-09 13:03:32 -07003276
Matthew Dobson78d382d2006-02-01 03:05:47 -08003277 obj = slab_get_obj(cachep, slabp, nodeid);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003278 check_slabp(cachep, slabp);
3279 l3->free_objects--;
3280 /* move slabp to correct slabp list: */
3281 list_del(&slabp->list);
Christoph Lametere498be72005-09-09 13:03:32 -07003282
Andrew Mortona737b3e2006-03-22 00:08:11 -08003283 if (slabp->free == BUFCTL_END)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003284 list_add(&slabp->list, &l3->slabs_full);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003285 else
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003286 list_add(&slabp->list, &l3->slabs_partial);
Christoph Lametere498be72005-09-09 13:03:32 -07003287
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003288 spin_unlock(&l3->list_lock);
3289 goto done;
Christoph Lametere498be72005-09-09 13:03:32 -07003290
Andrew Mortona737b3e2006-03-22 00:08:11 -08003291must_grow:
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003292 spin_unlock(&l3->list_lock);
Christoph Lameter3c517a62006-12-06 20:33:29 -08003293 x = cache_grow(cachep, flags | GFP_THISNODE, nodeid, NULL);
Christoph Lameter765c4502006-09-27 01:50:08 -07003294 if (x)
3295 goto retry;
Christoph Lametere498be72005-09-09 13:03:32 -07003296
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003297 return fallback_alloc(cachep, flags);
Christoph Lameter765c4502006-09-27 01:50:08 -07003298
Andrew Mortona737b3e2006-03-22 00:08:11 -08003299done:
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003300 return obj;
Christoph Lametere498be72005-09-09 13:03:32 -07003301}
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003302
3303/**
3304 * kmem_cache_alloc_node - Allocate an object on the specified node
3305 * @cachep: The cache to allocate from.
3306 * @flags: See kmalloc().
3307 * @nodeid: node number of the target node.
3308 * @caller: return address of caller, used for debug information
3309 *
3310 * Identical to kmem_cache_alloc but it will allocate memory on the given
3311 * node, which can improve the performance for cpu bound structures.
3312 *
3313 * Fallback to other node is possible if __GFP_THISNODE is not set.
3314 */
3315static __always_inline void *
3316__cache_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid,
3317 void *caller)
3318{
3319 unsigned long save_flags;
3320 void *ptr;
3321
Benjamin Herrenschmidtdcce2842009-06-18 13:24:12 +10003322 flags &= gfp_allowed_mask;
Pekka Enberg7e85ee02009-06-12 14:03:06 +03003323
Nick Piggincf40bd12009-01-21 08:12:39 +01003324 lockdep_trace_alloc(flags);
3325
Akinobu Mita773ff602008-12-23 19:37:01 +09003326 if (slab_should_failslab(cachep, flags))
Akinobu Mita824ebef2007-05-06 14:49:58 -07003327 return NULL;
3328
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003329 cache_alloc_debugcheck_before(cachep, flags);
3330 local_irq_save(save_flags);
3331
Tim Blechmann8e15b792009-11-30 18:59:34 +01003332 if (nodeid == -1)
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003333 nodeid = numa_node_id();
3334
3335 if (unlikely(!cachep->nodelists[nodeid])) {
3336 /* Node not bootstrapped yet */
3337 ptr = fallback_alloc(cachep, flags);
3338 goto out;
3339 }
3340
3341 if (nodeid == numa_node_id()) {
3342 /*
3343 * Use the locally cached objects if possible.
3344 * However ____cache_alloc does not allow fallback
3345 * to other nodes. It may fail while we still have
3346 * objects on other nodes available.
3347 */
3348 ptr = ____cache_alloc(cachep, flags);
3349 if (ptr)
3350 goto out;
3351 }
3352 /* ___cache_alloc_node can fall back to other nodes */
3353 ptr = ____cache_alloc_node(cachep, flags, nodeid);
3354 out:
3355 local_irq_restore(save_flags);
3356 ptr = cache_alloc_debugcheck_after(cachep, flags, ptr, caller);
Catalin Marinasd5cff632009-06-11 13:22:40 +01003357 kmemleak_alloc_recursive(ptr, obj_size(cachep), 1, cachep->flags,
3358 flags);
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003359
Pekka Enbergc175eea2008-05-09 20:35:53 +02003360 if (likely(ptr))
3361 kmemcheck_slab_alloc(cachep, flags, ptr, obj_size(cachep));
3362
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003363 if (unlikely((flags & __GFP_ZERO) && ptr))
3364 memset(ptr, 0, obj_size(cachep));
3365
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003366 return ptr;
3367}
3368
3369static __always_inline void *
3370__do_cache_alloc(struct kmem_cache *cache, gfp_t flags)
3371{
3372 void *objp;
3373
3374 if (unlikely(current->flags & (PF_SPREAD_SLAB | PF_MEMPOLICY))) {
3375 objp = alternate_node_alloc(cache, flags);
3376 if (objp)
3377 goto out;
3378 }
3379 objp = ____cache_alloc(cache, flags);
3380
3381 /*
3382 * We may just have run out of memory on the local node.
3383 * ____cache_alloc_node() knows how to locate memory on other nodes
3384 */
3385 if (!objp)
3386 objp = ____cache_alloc_node(cache, flags, numa_node_id());
3387
3388 out:
3389 return objp;
3390}
3391#else
3392
3393static __always_inline void *
3394__do_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
3395{
3396 return ____cache_alloc(cachep, flags);
3397}
3398
3399#endif /* CONFIG_NUMA */
3400
3401static __always_inline void *
3402__cache_alloc(struct kmem_cache *cachep, gfp_t flags, void *caller)
3403{
3404 unsigned long save_flags;
3405 void *objp;
3406
Benjamin Herrenschmidtdcce2842009-06-18 13:24:12 +10003407 flags &= gfp_allowed_mask;
Pekka Enberg7e85ee02009-06-12 14:03:06 +03003408
Nick Piggincf40bd12009-01-21 08:12:39 +01003409 lockdep_trace_alloc(flags);
3410
Akinobu Mita773ff602008-12-23 19:37:01 +09003411 if (slab_should_failslab(cachep, flags))
Akinobu Mita824ebef2007-05-06 14:49:58 -07003412 return NULL;
3413
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003414 cache_alloc_debugcheck_before(cachep, flags);
3415 local_irq_save(save_flags);
3416 objp = __do_cache_alloc(cachep, flags);
3417 local_irq_restore(save_flags);
3418 objp = cache_alloc_debugcheck_after(cachep, flags, objp, caller);
Catalin Marinasd5cff632009-06-11 13:22:40 +01003419 kmemleak_alloc_recursive(objp, obj_size(cachep), 1, cachep->flags,
3420 flags);
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003421 prefetchw(objp);
3422
Pekka Enbergc175eea2008-05-09 20:35:53 +02003423 if (likely(objp))
3424 kmemcheck_slab_alloc(cachep, flags, objp, obj_size(cachep));
3425
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003426 if (unlikely((flags & __GFP_ZERO) && objp))
3427 memset(objp, 0, obj_size(cachep));
3428
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003429 return objp;
3430}
Christoph Lametere498be72005-09-09 13:03:32 -07003431
3432/*
3433 * Caller needs to acquire correct kmem_list's list_lock
3434 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003435static void free_block(struct kmem_cache *cachep, void **objpp, int nr_objects,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003436 int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003437{
3438 int i;
Christoph Lametere498be72005-09-09 13:03:32 -07003439 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440
3441 for (i = 0; i < nr_objects; i++) {
3442 void *objp = objpp[i];
3443 struct slab *slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08003445 slabp = virt_to_slab(objp);
Christoph Lameterff694162005-09-22 21:44:02 -07003446 l3 = cachep->nodelists[node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447 list_del(&slabp->list);
Christoph Lameterff694162005-09-22 21:44:02 -07003448 check_spinlock_acquired_node(cachep, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449 check_slabp(cachep, slabp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08003450 slab_put_obj(cachep, slabp, objp, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451 STATS_DEC_ACTIVE(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003452 l3->free_objects++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003453 check_slabp(cachep, slabp);
3454
3455 /* fixup slab chains */
3456 if (slabp->inuse == 0) {
Christoph Lametere498be72005-09-09 13:03:32 -07003457 if (l3->free_objects > l3->free_limit) {
3458 l3->free_objects -= cachep->num;
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07003459 /* No need to drop any previously held
3460 * lock here, even if we have a off-slab slab
3461 * descriptor it is guaranteed to come from
3462 * a different cache, refer to comments before
3463 * alloc_slabmgmt.
3464 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465 slab_destroy(cachep, slabp);
3466 } else {
Christoph Lametere498be72005-09-09 13:03:32 -07003467 list_add(&slabp->list, &l3->slabs_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468 }
3469 } else {
3470 /* Unconditionally move a slab to the end of the
3471 * partial list on free - maximum time for the
3472 * other objects to be freed, too.
3473 */
Christoph Lametere498be72005-09-09 13:03:32 -07003474 list_add_tail(&slabp->list, &l3->slabs_partial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003475 }
3476 }
3477}
3478
Pekka Enberg343e0d72006-02-01 03:05:50 -08003479static void cache_flusharray(struct kmem_cache *cachep, struct array_cache *ac)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003480{
3481 int batchcount;
Christoph Lametere498be72005-09-09 13:03:32 -07003482 struct kmem_list3 *l3;
Christoph Lameterff694162005-09-22 21:44:02 -07003483 int node = numa_node_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484
3485 batchcount = ac->batchcount;
3486#if DEBUG
3487 BUG_ON(!batchcount || batchcount > ac->avail);
3488#endif
3489 check_irq_off();
Christoph Lameterff694162005-09-22 21:44:02 -07003490 l3 = cachep->nodelists[node];
Ingo Molnar873623d2006-07-13 14:44:38 +02003491 spin_lock(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07003492 if (l3->shared) {
3493 struct array_cache *shared_array = l3->shared;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003494 int max = shared_array->limit - shared_array->avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003495 if (max) {
3496 if (batchcount > max)
3497 batchcount = max;
Christoph Lametere498be72005-09-09 13:03:32 -07003498 memcpy(&(shared_array->entry[shared_array->avail]),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003499 ac->entry, sizeof(void *) * batchcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500 shared_array->avail += batchcount;
3501 goto free_done;
3502 }
3503 }
3504
Christoph Lameterff694162005-09-22 21:44:02 -07003505 free_block(cachep, ac->entry, batchcount, node);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003506free_done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003507#if STATS
3508 {
3509 int i = 0;
3510 struct list_head *p;
3511
Christoph Lametere498be72005-09-09 13:03:32 -07003512 p = l3->slabs_free.next;
3513 while (p != &(l3->slabs_free)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003514 struct slab *slabp;
3515
3516 slabp = list_entry(p, struct slab, list);
3517 BUG_ON(slabp->inuse);
3518
3519 i++;
3520 p = p->next;
3521 }
3522 STATS_SET_FREEABLE(cachep, i);
3523 }
3524#endif
Christoph Lametere498be72005-09-09 13:03:32 -07003525 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526 ac->avail -= batchcount;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003527 memmove(ac->entry, &(ac->entry[batchcount]), sizeof(void *)*ac->avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528}
3529
3530/*
Andrew Mortona737b3e2006-03-22 00:08:11 -08003531 * Release an obj back to its cache. If the obj has a constructed state, it must
3532 * be in this state _before_ it is released. Called with disabled ints.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533 */
Ingo Molnar873623d2006-07-13 14:44:38 +02003534static inline void __cache_free(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003535{
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003536 struct array_cache *ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537
3538 check_irq_off();
Catalin Marinasd5cff632009-06-11 13:22:40 +01003539 kmemleak_free_recursive(objp, cachep->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540 objp = cache_free_debugcheck(cachep, objp, __builtin_return_address(0));
3541
Pekka Enbergc175eea2008-05-09 20:35:53 +02003542 kmemcheck_slab_free(cachep, objp, obj_size(cachep));
3543
Siddha, Suresh B1807a1a2007-08-22 14:01:49 -07003544 /*
3545 * Skip calling cache_free_alien() when the platform is not numa.
3546 * This will avoid cache misses that happen while accessing slabp (which
3547 * is per page memory reference) to get nodeid. Instead use a global
3548 * variable to skip the call, which is mostly likely to be present in
3549 * the cache.
3550 */
Mel Gormanb6e68bc2009-06-16 15:32:16 -07003551 if (nr_online_nodes > 1 && cache_free_alien(cachep, objp))
Pekka Enberg729bd0b2006-06-23 02:03:05 -07003552 return;
Christoph Lametere498be72005-09-09 13:03:32 -07003553
Linus Torvalds1da177e2005-04-16 15:20:36 -07003554 if (likely(ac->avail < ac->limit)) {
3555 STATS_INC_FREEHIT(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003556 ac->entry[ac->avail++] = objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557 return;
3558 } else {
3559 STATS_INC_FREEMISS(cachep);
3560 cache_flusharray(cachep, ac);
Christoph Lametere498be72005-09-09 13:03:32 -07003561 ac->entry[ac->avail++] = objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003562 }
3563}
3564
3565/**
3566 * kmem_cache_alloc - Allocate an object
3567 * @cachep: The cache to allocate from.
3568 * @flags: See kmalloc().
3569 *
3570 * Allocate an object from this cache. The flags are only relevant
3571 * if the cache has no available objects.
3572 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003573void *kmem_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003574{
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003575 void *ret = __cache_alloc(cachep, flags, __builtin_return_address(0));
3576
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003577 trace_kmem_cache_alloc(_RET_IP_, ret,
3578 obj_size(cachep), cachep->buffer_size, flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003579
3580 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581}
3582EXPORT_SYMBOL(kmem_cache_alloc);
3583
Li Zefan0f24f122009-12-11 15:45:30 +08003584#ifdef CONFIG_TRACING
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003585void *kmem_cache_alloc_notrace(struct kmem_cache *cachep, gfp_t flags)
3586{
3587 return __cache_alloc(cachep, flags, __builtin_return_address(0));
3588}
3589EXPORT_SYMBOL(kmem_cache_alloc_notrace);
3590#endif
3591
Linus Torvalds1da177e2005-04-16 15:20:36 -07003592/**
Randy Dunlap76824862008-03-19 17:00:40 -07003593 * kmem_ptr_validate - check if an untrusted pointer might be a slab entry.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003594 * @cachep: the cache we're checking against
3595 * @ptr: pointer to validate
3596 *
Randy Dunlap76824862008-03-19 17:00:40 -07003597 * This verifies that the untrusted pointer looks sane;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003598 * it is _not_ a guarantee that the pointer is actually
3599 * part of the slab cache in question, but it at least
3600 * validates that the pointer can be dereferenced and
3601 * looks half-way sane.
3602 *
3603 * Currently only used for dentry validation.
3604 */
Christoph Lameterb7f869a2006-12-22 01:06:44 -08003605int kmem_ptr_validate(struct kmem_cache *cachep, const void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003607 unsigned long addr = (unsigned long)ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003608 unsigned long min_addr = PAGE_OFFSET;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003609 unsigned long align_mask = BYTES_PER_WORD - 1;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003610 unsigned long size = cachep->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003611 struct page *page;
3612
3613 if (unlikely(addr < min_addr))
3614 goto out;
3615 if (unlikely(addr > (unsigned long)high_memory - size))
3616 goto out;
3617 if (unlikely(addr & align_mask))
3618 goto out;
3619 if (unlikely(!kern_addr_valid(addr)))
3620 goto out;
3621 if (unlikely(!kern_addr_valid(addr + size - 1)))
3622 goto out;
3623 page = virt_to_page(ptr);
3624 if (unlikely(!PageSlab(page)))
3625 goto out;
Pekka Enberg065d41c2005-11-13 16:06:46 -08003626 if (unlikely(page_get_cache(page) != cachep))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627 goto out;
3628 return 1;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003629out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630 return 0;
3631}
3632
3633#ifdef CONFIG_NUMA
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003634void *kmem_cache_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid)
3635{
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003636 void *ret = __cache_alloc_node(cachep, flags, nodeid,
3637 __builtin_return_address(0));
3638
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003639 trace_kmem_cache_alloc_node(_RET_IP_, ret,
3640 obj_size(cachep), cachep->buffer_size,
3641 flags, nodeid);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003642
3643 return ret;
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003644}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003645EXPORT_SYMBOL(kmem_cache_alloc_node);
3646
Li Zefan0f24f122009-12-11 15:45:30 +08003647#ifdef CONFIG_TRACING
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003648void *kmem_cache_alloc_node_notrace(struct kmem_cache *cachep,
3649 gfp_t flags,
3650 int nodeid)
3651{
3652 return __cache_alloc_node(cachep, flags, nodeid,
3653 __builtin_return_address(0));
3654}
3655EXPORT_SYMBOL(kmem_cache_alloc_node_notrace);
3656#endif
3657
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003658static __always_inline void *
3659__do_kmalloc_node(size_t size, gfp_t flags, int node, void *caller)
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003660{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003661 struct kmem_cache *cachep;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003662 void *ret;
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003663
3664 cachep = kmem_find_general_cachep(size, flags);
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003665 if (unlikely(ZERO_OR_NULL_PTR(cachep)))
3666 return cachep;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003667 ret = kmem_cache_alloc_node_notrace(cachep, flags, node);
3668
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003669 trace_kmalloc_node((unsigned long) caller, ret,
3670 size, cachep->buffer_size, flags, node);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003671
3672 return ret;
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003673}
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003674
Li Zefan0bb38a52009-12-11 15:45:50 +08003675#if defined(CONFIG_DEBUG_SLAB) || defined(CONFIG_TRACING)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003676void *__kmalloc_node(size_t size, gfp_t flags, int node)
3677{
3678 return __do_kmalloc_node(size, flags, node,
3679 __builtin_return_address(0));
3680}
Christoph Hellwigdbe5e692006-09-25 23:31:36 -07003681EXPORT_SYMBOL(__kmalloc_node);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003682
3683void *__kmalloc_node_track_caller(size_t size, gfp_t flags,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003684 int node, unsigned long caller)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003685{
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003686 return __do_kmalloc_node(size, flags, node, (void *)caller);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003687}
3688EXPORT_SYMBOL(__kmalloc_node_track_caller);
3689#else
3690void *__kmalloc_node(size_t size, gfp_t flags, int node)
3691{
3692 return __do_kmalloc_node(size, flags, node, NULL);
3693}
3694EXPORT_SYMBOL(__kmalloc_node);
Li Zefan0bb38a52009-12-11 15:45:50 +08003695#endif /* CONFIG_DEBUG_SLAB || CONFIG_TRACING */
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003696#endif /* CONFIG_NUMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003697
3698/**
Paul Drynoff800590f2006-06-23 02:03:48 -07003699 * __do_kmalloc - allocate memory
Linus Torvalds1da177e2005-04-16 15:20:36 -07003700 * @size: how many bytes of memory are required.
Paul Drynoff800590f2006-06-23 02:03:48 -07003701 * @flags: the type of memory to allocate (see kmalloc).
Randy Dunlap911851e2006-03-22 00:08:14 -08003702 * @caller: function caller for debug tracking of the caller
Linus Torvalds1da177e2005-04-16 15:20:36 -07003703 */
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003704static __always_inline void *__do_kmalloc(size_t size, gfp_t flags,
3705 void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003706{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003707 struct kmem_cache *cachep;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003708 void *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003709
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003710 /* If you want to save a few bytes .text space: replace
3711 * __ with kmem_.
3712 * Then kmalloc uses the uninlined functions instead of the inline
3713 * functions.
3714 */
3715 cachep = __find_general_cachep(size, flags);
Linus Torvaldsa5c96d82007-07-19 13:17:15 -07003716 if (unlikely(ZERO_OR_NULL_PTR(cachep)))
3717 return cachep;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003718 ret = __cache_alloc(cachep, flags, caller);
3719
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003720 trace_kmalloc((unsigned long) caller, ret,
3721 size, cachep->buffer_size, flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003722
3723 return ret;
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003724}
3725
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003726
Li Zefan0bb38a52009-12-11 15:45:50 +08003727#if defined(CONFIG_DEBUG_SLAB) || defined(CONFIG_TRACING)
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003728void *__kmalloc(size_t size, gfp_t flags)
3729{
Al Viro871751e2006-03-25 03:06:39 -08003730 return __do_kmalloc(size, flags, __builtin_return_address(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731}
3732EXPORT_SYMBOL(__kmalloc);
3733
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003734void *__kmalloc_track_caller(size_t size, gfp_t flags, unsigned long caller)
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003735{
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003736 return __do_kmalloc(size, flags, (void *)caller);
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003737}
3738EXPORT_SYMBOL(__kmalloc_track_caller);
Christoph Hellwig1d2c8ee2006-10-04 02:15:25 -07003739
3740#else
3741void *__kmalloc(size_t size, gfp_t flags)
3742{
3743 return __do_kmalloc(size, flags, NULL);
3744}
3745EXPORT_SYMBOL(__kmalloc);
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003746#endif
3747
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748/**
3749 * kmem_cache_free - Deallocate an object
3750 * @cachep: The cache the allocation was from.
3751 * @objp: The previously allocated object.
3752 *
3753 * Free an object which was previously allocated from this
3754 * cache.
3755 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003756void kmem_cache_free(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757{
3758 unsigned long flags;
3759
3760 local_irq_save(flags);
Ingo Molnar898552c2007-02-10 01:44:57 -08003761 debug_check_no_locks_freed(objp, obj_size(cachep));
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -07003762 if (!(cachep->flags & SLAB_DEBUG_OBJECTS))
3763 debug_check_no_obj_freed(objp, obj_size(cachep));
Ingo Molnar873623d2006-07-13 14:44:38 +02003764 __cache_free(cachep, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003765 local_irq_restore(flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003766
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003767 trace_kmem_cache_free(_RET_IP_, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768}
3769EXPORT_SYMBOL(kmem_cache_free);
3770
3771/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003772 * kfree - free previously allocated memory
3773 * @objp: pointer returned by kmalloc.
3774 *
Pekka Enberg80e93ef2005-09-09 13:10:16 -07003775 * If @objp is NULL, no operation is performed.
3776 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003777 * Don't free memory not originally allocated by kmalloc()
3778 * or you will run into trouble.
3779 */
3780void kfree(const void *objp)
3781{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003782 struct kmem_cache *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783 unsigned long flags;
3784
Pekka Enberg2121db72009-03-25 11:05:57 +02003785 trace_kfree(_RET_IP_, objp);
3786
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003787 if (unlikely(ZERO_OR_NULL_PTR(objp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003788 return;
3789 local_irq_save(flags);
3790 kfree_debugcheck(objp);
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08003791 c = virt_to_cache(objp);
Ingo Molnarf9b84042006-06-27 02:54:49 -07003792 debug_check_no_locks_freed(objp, obj_size(c));
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -07003793 debug_check_no_obj_freed(objp, obj_size(c));
Ingo Molnar873623d2006-07-13 14:44:38 +02003794 __cache_free(c, (void *)objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003795 local_irq_restore(flags);
3796}
3797EXPORT_SYMBOL(kfree);
3798
Pekka Enberg343e0d72006-02-01 03:05:50 -08003799unsigned int kmem_cache_size(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003800{
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003801 return obj_size(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802}
3803EXPORT_SYMBOL(kmem_cache_size);
3804
Pekka Enberg343e0d72006-02-01 03:05:50 -08003805const char *kmem_cache_name(struct kmem_cache *cachep)
Arnaldo Carvalho de Melo19449722005-06-18 22:46:19 -07003806{
3807 return cachep->name;
3808}
3809EXPORT_SYMBOL_GPL(kmem_cache_name);
3810
Christoph Lametere498be72005-09-09 13:03:32 -07003811/*
Simon Arlott183ff222007-10-20 01:27:18 +02003812 * This initializes kmem_list3 or resizes various caches for all nodes.
Christoph Lametere498be72005-09-09 13:03:32 -07003813 */
Pekka Enberg83b519e2009-06-10 19:40:04 +03003814static int alloc_kmemlist(struct kmem_cache *cachep, gfp_t gfp)
Christoph Lametere498be72005-09-09 13:03:32 -07003815{
3816 int node;
3817 struct kmem_list3 *l3;
Christoph Lametercafeb022006-03-25 03:06:46 -08003818 struct array_cache *new_shared;
Paul Menage3395ee02006-12-06 20:32:16 -08003819 struct array_cache **new_alien = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07003820
Mel Gorman9c09a952008-01-24 05:49:54 -08003821 for_each_online_node(node) {
Christoph Lametercafeb022006-03-25 03:06:46 -08003822
Paul Menage3395ee02006-12-06 20:32:16 -08003823 if (use_alien_caches) {
Pekka Enberg83b519e2009-06-10 19:40:04 +03003824 new_alien = alloc_alien_cache(node, cachep->limit, gfp);
Paul Menage3395ee02006-12-06 20:32:16 -08003825 if (!new_alien)
3826 goto fail;
3827 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003828
Eric Dumazet63109842007-05-06 14:49:28 -07003829 new_shared = NULL;
3830 if (cachep->shared) {
3831 new_shared = alloc_arraycache(node,
Christoph Lameter0718dc22006-03-25 03:06:47 -08003832 cachep->shared*cachep->batchcount,
Pekka Enberg83b519e2009-06-10 19:40:04 +03003833 0xbaadf00d, gfp);
Eric Dumazet63109842007-05-06 14:49:28 -07003834 if (!new_shared) {
3835 free_alien_cache(new_alien);
3836 goto fail;
3837 }
Christoph Lameter0718dc22006-03-25 03:06:47 -08003838 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003839
Andrew Mortona737b3e2006-03-22 00:08:11 -08003840 l3 = cachep->nodelists[node];
3841 if (l3) {
Christoph Lametercafeb022006-03-25 03:06:46 -08003842 struct array_cache *shared = l3->shared;
3843
Christoph Lametere498be72005-09-09 13:03:32 -07003844 spin_lock_irq(&l3->list_lock);
3845
Christoph Lametercafeb022006-03-25 03:06:46 -08003846 if (shared)
Christoph Lameter0718dc22006-03-25 03:06:47 -08003847 free_block(cachep, shared->entry,
3848 shared->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -07003849
Christoph Lametercafeb022006-03-25 03:06:46 -08003850 l3->shared = new_shared;
3851 if (!l3->alien) {
Christoph Lametere498be72005-09-09 13:03:32 -07003852 l3->alien = new_alien;
3853 new_alien = NULL;
3854 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003855 l3->free_limit = (1 + nr_cpus_node(node)) *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003856 cachep->batchcount + cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07003857 spin_unlock_irq(&l3->list_lock);
Christoph Lametercafeb022006-03-25 03:06:46 -08003858 kfree(shared);
Christoph Lametere498be72005-09-09 13:03:32 -07003859 free_alien_cache(new_alien);
3860 continue;
3861 }
Pekka Enberg83b519e2009-06-10 19:40:04 +03003862 l3 = kmalloc_node(sizeof(struct kmem_list3), gfp, node);
Christoph Lameter0718dc22006-03-25 03:06:47 -08003863 if (!l3) {
3864 free_alien_cache(new_alien);
3865 kfree(new_shared);
Christoph Lametere498be72005-09-09 13:03:32 -07003866 goto fail;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003867 }
Christoph Lametere498be72005-09-09 13:03:32 -07003868
3869 kmem_list3_init(l3);
3870 l3->next_reap = jiffies + REAPTIMEOUT_LIST3 +
Andrew Mortona737b3e2006-03-22 00:08:11 -08003871 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
Christoph Lametercafeb022006-03-25 03:06:46 -08003872 l3->shared = new_shared;
Christoph Lametere498be72005-09-09 13:03:32 -07003873 l3->alien = new_alien;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003874 l3->free_limit = (1 + nr_cpus_node(node)) *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003875 cachep->batchcount + cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07003876 cachep->nodelists[node] = l3;
3877 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003878 return 0;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003879
Andrew Mortona737b3e2006-03-22 00:08:11 -08003880fail:
Christoph Lameter0718dc22006-03-25 03:06:47 -08003881 if (!cachep->next.next) {
3882 /* Cache is not active yet. Roll back what we did */
3883 node--;
3884 while (node >= 0) {
3885 if (cachep->nodelists[node]) {
3886 l3 = cachep->nodelists[node];
3887
3888 kfree(l3->shared);
3889 free_alien_cache(l3->alien);
3890 kfree(l3);
3891 cachep->nodelists[node] = NULL;
3892 }
3893 node--;
3894 }
3895 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003896 return -ENOMEM;
Christoph Lametere498be72005-09-09 13:03:32 -07003897}
3898
Linus Torvalds1da177e2005-04-16 15:20:36 -07003899struct ccupdate_struct {
Pekka Enberg343e0d72006-02-01 03:05:50 -08003900 struct kmem_cache *cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901 struct array_cache *new[NR_CPUS];
3902};
3903
3904static void do_ccupdate_local(void *info)
3905{
Andrew Mortona737b3e2006-03-22 00:08:11 -08003906 struct ccupdate_struct *new = info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907 struct array_cache *old;
3908
3909 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003910 old = cpu_cache_get(new->cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003911
Linus Torvalds1da177e2005-04-16 15:20:36 -07003912 new->cachep->array[smp_processor_id()] = new->new[smp_processor_id()];
3913 new->new[smp_processor_id()] = old;
3914}
3915
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -08003916/* Always called with the cache_chain_mutex held */
Andrew Mortona737b3e2006-03-22 00:08:11 -08003917static int do_tune_cpucache(struct kmem_cache *cachep, int limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03003918 int batchcount, int shared, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003919{
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003920 struct ccupdate_struct *new;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07003921 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922
Pekka Enberg83b519e2009-06-10 19:40:04 +03003923 new = kzalloc(sizeof(*new), gfp);
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003924 if (!new)
3925 return -ENOMEM;
3926
Christoph Lametere498be72005-09-09 13:03:32 -07003927 for_each_online_cpu(i) {
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003928 new->new[i] = alloc_arraycache(cpu_to_node(i), limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03003929 batchcount, gfp);
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003930 if (!new->new[i]) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003931 for (i--; i >= 0; i--)
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003932 kfree(new->new[i]);
3933 kfree(new);
Christoph Lametere498be72005-09-09 13:03:32 -07003934 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003935 }
3936 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003937 new->cachep = cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003938
Jens Axboe15c8b6c2008-05-09 09:39:44 +02003939 on_each_cpu(do_ccupdate_local, (void *)new, 1);
Christoph Lametere498be72005-09-09 13:03:32 -07003940
Linus Torvalds1da177e2005-04-16 15:20:36 -07003941 check_irq_on();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942 cachep->batchcount = batchcount;
3943 cachep->limit = limit;
Christoph Lametere498be72005-09-09 13:03:32 -07003944 cachep->shared = shared;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003945
Christoph Lametere498be72005-09-09 13:03:32 -07003946 for_each_online_cpu(i) {
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003947 struct array_cache *ccold = new->new[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948 if (!ccold)
3949 continue;
Christoph Lametere498be72005-09-09 13:03:32 -07003950 spin_lock_irq(&cachep->nodelists[cpu_to_node(i)]->list_lock);
Christoph Lameterff694162005-09-22 21:44:02 -07003951 free_block(cachep, ccold->entry, ccold->avail, cpu_to_node(i));
Christoph Lametere498be72005-09-09 13:03:32 -07003952 spin_unlock_irq(&cachep->nodelists[cpu_to_node(i)]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953 kfree(ccold);
3954 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003955 kfree(new);
Pekka Enberg83b519e2009-06-10 19:40:04 +03003956 return alloc_kmemlist(cachep, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003957}
3958
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -08003959/* Called with cache_chain_mutex held always */
Pekka Enberg83b519e2009-06-10 19:40:04 +03003960static int enable_cpucache(struct kmem_cache *cachep, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003961{
3962 int err;
3963 int limit, shared;
3964
Andrew Mortona737b3e2006-03-22 00:08:11 -08003965 /*
3966 * The head array serves three purposes:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003967 * - create a LIFO ordering, i.e. return objects that are cache-warm
3968 * - reduce the number of spinlock operations.
Andrew Mortona737b3e2006-03-22 00:08:11 -08003969 * - reduce the number of linked list operations on the slab and
Linus Torvalds1da177e2005-04-16 15:20:36 -07003970 * bufctl chains: array operations are cheaper.
3971 * The numbers are guessed, we should auto-tune as described by
3972 * Bonwick.
3973 */
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003974 if (cachep->buffer_size > 131072)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003975 limit = 1;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003976 else if (cachep->buffer_size > PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977 limit = 8;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003978 else if (cachep->buffer_size > 1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003979 limit = 24;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003980 else if (cachep->buffer_size > 256)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003981 limit = 54;
3982 else
3983 limit = 120;
3984
Andrew Mortona737b3e2006-03-22 00:08:11 -08003985 /*
3986 * CPU bound tasks (e.g. network routing) can exhibit cpu bound
Linus Torvalds1da177e2005-04-16 15:20:36 -07003987 * allocation behaviour: Most allocs on one cpu, most free operations
3988 * on another cpu. For these cases, an efficient object passing between
3989 * cpus is necessary. This is provided by a shared array. The array
3990 * replaces Bonwick's magazine layer.
3991 * On uniprocessor, it's functionally equivalent (but less efficient)
3992 * to a larger limit. Thus disabled by default.
3993 */
3994 shared = 0;
Eric Dumazet364fbb22007-05-06 14:49:27 -07003995 if (cachep->buffer_size <= PAGE_SIZE && num_possible_cpus() > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003996 shared = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003997
3998#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08003999 /*
4000 * With debugging enabled, large batchcount lead to excessively long
4001 * periods with disabled local interrupts. Limit the batchcount
Linus Torvalds1da177e2005-04-16 15:20:36 -07004002 */
4003 if (limit > 32)
4004 limit = 32;
4005#endif
Pekka Enberg83b519e2009-06-10 19:40:04 +03004006 err = do_tune_cpucache(cachep, limit, (limit + 1) / 2, shared, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004007 if (err)
4008 printk(KERN_ERR "enable_cpucache failed for %s, error %d.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004009 cachep->name, -err);
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07004010 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004011}
4012
Christoph Lameter1b552532006-03-22 00:09:07 -08004013/*
4014 * Drain an array if it contains any elements taking the l3 lock only if
Christoph Lameterb18e7e62006-03-22 00:09:07 -08004015 * necessary. Note that the l3 listlock also protects the array_cache
4016 * if drain_array() is used on the shared array.
Christoph Lameter1b552532006-03-22 00:09:07 -08004017 */
4018void drain_array(struct kmem_cache *cachep, struct kmem_list3 *l3,
4019 struct array_cache *ac, int force, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004020{
4021 int tofree;
4022
Christoph Lameter1b552532006-03-22 00:09:07 -08004023 if (!ac || !ac->avail)
4024 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004025 if (ac->touched && !force) {
4026 ac->touched = 0;
Christoph Lameterb18e7e62006-03-22 00:09:07 -08004027 } else {
Christoph Lameter1b552532006-03-22 00:09:07 -08004028 spin_lock_irq(&l3->list_lock);
Christoph Lameterb18e7e62006-03-22 00:09:07 -08004029 if (ac->avail) {
4030 tofree = force ? ac->avail : (ac->limit + 4) / 5;
4031 if (tofree > ac->avail)
4032 tofree = (ac->avail + 1) / 2;
4033 free_block(cachep, ac->entry, tofree, node);
4034 ac->avail -= tofree;
4035 memmove(ac->entry, &(ac->entry[tofree]),
4036 sizeof(void *) * ac->avail);
4037 }
Christoph Lameter1b552532006-03-22 00:09:07 -08004038 spin_unlock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004039 }
4040}
4041
4042/**
4043 * cache_reap - Reclaim memory from caches.
Randy Dunlap05fb6bf2007-02-28 20:12:13 -08004044 * @w: work descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -07004045 *
4046 * Called from workqueue/eventd every few seconds.
4047 * Purpose:
4048 * - clear the per-cpu caches for this CPU.
4049 * - return freeable pages to the main free memory pool.
4050 *
Andrew Mortona737b3e2006-03-22 00:08:11 -08004051 * If we cannot acquire the cache chain mutex then just give up - we'll try
4052 * again on the next iteration.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004053 */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004054static void cache_reap(struct work_struct *w)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004055{
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004056 struct kmem_cache *searchp;
Christoph Lametere498be72005-09-09 13:03:32 -07004057 struct kmem_list3 *l3;
Christoph Lameteraab22072006-03-22 00:09:06 -08004058 int node = numa_node_id();
Jean Delvarebf6aede2009-04-02 16:56:54 -07004059 struct delayed_work *work = to_delayed_work(w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004060
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004061 if (!mutex_trylock(&cache_chain_mutex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004062 /* Give up. Setup the next iteration. */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004063 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004064
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004065 list_for_each_entry(searchp, &cache_chain, next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004066 check_irq_on();
4067
Christoph Lameter35386e32006-03-22 00:09:05 -08004068 /*
4069 * We only take the l3 lock if absolutely necessary and we
4070 * have established with reasonable certainty that
4071 * we can do some work if the lock was obtained.
4072 */
Christoph Lameteraab22072006-03-22 00:09:06 -08004073 l3 = searchp->nodelists[node];
Christoph Lameter35386e32006-03-22 00:09:05 -08004074
Christoph Lameter8fce4d82006-03-09 17:33:54 -08004075 reap_alien(searchp, l3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004076
Christoph Lameteraab22072006-03-22 00:09:06 -08004077 drain_array(searchp, l3, cpu_cache_get(searchp), 0, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078
Christoph Lameter35386e32006-03-22 00:09:05 -08004079 /*
4080 * These are racy checks but it does not matter
4081 * if we skip one check or scan twice.
4082 */
Christoph Lametere498be72005-09-09 13:03:32 -07004083 if (time_after(l3->next_reap, jiffies))
Christoph Lameter35386e32006-03-22 00:09:05 -08004084 goto next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004085
Christoph Lametere498be72005-09-09 13:03:32 -07004086 l3->next_reap = jiffies + REAPTIMEOUT_LIST3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004087
Christoph Lameteraab22072006-03-22 00:09:06 -08004088 drain_array(searchp, l3, l3->shared, 0, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004089
Christoph Lametered11d9e2006-06-30 01:55:45 -07004090 if (l3->free_touched)
Christoph Lametere498be72005-09-09 13:03:32 -07004091 l3->free_touched = 0;
Christoph Lametered11d9e2006-06-30 01:55:45 -07004092 else {
4093 int freed;
4094
4095 freed = drain_freelist(searchp, l3, (l3->free_limit +
4096 5 * searchp->num - 1) / (5 * searchp->num));
4097 STATS_ADD_REAPED(searchp, freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004098 }
Christoph Lameter35386e32006-03-22 00:09:05 -08004099next:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004100 cond_resched();
4101 }
4102 check_irq_on();
Ingo Molnarfc0abb12006-01-18 17:42:33 -08004103 mutex_unlock(&cache_chain_mutex);
Christoph Lameter8fce4d82006-03-09 17:33:54 -08004104 next_reap_node();
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004105out:
Andrew Mortona737b3e2006-03-22 00:08:11 -08004106 /* Set up the next iteration */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004107 schedule_delayed_work(work, round_jiffies_relative(REAPTIMEOUT_CPUC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004108}
4109
Linus Torvalds158a9622008-01-02 13:04:48 -08004110#ifdef CONFIG_SLABINFO
Linus Torvalds1da177e2005-04-16 15:20:36 -07004111
Pekka Enberg85289f92006-01-08 01:00:36 -08004112static void print_slabinfo_header(struct seq_file *m)
4113{
4114 /*
4115 * Output format version, so at least we can change it
4116 * without _too_ many complaints.
4117 */
4118#if STATS
4119 seq_puts(m, "slabinfo - version: 2.1 (statistics)\n");
4120#else
4121 seq_puts(m, "slabinfo - version: 2.1\n");
4122#endif
4123 seq_puts(m, "# name <active_objs> <num_objs> <objsize> "
4124 "<objperslab> <pagesperslab>");
4125 seq_puts(m, " : tunables <limit> <batchcount> <sharedfactor>");
4126 seq_puts(m, " : slabdata <active_slabs> <num_slabs> <sharedavail>");
4127#if STATS
4128 seq_puts(m, " : globalstat <listallocs> <maxobjs> <grown> <reaped> "
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -07004129 "<error> <maxfreeable> <nodeallocs> <remotefrees> <alienoverflow>");
Pekka Enberg85289f92006-01-08 01:00:36 -08004130 seq_puts(m, " : cpustat <allochit> <allocmiss> <freehit> <freemiss>");
4131#endif
4132 seq_putc(m, '\n');
4133}
4134
Linus Torvalds1da177e2005-04-16 15:20:36 -07004135static void *s_start(struct seq_file *m, loff_t *pos)
4136{
4137 loff_t n = *pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004138
Ingo Molnarfc0abb12006-01-18 17:42:33 -08004139 mutex_lock(&cache_chain_mutex);
Pekka Enberg85289f92006-01-08 01:00:36 -08004140 if (!n)
4141 print_slabinfo_header(m);
Pavel Emelianovb92151b2007-07-15 23:38:04 -07004142
4143 return seq_list_start(&cache_chain, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004144}
4145
4146static void *s_next(struct seq_file *m, void *p, loff_t *pos)
4147{
Pavel Emelianovb92151b2007-07-15 23:38:04 -07004148 return seq_list_next(p, &cache_chain, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004149}
4150
4151static void s_stop(struct seq_file *m, void *p)
4152{
Ingo Molnarfc0abb12006-01-18 17:42:33 -08004153 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004154}
4155
4156static int s_show(struct seq_file *m, void *p)
4157{
Pavel Emelianovb92151b2007-07-15 23:38:04 -07004158 struct kmem_cache *cachep = list_entry(p, struct kmem_cache, next);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004159 struct slab *slabp;
4160 unsigned long active_objs;
4161 unsigned long num_objs;
4162 unsigned long active_slabs = 0;
4163 unsigned long num_slabs, free_objects = 0, shared_avail = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07004164 const char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004165 char *error = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07004166 int node;
4167 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004168
Linus Torvalds1da177e2005-04-16 15:20:36 -07004169 active_objs = 0;
4170 num_slabs = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07004171 for_each_online_node(node) {
4172 l3 = cachep->nodelists[node];
4173 if (!l3)
4174 continue;
4175
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08004176 check_irq_on();
4177 spin_lock_irq(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07004178
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004179 list_for_each_entry(slabp, &l3->slabs_full, list) {
Christoph Lametere498be72005-09-09 13:03:32 -07004180 if (slabp->inuse != cachep->num && !error)
4181 error = "slabs_full accounting error";
4182 active_objs += cachep->num;
4183 active_slabs++;
4184 }
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004185 list_for_each_entry(slabp, &l3->slabs_partial, list) {
Christoph Lametere498be72005-09-09 13:03:32 -07004186 if (slabp->inuse == cachep->num && !error)
4187 error = "slabs_partial inuse accounting error";
4188 if (!slabp->inuse && !error)
4189 error = "slabs_partial/inuse accounting error";
4190 active_objs += slabp->inuse;
4191 active_slabs++;
4192 }
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004193 list_for_each_entry(slabp, &l3->slabs_free, list) {
Christoph Lametere498be72005-09-09 13:03:32 -07004194 if (slabp->inuse && !error)
4195 error = "slabs_free/inuse accounting error";
4196 num_slabs++;
4197 }
4198 free_objects += l3->free_objects;
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08004199 if (l3->shared)
4200 shared_avail += l3->shared->avail;
Christoph Lametere498be72005-09-09 13:03:32 -07004201
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08004202 spin_unlock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004203 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004204 num_slabs += active_slabs;
4205 num_objs = num_slabs * cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07004206 if (num_objs - active_objs != free_objects && !error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004207 error = "free_objects accounting error";
4208
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004209 name = cachep->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004210 if (error)
4211 printk(KERN_ERR "slab: cache %s error: %s\n", name, error);
4212
4213 seq_printf(m, "%-17s %6lu %6lu %6u %4u %4d",
Manfred Spraul3dafccf2006-02-01 03:05:42 -08004214 name, active_objs, num_objs, cachep->buffer_size,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004215 cachep->num, (1 << cachep->gfporder));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004216 seq_printf(m, " : tunables %4u %4u %4u",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004217 cachep->limit, cachep->batchcount, cachep->shared);
Christoph Lametere498be72005-09-09 13:03:32 -07004218 seq_printf(m, " : slabdata %6lu %6lu %6lu",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004219 active_slabs, num_slabs, shared_avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004220#if STATS
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004221 { /* list3 stats */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004222 unsigned long high = cachep->high_mark;
4223 unsigned long allocs = cachep->num_allocations;
4224 unsigned long grown = cachep->grown;
4225 unsigned long reaped = cachep->reaped;
4226 unsigned long errors = cachep->errors;
4227 unsigned long max_freeable = cachep->max_freeable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004228 unsigned long node_allocs = cachep->node_allocs;
Christoph Lametere498be72005-09-09 13:03:32 -07004229 unsigned long node_frees = cachep->node_frees;
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -07004230 unsigned long overflows = cachep->node_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004231
Christoph Lametere498be72005-09-09 13:03:32 -07004232 seq_printf(m, " : globalstat %7lu %6lu %5lu %4lu \
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -07004233 %4lu %4lu %4lu %4lu %4lu", allocs, high, grown,
Andrew Mortona737b3e2006-03-22 00:08:11 -08004234 reaped, errors, max_freeable, node_allocs,
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -07004235 node_frees, overflows);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004236 }
4237 /* cpu stats */
4238 {
4239 unsigned long allochit = atomic_read(&cachep->allochit);
4240 unsigned long allocmiss = atomic_read(&cachep->allocmiss);
4241 unsigned long freehit = atomic_read(&cachep->freehit);
4242 unsigned long freemiss = atomic_read(&cachep->freemiss);
4243
4244 seq_printf(m, " : cpustat %6lu %6lu %6lu %6lu",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004245 allochit, allocmiss, freehit, freemiss);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004246 }
4247#endif
4248 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07004249 return 0;
4250}
4251
4252/*
4253 * slabinfo_op - iterator that generates /proc/slabinfo
4254 *
4255 * Output layout:
4256 * cache-name
4257 * num-active-objs
4258 * total-objs
4259 * object size
4260 * num-active-slabs
4261 * total-slabs
4262 * num-pages-per-slab
4263 * + further values on SMP and with statistics enabled
4264 */
4265
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04004266static const struct seq_operations slabinfo_op = {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004267 .start = s_start,
4268 .next = s_next,
4269 .stop = s_stop,
4270 .show = s_show,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004271};
4272
4273#define MAX_SLABINFO_WRITE 128
4274/**
4275 * slabinfo_write - Tuning for the slab allocator
4276 * @file: unused
4277 * @buffer: user buffer
4278 * @count: data length
4279 * @ppos: unused
4280 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004281ssize_t slabinfo_write(struct file *file, const char __user * buffer,
4282 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004283{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004284 char kbuf[MAX_SLABINFO_WRITE + 1], *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004285 int limit, batchcount, shared, res;
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004286 struct kmem_cache *cachep;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004287
Linus Torvalds1da177e2005-04-16 15:20:36 -07004288 if (count > MAX_SLABINFO_WRITE)
4289 return -EINVAL;
4290 if (copy_from_user(&kbuf, buffer, count))
4291 return -EFAULT;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004292 kbuf[MAX_SLABINFO_WRITE] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07004293
4294 tmp = strchr(kbuf, ' ');
4295 if (!tmp)
4296 return -EINVAL;
4297 *tmp = '\0';
4298 tmp++;
4299 if (sscanf(tmp, " %d %d %d", &limit, &batchcount, &shared) != 3)
4300 return -EINVAL;
4301
4302 /* Find the cache in the chain of caches. */
Ingo Molnarfc0abb12006-01-18 17:42:33 -08004303 mutex_lock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004304 res = -EINVAL;
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004305 list_for_each_entry(cachep, &cache_chain, next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004306 if (!strcmp(cachep->name, kbuf)) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08004307 if (limit < 1 || batchcount < 1 ||
4308 batchcount > limit || shared < 0) {
Christoph Lametere498be72005-09-09 13:03:32 -07004309 res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004310 } else {
Christoph Lametere498be72005-09-09 13:03:32 -07004311 res = do_tune_cpucache(cachep, limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03004312 batchcount, shared,
4313 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004314 }
4315 break;
4316 }
4317 }
Ingo Molnarfc0abb12006-01-18 17:42:33 -08004318 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004319 if (res >= 0)
4320 res = count;
4321 return res;
4322}
Al Viro871751e2006-03-25 03:06:39 -08004323
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04004324static int slabinfo_open(struct inode *inode, struct file *file)
4325{
4326 return seq_open(file, &slabinfo_op);
4327}
4328
4329static const struct file_operations proc_slabinfo_operations = {
4330 .open = slabinfo_open,
4331 .read = seq_read,
4332 .write = slabinfo_write,
4333 .llseek = seq_lseek,
4334 .release = seq_release,
4335};
4336
Al Viro871751e2006-03-25 03:06:39 -08004337#ifdef CONFIG_DEBUG_SLAB_LEAK
4338
4339static void *leaks_start(struct seq_file *m, loff_t *pos)
4340{
Al Viro871751e2006-03-25 03:06:39 -08004341 mutex_lock(&cache_chain_mutex);
Pavel Emelianovb92151b2007-07-15 23:38:04 -07004342 return seq_list_start(&cache_chain, *pos);
Al Viro871751e2006-03-25 03:06:39 -08004343}
4344
4345static inline int add_caller(unsigned long *n, unsigned long v)
4346{
4347 unsigned long *p;
4348 int l;
4349 if (!v)
4350 return 1;
4351 l = n[1];
4352 p = n + 2;
4353 while (l) {
4354 int i = l/2;
4355 unsigned long *q = p + 2 * i;
4356 if (*q == v) {
4357 q[1]++;
4358 return 1;
4359 }
4360 if (*q > v) {
4361 l = i;
4362 } else {
4363 p = q + 2;
4364 l -= i + 1;
4365 }
4366 }
4367 if (++n[1] == n[0])
4368 return 0;
4369 memmove(p + 2, p, n[1] * 2 * sizeof(unsigned long) - ((void *)p - (void *)n));
4370 p[0] = v;
4371 p[1] = 1;
4372 return 1;
4373}
4374
4375static void handle_slab(unsigned long *n, struct kmem_cache *c, struct slab *s)
4376{
4377 void *p;
4378 int i;
4379 if (n[0] == n[1])
4380 return;
4381 for (i = 0, p = s->s_mem; i < c->num; i++, p += c->buffer_size) {
4382 if (slab_bufctl(s)[i] != BUFCTL_ACTIVE)
4383 continue;
4384 if (!add_caller(n, (unsigned long)*dbg_userword(c, p)))
4385 return;
4386 }
4387}
4388
4389static void show_symbol(struct seq_file *m, unsigned long address)
4390{
4391#ifdef CONFIG_KALLSYMS
Al Viro871751e2006-03-25 03:06:39 -08004392 unsigned long offset, size;
Tejun Heo9281ace2007-07-17 04:03:51 -07004393 char modname[MODULE_NAME_LEN], name[KSYM_NAME_LEN];
Al Viro871751e2006-03-25 03:06:39 -08004394
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004395 if (lookup_symbol_attrs(address, &size, &offset, modname, name) == 0) {
Al Viro871751e2006-03-25 03:06:39 -08004396 seq_printf(m, "%s+%#lx/%#lx", name, offset, size);
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004397 if (modname[0])
Al Viro871751e2006-03-25 03:06:39 -08004398 seq_printf(m, " [%s]", modname);
4399 return;
4400 }
4401#endif
4402 seq_printf(m, "%p", (void *)address);
4403}
4404
4405static int leaks_show(struct seq_file *m, void *p)
4406{
Pavel Emelianovb92151b2007-07-15 23:38:04 -07004407 struct kmem_cache *cachep = list_entry(p, struct kmem_cache, next);
Al Viro871751e2006-03-25 03:06:39 -08004408 struct slab *slabp;
4409 struct kmem_list3 *l3;
4410 const char *name;
4411 unsigned long *n = m->private;
4412 int node;
4413 int i;
4414
4415 if (!(cachep->flags & SLAB_STORE_USER))
4416 return 0;
4417 if (!(cachep->flags & SLAB_RED_ZONE))
4418 return 0;
4419
4420 /* OK, we can do it */
4421
4422 n[1] = 0;
4423
4424 for_each_online_node(node) {
4425 l3 = cachep->nodelists[node];
4426 if (!l3)
4427 continue;
4428
4429 check_irq_on();
4430 spin_lock_irq(&l3->list_lock);
4431
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004432 list_for_each_entry(slabp, &l3->slabs_full, list)
Al Viro871751e2006-03-25 03:06:39 -08004433 handle_slab(n, cachep, slabp);
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004434 list_for_each_entry(slabp, &l3->slabs_partial, list)
Al Viro871751e2006-03-25 03:06:39 -08004435 handle_slab(n, cachep, slabp);
Al Viro871751e2006-03-25 03:06:39 -08004436 spin_unlock_irq(&l3->list_lock);
4437 }
4438 name = cachep->name;
4439 if (n[0] == n[1]) {
4440 /* Increase the buffer size */
4441 mutex_unlock(&cache_chain_mutex);
4442 m->private = kzalloc(n[0] * 4 * sizeof(unsigned long), GFP_KERNEL);
4443 if (!m->private) {
4444 /* Too bad, we are really out */
4445 m->private = n;
4446 mutex_lock(&cache_chain_mutex);
4447 return -ENOMEM;
4448 }
4449 *(unsigned long *)m->private = n[0] * 2;
4450 kfree(n);
4451 mutex_lock(&cache_chain_mutex);
4452 /* Now make sure this entry will be retried */
4453 m->count = m->size;
4454 return 0;
4455 }
4456 for (i = 0; i < n[1]; i++) {
4457 seq_printf(m, "%s: %lu ", name, n[2*i+3]);
4458 show_symbol(m, n[2*i+2]);
4459 seq_putc(m, '\n');
4460 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004461
Al Viro871751e2006-03-25 03:06:39 -08004462 return 0;
4463}
4464
Alexey Dobriyana0ec95a82008-10-06 00:59:10 +04004465static const struct seq_operations slabstats_op = {
Al Viro871751e2006-03-25 03:06:39 -08004466 .start = leaks_start,
4467 .next = s_next,
4468 .stop = s_stop,
4469 .show = leaks_show,
4470};
Alexey Dobriyana0ec95a82008-10-06 00:59:10 +04004471
4472static int slabstats_open(struct inode *inode, struct file *file)
4473{
4474 unsigned long *n = kzalloc(PAGE_SIZE, GFP_KERNEL);
4475 int ret = -ENOMEM;
4476 if (n) {
4477 ret = seq_open(file, &slabstats_op);
4478 if (!ret) {
4479 struct seq_file *m = file->private_data;
4480 *n = PAGE_SIZE / (2 * sizeof(unsigned long));
4481 m->private = n;
4482 n = NULL;
4483 }
4484 kfree(n);
4485 }
4486 return ret;
4487}
4488
4489static const struct file_operations proc_slabstats_operations = {
4490 .open = slabstats_open,
4491 .read = seq_read,
4492 .llseek = seq_lseek,
4493 .release = seq_release_private,
4494};
Al Viro871751e2006-03-25 03:06:39 -08004495#endif
Alexey Dobriyana0ec95a82008-10-06 00:59:10 +04004496
4497static int __init slab_proc_init(void)
4498{
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04004499 proc_create("slabinfo",S_IWUSR|S_IRUGO,NULL,&proc_slabinfo_operations);
Alexey Dobriyana0ec95a82008-10-06 00:59:10 +04004500#ifdef CONFIG_DEBUG_SLAB_LEAK
4501 proc_create("slab_allocators", 0, NULL, &proc_slabstats_operations);
4502#endif
4503 return 0;
4504}
4505module_init(slab_proc_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004506#endif
4507
Manfred Spraul00e145b2005-09-03 15:55:07 -07004508/**
4509 * ksize - get the actual amount of memory allocated for a given object
4510 * @objp: Pointer to the object
4511 *
4512 * kmalloc may internally round up allocations and return more memory
4513 * than requested. ksize() can be used to determine the actual amount of
4514 * memory allocated. The caller may use this additional memory, even though
4515 * a smaller amount of memory was initially specified with the kmalloc call.
4516 * The caller must guarantee that objp points to a valid object previously
4517 * allocated with either kmalloc() or kmem_cache_alloc(). The object
4518 * must not be freed during the duration of the call.
4519 */
Pekka Enbergfd76bab2007-05-06 14:48:40 -07004520size_t ksize(const void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004521{
Christoph Lameteref8b4522007-10-16 01:24:46 -07004522 BUG_ON(!objp);
4523 if (unlikely(objp == ZERO_SIZE_PTR))
Manfred Spraul00e145b2005-09-03 15:55:07 -07004524 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004525
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08004526 return obj_size(virt_to_cache(objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004527}
Kirill A. Shutemovb1aabec2009-02-10 15:21:44 +02004528EXPORT_SYMBOL(ksize);