blob: c271d5b71093d4aa31329982026fbe206efa64b0 [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
Christoph Lameter18004c52012-07-06 15:25:12 -050071 * The global cache-chain is protected by the mutex 'slab_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 Dobriyana0ec95a2008-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
Mel Gorman381760e2012-07-31 16:44:30 -0700120#include <net/sock.h>
121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122#include <asm/cacheflush.h>
123#include <asm/tlbflush.h>
124#include <asm/page.h>
125
Steven Rostedt4dee6b62012-01-09 17:15:42 -0500126#include <trace/events/kmem.h>
127
Mel Gorman072bb0a2012-07-31 16:43:58 -0700128#include "internal.h"
129
Glauber Costab9ce5ef2012-12-18 14:22:46 -0800130#include "slab.h"
131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132/*
Christoph Lameter50953fe2007-05-06 14:50:16 -0700133 * DEBUG - 1 for kmem_cache_create() to honour; SLAB_RED_ZONE & SLAB_POISON.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 * 0 for faster, smaller code (especially in the critical paths).
135 *
136 * STATS - 1 to collect stats for /proc/slabinfo.
137 * 0 for faster, smaller code (especially in the critical paths).
138 *
139 * FORCED_DEBUG - 1 enables SLAB_RED_ZONE and SLAB_POISON (if possible)
140 */
141
142#ifdef CONFIG_DEBUG_SLAB
143#define DEBUG 1
144#define STATS 1
145#define FORCED_DEBUG 1
146#else
147#define DEBUG 0
148#define STATS 0
149#define FORCED_DEBUG 0
150#endif
151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152/* Shouldn't this be in a header file somewhere? */
153#define BYTES_PER_WORD sizeof(void *)
David Woodhouse87a927c2007-07-04 21:26:44 -0400154#define REDZONE_ALIGN max(BYTES_PER_WORD, __alignof__(unsigned long long))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156#ifndef ARCH_KMALLOC_FLAGS
157#define ARCH_KMALLOC_FLAGS SLAB_HWCACHE_ALIGN
158#endif
159
Mel Gorman072bb0a2012-07-31 16:43:58 -0700160/*
161 * true if a page was allocated from pfmemalloc reserves for network-based
162 * swap
163 */
164static bool pfmemalloc_active __read_mostly;
165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166/*
Lai Jiangshan5bfe53a2011-03-10 15:22:24 +0800167 * struct slab
168 *
169 * Manages the objs in a slab. Placed either at the beginning of mem allocated
170 * for a slab, or allocated from an general cache.
171 * Slabs are chained into three list: fully used, partial, fully free slabs.
172 */
173struct slab {
Joonsoo Kim68126702013-10-24 10:07:42 +0900174 struct {
175 struct list_head list;
176 void *s_mem; /* including colour offset */
177 unsigned int inuse; /* num of objs active in slab */
Joonsoo Kim16025172013-10-24 10:07:46 +0900178 unsigned int free;
Lai Jiangshan5bfe53a2011-03-10 15:22:24 +0800179 };
180};
181
182/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 * struct array_cache
184 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 * Purpose:
186 * - LIFO ordering, to hand out cache-warm objects from _alloc
187 * - reduce the number of linked list operations
188 * - reduce spinlock operations
189 *
190 * The limit is stored in the per-cpu structure to reduce the data cache
191 * footprint.
192 *
193 */
194struct array_cache {
195 unsigned int avail;
196 unsigned int limit;
197 unsigned int batchcount;
198 unsigned int touched;
Christoph Lametere498be72005-09-09 13:03:32 -0700199 spinlock_t lock;
Robert P. J. Daybda5b652007-10-16 23:30:05 -0700200 void *entry[]; /*
Andrew Mortona737b3e2006-03-22 00:08:11 -0800201 * Must have this definition in here for the proper
202 * alignment of array_cache. Also simplifies accessing
203 * the entries.
Mel Gorman072bb0a2012-07-31 16:43:58 -0700204 *
205 * Entries should not be directly dereferenced as
206 * entries belonging to slabs marked pfmemalloc will
207 * have the lower bits set SLAB_OBJ_PFMEMALLOC
Andrew Mortona737b3e2006-03-22 00:08:11 -0800208 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209};
210
Mel Gorman072bb0a2012-07-31 16:43:58 -0700211#define SLAB_OBJ_PFMEMALLOC 1
212static inline bool is_obj_pfmemalloc(void *objp)
213{
214 return (unsigned long)objp & SLAB_OBJ_PFMEMALLOC;
215}
216
217static inline void set_obj_pfmemalloc(void **objp)
218{
219 *objp = (void *)((unsigned long)*objp | SLAB_OBJ_PFMEMALLOC);
220 return;
221}
222
223static inline void clear_obj_pfmemalloc(void **objp)
224{
225 *objp = (void *)((unsigned long)*objp & ~SLAB_OBJ_PFMEMALLOC);
226}
227
Andrew Mortona737b3e2006-03-22 00:08:11 -0800228/*
229 * bootstrap: The caches do not work without cpuarrays anymore, but the
230 * cpuarrays are allocated from the generic caches...
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 */
232#define BOOT_CPUCACHE_ENTRIES 1
233struct arraycache_init {
234 struct array_cache cache;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800235 void *entries[BOOT_CPUCACHE_ENTRIES];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236};
237
238/*
Christoph Lametere498be72005-09-09 13:03:32 -0700239 * Need this for bootstrapping a per node allocator.
240 */
Pekka Enberg556a1692008-01-25 08:20:51 +0200241#define NUM_INIT_LISTS (3 * MAX_NUMNODES)
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000242static struct kmem_cache_node __initdata init_kmem_cache_node[NUM_INIT_LISTS];
Christoph Lametere498be72005-09-09 13:03:32 -0700243#define CACHE_CACHE 0
Pekka Enberg556a1692008-01-25 08:20:51 +0200244#define SIZE_AC MAX_NUMNODES
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000245#define SIZE_NODE (2 * MAX_NUMNODES)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Christoph Lametered11d9e2006-06-30 01:55:45 -0700247static int drain_freelist(struct kmem_cache *cache,
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000248 struct kmem_cache_node *n, int tofree);
Christoph Lametered11d9e2006-06-30 01:55:45 -0700249static void free_block(struct kmem_cache *cachep, void **objpp, int len,
250 int node);
Pekka Enberg83b519e2009-06-10 19:40:04 +0300251static int enable_cpucache(struct kmem_cache *cachep, gfp_t gfp);
David Howells65f27f32006-11-22 14:55:48 +0000252static void cache_reap(struct work_struct *unused);
Christoph Lametered11d9e2006-06-30 01:55:45 -0700253
Ingo Molnare0a42722006-06-23 02:03:46 -0700254static int slab_early_init = 1;
255
Christoph Lametere3366012013-01-10 19:14:18 +0000256#define INDEX_AC kmalloc_index(sizeof(struct arraycache_init))
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000257#define INDEX_NODE kmalloc_index(sizeof(struct kmem_cache_node))
Christoph Lametere498be72005-09-09 13:03:32 -0700258
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000259static void kmem_cache_node_init(struct kmem_cache_node *parent)
Christoph Lametere498be72005-09-09 13:03:32 -0700260{
261 INIT_LIST_HEAD(&parent->slabs_full);
262 INIT_LIST_HEAD(&parent->slabs_partial);
263 INIT_LIST_HEAD(&parent->slabs_free);
264 parent->shared = NULL;
265 parent->alien = NULL;
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -0800266 parent->colour_next = 0;
Christoph Lametere498be72005-09-09 13:03:32 -0700267 spin_lock_init(&parent->list_lock);
268 parent->free_objects = 0;
269 parent->free_touched = 0;
270}
271
Andrew Mortona737b3e2006-03-22 00:08:11 -0800272#define MAKE_LIST(cachep, listp, slab, nodeid) \
273 do { \
274 INIT_LIST_HEAD(listp); \
Christoph Lameter6a673682013-01-10 19:14:19 +0000275 list_splice(&(cachep->node[nodeid]->slab), listp); \
Christoph Lametere498be72005-09-09 13:03:32 -0700276 } while (0)
277
Andrew Mortona737b3e2006-03-22 00:08:11 -0800278#define MAKE_ALL_LISTS(cachep, ptr, nodeid) \
279 do { \
Christoph Lametere498be72005-09-09 13:03:32 -0700280 MAKE_LIST((cachep), (&(ptr)->slabs_full), slabs_full, nodeid); \
281 MAKE_LIST((cachep), (&(ptr)->slabs_partial), slabs_partial, nodeid); \
282 MAKE_LIST((cachep), (&(ptr)->slabs_free), slabs_free, nodeid); \
283 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285#define CFLGS_OFF_SLAB (0x80000000UL)
286#define OFF_SLAB(x) ((x)->flags & CFLGS_OFF_SLAB)
287
288#define BATCHREFILL_LIMIT 16
Andrew Mortona737b3e2006-03-22 00:08:11 -0800289/*
290 * Optimization question: fewer reaps means less probability for unnessary
291 * cpucache drain/refill cycles.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 *
Adrian Bunkdc6f3f22005-11-08 16:44:08 +0100293 * OTOH the cpuarrays can contain lots of objects,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 * which could lock up otherwise freeable slabs.
295 */
296#define REAPTIMEOUT_CPUC (2*HZ)
297#define REAPTIMEOUT_LIST3 (4*HZ)
298
299#if STATS
300#define STATS_INC_ACTIVE(x) ((x)->num_active++)
301#define STATS_DEC_ACTIVE(x) ((x)->num_active--)
302#define STATS_INC_ALLOCED(x) ((x)->num_allocations++)
303#define STATS_INC_GROWN(x) ((x)->grown++)
Christoph Lametered11d9e2006-06-30 01:55:45 -0700304#define STATS_ADD_REAPED(x,y) ((x)->reaped += (y))
Andrew Mortona737b3e2006-03-22 00:08:11 -0800305#define STATS_SET_HIGH(x) \
306 do { \
307 if ((x)->num_active > (x)->high_mark) \
308 (x)->high_mark = (x)->num_active; \
309 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310#define STATS_INC_ERR(x) ((x)->errors++)
311#define STATS_INC_NODEALLOCS(x) ((x)->node_allocs++)
Christoph Lametere498be72005-09-09 13:03:32 -0700312#define STATS_INC_NODEFREES(x) ((x)->node_frees++)
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -0700313#define STATS_INC_ACOVERFLOW(x) ((x)->node_overflow++)
Andrew Mortona737b3e2006-03-22 00:08:11 -0800314#define STATS_SET_FREEABLE(x, i) \
315 do { \
316 if ((x)->max_freeable < i) \
317 (x)->max_freeable = i; \
318 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319#define STATS_INC_ALLOCHIT(x) atomic_inc(&(x)->allochit)
320#define STATS_INC_ALLOCMISS(x) atomic_inc(&(x)->allocmiss)
321#define STATS_INC_FREEHIT(x) atomic_inc(&(x)->freehit)
322#define STATS_INC_FREEMISS(x) atomic_inc(&(x)->freemiss)
323#else
324#define STATS_INC_ACTIVE(x) do { } while (0)
325#define STATS_DEC_ACTIVE(x) do { } while (0)
326#define STATS_INC_ALLOCED(x) do { } while (0)
327#define STATS_INC_GROWN(x) do { } while (0)
Andi Kleen4e60c862010-08-09 17:19:03 -0700328#define STATS_ADD_REAPED(x,y) do { (void)(y); } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329#define STATS_SET_HIGH(x) do { } while (0)
330#define STATS_INC_ERR(x) do { } while (0)
331#define STATS_INC_NODEALLOCS(x) do { } while (0)
Christoph Lametere498be72005-09-09 13:03:32 -0700332#define STATS_INC_NODEFREES(x) do { } while (0)
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -0700333#define STATS_INC_ACOVERFLOW(x) do { } while (0)
Andrew Mortona737b3e2006-03-22 00:08:11 -0800334#define STATS_SET_FREEABLE(x, i) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335#define STATS_INC_ALLOCHIT(x) do { } while (0)
336#define STATS_INC_ALLOCMISS(x) do { } while (0)
337#define STATS_INC_FREEHIT(x) do { } while (0)
338#define STATS_INC_FREEMISS(x) do { } while (0)
339#endif
340
341#if DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
Andrew Mortona737b3e2006-03-22 00:08:11 -0800343/*
344 * memory layout of objects:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 * 0 : objp
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800346 * 0 .. cachep->obj_offset - BYTES_PER_WORD - 1: padding. This ensures that
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 * the end of an object is aligned with the end of the real
348 * allocation. Catches writes behind the end of the allocation.
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800349 * cachep->obj_offset - BYTES_PER_WORD .. cachep->obj_offset - 1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 * redzone word.
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800351 * cachep->obj_offset: The real object.
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500352 * cachep->size - 2* BYTES_PER_WORD: redzone word [BYTES_PER_WORD long]
353 * cachep->size - 1* BYTES_PER_WORD: last caller address
Andrew Mortona737b3e2006-03-22 00:08:11 -0800354 * [BYTES_PER_WORD long]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800356static int obj_offset(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357{
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800358 return cachep->obj_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359}
360
David Woodhouseb46b8f12007-05-08 00:22:59 -0700361static unsigned long long *dbg_redzone1(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362{
363 BUG_ON(!(cachep->flags & SLAB_RED_ZONE));
David Woodhouseb46b8f12007-05-08 00:22:59 -0700364 return (unsigned long long*) (objp + obj_offset(cachep) -
365 sizeof(unsigned long long));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366}
367
David Woodhouseb46b8f12007-05-08 00:22:59 -0700368static unsigned long long *dbg_redzone2(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369{
370 BUG_ON(!(cachep->flags & SLAB_RED_ZONE));
371 if (cachep->flags & SLAB_STORE_USER)
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500372 return (unsigned long long *)(objp + cachep->size -
David Woodhouseb46b8f12007-05-08 00:22:59 -0700373 sizeof(unsigned long long) -
David Woodhouse87a927c2007-07-04 21:26:44 -0400374 REDZONE_ALIGN);
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500375 return (unsigned long long *) (objp + cachep->size -
David Woodhouseb46b8f12007-05-08 00:22:59 -0700376 sizeof(unsigned long long));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377}
378
Pekka Enberg343e0d72006-02-01 03:05:50 -0800379static void **dbg_userword(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
381 BUG_ON(!(cachep->flags & SLAB_STORE_USER));
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500382 return (void **)(objp + cachep->size - BYTES_PER_WORD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383}
384
385#else
386
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800387#define obj_offset(x) 0
David Woodhouseb46b8f12007-05-08 00:22:59 -0700388#define dbg_redzone1(cachep, objp) ({BUG(); (unsigned long long *)NULL;})
389#define dbg_redzone2(cachep, objp) ({BUG(); (unsigned long long *)NULL;})
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390#define dbg_userword(cachep, objp) ({BUG(); (void **)NULL;})
391
392#endif
393
394/*
David Rientjes3df1ccc2011-10-18 22:09:28 -0700395 * Do not go above this order unless 0 objects fit into the slab or
396 * overridden on the command line.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 */
David Rientjes543585c2011-10-18 22:09:24 -0700398#define SLAB_MAX_ORDER_HI 1
399#define SLAB_MAX_ORDER_LO 0
400static int slab_max_order = SLAB_MAX_ORDER_LO;
David Rientjes3df1ccc2011-10-18 22:09:28 -0700401static bool slab_max_order_set __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -0800403static inline struct kmem_cache *virt_to_cache(const void *obj)
404{
Christoph Lameterb49af682007-05-06 14:49:41 -0700405 struct page *page = virt_to_head_page(obj);
Christoph Lameter35026082012-06-13 10:24:56 -0500406 return page->slab_cache;
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -0800407}
408
409static inline struct slab *virt_to_slab(const void *obj)
410{
Christoph Lameterb49af682007-05-06 14:49:41 -0700411 struct page *page = virt_to_head_page(obj);
Christoph Lameter35026082012-06-13 10:24:56 -0500412
413 VM_BUG_ON(!PageSlab(page));
414 return page->slab_page;
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -0800415}
416
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800417static inline void *index_to_obj(struct kmem_cache *cache, struct slab *slab,
418 unsigned int idx)
419{
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500420 return slab->s_mem + cache->size * idx;
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800421}
422
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800423/*
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500424 * We want to avoid an expensive divide : (offset / cache->size)
425 * Using the fact that size is a constant for a particular cache,
426 * we can replace (offset / cache->size) by
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800427 * reciprocal_divide(offset, cache->reciprocal_buffer_size)
428 */
429static inline unsigned int obj_to_index(const struct kmem_cache *cache,
430 const struct slab *slab, void *obj)
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800431{
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800432 u32 offset = (obj - slab->s_mem);
433 return reciprocal_divide(offset, cache->reciprocal_buffer_size);
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800434}
435
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436static struct arraycache_init initarray_generic =
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800437 { {0, BOOT_CPUCACHE_ENTRIES, 1, 0} };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
439/* internal cache of cache description objs */
Christoph Lameter9b030cb2012-09-05 00:20:33 +0000440static struct kmem_cache kmem_cache_boot = {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800441 .batchcount = 1,
442 .limit = BOOT_CPUCACHE_ENTRIES,
443 .shared = 1,
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500444 .size = sizeof(struct kmem_cache),
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800445 .name = "kmem_cache",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446};
447
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -0700448#define BAD_ALIEN_MAGIC 0x01020304ul
449
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200450#ifdef CONFIG_LOCKDEP
451
452/*
453 * Slab sometimes uses the kmalloc slabs to store the slab headers
454 * for other slabs "off slab".
455 * The locking for this is tricky in that it nests within the locks
456 * of all other slabs in a few places; to deal with this special
457 * locking we put on-slab caches into a separate lock-class.
458 *
459 * We set lock class for alien array caches which are up during init.
460 * The lock annotation will be lost if all cpus of a node goes down and
461 * then comes back up during hotplug
462 */
463static struct lock_class_key on_slab_l3_key;
464static struct lock_class_key on_slab_alc_key;
465
Peter Zijlstra83835b32011-07-22 15:26:05 +0200466static struct lock_class_key debugobj_l3_key;
467static struct lock_class_key debugobj_alc_key;
468
469static void slab_set_lock_classes(struct kmem_cache *cachep,
470 struct lock_class_key *l3_key, struct lock_class_key *alc_key,
471 int q)
472{
473 struct array_cache **alc;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000474 struct kmem_cache_node *n;
Peter Zijlstra83835b32011-07-22 15:26:05 +0200475 int r;
476
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000477 n = cachep->node[q];
478 if (!n)
Peter Zijlstra83835b32011-07-22 15:26:05 +0200479 return;
480
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000481 lockdep_set_class(&n->list_lock, l3_key);
482 alc = n->alien;
Peter Zijlstra83835b32011-07-22 15:26:05 +0200483 /*
484 * FIXME: This check for BAD_ALIEN_MAGIC
485 * should go away when common slab code is taught to
486 * work even without alien caches.
487 * Currently, non NUMA code returns BAD_ALIEN_MAGIC
488 * for alloc_alien_cache,
489 */
490 if (!alc || (unsigned long)alc == BAD_ALIEN_MAGIC)
491 return;
492 for_each_node(r) {
493 if (alc[r])
494 lockdep_set_class(&alc[r]->lock, alc_key);
495 }
496}
497
498static void slab_set_debugobj_lock_classes_node(struct kmem_cache *cachep, int node)
499{
500 slab_set_lock_classes(cachep, &debugobj_l3_key, &debugobj_alc_key, node);
501}
502
503static void slab_set_debugobj_lock_classes(struct kmem_cache *cachep)
504{
505 int node;
506
507 for_each_online_node(node)
508 slab_set_debugobj_lock_classes_node(cachep, node);
509}
510
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200511static void init_node_lock_keys(int q)
512{
Christoph Lametere3366012013-01-10 19:14:18 +0000513 int i;
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200514
Christoph Lameter97d06602012-07-06 15:25:11 -0500515 if (slab_state < UP)
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200516 return;
517
Christoph Lameter0f8f8092013-07-02 12:12:10 -0700518 for (i = 1; i <= KMALLOC_SHIFT_HIGH; i++) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000519 struct kmem_cache_node *n;
Christoph Lametere3366012013-01-10 19:14:18 +0000520 struct kmem_cache *cache = kmalloc_caches[i];
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200521
Christoph Lametere3366012013-01-10 19:14:18 +0000522 if (!cache)
Pekka Enberg00afa752009-12-27 14:33:14 +0200523 continue;
Peter Zijlstra83835b32011-07-22 15:26:05 +0200524
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000525 n = cache->node[q];
526 if (!n || OFF_SLAB(cache))
Christoph Lametere3366012013-01-10 19:14:18 +0000527 continue;
528
529 slab_set_lock_classes(cache, &on_slab_l3_key,
Peter Zijlstra83835b32011-07-22 15:26:05 +0200530 &on_slab_alc_key, q);
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200531 }
532}
533
Glauber Costa6ccfb5b2012-12-18 14:22:31 -0800534static void on_slab_lock_classes_node(struct kmem_cache *cachep, int q)
535{
Christoph Lameter6a673682013-01-10 19:14:19 +0000536 if (!cachep->node[q])
Glauber Costa6ccfb5b2012-12-18 14:22:31 -0800537 return;
538
539 slab_set_lock_classes(cachep, &on_slab_l3_key,
540 &on_slab_alc_key, q);
541}
542
543static inline void on_slab_lock_classes(struct kmem_cache *cachep)
544{
545 int node;
546
547 VM_BUG_ON(OFF_SLAB(cachep));
548 for_each_node(node)
549 on_slab_lock_classes_node(cachep, node);
550}
551
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200552static inline void init_lock_keys(void)
553{
554 int node;
555
556 for_each_node(node)
557 init_node_lock_keys(node);
558}
559#else
560static void init_node_lock_keys(int q)
561{
562}
563
564static inline void init_lock_keys(void)
565{
566}
Peter Zijlstra83835b32011-07-22 15:26:05 +0200567
Glauber Costa6ccfb5b2012-12-18 14:22:31 -0800568static inline void on_slab_lock_classes(struct kmem_cache *cachep)
569{
570}
571
572static inline void on_slab_lock_classes_node(struct kmem_cache *cachep, int node)
573{
574}
575
Peter Zijlstra83835b32011-07-22 15:26:05 +0200576static void slab_set_debugobj_lock_classes_node(struct kmem_cache *cachep, int node)
577{
578}
579
580static void slab_set_debugobj_lock_classes(struct kmem_cache *cachep)
581{
582}
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200583#endif
584
Tejun Heo1871e522009-10-29 22:34:13 +0900585static DEFINE_PER_CPU(struct delayed_work, slab_reap_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586
Pekka Enberg343e0d72006-02-01 03:05:50 -0800587static inline struct array_cache *cpu_cache_get(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588{
589 return cachep->array[smp_processor_id()];
590}
591
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800592static size_t slab_mgmt_size(size_t nr_objs, size_t align)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593{
Joonsoo Kim16025172013-10-24 10:07:46 +0900594 return ALIGN(sizeof(struct slab)+nr_objs*sizeof(unsigned int), align);
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800595}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596
Andrew Mortona737b3e2006-03-22 00:08:11 -0800597/*
598 * Calculate the number of objects and left-over bytes for a given buffer size.
599 */
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800600static void cache_estimate(unsigned long gfporder, size_t buffer_size,
601 size_t align, int flags, size_t *left_over,
602 unsigned int *num)
603{
604 int nr_objs;
605 size_t mgmt_size;
606 size_t slab_size = PAGE_SIZE << gfporder;
607
608 /*
609 * The slab management structure can be either off the slab or
610 * on it. For the latter case, the memory allocated for a
611 * slab is used for:
612 *
613 * - The struct slab
Joonsoo Kim16025172013-10-24 10:07:46 +0900614 * - One unsigned int for each object
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800615 * - Padding to respect alignment of @align
616 * - @buffer_size bytes for each object
617 *
618 * If the slab management structure is off the slab, then the
619 * alignment will already be calculated into the size. Because
620 * the slabs are all pages aligned, the objects will be at the
621 * correct alignment when allocated.
622 */
623 if (flags & CFLGS_OFF_SLAB) {
624 mgmt_size = 0;
625 nr_objs = slab_size / buffer_size;
626
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800627 } else {
628 /*
629 * Ignore padding for the initial guess. The padding
630 * is at most @align-1 bytes, and @buffer_size is at
631 * least @align. In the worst case, this result will
632 * be one greater than the number of objects that fit
633 * into the memory allocation when taking the padding
634 * into account.
635 */
636 nr_objs = (slab_size - sizeof(struct slab)) /
Joonsoo Kim16025172013-10-24 10:07:46 +0900637 (buffer_size + sizeof(unsigned int));
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800638
639 /*
640 * This calculated number will be either the right
641 * amount, or one greater than what we want.
642 */
643 if (slab_mgmt_size(nr_objs, align) + nr_objs*buffer_size
644 > slab_size)
645 nr_objs--;
646
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800647 mgmt_size = slab_mgmt_size(nr_objs, align);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 }
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800649 *num = nr_objs;
650 *left_over = slab_size - nr_objs*buffer_size - mgmt_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651}
652
Christoph Lameterf28510d2012-09-11 19:49:38 +0000653#if DEBUG
Harvey Harrisond40cee22008-04-30 00:55:07 -0700654#define slab_error(cachep, msg) __slab_error(__func__, cachep, msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655
Andrew Mortona737b3e2006-03-22 00:08:11 -0800656static void __slab_error(const char *function, struct kmem_cache *cachep,
657 char *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658{
659 printk(KERN_ERR "slab error in %s(): cache `%s': %s\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800660 function, cachep->name, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661 dump_stack();
Rusty Russell373d4d02013-01-21 17:17:39 +1030662 add_taint(TAINT_BAD_PAGE, LOCKDEP_NOW_UNRELIABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663}
Christoph Lameterf28510d2012-09-11 19:49:38 +0000664#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
Paul Menage3395ee02006-12-06 20:32:16 -0800666/*
667 * By default on NUMA we use alien caches to stage the freeing of
668 * objects allocated from other nodes. This causes massive memory
669 * inefficiencies when using fake NUMA setup to split memory into a
670 * large number of small nodes, so it can be disabled on the command
671 * line
672 */
673
674static int use_alien_caches __read_mostly = 1;
675static int __init noaliencache_setup(char *s)
676{
677 use_alien_caches = 0;
678 return 1;
679}
680__setup("noaliencache", noaliencache_setup);
681
David Rientjes3df1ccc2011-10-18 22:09:28 -0700682static int __init slab_max_order_setup(char *str)
683{
684 get_option(&str, &slab_max_order);
685 slab_max_order = slab_max_order < 0 ? 0 :
686 min(slab_max_order, MAX_ORDER - 1);
687 slab_max_order_set = true;
688
689 return 1;
690}
691__setup("slab_max_order=", slab_max_order_setup);
692
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800693#ifdef CONFIG_NUMA
694/*
695 * Special reaping functions for NUMA systems called from cache_reap().
696 * These take care of doing round robin flushing of alien caches (containing
697 * objects freed on different nodes from which they were allocated) and the
698 * flushing of remote pcps by calling drain_node_pages.
699 */
Tejun Heo1871e522009-10-29 22:34:13 +0900700static DEFINE_PER_CPU(unsigned long, slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800701
702static void init_reap_node(int cpu)
703{
704 int node;
705
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -0700706 node = next_node(cpu_to_mem(cpu), node_online_map);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800707 if (node == MAX_NUMNODES)
Paul Jackson442295c2006-03-22 00:09:11 -0800708 node = first_node(node_online_map);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800709
Tejun Heo1871e522009-10-29 22:34:13 +0900710 per_cpu(slab_reap_node, cpu) = node;
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800711}
712
713static void next_reap_node(void)
714{
Christoph Lameter909ea962010-12-08 16:22:55 +0100715 int node = __this_cpu_read(slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800716
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800717 node = next_node(node, node_online_map);
718 if (unlikely(node >= MAX_NUMNODES))
719 node = first_node(node_online_map);
Christoph Lameter909ea962010-12-08 16:22:55 +0100720 __this_cpu_write(slab_reap_node, node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800721}
722
723#else
724#define init_reap_node(cpu) do { } while (0)
725#define next_reap_node(void) do { } while (0)
726#endif
727
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728/*
729 * Initiate the reap timer running on the target CPU. We run at around 1 to 2Hz
730 * via the workqueue/eventd.
731 * Add the CPU number into the expiration time to minimize the possibility of
732 * the CPUs getting into lockstep and contending for the global cache chain
733 * lock.
734 */
Paul Gortmaker0db06282013-06-19 14:53:51 -0400735static void start_cpu_timer(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736{
Tejun Heo1871e522009-10-29 22:34:13 +0900737 struct delayed_work *reap_work = &per_cpu(slab_reap_work, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
739 /*
740 * When this gets called from do_initcalls via cpucache_init(),
741 * init_workqueues() has already run, so keventd will be setup
742 * at that time.
743 */
David Howells52bad642006-11-22 14:54:01 +0000744 if (keventd_up() && reap_work->work.func == NULL) {
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800745 init_reap_node(cpu);
Tejun Heo203b42f2012-08-21 13:18:23 -0700746 INIT_DEFERRABLE_WORK(reap_work, cache_reap);
Arjan van de Ven2b284212006-12-10 02:21:28 -0800747 schedule_delayed_work_on(cpu, reap_work,
748 __round_jiffies_relative(HZ, cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 }
750}
751
Christoph Lametere498be72005-09-09 13:03:32 -0700752static struct array_cache *alloc_arraycache(int node, int entries,
Pekka Enberg83b519e2009-06-10 19:40:04 +0300753 int batchcount, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754{
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800755 int memsize = sizeof(void *) * entries + sizeof(struct array_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 struct array_cache *nc = NULL;
757
Pekka Enberg83b519e2009-06-10 19:40:04 +0300758 nc = kmalloc_node(memsize, gfp, node);
Catalin Marinasd5cff632009-06-11 13:22:40 +0100759 /*
760 * The array_cache structures contain pointers to free object.
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300761 * However, when such objects are allocated or transferred to another
Catalin Marinasd5cff632009-06-11 13:22:40 +0100762 * cache the pointers are not cleared and they could be counted as
763 * valid references during a kmemleak scan. Therefore, kmemleak must
764 * not scan such objects.
765 */
766 kmemleak_no_scan(nc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 if (nc) {
768 nc->avail = 0;
769 nc->limit = entries;
770 nc->batchcount = batchcount;
771 nc->touched = 0;
Christoph Lametere498be72005-09-09 13:03:32 -0700772 spin_lock_init(&nc->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 }
774 return nc;
775}
776
Mel Gorman072bb0a2012-07-31 16:43:58 -0700777static inline bool is_slab_pfmemalloc(struct slab *slabp)
778{
779 struct page *page = virt_to_page(slabp->s_mem);
780
781 return PageSlabPfmemalloc(page);
782}
783
784/* Clears pfmemalloc_active if no slabs have pfmalloc set */
785static void recheck_pfmemalloc_active(struct kmem_cache *cachep,
786 struct array_cache *ac)
787{
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000788 struct kmem_cache_node *n = cachep->node[numa_mem_id()];
Mel Gorman072bb0a2012-07-31 16:43:58 -0700789 struct slab *slabp;
790 unsigned long flags;
791
792 if (!pfmemalloc_active)
793 return;
794
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000795 spin_lock_irqsave(&n->list_lock, flags);
796 list_for_each_entry(slabp, &n->slabs_full, list)
Mel Gorman072bb0a2012-07-31 16:43:58 -0700797 if (is_slab_pfmemalloc(slabp))
798 goto out;
799
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000800 list_for_each_entry(slabp, &n->slabs_partial, list)
Mel Gorman072bb0a2012-07-31 16:43:58 -0700801 if (is_slab_pfmemalloc(slabp))
802 goto out;
803
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000804 list_for_each_entry(slabp, &n->slabs_free, list)
Mel Gorman072bb0a2012-07-31 16:43:58 -0700805 if (is_slab_pfmemalloc(slabp))
806 goto out;
807
808 pfmemalloc_active = false;
809out:
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000810 spin_unlock_irqrestore(&n->list_lock, flags);
Mel Gorman072bb0a2012-07-31 16:43:58 -0700811}
812
Mel Gorman381760e2012-07-31 16:44:30 -0700813static void *__ac_get_obj(struct kmem_cache *cachep, struct array_cache *ac,
Mel Gorman072bb0a2012-07-31 16:43:58 -0700814 gfp_t flags, bool force_refill)
815{
816 int i;
817 void *objp = ac->entry[--ac->avail];
818
819 /* Ensure the caller is allowed to use objects from PFMEMALLOC slab */
820 if (unlikely(is_obj_pfmemalloc(objp))) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000821 struct kmem_cache_node *n;
Mel Gorman072bb0a2012-07-31 16:43:58 -0700822
823 if (gfp_pfmemalloc_allowed(flags)) {
824 clear_obj_pfmemalloc(&objp);
825 return objp;
826 }
827
828 /* The caller cannot use PFMEMALLOC objects, find another one */
Joonsoo Kimd014dc22012-09-17 14:09:06 -0700829 for (i = 0; i < ac->avail; i++) {
Mel Gorman072bb0a2012-07-31 16:43:58 -0700830 /* If a !PFMEMALLOC object is found, swap them */
831 if (!is_obj_pfmemalloc(ac->entry[i])) {
832 objp = ac->entry[i];
833 ac->entry[i] = ac->entry[ac->avail];
834 ac->entry[ac->avail] = objp;
835 return objp;
836 }
837 }
838
839 /*
840 * If there are empty slabs on the slabs_free list and we are
841 * being forced to refill the cache, mark this one !pfmemalloc.
842 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000843 n = cachep->node[numa_mem_id()];
844 if (!list_empty(&n->slabs_free) && force_refill) {
Mel Gorman072bb0a2012-07-31 16:43:58 -0700845 struct slab *slabp = virt_to_slab(objp);
Mel Gorman30c29be2012-09-17 14:09:03 -0700846 ClearPageSlabPfmemalloc(virt_to_head_page(slabp->s_mem));
Mel Gorman072bb0a2012-07-31 16:43:58 -0700847 clear_obj_pfmemalloc(&objp);
848 recheck_pfmemalloc_active(cachep, ac);
849 return objp;
850 }
851
852 /* No !PFMEMALLOC objects available */
853 ac->avail++;
854 objp = NULL;
855 }
856
857 return objp;
858}
859
Mel Gorman381760e2012-07-31 16:44:30 -0700860static inline void *ac_get_obj(struct kmem_cache *cachep,
861 struct array_cache *ac, gfp_t flags, bool force_refill)
862{
863 void *objp;
864
865 if (unlikely(sk_memalloc_socks()))
866 objp = __ac_get_obj(cachep, ac, flags, force_refill);
867 else
868 objp = ac->entry[--ac->avail];
869
870 return objp;
871}
872
873static void *__ac_put_obj(struct kmem_cache *cachep, struct array_cache *ac,
Mel Gorman072bb0a2012-07-31 16:43:58 -0700874 void *objp)
875{
876 if (unlikely(pfmemalloc_active)) {
877 /* Some pfmemalloc slabs exist, check if this is one */
Joonsoo Kim73293c22013-10-24 10:07:37 +0900878 struct slab *slabp = virt_to_slab(objp);
879 struct page *page = virt_to_head_page(slabp->s_mem);
Mel Gorman072bb0a2012-07-31 16:43:58 -0700880 if (PageSlabPfmemalloc(page))
881 set_obj_pfmemalloc(&objp);
882 }
883
Mel Gorman381760e2012-07-31 16:44:30 -0700884 return objp;
885}
886
887static inline void ac_put_obj(struct kmem_cache *cachep, struct array_cache *ac,
888 void *objp)
889{
890 if (unlikely(sk_memalloc_socks()))
891 objp = __ac_put_obj(cachep, ac, objp);
892
Mel Gorman072bb0a2012-07-31 16:43:58 -0700893 ac->entry[ac->avail++] = objp;
894}
895
Christoph Lameter3ded1752006-03-25 03:06:44 -0800896/*
897 * Transfer objects in one arraycache to another.
898 * Locking must be handled by the caller.
899 *
900 * Return the number of entries transferred.
901 */
902static int transfer_objects(struct array_cache *to,
903 struct array_cache *from, unsigned int max)
904{
905 /* Figure out how many entries to transfer */
Hagen Paul Pfeifer732eacc2010-10-26 14:22:23 -0700906 int nr = min3(from->avail, max, to->limit - to->avail);
Christoph Lameter3ded1752006-03-25 03:06:44 -0800907
908 if (!nr)
909 return 0;
910
911 memcpy(to->entry + to->avail, from->entry + from->avail -nr,
912 sizeof(void *) *nr);
913
914 from->avail -= nr;
915 to->avail += nr;
Christoph Lameter3ded1752006-03-25 03:06:44 -0800916 return nr;
917}
918
Christoph Lameter765c4502006-09-27 01:50:08 -0700919#ifndef CONFIG_NUMA
920
921#define drain_alien_cache(cachep, alien) do { } while (0)
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000922#define reap_alien(cachep, n) do { } while (0)
Christoph Lameter765c4502006-09-27 01:50:08 -0700923
Pekka Enberg83b519e2009-06-10 19:40:04 +0300924static inline struct array_cache **alloc_alien_cache(int node, int limit, gfp_t gfp)
Christoph Lameter765c4502006-09-27 01:50:08 -0700925{
926 return (struct array_cache **)BAD_ALIEN_MAGIC;
927}
928
929static inline void free_alien_cache(struct array_cache **ac_ptr)
930{
931}
932
933static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
934{
935 return 0;
936}
937
938static inline void *alternate_node_alloc(struct kmem_cache *cachep,
939 gfp_t flags)
940{
941 return NULL;
942}
943
Christoph Hellwig8b98c162006-12-06 20:32:30 -0800944static inline void *____cache_alloc_node(struct kmem_cache *cachep,
Christoph Lameter765c4502006-09-27 01:50:08 -0700945 gfp_t flags, int nodeid)
946{
947 return NULL;
948}
949
950#else /* CONFIG_NUMA */
951
Christoph Hellwig8b98c162006-12-06 20:32:30 -0800952static void *____cache_alloc_node(struct kmem_cache *, gfp_t, int);
Paul Jacksonc61afb12006-03-24 03:16:08 -0800953static void *alternate_node_alloc(struct kmem_cache *, gfp_t);
Christoph Lameterdc85da12006-01-18 17:42:36 -0800954
Pekka Enberg83b519e2009-06-10 19:40:04 +0300955static struct array_cache **alloc_alien_cache(int node, int limit, gfp_t gfp)
Christoph Lametere498be72005-09-09 13:03:32 -0700956{
957 struct array_cache **ac_ptr;
Christoph Lameter8ef82862007-02-20 13:57:52 -0800958 int memsize = sizeof(void *) * nr_node_ids;
Christoph Lametere498be72005-09-09 13:03:32 -0700959 int i;
960
961 if (limit > 1)
962 limit = 12;
Haicheng Lif3186a92010-01-06 15:25:23 +0800963 ac_ptr = kzalloc_node(memsize, gfp, node);
Christoph Lametere498be72005-09-09 13:03:32 -0700964 if (ac_ptr) {
965 for_each_node(i) {
Haicheng Lif3186a92010-01-06 15:25:23 +0800966 if (i == node || !node_online(i))
Christoph Lametere498be72005-09-09 13:03:32 -0700967 continue;
Pekka Enberg83b519e2009-06-10 19:40:04 +0300968 ac_ptr[i] = alloc_arraycache(node, limit, 0xbaadf00d, gfp);
Christoph Lametere498be72005-09-09 13:03:32 -0700969 if (!ac_ptr[i]) {
Akinobu Mitacc550de2007-11-14 16:58:35 -0800970 for (i--; i >= 0; i--)
Christoph Lametere498be72005-09-09 13:03:32 -0700971 kfree(ac_ptr[i]);
972 kfree(ac_ptr);
973 return NULL;
974 }
975 }
976 }
977 return ac_ptr;
978}
979
Pekka Enberg5295a742006-02-01 03:05:48 -0800980static void free_alien_cache(struct array_cache **ac_ptr)
Christoph Lametere498be72005-09-09 13:03:32 -0700981{
982 int i;
983
984 if (!ac_ptr)
985 return;
Christoph Lametere498be72005-09-09 13:03:32 -0700986 for_each_node(i)
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800987 kfree(ac_ptr[i]);
Christoph Lametere498be72005-09-09 13:03:32 -0700988 kfree(ac_ptr);
989}
990
Pekka Enberg343e0d72006-02-01 03:05:50 -0800991static void __drain_alien_cache(struct kmem_cache *cachep,
Pekka Enberg5295a742006-02-01 03:05:48 -0800992 struct array_cache *ac, int node)
Christoph Lametere498be72005-09-09 13:03:32 -0700993{
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000994 struct kmem_cache_node *n = cachep->node[node];
Christoph Lametere498be72005-09-09 13:03:32 -0700995
996 if (ac->avail) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000997 spin_lock(&n->list_lock);
Christoph Lametere00946f2006-03-25 03:06:45 -0800998 /*
999 * Stuff objects into the remote nodes shared array first.
1000 * That way we could avoid the overhead of putting the objects
1001 * into the free lists and getting them back later.
1002 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001003 if (n->shared)
1004 transfer_objects(n->shared, ac, ac->limit);
Christoph Lametere00946f2006-03-25 03:06:45 -08001005
Christoph Lameterff694162005-09-22 21:44:02 -07001006 free_block(cachep, ac->entry, ac->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -07001007 ac->avail = 0;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001008 spin_unlock(&n->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07001009 }
1010}
1011
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001012/*
1013 * Called from cache_reap() to regularly drain alien caches round robin.
1014 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001015static void reap_alien(struct kmem_cache *cachep, struct kmem_cache_node *n)
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001016{
Christoph Lameter909ea962010-12-08 16:22:55 +01001017 int node = __this_cpu_read(slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001018
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001019 if (n->alien) {
1020 struct array_cache *ac = n->alien[node];
Christoph Lametere00946f2006-03-25 03:06:45 -08001021
1022 if (ac && ac->avail && spin_trylock_irq(&ac->lock)) {
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001023 __drain_alien_cache(cachep, ac, node);
1024 spin_unlock_irq(&ac->lock);
1025 }
1026 }
1027}
1028
Andrew Mortona737b3e2006-03-22 00:08:11 -08001029static void drain_alien_cache(struct kmem_cache *cachep,
1030 struct array_cache **alien)
Christoph Lametere498be72005-09-09 13:03:32 -07001031{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001032 int i = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07001033 struct array_cache *ac;
1034 unsigned long flags;
1035
1036 for_each_online_node(i) {
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001037 ac = alien[i];
Christoph Lametere498be72005-09-09 13:03:32 -07001038 if (ac) {
1039 spin_lock_irqsave(&ac->lock, flags);
1040 __drain_alien_cache(cachep, ac, i);
1041 spin_unlock_irqrestore(&ac->lock, flags);
1042 }
1043 }
1044}
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001045
Ingo Molnar873623d2006-07-13 14:44:38 +02001046static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001047{
Joonsoo Kim1ea991b2013-10-24 10:07:40 +09001048 int nodeid = page_to_nid(virt_to_page(objp));
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001049 struct kmem_cache_node *n;
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001050 struct array_cache *alien = NULL;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001051 int node;
1052
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07001053 node = numa_mem_id();
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001054
1055 /*
1056 * Make sure we are not freeing a object from another node to the array
1057 * cache on this cpu.
1058 */
Joonsoo Kim1ea991b2013-10-24 10:07:40 +09001059 if (likely(nodeid == node))
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001060 return 0;
1061
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001062 n = cachep->node[node];
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001063 STATS_INC_NODEFREES(cachep);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001064 if (n->alien && n->alien[nodeid]) {
1065 alien = n->alien[nodeid];
Ingo Molnar873623d2006-07-13 14:44:38 +02001066 spin_lock(&alien->lock);
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001067 if (unlikely(alien->avail == alien->limit)) {
1068 STATS_INC_ACOVERFLOW(cachep);
1069 __drain_alien_cache(cachep, alien, nodeid);
1070 }
Mel Gorman072bb0a2012-07-31 16:43:58 -07001071 ac_put_obj(cachep, alien, objp);
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001072 spin_unlock(&alien->lock);
1073 } else {
Christoph Lameter6a673682013-01-10 19:14:19 +00001074 spin_lock(&(cachep->node[nodeid])->list_lock);
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001075 free_block(cachep, &objp, 1, nodeid);
Christoph Lameter6a673682013-01-10 19:14:19 +00001076 spin_unlock(&(cachep->node[nodeid])->list_lock);
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001077 }
1078 return 1;
1079}
Christoph Lametere498be72005-09-09 13:03:32 -07001080#endif
1081
David Rientjes8f9f8d92010-03-27 19:40:47 -07001082/*
Christoph Lameter6a673682013-01-10 19:14:19 +00001083 * Allocates and initializes node for a node on each slab cache, used for
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001084 * either memory or cpu hotplug. If memory is being hot-added, the kmem_cache_node
David Rientjes8f9f8d92010-03-27 19:40:47 -07001085 * will be allocated off-node since memory is not yet online for the new node.
Christoph Lameter6a673682013-01-10 19:14:19 +00001086 * When hotplugging memory or a cpu, existing node are not replaced if
David Rientjes8f9f8d92010-03-27 19:40:47 -07001087 * already in use.
1088 *
Christoph Lameter18004c52012-07-06 15:25:12 -05001089 * Must hold slab_mutex.
David Rientjes8f9f8d92010-03-27 19:40:47 -07001090 */
Christoph Lameter6a673682013-01-10 19:14:19 +00001091static int init_cache_node_node(int node)
David Rientjes8f9f8d92010-03-27 19:40:47 -07001092{
1093 struct kmem_cache *cachep;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001094 struct kmem_cache_node *n;
Christoph Lameter6744f082013-01-10 19:12:17 +00001095 const int memsize = sizeof(struct kmem_cache_node);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001096
Christoph Lameter18004c52012-07-06 15:25:12 -05001097 list_for_each_entry(cachep, &slab_caches, list) {
David Rientjes8f9f8d92010-03-27 19:40:47 -07001098 /*
1099 * Set up the size64 kmemlist for cpu before we can
1100 * begin anything. Make sure some other cpu on this
1101 * node has not already allocated this
1102 */
Christoph Lameter6a673682013-01-10 19:14:19 +00001103 if (!cachep->node[node]) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001104 n = kmalloc_node(memsize, GFP_KERNEL, node);
1105 if (!n)
David Rientjes8f9f8d92010-03-27 19:40:47 -07001106 return -ENOMEM;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001107 kmem_cache_node_init(n);
1108 n->next_reap = jiffies + REAPTIMEOUT_LIST3 +
David Rientjes8f9f8d92010-03-27 19:40:47 -07001109 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
1110
1111 /*
1112 * The l3s don't come and go as CPUs come and
Christoph Lameter18004c52012-07-06 15:25:12 -05001113 * go. slab_mutex is sufficient
David Rientjes8f9f8d92010-03-27 19:40:47 -07001114 * protection here.
1115 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001116 cachep->node[node] = n;
David Rientjes8f9f8d92010-03-27 19:40:47 -07001117 }
1118
Christoph Lameter6a673682013-01-10 19:14:19 +00001119 spin_lock_irq(&cachep->node[node]->list_lock);
1120 cachep->node[node]->free_limit =
David Rientjes8f9f8d92010-03-27 19:40:47 -07001121 (1 + nr_cpus_node(node)) *
1122 cachep->batchcount + cachep->num;
Christoph Lameter6a673682013-01-10 19:14:19 +00001123 spin_unlock_irq(&cachep->node[node]->list_lock);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001124 }
1125 return 0;
1126}
1127
Wanpeng Li0fa81032013-07-04 08:33:22 +08001128static inline int slabs_tofree(struct kmem_cache *cachep,
1129 struct kmem_cache_node *n)
1130{
1131 return (n->free_objects + cachep->num - 1) / cachep->num;
1132}
1133
Paul Gortmaker0db06282013-06-19 14:53:51 -04001134static void cpuup_canceled(long cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135{
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001136 struct kmem_cache *cachep;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001137 struct kmem_cache_node *n = NULL;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07001138 int node = cpu_to_mem(cpu);
Rusty Russella70f7302009-03-13 14:49:46 +10301139 const struct cpumask *mask = cpumask_of_node(node);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001140
Christoph Lameter18004c52012-07-06 15:25:12 -05001141 list_for_each_entry(cachep, &slab_caches, list) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001142 struct array_cache *nc;
1143 struct array_cache *shared;
1144 struct array_cache **alien;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001145
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001146 /* cpu is dead; no one can alloc from it. */
1147 nc = cachep->array[cpu];
1148 cachep->array[cpu] = NULL;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001149 n = cachep->node[node];
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001150
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001151 if (!n)
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001152 goto free_array_cache;
1153
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001154 spin_lock_irq(&n->list_lock);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001155
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001156 /* Free limit for this kmem_cache_node */
1157 n->free_limit -= cachep->batchcount;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001158 if (nc)
1159 free_block(cachep, nc->entry, nc->avail, node);
1160
Rusty Russell58463c12009-12-17 11:43:12 -06001161 if (!cpumask_empty(mask)) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001162 spin_unlock_irq(&n->list_lock);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001163 goto free_array_cache;
1164 }
1165
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001166 shared = n->shared;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001167 if (shared) {
1168 free_block(cachep, shared->entry,
1169 shared->avail, node);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001170 n->shared = NULL;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001171 }
1172
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001173 alien = n->alien;
1174 n->alien = NULL;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001175
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001176 spin_unlock_irq(&n->list_lock);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001177
1178 kfree(shared);
1179 if (alien) {
1180 drain_alien_cache(cachep, alien);
1181 free_alien_cache(alien);
1182 }
1183free_array_cache:
1184 kfree(nc);
1185 }
1186 /*
1187 * In the previous loop, all the objects were freed to
1188 * the respective cache's slabs, now we can go ahead and
1189 * shrink each nodelist to its limit.
1190 */
Christoph Lameter18004c52012-07-06 15:25:12 -05001191 list_for_each_entry(cachep, &slab_caches, list) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001192 n = cachep->node[node];
1193 if (!n)
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001194 continue;
Wanpeng Li0fa81032013-07-04 08:33:22 +08001195 drain_freelist(cachep, n, slabs_tofree(cachep, n));
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001196 }
1197}
1198
Paul Gortmaker0db06282013-06-19 14:53:51 -04001199static int cpuup_prepare(long cpu)
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001200{
Pekka Enberg343e0d72006-02-01 03:05:50 -08001201 struct kmem_cache *cachep;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001202 struct kmem_cache_node *n = NULL;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07001203 int node = cpu_to_mem(cpu);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001204 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001206 /*
1207 * We need to do this right in the beginning since
1208 * alloc_arraycache's are going to use this list.
1209 * kmalloc_node allows us to add the slab to the right
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001210 * kmem_cache_node and not this cpu's kmem_cache_node
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001211 */
Christoph Lameter6a673682013-01-10 19:14:19 +00001212 err = init_cache_node_node(node);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001213 if (err < 0)
1214 goto bad;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001215
1216 /*
1217 * Now we can go ahead with allocating the shared arrays and
1218 * array caches
1219 */
Christoph Lameter18004c52012-07-06 15:25:12 -05001220 list_for_each_entry(cachep, &slab_caches, list) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001221 struct array_cache *nc;
1222 struct array_cache *shared = NULL;
1223 struct array_cache **alien = NULL;
1224
1225 nc = alloc_arraycache(node, cachep->limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03001226 cachep->batchcount, GFP_KERNEL);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001227 if (!nc)
1228 goto bad;
1229 if (cachep->shared) {
1230 shared = alloc_arraycache(node,
1231 cachep->shared * cachep->batchcount,
Pekka Enberg83b519e2009-06-10 19:40:04 +03001232 0xbaadf00d, GFP_KERNEL);
Akinobu Mita12d00f62007-10-18 03:05:11 -07001233 if (!shared) {
1234 kfree(nc);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001235 goto bad;
Akinobu Mita12d00f62007-10-18 03:05:11 -07001236 }
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001237 }
1238 if (use_alien_caches) {
Pekka Enberg83b519e2009-06-10 19:40:04 +03001239 alien = alloc_alien_cache(node, cachep->limit, GFP_KERNEL);
Akinobu Mita12d00f62007-10-18 03:05:11 -07001240 if (!alien) {
1241 kfree(shared);
1242 kfree(nc);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001243 goto bad;
Akinobu Mita12d00f62007-10-18 03:05:11 -07001244 }
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001245 }
1246 cachep->array[cpu] = nc;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001247 n = cachep->node[node];
1248 BUG_ON(!n);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001249
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001250 spin_lock_irq(&n->list_lock);
1251 if (!n->shared) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001252 /*
1253 * We are serialised from CPU_DEAD or
1254 * CPU_UP_CANCELLED by the cpucontrol lock
1255 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001256 n->shared = shared;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001257 shared = NULL;
1258 }
1259#ifdef CONFIG_NUMA
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001260 if (!n->alien) {
1261 n->alien = alien;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001262 alien = NULL;
1263 }
1264#endif
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001265 spin_unlock_irq(&n->list_lock);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001266 kfree(shared);
1267 free_alien_cache(alien);
Peter Zijlstra83835b32011-07-22 15:26:05 +02001268 if (cachep->flags & SLAB_DEBUG_OBJECTS)
1269 slab_set_debugobj_lock_classes_node(cachep, node);
Glauber Costa6ccfb5b2012-12-18 14:22:31 -08001270 else if (!OFF_SLAB(cachep) &&
1271 !(cachep->flags & SLAB_DESTROY_BY_RCU))
1272 on_slab_lock_classes_node(cachep, node);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001273 }
Pekka Enbergce79ddc2009-11-23 22:01:15 +02001274 init_node_lock_keys(node);
1275
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001276 return 0;
1277bad:
Akinobu Mita12d00f62007-10-18 03:05:11 -07001278 cpuup_canceled(cpu);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001279 return -ENOMEM;
1280}
1281
Paul Gortmaker0db06282013-06-19 14:53:51 -04001282static int cpuup_callback(struct notifier_block *nfb,
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001283 unsigned long action, void *hcpu)
1284{
1285 long cpu = (long)hcpu;
1286 int err = 0;
1287
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288 switch (action) {
Heiko Carstens38c3bd92007-05-09 02:34:05 -07001289 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001290 case CPU_UP_PREPARE_FROZEN:
Christoph Lameter18004c52012-07-06 15:25:12 -05001291 mutex_lock(&slab_mutex);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001292 err = cpuup_prepare(cpu);
Christoph Lameter18004c52012-07-06 15:25:12 -05001293 mutex_unlock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001294 break;
1295 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001296 case CPU_ONLINE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 start_cpu_timer(cpu);
1298 break;
1299#ifdef CONFIG_HOTPLUG_CPU
Christoph Lameter5830c592007-05-09 02:34:22 -07001300 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001301 case CPU_DOWN_PREPARE_FROZEN:
Christoph Lameter5830c592007-05-09 02:34:22 -07001302 /*
Christoph Lameter18004c52012-07-06 15:25:12 -05001303 * Shutdown cache reaper. Note that the slab_mutex is
Christoph Lameter5830c592007-05-09 02:34:22 -07001304 * held so that if cache_reap() is invoked it cannot do
1305 * anything expensive but will only modify reap_work
1306 * and reschedule the timer.
1307 */
Tejun Heoafe2c512010-12-14 16:21:17 +01001308 cancel_delayed_work_sync(&per_cpu(slab_reap_work, cpu));
Christoph Lameter5830c592007-05-09 02:34:22 -07001309 /* Now the cache_reaper is guaranteed to be not running. */
Tejun Heo1871e522009-10-29 22:34:13 +09001310 per_cpu(slab_reap_work, cpu).work.func = NULL;
Christoph Lameter5830c592007-05-09 02:34:22 -07001311 break;
1312 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001313 case CPU_DOWN_FAILED_FROZEN:
Christoph Lameter5830c592007-05-09 02:34:22 -07001314 start_cpu_timer(cpu);
1315 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001317 case CPU_DEAD_FROZEN:
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001318 /*
1319 * Even if all the cpus of a node are down, we don't free the
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001320 * kmem_cache_node of any cache. This to avoid a race between
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001321 * cpu_down, and a kmalloc allocation from another cpu for
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001322 * memory from the node of the cpu going down. The node
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001323 * structure is usually allocated from kmem_cache_create() and
1324 * gets destroyed at kmem_cache_destroy().
1325 */
Simon Arlott183ff222007-10-20 01:27:18 +02001326 /* fall through */
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08001327#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001329 case CPU_UP_CANCELED_FROZEN:
Christoph Lameter18004c52012-07-06 15:25:12 -05001330 mutex_lock(&slab_mutex);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001331 cpuup_canceled(cpu);
Christoph Lameter18004c52012-07-06 15:25:12 -05001332 mutex_unlock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 }
Akinobu Mitaeac40682010-05-26 14:43:32 -07001335 return notifier_from_errno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336}
1337
Paul Gortmaker0db06282013-06-19 14:53:51 -04001338static struct notifier_block cpucache_notifier = {
Chandra Seetharaman74b85f32006-06-27 02:54:09 -07001339 &cpuup_callback, NULL, 0
1340};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341
David Rientjes8f9f8d92010-03-27 19:40:47 -07001342#if defined(CONFIG_NUMA) && defined(CONFIG_MEMORY_HOTPLUG)
1343/*
1344 * Drains freelist for a node on each slab cache, used for memory hot-remove.
1345 * Returns -EBUSY if all objects cannot be drained so that the node is not
1346 * removed.
1347 *
Christoph Lameter18004c52012-07-06 15:25:12 -05001348 * Must hold slab_mutex.
David Rientjes8f9f8d92010-03-27 19:40:47 -07001349 */
Christoph Lameter6a673682013-01-10 19:14:19 +00001350static int __meminit drain_cache_node_node(int node)
David Rientjes8f9f8d92010-03-27 19:40:47 -07001351{
1352 struct kmem_cache *cachep;
1353 int ret = 0;
1354
Christoph Lameter18004c52012-07-06 15:25:12 -05001355 list_for_each_entry(cachep, &slab_caches, list) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001356 struct kmem_cache_node *n;
David Rientjes8f9f8d92010-03-27 19:40:47 -07001357
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001358 n = cachep->node[node];
1359 if (!n)
David Rientjes8f9f8d92010-03-27 19:40:47 -07001360 continue;
1361
Wanpeng Li0fa81032013-07-04 08:33:22 +08001362 drain_freelist(cachep, n, slabs_tofree(cachep, n));
David Rientjes8f9f8d92010-03-27 19:40:47 -07001363
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001364 if (!list_empty(&n->slabs_full) ||
1365 !list_empty(&n->slabs_partial)) {
David Rientjes8f9f8d92010-03-27 19:40:47 -07001366 ret = -EBUSY;
1367 break;
1368 }
1369 }
1370 return ret;
1371}
1372
1373static int __meminit slab_memory_callback(struct notifier_block *self,
1374 unsigned long action, void *arg)
1375{
1376 struct memory_notify *mnb = arg;
1377 int ret = 0;
1378 int nid;
1379
1380 nid = mnb->status_change_nid;
1381 if (nid < 0)
1382 goto out;
1383
1384 switch (action) {
1385 case MEM_GOING_ONLINE:
Christoph Lameter18004c52012-07-06 15:25:12 -05001386 mutex_lock(&slab_mutex);
Christoph Lameter6a673682013-01-10 19:14:19 +00001387 ret = init_cache_node_node(nid);
Christoph Lameter18004c52012-07-06 15:25:12 -05001388 mutex_unlock(&slab_mutex);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001389 break;
1390 case MEM_GOING_OFFLINE:
Christoph Lameter18004c52012-07-06 15:25:12 -05001391 mutex_lock(&slab_mutex);
Christoph Lameter6a673682013-01-10 19:14:19 +00001392 ret = drain_cache_node_node(nid);
Christoph Lameter18004c52012-07-06 15:25:12 -05001393 mutex_unlock(&slab_mutex);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001394 break;
1395 case MEM_ONLINE:
1396 case MEM_OFFLINE:
1397 case MEM_CANCEL_ONLINE:
1398 case MEM_CANCEL_OFFLINE:
1399 break;
1400 }
1401out:
Prarit Bhargava5fda1bd2011-03-22 16:30:49 -07001402 return notifier_from_errno(ret);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001403}
1404#endif /* CONFIG_NUMA && CONFIG_MEMORY_HOTPLUG */
1405
Christoph Lametere498be72005-09-09 13:03:32 -07001406/*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001407 * swap the static kmem_cache_node with kmalloced memory
Christoph Lametere498be72005-09-09 13:03:32 -07001408 */
Christoph Lameter6744f082013-01-10 19:12:17 +00001409static void __init init_list(struct kmem_cache *cachep, struct kmem_cache_node *list,
David Rientjes8f9f8d92010-03-27 19:40:47 -07001410 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07001411{
Christoph Lameter6744f082013-01-10 19:12:17 +00001412 struct kmem_cache_node *ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001413
Christoph Lameter6744f082013-01-10 19:12:17 +00001414 ptr = kmalloc_node(sizeof(struct kmem_cache_node), GFP_NOWAIT, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07001415 BUG_ON(!ptr);
1416
Christoph Lameter6744f082013-01-10 19:12:17 +00001417 memcpy(ptr, list, sizeof(struct kmem_cache_node));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001418 /*
1419 * Do not assume that spinlocks can be initialized via memcpy:
1420 */
1421 spin_lock_init(&ptr->list_lock);
1422
Christoph Lametere498be72005-09-09 13:03:32 -07001423 MAKE_ALL_LISTS(cachep, ptr, nodeid);
Christoph Lameter6a673682013-01-10 19:14:19 +00001424 cachep->node[nodeid] = ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001425}
1426
Andrew Mortona737b3e2006-03-22 00:08:11 -08001427/*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001428 * For setting up all the kmem_cache_node for cache whose buffer_size is same as
1429 * size of kmem_cache_node.
Pekka Enberg556a1692008-01-25 08:20:51 +02001430 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001431static void __init set_up_node(struct kmem_cache *cachep, int index)
Pekka Enberg556a1692008-01-25 08:20:51 +02001432{
1433 int node;
1434
1435 for_each_online_node(node) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001436 cachep->node[node] = &init_kmem_cache_node[index + node];
Christoph Lameter6a673682013-01-10 19:14:19 +00001437 cachep->node[node]->next_reap = jiffies +
Pekka Enberg556a1692008-01-25 08:20:51 +02001438 REAPTIMEOUT_LIST3 +
1439 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
1440 }
1441}
1442
1443/*
Christoph Lameter3c583462012-11-28 16:23:01 +00001444 * The memory after the last cpu cache pointer is used for the
Christoph Lameter6a673682013-01-10 19:14:19 +00001445 * the node pointer.
Christoph Lameter3c583462012-11-28 16:23:01 +00001446 */
Christoph Lameter6a673682013-01-10 19:14:19 +00001447static void setup_node_pointer(struct kmem_cache *cachep)
Christoph Lameter3c583462012-11-28 16:23:01 +00001448{
Christoph Lameter6a673682013-01-10 19:14:19 +00001449 cachep->node = (struct kmem_cache_node **)&cachep->array[nr_cpu_ids];
Christoph Lameter3c583462012-11-28 16:23:01 +00001450}
1451
1452/*
Andrew Mortona737b3e2006-03-22 00:08:11 -08001453 * Initialisation. Called after the page allocator have been initialised and
1454 * before smp_init().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 */
1456void __init kmem_cache_init(void)
1457{
Christoph Lametere498be72005-09-09 13:03:32 -07001458 int i;
1459
Joonsoo Kim68126702013-10-24 10:07:42 +09001460 BUILD_BUG_ON(sizeof(((struct page *)NULL)->lru) <
1461 sizeof(struct rcu_head));
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001462 kmem_cache = &kmem_cache_boot;
Christoph Lameter6a673682013-01-10 19:14:19 +00001463 setup_node_pointer(kmem_cache);
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001464
Mel Gormanb6e68bc2009-06-16 15:32:16 -07001465 if (num_possible_nodes() == 1)
Siddha, Suresh B62918a02007-05-02 19:27:18 +02001466 use_alien_caches = 0;
1467
Christoph Lameter3c583462012-11-28 16:23:01 +00001468 for (i = 0; i < NUM_INIT_LISTS; i++)
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001469 kmem_cache_node_init(&init_kmem_cache_node[i]);
Christoph Lameter3c583462012-11-28 16:23:01 +00001470
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001471 set_up_node(kmem_cache, CACHE_CACHE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
1473 /*
1474 * Fragmentation resistance on low memory - only use bigger
David Rientjes3df1ccc2011-10-18 22:09:28 -07001475 * page orders on machines with more than 32MB of memory if
1476 * not overridden on the command line.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 */
David Rientjes3df1ccc2011-10-18 22:09:28 -07001478 if (!slab_max_order_set && totalram_pages > (32 << 20) >> PAGE_SHIFT)
David Rientjes543585c2011-10-18 22:09:24 -07001479 slab_max_order = SLAB_MAX_ORDER_HI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 /* Bootstrap is tricky, because several objects are allocated
1482 * from caches that do not exist yet:
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001483 * 1) initialize the kmem_cache cache: it contains the struct
1484 * kmem_cache structures of all caches, except kmem_cache itself:
1485 * kmem_cache is statically allocated.
Christoph Lametere498be72005-09-09 13:03:32 -07001486 * Initially an __init data area is used for the head array and the
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001487 * kmem_cache_node structures, it's replaced with a kmalloc allocated
Christoph Lametere498be72005-09-09 13:03:32 -07001488 * array at the end of the bootstrap.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 * 2) Create the first kmalloc cache.
Pekka Enberg343e0d72006-02-01 03:05:50 -08001490 * The struct kmem_cache for the new cache is allocated normally.
Christoph Lametere498be72005-09-09 13:03:32 -07001491 * An __init data area is used for the head array.
1492 * 3) Create the remaining kmalloc caches, with minimally sized
1493 * head arrays.
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001494 * 4) Replace the __init data head arrays for kmem_cache and the first
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 * kmalloc cache with kmalloc allocated arrays.
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001496 * 5) Replace the __init data for kmem_cache_node for kmem_cache and
Christoph Lametere498be72005-09-09 13:03:32 -07001497 * the other cache's with kmalloc allocated memory.
1498 * 6) Resize the head arrays of the kmalloc caches to their final sizes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 */
1500
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001501 /* 1) create the kmem_cache */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502
Eric Dumazet8da34302007-05-06 14:49:29 -07001503 /*
Eric Dumazetb56efcf2011-07-20 19:04:23 +02001504 * struct kmem_cache size depends on nr_node_ids & nr_cpu_ids
Eric Dumazet8da34302007-05-06 14:49:29 -07001505 */
Christoph Lameter2f9baa92012-11-28 16:23:09 +00001506 create_boot_cache(kmem_cache, "kmem_cache",
1507 offsetof(struct kmem_cache, array[nr_cpu_ids]) +
Christoph Lameter6744f082013-01-10 19:12:17 +00001508 nr_node_ids * sizeof(struct kmem_cache_node *),
Christoph Lameter2f9baa92012-11-28 16:23:09 +00001509 SLAB_HWCACHE_ALIGN);
1510 list_add(&kmem_cache->list, &slab_caches);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511
1512 /* 2+3) create the kmalloc caches */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513
Andrew Mortona737b3e2006-03-22 00:08:11 -08001514 /*
1515 * Initialize the caches that provide memory for the array cache and the
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001516 * kmem_cache_node structures first. Without this, further allocations will
Andrew Mortona737b3e2006-03-22 00:08:11 -08001517 * bug.
Christoph Lametere498be72005-09-09 13:03:32 -07001518 */
1519
Christoph Lametere3366012013-01-10 19:14:18 +00001520 kmalloc_caches[INDEX_AC] = create_kmalloc_cache("kmalloc-ac",
1521 kmalloc_size(INDEX_AC), ARCH_KMALLOC_FLAGS);
Christoph Lametere498be72005-09-09 13:03:32 -07001522
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001523 if (INDEX_AC != INDEX_NODE)
1524 kmalloc_caches[INDEX_NODE] =
1525 create_kmalloc_cache("kmalloc-node",
1526 kmalloc_size(INDEX_NODE), ARCH_KMALLOC_FLAGS);
Christoph Lametere498be72005-09-09 13:03:32 -07001527
Ingo Molnare0a42722006-06-23 02:03:46 -07001528 slab_early_init = 0;
1529
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530 /* 4) Replace the bootstrap head arrays */
1531 {
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001532 struct array_cache *ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001533
Pekka Enberg83b519e2009-06-10 19:40:04 +03001534 ptr = kmalloc(sizeof(struct arraycache_init), GFP_NOWAIT);
Christoph Lametere498be72005-09-09 13:03:32 -07001535
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001536 memcpy(ptr, cpu_cache_get(kmem_cache),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001537 sizeof(struct arraycache_init));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001538 /*
1539 * Do not assume that spinlocks can be initialized via memcpy:
1540 */
1541 spin_lock_init(&ptr->lock);
1542
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001543 kmem_cache->array[smp_processor_id()] = ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001544
Pekka Enberg83b519e2009-06-10 19:40:04 +03001545 ptr = kmalloc(sizeof(struct arraycache_init), GFP_NOWAIT);
Christoph Lametere498be72005-09-09 13:03:32 -07001546
Christoph Lametere3366012013-01-10 19:14:18 +00001547 BUG_ON(cpu_cache_get(kmalloc_caches[INDEX_AC])
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001548 != &initarray_generic.cache);
Christoph Lametere3366012013-01-10 19:14:18 +00001549 memcpy(ptr, cpu_cache_get(kmalloc_caches[INDEX_AC]),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001550 sizeof(struct arraycache_init));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001551 /*
1552 * Do not assume that spinlocks can be initialized via memcpy:
1553 */
1554 spin_lock_init(&ptr->lock);
1555
Christoph Lametere3366012013-01-10 19:14:18 +00001556 kmalloc_caches[INDEX_AC]->array[smp_processor_id()] = ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001558 /* 5) Replace the bootstrap kmem_cache_node */
Christoph Lametere498be72005-09-09 13:03:32 -07001559 {
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001560 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561
Mel Gorman9c09a952008-01-24 05:49:54 -08001562 for_each_online_node(nid) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001563 init_list(kmem_cache, &init_kmem_cache_node[CACHE_CACHE + nid], nid);
Pekka Enberg556a1692008-01-25 08:20:51 +02001564
Christoph Lametere3366012013-01-10 19:14:18 +00001565 init_list(kmalloc_caches[INDEX_AC],
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001566 &init_kmem_cache_node[SIZE_AC + nid], nid);
Christoph Lametere498be72005-09-09 13:03:32 -07001567
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001568 if (INDEX_AC != INDEX_NODE) {
1569 init_list(kmalloc_caches[INDEX_NODE],
1570 &init_kmem_cache_node[SIZE_NODE + nid], nid);
Christoph Lametere498be72005-09-09 13:03:32 -07001571 }
1572 }
1573 }
1574
Christoph Lameterf97d5f62013-01-10 19:12:17 +00001575 create_kmalloc_caches(ARCH_KMALLOC_FLAGS);
Pekka Enberg8429db52009-06-12 15:58:59 +03001576}
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -07001577
Pekka Enberg8429db52009-06-12 15:58:59 +03001578void __init kmem_cache_init_late(void)
1579{
1580 struct kmem_cache *cachep;
1581
Christoph Lameter97d06602012-07-06 15:25:11 -05001582 slab_state = UP;
Peter Zijlstra52cef182011-11-28 21:12:40 +01001583
Pekka Enberg8429db52009-06-12 15:58:59 +03001584 /* 6) resize the head arrays to their final sizes */
Christoph Lameter18004c52012-07-06 15:25:12 -05001585 mutex_lock(&slab_mutex);
1586 list_for_each_entry(cachep, &slab_caches, list)
Pekka Enberg8429db52009-06-12 15:58:59 +03001587 if (enable_cpucache(cachep, GFP_NOWAIT))
1588 BUG();
Christoph Lameter18004c52012-07-06 15:25:12 -05001589 mutex_unlock(&slab_mutex);
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -07001590
Michael Wang947ca182012-09-05 10:33:18 +08001591 /* Annotate slab for lockdep -- annotate the malloc caches */
1592 init_lock_keys();
1593
Christoph Lameter97d06602012-07-06 15:25:11 -05001594 /* Done! */
1595 slab_state = FULL;
1596
Andrew Mortona737b3e2006-03-22 00:08:11 -08001597 /*
1598 * Register a cpu startup notifier callback that initializes
1599 * cpu_cache_get for all new cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 */
1601 register_cpu_notifier(&cpucache_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602
David Rientjes8f9f8d92010-03-27 19:40:47 -07001603#ifdef CONFIG_NUMA
1604 /*
1605 * Register a memory hotplug callback that initializes and frees
Christoph Lameter6a673682013-01-10 19:14:19 +00001606 * node.
David Rientjes8f9f8d92010-03-27 19:40:47 -07001607 */
1608 hotplug_memory_notifier(slab_memory_callback, SLAB_CALLBACK_PRI);
1609#endif
1610
Andrew Mortona737b3e2006-03-22 00:08:11 -08001611 /*
1612 * The reap timers are started later, with a module init call: That part
1613 * of the kernel is not yet operational.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 */
1615}
1616
1617static int __init cpucache_init(void)
1618{
1619 int cpu;
1620
Andrew Mortona737b3e2006-03-22 00:08:11 -08001621 /*
1622 * Register the timers that return unneeded pages to the page allocator
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 */
Christoph Lametere498be72005-09-09 13:03:32 -07001624 for_each_online_cpu(cpu)
Andrew Mortona737b3e2006-03-22 00:08:11 -08001625 start_cpu_timer(cpu);
Glauber Costaa164f8962012-06-21 00:59:18 +04001626
1627 /* Done! */
Christoph Lameter97d06602012-07-06 15:25:11 -05001628 slab_state = FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 return 0;
1630}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631__initcall(cpucache_init);
1632
Rafael Aquini8bdec192012-03-09 17:27:27 -03001633static noinline void
1634slab_out_of_memory(struct kmem_cache *cachep, gfp_t gfpflags, int nodeid)
1635{
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001636 struct kmem_cache_node *n;
Rafael Aquini8bdec192012-03-09 17:27:27 -03001637 struct slab *slabp;
1638 unsigned long flags;
1639 int node;
1640
1641 printk(KERN_WARNING
1642 "SLAB: Unable to allocate memory on node %d (gfp=0x%x)\n",
1643 nodeid, gfpflags);
1644 printk(KERN_WARNING " cache: %s, object size: %d, order: %d\n",
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05001645 cachep->name, cachep->size, cachep->gfporder);
Rafael Aquini8bdec192012-03-09 17:27:27 -03001646
1647 for_each_online_node(node) {
1648 unsigned long active_objs = 0, num_objs = 0, free_objects = 0;
1649 unsigned long active_slabs = 0, num_slabs = 0;
1650
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001651 n = cachep->node[node];
1652 if (!n)
Rafael Aquini8bdec192012-03-09 17:27:27 -03001653 continue;
1654
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001655 spin_lock_irqsave(&n->list_lock, flags);
1656 list_for_each_entry(slabp, &n->slabs_full, list) {
Rafael Aquini8bdec192012-03-09 17:27:27 -03001657 active_objs += cachep->num;
1658 active_slabs++;
1659 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001660 list_for_each_entry(slabp, &n->slabs_partial, list) {
Rafael Aquini8bdec192012-03-09 17:27:27 -03001661 active_objs += slabp->inuse;
1662 active_slabs++;
1663 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001664 list_for_each_entry(slabp, &n->slabs_free, list)
Rafael Aquini8bdec192012-03-09 17:27:27 -03001665 num_slabs++;
1666
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001667 free_objects += n->free_objects;
1668 spin_unlock_irqrestore(&n->list_lock, flags);
Rafael Aquini8bdec192012-03-09 17:27:27 -03001669
1670 num_slabs += active_slabs;
1671 num_objs = num_slabs * cachep->num;
1672 printk(KERN_WARNING
1673 " node %d: slabs: %ld/%ld, objs: %ld/%ld, free: %ld\n",
1674 node, active_slabs, num_slabs, active_objs, num_objs,
1675 free_objects);
1676 }
1677}
1678
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679/*
1680 * Interface to system's page allocator. No need to hold the cache-lock.
1681 *
1682 * If we requested dmaable memory, we will get it. Even if we
1683 * did not request dmaable memory, we might get it, but that
1684 * would be relatively rare and ignorable.
1685 */
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09001686static struct page *kmem_getpages(struct kmem_cache *cachep, gfp_t flags,
1687 int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688{
1689 struct page *page;
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001690 int nr_pages;
Christoph Lameter765c4502006-09-27 01:50:08 -07001691
Glauber Costaa618e892012-06-14 16:17:21 +04001692 flags |= cachep->allocflags;
Mel Gormane12ba742007-10-16 01:25:52 -07001693 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1694 flags |= __GFP_RECLAIMABLE;
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001695
Linus Torvalds517d0862009-06-16 19:50:13 -07001696 page = alloc_pages_exact_node(nodeid, flags | __GFP_NOTRACK, cachep->gfporder);
Rafael Aquini8bdec192012-03-09 17:27:27 -03001697 if (!page) {
1698 if (!(flags & __GFP_NOWARN) && printk_ratelimit())
1699 slab_out_of_memory(cachep, flags, nodeid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 return NULL;
Rafael Aquini8bdec192012-03-09 17:27:27 -03001701 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702
Mel Gormanb37f1dd2012-07-31 16:44:03 -07001703 /* Record if ALLOC_NO_WATERMARKS was set when allocating the slab */
Mel Gorman072bb0a2012-07-31 16:43:58 -07001704 if (unlikely(page->pfmemalloc))
1705 pfmemalloc_active = true;
1706
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001707 nr_pages = (1 << cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
Christoph Lameter972d1a72006-09-25 23:31:51 -07001709 add_zone_page_state(page_zone(page),
1710 NR_SLAB_RECLAIMABLE, nr_pages);
1711 else
1712 add_zone_page_state(page_zone(page),
1713 NR_SLAB_UNRECLAIMABLE, nr_pages);
Joonsoo Kima57a4982013-10-24 10:07:44 +09001714 __SetPageSlab(page);
1715 if (page->pfmemalloc)
1716 SetPageSlabPfmemalloc(page);
Glauber Costa1f458cb2012-12-18 14:22:50 -08001717 memcg_bind_pages(cachep, cachep->gfporder);
Mel Gorman072bb0a2012-07-31 16:43:58 -07001718
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001719 if (kmemcheck_enabled && !(cachep->flags & SLAB_NOTRACK)) {
1720 kmemcheck_alloc_shadow(page, cachep->gfporder, flags, nodeid);
1721
1722 if (cachep->ctor)
1723 kmemcheck_mark_uninitialized_pages(page, nr_pages);
1724 else
1725 kmemcheck_mark_unallocated_pages(page, nr_pages);
1726 }
Pekka Enbergc175eea2008-05-09 20:35:53 +02001727
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09001728 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001729}
1730
1731/*
1732 * Interface to system's page release.
1733 */
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09001734static void kmem_freepages(struct kmem_cache *cachep, struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735{
Joonsoo Kima57a4982013-10-24 10:07:44 +09001736 const unsigned long nr_freed = (1 << cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001738 kmemcheck_free_shadow(page, cachep->gfporder);
Pekka Enbergc175eea2008-05-09 20:35:53 +02001739
Christoph Lameter972d1a72006-09-25 23:31:51 -07001740 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1741 sub_zone_page_state(page_zone(page),
1742 NR_SLAB_RECLAIMABLE, nr_freed);
1743 else
1744 sub_zone_page_state(page_zone(page),
1745 NR_SLAB_UNRECLAIMABLE, nr_freed);
Joonsoo Kim73293c22013-10-24 10:07:37 +09001746
Joonsoo Kima57a4982013-10-24 10:07:44 +09001747 BUG_ON(!PageSlab(page));
Joonsoo Kim73293c22013-10-24 10:07:37 +09001748 __ClearPageSlabPfmemalloc(page);
Joonsoo Kima57a4982013-10-24 10:07:44 +09001749 __ClearPageSlab(page);
Glauber Costa1f458cb2012-12-18 14:22:50 -08001750
1751 memcg_release_pages(cachep, cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 if (current->reclaim_state)
1753 current->reclaim_state->reclaimed_slab += nr_freed;
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09001754 __free_memcg_kmem_pages(page, cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755}
1756
1757static void kmem_rcu_free(struct rcu_head *head)
1758{
Joonsoo Kim68126702013-10-24 10:07:42 +09001759 struct kmem_cache *cachep;
1760 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761
Joonsoo Kim68126702013-10-24 10:07:42 +09001762 page = container_of(head, struct page, rcu_head);
1763 cachep = page->slab_cache;
1764
1765 kmem_freepages(cachep, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766}
1767
1768#if DEBUG
1769
1770#ifdef CONFIG_DEBUG_PAGEALLOC
Pekka Enberg343e0d72006-02-01 03:05:50 -08001771static void store_stackinfo(struct kmem_cache *cachep, unsigned long *addr,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001772 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773{
Christoph Lameter8c138bc2012-06-13 10:24:58 -05001774 int size = cachep->object_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001776 addr = (unsigned long *)&((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001778 if (size < 5 * sizeof(unsigned long))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 return;
1780
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001781 *addr++ = 0x12345678;
1782 *addr++ = caller;
1783 *addr++ = smp_processor_id();
1784 size -= 3 * sizeof(unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 {
1786 unsigned long *sptr = &caller;
1787 unsigned long svalue;
1788
1789 while (!kstack_end(sptr)) {
1790 svalue = *sptr++;
1791 if (kernel_text_address(svalue)) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001792 *addr++ = svalue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 size -= sizeof(unsigned long);
1794 if (size <= sizeof(unsigned long))
1795 break;
1796 }
1797 }
1798
1799 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001800 *addr++ = 0x87654321;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801}
1802#endif
1803
Pekka Enberg343e0d72006-02-01 03:05:50 -08001804static void poison_obj(struct kmem_cache *cachep, void *addr, unsigned char val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805{
Christoph Lameter8c138bc2012-06-13 10:24:58 -05001806 int size = cachep->object_size;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001807 addr = &((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808
1809 memset(addr, val, size);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001810 *(unsigned char *)(addr + size - 1) = POISON_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811}
1812
1813static void dump_line(char *data, int offset, int limit)
1814{
1815 int i;
Dave Jonesaa83aa42006-09-29 01:59:51 -07001816 unsigned char error = 0;
1817 int bad_count = 0;
1818
Sebastian Andrzej Siewiorfdde6ab2011-07-29 18:22:13 +02001819 printk(KERN_ERR "%03x: ", offset);
Dave Jonesaa83aa42006-09-29 01:59:51 -07001820 for (i = 0; i < limit; i++) {
1821 if (data[offset + i] != POISON_FREE) {
1822 error = data[offset + i];
1823 bad_count++;
1824 }
Dave Jonesaa83aa42006-09-29 01:59:51 -07001825 }
Sebastian Andrzej Siewiorfdde6ab2011-07-29 18:22:13 +02001826 print_hex_dump(KERN_CONT, "", 0, 16, 1,
1827 &data[offset], limit, 1);
Dave Jonesaa83aa42006-09-29 01:59:51 -07001828
1829 if (bad_count == 1) {
1830 error ^= POISON_FREE;
1831 if (!(error & (error - 1))) {
1832 printk(KERN_ERR "Single bit error detected. Probably "
1833 "bad RAM.\n");
1834#ifdef CONFIG_X86
1835 printk(KERN_ERR "Run memtest86+ or a similar memory "
1836 "test tool.\n");
1837#else
1838 printk(KERN_ERR "Run a memory test tool.\n");
1839#endif
1840 }
1841 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842}
1843#endif
1844
1845#if DEBUG
1846
Pekka Enberg343e0d72006-02-01 03:05:50 -08001847static void print_objinfo(struct kmem_cache *cachep, void *objp, int lines)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848{
1849 int i, size;
1850 char *realobj;
1851
1852 if (cachep->flags & SLAB_RED_ZONE) {
David Woodhouseb46b8f12007-05-08 00:22:59 -07001853 printk(KERN_ERR "Redzone: 0x%llx/0x%llx.\n",
Andrew Mortona737b3e2006-03-22 00:08:11 -08001854 *dbg_redzone1(cachep, objp),
1855 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856 }
1857
1858 if (cachep->flags & SLAB_STORE_USER) {
Joe Perches071361d2012-12-12 10:19:12 -08001859 printk(KERN_ERR "Last user: [<%p>](%pSR)\n",
1860 *dbg_userword(cachep, objp),
1861 *dbg_userword(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 }
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001863 realobj = (char *)objp + obj_offset(cachep);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05001864 size = cachep->object_size;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001865 for (i = 0; i < size && lines; i += 16, lines--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 int limit;
1867 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001868 if (i + limit > size)
1869 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 dump_line(realobj, i, limit);
1871 }
1872}
1873
Pekka Enberg343e0d72006-02-01 03:05:50 -08001874static void check_poison_obj(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875{
1876 char *realobj;
1877 int size, i;
1878 int lines = 0;
1879
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001880 realobj = (char *)objp + obj_offset(cachep);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05001881 size = cachep->object_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001883 for (i = 0; i < size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 char exp = POISON_FREE;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001885 if (i == size - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 exp = POISON_END;
1887 if (realobj[i] != exp) {
1888 int limit;
1889 /* Mismatch ! */
1890 /* Print header */
1891 if (lines == 0) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001892 printk(KERN_ERR
Dave Jonesface37f2011-11-15 15:03:52 -08001893 "Slab corruption (%s): %s start=%p, len=%d\n",
1894 print_tainted(), cachep->name, realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 print_objinfo(cachep, objp, 0);
1896 }
1897 /* Hexdump the affected line */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001898 i = (i / 16) * 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001900 if (i + limit > size)
1901 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 dump_line(realobj, i, limit);
1903 i += 16;
1904 lines++;
1905 /* Limit to 5 lines */
1906 if (lines > 5)
1907 break;
1908 }
1909 }
1910 if (lines != 0) {
1911 /* Print some data about the neighboring objects, if they
1912 * exist:
1913 */
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -08001914 struct slab *slabp = virt_to_slab(objp);
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001915 unsigned int objnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001917 objnr = obj_to_index(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 if (objnr) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001919 objp = index_to_obj(cachep, slabp, objnr - 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001920 realobj = (char *)objp + obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921 printk(KERN_ERR "Prev obj: start=%p, len=%d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001922 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 print_objinfo(cachep, objp, 2);
1924 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001925 if (objnr + 1 < cachep->num) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001926 objp = index_to_obj(cachep, slabp, objnr + 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001927 realobj = (char *)objp + obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928 printk(KERN_ERR "Next obj: start=%p, len=%d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001929 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 print_objinfo(cachep, objp, 2);
1931 }
1932 }
1933}
1934#endif
1935
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936#if DEBUG
Rabin Vincente79aec22008-07-04 00:40:32 +05301937static void slab_destroy_debugcheck(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001938{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 int i;
1940 for (i = 0; i < cachep->num; i++) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001941 void *objp = index_to_obj(cachep, slabp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942
1943 if (cachep->flags & SLAB_POISON) {
1944#ifdef CONFIG_DEBUG_PAGEALLOC
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05001945 if (cachep->size % PAGE_SIZE == 0 &&
Andrew Mortona737b3e2006-03-22 00:08:11 -08001946 OFF_SLAB(cachep))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001947 kernel_map_pages(virt_to_page(objp),
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05001948 cachep->size / PAGE_SIZE, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949 else
1950 check_poison_obj(cachep, objp);
1951#else
1952 check_poison_obj(cachep, objp);
1953#endif
1954 }
1955 if (cachep->flags & SLAB_RED_ZONE) {
1956 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
1957 slab_error(cachep, "start of a freed object "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001958 "was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
1960 slab_error(cachep, "end of a freed object "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001961 "was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 }
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001964}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965#else
Rabin Vincente79aec22008-07-04 00:40:32 +05301966static void slab_destroy_debugcheck(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001967{
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001968}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969#endif
1970
Randy Dunlap911851e2006-03-22 00:08:14 -08001971/**
1972 * slab_destroy - destroy and release all objects in a slab
1973 * @cachep: cache pointer being destroyed
1974 * @slabp: slab pointer being destroyed
1975 *
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001976 * Destroy all the objs in a slab, and release the mem back to the system.
Andrew Mortona737b3e2006-03-22 00:08:11 -08001977 * Before calling the slab must have been unlinked from the cache. The
1978 * cache-lock is not held/needed.
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001979 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001980static void slab_destroy(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001981{
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09001982 struct page *page = virt_to_head_page(slabp->s_mem);
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001983
Rabin Vincente79aec22008-07-04 00:40:32 +05301984 slab_destroy_debugcheck(cachep, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985 if (unlikely(cachep->flags & SLAB_DESTROY_BY_RCU)) {
Joonsoo Kim68126702013-10-24 10:07:42 +09001986 struct rcu_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987
Joonsoo Kim68126702013-10-24 10:07:42 +09001988 /*
1989 * RCU free overloads the RCU head over the LRU.
1990 * slab_page has been overloeaded over the LRU,
1991 * however it is not used from now on so that
1992 * we can use it safely.
1993 */
1994 head = (void *)&page->rcu_head;
1995 call_rcu(head, kmem_rcu_free);
1996
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 } else {
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09001998 kmem_freepages(cachep, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 }
Joonsoo Kim68126702013-10-24 10:07:42 +09002000
2001 /*
2002 * From now on, we don't use slab management
2003 * although actual page can be freed in rcu context
2004 */
2005 if (OFF_SLAB(cachep))
2006 kmem_cache_free(cachep->slabp_cache, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007}
2008
2009/**
Randy.Dunlapa70773d2006-02-01 03:05:52 -08002010 * calculate_slab_order - calculate size (page order) of slabs
2011 * @cachep: pointer to the cache that is being created
2012 * @size: size of objects to be created in this cache.
2013 * @align: required alignment for the objects.
2014 * @flags: slab allocation flags
2015 *
2016 * Also calculates the number of objects per slab.
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002017 *
2018 * This could be made much more intelligent. For now, try to avoid using
2019 * high order pages for slabs. When the gfp() functions are more friendly
2020 * towards high-order requests, this should be changed.
2021 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002022static size_t calculate_slab_order(struct kmem_cache *cachep,
Randy Dunlapee13d782006-02-01 03:05:53 -08002023 size_t size, size_t align, unsigned long flags)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002024{
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02002025 unsigned long offslab_limit;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002026 size_t left_over = 0;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002027 int gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002028
Christoph Lameter0aa817f2007-05-16 22:11:01 -07002029 for (gfporder = 0; gfporder <= KMALLOC_MAX_ORDER; gfporder++) {
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002030 unsigned int num;
2031 size_t remainder;
2032
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002033 cache_estimate(gfporder, size, align, flags, &remainder, &num);
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002034 if (!num)
2035 continue;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002036
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02002037 if (flags & CFLGS_OFF_SLAB) {
2038 /*
2039 * Max number of objs-per-slab for caches which
2040 * use off-slab slabs. Needed to avoid a possible
2041 * looping condition in cache_grow().
2042 */
2043 offslab_limit = size - sizeof(struct slab);
Joonsoo Kim16025172013-10-24 10:07:46 +09002044 offslab_limit /= sizeof(unsigned int);
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02002045
2046 if (num > offslab_limit)
2047 break;
2048 }
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002049
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002050 /* Found something acceptable - save it away */
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002051 cachep->num = num;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002052 cachep->gfporder = gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002053 left_over = remainder;
2054
2055 /*
Linus Torvaldsf78bb8a2006-03-08 10:33:05 -08002056 * A VFS-reclaimable slab tends to have most allocations
2057 * as GFP_NOFS and we really don't want to have to be allocating
2058 * higher-order pages when we are unable to shrink dcache.
2059 */
2060 if (flags & SLAB_RECLAIM_ACCOUNT)
2061 break;
2062
2063 /*
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002064 * Large number of objects is good, but very large slabs are
2065 * currently bad for the gfp()s.
2066 */
David Rientjes543585c2011-10-18 22:09:24 -07002067 if (gfporder >= slab_max_order)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002068 break;
2069
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002070 /*
2071 * Acceptable internal fragmentation?
2072 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002073 if (left_over * 8 <= (PAGE_SIZE << gfporder))
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002074 break;
2075 }
2076 return left_over;
2077}
2078
Pekka Enberg83b519e2009-06-10 19:40:04 +03002079static int __init_refok setup_cpu_cache(struct kmem_cache *cachep, gfp_t gfp)
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002080{
Christoph Lameter97d06602012-07-06 15:25:11 -05002081 if (slab_state >= FULL)
Pekka Enberg83b519e2009-06-10 19:40:04 +03002082 return enable_cpucache(cachep, gfp);
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002083
Christoph Lameter97d06602012-07-06 15:25:11 -05002084 if (slab_state == DOWN) {
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002085 /*
Christoph Lameter2f9baa92012-11-28 16:23:09 +00002086 * Note: Creation of first cache (kmem_cache).
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002087 * The setup_node is taken care
Christoph Lameter2f9baa92012-11-28 16:23:09 +00002088 * of by the caller of __kmem_cache_create
2089 */
2090 cachep->array[smp_processor_id()] = &initarray_generic.cache;
2091 slab_state = PARTIAL;
2092 } else if (slab_state == PARTIAL) {
2093 /*
2094 * Note: the second kmem_cache_create must create the cache
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002095 * that's used by kmalloc(24), otherwise the creation of
2096 * further caches will BUG().
2097 */
2098 cachep->array[smp_processor_id()] = &initarray_generic.cache;
2099
2100 /*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002101 * If the cache that's used by kmalloc(sizeof(kmem_cache_node)) is
2102 * the second cache, then we need to set up all its node/,
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002103 * otherwise the creation of further caches will BUG().
2104 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002105 set_up_node(cachep, SIZE_AC);
2106 if (INDEX_AC == INDEX_NODE)
2107 slab_state = PARTIAL_NODE;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002108 else
Christoph Lameter97d06602012-07-06 15:25:11 -05002109 slab_state = PARTIAL_ARRAYCACHE;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002110 } else {
Christoph Lameter2f9baa92012-11-28 16:23:09 +00002111 /* Remaining boot caches */
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002112 cachep->array[smp_processor_id()] =
Pekka Enberg83b519e2009-06-10 19:40:04 +03002113 kmalloc(sizeof(struct arraycache_init), gfp);
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002114
Christoph Lameter97d06602012-07-06 15:25:11 -05002115 if (slab_state == PARTIAL_ARRAYCACHE) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002116 set_up_node(cachep, SIZE_NODE);
2117 slab_state = PARTIAL_NODE;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002118 } else {
2119 int node;
Pekka Enberg556a1692008-01-25 08:20:51 +02002120 for_each_online_node(node) {
Christoph Lameter6a673682013-01-10 19:14:19 +00002121 cachep->node[node] =
Christoph Lameter6744f082013-01-10 19:12:17 +00002122 kmalloc_node(sizeof(struct kmem_cache_node),
Pekka Enbergeb91f1d2009-06-12 14:56:09 +03002123 gfp, node);
Christoph Lameter6a673682013-01-10 19:14:19 +00002124 BUG_ON(!cachep->node[node]);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002125 kmem_cache_node_init(cachep->node[node]);
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002126 }
2127 }
2128 }
Christoph Lameter6a673682013-01-10 19:14:19 +00002129 cachep->node[numa_mem_id()]->next_reap =
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002130 jiffies + REAPTIMEOUT_LIST3 +
2131 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
2132
2133 cpu_cache_get(cachep)->avail = 0;
2134 cpu_cache_get(cachep)->limit = BOOT_CPUCACHE_ENTRIES;
2135 cpu_cache_get(cachep)->batchcount = 1;
2136 cpu_cache_get(cachep)->touched = 0;
2137 cachep->batchcount = 1;
2138 cachep->limit = BOOT_CPUCACHE_ENTRIES;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002139 return 0;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002140}
2141
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002142/**
Christoph Lameter039363f2012-07-06 15:25:10 -05002143 * __kmem_cache_create - Create a cache.
Randy Dunlapa755b762012-11-06 17:10:10 -08002144 * @cachep: cache management descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 * @flags: SLAB flags
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 *
2147 * Returns a ptr to the cache on success, NULL on failure.
2148 * Cannot be called within a int, but can be interrupted.
Paul Mundt20c2df82007-07-20 10:11:58 +09002149 * The @ctor is run when new pages are allocated by the cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 * The flags are
2152 *
2153 * %SLAB_POISON - Poison the slab with a known test pattern (a5a5a5a5)
2154 * to catch references to uninitialised memory.
2155 *
2156 * %SLAB_RED_ZONE - Insert `Red' zones around the allocated memory to check
2157 * for buffer overruns.
2158 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 * %SLAB_HWCACHE_ALIGN - Align the objects in this cache to a hardware
2160 * cacheline. This can be beneficial if you're counting cycles as closely
2161 * as davem.
2162 */
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002163int
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002164__kmem_cache_create (struct kmem_cache *cachep, unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165{
2166 size_t left_over, slab_size, ralign;
Pekka Enberg83b519e2009-06-10 19:40:04 +03002167 gfp_t gfp;
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002168 int err;
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002169 size_t size = cachep->size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171#if DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172#if FORCED_DEBUG
2173 /*
2174 * Enable redzoning and last user accounting, except for caches with
2175 * large objects, if the increased size would increase the object size
2176 * above the next power of two: caches with object sizes just above a
2177 * power of two have a significant amount of internal fragmentation.
2178 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002179 if (size < 4096 || fls(size - 1) == fls(size-1 + REDZONE_ALIGN +
2180 2 * sizeof(unsigned long long)))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002181 flags |= SLAB_RED_ZONE | SLAB_STORE_USER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 if (!(flags & SLAB_DESTROY_BY_RCU))
2183 flags |= SLAB_POISON;
2184#endif
2185 if (flags & SLAB_DESTROY_BY_RCU)
2186 BUG_ON(flags & SLAB_POISON);
2187#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188
Andrew Mortona737b3e2006-03-22 00:08:11 -08002189 /*
2190 * Check that size is in terms of words. This is needed to avoid
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 * unaligned accesses for some archs when redzoning is used, and makes
2192 * sure any on-slab bufctl's are also correctly aligned.
2193 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002194 if (size & (BYTES_PER_WORD - 1)) {
2195 size += (BYTES_PER_WORD - 1);
2196 size &= ~(BYTES_PER_WORD - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 }
2198
Pekka Enbergca5f9702006-09-25 23:31:25 -07002199 /*
David Woodhouse87a927c2007-07-04 21:26:44 -04002200 * Redzoning and user store require word alignment or possibly larger.
2201 * Note this will be overridden by architecture or caller mandated
2202 * alignment if either is greater than BYTES_PER_WORD.
Pekka Enbergca5f9702006-09-25 23:31:25 -07002203 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002204 if (flags & SLAB_STORE_USER)
2205 ralign = BYTES_PER_WORD;
2206
2207 if (flags & SLAB_RED_ZONE) {
2208 ralign = REDZONE_ALIGN;
2209 /* If redzoning, ensure that the second redzone is suitably
2210 * aligned, by adjusting the object size accordingly. */
2211 size += REDZONE_ALIGN - 1;
2212 size &= ~(REDZONE_ALIGN - 1);
2213 }
Pekka Enbergca5f9702006-09-25 23:31:25 -07002214
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002215 /* 3) caller mandated alignment */
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002216 if (ralign < cachep->align) {
2217 ralign = cachep->align;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 }
Pekka Enberg3ff84a72011-02-14 17:46:21 +02002219 /* disable debug if necessary */
2220 if (ralign > __alignof__(unsigned long long))
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002221 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002222 /*
Pekka Enbergca5f9702006-09-25 23:31:25 -07002223 * 4) Store it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 */
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002225 cachep->align = ralign;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226
Pekka Enberg83b519e2009-06-10 19:40:04 +03002227 if (slab_is_available())
2228 gfp = GFP_KERNEL;
2229 else
2230 gfp = GFP_NOWAIT;
2231
Christoph Lameter6a673682013-01-10 19:14:19 +00002232 setup_node_pointer(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233#if DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07002234
Pekka Enbergca5f9702006-09-25 23:31:25 -07002235 /*
2236 * Both debugging options require word-alignment which is calculated
2237 * into align above.
2238 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002239 if (flags & SLAB_RED_ZONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 /* add space for red zone words */
Pekka Enberg3ff84a72011-02-14 17:46:21 +02002241 cachep->obj_offset += sizeof(unsigned long long);
2242 size += 2 * sizeof(unsigned long long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 }
2244 if (flags & SLAB_STORE_USER) {
Pekka Enbergca5f9702006-09-25 23:31:25 -07002245 /* user store requires one word storage behind the end of
David Woodhouse87a927c2007-07-04 21:26:44 -04002246 * the real object. But if the second red zone needs to be
2247 * aligned to 64 bits, we must allow that much space.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002249 if (flags & SLAB_RED_ZONE)
2250 size += REDZONE_ALIGN;
2251 else
2252 size += BYTES_PER_WORD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 }
2254#if FORCED_DEBUG && defined(CONFIG_DEBUG_PAGEALLOC)
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002255 if (size >= kmalloc_size(INDEX_NODE + 1)
Tetsuo Handa608da7e2012-09-30 17:28:25 +09002256 && cachep->object_size > cache_line_size()
2257 && ALIGN(size, cachep->align) < PAGE_SIZE) {
2258 cachep->obj_offset += PAGE_SIZE - ALIGN(size, cachep->align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 size = PAGE_SIZE;
2260 }
2261#endif
2262#endif
2263
Ingo Molnare0a42722006-06-23 02:03:46 -07002264 /*
2265 * Determine if the slab management is 'on' or 'off' slab.
2266 * (bootstrapping cannot cope with offslab caches so don't do
Catalin Marinase7cb55b2009-10-28 13:33:08 +00002267 * it too early on. Always use on-slab management when
2268 * SLAB_NOLEAKTRACE to avoid recursive calls into kmemleak)
Ingo Molnare0a42722006-06-23 02:03:46 -07002269 */
Catalin Marinase7cb55b2009-10-28 13:33:08 +00002270 if ((size >= (PAGE_SIZE >> 3)) && !slab_early_init &&
2271 !(flags & SLAB_NOLEAKTRACE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 /*
2273 * Size is large, assume best to place the slab management obj
2274 * off-slab (should allow better packing of objs).
2275 */
2276 flags |= CFLGS_OFF_SLAB;
2277
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002278 size = ALIGN(size, cachep->align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002280 left_over = calculate_slab_order(cachep, size, cachep->align, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002282 if (!cachep->num)
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002283 return -E2BIG;
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002284
Joonsoo Kim16025172013-10-24 10:07:46 +09002285 slab_size = ALIGN(cachep->num * sizeof(unsigned int)
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002286 + sizeof(struct slab), cachep->align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287
2288 /*
2289 * If the slab has been placed off-slab, and we have enough space then
2290 * move it on-slab. This is at the expense of any extra colouring.
2291 */
2292 if (flags & CFLGS_OFF_SLAB && left_over >= slab_size) {
2293 flags &= ~CFLGS_OFF_SLAB;
2294 left_over -= slab_size;
2295 }
2296
2297 if (flags & CFLGS_OFF_SLAB) {
2298 /* really off slab. No need for manual alignment */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002299 slab_size =
Joonsoo Kim16025172013-10-24 10:07:46 +09002300 cachep->num * sizeof(unsigned int) + sizeof(struct slab);
Ron Lee67461362009-05-22 04:58:22 +09302301
2302#ifdef CONFIG_PAGE_POISONING
2303 /* If we're going to use the generic kernel_map_pages()
2304 * poisoning, then it's going to smash the contents of
2305 * the redzone and userword anyhow, so switch them off.
2306 */
2307 if (size % PAGE_SIZE == 0 && flags & SLAB_POISON)
2308 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
2309#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 }
2311
2312 cachep->colour_off = cache_line_size();
2313 /* Offset must be a multiple of the alignment. */
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002314 if (cachep->colour_off < cachep->align)
2315 cachep->colour_off = cachep->align;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002316 cachep->colour = left_over / cachep->colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 cachep->slab_size = slab_size;
2318 cachep->flags = flags;
Joonsoo Kima57a4982013-10-24 10:07:44 +09002319 cachep->allocflags = __GFP_COMP;
Christoph Lameter4b51d662007-02-10 01:43:10 -08002320 if (CONFIG_ZONE_DMA_FLAG && (flags & SLAB_CACHE_DMA))
Glauber Costaa618e892012-06-14 16:17:21 +04002321 cachep->allocflags |= GFP_DMA;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002322 cachep->size = size;
Eric Dumazet6a2d7a92006-12-13 00:34:27 -08002323 cachep->reciprocal_buffer_size = reciprocal_value(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002325 if (flags & CFLGS_OFF_SLAB) {
Christoph Lameter2c59dd62013-01-10 19:14:19 +00002326 cachep->slabp_cache = kmalloc_slab(slab_size, 0u);
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002327 /*
2328 * This is a possibility for one of the malloc_sizes caches.
2329 * But since we go off slab only for object size greater than
2330 * PAGE_SIZE/8, and malloc_sizes gets created in ascending order,
2331 * this should not happen at all.
2332 * But leave a BUG_ON for some lucky dude.
2333 */
Christoph Lameter6cb8f912007-07-17 04:03:22 -07002334 BUG_ON(ZERO_OR_NULL_PTR(cachep->slabp_cache));
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002335 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002337 err = setup_cpu_cache(cachep, gfp);
2338 if (err) {
Christoph Lameter12c36672012-09-04 23:38:33 +00002339 __kmem_cache_shutdown(cachep);
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002340 return err;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002341 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342
Peter Zijlstra83835b32011-07-22 15:26:05 +02002343 if (flags & SLAB_DEBUG_OBJECTS) {
2344 /*
2345 * Would deadlock through slab_destroy()->call_rcu()->
2346 * debug_object_activate()->kmem_cache_alloc().
2347 */
2348 WARN_ON_ONCE(flags & SLAB_DESTROY_BY_RCU);
2349
2350 slab_set_debugobj_lock_classes(cachep);
Glauber Costa6ccfb5b2012-12-18 14:22:31 -08002351 } else if (!OFF_SLAB(cachep) && !(flags & SLAB_DESTROY_BY_RCU))
2352 on_slab_lock_classes(cachep);
Peter Zijlstra83835b32011-07-22 15:26:05 +02002353
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002354 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356
2357#if DEBUG
2358static void check_irq_off(void)
2359{
2360 BUG_ON(!irqs_disabled());
2361}
2362
2363static void check_irq_on(void)
2364{
2365 BUG_ON(irqs_disabled());
2366}
2367
Pekka Enberg343e0d72006-02-01 03:05:50 -08002368static void check_spinlock_acquired(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369{
2370#ifdef CONFIG_SMP
2371 check_irq_off();
Christoph Lameter6a673682013-01-10 19:14:19 +00002372 assert_spin_locked(&cachep->node[numa_mem_id()]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373#endif
2374}
Christoph Lametere498be72005-09-09 13:03:32 -07002375
Pekka Enberg343e0d72006-02-01 03:05:50 -08002376static void check_spinlock_acquired_node(struct kmem_cache *cachep, int node)
Christoph Lametere498be72005-09-09 13:03:32 -07002377{
2378#ifdef CONFIG_SMP
2379 check_irq_off();
Christoph Lameter6a673682013-01-10 19:14:19 +00002380 assert_spin_locked(&cachep->node[node]->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07002381#endif
2382}
2383
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384#else
2385#define check_irq_off() do { } while(0)
2386#define check_irq_on() do { } while(0)
2387#define check_spinlock_acquired(x) do { } while(0)
Christoph Lametere498be72005-09-09 13:03:32 -07002388#define check_spinlock_acquired_node(x, y) do { } while(0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389#endif
2390
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002391static void drain_array(struct kmem_cache *cachep, struct kmem_cache_node *n,
Christoph Lameteraab22072006-03-22 00:09:06 -08002392 struct array_cache *ac,
2393 int force, int node);
2394
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395static void do_drain(void *arg)
2396{
Andrew Mortona737b3e2006-03-22 00:08:11 -08002397 struct kmem_cache *cachep = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398 struct array_cache *ac;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07002399 int node = numa_mem_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400
2401 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002402 ac = cpu_cache_get(cachep);
Christoph Lameter6a673682013-01-10 19:14:19 +00002403 spin_lock(&cachep->node[node]->list_lock);
Christoph Lameterff694162005-09-22 21:44:02 -07002404 free_block(cachep, ac->entry, ac->avail, node);
Christoph Lameter6a673682013-01-10 19:14:19 +00002405 spin_unlock(&cachep->node[node]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 ac->avail = 0;
2407}
2408
Pekka Enberg343e0d72006-02-01 03:05:50 -08002409static void drain_cpu_caches(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410{
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002411 struct kmem_cache_node *n;
Christoph Lametere498be72005-09-09 13:03:32 -07002412 int node;
2413
Jens Axboe15c8b6c2008-05-09 09:39:44 +02002414 on_each_cpu(do_drain, cachep, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 check_irq_on();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002416 for_each_online_node(node) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002417 n = cachep->node[node];
2418 if (n && n->alien)
2419 drain_alien_cache(cachep, n->alien);
Roland Dreiera4523a82006-05-15 11:41:00 -07002420 }
2421
2422 for_each_online_node(node) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002423 n = cachep->node[node];
2424 if (n)
2425 drain_array(cachep, n, n->shared, 1, node);
Christoph Lametere498be72005-09-09 13:03:32 -07002426 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427}
2428
Christoph Lametered11d9e2006-06-30 01:55:45 -07002429/*
2430 * Remove slabs from the list of free slabs.
2431 * Specify the number of slabs to drain in tofree.
2432 *
2433 * Returns the actual number of slabs released.
2434 */
2435static int drain_freelist(struct kmem_cache *cache,
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002436 struct kmem_cache_node *n, int tofree)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437{
Christoph Lametered11d9e2006-06-30 01:55:45 -07002438 struct list_head *p;
2439 int nr_freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440 struct slab *slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441
Christoph Lametered11d9e2006-06-30 01:55:45 -07002442 nr_freed = 0;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002443 while (nr_freed < tofree && !list_empty(&n->slabs_free)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002445 spin_lock_irq(&n->list_lock);
2446 p = n->slabs_free.prev;
2447 if (p == &n->slabs_free) {
2448 spin_unlock_irq(&n->list_lock);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002449 goto out;
2450 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451
Christoph Lametered11d9e2006-06-30 01:55:45 -07002452 slabp = list_entry(p, struct slab, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453#if DEBUG
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002454 BUG_ON(slabp->inuse);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455#endif
2456 list_del(&slabp->list);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002457 /*
2458 * Safe to drop the lock. The slab is no longer linked
2459 * to the cache.
2460 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002461 n->free_objects -= cache->num;
2462 spin_unlock_irq(&n->list_lock);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002463 slab_destroy(cache, slabp);
2464 nr_freed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465 }
Christoph Lametered11d9e2006-06-30 01:55:45 -07002466out:
2467 return nr_freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468}
2469
Christoph Lameter18004c52012-07-06 15:25:12 -05002470/* Called with slab_mutex held to protect against cpu hotplug */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002471static int __cache_shrink(struct kmem_cache *cachep)
Christoph Lametere498be72005-09-09 13:03:32 -07002472{
2473 int ret = 0, i = 0;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002474 struct kmem_cache_node *n;
Christoph Lametere498be72005-09-09 13:03:32 -07002475
2476 drain_cpu_caches(cachep);
2477
2478 check_irq_on();
2479 for_each_online_node(i) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002480 n = cachep->node[i];
2481 if (!n)
Christoph Lametered11d9e2006-06-30 01:55:45 -07002482 continue;
2483
Wanpeng Li0fa81032013-07-04 08:33:22 +08002484 drain_freelist(cachep, n, slabs_tofree(cachep, n));
Christoph Lametered11d9e2006-06-30 01:55:45 -07002485
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002486 ret += !list_empty(&n->slabs_full) ||
2487 !list_empty(&n->slabs_partial);
Christoph Lametere498be72005-09-09 13:03:32 -07002488 }
2489 return (ret ? 1 : 0);
2490}
2491
Linus Torvalds1da177e2005-04-16 15:20:36 -07002492/**
2493 * kmem_cache_shrink - Shrink a cache.
2494 * @cachep: The cache to shrink.
2495 *
2496 * Releases as many slabs as possible for a cache.
2497 * To help debugging, a zero exit status indicates all slabs were released.
2498 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002499int kmem_cache_shrink(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500{
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002501 int ret;
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002502 BUG_ON(!cachep || in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002504 get_online_cpus();
Christoph Lameter18004c52012-07-06 15:25:12 -05002505 mutex_lock(&slab_mutex);
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002506 ret = __cache_shrink(cachep);
Christoph Lameter18004c52012-07-06 15:25:12 -05002507 mutex_unlock(&slab_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002508 put_online_cpus();
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002509 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510}
2511EXPORT_SYMBOL(kmem_cache_shrink);
2512
Christoph Lameter945cf2b2012-09-04 23:18:33 +00002513int __kmem_cache_shutdown(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514{
Christoph Lameter12c36672012-09-04 23:38:33 +00002515 int i;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002516 struct kmem_cache_node *n;
Christoph Lameter12c36672012-09-04 23:38:33 +00002517 int rc = __cache_shrink(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518
Christoph Lameter12c36672012-09-04 23:38:33 +00002519 if (rc)
2520 return rc;
2521
2522 for_each_online_cpu(i)
2523 kfree(cachep->array[i]);
2524
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002525 /* NUMA: free the node structures */
Christoph Lameter12c36672012-09-04 23:38:33 +00002526 for_each_online_node(i) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002527 n = cachep->node[i];
2528 if (n) {
2529 kfree(n->shared);
2530 free_alien_cache(n->alien);
2531 kfree(n);
Christoph Lameter12c36672012-09-04 23:38:33 +00002532 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 }
Christoph Lameter12c36672012-09-04 23:38:33 +00002534 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002537/*
2538 * Get the memory for a slab management obj.
2539 * For a slab cache when the slab descriptor is off-slab, slab descriptors
2540 * always come from malloc_sizes caches. The slab descriptor cannot
2541 * come from the same cache which is getting created because,
2542 * when we are searching for an appropriate cache for these
2543 * descriptors in kmem_cache_create, we search through the malloc_sizes array.
2544 * If we are creating a malloc_sizes cache here it would not be visible to
2545 * kmem_find_general_cachep till the initialization is complete.
2546 * Hence we cannot have slabp_cache same as the original cache.
2547 */
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002548static struct slab *alloc_slabmgmt(struct kmem_cache *cachep,
2549 struct page *page, int colour_off,
2550 gfp_t local_flags, int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551{
2552 struct slab *slabp;
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002553 void *addr = page_address(page);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002554
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555 if (OFF_SLAB(cachep)) {
2556 /* Slab management obj is off-slab. */
Ravikiran G Thirumalai5b74ada2006-04-10 22:52:53 -07002557 slabp = kmem_cache_alloc_node(cachep->slabp_cache,
Pekka Enberg8759ec52008-11-26 10:01:31 +02002558 local_flags, nodeid);
Catalin Marinasd5cff632009-06-11 13:22:40 +01002559 /*
2560 * If the first object in the slab is leaked (it's allocated
2561 * but no one has a reference to it), we want to make sure
2562 * kmemleak does not treat the ->s_mem pointer as a reference
2563 * to the object. Otherwise we will not report the leak.
2564 */
Catalin Marinasc017b4b2009-10-28 13:33:09 +00002565 kmemleak_scan_area(&slabp->list, sizeof(struct list_head),
2566 local_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567 if (!slabp)
2568 return NULL;
2569 } else {
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002570 slabp = addr + colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571 colour_off += cachep->slab_size;
2572 }
2573 slabp->inuse = 0;
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002574 slabp->s_mem = addr + colour_off;
Marcin Slusarze51bfd02008-02-10 11:21:54 +01002575 slabp->free = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002576 return slabp;
2577}
2578
Joonsoo Kim16025172013-10-24 10:07:46 +09002579static inline unsigned int *slab_bufctl(struct slab *slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580{
Joonsoo Kim16025172013-10-24 10:07:46 +09002581 return (unsigned int *) (slabp + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582}
2583
Pekka Enberg343e0d72006-02-01 03:05:50 -08002584static void cache_init_objs(struct kmem_cache *cachep,
Christoph Lametera35afb82007-05-16 22:10:57 -07002585 struct slab *slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586{
2587 int i;
2588
2589 for (i = 0; i < cachep->num; i++) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002590 void *objp = index_to_obj(cachep, slabp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002591#if DEBUG
2592 /* need to poison the objs? */
2593 if (cachep->flags & SLAB_POISON)
2594 poison_obj(cachep, objp, POISON_FREE);
2595 if (cachep->flags & SLAB_STORE_USER)
2596 *dbg_userword(cachep, objp) = NULL;
2597
2598 if (cachep->flags & SLAB_RED_ZONE) {
2599 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2600 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2601 }
2602 /*
Andrew Mortona737b3e2006-03-22 00:08:11 -08002603 * Constructors are not allowed to allocate memory from the same
2604 * cache which they are a constructor for. Otherwise, deadlock.
2605 * They must also be threaded.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606 */
2607 if (cachep->ctor && !(cachep->flags & SLAB_POISON))
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002608 cachep->ctor(objp + obj_offset(cachep));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609
2610 if (cachep->flags & SLAB_RED_ZONE) {
2611 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
2612 slab_error(cachep, "constructor overwrote the"
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002613 " end of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
2615 slab_error(cachep, "constructor overwrote the"
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002616 " start of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 }
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002618 if ((cachep->size % PAGE_SIZE) == 0 &&
Andrew Mortona737b3e2006-03-22 00:08:11 -08002619 OFF_SLAB(cachep) && cachep->flags & SLAB_POISON)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002620 kernel_map_pages(virt_to_page(objp),
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002621 cachep->size / PAGE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622#else
2623 if (cachep->ctor)
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002624 cachep->ctor(objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625#endif
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09002626 slab_bufctl(slabp)[i] = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628}
2629
Pekka Enberg343e0d72006-02-01 03:05:50 -08002630static void kmem_flagcheck(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631{
Christoph Lameter4b51d662007-02-10 01:43:10 -08002632 if (CONFIG_ZONE_DMA_FLAG) {
2633 if (flags & GFP_DMA)
Glauber Costaa618e892012-06-14 16:17:21 +04002634 BUG_ON(!(cachep->allocflags & GFP_DMA));
Christoph Lameter4b51d662007-02-10 01:43:10 -08002635 else
Glauber Costaa618e892012-06-14 16:17:21 +04002636 BUG_ON(cachep->allocflags & GFP_DMA);
Christoph Lameter4b51d662007-02-10 01:43:10 -08002637 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638}
2639
Andrew Mortona737b3e2006-03-22 00:08:11 -08002640static void *slab_get_obj(struct kmem_cache *cachep, struct slab *slabp,
2641 int nodeid)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002642{
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09002643 void *objp;
Matthew Dobson78d382d2006-02-01 03:05:47 -08002644
2645 slabp->inuse++;
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09002646 objp = index_to_obj(cachep, slabp, slab_bufctl(slabp)[slabp->free]);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002647#if DEBUG
Joonsoo Kim1ea991b2013-10-24 10:07:40 +09002648 WARN_ON(page_to_nid(virt_to_page(objp)) != nodeid);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002649#endif
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09002650 slabp->free++;
Matthew Dobson78d382d2006-02-01 03:05:47 -08002651
2652 return objp;
2653}
2654
Andrew Mortona737b3e2006-03-22 00:08:11 -08002655static void slab_put_obj(struct kmem_cache *cachep, struct slab *slabp,
2656 void *objp, int nodeid)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002657{
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002658 unsigned int objnr = obj_to_index(cachep, slabp, objp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002659#if DEBUG
Joonsoo Kim16025172013-10-24 10:07:46 +09002660 unsigned int i;
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09002661
Matthew Dobson78d382d2006-02-01 03:05:47 -08002662 /* Verify that the slab belongs to the intended node */
Joonsoo Kim1ea991b2013-10-24 10:07:40 +09002663 WARN_ON(page_to_nid(virt_to_page(objp)) != nodeid);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002664
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09002665 /* Verify double free bug */
2666 for (i = slabp->free; i < cachep->num; i++) {
2667 if (slab_bufctl(slabp)[i] == objnr) {
2668 printk(KERN_ERR "slab: double free detected in cache "
2669 "'%s', objp %p\n", cachep->name, objp);
2670 BUG();
2671 }
Matthew Dobson78d382d2006-02-01 03:05:47 -08002672 }
2673#endif
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09002674 slabp->free--;
2675 slab_bufctl(slabp)[slabp->free] = objnr;
Matthew Dobson78d382d2006-02-01 03:05:47 -08002676 slabp->inuse--;
2677}
2678
Pekka Enberg47768742006-06-23 02:03:07 -07002679/*
2680 * Map pages beginning at addr to the given cache and slab. This is required
2681 * for the slab allocator to be able to lookup the cache and slab of a
Nick Pigginccd35fb2011-01-07 17:49:17 +11002682 * virtual address for kfree, ksize, and slab debugging.
Pekka Enberg47768742006-06-23 02:03:07 -07002683 */
2684static void slab_map_pages(struct kmem_cache *cache, struct slab *slab,
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002685 struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686{
Joonsoo Kima57a4982013-10-24 10:07:44 +09002687 page->slab_cache = cache;
2688 page->slab_page = slab;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689}
2690
2691/*
2692 * Grow (by 1) the number of slabs within a cache. This is called by
2693 * kmem_cache_alloc() when there are no active objs left in a cache.
2694 */
Christoph Lameter3c517a62006-12-06 20:33:29 -08002695static int cache_grow(struct kmem_cache *cachep,
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002696 gfp_t flags, int nodeid, struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002698 struct slab *slabp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002699 size_t offset;
2700 gfp_t local_flags;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002701 struct kmem_cache_node *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702
Andrew Mortona737b3e2006-03-22 00:08:11 -08002703 /*
2704 * Be lazy and only check for valid flags here, keeping it out of the
2705 * critical path in kmem_cache_alloc().
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706 */
Christoph Lameter6cb06222007-10-16 01:25:41 -07002707 BUG_ON(flags & GFP_SLAB_BUG_MASK);
2708 local_flags = flags & (GFP_CONSTRAINT_MASK|GFP_RECLAIM_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002710 /* Take the node list lock to change the colour_next on this node */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711 check_irq_off();
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002712 n = cachep->node[nodeid];
2713 spin_lock(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714
2715 /* Get colour for the slab, and cal the next value. */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002716 offset = n->colour_next;
2717 n->colour_next++;
2718 if (n->colour_next >= cachep->colour)
2719 n->colour_next = 0;
2720 spin_unlock(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002722 offset *= cachep->colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723
2724 if (local_flags & __GFP_WAIT)
2725 local_irq_enable();
2726
2727 /*
2728 * The test for missing atomic flag is performed here, rather than
2729 * the more obvious place, simply to reduce the critical path length
2730 * in kmem_cache_alloc(). If a caller is seriously mis-behaving they
2731 * will eventually be caught here (where it matters).
2732 */
2733 kmem_flagcheck(cachep, flags);
2734
Andrew Mortona737b3e2006-03-22 00:08:11 -08002735 /*
2736 * Get mem for the objs. Attempt to allocate a physical page from
2737 * 'nodeid'.
Christoph Lametere498be72005-09-09 13:03:32 -07002738 */
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002739 if (!page)
2740 page = kmem_getpages(cachep, local_flags, nodeid);
2741 if (!page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742 goto failed;
2743
2744 /* Get slab management. */
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002745 slabp = alloc_slabmgmt(cachep, page, offset,
Christoph Lameter6cb06222007-10-16 01:25:41 -07002746 local_flags & ~GFP_CONSTRAINT_MASK, nodeid);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002747 if (!slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748 goto opps1;
2749
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002750 slab_map_pages(cachep, slabp, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751
Christoph Lametera35afb82007-05-16 22:10:57 -07002752 cache_init_objs(cachep, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753
2754 if (local_flags & __GFP_WAIT)
2755 local_irq_disable();
2756 check_irq_off();
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002757 spin_lock(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758
2759 /* Make slab active. */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002760 list_add_tail(&slabp->list, &(n->slabs_free));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761 STATS_INC_GROWN(cachep);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002762 n->free_objects += cachep->num;
2763 spin_unlock(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764 return 1;
Andrew Mortona737b3e2006-03-22 00:08:11 -08002765opps1:
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002766 kmem_freepages(cachep, page);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002767failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768 if (local_flags & __GFP_WAIT)
2769 local_irq_disable();
2770 return 0;
2771}
2772
2773#if DEBUG
2774
2775/*
2776 * Perform extra freeing checks:
2777 * - detect bad pointers.
2778 * - POISON/RED_ZONE checking
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779 */
2780static void kfree_debugcheck(const void *objp)
2781{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782 if (!virt_addr_valid(objp)) {
2783 printk(KERN_ERR "kfree_debugcheck: out of range ptr %lxh.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002784 (unsigned long)objp);
2785 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787}
2788
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002789static inline void verify_redzone_free(struct kmem_cache *cache, void *obj)
2790{
David Woodhouseb46b8f12007-05-08 00:22:59 -07002791 unsigned long long redzone1, redzone2;
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002792
2793 redzone1 = *dbg_redzone1(cache, obj);
2794 redzone2 = *dbg_redzone2(cache, obj);
2795
2796 /*
2797 * Redzone is ok.
2798 */
2799 if (redzone1 == RED_ACTIVE && redzone2 == RED_ACTIVE)
2800 return;
2801
2802 if (redzone1 == RED_INACTIVE && redzone2 == RED_INACTIVE)
2803 slab_error(cache, "double free detected");
2804 else
2805 slab_error(cache, "memory outside object was overwritten");
2806
David Woodhouseb46b8f12007-05-08 00:22:59 -07002807 printk(KERN_ERR "%p: redzone 1:0x%llx, redzone 2:0x%llx.\n",
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002808 obj, redzone1, redzone2);
2809}
2810
Pekka Enberg343e0d72006-02-01 03:05:50 -08002811static void *cache_free_debugcheck(struct kmem_cache *cachep, void *objp,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03002812 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814 unsigned int objnr;
2815 struct slab *slabp;
2816
Matthew Wilcox80cbd912007-11-29 12:05:13 -07002817 BUG_ON(virt_to_cache(objp) != cachep);
2818
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002819 objp -= obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820 kfree_debugcheck(objp);
Joonsoo Kim56f295e2013-10-24 10:07:43 +09002821 slabp = virt_to_slab(objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822
2823 if (cachep->flags & SLAB_RED_ZONE) {
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002824 verify_redzone_free(cachep, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2826 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2827 }
2828 if (cachep->flags & SLAB_STORE_USER)
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03002829 *dbg_userword(cachep, objp) = (void *)caller;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002831 objnr = obj_to_index(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832
2833 BUG_ON(objnr >= cachep->num);
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002834 BUG_ON(objp != index_to_obj(cachep, slabp, objnr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836 if (cachep->flags & SLAB_POISON) {
2837#ifdef CONFIG_DEBUG_PAGEALLOC
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002838 if ((cachep->size % PAGE_SIZE)==0 && OFF_SLAB(cachep)) {
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03002839 store_stackinfo(cachep, objp, caller);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002840 kernel_map_pages(virt_to_page(objp),
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002841 cachep->size / PAGE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842 } else {
2843 poison_obj(cachep, objp, POISON_FREE);
2844 }
2845#else
2846 poison_obj(cachep, objp, POISON_FREE);
2847#endif
2848 }
2849 return objp;
2850}
2851
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852#else
2853#define kfree_debugcheck(x) do { } while(0)
2854#define cache_free_debugcheck(x,objp,z) (objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855#endif
2856
Mel Gorman072bb0a2012-07-31 16:43:58 -07002857static void *cache_alloc_refill(struct kmem_cache *cachep, gfp_t flags,
2858 bool force_refill)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859{
2860 int batchcount;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002861 struct kmem_cache_node *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862 struct array_cache *ac;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07002863 int node;
2864
Joe Korty6d2144d2008-03-05 15:04:59 -08002865 check_irq_off();
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07002866 node = numa_mem_id();
Mel Gorman072bb0a2012-07-31 16:43:58 -07002867 if (unlikely(force_refill))
2868 goto force_grow;
2869retry:
Joe Korty6d2144d2008-03-05 15:04:59 -08002870 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871 batchcount = ac->batchcount;
2872 if (!ac->touched && batchcount > BATCHREFILL_LIMIT) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002873 /*
2874 * If there was little recent activity on this cache, then
2875 * perform only a partial refill. Otherwise we could generate
2876 * refill bouncing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 */
2878 batchcount = BATCHREFILL_LIMIT;
2879 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002880 n = cachep->node[node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002882 BUG_ON(ac->avail > 0 || !n);
2883 spin_lock(&n->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07002884
Christoph Lameter3ded1752006-03-25 03:06:44 -08002885 /* See if we can refill from the shared array */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002886 if (n->shared && transfer_objects(ac, n->shared, batchcount)) {
2887 n->shared->touched = 1;
Christoph Lameter3ded1752006-03-25 03:06:44 -08002888 goto alloc_done;
Nick Piggin44b57f12010-01-27 22:27:40 +11002889 }
Christoph Lameter3ded1752006-03-25 03:06:44 -08002890
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891 while (batchcount > 0) {
2892 struct list_head *entry;
2893 struct slab *slabp;
2894 /* Get slab alloc is to come from. */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002895 entry = n->slabs_partial.next;
2896 if (entry == &n->slabs_partial) {
2897 n->free_touched = 1;
2898 entry = n->slabs_free.next;
2899 if (entry == &n->slabs_free)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900 goto must_grow;
2901 }
2902
2903 slabp = list_entry(entry, struct slab, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904 check_spinlock_acquired(cachep);
Pekka Enberg714b81712007-05-06 14:49:03 -07002905
2906 /*
2907 * The slab was either on partial or free list so
2908 * there must be at least one object available for
2909 * allocation.
2910 */
roel kluin249b9f32008-10-29 17:18:07 -04002911 BUG_ON(slabp->inuse >= cachep->num);
Pekka Enberg714b81712007-05-06 14:49:03 -07002912
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913 while (slabp->inuse < cachep->num && batchcount--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914 STATS_INC_ALLOCED(cachep);
2915 STATS_INC_ACTIVE(cachep);
2916 STATS_SET_HIGH(cachep);
2917
Mel Gorman072bb0a2012-07-31 16:43:58 -07002918 ac_put_obj(cachep, ac, slab_get_obj(cachep, slabp,
2919 node));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921
2922 /* move slabp to correct slabp list: */
2923 list_del(&slabp->list);
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09002924 if (slabp->free == cachep->num)
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002925 list_add(&slabp->list, &n->slabs_full);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926 else
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002927 list_add(&slabp->list, &n->slabs_partial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928 }
2929
Andrew Mortona737b3e2006-03-22 00:08:11 -08002930must_grow:
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002931 n->free_objects -= ac->avail;
Andrew Mortona737b3e2006-03-22 00:08:11 -08002932alloc_done:
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002933 spin_unlock(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934
2935 if (unlikely(!ac->avail)) {
2936 int x;
Mel Gorman072bb0a2012-07-31 16:43:58 -07002937force_grow:
Christoph Lameter3c517a62006-12-06 20:33:29 -08002938 x = cache_grow(cachep, flags | GFP_THISNODE, node, NULL);
Christoph Lametere498be72005-09-09 13:03:32 -07002939
Andrew Mortona737b3e2006-03-22 00:08:11 -08002940 /* cache_grow can reenable interrupts, then ac could change. */
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002941 ac = cpu_cache_get(cachep);
David Rientjes51cd8e62012-08-28 19:57:21 -07002942 node = numa_mem_id();
Mel Gorman072bb0a2012-07-31 16:43:58 -07002943
2944 /* no objects in sight? abort */
2945 if (!x && (ac->avail == 0 || force_refill))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 return NULL;
2947
Andrew Mortona737b3e2006-03-22 00:08:11 -08002948 if (!ac->avail) /* objects refilled by interrupt? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949 goto retry;
2950 }
2951 ac->touched = 1;
Mel Gorman072bb0a2012-07-31 16:43:58 -07002952
2953 return ac_get_obj(cachep, ac, flags, force_refill);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954}
2955
Andrew Mortona737b3e2006-03-22 00:08:11 -08002956static inline void cache_alloc_debugcheck_before(struct kmem_cache *cachep,
2957 gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958{
2959 might_sleep_if(flags & __GFP_WAIT);
2960#if DEBUG
2961 kmem_flagcheck(cachep, flags);
2962#endif
2963}
2964
2965#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08002966static void *cache_alloc_debugcheck_after(struct kmem_cache *cachep,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03002967 gfp_t flags, void *objp, unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002969 if (!objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970 return objp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002971 if (cachep->flags & SLAB_POISON) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972#ifdef CONFIG_DEBUG_PAGEALLOC
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002973 if ((cachep->size % PAGE_SIZE) == 0 && OFF_SLAB(cachep))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002974 kernel_map_pages(virt_to_page(objp),
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002975 cachep->size / PAGE_SIZE, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976 else
2977 check_poison_obj(cachep, objp);
2978#else
2979 check_poison_obj(cachep, objp);
2980#endif
2981 poison_obj(cachep, objp, POISON_INUSE);
2982 }
2983 if (cachep->flags & SLAB_STORE_USER)
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03002984 *dbg_userword(cachep, objp) = (void *)caller;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985
2986 if (cachep->flags & SLAB_RED_ZONE) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002987 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE ||
2988 *dbg_redzone2(cachep, objp) != RED_INACTIVE) {
2989 slab_error(cachep, "double free, or memory outside"
2990 " object was overwritten");
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002991 printk(KERN_ERR
David Woodhouseb46b8f12007-05-08 00:22:59 -07002992 "%p: redzone 1:0x%llx, redzone 2:0x%llx\n",
Andrew Mortona737b3e2006-03-22 00:08:11 -08002993 objp, *dbg_redzone1(cachep, objp),
2994 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995 }
2996 *dbg_redzone1(cachep, objp) = RED_ACTIVE;
2997 *dbg_redzone2(cachep, objp) = RED_ACTIVE;
2998 }
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002999 objp += obj_offset(cachep);
Christoph Lameter4f104932007-05-06 14:50:17 -07003000 if (cachep->ctor && cachep->flags & SLAB_POISON)
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07003001 cachep->ctor(objp);
Tetsuo Handa7ea466f2011-07-21 09:42:45 +09003002 if (ARCH_SLAB_MINALIGN &&
3003 ((unsigned long)objp & (ARCH_SLAB_MINALIGN-1))) {
Kevin Hilmana44b56d2006-12-06 20:32:11 -08003004 printk(KERN_ERR "0x%p: not aligned to ARCH_SLAB_MINALIGN=%d\n",
Hugh Dickinsc2251502011-07-11 13:35:08 -07003005 objp, (int)ARCH_SLAB_MINALIGN);
Kevin Hilmana44b56d2006-12-06 20:32:11 -08003006 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007 return objp;
3008}
3009#else
3010#define cache_alloc_debugcheck_after(a,b,objp,d) (objp)
3011#endif
3012
Akinobu Mita773ff602008-12-23 19:37:01 +09003013static bool slab_should_failslab(struct kmem_cache *cachep, gfp_t flags)
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003014{
Christoph Lameter9b030cb2012-09-05 00:20:33 +00003015 if (cachep == kmem_cache)
Akinobu Mita773ff602008-12-23 19:37:01 +09003016 return false;
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003017
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003018 return should_failslab(cachep->object_size, flags, cachep->flags);
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003019}
3020
Pekka Enberg343e0d72006-02-01 03:05:50 -08003021static inline void *____cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003023 void *objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024 struct array_cache *ac;
Mel Gorman072bb0a2012-07-31 16:43:58 -07003025 bool force_refill = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026
Alok N Kataria5c382302005-09-27 21:45:46 -07003027 check_irq_off();
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003028
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003029 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030 if (likely(ac->avail)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031 ac->touched = 1;
Mel Gorman072bb0a2012-07-31 16:43:58 -07003032 objp = ac_get_obj(cachep, ac, flags, false);
3033
J. R. Okajimaddbf2e82009-12-02 16:55:50 +09003034 /*
Mel Gorman072bb0a2012-07-31 16:43:58 -07003035 * Allow for the possibility all avail objects are not allowed
3036 * by the current flags
J. R. Okajimaddbf2e82009-12-02 16:55:50 +09003037 */
Mel Gorman072bb0a2012-07-31 16:43:58 -07003038 if (objp) {
3039 STATS_INC_ALLOCHIT(cachep);
3040 goto out;
3041 }
3042 force_refill = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043 }
Mel Gorman072bb0a2012-07-31 16:43:58 -07003044
3045 STATS_INC_ALLOCMISS(cachep);
3046 objp = cache_alloc_refill(cachep, flags, force_refill);
3047 /*
3048 * the 'ac' may be updated by cache_alloc_refill(),
3049 * and kmemleak_erase() requires its correct value.
3050 */
3051 ac = cpu_cache_get(cachep);
3052
3053out:
Catalin Marinasd5cff632009-06-11 13:22:40 +01003054 /*
3055 * To avoid a false negative, if an object that is in one of the
3056 * per-CPU caches is leaked, we need to make sure kmemleak doesn't
3057 * treat the array pointers as a reference to the object.
3058 */
J. R. Okajimaf3d8b532009-12-02 16:55:49 +09003059 if (objp)
3060 kmemleak_erase(&ac->entry[ac->avail]);
Alok N Kataria5c382302005-09-27 21:45:46 -07003061 return objp;
3062}
3063
Christoph Lametere498be72005-09-09 13:03:32 -07003064#ifdef CONFIG_NUMA
3065/*
Paul Jacksonb2455392006-03-24 03:16:12 -08003066 * Try allocating on another node if PF_SPREAD_SLAB|PF_MEMPOLICY.
Paul Jacksonc61afb12006-03-24 03:16:08 -08003067 *
3068 * If we are in_interrupt, then process context, including cpusets and
3069 * mempolicy, may not apply and should not be used for allocation policy.
3070 */
3071static void *alternate_node_alloc(struct kmem_cache *cachep, gfp_t flags)
3072{
3073 int nid_alloc, nid_here;
3074
Christoph Lameter765c4502006-09-27 01:50:08 -07003075 if (in_interrupt() || (flags & __GFP_THISNODE))
Paul Jacksonc61afb12006-03-24 03:16:08 -08003076 return NULL;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003077 nid_alloc = nid_here = numa_mem_id();
Paul Jacksonc61afb12006-03-24 03:16:08 -08003078 if (cpuset_do_slab_mem_spread() && (cachep->flags & SLAB_MEM_SPREAD))
Jack Steiner6adef3e2010-05-26 14:42:49 -07003079 nid_alloc = cpuset_slab_spread_node();
Paul Jacksonc61afb12006-03-24 03:16:08 -08003080 else if (current->mempolicy)
Andi Kleene7b691b2012-06-09 02:40:03 -07003081 nid_alloc = slab_node();
Paul Jacksonc61afb12006-03-24 03:16:08 -08003082 if (nid_alloc != nid_here)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003083 return ____cache_alloc_node(cachep, flags, nid_alloc);
Paul Jacksonc61afb12006-03-24 03:16:08 -08003084 return NULL;
3085}
3086
3087/*
Christoph Lameter765c4502006-09-27 01:50:08 -07003088 * Fallback function if there was no memory available and no objects on a
Christoph Lameter3c517a62006-12-06 20:33:29 -08003089 * certain node and fall back is permitted. First we scan all the
Christoph Lameter6a673682013-01-10 19:14:19 +00003090 * available node for available objects. If that fails then we
Christoph Lameter3c517a62006-12-06 20:33:29 -08003091 * perform an allocation without specifying a node. This allows the page
3092 * allocator to do its reclaim / fallback magic. We then insert the
3093 * slab into the proper nodelist and then allocate from it.
Christoph Lameter765c4502006-09-27 01:50:08 -07003094 */
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003095static void *fallback_alloc(struct kmem_cache *cache, gfp_t flags)
Christoph Lameter765c4502006-09-27 01:50:08 -07003096{
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003097 struct zonelist *zonelist;
3098 gfp_t local_flags;
Mel Gormandd1a2392008-04-28 02:12:17 -07003099 struct zoneref *z;
Mel Gorman54a6eb52008-04-28 02:12:16 -07003100 struct zone *zone;
3101 enum zone_type high_zoneidx = gfp_zone(flags);
Christoph Lameter765c4502006-09-27 01:50:08 -07003102 void *obj = NULL;
Christoph Lameter3c517a62006-12-06 20:33:29 -08003103 int nid;
Mel Gormancc9a6c82012-03-21 16:34:11 -07003104 unsigned int cpuset_mems_cookie;
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003105
3106 if (flags & __GFP_THISNODE)
3107 return NULL;
3108
Christoph Lameter6cb06222007-10-16 01:25:41 -07003109 local_flags = flags & (GFP_CONSTRAINT_MASK|GFP_RECLAIM_MASK);
Christoph Lameter765c4502006-09-27 01:50:08 -07003110
Mel Gormancc9a6c82012-03-21 16:34:11 -07003111retry_cpuset:
3112 cpuset_mems_cookie = get_mems_allowed();
Andi Kleene7b691b2012-06-09 02:40:03 -07003113 zonelist = node_zonelist(slab_node(), flags);
Mel Gormancc9a6c82012-03-21 16:34:11 -07003114
Christoph Lameter3c517a62006-12-06 20:33:29 -08003115retry:
3116 /*
3117 * Look through allowed nodes for objects available
3118 * from existing per node queues.
3119 */
Mel Gorman54a6eb52008-04-28 02:12:16 -07003120 for_each_zone_zonelist(zone, z, zonelist, high_zoneidx) {
3121 nid = zone_to_nid(zone);
Christoph Lameteraedb0eb2006-10-21 10:24:16 -07003122
Mel Gorman54a6eb52008-04-28 02:12:16 -07003123 if (cpuset_zone_allowed_hardwall(zone, flags) &&
Christoph Lameter6a673682013-01-10 19:14:19 +00003124 cache->node[nid] &&
3125 cache->node[nid]->free_objects) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003126 obj = ____cache_alloc_node(cache,
3127 flags | GFP_THISNODE, nid);
Christoph Lameter481c5342008-06-21 16:46:35 -07003128 if (obj)
3129 break;
3130 }
Christoph Lameter3c517a62006-12-06 20:33:29 -08003131 }
3132
Christoph Lametercfce6602007-05-06 14:50:17 -07003133 if (!obj) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003134 /*
3135 * This allocation will be performed within the constraints
3136 * of the current cpuset / memory policy requirements.
3137 * We may trigger various forms of reclaim on the allowed
3138 * set and go into memory reserves if necessary.
3139 */
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09003140 struct page *page;
3141
Christoph Lameterdd47ea72006-12-13 00:34:11 -08003142 if (local_flags & __GFP_WAIT)
3143 local_irq_enable();
3144 kmem_flagcheck(cache, flags);
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09003145 page = kmem_getpages(cache, local_flags, numa_mem_id());
Christoph Lameterdd47ea72006-12-13 00:34:11 -08003146 if (local_flags & __GFP_WAIT)
3147 local_irq_disable();
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09003148 if (page) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003149 /*
3150 * Insert into the appropriate per node queues
3151 */
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09003152 nid = page_to_nid(page);
3153 if (cache_grow(cache, flags, nid, page)) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003154 obj = ____cache_alloc_node(cache,
3155 flags | GFP_THISNODE, nid);
3156 if (!obj)
3157 /*
3158 * Another processor may allocate the
3159 * objects in the slab since we are
3160 * not holding any locks.
3161 */
3162 goto retry;
3163 } else {
Hugh Dickinsb6a60452007-01-05 16:36:36 -08003164 /* cache_grow already freed obj */
Christoph Lameter3c517a62006-12-06 20:33:29 -08003165 obj = NULL;
3166 }
3167 }
Christoph Lameteraedb0eb2006-10-21 10:24:16 -07003168 }
Mel Gormancc9a6c82012-03-21 16:34:11 -07003169
3170 if (unlikely(!put_mems_allowed(cpuset_mems_cookie) && !obj))
3171 goto retry_cpuset;
Christoph Lameter765c4502006-09-27 01:50:08 -07003172 return obj;
3173}
3174
3175/*
Christoph Lametere498be72005-09-09 13:03:32 -07003176 * A interface to enable slab creation on nodeid
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177 */
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003178static void *____cache_alloc_node(struct kmem_cache *cachep, gfp_t flags,
Andrew Mortona737b3e2006-03-22 00:08:11 -08003179 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07003180{
3181 struct list_head *entry;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003182 struct slab *slabp;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003183 struct kmem_cache_node *n;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003184 void *obj;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003185 int x;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186
Aaron Tomlin14e50c62013-04-26 16:15:34 +01003187 VM_BUG_ON(nodeid > num_online_nodes());
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003188 n = cachep->node[nodeid];
3189 BUG_ON(!n);
Christoph Lametere498be72005-09-09 13:03:32 -07003190
Andrew Mortona737b3e2006-03-22 00:08:11 -08003191retry:
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08003192 check_irq_off();
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003193 spin_lock(&n->list_lock);
3194 entry = n->slabs_partial.next;
3195 if (entry == &n->slabs_partial) {
3196 n->free_touched = 1;
3197 entry = n->slabs_free.next;
3198 if (entry == &n->slabs_free)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003199 goto must_grow;
3200 }
Christoph Lametere498be72005-09-09 13:03:32 -07003201
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003202 slabp = list_entry(entry, struct slab, list);
3203 check_spinlock_acquired_node(cachep, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07003204
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003205 STATS_INC_NODEALLOCS(cachep);
3206 STATS_INC_ACTIVE(cachep);
3207 STATS_SET_HIGH(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003208
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003209 BUG_ON(slabp->inuse == cachep->num);
Christoph Lametere498be72005-09-09 13:03:32 -07003210
Matthew Dobson78d382d2006-02-01 03:05:47 -08003211 obj = slab_get_obj(cachep, slabp, nodeid);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003212 n->free_objects--;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003213 /* move slabp to correct slabp list: */
3214 list_del(&slabp->list);
Christoph Lametere498be72005-09-09 13:03:32 -07003215
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09003216 if (slabp->free == cachep->num)
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003217 list_add(&slabp->list, &n->slabs_full);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003218 else
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003219 list_add(&slabp->list, &n->slabs_partial);
Christoph Lametere498be72005-09-09 13:03:32 -07003220
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003221 spin_unlock(&n->list_lock);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003222 goto done;
Christoph Lametere498be72005-09-09 13:03:32 -07003223
Andrew Mortona737b3e2006-03-22 00:08:11 -08003224must_grow:
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003225 spin_unlock(&n->list_lock);
Christoph Lameter3c517a62006-12-06 20:33:29 -08003226 x = cache_grow(cachep, flags | GFP_THISNODE, nodeid, NULL);
Christoph Lameter765c4502006-09-27 01:50:08 -07003227 if (x)
3228 goto retry;
Christoph Lametere498be72005-09-09 13:03:32 -07003229
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003230 return fallback_alloc(cachep, flags);
Christoph Lameter765c4502006-09-27 01:50:08 -07003231
Andrew Mortona737b3e2006-03-22 00:08:11 -08003232done:
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003233 return obj;
Christoph Lametere498be72005-09-09 13:03:32 -07003234}
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003235
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003236static __always_inline void *
Ezequiel Garcia48356302012-09-08 17:47:57 -03003237slab_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003238 unsigned long caller)
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003239{
3240 unsigned long save_flags;
3241 void *ptr;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003242 int slab_node = numa_mem_id();
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003243
Benjamin Herrenschmidtdcce2842009-06-18 13:24:12 +10003244 flags &= gfp_allowed_mask;
Pekka Enberg7e85ee02009-06-12 14:03:06 +03003245
Nick Piggincf40bd12009-01-21 08:12:39 +01003246 lockdep_trace_alloc(flags);
3247
Akinobu Mita773ff602008-12-23 19:37:01 +09003248 if (slab_should_failslab(cachep, flags))
Akinobu Mita824ebef2007-05-06 14:49:58 -07003249 return NULL;
3250
Glauber Costad79923f2012-12-18 14:22:48 -08003251 cachep = memcg_kmem_get_cache(cachep, flags);
3252
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003253 cache_alloc_debugcheck_before(cachep, flags);
3254 local_irq_save(save_flags);
3255
Andrew Mortoneacbbae2011-07-28 13:59:49 -07003256 if (nodeid == NUMA_NO_NODE)
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003257 nodeid = slab_node;
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003258
Christoph Lameter6a673682013-01-10 19:14:19 +00003259 if (unlikely(!cachep->node[nodeid])) {
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003260 /* Node not bootstrapped yet */
3261 ptr = fallback_alloc(cachep, flags);
3262 goto out;
3263 }
3264
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003265 if (nodeid == slab_node) {
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003266 /*
3267 * Use the locally cached objects if possible.
3268 * However ____cache_alloc does not allow fallback
3269 * to other nodes. It may fail while we still have
3270 * objects on other nodes available.
3271 */
3272 ptr = ____cache_alloc(cachep, flags);
3273 if (ptr)
3274 goto out;
3275 }
3276 /* ___cache_alloc_node can fall back to other nodes */
3277 ptr = ____cache_alloc_node(cachep, flags, nodeid);
3278 out:
3279 local_irq_restore(save_flags);
3280 ptr = cache_alloc_debugcheck_after(cachep, flags, ptr, caller);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003281 kmemleak_alloc_recursive(ptr, cachep->object_size, 1, cachep->flags,
Catalin Marinasd5cff632009-06-11 13:22:40 +01003282 flags);
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003283
Pekka Enbergc175eea2008-05-09 20:35:53 +02003284 if (likely(ptr))
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003285 kmemcheck_slab_alloc(cachep, flags, ptr, cachep->object_size);
Pekka Enbergc175eea2008-05-09 20:35:53 +02003286
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003287 if (unlikely((flags & __GFP_ZERO) && ptr))
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003288 memset(ptr, 0, cachep->object_size);
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003289
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003290 return ptr;
3291}
3292
3293static __always_inline void *
3294__do_cache_alloc(struct kmem_cache *cache, gfp_t flags)
3295{
3296 void *objp;
3297
3298 if (unlikely(current->flags & (PF_SPREAD_SLAB | PF_MEMPOLICY))) {
3299 objp = alternate_node_alloc(cache, flags);
3300 if (objp)
3301 goto out;
3302 }
3303 objp = ____cache_alloc(cache, flags);
3304
3305 /*
3306 * We may just have run out of memory on the local node.
3307 * ____cache_alloc_node() knows how to locate memory on other nodes
3308 */
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003309 if (!objp)
3310 objp = ____cache_alloc_node(cache, flags, numa_mem_id());
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003311
3312 out:
3313 return objp;
3314}
3315#else
3316
3317static __always_inline void *
3318__do_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
3319{
3320 return ____cache_alloc(cachep, flags);
3321}
3322
3323#endif /* CONFIG_NUMA */
3324
3325static __always_inline void *
Ezequiel Garcia48356302012-09-08 17:47:57 -03003326slab_alloc(struct kmem_cache *cachep, gfp_t flags, unsigned long caller)
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003327{
3328 unsigned long save_flags;
3329 void *objp;
3330
Benjamin Herrenschmidtdcce2842009-06-18 13:24:12 +10003331 flags &= gfp_allowed_mask;
Pekka Enberg7e85ee02009-06-12 14:03:06 +03003332
Nick Piggincf40bd12009-01-21 08:12:39 +01003333 lockdep_trace_alloc(flags);
3334
Akinobu Mita773ff602008-12-23 19:37:01 +09003335 if (slab_should_failslab(cachep, flags))
Akinobu Mita824ebef2007-05-06 14:49:58 -07003336 return NULL;
3337
Glauber Costad79923f2012-12-18 14:22:48 -08003338 cachep = memcg_kmem_get_cache(cachep, flags);
3339
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003340 cache_alloc_debugcheck_before(cachep, flags);
3341 local_irq_save(save_flags);
3342 objp = __do_cache_alloc(cachep, flags);
3343 local_irq_restore(save_flags);
3344 objp = cache_alloc_debugcheck_after(cachep, flags, objp, caller);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003345 kmemleak_alloc_recursive(objp, cachep->object_size, 1, cachep->flags,
Catalin Marinasd5cff632009-06-11 13:22:40 +01003346 flags);
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003347 prefetchw(objp);
3348
Pekka Enbergc175eea2008-05-09 20:35:53 +02003349 if (likely(objp))
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003350 kmemcheck_slab_alloc(cachep, flags, objp, cachep->object_size);
Pekka Enbergc175eea2008-05-09 20:35:53 +02003351
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003352 if (unlikely((flags & __GFP_ZERO) && objp))
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003353 memset(objp, 0, cachep->object_size);
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003354
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003355 return objp;
3356}
Christoph Lametere498be72005-09-09 13:03:32 -07003357
3358/*
3359 * Caller needs to acquire correct kmem_list's list_lock
3360 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003361static void free_block(struct kmem_cache *cachep, void **objpp, int nr_objects,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003362 int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003363{
3364 int i;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003365 struct kmem_cache_node *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366
3367 for (i = 0; i < nr_objects; i++) {
Mel Gorman072bb0a2012-07-31 16:43:58 -07003368 void *objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369 struct slab *slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003370
Mel Gorman072bb0a2012-07-31 16:43:58 -07003371 clear_obj_pfmemalloc(&objpp[i]);
3372 objp = objpp[i];
3373
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -08003374 slabp = virt_to_slab(objp);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003375 n = cachep->node[node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376 list_del(&slabp->list);
Christoph Lameterff694162005-09-22 21:44:02 -07003377 check_spinlock_acquired_node(cachep, node);
Matthew Dobson78d382d2006-02-01 03:05:47 -08003378 slab_put_obj(cachep, slabp, objp, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379 STATS_DEC_ACTIVE(cachep);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003380 n->free_objects++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003381
3382 /* fixup slab chains */
3383 if (slabp->inuse == 0) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003384 if (n->free_objects > n->free_limit) {
3385 n->free_objects -= cachep->num;
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07003386 /* No need to drop any previously held
3387 * lock here, even if we have a off-slab slab
3388 * descriptor it is guaranteed to come from
3389 * a different cache, refer to comments before
3390 * alloc_slabmgmt.
3391 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392 slab_destroy(cachep, slabp);
3393 } else {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003394 list_add(&slabp->list, &n->slabs_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395 }
3396 } else {
3397 /* Unconditionally move a slab to the end of the
3398 * partial list on free - maximum time for the
3399 * other objects to be freed, too.
3400 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003401 list_add_tail(&slabp->list, &n->slabs_partial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402 }
3403 }
3404}
3405
Pekka Enberg343e0d72006-02-01 03:05:50 -08003406static void cache_flusharray(struct kmem_cache *cachep, struct array_cache *ac)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407{
3408 int batchcount;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003409 struct kmem_cache_node *n;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003410 int node = numa_mem_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411
3412 batchcount = ac->batchcount;
3413#if DEBUG
3414 BUG_ON(!batchcount || batchcount > ac->avail);
3415#endif
3416 check_irq_off();
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003417 n = cachep->node[node];
3418 spin_lock(&n->list_lock);
3419 if (n->shared) {
3420 struct array_cache *shared_array = n->shared;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003421 int max = shared_array->limit - shared_array->avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003422 if (max) {
3423 if (batchcount > max)
3424 batchcount = max;
Christoph Lametere498be72005-09-09 13:03:32 -07003425 memcpy(&(shared_array->entry[shared_array->avail]),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003426 ac->entry, sizeof(void *) * batchcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427 shared_array->avail += batchcount;
3428 goto free_done;
3429 }
3430 }
3431
Christoph Lameterff694162005-09-22 21:44:02 -07003432 free_block(cachep, ac->entry, batchcount, node);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003433free_done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434#if STATS
3435 {
3436 int i = 0;
3437 struct list_head *p;
3438
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003439 p = n->slabs_free.next;
3440 while (p != &(n->slabs_free)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441 struct slab *slabp;
3442
3443 slabp = list_entry(p, struct slab, list);
3444 BUG_ON(slabp->inuse);
3445
3446 i++;
3447 p = p->next;
3448 }
3449 STATS_SET_FREEABLE(cachep, i);
3450 }
3451#endif
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003452 spin_unlock(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003453 ac->avail -= batchcount;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003454 memmove(ac->entry, &(ac->entry[batchcount]), sizeof(void *)*ac->avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455}
3456
3457/*
Andrew Mortona737b3e2006-03-22 00:08:11 -08003458 * Release an obj back to its cache. If the obj has a constructed state, it must
3459 * be in this state _before_ it is released. Called with disabled ints.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460 */
Suleiman Souhlala947eb92011-06-02 00:16:42 -07003461static inline void __cache_free(struct kmem_cache *cachep, void *objp,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003462 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463{
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003464 struct array_cache *ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003465
3466 check_irq_off();
Catalin Marinasd5cff632009-06-11 13:22:40 +01003467 kmemleak_free_recursive(objp, cachep->flags);
Suleiman Souhlala947eb92011-06-02 00:16:42 -07003468 objp = cache_free_debugcheck(cachep, objp, caller);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003469
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003470 kmemcheck_slab_free(cachep, objp, cachep->object_size);
Pekka Enbergc175eea2008-05-09 20:35:53 +02003471
Siddha, Suresh B1807a1a2007-08-22 14:01:49 -07003472 /*
3473 * Skip calling cache_free_alien() when the platform is not numa.
3474 * This will avoid cache misses that happen while accessing slabp (which
3475 * is per page memory reference) to get nodeid. Instead use a global
3476 * variable to skip the call, which is mostly likely to be present in
3477 * the cache.
3478 */
Mel Gormanb6e68bc2009-06-16 15:32:16 -07003479 if (nr_online_nodes > 1 && cache_free_alien(cachep, objp))
Pekka Enberg729bd0b2006-06-23 02:03:05 -07003480 return;
Christoph Lametere498be72005-09-09 13:03:32 -07003481
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482 if (likely(ac->avail < ac->limit)) {
3483 STATS_INC_FREEHIT(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484 } else {
3485 STATS_INC_FREEMISS(cachep);
3486 cache_flusharray(cachep, ac);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003487 }
Zhao Jin42c8c992011-08-27 00:26:17 +08003488
Mel Gorman072bb0a2012-07-31 16:43:58 -07003489 ac_put_obj(cachep, ac, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490}
3491
3492/**
3493 * kmem_cache_alloc - Allocate an object
3494 * @cachep: The cache to allocate from.
3495 * @flags: See kmalloc().
3496 *
3497 * Allocate an object from this cache. The flags are only relevant
3498 * if the cache has no available objects.
3499 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003500void *kmem_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003501{
Ezequiel Garcia48356302012-09-08 17:47:57 -03003502 void *ret = slab_alloc(cachep, flags, _RET_IP_);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003503
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003504 trace_kmem_cache_alloc(_RET_IP_, ret,
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003505 cachep->object_size, cachep->size, flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003506
3507 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003508}
3509EXPORT_SYMBOL(kmem_cache_alloc);
3510
Li Zefan0f24f122009-12-11 15:45:30 +08003511#ifdef CONFIG_TRACING
Steven Rostedt85beb582010-11-24 16:23:34 -05003512void *
Ezequiel Garcia40521472012-09-08 17:47:56 -03003513kmem_cache_alloc_trace(struct kmem_cache *cachep, gfp_t flags, size_t size)
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003514{
Steven Rostedt85beb582010-11-24 16:23:34 -05003515 void *ret;
3516
Ezequiel Garcia48356302012-09-08 17:47:57 -03003517 ret = slab_alloc(cachep, flags, _RET_IP_);
Steven Rostedt85beb582010-11-24 16:23:34 -05003518
3519 trace_kmalloc(_RET_IP_, ret,
Ezequiel Garciaff4fcd02012-09-08 17:47:52 -03003520 size, cachep->size, flags);
Steven Rostedt85beb582010-11-24 16:23:34 -05003521 return ret;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003522}
Steven Rostedt85beb582010-11-24 16:23:34 -05003523EXPORT_SYMBOL(kmem_cache_alloc_trace);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003524#endif
3525
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526#ifdef CONFIG_NUMA
Zhouping Liud0d04b72013-05-16 11:36:23 +08003527/**
3528 * kmem_cache_alloc_node - Allocate an object on the specified node
3529 * @cachep: The cache to allocate from.
3530 * @flags: See kmalloc().
3531 * @nodeid: node number of the target node.
3532 *
3533 * Identical to kmem_cache_alloc but it will allocate memory on the given
3534 * node, which can improve the performance for cpu bound structures.
3535 *
3536 * Fallback to other node is possible if __GFP_THISNODE is not set.
3537 */
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003538void *kmem_cache_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid)
3539{
Ezequiel Garcia48356302012-09-08 17:47:57 -03003540 void *ret = slab_alloc_node(cachep, flags, nodeid, _RET_IP_);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003541
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003542 trace_kmem_cache_alloc_node(_RET_IP_, ret,
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003543 cachep->object_size, cachep->size,
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003544 flags, nodeid);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003545
3546 return ret;
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003547}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548EXPORT_SYMBOL(kmem_cache_alloc_node);
3549
Li Zefan0f24f122009-12-11 15:45:30 +08003550#ifdef CONFIG_TRACING
Ezequiel Garcia40521472012-09-08 17:47:56 -03003551void *kmem_cache_alloc_node_trace(struct kmem_cache *cachep,
Steven Rostedt85beb582010-11-24 16:23:34 -05003552 gfp_t flags,
Ezequiel Garcia40521472012-09-08 17:47:56 -03003553 int nodeid,
3554 size_t size)
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003555{
Steven Rostedt85beb582010-11-24 16:23:34 -05003556 void *ret;
3557
Ezequiel Garcia592f4142012-09-25 08:07:08 -03003558 ret = slab_alloc_node(cachep, flags, nodeid, _RET_IP_);
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003559
Steven Rostedt85beb582010-11-24 16:23:34 -05003560 trace_kmalloc_node(_RET_IP_, ret,
Ezequiel Garciaff4fcd02012-09-08 17:47:52 -03003561 size, cachep->size,
Steven Rostedt85beb582010-11-24 16:23:34 -05003562 flags, nodeid);
3563 return ret;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003564}
Steven Rostedt85beb582010-11-24 16:23:34 -05003565EXPORT_SYMBOL(kmem_cache_alloc_node_trace);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003566#endif
3567
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003568static __always_inline void *
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003569__do_kmalloc_node(size_t size, gfp_t flags, int node, unsigned long caller)
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003570{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003571 struct kmem_cache *cachep;
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003572
Christoph Lameter2c59dd62013-01-10 19:14:19 +00003573 cachep = kmalloc_slab(size, flags);
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003574 if (unlikely(ZERO_OR_NULL_PTR(cachep)))
3575 return cachep;
Ezequiel Garcia40521472012-09-08 17:47:56 -03003576 return kmem_cache_alloc_node_trace(cachep, flags, node, size);
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003577}
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003578
Li Zefan0bb38a52009-12-11 15:45:50 +08003579#if defined(CONFIG_DEBUG_SLAB) || defined(CONFIG_TRACING)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003580void *__kmalloc_node(size_t size, gfp_t flags, int node)
3581{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003582 return __do_kmalloc_node(size, flags, node, _RET_IP_);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003583}
Christoph Hellwigdbe5e692006-09-25 23:31:36 -07003584EXPORT_SYMBOL(__kmalloc_node);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003585
3586void *__kmalloc_node_track_caller(size_t size, gfp_t flags,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003587 int node, unsigned long caller)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003588{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003589 return __do_kmalloc_node(size, flags, node, caller);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003590}
3591EXPORT_SYMBOL(__kmalloc_node_track_caller);
3592#else
3593void *__kmalloc_node(size_t size, gfp_t flags, int node)
3594{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003595 return __do_kmalloc_node(size, flags, node, 0);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003596}
3597EXPORT_SYMBOL(__kmalloc_node);
Li Zefan0bb38a52009-12-11 15:45:50 +08003598#endif /* CONFIG_DEBUG_SLAB || CONFIG_TRACING */
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003599#endif /* CONFIG_NUMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003600
3601/**
Paul Drynoff800590f2006-06-23 02:03:48 -07003602 * __do_kmalloc - allocate memory
Linus Torvalds1da177e2005-04-16 15:20:36 -07003603 * @size: how many bytes of memory are required.
Paul Drynoff800590f2006-06-23 02:03:48 -07003604 * @flags: the type of memory to allocate (see kmalloc).
Randy Dunlap911851e2006-03-22 00:08:14 -08003605 * @caller: function caller for debug tracking of the caller
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606 */
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003607static __always_inline void *__do_kmalloc(size_t size, gfp_t flags,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003608 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003609{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003610 struct kmem_cache *cachep;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003611 void *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003612
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003613 /* If you want to save a few bytes .text space: replace
3614 * __ with kmem_.
3615 * Then kmalloc uses the uninlined functions instead of the inline
3616 * functions.
3617 */
Christoph Lameter2c59dd62013-01-10 19:14:19 +00003618 cachep = kmalloc_slab(size, flags);
Linus Torvaldsa5c96d82007-07-19 13:17:15 -07003619 if (unlikely(ZERO_OR_NULL_PTR(cachep)))
3620 return cachep;
Ezequiel Garcia48356302012-09-08 17:47:57 -03003621 ret = slab_alloc(cachep, flags, caller);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003622
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003623 trace_kmalloc(caller, ret,
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003624 size, cachep->size, flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003625
3626 return ret;
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003627}
3628
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003629
Li Zefan0bb38a52009-12-11 15:45:50 +08003630#if defined(CONFIG_DEBUG_SLAB) || defined(CONFIG_TRACING)
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003631void *__kmalloc(size_t size, gfp_t flags)
3632{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003633 return __do_kmalloc(size, flags, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003634}
3635EXPORT_SYMBOL(__kmalloc);
3636
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003637void *__kmalloc_track_caller(size_t size, gfp_t flags, unsigned long caller)
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003638{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003639 return __do_kmalloc(size, flags, caller);
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003640}
3641EXPORT_SYMBOL(__kmalloc_track_caller);
Christoph Hellwig1d2c8ee2006-10-04 02:15:25 -07003642
3643#else
3644void *__kmalloc(size_t size, gfp_t flags)
3645{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003646 return __do_kmalloc(size, flags, 0);
Christoph Hellwig1d2c8ee2006-10-04 02:15:25 -07003647}
3648EXPORT_SYMBOL(__kmalloc);
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003649#endif
3650
Linus Torvalds1da177e2005-04-16 15:20:36 -07003651/**
3652 * kmem_cache_free - Deallocate an object
3653 * @cachep: The cache the allocation was from.
3654 * @objp: The previously allocated object.
3655 *
3656 * Free an object which was previously allocated from this
3657 * cache.
3658 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003659void kmem_cache_free(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660{
3661 unsigned long flags;
Glauber Costab9ce5ef2012-12-18 14:22:46 -08003662 cachep = cache_from_obj(cachep, objp);
3663 if (!cachep)
3664 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003665
3666 local_irq_save(flags);
Feng Tangd97d4762012-07-02 14:29:10 +08003667 debug_check_no_locks_freed(objp, cachep->object_size);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -07003668 if (!(cachep->flags & SLAB_DEBUG_OBJECTS))
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003669 debug_check_no_obj_freed(objp, cachep->object_size);
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003670 __cache_free(cachep, objp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003671 local_irq_restore(flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003672
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003673 trace_kmem_cache_free(_RET_IP_, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674}
3675EXPORT_SYMBOL(kmem_cache_free);
3676
3677/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003678 * kfree - free previously allocated memory
3679 * @objp: pointer returned by kmalloc.
3680 *
Pekka Enberg80e93ef2005-09-09 13:10:16 -07003681 * If @objp is NULL, no operation is performed.
3682 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003683 * Don't free memory not originally allocated by kmalloc()
3684 * or you will run into trouble.
3685 */
3686void kfree(const void *objp)
3687{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003688 struct kmem_cache *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003689 unsigned long flags;
3690
Pekka Enberg2121db72009-03-25 11:05:57 +02003691 trace_kfree(_RET_IP_, objp);
3692
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003693 if (unlikely(ZERO_OR_NULL_PTR(objp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003694 return;
3695 local_irq_save(flags);
3696 kfree_debugcheck(objp);
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -08003697 c = virt_to_cache(objp);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003698 debug_check_no_locks_freed(objp, c->object_size);
3699
3700 debug_check_no_obj_freed(objp, c->object_size);
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003701 __cache_free(c, (void *)objp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003702 local_irq_restore(flags);
3703}
3704EXPORT_SYMBOL(kfree);
3705
Christoph Lametere498be72005-09-09 13:03:32 -07003706/*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003707 * This initializes kmem_cache_node or resizes various caches for all nodes.
Christoph Lametere498be72005-09-09 13:03:32 -07003708 */
Pekka Enberg83b519e2009-06-10 19:40:04 +03003709static int alloc_kmemlist(struct kmem_cache *cachep, gfp_t gfp)
Christoph Lametere498be72005-09-09 13:03:32 -07003710{
3711 int node;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003712 struct kmem_cache_node *n;
Christoph Lametercafeb022006-03-25 03:06:46 -08003713 struct array_cache *new_shared;
Paul Menage3395ee02006-12-06 20:32:16 -08003714 struct array_cache **new_alien = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07003715
Mel Gorman9c09a952008-01-24 05:49:54 -08003716 for_each_online_node(node) {
Christoph Lametercafeb022006-03-25 03:06:46 -08003717
Paul Menage3395ee02006-12-06 20:32:16 -08003718 if (use_alien_caches) {
Pekka Enberg83b519e2009-06-10 19:40:04 +03003719 new_alien = alloc_alien_cache(node, cachep->limit, gfp);
Paul Menage3395ee02006-12-06 20:32:16 -08003720 if (!new_alien)
3721 goto fail;
3722 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003723
Eric Dumazet63109842007-05-06 14:49:28 -07003724 new_shared = NULL;
3725 if (cachep->shared) {
3726 new_shared = alloc_arraycache(node,
Christoph Lameter0718dc22006-03-25 03:06:47 -08003727 cachep->shared*cachep->batchcount,
Pekka Enberg83b519e2009-06-10 19:40:04 +03003728 0xbaadf00d, gfp);
Eric Dumazet63109842007-05-06 14:49:28 -07003729 if (!new_shared) {
3730 free_alien_cache(new_alien);
3731 goto fail;
3732 }
Christoph Lameter0718dc22006-03-25 03:06:47 -08003733 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003734
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003735 n = cachep->node[node];
3736 if (n) {
3737 struct array_cache *shared = n->shared;
Christoph Lametercafeb022006-03-25 03:06:46 -08003738
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003739 spin_lock_irq(&n->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07003740
Christoph Lametercafeb022006-03-25 03:06:46 -08003741 if (shared)
Christoph Lameter0718dc22006-03-25 03:06:47 -08003742 free_block(cachep, shared->entry,
3743 shared->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -07003744
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003745 n->shared = new_shared;
3746 if (!n->alien) {
3747 n->alien = new_alien;
Christoph Lametere498be72005-09-09 13:03:32 -07003748 new_alien = NULL;
3749 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003750 n->free_limit = (1 + nr_cpus_node(node)) *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003751 cachep->batchcount + cachep->num;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003752 spin_unlock_irq(&n->list_lock);
Christoph Lametercafeb022006-03-25 03:06:46 -08003753 kfree(shared);
Christoph Lametere498be72005-09-09 13:03:32 -07003754 free_alien_cache(new_alien);
3755 continue;
3756 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003757 n = kmalloc_node(sizeof(struct kmem_cache_node), gfp, node);
3758 if (!n) {
Christoph Lameter0718dc22006-03-25 03:06:47 -08003759 free_alien_cache(new_alien);
3760 kfree(new_shared);
Christoph Lametere498be72005-09-09 13:03:32 -07003761 goto fail;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003762 }
Christoph Lametere498be72005-09-09 13:03:32 -07003763
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003764 kmem_cache_node_init(n);
3765 n->next_reap = jiffies + REAPTIMEOUT_LIST3 +
Andrew Mortona737b3e2006-03-22 00:08:11 -08003766 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003767 n->shared = new_shared;
3768 n->alien = new_alien;
3769 n->free_limit = (1 + nr_cpus_node(node)) *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003770 cachep->batchcount + cachep->num;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003771 cachep->node[node] = n;
Christoph Lametere498be72005-09-09 13:03:32 -07003772 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003773 return 0;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003774
Andrew Mortona737b3e2006-03-22 00:08:11 -08003775fail:
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003776 if (!cachep->list.next) {
Christoph Lameter0718dc22006-03-25 03:06:47 -08003777 /* Cache is not active yet. Roll back what we did */
3778 node--;
3779 while (node >= 0) {
Christoph Lameter6a673682013-01-10 19:14:19 +00003780 if (cachep->node[node]) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003781 n = cachep->node[node];
Christoph Lameter0718dc22006-03-25 03:06:47 -08003782
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003783 kfree(n->shared);
3784 free_alien_cache(n->alien);
3785 kfree(n);
Christoph Lameter6a673682013-01-10 19:14:19 +00003786 cachep->node[node] = NULL;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003787 }
3788 node--;
3789 }
3790 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003791 return -ENOMEM;
Christoph Lametere498be72005-09-09 13:03:32 -07003792}
3793
Linus Torvalds1da177e2005-04-16 15:20:36 -07003794struct ccupdate_struct {
Pekka Enberg343e0d72006-02-01 03:05:50 -08003795 struct kmem_cache *cachep;
Eric Dumazetacfe7d72011-07-25 08:55:42 +02003796 struct array_cache *new[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797};
3798
3799static void do_ccupdate_local(void *info)
3800{
Andrew Mortona737b3e2006-03-22 00:08:11 -08003801 struct ccupdate_struct *new = info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802 struct array_cache *old;
3803
3804 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003805 old = cpu_cache_get(new->cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003806
Linus Torvalds1da177e2005-04-16 15:20:36 -07003807 new->cachep->array[smp_processor_id()] = new->new[smp_processor_id()];
3808 new->new[smp_processor_id()] = old;
3809}
3810
Christoph Lameter18004c52012-07-06 15:25:12 -05003811/* Always called with the slab_mutex held */
Glauber Costa943a4512012-12-18 14:23:03 -08003812static int __do_tune_cpucache(struct kmem_cache *cachep, int limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03003813 int batchcount, int shared, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003814{
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003815 struct ccupdate_struct *new;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07003816 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003817
Eric Dumazetacfe7d72011-07-25 08:55:42 +02003818 new = kzalloc(sizeof(*new) + nr_cpu_ids * sizeof(struct array_cache *),
3819 gfp);
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003820 if (!new)
3821 return -ENOMEM;
3822
Christoph Lametere498be72005-09-09 13:03:32 -07003823 for_each_online_cpu(i) {
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003824 new->new[i] = alloc_arraycache(cpu_to_mem(i), limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03003825 batchcount, gfp);
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003826 if (!new->new[i]) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003827 for (i--; i >= 0; i--)
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003828 kfree(new->new[i]);
3829 kfree(new);
Christoph Lametere498be72005-09-09 13:03:32 -07003830 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003831 }
3832 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003833 new->cachep = cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003834
Jens Axboe15c8b6c2008-05-09 09:39:44 +02003835 on_each_cpu(do_ccupdate_local, (void *)new, 1);
Christoph Lametere498be72005-09-09 13:03:32 -07003836
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837 check_irq_on();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003838 cachep->batchcount = batchcount;
3839 cachep->limit = limit;
Christoph Lametere498be72005-09-09 13:03:32 -07003840 cachep->shared = shared;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841
Christoph Lametere498be72005-09-09 13:03:32 -07003842 for_each_online_cpu(i) {
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003843 struct array_cache *ccold = new->new[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844 if (!ccold)
3845 continue;
Christoph Lameter6a673682013-01-10 19:14:19 +00003846 spin_lock_irq(&cachep->node[cpu_to_mem(i)]->list_lock);
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003847 free_block(cachep, ccold->entry, ccold->avail, cpu_to_mem(i));
Christoph Lameter6a673682013-01-10 19:14:19 +00003848 spin_unlock_irq(&cachep->node[cpu_to_mem(i)]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003849 kfree(ccold);
3850 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003851 kfree(new);
Pekka Enberg83b519e2009-06-10 19:40:04 +03003852 return alloc_kmemlist(cachep, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853}
3854
Glauber Costa943a4512012-12-18 14:23:03 -08003855static int do_tune_cpucache(struct kmem_cache *cachep, int limit,
3856 int batchcount, int shared, gfp_t gfp)
3857{
3858 int ret;
3859 struct kmem_cache *c = NULL;
3860 int i = 0;
3861
3862 ret = __do_tune_cpucache(cachep, limit, batchcount, shared, gfp);
3863
3864 if (slab_state < FULL)
3865 return ret;
3866
3867 if ((ret < 0) || !is_root_cache(cachep))
3868 return ret;
3869
Glauber Costaebe945c2012-12-18 14:23:10 -08003870 VM_BUG_ON(!mutex_is_locked(&slab_mutex));
Glauber Costa943a4512012-12-18 14:23:03 -08003871 for_each_memcg_cache_index(i) {
3872 c = cache_from_memcg(cachep, i);
3873 if (c)
3874 /* return value determined by the parent cache only */
3875 __do_tune_cpucache(c, limit, batchcount, shared, gfp);
3876 }
3877
3878 return ret;
3879}
3880
Christoph Lameter18004c52012-07-06 15:25:12 -05003881/* Called with slab_mutex held always */
Pekka Enberg83b519e2009-06-10 19:40:04 +03003882static int enable_cpucache(struct kmem_cache *cachep, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003883{
3884 int err;
Glauber Costa943a4512012-12-18 14:23:03 -08003885 int limit = 0;
3886 int shared = 0;
3887 int batchcount = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003888
Glauber Costa943a4512012-12-18 14:23:03 -08003889 if (!is_root_cache(cachep)) {
3890 struct kmem_cache *root = memcg_root_cache(cachep);
3891 limit = root->limit;
3892 shared = root->shared;
3893 batchcount = root->batchcount;
3894 }
3895
3896 if (limit && shared && batchcount)
3897 goto skip_setup;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003898 /*
3899 * The head array serves three purposes:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900 * - create a LIFO ordering, i.e. return objects that are cache-warm
3901 * - reduce the number of spinlock operations.
Andrew Mortona737b3e2006-03-22 00:08:11 -08003902 * - reduce the number of linked list operations on the slab and
Linus Torvalds1da177e2005-04-16 15:20:36 -07003903 * bufctl chains: array operations are cheaper.
3904 * The numbers are guessed, we should auto-tune as described by
3905 * Bonwick.
3906 */
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003907 if (cachep->size > 131072)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003908 limit = 1;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003909 else if (cachep->size > PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003910 limit = 8;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003911 else if (cachep->size > 1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003912 limit = 24;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003913 else if (cachep->size > 256)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003914 limit = 54;
3915 else
3916 limit = 120;
3917
Andrew Mortona737b3e2006-03-22 00:08:11 -08003918 /*
3919 * CPU bound tasks (e.g. network routing) can exhibit cpu bound
Linus Torvalds1da177e2005-04-16 15:20:36 -07003920 * allocation behaviour: Most allocs on one cpu, most free operations
3921 * on another cpu. For these cases, an efficient object passing between
3922 * cpus is necessary. This is provided by a shared array. The array
3923 * replaces Bonwick's magazine layer.
3924 * On uniprocessor, it's functionally equivalent (but less efficient)
3925 * to a larger limit. Thus disabled by default.
3926 */
3927 shared = 0;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003928 if (cachep->size <= PAGE_SIZE && num_possible_cpus() > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929 shared = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930
3931#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08003932 /*
3933 * With debugging enabled, large batchcount lead to excessively long
3934 * periods with disabled local interrupts. Limit the batchcount
Linus Torvalds1da177e2005-04-16 15:20:36 -07003935 */
3936 if (limit > 32)
3937 limit = 32;
3938#endif
Glauber Costa943a4512012-12-18 14:23:03 -08003939 batchcount = (limit + 1) / 2;
3940skip_setup:
3941 err = do_tune_cpucache(cachep, limit, batchcount, shared, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942 if (err)
3943 printk(KERN_ERR "enable_cpucache failed for %s, error %d.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003944 cachep->name, -err);
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07003945 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003946}
3947
Christoph Lameter1b552532006-03-22 00:09:07 -08003948/*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003949 * Drain an array if it contains any elements taking the node lock only if
3950 * necessary. Note that the node listlock also protects the array_cache
Christoph Lameterb18e7e62006-03-22 00:09:07 -08003951 * if drain_array() is used on the shared array.
Christoph Lameter1b552532006-03-22 00:09:07 -08003952 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003953static void drain_array(struct kmem_cache *cachep, struct kmem_cache_node *n,
Christoph Lameter1b552532006-03-22 00:09:07 -08003954 struct array_cache *ac, int force, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003955{
3956 int tofree;
3957
Christoph Lameter1b552532006-03-22 00:09:07 -08003958 if (!ac || !ac->avail)
3959 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960 if (ac->touched && !force) {
3961 ac->touched = 0;
Christoph Lameterb18e7e62006-03-22 00:09:07 -08003962 } else {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003963 spin_lock_irq(&n->list_lock);
Christoph Lameterb18e7e62006-03-22 00:09:07 -08003964 if (ac->avail) {
3965 tofree = force ? ac->avail : (ac->limit + 4) / 5;
3966 if (tofree > ac->avail)
3967 tofree = (ac->avail + 1) / 2;
3968 free_block(cachep, ac->entry, tofree, node);
3969 ac->avail -= tofree;
3970 memmove(ac->entry, &(ac->entry[tofree]),
3971 sizeof(void *) * ac->avail);
3972 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003973 spin_unlock_irq(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003974 }
3975}
3976
3977/**
3978 * cache_reap - Reclaim memory from caches.
Randy Dunlap05fb6bf2007-02-28 20:12:13 -08003979 * @w: work descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -07003980 *
3981 * Called from workqueue/eventd every few seconds.
3982 * Purpose:
3983 * - clear the per-cpu caches for this CPU.
3984 * - return freeable pages to the main free memory pool.
3985 *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003986 * If we cannot acquire the cache chain mutex then just give up - we'll try
3987 * again on the next iteration.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003988 */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08003989static void cache_reap(struct work_struct *w)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003990{
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07003991 struct kmem_cache *searchp;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003992 struct kmem_cache_node *n;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003993 int node = numa_mem_id();
Jean Delvarebf6aede2009-04-02 16:56:54 -07003994 struct delayed_work *work = to_delayed_work(w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003995
Christoph Lameter18004c52012-07-06 15:25:12 -05003996 if (!mutex_trylock(&slab_mutex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003997 /* Give up. Setup the next iteration. */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08003998 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003999
Christoph Lameter18004c52012-07-06 15:25:12 -05004000 list_for_each_entry(searchp, &slab_caches, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004001 check_irq_on();
4002
Christoph Lameter35386e32006-03-22 00:09:05 -08004003 /*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004004 * We only take the node lock if absolutely necessary and we
Christoph Lameter35386e32006-03-22 00:09:05 -08004005 * have established with reasonable certainty that
4006 * we can do some work if the lock was obtained.
4007 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004008 n = searchp->node[node];
Christoph Lameter35386e32006-03-22 00:09:05 -08004009
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004010 reap_alien(searchp, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004011
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004012 drain_array(searchp, n, cpu_cache_get(searchp), 0, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004013
Christoph Lameter35386e32006-03-22 00:09:05 -08004014 /*
4015 * These are racy checks but it does not matter
4016 * if we skip one check or scan twice.
4017 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004018 if (time_after(n->next_reap, jiffies))
Christoph Lameter35386e32006-03-22 00:09:05 -08004019 goto next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004020
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004021 n->next_reap = jiffies + REAPTIMEOUT_LIST3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004022
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004023 drain_array(searchp, n, n->shared, 0, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004024
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004025 if (n->free_touched)
4026 n->free_touched = 0;
Christoph Lametered11d9e2006-06-30 01:55:45 -07004027 else {
4028 int freed;
4029
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004030 freed = drain_freelist(searchp, n, (n->free_limit +
Christoph Lametered11d9e2006-06-30 01:55:45 -07004031 5 * searchp->num - 1) / (5 * searchp->num));
4032 STATS_ADD_REAPED(searchp, freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004033 }
Christoph Lameter35386e32006-03-22 00:09:05 -08004034next:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035 cond_resched();
4036 }
4037 check_irq_on();
Christoph Lameter18004c52012-07-06 15:25:12 -05004038 mutex_unlock(&slab_mutex);
Christoph Lameter8fce4d82006-03-09 17:33:54 -08004039 next_reap_node();
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004040out:
Andrew Mortona737b3e2006-03-22 00:08:11 -08004041 /* Set up the next iteration */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004042 schedule_delayed_work(work, round_jiffies_relative(REAPTIMEOUT_CPUC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043}
4044
Linus Torvalds158a9622008-01-02 13:04:48 -08004045#ifdef CONFIG_SLABINFO
Glauber Costa0d7561c2012-10-19 18:20:27 +04004046void get_slabinfo(struct kmem_cache *cachep, struct slabinfo *sinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004047{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004048 struct slab *slabp;
4049 unsigned long active_objs;
4050 unsigned long num_objs;
4051 unsigned long active_slabs = 0;
4052 unsigned long num_slabs, free_objects = 0, shared_avail = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07004053 const char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004054 char *error = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07004055 int node;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004056 struct kmem_cache_node *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004057
Linus Torvalds1da177e2005-04-16 15:20:36 -07004058 active_objs = 0;
4059 num_slabs = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07004060 for_each_online_node(node) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004061 n = cachep->node[node];
4062 if (!n)
Christoph Lametere498be72005-09-09 13:03:32 -07004063 continue;
4064
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08004065 check_irq_on();
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004066 spin_lock_irq(&n->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07004067
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004068 list_for_each_entry(slabp, &n->slabs_full, list) {
Christoph Lametere498be72005-09-09 13:03:32 -07004069 if (slabp->inuse != cachep->num && !error)
4070 error = "slabs_full accounting error";
4071 active_objs += cachep->num;
4072 active_slabs++;
4073 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004074 list_for_each_entry(slabp, &n->slabs_partial, list) {
Christoph Lametere498be72005-09-09 13:03:32 -07004075 if (slabp->inuse == cachep->num && !error)
4076 error = "slabs_partial inuse accounting error";
4077 if (!slabp->inuse && !error)
4078 error = "slabs_partial/inuse accounting error";
4079 active_objs += slabp->inuse;
4080 active_slabs++;
4081 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004082 list_for_each_entry(slabp, &n->slabs_free, list) {
Christoph Lametere498be72005-09-09 13:03:32 -07004083 if (slabp->inuse && !error)
4084 error = "slabs_free/inuse accounting error";
4085 num_slabs++;
4086 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004087 free_objects += n->free_objects;
4088 if (n->shared)
4089 shared_avail += n->shared->avail;
Christoph Lametere498be72005-09-09 13:03:32 -07004090
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004091 spin_unlock_irq(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004092 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004093 num_slabs += active_slabs;
4094 num_objs = num_slabs * cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07004095 if (num_objs - active_objs != free_objects && !error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004096 error = "free_objects accounting error";
4097
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004098 name = cachep->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004099 if (error)
4100 printk(KERN_ERR "slab: cache %s error: %s\n", name, error);
4101
Glauber Costa0d7561c2012-10-19 18:20:27 +04004102 sinfo->active_objs = active_objs;
4103 sinfo->num_objs = num_objs;
4104 sinfo->active_slabs = active_slabs;
4105 sinfo->num_slabs = num_slabs;
4106 sinfo->shared_avail = shared_avail;
4107 sinfo->limit = cachep->limit;
4108 sinfo->batchcount = cachep->batchcount;
4109 sinfo->shared = cachep->shared;
4110 sinfo->objects_per_slab = cachep->num;
4111 sinfo->cache_order = cachep->gfporder;
4112}
4113
4114void slabinfo_show_stats(struct seq_file *m, struct kmem_cache *cachep)
4115{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004116#if STATS
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004117 { /* node stats */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004118 unsigned long high = cachep->high_mark;
4119 unsigned long allocs = cachep->num_allocations;
4120 unsigned long grown = cachep->grown;
4121 unsigned long reaped = cachep->reaped;
4122 unsigned long errors = cachep->errors;
4123 unsigned long max_freeable = cachep->max_freeable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004124 unsigned long node_allocs = cachep->node_allocs;
Christoph Lametere498be72005-09-09 13:03:32 -07004125 unsigned long node_frees = cachep->node_frees;
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -07004126 unsigned long overflows = cachep->node_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004127
Joe Perchese92dd4f2010-03-26 19:27:58 -07004128 seq_printf(m, " : globalstat %7lu %6lu %5lu %4lu "
4129 "%4lu %4lu %4lu %4lu %4lu",
4130 allocs, high, grown,
4131 reaped, errors, max_freeable, node_allocs,
4132 node_frees, overflows);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004133 }
4134 /* cpu stats */
4135 {
4136 unsigned long allochit = atomic_read(&cachep->allochit);
4137 unsigned long allocmiss = atomic_read(&cachep->allocmiss);
4138 unsigned long freehit = atomic_read(&cachep->freehit);
4139 unsigned long freemiss = atomic_read(&cachep->freemiss);
4140
4141 seq_printf(m, " : cpustat %6lu %6lu %6lu %6lu",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004142 allochit, allocmiss, freehit, freemiss);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004143 }
4144#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004145}
4146
Linus Torvalds1da177e2005-04-16 15:20:36 -07004147#define MAX_SLABINFO_WRITE 128
4148/**
4149 * slabinfo_write - Tuning for the slab allocator
4150 * @file: unused
4151 * @buffer: user buffer
4152 * @count: data length
4153 * @ppos: unused
4154 */
Glauber Costab7454ad2012-10-19 18:20:25 +04004155ssize_t slabinfo_write(struct file *file, const char __user *buffer,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004156 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004157{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004158 char kbuf[MAX_SLABINFO_WRITE + 1], *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004159 int limit, batchcount, shared, res;
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004160 struct kmem_cache *cachep;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004161
Linus Torvalds1da177e2005-04-16 15:20:36 -07004162 if (count > MAX_SLABINFO_WRITE)
4163 return -EINVAL;
4164 if (copy_from_user(&kbuf, buffer, count))
4165 return -EFAULT;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004166 kbuf[MAX_SLABINFO_WRITE] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07004167
4168 tmp = strchr(kbuf, ' ');
4169 if (!tmp)
4170 return -EINVAL;
4171 *tmp = '\0';
4172 tmp++;
4173 if (sscanf(tmp, " %d %d %d", &limit, &batchcount, &shared) != 3)
4174 return -EINVAL;
4175
4176 /* Find the cache in the chain of caches. */
Christoph Lameter18004c52012-07-06 15:25:12 -05004177 mutex_lock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004178 res = -EINVAL;
Christoph Lameter18004c52012-07-06 15:25:12 -05004179 list_for_each_entry(cachep, &slab_caches, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004180 if (!strcmp(cachep->name, kbuf)) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08004181 if (limit < 1 || batchcount < 1 ||
4182 batchcount > limit || shared < 0) {
Christoph Lametere498be72005-09-09 13:03:32 -07004183 res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004184 } else {
Christoph Lametere498be72005-09-09 13:03:32 -07004185 res = do_tune_cpucache(cachep, limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03004186 batchcount, shared,
4187 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004188 }
4189 break;
4190 }
4191 }
Christoph Lameter18004c52012-07-06 15:25:12 -05004192 mutex_unlock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004193 if (res >= 0)
4194 res = count;
4195 return res;
4196}
Al Viro871751e2006-03-25 03:06:39 -08004197
4198#ifdef CONFIG_DEBUG_SLAB_LEAK
4199
4200static void *leaks_start(struct seq_file *m, loff_t *pos)
4201{
Christoph Lameter18004c52012-07-06 15:25:12 -05004202 mutex_lock(&slab_mutex);
4203 return seq_list_start(&slab_caches, *pos);
Al Viro871751e2006-03-25 03:06:39 -08004204}
4205
4206static inline int add_caller(unsigned long *n, unsigned long v)
4207{
4208 unsigned long *p;
4209 int l;
4210 if (!v)
4211 return 1;
4212 l = n[1];
4213 p = n + 2;
4214 while (l) {
4215 int i = l/2;
4216 unsigned long *q = p + 2 * i;
4217 if (*q == v) {
4218 q[1]++;
4219 return 1;
4220 }
4221 if (*q > v) {
4222 l = i;
4223 } else {
4224 p = q + 2;
4225 l -= i + 1;
4226 }
4227 }
4228 if (++n[1] == n[0])
4229 return 0;
4230 memmove(p + 2, p, n[1] * 2 * sizeof(unsigned long) - ((void *)p - (void *)n));
4231 p[0] = v;
4232 p[1] = 1;
4233 return 1;
4234}
4235
4236static void handle_slab(unsigned long *n, struct kmem_cache *c, struct slab *s)
4237{
4238 void *p;
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09004239 int i, j;
4240
Al Viro871751e2006-03-25 03:06:39 -08004241 if (n[0] == n[1])
4242 return;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05004243 for (i = 0, p = s->s_mem; i < c->num; i++, p += c->size) {
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09004244 bool active = true;
4245
4246 for (j = s->free; j < c->num; j++) {
4247 /* Skip freed item */
4248 if (slab_bufctl(s)[j] == i) {
4249 active = false;
4250 break;
4251 }
4252 }
4253 if (!active)
Al Viro871751e2006-03-25 03:06:39 -08004254 continue;
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09004255
Al Viro871751e2006-03-25 03:06:39 -08004256 if (!add_caller(n, (unsigned long)*dbg_userword(c, p)))
4257 return;
4258 }
4259}
4260
4261static void show_symbol(struct seq_file *m, unsigned long address)
4262{
4263#ifdef CONFIG_KALLSYMS
Al Viro871751e2006-03-25 03:06:39 -08004264 unsigned long offset, size;
Tejun Heo9281ace2007-07-17 04:03:51 -07004265 char modname[MODULE_NAME_LEN], name[KSYM_NAME_LEN];
Al Viro871751e2006-03-25 03:06:39 -08004266
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004267 if (lookup_symbol_attrs(address, &size, &offset, modname, name) == 0) {
Al Viro871751e2006-03-25 03:06:39 -08004268 seq_printf(m, "%s+%#lx/%#lx", name, offset, size);
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004269 if (modname[0])
Al Viro871751e2006-03-25 03:06:39 -08004270 seq_printf(m, " [%s]", modname);
4271 return;
4272 }
4273#endif
4274 seq_printf(m, "%p", (void *)address);
4275}
4276
4277static int leaks_show(struct seq_file *m, void *p)
4278{
Thierry Reding0672aa72012-06-22 19:42:49 +02004279 struct kmem_cache *cachep = list_entry(p, struct kmem_cache, list);
Al Viro871751e2006-03-25 03:06:39 -08004280 struct slab *slabp;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004281 struct kmem_cache_node *n;
Al Viro871751e2006-03-25 03:06:39 -08004282 const char *name;
Christoph Lameterdb845062013-02-05 18:45:23 +00004283 unsigned long *x = m->private;
Al Viro871751e2006-03-25 03:06:39 -08004284 int node;
4285 int i;
4286
4287 if (!(cachep->flags & SLAB_STORE_USER))
4288 return 0;
4289 if (!(cachep->flags & SLAB_RED_ZONE))
4290 return 0;
4291
4292 /* OK, we can do it */
4293
Christoph Lameterdb845062013-02-05 18:45:23 +00004294 x[1] = 0;
Al Viro871751e2006-03-25 03:06:39 -08004295
4296 for_each_online_node(node) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004297 n = cachep->node[node];
4298 if (!n)
Al Viro871751e2006-03-25 03:06:39 -08004299 continue;
4300
4301 check_irq_on();
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004302 spin_lock_irq(&n->list_lock);
Al Viro871751e2006-03-25 03:06:39 -08004303
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004304 list_for_each_entry(slabp, &n->slabs_full, list)
Christoph Lameterdb845062013-02-05 18:45:23 +00004305 handle_slab(x, cachep, slabp);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004306 list_for_each_entry(slabp, &n->slabs_partial, list)
Christoph Lameterdb845062013-02-05 18:45:23 +00004307 handle_slab(x, cachep, slabp);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004308 spin_unlock_irq(&n->list_lock);
Al Viro871751e2006-03-25 03:06:39 -08004309 }
4310 name = cachep->name;
Christoph Lameterdb845062013-02-05 18:45:23 +00004311 if (x[0] == x[1]) {
Al Viro871751e2006-03-25 03:06:39 -08004312 /* Increase the buffer size */
Christoph Lameter18004c52012-07-06 15:25:12 -05004313 mutex_unlock(&slab_mutex);
Christoph Lameterdb845062013-02-05 18:45:23 +00004314 m->private = kzalloc(x[0] * 4 * sizeof(unsigned long), GFP_KERNEL);
Al Viro871751e2006-03-25 03:06:39 -08004315 if (!m->private) {
4316 /* Too bad, we are really out */
Christoph Lameterdb845062013-02-05 18:45:23 +00004317 m->private = x;
Christoph Lameter18004c52012-07-06 15:25:12 -05004318 mutex_lock(&slab_mutex);
Al Viro871751e2006-03-25 03:06:39 -08004319 return -ENOMEM;
4320 }
Christoph Lameterdb845062013-02-05 18:45:23 +00004321 *(unsigned long *)m->private = x[0] * 2;
4322 kfree(x);
Christoph Lameter18004c52012-07-06 15:25:12 -05004323 mutex_lock(&slab_mutex);
Al Viro871751e2006-03-25 03:06:39 -08004324 /* Now make sure this entry will be retried */
4325 m->count = m->size;
4326 return 0;
4327 }
Christoph Lameterdb845062013-02-05 18:45:23 +00004328 for (i = 0; i < x[1]; i++) {
4329 seq_printf(m, "%s: %lu ", name, x[2*i+3]);
4330 show_symbol(m, x[2*i+2]);
Al Viro871751e2006-03-25 03:06:39 -08004331 seq_putc(m, '\n');
4332 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004333
Al Viro871751e2006-03-25 03:06:39 -08004334 return 0;
4335}
4336
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004337static const struct seq_operations slabstats_op = {
Al Viro871751e2006-03-25 03:06:39 -08004338 .start = leaks_start,
Wanpeng Li276a2432013-07-08 08:08:28 +08004339 .next = slab_next,
4340 .stop = slab_stop,
Al Viro871751e2006-03-25 03:06:39 -08004341 .show = leaks_show,
4342};
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004343
4344static int slabstats_open(struct inode *inode, struct file *file)
4345{
4346 unsigned long *n = kzalloc(PAGE_SIZE, GFP_KERNEL);
4347 int ret = -ENOMEM;
4348 if (n) {
4349 ret = seq_open(file, &slabstats_op);
4350 if (!ret) {
4351 struct seq_file *m = file->private_data;
4352 *n = PAGE_SIZE / (2 * sizeof(unsigned long));
4353 m->private = n;
4354 n = NULL;
4355 }
4356 kfree(n);
4357 }
4358 return ret;
4359}
4360
4361static const struct file_operations proc_slabstats_operations = {
4362 .open = slabstats_open,
4363 .read = seq_read,
4364 .llseek = seq_lseek,
4365 .release = seq_release_private,
4366};
Al Viro871751e2006-03-25 03:06:39 -08004367#endif
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004368
4369static int __init slab_proc_init(void)
4370{
4371#ifdef CONFIG_DEBUG_SLAB_LEAK
4372 proc_create("slab_allocators", 0, NULL, &proc_slabstats_operations);
4373#endif
4374 return 0;
4375}
4376module_init(slab_proc_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004377#endif
4378
Manfred Spraul00e145b2005-09-03 15:55:07 -07004379/**
4380 * ksize - get the actual amount of memory allocated for a given object
4381 * @objp: Pointer to the object
4382 *
4383 * kmalloc may internally round up allocations and return more memory
4384 * than requested. ksize() can be used to determine the actual amount of
4385 * memory allocated. The caller may use this additional memory, even though
4386 * a smaller amount of memory was initially specified with the kmalloc call.
4387 * The caller must guarantee that objp points to a valid object previously
4388 * allocated with either kmalloc() or kmem_cache_alloc(). The object
4389 * must not be freed during the duration of the call.
4390 */
Pekka Enbergfd76bab2007-05-06 14:48:40 -07004391size_t ksize(const void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004392{
Christoph Lameteref8b4522007-10-16 01:24:46 -07004393 BUG_ON(!objp);
4394 if (unlikely(objp == ZERO_SIZE_PTR))
Manfred Spraul00e145b2005-09-03 15:55:07 -07004395 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004396
Christoph Lameter8c138bc2012-06-13 10:24:58 -05004397 return virt_to_cache(objp)->object_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004398}
Kirill A. Shutemovb1aabec2009-02-10 15:21:44 +02004399EXPORT_SYMBOL(ksize);