blob: b0414d12fd08781d1eaa053d51eb2310ec1317a2 [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 Torvalds268bb0c2011-05-20 12:50:29 -0700118#include <linux/prefetch.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120#include <asm/cacheflush.h>
121#include <asm/tlbflush.h>
122#include <asm/page.h>
123
124/*
Christoph Lameter50953fe2007-05-06 14:50:16 -0700125 * DEBUG - 1 for kmem_cache_create() to honour; SLAB_RED_ZONE & SLAB_POISON.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 * 0 for faster, smaller code (especially in the critical paths).
127 *
128 * STATS - 1 to collect stats for /proc/slabinfo.
129 * 0 for faster, smaller code (especially in the critical paths).
130 *
131 * FORCED_DEBUG - 1 enables SLAB_RED_ZONE and SLAB_POISON (if possible)
132 */
133
134#ifdef CONFIG_DEBUG_SLAB
135#define DEBUG 1
136#define STATS 1
137#define FORCED_DEBUG 1
138#else
139#define DEBUG 0
140#define STATS 0
141#define FORCED_DEBUG 0
142#endif
143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144/* Shouldn't this be in a header file somewhere? */
145#define BYTES_PER_WORD sizeof(void *)
David Woodhouse87a927c2007-07-04 21:26:44 -0400146#define REDZONE_ALIGN max(BYTES_PER_WORD, __alignof__(unsigned long long))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148#ifndef ARCH_KMALLOC_FLAGS
149#define ARCH_KMALLOC_FLAGS SLAB_HWCACHE_ALIGN
150#endif
151
152/* Legal flag mask for kmem_cache_create(). */
153#if DEBUG
Christoph Lameter50953fe2007-05-06 14:50:16 -0700154# define CREATE_MASK (SLAB_RED_ZONE | \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 SLAB_POISON | SLAB_HWCACHE_ALIGN | \
Christoph Lameterac2b8982006-03-22 00:08:15 -0800156 SLAB_CACHE_DMA | \
Christoph Lameter5af60832007-05-06 14:49:56 -0700157 SLAB_STORE_USER | \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 SLAB_RECLAIM_ACCOUNT | SLAB_PANIC | \
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700159 SLAB_DESTROY_BY_RCU | SLAB_MEM_SPREAD | \
Pekka Enbergc175eea2008-05-09 20:35:53 +0200160 SLAB_DEBUG_OBJECTS | SLAB_NOLEAKTRACE | SLAB_NOTRACK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161#else
Christoph Lameterac2b8982006-03-22 00:08:15 -0800162# define CREATE_MASK (SLAB_HWCACHE_ALIGN | \
Christoph Lameter5af60832007-05-06 14:49:56 -0700163 SLAB_CACHE_DMA | \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 SLAB_RECLAIM_ACCOUNT | SLAB_PANIC | \
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700165 SLAB_DESTROY_BY_RCU | SLAB_MEM_SPREAD | \
Pekka Enbergc175eea2008-05-09 20:35:53 +0200166 SLAB_DEBUG_OBJECTS | SLAB_NOLEAKTRACE | SLAB_NOTRACK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167#endif
168
169/*
170 * kmem_bufctl_t:
171 *
172 * Bufctl's are used for linking objs within a slab
173 * linked offsets.
174 *
175 * This implementation relies on "struct page" for locating the cache &
176 * slab an object belongs to.
177 * This allows the bufctl structure to be small (one int), but limits
178 * the number of objects a slab (not a cache) can contain when off-slab
179 * bufctls are used. The limit is the size of the largest general cache
180 * that does not use off-slab slabs.
181 * For 32bit archs with 4 kB pages, is this 56.
182 * This is not serious, as it is only for large objects, when it is unwise
183 * to have too many per slab.
184 * Note: This limit can be raised by introducing a general cache whose size
185 * is less than 512 (PAGE_SIZE<<3), but greater than 256.
186 */
187
Kyle Moffettfa5b08d2005-09-03 15:55:03 -0700188typedef unsigned int kmem_bufctl_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189#define BUFCTL_END (((kmem_bufctl_t)(~0U))-0)
190#define BUFCTL_FREE (((kmem_bufctl_t)(~0U))-1)
Al Viro871751e2006-03-25 03:06:39 -0800191#define BUFCTL_ACTIVE (((kmem_bufctl_t)(~0U))-2)
192#define SLAB_LIMIT (((kmem_bufctl_t)(~0U))-3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195 * struct slab_rcu
196 *
197 * slab_destroy on a SLAB_DESTROY_BY_RCU cache uses this structure to
198 * arrange for kmem_freepages to be called via RCU. This is useful if
199 * we need to approach a kernel structure obliquely, from its address
200 * obtained without the usual locking. We can lock the structure to
201 * stabilize it and check it's still at the given address, only if we
202 * can be sure that the memory has not been meanwhile reused for some
203 * other kind of object (which our subsystem's lock might corrupt).
204 *
205 * rcu_read_lock before reading the address, then rcu_read_unlock after
206 * taking the spinlock within the structure expected at that address.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 */
208struct slab_rcu {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800209 struct rcu_head head;
Pekka Enberg343e0d72006-02-01 03:05:50 -0800210 struct kmem_cache *cachep;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800211 void *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212};
213
214/*
Lai Jiangshan5bfe53a2011-03-10 15:22:24 +0800215 * struct slab
216 *
217 * Manages the objs in a slab. Placed either at the beginning of mem allocated
218 * for a slab, or allocated from an general cache.
219 * Slabs are chained into three list: fully used, partial, fully free slabs.
220 */
221struct slab {
222 union {
223 struct {
224 struct list_head list;
225 unsigned long colouroff;
226 void *s_mem; /* including colour offset */
227 unsigned int inuse; /* num of objs active in slab */
228 kmem_bufctl_t free;
229 unsigned short nodeid;
230 };
231 struct slab_rcu __slab_cover_slab_rcu;
232 };
233};
234
235/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236 * struct array_cache
237 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 * Purpose:
239 * - LIFO ordering, to hand out cache-warm objects from _alloc
240 * - reduce the number of linked list operations
241 * - reduce spinlock operations
242 *
243 * The limit is stored in the per-cpu structure to reduce the data cache
244 * footprint.
245 *
246 */
247struct array_cache {
248 unsigned int avail;
249 unsigned int limit;
250 unsigned int batchcount;
251 unsigned int touched;
Christoph Lametere498be72005-09-09 13:03:32 -0700252 spinlock_t lock;
Robert P. J. Daybda5b652007-10-16 23:30:05 -0700253 void *entry[]; /*
Andrew Mortona737b3e2006-03-22 00:08:11 -0800254 * Must have this definition in here for the proper
255 * alignment of array_cache. Also simplifies accessing
256 * the entries.
Andrew Mortona737b3e2006-03-22 00:08:11 -0800257 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258};
259
Andrew Mortona737b3e2006-03-22 00:08:11 -0800260/*
261 * bootstrap: The caches do not work without cpuarrays anymore, but the
262 * cpuarrays are allocated from the generic caches...
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263 */
264#define BOOT_CPUCACHE_ENTRIES 1
265struct arraycache_init {
266 struct array_cache cache;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800267 void *entries[BOOT_CPUCACHE_ENTRIES];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268};
269
270/*
Christoph Lametere498be72005-09-09 13:03:32 -0700271 * The slab lists for all objects.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 */
273struct kmem_list3 {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800274 struct list_head slabs_partial; /* partial list first, better asm code */
275 struct list_head slabs_full;
276 struct list_head slabs_free;
277 unsigned long free_objects;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800278 unsigned int free_limit;
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -0800279 unsigned int colour_next; /* Per-node cache coloring */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800280 spinlock_t list_lock;
281 struct array_cache *shared; /* shared per node */
282 struct array_cache **alien; /* on other nodes */
Christoph Lameter35386e32006-03-22 00:09:05 -0800283 unsigned long next_reap; /* updated without locking */
284 int free_touched; /* updated without locking */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285};
286
Christoph Lametere498be72005-09-09 13:03:32 -0700287/*
288 * Need this for bootstrapping a per node allocator.
289 */
Pekka Enberg556a1692008-01-25 08:20:51 +0200290#define NUM_INIT_LISTS (3 * MAX_NUMNODES)
H Hartley Sweeten68a1b192011-01-11 17:49:32 -0600291static struct kmem_list3 __initdata initkmem_list3[NUM_INIT_LISTS];
Christoph Lametere498be72005-09-09 13:03:32 -0700292#define CACHE_CACHE 0
Pekka Enberg556a1692008-01-25 08:20:51 +0200293#define SIZE_AC MAX_NUMNODES
294#define SIZE_L3 (2 * MAX_NUMNODES)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Christoph Lametered11d9e2006-06-30 01:55:45 -0700296static int drain_freelist(struct kmem_cache *cache,
297 struct kmem_list3 *l3, int tofree);
298static void free_block(struct kmem_cache *cachep, void **objpp, int len,
299 int node);
Pekka Enberg83b519e2009-06-10 19:40:04 +0300300static int enable_cpucache(struct kmem_cache *cachep, gfp_t gfp);
David Howells65f27f32006-11-22 14:55:48 +0000301static void cache_reap(struct work_struct *unused);
Christoph Lametered11d9e2006-06-30 01:55:45 -0700302
Christoph Lametere498be72005-09-09 13:03:32 -0700303/*
Andrew Mortona737b3e2006-03-22 00:08:11 -0800304 * This function must be completely optimized away if a constant is passed to
305 * it. Mostly the same as what is in linux/slab.h except it returns an index.
Christoph Lametere498be72005-09-09 13:03:32 -0700306 */
Ivan Kokshaysky7243cc02005-09-22 21:43:58 -0700307static __always_inline int index_of(const size_t size)
Christoph Lametere498be72005-09-09 13:03:32 -0700308{
Steven Rostedt5ec8a842006-02-01 03:05:44 -0800309 extern void __bad_size(void);
310
Christoph Lametere498be72005-09-09 13:03:32 -0700311 if (__builtin_constant_p(size)) {
312 int i = 0;
313
314#define CACHE(x) \
315 if (size <=x) \
316 return i; \
317 else \
318 i++;
Joe Perches1c61fc42008-03-05 13:58:17 -0800319#include <linux/kmalloc_sizes.h>
Christoph Lametere498be72005-09-09 13:03:32 -0700320#undef CACHE
Steven Rostedt5ec8a842006-02-01 03:05:44 -0800321 __bad_size();
Ivan Kokshaysky7243cc02005-09-22 21:43:58 -0700322 } else
Steven Rostedt5ec8a842006-02-01 03:05:44 -0800323 __bad_size();
Christoph Lametere498be72005-09-09 13:03:32 -0700324 return 0;
325}
326
Ingo Molnare0a42722006-06-23 02:03:46 -0700327static int slab_early_init = 1;
328
Christoph Lametere498be72005-09-09 13:03:32 -0700329#define INDEX_AC index_of(sizeof(struct arraycache_init))
330#define INDEX_L3 index_of(sizeof(struct kmem_list3))
331
Pekka Enberg5295a742006-02-01 03:05:48 -0800332static void kmem_list3_init(struct kmem_list3 *parent)
Christoph Lametere498be72005-09-09 13:03:32 -0700333{
334 INIT_LIST_HEAD(&parent->slabs_full);
335 INIT_LIST_HEAD(&parent->slabs_partial);
336 INIT_LIST_HEAD(&parent->slabs_free);
337 parent->shared = NULL;
338 parent->alien = NULL;
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -0800339 parent->colour_next = 0;
Christoph Lametere498be72005-09-09 13:03:32 -0700340 spin_lock_init(&parent->list_lock);
341 parent->free_objects = 0;
342 parent->free_touched = 0;
343}
344
Andrew Mortona737b3e2006-03-22 00:08:11 -0800345#define MAKE_LIST(cachep, listp, slab, nodeid) \
346 do { \
347 INIT_LIST_HEAD(listp); \
348 list_splice(&(cachep->nodelists[nodeid]->slab), listp); \
Christoph Lametere498be72005-09-09 13:03:32 -0700349 } while (0)
350
Andrew Mortona737b3e2006-03-22 00:08:11 -0800351#define MAKE_ALL_LISTS(cachep, ptr, nodeid) \
352 do { \
Christoph Lametere498be72005-09-09 13:03:32 -0700353 MAKE_LIST((cachep), (&(ptr)->slabs_full), slabs_full, nodeid); \
354 MAKE_LIST((cachep), (&(ptr)->slabs_partial), slabs_partial, nodeid); \
355 MAKE_LIST((cachep), (&(ptr)->slabs_free), slabs_free, nodeid); \
356 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358#define CFLGS_OFF_SLAB (0x80000000UL)
359#define OFF_SLAB(x) ((x)->flags & CFLGS_OFF_SLAB)
360
361#define BATCHREFILL_LIMIT 16
Andrew Mortona737b3e2006-03-22 00:08:11 -0800362/*
363 * Optimization question: fewer reaps means less probability for unnessary
364 * cpucache drain/refill cycles.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 *
Adrian Bunkdc6f3f22005-11-08 16:44:08 +0100366 * OTOH the cpuarrays can contain lots of objects,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 * which could lock up otherwise freeable slabs.
368 */
369#define REAPTIMEOUT_CPUC (2*HZ)
370#define REAPTIMEOUT_LIST3 (4*HZ)
371
372#if STATS
373#define STATS_INC_ACTIVE(x) ((x)->num_active++)
374#define STATS_DEC_ACTIVE(x) ((x)->num_active--)
375#define STATS_INC_ALLOCED(x) ((x)->num_allocations++)
376#define STATS_INC_GROWN(x) ((x)->grown++)
Christoph Lametered11d9e2006-06-30 01:55:45 -0700377#define STATS_ADD_REAPED(x,y) ((x)->reaped += (y))
Andrew Mortona737b3e2006-03-22 00:08:11 -0800378#define STATS_SET_HIGH(x) \
379 do { \
380 if ((x)->num_active > (x)->high_mark) \
381 (x)->high_mark = (x)->num_active; \
382 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383#define STATS_INC_ERR(x) ((x)->errors++)
384#define STATS_INC_NODEALLOCS(x) ((x)->node_allocs++)
Christoph Lametere498be72005-09-09 13:03:32 -0700385#define STATS_INC_NODEFREES(x) ((x)->node_frees++)
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -0700386#define STATS_INC_ACOVERFLOW(x) ((x)->node_overflow++)
Andrew Mortona737b3e2006-03-22 00:08:11 -0800387#define STATS_SET_FREEABLE(x, i) \
388 do { \
389 if ((x)->max_freeable < i) \
390 (x)->max_freeable = i; \
391 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392#define STATS_INC_ALLOCHIT(x) atomic_inc(&(x)->allochit)
393#define STATS_INC_ALLOCMISS(x) atomic_inc(&(x)->allocmiss)
394#define STATS_INC_FREEHIT(x) atomic_inc(&(x)->freehit)
395#define STATS_INC_FREEMISS(x) atomic_inc(&(x)->freemiss)
396#else
397#define STATS_INC_ACTIVE(x) do { } while (0)
398#define STATS_DEC_ACTIVE(x) do { } while (0)
399#define STATS_INC_ALLOCED(x) do { } while (0)
400#define STATS_INC_GROWN(x) do { } while (0)
Andi Kleen4e60c862010-08-09 17:19:03 -0700401#define STATS_ADD_REAPED(x,y) do { (void)(y); } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402#define STATS_SET_HIGH(x) do { } while (0)
403#define STATS_INC_ERR(x) do { } while (0)
404#define STATS_INC_NODEALLOCS(x) do { } while (0)
Christoph Lametere498be72005-09-09 13:03:32 -0700405#define STATS_INC_NODEFREES(x) do { } while (0)
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -0700406#define STATS_INC_ACOVERFLOW(x) do { } while (0)
Andrew Mortona737b3e2006-03-22 00:08:11 -0800407#define STATS_SET_FREEABLE(x, i) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408#define STATS_INC_ALLOCHIT(x) do { } while (0)
409#define STATS_INC_ALLOCMISS(x) do { } while (0)
410#define STATS_INC_FREEHIT(x) do { } while (0)
411#define STATS_INC_FREEMISS(x) do { } while (0)
412#endif
413
414#if DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
Andrew Mortona737b3e2006-03-22 00:08:11 -0800416/*
417 * memory layout of objects:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 * 0 : objp
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800419 * 0 .. cachep->obj_offset - BYTES_PER_WORD - 1: padding. This ensures that
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 * the end of an object is aligned with the end of the real
421 * allocation. Catches writes behind the end of the allocation.
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800422 * cachep->obj_offset - BYTES_PER_WORD .. cachep->obj_offset - 1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 * redzone word.
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800424 * cachep->obj_offset: The real object.
425 * cachep->buffer_size - 2* BYTES_PER_WORD: redzone word [BYTES_PER_WORD long]
Andrew Mortona737b3e2006-03-22 00:08:11 -0800426 * cachep->buffer_size - 1* BYTES_PER_WORD: last caller address
427 * [BYTES_PER_WORD long]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428 */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800429static int obj_offset(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430{
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800431 return cachep->obj_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432}
433
Pekka Enberg343e0d72006-02-01 03:05:50 -0800434static int obj_size(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435{
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800436 return cachep->obj_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437}
438
David Woodhouseb46b8f12007-05-08 00:22:59 -0700439static unsigned long long *dbg_redzone1(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440{
441 BUG_ON(!(cachep->flags & SLAB_RED_ZONE));
David Woodhouseb46b8f12007-05-08 00:22:59 -0700442 return (unsigned long long*) (objp + obj_offset(cachep) -
443 sizeof(unsigned long long));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444}
445
David Woodhouseb46b8f12007-05-08 00:22:59 -0700446static unsigned long long *dbg_redzone2(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447{
448 BUG_ON(!(cachep->flags & SLAB_RED_ZONE));
449 if (cachep->flags & SLAB_STORE_USER)
David Woodhouseb46b8f12007-05-08 00:22:59 -0700450 return (unsigned long long *)(objp + cachep->buffer_size -
451 sizeof(unsigned long long) -
David Woodhouse87a927c2007-07-04 21:26:44 -0400452 REDZONE_ALIGN);
David Woodhouseb46b8f12007-05-08 00:22:59 -0700453 return (unsigned long long *) (objp + cachep->buffer_size -
454 sizeof(unsigned long long));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455}
456
Pekka Enberg343e0d72006-02-01 03:05:50 -0800457static void **dbg_userword(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458{
459 BUG_ON(!(cachep->flags & SLAB_STORE_USER));
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800460 return (void **)(objp + cachep->buffer_size - BYTES_PER_WORD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461}
462
463#else
464
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800465#define obj_offset(x) 0
466#define obj_size(cachep) (cachep->buffer_size)
David Woodhouseb46b8f12007-05-08 00:22:59 -0700467#define dbg_redzone1(cachep, objp) ({BUG(); (unsigned long long *)NULL;})
468#define dbg_redzone2(cachep, objp) ({BUG(); (unsigned long long *)NULL;})
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469#define dbg_userword(cachep, objp) ({BUG(); (void **)NULL;})
470
471#endif
472
Li Zefan0f24f122009-12-11 15:45:30 +0800473#ifdef CONFIG_TRACING
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +0300474size_t slab_buffer_size(struct kmem_cache *cachep)
475{
476 return cachep->buffer_size;
477}
478EXPORT_SYMBOL(slab_buffer_size);
479#endif
480
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481/*
David Rientjes3df1ccc2011-10-18 22:09:28 -0700482 * Do not go above this order unless 0 objects fit into the slab or
483 * overridden on the command line.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 */
David Rientjes543585c2011-10-18 22:09:24 -0700485#define SLAB_MAX_ORDER_HI 1
486#define SLAB_MAX_ORDER_LO 0
487static int slab_max_order = SLAB_MAX_ORDER_LO;
David Rientjes3df1ccc2011-10-18 22:09:28 -0700488static bool slab_max_order_set __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
Andrew Mortona737b3e2006-03-22 00:08:11 -0800490/*
491 * Functions for storing/retrieving the cachep and or slab from the page
492 * allocator. These are used to find the slab an obj belongs to. With kfree(),
493 * these are used to find the cache which an obj belongs to.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494 */
Pekka Enberg065d41c2005-11-13 16:06:46 -0800495static inline void page_set_cache(struct page *page, struct kmem_cache *cache)
496{
497 page->lru.next = (struct list_head *)cache;
498}
499
500static inline struct kmem_cache *page_get_cache(struct page *page)
501{
Christoph Lameterd85f3382007-05-06 14:49:39 -0700502 page = compound_head(page);
Pekka Enbergddc2e812006-06-23 02:03:40 -0700503 BUG_ON(!PageSlab(page));
Pekka Enberg065d41c2005-11-13 16:06:46 -0800504 return (struct kmem_cache *)page->lru.next;
505}
506
507static inline void page_set_slab(struct page *page, struct slab *slab)
508{
509 page->lru.prev = (struct list_head *)slab;
510}
511
512static inline struct slab *page_get_slab(struct page *page)
513{
Pekka Enbergddc2e812006-06-23 02:03:40 -0700514 BUG_ON(!PageSlab(page));
Pekka Enberg065d41c2005-11-13 16:06:46 -0800515 return (struct slab *)page->lru.prev;
516}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517
Pekka Enberg6ed5eb22006-02-01 03:05:49 -0800518static inline struct kmem_cache *virt_to_cache(const void *obj)
519{
Christoph Lameterb49af682007-05-06 14:49:41 -0700520 struct page *page = virt_to_head_page(obj);
Pekka Enberg6ed5eb22006-02-01 03:05:49 -0800521 return page_get_cache(page);
522}
523
524static inline struct slab *virt_to_slab(const void *obj)
525{
Christoph Lameterb49af682007-05-06 14:49:41 -0700526 struct page *page = virt_to_head_page(obj);
Pekka Enberg6ed5eb22006-02-01 03:05:49 -0800527 return page_get_slab(page);
528}
529
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800530static inline void *index_to_obj(struct kmem_cache *cache, struct slab *slab,
531 unsigned int idx)
532{
533 return slab->s_mem + cache->buffer_size * idx;
534}
535
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800536/*
537 * We want to avoid an expensive divide : (offset / cache->buffer_size)
538 * Using the fact that buffer_size is a constant for a particular cache,
539 * we can replace (offset / cache->buffer_size) by
540 * reciprocal_divide(offset, cache->reciprocal_buffer_size)
541 */
542static inline unsigned int obj_to_index(const struct kmem_cache *cache,
543 const struct slab *slab, void *obj)
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800544{
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800545 u32 offset = (obj - slab->s_mem);
546 return reciprocal_divide(offset, cache->reciprocal_buffer_size);
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800547}
548
Andrew Mortona737b3e2006-03-22 00:08:11 -0800549/*
550 * These are the default caches for kmalloc. Custom caches can have other sizes.
551 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552struct cache_sizes malloc_sizes[] = {
553#define CACHE(x) { .cs_size = (x) },
554#include <linux/kmalloc_sizes.h>
555 CACHE(ULONG_MAX)
556#undef CACHE
557};
558EXPORT_SYMBOL(malloc_sizes);
559
560/* Must match cache_sizes above. Out of line to keep cache footprint low. */
561struct cache_names {
562 char *name;
563 char *name_dma;
564};
565
566static struct cache_names __initdata cache_names[] = {
567#define CACHE(x) { .name = "size-" #x, .name_dma = "size-" #x "(DMA)" },
568#include <linux/kmalloc_sizes.h>
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800569 {NULL,}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570#undef CACHE
571};
572
573static struct arraycache_init initarray_cache __initdata =
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800574 { {0, BOOT_CPUCACHE_ENTRIES, 1, 0} };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575static struct arraycache_init initarray_generic =
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800576 { {0, BOOT_CPUCACHE_ENTRIES, 1, 0} };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577
578/* internal cache of cache description objs */
Eric Dumazetb56efcf2011-07-20 19:04:23 +0200579static struct kmem_list3 *cache_cache_nodelists[MAX_NUMNODES];
Pekka Enberg343e0d72006-02-01 03:05:50 -0800580static struct kmem_cache cache_cache = {
Eric Dumazetb56efcf2011-07-20 19:04:23 +0200581 .nodelists = cache_cache_nodelists,
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800582 .batchcount = 1,
583 .limit = BOOT_CPUCACHE_ENTRIES,
584 .shared = 1,
Pekka Enberg343e0d72006-02-01 03:05:50 -0800585 .buffer_size = sizeof(struct kmem_cache),
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800586 .name = "kmem_cache",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700587};
588
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -0700589#define BAD_ALIEN_MAGIC 0x01020304ul
590
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 * chicken and egg problem: delay the per-cpu array allocation
593 * until the general caches are up.
594 */
595static enum {
596 NONE,
Christoph Lametere498be72005-09-09 13:03:32 -0700597 PARTIAL_AC,
598 PARTIAL_L3,
Pekka Enberg8429db52009-06-12 15:58:59 +0300599 EARLY,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 FULL
601} g_cpucache_up;
602
Mike Kravetz39d24e62006-05-15 09:44:13 -0700603/*
604 * used by boot code to determine if it can use slab based allocator
605 */
606int slab_is_available(void)
607{
Pekka Enberg8429db52009-06-12 15:58:59 +0300608 return g_cpucache_up >= EARLY;
Mike Kravetz39d24e62006-05-15 09:44:13 -0700609}
610
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200611#ifdef CONFIG_LOCKDEP
612
613/*
614 * Slab sometimes uses the kmalloc slabs to store the slab headers
615 * for other slabs "off slab".
616 * The locking for this is tricky in that it nests within the locks
617 * of all other slabs in a few places; to deal with this special
618 * locking we put on-slab caches into a separate lock-class.
619 *
620 * We set lock class for alien array caches which are up during init.
621 * The lock annotation will be lost if all cpus of a node goes down and
622 * then comes back up during hotplug
623 */
624static struct lock_class_key on_slab_l3_key;
625static struct lock_class_key on_slab_alc_key;
626
Peter Zijlstra83835b32011-07-22 15:26:05 +0200627static struct lock_class_key debugobj_l3_key;
628static struct lock_class_key debugobj_alc_key;
629
630static void slab_set_lock_classes(struct kmem_cache *cachep,
631 struct lock_class_key *l3_key, struct lock_class_key *alc_key,
632 int q)
633{
634 struct array_cache **alc;
635 struct kmem_list3 *l3;
636 int r;
637
638 l3 = cachep->nodelists[q];
639 if (!l3)
640 return;
641
642 lockdep_set_class(&l3->list_lock, l3_key);
643 alc = l3->alien;
644 /*
645 * FIXME: This check for BAD_ALIEN_MAGIC
646 * should go away when common slab code is taught to
647 * work even without alien caches.
648 * Currently, non NUMA code returns BAD_ALIEN_MAGIC
649 * for alloc_alien_cache,
650 */
651 if (!alc || (unsigned long)alc == BAD_ALIEN_MAGIC)
652 return;
653 for_each_node(r) {
654 if (alc[r])
655 lockdep_set_class(&alc[r]->lock, alc_key);
656 }
657}
658
659static void slab_set_debugobj_lock_classes_node(struct kmem_cache *cachep, int node)
660{
661 slab_set_lock_classes(cachep, &debugobj_l3_key, &debugobj_alc_key, node);
662}
663
664static void slab_set_debugobj_lock_classes(struct kmem_cache *cachep)
665{
666 int node;
667
668 for_each_online_node(node)
669 slab_set_debugobj_lock_classes_node(cachep, node);
670}
671
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200672static void init_node_lock_keys(int q)
673{
674 struct cache_sizes *s = malloc_sizes;
675
676 if (g_cpucache_up != FULL)
677 return;
678
679 for (s = malloc_sizes; s->cs_size != ULONG_MAX; s++) {
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200680 struct kmem_list3 *l3;
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200681
682 l3 = s->cs_cachep->nodelists[q];
683 if (!l3 || OFF_SLAB(s->cs_cachep))
Pekka Enberg00afa752009-12-27 14:33:14 +0200684 continue;
Peter Zijlstra83835b32011-07-22 15:26:05 +0200685
686 slab_set_lock_classes(s->cs_cachep, &on_slab_l3_key,
687 &on_slab_alc_key, q);
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200688 }
689}
690
691static inline void init_lock_keys(void)
692{
693 int node;
694
695 for_each_node(node)
696 init_node_lock_keys(node);
697}
698#else
699static void init_node_lock_keys(int q)
700{
701}
702
703static inline void init_lock_keys(void)
704{
705}
Peter Zijlstra83835b32011-07-22 15:26:05 +0200706
707static void slab_set_debugobj_lock_classes_node(struct kmem_cache *cachep, int node)
708{
709}
710
711static void slab_set_debugobj_lock_classes(struct kmem_cache *cachep)
712{
713}
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200714#endif
715
716/*
717 * Guard access to the cache-chain.
718 */
719static DEFINE_MUTEX(cache_chain_mutex);
720static struct list_head cache_chain;
721
Tejun Heo1871e522009-10-29 22:34:13 +0900722static DEFINE_PER_CPU(struct delayed_work, slab_reap_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
Pekka Enberg343e0d72006-02-01 03:05:50 -0800724static inline struct array_cache *cpu_cache_get(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725{
726 return cachep->array[smp_processor_id()];
727}
728
Andrew Mortona737b3e2006-03-22 00:08:11 -0800729static inline struct kmem_cache *__find_general_cachep(size_t size,
730 gfp_t gfpflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731{
732 struct cache_sizes *csizep = malloc_sizes;
733
734#if DEBUG
735 /* This happens if someone tries to call
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800736 * kmem_cache_create(), or __kmalloc(), before
737 * the generic caches are initialized.
738 */
Alok Katariac7e43c72005-09-14 12:17:53 -0700739 BUG_ON(malloc_sizes[INDEX_AC].cs_cachep == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740#endif
Christoph Lameter6cb8f912007-07-17 04:03:22 -0700741 if (!size)
742 return ZERO_SIZE_PTR;
743
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 while (size > csizep->cs_size)
745 csizep++;
746
747 /*
Martin Hicks0abf40c2005-09-03 15:54:54 -0700748 * Really subtle: The last entry with cs->cs_size==ULONG_MAX
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 * has cs_{dma,}cachep==NULL. Thus no special case
750 * for large kmalloc calls required.
751 */
Christoph Lameter4b51d662007-02-10 01:43:10 -0800752#ifdef CONFIG_ZONE_DMA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753 if (unlikely(gfpflags & GFP_DMA))
754 return csizep->cs_dmacachep;
Christoph Lameter4b51d662007-02-10 01:43:10 -0800755#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 return csizep->cs_cachep;
757}
758
Adrian Bunkb2213852006-09-25 23:31:02 -0700759static struct kmem_cache *kmem_find_general_cachep(size_t size, gfp_t gfpflags)
Manfred Spraul97e2bde2005-05-01 08:58:38 -0700760{
761 return __find_general_cachep(size, gfpflags);
762}
Manfred Spraul97e2bde2005-05-01 08:58:38 -0700763
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800764static size_t slab_mgmt_size(size_t nr_objs, size_t align)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765{
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800766 return ALIGN(sizeof(struct slab)+nr_objs*sizeof(kmem_bufctl_t), align);
767}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768
Andrew Mortona737b3e2006-03-22 00:08:11 -0800769/*
770 * Calculate the number of objects and left-over bytes for a given buffer size.
771 */
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800772static void cache_estimate(unsigned long gfporder, size_t buffer_size,
773 size_t align, int flags, size_t *left_over,
774 unsigned int *num)
775{
776 int nr_objs;
777 size_t mgmt_size;
778 size_t slab_size = PAGE_SIZE << gfporder;
779
780 /*
781 * The slab management structure can be either off the slab or
782 * on it. For the latter case, the memory allocated for a
783 * slab is used for:
784 *
785 * - The struct slab
786 * - One kmem_bufctl_t for each object
787 * - Padding to respect alignment of @align
788 * - @buffer_size bytes for each object
789 *
790 * If the slab management structure is off the slab, then the
791 * alignment will already be calculated into the size. Because
792 * the slabs are all pages aligned, the objects will be at the
793 * correct alignment when allocated.
794 */
795 if (flags & CFLGS_OFF_SLAB) {
796 mgmt_size = 0;
797 nr_objs = slab_size / buffer_size;
798
799 if (nr_objs > SLAB_LIMIT)
800 nr_objs = SLAB_LIMIT;
801 } else {
802 /*
803 * Ignore padding for the initial guess. The padding
804 * is at most @align-1 bytes, and @buffer_size is at
805 * least @align. In the worst case, this result will
806 * be one greater than the number of objects that fit
807 * into the memory allocation when taking the padding
808 * into account.
809 */
810 nr_objs = (slab_size - sizeof(struct slab)) /
811 (buffer_size + sizeof(kmem_bufctl_t));
812
813 /*
814 * This calculated number will be either the right
815 * amount, or one greater than what we want.
816 */
817 if (slab_mgmt_size(nr_objs, align) + nr_objs*buffer_size
818 > slab_size)
819 nr_objs--;
820
821 if (nr_objs > SLAB_LIMIT)
822 nr_objs = SLAB_LIMIT;
823
824 mgmt_size = slab_mgmt_size(nr_objs, align);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825 }
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800826 *num = nr_objs;
827 *left_over = slab_size - nr_objs*buffer_size - mgmt_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828}
829
Harvey Harrisond40cee22008-04-30 00:55:07 -0700830#define slab_error(cachep, msg) __slab_error(__func__, cachep, msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831
Andrew Mortona737b3e2006-03-22 00:08:11 -0800832static void __slab_error(const char *function, struct kmem_cache *cachep,
833 char *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700834{
835 printk(KERN_ERR "slab error in %s(): cache `%s': %s\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800836 function, cachep->name, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 dump_stack();
838}
839
Paul Menage3395ee02006-12-06 20:32:16 -0800840/*
841 * By default on NUMA we use alien caches to stage the freeing of
842 * objects allocated from other nodes. This causes massive memory
843 * inefficiencies when using fake NUMA setup to split memory into a
844 * large number of small nodes, so it can be disabled on the command
845 * line
846 */
847
848static int use_alien_caches __read_mostly = 1;
849static int __init noaliencache_setup(char *s)
850{
851 use_alien_caches = 0;
852 return 1;
853}
854__setup("noaliencache", noaliencache_setup);
855
David Rientjes3df1ccc2011-10-18 22:09:28 -0700856static int __init slab_max_order_setup(char *str)
857{
858 get_option(&str, &slab_max_order);
859 slab_max_order = slab_max_order < 0 ? 0 :
860 min(slab_max_order, MAX_ORDER - 1);
861 slab_max_order_set = true;
862
863 return 1;
864}
865__setup("slab_max_order=", slab_max_order_setup);
866
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800867#ifdef CONFIG_NUMA
868/*
869 * Special reaping functions for NUMA systems called from cache_reap().
870 * These take care of doing round robin flushing of alien caches (containing
871 * objects freed on different nodes from which they were allocated) and the
872 * flushing of remote pcps by calling drain_node_pages.
873 */
Tejun Heo1871e522009-10-29 22:34:13 +0900874static DEFINE_PER_CPU(unsigned long, slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800875
876static void init_reap_node(int cpu)
877{
878 int node;
879
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -0700880 node = next_node(cpu_to_mem(cpu), node_online_map);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800881 if (node == MAX_NUMNODES)
Paul Jackson442295c2006-03-22 00:09:11 -0800882 node = first_node(node_online_map);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800883
Tejun Heo1871e522009-10-29 22:34:13 +0900884 per_cpu(slab_reap_node, cpu) = node;
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800885}
886
887static void next_reap_node(void)
888{
Christoph Lameter909ea962010-12-08 16:22:55 +0100889 int node = __this_cpu_read(slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800890
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800891 node = next_node(node, node_online_map);
892 if (unlikely(node >= MAX_NUMNODES))
893 node = first_node(node_online_map);
Christoph Lameter909ea962010-12-08 16:22:55 +0100894 __this_cpu_write(slab_reap_node, node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800895}
896
897#else
898#define init_reap_node(cpu) do { } while (0)
899#define next_reap_node(void) do { } while (0)
900#endif
901
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902/*
903 * Initiate the reap timer running on the target CPU. We run at around 1 to 2Hz
904 * via the workqueue/eventd.
905 * Add the CPU number into the expiration time to minimize the possibility of
906 * the CPUs getting into lockstep and contending for the global cache chain
907 * lock.
908 */
Adrian Bunk897e6792007-07-15 23:38:20 -0700909static void __cpuinit start_cpu_timer(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910{
Tejun Heo1871e522009-10-29 22:34:13 +0900911 struct delayed_work *reap_work = &per_cpu(slab_reap_work, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
913 /*
914 * When this gets called from do_initcalls via cpucache_init(),
915 * init_workqueues() has already run, so keventd will be setup
916 * at that time.
917 */
David Howells52bad642006-11-22 14:54:01 +0000918 if (keventd_up() && reap_work->work.func == NULL) {
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800919 init_reap_node(cpu);
Arjan van de Ven78b43532010-07-19 10:59:42 -0700920 INIT_DELAYED_WORK_DEFERRABLE(reap_work, cache_reap);
Arjan van de Ven2b284212006-12-10 02:21:28 -0800921 schedule_delayed_work_on(cpu, reap_work,
922 __round_jiffies_relative(HZ, cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 }
924}
925
Christoph Lametere498be72005-09-09 13:03:32 -0700926static struct array_cache *alloc_arraycache(int node, int entries,
Pekka Enberg83b519e2009-06-10 19:40:04 +0300927 int batchcount, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928{
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800929 int memsize = sizeof(void *) * entries + sizeof(struct array_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 struct array_cache *nc = NULL;
931
Pekka Enberg83b519e2009-06-10 19:40:04 +0300932 nc = kmalloc_node(memsize, gfp, node);
Catalin Marinasd5cff632009-06-11 13:22:40 +0100933 /*
934 * The array_cache structures contain pointers to free object.
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300935 * However, when such objects are allocated or transferred to another
Catalin Marinasd5cff632009-06-11 13:22:40 +0100936 * cache the pointers are not cleared and they could be counted as
937 * valid references during a kmemleak scan. Therefore, kmemleak must
938 * not scan such objects.
939 */
940 kmemleak_no_scan(nc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941 if (nc) {
942 nc->avail = 0;
943 nc->limit = entries;
944 nc->batchcount = batchcount;
945 nc->touched = 0;
Christoph Lametere498be72005-09-09 13:03:32 -0700946 spin_lock_init(&nc->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 }
948 return nc;
949}
950
Christoph Lameter3ded1752006-03-25 03:06:44 -0800951/*
952 * Transfer objects in one arraycache to another.
953 * Locking must be handled by the caller.
954 *
955 * Return the number of entries transferred.
956 */
957static int transfer_objects(struct array_cache *to,
958 struct array_cache *from, unsigned int max)
959{
960 /* Figure out how many entries to transfer */
Hagen Paul Pfeifer732eacc2010-10-26 14:22:23 -0700961 int nr = min3(from->avail, max, to->limit - to->avail);
Christoph Lameter3ded1752006-03-25 03:06:44 -0800962
963 if (!nr)
964 return 0;
965
966 memcpy(to->entry + to->avail, from->entry + from->avail -nr,
967 sizeof(void *) *nr);
968
969 from->avail -= nr;
970 to->avail += nr;
Christoph Lameter3ded1752006-03-25 03:06:44 -0800971 return nr;
972}
973
Christoph Lameter765c4502006-09-27 01:50:08 -0700974#ifndef CONFIG_NUMA
975
976#define drain_alien_cache(cachep, alien) do { } while (0)
977#define reap_alien(cachep, l3) do { } while (0)
978
Pekka Enberg83b519e2009-06-10 19:40:04 +0300979static inline struct array_cache **alloc_alien_cache(int node, int limit, gfp_t gfp)
Christoph Lameter765c4502006-09-27 01:50:08 -0700980{
981 return (struct array_cache **)BAD_ALIEN_MAGIC;
982}
983
984static inline void free_alien_cache(struct array_cache **ac_ptr)
985{
986}
987
988static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
989{
990 return 0;
991}
992
993static inline void *alternate_node_alloc(struct kmem_cache *cachep,
994 gfp_t flags)
995{
996 return NULL;
997}
998
Christoph Hellwig8b98c162006-12-06 20:32:30 -0800999static inline void *____cache_alloc_node(struct kmem_cache *cachep,
Christoph Lameter765c4502006-09-27 01:50:08 -07001000 gfp_t flags, int nodeid)
1001{
1002 return NULL;
1003}
1004
1005#else /* CONFIG_NUMA */
1006
Christoph Hellwig8b98c162006-12-06 20:32:30 -08001007static void *____cache_alloc_node(struct kmem_cache *, gfp_t, int);
Paul Jacksonc61afb12006-03-24 03:16:08 -08001008static void *alternate_node_alloc(struct kmem_cache *, gfp_t);
Christoph Lameterdc85da12006-01-18 17:42:36 -08001009
Pekka Enberg83b519e2009-06-10 19:40:04 +03001010static struct array_cache **alloc_alien_cache(int node, int limit, gfp_t gfp)
Christoph Lametere498be72005-09-09 13:03:32 -07001011{
1012 struct array_cache **ac_ptr;
Christoph Lameter8ef82862007-02-20 13:57:52 -08001013 int memsize = sizeof(void *) * nr_node_ids;
Christoph Lametere498be72005-09-09 13:03:32 -07001014 int i;
1015
1016 if (limit > 1)
1017 limit = 12;
Haicheng Lif3186a92010-01-06 15:25:23 +08001018 ac_ptr = kzalloc_node(memsize, gfp, node);
Christoph Lametere498be72005-09-09 13:03:32 -07001019 if (ac_ptr) {
1020 for_each_node(i) {
Haicheng Lif3186a92010-01-06 15:25:23 +08001021 if (i == node || !node_online(i))
Christoph Lametere498be72005-09-09 13:03:32 -07001022 continue;
Pekka Enberg83b519e2009-06-10 19:40:04 +03001023 ac_ptr[i] = alloc_arraycache(node, limit, 0xbaadf00d, gfp);
Christoph Lametere498be72005-09-09 13:03:32 -07001024 if (!ac_ptr[i]) {
Akinobu Mitacc550de2007-11-14 16:58:35 -08001025 for (i--; i >= 0; i--)
Christoph Lametere498be72005-09-09 13:03:32 -07001026 kfree(ac_ptr[i]);
1027 kfree(ac_ptr);
1028 return NULL;
1029 }
1030 }
1031 }
1032 return ac_ptr;
1033}
1034
Pekka Enberg5295a742006-02-01 03:05:48 -08001035static void free_alien_cache(struct array_cache **ac_ptr)
Christoph Lametere498be72005-09-09 13:03:32 -07001036{
1037 int i;
1038
1039 if (!ac_ptr)
1040 return;
Christoph Lametere498be72005-09-09 13:03:32 -07001041 for_each_node(i)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001042 kfree(ac_ptr[i]);
Christoph Lametere498be72005-09-09 13:03:32 -07001043 kfree(ac_ptr);
1044}
1045
Pekka Enberg343e0d72006-02-01 03:05:50 -08001046static void __drain_alien_cache(struct kmem_cache *cachep,
Pekka Enberg5295a742006-02-01 03:05:48 -08001047 struct array_cache *ac, int node)
Christoph Lametere498be72005-09-09 13:03:32 -07001048{
1049 struct kmem_list3 *rl3 = cachep->nodelists[node];
1050
1051 if (ac->avail) {
1052 spin_lock(&rl3->list_lock);
Christoph Lametere00946f2006-03-25 03:06:45 -08001053 /*
1054 * Stuff objects into the remote nodes shared array first.
1055 * That way we could avoid the overhead of putting the objects
1056 * into the free lists and getting them back later.
1057 */
shin, jacob693f7d32006-04-28 10:54:37 -05001058 if (rl3->shared)
1059 transfer_objects(rl3->shared, ac, ac->limit);
Christoph Lametere00946f2006-03-25 03:06:45 -08001060
Christoph Lameterff694162005-09-22 21:44:02 -07001061 free_block(cachep, ac->entry, ac->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -07001062 ac->avail = 0;
1063 spin_unlock(&rl3->list_lock);
1064 }
1065}
1066
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001067/*
1068 * Called from cache_reap() to regularly drain alien caches round robin.
1069 */
1070static void reap_alien(struct kmem_cache *cachep, struct kmem_list3 *l3)
1071{
Christoph Lameter909ea962010-12-08 16:22:55 +01001072 int node = __this_cpu_read(slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001073
1074 if (l3->alien) {
1075 struct array_cache *ac = l3->alien[node];
Christoph Lametere00946f2006-03-25 03:06:45 -08001076
1077 if (ac && ac->avail && spin_trylock_irq(&ac->lock)) {
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001078 __drain_alien_cache(cachep, ac, node);
1079 spin_unlock_irq(&ac->lock);
1080 }
1081 }
1082}
1083
Andrew Mortona737b3e2006-03-22 00:08:11 -08001084static void drain_alien_cache(struct kmem_cache *cachep,
1085 struct array_cache **alien)
Christoph Lametere498be72005-09-09 13:03:32 -07001086{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001087 int i = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07001088 struct array_cache *ac;
1089 unsigned long flags;
1090
1091 for_each_online_node(i) {
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001092 ac = alien[i];
Christoph Lametere498be72005-09-09 13:03:32 -07001093 if (ac) {
1094 spin_lock_irqsave(&ac->lock, flags);
1095 __drain_alien_cache(cachep, ac, i);
1096 spin_unlock_irqrestore(&ac->lock, flags);
1097 }
1098 }
1099}
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001100
Ingo Molnar873623d2006-07-13 14:44:38 +02001101static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001102{
1103 struct slab *slabp = virt_to_slab(objp);
1104 int nodeid = slabp->nodeid;
1105 struct kmem_list3 *l3;
1106 struct array_cache *alien = NULL;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001107 int node;
1108
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07001109 node = numa_mem_id();
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001110
1111 /*
1112 * Make sure we are not freeing a object from another node to the array
1113 * cache on this cpu.
1114 */
Siddha, Suresh B62918a02007-05-02 19:27:18 +02001115 if (likely(slabp->nodeid == node))
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001116 return 0;
1117
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001118 l3 = cachep->nodelists[node];
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001119 STATS_INC_NODEFREES(cachep);
1120 if (l3->alien && l3->alien[nodeid]) {
1121 alien = l3->alien[nodeid];
Ingo Molnar873623d2006-07-13 14:44:38 +02001122 spin_lock(&alien->lock);
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001123 if (unlikely(alien->avail == alien->limit)) {
1124 STATS_INC_ACOVERFLOW(cachep);
1125 __drain_alien_cache(cachep, alien, nodeid);
1126 }
1127 alien->entry[alien->avail++] = objp;
1128 spin_unlock(&alien->lock);
1129 } else {
1130 spin_lock(&(cachep->nodelists[nodeid])->list_lock);
1131 free_block(cachep, &objp, 1, nodeid);
1132 spin_unlock(&(cachep->nodelists[nodeid])->list_lock);
1133 }
1134 return 1;
1135}
Christoph Lametere498be72005-09-09 13:03:32 -07001136#endif
1137
David Rientjes8f9f8d92010-03-27 19:40:47 -07001138/*
1139 * Allocates and initializes nodelists for a node on each slab cache, used for
1140 * either memory or cpu hotplug. If memory is being hot-added, the kmem_list3
1141 * will be allocated off-node since memory is not yet online for the new node.
1142 * When hotplugging memory or a cpu, existing nodelists are not replaced if
1143 * already in use.
1144 *
1145 * Must hold cache_chain_mutex.
1146 */
1147static int init_cache_nodelists_node(int node)
1148{
1149 struct kmem_cache *cachep;
1150 struct kmem_list3 *l3;
1151 const int memsize = sizeof(struct kmem_list3);
1152
1153 list_for_each_entry(cachep, &cache_chain, next) {
1154 /*
1155 * Set up the size64 kmemlist for cpu before we can
1156 * begin anything. Make sure some other cpu on this
1157 * node has not already allocated this
1158 */
1159 if (!cachep->nodelists[node]) {
1160 l3 = kmalloc_node(memsize, GFP_KERNEL, node);
1161 if (!l3)
1162 return -ENOMEM;
1163 kmem_list3_init(l3);
1164 l3->next_reap = jiffies + REAPTIMEOUT_LIST3 +
1165 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
1166
1167 /*
1168 * The l3s don't come and go as CPUs come and
1169 * go. cache_chain_mutex is sufficient
1170 * protection here.
1171 */
1172 cachep->nodelists[node] = l3;
1173 }
1174
1175 spin_lock_irq(&cachep->nodelists[node]->list_lock);
1176 cachep->nodelists[node]->free_limit =
1177 (1 + nr_cpus_node(node)) *
1178 cachep->batchcount + cachep->num;
1179 spin_unlock_irq(&cachep->nodelists[node]->list_lock);
1180 }
1181 return 0;
1182}
1183
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001184static void __cpuinit cpuup_canceled(long cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185{
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001186 struct kmem_cache *cachep;
1187 struct kmem_list3 *l3 = NULL;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07001188 int node = cpu_to_mem(cpu);
Rusty Russella70f7302009-03-13 14:49:46 +10301189 const struct cpumask *mask = cpumask_of_node(node);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001190
1191 list_for_each_entry(cachep, &cache_chain, next) {
1192 struct array_cache *nc;
1193 struct array_cache *shared;
1194 struct array_cache **alien;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001195
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001196 /* cpu is dead; no one can alloc from it. */
1197 nc = cachep->array[cpu];
1198 cachep->array[cpu] = NULL;
1199 l3 = cachep->nodelists[node];
1200
1201 if (!l3)
1202 goto free_array_cache;
1203
1204 spin_lock_irq(&l3->list_lock);
1205
1206 /* Free limit for this kmem_list3 */
1207 l3->free_limit -= cachep->batchcount;
1208 if (nc)
1209 free_block(cachep, nc->entry, nc->avail, node);
1210
Rusty Russell58463c12009-12-17 11:43:12 -06001211 if (!cpumask_empty(mask)) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001212 spin_unlock_irq(&l3->list_lock);
1213 goto free_array_cache;
1214 }
1215
1216 shared = l3->shared;
1217 if (shared) {
1218 free_block(cachep, shared->entry,
1219 shared->avail, node);
1220 l3->shared = NULL;
1221 }
1222
1223 alien = l3->alien;
1224 l3->alien = NULL;
1225
1226 spin_unlock_irq(&l3->list_lock);
1227
1228 kfree(shared);
1229 if (alien) {
1230 drain_alien_cache(cachep, alien);
1231 free_alien_cache(alien);
1232 }
1233free_array_cache:
1234 kfree(nc);
1235 }
1236 /*
1237 * In the previous loop, all the objects were freed to
1238 * the respective cache's slabs, now we can go ahead and
1239 * shrink each nodelist to its limit.
1240 */
1241 list_for_each_entry(cachep, &cache_chain, next) {
1242 l3 = cachep->nodelists[node];
1243 if (!l3)
1244 continue;
1245 drain_freelist(cachep, l3, l3->free_objects);
1246 }
1247}
1248
1249static int __cpuinit cpuup_prepare(long cpu)
1250{
Pekka Enberg343e0d72006-02-01 03:05:50 -08001251 struct kmem_cache *cachep;
Christoph Lametere498be72005-09-09 13:03:32 -07001252 struct kmem_list3 *l3 = NULL;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07001253 int node = cpu_to_mem(cpu);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001254 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001256 /*
1257 * We need to do this right in the beginning since
1258 * alloc_arraycache's are going to use this list.
1259 * kmalloc_node allows us to add the slab to the right
1260 * kmem_list3 and not this cpu's kmem_list3
1261 */
David Rientjes8f9f8d92010-03-27 19:40:47 -07001262 err = init_cache_nodelists_node(node);
1263 if (err < 0)
1264 goto bad;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001265
1266 /*
1267 * Now we can go ahead with allocating the shared arrays and
1268 * array caches
1269 */
1270 list_for_each_entry(cachep, &cache_chain, next) {
1271 struct array_cache *nc;
1272 struct array_cache *shared = NULL;
1273 struct array_cache **alien = NULL;
1274
1275 nc = alloc_arraycache(node, cachep->limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03001276 cachep->batchcount, GFP_KERNEL);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001277 if (!nc)
1278 goto bad;
1279 if (cachep->shared) {
1280 shared = alloc_arraycache(node,
1281 cachep->shared * cachep->batchcount,
Pekka Enberg83b519e2009-06-10 19:40:04 +03001282 0xbaadf00d, GFP_KERNEL);
Akinobu Mita12d00f62007-10-18 03:05:11 -07001283 if (!shared) {
1284 kfree(nc);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001285 goto bad;
Akinobu Mita12d00f62007-10-18 03:05:11 -07001286 }
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001287 }
1288 if (use_alien_caches) {
Pekka Enberg83b519e2009-06-10 19:40:04 +03001289 alien = alloc_alien_cache(node, cachep->limit, GFP_KERNEL);
Akinobu Mita12d00f62007-10-18 03:05:11 -07001290 if (!alien) {
1291 kfree(shared);
1292 kfree(nc);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001293 goto bad;
Akinobu Mita12d00f62007-10-18 03:05:11 -07001294 }
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001295 }
1296 cachep->array[cpu] = nc;
1297 l3 = cachep->nodelists[node];
1298 BUG_ON(!l3);
1299
1300 spin_lock_irq(&l3->list_lock);
1301 if (!l3->shared) {
1302 /*
1303 * We are serialised from CPU_DEAD or
1304 * CPU_UP_CANCELLED by the cpucontrol lock
1305 */
1306 l3->shared = shared;
1307 shared = NULL;
1308 }
1309#ifdef CONFIG_NUMA
1310 if (!l3->alien) {
1311 l3->alien = alien;
1312 alien = NULL;
1313 }
1314#endif
1315 spin_unlock_irq(&l3->list_lock);
1316 kfree(shared);
1317 free_alien_cache(alien);
Peter Zijlstra83835b32011-07-22 15:26:05 +02001318 if (cachep->flags & SLAB_DEBUG_OBJECTS)
1319 slab_set_debugobj_lock_classes_node(cachep, node);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001320 }
Pekka Enbergce79ddc2009-11-23 22:01:15 +02001321 init_node_lock_keys(node);
1322
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001323 return 0;
1324bad:
Akinobu Mita12d00f62007-10-18 03:05:11 -07001325 cpuup_canceled(cpu);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001326 return -ENOMEM;
1327}
1328
1329static int __cpuinit cpuup_callback(struct notifier_block *nfb,
1330 unsigned long action, void *hcpu)
1331{
1332 long cpu = (long)hcpu;
1333 int err = 0;
1334
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 switch (action) {
Heiko Carstens38c3bd92007-05-09 02:34:05 -07001336 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001337 case CPU_UP_PREPARE_FROZEN:
Gautham R Shenoy95402b32008-01-25 21:08:02 +01001338 mutex_lock(&cache_chain_mutex);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001339 err = cpuup_prepare(cpu);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01001340 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 break;
1342 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001343 case CPU_ONLINE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 start_cpu_timer(cpu);
1345 break;
1346#ifdef CONFIG_HOTPLUG_CPU
Christoph Lameter5830c592007-05-09 02:34:22 -07001347 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001348 case CPU_DOWN_PREPARE_FROZEN:
Christoph Lameter5830c592007-05-09 02:34:22 -07001349 /*
1350 * Shutdown cache reaper. Note that the cache_chain_mutex is
1351 * held so that if cache_reap() is invoked it cannot do
1352 * anything expensive but will only modify reap_work
1353 * and reschedule the timer.
1354 */
Tejun Heoafe2c512010-12-14 16:21:17 +01001355 cancel_delayed_work_sync(&per_cpu(slab_reap_work, cpu));
Christoph Lameter5830c592007-05-09 02:34:22 -07001356 /* Now the cache_reaper is guaranteed to be not running. */
Tejun Heo1871e522009-10-29 22:34:13 +09001357 per_cpu(slab_reap_work, cpu).work.func = NULL;
Christoph Lameter5830c592007-05-09 02:34:22 -07001358 break;
1359 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001360 case CPU_DOWN_FAILED_FROZEN:
Christoph Lameter5830c592007-05-09 02:34:22 -07001361 start_cpu_timer(cpu);
1362 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001364 case CPU_DEAD_FROZEN:
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001365 /*
1366 * Even if all the cpus of a node are down, we don't free the
1367 * kmem_list3 of any cache. This to avoid a race between
1368 * cpu_down, and a kmalloc allocation from another cpu for
1369 * memory from the node of the cpu going down. The list3
1370 * structure is usually allocated from kmem_cache_create() and
1371 * gets destroyed at kmem_cache_destroy().
1372 */
Simon Arlott183ff222007-10-20 01:27:18 +02001373 /* fall through */
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08001374#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001376 case CPU_UP_CANCELED_FROZEN:
Gautham R Shenoy95402b32008-01-25 21:08:02 +01001377 mutex_lock(&cache_chain_mutex);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001378 cpuup_canceled(cpu);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001379 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 }
Akinobu Mitaeac40682010-05-26 14:43:32 -07001382 return notifier_from_errno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383}
1384
Chandra Seetharaman74b85f32006-06-27 02:54:09 -07001385static struct notifier_block __cpuinitdata cpucache_notifier = {
1386 &cpuup_callback, NULL, 0
1387};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388
David Rientjes8f9f8d92010-03-27 19:40:47 -07001389#if defined(CONFIG_NUMA) && defined(CONFIG_MEMORY_HOTPLUG)
1390/*
1391 * Drains freelist for a node on each slab cache, used for memory hot-remove.
1392 * Returns -EBUSY if all objects cannot be drained so that the node is not
1393 * removed.
1394 *
1395 * Must hold cache_chain_mutex.
1396 */
1397static int __meminit drain_cache_nodelists_node(int node)
1398{
1399 struct kmem_cache *cachep;
1400 int ret = 0;
1401
1402 list_for_each_entry(cachep, &cache_chain, next) {
1403 struct kmem_list3 *l3;
1404
1405 l3 = cachep->nodelists[node];
1406 if (!l3)
1407 continue;
1408
1409 drain_freelist(cachep, l3, l3->free_objects);
1410
1411 if (!list_empty(&l3->slabs_full) ||
1412 !list_empty(&l3->slabs_partial)) {
1413 ret = -EBUSY;
1414 break;
1415 }
1416 }
1417 return ret;
1418}
1419
1420static int __meminit slab_memory_callback(struct notifier_block *self,
1421 unsigned long action, void *arg)
1422{
1423 struct memory_notify *mnb = arg;
1424 int ret = 0;
1425 int nid;
1426
1427 nid = mnb->status_change_nid;
1428 if (nid < 0)
1429 goto out;
1430
1431 switch (action) {
1432 case MEM_GOING_ONLINE:
1433 mutex_lock(&cache_chain_mutex);
1434 ret = init_cache_nodelists_node(nid);
1435 mutex_unlock(&cache_chain_mutex);
1436 break;
1437 case MEM_GOING_OFFLINE:
1438 mutex_lock(&cache_chain_mutex);
1439 ret = drain_cache_nodelists_node(nid);
1440 mutex_unlock(&cache_chain_mutex);
1441 break;
1442 case MEM_ONLINE:
1443 case MEM_OFFLINE:
1444 case MEM_CANCEL_ONLINE:
1445 case MEM_CANCEL_OFFLINE:
1446 break;
1447 }
1448out:
Prarit Bhargava5fda1bd2011-03-22 16:30:49 -07001449 return notifier_from_errno(ret);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001450}
1451#endif /* CONFIG_NUMA && CONFIG_MEMORY_HOTPLUG */
1452
Christoph Lametere498be72005-09-09 13:03:32 -07001453/*
1454 * swap the static kmem_list3 with kmalloced memory
1455 */
David Rientjes8f9f8d92010-03-27 19:40:47 -07001456static void __init init_list(struct kmem_cache *cachep, struct kmem_list3 *list,
1457 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07001458{
1459 struct kmem_list3 *ptr;
1460
Pekka Enberg83b519e2009-06-10 19:40:04 +03001461 ptr = kmalloc_node(sizeof(struct kmem_list3), GFP_NOWAIT, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07001462 BUG_ON(!ptr);
1463
Christoph Lametere498be72005-09-09 13:03:32 -07001464 memcpy(ptr, list, sizeof(struct kmem_list3));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001465 /*
1466 * Do not assume that spinlocks can be initialized via memcpy:
1467 */
1468 spin_lock_init(&ptr->list_lock);
1469
Christoph Lametere498be72005-09-09 13:03:32 -07001470 MAKE_ALL_LISTS(cachep, ptr, nodeid);
1471 cachep->nodelists[nodeid] = ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001472}
1473
Andrew Mortona737b3e2006-03-22 00:08:11 -08001474/*
Pekka Enberg556a1692008-01-25 08:20:51 +02001475 * For setting up all the kmem_list3s for cache whose buffer_size is same as
1476 * size of kmem_list3.
1477 */
1478static void __init set_up_list3s(struct kmem_cache *cachep, int index)
1479{
1480 int node;
1481
1482 for_each_online_node(node) {
1483 cachep->nodelists[node] = &initkmem_list3[index + node];
1484 cachep->nodelists[node]->next_reap = jiffies +
1485 REAPTIMEOUT_LIST3 +
1486 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
1487 }
1488}
1489
1490/*
Andrew Mortona737b3e2006-03-22 00:08:11 -08001491 * Initialisation. Called after the page allocator have been initialised and
1492 * before smp_init().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001493 */
1494void __init kmem_cache_init(void)
1495{
1496 size_t left_over;
1497 struct cache_sizes *sizes;
1498 struct cache_names *names;
Christoph Lametere498be72005-09-09 13:03:32 -07001499 int i;
Jack Steiner07ed76b2006-03-07 21:55:46 -08001500 int order;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001501 int node;
Christoph Lametere498be72005-09-09 13:03:32 -07001502
Mel Gormanb6e68bc2009-06-16 15:32:16 -07001503 if (num_possible_nodes() == 1)
Siddha, Suresh B62918a02007-05-02 19:27:18 +02001504 use_alien_caches = 0;
1505
Christoph Lametere498be72005-09-09 13:03:32 -07001506 for (i = 0; i < NUM_INIT_LISTS; i++) {
1507 kmem_list3_init(&initkmem_list3[i]);
1508 if (i < MAX_NUMNODES)
1509 cache_cache.nodelists[i] = NULL;
1510 }
Pekka Enberg556a1692008-01-25 08:20:51 +02001511 set_up_list3s(&cache_cache, CACHE_CACHE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512
1513 /*
1514 * Fragmentation resistance on low memory - only use bigger
David Rientjes3df1ccc2011-10-18 22:09:28 -07001515 * page orders on machines with more than 32MB of memory if
1516 * not overridden on the command line.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 */
David Rientjes3df1ccc2011-10-18 22:09:28 -07001518 if (!slab_max_order_set && totalram_pages > (32 << 20) >> PAGE_SHIFT)
David Rientjes543585c2011-10-18 22:09:24 -07001519 slab_max_order = SLAB_MAX_ORDER_HI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 /* Bootstrap is tricky, because several objects are allocated
1522 * from caches that do not exist yet:
Andrew Mortona737b3e2006-03-22 00:08:11 -08001523 * 1) initialize the cache_cache cache: it contains the struct
1524 * kmem_cache structures of all caches, except cache_cache itself:
1525 * cache_cache is statically allocated.
Christoph Lametere498be72005-09-09 13:03:32 -07001526 * Initially an __init data area is used for the head array and the
1527 * kmem_list3 structures, it's replaced with a kmalloc allocated
1528 * array at the end of the bootstrap.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 * 2) Create the first kmalloc cache.
Pekka Enberg343e0d72006-02-01 03:05:50 -08001530 * The struct kmem_cache for the new cache is allocated normally.
Christoph Lametere498be72005-09-09 13:03:32 -07001531 * An __init data area is used for the head array.
1532 * 3) Create the remaining kmalloc caches, with minimally sized
1533 * head arrays.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 * 4) Replace the __init data head arrays for cache_cache and the first
1535 * kmalloc cache with kmalloc allocated arrays.
Christoph Lametere498be72005-09-09 13:03:32 -07001536 * 5) Replace the __init data for kmem_list3 for cache_cache and
1537 * the other cache's with kmalloc allocated memory.
1538 * 6) Resize the head arrays of the kmalloc caches to their final sizes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539 */
1540
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07001541 node = numa_mem_id();
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001542
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 /* 1) create the cache_cache */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544 INIT_LIST_HEAD(&cache_chain);
1545 list_add(&cache_cache.next, &cache_chain);
1546 cache_cache.colour_off = cache_line_size();
1547 cache_cache.array[smp_processor_id()] = &initarray_cache.cache;
Daniel Yeisleyec1f5ee2008-03-25 23:59:08 +02001548 cache_cache.nodelists[node] = &initkmem_list3[CACHE_CACHE + node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549
Eric Dumazet8da34302007-05-06 14:49:29 -07001550 /*
Eric Dumazetb56efcf2011-07-20 19:04:23 +02001551 * struct kmem_cache size depends on nr_node_ids & nr_cpu_ids
Eric Dumazet8da34302007-05-06 14:49:29 -07001552 */
Eric Dumazetb56efcf2011-07-20 19:04:23 +02001553 cache_cache.buffer_size = offsetof(struct kmem_cache, array[nr_cpu_ids]) +
1554 nr_node_ids * sizeof(struct kmem_list3 *);
Eric Dumazet8da34302007-05-06 14:49:29 -07001555#if DEBUG
1556 cache_cache.obj_size = cache_cache.buffer_size;
1557#endif
Andrew Mortona737b3e2006-03-22 00:08:11 -08001558 cache_cache.buffer_size = ALIGN(cache_cache.buffer_size,
1559 cache_line_size());
Eric Dumazet6a2d7a92006-12-13 00:34:27 -08001560 cache_cache.reciprocal_buffer_size =
1561 reciprocal_value(cache_cache.buffer_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562
Jack Steiner07ed76b2006-03-07 21:55:46 -08001563 for (order = 0; order < MAX_ORDER; order++) {
1564 cache_estimate(order, cache_cache.buffer_size,
1565 cache_line_size(), 0, &left_over, &cache_cache.num);
1566 if (cache_cache.num)
1567 break;
1568 }
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02001569 BUG_ON(!cache_cache.num);
Jack Steiner07ed76b2006-03-07 21:55:46 -08001570 cache_cache.gfporder = order;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001571 cache_cache.colour = left_over / cache_cache.colour_off;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001572 cache_cache.slab_size = ALIGN(cache_cache.num * sizeof(kmem_bufctl_t) +
1573 sizeof(struct slab), cache_line_size());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574
1575 /* 2+3) create the kmalloc caches */
1576 sizes = malloc_sizes;
1577 names = cache_names;
1578
Andrew Mortona737b3e2006-03-22 00:08:11 -08001579 /*
1580 * Initialize the caches that provide memory for the array cache and the
1581 * kmem_list3 structures first. Without this, further allocations will
1582 * bug.
Christoph Lametere498be72005-09-09 13:03:32 -07001583 */
1584
1585 sizes[INDEX_AC].cs_cachep = kmem_cache_create(names[INDEX_AC].name,
Andrew Mortona737b3e2006-03-22 00:08:11 -08001586 sizes[INDEX_AC].cs_size,
1587 ARCH_KMALLOC_MINALIGN,
1588 ARCH_KMALLOC_FLAGS|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09001589 NULL);
Christoph Lametere498be72005-09-09 13:03:32 -07001590
Andrew Mortona737b3e2006-03-22 00:08:11 -08001591 if (INDEX_AC != INDEX_L3) {
Christoph Lametere498be72005-09-09 13:03:32 -07001592 sizes[INDEX_L3].cs_cachep =
Andrew Mortona737b3e2006-03-22 00:08:11 -08001593 kmem_cache_create(names[INDEX_L3].name,
1594 sizes[INDEX_L3].cs_size,
1595 ARCH_KMALLOC_MINALIGN,
1596 ARCH_KMALLOC_FLAGS|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09001597 NULL);
Andrew Mortona737b3e2006-03-22 00:08:11 -08001598 }
Christoph Lametere498be72005-09-09 13:03:32 -07001599
Ingo Molnare0a42722006-06-23 02:03:46 -07001600 slab_early_init = 0;
1601
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 while (sizes->cs_size != ULONG_MAX) {
Christoph Lametere498be72005-09-09 13:03:32 -07001603 /*
1604 * For performance, all the general caches are L1 aligned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 * This should be particularly beneficial on SMP boxes, as it
1606 * eliminates "false sharing".
1607 * Note for systems short on memory removing the alignment will
Christoph Lametere498be72005-09-09 13:03:32 -07001608 * allow tighter packing of the smaller caches.
1609 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08001610 if (!sizes->cs_cachep) {
Christoph Lametere498be72005-09-09 13:03:32 -07001611 sizes->cs_cachep = kmem_cache_create(names->name,
Andrew Mortona737b3e2006-03-22 00:08:11 -08001612 sizes->cs_size,
1613 ARCH_KMALLOC_MINALIGN,
1614 ARCH_KMALLOC_FLAGS|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09001615 NULL);
Andrew Mortona737b3e2006-03-22 00:08:11 -08001616 }
Christoph Lameter4b51d662007-02-10 01:43:10 -08001617#ifdef CONFIG_ZONE_DMA
1618 sizes->cs_dmacachep = kmem_cache_create(
1619 names->name_dma,
Andrew Mortona737b3e2006-03-22 00:08:11 -08001620 sizes->cs_size,
1621 ARCH_KMALLOC_MINALIGN,
1622 ARCH_KMALLOC_FLAGS|SLAB_CACHE_DMA|
1623 SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09001624 NULL);
Christoph Lameter4b51d662007-02-10 01:43:10 -08001625#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626 sizes++;
1627 names++;
1628 }
1629 /* 4) Replace the bootstrap head arrays */
1630 {
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001631 struct array_cache *ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001632
Pekka Enberg83b519e2009-06-10 19:40:04 +03001633 ptr = kmalloc(sizeof(struct arraycache_init), GFP_NOWAIT);
Christoph Lametere498be72005-09-09 13:03:32 -07001634
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001635 BUG_ON(cpu_cache_get(&cache_cache) != &initarray_cache.cache);
1636 memcpy(ptr, cpu_cache_get(&cache_cache),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001637 sizeof(struct arraycache_init));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001638 /*
1639 * Do not assume that spinlocks can be initialized via memcpy:
1640 */
1641 spin_lock_init(&ptr->lock);
1642
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 cache_cache.array[smp_processor_id()] = ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001644
Pekka Enberg83b519e2009-06-10 19:40:04 +03001645 ptr = kmalloc(sizeof(struct arraycache_init), GFP_NOWAIT);
Christoph Lametere498be72005-09-09 13:03:32 -07001646
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001647 BUG_ON(cpu_cache_get(malloc_sizes[INDEX_AC].cs_cachep)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001648 != &initarray_generic.cache);
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001649 memcpy(ptr, cpu_cache_get(malloc_sizes[INDEX_AC].cs_cachep),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001650 sizeof(struct arraycache_init));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001651 /*
1652 * Do not assume that spinlocks can be initialized via memcpy:
1653 */
1654 spin_lock_init(&ptr->lock);
1655
Christoph Lametere498be72005-09-09 13:03:32 -07001656 malloc_sizes[INDEX_AC].cs_cachep->array[smp_processor_id()] =
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001657 ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 }
Christoph Lametere498be72005-09-09 13:03:32 -07001659 /* 5) Replace the bootstrap kmem_list3's */
1660 {
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001661 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662
Mel Gorman9c09a952008-01-24 05:49:54 -08001663 for_each_online_node(nid) {
Daniel Yeisleyec1f5ee2008-03-25 23:59:08 +02001664 init_list(&cache_cache, &initkmem_list3[CACHE_CACHE + nid], nid);
Pekka Enberg556a1692008-01-25 08:20:51 +02001665
Christoph Lametere498be72005-09-09 13:03:32 -07001666 init_list(malloc_sizes[INDEX_AC].cs_cachep,
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001667 &initkmem_list3[SIZE_AC + nid], nid);
Christoph Lametere498be72005-09-09 13:03:32 -07001668
1669 if (INDEX_AC != INDEX_L3) {
1670 init_list(malloc_sizes[INDEX_L3].cs_cachep,
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001671 &initkmem_list3[SIZE_L3 + nid], nid);
Christoph Lametere498be72005-09-09 13:03:32 -07001672 }
1673 }
1674 }
1675
Pekka Enberg8429db52009-06-12 15:58:59 +03001676 g_cpucache_up = EARLY;
Pekka Enberg8429db52009-06-12 15:58:59 +03001677}
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -07001678
Pekka Enberg8429db52009-06-12 15:58:59 +03001679void __init kmem_cache_init_late(void)
1680{
1681 struct kmem_cache *cachep;
1682
Peter Zijlstra30765b92011-07-28 23:22:56 +02001683 /* Annotate slab for lockdep -- annotate the malloc caches */
1684 init_lock_keys();
1685
Pekka Enberg8429db52009-06-12 15:58:59 +03001686 /* 6) resize the head arrays to their final sizes */
1687 mutex_lock(&cache_chain_mutex);
1688 list_for_each_entry(cachep, &cache_chain, next)
1689 if (enable_cpucache(cachep, GFP_NOWAIT))
1690 BUG();
1691 mutex_unlock(&cache_chain_mutex);
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -07001692
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 /* Done! */
1694 g_cpucache_up = FULL;
1695
Andrew Mortona737b3e2006-03-22 00:08:11 -08001696 /*
1697 * Register a cpu startup notifier callback that initializes
1698 * cpu_cache_get for all new cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699 */
1700 register_cpu_notifier(&cpucache_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701
David Rientjes8f9f8d92010-03-27 19:40:47 -07001702#ifdef CONFIG_NUMA
1703 /*
1704 * Register a memory hotplug callback that initializes and frees
1705 * nodelists.
1706 */
1707 hotplug_memory_notifier(slab_memory_callback, SLAB_CALLBACK_PRI);
1708#endif
1709
Andrew Mortona737b3e2006-03-22 00:08:11 -08001710 /*
1711 * The reap timers are started later, with a module init call: That part
1712 * of the kernel is not yet operational.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001713 */
1714}
1715
1716static int __init cpucache_init(void)
1717{
1718 int cpu;
1719
Andrew Mortona737b3e2006-03-22 00:08:11 -08001720 /*
1721 * Register the timers that return unneeded pages to the page allocator
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 */
Christoph Lametere498be72005-09-09 13:03:32 -07001723 for_each_online_cpu(cpu)
Andrew Mortona737b3e2006-03-22 00:08:11 -08001724 start_cpu_timer(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725 return 0;
1726}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727__initcall(cpucache_init);
1728
1729/*
1730 * Interface to system's page allocator. No need to hold the cache-lock.
1731 *
1732 * If we requested dmaable memory, we will get it. Even if we
1733 * did not request dmaable memory, we might get it, but that
1734 * would be relatively rare and ignorable.
1735 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001736static void *kmem_getpages(struct kmem_cache *cachep, gfp_t flags, int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737{
1738 struct page *page;
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001739 int nr_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740 int i;
1741
Luke Yangd6fef9d2006-04-10 22:52:56 -07001742#ifndef CONFIG_MMU
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001743 /*
1744 * Nommu uses slab's for process anonymous memory allocations, and thus
1745 * requires __GFP_COMP to properly refcount higher order allocations
Luke Yangd6fef9d2006-04-10 22:52:56 -07001746 */
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001747 flags |= __GFP_COMP;
Luke Yangd6fef9d2006-04-10 22:52:56 -07001748#endif
Christoph Lameter765c4502006-09-27 01:50:08 -07001749
Christoph Lameter3c517a62006-12-06 20:33:29 -08001750 flags |= cachep->gfpflags;
Mel Gormane12ba742007-10-16 01:25:52 -07001751 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1752 flags |= __GFP_RECLAIMABLE;
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001753
Linus Torvalds517d0862009-06-16 19:50:13 -07001754 page = alloc_pages_exact_node(nodeid, flags | __GFP_NOTRACK, cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 if (!page)
1756 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001758 nr_pages = (1 << cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
Christoph Lameter972d1a72006-09-25 23:31:51 -07001760 add_zone_page_state(page_zone(page),
1761 NR_SLAB_RECLAIMABLE, nr_pages);
1762 else
1763 add_zone_page_state(page_zone(page),
1764 NR_SLAB_UNRECLAIMABLE, nr_pages);
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001765 for (i = 0; i < nr_pages; i++)
1766 __SetPageSlab(page + i);
Pekka Enbergc175eea2008-05-09 20:35:53 +02001767
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001768 if (kmemcheck_enabled && !(cachep->flags & SLAB_NOTRACK)) {
1769 kmemcheck_alloc_shadow(page, cachep->gfporder, flags, nodeid);
1770
1771 if (cachep->ctor)
1772 kmemcheck_mark_uninitialized_pages(page, nr_pages);
1773 else
1774 kmemcheck_mark_unallocated_pages(page, nr_pages);
1775 }
Pekka Enbergc175eea2008-05-09 20:35:53 +02001776
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001777 return page_address(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778}
1779
1780/*
1781 * Interface to system's page release.
1782 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001783static void kmem_freepages(struct kmem_cache *cachep, void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001785 unsigned long i = (1 << cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 struct page *page = virt_to_page(addr);
1787 const unsigned long nr_freed = i;
1788
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001789 kmemcheck_free_shadow(page, cachep->gfporder);
Pekka Enbergc175eea2008-05-09 20:35:53 +02001790
Christoph Lameter972d1a72006-09-25 23:31:51 -07001791 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1792 sub_zone_page_state(page_zone(page),
1793 NR_SLAB_RECLAIMABLE, nr_freed);
1794 else
1795 sub_zone_page_state(page_zone(page),
1796 NR_SLAB_UNRECLAIMABLE, nr_freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 while (i--) {
Nick Pigginf205b2f2006-03-22 00:08:02 -08001798 BUG_ON(!PageSlab(page));
1799 __ClearPageSlab(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 page++;
1801 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 if (current->reclaim_state)
1803 current->reclaim_state->reclaimed_slab += nr_freed;
1804 free_pages((unsigned long)addr, cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805}
1806
1807static void kmem_rcu_free(struct rcu_head *head)
1808{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001809 struct slab_rcu *slab_rcu = (struct slab_rcu *)head;
Pekka Enberg343e0d72006-02-01 03:05:50 -08001810 struct kmem_cache *cachep = slab_rcu->cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811
1812 kmem_freepages(cachep, slab_rcu->addr);
1813 if (OFF_SLAB(cachep))
1814 kmem_cache_free(cachep->slabp_cache, slab_rcu);
1815}
1816
1817#if DEBUG
1818
1819#ifdef CONFIG_DEBUG_PAGEALLOC
Pekka Enberg343e0d72006-02-01 03:05:50 -08001820static void store_stackinfo(struct kmem_cache *cachep, unsigned long *addr,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001821 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001822{
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001823 int size = obj_size(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001825 addr = (unsigned long *)&((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001827 if (size < 5 * sizeof(unsigned long))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828 return;
1829
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001830 *addr++ = 0x12345678;
1831 *addr++ = caller;
1832 *addr++ = smp_processor_id();
1833 size -= 3 * sizeof(unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 {
1835 unsigned long *sptr = &caller;
1836 unsigned long svalue;
1837
1838 while (!kstack_end(sptr)) {
1839 svalue = *sptr++;
1840 if (kernel_text_address(svalue)) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001841 *addr++ = svalue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 size -= sizeof(unsigned long);
1843 if (size <= sizeof(unsigned long))
1844 break;
1845 }
1846 }
1847
1848 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001849 *addr++ = 0x87654321;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001850}
1851#endif
1852
Pekka Enberg343e0d72006-02-01 03:05:50 -08001853static void poison_obj(struct kmem_cache *cachep, void *addr, unsigned char val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854{
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001855 int size = obj_size(cachep);
1856 addr = &((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857
1858 memset(addr, val, size);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001859 *(unsigned char *)(addr + size - 1) = POISON_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860}
1861
1862static void dump_line(char *data, int offset, int limit)
1863{
1864 int i;
Dave Jonesaa83aa42006-09-29 01:59:51 -07001865 unsigned char error = 0;
1866 int bad_count = 0;
1867
Sebastian Andrzej Siewiorfdde6ab2011-07-29 18:22:13 +02001868 printk(KERN_ERR "%03x: ", offset);
Dave Jonesaa83aa42006-09-29 01:59:51 -07001869 for (i = 0; i < limit; i++) {
1870 if (data[offset + i] != POISON_FREE) {
1871 error = data[offset + i];
1872 bad_count++;
1873 }
Dave Jonesaa83aa42006-09-29 01:59:51 -07001874 }
Sebastian Andrzej Siewiorfdde6ab2011-07-29 18:22:13 +02001875 print_hex_dump(KERN_CONT, "", 0, 16, 1,
1876 &data[offset], limit, 1);
Dave Jonesaa83aa42006-09-29 01:59:51 -07001877
1878 if (bad_count == 1) {
1879 error ^= POISON_FREE;
1880 if (!(error & (error - 1))) {
1881 printk(KERN_ERR "Single bit error detected. Probably "
1882 "bad RAM.\n");
1883#ifdef CONFIG_X86
1884 printk(KERN_ERR "Run memtest86+ or a similar memory "
1885 "test tool.\n");
1886#else
1887 printk(KERN_ERR "Run a memory test tool.\n");
1888#endif
1889 }
1890 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891}
1892#endif
1893
1894#if DEBUG
1895
Pekka Enberg343e0d72006-02-01 03:05:50 -08001896static void print_objinfo(struct kmem_cache *cachep, void *objp, int lines)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897{
1898 int i, size;
1899 char *realobj;
1900
1901 if (cachep->flags & SLAB_RED_ZONE) {
David Woodhouseb46b8f12007-05-08 00:22:59 -07001902 printk(KERN_ERR "Redzone: 0x%llx/0x%llx.\n",
Andrew Mortona737b3e2006-03-22 00:08:11 -08001903 *dbg_redzone1(cachep, objp),
1904 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 }
1906
1907 if (cachep->flags & SLAB_STORE_USER) {
1908 printk(KERN_ERR "Last user: [<%p>]",
Andrew Mortona737b3e2006-03-22 00:08:11 -08001909 *dbg_userword(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 print_symbol("(%s)",
Andrew Mortona737b3e2006-03-22 00:08:11 -08001911 (unsigned long)*dbg_userword(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 printk("\n");
1913 }
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001914 realobj = (char *)objp + obj_offset(cachep);
1915 size = obj_size(cachep);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001916 for (i = 0; i < size && lines; i += 16, lines--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 int limit;
1918 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001919 if (i + limit > size)
1920 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 dump_line(realobj, i, limit);
1922 }
1923}
1924
Pekka Enberg343e0d72006-02-01 03:05:50 -08001925static void check_poison_obj(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926{
1927 char *realobj;
1928 int size, i;
1929 int lines = 0;
1930
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001931 realobj = (char *)objp + obj_offset(cachep);
1932 size = obj_size(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001934 for (i = 0; i < size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 char exp = POISON_FREE;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001936 if (i == size - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 exp = POISON_END;
1938 if (realobj[i] != exp) {
1939 int limit;
1940 /* Mismatch ! */
1941 /* Print header */
1942 if (lines == 0) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001943 printk(KERN_ERR
David Howellse94a40c2007-04-02 23:46:28 +01001944 "Slab corruption: %s start=%p, len=%d\n",
1945 cachep->name, realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 print_objinfo(cachep, objp, 0);
1947 }
1948 /* Hexdump the affected line */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001949 i = (i / 16) * 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001951 if (i + limit > size)
1952 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953 dump_line(realobj, i, limit);
1954 i += 16;
1955 lines++;
1956 /* Limit to 5 lines */
1957 if (lines > 5)
1958 break;
1959 }
1960 }
1961 if (lines != 0) {
1962 /* Print some data about the neighboring objects, if they
1963 * exist:
1964 */
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08001965 struct slab *slabp = virt_to_slab(objp);
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001966 unsigned int objnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001968 objnr = obj_to_index(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 if (objnr) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001970 objp = index_to_obj(cachep, slabp, objnr - 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001971 realobj = (char *)objp + obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 printk(KERN_ERR "Prev obj: start=%p, len=%d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001973 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 print_objinfo(cachep, objp, 2);
1975 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001976 if (objnr + 1 < cachep->num) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001977 objp = index_to_obj(cachep, slabp, objnr + 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001978 realobj = (char *)objp + obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 printk(KERN_ERR "Next obj: start=%p, len=%d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001980 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 print_objinfo(cachep, objp, 2);
1982 }
1983 }
1984}
1985#endif
1986
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987#if DEBUG
Rabin Vincente79aec22008-07-04 00:40:32 +05301988static void slab_destroy_debugcheck(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001989{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001990 int i;
1991 for (i = 0; i < cachep->num; i++) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001992 void *objp = index_to_obj(cachep, slabp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993
1994 if (cachep->flags & SLAB_POISON) {
1995#ifdef CONFIG_DEBUG_PAGEALLOC
Andrew Mortona737b3e2006-03-22 00:08:11 -08001996 if (cachep->buffer_size % PAGE_SIZE == 0 &&
1997 OFF_SLAB(cachep))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001998 kernel_map_pages(virt_to_page(objp),
Andrew Mortona737b3e2006-03-22 00:08:11 -08001999 cachep->buffer_size / PAGE_SIZE, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 else
2001 check_poison_obj(cachep, objp);
2002#else
2003 check_poison_obj(cachep, objp);
2004#endif
2005 }
2006 if (cachep->flags & SLAB_RED_ZONE) {
2007 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
2008 slab_error(cachep, "start of a freed object "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002009 "was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
2011 slab_error(cachep, "end of a freed object "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002012 "was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 }
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002015}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016#else
Rabin Vincente79aec22008-07-04 00:40:32 +05302017static void slab_destroy_debugcheck(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002018{
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002019}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020#endif
2021
Randy Dunlap911851e2006-03-22 00:08:14 -08002022/**
2023 * slab_destroy - destroy and release all objects in a slab
2024 * @cachep: cache pointer being destroyed
2025 * @slabp: slab pointer being destroyed
2026 *
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002027 * Destroy all the objs in a slab, and release the mem back to the system.
Andrew Mortona737b3e2006-03-22 00:08:11 -08002028 * Before calling the slab must have been unlinked from the cache. The
2029 * cache-lock is not held/needed.
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002030 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002031static void slab_destroy(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002032{
2033 void *addr = slabp->s_mem - slabp->colouroff;
2034
Rabin Vincente79aec22008-07-04 00:40:32 +05302035 slab_destroy_debugcheck(cachep, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 if (unlikely(cachep->flags & SLAB_DESTROY_BY_RCU)) {
2037 struct slab_rcu *slab_rcu;
2038
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002039 slab_rcu = (struct slab_rcu *)slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 slab_rcu->cachep = cachep;
2041 slab_rcu->addr = addr;
2042 call_rcu(&slab_rcu->head, kmem_rcu_free);
2043 } else {
2044 kmem_freepages(cachep, addr);
Ingo Molnar873623d2006-07-13 14:44:38 +02002045 if (OFF_SLAB(cachep))
2046 kmem_cache_free(cachep->slabp_cache, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 }
2048}
2049
Christoph Lameter117f6eb2006-09-25 23:31:37 -07002050static void __kmem_cache_destroy(struct kmem_cache *cachep)
2051{
2052 int i;
2053 struct kmem_list3 *l3;
2054
2055 for_each_online_cpu(i)
2056 kfree(cachep->array[i]);
2057
2058 /* NUMA: free the list3 structures */
2059 for_each_online_node(i) {
2060 l3 = cachep->nodelists[i];
2061 if (l3) {
2062 kfree(l3->shared);
2063 free_alien_cache(l3->alien);
2064 kfree(l3);
2065 }
2066 }
2067 kmem_cache_free(&cache_cache, cachep);
2068}
2069
2070
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071/**
Randy.Dunlapa70773d2006-02-01 03:05:52 -08002072 * calculate_slab_order - calculate size (page order) of slabs
2073 * @cachep: pointer to the cache that is being created
2074 * @size: size of objects to be created in this cache.
2075 * @align: required alignment for the objects.
2076 * @flags: slab allocation flags
2077 *
2078 * Also calculates the number of objects per slab.
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002079 *
2080 * This could be made much more intelligent. For now, try to avoid using
2081 * high order pages for slabs. When the gfp() functions are more friendly
2082 * towards high-order requests, this should be changed.
2083 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002084static size_t calculate_slab_order(struct kmem_cache *cachep,
Randy Dunlapee13d782006-02-01 03:05:53 -08002085 size_t size, size_t align, unsigned long flags)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002086{
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02002087 unsigned long offslab_limit;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002088 size_t left_over = 0;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002089 int gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002090
Christoph Lameter0aa817f2007-05-16 22:11:01 -07002091 for (gfporder = 0; gfporder <= KMALLOC_MAX_ORDER; gfporder++) {
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002092 unsigned int num;
2093 size_t remainder;
2094
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002095 cache_estimate(gfporder, size, align, flags, &remainder, &num);
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002096 if (!num)
2097 continue;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002098
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02002099 if (flags & CFLGS_OFF_SLAB) {
2100 /*
2101 * Max number of objs-per-slab for caches which
2102 * use off-slab slabs. Needed to avoid a possible
2103 * looping condition in cache_grow().
2104 */
2105 offslab_limit = size - sizeof(struct slab);
2106 offslab_limit /= sizeof(kmem_bufctl_t);
2107
2108 if (num > offslab_limit)
2109 break;
2110 }
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002111
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002112 /* Found something acceptable - save it away */
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002113 cachep->num = num;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002114 cachep->gfporder = gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002115 left_over = remainder;
2116
2117 /*
Linus Torvaldsf78bb8a2006-03-08 10:33:05 -08002118 * A VFS-reclaimable slab tends to have most allocations
2119 * as GFP_NOFS and we really don't want to have to be allocating
2120 * higher-order pages when we are unable to shrink dcache.
2121 */
2122 if (flags & SLAB_RECLAIM_ACCOUNT)
2123 break;
2124
2125 /*
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002126 * Large number of objects is good, but very large slabs are
2127 * currently bad for the gfp()s.
2128 */
David Rientjes543585c2011-10-18 22:09:24 -07002129 if (gfporder >= slab_max_order)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002130 break;
2131
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002132 /*
2133 * Acceptable internal fragmentation?
2134 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002135 if (left_over * 8 <= (PAGE_SIZE << gfporder))
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002136 break;
2137 }
2138 return left_over;
2139}
2140
Pekka Enberg83b519e2009-06-10 19:40:04 +03002141static int __init_refok setup_cpu_cache(struct kmem_cache *cachep, gfp_t gfp)
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002142{
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002143 if (g_cpucache_up == FULL)
Pekka Enberg83b519e2009-06-10 19:40:04 +03002144 return enable_cpucache(cachep, gfp);
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002145
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002146 if (g_cpucache_up == NONE) {
2147 /*
2148 * Note: the first kmem_cache_create must create the cache
2149 * that's used by kmalloc(24), otherwise the creation of
2150 * further caches will BUG().
2151 */
2152 cachep->array[smp_processor_id()] = &initarray_generic.cache;
2153
2154 /*
2155 * If the cache that's used by kmalloc(sizeof(kmem_list3)) is
2156 * the first cache, then we need to set up all its list3s,
2157 * otherwise the creation of further caches will BUG().
2158 */
2159 set_up_list3s(cachep, SIZE_AC);
2160 if (INDEX_AC == INDEX_L3)
2161 g_cpucache_up = PARTIAL_L3;
2162 else
2163 g_cpucache_up = PARTIAL_AC;
2164 } else {
2165 cachep->array[smp_processor_id()] =
Pekka Enberg83b519e2009-06-10 19:40:04 +03002166 kmalloc(sizeof(struct arraycache_init), gfp);
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002167
2168 if (g_cpucache_up == PARTIAL_AC) {
2169 set_up_list3s(cachep, SIZE_L3);
2170 g_cpucache_up = PARTIAL_L3;
2171 } else {
2172 int node;
Pekka Enberg556a1692008-01-25 08:20:51 +02002173 for_each_online_node(node) {
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002174 cachep->nodelists[node] =
2175 kmalloc_node(sizeof(struct kmem_list3),
Pekka Enbergeb91f1d2009-06-12 14:56:09 +03002176 gfp, node);
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002177 BUG_ON(!cachep->nodelists[node]);
2178 kmem_list3_init(cachep->nodelists[node]);
2179 }
2180 }
2181 }
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07002182 cachep->nodelists[numa_mem_id()]->next_reap =
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002183 jiffies + REAPTIMEOUT_LIST3 +
2184 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
2185
2186 cpu_cache_get(cachep)->avail = 0;
2187 cpu_cache_get(cachep)->limit = BOOT_CPUCACHE_ENTRIES;
2188 cpu_cache_get(cachep)->batchcount = 1;
2189 cpu_cache_get(cachep)->touched = 0;
2190 cachep->batchcount = 1;
2191 cachep->limit = BOOT_CPUCACHE_ENTRIES;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002192 return 0;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002193}
2194
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002195/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196 * kmem_cache_create - Create a cache.
2197 * @name: A string which is used in /proc/slabinfo to identify this cache.
2198 * @size: The size of objects to be created in this cache.
2199 * @align: The required alignment for the objects.
2200 * @flags: SLAB flags
2201 * @ctor: A constructor for the objects.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 *
2203 * Returns a ptr to the cache on success, NULL on failure.
2204 * Cannot be called within a int, but can be interrupted.
Paul Mundt20c2df82007-07-20 10:11:58 +09002205 * The @ctor is run when new pages are allocated by the cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 *
2207 * @name must be valid until the cache is destroyed. This implies that
Andrew Mortona737b3e2006-03-22 00:08:11 -08002208 * the module calling this has to destroy the cache before getting unloaded.
2209 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002210 * The flags are
2211 *
2212 * %SLAB_POISON - Poison the slab with a known test pattern (a5a5a5a5)
2213 * to catch references to uninitialised memory.
2214 *
2215 * %SLAB_RED_ZONE - Insert `Red' zones around the allocated memory to check
2216 * for buffer overruns.
2217 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 * %SLAB_HWCACHE_ALIGN - Align the objects in this cache to a hardware
2219 * cacheline. This can be beneficial if you're counting cycles as closely
2220 * as davem.
2221 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002222struct kmem_cache *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223kmem_cache_create (const char *name, size_t size, size_t align,
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002224 unsigned long flags, void (*ctor)(void *))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225{
2226 size_t left_over, slab_size, ralign;
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07002227 struct kmem_cache *cachep = NULL, *pc;
Pekka Enberg83b519e2009-06-10 19:40:04 +03002228 gfp_t gfp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229
2230 /*
2231 * Sanity checks... these are all serious usage bugs.
2232 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002233 if (!name || in_interrupt() || (size < BYTES_PER_WORD) ||
Paul Mundt20c2df82007-07-20 10:11:58 +09002234 size > KMALLOC_MAX_SIZE) {
Harvey Harrisond40cee22008-04-30 00:55:07 -07002235 printk(KERN_ERR "%s: Early error in slab %s\n", __func__,
Andrew Mortona737b3e2006-03-22 00:08:11 -08002236 name);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002237 BUG();
2238 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239
Ravikiran G Thirumalaif0188f42006-02-10 01:51:13 -08002240 /*
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002241 * We use cache_chain_mutex to ensure a consistent view of
Rusty Russell174596a2009-01-01 10:12:29 +10302242 * cpu_online_mask as well. Please see cpuup_callback
Ravikiran G Thirumalaif0188f42006-02-10 01:51:13 -08002243 */
Pekka Enberg83b519e2009-06-10 19:40:04 +03002244 if (slab_is_available()) {
2245 get_online_cpus();
2246 mutex_lock(&cache_chain_mutex);
2247 }
Andrew Morton4f12bb42005-11-07 00:58:00 -08002248
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07002249 list_for_each_entry(pc, &cache_chain, next) {
Andrew Morton4f12bb42005-11-07 00:58:00 -08002250 char tmp;
2251 int res;
2252
2253 /*
2254 * This happens when the module gets unloaded and doesn't
2255 * destroy its slab cache and no-one else reuses the vmalloc
2256 * area of the module. Print a warning.
2257 */
Andrew Morton138ae662006-12-06 20:36:41 -08002258 res = probe_kernel_address(pc->name, tmp);
Andrew Morton4f12bb42005-11-07 00:58:00 -08002259 if (res) {
matzeb4169522007-05-06 14:49:52 -07002260 printk(KERN_ERR
2261 "SLAB: cache with size %d has lost its name\n",
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002262 pc->buffer_size);
Andrew Morton4f12bb42005-11-07 00:58:00 -08002263 continue;
2264 }
2265
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002266 if (!strcmp(pc->name, name)) {
matzeb4169522007-05-06 14:49:52 -07002267 printk(KERN_ERR
2268 "kmem_cache_create: duplicate cache %s\n", name);
Andrew Morton4f12bb42005-11-07 00:58:00 -08002269 dump_stack();
2270 goto oops;
2271 }
2272 }
2273
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274#if DEBUG
2275 WARN_ON(strchr(name, ' ')); /* It confuses parsers */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002276#if FORCED_DEBUG
2277 /*
2278 * Enable redzoning and last user accounting, except for caches with
2279 * large objects, if the increased size would increase the object size
2280 * above the next power of two: caches with object sizes just above a
2281 * power of two have a significant amount of internal fragmentation.
2282 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002283 if (size < 4096 || fls(size - 1) == fls(size-1 + REDZONE_ALIGN +
2284 2 * sizeof(unsigned long long)))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002285 flags |= SLAB_RED_ZONE | SLAB_STORE_USER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 if (!(flags & SLAB_DESTROY_BY_RCU))
2287 flags |= SLAB_POISON;
2288#endif
2289 if (flags & SLAB_DESTROY_BY_RCU)
2290 BUG_ON(flags & SLAB_POISON);
2291#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002292 /*
Andrew Mortona737b3e2006-03-22 00:08:11 -08002293 * Always checks flags, a caller might be expecting debug support which
2294 * isn't available.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 */
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002296 BUG_ON(flags & ~CREATE_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297
Andrew Mortona737b3e2006-03-22 00:08:11 -08002298 /*
2299 * Check that size is in terms of words. This is needed to avoid
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300 * unaligned accesses for some archs when redzoning is used, and makes
2301 * sure any on-slab bufctl's are also correctly aligned.
2302 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002303 if (size & (BYTES_PER_WORD - 1)) {
2304 size += (BYTES_PER_WORD - 1);
2305 size &= ~(BYTES_PER_WORD - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 }
2307
Andrew Mortona737b3e2006-03-22 00:08:11 -08002308 /* calculate the final buffer alignment: */
2309
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 /* 1) arch recommendation: can be overridden for debug */
2311 if (flags & SLAB_HWCACHE_ALIGN) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002312 /*
2313 * Default alignment: as specified by the arch code. Except if
2314 * an object is really small, then squeeze multiple objects into
2315 * one cacheline.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002316 */
2317 ralign = cache_line_size();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002318 while (size <= ralign / 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 ralign /= 2;
2320 } else {
2321 ralign = BYTES_PER_WORD;
2322 }
Pekka Enbergca5f9702006-09-25 23:31:25 -07002323
2324 /*
David Woodhouse87a927c2007-07-04 21:26:44 -04002325 * Redzoning and user store require word alignment or possibly larger.
2326 * Note this will be overridden by architecture or caller mandated
2327 * alignment if either is greater than BYTES_PER_WORD.
Pekka Enbergca5f9702006-09-25 23:31:25 -07002328 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002329 if (flags & SLAB_STORE_USER)
2330 ralign = BYTES_PER_WORD;
2331
2332 if (flags & SLAB_RED_ZONE) {
2333 ralign = REDZONE_ALIGN;
2334 /* If redzoning, ensure that the second redzone is suitably
2335 * aligned, by adjusting the object size accordingly. */
2336 size += REDZONE_ALIGN - 1;
2337 size &= ~(REDZONE_ALIGN - 1);
2338 }
Pekka Enbergca5f9702006-09-25 23:31:25 -07002339
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002340 /* 2) arch mandated alignment */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 if (ralign < ARCH_SLAB_MINALIGN) {
2342 ralign = ARCH_SLAB_MINALIGN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 }
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002344 /* 3) caller mandated alignment */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 if (ralign < align) {
2346 ralign = align;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347 }
Pekka Enberg3ff84a72011-02-14 17:46:21 +02002348 /* disable debug if necessary */
2349 if (ralign > __alignof__(unsigned long long))
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002350 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002351 /*
Pekka Enbergca5f9702006-09-25 23:31:25 -07002352 * 4) Store it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353 */
2354 align = ralign;
2355
Pekka Enberg83b519e2009-06-10 19:40:04 +03002356 if (slab_is_available())
2357 gfp = GFP_KERNEL;
2358 else
2359 gfp = GFP_NOWAIT;
2360
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361 /* Get cache's description obj. */
Pekka Enberg83b519e2009-06-10 19:40:04 +03002362 cachep = kmem_cache_zalloc(&cache_cache, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 if (!cachep)
Andrew Morton4f12bb42005-11-07 00:58:00 -08002364 goto oops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365
Eric Dumazetb56efcf2011-07-20 19:04:23 +02002366 cachep->nodelists = (struct kmem_list3 **)&cachep->array[nr_cpu_ids];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367#if DEBUG
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002368 cachep->obj_size = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369
Pekka Enbergca5f9702006-09-25 23:31:25 -07002370 /*
2371 * Both debugging options require word-alignment which is calculated
2372 * into align above.
2373 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 if (flags & SLAB_RED_ZONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 /* add space for red zone words */
Pekka Enberg3ff84a72011-02-14 17:46:21 +02002376 cachep->obj_offset += sizeof(unsigned long long);
2377 size += 2 * sizeof(unsigned long long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378 }
2379 if (flags & SLAB_STORE_USER) {
Pekka Enbergca5f9702006-09-25 23:31:25 -07002380 /* user store requires one word storage behind the end of
David Woodhouse87a927c2007-07-04 21:26:44 -04002381 * the real object. But if the second red zone needs to be
2382 * aligned to 64 bits, we must allow that much space.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002384 if (flags & SLAB_RED_ZONE)
2385 size += REDZONE_ALIGN;
2386 else
2387 size += BYTES_PER_WORD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 }
2389#if FORCED_DEBUG && defined(CONFIG_DEBUG_PAGEALLOC)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002390 if (size >= malloc_sizes[INDEX_L3 + 1].cs_size
Carsten Otte1ab335d2010-08-06 18:19:22 +02002391 && cachep->obj_size > cache_line_size() && ALIGN(size, align) < PAGE_SIZE) {
2392 cachep->obj_offset += PAGE_SIZE - ALIGN(size, align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 size = PAGE_SIZE;
2394 }
2395#endif
2396#endif
2397
Ingo Molnare0a42722006-06-23 02:03:46 -07002398 /*
2399 * Determine if the slab management is 'on' or 'off' slab.
2400 * (bootstrapping cannot cope with offslab caches so don't do
Catalin Marinase7cb55b2009-10-28 13:33:08 +00002401 * it too early on. Always use on-slab management when
2402 * SLAB_NOLEAKTRACE to avoid recursive calls into kmemleak)
Ingo Molnare0a42722006-06-23 02:03:46 -07002403 */
Catalin Marinase7cb55b2009-10-28 13:33:08 +00002404 if ((size >= (PAGE_SIZE >> 3)) && !slab_early_init &&
2405 !(flags & SLAB_NOLEAKTRACE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 /*
2407 * Size is large, assume best to place the slab management obj
2408 * off-slab (should allow better packing of objs).
2409 */
2410 flags |= CFLGS_OFF_SLAB;
2411
2412 size = ALIGN(size, align);
2413
Linus Torvaldsf78bb8a2006-03-08 10:33:05 -08002414 left_over = calculate_slab_order(cachep, size, align, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415
2416 if (!cachep->num) {
matzeb4169522007-05-06 14:49:52 -07002417 printk(KERN_ERR
2418 "kmem_cache_create: couldn't create cache %s.\n", name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419 kmem_cache_free(&cache_cache, cachep);
2420 cachep = NULL;
Andrew Morton4f12bb42005-11-07 00:58:00 -08002421 goto oops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002423 slab_size = ALIGN(cachep->num * sizeof(kmem_bufctl_t)
2424 + sizeof(struct slab), align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425
2426 /*
2427 * If the slab has been placed off-slab, and we have enough space then
2428 * move it on-slab. This is at the expense of any extra colouring.
2429 */
2430 if (flags & CFLGS_OFF_SLAB && left_over >= slab_size) {
2431 flags &= ~CFLGS_OFF_SLAB;
2432 left_over -= slab_size;
2433 }
2434
2435 if (flags & CFLGS_OFF_SLAB) {
2436 /* really off slab. No need for manual alignment */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002437 slab_size =
2438 cachep->num * sizeof(kmem_bufctl_t) + sizeof(struct slab);
Ron Lee67461362009-05-22 04:58:22 +09302439
2440#ifdef CONFIG_PAGE_POISONING
2441 /* If we're going to use the generic kernel_map_pages()
2442 * poisoning, then it's going to smash the contents of
2443 * the redzone and userword anyhow, so switch them off.
2444 */
2445 if (size % PAGE_SIZE == 0 && flags & SLAB_POISON)
2446 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
2447#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448 }
2449
2450 cachep->colour_off = cache_line_size();
2451 /* Offset must be a multiple of the alignment. */
2452 if (cachep->colour_off < align)
2453 cachep->colour_off = align;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002454 cachep->colour = left_over / cachep->colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455 cachep->slab_size = slab_size;
2456 cachep->flags = flags;
2457 cachep->gfpflags = 0;
Christoph Lameter4b51d662007-02-10 01:43:10 -08002458 if (CONFIG_ZONE_DMA_FLAG && (flags & SLAB_CACHE_DMA))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459 cachep->gfpflags |= GFP_DMA;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002460 cachep->buffer_size = size;
Eric Dumazet6a2d7a92006-12-13 00:34:27 -08002461 cachep->reciprocal_buffer_size = reciprocal_value(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002463 if (flags & CFLGS_OFF_SLAB) {
Victor Fuscob2d55072005-09-10 00:26:36 -07002464 cachep->slabp_cache = kmem_find_general_cachep(slab_size, 0u);
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002465 /*
2466 * This is a possibility for one of the malloc_sizes caches.
2467 * But since we go off slab only for object size greater than
2468 * PAGE_SIZE/8, and malloc_sizes gets created in ascending order,
2469 * this should not happen at all.
2470 * But leave a BUG_ON for some lucky dude.
2471 */
Christoph Lameter6cb8f912007-07-17 04:03:22 -07002472 BUG_ON(ZERO_OR_NULL_PTR(cachep->slabp_cache));
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002473 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002474 cachep->ctor = ctor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 cachep->name = name;
2476
Pekka Enberg83b519e2009-06-10 19:40:04 +03002477 if (setup_cpu_cache(cachep, gfp)) {
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002478 __kmem_cache_destroy(cachep);
2479 cachep = NULL;
2480 goto oops;
2481 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482
Peter Zijlstra83835b32011-07-22 15:26:05 +02002483 if (flags & SLAB_DEBUG_OBJECTS) {
2484 /*
2485 * Would deadlock through slab_destroy()->call_rcu()->
2486 * debug_object_activate()->kmem_cache_alloc().
2487 */
2488 WARN_ON_ONCE(flags & SLAB_DESTROY_BY_RCU);
2489
2490 slab_set_debugobj_lock_classes(cachep);
2491 }
2492
Linus Torvalds1da177e2005-04-16 15:20:36 -07002493 /* cache setup completed, link it into the list */
2494 list_add(&cachep->next, &cache_chain);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002495oops:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496 if (!cachep && (flags & SLAB_PANIC))
2497 panic("kmem_cache_create(): failed to create slab `%s'\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002498 name);
Pekka Enberg83b519e2009-06-10 19:40:04 +03002499 if (slab_is_available()) {
2500 mutex_unlock(&cache_chain_mutex);
2501 put_online_cpus();
2502 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503 return cachep;
2504}
2505EXPORT_SYMBOL(kmem_cache_create);
2506
2507#if DEBUG
2508static void check_irq_off(void)
2509{
2510 BUG_ON(!irqs_disabled());
2511}
2512
2513static void check_irq_on(void)
2514{
2515 BUG_ON(irqs_disabled());
2516}
2517
Pekka Enberg343e0d72006-02-01 03:05:50 -08002518static void check_spinlock_acquired(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519{
2520#ifdef CONFIG_SMP
2521 check_irq_off();
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07002522 assert_spin_locked(&cachep->nodelists[numa_mem_id()]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523#endif
2524}
Christoph Lametere498be72005-09-09 13:03:32 -07002525
Pekka Enberg343e0d72006-02-01 03:05:50 -08002526static void check_spinlock_acquired_node(struct kmem_cache *cachep, int node)
Christoph Lametere498be72005-09-09 13:03:32 -07002527{
2528#ifdef CONFIG_SMP
2529 check_irq_off();
2530 assert_spin_locked(&cachep->nodelists[node]->list_lock);
2531#endif
2532}
2533
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534#else
2535#define check_irq_off() do { } while(0)
2536#define check_irq_on() do { } while(0)
2537#define check_spinlock_acquired(x) do { } while(0)
Christoph Lametere498be72005-09-09 13:03:32 -07002538#define check_spinlock_acquired_node(x, y) do { } while(0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539#endif
2540
Christoph Lameteraab22072006-03-22 00:09:06 -08002541static void drain_array(struct kmem_cache *cachep, struct kmem_list3 *l3,
2542 struct array_cache *ac,
2543 int force, int node);
2544
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545static void do_drain(void *arg)
2546{
Andrew Mortona737b3e2006-03-22 00:08:11 -08002547 struct kmem_cache *cachep = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 struct array_cache *ac;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07002549 int node = numa_mem_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550
2551 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002552 ac = cpu_cache_get(cachep);
Christoph Lameterff694162005-09-22 21:44:02 -07002553 spin_lock(&cachep->nodelists[node]->list_lock);
2554 free_block(cachep, ac->entry, ac->avail, node);
2555 spin_unlock(&cachep->nodelists[node]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556 ac->avail = 0;
2557}
2558
Pekka Enberg343e0d72006-02-01 03:05:50 -08002559static void drain_cpu_caches(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560{
Christoph Lametere498be72005-09-09 13:03:32 -07002561 struct kmem_list3 *l3;
2562 int node;
2563
Jens Axboe15c8b6c2008-05-09 09:39:44 +02002564 on_each_cpu(do_drain, cachep, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002565 check_irq_on();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002566 for_each_online_node(node) {
Christoph Lametere498be72005-09-09 13:03:32 -07002567 l3 = cachep->nodelists[node];
Roland Dreiera4523a82006-05-15 11:41:00 -07002568 if (l3 && l3->alien)
2569 drain_alien_cache(cachep, l3->alien);
2570 }
2571
2572 for_each_online_node(node) {
2573 l3 = cachep->nodelists[node];
2574 if (l3)
Christoph Lameteraab22072006-03-22 00:09:06 -08002575 drain_array(cachep, l3, l3->shared, 1, node);
Christoph Lametere498be72005-09-09 13:03:32 -07002576 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577}
2578
Christoph Lametered11d9e2006-06-30 01:55:45 -07002579/*
2580 * Remove slabs from the list of free slabs.
2581 * Specify the number of slabs to drain in tofree.
2582 *
2583 * Returns the actual number of slabs released.
2584 */
2585static int drain_freelist(struct kmem_cache *cache,
2586 struct kmem_list3 *l3, int tofree)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587{
Christoph Lametered11d9e2006-06-30 01:55:45 -07002588 struct list_head *p;
2589 int nr_freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 struct slab *slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591
Christoph Lametered11d9e2006-06-30 01:55:45 -07002592 nr_freed = 0;
2593 while (nr_freed < tofree && !list_empty(&l3->slabs_free)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594
Christoph Lametered11d9e2006-06-30 01:55:45 -07002595 spin_lock_irq(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07002596 p = l3->slabs_free.prev;
Christoph Lametered11d9e2006-06-30 01:55:45 -07002597 if (p == &l3->slabs_free) {
2598 spin_unlock_irq(&l3->list_lock);
2599 goto out;
2600 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601
Christoph Lametered11d9e2006-06-30 01:55:45 -07002602 slabp = list_entry(p, struct slab, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603#if DEBUG
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002604 BUG_ON(slabp->inuse);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605#endif
2606 list_del(&slabp->list);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002607 /*
2608 * Safe to drop the lock. The slab is no longer linked
2609 * to the cache.
2610 */
2611 l3->free_objects -= cache->num;
Christoph Lametere498be72005-09-09 13:03:32 -07002612 spin_unlock_irq(&l3->list_lock);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002613 slab_destroy(cache, slabp);
2614 nr_freed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615 }
Christoph Lametered11d9e2006-06-30 01:55:45 -07002616out:
2617 return nr_freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618}
2619
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002620/* Called with cache_chain_mutex held to protect against cpu hotplug */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002621static int __cache_shrink(struct kmem_cache *cachep)
Christoph Lametere498be72005-09-09 13:03:32 -07002622{
2623 int ret = 0, i = 0;
2624 struct kmem_list3 *l3;
2625
2626 drain_cpu_caches(cachep);
2627
2628 check_irq_on();
2629 for_each_online_node(i) {
2630 l3 = cachep->nodelists[i];
Christoph Lametered11d9e2006-06-30 01:55:45 -07002631 if (!l3)
2632 continue;
2633
2634 drain_freelist(cachep, l3, l3->free_objects);
2635
2636 ret += !list_empty(&l3->slabs_full) ||
2637 !list_empty(&l3->slabs_partial);
Christoph Lametere498be72005-09-09 13:03:32 -07002638 }
2639 return (ret ? 1 : 0);
2640}
2641
Linus Torvalds1da177e2005-04-16 15:20:36 -07002642/**
2643 * kmem_cache_shrink - Shrink a cache.
2644 * @cachep: The cache to shrink.
2645 *
2646 * Releases as many slabs as possible for a cache.
2647 * To help debugging, a zero exit status indicates all slabs were released.
2648 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002649int kmem_cache_shrink(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650{
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002651 int ret;
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002652 BUG_ON(!cachep || in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002654 get_online_cpus();
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002655 mutex_lock(&cache_chain_mutex);
2656 ret = __cache_shrink(cachep);
2657 mutex_unlock(&cache_chain_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002658 put_online_cpus();
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002659 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660}
2661EXPORT_SYMBOL(kmem_cache_shrink);
2662
2663/**
2664 * kmem_cache_destroy - delete a cache
2665 * @cachep: the cache to destroy
2666 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08002667 * Remove a &struct kmem_cache object from the slab cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668 *
2669 * It is expected this function will be called by a module when it is
2670 * unloaded. This will remove the cache completely, and avoid a duplicate
2671 * cache being allocated each time a module is loaded and unloaded, if the
2672 * module doesn't have persistent in-kernel storage across loads and unloads.
2673 *
2674 * The cache must be empty before calling this function.
2675 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002676 * The caller must guarantee that no one will allocate memory from the cache
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677 * during the kmem_cache_destroy().
2678 */
Alexey Dobriyan133d2052006-09-27 01:49:41 -07002679void kmem_cache_destroy(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680{
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002681 BUG_ON(!cachep || in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 /* Find the cache in the chain of caches. */
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002684 get_online_cpus();
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002685 mutex_lock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 /*
2687 * the chain is never empty, cache_cache is never destroyed
2688 */
2689 list_del(&cachep->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690 if (__cache_shrink(cachep)) {
2691 slab_error(cachep, "Can't free all objects");
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002692 list_add(&cachep->next, &cache_chain);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002693 mutex_unlock(&cache_chain_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002694 put_online_cpus();
Alexey Dobriyan133d2052006-09-27 01:49:41 -07002695 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696 }
2697
2698 if (unlikely(cachep->flags & SLAB_DESTROY_BY_RCU))
Paul E. McKenney7ed9f7e2009-06-25 12:31:37 -07002699 rcu_barrier();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700
Christoph Lameter117f6eb2006-09-25 23:31:37 -07002701 __kmem_cache_destroy(cachep);
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002702 mutex_unlock(&cache_chain_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002703 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704}
2705EXPORT_SYMBOL(kmem_cache_destroy);
2706
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002707/*
2708 * Get the memory for a slab management obj.
2709 * For a slab cache when the slab descriptor is off-slab, slab descriptors
2710 * always come from malloc_sizes caches. The slab descriptor cannot
2711 * come from the same cache which is getting created because,
2712 * when we are searching for an appropriate cache for these
2713 * descriptors in kmem_cache_create, we search through the malloc_sizes array.
2714 * If we are creating a malloc_sizes cache here it would not be visible to
2715 * kmem_find_general_cachep till the initialization is complete.
2716 * Hence we cannot have slabp_cache same as the original cache.
2717 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002718static struct slab *alloc_slabmgmt(struct kmem_cache *cachep, void *objp,
Ravikiran G Thirumalai5b74ada2006-04-10 22:52:53 -07002719 int colour_off, gfp_t local_flags,
2720 int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721{
2722 struct slab *slabp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002723
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724 if (OFF_SLAB(cachep)) {
2725 /* Slab management obj is off-slab. */
Ravikiran G Thirumalai5b74ada2006-04-10 22:52:53 -07002726 slabp = kmem_cache_alloc_node(cachep->slabp_cache,
Pekka Enberg8759ec52008-11-26 10:01:31 +02002727 local_flags, nodeid);
Catalin Marinasd5cff632009-06-11 13:22:40 +01002728 /*
2729 * If the first object in the slab is leaked (it's allocated
2730 * but no one has a reference to it), we want to make sure
2731 * kmemleak does not treat the ->s_mem pointer as a reference
2732 * to the object. Otherwise we will not report the leak.
2733 */
Catalin Marinasc017b4b2009-10-28 13:33:09 +00002734 kmemleak_scan_area(&slabp->list, sizeof(struct list_head),
2735 local_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736 if (!slabp)
2737 return NULL;
2738 } else {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002739 slabp = objp + colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740 colour_off += cachep->slab_size;
2741 }
2742 slabp->inuse = 0;
2743 slabp->colouroff = colour_off;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002744 slabp->s_mem = objp + colour_off;
Ravikiran G Thirumalai5b74ada2006-04-10 22:52:53 -07002745 slabp->nodeid = nodeid;
Marcin Slusarze51bfd02008-02-10 11:21:54 +01002746 slabp->free = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747 return slabp;
2748}
2749
2750static inline kmem_bufctl_t *slab_bufctl(struct slab *slabp)
2751{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002752 return (kmem_bufctl_t *) (slabp + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753}
2754
Pekka Enberg343e0d72006-02-01 03:05:50 -08002755static void cache_init_objs(struct kmem_cache *cachep,
Christoph Lametera35afb82007-05-16 22:10:57 -07002756 struct slab *slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757{
2758 int i;
2759
2760 for (i = 0; i < cachep->num; i++) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002761 void *objp = index_to_obj(cachep, slabp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762#if DEBUG
2763 /* need to poison the objs? */
2764 if (cachep->flags & SLAB_POISON)
2765 poison_obj(cachep, objp, POISON_FREE);
2766 if (cachep->flags & SLAB_STORE_USER)
2767 *dbg_userword(cachep, objp) = NULL;
2768
2769 if (cachep->flags & SLAB_RED_ZONE) {
2770 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2771 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2772 }
2773 /*
Andrew Mortona737b3e2006-03-22 00:08:11 -08002774 * Constructors are not allowed to allocate memory from the same
2775 * cache which they are a constructor for. Otherwise, deadlock.
2776 * They must also be threaded.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777 */
2778 if (cachep->ctor && !(cachep->flags & SLAB_POISON))
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002779 cachep->ctor(objp + obj_offset(cachep));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780
2781 if (cachep->flags & SLAB_RED_ZONE) {
2782 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
2783 slab_error(cachep, "constructor overwrote the"
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002784 " end of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
2786 slab_error(cachep, "constructor overwrote the"
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002787 " start of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 }
Andrew Mortona737b3e2006-03-22 00:08:11 -08002789 if ((cachep->buffer_size % PAGE_SIZE) == 0 &&
2790 OFF_SLAB(cachep) && cachep->flags & SLAB_POISON)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002791 kernel_map_pages(virt_to_page(objp),
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002792 cachep->buffer_size / PAGE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793#else
2794 if (cachep->ctor)
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002795 cachep->ctor(objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796#endif
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002797 slab_bufctl(slabp)[i] = i + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002799 slab_bufctl(slabp)[i - 1] = BUFCTL_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800}
2801
Pekka Enberg343e0d72006-02-01 03:05:50 -08002802static void kmem_flagcheck(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803{
Christoph Lameter4b51d662007-02-10 01:43:10 -08002804 if (CONFIG_ZONE_DMA_FLAG) {
2805 if (flags & GFP_DMA)
2806 BUG_ON(!(cachep->gfpflags & GFP_DMA));
2807 else
2808 BUG_ON(cachep->gfpflags & GFP_DMA);
2809 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810}
2811
Andrew Mortona737b3e2006-03-22 00:08:11 -08002812static void *slab_get_obj(struct kmem_cache *cachep, struct slab *slabp,
2813 int nodeid)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002814{
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002815 void *objp = index_to_obj(cachep, slabp, slabp->free);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002816 kmem_bufctl_t next;
2817
2818 slabp->inuse++;
2819 next = slab_bufctl(slabp)[slabp->free];
2820#if DEBUG
2821 slab_bufctl(slabp)[slabp->free] = BUFCTL_FREE;
2822 WARN_ON(slabp->nodeid != nodeid);
2823#endif
2824 slabp->free = next;
2825
2826 return objp;
2827}
2828
Andrew Mortona737b3e2006-03-22 00:08:11 -08002829static void slab_put_obj(struct kmem_cache *cachep, struct slab *slabp,
2830 void *objp, int nodeid)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002831{
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002832 unsigned int objnr = obj_to_index(cachep, slabp, objp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002833
2834#if DEBUG
2835 /* Verify that the slab belongs to the intended node */
2836 WARN_ON(slabp->nodeid != nodeid);
2837
Al Viro871751e2006-03-25 03:06:39 -08002838 if (slab_bufctl(slabp)[objnr] + 1 <= SLAB_LIMIT + 1) {
Matthew Dobson78d382d2006-02-01 03:05:47 -08002839 printk(KERN_ERR "slab: double free detected in cache "
Andrew Mortona737b3e2006-03-22 00:08:11 -08002840 "'%s', objp %p\n", cachep->name, objp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002841 BUG();
2842 }
2843#endif
2844 slab_bufctl(slabp)[objnr] = slabp->free;
2845 slabp->free = objnr;
2846 slabp->inuse--;
2847}
2848
Pekka Enberg47768742006-06-23 02:03:07 -07002849/*
2850 * Map pages beginning at addr to the given cache and slab. This is required
2851 * for the slab allocator to be able to lookup the cache and slab of a
Nick Pigginccd35fb2011-01-07 17:49:17 +11002852 * virtual address for kfree, ksize, and slab debugging.
Pekka Enberg47768742006-06-23 02:03:07 -07002853 */
2854static void slab_map_pages(struct kmem_cache *cache, struct slab *slab,
2855 void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856{
Pekka Enberg47768742006-06-23 02:03:07 -07002857 int nr_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858 struct page *page;
2859
Pekka Enberg47768742006-06-23 02:03:07 -07002860 page = virt_to_page(addr);
Nick Piggin84097512006-03-22 00:08:34 -08002861
Pekka Enberg47768742006-06-23 02:03:07 -07002862 nr_pages = 1;
Nick Piggin84097512006-03-22 00:08:34 -08002863 if (likely(!PageCompound(page)))
Pekka Enberg47768742006-06-23 02:03:07 -07002864 nr_pages <<= cache->gfporder;
2865
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866 do {
Pekka Enberg47768742006-06-23 02:03:07 -07002867 page_set_cache(page, cache);
2868 page_set_slab(page, slab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869 page++;
Pekka Enberg47768742006-06-23 02:03:07 -07002870 } while (--nr_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871}
2872
2873/*
2874 * Grow (by 1) the number of slabs within a cache. This is called by
2875 * kmem_cache_alloc() when there are no active objs left in a cache.
2876 */
Christoph Lameter3c517a62006-12-06 20:33:29 -08002877static int cache_grow(struct kmem_cache *cachep,
2878 gfp_t flags, int nodeid, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002880 struct slab *slabp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002881 size_t offset;
2882 gfp_t local_flags;
Christoph Lametere498be72005-09-09 13:03:32 -07002883 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884
Andrew Mortona737b3e2006-03-22 00:08:11 -08002885 /*
2886 * Be lazy and only check for valid flags here, keeping it out of the
2887 * critical path in kmem_cache_alloc().
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888 */
Christoph Lameter6cb06222007-10-16 01:25:41 -07002889 BUG_ON(flags & GFP_SLAB_BUG_MASK);
2890 local_flags = flags & (GFP_CONSTRAINT_MASK|GFP_RECLAIM_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002892 /* Take the l3 list lock to change the colour_next on this node */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893 check_irq_off();
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002894 l3 = cachep->nodelists[nodeid];
2895 spin_lock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896
2897 /* Get colour for the slab, and cal the next value. */
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002898 offset = l3->colour_next;
2899 l3->colour_next++;
2900 if (l3->colour_next >= cachep->colour)
2901 l3->colour_next = 0;
2902 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002903
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002904 offset *= cachep->colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905
2906 if (local_flags & __GFP_WAIT)
2907 local_irq_enable();
2908
2909 /*
2910 * The test for missing atomic flag is performed here, rather than
2911 * the more obvious place, simply to reduce the critical path length
2912 * in kmem_cache_alloc(). If a caller is seriously mis-behaving they
2913 * will eventually be caught here (where it matters).
2914 */
2915 kmem_flagcheck(cachep, flags);
2916
Andrew Mortona737b3e2006-03-22 00:08:11 -08002917 /*
2918 * Get mem for the objs. Attempt to allocate a physical page from
2919 * 'nodeid'.
Christoph Lametere498be72005-09-09 13:03:32 -07002920 */
Christoph Lameter3c517a62006-12-06 20:33:29 -08002921 if (!objp)
Andrew Mortonb8c1c5d2007-07-24 12:02:40 -07002922 objp = kmem_getpages(cachep, local_flags, nodeid);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002923 if (!objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002924 goto failed;
2925
2926 /* Get slab management. */
Christoph Lameter3c517a62006-12-06 20:33:29 -08002927 slabp = alloc_slabmgmt(cachep, objp, offset,
Christoph Lameter6cb06222007-10-16 01:25:41 -07002928 local_flags & ~GFP_CONSTRAINT_MASK, nodeid);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002929 if (!slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930 goto opps1;
2931
Pekka Enberg47768742006-06-23 02:03:07 -07002932 slab_map_pages(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933
Christoph Lametera35afb82007-05-16 22:10:57 -07002934 cache_init_objs(cachep, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935
2936 if (local_flags & __GFP_WAIT)
2937 local_irq_disable();
2938 check_irq_off();
Christoph Lametere498be72005-09-09 13:03:32 -07002939 spin_lock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940
2941 /* Make slab active. */
Christoph Lametere498be72005-09-09 13:03:32 -07002942 list_add_tail(&slabp->list, &(l3->slabs_free));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943 STATS_INC_GROWN(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07002944 l3->free_objects += cachep->num;
2945 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 return 1;
Andrew Mortona737b3e2006-03-22 00:08:11 -08002947opps1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948 kmem_freepages(cachep, objp);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002949failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950 if (local_flags & __GFP_WAIT)
2951 local_irq_disable();
2952 return 0;
2953}
2954
2955#if DEBUG
2956
2957/*
2958 * Perform extra freeing checks:
2959 * - detect bad pointers.
2960 * - POISON/RED_ZONE checking
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961 */
2962static void kfree_debugcheck(const void *objp)
2963{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002964 if (!virt_addr_valid(objp)) {
2965 printk(KERN_ERR "kfree_debugcheck: out of range ptr %lxh.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002966 (unsigned long)objp);
2967 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969}
2970
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002971static inline void verify_redzone_free(struct kmem_cache *cache, void *obj)
2972{
David Woodhouseb46b8f12007-05-08 00:22:59 -07002973 unsigned long long redzone1, redzone2;
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002974
2975 redzone1 = *dbg_redzone1(cache, obj);
2976 redzone2 = *dbg_redzone2(cache, obj);
2977
2978 /*
2979 * Redzone is ok.
2980 */
2981 if (redzone1 == RED_ACTIVE && redzone2 == RED_ACTIVE)
2982 return;
2983
2984 if (redzone1 == RED_INACTIVE && redzone2 == RED_INACTIVE)
2985 slab_error(cache, "double free detected");
2986 else
2987 slab_error(cache, "memory outside object was overwritten");
2988
David Woodhouseb46b8f12007-05-08 00:22:59 -07002989 printk(KERN_ERR "%p: redzone 1:0x%llx, redzone 2:0x%llx.\n",
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002990 obj, redzone1, redzone2);
2991}
2992
Pekka Enberg343e0d72006-02-01 03:05:50 -08002993static void *cache_free_debugcheck(struct kmem_cache *cachep, void *objp,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002994 void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995{
2996 struct page *page;
2997 unsigned int objnr;
2998 struct slab *slabp;
2999
Matthew Wilcox80cbd912007-11-29 12:05:13 -07003000 BUG_ON(virt_to_cache(objp) != cachep);
3001
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003002 objp -= obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003003 kfree_debugcheck(objp);
Christoph Lameterb49af682007-05-06 14:49:41 -07003004 page = virt_to_head_page(objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005
Pekka Enberg065d41c2005-11-13 16:06:46 -08003006 slabp = page_get_slab(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007
3008 if (cachep->flags & SLAB_RED_ZONE) {
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07003009 verify_redzone_free(cachep, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
3011 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
3012 }
3013 if (cachep->flags & SLAB_STORE_USER)
3014 *dbg_userword(cachep, objp) = caller;
3015
Pekka Enberg8fea4e92006-03-22 00:08:10 -08003016 objnr = obj_to_index(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017
3018 BUG_ON(objnr >= cachep->num);
Pekka Enberg8fea4e92006-03-22 00:08:10 -08003019 BUG_ON(objp != index_to_obj(cachep, slabp, objnr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020
Al Viro871751e2006-03-25 03:06:39 -08003021#ifdef CONFIG_DEBUG_SLAB_LEAK
3022 slab_bufctl(slabp)[objnr] = BUFCTL_FREE;
3023#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024 if (cachep->flags & SLAB_POISON) {
3025#ifdef CONFIG_DEBUG_PAGEALLOC
Andrew Mortona737b3e2006-03-22 00:08:11 -08003026 if ((cachep->buffer_size % PAGE_SIZE)==0 && OFF_SLAB(cachep)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027 store_stackinfo(cachep, objp, (unsigned long)caller);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003028 kernel_map_pages(virt_to_page(objp),
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003029 cachep->buffer_size / PAGE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030 } else {
3031 poison_obj(cachep, objp, POISON_FREE);
3032 }
3033#else
3034 poison_obj(cachep, objp, POISON_FREE);
3035#endif
3036 }
3037 return objp;
3038}
3039
Pekka Enberg343e0d72006-02-01 03:05:50 -08003040static void check_slabp(struct kmem_cache *cachep, struct slab *slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041{
3042 kmem_bufctl_t i;
3043 int entries = 0;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003044
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045 /* Check slab's freelist to see if this obj is there. */
3046 for (i = slabp->free; i != BUFCTL_END; i = slab_bufctl(slabp)[i]) {
3047 entries++;
3048 if (entries > cachep->num || i >= cachep->num)
3049 goto bad;
3050 }
3051 if (entries != cachep->num - slabp->inuse) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08003052bad:
3053 printk(KERN_ERR "slab: Internal list corruption detected in "
3054 "cache '%s'(%d), slabp %p(%d). Hexdump:\n",
3055 cachep->name, cachep->num, slabp, slabp->inuse);
Sebastian Andrzej Siewiorfdde6ab2011-07-29 18:22:13 +02003056 print_hex_dump(KERN_ERR, "", DUMP_PREFIX_OFFSET, 16, 1, slabp,
3057 sizeof(*slabp) + cachep->num * sizeof(kmem_bufctl_t),
3058 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059 BUG();
3060 }
3061}
3062#else
3063#define kfree_debugcheck(x) do { } while(0)
3064#define cache_free_debugcheck(x,objp,z) (objp)
3065#define check_slabp(x,y) do { } while(0)
3066#endif
3067
Pekka Enberg343e0d72006-02-01 03:05:50 -08003068static void *cache_alloc_refill(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003069{
3070 int batchcount;
3071 struct kmem_list3 *l3;
3072 struct array_cache *ac;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07003073 int node;
3074
Andrew Mortona737b3e2006-03-22 00:08:11 -08003075retry:
Joe Korty6d2144d2008-03-05 15:04:59 -08003076 check_irq_off();
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003077 node = numa_mem_id();
Joe Korty6d2144d2008-03-05 15:04:59 -08003078 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079 batchcount = ac->batchcount;
3080 if (!ac->touched && batchcount > BATCHREFILL_LIMIT) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08003081 /*
3082 * If there was little recent activity on this cache, then
3083 * perform only a partial refill. Otherwise we could generate
3084 * refill bouncing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085 */
3086 batchcount = BATCHREFILL_LIMIT;
3087 }
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07003088 l3 = cachep->nodelists[node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089
Christoph Lametere498be72005-09-09 13:03:32 -07003090 BUG_ON(ac->avail > 0 || !l3);
3091 spin_lock(&l3->list_lock);
3092
Christoph Lameter3ded1752006-03-25 03:06:44 -08003093 /* See if we can refill from the shared array */
Nick Piggin44b57f12010-01-27 22:27:40 +11003094 if (l3->shared && transfer_objects(ac, l3->shared, batchcount)) {
3095 l3->shared->touched = 1;
Christoph Lameter3ded1752006-03-25 03:06:44 -08003096 goto alloc_done;
Nick Piggin44b57f12010-01-27 22:27:40 +11003097 }
Christoph Lameter3ded1752006-03-25 03:06:44 -08003098
Linus Torvalds1da177e2005-04-16 15:20:36 -07003099 while (batchcount > 0) {
3100 struct list_head *entry;
3101 struct slab *slabp;
3102 /* Get slab alloc is to come from. */
3103 entry = l3->slabs_partial.next;
3104 if (entry == &l3->slabs_partial) {
3105 l3->free_touched = 1;
3106 entry = l3->slabs_free.next;
3107 if (entry == &l3->slabs_free)
3108 goto must_grow;
3109 }
3110
3111 slabp = list_entry(entry, struct slab, list);
3112 check_slabp(cachep, slabp);
3113 check_spinlock_acquired(cachep);
Pekka Enberg714b8172007-05-06 14:49:03 -07003114
3115 /*
3116 * The slab was either on partial or free list so
3117 * there must be at least one object available for
3118 * allocation.
3119 */
roel kluin249b9f32008-10-29 17:18:07 -04003120 BUG_ON(slabp->inuse >= cachep->num);
Pekka Enberg714b8172007-05-06 14:49:03 -07003121
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122 while (slabp->inuse < cachep->num && batchcount--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003123 STATS_INC_ALLOCED(cachep);
3124 STATS_INC_ACTIVE(cachep);
3125 STATS_SET_HIGH(cachep);
3126
Matthew Dobson78d382d2006-02-01 03:05:47 -08003127 ac->entry[ac->avail++] = slab_get_obj(cachep, slabp,
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07003128 node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129 }
3130 check_slabp(cachep, slabp);
3131
3132 /* move slabp to correct slabp list: */
3133 list_del(&slabp->list);
3134 if (slabp->free == BUFCTL_END)
3135 list_add(&slabp->list, &l3->slabs_full);
3136 else
3137 list_add(&slabp->list, &l3->slabs_partial);
3138 }
3139
Andrew Mortona737b3e2006-03-22 00:08:11 -08003140must_grow:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141 l3->free_objects -= ac->avail;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003142alloc_done:
Christoph Lametere498be72005-09-09 13:03:32 -07003143 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144
3145 if (unlikely(!ac->avail)) {
3146 int x;
Christoph Lameter3c517a62006-12-06 20:33:29 -08003147 x = cache_grow(cachep, flags | GFP_THISNODE, node, NULL);
Christoph Lametere498be72005-09-09 13:03:32 -07003148
Andrew Mortona737b3e2006-03-22 00:08:11 -08003149 /* cache_grow can reenable interrupts, then ac could change. */
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003150 ac = cpu_cache_get(cachep);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003151 if (!x && ac->avail == 0) /* no objects in sight? abort */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152 return NULL;
3153
Andrew Mortona737b3e2006-03-22 00:08:11 -08003154 if (!ac->avail) /* objects refilled by interrupt? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003155 goto retry;
3156 }
3157 ac->touched = 1;
Christoph Lametere498be72005-09-09 13:03:32 -07003158 return ac->entry[--ac->avail];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003159}
3160
Andrew Mortona737b3e2006-03-22 00:08:11 -08003161static inline void cache_alloc_debugcheck_before(struct kmem_cache *cachep,
3162 gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163{
3164 might_sleep_if(flags & __GFP_WAIT);
3165#if DEBUG
3166 kmem_flagcheck(cachep, flags);
3167#endif
3168}
3169
3170#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08003171static void *cache_alloc_debugcheck_after(struct kmem_cache *cachep,
3172 gfp_t flags, void *objp, void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003174 if (!objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175 return objp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003176 if (cachep->flags & SLAB_POISON) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177#ifdef CONFIG_DEBUG_PAGEALLOC
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003178 if ((cachep->buffer_size % PAGE_SIZE) == 0 && OFF_SLAB(cachep))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003179 kernel_map_pages(virt_to_page(objp),
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003180 cachep->buffer_size / PAGE_SIZE, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003181 else
3182 check_poison_obj(cachep, objp);
3183#else
3184 check_poison_obj(cachep, objp);
3185#endif
3186 poison_obj(cachep, objp, POISON_INUSE);
3187 }
3188 if (cachep->flags & SLAB_STORE_USER)
3189 *dbg_userword(cachep, objp) = caller;
3190
3191 if (cachep->flags & SLAB_RED_ZONE) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08003192 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE ||
3193 *dbg_redzone2(cachep, objp) != RED_INACTIVE) {
3194 slab_error(cachep, "double free, or memory outside"
3195 " object was overwritten");
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003196 printk(KERN_ERR
David Woodhouseb46b8f12007-05-08 00:22:59 -07003197 "%p: redzone 1:0x%llx, redzone 2:0x%llx\n",
Andrew Mortona737b3e2006-03-22 00:08:11 -08003198 objp, *dbg_redzone1(cachep, objp),
3199 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200 }
3201 *dbg_redzone1(cachep, objp) = RED_ACTIVE;
3202 *dbg_redzone2(cachep, objp) = RED_ACTIVE;
3203 }
Al Viro871751e2006-03-25 03:06:39 -08003204#ifdef CONFIG_DEBUG_SLAB_LEAK
3205 {
3206 struct slab *slabp;
3207 unsigned objnr;
3208
Christoph Lameterb49af682007-05-06 14:49:41 -07003209 slabp = page_get_slab(virt_to_head_page(objp));
Al Viro871751e2006-03-25 03:06:39 -08003210 objnr = (unsigned)(objp - slabp->s_mem) / cachep->buffer_size;
3211 slab_bufctl(slabp)[objnr] = BUFCTL_ACTIVE;
3212 }
3213#endif
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003214 objp += obj_offset(cachep);
Christoph Lameter4f104932007-05-06 14:50:17 -07003215 if (cachep->ctor && cachep->flags & SLAB_POISON)
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07003216 cachep->ctor(objp);
Tetsuo Handa7ea466f2011-07-21 09:42:45 +09003217 if (ARCH_SLAB_MINALIGN &&
3218 ((unsigned long)objp & (ARCH_SLAB_MINALIGN-1))) {
Kevin Hilmana44b56d2006-12-06 20:32:11 -08003219 printk(KERN_ERR "0x%p: not aligned to ARCH_SLAB_MINALIGN=%d\n",
Hugh Dickinsc2251502011-07-11 13:35:08 -07003220 objp, (int)ARCH_SLAB_MINALIGN);
Kevin Hilmana44b56d2006-12-06 20:32:11 -08003221 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222 return objp;
3223}
3224#else
3225#define cache_alloc_debugcheck_after(a,b,objp,d) (objp)
3226#endif
3227
Akinobu Mita773ff602008-12-23 19:37:01 +09003228static bool slab_should_failslab(struct kmem_cache *cachep, gfp_t flags)
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003229{
3230 if (cachep == &cache_cache)
Akinobu Mita773ff602008-12-23 19:37:01 +09003231 return false;
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003232
Dmitry Monakhov4c13dd32010-02-26 09:36:12 +03003233 return should_failslab(obj_size(cachep), flags, cachep->flags);
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003234}
3235
Pekka Enberg343e0d72006-02-01 03:05:50 -08003236static inline void *____cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003238 void *objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003239 struct array_cache *ac;
3240
Alok N Kataria5c382302005-09-27 21:45:46 -07003241 check_irq_off();
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003242
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003243 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003244 if (likely(ac->avail)) {
3245 STATS_INC_ALLOCHIT(cachep);
3246 ac->touched = 1;
Christoph Lametere498be72005-09-09 13:03:32 -07003247 objp = ac->entry[--ac->avail];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248 } else {
3249 STATS_INC_ALLOCMISS(cachep);
3250 objp = cache_alloc_refill(cachep, flags);
J. R. Okajimaddbf2e82009-12-02 16:55:50 +09003251 /*
3252 * the 'ac' may be updated by cache_alloc_refill(),
3253 * and kmemleak_erase() requires its correct value.
3254 */
3255 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256 }
Catalin Marinasd5cff632009-06-11 13:22:40 +01003257 /*
3258 * To avoid a false negative, if an object that is in one of the
3259 * per-CPU caches is leaked, we need to make sure kmemleak doesn't
3260 * treat the array pointers as a reference to the object.
3261 */
J. R. Okajimaf3d8b532009-12-02 16:55:49 +09003262 if (objp)
3263 kmemleak_erase(&ac->entry[ac->avail]);
Alok N Kataria5c382302005-09-27 21:45:46 -07003264 return objp;
3265}
3266
Christoph Lametere498be72005-09-09 13:03:32 -07003267#ifdef CONFIG_NUMA
3268/*
Paul Jacksonb2455392006-03-24 03:16:12 -08003269 * Try allocating on another node if PF_SPREAD_SLAB|PF_MEMPOLICY.
Paul Jacksonc61afb12006-03-24 03:16:08 -08003270 *
3271 * If we are in_interrupt, then process context, including cpusets and
3272 * mempolicy, may not apply and should not be used for allocation policy.
3273 */
3274static void *alternate_node_alloc(struct kmem_cache *cachep, gfp_t flags)
3275{
3276 int nid_alloc, nid_here;
3277
Christoph Lameter765c4502006-09-27 01:50:08 -07003278 if (in_interrupt() || (flags & __GFP_THISNODE))
Paul Jacksonc61afb12006-03-24 03:16:08 -08003279 return NULL;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003280 nid_alloc = nid_here = numa_mem_id();
Miao Xiec0ff7452010-05-24 14:32:08 -07003281 get_mems_allowed();
Paul Jacksonc61afb12006-03-24 03:16:08 -08003282 if (cpuset_do_slab_mem_spread() && (cachep->flags & SLAB_MEM_SPREAD))
Jack Steiner6adef3e2010-05-26 14:42:49 -07003283 nid_alloc = cpuset_slab_spread_node();
Paul Jacksonc61afb12006-03-24 03:16:08 -08003284 else if (current->mempolicy)
3285 nid_alloc = slab_node(current->mempolicy);
Miao Xiec0ff7452010-05-24 14:32:08 -07003286 put_mems_allowed();
Paul Jacksonc61afb12006-03-24 03:16:08 -08003287 if (nid_alloc != nid_here)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003288 return ____cache_alloc_node(cachep, flags, nid_alloc);
Paul Jacksonc61afb12006-03-24 03:16:08 -08003289 return NULL;
3290}
3291
3292/*
Christoph Lameter765c4502006-09-27 01:50:08 -07003293 * Fallback function if there was no memory available and no objects on a
Christoph Lameter3c517a62006-12-06 20:33:29 -08003294 * certain node and fall back is permitted. First we scan all the
3295 * available nodelists for available objects. If that fails then we
3296 * perform an allocation without specifying a node. This allows the page
3297 * allocator to do its reclaim / fallback magic. We then insert the
3298 * slab into the proper nodelist and then allocate from it.
Christoph Lameter765c4502006-09-27 01:50:08 -07003299 */
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003300static void *fallback_alloc(struct kmem_cache *cache, gfp_t flags)
Christoph Lameter765c4502006-09-27 01:50:08 -07003301{
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003302 struct zonelist *zonelist;
3303 gfp_t local_flags;
Mel Gormandd1a2392008-04-28 02:12:17 -07003304 struct zoneref *z;
Mel Gorman54a6eb52008-04-28 02:12:16 -07003305 struct zone *zone;
3306 enum zone_type high_zoneidx = gfp_zone(flags);
Christoph Lameter765c4502006-09-27 01:50:08 -07003307 void *obj = NULL;
Christoph Lameter3c517a62006-12-06 20:33:29 -08003308 int nid;
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003309
3310 if (flags & __GFP_THISNODE)
3311 return NULL;
3312
Miao Xiec0ff7452010-05-24 14:32:08 -07003313 get_mems_allowed();
Mel Gorman0e884602008-04-28 02:12:14 -07003314 zonelist = node_zonelist(slab_node(current->mempolicy), flags);
Christoph Lameter6cb06222007-10-16 01:25:41 -07003315 local_flags = flags & (GFP_CONSTRAINT_MASK|GFP_RECLAIM_MASK);
Christoph Lameter765c4502006-09-27 01:50:08 -07003316
Christoph Lameter3c517a62006-12-06 20:33:29 -08003317retry:
3318 /*
3319 * Look through allowed nodes for objects available
3320 * from existing per node queues.
3321 */
Mel Gorman54a6eb52008-04-28 02:12:16 -07003322 for_each_zone_zonelist(zone, z, zonelist, high_zoneidx) {
3323 nid = zone_to_nid(zone);
Christoph Lameteraedb0eb2006-10-21 10:24:16 -07003324
Mel Gorman54a6eb52008-04-28 02:12:16 -07003325 if (cpuset_zone_allowed_hardwall(zone, flags) &&
Christoph Lameter3c517a62006-12-06 20:33:29 -08003326 cache->nodelists[nid] &&
Christoph Lameter481c5342008-06-21 16:46:35 -07003327 cache->nodelists[nid]->free_objects) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003328 obj = ____cache_alloc_node(cache,
3329 flags | GFP_THISNODE, nid);
Christoph Lameter481c5342008-06-21 16:46:35 -07003330 if (obj)
3331 break;
3332 }
Christoph Lameter3c517a62006-12-06 20:33:29 -08003333 }
3334
Christoph Lametercfce6602007-05-06 14:50:17 -07003335 if (!obj) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003336 /*
3337 * This allocation will be performed within the constraints
3338 * of the current cpuset / memory policy requirements.
3339 * We may trigger various forms of reclaim on the allowed
3340 * set and go into memory reserves if necessary.
3341 */
Christoph Lameterdd47ea72006-12-13 00:34:11 -08003342 if (local_flags & __GFP_WAIT)
3343 local_irq_enable();
3344 kmem_flagcheck(cache, flags);
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003345 obj = kmem_getpages(cache, local_flags, numa_mem_id());
Christoph Lameterdd47ea72006-12-13 00:34:11 -08003346 if (local_flags & __GFP_WAIT)
3347 local_irq_disable();
Christoph Lameter3c517a62006-12-06 20:33:29 -08003348 if (obj) {
3349 /*
3350 * Insert into the appropriate per node queues
3351 */
3352 nid = page_to_nid(virt_to_page(obj));
3353 if (cache_grow(cache, flags, nid, obj)) {
3354 obj = ____cache_alloc_node(cache,
3355 flags | GFP_THISNODE, nid);
3356 if (!obj)
3357 /*
3358 * Another processor may allocate the
3359 * objects in the slab since we are
3360 * not holding any locks.
3361 */
3362 goto retry;
3363 } else {
Hugh Dickinsb6a60452007-01-05 16:36:36 -08003364 /* cache_grow already freed obj */
Christoph Lameter3c517a62006-12-06 20:33:29 -08003365 obj = NULL;
3366 }
3367 }
Christoph Lameteraedb0eb2006-10-21 10:24:16 -07003368 }
Miao Xiec0ff7452010-05-24 14:32:08 -07003369 put_mems_allowed();
Christoph Lameter765c4502006-09-27 01:50:08 -07003370 return obj;
3371}
3372
3373/*
Christoph Lametere498be72005-09-09 13:03:32 -07003374 * A interface to enable slab creation on nodeid
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375 */
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003376static void *____cache_alloc_node(struct kmem_cache *cachep, gfp_t flags,
Andrew Mortona737b3e2006-03-22 00:08:11 -08003377 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07003378{
3379 struct list_head *entry;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003380 struct slab *slabp;
3381 struct kmem_list3 *l3;
3382 void *obj;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003383 int x;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003385 l3 = cachep->nodelists[nodeid];
3386 BUG_ON(!l3);
Christoph Lametere498be72005-09-09 13:03:32 -07003387
Andrew Mortona737b3e2006-03-22 00:08:11 -08003388retry:
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08003389 check_irq_off();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003390 spin_lock(&l3->list_lock);
3391 entry = l3->slabs_partial.next;
3392 if (entry == &l3->slabs_partial) {
3393 l3->free_touched = 1;
3394 entry = l3->slabs_free.next;
3395 if (entry == &l3->slabs_free)
3396 goto must_grow;
3397 }
Christoph Lametere498be72005-09-09 13:03:32 -07003398
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003399 slabp = list_entry(entry, struct slab, list);
3400 check_spinlock_acquired_node(cachep, nodeid);
3401 check_slabp(cachep, slabp);
Christoph Lametere498be72005-09-09 13:03:32 -07003402
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003403 STATS_INC_NODEALLOCS(cachep);
3404 STATS_INC_ACTIVE(cachep);
3405 STATS_SET_HIGH(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003406
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003407 BUG_ON(slabp->inuse == cachep->num);
Christoph Lametere498be72005-09-09 13:03:32 -07003408
Matthew Dobson78d382d2006-02-01 03:05:47 -08003409 obj = slab_get_obj(cachep, slabp, nodeid);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003410 check_slabp(cachep, slabp);
3411 l3->free_objects--;
3412 /* move slabp to correct slabp list: */
3413 list_del(&slabp->list);
Christoph Lametere498be72005-09-09 13:03:32 -07003414
Andrew Mortona737b3e2006-03-22 00:08:11 -08003415 if (slabp->free == BUFCTL_END)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003416 list_add(&slabp->list, &l3->slabs_full);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003417 else
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003418 list_add(&slabp->list, &l3->slabs_partial);
Christoph Lametere498be72005-09-09 13:03:32 -07003419
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003420 spin_unlock(&l3->list_lock);
3421 goto done;
Christoph Lametere498be72005-09-09 13:03:32 -07003422
Andrew Mortona737b3e2006-03-22 00:08:11 -08003423must_grow:
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003424 spin_unlock(&l3->list_lock);
Christoph Lameter3c517a62006-12-06 20:33:29 -08003425 x = cache_grow(cachep, flags | GFP_THISNODE, nodeid, NULL);
Christoph Lameter765c4502006-09-27 01:50:08 -07003426 if (x)
3427 goto retry;
Christoph Lametere498be72005-09-09 13:03:32 -07003428
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003429 return fallback_alloc(cachep, flags);
Christoph Lameter765c4502006-09-27 01:50:08 -07003430
Andrew Mortona737b3e2006-03-22 00:08:11 -08003431done:
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003432 return obj;
Christoph Lametere498be72005-09-09 13:03:32 -07003433}
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003434
3435/**
3436 * kmem_cache_alloc_node - Allocate an object on the specified node
3437 * @cachep: The cache to allocate from.
3438 * @flags: See kmalloc().
3439 * @nodeid: node number of the target node.
3440 * @caller: return address of caller, used for debug information
3441 *
3442 * Identical to kmem_cache_alloc but it will allocate memory on the given
3443 * node, which can improve the performance for cpu bound structures.
3444 *
3445 * Fallback to other node is possible if __GFP_THISNODE is not set.
3446 */
3447static __always_inline void *
3448__cache_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid,
3449 void *caller)
3450{
3451 unsigned long save_flags;
3452 void *ptr;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003453 int slab_node = numa_mem_id();
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003454
Benjamin Herrenschmidtdcce2842009-06-18 13:24:12 +10003455 flags &= gfp_allowed_mask;
Pekka Enberg7e85ee02009-06-12 14:03:06 +03003456
Nick Piggincf40bd12009-01-21 08:12:39 +01003457 lockdep_trace_alloc(flags);
3458
Akinobu Mita773ff602008-12-23 19:37:01 +09003459 if (slab_should_failslab(cachep, flags))
Akinobu Mita824ebef2007-05-06 14:49:58 -07003460 return NULL;
3461
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003462 cache_alloc_debugcheck_before(cachep, flags);
3463 local_irq_save(save_flags);
3464
Andrew Mortoneacbbae2011-07-28 13:59:49 -07003465 if (nodeid == NUMA_NO_NODE)
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003466 nodeid = slab_node;
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003467
3468 if (unlikely(!cachep->nodelists[nodeid])) {
3469 /* Node not bootstrapped yet */
3470 ptr = fallback_alloc(cachep, flags);
3471 goto out;
3472 }
3473
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003474 if (nodeid == slab_node) {
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003475 /*
3476 * Use the locally cached objects if possible.
3477 * However ____cache_alloc does not allow fallback
3478 * to other nodes. It may fail while we still have
3479 * objects on other nodes available.
3480 */
3481 ptr = ____cache_alloc(cachep, flags);
3482 if (ptr)
3483 goto out;
3484 }
3485 /* ___cache_alloc_node can fall back to other nodes */
3486 ptr = ____cache_alloc_node(cachep, flags, nodeid);
3487 out:
3488 local_irq_restore(save_flags);
3489 ptr = cache_alloc_debugcheck_after(cachep, flags, ptr, caller);
Catalin Marinasd5cff632009-06-11 13:22:40 +01003490 kmemleak_alloc_recursive(ptr, obj_size(cachep), 1, cachep->flags,
3491 flags);
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003492
Pekka Enbergc175eea2008-05-09 20:35:53 +02003493 if (likely(ptr))
3494 kmemcheck_slab_alloc(cachep, flags, ptr, obj_size(cachep));
3495
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003496 if (unlikely((flags & __GFP_ZERO) && ptr))
3497 memset(ptr, 0, obj_size(cachep));
3498
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003499 return ptr;
3500}
3501
3502static __always_inline void *
3503__do_cache_alloc(struct kmem_cache *cache, gfp_t flags)
3504{
3505 void *objp;
3506
3507 if (unlikely(current->flags & (PF_SPREAD_SLAB | PF_MEMPOLICY))) {
3508 objp = alternate_node_alloc(cache, flags);
3509 if (objp)
3510 goto out;
3511 }
3512 objp = ____cache_alloc(cache, flags);
3513
3514 /*
3515 * We may just have run out of memory on the local node.
3516 * ____cache_alloc_node() knows how to locate memory on other nodes
3517 */
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003518 if (!objp)
3519 objp = ____cache_alloc_node(cache, flags, numa_mem_id());
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003520
3521 out:
3522 return objp;
3523}
3524#else
3525
3526static __always_inline void *
3527__do_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
3528{
3529 return ____cache_alloc(cachep, flags);
3530}
3531
3532#endif /* CONFIG_NUMA */
3533
3534static __always_inline void *
3535__cache_alloc(struct kmem_cache *cachep, gfp_t flags, void *caller)
3536{
3537 unsigned long save_flags;
3538 void *objp;
3539
Benjamin Herrenschmidtdcce2842009-06-18 13:24:12 +10003540 flags &= gfp_allowed_mask;
Pekka Enberg7e85ee02009-06-12 14:03:06 +03003541
Nick Piggincf40bd12009-01-21 08:12:39 +01003542 lockdep_trace_alloc(flags);
3543
Akinobu Mita773ff602008-12-23 19:37:01 +09003544 if (slab_should_failslab(cachep, flags))
Akinobu Mita824ebef2007-05-06 14:49:58 -07003545 return NULL;
3546
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003547 cache_alloc_debugcheck_before(cachep, flags);
3548 local_irq_save(save_flags);
3549 objp = __do_cache_alloc(cachep, flags);
3550 local_irq_restore(save_flags);
3551 objp = cache_alloc_debugcheck_after(cachep, flags, objp, caller);
Catalin Marinasd5cff632009-06-11 13:22:40 +01003552 kmemleak_alloc_recursive(objp, obj_size(cachep), 1, cachep->flags,
3553 flags);
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003554 prefetchw(objp);
3555
Pekka Enbergc175eea2008-05-09 20:35:53 +02003556 if (likely(objp))
3557 kmemcheck_slab_alloc(cachep, flags, objp, obj_size(cachep));
3558
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003559 if (unlikely((flags & __GFP_ZERO) && objp))
3560 memset(objp, 0, obj_size(cachep));
3561
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003562 return objp;
3563}
Christoph Lametere498be72005-09-09 13:03:32 -07003564
3565/*
3566 * Caller needs to acquire correct kmem_list's list_lock
3567 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003568static void free_block(struct kmem_cache *cachep, void **objpp, int nr_objects,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003569 int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003570{
3571 int i;
Christoph Lametere498be72005-09-09 13:03:32 -07003572 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003573
3574 for (i = 0; i < nr_objects; i++) {
3575 void *objp = objpp[i];
3576 struct slab *slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08003578 slabp = virt_to_slab(objp);
Christoph Lameterff694162005-09-22 21:44:02 -07003579 l3 = cachep->nodelists[node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003580 list_del(&slabp->list);
Christoph Lameterff694162005-09-22 21:44:02 -07003581 check_spinlock_acquired_node(cachep, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003582 check_slabp(cachep, slabp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08003583 slab_put_obj(cachep, slabp, objp, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584 STATS_DEC_ACTIVE(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003585 l3->free_objects++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003586 check_slabp(cachep, slabp);
3587
3588 /* fixup slab chains */
3589 if (slabp->inuse == 0) {
Christoph Lametere498be72005-09-09 13:03:32 -07003590 if (l3->free_objects > l3->free_limit) {
3591 l3->free_objects -= cachep->num;
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07003592 /* No need to drop any previously held
3593 * lock here, even if we have a off-slab slab
3594 * descriptor it is guaranteed to come from
3595 * a different cache, refer to comments before
3596 * alloc_slabmgmt.
3597 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003598 slab_destroy(cachep, slabp);
3599 } else {
Christoph Lametere498be72005-09-09 13:03:32 -07003600 list_add(&slabp->list, &l3->slabs_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003601 }
3602 } else {
3603 /* Unconditionally move a slab to the end of the
3604 * partial list on free - maximum time for the
3605 * other objects to be freed, too.
3606 */
Christoph Lametere498be72005-09-09 13:03:32 -07003607 list_add_tail(&slabp->list, &l3->slabs_partial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003608 }
3609 }
3610}
3611
Pekka Enberg343e0d72006-02-01 03:05:50 -08003612static void cache_flusharray(struct kmem_cache *cachep, struct array_cache *ac)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003613{
3614 int batchcount;
Christoph Lametere498be72005-09-09 13:03:32 -07003615 struct kmem_list3 *l3;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003616 int node = numa_mem_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003617
3618 batchcount = ac->batchcount;
3619#if DEBUG
3620 BUG_ON(!batchcount || batchcount > ac->avail);
3621#endif
3622 check_irq_off();
Christoph Lameterff694162005-09-22 21:44:02 -07003623 l3 = cachep->nodelists[node];
Ingo Molnar873623d2006-07-13 14:44:38 +02003624 spin_lock(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07003625 if (l3->shared) {
3626 struct array_cache *shared_array = l3->shared;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003627 int max = shared_array->limit - shared_array->avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628 if (max) {
3629 if (batchcount > max)
3630 batchcount = max;
Christoph Lametere498be72005-09-09 13:03:32 -07003631 memcpy(&(shared_array->entry[shared_array->avail]),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003632 ac->entry, sizeof(void *) * batchcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003633 shared_array->avail += batchcount;
3634 goto free_done;
3635 }
3636 }
3637
Christoph Lameterff694162005-09-22 21:44:02 -07003638 free_block(cachep, ac->entry, batchcount, node);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003639free_done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003640#if STATS
3641 {
3642 int i = 0;
3643 struct list_head *p;
3644
Christoph Lametere498be72005-09-09 13:03:32 -07003645 p = l3->slabs_free.next;
3646 while (p != &(l3->slabs_free)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003647 struct slab *slabp;
3648
3649 slabp = list_entry(p, struct slab, list);
3650 BUG_ON(slabp->inuse);
3651
3652 i++;
3653 p = p->next;
3654 }
3655 STATS_SET_FREEABLE(cachep, i);
3656 }
3657#endif
Christoph Lametere498be72005-09-09 13:03:32 -07003658 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659 ac->avail -= batchcount;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003660 memmove(ac->entry, &(ac->entry[batchcount]), sizeof(void *)*ac->avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661}
3662
3663/*
Andrew Mortona737b3e2006-03-22 00:08:11 -08003664 * Release an obj back to its cache. If the obj has a constructed state, it must
3665 * be in this state _before_ it is released. Called with disabled ints.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003666 */
Suleiman Souhlala947eb92011-06-02 00:16:42 -07003667static inline void __cache_free(struct kmem_cache *cachep, void *objp,
3668 void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003669{
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003670 struct array_cache *ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003671
3672 check_irq_off();
Catalin Marinasd5cff632009-06-11 13:22:40 +01003673 kmemleak_free_recursive(objp, cachep->flags);
Suleiman Souhlala947eb92011-06-02 00:16:42 -07003674 objp = cache_free_debugcheck(cachep, objp, caller);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003675
Pekka Enbergc175eea2008-05-09 20:35:53 +02003676 kmemcheck_slab_free(cachep, objp, obj_size(cachep));
3677
Siddha, Suresh B1807a1a2007-08-22 14:01:49 -07003678 /*
3679 * Skip calling cache_free_alien() when the platform is not numa.
3680 * This will avoid cache misses that happen while accessing slabp (which
3681 * is per page memory reference) to get nodeid. Instead use a global
3682 * variable to skip the call, which is mostly likely to be present in
3683 * the cache.
3684 */
Mel Gormanb6e68bc2009-06-16 15:32:16 -07003685 if (nr_online_nodes > 1 && cache_free_alien(cachep, objp))
Pekka Enberg729bd0b2006-06-23 02:03:05 -07003686 return;
Christoph Lametere498be72005-09-09 13:03:32 -07003687
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688 if (likely(ac->avail < ac->limit)) {
3689 STATS_INC_FREEHIT(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003690 ac->entry[ac->avail++] = objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691 return;
3692 } else {
3693 STATS_INC_FREEMISS(cachep);
3694 cache_flusharray(cachep, ac);
Christoph Lametere498be72005-09-09 13:03:32 -07003695 ac->entry[ac->avail++] = objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003696 }
3697}
3698
3699/**
3700 * kmem_cache_alloc - Allocate an object
3701 * @cachep: The cache to allocate from.
3702 * @flags: See kmalloc().
3703 *
3704 * Allocate an object from this cache. The flags are only relevant
3705 * if the cache has no available objects.
3706 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003707void *kmem_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003708{
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003709 void *ret = __cache_alloc(cachep, flags, __builtin_return_address(0));
3710
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003711 trace_kmem_cache_alloc(_RET_IP_, ret,
3712 obj_size(cachep), cachep->buffer_size, flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003713
3714 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003715}
3716EXPORT_SYMBOL(kmem_cache_alloc);
3717
Li Zefan0f24f122009-12-11 15:45:30 +08003718#ifdef CONFIG_TRACING
Steven Rostedt85beb582010-11-24 16:23:34 -05003719void *
3720kmem_cache_alloc_trace(size_t size, struct kmem_cache *cachep, gfp_t flags)
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003721{
Steven Rostedt85beb582010-11-24 16:23:34 -05003722 void *ret;
3723
3724 ret = __cache_alloc(cachep, flags, __builtin_return_address(0));
3725
3726 trace_kmalloc(_RET_IP_, ret,
3727 size, slab_buffer_size(cachep), flags);
3728 return ret;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003729}
Steven Rostedt85beb582010-11-24 16:23:34 -05003730EXPORT_SYMBOL(kmem_cache_alloc_trace);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003731#endif
3732
Linus Torvalds1da177e2005-04-16 15:20:36 -07003733#ifdef CONFIG_NUMA
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003734void *kmem_cache_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid)
3735{
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003736 void *ret = __cache_alloc_node(cachep, flags, nodeid,
3737 __builtin_return_address(0));
3738
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003739 trace_kmem_cache_alloc_node(_RET_IP_, ret,
3740 obj_size(cachep), cachep->buffer_size,
3741 flags, nodeid);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003742
3743 return ret;
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003744}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745EXPORT_SYMBOL(kmem_cache_alloc_node);
3746
Li Zefan0f24f122009-12-11 15:45:30 +08003747#ifdef CONFIG_TRACING
Steven Rostedt85beb582010-11-24 16:23:34 -05003748void *kmem_cache_alloc_node_trace(size_t size,
3749 struct kmem_cache *cachep,
3750 gfp_t flags,
3751 int nodeid)
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003752{
Steven Rostedt85beb582010-11-24 16:23:34 -05003753 void *ret;
3754
3755 ret = __cache_alloc_node(cachep, flags, nodeid,
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003756 __builtin_return_address(0));
Steven Rostedt85beb582010-11-24 16:23:34 -05003757 trace_kmalloc_node(_RET_IP_, ret,
3758 size, slab_buffer_size(cachep),
3759 flags, nodeid);
3760 return ret;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003761}
Steven Rostedt85beb582010-11-24 16:23:34 -05003762EXPORT_SYMBOL(kmem_cache_alloc_node_trace);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003763#endif
3764
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003765static __always_inline void *
3766__do_kmalloc_node(size_t size, gfp_t flags, int node, void *caller)
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003767{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003768 struct kmem_cache *cachep;
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003769
3770 cachep = kmem_find_general_cachep(size, flags);
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003771 if (unlikely(ZERO_OR_NULL_PTR(cachep)))
3772 return cachep;
Steven Rostedt85beb582010-11-24 16:23:34 -05003773 return kmem_cache_alloc_node_trace(size, cachep, flags, node);
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003774}
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003775
Li Zefan0bb38a52009-12-11 15:45:50 +08003776#if defined(CONFIG_DEBUG_SLAB) || defined(CONFIG_TRACING)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003777void *__kmalloc_node(size_t size, gfp_t flags, int node)
3778{
3779 return __do_kmalloc_node(size, flags, node,
3780 __builtin_return_address(0));
3781}
Christoph Hellwigdbe5e692006-09-25 23:31:36 -07003782EXPORT_SYMBOL(__kmalloc_node);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003783
3784void *__kmalloc_node_track_caller(size_t size, gfp_t flags,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003785 int node, unsigned long caller)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003786{
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003787 return __do_kmalloc_node(size, flags, node, (void *)caller);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003788}
3789EXPORT_SYMBOL(__kmalloc_node_track_caller);
3790#else
3791void *__kmalloc_node(size_t size, gfp_t flags, int node)
3792{
3793 return __do_kmalloc_node(size, flags, node, NULL);
3794}
3795EXPORT_SYMBOL(__kmalloc_node);
Li Zefan0bb38a52009-12-11 15:45:50 +08003796#endif /* CONFIG_DEBUG_SLAB || CONFIG_TRACING */
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003797#endif /* CONFIG_NUMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003798
3799/**
Paul Drynoff800590f2006-06-23 02:03:48 -07003800 * __do_kmalloc - allocate memory
Linus Torvalds1da177e2005-04-16 15:20:36 -07003801 * @size: how many bytes of memory are required.
Paul Drynoff800590f2006-06-23 02:03:48 -07003802 * @flags: the type of memory to allocate (see kmalloc).
Randy Dunlap911851e2006-03-22 00:08:14 -08003803 * @caller: function caller for debug tracking of the caller
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804 */
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003805static __always_inline void *__do_kmalloc(size_t size, gfp_t flags,
3806 void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003807{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003808 struct kmem_cache *cachep;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003809 void *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003810
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003811 /* If you want to save a few bytes .text space: replace
3812 * __ with kmem_.
3813 * Then kmalloc uses the uninlined functions instead of the inline
3814 * functions.
3815 */
3816 cachep = __find_general_cachep(size, flags);
Linus Torvaldsa5c96d82007-07-19 13:17:15 -07003817 if (unlikely(ZERO_OR_NULL_PTR(cachep)))
3818 return cachep;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003819 ret = __cache_alloc(cachep, flags, caller);
3820
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003821 trace_kmalloc((unsigned long) caller, ret,
3822 size, cachep->buffer_size, flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003823
3824 return ret;
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003825}
3826
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003827
Li Zefan0bb38a52009-12-11 15:45:50 +08003828#if defined(CONFIG_DEBUG_SLAB) || defined(CONFIG_TRACING)
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003829void *__kmalloc(size_t size, gfp_t flags)
3830{
Al Viro871751e2006-03-25 03:06:39 -08003831 return __do_kmalloc(size, flags, __builtin_return_address(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003832}
3833EXPORT_SYMBOL(__kmalloc);
3834
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003835void *__kmalloc_track_caller(size_t size, gfp_t flags, unsigned long caller)
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003836{
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003837 return __do_kmalloc(size, flags, (void *)caller);
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003838}
3839EXPORT_SYMBOL(__kmalloc_track_caller);
Christoph Hellwig1d2c8ee2006-10-04 02:15:25 -07003840
3841#else
3842void *__kmalloc(size_t size, gfp_t flags)
3843{
3844 return __do_kmalloc(size, flags, NULL);
3845}
3846EXPORT_SYMBOL(__kmalloc);
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003847#endif
3848
Linus Torvalds1da177e2005-04-16 15:20:36 -07003849/**
3850 * kmem_cache_free - Deallocate an object
3851 * @cachep: The cache the allocation was from.
3852 * @objp: The previously allocated object.
3853 *
3854 * Free an object which was previously allocated from this
3855 * cache.
3856 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003857void kmem_cache_free(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003858{
3859 unsigned long flags;
3860
3861 local_irq_save(flags);
Ingo Molnar898552c2007-02-10 01:44:57 -08003862 debug_check_no_locks_freed(objp, obj_size(cachep));
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -07003863 if (!(cachep->flags & SLAB_DEBUG_OBJECTS))
3864 debug_check_no_obj_freed(objp, obj_size(cachep));
Suleiman Souhlala947eb92011-06-02 00:16:42 -07003865 __cache_free(cachep, objp, __builtin_return_address(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003866 local_irq_restore(flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003867
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003868 trace_kmem_cache_free(_RET_IP_, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003869}
3870EXPORT_SYMBOL(kmem_cache_free);
3871
3872/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003873 * kfree - free previously allocated memory
3874 * @objp: pointer returned by kmalloc.
3875 *
Pekka Enberg80e93ef2005-09-09 13:10:16 -07003876 * If @objp is NULL, no operation is performed.
3877 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878 * Don't free memory not originally allocated by kmalloc()
3879 * or you will run into trouble.
3880 */
3881void kfree(const void *objp)
3882{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003883 struct kmem_cache *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003884 unsigned long flags;
3885
Pekka Enberg2121db72009-03-25 11:05:57 +02003886 trace_kfree(_RET_IP_, objp);
3887
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003888 if (unlikely(ZERO_OR_NULL_PTR(objp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003889 return;
3890 local_irq_save(flags);
3891 kfree_debugcheck(objp);
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08003892 c = virt_to_cache(objp);
Ingo Molnarf9b84042006-06-27 02:54:49 -07003893 debug_check_no_locks_freed(objp, obj_size(c));
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -07003894 debug_check_no_obj_freed(objp, obj_size(c));
Suleiman Souhlala947eb92011-06-02 00:16:42 -07003895 __cache_free(c, (void *)objp, __builtin_return_address(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003896 local_irq_restore(flags);
3897}
3898EXPORT_SYMBOL(kfree);
3899
Pekka Enberg343e0d72006-02-01 03:05:50 -08003900unsigned int kmem_cache_size(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901{
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003902 return obj_size(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003903}
3904EXPORT_SYMBOL(kmem_cache_size);
3905
Christoph Lametere498be72005-09-09 13:03:32 -07003906/*
Simon Arlott183ff222007-10-20 01:27:18 +02003907 * This initializes kmem_list3 or resizes various caches for all nodes.
Christoph Lametere498be72005-09-09 13:03:32 -07003908 */
Pekka Enberg83b519e2009-06-10 19:40:04 +03003909static int alloc_kmemlist(struct kmem_cache *cachep, gfp_t gfp)
Christoph Lametere498be72005-09-09 13:03:32 -07003910{
3911 int node;
3912 struct kmem_list3 *l3;
Christoph Lametercafeb022006-03-25 03:06:46 -08003913 struct array_cache *new_shared;
Paul Menage3395ee02006-12-06 20:32:16 -08003914 struct array_cache **new_alien = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07003915
Mel Gorman9c09a952008-01-24 05:49:54 -08003916 for_each_online_node(node) {
Christoph Lametercafeb022006-03-25 03:06:46 -08003917
Paul Menage3395ee02006-12-06 20:32:16 -08003918 if (use_alien_caches) {
Pekka Enberg83b519e2009-06-10 19:40:04 +03003919 new_alien = alloc_alien_cache(node, cachep->limit, gfp);
Paul Menage3395ee02006-12-06 20:32:16 -08003920 if (!new_alien)
3921 goto fail;
3922 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003923
Eric Dumazet63109842007-05-06 14:49:28 -07003924 new_shared = NULL;
3925 if (cachep->shared) {
3926 new_shared = alloc_arraycache(node,
Christoph Lameter0718dc22006-03-25 03:06:47 -08003927 cachep->shared*cachep->batchcount,
Pekka Enberg83b519e2009-06-10 19:40:04 +03003928 0xbaadf00d, gfp);
Eric Dumazet63109842007-05-06 14:49:28 -07003929 if (!new_shared) {
3930 free_alien_cache(new_alien);
3931 goto fail;
3932 }
Christoph Lameter0718dc22006-03-25 03:06:47 -08003933 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003934
Andrew Mortona737b3e2006-03-22 00:08:11 -08003935 l3 = cachep->nodelists[node];
3936 if (l3) {
Christoph Lametercafeb022006-03-25 03:06:46 -08003937 struct array_cache *shared = l3->shared;
3938
Christoph Lametere498be72005-09-09 13:03:32 -07003939 spin_lock_irq(&l3->list_lock);
3940
Christoph Lametercafeb022006-03-25 03:06:46 -08003941 if (shared)
Christoph Lameter0718dc22006-03-25 03:06:47 -08003942 free_block(cachep, shared->entry,
3943 shared->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -07003944
Christoph Lametercafeb022006-03-25 03:06:46 -08003945 l3->shared = new_shared;
3946 if (!l3->alien) {
Christoph Lametere498be72005-09-09 13:03:32 -07003947 l3->alien = new_alien;
3948 new_alien = NULL;
3949 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003950 l3->free_limit = (1 + nr_cpus_node(node)) *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003951 cachep->batchcount + cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07003952 spin_unlock_irq(&l3->list_lock);
Christoph Lametercafeb022006-03-25 03:06:46 -08003953 kfree(shared);
Christoph Lametere498be72005-09-09 13:03:32 -07003954 free_alien_cache(new_alien);
3955 continue;
3956 }
Pekka Enberg83b519e2009-06-10 19:40:04 +03003957 l3 = kmalloc_node(sizeof(struct kmem_list3), gfp, node);
Christoph Lameter0718dc22006-03-25 03:06:47 -08003958 if (!l3) {
3959 free_alien_cache(new_alien);
3960 kfree(new_shared);
Christoph Lametere498be72005-09-09 13:03:32 -07003961 goto fail;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003962 }
Christoph Lametere498be72005-09-09 13:03:32 -07003963
3964 kmem_list3_init(l3);
3965 l3->next_reap = jiffies + REAPTIMEOUT_LIST3 +
Andrew Mortona737b3e2006-03-22 00:08:11 -08003966 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
Christoph Lametercafeb022006-03-25 03:06:46 -08003967 l3->shared = new_shared;
Christoph Lametere498be72005-09-09 13:03:32 -07003968 l3->alien = new_alien;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003969 l3->free_limit = (1 + nr_cpus_node(node)) *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003970 cachep->batchcount + cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07003971 cachep->nodelists[node] = l3;
3972 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003973 return 0;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003974
Andrew Mortona737b3e2006-03-22 00:08:11 -08003975fail:
Christoph Lameter0718dc22006-03-25 03:06:47 -08003976 if (!cachep->next.next) {
3977 /* Cache is not active yet. Roll back what we did */
3978 node--;
3979 while (node >= 0) {
3980 if (cachep->nodelists[node]) {
3981 l3 = cachep->nodelists[node];
3982
3983 kfree(l3->shared);
3984 free_alien_cache(l3->alien);
3985 kfree(l3);
3986 cachep->nodelists[node] = NULL;
3987 }
3988 node--;
3989 }
3990 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003991 return -ENOMEM;
Christoph Lametere498be72005-09-09 13:03:32 -07003992}
3993
Linus Torvalds1da177e2005-04-16 15:20:36 -07003994struct ccupdate_struct {
Pekka Enberg343e0d72006-02-01 03:05:50 -08003995 struct kmem_cache *cachep;
Eric Dumazetacfe7d72011-07-25 08:55:42 +02003996 struct array_cache *new[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003997};
3998
3999static void do_ccupdate_local(void *info)
4000{
Andrew Mortona737b3e2006-03-22 00:08:11 -08004001 struct ccupdate_struct *new = info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004002 struct array_cache *old;
4003
4004 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08004005 old = cpu_cache_get(new->cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07004006
Linus Torvalds1da177e2005-04-16 15:20:36 -07004007 new->cachep->array[smp_processor_id()] = new->new[smp_processor_id()];
4008 new->new[smp_processor_id()] = old;
4009}
4010
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -08004011/* Always called with the cache_chain_mutex held */
Andrew Mortona737b3e2006-03-22 00:08:11 -08004012static int do_tune_cpucache(struct kmem_cache *cachep, int limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03004013 int batchcount, int shared, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004014{
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004015 struct ccupdate_struct *new;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07004016 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004017
Eric Dumazetacfe7d72011-07-25 08:55:42 +02004018 new = kzalloc(sizeof(*new) + nr_cpu_ids * sizeof(struct array_cache *),
4019 gfp);
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004020 if (!new)
4021 return -ENOMEM;
4022
Christoph Lametere498be72005-09-09 13:03:32 -07004023 for_each_online_cpu(i) {
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07004024 new->new[i] = alloc_arraycache(cpu_to_mem(i), limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03004025 batchcount, gfp);
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004026 if (!new->new[i]) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004027 for (i--; i >= 0; i--)
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004028 kfree(new->new[i]);
4029 kfree(new);
Christoph Lametere498be72005-09-09 13:03:32 -07004030 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004031 }
4032 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004033 new->cachep = cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004034
Jens Axboe15c8b6c2008-05-09 09:39:44 +02004035 on_each_cpu(do_ccupdate_local, (void *)new, 1);
Christoph Lametere498be72005-09-09 13:03:32 -07004036
Linus Torvalds1da177e2005-04-16 15:20:36 -07004037 check_irq_on();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004038 cachep->batchcount = batchcount;
4039 cachep->limit = limit;
Christoph Lametere498be72005-09-09 13:03:32 -07004040 cachep->shared = shared;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041
Christoph Lametere498be72005-09-09 13:03:32 -07004042 for_each_online_cpu(i) {
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004043 struct array_cache *ccold = new->new[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004044 if (!ccold)
4045 continue;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07004046 spin_lock_irq(&cachep->nodelists[cpu_to_mem(i)]->list_lock);
4047 free_block(cachep, ccold->entry, ccold->avail, cpu_to_mem(i));
4048 spin_unlock_irq(&cachep->nodelists[cpu_to_mem(i)]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004049 kfree(ccold);
4050 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004051 kfree(new);
Pekka Enberg83b519e2009-06-10 19:40:04 +03004052 return alloc_kmemlist(cachep, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004053}
4054
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -08004055/* Called with cache_chain_mutex held always */
Pekka Enberg83b519e2009-06-10 19:40:04 +03004056static int enable_cpucache(struct kmem_cache *cachep, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004057{
4058 int err;
4059 int limit, shared;
4060
Andrew Mortona737b3e2006-03-22 00:08:11 -08004061 /*
4062 * The head array serves three purposes:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004063 * - create a LIFO ordering, i.e. return objects that are cache-warm
4064 * - reduce the number of spinlock operations.
Andrew Mortona737b3e2006-03-22 00:08:11 -08004065 * - reduce the number of linked list operations on the slab and
Linus Torvalds1da177e2005-04-16 15:20:36 -07004066 * bufctl chains: array operations are cheaper.
4067 * The numbers are guessed, we should auto-tune as described by
4068 * Bonwick.
4069 */
Manfred Spraul3dafccf2006-02-01 03:05:42 -08004070 if (cachep->buffer_size > 131072)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004071 limit = 1;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08004072 else if (cachep->buffer_size > PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004073 limit = 8;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08004074 else if (cachep->buffer_size > 1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004075 limit = 24;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08004076 else if (cachep->buffer_size > 256)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004077 limit = 54;
4078 else
4079 limit = 120;
4080
Andrew Mortona737b3e2006-03-22 00:08:11 -08004081 /*
4082 * CPU bound tasks (e.g. network routing) can exhibit cpu bound
Linus Torvalds1da177e2005-04-16 15:20:36 -07004083 * allocation behaviour: Most allocs on one cpu, most free operations
4084 * on another cpu. For these cases, an efficient object passing between
4085 * cpus is necessary. This is provided by a shared array. The array
4086 * replaces Bonwick's magazine layer.
4087 * On uniprocessor, it's functionally equivalent (but less efficient)
4088 * to a larger limit. Thus disabled by default.
4089 */
4090 shared = 0;
Eric Dumazet364fbb22007-05-06 14:49:27 -07004091 if (cachep->buffer_size <= PAGE_SIZE && num_possible_cpus() > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004092 shared = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004093
4094#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08004095 /*
4096 * With debugging enabled, large batchcount lead to excessively long
4097 * periods with disabled local interrupts. Limit the batchcount
Linus Torvalds1da177e2005-04-16 15:20:36 -07004098 */
4099 if (limit > 32)
4100 limit = 32;
4101#endif
Pekka Enberg83b519e2009-06-10 19:40:04 +03004102 err = do_tune_cpucache(cachep, limit, (limit + 1) / 2, shared, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004103 if (err)
4104 printk(KERN_ERR "enable_cpucache failed for %s, error %d.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004105 cachep->name, -err);
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07004106 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004107}
4108
Christoph Lameter1b552532006-03-22 00:09:07 -08004109/*
4110 * Drain an array if it contains any elements taking the l3 lock only if
Christoph Lameterb18e7e62006-03-22 00:09:07 -08004111 * necessary. Note that the l3 listlock also protects the array_cache
4112 * if drain_array() is used on the shared array.
Christoph Lameter1b552532006-03-22 00:09:07 -08004113 */
H Hartley Sweeten68a1b192011-01-11 17:49:32 -06004114static void drain_array(struct kmem_cache *cachep, struct kmem_list3 *l3,
Christoph Lameter1b552532006-03-22 00:09:07 -08004115 struct array_cache *ac, int force, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004116{
4117 int tofree;
4118
Christoph Lameter1b552532006-03-22 00:09:07 -08004119 if (!ac || !ac->avail)
4120 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004121 if (ac->touched && !force) {
4122 ac->touched = 0;
Christoph Lameterb18e7e62006-03-22 00:09:07 -08004123 } else {
Christoph Lameter1b552532006-03-22 00:09:07 -08004124 spin_lock_irq(&l3->list_lock);
Christoph Lameterb18e7e62006-03-22 00:09:07 -08004125 if (ac->avail) {
4126 tofree = force ? ac->avail : (ac->limit + 4) / 5;
4127 if (tofree > ac->avail)
4128 tofree = (ac->avail + 1) / 2;
4129 free_block(cachep, ac->entry, tofree, node);
4130 ac->avail -= tofree;
4131 memmove(ac->entry, &(ac->entry[tofree]),
4132 sizeof(void *) * ac->avail);
4133 }
Christoph Lameter1b552532006-03-22 00:09:07 -08004134 spin_unlock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004135 }
4136}
4137
4138/**
4139 * cache_reap - Reclaim memory from caches.
Randy Dunlap05fb6bf2007-02-28 20:12:13 -08004140 * @w: work descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -07004141 *
4142 * Called from workqueue/eventd every few seconds.
4143 * Purpose:
4144 * - clear the per-cpu caches for this CPU.
4145 * - return freeable pages to the main free memory pool.
4146 *
Andrew Mortona737b3e2006-03-22 00:08:11 -08004147 * If we cannot acquire the cache chain mutex then just give up - we'll try
4148 * again on the next iteration.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004149 */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004150static void cache_reap(struct work_struct *w)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004151{
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004152 struct kmem_cache *searchp;
Christoph Lametere498be72005-09-09 13:03:32 -07004153 struct kmem_list3 *l3;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07004154 int node = numa_mem_id();
Jean Delvarebf6aede2009-04-02 16:56:54 -07004155 struct delayed_work *work = to_delayed_work(w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004156
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004157 if (!mutex_trylock(&cache_chain_mutex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004158 /* Give up. Setup the next iteration. */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004159 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004160
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004161 list_for_each_entry(searchp, &cache_chain, next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004162 check_irq_on();
4163
Christoph Lameter35386e32006-03-22 00:09:05 -08004164 /*
4165 * We only take the l3 lock if absolutely necessary and we
4166 * have established with reasonable certainty that
4167 * we can do some work if the lock was obtained.
4168 */
Christoph Lameteraab22072006-03-22 00:09:06 -08004169 l3 = searchp->nodelists[node];
Christoph Lameter35386e32006-03-22 00:09:05 -08004170
Christoph Lameter8fce4d82006-03-09 17:33:54 -08004171 reap_alien(searchp, l3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004172
Christoph Lameteraab22072006-03-22 00:09:06 -08004173 drain_array(searchp, l3, cpu_cache_get(searchp), 0, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004174
Christoph Lameter35386e32006-03-22 00:09:05 -08004175 /*
4176 * These are racy checks but it does not matter
4177 * if we skip one check or scan twice.
4178 */
Christoph Lametere498be72005-09-09 13:03:32 -07004179 if (time_after(l3->next_reap, jiffies))
Christoph Lameter35386e32006-03-22 00:09:05 -08004180 goto next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004181
Christoph Lametere498be72005-09-09 13:03:32 -07004182 l3->next_reap = jiffies + REAPTIMEOUT_LIST3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004183
Christoph Lameteraab22072006-03-22 00:09:06 -08004184 drain_array(searchp, l3, l3->shared, 0, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004185
Christoph Lametered11d9e2006-06-30 01:55:45 -07004186 if (l3->free_touched)
Christoph Lametere498be72005-09-09 13:03:32 -07004187 l3->free_touched = 0;
Christoph Lametered11d9e2006-06-30 01:55:45 -07004188 else {
4189 int freed;
4190
4191 freed = drain_freelist(searchp, l3, (l3->free_limit +
4192 5 * searchp->num - 1) / (5 * searchp->num));
4193 STATS_ADD_REAPED(searchp, freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004194 }
Christoph Lameter35386e32006-03-22 00:09:05 -08004195next:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004196 cond_resched();
4197 }
4198 check_irq_on();
Ingo Molnarfc0abb12006-01-18 17:42:33 -08004199 mutex_unlock(&cache_chain_mutex);
Christoph Lameter8fce4d82006-03-09 17:33:54 -08004200 next_reap_node();
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004201out:
Andrew Mortona737b3e2006-03-22 00:08:11 -08004202 /* Set up the next iteration */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004203 schedule_delayed_work(work, round_jiffies_relative(REAPTIMEOUT_CPUC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004204}
4205
Linus Torvalds158a9622008-01-02 13:04:48 -08004206#ifdef CONFIG_SLABINFO
Linus Torvalds1da177e2005-04-16 15:20:36 -07004207
Pekka Enberg85289f92006-01-08 01:00:36 -08004208static void print_slabinfo_header(struct seq_file *m)
4209{
4210 /*
4211 * Output format version, so at least we can change it
4212 * without _too_ many complaints.
4213 */
4214#if STATS
4215 seq_puts(m, "slabinfo - version: 2.1 (statistics)\n");
4216#else
4217 seq_puts(m, "slabinfo - version: 2.1\n");
4218#endif
4219 seq_puts(m, "# name <active_objs> <num_objs> <objsize> "
4220 "<objperslab> <pagesperslab>");
4221 seq_puts(m, " : tunables <limit> <batchcount> <sharedfactor>");
4222 seq_puts(m, " : slabdata <active_slabs> <num_slabs> <sharedavail>");
4223#if STATS
4224 seq_puts(m, " : globalstat <listallocs> <maxobjs> <grown> <reaped> "
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -07004225 "<error> <maxfreeable> <nodeallocs> <remotefrees> <alienoverflow>");
Pekka Enberg85289f92006-01-08 01:00:36 -08004226 seq_puts(m, " : cpustat <allochit> <allocmiss> <freehit> <freemiss>");
4227#endif
4228 seq_putc(m, '\n');
4229}
4230
Linus Torvalds1da177e2005-04-16 15:20:36 -07004231static void *s_start(struct seq_file *m, loff_t *pos)
4232{
4233 loff_t n = *pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004234
Ingo Molnarfc0abb12006-01-18 17:42:33 -08004235 mutex_lock(&cache_chain_mutex);
Pekka Enberg85289f92006-01-08 01:00:36 -08004236 if (!n)
4237 print_slabinfo_header(m);
Pavel Emelianovb92151b2007-07-15 23:38:04 -07004238
4239 return seq_list_start(&cache_chain, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004240}
4241
4242static void *s_next(struct seq_file *m, void *p, loff_t *pos)
4243{
Pavel Emelianovb92151b2007-07-15 23:38:04 -07004244 return seq_list_next(p, &cache_chain, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004245}
4246
4247static void s_stop(struct seq_file *m, void *p)
4248{
Ingo Molnarfc0abb12006-01-18 17:42:33 -08004249 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004250}
4251
4252static int s_show(struct seq_file *m, void *p)
4253{
Pavel Emelianovb92151b2007-07-15 23:38:04 -07004254 struct kmem_cache *cachep = list_entry(p, struct kmem_cache, next);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004255 struct slab *slabp;
4256 unsigned long active_objs;
4257 unsigned long num_objs;
4258 unsigned long active_slabs = 0;
4259 unsigned long num_slabs, free_objects = 0, shared_avail = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07004260 const char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004261 char *error = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07004262 int node;
4263 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004264
Linus Torvalds1da177e2005-04-16 15:20:36 -07004265 active_objs = 0;
4266 num_slabs = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07004267 for_each_online_node(node) {
4268 l3 = cachep->nodelists[node];
4269 if (!l3)
4270 continue;
4271
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08004272 check_irq_on();
4273 spin_lock_irq(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07004274
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004275 list_for_each_entry(slabp, &l3->slabs_full, list) {
Christoph Lametere498be72005-09-09 13:03:32 -07004276 if (slabp->inuse != cachep->num && !error)
4277 error = "slabs_full accounting error";
4278 active_objs += cachep->num;
4279 active_slabs++;
4280 }
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004281 list_for_each_entry(slabp, &l3->slabs_partial, list) {
Christoph Lametere498be72005-09-09 13:03:32 -07004282 if (slabp->inuse == cachep->num && !error)
4283 error = "slabs_partial inuse accounting error";
4284 if (!slabp->inuse && !error)
4285 error = "slabs_partial/inuse accounting error";
4286 active_objs += slabp->inuse;
4287 active_slabs++;
4288 }
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004289 list_for_each_entry(slabp, &l3->slabs_free, list) {
Christoph Lametere498be72005-09-09 13:03:32 -07004290 if (slabp->inuse && !error)
4291 error = "slabs_free/inuse accounting error";
4292 num_slabs++;
4293 }
4294 free_objects += l3->free_objects;
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08004295 if (l3->shared)
4296 shared_avail += l3->shared->avail;
Christoph Lametere498be72005-09-09 13:03:32 -07004297
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08004298 spin_unlock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004299 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004300 num_slabs += active_slabs;
4301 num_objs = num_slabs * cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07004302 if (num_objs - active_objs != free_objects && !error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004303 error = "free_objects accounting error";
4304
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004305 name = cachep->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004306 if (error)
4307 printk(KERN_ERR "slab: cache %s error: %s\n", name, error);
4308
4309 seq_printf(m, "%-17s %6lu %6lu %6u %4u %4d",
Manfred Spraul3dafccf2006-02-01 03:05:42 -08004310 name, active_objs, num_objs, cachep->buffer_size,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004311 cachep->num, (1 << cachep->gfporder));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004312 seq_printf(m, " : tunables %4u %4u %4u",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004313 cachep->limit, cachep->batchcount, cachep->shared);
Christoph Lametere498be72005-09-09 13:03:32 -07004314 seq_printf(m, " : slabdata %6lu %6lu %6lu",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004315 active_slabs, num_slabs, shared_avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004316#if STATS
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004317 { /* list3 stats */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004318 unsigned long high = cachep->high_mark;
4319 unsigned long allocs = cachep->num_allocations;
4320 unsigned long grown = cachep->grown;
4321 unsigned long reaped = cachep->reaped;
4322 unsigned long errors = cachep->errors;
4323 unsigned long max_freeable = cachep->max_freeable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004324 unsigned long node_allocs = cachep->node_allocs;
Christoph Lametere498be72005-09-09 13:03:32 -07004325 unsigned long node_frees = cachep->node_frees;
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -07004326 unsigned long overflows = cachep->node_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004327
Joe Perchese92dd4f2010-03-26 19:27:58 -07004328 seq_printf(m, " : globalstat %7lu %6lu %5lu %4lu "
4329 "%4lu %4lu %4lu %4lu %4lu",
4330 allocs, high, grown,
4331 reaped, errors, max_freeable, node_allocs,
4332 node_frees, overflows);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004333 }
4334 /* cpu stats */
4335 {
4336 unsigned long allochit = atomic_read(&cachep->allochit);
4337 unsigned long allocmiss = atomic_read(&cachep->allocmiss);
4338 unsigned long freehit = atomic_read(&cachep->freehit);
4339 unsigned long freemiss = atomic_read(&cachep->freemiss);
4340
4341 seq_printf(m, " : cpustat %6lu %6lu %6lu %6lu",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004342 allochit, allocmiss, freehit, freemiss);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004343 }
4344#endif
4345 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07004346 return 0;
4347}
4348
4349/*
4350 * slabinfo_op - iterator that generates /proc/slabinfo
4351 *
4352 * Output layout:
4353 * cache-name
4354 * num-active-objs
4355 * total-objs
4356 * object size
4357 * num-active-slabs
4358 * total-slabs
4359 * num-pages-per-slab
4360 * + further values on SMP and with statistics enabled
4361 */
4362
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04004363static const struct seq_operations slabinfo_op = {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004364 .start = s_start,
4365 .next = s_next,
4366 .stop = s_stop,
4367 .show = s_show,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004368};
4369
4370#define MAX_SLABINFO_WRITE 128
4371/**
4372 * slabinfo_write - Tuning for the slab allocator
4373 * @file: unused
4374 * @buffer: user buffer
4375 * @count: data length
4376 * @ppos: unused
4377 */
H Hartley Sweeten68a1b192011-01-11 17:49:32 -06004378static ssize_t slabinfo_write(struct file *file, const char __user *buffer,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004379 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004380{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004381 char kbuf[MAX_SLABINFO_WRITE + 1], *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004382 int limit, batchcount, shared, res;
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004383 struct kmem_cache *cachep;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004384
Linus Torvalds1da177e2005-04-16 15:20:36 -07004385 if (count > MAX_SLABINFO_WRITE)
4386 return -EINVAL;
4387 if (copy_from_user(&kbuf, buffer, count))
4388 return -EFAULT;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004389 kbuf[MAX_SLABINFO_WRITE] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07004390
4391 tmp = strchr(kbuf, ' ');
4392 if (!tmp)
4393 return -EINVAL;
4394 *tmp = '\0';
4395 tmp++;
4396 if (sscanf(tmp, " %d %d %d", &limit, &batchcount, &shared) != 3)
4397 return -EINVAL;
4398
4399 /* Find the cache in the chain of caches. */
Ingo Molnarfc0abb12006-01-18 17:42:33 -08004400 mutex_lock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004401 res = -EINVAL;
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004402 list_for_each_entry(cachep, &cache_chain, next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004403 if (!strcmp(cachep->name, kbuf)) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08004404 if (limit < 1 || batchcount < 1 ||
4405 batchcount > limit || shared < 0) {
Christoph Lametere498be72005-09-09 13:03:32 -07004406 res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004407 } else {
Christoph Lametere498be72005-09-09 13:03:32 -07004408 res = do_tune_cpucache(cachep, limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03004409 batchcount, shared,
4410 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004411 }
4412 break;
4413 }
4414 }
Ingo Molnarfc0abb12006-01-18 17:42:33 -08004415 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004416 if (res >= 0)
4417 res = count;
4418 return res;
4419}
Al Viro871751e2006-03-25 03:06:39 -08004420
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04004421static int slabinfo_open(struct inode *inode, struct file *file)
4422{
4423 return seq_open(file, &slabinfo_op);
4424}
4425
4426static const struct file_operations proc_slabinfo_operations = {
4427 .open = slabinfo_open,
4428 .read = seq_read,
4429 .write = slabinfo_write,
4430 .llseek = seq_lseek,
4431 .release = seq_release,
4432};
4433
Al Viro871751e2006-03-25 03:06:39 -08004434#ifdef CONFIG_DEBUG_SLAB_LEAK
4435
4436static void *leaks_start(struct seq_file *m, loff_t *pos)
4437{
Al Viro871751e2006-03-25 03:06:39 -08004438 mutex_lock(&cache_chain_mutex);
Pavel Emelianovb92151b2007-07-15 23:38:04 -07004439 return seq_list_start(&cache_chain, *pos);
Al Viro871751e2006-03-25 03:06:39 -08004440}
4441
4442static inline int add_caller(unsigned long *n, unsigned long v)
4443{
4444 unsigned long *p;
4445 int l;
4446 if (!v)
4447 return 1;
4448 l = n[1];
4449 p = n + 2;
4450 while (l) {
4451 int i = l/2;
4452 unsigned long *q = p + 2 * i;
4453 if (*q == v) {
4454 q[1]++;
4455 return 1;
4456 }
4457 if (*q > v) {
4458 l = i;
4459 } else {
4460 p = q + 2;
4461 l -= i + 1;
4462 }
4463 }
4464 if (++n[1] == n[0])
4465 return 0;
4466 memmove(p + 2, p, n[1] * 2 * sizeof(unsigned long) - ((void *)p - (void *)n));
4467 p[0] = v;
4468 p[1] = 1;
4469 return 1;
4470}
4471
4472static void handle_slab(unsigned long *n, struct kmem_cache *c, struct slab *s)
4473{
4474 void *p;
4475 int i;
4476 if (n[0] == n[1])
4477 return;
4478 for (i = 0, p = s->s_mem; i < c->num; i++, p += c->buffer_size) {
4479 if (slab_bufctl(s)[i] != BUFCTL_ACTIVE)
4480 continue;
4481 if (!add_caller(n, (unsigned long)*dbg_userword(c, p)))
4482 return;
4483 }
4484}
4485
4486static void show_symbol(struct seq_file *m, unsigned long address)
4487{
4488#ifdef CONFIG_KALLSYMS
Al Viro871751e2006-03-25 03:06:39 -08004489 unsigned long offset, size;
Tejun Heo9281ace2007-07-17 04:03:51 -07004490 char modname[MODULE_NAME_LEN], name[KSYM_NAME_LEN];
Al Viro871751e2006-03-25 03:06:39 -08004491
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004492 if (lookup_symbol_attrs(address, &size, &offset, modname, name) == 0) {
Al Viro871751e2006-03-25 03:06:39 -08004493 seq_printf(m, "%s+%#lx/%#lx", name, offset, size);
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004494 if (modname[0])
Al Viro871751e2006-03-25 03:06:39 -08004495 seq_printf(m, " [%s]", modname);
4496 return;
4497 }
4498#endif
4499 seq_printf(m, "%p", (void *)address);
4500}
4501
4502static int leaks_show(struct seq_file *m, void *p)
4503{
Pavel Emelianovb92151b2007-07-15 23:38:04 -07004504 struct kmem_cache *cachep = list_entry(p, struct kmem_cache, next);
Al Viro871751e2006-03-25 03:06:39 -08004505 struct slab *slabp;
4506 struct kmem_list3 *l3;
4507 const char *name;
4508 unsigned long *n = m->private;
4509 int node;
4510 int i;
4511
4512 if (!(cachep->flags & SLAB_STORE_USER))
4513 return 0;
4514 if (!(cachep->flags & SLAB_RED_ZONE))
4515 return 0;
4516
4517 /* OK, we can do it */
4518
4519 n[1] = 0;
4520
4521 for_each_online_node(node) {
4522 l3 = cachep->nodelists[node];
4523 if (!l3)
4524 continue;
4525
4526 check_irq_on();
4527 spin_lock_irq(&l3->list_lock);
4528
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004529 list_for_each_entry(slabp, &l3->slabs_full, list)
Al Viro871751e2006-03-25 03:06:39 -08004530 handle_slab(n, cachep, slabp);
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004531 list_for_each_entry(slabp, &l3->slabs_partial, list)
Al Viro871751e2006-03-25 03:06:39 -08004532 handle_slab(n, cachep, slabp);
Al Viro871751e2006-03-25 03:06:39 -08004533 spin_unlock_irq(&l3->list_lock);
4534 }
4535 name = cachep->name;
4536 if (n[0] == n[1]) {
4537 /* Increase the buffer size */
4538 mutex_unlock(&cache_chain_mutex);
4539 m->private = kzalloc(n[0] * 4 * sizeof(unsigned long), GFP_KERNEL);
4540 if (!m->private) {
4541 /* Too bad, we are really out */
4542 m->private = n;
4543 mutex_lock(&cache_chain_mutex);
4544 return -ENOMEM;
4545 }
4546 *(unsigned long *)m->private = n[0] * 2;
4547 kfree(n);
4548 mutex_lock(&cache_chain_mutex);
4549 /* Now make sure this entry will be retried */
4550 m->count = m->size;
4551 return 0;
4552 }
4553 for (i = 0; i < n[1]; i++) {
4554 seq_printf(m, "%s: %lu ", name, n[2*i+3]);
4555 show_symbol(m, n[2*i+2]);
4556 seq_putc(m, '\n');
4557 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004558
Al Viro871751e2006-03-25 03:06:39 -08004559 return 0;
4560}
4561
Alexey Dobriyana0ec95a82008-10-06 00:59:10 +04004562static const struct seq_operations slabstats_op = {
Al Viro871751e2006-03-25 03:06:39 -08004563 .start = leaks_start,
4564 .next = s_next,
4565 .stop = s_stop,
4566 .show = leaks_show,
4567};
Alexey Dobriyana0ec95a82008-10-06 00:59:10 +04004568
4569static int slabstats_open(struct inode *inode, struct file *file)
4570{
4571 unsigned long *n = kzalloc(PAGE_SIZE, GFP_KERNEL);
4572 int ret = -ENOMEM;
4573 if (n) {
4574 ret = seq_open(file, &slabstats_op);
4575 if (!ret) {
4576 struct seq_file *m = file->private_data;
4577 *n = PAGE_SIZE / (2 * sizeof(unsigned long));
4578 m->private = n;
4579 n = NULL;
4580 }
4581 kfree(n);
4582 }
4583 return ret;
4584}
4585
4586static const struct file_operations proc_slabstats_operations = {
4587 .open = slabstats_open,
4588 .read = seq_read,
4589 .llseek = seq_lseek,
4590 .release = seq_release_private,
4591};
Al Viro871751e2006-03-25 03:06:39 -08004592#endif
Alexey Dobriyana0ec95a82008-10-06 00:59:10 +04004593
4594static int __init slab_proc_init(void)
4595{
Vasiliy Kulikovab067e92011-09-27 21:54:53 +04004596 proc_create("slabinfo",S_IWUSR|S_IRUSR,NULL,&proc_slabinfo_operations);
Alexey Dobriyana0ec95a82008-10-06 00:59:10 +04004597#ifdef CONFIG_DEBUG_SLAB_LEAK
4598 proc_create("slab_allocators", 0, NULL, &proc_slabstats_operations);
4599#endif
4600 return 0;
4601}
4602module_init(slab_proc_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004603#endif
4604
Manfred Spraul00e145b2005-09-03 15:55:07 -07004605/**
4606 * ksize - get the actual amount of memory allocated for a given object
4607 * @objp: Pointer to the object
4608 *
4609 * kmalloc may internally round up allocations and return more memory
4610 * than requested. ksize() can be used to determine the actual amount of
4611 * memory allocated. The caller may use this additional memory, even though
4612 * a smaller amount of memory was initially specified with the kmalloc call.
4613 * The caller must guarantee that objp points to a valid object previously
4614 * allocated with either kmalloc() or kmem_cache_alloc(). The object
4615 * must not be freed during the duration of the call.
4616 */
Pekka Enbergfd76bab2007-05-06 14:48:40 -07004617size_t ksize(const void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004618{
Christoph Lameteref8b4522007-10-16 01:24:46 -07004619 BUG_ON(!objp);
4620 if (unlikely(objp == ZERO_SIZE_PTR))
Manfred Spraul00e145b2005-09-03 15:55:07 -07004621 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004622
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08004623 return obj_size(virt_to_cache(objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004624}
Kirill A. Shutemovb1aabec2009-02-10 15:21:44 +02004625EXPORT_SYMBOL(ksize);