blob: 52cf0b4634d4137b3bdec4e032d31f5625cd1bbf [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>
105#include <linux/rcupdate.h>
Paulo Marques543537b2005-06-23 00:09:02 -0700106#include <linux/string.h>
Andrew Morton138ae662006-12-06 20:36:41 -0800107#include <linux/uaccess.h>
Christoph Lametere498be72005-09-09 13:03:32 -0700108#include <linux/nodemask.h>
Catalin Marinasd5cff632009-06-11 13:22:40 +0100109#include <linux/kmemleak.h>
Christoph Lameterdc85da12006-01-18 17:42:36 -0800110#include <linux/mempolicy.h>
Ingo Molnarfc0abb12006-01-18 17:42:33 -0800111#include <linux/mutex.h>
Akinobu Mita8a8b6502006-12-08 02:39:44 -0800112#include <linux/fault-inject.h>
Ingo Molnare7eebaf2006-06-27 02:54:55 -0700113#include <linux/rtmutex.h>
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800114#include <linux/reciprocal_div.h>
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700115#include <linux/debugobjects.h>
Pekka Enbergc175eea2008-05-09 20:35:53 +0200116#include <linux/kmemcheck.h>
David Rientjes8f9f8d92010-03-27 19:40:47 -0700117#include <linux/memory.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_FLAGS
148#define ARCH_KMALLOC_FLAGS SLAB_HWCACHE_ALIGN
149#endif
150
151/* Legal flag mask for kmem_cache_create(). */
152#if DEBUG
Christoph Lameter50953fe2007-05-06 14:50:16 -0700153# define CREATE_MASK (SLAB_RED_ZONE | \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 SLAB_POISON | SLAB_HWCACHE_ALIGN | \
Christoph Lameterac2b8982006-03-22 00:08:15 -0800155 SLAB_CACHE_DMA | \
Christoph Lameter5af60832007-05-06 14:49:56 -0700156 SLAB_STORE_USER | \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 SLAB_RECLAIM_ACCOUNT | SLAB_PANIC | \
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700158 SLAB_DESTROY_BY_RCU | SLAB_MEM_SPREAD | \
Pekka Enbergc175eea2008-05-09 20:35:53 +0200159 SLAB_DEBUG_OBJECTS | SLAB_NOLEAKTRACE | SLAB_NOTRACK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160#else
Christoph Lameterac2b8982006-03-22 00:08:15 -0800161# define CREATE_MASK (SLAB_HWCACHE_ALIGN | \
Christoph Lameter5af60832007-05-06 14:49:56 -0700162 SLAB_CACHE_DMA | \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 SLAB_RECLAIM_ACCOUNT | SLAB_PANIC | \
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700164 SLAB_DESTROY_BY_RCU | SLAB_MEM_SPREAD | \
Pekka Enbergc175eea2008-05-09 20:35:53 +0200165 SLAB_DEBUG_OBJECTS | SLAB_NOLEAKTRACE | SLAB_NOTRACK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166#endif
167
168/*
169 * kmem_bufctl_t:
170 *
171 * Bufctl's are used for linking objs within a slab
172 * linked offsets.
173 *
174 * This implementation relies on "struct page" for locating the cache &
175 * slab an object belongs to.
176 * This allows the bufctl structure to be small (one int), but limits
177 * the number of objects a slab (not a cache) can contain when off-slab
178 * bufctls are used. The limit is the size of the largest general cache
179 * that does not use off-slab slabs.
180 * For 32bit archs with 4 kB pages, is this 56.
181 * This is not serious, as it is only for large objects, when it is unwise
182 * to have too many per slab.
183 * Note: This limit can be raised by introducing a general cache whose size
184 * is less than 512 (PAGE_SIZE<<3), but greater than 256.
185 */
186
Kyle Moffettfa5b08d2005-09-03 15:55:03 -0700187typedef unsigned int kmem_bufctl_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188#define BUFCTL_END (((kmem_bufctl_t)(~0U))-0)
189#define BUFCTL_FREE (((kmem_bufctl_t)(~0U))-1)
Al Viro871751e2006-03-25 03:06:39 -0800190#define BUFCTL_ACTIVE (((kmem_bufctl_t)(~0U))-2)
191#define SLAB_LIMIT (((kmem_bufctl_t)(~0U))-3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 * struct slab_rcu
195 *
196 * slab_destroy on a SLAB_DESTROY_BY_RCU cache uses this structure to
197 * arrange for kmem_freepages to be called via RCU. This is useful if
198 * we need to approach a kernel structure obliquely, from its address
199 * obtained without the usual locking. We can lock the structure to
200 * stabilize it and check it's still at the given address, only if we
201 * can be sure that the memory has not been meanwhile reused for some
202 * other kind of object (which our subsystem's lock might corrupt).
203 *
204 * rcu_read_lock before reading the address, then rcu_read_unlock after
205 * taking the spinlock within the structure expected at that address.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 */
207struct slab_rcu {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800208 struct rcu_head head;
Pekka Enberg343e0d72006-02-01 03:05:50 -0800209 struct kmem_cache *cachep;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800210 void *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211};
212
213/*
Lai Jiangshan5bfe53a2011-03-10 15:22:24 +0800214 * struct slab
215 *
216 * Manages the objs in a slab. Placed either at the beginning of mem allocated
217 * for a slab, or allocated from an general cache.
218 * Slabs are chained into three list: fully used, partial, fully free slabs.
219 */
220struct slab {
221 union {
222 struct {
223 struct list_head list;
224 unsigned long colouroff;
225 void *s_mem; /* including colour offset */
226 unsigned int inuse; /* num of objs active in slab */
227 kmem_bufctl_t free;
228 unsigned short nodeid;
229 };
230 struct slab_rcu __slab_cover_slab_rcu;
231 };
232};
233
234/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 * struct array_cache
236 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 * Purpose:
238 * - LIFO ordering, to hand out cache-warm objects from _alloc
239 * - reduce the number of linked list operations
240 * - reduce spinlock operations
241 *
242 * The limit is stored in the per-cpu structure to reduce the data cache
243 * footprint.
244 *
245 */
246struct array_cache {
247 unsigned int avail;
248 unsigned int limit;
249 unsigned int batchcount;
250 unsigned int touched;
Christoph Lametere498be72005-09-09 13:03:32 -0700251 spinlock_t lock;
Robert P. J. Daybda5b652007-10-16 23:30:05 -0700252 void *entry[]; /*
Andrew Mortona737b3e2006-03-22 00:08:11 -0800253 * Must have this definition in here for the proper
254 * alignment of array_cache. Also simplifies accessing
255 * the entries.
Andrew Mortona737b3e2006-03-22 00:08:11 -0800256 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257};
258
Andrew Mortona737b3e2006-03-22 00:08:11 -0800259/*
260 * bootstrap: The caches do not work without cpuarrays anymore, but the
261 * cpuarrays are allocated from the generic caches...
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 */
263#define BOOT_CPUCACHE_ENTRIES 1
264struct arraycache_init {
265 struct array_cache cache;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800266 void *entries[BOOT_CPUCACHE_ENTRIES];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267};
268
269/*
Christoph Lametere498be72005-09-09 13:03:32 -0700270 * The slab lists for all objects.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 */
272struct kmem_list3 {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800273 struct list_head slabs_partial; /* partial list first, better asm code */
274 struct list_head slabs_full;
275 struct list_head slabs_free;
276 unsigned long free_objects;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800277 unsigned int free_limit;
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -0800278 unsigned int colour_next; /* Per-node cache coloring */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800279 spinlock_t list_lock;
280 struct array_cache *shared; /* shared per node */
281 struct array_cache **alien; /* on other nodes */
Christoph Lameter35386e32006-03-22 00:09:05 -0800282 unsigned long next_reap; /* updated without locking */
283 int free_touched; /* updated without locking */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284};
285
Christoph Lametere498be72005-09-09 13:03:32 -0700286/*
287 * Need this for bootstrapping a per node allocator.
288 */
Pekka Enberg556a1692008-01-25 08:20:51 +0200289#define NUM_INIT_LISTS (3 * MAX_NUMNODES)
H Hartley Sweeten68a1b192011-01-11 17:49:32 -0600290static struct kmem_list3 __initdata initkmem_list3[NUM_INIT_LISTS];
Christoph Lametere498be72005-09-09 13:03:32 -0700291#define CACHE_CACHE 0
Pekka Enberg556a1692008-01-25 08:20:51 +0200292#define SIZE_AC MAX_NUMNODES
293#define SIZE_L3 (2 * MAX_NUMNODES)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Christoph Lametered11d9e2006-06-30 01:55:45 -0700295static int drain_freelist(struct kmem_cache *cache,
296 struct kmem_list3 *l3, int tofree);
297static void free_block(struct kmem_cache *cachep, void **objpp, int len,
298 int node);
Pekka Enberg83b519e2009-06-10 19:40:04 +0300299static int enable_cpucache(struct kmem_cache *cachep, gfp_t gfp);
David Howells65f27f32006-11-22 14:55:48 +0000300static void cache_reap(struct work_struct *unused);
Christoph Lametered11d9e2006-06-30 01:55:45 -0700301
Christoph Lametere498be72005-09-09 13:03:32 -0700302/*
Andrew Mortona737b3e2006-03-22 00:08:11 -0800303 * This function must be completely optimized away if a constant is passed to
304 * it. Mostly the same as what is in linux/slab.h except it returns an index.
Christoph Lametere498be72005-09-09 13:03:32 -0700305 */
Ivan Kokshaysky7243cc02005-09-22 21:43:58 -0700306static __always_inline int index_of(const size_t size)
Christoph Lametere498be72005-09-09 13:03:32 -0700307{
Steven Rostedt5ec8a842006-02-01 03:05:44 -0800308 extern void __bad_size(void);
309
Christoph Lametere498be72005-09-09 13:03:32 -0700310 if (__builtin_constant_p(size)) {
311 int i = 0;
312
313#define CACHE(x) \
314 if (size <=x) \
315 return i; \
316 else \
317 i++;
Joe Perches1c61fc42008-03-05 13:58:17 -0800318#include <linux/kmalloc_sizes.h>
Christoph Lametere498be72005-09-09 13:03:32 -0700319#undef CACHE
Steven Rostedt5ec8a842006-02-01 03:05:44 -0800320 __bad_size();
Ivan Kokshaysky7243cc02005-09-22 21:43:58 -0700321 } else
Steven Rostedt5ec8a842006-02-01 03:05:44 -0800322 __bad_size();
Christoph Lametere498be72005-09-09 13:03:32 -0700323 return 0;
324}
325
Ingo Molnare0a42722006-06-23 02:03:46 -0700326static int slab_early_init = 1;
327
Christoph Lametere498be72005-09-09 13:03:32 -0700328#define INDEX_AC index_of(sizeof(struct arraycache_init))
329#define INDEX_L3 index_of(sizeof(struct kmem_list3))
330
Pekka Enberg5295a742006-02-01 03:05:48 -0800331static void kmem_list3_init(struct kmem_list3 *parent)
Christoph Lametere498be72005-09-09 13:03:32 -0700332{
333 INIT_LIST_HEAD(&parent->slabs_full);
334 INIT_LIST_HEAD(&parent->slabs_partial);
335 INIT_LIST_HEAD(&parent->slabs_free);
336 parent->shared = NULL;
337 parent->alien = NULL;
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -0800338 parent->colour_next = 0;
Christoph Lametere498be72005-09-09 13:03:32 -0700339 spin_lock_init(&parent->list_lock);
340 parent->free_objects = 0;
341 parent->free_touched = 0;
342}
343
Andrew Mortona737b3e2006-03-22 00:08:11 -0800344#define MAKE_LIST(cachep, listp, slab, nodeid) \
345 do { \
346 INIT_LIST_HEAD(listp); \
347 list_splice(&(cachep->nodelists[nodeid]->slab), listp); \
Christoph Lametere498be72005-09-09 13:03:32 -0700348 } while (0)
349
Andrew Mortona737b3e2006-03-22 00:08:11 -0800350#define MAKE_ALL_LISTS(cachep, ptr, nodeid) \
351 do { \
Christoph Lametere498be72005-09-09 13:03:32 -0700352 MAKE_LIST((cachep), (&(ptr)->slabs_full), slabs_full, nodeid); \
353 MAKE_LIST((cachep), (&(ptr)->slabs_partial), slabs_partial, nodeid); \
354 MAKE_LIST((cachep), (&(ptr)->slabs_free), slabs_free, nodeid); \
355 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357#define CFLGS_OFF_SLAB (0x80000000UL)
358#define OFF_SLAB(x) ((x)->flags & CFLGS_OFF_SLAB)
359
360#define BATCHREFILL_LIMIT 16
Andrew Mortona737b3e2006-03-22 00:08:11 -0800361/*
362 * Optimization question: fewer reaps means less probability for unnessary
363 * cpucache drain/refill cycles.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 *
Adrian Bunkdc6f3f22005-11-08 16:44:08 +0100365 * OTOH the cpuarrays can contain lots of objects,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 * which could lock up otherwise freeable slabs.
367 */
368#define REAPTIMEOUT_CPUC (2*HZ)
369#define REAPTIMEOUT_LIST3 (4*HZ)
370
371#if STATS
372#define STATS_INC_ACTIVE(x) ((x)->num_active++)
373#define STATS_DEC_ACTIVE(x) ((x)->num_active--)
374#define STATS_INC_ALLOCED(x) ((x)->num_allocations++)
375#define STATS_INC_GROWN(x) ((x)->grown++)
Christoph Lametered11d9e2006-06-30 01:55:45 -0700376#define STATS_ADD_REAPED(x,y) ((x)->reaped += (y))
Andrew Mortona737b3e2006-03-22 00:08:11 -0800377#define STATS_SET_HIGH(x) \
378 do { \
379 if ((x)->num_active > (x)->high_mark) \
380 (x)->high_mark = (x)->num_active; \
381 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382#define STATS_INC_ERR(x) ((x)->errors++)
383#define STATS_INC_NODEALLOCS(x) ((x)->node_allocs++)
Christoph Lametere498be72005-09-09 13:03:32 -0700384#define STATS_INC_NODEFREES(x) ((x)->node_frees++)
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -0700385#define STATS_INC_ACOVERFLOW(x) ((x)->node_overflow++)
Andrew Mortona737b3e2006-03-22 00:08:11 -0800386#define STATS_SET_FREEABLE(x, i) \
387 do { \
388 if ((x)->max_freeable < i) \
389 (x)->max_freeable = i; \
390 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391#define STATS_INC_ALLOCHIT(x) atomic_inc(&(x)->allochit)
392#define STATS_INC_ALLOCMISS(x) atomic_inc(&(x)->allocmiss)
393#define STATS_INC_FREEHIT(x) atomic_inc(&(x)->freehit)
394#define STATS_INC_FREEMISS(x) atomic_inc(&(x)->freemiss)
395#else
396#define STATS_INC_ACTIVE(x) do { } while (0)
397#define STATS_DEC_ACTIVE(x) do { } while (0)
398#define STATS_INC_ALLOCED(x) do { } while (0)
399#define STATS_INC_GROWN(x) do { } while (0)
Andi Kleen4e60c862010-08-09 17:19:03 -0700400#define STATS_ADD_REAPED(x,y) do { (void)(y); } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401#define STATS_SET_HIGH(x) do { } while (0)
402#define STATS_INC_ERR(x) do { } while (0)
403#define STATS_INC_NODEALLOCS(x) do { } while (0)
Christoph Lametere498be72005-09-09 13:03:32 -0700404#define STATS_INC_NODEFREES(x) do { } while (0)
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -0700405#define STATS_INC_ACOVERFLOW(x) do { } while (0)
Andrew Mortona737b3e2006-03-22 00:08:11 -0800406#define STATS_SET_FREEABLE(x, i) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700407#define STATS_INC_ALLOCHIT(x) do { } while (0)
408#define STATS_INC_ALLOCMISS(x) do { } while (0)
409#define STATS_INC_FREEHIT(x) do { } while (0)
410#define STATS_INC_FREEMISS(x) do { } while (0)
411#endif
412
413#if DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414
Andrew Mortona737b3e2006-03-22 00:08:11 -0800415/*
416 * memory layout of objects:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 * 0 : objp
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800418 * 0 .. cachep->obj_offset - BYTES_PER_WORD - 1: padding. This ensures that
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 * the end of an object is aligned with the end of the real
420 * allocation. Catches writes behind the end of the allocation.
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800421 * cachep->obj_offset - BYTES_PER_WORD .. cachep->obj_offset - 1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 * redzone word.
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800423 * cachep->obj_offset: The real object.
424 * cachep->buffer_size - 2* BYTES_PER_WORD: redzone word [BYTES_PER_WORD long]
Andrew Mortona737b3e2006-03-22 00:08:11 -0800425 * cachep->buffer_size - 1* BYTES_PER_WORD: last caller address
426 * [BYTES_PER_WORD long]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800428static int obj_offset(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429{
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800430 return cachep->obj_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431}
432
Pekka Enberg343e0d72006-02-01 03:05:50 -0800433static int obj_size(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434{
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800435 return cachep->obj_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436}
437
David Woodhouseb46b8f12007-05-08 00:22:59 -0700438static unsigned long long *dbg_redzone1(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439{
440 BUG_ON(!(cachep->flags & SLAB_RED_ZONE));
David Woodhouseb46b8f12007-05-08 00:22:59 -0700441 return (unsigned long long*) (objp + obj_offset(cachep) -
442 sizeof(unsigned long long));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443}
444
David Woodhouseb46b8f12007-05-08 00:22:59 -0700445static unsigned long long *dbg_redzone2(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446{
447 BUG_ON(!(cachep->flags & SLAB_RED_ZONE));
448 if (cachep->flags & SLAB_STORE_USER)
David Woodhouseb46b8f12007-05-08 00:22:59 -0700449 return (unsigned long long *)(objp + cachep->buffer_size -
450 sizeof(unsigned long long) -
David Woodhouse87a927c2007-07-04 21:26:44 -0400451 REDZONE_ALIGN);
David Woodhouseb46b8f12007-05-08 00:22:59 -0700452 return (unsigned long long *) (objp + cachep->buffer_size -
453 sizeof(unsigned long long));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454}
455
Pekka Enberg343e0d72006-02-01 03:05:50 -0800456static void **dbg_userword(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457{
458 BUG_ON(!(cachep->flags & SLAB_STORE_USER));
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800459 return (void **)(objp + cachep->buffer_size - BYTES_PER_WORD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460}
461
462#else
463
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800464#define obj_offset(x) 0
465#define obj_size(cachep) (cachep->buffer_size)
David Woodhouseb46b8f12007-05-08 00:22:59 -0700466#define dbg_redzone1(cachep, objp) ({BUG(); (unsigned long long *)NULL;})
467#define dbg_redzone2(cachep, objp) ({BUG(); (unsigned long long *)NULL;})
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468#define dbg_userword(cachep, objp) ({BUG(); (void **)NULL;})
469
470#endif
471
Li Zefan0f24f122009-12-11 15:45:30 +0800472#ifdef CONFIG_TRACING
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +0300473size_t slab_buffer_size(struct kmem_cache *cachep)
474{
475 return cachep->buffer_size;
476}
477EXPORT_SYMBOL(slab_buffer_size);
478#endif
479
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 * Do not go above this order unless 0 objects fit into the slab.
482 */
483#define BREAK_GFP_ORDER_HI 1
484#define BREAK_GFP_ORDER_LO 0
485static int slab_break_gfp_order = BREAK_GFP_ORDER_LO;
486
Andrew Mortona737b3e2006-03-22 00:08:11 -0800487/*
488 * Functions for storing/retrieving the cachep and or slab from the page
489 * allocator. These are used to find the slab an obj belongs to. With kfree(),
490 * these are used to find the cache which an obj belongs to.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 */
Pekka Enberg065d41c2005-11-13 16:06:46 -0800492static inline void page_set_cache(struct page *page, struct kmem_cache *cache)
493{
494 page->lru.next = (struct list_head *)cache;
495}
496
497static inline struct kmem_cache *page_get_cache(struct page *page)
498{
Christoph Lameterd85f3382007-05-06 14:49:39 -0700499 page = compound_head(page);
Pekka Enbergddc2e812006-06-23 02:03:40 -0700500 BUG_ON(!PageSlab(page));
Pekka Enberg065d41c2005-11-13 16:06:46 -0800501 return (struct kmem_cache *)page->lru.next;
502}
503
504static inline void page_set_slab(struct page *page, struct slab *slab)
505{
506 page->lru.prev = (struct list_head *)slab;
507}
508
509static inline struct slab *page_get_slab(struct page *page)
510{
Pekka Enbergddc2e812006-06-23 02:03:40 -0700511 BUG_ON(!PageSlab(page));
Pekka Enberg065d41c2005-11-13 16:06:46 -0800512 return (struct slab *)page->lru.prev;
513}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
Pekka Enberg6ed5eb22006-02-01 03:05:49 -0800515static inline struct kmem_cache *virt_to_cache(const void *obj)
516{
Christoph Lameterb49af682007-05-06 14:49:41 -0700517 struct page *page = virt_to_head_page(obj);
Pekka Enberg6ed5eb22006-02-01 03:05:49 -0800518 return page_get_cache(page);
519}
520
521static inline struct slab *virt_to_slab(const void *obj)
522{
Christoph Lameterb49af682007-05-06 14:49:41 -0700523 struct page *page = virt_to_head_page(obj);
Pekka Enberg6ed5eb22006-02-01 03:05:49 -0800524 return page_get_slab(page);
525}
526
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800527static inline void *index_to_obj(struct kmem_cache *cache, struct slab *slab,
528 unsigned int idx)
529{
530 return slab->s_mem + cache->buffer_size * idx;
531}
532
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800533/*
534 * We want to avoid an expensive divide : (offset / cache->buffer_size)
535 * Using the fact that buffer_size is a constant for a particular cache,
536 * we can replace (offset / cache->buffer_size) by
537 * reciprocal_divide(offset, cache->reciprocal_buffer_size)
538 */
539static inline unsigned int obj_to_index(const struct kmem_cache *cache,
540 const struct slab *slab, void *obj)
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800541{
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800542 u32 offset = (obj - slab->s_mem);
543 return reciprocal_divide(offset, cache->reciprocal_buffer_size);
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800544}
545
Andrew Mortona737b3e2006-03-22 00:08:11 -0800546/*
547 * These are the default caches for kmalloc. Custom caches can have other sizes.
548 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549struct cache_sizes malloc_sizes[] = {
550#define CACHE(x) { .cs_size = (x) },
551#include <linux/kmalloc_sizes.h>
552 CACHE(ULONG_MAX)
553#undef CACHE
554};
555EXPORT_SYMBOL(malloc_sizes);
556
557/* Must match cache_sizes above. Out of line to keep cache footprint low. */
558struct cache_names {
559 char *name;
560 char *name_dma;
561};
562
563static struct cache_names __initdata cache_names[] = {
564#define CACHE(x) { .name = "size-" #x, .name_dma = "size-" #x "(DMA)" },
565#include <linux/kmalloc_sizes.h>
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800566 {NULL,}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700567#undef CACHE
568};
569
570static struct arraycache_init initarray_cache __initdata =
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800571 { {0, BOOT_CPUCACHE_ENTRIES, 1, 0} };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572static struct arraycache_init initarray_generic =
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800573 { {0, BOOT_CPUCACHE_ENTRIES, 1, 0} };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574
575/* internal cache of cache description objs */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800576static struct kmem_cache cache_cache = {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800577 .batchcount = 1,
578 .limit = BOOT_CPUCACHE_ENTRIES,
579 .shared = 1,
Pekka Enberg343e0d72006-02-01 03:05:50 -0800580 .buffer_size = sizeof(struct kmem_cache),
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800581 .name = "kmem_cache",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582};
583
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -0700584#define BAD_ALIEN_MAGIC 0x01020304ul
585
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587 * chicken and egg problem: delay the per-cpu array allocation
588 * until the general caches are up.
589 */
590static enum {
591 NONE,
Christoph Lametere498be72005-09-09 13:03:32 -0700592 PARTIAL_AC,
593 PARTIAL_L3,
Pekka Enberg8429db52009-06-12 15:58:59 +0300594 EARLY,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 FULL
596} g_cpucache_up;
597
Mike Kravetz39d24e62006-05-15 09:44:13 -0700598/*
599 * used by boot code to determine if it can use slab based allocator
600 */
601int slab_is_available(void)
602{
Pekka Enberg8429db52009-06-12 15:58:59 +0300603 return g_cpucache_up >= EARLY;
Mike Kravetz39d24e62006-05-15 09:44:13 -0700604}
605
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200606#ifdef CONFIG_LOCKDEP
607
608/*
609 * Slab sometimes uses the kmalloc slabs to store the slab headers
610 * for other slabs "off slab".
611 * The locking for this is tricky in that it nests within the locks
612 * of all other slabs in a few places; to deal with this special
613 * locking we put on-slab caches into a separate lock-class.
614 *
615 * We set lock class for alien array caches which are up during init.
616 * The lock annotation will be lost if all cpus of a node goes down and
617 * then comes back up during hotplug
618 */
619static struct lock_class_key on_slab_l3_key;
620static struct lock_class_key on_slab_alc_key;
621
622static void init_node_lock_keys(int q)
623{
624 struct cache_sizes *s = malloc_sizes;
625
626 if (g_cpucache_up != FULL)
627 return;
628
629 for (s = malloc_sizes; s->cs_size != ULONG_MAX; s++) {
630 struct array_cache **alc;
631 struct kmem_list3 *l3;
632 int r;
633
634 l3 = s->cs_cachep->nodelists[q];
635 if (!l3 || OFF_SLAB(s->cs_cachep))
Pekka Enberg00afa752009-12-27 14:33:14 +0200636 continue;
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200637 lockdep_set_class(&l3->list_lock, &on_slab_l3_key);
638 alc = l3->alien;
639 /*
640 * FIXME: This check for BAD_ALIEN_MAGIC
641 * should go away when common slab code is taught to
642 * work even without alien caches.
643 * Currently, non NUMA code returns BAD_ALIEN_MAGIC
644 * for alloc_alien_cache,
645 */
646 if (!alc || (unsigned long)alc == BAD_ALIEN_MAGIC)
Pekka Enberg00afa752009-12-27 14:33:14 +0200647 continue;
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200648 for_each_node(r) {
649 if (alc[r])
650 lockdep_set_class(&alc[r]->lock,
651 &on_slab_alc_key);
652 }
653 }
654}
655
656static inline void init_lock_keys(void)
657{
658 int node;
659
660 for_each_node(node)
661 init_node_lock_keys(node);
662}
663#else
664static void init_node_lock_keys(int q)
665{
666}
667
668static inline void init_lock_keys(void)
669{
670}
671#endif
672
673/*
674 * Guard access to the cache-chain.
675 */
676static DEFINE_MUTEX(cache_chain_mutex);
677static struct list_head cache_chain;
678
Tejun Heo1871e522009-10-29 22:34:13 +0900679static DEFINE_PER_CPU(struct delayed_work, slab_reap_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680
Pekka Enberg343e0d72006-02-01 03:05:50 -0800681static inline struct array_cache *cpu_cache_get(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682{
683 return cachep->array[smp_processor_id()];
684}
685
Andrew Mortona737b3e2006-03-22 00:08:11 -0800686static inline struct kmem_cache *__find_general_cachep(size_t size,
687 gfp_t gfpflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688{
689 struct cache_sizes *csizep = malloc_sizes;
690
691#if DEBUG
692 /* This happens if someone tries to call
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800693 * kmem_cache_create(), or __kmalloc(), before
694 * the generic caches are initialized.
695 */
Alok Katariac7e43c72005-09-14 12:17:53 -0700696 BUG_ON(malloc_sizes[INDEX_AC].cs_cachep == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697#endif
Christoph Lameter6cb8f912007-07-17 04:03:22 -0700698 if (!size)
699 return ZERO_SIZE_PTR;
700
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 while (size > csizep->cs_size)
702 csizep++;
703
704 /*
Martin Hicks0abf40c2005-09-03 15:54:54 -0700705 * Really subtle: The last entry with cs->cs_size==ULONG_MAX
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 * has cs_{dma,}cachep==NULL. Thus no special case
707 * for large kmalloc calls required.
708 */
Christoph Lameter4b51d662007-02-10 01:43:10 -0800709#ifdef CONFIG_ZONE_DMA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 if (unlikely(gfpflags & GFP_DMA))
711 return csizep->cs_dmacachep;
Christoph Lameter4b51d662007-02-10 01:43:10 -0800712#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713 return csizep->cs_cachep;
714}
715
Adrian Bunkb2213852006-09-25 23:31:02 -0700716static struct kmem_cache *kmem_find_general_cachep(size_t size, gfp_t gfpflags)
Manfred Spraul97e2bde2005-05-01 08:58:38 -0700717{
718 return __find_general_cachep(size, gfpflags);
719}
Manfred Spraul97e2bde2005-05-01 08:58:38 -0700720
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800721static size_t slab_mgmt_size(size_t nr_objs, size_t align)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722{
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800723 return ALIGN(sizeof(struct slab)+nr_objs*sizeof(kmem_bufctl_t), align);
724}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725
Andrew Mortona737b3e2006-03-22 00:08:11 -0800726/*
727 * Calculate the number of objects and left-over bytes for a given buffer size.
728 */
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800729static void cache_estimate(unsigned long gfporder, size_t buffer_size,
730 size_t align, int flags, size_t *left_over,
731 unsigned int *num)
732{
733 int nr_objs;
734 size_t mgmt_size;
735 size_t slab_size = PAGE_SIZE << gfporder;
736
737 /*
738 * The slab management structure can be either off the slab or
739 * on it. For the latter case, the memory allocated for a
740 * slab is used for:
741 *
742 * - The struct slab
743 * - One kmem_bufctl_t for each object
744 * - Padding to respect alignment of @align
745 * - @buffer_size bytes for each object
746 *
747 * If the slab management structure is off the slab, then the
748 * alignment will already be calculated into the size. Because
749 * the slabs are all pages aligned, the objects will be at the
750 * correct alignment when allocated.
751 */
752 if (flags & CFLGS_OFF_SLAB) {
753 mgmt_size = 0;
754 nr_objs = slab_size / buffer_size;
755
756 if (nr_objs > SLAB_LIMIT)
757 nr_objs = SLAB_LIMIT;
758 } else {
759 /*
760 * Ignore padding for the initial guess. The padding
761 * is at most @align-1 bytes, and @buffer_size is at
762 * least @align. In the worst case, this result will
763 * be one greater than the number of objects that fit
764 * into the memory allocation when taking the padding
765 * into account.
766 */
767 nr_objs = (slab_size - sizeof(struct slab)) /
768 (buffer_size + sizeof(kmem_bufctl_t));
769
770 /*
771 * This calculated number will be either the right
772 * amount, or one greater than what we want.
773 */
774 if (slab_mgmt_size(nr_objs, align) + nr_objs*buffer_size
775 > slab_size)
776 nr_objs--;
777
778 if (nr_objs > SLAB_LIMIT)
779 nr_objs = SLAB_LIMIT;
780
781 mgmt_size = slab_mgmt_size(nr_objs, align);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 }
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800783 *num = nr_objs;
784 *left_over = slab_size - nr_objs*buffer_size - mgmt_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785}
786
Harvey Harrisond40cee22008-04-30 00:55:07 -0700787#define slab_error(cachep, msg) __slab_error(__func__, cachep, msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
Andrew Mortona737b3e2006-03-22 00:08:11 -0800789static void __slab_error(const char *function, struct kmem_cache *cachep,
790 char *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791{
792 printk(KERN_ERR "slab error in %s(): cache `%s': %s\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800793 function, cachep->name, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 dump_stack();
795}
796
Paul Menage3395ee02006-12-06 20:32:16 -0800797/*
798 * By default on NUMA we use alien caches to stage the freeing of
799 * objects allocated from other nodes. This causes massive memory
800 * inefficiencies when using fake NUMA setup to split memory into a
801 * large number of small nodes, so it can be disabled on the command
802 * line
803 */
804
805static int use_alien_caches __read_mostly = 1;
806static int __init noaliencache_setup(char *s)
807{
808 use_alien_caches = 0;
809 return 1;
810}
811__setup("noaliencache", noaliencache_setup);
812
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800813#ifdef CONFIG_NUMA
814/*
815 * Special reaping functions for NUMA systems called from cache_reap().
816 * These take care of doing round robin flushing of alien caches (containing
817 * objects freed on different nodes from which they were allocated) and the
818 * flushing of remote pcps by calling drain_node_pages.
819 */
Tejun Heo1871e522009-10-29 22:34:13 +0900820static DEFINE_PER_CPU(unsigned long, slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800821
822static void init_reap_node(int cpu)
823{
824 int node;
825
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -0700826 node = next_node(cpu_to_mem(cpu), node_online_map);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800827 if (node == MAX_NUMNODES)
Paul Jackson442295c2006-03-22 00:09:11 -0800828 node = first_node(node_online_map);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800829
Tejun Heo1871e522009-10-29 22:34:13 +0900830 per_cpu(slab_reap_node, cpu) = node;
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800831}
832
833static void next_reap_node(void)
834{
Christoph Lameter909ea962010-12-08 16:22:55 +0100835 int node = __this_cpu_read(slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800836
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800837 node = next_node(node, node_online_map);
838 if (unlikely(node >= MAX_NUMNODES))
839 node = first_node(node_online_map);
Christoph Lameter909ea962010-12-08 16:22:55 +0100840 __this_cpu_write(slab_reap_node, node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800841}
842
843#else
844#define init_reap_node(cpu) do { } while (0)
845#define next_reap_node(void) do { } while (0)
846#endif
847
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848/*
849 * Initiate the reap timer running on the target CPU. We run at around 1 to 2Hz
850 * via the workqueue/eventd.
851 * Add the CPU number into the expiration time to minimize the possibility of
852 * the CPUs getting into lockstep and contending for the global cache chain
853 * lock.
854 */
Adrian Bunk897e6792007-07-15 23:38:20 -0700855static void __cpuinit start_cpu_timer(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856{
Tejun Heo1871e522009-10-29 22:34:13 +0900857 struct delayed_work *reap_work = &per_cpu(slab_reap_work, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
859 /*
860 * When this gets called from do_initcalls via cpucache_init(),
861 * init_workqueues() has already run, so keventd will be setup
862 * at that time.
863 */
David Howells52bad642006-11-22 14:54:01 +0000864 if (keventd_up() && reap_work->work.func == NULL) {
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800865 init_reap_node(cpu);
Arjan van de Ven78b43532010-07-19 10:59:42 -0700866 INIT_DELAYED_WORK_DEFERRABLE(reap_work, cache_reap);
Arjan van de Ven2b284212006-12-10 02:21:28 -0800867 schedule_delayed_work_on(cpu, reap_work,
868 __round_jiffies_relative(HZ, cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 }
870}
871
Christoph Lametere498be72005-09-09 13:03:32 -0700872static struct array_cache *alloc_arraycache(int node, int entries,
Pekka Enberg83b519e2009-06-10 19:40:04 +0300873 int batchcount, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874{
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800875 int memsize = sizeof(void *) * entries + sizeof(struct array_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 struct array_cache *nc = NULL;
877
Pekka Enberg83b519e2009-06-10 19:40:04 +0300878 nc = kmalloc_node(memsize, gfp, node);
Catalin Marinasd5cff632009-06-11 13:22:40 +0100879 /*
880 * The array_cache structures contain pointers to free object.
881 * However, when such objects are allocated or transfered to another
882 * cache the pointers are not cleared and they could be counted as
883 * valid references during a kmemleak scan. Therefore, kmemleak must
884 * not scan such objects.
885 */
886 kmemleak_no_scan(nc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 if (nc) {
888 nc->avail = 0;
889 nc->limit = entries;
890 nc->batchcount = batchcount;
891 nc->touched = 0;
Christoph Lametere498be72005-09-09 13:03:32 -0700892 spin_lock_init(&nc->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 }
894 return nc;
895}
896
Christoph Lameter3ded1752006-03-25 03:06:44 -0800897/*
898 * Transfer objects in one arraycache to another.
899 * Locking must be handled by the caller.
900 *
901 * Return the number of entries transferred.
902 */
903static int transfer_objects(struct array_cache *to,
904 struct array_cache *from, unsigned int max)
905{
906 /* Figure out how many entries to transfer */
Hagen Paul Pfeifer732eacc2010-10-26 14:22:23 -0700907 int nr = min3(from->avail, max, to->limit - to->avail);
Christoph Lameter3ded1752006-03-25 03:06:44 -0800908
909 if (!nr)
910 return 0;
911
912 memcpy(to->entry + to->avail, from->entry + from->avail -nr,
913 sizeof(void *) *nr);
914
915 from->avail -= nr;
916 to->avail += nr;
Christoph Lameter3ded1752006-03-25 03:06:44 -0800917 return nr;
918}
919
Christoph Lameter765c4502006-09-27 01:50:08 -0700920#ifndef CONFIG_NUMA
921
922#define drain_alien_cache(cachep, alien) do { } while (0)
923#define reap_alien(cachep, l3) do { } while (0)
924
Pekka Enberg83b519e2009-06-10 19:40:04 +0300925static inline struct array_cache **alloc_alien_cache(int node, int limit, gfp_t gfp)
Christoph Lameter765c4502006-09-27 01:50:08 -0700926{
927 return (struct array_cache **)BAD_ALIEN_MAGIC;
928}
929
930static inline void free_alien_cache(struct array_cache **ac_ptr)
931{
932}
933
934static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
935{
936 return 0;
937}
938
939static inline void *alternate_node_alloc(struct kmem_cache *cachep,
940 gfp_t flags)
941{
942 return NULL;
943}
944
Christoph Hellwig8b98c162006-12-06 20:32:30 -0800945static inline void *____cache_alloc_node(struct kmem_cache *cachep,
Christoph Lameter765c4502006-09-27 01:50:08 -0700946 gfp_t flags, int nodeid)
947{
948 return NULL;
949}
950
951#else /* CONFIG_NUMA */
952
Christoph Hellwig8b98c162006-12-06 20:32:30 -0800953static void *____cache_alloc_node(struct kmem_cache *, gfp_t, int);
Paul Jacksonc61afb12006-03-24 03:16:08 -0800954static void *alternate_node_alloc(struct kmem_cache *, gfp_t);
Christoph Lameterdc85da12006-01-18 17:42:36 -0800955
Pekka Enberg83b519e2009-06-10 19:40:04 +0300956static struct array_cache **alloc_alien_cache(int node, int limit, gfp_t gfp)
Christoph Lametere498be72005-09-09 13:03:32 -0700957{
958 struct array_cache **ac_ptr;
Christoph Lameter8ef82862007-02-20 13:57:52 -0800959 int memsize = sizeof(void *) * nr_node_ids;
Christoph Lametere498be72005-09-09 13:03:32 -0700960 int i;
961
962 if (limit > 1)
963 limit = 12;
Haicheng Lif3186a92010-01-06 15:25:23 +0800964 ac_ptr = kzalloc_node(memsize, gfp, node);
Christoph Lametere498be72005-09-09 13:03:32 -0700965 if (ac_ptr) {
966 for_each_node(i) {
Haicheng Lif3186a92010-01-06 15:25:23 +0800967 if (i == node || !node_online(i))
Christoph Lametere498be72005-09-09 13:03:32 -0700968 continue;
Pekka Enberg83b519e2009-06-10 19:40:04 +0300969 ac_ptr[i] = alloc_arraycache(node, limit, 0xbaadf00d, gfp);
Christoph Lametere498be72005-09-09 13:03:32 -0700970 if (!ac_ptr[i]) {
Akinobu Mitacc550de2007-11-14 16:58:35 -0800971 for (i--; i >= 0; i--)
Christoph Lametere498be72005-09-09 13:03:32 -0700972 kfree(ac_ptr[i]);
973 kfree(ac_ptr);
974 return NULL;
975 }
976 }
977 }
978 return ac_ptr;
979}
980
Pekka Enberg5295a742006-02-01 03:05:48 -0800981static void free_alien_cache(struct array_cache **ac_ptr)
Christoph Lametere498be72005-09-09 13:03:32 -0700982{
983 int i;
984
985 if (!ac_ptr)
986 return;
Christoph Lametere498be72005-09-09 13:03:32 -0700987 for_each_node(i)
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800988 kfree(ac_ptr[i]);
Christoph Lametere498be72005-09-09 13:03:32 -0700989 kfree(ac_ptr);
990}
991
Pekka Enberg343e0d72006-02-01 03:05:50 -0800992static void __drain_alien_cache(struct kmem_cache *cachep,
Pekka Enberg5295a742006-02-01 03:05:48 -0800993 struct array_cache *ac, int node)
Christoph Lametere498be72005-09-09 13:03:32 -0700994{
995 struct kmem_list3 *rl3 = cachep->nodelists[node];
996
997 if (ac->avail) {
998 spin_lock(&rl3->list_lock);
Christoph Lametere00946f2006-03-25 03:06:45 -0800999 /*
1000 * Stuff objects into the remote nodes shared array first.
1001 * That way we could avoid the overhead of putting the objects
1002 * into the free lists and getting them back later.
1003 */
shin, jacob693f7d32006-04-28 10:54:37 -05001004 if (rl3->shared)
1005 transfer_objects(rl3->shared, ac, ac->limit);
Christoph Lametere00946f2006-03-25 03:06:45 -08001006
Christoph Lameterff694162005-09-22 21:44:02 -07001007 free_block(cachep, ac->entry, ac->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -07001008 ac->avail = 0;
1009 spin_unlock(&rl3->list_lock);
1010 }
1011}
1012
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001013/*
1014 * Called from cache_reap() to regularly drain alien caches round robin.
1015 */
1016static void reap_alien(struct kmem_cache *cachep, struct kmem_list3 *l3)
1017{
Christoph Lameter909ea962010-12-08 16:22:55 +01001018 int node = __this_cpu_read(slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001019
1020 if (l3->alien) {
1021 struct array_cache *ac = l3->alien[node];
Christoph Lametere00946f2006-03-25 03:06:45 -08001022
1023 if (ac && ac->avail && spin_trylock_irq(&ac->lock)) {
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001024 __drain_alien_cache(cachep, ac, node);
1025 spin_unlock_irq(&ac->lock);
1026 }
1027 }
1028}
1029
Andrew Mortona737b3e2006-03-22 00:08:11 -08001030static void drain_alien_cache(struct kmem_cache *cachep,
1031 struct array_cache **alien)
Christoph Lametere498be72005-09-09 13:03:32 -07001032{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001033 int i = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07001034 struct array_cache *ac;
1035 unsigned long flags;
1036
1037 for_each_online_node(i) {
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001038 ac = alien[i];
Christoph Lametere498be72005-09-09 13:03:32 -07001039 if (ac) {
1040 spin_lock_irqsave(&ac->lock, flags);
1041 __drain_alien_cache(cachep, ac, i);
1042 spin_unlock_irqrestore(&ac->lock, flags);
1043 }
1044 }
1045}
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001046
Ingo Molnar873623d2006-07-13 14:44:38 +02001047static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001048{
1049 struct slab *slabp = virt_to_slab(objp);
1050 int nodeid = slabp->nodeid;
1051 struct kmem_list3 *l3;
1052 struct array_cache *alien = NULL;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001053 int node;
1054
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07001055 node = numa_mem_id();
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001056
1057 /*
1058 * Make sure we are not freeing a object from another node to the array
1059 * cache on this cpu.
1060 */
Siddha, Suresh B62918a02007-05-02 19:27:18 +02001061 if (likely(slabp->nodeid == node))
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001062 return 0;
1063
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001064 l3 = cachep->nodelists[node];
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001065 STATS_INC_NODEFREES(cachep);
1066 if (l3->alien && l3->alien[nodeid]) {
1067 alien = l3->alien[nodeid];
Ingo Molnar873623d2006-07-13 14:44:38 +02001068 spin_lock(&alien->lock);
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001069 if (unlikely(alien->avail == alien->limit)) {
1070 STATS_INC_ACOVERFLOW(cachep);
1071 __drain_alien_cache(cachep, alien, nodeid);
1072 }
1073 alien->entry[alien->avail++] = objp;
1074 spin_unlock(&alien->lock);
1075 } else {
1076 spin_lock(&(cachep->nodelists[nodeid])->list_lock);
1077 free_block(cachep, &objp, 1, nodeid);
1078 spin_unlock(&(cachep->nodelists[nodeid])->list_lock);
1079 }
1080 return 1;
1081}
Christoph Lametere498be72005-09-09 13:03:32 -07001082#endif
1083
David Rientjes8f9f8d92010-03-27 19:40:47 -07001084/*
1085 * Allocates and initializes nodelists for a node on each slab cache, used for
1086 * either memory or cpu hotplug. If memory is being hot-added, the kmem_list3
1087 * will be allocated off-node since memory is not yet online for the new node.
1088 * When hotplugging memory or a cpu, existing nodelists are not replaced if
1089 * already in use.
1090 *
1091 * Must hold cache_chain_mutex.
1092 */
1093static int init_cache_nodelists_node(int node)
1094{
1095 struct kmem_cache *cachep;
1096 struct kmem_list3 *l3;
1097 const int memsize = sizeof(struct kmem_list3);
1098
1099 list_for_each_entry(cachep, &cache_chain, next) {
1100 /*
1101 * Set up the size64 kmemlist for cpu before we can
1102 * begin anything. Make sure some other cpu on this
1103 * node has not already allocated this
1104 */
1105 if (!cachep->nodelists[node]) {
1106 l3 = kmalloc_node(memsize, GFP_KERNEL, node);
1107 if (!l3)
1108 return -ENOMEM;
1109 kmem_list3_init(l3);
1110 l3->next_reap = jiffies + REAPTIMEOUT_LIST3 +
1111 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
1112
1113 /*
1114 * The l3s don't come and go as CPUs come and
1115 * go. cache_chain_mutex is sufficient
1116 * protection here.
1117 */
1118 cachep->nodelists[node] = l3;
1119 }
1120
1121 spin_lock_irq(&cachep->nodelists[node]->list_lock);
1122 cachep->nodelists[node]->free_limit =
1123 (1 + nr_cpus_node(node)) *
1124 cachep->batchcount + cachep->num;
1125 spin_unlock_irq(&cachep->nodelists[node]->list_lock);
1126 }
1127 return 0;
1128}
1129
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001130static void __cpuinit cpuup_canceled(long cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131{
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001132 struct kmem_cache *cachep;
1133 struct kmem_list3 *l3 = NULL;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07001134 int node = cpu_to_mem(cpu);
Rusty Russella70f7302009-03-13 14:49:46 +10301135 const struct cpumask *mask = cpumask_of_node(node);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001136
1137 list_for_each_entry(cachep, &cache_chain, next) {
1138 struct array_cache *nc;
1139 struct array_cache *shared;
1140 struct array_cache **alien;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001141
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001142 /* cpu is dead; no one can alloc from it. */
1143 nc = cachep->array[cpu];
1144 cachep->array[cpu] = NULL;
1145 l3 = cachep->nodelists[node];
1146
1147 if (!l3)
1148 goto free_array_cache;
1149
1150 spin_lock_irq(&l3->list_lock);
1151
1152 /* Free limit for this kmem_list3 */
1153 l3->free_limit -= cachep->batchcount;
1154 if (nc)
1155 free_block(cachep, nc->entry, nc->avail, node);
1156
Rusty Russell58463c12009-12-17 11:43:12 -06001157 if (!cpumask_empty(mask)) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001158 spin_unlock_irq(&l3->list_lock);
1159 goto free_array_cache;
1160 }
1161
1162 shared = l3->shared;
1163 if (shared) {
1164 free_block(cachep, shared->entry,
1165 shared->avail, node);
1166 l3->shared = NULL;
1167 }
1168
1169 alien = l3->alien;
1170 l3->alien = NULL;
1171
1172 spin_unlock_irq(&l3->list_lock);
1173
1174 kfree(shared);
1175 if (alien) {
1176 drain_alien_cache(cachep, alien);
1177 free_alien_cache(alien);
1178 }
1179free_array_cache:
1180 kfree(nc);
1181 }
1182 /*
1183 * In the previous loop, all the objects were freed to
1184 * the respective cache's slabs, now we can go ahead and
1185 * shrink each nodelist to its limit.
1186 */
1187 list_for_each_entry(cachep, &cache_chain, next) {
1188 l3 = cachep->nodelists[node];
1189 if (!l3)
1190 continue;
1191 drain_freelist(cachep, l3, l3->free_objects);
1192 }
1193}
1194
1195static int __cpuinit cpuup_prepare(long cpu)
1196{
Pekka Enberg343e0d72006-02-01 03:05:50 -08001197 struct kmem_cache *cachep;
Christoph Lametere498be72005-09-09 13:03:32 -07001198 struct kmem_list3 *l3 = NULL;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07001199 int node = cpu_to_mem(cpu);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001200 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001202 /*
1203 * We need to do this right in the beginning since
1204 * alloc_arraycache's are going to use this list.
1205 * kmalloc_node allows us to add the slab to the right
1206 * kmem_list3 and not this cpu's kmem_list3
1207 */
David Rientjes8f9f8d92010-03-27 19:40:47 -07001208 err = init_cache_nodelists_node(node);
1209 if (err < 0)
1210 goto bad;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001211
1212 /*
1213 * Now we can go ahead with allocating the shared arrays and
1214 * array caches
1215 */
1216 list_for_each_entry(cachep, &cache_chain, next) {
1217 struct array_cache *nc;
1218 struct array_cache *shared = NULL;
1219 struct array_cache **alien = NULL;
1220
1221 nc = alloc_arraycache(node, cachep->limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03001222 cachep->batchcount, GFP_KERNEL);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001223 if (!nc)
1224 goto bad;
1225 if (cachep->shared) {
1226 shared = alloc_arraycache(node,
1227 cachep->shared * cachep->batchcount,
Pekka Enberg83b519e2009-06-10 19:40:04 +03001228 0xbaadf00d, GFP_KERNEL);
Akinobu Mita12d00f62007-10-18 03:05:11 -07001229 if (!shared) {
1230 kfree(nc);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001231 goto bad;
Akinobu Mita12d00f62007-10-18 03:05:11 -07001232 }
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001233 }
1234 if (use_alien_caches) {
Pekka Enberg83b519e2009-06-10 19:40:04 +03001235 alien = alloc_alien_cache(node, cachep->limit, GFP_KERNEL);
Akinobu Mita12d00f62007-10-18 03:05:11 -07001236 if (!alien) {
1237 kfree(shared);
1238 kfree(nc);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001239 goto bad;
Akinobu Mita12d00f62007-10-18 03:05:11 -07001240 }
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001241 }
1242 cachep->array[cpu] = nc;
1243 l3 = cachep->nodelists[node];
1244 BUG_ON(!l3);
1245
1246 spin_lock_irq(&l3->list_lock);
1247 if (!l3->shared) {
1248 /*
1249 * We are serialised from CPU_DEAD or
1250 * CPU_UP_CANCELLED by the cpucontrol lock
1251 */
1252 l3->shared = shared;
1253 shared = NULL;
1254 }
1255#ifdef CONFIG_NUMA
1256 if (!l3->alien) {
1257 l3->alien = alien;
1258 alien = NULL;
1259 }
1260#endif
1261 spin_unlock_irq(&l3->list_lock);
1262 kfree(shared);
1263 free_alien_cache(alien);
1264 }
Pekka Enbergce79ddc2009-11-23 22:01:15 +02001265 init_node_lock_keys(node);
1266
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001267 return 0;
1268bad:
Akinobu Mita12d00f62007-10-18 03:05:11 -07001269 cpuup_canceled(cpu);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001270 return -ENOMEM;
1271}
1272
1273static int __cpuinit cpuup_callback(struct notifier_block *nfb,
1274 unsigned long action, void *hcpu)
1275{
1276 long cpu = (long)hcpu;
1277 int err = 0;
1278
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 switch (action) {
Heiko Carstens38c3bd92007-05-09 02:34:05 -07001280 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001281 case CPU_UP_PREPARE_FROZEN:
Gautham R Shenoy95402b32008-01-25 21:08:02 +01001282 mutex_lock(&cache_chain_mutex);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001283 err = cpuup_prepare(cpu);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01001284 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 break;
1286 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001287 case CPU_ONLINE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 start_cpu_timer(cpu);
1289 break;
1290#ifdef CONFIG_HOTPLUG_CPU
Christoph Lameter5830c592007-05-09 02:34:22 -07001291 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001292 case CPU_DOWN_PREPARE_FROZEN:
Christoph Lameter5830c592007-05-09 02:34:22 -07001293 /*
1294 * Shutdown cache reaper. Note that the cache_chain_mutex is
1295 * held so that if cache_reap() is invoked it cannot do
1296 * anything expensive but will only modify reap_work
1297 * and reschedule the timer.
1298 */
Tejun Heoafe2c512010-12-14 16:21:17 +01001299 cancel_delayed_work_sync(&per_cpu(slab_reap_work, cpu));
Christoph Lameter5830c592007-05-09 02:34:22 -07001300 /* Now the cache_reaper is guaranteed to be not running. */
Tejun Heo1871e522009-10-29 22:34:13 +09001301 per_cpu(slab_reap_work, cpu).work.func = NULL;
Christoph Lameter5830c592007-05-09 02:34:22 -07001302 break;
1303 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001304 case CPU_DOWN_FAILED_FROZEN:
Christoph Lameter5830c592007-05-09 02:34:22 -07001305 start_cpu_timer(cpu);
1306 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001308 case CPU_DEAD_FROZEN:
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001309 /*
1310 * Even if all the cpus of a node are down, we don't free the
1311 * kmem_list3 of any cache. This to avoid a race between
1312 * cpu_down, and a kmalloc allocation from another cpu for
1313 * memory from the node of the cpu going down. The list3
1314 * structure is usually allocated from kmem_cache_create() and
1315 * gets destroyed at kmem_cache_destroy().
1316 */
Simon Arlott183ff222007-10-20 01:27:18 +02001317 /* fall through */
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08001318#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001320 case CPU_UP_CANCELED_FROZEN:
Gautham R Shenoy95402b32008-01-25 21:08:02 +01001321 mutex_lock(&cache_chain_mutex);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001322 cpuup_canceled(cpu);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001323 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325 }
Akinobu Mitaeac40682010-05-26 14:43:32 -07001326 return notifier_from_errno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327}
1328
Chandra Seetharaman74b85f32006-06-27 02:54:09 -07001329static struct notifier_block __cpuinitdata cpucache_notifier = {
1330 &cpuup_callback, NULL, 0
1331};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
David Rientjes8f9f8d92010-03-27 19:40:47 -07001333#if defined(CONFIG_NUMA) && defined(CONFIG_MEMORY_HOTPLUG)
1334/*
1335 * Drains freelist for a node on each slab cache, used for memory hot-remove.
1336 * Returns -EBUSY if all objects cannot be drained so that the node is not
1337 * removed.
1338 *
1339 * Must hold cache_chain_mutex.
1340 */
1341static int __meminit drain_cache_nodelists_node(int node)
1342{
1343 struct kmem_cache *cachep;
1344 int ret = 0;
1345
1346 list_for_each_entry(cachep, &cache_chain, next) {
1347 struct kmem_list3 *l3;
1348
1349 l3 = cachep->nodelists[node];
1350 if (!l3)
1351 continue;
1352
1353 drain_freelist(cachep, l3, l3->free_objects);
1354
1355 if (!list_empty(&l3->slabs_full) ||
1356 !list_empty(&l3->slabs_partial)) {
1357 ret = -EBUSY;
1358 break;
1359 }
1360 }
1361 return ret;
1362}
1363
1364static int __meminit slab_memory_callback(struct notifier_block *self,
1365 unsigned long action, void *arg)
1366{
1367 struct memory_notify *mnb = arg;
1368 int ret = 0;
1369 int nid;
1370
1371 nid = mnb->status_change_nid;
1372 if (nid < 0)
1373 goto out;
1374
1375 switch (action) {
1376 case MEM_GOING_ONLINE:
1377 mutex_lock(&cache_chain_mutex);
1378 ret = init_cache_nodelists_node(nid);
1379 mutex_unlock(&cache_chain_mutex);
1380 break;
1381 case MEM_GOING_OFFLINE:
1382 mutex_lock(&cache_chain_mutex);
1383 ret = drain_cache_nodelists_node(nid);
1384 mutex_unlock(&cache_chain_mutex);
1385 break;
1386 case MEM_ONLINE:
1387 case MEM_OFFLINE:
1388 case MEM_CANCEL_ONLINE:
1389 case MEM_CANCEL_OFFLINE:
1390 break;
1391 }
1392out:
1393 return ret ? notifier_from_errno(ret) : NOTIFY_OK;
1394}
1395#endif /* CONFIG_NUMA && CONFIG_MEMORY_HOTPLUG */
1396
Christoph Lametere498be72005-09-09 13:03:32 -07001397/*
1398 * swap the static kmem_list3 with kmalloced memory
1399 */
David Rientjes8f9f8d92010-03-27 19:40:47 -07001400static void __init init_list(struct kmem_cache *cachep, struct kmem_list3 *list,
1401 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07001402{
1403 struct kmem_list3 *ptr;
1404
Pekka Enberg83b519e2009-06-10 19:40:04 +03001405 ptr = kmalloc_node(sizeof(struct kmem_list3), GFP_NOWAIT, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07001406 BUG_ON(!ptr);
1407
Christoph Lametere498be72005-09-09 13:03:32 -07001408 memcpy(ptr, list, sizeof(struct kmem_list3));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001409 /*
1410 * Do not assume that spinlocks can be initialized via memcpy:
1411 */
1412 spin_lock_init(&ptr->list_lock);
1413
Christoph Lametere498be72005-09-09 13:03:32 -07001414 MAKE_ALL_LISTS(cachep, ptr, nodeid);
1415 cachep->nodelists[nodeid] = ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001416}
1417
Andrew Mortona737b3e2006-03-22 00:08:11 -08001418/*
Pekka Enberg556a1692008-01-25 08:20:51 +02001419 * For setting up all the kmem_list3s for cache whose buffer_size is same as
1420 * size of kmem_list3.
1421 */
1422static void __init set_up_list3s(struct kmem_cache *cachep, int index)
1423{
1424 int node;
1425
1426 for_each_online_node(node) {
1427 cachep->nodelists[node] = &initkmem_list3[index + node];
1428 cachep->nodelists[node]->next_reap = jiffies +
1429 REAPTIMEOUT_LIST3 +
1430 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
1431 }
1432}
1433
1434/*
Andrew Mortona737b3e2006-03-22 00:08:11 -08001435 * Initialisation. Called after the page allocator have been initialised and
1436 * before smp_init().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 */
1438void __init kmem_cache_init(void)
1439{
1440 size_t left_over;
1441 struct cache_sizes *sizes;
1442 struct cache_names *names;
Christoph Lametere498be72005-09-09 13:03:32 -07001443 int i;
Jack Steiner07ed76b2006-03-07 21:55:46 -08001444 int order;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001445 int node;
Christoph Lametere498be72005-09-09 13:03:32 -07001446
Mel Gormanb6e68bc2009-06-16 15:32:16 -07001447 if (num_possible_nodes() == 1)
Siddha, Suresh B62918a02007-05-02 19:27:18 +02001448 use_alien_caches = 0;
1449
Christoph Lametere498be72005-09-09 13:03:32 -07001450 for (i = 0; i < NUM_INIT_LISTS; i++) {
1451 kmem_list3_init(&initkmem_list3[i]);
1452 if (i < MAX_NUMNODES)
1453 cache_cache.nodelists[i] = NULL;
1454 }
Pekka Enberg556a1692008-01-25 08:20:51 +02001455 set_up_list3s(&cache_cache, CACHE_CACHE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
1457 /*
1458 * Fragmentation resistance on low memory - only use bigger
1459 * page orders on machines with more than 32MB of memory.
1460 */
Jan Beulich44813742009-09-21 17:03:05 -07001461 if (totalram_pages > (32 << 20) >> PAGE_SHIFT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 slab_break_gfp_order = BREAK_GFP_ORDER_HI;
1463
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 /* Bootstrap is tricky, because several objects are allocated
1465 * from caches that do not exist yet:
Andrew Mortona737b3e2006-03-22 00:08:11 -08001466 * 1) initialize the cache_cache cache: it contains the struct
1467 * kmem_cache structures of all caches, except cache_cache itself:
1468 * cache_cache is statically allocated.
Christoph Lametere498be72005-09-09 13:03:32 -07001469 * Initially an __init data area is used for the head array and the
1470 * kmem_list3 structures, it's replaced with a kmalloc allocated
1471 * array at the end of the bootstrap.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 * 2) Create the first kmalloc cache.
Pekka Enberg343e0d72006-02-01 03:05:50 -08001473 * The struct kmem_cache for the new cache is allocated normally.
Christoph Lametere498be72005-09-09 13:03:32 -07001474 * An __init data area is used for the head array.
1475 * 3) Create the remaining kmalloc caches, with minimally sized
1476 * head arrays.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 * 4) Replace the __init data head arrays for cache_cache and the first
1478 * kmalloc cache with kmalloc allocated arrays.
Christoph Lametere498be72005-09-09 13:03:32 -07001479 * 5) Replace the __init data for kmem_list3 for cache_cache and
1480 * the other cache's with kmalloc allocated memory.
1481 * 6) Resize the head arrays of the kmalloc caches to their final sizes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 */
1483
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07001484 node = numa_mem_id();
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001485
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 /* 1) create the cache_cache */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487 INIT_LIST_HEAD(&cache_chain);
1488 list_add(&cache_cache.next, &cache_chain);
1489 cache_cache.colour_off = cache_line_size();
1490 cache_cache.array[smp_processor_id()] = &initarray_cache.cache;
Daniel Yeisleyec1f5ee2008-03-25 23:59:08 +02001491 cache_cache.nodelists[node] = &initkmem_list3[CACHE_CACHE + node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001492
Eric Dumazet8da34302007-05-06 14:49:29 -07001493 /*
1494 * struct kmem_cache size depends on nr_node_ids, which
1495 * can be less than MAX_NUMNODES.
1496 */
1497 cache_cache.buffer_size = offsetof(struct kmem_cache, nodelists) +
1498 nr_node_ids * sizeof(struct kmem_list3 *);
1499#if DEBUG
1500 cache_cache.obj_size = cache_cache.buffer_size;
1501#endif
Andrew Mortona737b3e2006-03-22 00:08:11 -08001502 cache_cache.buffer_size = ALIGN(cache_cache.buffer_size,
1503 cache_line_size());
Eric Dumazet6a2d7a92006-12-13 00:34:27 -08001504 cache_cache.reciprocal_buffer_size =
1505 reciprocal_value(cache_cache.buffer_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506
Jack Steiner07ed76b2006-03-07 21:55:46 -08001507 for (order = 0; order < MAX_ORDER; order++) {
1508 cache_estimate(order, cache_cache.buffer_size,
1509 cache_line_size(), 0, &left_over, &cache_cache.num);
1510 if (cache_cache.num)
1511 break;
1512 }
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02001513 BUG_ON(!cache_cache.num);
Jack Steiner07ed76b2006-03-07 21:55:46 -08001514 cache_cache.gfporder = order;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001515 cache_cache.colour = left_over / cache_cache.colour_off;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001516 cache_cache.slab_size = ALIGN(cache_cache.num * sizeof(kmem_bufctl_t) +
1517 sizeof(struct slab), cache_line_size());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518
1519 /* 2+3) create the kmalloc caches */
1520 sizes = malloc_sizes;
1521 names = cache_names;
1522
Andrew Mortona737b3e2006-03-22 00:08:11 -08001523 /*
1524 * Initialize the caches that provide memory for the array cache and the
1525 * kmem_list3 structures first. Without this, further allocations will
1526 * bug.
Christoph Lametere498be72005-09-09 13:03:32 -07001527 */
1528
1529 sizes[INDEX_AC].cs_cachep = kmem_cache_create(names[INDEX_AC].name,
Andrew Mortona737b3e2006-03-22 00:08:11 -08001530 sizes[INDEX_AC].cs_size,
1531 ARCH_KMALLOC_MINALIGN,
1532 ARCH_KMALLOC_FLAGS|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09001533 NULL);
Christoph Lametere498be72005-09-09 13:03:32 -07001534
Andrew Mortona737b3e2006-03-22 00:08:11 -08001535 if (INDEX_AC != INDEX_L3) {
Christoph Lametere498be72005-09-09 13:03:32 -07001536 sizes[INDEX_L3].cs_cachep =
Andrew Mortona737b3e2006-03-22 00:08:11 -08001537 kmem_cache_create(names[INDEX_L3].name,
1538 sizes[INDEX_L3].cs_size,
1539 ARCH_KMALLOC_MINALIGN,
1540 ARCH_KMALLOC_FLAGS|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09001541 NULL);
Andrew Mortona737b3e2006-03-22 00:08:11 -08001542 }
Christoph Lametere498be72005-09-09 13:03:32 -07001543
Ingo Molnare0a42722006-06-23 02:03:46 -07001544 slab_early_init = 0;
1545
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 while (sizes->cs_size != ULONG_MAX) {
Christoph Lametere498be72005-09-09 13:03:32 -07001547 /*
1548 * For performance, all the general caches are L1 aligned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549 * This should be particularly beneficial on SMP boxes, as it
1550 * eliminates "false sharing".
1551 * Note for systems short on memory removing the alignment will
Christoph Lametere498be72005-09-09 13:03:32 -07001552 * allow tighter packing of the smaller caches.
1553 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08001554 if (!sizes->cs_cachep) {
Christoph Lametere498be72005-09-09 13:03:32 -07001555 sizes->cs_cachep = kmem_cache_create(names->name,
Andrew Mortona737b3e2006-03-22 00:08:11 -08001556 sizes->cs_size,
1557 ARCH_KMALLOC_MINALIGN,
1558 ARCH_KMALLOC_FLAGS|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09001559 NULL);
Andrew Mortona737b3e2006-03-22 00:08:11 -08001560 }
Christoph Lameter4b51d662007-02-10 01:43:10 -08001561#ifdef CONFIG_ZONE_DMA
1562 sizes->cs_dmacachep = kmem_cache_create(
1563 names->name_dma,
Andrew Mortona737b3e2006-03-22 00:08:11 -08001564 sizes->cs_size,
1565 ARCH_KMALLOC_MINALIGN,
1566 ARCH_KMALLOC_FLAGS|SLAB_CACHE_DMA|
1567 SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09001568 NULL);
Christoph Lameter4b51d662007-02-10 01:43:10 -08001569#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 sizes++;
1571 names++;
1572 }
1573 /* 4) Replace the bootstrap head arrays */
1574 {
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001575 struct array_cache *ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001576
Pekka Enberg83b519e2009-06-10 19:40:04 +03001577 ptr = kmalloc(sizeof(struct arraycache_init), GFP_NOWAIT);
Christoph Lametere498be72005-09-09 13:03:32 -07001578
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001579 BUG_ON(cpu_cache_get(&cache_cache) != &initarray_cache.cache);
1580 memcpy(ptr, cpu_cache_get(&cache_cache),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001581 sizeof(struct arraycache_init));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001582 /*
1583 * Do not assume that spinlocks can be initialized via memcpy:
1584 */
1585 spin_lock_init(&ptr->lock);
1586
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587 cache_cache.array[smp_processor_id()] = ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001588
Pekka Enberg83b519e2009-06-10 19:40:04 +03001589 ptr = kmalloc(sizeof(struct arraycache_init), GFP_NOWAIT);
Christoph Lametere498be72005-09-09 13:03:32 -07001590
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001591 BUG_ON(cpu_cache_get(malloc_sizes[INDEX_AC].cs_cachep)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001592 != &initarray_generic.cache);
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001593 memcpy(ptr, cpu_cache_get(malloc_sizes[INDEX_AC].cs_cachep),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001594 sizeof(struct arraycache_init));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001595 /*
1596 * Do not assume that spinlocks can be initialized via memcpy:
1597 */
1598 spin_lock_init(&ptr->lock);
1599
Christoph Lametere498be72005-09-09 13:03:32 -07001600 malloc_sizes[INDEX_AC].cs_cachep->array[smp_processor_id()] =
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001601 ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 }
Christoph Lametere498be72005-09-09 13:03:32 -07001603 /* 5) Replace the bootstrap kmem_list3's */
1604 {
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001605 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606
Mel Gorman9c09a952008-01-24 05:49:54 -08001607 for_each_online_node(nid) {
Daniel Yeisleyec1f5ee2008-03-25 23:59:08 +02001608 init_list(&cache_cache, &initkmem_list3[CACHE_CACHE + nid], nid);
Pekka Enberg556a1692008-01-25 08:20:51 +02001609
Christoph Lametere498be72005-09-09 13:03:32 -07001610 init_list(malloc_sizes[INDEX_AC].cs_cachep,
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001611 &initkmem_list3[SIZE_AC + nid], nid);
Christoph Lametere498be72005-09-09 13:03:32 -07001612
1613 if (INDEX_AC != INDEX_L3) {
1614 init_list(malloc_sizes[INDEX_L3].cs_cachep,
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001615 &initkmem_list3[SIZE_L3 + nid], nid);
Christoph Lametere498be72005-09-09 13:03:32 -07001616 }
1617 }
1618 }
1619
Pekka Enberg8429db52009-06-12 15:58:59 +03001620 g_cpucache_up = EARLY;
Pekka Enberg8429db52009-06-12 15:58:59 +03001621}
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -07001622
Pekka Enberg8429db52009-06-12 15:58:59 +03001623void __init kmem_cache_init_late(void)
1624{
1625 struct kmem_cache *cachep;
1626
Pekka Enberg8429db52009-06-12 15:58:59 +03001627 /* 6) resize the head arrays to their final sizes */
1628 mutex_lock(&cache_chain_mutex);
1629 list_for_each_entry(cachep, &cache_chain, next)
1630 if (enable_cpucache(cachep, GFP_NOWAIT))
1631 BUG();
1632 mutex_unlock(&cache_chain_mutex);
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -07001633
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 /* Done! */
1635 g_cpucache_up = FULL;
1636
Pekka Enbergec5a36f2009-06-29 09:57:10 +03001637 /* Annotate slab for lockdep -- annotate the malloc caches */
1638 init_lock_keys();
1639
Andrew Mortona737b3e2006-03-22 00:08:11 -08001640 /*
1641 * Register a cpu startup notifier callback that initializes
1642 * cpu_cache_get for all new cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 */
1644 register_cpu_notifier(&cpucache_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645
David Rientjes8f9f8d92010-03-27 19:40:47 -07001646#ifdef CONFIG_NUMA
1647 /*
1648 * Register a memory hotplug callback that initializes and frees
1649 * nodelists.
1650 */
1651 hotplug_memory_notifier(slab_memory_callback, SLAB_CALLBACK_PRI);
1652#endif
1653
Andrew Mortona737b3e2006-03-22 00:08:11 -08001654 /*
1655 * The reap timers are started later, with a module init call: That part
1656 * of the kernel is not yet operational.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 */
1658}
1659
1660static int __init cpucache_init(void)
1661{
1662 int cpu;
1663
Andrew Mortona737b3e2006-03-22 00:08:11 -08001664 /*
1665 * Register the timers that return unneeded pages to the page allocator
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 */
Christoph Lametere498be72005-09-09 13:03:32 -07001667 for_each_online_cpu(cpu)
Andrew Mortona737b3e2006-03-22 00:08:11 -08001668 start_cpu_timer(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669 return 0;
1670}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671__initcall(cpucache_init);
1672
1673/*
1674 * Interface to system's page allocator. No need to hold the cache-lock.
1675 *
1676 * If we requested dmaable memory, we will get it. Even if we
1677 * did not request dmaable memory, we might get it, but that
1678 * would be relatively rare and ignorable.
1679 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001680static void *kmem_getpages(struct kmem_cache *cachep, gfp_t flags, int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681{
1682 struct page *page;
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001683 int nr_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 int i;
1685
Luke Yangd6fef9d2006-04-10 22:52:56 -07001686#ifndef CONFIG_MMU
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001687 /*
1688 * Nommu uses slab's for process anonymous memory allocations, and thus
1689 * requires __GFP_COMP to properly refcount higher order allocations
Luke Yangd6fef9d2006-04-10 22:52:56 -07001690 */
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001691 flags |= __GFP_COMP;
Luke Yangd6fef9d2006-04-10 22:52:56 -07001692#endif
Christoph Lameter765c4502006-09-27 01:50:08 -07001693
Christoph Lameter3c517a62006-12-06 20:33:29 -08001694 flags |= cachep->gfpflags;
Mel Gormane12ba742007-10-16 01:25:52 -07001695 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1696 flags |= __GFP_RECLAIMABLE;
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001697
Linus Torvalds517d0862009-06-16 19:50:13 -07001698 page = alloc_pages_exact_node(nodeid, flags | __GFP_NOTRACK, cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 if (!page)
1700 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001702 nr_pages = (1 << cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
Christoph Lameter972d1a72006-09-25 23:31:51 -07001704 add_zone_page_state(page_zone(page),
1705 NR_SLAB_RECLAIMABLE, nr_pages);
1706 else
1707 add_zone_page_state(page_zone(page),
1708 NR_SLAB_UNRECLAIMABLE, nr_pages);
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001709 for (i = 0; i < nr_pages; i++)
1710 __SetPageSlab(page + i);
Pekka Enbergc175eea2008-05-09 20:35:53 +02001711
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001712 if (kmemcheck_enabled && !(cachep->flags & SLAB_NOTRACK)) {
1713 kmemcheck_alloc_shadow(page, cachep->gfporder, flags, nodeid);
1714
1715 if (cachep->ctor)
1716 kmemcheck_mark_uninitialized_pages(page, nr_pages);
1717 else
1718 kmemcheck_mark_unallocated_pages(page, nr_pages);
1719 }
Pekka Enbergc175eea2008-05-09 20:35:53 +02001720
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001721 return page_address(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722}
1723
1724/*
1725 * Interface to system's page release.
1726 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001727static void kmem_freepages(struct kmem_cache *cachep, void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001728{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001729 unsigned long i = (1 << cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 struct page *page = virt_to_page(addr);
1731 const unsigned long nr_freed = i;
1732
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001733 kmemcheck_free_shadow(page, cachep->gfporder);
Pekka Enbergc175eea2008-05-09 20:35:53 +02001734
Christoph Lameter972d1a72006-09-25 23:31:51 -07001735 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1736 sub_zone_page_state(page_zone(page),
1737 NR_SLAB_RECLAIMABLE, nr_freed);
1738 else
1739 sub_zone_page_state(page_zone(page),
1740 NR_SLAB_UNRECLAIMABLE, nr_freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 while (i--) {
Nick Pigginf205b2f2006-03-22 00:08:02 -08001742 BUG_ON(!PageSlab(page));
1743 __ClearPageSlab(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 page++;
1745 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746 if (current->reclaim_state)
1747 current->reclaim_state->reclaimed_slab += nr_freed;
1748 free_pages((unsigned long)addr, cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749}
1750
1751static void kmem_rcu_free(struct rcu_head *head)
1752{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001753 struct slab_rcu *slab_rcu = (struct slab_rcu *)head;
Pekka Enberg343e0d72006-02-01 03:05:50 -08001754 struct kmem_cache *cachep = slab_rcu->cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755
1756 kmem_freepages(cachep, slab_rcu->addr);
1757 if (OFF_SLAB(cachep))
1758 kmem_cache_free(cachep->slabp_cache, slab_rcu);
1759}
1760
1761#if DEBUG
1762
1763#ifdef CONFIG_DEBUG_PAGEALLOC
Pekka Enberg343e0d72006-02-01 03:05:50 -08001764static void store_stackinfo(struct kmem_cache *cachep, unsigned long *addr,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001765 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766{
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001767 int size = obj_size(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001769 addr = (unsigned long *)&((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001771 if (size < 5 * sizeof(unsigned long))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 return;
1773
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001774 *addr++ = 0x12345678;
1775 *addr++ = caller;
1776 *addr++ = smp_processor_id();
1777 size -= 3 * sizeof(unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 {
1779 unsigned long *sptr = &caller;
1780 unsigned long svalue;
1781
1782 while (!kstack_end(sptr)) {
1783 svalue = *sptr++;
1784 if (kernel_text_address(svalue)) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001785 *addr++ = svalue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 size -= sizeof(unsigned long);
1787 if (size <= sizeof(unsigned long))
1788 break;
1789 }
1790 }
1791
1792 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001793 *addr++ = 0x87654321;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794}
1795#endif
1796
Pekka Enberg343e0d72006-02-01 03:05:50 -08001797static void poison_obj(struct kmem_cache *cachep, void *addr, unsigned char val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798{
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001799 int size = obj_size(cachep);
1800 addr = &((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801
1802 memset(addr, val, size);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001803 *(unsigned char *)(addr + size - 1) = POISON_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804}
1805
1806static void dump_line(char *data, int offset, int limit)
1807{
1808 int i;
Dave Jonesaa83aa42006-09-29 01:59:51 -07001809 unsigned char error = 0;
1810 int bad_count = 0;
1811
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 printk(KERN_ERR "%03x:", offset);
Dave Jonesaa83aa42006-09-29 01:59:51 -07001813 for (i = 0; i < limit; i++) {
1814 if (data[offset + i] != POISON_FREE) {
1815 error = data[offset + i];
1816 bad_count++;
1817 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001818 printk(" %02x", (unsigned char)data[offset + i]);
Dave Jonesaa83aa42006-09-29 01:59:51 -07001819 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820 printk("\n");
Dave Jonesaa83aa42006-09-29 01:59:51 -07001821
1822 if (bad_count == 1) {
1823 error ^= POISON_FREE;
1824 if (!(error & (error - 1))) {
1825 printk(KERN_ERR "Single bit error detected. Probably "
1826 "bad RAM.\n");
1827#ifdef CONFIG_X86
1828 printk(KERN_ERR "Run memtest86+ or a similar memory "
1829 "test tool.\n");
1830#else
1831 printk(KERN_ERR "Run a memory test tool.\n");
1832#endif
1833 }
1834 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835}
1836#endif
1837
1838#if DEBUG
1839
Pekka Enberg343e0d72006-02-01 03:05:50 -08001840static void print_objinfo(struct kmem_cache *cachep, void *objp, int lines)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841{
1842 int i, size;
1843 char *realobj;
1844
1845 if (cachep->flags & SLAB_RED_ZONE) {
David Woodhouseb46b8f12007-05-08 00:22:59 -07001846 printk(KERN_ERR "Redzone: 0x%llx/0x%llx.\n",
Andrew Mortona737b3e2006-03-22 00:08:11 -08001847 *dbg_redzone1(cachep, objp),
1848 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849 }
1850
1851 if (cachep->flags & SLAB_STORE_USER) {
1852 printk(KERN_ERR "Last user: [<%p>]",
Andrew Mortona737b3e2006-03-22 00:08:11 -08001853 *dbg_userword(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 print_symbol("(%s)",
Andrew Mortona737b3e2006-03-22 00:08:11 -08001855 (unsigned long)*dbg_userword(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 printk("\n");
1857 }
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001858 realobj = (char *)objp + obj_offset(cachep);
1859 size = obj_size(cachep);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001860 for (i = 0; i < size && lines; i += 16, lines--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 int limit;
1862 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001863 if (i + limit > size)
1864 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 dump_line(realobj, i, limit);
1866 }
1867}
1868
Pekka Enberg343e0d72006-02-01 03:05:50 -08001869static void check_poison_obj(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870{
1871 char *realobj;
1872 int size, i;
1873 int lines = 0;
1874
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001875 realobj = (char *)objp + obj_offset(cachep);
1876 size = obj_size(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001878 for (i = 0; i < size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 char exp = POISON_FREE;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001880 if (i == size - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 exp = POISON_END;
1882 if (realobj[i] != exp) {
1883 int limit;
1884 /* Mismatch ! */
1885 /* Print header */
1886 if (lines == 0) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001887 printk(KERN_ERR
David Howellse94a40c2007-04-02 23:46:28 +01001888 "Slab corruption: %s start=%p, len=%d\n",
1889 cachep->name, realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 print_objinfo(cachep, objp, 0);
1891 }
1892 /* Hexdump the affected line */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001893 i = (i / 16) * 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001895 if (i + limit > size)
1896 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897 dump_line(realobj, i, limit);
1898 i += 16;
1899 lines++;
1900 /* Limit to 5 lines */
1901 if (lines > 5)
1902 break;
1903 }
1904 }
1905 if (lines != 0) {
1906 /* Print some data about the neighboring objects, if they
1907 * exist:
1908 */
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08001909 struct slab *slabp = virt_to_slab(objp);
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001910 unsigned int objnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001912 objnr = obj_to_index(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 if (objnr) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001914 objp = index_to_obj(cachep, slabp, objnr - 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001915 realobj = (char *)objp + obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 printk(KERN_ERR "Prev obj: start=%p, len=%d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001917 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 print_objinfo(cachep, objp, 2);
1919 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001920 if (objnr + 1 < cachep->num) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001921 objp = index_to_obj(cachep, slabp, objnr + 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001922 realobj = (char *)objp + obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 printk(KERN_ERR "Next obj: start=%p, len=%d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001924 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 print_objinfo(cachep, objp, 2);
1926 }
1927 }
1928}
1929#endif
1930
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931#if DEBUG
Rabin Vincente79aec22008-07-04 00:40:32 +05301932static void slab_destroy_debugcheck(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001933{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 int i;
1935 for (i = 0; i < cachep->num; i++) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001936 void *objp = index_to_obj(cachep, slabp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937
1938 if (cachep->flags & SLAB_POISON) {
1939#ifdef CONFIG_DEBUG_PAGEALLOC
Andrew Mortona737b3e2006-03-22 00:08:11 -08001940 if (cachep->buffer_size % PAGE_SIZE == 0 &&
1941 OFF_SLAB(cachep))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001942 kernel_map_pages(virt_to_page(objp),
Andrew Mortona737b3e2006-03-22 00:08:11 -08001943 cachep->buffer_size / PAGE_SIZE, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 else
1945 check_poison_obj(cachep, objp);
1946#else
1947 check_poison_obj(cachep, objp);
1948#endif
1949 }
1950 if (cachep->flags & SLAB_RED_ZONE) {
1951 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
1952 slab_error(cachep, "start of a freed object "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001953 "was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
1955 slab_error(cachep, "end of a freed object "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001956 "was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 }
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001959}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960#else
Rabin Vincente79aec22008-07-04 00:40:32 +05301961static void slab_destroy_debugcheck(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001962{
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001963}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964#endif
1965
Randy Dunlap911851e2006-03-22 00:08:14 -08001966/**
1967 * slab_destroy - destroy and release all objects in a slab
1968 * @cachep: cache pointer being destroyed
1969 * @slabp: slab pointer being destroyed
1970 *
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001971 * Destroy all the objs in a slab, and release the mem back to the system.
Andrew Mortona737b3e2006-03-22 00:08:11 -08001972 * Before calling the slab must have been unlinked from the cache. The
1973 * cache-lock is not held/needed.
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001974 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001975static void slab_destroy(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001976{
1977 void *addr = slabp->s_mem - slabp->colouroff;
1978
Rabin Vincente79aec22008-07-04 00:40:32 +05301979 slab_destroy_debugcheck(cachep, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 if (unlikely(cachep->flags & SLAB_DESTROY_BY_RCU)) {
1981 struct slab_rcu *slab_rcu;
1982
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001983 slab_rcu = (struct slab_rcu *)slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 slab_rcu->cachep = cachep;
1985 slab_rcu->addr = addr;
1986 call_rcu(&slab_rcu->head, kmem_rcu_free);
1987 } else {
1988 kmem_freepages(cachep, addr);
Ingo Molnar873623d2006-07-13 14:44:38 +02001989 if (OFF_SLAB(cachep))
1990 kmem_cache_free(cachep->slabp_cache, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 }
1992}
1993
Christoph Lameter117f6eb2006-09-25 23:31:37 -07001994static void __kmem_cache_destroy(struct kmem_cache *cachep)
1995{
1996 int i;
1997 struct kmem_list3 *l3;
1998
1999 for_each_online_cpu(i)
2000 kfree(cachep->array[i]);
2001
2002 /* NUMA: free the list3 structures */
2003 for_each_online_node(i) {
2004 l3 = cachep->nodelists[i];
2005 if (l3) {
2006 kfree(l3->shared);
2007 free_alien_cache(l3->alien);
2008 kfree(l3);
2009 }
2010 }
2011 kmem_cache_free(&cache_cache, cachep);
2012}
2013
2014
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015/**
Randy.Dunlapa70773d2006-02-01 03:05:52 -08002016 * calculate_slab_order - calculate size (page order) of slabs
2017 * @cachep: pointer to the cache that is being created
2018 * @size: size of objects to be created in this cache.
2019 * @align: required alignment for the objects.
2020 * @flags: slab allocation flags
2021 *
2022 * Also calculates the number of objects per slab.
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002023 *
2024 * This could be made much more intelligent. For now, try to avoid using
2025 * high order pages for slabs. When the gfp() functions are more friendly
2026 * towards high-order requests, this should be changed.
2027 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002028static size_t calculate_slab_order(struct kmem_cache *cachep,
Randy Dunlapee13d782006-02-01 03:05:53 -08002029 size_t size, size_t align, unsigned long flags)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002030{
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02002031 unsigned long offslab_limit;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002032 size_t left_over = 0;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002033 int gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002034
Christoph Lameter0aa817f2007-05-16 22:11:01 -07002035 for (gfporder = 0; gfporder <= KMALLOC_MAX_ORDER; gfporder++) {
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002036 unsigned int num;
2037 size_t remainder;
2038
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002039 cache_estimate(gfporder, size, align, flags, &remainder, &num);
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002040 if (!num)
2041 continue;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002042
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02002043 if (flags & CFLGS_OFF_SLAB) {
2044 /*
2045 * Max number of objs-per-slab for caches which
2046 * use off-slab slabs. Needed to avoid a possible
2047 * looping condition in cache_grow().
2048 */
2049 offslab_limit = size - sizeof(struct slab);
2050 offslab_limit /= sizeof(kmem_bufctl_t);
2051
2052 if (num > offslab_limit)
2053 break;
2054 }
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002055
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002056 /* Found something acceptable - save it away */
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002057 cachep->num = num;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002058 cachep->gfporder = gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002059 left_over = remainder;
2060
2061 /*
Linus Torvaldsf78bb8a2006-03-08 10:33:05 -08002062 * A VFS-reclaimable slab tends to have most allocations
2063 * as GFP_NOFS and we really don't want to have to be allocating
2064 * higher-order pages when we are unable to shrink dcache.
2065 */
2066 if (flags & SLAB_RECLAIM_ACCOUNT)
2067 break;
2068
2069 /*
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002070 * Large number of objects is good, but very large slabs are
2071 * currently bad for the gfp()s.
2072 */
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002073 if (gfporder >= slab_break_gfp_order)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002074 break;
2075
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002076 /*
2077 * Acceptable internal fragmentation?
2078 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002079 if (left_over * 8 <= (PAGE_SIZE << gfporder))
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002080 break;
2081 }
2082 return left_over;
2083}
2084
Pekka Enberg83b519e2009-06-10 19:40:04 +03002085static int __init_refok setup_cpu_cache(struct kmem_cache *cachep, gfp_t gfp)
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002086{
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002087 if (g_cpucache_up == FULL)
Pekka Enberg83b519e2009-06-10 19:40:04 +03002088 return enable_cpucache(cachep, gfp);
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002089
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002090 if (g_cpucache_up == NONE) {
2091 /*
2092 * Note: the first kmem_cache_create must create the cache
2093 * that's used by kmalloc(24), otherwise the creation of
2094 * further caches will BUG().
2095 */
2096 cachep->array[smp_processor_id()] = &initarray_generic.cache;
2097
2098 /*
2099 * If the cache that's used by kmalloc(sizeof(kmem_list3)) is
2100 * the first cache, then we need to set up all its list3s,
2101 * otherwise the creation of further caches will BUG().
2102 */
2103 set_up_list3s(cachep, SIZE_AC);
2104 if (INDEX_AC == INDEX_L3)
2105 g_cpucache_up = PARTIAL_L3;
2106 else
2107 g_cpucache_up = PARTIAL_AC;
2108 } else {
2109 cachep->array[smp_processor_id()] =
Pekka Enberg83b519e2009-06-10 19:40:04 +03002110 kmalloc(sizeof(struct arraycache_init), gfp);
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002111
2112 if (g_cpucache_up == PARTIAL_AC) {
2113 set_up_list3s(cachep, SIZE_L3);
2114 g_cpucache_up = PARTIAL_L3;
2115 } else {
2116 int node;
Pekka Enberg556a1692008-01-25 08:20:51 +02002117 for_each_online_node(node) {
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002118 cachep->nodelists[node] =
2119 kmalloc_node(sizeof(struct kmem_list3),
Pekka Enbergeb91f1d2009-06-12 14:56:09 +03002120 gfp, node);
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002121 BUG_ON(!cachep->nodelists[node]);
2122 kmem_list3_init(cachep->nodelists[node]);
2123 }
2124 }
2125 }
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07002126 cachep->nodelists[numa_mem_id()]->next_reap =
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002127 jiffies + REAPTIMEOUT_LIST3 +
2128 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
2129
2130 cpu_cache_get(cachep)->avail = 0;
2131 cpu_cache_get(cachep)->limit = BOOT_CPUCACHE_ENTRIES;
2132 cpu_cache_get(cachep)->batchcount = 1;
2133 cpu_cache_get(cachep)->touched = 0;
2134 cachep->batchcount = 1;
2135 cachep->limit = BOOT_CPUCACHE_ENTRIES;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002136 return 0;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002137}
2138
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002139/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 * kmem_cache_create - Create a cache.
2141 * @name: A string which is used in /proc/slabinfo to identify this cache.
2142 * @size: The size of objects to be created in this cache.
2143 * @align: The required alignment for the objects.
2144 * @flags: SLAB flags
2145 * @ctor: A constructor for the objects.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 *
2147 * Returns a ptr to the cache on success, NULL on failure.
2148 * Cannot be called within a int, but can be interrupted.
Paul Mundt20c2df82007-07-20 10:11:58 +09002149 * The @ctor is run when new pages are allocated by the cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 *
2151 * @name must be valid until the cache is destroyed. This implies that
Andrew Mortona737b3e2006-03-22 00:08:11 -08002152 * the module calling this has to destroy the cache before getting unloaded.
Catalin Marinas249da162008-11-21 12:56:22 +00002153 * Note that kmem_cache_name() is not guaranteed to return the same pointer,
2154 * therefore applications must manage it themselves.
Andrew Mortona737b3e2006-03-22 00:08:11 -08002155 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 * The flags are
2157 *
2158 * %SLAB_POISON - Poison the slab with a known test pattern (a5a5a5a5)
2159 * to catch references to uninitialised memory.
2160 *
2161 * %SLAB_RED_ZONE - Insert `Red' zones around the allocated memory to check
2162 * for buffer overruns.
2163 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164 * %SLAB_HWCACHE_ALIGN - Align the objects in this cache to a hardware
2165 * cacheline. This can be beneficial if you're counting cycles as closely
2166 * as davem.
2167 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002168struct kmem_cache *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169kmem_cache_create (const char *name, size_t size, size_t align,
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002170 unsigned long flags, void (*ctor)(void *))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171{
2172 size_t left_over, slab_size, ralign;
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07002173 struct kmem_cache *cachep = NULL, *pc;
Pekka Enberg83b519e2009-06-10 19:40:04 +03002174 gfp_t gfp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175
2176 /*
2177 * Sanity checks... these are all serious usage bugs.
2178 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002179 if (!name || in_interrupt() || (size < BYTES_PER_WORD) ||
Paul Mundt20c2df82007-07-20 10:11:58 +09002180 size > KMALLOC_MAX_SIZE) {
Harvey Harrisond40cee22008-04-30 00:55:07 -07002181 printk(KERN_ERR "%s: Early error in slab %s\n", __func__,
Andrew Mortona737b3e2006-03-22 00:08:11 -08002182 name);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002183 BUG();
2184 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185
Ravikiran G Thirumalaif0188f42006-02-10 01:51:13 -08002186 /*
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002187 * We use cache_chain_mutex to ensure a consistent view of
Rusty Russell174596a2009-01-01 10:12:29 +10302188 * cpu_online_mask as well. Please see cpuup_callback
Ravikiran G Thirumalaif0188f42006-02-10 01:51:13 -08002189 */
Pekka Enberg83b519e2009-06-10 19:40:04 +03002190 if (slab_is_available()) {
2191 get_online_cpus();
2192 mutex_lock(&cache_chain_mutex);
2193 }
Andrew Morton4f12bb42005-11-07 00:58:00 -08002194
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07002195 list_for_each_entry(pc, &cache_chain, next) {
Andrew Morton4f12bb42005-11-07 00:58:00 -08002196 char tmp;
2197 int res;
2198
2199 /*
2200 * This happens when the module gets unloaded and doesn't
2201 * destroy its slab cache and no-one else reuses the vmalloc
2202 * area of the module. Print a warning.
2203 */
Andrew Morton138ae662006-12-06 20:36:41 -08002204 res = probe_kernel_address(pc->name, tmp);
Andrew Morton4f12bb42005-11-07 00:58:00 -08002205 if (res) {
matzeb4169522007-05-06 14:49:52 -07002206 printk(KERN_ERR
2207 "SLAB: cache with size %d has lost its name\n",
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002208 pc->buffer_size);
Andrew Morton4f12bb42005-11-07 00:58:00 -08002209 continue;
2210 }
2211
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002212 if (!strcmp(pc->name, name)) {
matzeb4169522007-05-06 14:49:52 -07002213 printk(KERN_ERR
2214 "kmem_cache_create: duplicate cache %s\n", name);
Andrew Morton4f12bb42005-11-07 00:58:00 -08002215 dump_stack();
2216 goto oops;
2217 }
2218 }
2219
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220#if DEBUG
2221 WARN_ON(strchr(name, ' ')); /* It confuses parsers */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222#if FORCED_DEBUG
2223 /*
2224 * Enable redzoning and last user accounting, except for caches with
2225 * large objects, if the increased size would increase the object size
2226 * above the next power of two: caches with object sizes just above a
2227 * power of two have a significant amount of internal fragmentation.
2228 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002229 if (size < 4096 || fls(size - 1) == fls(size-1 + REDZONE_ALIGN +
2230 2 * sizeof(unsigned long long)))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002231 flags |= SLAB_RED_ZONE | SLAB_STORE_USER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 if (!(flags & SLAB_DESTROY_BY_RCU))
2233 flags |= SLAB_POISON;
2234#endif
2235 if (flags & SLAB_DESTROY_BY_RCU)
2236 BUG_ON(flags & SLAB_POISON);
2237#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 /*
Andrew Mortona737b3e2006-03-22 00:08:11 -08002239 * Always checks flags, a caller might be expecting debug support which
2240 * isn't available.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 */
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002242 BUG_ON(flags & ~CREATE_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243
Andrew Mortona737b3e2006-03-22 00:08:11 -08002244 /*
2245 * Check that size is in terms of words. This is needed to avoid
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 * unaligned accesses for some archs when redzoning is used, and makes
2247 * sure any on-slab bufctl's are also correctly aligned.
2248 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002249 if (size & (BYTES_PER_WORD - 1)) {
2250 size += (BYTES_PER_WORD - 1);
2251 size &= ~(BYTES_PER_WORD - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 }
2253
Andrew Mortona737b3e2006-03-22 00:08:11 -08002254 /* calculate the final buffer alignment: */
2255
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 /* 1) arch recommendation: can be overridden for debug */
2257 if (flags & SLAB_HWCACHE_ALIGN) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002258 /*
2259 * Default alignment: as specified by the arch code. Except if
2260 * an object is really small, then squeeze multiple objects into
2261 * one cacheline.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 */
2263 ralign = cache_line_size();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002264 while (size <= ralign / 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 ralign /= 2;
2266 } else {
2267 ralign = BYTES_PER_WORD;
2268 }
Pekka Enbergca5f9702006-09-25 23:31:25 -07002269
2270 /*
David Woodhouse87a927c2007-07-04 21:26:44 -04002271 * Redzoning and user store require word alignment or possibly larger.
2272 * Note this will be overridden by architecture or caller mandated
2273 * alignment if either is greater than BYTES_PER_WORD.
Pekka Enbergca5f9702006-09-25 23:31:25 -07002274 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002275 if (flags & SLAB_STORE_USER)
2276 ralign = BYTES_PER_WORD;
2277
2278 if (flags & SLAB_RED_ZONE) {
2279 ralign = REDZONE_ALIGN;
2280 /* If redzoning, ensure that the second redzone is suitably
2281 * aligned, by adjusting the object size accordingly. */
2282 size += REDZONE_ALIGN - 1;
2283 size &= ~(REDZONE_ALIGN - 1);
2284 }
Pekka Enbergca5f9702006-09-25 23:31:25 -07002285
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002286 /* 2) arch mandated alignment */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287 if (ralign < ARCH_SLAB_MINALIGN) {
2288 ralign = ARCH_SLAB_MINALIGN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002289 }
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002290 /* 3) caller mandated alignment */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 if (ralign < align) {
2292 ralign = align;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 }
Shiyong Li5c5e3b32010-04-12 13:48:21 +08002294 /* disable debug if not aligning with REDZONE_ALIGN */
2295 if (ralign & (__alignof__(unsigned long long) - 1))
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002296 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002297 /*
Pekka Enbergca5f9702006-09-25 23:31:25 -07002298 * 4) Store it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 */
2300 align = ralign;
2301
Pekka Enberg83b519e2009-06-10 19:40:04 +03002302 if (slab_is_available())
2303 gfp = GFP_KERNEL;
2304 else
2305 gfp = GFP_NOWAIT;
2306
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307 /* Get cache's description obj. */
Pekka Enberg83b519e2009-06-10 19:40:04 +03002308 cachep = kmem_cache_zalloc(&cache_cache, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 if (!cachep)
Andrew Morton4f12bb42005-11-07 00:58:00 -08002310 goto oops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311
2312#if DEBUG
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002313 cachep->obj_size = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314
Pekka Enbergca5f9702006-09-25 23:31:25 -07002315 /*
2316 * Both debugging options require word-alignment which is calculated
2317 * into align above.
2318 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 if (flags & SLAB_RED_ZONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 /* add space for red zone words */
Shiyong Li5c5e3b32010-04-12 13:48:21 +08002321 cachep->obj_offset += align;
2322 size += align + sizeof(unsigned long long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 }
2324 if (flags & SLAB_STORE_USER) {
Pekka Enbergca5f9702006-09-25 23:31:25 -07002325 /* user store requires one word storage behind the end of
David Woodhouse87a927c2007-07-04 21:26:44 -04002326 * the real object. But if the second red zone needs to be
2327 * aligned to 64 bits, we must allow that much space.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002329 if (flags & SLAB_RED_ZONE)
2330 size += REDZONE_ALIGN;
2331 else
2332 size += BYTES_PER_WORD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 }
2334#if FORCED_DEBUG && defined(CONFIG_DEBUG_PAGEALLOC)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002335 if (size >= malloc_sizes[INDEX_L3 + 1].cs_size
Carsten Otte1ab335d2010-08-06 18:19:22 +02002336 && cachep->obj_size > cache_line_size() && ALIGN(size, align) < PAGE_SIZE) {
2337 cachep->obj_offset += PAGE_SIZE - ALIGN(size, align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 size = PAGE_SIZE;
2339 }
2340#endif
2341#endif
2342
Ingo Molnare0a42722006-06-23 02:03:46 -07002343 /*
2344 * Determine if the slab management is 'on' or 'off' slab.
2345 * (bootstrapping cannot cope with offslab caches so don't do
Catalin Marinase7cb55b2009-10-28 13:33:08 +00002346 * it too early on. Always use on-slab management when
2347 * SLAB_NOLEAKTRACE to avoid recursive calls into kmemleak)
Ingo Molnare0a42722006-06-23 02:03:46 -07002348 */
Catalin Marinase7cb55b2009-10-28 13:33:08 +00002349 if ((size >= (PAGE_SIZE >> 3)) && !slab_early_init &&
2350 !(flags & SLAB_NOLEAKTRACE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351 /*
2352 * Size is large, assume best to place the slab management obj
2353 * off-slab (should allow better packing of objs).
2354 */
2355 flags |= CFLGS_OFF_SLAB;
2356
2357 size = ALIGN(size, align);
2358
Linus Torvaldsf78bb8a2006-03-08 10:33:05 -08002359 left_over = calculate_slab_order(cachep, size, align, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360
2361 if (!cachep->num) {
matzeb4169522007-05-06 14:49:52 -07002362 printk(KERN_ERR
2363 "kmem_cache_create: couldn't create cache %s.\n", name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 kmem_cache_free(&cache_cache, cachep);
2365 cachep = NULL;
Andrew Morton4f12bb42005-11-07 00:58:00 -08002366 goto oops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002368 slab_size = ALIGN(cachep->num * sizeof(kmem_bufctl_t)
2369 + sizeof(struct slab), align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370
2371 /*
2372 * If the slab has been placed off-slab, and we have enough space then
2373 * move it on-slab. This is at the expense of any extra colouring.
2374 */
2375 if (flags & CFLGS_OFF_SLAB && left_over >= slab_size) {
2376 flags &= ~CFLGS_OFF_SLAB;
2377 left_over -= slab_size;
2378 }
2379
2380 if (flags & CFLGS_OFF_SLAB) {
2381 /* really off slab. No need for manual alignment */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002382 slab_size =
2383 cachep->num * sizeof(kmem_bufctl_t) + sizeof(struct slab);
Ron Lee67461362009-05-22 04:58:22 +09302384
2385#ifdef CONFIG_PAGE_POISONING
2386 /* If we're going to use the generic kernel_map_pages()
2387 * poisoning, then it's going to smash the contents of
2388 * the redzone and userword anyhow, so switch them off.
2389 */
2390 if (size % PAGE_SIZE == 0 && flags & SLAB_POISON)
2391 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
2392#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 }
2394
2395 cachep->colour_off = cache_line_size();
2396 /* Offset must be a multiple of the alignment. */
2397 if (cachep->colour_off < align)
2398 cachep->colour_off = align;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002399 cachep->colour = left_over / cachep->colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 cachep->slab_size = slab_size;
2401 cachep->flags = flags;
2402 cachep->gfpflags = 0;
Christoph Lameter4b51d662007-02-10 01:43:10 -08002403 if (CONFIG_ZONE_DMA_FLAG && (flags & SLAB_CACHE_DMA))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404 cachep->gfpflags |= GFP_DMA;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002405 cachep->buffer_size = size;
Eric Dumazet6a2d7a92006-12-13 00:34:27 -08002406 cachep->reciprocal_buffer_size = reciprocal_value(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002408 if (flags & CFLGS_OFF_SLAB) {
Victor Fuscob2d55072005-09-10 00:26:36 -07002409 cachep->slabp_cache = kmem_find_general_cachep(slab_size, 0u);
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002410 /*
2411 * This is a possibility for one of the malloc_sizes caches.
2412 * But since we go off slab only for object size greater than
2413 * PAGE_SIZE/8, and malloc_sizes gets created in ascending order,
2414 * this should not happen at all.
2415 * But leave a BUG_ON for some lucky dude.
2416 */
Christoph Lameter6cb8f912007-07-17 04:03:22 -07002417 BUG_ON(ZERO_OR_NULL_PTR(cachep->slabp_cache));
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002418 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 cachep->ctor = ctor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 cachep->name = name;
2421
Pekka Enberg83b519e2009-06-10 19:40:04 +03002422 if (setup_cpu_cache(cachep, gfp)) {
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002423 __kmem_cache_destroy(cachep);
2424 cachep = NULL;
2425 goto oops;
2426 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427
Linus Torvalds1da177e2005-04-16 15:20:36 -07002428 /* cache setup completed, link it into the list */
2429 list_add(&cachep->next, &cache_chain);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002430oops:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 if (!cachep && (flags & SLAB_PANIC))
2432 panic("kmem_cache_create(): failed to create slab `%s'\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002433 name);
Pekka Enberg83b519e2009-06-10 19:40:04 +03002434 if (slab_is_available()) {
2435 mutex_unlock(&cache_chain_mutex);
2436 put_online_cpus();
2437 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438 return cachep;
2439}
2440EXPORT_SYMBOL(kmem_cache_create);
2441
2442#if DEBUG
2443static void check_irq_off(void)
2444{
2445 BUG_ON(!irqs_disabled());
2446}
2447
2448static void check_irq_on(void)
2449{
2450 BUG_ON(irqs_disabled());
2451}
2452
Pekka Enberg343e0d72006-02-01 03:05:50 -08002453static void check_spinlock_acquired(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454{
2455#ifdef CONFIG_SMP
2456 check_irq_off();
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07002457 assert_spin_locked(&cachep->nodelists[numa_mem_id()]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458#endif
2459}
Christoph Lametere498be72005-09-09 13:03:32 -07002460
Pekka Enberg343e0d72006-02-01 03:05:50 -08002461static void check_spinlock_acquired_node(struct kmem_cache *cachep, int node)
Christoph Lametere498be72005-09-09 13:03:32 -07002462{
2463#ifdef CONFIG_SMP
2464 check_irq_off();
2465 assert_spin_locked(&cachep->nodelists[node]->list_lock);
2466#endif
2467}
2468
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469#else
2470#define check_irq_off() do { } while(0)
2471#define check_irq_on() do { } while(0)
2472#define check_spinlock_acquired(x) do { } while(0)
Christoph Lametere498be72005-09-09 13:03:32 -07002473#define check_spinlock_acquired_node(x, y) do { } while(0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474#endif
2475
Christoph Lameteraab22072006-03-22 00:09:06 -08002476static void drain_array(struct kmem_cache *cachep, struct kmem_list3 *l3,
2477 struct array_cache *ac,
2478 int force, int node);
2479
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480static void do_drain(void *arg)
2481{
Andrew Mortona737b3e2006-03-22 00:08:11 -08002482 struct kmem_cache *cachep = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483 struct array_cache *ac;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07002484 int node = numa_mem_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485
2486 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002487 ac = cpu_cache_get(cachep);
Christoph Lameterff694162005-09-22 21:44:02 -07002488 spin_lock(&cachep->nodelists[node]->list_lock);
2489 free_block(cachep, ac->entry, ac->avail, node);
2490 spin_unlock(&cachep->nodelists[node]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 ac->avail = 0;
2492}
2493
Pekka Enberg343e0d72006-02-01 03:05:50 -08002494static void drain_cpu_caches(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495{
Christoph Lametere498be72005-09-09 13:03:32 -07002496 struct kmem_list3 *l3;
2497 int node;
2498
Jens Axboe15c8b6c2008-05-09 09:39:44 +02002499 on_each_cpu(do_drain, cachep, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 check_irq_on();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002501 for_each_online_node(node) {
Christoph Lametere498be72005-09-09 13:03:32 -07002502 l3 = cachep->nodelists[node];
Roland Dreiera4523a82006-05-15 11:41:00 -07002503 if (l3 && l3->alien)
2504 drain_alien_cache(cachep, l3->alien);
2505 }
2506
2507 for_each_online_node(node) {
2508 l3 = cachep->nodelists[node];
2509 if (l3)
Christoph Lameteraab22072006-03-22 00:09:06 -08002510 drain_array(cachep, l3, l3->shared, 1, node);
Christoph Lametere498be72005-09-09 13:03:32 -07002511 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512}
2513
Christoph Lametered11d9e2006-06-30 01:55:45 -07002514/*
2515 * Remove slabs from the list of free slabs.
2516 * Specify the number of slabs to drain in tofree.
2517 *
2518 * Returns the actual number of slabs released.
2519 */
2520static int drain_freelist(struct kmem_cache *cache,
2521 struct kmem_list3 *l3, int tofree)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522{
Christoph Lametered11d9e2006-06-30 01:55:45 -07002523 struct list_head *p;
2524 int nr_freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525 struct slab *slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526
Christoph Lametered11d9e2006-06-30 01:55:45 -07002527 nr_freed = 0;
2528 while (nr_freed < tofree && !list_empty(&l3->slabs_free)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529
Christoph Lametered11d9e2006-06-30 01:55:45 -07002530 spin_lock_irq(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07002531 p = l3->slabs_free.prev;
Christoph Lametered11d9e2006-06-30 01:55:45 -07002532 if (p == &l3->slabs_free) {
2533 spin_unlock_irq(&l3->list_lock);
2534 goto out;
2535 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536
Christoph Lametered11d9e2006-06-30 01:55:45 -07002537 slabp = list_entry(p, struct slab, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538#if DEBUG
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002539 BUG_ON(slabp->inuse);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540#endif
2541 list_del(&slabp->list);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002542 /*
2543 * Safe to drop the lock. The slab is no longer linked
2544 * to the cache.
2545 */
2546 l3->free_objects -= cache->num;
Christoph Lametere498be72005-09-09 13:03:32 -07002547 spin_unlock_irq(&l3->list_lock);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002548 slab_destroy(cache, slabp);
2549 nr_freed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 }
Christoph Lametered11d9e2006-06-30 01:55:45 -07002551out:
2552 return nr_freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553}
2554
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002555/* Called with cache_chain_mutex held to protect against cpu hotplug */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002556static int __cache_shrink(struct kmem_cache *cachep)
Christoph Lametere498be72005-09-09 13:03:32 -07002557{
2558 int ret = 0, i = 0;
2559 struct kmem_list3 *l3;
2560
2561 drain_cpu_caches(cachep);
2562
2563 check_irq_on();
2564 for_each_online_node(i) {
2565 l3 = cachep->nodelists[i];
Christoph Lametered11d9e2006-06-30 01:55:45 -07002566 if (!l3)
2567 continue;
2568
2569 drain_freelist(cachep, l3, l3->free_objects);
2570
2571 ret += !list_empty(&l3->slabs_full) ||
2572 !list_empty(&l3->slabs_partial);
Christoph Lametere498be72005-09-09 13:03:32 -07002573 }
2574 return (ret ? 1 : 0);
2575}
2576
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577/**
2578 * kmem_cache_shrink - Shrink a cache.
2579 * @cachep: The cache to shrink.
2580 *
2581 * Releases as many slabs as possible for a cache.
2582 * To help debugging, a zero exit status indicates all slabs were released.
2583 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002584int kmem_cache_shrink(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585{
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002586 int ret;
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002587 BUG_ON(!cachep || in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002589 get_online_cpus();
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002590 mutex_lock(&cache_chain_mutex);
2591 ret = __cache_shrink(cachep);
2592 mutex_unlock(&cache_chain_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002593 put_online_cpus();
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002594 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595}
2596EXPORT_SYMBOL(kmem_cache_shrink);
2597
2598/**
2599 * kmem_cache_destroy - delete a cache
2600 * @cachep: the cache to destroy
2601 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08002602 * Remove a &struct kmem_cache object from the slab cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603 *
2604 * It is expected this function will be called by a module when it is
2605 * unloaded. This will remove the cache completely, and avoid a duplicate
2606 * cache being allocated each time a module is loaded and unloaded, if the
2607 * module doesn't have persistent in-kernel storage across loads and unloads.
2608 *
2609 * The cache must be empty before calling this function.
2610 *
2611 * The caller must guarantee that noone will allocate memory from the cache
2612 * during the kmem_cache_destroy().
2613 */
Alexey Dobriyan133d2052006-09-27 01:49:41 -07002614void kmem_cache_destroy(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615{
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002616 BUG_ON(!cachep || in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618 /* Find the cache in the chain of caches. */
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002619 get_online_cpus();
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002620 mutex_lock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621 /*
2622 * the chain is never empty, cache_cache is never destroyed
2623 */
2624 list_del(&cachep->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625 if (__cache_shrink(cachep)) {
2626 slab_error(cachep, "Can't free all objects");
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002627 list_add(&cachep->next, &cache_chain);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002628 mutex_unlock(&cache_chain_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002629 put_online_cpus();
Alexey Dobriyan133d2052006-09-27 01:49:41 -07002630 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 }
2632
2633 if (unlikely(cachep->flags & SLAB_DESTROY_BY_RCU))
Paul E. McKenney7ed9f7e2009-06-25 12:31:37 -07002634 rcu_barrier();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635
Christoph Lameter117f6eb2006-09-25 23:31:37 -07002636 __kmem_cache_destroy(cachep);
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002637 mutex_unlock(&cache_chain_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002638 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639}
2640EXPORT_SYMBOL(kmem_cache_destroy);
2641
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002642/*
2643 * Get the memory for a slab management obj.
2644 * For a slab cache when the slab descriptor is off-slab, slab descriptors
2645 * always come from malloc_sizes caches. The slab descriptor cannot
2646 * come from the same cache which is getting created because,
2647 * when we are searching for an appropriate cache for these
2648 * descriptors in kmem_cache_create, we search through the malloc_sizes array.
2649 * If we are creating a malloc_sizes cache here it would not be visible to
2650 * kmem_find_general_cachep till the initialization is complete.
2651 * Hence we cannot have slabp_cache same as the original cache.
2652 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002653static struct slab *alloc_slabmgmt(struct kmem_cache *cachep, void *objp,
Ravikiran G Thirumalai5b74ada2006-04-10 22:52:53 -07002654 int colour_off, gfp_t local_flags,
2655 int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656{
2657 struct slab *slabp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002658
Linus Torvalds1da177e2005-04-16 15:20:36 -07002659 if (OFF_SLAB(cachep)) {
2660 /* Slab management obj is off-slab. */
Ravikiran G Thirumalai5b74ada2006-04-10 22:52:53 -07002661 slabp = kmem_cache_alloc_node(cachep->slabp_cache,
Pekka Enberg8759ec52008-11-26 10:01:31 +02002662 local_flags, nodeid);
Catalin Marinasd5cff632009-06-11 13:22:40 +01002663 /*
2664 * If the first object in the slab is leaked (it's allocated
2665 * but no one has a reference to it), we want to make sure
2666 * kmemleak does not treat the ->s_mem pointer as a reference
2667 * to the object. Otherwise we will not report the leak.
2668 */
Catalin Marinasc017b4b2009-10-28 13:33:09 +00002669 kmemleak_scan_area(&slabp->list, sizeof(struct list_head),
2670 local_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671 if (!slabp)
2672 return NULL;
2673 } else {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002674 slabp = objp + colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675 colour_off += cachep->slab_size;
2676 }
2677 slabp->inuse = 0;
2678 slabp->colouroff = colour_off;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002679 slabp->s_mem = objp + colour_off;
Ravikiran G Thirumalai5b74ada2006-04-10 22:52:53 -07002680 slabp->nodeid = nodeid;
Marcin Slusarze51bfd02008-02-10 11:21:54 +01002681 slabp->free = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682 return slabp;
2683}
2684
2685static inline kmem_bufctl_t *slab_bufctl(struct slab *slabp)
2686{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002687 return (kmem_bufctl_t *) (slabp + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688}
2689
Pekka Enberg343e0d72006-02-01 03:05:50 -08002690static void cache_init_objs(struct kmem_cache *cachep,
Christoph Lametera35afb82007-05-16 22:10:57 -07002691 struct slab *slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692{
2693 int i;
2694
2695 for (i = 0; i < cachep->num; i++) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002696 void *objp = index_to_obj(cachep, slabp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697#if DEBUG
2698 /* need to poison the objs? */
2699 if (cachep->flags & SLAB_POISON)
2700 poison_obj(cachep, objp, POISON_FREE);
2701 if (cachep->flags & SLAB_STORE_USER)
2702 *dbg_userword(cachep, objp) = NULL;
2703
2704 if (cachep->flags & SLAB_RED_ZONE) {
2705 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2706 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2707 }
2708 /*
Andrew Mortona737b3e2006-03-22 00:08:11 -08002709 * Constructors are not allowed to allocate memory from the same
2710 * cache which they are a constructor for. Otherwise, deadlock.
2711 * They must also be threaded.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712 */
2713 if (cachep->ctor && !(cachep->flags & SLAB_POISON))
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002714 cachep->ctor(objp + obj_offset(cachep));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715
2716 if (cachep->flags & SLAB_RED_ZONE) {
2717 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
2718 slab_error(cachep, "constructor overwrote the"
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002719 " end of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002720 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
2721 slab_error(cachep, "constructor overwrote the"
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002722 " start of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723 }
Andrew Mortona737b3e2006-03-22 00:08:11 -08002724 if ((cachep->buffer_size % PAGE_SIZE) == 0 &&
2725 OFF_SLAB(cachep) && cachep->flags & SLAB_POISON)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002726 kernel_map_pages(virt_to_page(objp),
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002727 cachep->buffer_size / PAGE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728#else
2729 if (cachep->ctor)
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002730 cachep->ctor(objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731#endif
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002732 slab_bufctl(slabp)[i] = i + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002734 slab_bufctl(slabp)[i - 1] = BUFCTL_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735}
2736
Pekka Enberg343e0d72006-02-01 03:05:50 -08002737static void kmem_flagcheck(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738{
Christoph Lameter4b51d662007-02-10 01:43:10 -08002739 if (CONFIG_ZONE_DMA_FLAG) {
2740 if (flags & GFP_DMA)
2741 BUG_ON(!(cachep->gfpflags & GFP_DMA));
2742 else
2743 BUG_ON(cachep->gfpflags & GFP_DMA);
2744 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745}
2746
Andrew Mortona737b3e2006-03-22 00:08:11 -08002747static void *slab_get_obj(struct kmem_cache *cachep, struct slab *slabp,
2748 int nodeid)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002749{
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002750 void *objp = index_to_obj(cachep, slabp, slabp->free);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002751 kmem_bufctl_t next;
2752
2753 slabp->inuse++;
2754 next = slab_bufctl(slabp)[slabp->free];
2755#if DEBUG
2756 slab_bufctl(slabp)[slabp->free] = BUFCTL_FREE;
2757 WARN_ON(slabp->nodeid != nodeid);
2758#endif
2759 slabp->free = next;
2760
2761 return objp;
2762}
2763
Andrew Mortona737b3e2006-03-22 00:08:11 -08002764static void slab_put_obj(struct kmem_cache *cachep, struct slab *slabp,
2765 void *objp, int nodeid)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002766{
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002767 unsigned int objnr = obj_to_index(cachep, slabp, objp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002768
2769#if DEBUG
2770 /* Verify that the slab belongs to the intended node */
2771 WARN_ON(slabp->nodeid != nodeid);
2772
Al Viro871751e2006-03-25 03:06:39 -08002773 if (slab_bufctl(slabp)[objnr] + 1 <= SLAB_LIMIT + 1) {
Matthew Dobson78d382d2006-02-01 03:05:47 -08002774 printk(KERN_ERR "slab: double free detected in cache "
Andrew Mortona737b3e2006-03-22 00:08:11 -08002775 "'%s', objp %p\n", cachep->name, objp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002776 BUG();
2777 }
2778#endif
2779 slab_bufctl(slabp)[objnr] = slabp->free;
2780 slabp->free = objnr;
2781 slabp->inuse--;
2782}
2783
Pekka Enberg47768742006-06-23 02:03:07 -07002784/*
2785 * Map pages beginning at addr to the given cache and slab. This is required
2786 * for the slab allocator to be able to lookup the cache and slab of a
Nick Pigginccd35fb2011-01-07 17:49:17 +11002787 * virtual address for kfree, ksize, and slab debugging.
Pekka Enberg47768742006-06-23 02:03:07 -07002788 */
2789static void slab_map_pages(struct kmem_cache *cache, struct slab *slab,
2790 void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791{
Pekka Enberg47768742006-06-23 02:03:07 -07002792 int nr_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793 struct page *page;
2794
Pekka Enberg47768742006-06-23 02:03:07 -07002795 page = virt_to_page(addr);
Nick Piggin84097512006-03-22 00:08:34 -08002796
Pekka Enberg47768742006-06-23 02:03:07 -07002797 nr_pages = 1;
Nick Piggin84097512006-03-22 00:08:34 -08002798 if (likely(!PageCompound(page)))
Pekka Enberg47768742006-06-23 02:03:07 -07002799 nr_pages <<= cache->gfporder;
2800
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801 do {
Pekka Enberg47768742006-06-23 02:03:07 -07002802 page_set_cache(page, cache);
2803 page_set_slab(page, slab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804 page++;
Pekka Enberg47768742006-06-23 02:03:07 -07002805 } while (--nr_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806}
2807
2808/*
2809 * Grow (by 1) the number of slabs within a cache. This is called by
2810 * kmem_cache_alloc() when there are no active objs left in a cache.
2811 */
Christoph Lameter3c517a62006-12-06 20:33:29 -08002812static int cache_grow(struct kmem_cache *cachep,
2813 gfp_t flags, int nodeid, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002815 struct slab *slabp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002816 size_t offset;
2817 gfp_t local_flags;
Christoph Lametere498be72005-09-09 13:03:32 -07002818 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819
Andrew Mortona737b3e2006-03-22 00:08:11 -08002820 /*
2821 * Be lazy and only check for valid flags here, keeping it out of the
2822 * critical path in kmem_cache_alloc().
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 */
Christoph Lameter6cb06222007-10-16 01:25:41 -07002824 BUG_ON(flags & GFP_SLAB_BUG_MASK);
2825 local_flags = flags & (GFP_CONSTRAINT_MASK|GFP_RECLAIM_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002827 /* Take the l3 list lock to change the colour_next on this node */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828 check_irq_off();
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002829 l3 = cachep->nodelists[nodeid];
2830 spin_lock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831
2832 /* Get colour for the slab, and cal the next value. */
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002833 offset = l3->colour_next;
2834 l3->colour_next++;
2835 if (l3->colour_next >= cachep->colour)
2836 l3->colour_next = 0;
2837 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002839 offset *= cachep->colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840
2841 if (local_flags & __GFP_WAIT)
2842 local_irq_enable();
2843
2844 /*
2845 * The test for missing atomic flag is performed here, rather than
2846 * the more obvious place, simply to reduce the critical path length
2847 * in kmem_cache_alloc(). If a caller is seriously mis-behaving they
2848 * will eventually be caught here (where it matters).
2849 */
2850 kmem_flagcheck(cachep, flags);
2851
Andrew Mortona737b3e2006-03-22 00:08:11 -08002852 /*
2853 * Get mem for the objs. Attempt to allocate a physical page from
2854 * 'nodeid'.
Christoph Lametere498be72005-09-09 13:03:32 -07002855 */
Christoph Lameter3c517a62006-12-06 20:33:29 -08002856 if (!objp)
Andrew Mortonb8c1c5d2007-07-24 12:02:40 -07002857 objp = kmem_getpages(cachep, local_flags, nodeid);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002858 if (!objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859 goto failed;
2860
2861 /* Get slab management. */
Christoph Lameter3c517a62006-12-06 20:33:29 -08002862 slabp = alloc_slabmgmt(cachep, objp, offset,
Christoph Lameter6cb06222007-10-16 01:25:41 -07002863 local_flags & ~GFP_CONSTRAINT_MASK, nodeid);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002864 if (!slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865 goto opps1;
2866
Pekka Enberg47768742006-06-23 02:03:07 -07002867 slab_map_pages(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868
Christoph Lametera35afb82007-05-16 22:10:57 -07002869 cache_init_objs(cachep, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870
2871 if (local_flags & __GFP_WAIT)
2872 local_irq_disable();
2873 check_irq_off();
Christoph Lametere498be72005-09-09 13:03:32 -07002874 spin_lock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002875
2876 /* Make slab active. */
Christoph Lametere498be72005-09-09 13:03:32 -07002877 list_add_tail(&slabp->list, &(l3->slabs_free));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878 STATS_INC_GROWN(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07002879 l3->free_objects += cachep->num;
2880 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881 return 1;
Andrew Mortona737b3e2006-03-22 00:08:11 -08002882opps1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883 kmem_freepages(cachep, objp);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002884failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885 if (local_flags & __GFP_WAIT)
2886 local_irq_disable();
2887 return 0;
2888}
2889
2890#if DEBUG
2891
2892/*
2893 * Perform extra freeing checks:
2894 * - detect bad pointers.
2895 * - POISON/RED_ZONE checking
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 */
2897static void kfree_debugcheck(const void *objp)
2898{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899 if (!virt_addr_valid(objp)) {
2900 printk(KERN_ERR "kfree_debugcheck: out of range ptr %lxh.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002901 (unsigned long)objp);
2902 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904}
2905
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002906static inline void verify_redzone_free(struct kmem_cache *cache, void *obj)
2907{
David Woodhouseb46b8f12007-05-08 00:22:59 -07002908 unsigned long long redzone1, redzone2;
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002909
2910 redzone1 = *dbg_redzone1(cache, obj);
2911 redzone2 = *dbg_redzone2(cache, obj);
2912
2913 /*
2914 * Redzone is ok.
2915 */
2916 if (redzone1 == RED_ACTIVE && redzone2 == RED_ACTIVE)
2917 return;
2918
2919 if (redzone1 == RED_INACTIVE && redzone2 == RED_INACTIVE)
2920 slab_error(cache, "double free detected");
2921 else
2922 slab_error(cache, "memory outside object was overwritten");
2923
David Woodhouseb46b8f12007-05-08 00:22:59 -07002924 printk(KERN_ERR "%p: redzone 1:0x%llx, redzone 2:0x%llx.\n",
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002925 obj, redzone1, redzone2);
2926}
2927
Pekka Enberg343e0d72006-02-01 03:05:50 -08002928static void *cache_free_debugcheck(struct kmem_cache *cachep, void *objp,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002929 void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930{
2931 struct page *page;
2932 unsigned int objnr;
2933 struct slab *slabp;
2934
Matthew Wilcox80cbd912007-11-29 12:05:13 -07002935 BUG_ON(virt_to_cache(objp) != cachep);
2936
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002937 objp -= obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938 kfree_debugcheck(objp);
Christoph Lameterb49af682007-05-06 14:49:41 -07002939 page = virt_to_head_page(objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940
Pekka Enberg065d41c2005-11-13 16:06:46 -08002941 slabp = page_get_slab(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942
2943 if (cachep->flags & SLAB_RED_ZONE) {
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002944 verify_redzone_free(cachep, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2946 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2947 }
2948 if (cachep->flags & SLAB_STORE_USER)
2949 *dbg_userword(cachep, objp) = caller;
2950
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002951 objnr = obj_to_index(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952
2953 BUG_ON(objnr >= cachep->num);
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002954 BUG_ON(objp != index_to_obj(cachep, slabp, objnr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955
Al Viro871751e2006-03-25 03:06:39 -08002956#ifdef CONFIG_DEBUG_SLAB_LEAK
2957 slab_bufctl(slabp)[objnr] = BUFCTL_FREE;
2958#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959 if (cachep->flags & SLAB_POISON) {
2960#ifdef CONFIG_DEBUG_PAGEALLOC
Andrew Mortona737b3e2006-03-22 00:08:11 -08002961 if ((cachep->buffer_size % PAGE_SIZE)==0 && OFF_SLAB(cachep)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962 store_stackinfo(cachep, objp, (unsigned long)caller);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002963 kernel_map_pages(virt_to_page(objp),
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002964 cachep->buffer_size / PAGE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965 } else {
2966 poison_obj(cachep, objp, POISON_FREE);
2967 }
2968#else
2969 poison_obj(cachep, objp, POISON_FREE);
2970#endif
2971 }
2972 return objp;
2973}
2974
Pekka Enberg343e0d72006-02-01 03:05:50 -08002975static void check_slabp(struct kmem_cache *cachep, struct slab *slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976{
2977 kmem_bufctl_t i;
2978 int entries = 0;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002979
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980 /* Check slab's freelist to see if this obj is there. */
2981 for (i = slabp->free; i != BUFCTL_END; i = slab_bufctl(slabp)[i]) {
2982 entries++;
2983 if (entries > cachep->num || i >= cachep->num)
2984 goto bad;
2985 }
2986 if (entries != cachep->num - slabp->inuse) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002987bad:
2988 printk(KERN_ERR "slab: Internal list corruption detected in "
2989 "cache '%s'(%d), slabp %p(%d). Hexdump:\n",
2990 cachep->name, cachep->num, slabp, slabp->inuse);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002991 for (i = 0;
Linus Torvalds264132b2006-03-06 12:10:07 -08002992 i < sizeof(*slabp) + cachep->num * sizeof(kmem_bufctl_t);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002993 i++) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002994 if (i % 16 == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995 printk("\n%03x:", i);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002996 printk(" %02x", ((unsigned char *)slabp)[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997 }
2998 printk("\n");
2999 BUG();
3000 }
3001}
3002#else
3003#define kfree_debugcheck(x) do { } while(0)
3004#define cache_free_debugcheck(x,objp,z) (objp)
3005#define check_slabp(x,y) do { } while(0)
3006#endif
3007
Pekka Enberg343e0d72006-02-01 03:05:50 -08003008static void *cache_alloc_refill(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009{
3010 int batchcount;
3011 struct kmem_list3 *l3;
3012 struct array_cache *ac;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07003013 int node;
3014
Andrew Mortona737b3e2006-03-22 00:08:11 -08003015retry:
Joe Korty6d2144d2008-03-05 15:04:59 -08003016 check_irq_off();
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003017 node = numa_mem_id();
Joe Korty6d2144d2008-03-05 15:04:59 -08003018 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019 batchcount = ac->batchcount;
3020 if (!ac->touched && batchcount > BATCHREFILL_LIMIT) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08003021 /*
3022 * If there was little recent activity on this cache, then
3023 * perform only a partial refill. Otherwise we could generate
3024 * refill bouncing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025 */
3026 batchcount = BATCHREFILL_LIMIT;
3027 }
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07003028 l3 = cachep->nodelists[node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029
Christoph Lametere498be72005-09-09 13:03:32 -07003030 BUG_ON(ac->avail > 0 || !l3);
3031 spin_lock(&l3->list_lock);
3032
Christoph Lameter3ded1752006-03-25 03:06:44 -08003033 /* See if we can refill from the shared array */
Nick Piggin44b57f12010-01-27 22:27:40 +11003034 if (l3->shared && transfer_objects(ac, l3->shared, batchcount)) {
3035 l3->shared->touched = 1;
Christoph Lameter3ded1752006-03-25 03:06:44 -08003036 goto alloc_done;
Nick Piggin44b57f12010-01-27 22:27:40 +11003037 }
Christoph Lameter3ded1752006-03-25 03:06:44 -08003038
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039 while (batchcount > 0) {
3040 struct list_head *entry;
3041 struct slab *slabp;
3042 /* Get slab alloc is to come from. */
3043 entry = l3->slabs_partial.next;
3044 if (entry == &l3->slabs_partial) {
3045 l3->free_touched = 1;
3046 entry = l3->slabs_free.next;
3047 if (entry == &l3->slabs_free)
3048 goto must_grow;
3049 }
3050
3051 slabp = list_entry(entry, struct slab, list);
3052 check_slabp(cachep, slabp);
3053 check_spinlock_acquired(cachep);
Pekka Enberg714b8172007-05-06 14:49:03 -07003054
3055 /*
3056 * The slab was either on partial or free list so
3057 * there must be at least one object available for
3058 * allocation.
3059 */
roel kluin249b9f32008-10-29 17:18:07 -04003060 BUG_ON(slabp->inuse >= cachep->num);
Pekka Enberg714b8172007-05-06 14:49:03 -07003061
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062 while (slabp->inuse < cachep->num && batchcount--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063 STATS_INC_ALLOCED(cachep);
3064 STATS_INC_ACTIVE(cachep);
3065 STATS_SET_HIGH(cachep);
3066
Matthew Dobson78d382d2006-02-01 03:05:47 -08003067 ac->entry[ac->avail++] = slab_get_obj(cachep, slabp,
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07003068 node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069 }
3070 check_slabp(cachep, slabp);
3071
3072 /* move slabp to correct slabp list: */
3073 list_del(&slabp->list);
3074 if (slabp->free == BUFCTL_END)
3075 list_add(&slabp->list, &l3->slabs_full);
3076 else
3077 list_add(&slabp->list, &l3->slabs_partial);
3078 }
3079
Andrew Mortona737b3e2006-03-22 00:08:11 -08003080must_grow:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081 l3->free_objects -= ac->avail;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003082alloc_done:
Christoph Lametere498be72005-09-09 13:03:32 -07003083 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084
3085 if (unlikely(!ac->avail)) {
3086 int x;
Christoph Lameter3c517a62006-12-06 20:33:29 -08003087 x = cache_grow(cachep, flags | GFP_THISNODE, node, NULL);
Christoph Lametere498be72005-09-09 13:03:32 -07003088
Andrew Mortona737b3e2006-03-22 00:08:11 -08003089 /* cache_grow can reenable interrupts, then ac could change. */
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003090 ac = cpu_cache_get(cachep);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003091 if (!x && ac->avail == 0) /* no objects in sight? abort */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092 return NULL;
3093
Andrew Mortona737b3e2006-03-22 00:08:11 -08003094 if (!ac->avail) /* objects refilled by interrupt? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095 goto retry;
3096 }
3097 ac->touched = 1;
Christoph Lametere498be72005-09-09 13:03:32 -07003098 return ac->entry[--ac->avail];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099}
3100
Andrew Mortona737b3e2006-03-22 00:08:11 -08003101static inline void cache_alloc_debugcheck_before(struct kmem_cache *cachep,
3102 gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103{
3104 might_sleep_if(flags & __GFP_WAIT);
3105#if DEBUG
3106 kmem_flagcheck(cachep, flags);
3107#endif
3108}
3109
3110#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08003111static void *cache_alloc_debugcheck_after(struct kmem_cache *cachep,
3112 gfp_t flags, void *objp, void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003114 if (!objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115 return objp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003116 if (cachep->flags & SLAB_POISON) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003117#ifdef CONFIG_DEBUG_PAGEALLOC
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003118 if ((cachep->buffer_size % PAGE_SIZE) == 0 && OFF_SLAB(cachep))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003119 kernel_map_pages(virt_to_page(objp),
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003120 cachep->buffer_size / PAGE_SIZE, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003121 else
3122 check_poison_obj(cachep, objp);
3123#else
3124 check_poison_obj(cachep, objp);
3125#endif
3126 poison_obj(cachep, objp, POISON_INUSE);
3127 }
3128 if (cachep->flags & SLAB_STORE_USER)
3129 *dbg_userword(cachep, objp) = caller;
3130
3131 if (cachep->flags & SLAB_RED_ZONE) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08003132 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE ||
3133 *dbg_redzone2(cachep, objp) != RED_INACTIVE) {
3134 slab_error(cachep, "double free, or memory outside"
3135 " object was overwritten");
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003136 printk(KERN_ERR
David Woodhouseb46b8f12007-05-08 00:22:59 -07003137 "%p: redzone 1:0x%llx, redzone 2:0x%llx\n",
Andrew Mortona737b3e2006-03-22 00:08:11 -08003138 objp, *dbg_redzone1(cachep, objp),
3139 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140 }
3141 *dbg_redzone1(cachep, objp) = RED_ACTIVE;
3142 *dbg_redzone2(cachep, objp) = RED_ACTIVE;
3143 }
Al Viro871751e2006-03-25 03:06:39 -08003144#ifdef CONFIG_DEBUG_SLAB_LEAK
3145 {
3146 struct slab *slabp;
3147 unsigned objnr;
3148
Christoph Lameterb49af682007-05-06 14:49:41 -07003149 slabp = page_get_slab(virt_to_head_page(objp));
Al Viro871751e2006-03-25 03:06:39 -08003150 objnr = (unsigned)(objp - slabp->s_mem) / cachep->buffer_size;
3151 slab_bufctl(slabp)[objnr] = BUFCTL_ACTIVE;
3152 }
3153#endif
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003154 objp += obj_offset(cachep);
Christoph Lameter4f104932007-05-06 14:50:17 -07003155 if (cachep->ctor && cachep->flags & SLAB_POISON)
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07003156 cachep->ctor(objp);
Kevin Hilmana44b56d2006-12-06 20:32:11 -08003157#if ARCH_SLAB_MINALIGN
3158 if ((u32)objp & (ARCH_SLAB_MINALIGN-1)) {
3159 printk(KERN_ERR "0x%p: not aligned to ARCH_SLAB_MINALIGN=%d\n",
3160 objp, ARCH_SLAB_MINALIGN);
3161 }
3162#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163 return objp;
3164}
3165#else
3166#define cache_alloc_debugcheck_after(a,b,objp,d) (objp)
3167#endif
3168
Akinobu Mita773ff602008-12-23 19:37:01 +09003169static bool slab_should_failslab(struct kmem_cache *cachep, gfp_t flags)
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003170{
3171 if (cachep == &cache_cache)
Akinobu Mita773ff602008-12-23 19:37:01 +09003172 return false;
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003173
Dmitry Monakhov4c13dd32010-02-26 09:36:12 +03003174 return should_failslab(obj_size(cachep), flags, cachep->flags);
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003175}
3176
Pekka Enberg343e0d72006-02-01 03:05:50 -08003177static inline void *____cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003179 void *objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180 struct array_cache *ac;
3181
Alok N Kataria5c382302005-09-27 21:45:46 -07003182 check_irq_off();
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003183
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003184 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003185 if (likely(ac->avail)) {
3186 STATS_INC_ALLOCHIT(cachep);
3187 ac->touched = 1;
Christoph Lametere498be72005-09-09 13:03:32 -07003188 objp = ac->entry[--ac->avail];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189 } else {
3190 STATS_INC_ALLOCMISS(cachep);
3191 objp = cache_alloc_refill(cachep, flags);
J. R. Okajimaddbf2e82009-12-02 16:55:50 +09003192 /*
3193 * the 'ac' may be updated by cache_alloc_refill(),
3194 * and kmemleak_erase() requires its correct value.
3195 */
3196 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197 }
Catalin Marinasd5cff632009-06-11 13:22:40 +01003198 /*
3199 * To avoid a false negative, if an object that is in one of the
3200 * per-CPU caches is leaked, we need to make sure kmemleak doesn't
3201 * treat the array pointers as a reference to the object.
3202 */
J. R. Okajimaf3d8b532009-12-02 16:55:49 +09003203 if (objp)
3204 kmemleak_erase(&ac->entry[ac->avail]);
Alok N Kataria5c382302005-09-27 21:45:46 -07003205 return objp;
3206}
3207
Christoph Lametere498be72005-09-09 13:03:32 -07003208#ifdef CONFIG_NUMA
3209/*
Paul Jacksonb2455392006-03-24 03:16:12 -08003210 * Try allocating on another node if PF_SPREAD_SLAB|PF_MEMPOLICY.
Paul Jacksonc61afb12006-03-24 03:16:08 -08003211 *
3212 * If we are in_interrupt, then process context, including cpusets and
3213 * mempolicy, may not apply and should not be used for allocation policy.
3214 */
3215static void *alternate_node_alloc(struct kmem_cache *cachep, gfp_t flags)
3216{
3217 int nid_alloc, nid_here;
3218
Christoph Lameter765c4502006-09-27 01:50:08 -07003219 if (in_interrupt() || (flags & __GFP_THISNODE))
Paul Jacksonc61afb12006-03-24 03:16:08 -08003220 return NULL;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003221 nid_alloc = nid_here = numa_mem_id();
Miao Xiec0ff7452010-05-24 14:32:08 -07003222 get_mems_allowed();
Paul Jacksonc61afb12006-03-24 03:16:08 -08003223 if (cpuset_do_slab_mem_spread() && (cachep->flags & SLAB_MEM_SPREAD))
Jack Steiner6adef3e2010-05-26 14:42:49 -07003224 nid_alloc = cpuset_slab_spread_node();
Paul Jacksonc61afb12006-03-24 03:16:08 -08003225 else if (current->mempolicy)
3226 nid_alloc = slab_node(current->mempolicy);
Miao Xiec0ff7452010-05-24 14:32:08 -07003227 put_mems_allowed();
Paul Jacksonc61afb12006-03-24 03:16:08 -08003228 if (nid_alloc != nid_here)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003229 return ____cache_alloc_node(cachep, flags, nid_alloc);
Paul Jacksonc61afb12006-03-24 03:16:08 -08003230 return NULL;
3231}
3232
3233/*
Christoph Lameter765c4502006-09-27 01:50:08 -07003234 * Fallback function if there was no memory available and no objects on a
Christoph Lameter3c517a62006-12-06 20:33:29 -08003235 * certain node and fall back is permitted. First we scan all the
3236 * available nodelists for available objects. If that fails then we
3237 * perform an allocation without specifying a node. This allows the page
3238 * allocator to do its reclaim / fallback magic. We then insert the
3239 * slab into the proper nodelist and then allocate from it.
Christoph Lameter765c4502006-09-27 01:50:08 -07003240 */
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003241static void *fallback_alloc(struct kmem_cache *cache, gfp_t flags)
Christoph Lameter765c4502006-09-27 01:50:08 -07003242{
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003243 struct zonelist *zonelist;
3244 gfp_t local_flags;
Mel Gormandd1a2392008-04-28 02:12:17 -07003245 struct zoneref *z;
Mel Gorman54a6eb52008-04-28 02:12:16 -07003246 struct zone *zone;
3247 enum zone_type high_zoneidx = gfp_zone(flags);
Christoph Lameter765c4502006-09-27 01:50:08 -07003248 void *obj = NULL;
Christoph Lameter3c517a62006-12-06 20:33:29 -08003249 int nid;
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003250
3251 if (flags & __GFP_THISNODE)
3252 return NULL;
3253
Miao Xiec0ff7452010-05-24 14:32:08 -07003254 get_mems_allowed();
Mel Gorman0e884602008-04-28 02:12:14 -07003255 zonelist = node_zonelist(slab_node(current->mempolicy), flags);
Christoph Lameter6cb06222007-10-16 01:25:41 -07003256 local_flags = flags & (GFP_CONSTRAINT_MASK|GFP_RECLAIM_MASK);
Christoph Lameter765c4502006-09-27 01:50:08 -07003257
Christoph Lameter3c517a62006-12-06 20:33:29 -08003258retry:
3259 /*
3260 * Look through allowed nodes for objects available
3261 * from existing per node queues.
3262 */
Mel Gorman54a6eb52008-04-28 02:12:16 -07003263 for_each_zone_zonelist(zone, z, zonelist, high_zoneidx) {
3264 nid = zone_to_nid(zone);
Christoph Lameteraedb0eb2006-10-21 10:24:16 -07003265
Mel Gorman54a6eb52008-04-28 02:12:16 -07003266 if (cpuset_zone_allowed_hardwall(zone, flags) &&
Christoph Lameter3c517a62006-12-06 20:33:29 -08003267 cache->nodelists[nid] &&
Christoph Lameter481c5342008-06-21 16:46:35 -07003268 cache->nodelists[nid]->free_objects) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003269 obj = ____cache_alloc_node(cache,
3270 flags | GFP_THISNODE, nid);
Christoph Lameter481c5342008-06-21 16:46:35 -07003271 if (obj)
3272 break;
3273 }
Christoph Lameter3c517a62006-12-06 20:33:29 -08003274 }
3275
Christoph Lametercfce6602007-05-06 14:50:17 -07003276 if (!obj) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003277 /*
3278 * This allocation will be performed within the constraints
3279 * of the current cpuset / memory policy requirements.
3280 * We may trigger various forms of reclaim on the allowed
3281 * set and go into memory reserves if necessary.
3282 */
Christoph Lameterdd47ea72006-12-13 00:34:11 -08003283 if (local_flags & __GFP_WAIT)
3284 local_irq_enable();
3285 kmem_flagcheck(cache, flags);
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003286 obj = kmem_getpages(cache, local_flags, numa_mem_id());
Christoph Lameterdd47ea72006-12-13 00:34:11 -08003287 if (local_flags & __GFP_WAIT)
3288 local_irq_disable();
Christoph Lameter3c517a62006-12-06 20:33:29 -08003289 if (obj) {
3290 /*
3291 * Insert into the appropriate per node queues
3292 */
3293 nid = page_to_nid(virt_to_page(obj));
3294 if (cache_grow(cache, flags, nid, obj)) {
3295 obj = ____cache_alloc_node(cache,
3296 flags | GFP_THISNODE, nid);
3297 if (!obj)
3298 /*
3299 * Another processor may allocate the
3300 * objects in the slab since we are
3301 * not holding any locks.
3302 */
3303 goto retry;
3304 } else {
Hugh Dickinsb6a60452007-01-05 16:36:36 -08003305 /* cache_grow already freed obj */
Christoph Lameter3c517a62006-12-06 20:33:29 -08003306 obj = NULL;
3307 }
3308 }
Christoph Lameteraedb0eb2006-10-21 10:24:16 -07003309 }
Miao Xiec0ff7452010-05-24 14:32:08 -07003310 put_mems_allowed();
Christoph Lameter765c4502006-09-27 01:50:08 -07003311 return obj;
3312}
3313
3314/*
Christoph Lametere498be72005-09-09 13:03:32 -07003315 * A interface to enable slab creation on nodeid
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316 */
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003317static void *____cache_alloc_node(struct kmem_cache *cachep, gfp_t flags,
Andrew Mortona737b3e2006-03-22 00:08:11 -08003318 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07003319{
3320 struct list_head *entry;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003321 struct slab *slabp;
3322 struct kmem_list3 *l3;
3323 void *obj;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003324 int x;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003326 l3 = cachep->nodelists[nodeid];
3327 BUG_ON(!l3);
Christoph Lametere498be72005-09-09 13:03:32 -07003328
Andrew Mortona737b3e2006-03-22 00:08:11 -08003329retry:
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08003330 check_irq_off();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003331 spin_lock(&l3->list_lock);
3332 entry = l3->slabs_partial.next;
3333 if (entry == &l3->slabs_partial) {
3334 l3->free_touched = 1;
3335 entry = l3->slabs_free.next;
3336 if (entry == &l3->slabs_free)
3337 goto must_grow;
3338 }
Christoph Lametere498be72005-09-09 13:03:32 -07003339
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003340 slabp = list_entry(entry, struct slab, list);
3341 check_spinlock_acquired_node(cachep, nodeid);
3342 check_slabp(cachep, slabp);
Christoph Lametere498be72005-09-09 13:03:32 -07003343
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003344 STATS_INC_NODEALLOCS(cachep);
3345 STATS_INC_ACTIVE(cachep);
3346 STATS_SET_HIGH(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003347
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003348 BUG_ON(slabp->inuse == cachep->num);
Christoph Lametere498be72005-09-09 13:03:32 -07003349
Matthew Dobson78d382d2006-02-01 03:05:47 -08003350 obj = slab_get_obj(cachep, slabp, nodeid);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003351 check_slabp(cachep, slabp);
3352 l3->free_objects--;
3353 /* move slabp to correct slabp list: */
3354 list_del(&slabp->list);
Christoph Lametere498be72005-09-09 13:03:32 -07003355
Andrew Mortona737b3e2006-03-22 00:08:11 -08003356 if (slabp->free == BUFCTL_END)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003357 list_add(&slabp->list, &l3->slabs_full);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003358 else
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003359 list_add(&slabp->list, &l3->slabs_partial);
Christoph Lametere498be72005-09-09 13:03:32 -07003360
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003361 spin_unlock(&l3->list_lock);
3362 goto done;
Christoph Lametere498be72005-09-09 13:03:32 -07003363
Andrew Mortona737b3e2006-03-22 00:08:11 -08003364must_grow:
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003365 spin_unlock(&l3->list_lock);
Christoph Lameter3c517a62006-12-06 20:33:29 -08003366 x = cache_grow(cachep, flags | GFP_THISNODE, nodeid, NULL);
Christoph Lameter765c4502006-09-27 01:50:08 -07003367 if (x)
3368 goto retry;
Christoph Lametere498be72005-09-09 13:03:32 -07003369
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003370 return fallback_alloc(cachep, flags);
Christoph Lameter765c4502006-09-27 01:50:08 -07003371
Andrew Mortona737b3e2006-03-22 00:08:11 -08003372done:
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003373 return obj;
Christoph Lametere498be72005-09-09 13:03:32 -07003374}
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003375
3376/**
3377 * kmem_cache_alloc_node - Allocate an object on the specified node
3378 * @cachep: The cache to allocate from.
3379 * @flags: See kmalloc().
3380 * @nodeid: node number of the target node.
3381 * @caller: return address of caller, used for debug information
3382 *
3383 * Identical to kmem_cache_alloc but it will allocate memory on the given
3384 * node, which can improve the performance for cpu bound structures.
3385 *
3386 * Fallback to other node is possible if __GFP_THISNODE is not set.
3387 */
3388static __always_inline void *
3389__cache_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid,
3390 void *caller)
3391{
3392 unsigned long save_flags;
3393 void *ptr;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003394 int slab_node = numa_mem_id();
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003395
Benjamin Herrenschmidtdcce2842009-06-18 13:24:12 +10003396 flags &= gfp_allowed_mask;
Pekka Enberg7e85ee02009-06-12 14:03:06 +03003397
Nick Piggincf40bd12009-01-21 08:12:39 +01003398 lockdep_trace_alloc(flags);
3399
Akinobu Mita773ff602008-12-23 19:37:01 +09003400 if (slab_should_failslab(cachep, flags))
Akinobu Mita824ebef2007-05-06 14:49:58 -07003401 return NULL;
3402
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003403 cache_alloc_debugcheck_before(cachep, flags);
3404 local_irq_save(save_flags);
3405
Tim Blechmann8e15b792009-11-30 18:59:34 +01003406 if (nodeid == -1)
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003407 nodeid = slab_node;
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003408
3409 if (unlikely(!cachep->nodelists[nodeid])) {
3410 /* Node not bootstrapped yet */
3411 ptr = fallback_alloc(cachep, flags);
3412 goto out;
3413 }
3414
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003415 if (nodeid == slab_node) {
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003416 /*
3417 * Use the locally cached objects if possible.
3418 * However ____cache_alloc does not allow fallback
3419 * to other nodes. It may fail while we still have
3420 * objects on other nodes available.
3421 */
3422 ptr = ____cache_alloc(cachep, flags);
3423 if (ptr)
3424 goto out;
3425 }
3426 /* ___cache_alloc_node can fall back to other nodes */
3427 ptr = ____cache_alloc_node(cachep, flags, nodeid);
3428 out:
3429 local_irq_restore(save_flags);
3430 ptr = cache_alloc_debugcheck_after(cachep, flags, ptr, caller);
Catalin Marinasd5cff632009-06-11 13:22:40 +01003431 kmemleak_alloc_recursive(ptr, obj_size(cachep), 1, cachep->flags,
3432 flags);
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003433
Pekka Enbergc175eea2008-05-09 20:35:53 +02003434 if (likely(ptr))
3435 kmemcheck_slab_alloc(cachep, flags, ptr, obj_size(cachep));
3436
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003437 if (unlikely((flags & __GFP_ZERO) && ptr))
3438 memset(ptr, 0, obj_size(cachep));
3439
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003440 return ptr;
3441}
3442
3443static __always_inline void *
3444__do_cache_alloc(struct kmem_cache *cache, gfp_t flags)
3445{
3446 void *objp;
3447
3448 if (unlikely(current->flags & (PF_SPREAD_SLAB | PF_MEMPOLICY))) {
3449 objp = alternate_node_alloc(cache, flags);
3450 if (objp)
3451 goto out;
3452 }
3453 objp = ____cache_alloc(cache, flags);
3454
3455 /*
3456 * We may just have run out of memory on the local node.
3457 * ____cache_alloc_node() knows how to locate memory on other nodes
3458 */
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003459 if (!objp)
3460 objp = ____cache_alloc_node(cache, flags, numa_mem_id());
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003461
3462 out:
3463 return objp;
3464}
3465#else
3466
3467static __always_inline void *
3468__do_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
3469{
3470 return ____cache_alloc(cachep, flags);
3471}
3472
3473#endif /* CONFIG_NUMA */
3474
3475static __always_inline void *
3476__cache_alloc(struct kmem_cache *cachep, gfp_t flags, void *caller)
3477{
3478 unsigned long save_flags;
3479 void *objp;
3480
Benjamin Herrenschmidtdcce2842009-06-18 13:24:12 +10003481 flags &= gfp_allowed_mask;
Pekka Enberg7e85ee02009-06-12 14:03:06 +03003482
Nick Piggincf40bd12009-01-21 08:12:39 +01003483 lockdep_trace_alloc(flags);
3484
Akinobu Mita773ff602008-12-23 19:37:01 +09003485 if (slab_should_failslab(cachep, flags))
Akinobu Mita824ebef2007-05-06 14:49:58 -07003486 return NULL;
3487
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003488 cache_alloc_debugcheck_before(cachep, flags);
3489 local_irq_save(save_flags);
3490 objp = __do_cache_alloc(cachep, flags);
3491 local_irq_restore(save_flags);
3492 objp = cache_alloc_debugcheck_after(cachep, flags, objp, caller);
Catalin Marinasd5cff632009-06-11 13:22:40 +01003493 kmemleak_alloc_recursive(objp, obj_size(cachep), 1, cachep->flags,
3494 flags);
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003495 prefetchw(objp);
3496
Pekka Enbergc175eea2008-05-09 20:35:53 +02003497 if (likely(objp))
3498 kmemcheck_slab_alloc(cachep, flags, objp, obj_size(cachep));
3499
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003500 if (unlikely((flags & __GFP_ZERO) && objp))
3501 memset(objp, 0, obj_size(cachep));
3502
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003503 return objp;
3504}
Christoph Lametere498be72005-09-09 13:03:32 -07003505
3506/*
3507 * Caller needs to acquire correct kmem_list's list_lock
3508 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003509static void free_block(struct kmem_cache *cachep, void **objpp, int nr_objects,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003510 int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511{
3512 int i;
Christoph Lametere498be72005-09-09 13:03:32 -07003513 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003514
3515 for (i = 0; i < nr_objects; i++) {
3516 void *objp = objpp[i];
3517 struct slab *slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08003519 slabp = virt_to_slab(objp);
Christoph Lameterff694162005-09-22 21:44:02 -07003520 l3 = cachep->nodelists[node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521 list_del(&slabp->list);
Christoph Lameterff694162005-09-22 21:44:02 -07003522 check_spinlock_acquired_node(cachep, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523 check_slabp(cachep, slabp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08003524 slab_put_obj(cachep, slabp, objp, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003525 STATS_DEC_ACTIVE(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003526 l3->free_objects++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003527 check_slabp(cachep, slabp);
3528
3529 /* fixup slab chains */
3530 if (slabp->inuse == 0) {
Christoph Lametere498be72005-09-09 13:03:32 -07003531 if (l3->free_objects > l3->free_limit) {
3532 l3->free_objects -= cachep->num;
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07003533 /* No need to drop any previously held
3534 * lock here, even if we have a off-slab slab
3535 * descriptor it is guaranteed to come from
3536 * a different cache, refer to comments before
3537 * alloc_slabmgmt.
3538 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003539 slab_destroy(cachep, slabp);
3540 } else {
Christoph Lametere498be72005-09-09 13:03:32 -07003541 list_add(&slabp->list, &l3->slabs_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542 }
3543 } else {
3544 /* Unconditionally move a slab to the end of the
3545 * partial list on free - maximum time for the
3546 * other objects to be freed, too.
3547 */
Christoph Lametere498be72005-09-09 13:03:32 -07003548 list_add_tail(&slabp->list, &l3->slabs_partial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003549 }
3550 }
3551}
3552
Pekka Enberg343e0d72006-02-01 03:05:50 -08003553static void cache_flusharray(struct kmem_cache *cachep, struct array_cache *ac)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003554{
3555 int batchcount;
Christoph Lametere498be72005-09-09 13:03:32 -07003556 struct kmem_list3 *l3;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003557 int node = numa_mem_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003558
3559 batchcount = ac->batchcount;
3560#if DEBUG
3561 BUG_ON(!batchcount || batchcount > ac->avail);
3562#endif
3563 check_irq_off();
Christoph Lameterff694162005-09-22 21:44:02 -07003564 l3 = cachep->nodelists[node];
Ingo Molnar873623d2006-07-13 14:44:38 +02003565 spin_lock(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07003566 if (l3->shared) {
3567 struct array_cache *shared_array = l3->shared;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003568 int max = shared_array->limit - shared_array->avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003569 if (max) {
3570 if (batchcount > max)
3571 batchcount = max;
Christoph Lametere498be72005-09-09 13:03:32 -07003572 memcpy(&(shared_array->entry[shared_array->avail]),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003573 ac->entry, sizeof(void *) * batchcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003574 shared_array->avail += batchcount;
3575 goto free_done;
3576 }
3577 }
3578
Christoph Lameterff694162005-09-22 21:44:02 -07003579 free_block(cachep, ac->entry, batchcount, node);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003580free_done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581#if STATS
3582 {
3583 int i = 0;
3584 struct list_head *p;
3585
Christoph Lametere498be72005-09-09 13:03:32 -07003586 p = l3->slabs_free.next;
3587 while (p != &(l3->slabs_free)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588 struct slab *slabp;
3589
3590 slabp = list_entry(p, struct slab, list);
3591 BUG_ON(slabp->inuse);
3592
3593 i++;
3594 p = p->next;
3595 }
3596 STATS_SET_FREEABLE(cachep, i);
3597 }
3598#endif
Christoph Lametere498be72005-09-09 13:03:32 -07003599 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003600 ac->avail -= batchcount;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003601 memmove(ac->entry, &(ac->entry[batchcount]), sizeof(void *)*ac->avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003602}
3603
3604/*
Andrew Mortona737b3e2006-03-22 00:08:11 -08003605 * Release an obj back to its cache. If the obj has a constructed state, it must
3606 * be in this state _before_ it is released. Called with disabled ints.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003607 */
Ingo Molnar873623d2006-07-13 14:44:38 +02003608static inline void __cache_free(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003609{
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003610 struct array_cache *ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003611
3612 check_irq_off();
Catalin Marinasd5cff632009-06-11 13:22:40 +01003613 kmemleak_free_recursive(objp, cachep->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614 objp = cache_free_debugcheck(cachep, objp, __builtin_return_address(0));
3615
Pekka Enbergc175eea2008-05-09 20:35:53 +02003616 kmemcheck_slab_free(cachep, objp, obj_size(cachep));
3617
Siddha, Suresh B1807a1a2007-08-22 14:01:49 -07003618 /*
3619 * Skip calling cache_free_alien() when the platform is not numa.
3620 * This will avoid cache misses that happen while accessing slabp (which
3621 * is per page memory reference) to get nodeid. Instead use a global
3622 * variable to skip the call, which is mostly likely to be present in
3623 * the cache.
3624 */
Mel Gormanb6e68bc2009-06-16 15:32:16 -07003625 if (nr_online_nodes > 1 && cache_free_alien(cachep, objp))
Pekka Enberg729bd0b2006-06-23 02:03:05 -07003626 return;
Christoph Lametere498be72005-09-09 13:03:32 -07003627
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628 if (likely(ac->avail < ac->limit)) {
3629 STATS_INC_FREEHIT(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003630 ac->entry[ac->avail++] = objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003631 return;
3632 } else {
3633 STATS_INC_FREEMISS(cachep);
3634 cache_flusharray(cachep, ac);
Christoph Lametere498be72005-09-09 13:03:32 -07003635 ac->entry[ac->avail++] = objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003636 }
3637}
3638
3639/**
3640 * kmem_cache_alloc - Allocate an object
3641 * @cachep: The cache to allocate from.
3642 * @flags: See kmalloc().
3643 *
3644 * Allocate an object from this cache. The flags are only relevant
3645 * if the cache has no available objects.
3646 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003647void *kmem_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003648{
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003649 void *ret = __cache_alloc(cachep, flags, __builtin_return_address(0));
3650
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003651 trace_kmem_cache_alloc(_RET_IP_, ret,
3652 obj_size(cachep), cachep->buffer_size, flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003653
3654 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655}
3656EXPORT_SYMBOL(kmem_cache_alloc);
3657
Li Zefan0f24f122009-12-11 15:45:30 +08003658#ifdef CONFIG_TRACING
Steven Rostedt85beb582010-11-24 16:23:34 -05003659void *
3660kmem_cache_alloc_trace(size_t size, struct kmem_cache *cachep, gfp_t flags)
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003661{
Steven Rostedt85beb582010-11-24 16:23:34 -05003662 void *ret;
3663
3664 ret = __cache_alloc(cachep, flags, __builtin_return_address(0));
3665
3666 trace_kmalloc(_RET_IP_, ret,
3667 size, slab_buffer_size(cachep), flags);
3668 return ret;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003669}
Steven Rostedt85beb582010-11-24 16:23:34 -05003670EXPORT_SYMBOL(kmem_cache_alloc_trace);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003671#endif
3672
Linus Torvalds1da177e2005-04-16 15:20:36 -07003673#ifdef CONFIG_NUMA
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003674void *kmem_cache_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid)
3675{
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003676 void *ret = __cache_alloc_node(cachep, flags, nodeid,
3677 __builtin_return_address(0));
3678
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003679 trace_kmem_cache_alloc_node(_RET_IP_, ret,
3680 obj_size(cachep), cachep->buffer_size,
3681 flags, nodeid);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003682
3683 return ret;
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003684}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685EXPORT_SYMBOL(kmem_cache_alloc_node);
3686
Li Zefan0f24f122009-12-11 15:45:30 +08003687#ifdef CONFIG_TRACING
Steven Rostedt85beb582010-11-24 16:23:34 -05003688void *kmem_cache_alloc_node_trace(size_t size,
3689 struct kmem_cache *cachep,
3690 gfp_t flags,
3691 int nodeid)
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003692{
Steven Rostedt85beb582010-11-24 16:23:34 -05003693 void *ret;
3694
3695 ret = __cache_alloc_node(cachep, flags, nodeid,
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003696 __builtin_return_address(0));
Steven Rostedt85beb582010-11-24 16:23:34 -05003697 trace_kmalloc_node(_RET_IP_, ret,
3698 size, slab_buffer_size(cachep),
3699 flags, nodeid);
3700 return ret;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003701}
Steven Rostedt85beb582010-11-24 16:23:34 -05003702EXPORT_SYMBOL(kmem_cache_alloc_node_trace);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003703#endif
3704
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003705static __always_inline void *
3706__do_kmalloc_node(size_t size, gfp_t flags, int node, void *caller)
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003707{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003708 struct kmem_cache *cachep;
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003709
3710 cachep = kmem_find_general_cachep(size, flags);
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003711 if (unlikely(ZERO_OR_NULL_PTR(cachep)))
3712 return cachep;
Steven Rostedt85beb582010-11-24 16:23:34 -05003713 return kmem_cache_alloc_node_trace(size, cachep, flags, node);
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003714}
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003715
Li Zefan0bb38a52009-12-11 15:45:50 +08003716#if defined(CONFIG_DEBUG_SLAB) || defined(CONFIG_TRACING)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003717void *__kmalloc_node(size_t size, gfp_t flags, int node)
3718{
3719 return __do_kmalloc_node(size, flags, node,
3720 __builtin_return_address(0));
3721}
Christoph Hellwigdbe5e692006-09-25 23:31:36 -07003722EXPORT_SYMBOL(__kmalloc_node);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003723
3724void *__kmalloc_node_track_caller(size_t size, gfp_t flags,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003725 int node, unsigned long caller)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003726{
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003727 return __do_kmalloc_node(size, flags, node, (void *)caller);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003728}
3729EXPORT_SYMBOL(__kmalloc_node_track_caller);
3730#else
3731void *__kmalloc_node(size_t size, gfp_t flags, int node)
3732{
3733 return __do_kmalloc_node(size, flags, node, NULL);
3734}
3735EXPORT_SYMBOL(__kmalloc_node);
Li Zefan0bb38a52009-12-11 15:45:50 +08003736#endif /* CONFIG_DEBUG_SLAB || CONFIG_TRACING */
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003737#endif /* CONFIG_NUMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003738
3739/**
Paul Drynoff800590f2006-06-23 02:03:48 -07003740 * __do_kmalloc - allocate memory
Linus Torvalds1da177e2005-04-16 15:20:36 -07003741 * @size: how many bytes of memory are required.
Paul Drynoff800590f2006-06-23 02:03:48 -07003742 * @flags: the type of memory to allocate (see kmalloc).
Randy Dunlap911851e2006-03-22 00:08:14 -08003743 * @caller: function caller for debug tracking of the caller
Linus Torvalds1da177e2005-04-16 15:20:36 -07003744 */
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003745static __always_inline void *__do_kmalloc(size_t size, gfp_t flags,
3746 void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003748 struct kmem_cache *cachep;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003749 void *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003750
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003751 /* If you want to save a few bytes .text space: replace
3752 * __ with kmem_.
3753 * Then kmalloc uses the uninlined functions instead of the inline
3754 * functions.
3755 */
3756 cachep = __find_general_cachep(size, flags);
Linus Torvaldsa5c96d82007-07-19 13:17:15 -07003757 if (unlikely(ZERO_OR_NULL_PTR(cachep)))
3758 return cachep;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003759 ret = __cache_alloc(cachep, flags, caller);
3760
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003761 trace_kmalloc((unsigned long) caller, ret,
3762 size, cachep->buffer_size, flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003763
3764 return ret;
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003765}
3766
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003767
Li Zefan0bb38a52009-12-11 15:45:50 +08003768#if defined(CONFIG_DEBUG_SLAB) || defined(CONFIG_TRACING)
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003769void *__kmalloc(size_t size, gfp_t flags)
3770{
Al Viro871751e2006-03-25 03:06:39 -08003771 return __do_kmalloc(size, flags, __builtin_return_address(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003772}
3773EXPORT_SYMBOL(__kmalloc);
3774
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003775void *__kmalloc_track_caller(size_t size, gfp_t flags, unsigned long caller)
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003776{
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003777 return __do_kmalloc(size, flags, (void *)caller);
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003778}
3779EXPORT_SYMBOL(__kmalloc_track_caller);
Christoph Hellwig1d2c8ee2006-10-04 02:15:25 -07003780
3781#else
3782void *__kmalloc(size_t size, gfp_t flags)
3783{
3784 return __do_kmalloc(size, flags, NULL);
3785}
3786EXPORT_SYMBOL(__kmalloc);
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003787#endif
3788
Linus Torvalds1da177e2005-04-16 15:20:36 -07003789/**
3790 * kmem_cache_free - Deallocate an object
3791 * @cachep: The cache the allocation was from.
3792 * @objp: The previously allocated object.
3793 *
3794 * Free an object which was previously allocated from this
3795 * cache.
3796 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003797void kmem_cache_free(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003798{
3799 unsigned long flags;
3800
3801 local_irq_save(flags);
Ingo Molnar898552c2007-02-10 01:44:57 -08003802 debug_check_no_locks_freed(objp, obj_size(cachep));
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -07003803 if (!(cachep->flags & SLAB_DEBUG_OBJECTS))
3804 debug_check_no_obj_freed(objp, obj_size(cachep));
Ingo Molnar873623d2006-07-13 14:44:38 +02003805 __cache_free(cachep, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003806 local_irq_restore(flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003807
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003808 trace_kmem_cache_free(_RET_IP_, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809}
3810EXPORT_SYMBOL(kmem_cache_free);
3811
3812/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813 * kfree - free previously allocated memory
3814 * @objp: pointer returned by kmalloc.
3815 *
Pekka Enberg80e93ef2005-09-09 13:10:16 -07003816 * If @objp is NULL, no operation is performed.
3817 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818 * Don't free memory not originally allocated by kmalloc()
3819 * or you will run into trouble.
3820 */
3821void kfree(const void *objp)
3822{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003823 struct kmem_cache *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824 unsigned long flags;
3825
Pekka Enberg2121db72009-03-25 11:05:57 +02003826 trace_kfree(_RET_IP_, objp);
3827
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003828 if (unlikely(ZERO_OR_NULL_PTR(objp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829 return;
3830 local_irq_save(flags);
3831 kfree_debugcheck(objp);
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08003832 c = virt_to_cache(objp);
Ingo Molnarf9b84042006-06-27 02:54:49 -07003833 debug_check_no_locks_freed(objp, obj_size(c));
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -07003834 debug_check_no_obj_freed(objp, obj_size(c));
Ingo Molnar873623d2006-07-13 14:44:38 +02003835 __cache_free(c, (void *)objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003836 local_irq_restore(flags);
3837}
3838EXPORT_SYMBOL(kfree);
3839
Pekka Enberg343e0d72006-02-01 03:05:50 -08003840unsigned int kmem_cache_size(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841{
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003842 return obj_size(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843}
3844EXPORT_SYMBOL(kmem_cache_size);
3845
Pekka Enberg343e0d72006-02-01 03:05:50 -08003846const char *kmem_cache_name(struct kmem_cache *cachep)
Arnaldo Carvalho de Melo19449722005-06-18 22:46:19 -07003847{
3848 return cachep->name;
3849}
3850EXPORT_SYMBOL_GPL(kmem_cache_name);
3851
Christoph Lametere498be72005-09-09 13:03:32 -07003852/*
Simon Arlott183ff222007-10-20 01:27:18 +02003853 * This initializes kmem_list3 or resizes various caches for all nodes.
Christoph Lametere498be72005-09-09 13:03:32 -07003854 */
Pekka Enberg83b519e2009-06-10 19:40:04 +03003855static int alloc_kmemlist(struct kmem_cache *cachep, gfp_t gfp)
Christoph Lametere498be72005-09-09 13:03:32 -07003856{
3857 int node;
3858 struct kmem_list3 *l3;
Christoph Lametercafeb022006-03-25 03:06:46 -08003859 struct array_cache *new_shared;
Paul Menage3395ee02006-12-06 20:32:16 -08003860 struct array_cache **new_alien = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07003861
Mel Gorman9c09a952008-01-24 05:49:54 -08003862 for_each_online_node(node) {
Christoph Lametercafeb022006-03-25 03:06:46 -08003863
Paul Menage3395ee02006-12-06 20:32:16 -08003864 if (use_alien_caches) {
Pekka Enberg83b519e2009-06-10 19:40:04 +03003865 new_alien = alloc_alien_cache(node, cachep->limit, gfp);
Paul Menage3395ee02006-12-06 20:32:16 -08003866 if (!new_alien)
3867 goto fail;
3868 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003869
Eric Dumazet63109842007-05-06 14:49:28 -07003870 new_shared = NULL;
3871 if (cachep->shared) {
3872 new_shared = alloc_arraycache(node,
Christoph Lameter0718dc22006-03-25 03:06:47 -08003873 cachep->shared*cachep->batchcount,
Pekka Enberg83b519e2009-06-10 19:40:04 +03003874 0xbaadf00d, gfp);
Eric Dumazet63109842007-05-06 14:49:28 -07003875 if (!new_shared) {
3876 free_alien_cache(new_alien);
3877 goto fail;
3878 }
Christoph Lameter0718dc22006-03-25 03:06:47 -08003879 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003880
Andrew Mortona737b3e2006-03-22 00:08:11 -08003881 l3 = cachep->nodelists[node];
3882 if (l3) {
Christoph Lametercafeb022006-03-25 03:06:46 -08003883 struct array_cache *shared = l3->shared;
3884
Christoph Lametere498be72005-09-09 13:03:32 -07003885 spin_lock_irq(&l3->list_lock);
3886
Christoph Lametercafeb022006-03-25 03:06:46 -08003887 if (shared)
Christoph Lameter0718dc22006-03-25 03:06:47 -08003888 free_block(cachep, shared->entry,
3889 shared->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -07003890
Christoph Lametercafeb022006-03-25 03:06:46 -08003891 l3->shared = new_shared;
3892 if (!l3->alien) {
Christoph Lametere498be72005-09-09 13:03:32 -07003893 l3->alien = new_alien;
3894 new_alien = NULL;
3895 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003896 l3->free_limit = (1 + nr_cpus_node(node)) *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003897 cachep->batchcount + cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07003898 spin_unlock_irq(&l3->list_lock);
Christoph Lametercafeb022006-03-25 03:06:46 -08003899 kfree(shared);
Christoph Lametere498be72005-09-09 13:03:32 -07003900 free_alien_cache(new_alien);
3901 continue;
3902 }
Pekka Enberg83b519e2009-06-10 19:40:04 +03003903 l3 = kmalloc_node(sizeof(struct kmem_list3), gfp, node);
Christoph Lameter0718dc22006-03-25 03:06:47 -08003904 if (!l3) {
3905 free_alien_cache(new_alien);
3906 kfree(new_shared);
Christoph Lametere498be72005-09-09 13:03:32 -07003907 goto fail;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003908 }
Christoph Lametere498be72005-09-09 13:03:32 -07003909
3910 kmem_list3_init(l3);
3911 l3->next_reap = jiffies + REAPTIMEOUT_LIST3 +
Andrew Mortona737b3e2006-03-22 00:08:11 -08003912 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
Christoph Lametercafeb022006-03-25 03:06:46 -08003913 l3->shared = new_shared;
Christoph Lametere498be72005-09-09 13:03:32 -07003914 l3->alien = new_alien;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003915 l3->free_limit = (1 + nr_cpus_node(node)) *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003916 cachep->batchcount + cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07003917 cachep->nodelists[node] = l3;
3918 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003919 return 0;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003920
Andrew Mortona737b3e2006-03-22 00:08:11 -08003921fail:
Christoph Lameter0718dc22006-03-25 03:06:47 -08003922 if (!cachep->next.next) {
3923 /* Cache is not active yet. Roll back what we did */
3924 node--;
3925 while (node >= 0) {
3926 if (cachep->nodelists[node]) {
3927 l3 = cachep->nodelists[node];
3928
3929 kfree(l3->shared);
3930 free_alien_cache(l3->alien);
3931 kfree(l3);
3932 cachep->nodelists[node] = NULL;
3933 }
3934 node--;
3935 }
3936 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003937 return -ENOMEM;
Christoph Lametere498be72005-09-09 13:03:32 -07003938}
3939
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940struct ccupdate_struct {
Pekka Enberg343e0d72006-02-01 03:05:50 -08003941 struct kmem_cache *cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942 struct array_cache *new[NR_CPUS];
3943};
3944
3945static void do_ccupdate_local(void *info)
3946{
Andrew Mortona737b3e2006-03-22 00:08:11 -08003947 struct ccupdate_struct *new = info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948 struct array_cache *old;
3949
3950 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003951 old = cpu_cache_get(new->cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003952
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953 new->cachep->array[smp_processor_id()] = new->new[smp_processor_id()];
3954 new->new[smp_processor_id()] = old;
3955}
3956
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -08003957/* Always called with the cache_chain_mutex held */
Andrew Mortona737b3e2006-03-22 00:08:11 -08003958static int do_tune_cpucache(struct kmem_cache *cachep, int limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03003959 int batchcount, int shared, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960{
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003961 struct ccupdate_struct *new;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07003962 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003963
Pekka Enberg83b519e2009-06-10 19:40:04 +03003964 new = kzalloc(sizeof(*new), gfp);
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003965 if (!new)
3966 return -ENOMEM;
3967
Christoph Lametere498be72005-09-09 13:03:32 -07003968 for_each_online_cpu(i) {
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003969 new->new[i] = alloc_arraycache(cpu_to_mem(i), limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03003970 batchcount, gfp);
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003971 if (!new->new[i]) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003972 for (i--; i >= 0; i--)
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003973 kfree(new->new[i]);
3974 kfree(new);
Christoph Lametere498be72005-09-09 13:03:32 -07003975 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003976 }
3977 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003978 new->cachep = cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003979
Jens Axboe15c8b6c2008-05-09 09:39:44 +02003980 on_each_cpu(do_ccupdate_local, (void *)new, 1);
Christoph Lametere498be72005-09-09 13:03:32 -07003981
Linus Torvalds1da177e2005-04-16 15:20:36 -07003982 check_irq_on();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003983 cachep->batchcount = batchcount;
3984 cachep->limit = limit;
Christoph Lametere498be72005-09-09 13:03:32 -07003985 cachep->shared = shared;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003986
Christoph Lametere498be72005-09-09 13:03:32 -07003987 for_each_online_cpu(i) {
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003988 struct array_cache *ccold = new->new[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003989 if (!ccold)
3990 continue;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003991 spin_lock_irq(&cachep->nodelists[cpu_to_mem(i)]->list_lock);
3992 free_block(cachep, ccold->entry, ccold->avail, cpu_to_mem(i));
3993 spin_unlock_irq(&cachep->nodelists[cpu_to_mem(i)]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003994 kfree(ccold);
3995 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003996 kfree(new);
Pekka Enberg83b519e2009-06-10 19:40:04 +03003997 return alloc_kmemlist(cachep, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003998}
3999
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -08004000/* Called with cache_chain_mutex held always */
Pekka Enberg83b519e2009-06-10 19:40:04 +03004001static int enable_cpucache(struct kmem_cache *cachep, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004002{
4003 int err;
4004 int limit, shared;
4005
Andrew Mortona737b3e2006-03-22 00:08:11 -08004006 /*
4007 * The head array serves three purposes:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008 * - create a LIFO ordering, i.e. return objects that are cache-warm
4009 * - reduce the number of spinlock operations.
Andrew Mortona737b3e2006-03-22 00:08:11 -08004010 * - reduce the number of linked list operations on the slab and
Linus Torvalds1da177e2005-04-16 15:20:36 -07004011 * bufctl chains: array operations are cheaper.
4012 * The numbers are guessed, we should auto-tune as described by
4013 * Bonwick.
4014 */
Manfred Spraul3dafccf2006-02-01 03:05:42 -08004015 if (cachep->buffer_size > 131072)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004016 limit = 1;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08004017 else if (cachep->buffer_size > PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004018 limit = 8;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08004019 else if (cachep->buffer_size > 1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004020 limit = 24;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08004021 else if (cachep->buffer_size > 256)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004022 limit = 54;
4023 else
4024 limit = 120;
4025
Andrew Mortona737b3e2006-03-22 00:08:11 -08004026 /*
4027 * CPU bound tasks (e.g. network routing) can exhibit cpu bound
Linus Torvalds1da177e2005-04-16 15:20:36 -07004028 * allocation behaviour: Most allocs on one cpu, most free operations
4029 * on another cpu. For these cases, an efficient object passing between
4030 * cpus is necessary. This is provided by a shared array. The array
4031 * replaces Bonwick's magazine layer.
4032 * On uniprocessor, it's functionally equivalent (but less efficient)
4033 * to a larger limit. Thus disabled by default.
4034 */
4035 shared = 0;
Eric Dumazet364fbb22007-05-06 14:49:27 -07004036 if (cachep->buffer_size <= PAGE_SIZE && num_possible_cpus() > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004037 shared = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004038
4039#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08004040 /*
4041 * With debugging enabled, large batchcount lead to excessively long
4042 * periods with disabled local interrupts. Limit the batchcount
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043 */
4044 if (limit > 32)
4045 limit = 32;
4046#endif
Pekka Enberg83b519e2009-06-10 19:40:04 +03004047 err = do_tune_cpucache(cachep, limit, (limit + 1) / 2, shared, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004048 if (err)
4049 printk(KERN_ERR "enable_cpucache failed for %s, error %d.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004050 cachep->name, -err);
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07004051 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004052}
4053
Christoph Lameter1b552532006-03-22 00:09:07 -08004054/*
4055 * Drain an array if it contains any elements taking the l3 lock only if
Christoph Lameterb18e7e62006-03-22 00:09:07 -08004056 * necessary. Note that the l3 listlock also protects the array_cache
4057 * if drain_array() is used on the shared array.
Christoph Lameter1b552532006-03-22 00:09:07 -08004058 */
H Hartley Sweeten68a1b192011-01-11 17:49:32 -06004059static void drain_array(struct kmem_cache *cachep, struct kmem_list3 *l3,
Christoph Lameter1b552532006-03-22 00:09:07 -08004060 struct array_cache *ac, int force, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004061{
4062 int tofree;
4063
Christoph Lameter1b552532006-03-22 00:09:07 -08004064 if (!ac || !ac->avail)
4065 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004066 if (ac->touched && !force) {
4067 ac->touched = 0;
Christoph Lameterb18e7e62006-03-22 00:09:07 -08004068 } else {
Christoph Lameter1b552532006-03-22 00:09:07 -08004069 spin_lock_irq(&l3->list_lock);
Christoph Lameterb18e7e62006-03-22 00:09:07 -08004070 if (ac->avail) {
4071 tofree = force ? ac->avail : (ac->limit + 4) / 5;
4072 if (tofree > ac->avail)
4073 tofree = (ac->avail + 1) / 2;
4074 free_block(cachep, ac->entry, tofree, node);
4075 ac->avail -= tofree;
4076 memmove(ac->entry, &(ac->entry[tofree]),
4077 sizeof(void *) * ac->avail);
4078 }
Christoph Lameter1b552532006-03-22 00:09:07 -08004079 spin_unlock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004080 }
4081}
4082
4083/**
4084 * cache_reap - Reclaim memory from caches.
Randy Dunlap05fb6bf2007-02-28 20:12:13 -08004085 * @w: work descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -07004086 *
4087 * Called from workqueue/eventd every few seconds.
4088 * Purpose:
4089 * - clear the per-cpu caches for this CPU.
4090 * - return freeable pages to the main free memory pool.
4091 *
Andrew Mortona737b3e2006-03-22 00:08:11 -08004092 * If we cannot acquire the cache chain mutex then just give up - we'll try
4093 * again on the next iteration.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004094 */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004095static void cache_reap(struct work_struct *w)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004096{
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004097 struct kmem_cache *searchp;
Christoph Lametere498be72005-09-09 13:03:32 -07004098 struct kmem_list3 *l3;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07004099 int node = numa_mem_id();
Jean Delvarebf6aede2009-04-02 16:56:54 -07004100 struct delayed_work *work = to_delayed_work(w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004101
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004102 if (!mutex_trylock(&cache_chain_mutex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004103 /* Give up. Setup the next iteration. */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004104 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004105
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004106 list_for_each_entry(searchp, &cache_chain, next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004107 check_irq_on();
4108
Christoph Lameter35386e32006-03-22 00:09:05 -08004109 /*
4110 * We only take the l3 lock if absolutely necessary and we
4111 * have established with reasonable certainty that
4112 * we can do some work if the lock was obtained.
4113 */
Christoph Lameteraab22072006-03-22 00:09:06 -08004114 l3 = searchp->nodelists[node];
Christoph Lameter35386e32006-03-22 00:09:05 -08004115
Christoph Lameter8fce4d82006-03-09 17:33:54 -08004116 reap_alien(searchp, l3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004117
Christoph Lameteraab22072006-03-22 00:09:06 -08004118 drain_array(searchp, l3, cpu_cache_get(searchp), 0, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004119
Christoph Lameter35386e32006-03-22 00:09:05 -08004120 /*
4121 * These are racy checks but it does not matter
4122 * if we skip one check or scan twice.
4123 */
Christoph Lametere498be72005-09-09 13:03:32 -07004124 if (time_after(l3->next_reap, jiffies))
Christoph Lameter35386e32006-03-22 00:09:05 -08004125 goto next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004126
Christoph Lametere498be72005-09-09 13:03:32 -07004127 l3->next_reap = jiffies + REAPTIMEOUT_LIST3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128
Christoph Lameteraab22072006-03-22 00:09:06 -08004129 drain_array(searchp, l3, l3->shared, 0, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004130
Christoph Lametered11d9e2006-06-30 01:55:45 -07004131 if (l3->free_touched)
Christoph Lametere498be72005-09-09 13:03:32 -07004132 l3->free_touched = 0;
Christoph Lametered11d9e2006-06-30 01:55:45 -07004133 else {
4134 int freed;
4135
4136 freed = drain_freelist(searchp, l3, (l3->free_limit +
4137 5 * searchp->num - 1) / (5 * searchp->num));
4138 STATS_ADD_REAPED(searchp, freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004139 }
Christoph Lameter35386e32006-03-22 00:09:05 -08004140next:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004141 cond_resched();
4142 }
4143 check_irq_on();
Ingo Molnarfc0abb12006-01-18 17:42:33 -08004144 mutex_unlock(&cache_chain_mutex);
Christoph Lameter8fce4d82006-03-09 17:33:54 -08004145 next_reap_node();
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004146out:
Andrew Mortona737b3e2006-03-22 00:08:11 -08004147 /* Set up the next iteration */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004148 schedule_delayed_work(work, round_jiffies_relative(REAPTIMEOUT_CPUC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004149}
4150
Linus Torvalds158a9622008-01-02 13:04:48 -08004151#ifdef CONFIG_SLABINFO
Linus Torvalds1da177e2005-04-16 15:20:36 -07004152
Pekka Enberg85289f92006-01-08 01:00:36 -08004153static void print_slabinfo_header(struct seq_file *m)
4154{
4155 /*
4156 * Output format version, so at least we can change it
4157 * without _too_ many complaints.
4158 */
4159#if STATS
4160 seq_puts(m, "slabinfo - version: 2.1 (statistics)\n");
4161#else
4162 seq_puts(m, "slabinfo - version: 2.1\n");
4163#endif
4164 seq_puts(m, "# name <active_objs> <num_objs> <objsize> "
4165 "<objperslab> <pagesperslab>");
4166 seq_puts(m, " : tunables <limit> <batchcount> <sharedfactor>");
4167 seq_puts(m, " : slabdata <active_slabs> <num_slabs> <sharedavail>");
4168#if STATS
4169 seq_puts(m, " : globalstat <listallocs> <maxobjs> <grown> <reaped> "
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -07004170 "<error> <maxfreeable> <nodeallocs> <remotefrees> <alienoverflow>");
Pekka Enberg85289f92006-01-08 01:00:36 -08004171 seq_puts(m, " : cpustat <allochit> <allocmiss> <freehit> <freemiss>");
4172#endif
4173 seq_putc(m, '\n');
4174}
4175
Linus Torvalds1da177e2005-04-16 15:20:36 -07004176static void *s_start(struct seq_file *m, loff_t *pos)
4177{
4178 loff_t n = *pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004179
Ingo Molnarfc0abb12006-01-18 17:42:33 -08004180 mutex_lock(&cache_chain_mutex);
Pekka Enberg85289f92006-01-08 01:00:36 -08004181 if (!n)
4182 print_slabinfo_header(m);
Pavel Emelianovb92151b2007-07-15 23:38:04 -07004183
4184 return seq_list_start(&cache_chain, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004185}
4186
4187static void *s_next(struct seq_file *m, void *p, loff_t *pos)
4188{
Pavel Emelianovb92151b2007-07-15 23:38:04 -07004189 return seq_list_next(p, &cache_chain, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004190}
4191
4192static void s_stop(struct seq_file *m, void *p)
4193{
Ingo Molnarfc0abb12006-01-18 17:42:33 -08004194 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004195}
4196
4197static int s_show(struct seq_file *m, void *p)
4198{
Pavel Emelianovb92151b2007-07-15 23:38:04 -07004199 struct kmem_cache *cachep = list_entry(p, struct kmem_cache, next);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004200 struct slab *slabp;
4201 unsigned long active_objs;
4202 unsigned long num_objs;
4203 unsigned long active_slabs = 0;
4204 unsigned long num_slabs, free_objects = 0, shared_avail = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07004205 const char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004206 char *error = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07004207 int node;
4208 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004209
Linus Torvalds1da177e2005-04-16 15:20:36 -07004210 active_objs = 0;
4211 num_slabs = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07004212 for_each_online_node(node) {
4213 l3 = cachep->nodelists[node];
4214 if (!l3)
4215 continue;
4216
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08004217 check_irq_on();
4218 spin_lock_irq(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07004219
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004220 list_for_each_entry(slabp, &l3->slabs_full, list) {
Christoph Lametere498be72005-09-09 13:03:32 -07004221 if (slabp->inuse != cachep->num && !error)
4222 error = "slabs_full accounting error";
4223 active_objs += cachep->num;
4224 active_slabs++;
4225 }
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004226 list_for_each_entry(slabp, &l3->slabs_partial, list) {
Christoph Lametere498be72005-09-09 13:03:32 -07004227 if (slabp->inuse == cachep->num && !error)
4228 error = "slabs_partial inuse accounting error";
4229 if (!slabp->inuse && !error)
4230 error = "slabs_partial/inuse accounting error";
4231 active_objs += slabp->inuse;
4232 active_slabs++;
4233 }
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004234 list_for_each_entry(slabp, &l3->slabs_free, list) {
Christoph Lametere498be72005-09-09 13:03:32 -07004235 if (slabp->inuse && !error)
4236 error = "slabs_free/inuse accounting error";
4237 num_slabs++;
4238 }
4239 free_objects += l3->free_objects;
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08004240 if (l3->shared)
4241 shared_avail += l3->shared->avail;
Christoph Lametere498be72005-09-09 13:03:32 -07004242
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08004243 spin_unlock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004244 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004245 num_slabs += active_slabs;
4246 num_objs = num_slabs * cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07004247 if (num_objs - active_objs != free_objects && !error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004248 error = "free_objects accounting error";
4249
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004250 name = cachep->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004251 if (error)
4252 printk(KERN_ERR "slab: cache %s error: %s\n", name, error);
4253
4254 seq_printf(m, "%-17s %6lu %6lu %6u %4u %4d",
Manfred Spraul3dafccf2006-02-01 03:05:42 -08004255 name, active_objs, num_objs, cachep->buffer_size,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004256 cachep->num, (1 << cachep->gfporder));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004257 seq_printf(m, " : tunables %4u %4u %4u",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004258 cachep->limit, cachep->batchcount, cachep->shared);
Christoph Lametere498be72005-09-09 13:03:32 -07004259 seq_printf(m, " : slabdata %6lu %6lu %6lu",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004260 active_slabs, num_slabs, shared_avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004261#if STATS
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004262 { /* list3 stats */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004263 unsigned long high = cachep->high_mark;
4264 unsigned long allocs = cachep->num_allocations;
4265 unsigned long grown = cachep->grown;
4266 unsigned long reaped = cachep->reaped;
4267 unsigned long errors = cachep->errors;
4268 unsigned long max_freeable = cachep->max_freeable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004269 unsigned long node_allocs = cachep->node_allocs;
Christoph Lametere498be72005-09-09 13:03:32 -07004270 unsigned long node_frees = cachep->node_frees;
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -07004271 unsigned long overflows = cachep->node_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004272
Joe Perchese92dd4f2010-03-26 19:27:58 -07004273 seq_printf(m, " : globalstat %7lu %6lu %5lu %4lu "
4274 "%4lu %4lu %4lu %4lu %4lu",
4275 allocs, high, grown,
4276 reaped, errors, max_freeable, node_allocs,
4277 node_frees, overflows);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004278 }
4279 /* cpu stats */
4280 {
4281 unsigned long allochit = atomic_read(&cachep->allochit);
4282 unsigned long allocmiss = atomic_read(&cachep->allocmiss);
4283 unsigned long freehit = atomic_read(&cachep->freehit);
4284 unsigned long freemiss = atomic_read(&cachep->freemiss);
4285
4286 seq_printf(m, " : cpustat %6lu %6lu %6lu %6lu",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004287 allochit, allocmiss, freehit, freemiss);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004288 }
4289#endif
4290 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07004291 return 0;
4292}
4293
4294/*
4295 * slabinfo_op - iterator that generates /proc/slabinfo
4296 *
4297 * Output layout:
4298 * cache-name
4299 * num-active-objs
4300 * total-objs
4301 * object size
4302 * num-active-slabs
4303 * total-slabs
4304 * num-pages-per-slab
4305 * + further values on SMP and with statistics enabled
4306 */
4307
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04004308static const struct seq_operations slabinfo_op = {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004309 .start = s_start,
4310 .next = s_next,
4311 .stop = s_stop,
4312 .show = s_show,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004313};
4314
4315#define MAX_SLABINFO_WRITE 128
4316/**
4317 * slabinfo_write - Tuning for the slab allocator
4318 * @file: unused
4319 * @buffer: user buffer
4320 * @count: data length
4321 * @ppos: unused
4322 */
H Hartley Sweeten68a1b192011-01-11 17:49:32 -06004323static ssize_t slabinfo_write(struct file *file, const char __user *buffer,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004324 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004325{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004326 char kbuf[MAX_SLABINFO_WRITE + 1], *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004327 int limit, batchcount, shared, res;
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004328 struct kmem_cache *cachep;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004329
Linus Torvalds1da177e2005-04-16 15:20:36 -07004330 if (count > MAX_SLABINFO_WRITE)
4331 return -EINVAL;
4332 if (copy_from_user(&kbuf, buffer, count))
4333 return -EFAULT;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004334 kbuf[MAX_SLABINFO_WRITE] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07004335
4336 tmp = strchr(kbuf, ' ');
4337 if (!tmp)
4338 return -EINVAL;
4339 *tmp = '\0';
4340 tmp++;
4341 if (sscanf(tmp, " %d %d %d", &limit, &batchcount, &shared) != 3)
4342 return -EINVAL;
4343
4344 /* Find the cache in the chain of caches. */
Ingo Molnarfc0abb12006-01-18 17:42:33 -08004345 mutex_lock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004346 res = -EINVAL;
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004347 list_for_each_entry(cachep, &cache_chain, next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004348 if (!strcmp(cachep->name, kbuf)) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08004349 if (limit < 1 || batchcount < 1 ||
4350 batchcount > limit || shared < 0) {
Christoph Lametere498be72005-09-09 13:03:32 -07004351 res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004352 } else {
Christoph Lametere498be72005-09-09 13:03:32 -07004353 res = do_tune_cpucache(cachep, limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03004354 batchcount, shared,
4355 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004356 }
4357 break;
4358 }
4359 }
Ingo Molnarfc0abb12006-01-18 17:42:33 -08004360 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004361 if (res >= 0)
4362 res = count;
4363 return res;
4364}
Al Viro871751e2006-03-25 03:06:39 -08004365
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04004366static int slabinfo_open(struct inode *inode, struct file *file)
4367{
4368 return seq_open(file, &slabinfo_op);
4369}
4370
4371static const struct file_operations proc_slabinfo_operations = {
4372 .open = slabinfo_open,
4373 .read = seq_read,
4374 .write = slabinfo_write,
4375 .llseek = seq_lseek,
4376 .release = seq_release,
4377};
4378
Al Viro871751e2006-03-25 03:06:39 -08004379#ifdef CONFIG_DEBUG_SLAB_LEAK
4380
4381static void *leaks_start(struct seq_file *m, loff_t *pos)
4382{
Al Viro871751e2006-03-25 03:06:39 -08004383 mutex_lock(&cache_chain_mutex);
Pavel Emelianovb92151b2007-07-15 23:38:04 -07004384 return seq_list_start(&cache_chain, *pos);
Al Viro871751e2006-03-25 03:06:39 -08004385}
4386
4387static inline int add_caller(unsigned long *n, unsigned long v)
4388{
4389 unsigned long *p;
4390 int l;
4391 if (!v)
4392 return 1;
4393 l = n[1];
4394 p = n + 2;
4395 while (l) {
4396 int i = l/2;
4397 unsigned long *q = p + 2 * i;
4398 if (*q == v) {
4399 q[1]++;
4400 return 1;
4401 }
4402 if (*q > v) {
4403 l = i;
4404 } else {
4405 p = q + 2;
4406 l -= i + 1;
4407 }
4408 }
4409 if (++n[1] == n[0])
4410 return 0;
4411 memmove(p + 2, p, n[1] * 2 * sizeof(unsigned long) - ((void *)p - (void *)n));
4412 p[0] = v;
4413 p[1] = 1;
4414 return 1;
4415}
4416
4417static void handle_slab(unsigned long *n, struct kmem_cache *c, struct slab *s)
4418{
4419 void *p;
4420 int i;
4421 if (n[0] == n[1])
4422 return;
4423 for (i = 0, p = s->s_mem; i < c->num; i++, p += c->buffer_size) {
4424 if (slab_bufctl(s)[i] != BUFCTL_ACTIVE)
4425 continue;
4426 if (!add_caller(n, (unsigned long)*dbg_userword(c, p)))
4427 return;
4428 }
4429}
4430
4431static void show_symbol(struct seq_file *m, unsigned long address)
4432{
4433#ifdef CONFIG_KALLSYMS
Al Viro871751e2006-03-25 03:06:39 -08004434 unsigned long offset, size;
Tejun Heo9281ace2007-07-17 04:03:51 -07004435 char modname[MODULE_NAME_LEN], name[KSYM_NAME_LEN];
Al Viro871751e2006-03-25 03:06:39 -08004436
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004437 if (lookup_symbol_attrs(address, &size, &offset, modname, name) == 0) {
Al Viro871751e2006-03-25 03:06:39 -08004438 seq_printf(m, "%s+%#lx/%#lx", name, offset, size);
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004439 if (modname[0])
Al Viro871751e2006-03-25 03:06:39 -08004440 seq_printf(m, " [%s]", modname);
4441 return;
4442 }
4443#endif
4444 seq_printf(m, "%p", (void *)address);
4445}
4446
4447static int leaks_show(struct seq_file *m, void *p)
4448{
Pavel Emelianovb92151b2007-07-15 23:38:04 -07004449 struct kmem_cache *cachep = list_entry(p, struct kmem_cache, next);
Al Viro871751e2006-03-25 03:06:39 -08004450 struct slab *slabp;
4451 struct kmem_list3 *l3;
4452 const char *name;
4453 unsigned long *n = m->private;
4454 int node;
4455 int i;
4456
4457 if (!(cachep->flags & SLAB_STORE_USER))
4458 return 0;
4459 if (!(cachep->flags & SLAB_RED_ZONE))
4460 return 0;
4461
4462 /* OK, we can do it */
4463
4464 n[1] = 0;
4465
4466 for_each_online_node(node) {
4467 l3 = cachep->nodelists[node];
4468 if (!l3)
4469 continue;
4470
4471 check_irq_on();
4472 spin_lock_irq(&l3->list_lock);
4473
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004474 list_for_each_entry(slabp, &l3->slabs_full, list)
Al Viro871751e2006-03-25 03:06:39 -08004475 handle_slab(n, cachep, slabp);
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004476 list_for_each_entry(slabp, &l3->slabs_partial, list)
Al Viro871751e2006-03-25 03:06:39 -08004477 handle_slab(n, cachep, slabp);
Al Viro871751e2006-03-25 03:06:39 -08004478 spin_unlock_irq(&l3->list_lock);
4479 }
4480 name = cachep->name;
4481 if (n[0] == n[1]) {
4482 /* Increase the buffer size */
4483 mutex_unlock(&cache_chain_mutex);
4484 m->private = kzalloc(n[0] * 4 * sizeof(unsigned long), GFP_KERNEL);
4485 if (!m->private) {
4486 /* Too bad, we are really out */
4487 m->private = n;
4488 mutex_lock(&cache_chain_mutex);
4489 return -ENOMEM;
4490 }
4491 *(unsigned long *)m->private = n[0] * 2;
4492 kfree(n);
4493 mutex_lock(&cache_chain_mutex);
4494 /* Now make sure this entry will be retried */
4495 m->count = m->size;
4496 return 0;
4497 }
4498 for (i = 0; i < n[1]; i++) {
4499 seq_printf(m, "%s: %lu ", name, n[2*i+3]);
4500 show_symbol(m, n[2*i+2]);
4501 seq_putc(m, '\n');
4502 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004503
Al Viro871751e2006-03-25 03:06:39 -08004504 return 0;
4505}
4506
Alexey Dobriyana0ec95a82008-10-06 00:59:10 +04004507static const struct seq_operations slabstats_op = {
Al Viro871751e2006-03-25 03:06:39 -08004508 .start = leaks_start,
4509 .next = s_next,
4510 .stop = s_stop,
4511 .show = leaks_show,
4512};
Alexey Dobriyana0ec95a82008-10-06 00:59:10 +04004513
4514static int slabstats_open(struct inode *inode, struct file *file)
4515{
4516 unsigned long *n = kzalloc(PAGE_SIZE, GFP_KERNEL);
4517 int ret = -ENOMEM;
4518 if (n) {
4519 ret = seq_open(file, &slabstats_op);
4520 if (!ret) {
4521 struct seq_file *m = file->private_data;
4522 *n = PAGE_SIZE / (2 * sizeof(unsigned long));
4523 m->private = n;
4524 n = NULL;
4525 }
4526 kfree(n);
4527 }
4528 return ret;
4529}
4530
4531static const struct file_operations proc_slabstats_operations = {
4532 .open = slabstats_open,
4533 .read = seq_read,
4534 .llseek = seq_lseek,
4535 .release = seq_release_private,
4536};
Al Viro871751e2006-03-25 03:06:39 -08004537#endif
Alexey Dobriyana0ec95a82008-10-06 00:59:10 +04004538
4539static int __init slab_proc_init(void)
4540{
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04004541 proc_create("slabinfo",S_IWUSR|S_IRUGO,NULL,&proc_slabinfo_operations);
Alexey Dobriyana0ec95a82008-10-06 00:59:10 +04004542#ifdef CONFIG_DEBUG_SLAB_LEAK
4543 proc_create("slab_allocators", 0, NULL, &proc_slabstats_operations);
4544#endif
4545 return 0;
4546}
4547module_init(slab_proc_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004548#endif
4549
Manfred Spraul00e145b2005-09-03 15:55:07 -07004550/**
4551 * ksize - get the actual amount of memory allocated for a given object
4552 * @objp: Pointer to the object
4553 *
4554 * kmalloc may internally round up allocations and return more memory
4555 * than requested. ksize() can be used to determine the actual amount of
4556 * memory allocated. The caller may use this additional memory, even though
4557 * a smaller amount of memory was initially specified with the kmalloc call.
4558 * The caller must guarantee that objp points to a valid object previously
4559 * allocated with either kmalloc() or kmem_cache_alloc(). The object
4560 * must not be freed during the duration of the call.
4561 */
Pekka Enbergfd76bab2007-05-06 14:48:40 -07004562size_t ksize(const void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004563{
Christoph Lameteref8b4522007-10-16 01:24:46 -07004564 BUG_ON(!objp);
4565 if (unlikely(objp == ZERO_SIZE_PTR))
Manfred Spraul00e145b2005-09-03 15:55:07 -07004566 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004567
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08004568 return obj_size(virt_to_cache(objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004569}
Kirill A. Shutemovb1aabec2009-02-10 15:21:44 +02004570EXPORT_SYMBOL(ksize);