blob: 6ced1ccf8abb88dd5fc7c603785b26313eb6c536 [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
Joonsoo Kim16025172013-10-24 10:07:46 +0900166#define SLAB_LIMIT (((unsigned int)(~0U))-1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168/*
Lai Jiangshan5bfe53a2011-03-10 15:22:24 +0800169 * struct slab
170 *
171 * Manages the objs in a slab. Placed either at the beginning of mem allocated
172 * for a slab, or allocated from an general cache.
173 * Slabs are chained into three list: fully used, partial, fully free slabs.
174 */
175struct slab {
Joonsoo Kim68126702013-10-24 10:07:42 +0900176 struct {
177 struct list_head list;
178 void *s_mem; /* including colour offset */
179 unsigned int inuse; /* num of objs active in slab */
Joonsoo Kim16025172013-10-24 10:07:46 +0900180 unsigned int free;
Lai Jiangshan5bfe53a2011-03-10 15:22:24 +0800181 };
182};
183
184/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 * struct array_cache
186 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 * Purpose:
188 * - LIFO ordering, to hand out cache-warm objects from _alloc
189 * - reduce the number of linked list operations
190 * - reduce spinlock operations
191 *
192 * The limit is stored in the per-cpu structure to reduce the data cache
193 * footprint.
194 *
195 */
196struct array_cache {
197 unsigned int avail;
198 unsigned int limit;
199 unsigned int batchcount;
200 unsigned int touched;
Christoph Lametere498be72005-09-09 13:03:32 -0700201 spinlock_t lock;
Robert P. J. Daybda5b652007-10-16 23:30:05 -0700202 void *entry[]; /*
Andrew Mortona737b3e2006-03-22 00:08:11 -0800203 * Must have this definition in here for the proper
204 * alignment of array_cache. Also simplifies accessing
205 * the entries.
Mel Gorman072bb0a2012-07-31 16:43:58 -0700206 *
207 * Entries should not be directly dereferenced as
208 * entries belonging to slabs marked pfmemalloc will
209 * have the lower bits set SLAB_OBJ_PFMEMALLOC
Andrew Mortona737b3e2006-03-22 00:08:11 -0800210 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211};
212
Mel Gorman072bb0a2012-07-31 16:43:58 -0700213#define SLAB_OBJ_PFMEMALLOC 1
214static inline bool is_obj_pfmemalloc(void *objp)
215{
216 return (unsigned long)objp & SLAB_OBJ_PFMEMALLOC;
217}
218
219static inline void set_obj_pfmemalloc(void **objp)
220{
221 *objp = (void *)((unsigned long)*objp | SLAB_OBJ_PFMEMALLOC);
222 return;
223}
224
225static inline void clear_obj_pfmemalloc(void **objp)
226{
227 *objp = (void *)((unsigned long)*objp & ~SLAB_OBJ_PFMEMALLOC);
228}
229
Andrew Mortona737b3e2006-03-22 00:08:11 -0800230/*
231 * bootstrap: The caches do not work without cpuarrays anymore, but the
232 * cpuarrays are allocated from the generic caches...
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 */
234#define BOOT_CPUCACHE_ENTRIES 1
235struct arraycache_init {
236 struct array_cache cache;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800237 void *entries[BOOT_CPUCACHE_ENTRIES];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238};
239
240/*
Christoph Lametere498be72005-09-09 13:03:32 -0700241 * Need this for bootstrapping a per node allocator.
242 */
Pekka Enberg556a1692008-01-25 08:20:51 +0200243#define NUM_INIT_LISTS (3 * MAX_NUMNODES)
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000244static struct kmem_cache_node __initdata init_kmem_cache_node[NUM_INIT_LISTS];
Christoph Lametere498be72005-09-09 13:03:32 -0700245#define CACHE_CACHE 0
Pekka Enberg556a1692008-01-25 08:20:51 +0200246#define SIZE_AC MAX_NUMNODES
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000247#define SIZE_NODE (2 * MAX_NUMNODES)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Christoph Lametered11d9e2006-06-30 01:55:45 -0700249static int drain_freelist(struct kmem_cache *cache,
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000250 struct kmem_cache_node *n, int tofree);
Christoph Lametered11d9e2006-06-30 01:55:45 -0700251static void free_block(struct kmem_cache *cachep, void **objpp, int len,
252 int node);
Pekka Enberg83b519e2009-06-10 19:40:04 +0300253static int enable_cpucache(struct kmem_cache *cachep, gfp_t gfp);
David Howells65f27f32006-11-22 14:55:48 +0000254static void cache_reap(struct work_struct *unused);
Christoph Lametered11d9e2006-06-30 01:55:45 -0700255
Ingo Molnare0a42722006-06-23 02:03:46 -0700256static int slab_early_init = 1;
257
Christoph Lametere3366012013-01-10 19:14:18 +0000258#define INDEX_AC kmalloc_index(sizeof(struct arraycache_init))
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000259#define INDEX_NODE kmalloc_index(sizeof(struct kmem_cache_node))
Christoph Lametere498be72005-09-09 13:03:32 -0700260
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000261static void kmem_cache_node_init(struct kmem_cache_node *parent)
Christoph Lametere498be72005-09-09 13:03:32 -0700262{
263 INIT_LIST_HEAD(&parent->slabs_full);
264 INIT_LIST_HEAD(&parent->slabs_partial);
265 INIT_LIST_HEAD(&parent->slabs_free);
266 parent->shared = NULL;
267 parent->alien = NULL;
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -0800268 parent->colour_next = 0;
Christoph Lametere498be72005-09-09 13:03:32 -0700269 spin_lock_init(&parent->list_lock);
270 parent->free_objects = 0;
271 parent->free_touched = 0;
272}
273
Andrew Mortona737b3e2006-03-22 00:08:11 -0800274#define MAKE_LIST(cachep, listp, slab, nodeid) \
275 do { \
276 INIT_LIST_HEAD(listp); \
Christoph Lameter6a673682013-01-10 19:14:19 +0000277 list_splice(&(cachep->node[nodeid]->slab), listp); \
Christoph Lametere498be72005-09-09 13:03:32 -0700278 } while (0)
279
Andrew Mortona737b3e2006-03-22 00:08:11 -0800280#define MAKE_ALL_LISTS(cachep, ptr, nodeid) \
281 do { \
Christoph Lametere498be72005-09-09 13:03:32 -0700282 MAKE_LIST((cachep), (&(ptr)->slabs_full), slabs_full, nodeid); \
283 MAKE_LIST((cachep), (&(ptr)->slabs_partial), slabs_partial, nodeid); \
284 MAKE_LIST((cachep), (&(ptr)->slabs_free), slabs_free, nodeid); \
285 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287#define CFLGS_OFF_SLAB (0x80000000UL)
288#define OFF_SLAB(x) ((x)->flags & CFLGS_OFF_SLAB)
289
290#define BATCHREFILL_LIMIT 16
Andrew Mortona737b3e2006-03-22 00:08:11 -0800291/*
292 * Optimization question: fewer reaps means less probability for unnessary
293 * cpucache drain/refill cycles.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 *
Adrian Bunkdc6f3f22005-11-08 16:44:08 +0100295 * OTOH the cpuarrays can contain lots of objects,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 * which could lock up otherwise freeable slabs.
297 */
298#define REAPTIMEOUT_CPUC (2*HZ)
299#define REAPTIMEOUT_LIST3 (4*HZ)
300
301#if STATS
302#define STATS_INC_ACTIVE(x) ((x)->num_active++)
303#define STATS_DEC_ACTIVE(x) ((x)->num_active--)
304#define STATS_INC_ALLOCED(x) ((x)->num_allocations++)
305#define STATS_INC_GROWN(x) ((x)->grown++)
Christoph Lametered11d9e2006-06-30 01:55:45 -0700306#define STATS_ADD_REAPED(x,y) ((x)->reaped += (y))
Andrew Mortona737b3e2006-03-22 00:08:11 -0800307#define STATS_SET_HIGH(x) \
308 do { \
309 if ((x)->num_active > (x)->high_mark) \
310 (x)->high_mark = (x)->num_active; \
311 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312#define STATS_INC_ERR(x) ((x)->errors++)
313#define STATS_INC_NODEALLOCS(x) ((x)->node_allocs++)
Christoph Lametere498be72005-09-09 13:03:32 -0700314#define STATS_INC_NODEFREES(x) ((x)->node_frees++)
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -0700315#define STATS_INC_ACOVERFLOW(x) ((x)->node_overflow++)
Andrew Mortona737b3e2006-03-22 00:08:11 -0800316#define STATS_SET_FREEABLE(x, i) \
317 do { \
318 if ((x)->max_freeable < i) \
319 (x)->max_freeable = i; \
320 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321#define STATS_INC_ALLOCHIT(x) atomic_inc(&(x)->allochit)
322#define STATS_INC_ALLOCMISS(x) atomic_inc(&(x)->allocmiss)
323#define STATS_INC_FREEHIT(x) atomic_inc(&(x)->freehit)
324#define STATS_INC_FREEMISS(x) atomic_inc(&(x)->freemiss)
325#else
326#define STATS_INC_ACTIVE(x) do { } while (0)
327#define STATS_DEC_ACTIVE(x) do { } while (0)
328#define STATS_INC_ALLOCED(x) do { } while (0)
329#define STATS_INC_GROWN(x) do { } while (0)
Andi Kleen4e60c862010-08-09 17:19:03 -0700330#define STATS_ADD_REAPED(x,y) do { (void)(y); } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331#define STATS_SET_HIGH(x) do { } while (0)
332#define STATS_INC_ERR(x) do { } while (0)
333#define STATS_INC_NODEALLOCS(x) do { } while (0)
Christoph Lametere498be72005-09-09 13:03:32 -0700334#define STATS_INC_NODEFREES(x) do { } while (0)
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -0700335#define STATS_INC_ACOVERFLOW(x) do { } while (0)
Andrew Mortona737b3e2006-03-22 00:08:11 -0800336#define STATS_SET_FREEABLE(x, i) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337#define STATS_INC_ALLOCHIT(x) do { } while (0)
338#define STATS_INC_ALLOCMISS(x) do { } while (0)
339#define STATS_INC_FREEHIT(x) do { } while (0)
340#define STATS_INC_FREEMISS(x) do { } while (0)
341#endif
342
343#if DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
Andrew Mortona737b3e2006-03-22 00:08:11 -0800345/*
346 * memory layout of objects:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 * 0 : objp
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800348 * 0 .. cachep->obj_offset - BYTES_PER_WORD - 1: padding. This ensures that
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349 * the end of an object is aligned with the end of the real
350 * allocation. Catches writes behind the end of the allocation.
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800351 * cachep->obj_offset - BYTES_PER_WORD .. cachep->obj_offset - 1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352 * redzone word.
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800353 * cachep->obj_offset: The real object.
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500354 * cachep->size - 2* BYTES_PER_WORD: redzone word [BYTES_PER_WORD long]
355 * cachep->size - 1* BYTES_PER_WORD: last caller address
Andrew Mortona737b3e2006-03-22 00:08:11 -0800356 * [BYTES_PER_WORD long]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800358static int obj_offset(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359{
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800360 return cachep->obj_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361}
362
David Woodhouseb46b8f12007-05-08 00:22:59 -0700363static unsigned long long *dbg_redzone1(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364{
365 BUG_ON(!(cachep->flags & SLAB_RED_ZONE));
David Woodhouseb46b8f12007-05-08 00:22:59 -0700366 return (unsigned long long*) (objp + obj_offset(cachep) -
367 sizeof(unsigned long long));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368}
369
David Woodhouseb46b8f12007-05-08 00:22:59 -0700370static unsigned long long *dbg_redzone2(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371{
372 BUG_ON(!(cachep->flags & SLAB_RED_ZONE));
373 if (cachep->flags & SLAB_STORE_USER)
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500374 return (unsigned long long *)(objp + cachep->size -
David Woodhouseb46b8f12007-05-08 00:22:59 -0700375 sizeof(unsigned long long) -
David Woodhouse87a927c2007-07-04 21:26:44 -0400376 REDZONE_ALIGN);
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500377 return (unsigned long long *) (objp + cachep->size -
David Woodhouseb46b8f12007-05-08 00:22:59 -0700378 sizeof(unsigned long long));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379}
380
Pekka Enberg343e0d72006-02-01 03:05:50 -0800381static void **dbg_userword(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382{
383 BUG_ON(!(cachep->flags & SLAB_STORE_USER));
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500384 return (void **)(objp + cachep->size - BYTES_PER_WORD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385}
386
387#else
388
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800389#define obj_offset(x) 0
David Woodhouseb46b8f12007-05-08 00:22:59 -0700390#define dbg_redzone1(cachep, objp) ({BUG(); (unsigned long long *)NULL;})
391#define dbg_redzone2(cachep, objp) ({BUG(); (unsigned long long *)NULL;})
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392#define dbg_userword(cachep, objp) ({BUG(); (void **)NULL;})
393
394#endif
395
396/*
David Rientjes3df1ccc2011-10-18 22:09:28 -0700397 * Do not go above this order unless 0 objects fit into the slab or
398 * overridden on the command line.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 */
David Rientjes543585c2011-10-18 22:09:24 -0700400#define SLAB_MAX_ORDER_HI 1
401#define SLAB_MAX_ORDER_LO 0
402static int slab_max_order = SLAB_MAX_ORDER_LO;
David Rientjes3df1ccc2011-10-18 22:09:28 -0700403static bool slab_max_order_set __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -0800405static inline struct kmem_cache *virt_to_cache(const void *obj)
406{
Christoph Lameterb49af682007-05-06 14:49:41 -0700407 struct page *page = virt_to_head_page(obj);
Christoph Lameter35026082012-06-13 10:24:56 -0500408 return page->slab_cache;
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -0800409}
410
411static inline struct slab *virt_to_slab(const void *obj)
412{
Christoph Lameterb49af682007-05-06 14:49:41 -0700413 struct page *page = virt_to_head_page(obj);
Christoph Lameter35026082012-06-13 10:24:56 -0500414
415 VM_BUG_ON(!PageSlab(page));
416 return page->slab_page;
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -0800417}
418
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800419static inline void *index_to_obj(struct kmem_cache *cache, struct slab *slab,
420 unsigned int idx)
421{
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500422 return slab->s_mem + cache->size * idx;
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800423}
424
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800425/*
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500426 * We want to avoid an expensive divide : (offset / cache->size)
427 * Using the fact that size is a constant for a particular cache,
428 * we can replace (offset / cache->size) by
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800429 * reciprocal_divide(offset, cache->reciprocal_buffer_size)
430 */
431static inline unsigned int obj_to_index(const struct kmem_cache *cache,
432 const struct slab *slab, void *obj)
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800433{
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800434 u32 offset = (obj - slab->s_mem);
435 return reciprocal_divide(offset, cache->reciprocal_buffer_size);
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800436}
437
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438static struct arraycache_init initarray_generic =
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800439 { {0, BOOT_CPUCACHE_ENTRIES, 1, 0} };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440
441/* internal cache of cache description objs */
Christoph Lameter9b030cb2012-09-05 00:20:33 +0000442static struct kmem_cache kmem_cache_boot = {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800443 .batchcount = 1,
444 .limit = BOOT_CPUCACHE_ENTRIES,
445 .shared = 1,
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500446 .size = sizeof(struct kmem_cache),
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800447 .name = "kmem_cache",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700448};
449
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -0700450#define BAD_ALIEN_MAGIC 0x01020304ul
451
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200452#ifdef CONFIG_LOCKDEP
453
454/*
455 * Slab sometimes uses the kmalloc slabs to store the slab headers
456 * for other slabs "off slab".
457 * The locking for this is tricky in that it nests within the locks
458 * of all other slabs in a few places; to deal with this special
459 * locking we put on-slab caches into a separate lock-class.
460 *
461 * We set lock class for alien array caches which are up during init.
462 * The lock annotation will be lost if all cpus of a node goes down and
463 * then comes back up during hotplug
464 */
465static struct lock_class_key on_slab_l3_key;
466static struct lock_class_key on_slab_alc_key;
467
Peter Zijlstra83835b32011-07-22 15:26:05 +0200468static struct lock_class_key debugobj_l3_key;
469static struct lock_class_key debugobj_alc_key;
470
471static void slab_set_lock_classes(struct kmem_cache *cachep,
472 struct lock_class_key *l3_key, struct lock_class_key *alc_key,
473 int q)
474{
475 struct array_cache **alc;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000476 struct kmem_cache_node *n;
Peter Zijlstra83835b32011-07-22 15:26:05 +0200477 int r;
478
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000479 n = cachep->node[q];
480 if (!n)
Peter Zijlstra83835b32011-07-22 15:26:05 +0200481 return;
482
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000483 lockdep_set_class(&n->list_lock, l3_key);
484 alc = n->alien;
Peter Zijlstra83835b32011-07-22 15:26:05 +0200485 /*
486 * FIXME: This check for BAD_ALIEN_MAGIC
487 * should go away when common slab code is taught to
488 * work even without alien caches.
489 * Currently, non NUMA code returns BAD_ALIEN_MAGIC
490 * for alloc_alien_cache,
491 */
492 if (!alc || (unsigned long)alc == BAD_ALIEN_MAGIC)
493 return;
494 for_each_node(r) {
495 if (alc[r])
496 lockdep_set_class(&alc[r]->lock, alc_key);
497 }
498}
499
500static void slab_set_debugobj_lock_classes_node(struct kmem_cache *cachep, int node)
501{
502 slab_set_lock_classes(cachep, &debugobj_l3_key, &debugobj_alc_key, node);
503}
504
505static void slab_set_debugobj_lock_classes(struct kmem_cache *cachep)
506{
507 int node;
508
509 for_each_online_node(node)
510 slab_set_debugobj_lock_classes_node(cachep, node);
511}
512
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200513static void init_node_lock_keys(int q)
514{
Christoph Lametere3366012013-01-10 19:14:18 +0000515 int i;
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200516
Christoph Lameter97d06602012-07-06 15:25:11 -0500517 if (slab_state < UP)
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200518 return;
519
Christoph Lameter0f8f8092013-07-02 12:12:10 -0700520 for (i = 1; i <= KMALLOC_SHIFT_HIGH; i++) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000521 struct kmem_cache_node *n;
Christoph Lametere3366012013-01-10 19:14:18 +0000522 struct kmem_cache *cache = kmalloc_caches[i];
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200523
Christoph Lametere3366012013-01-10 19:14:18 +0000524 if (!cache)
Pekka Enberg00afa752009-12-27 14:33:14 +0200525 continue;
Peter Zijlstra83835b32011-07-22 15:26:05 +0200526
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000527 n = cache->node[q];
528 if (!n || OFF_SLAB(cache))
Christoph Lametere3366012013-01-10 19:14:18 +0000529 continue;
530
531 slab_set_lock_classes(cache, &on_slab_l3_key,
Peter Zijlstra83835b32011-07-22 15:26:05 +0200532 &on_slab_alc_key, q);
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200533 }
534}
535
Glauber Costa6ccfb5b2012-12-18 14:22:31 -0800536static void on_slab_lock_classes_node(struct kmem_cache *cachep, int q)
537{
Christoph Lameter6a673682013-01-10 19:14:19 +0000538 if (!cachep->node[q])
Glauber Costa6ccfb5b2012-12-18 14:22:31 -0800539 return;
540
541 slab_set_lock_classes(cachep, &on_slab_l3_key,
542 &on_slab_alc_key, q);
543}
544
545static inline void on_slab_lock_classes(struct kmem_cache *cachep)
546{
547 int node;
548
549 VM_BUG_ON(OFF_SLAB(cachep));
550 for_each_node(node)
551 on_slab_lock_classes_node(cachep, node);
552}
553
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200554static inline void init_lock_keys(void)
555{
556 int node;
557
558 for_each_node(node)
559 init_node_lock_keys(node);
560}
561#else
562static void init_node_lock_keys(int q)
563{
564}
565
566static inline void init_lock_keys(void)
567{
568}
Peter Zijlstra83835b32011-07-22 15:26:05 +0200569
Glauber Costa6ccfb5b2012-12-18 14:22:31 -0800570static inline void on_slab_lock_classes(struct kmem_cache *cachep)
571{
572}
573
574static inline void on_slab_lock_classes_node(struct kmem_cache *cachep, int node)
575{
576}
577
Peter Zijlstra83835b32011-07-22 15:26:05 +0200578static void slab_set_debugobj_lock_classes_node(struct kmem_cache *cachep, int node)
579{
580}
581
582static void slab_set_debugobj_lock_classes(struct kmem_cache *cachep)
583{
584}
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200585#endif
586
Tejun Heo1871e522009-10-29 22:34:13 +0900587static DEFINE_PER_CPU(struct delayed_work, slab_reap_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588
Pekka Enberg343e0d72006-02-01 03:05:50 -0800589static inline struct array_cache *cpu_cache_get(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590{
591 return cachep->array[smp_processor_id()];
592}
593
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800594static size_t slab_mgmt_size(size_t nr_objs, size_t align)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595{
Joonsoo Kim16025172013-10-24 10:07:46 +0900596 return ALIGN(sizeof(struct slab)+nr_objs*sizeof(unsigned int), align);
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800597}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598
Andrew Mortona737b3e2006-03-22 00:08:11 -0800599/*
600 * Calculate the number of objects and left-over bytes for a given buffer size.
601 */
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800602static void cache_estimate(unsigned long gfporder, size_t buffer_size,
603 size_t align, int flags, size_t *left_over,
604 unsigned int *num)
605{
606 int nr_objs;
607 size_t mgmt_size;
608 size_t slab_size = PAGE_SIZE << gfporder;
609
610 /*
611 * The slab management structure can be either off the slab or
612 * on it. For the latter case, the memory allocated for a
613 * slab is used for:
614 *
615 * - The struct slab
Joonsoo Kim16025172013-10-24 10:07:46 +0900616 * - One unsigned int for each object
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800617 * - Padding to respect alignment of @align
618 * - @buffer_size bytes for each object
619 *
620 * If the slab management structure is off the slab, then the
621 * alignment will already be calculated into the size. Because
622 * the slabs are all pages aligned, the objects will be at the
623 * correct alignment when allocated.
624 */
625 if (flags & CFLGS_OFF_SLAB) {
626 mgmt_size = 0;
627 nr_objs = slab_size / buffer_size;
628
629 if (nr_objs > SLAB_LIMIT)
630 nr_objs = SLAB_LIMIT;
631 } else {
632 /*
633 * Ignore padding for the initial guess. The padding
634 * is at most @align-1 bytes, and @buffer_size is at
635 * least @align. In the worst case, this result will
636 * be one greater than the number of objects that fit
637 * into the memory allocation when taking the padding
638 * into account.
639 */
640 nr_objs = (slab_size - sizeof(struct slab)) /
Joonsoo Kim16025172013-10-24 10:07:46 +0900641 (buffer_size + sizeof(unsigned int));
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800642
643 /*
644 * This calculated number will be either the right
645 * amount, or one greater than what we want.
646 */
647 if (slab_mgmt_size(nr_objs, align) + nr_objs*buffer_size
648 > slab_size)
649 nr_objs--;
650
651 if (nr_objs > SLAB_LIMIT)
652 nr_objs = SLAB_LIMIT;
653
654 mgmt_size = slab_mgmt_size(nr_objs, align);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655 }
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800656 *num = nr_objs;
657 *left_over = slab_size - nr_objs*buffer_size - mgmt_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658}
659
Christoph Lameterf28510d2012-09-11 19:49:38 +0000660#if DEBUG
Harvey Harrisond40cee22008-04-30 00:55:07 -0700661#define slab_error(cachep, msg) __slab_error(__func__, cachep, msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
Andrew Mortona737b3e2006-03-22 00:08:11 -0800663static void __slab_error(const char *function, struct kmem_cache *cachep,
664 char *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665{
666 printk(KERN_ERR "slab error in %s(): cache `%s': %s\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800667 function, cachep->name, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 dump_stack();
Rusty Russell373d4d02013-01-21 17:17:39 +1030669 add_taint(TAINT_BAD_PAGE, LOCKDEP_NOW_UNRELIABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670}
Christoph Lameterf28510d2012-09-11 19:49:38 +0000671#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
Paul Menage3395ee02006-12-06 20:32:16 -0800673/*
674 * By default on NUMA we use alien caches to stage the freeing of
675 * objects allocated from other nodes. This causes massive memory
676 * inefficiencies when using fake NUMA setup to split memory into a
677 * large number of small nodes, so it can be disabled on the command
678 * line
679 */
680
681static int use_alien_caches __read_mostly = 1;
682static int __init noaliencache_setup(char *s)
683{
684 use_alien_caches = 0;
685 return 1;
686}
687__setup("noaliencache", noaliencache_setup);
688
David Rientjes3df1ccc2011-10-18 22:09:28 -0700689static int __init slab_max_order_setup(char *str)
690{
691 get_option(&str, &slab_max_order);
692 slab_max_order = slab_max_order < 0 ? 0 :
693 min(slab_max_order, MAX_ORDER - 1);
694 slab_max_order_set = true;
695
696 return 1;
697}
698__setup("slab_max_order=", slab_max_order_setup);
699
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800700#ifdef CONFIG_NUMA
701/*
702 * Special reaping functions for NUMA systems called from cache_reap().
703 * These take care of doing round robin flushing of alien caches (containing
704 * objects freed on different nodes from which they were allocated) and the
705 * flushing of remote pcps by calling drain_node_pages.
706 */
Tejun Heo1871e522009-10-29 22:34:13 +0900707static DEFINE_PER_CPU(unsigned long, slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800708
709static void init_reap_node(int cpu)
710{
711 int node;
712
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -0700713 node = next_node(cpu_to_mem(cpu), node_online_map);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800714 if (node == MAX_NUMNODES)
Paul Jackson442295c2006-03-22 00:09:11 -0800715 node = first_node(node_online_map);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800716
Tejun Heo1871e522009-10-29 22:34:13 +0900717 per_cpu(slab_reap_node, cpu) = node;
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800718}
719
720static void next_reap_node(void)
721{
Christoph Lameter909ea962010-12-08 16:22:55 +0100722 int node = __this_cpu_read(slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800723
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800724 node = next_node(node, node_online_map);
725 if (unlikely(node >= MAX_NUMNODES))
726 node = first_node(node_online_map);
Christoph Lameter909ea962010-12-08 16:22:55 +0100727 __this_cpu_write(slab_reap_node, node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800728}
729
730#else
731#define init_reap_node(cpu) do { } while (0)
732#define next_reap_node(void) do { } while (0)
733#endif
734
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735/*
736 * Initiate the reap timer running on the target CPU. We run at around 1 to 2Hz
737 * via the workqueue/eventd.
738 * Add the CPU number into the expiration time to minimize the possibility of
739 * the CPUs getting into lockstep and contending for the global cache chain
740 * lock.
741 */
Paul Gortmaker0db06282013-06-19 14:53:51 -0400742static void start_cpu_timer(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743{
Tejun Heo1871e522009-10-29 22:34:13 +0900744 struct delayed_work *reap_work = &per_cpu(slab_reap_work, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
746 /*
747 * When this gets called from do_initcalls via cpucache_init(),
748 * init_workqueues() has already run, so keventd will be setup
749 * at that time.
750 */
David Howells52bad642006-11-22 14:54:01 +0000751 if (keventd_up() && reap_work->work.func == NULL) {
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800752 init_reap_node(cpu);
Tejun Heo203b42f2012-08-21 13:18:23 -0700753 INIT_DEFERRABLE_WORK(reap_work, cache_reap);
Arjan van de Ven2b284212006-12-10 02:21:28 -0800754 schedule_delayed_work_on(cpu, reap_work,
755 __round_jiffies_relative(HZ, cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 }
757}
758
Christoph Lametere498be72005-09-09 13:03:32 -0700759static struct array_cache *alloc_arraycache(int node, int entries,
Pekka Enberg83b519e2009-06-10 19:40:04 +0300760 int batchcount, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761{
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800762 int memsize = sizeof(void *) * entries + sizeof(struct array_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763 struct array_cache *nc = NULL;
764
Pekka Enberg83b519e2009-06-10 19:40:04 +0300765 nc = kmalloc_node(memsize, gfp, node);
Catalin Marinasd5cff632009-06-11 13:22:40 +0100766 /*
767 * The array_cache structures contain pointers to free object.
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300768 * However, when such objects are allocated or transferred to another
Catalin Marinasd5cff632009-06-11 13:22:40 +0100769 * cache the pointers are not cleared and they could be counted as
770 * valid references during a kmemleak scan. Therefore, kmemleak must
771 * not scan such objects.
772 */
773 kmemleak_no_scan(nc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 if (nc) {
775 nc->avail = 0;
776 nc->limit = entries;
777 nc->batchcount = batchcount;
778 nc->touched = 0;
Christoph Lametere498be72005-09-09 13:03:32 -0700779 spin_lock_init(&nc->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780 }
781 return nc;
782}
783
Mel Gorman072bb0a2012-07-31 16:43:58 -0700784static inline bool is_slab_pfmemalloc(struct slab *slabp)
785{
786 struct page *page = virt_to_page(slabp->s_mem);
787
788 return PageSlabPfmemalloc(page);
789}
790
791/* Clears pfmemalloc_active if no slabs have pfmalloc set */
792static void recheck_pfmemalloc_active(struct kmem_cache *cachep,
793 struct array_cache *ac)
794{
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000795 struct kmem_cache_node *n = cachep->node[numa_mem_id()];
Mel Gorman072bb0a2012-07-31 16:43:58 -0700796 struct slab *slabp;
797 unsigned long flags;
798
799 if (!pfmemalloc_active)
800 return;
801
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000802 spin_lock_irqsave(&n->list_lock, flags);
803 list_for_each_entry(slabp, &n->slabs_full, list)
Mel Gorman072bb0a2012-07-31 16:43:58 -0700804 if (is_slab_pfmemalloc(slabp))
805 goto out;
806
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000807 list_for_each_entry(slabp, &n->slabs_partial, list)
Mel Gorman072bb0a2012-07-31 16:43:58 -0700808 if (is_slab_pfmemalloc(slabp))
809 goto out;
810
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000811 list_for_each_entry(slabp, &n->slabs_free, list)
Mel Gorman072bb0a2012-07-31 16:43:58 -0700812 if (is_slab_pfmemalloc(slabp))
813 goto out;
814
815 pfmemalloc_active = false;
816out:
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000817 spin_unlock_irqrestore(&n->list_lock, flags);
Mel Gorman072bb0a2012-07-31 16:43:58 -0700818}
819
Mel Gorman381760e2012-07-31 16:44:30 -0700820static void *__ac_get_obj(struct kmem_cache *cachep, struct array_cache *ac,
Mel Gorman072bb0a2012-07-31 16:43:58 -0700821 gfp_t flags, bool force_refill)
822{
823 int i;
824 void *objp = ac->entry[--ac->avail];
825
826 /* Ensure the caller is allowed to use objects from PFMEMALLOC slab */
827 if (unlikely(is_obj_pfmemalloc(objp))) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000828 struct kmem_cache_node *n;
Mel Gorman072bb0a2012-07-31 16:43:58 -0700829
830 if (gfp_pfmemalloc_allowed(flags)) {
831 clear_obj_pfmemalloc(&objp);
832 return objp;
833 }
834
835 /* The caller cannot use PFMEMALLOC objects, find another one */
Joonsoo Kimd014dc22012-09-17 14:09:06 -0700836 for (i = 0; i < ac->avail; i++) {
Mel Gorman072bb0a2012-07-31 16:43:58 -0700837 /* If a !PFMEMALLOC object is found, swap them */
838 if (!is_obj_pfmemalloc(ac->entry[i])) {
839 objp = ac->entry[i];
840 ac->entry[i] = ac->entry[ac->avail];
841 ac->entry[ac->avail] = objp;
842 return objp;
843 }
844 }
845
846 /*
847 * If there are empty slabs on the slabs_free list and we are
848 * being forced to refill the cache, mark this one !pfmemalloc.
849 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000850 n = cachep->node[numa_mem_id()];
851 if (!list_empty(&n->slabs_free) && force_refill) {
Mel Gorman072bb0a2012-07-31 16:43:58 -0700852 struct slab *slabp = virt_to_slab(objp);
Mel Gorman30c29be2012-09-17 14:09:03 -0700853 ClearPageSlabPfmemalloc(virt_to_head_page(slabp->s_mem));
Mel Gorman072bb0a2012-07-31 16:43:58 -0700854 clear_obj_pfmemalloc(&objp);
855 recheck_pfmemalloc_active(cachep, ac);
856 return objp;
857 }
858
859 /* No !PFMEMALLOC objects available */
860 ac->avail++;
861 objp = NULL;
862 }
863
864 return objp;
865}
866
Mel Gorman381760e2012-07-31 16:44:30 -0700867static inline void *ac_get_obj(struct kmem_cache *cachep,
868 struct array_cache *ac, gfp_t flags, bool force_refill)
869{
870 void *objp;
871
872 if (unlikely(sk_memalloc_socks()))
873 objp = __ac_get_obj(cachep, ac, flags, force_refill);
874 else
875 objp = ac->entry[--ac->avail];
876
877 return objp;
878}
879
880static void *__ac_put_obj(struct kmem_cache *cachep, struct array_cache *ac,
Mel Gorman072bb0a2012-07-31 16:43:58 -0700881 void *objp)
882{
883 if (unlikely(pfmemalloc_active)) {
884 /* Some pfmemalloc slabs exist, check if this is one */
Joonsoo Kim73293c22013-10-24 10:07:37 +0900885 struct slab *slabp = virt_to_slab(objp);
886 struct page *page = virt_to_head_page(slabp->s_mem);
Mel Gorman072bb0a2012-07-31 16:43:58 -0700887 if (PageSlabPfmemalloc(page))
888 set_obj_pfmemalloc(&objp);
889 }
890
Mel Gorman381760e2012-07-31 16:44:30 -0700891 return objp;
892}
893
894static inline void ac_put_obj(struct kmem_cache *cachep, struct array_cache *ac,
895 void *objp)
896{
897 if (unlikely(sk_memalloc_socks()))
898 objp = __ac_put_obj(cachep, ac, objp);
899
Mel Gorman072bb0a2012-07-31 16:43:58 -0700900 ac->entry[ac->avail++] = objp;
901}
902
Christoph Lameter3ded1752006-03-25 03:06:44 -0800903/*
904 * Transfer objects in one arraycache to another.
905 * Locking must be handled by the caller.
906 *
907 * Return the number of entries transferred.
908 */
909static int transfer_objects(struct array_cache *to,
910 struct array_cache *from, unsigned int max)
911{
912 /* Figure out how many entries to transfer */
Hagen Paul Pfeifer732eacc2010-10-26 14:22:23 -0700913 int nr = min3(from->avail, max, to->limit - to->avail);
Christoph Lameter3ded1752006-03-25 03:06:44 -0800914
915 if (!nr)
916 return 0;
917
918 memcpy(to->entry + to->avail, from->entry + from->avail -nr,
919 sizeof(void *) *nr);
920
921 from->avail -= nr;
922 to->avail += nr;
Christoph Lameter3ded1752006-03-25 03:06:44 -0800923 return nr;
924}
925
Christoph Lameter765c4502006-09-27 01:50:08 -0700926#ifndef CONFIG_NUMA
927
928#define drain_alien_cache(cachep, alien) do { } while (0)
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000929#define reap_alien(cachep, n) do { } while (0)
Christoph Lameter765c4502006-09-27 01:50:08 -0700930
Pekka Enberg83b519e2009-06-10 19:40:04 +0300931static inline struct array_cache **alloc_alien_cache(int node, int limit, gfp_t gfp)
Christoph Lameter765c4502006-09-27 01:50:08 -0700932{
933 return (struct array_cache **)BAD_ALIEN_MAGIC;
934}
935
936static inline void free_alien_cache(struct array_cache **ac_ptr)
937{
938}
939
940static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
941{
942 return 0;
943}
944
945static inline void *alternate_node_alloc(struct kmem_cache *cachep,
946 gfp_t flags)
947{
948 return NULL;
949}
950
Christoph Hellwig8b98c162006-12-06 20:32:30 -0800951static inline void *____cache_alloc_node(struct kmem_cache *cachep,
Christoph Lameter765c4502006-09-27 01:50:08 -0700952 gfp_t flags, int nodeid)
953{
954 return NULL;
955}
956
957#else /* CONFIG_NUMA */
958
Christoph Hellwig8b98c162006-12-06 20:32:30 -0800959static void *____cache_alloc_node(struct kmem_cache *, gfp_t, int);
Paul Jacksonc61afb12006-03-24 03:16:08 -0800960static void *alternate_node_alloc(struct kmem_cache *, gfp_t);
Christoph Lameterdc85da12006-01-18 17:42:36 -0800961
Pekka Enberg83b519e2009-06-10 19:40:04 +0300962static struct array_cache **alloc_alien_cache(int node, int limit, gfp_t gfp)
Christoph Lametere498be72005-09-09 13:03:32 -0700963{
964 struct array_cache **ac_ptr;
Christoph Lameter8ef82862007-02-20 13:57:52 -0800965 int memsize = sizeof(void *) * nr_node_ids;
Christoph Lametere498be72005-09-09 13:03:32 -0700966 int i;
967
968 if (limit > 1)
969 limit = 12;
Haicheng Lif3186a92010-01-06 15:25:23 +0800970 ac_ptr = kzalloc_node(memsize, gfp, node);
Christoph Lametere498be72005-09-09 13:03:32 -0700971 if (ac_ptr) {
972 for_each_node(i) {
Haicheng Lif3186a92010-01-06 15:25:23 +0800973 if (i == node || !node_online(i))
Christoph Lametere498be72005-09-09 13:03:32 -0700974 continue;
Pekka Enberg83b519e2009-06-10 19:40:04 +0300975 ac_ptr[i] = alloc_arraycache(node, limit, 0xbaadf00d, gfp);
Christoph Lametere498be72005-09-09 13:03:32 -0700976 if (!ac_ptr[i]) {
Akinobu Mitacc550de2007-11-14 16:58:35 -0800977 for (i--; i >= 0; i--)
Christoph Lametere498be72005-09-09 13:03:32 -0700978 kfree(ac_ptr[i]);
979 kfree(ac_ptr);
980 return NULL;
981 }
982 }
983 }
984 return ac_ptr;
985}
986
Pekka Enberg5295a742006-02-01 03:05:48 -0800987static void free_alien_cache(struct array_cache **ac_ptr)
Christoph Lametere498be72005-09-09 13:03:32 -0700988{
989 int i;
990
991 if (!ac_ptr)
992 return;
Christoph Lametere498be72005-09-09 13:03:32 -0700993 for_each_node(i)
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800994 kfree(ac_ptr[i]);
Christoph Lametere498be72005-09-09 13:03:32 -0700995 kfree(ac_ptr);
996}
997
Pekka Enberg343e0d72006-02-01 03:05:50 -0800998static void __drain_alien_cache(struct kmem_cache *cachep,
Pekka Enberg5295a742006-02-01 03:05:48 -0800999 struct array_cache *ac, int node)
Christoph Lametere498be72005-09-09 13:03:32 -07001000{
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001001 struct kmem_cache_node *n = cachep->node[node];
Christoph Lametere498be72005-09-09 13:03:32 -07001002
1003 if (ac->avail) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001004 spin_lock(&n->list_lock);
Christoph Lametere00946f2006-03-25 03:06:45 -08001005 /*
1006 * Stuff objects into the remote nodes shared array first.
1007 * That way we could avoid the overhead of putting the objects
1008 * into the free lists and getting them back later.
1009 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001010 if (n->shared)
1011 transfer_objects(n->shared, ac, ac->limit);
Christoph Lametere00946f2006-03-25 03:06:45 -08001012
Christoph Lameterff694162005-09-22 21:44:02 -07001013 free_block(cachep, ac->entry, ac->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -07001014 ac->avail = 0;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001015 spin_unlock(&n->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07001016 }
1017}
1018
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001019/*
1020 * Called from cache_reap() to regularly drain alien caches round robin.
1021 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001022static void reap_alien(struct kmem_cache *cachep, struct kmem_cache_node *n)
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001023{
Christoph Lameter909ea962010-12-08 16:22:55 +01001024 int node = __this_cpu_read(slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001025
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001026 if (n->alien) {
1027 struct array_cache *ac = n->alien[node];
Christoph Lametere00946f2006-03-25 03:06:45 -08001028
1029 if (ac && ac->avail && spin_trylock_irq(&ac->lock)) {
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001030 __drain_alien_cache(cachep, ac, node);
1031 spin_unlock_irq(&ac->lock);
1032 }
1033 }
1034}
1035
Andrew Mortona737b3e2006-03-22 00:08:11 -08001036static void drain_alien_cache(struct kmem_cache *cachep,
1037 struct array_cache **alien)
Christoph Lametere498be72005-09-09 13:03:32 -07001038{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001039 int i = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07001040 struct array_cache *ac;
1041 unsigned long flags;
1042
1043 for_each_online_node(i) {
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001044 ac = alien[i];
Christoph Lametere498be72005-09-09 13:03:32 -07001045 if (ac) {
1046 spin_lock_irqsave(&ac->lock, flags);
1047 __drain_alien_cache(cachep, ac, i);
1048 spin_unlock_irqrestore(&ac->lock, flags);
1049 }
1050 }
1051}
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001052
Ingo Molnar873623d2006-07-13 14:44:38 +02001053static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001054{
Joonsoo Kim1ea991b2013-10-24 10:07:40 +09001055 int nodeid = page_to_nid(virt_to_page(objp));
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001056 struct kmem_cache_node *n;
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001057 struct array_cache *alien = NULL;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001058 int node;
1059
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07001060 node = numa_mem_id();
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001061
1062 /*
1063 * Make sure we are not freeing a object from another node to the array
1064 * cache on this cpu.
1065 */
Joonsoo Kim1ea991b2013-10-24 10:07:40 +09001066 if (likely(nodeid == node))
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001067 return 0;
1068
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001069 n = cachep->node[node];
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001070 STATS_INC_NODEFREES(cachep);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001071 if (n->alien && n->alien[nodeid]) {
1072 alien = n->alien[nodeid];
Ingo Molnar873623d2006-07-13 14:44:38 +02001073 spin_lock(&alien->lock);
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001074 if (unlikely(alien->avail == alien->limit)) {
1075 STATS_INC_ACOVERFLOW(cachep);
1076 __drain_alien_cache(cachep, alien, nodeid);
1077 }
Mel Gorman072bb0a2012-07-31 16:43:58 -07001078 ac_put_obj(cachep, alien, objp);
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001079 spin_unlock(&alien->lock);
1080 } else {
Christoph Lameter6a673682013-01-10 19:14:19 +00001081 spin_lock(&(cachep->node[nodeid])->list_lock);
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001082 free_block(cachep, &objp, 1, nodeid);
Christoph Lameter6a673682013-01-10 19:14:19 +00001083 spin_unlock(&(cachep->node[nodeid])->list_lock);
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001084 }
1085 return 1;
1086}
Christoph Lametere498be72005-09-09 13:03:32 -07001087#endif
1088
David Rientjes8f9f8d92010-03-27 19:40:47 -07001089/*
Christoph Lameter6a673682013-01-10 19:14:19 +00001090 * Allocates and initializes node for a node on each slab cache, used for
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001091 * either memory or cpu hotplug. If memory is being hot-added, the kmem_cache_node
David Rientjes8f9f8d92010-03-27 19:40:47 -07001092 * will be allocated off-node since memory is not yet online for the new node.
Christoph Lameter6a673682013-01-10 19:14:19 +00001093 * When hotplugging memory or a cpu, existing node are not replaced if
David Rientjes8f9f8d92010-03-27 19:40:47 -07001094 * already in use.
1095 *
Christoph Lameter18004c52012-07-06 15:25:12 -05001096 * Must hold slab_mutex.
David Rientjes8f9f8d92010-03-27 19:40:47 -07001097 */
Christoph Lameter6a673682013-01-10 19:14:19 +00001098static int init_cache_node_node(int node)
David Rientjes8f9f8d92010-03-27 19:40:47 -07001099{
1100 struct kmem_cache *cachep;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001101 struct kmem_cache_node *n;
Christoph Lameter6744f082013-01-10 19:12:17 +00001102 const int memsize = sizeof(struct kmem_cache_node);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001103
Christoph Lameter18004c52012-07-06 15:25:12 -05001104 list_for_each_entry(cachep, &slab_caches, list) {
David Rientjes8f9f8d92010-03-27 19:40:47 -07001105 /*
1106 * Set up the size64 kmemlist for cpu before we can
1107 * begin anything. Make sure some other cpu on this
1108 * node has not already allocated this
1109 */
Christoph Lameter6a673682013-01-10 19:14:19 +00001110 if (!cachep->node[node]) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001111 n = kmalloc_node(memsize, GFP_KERNEL, node);
1112 if (!n)
David Rientjes8f9f8d92010-03-27 19:40:47 -07001113 return -ENOMEM;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001114 kmem_cache_node_init(n);
1115 n->next_reap = jiffies + REAPTIMEOUT_LIST3 +
David Rientjes8f9f8d92010-03-27 19:40:47 -07001116 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
1117
1118 /*
1119 * The l3s don't come and go as CPUs come and
Christoph Lameter18004c52012-07-06 15:25:12 -05001120 * go. slab_mutex is sufficient
David Rientjes8f9f8d92010-03-27 19:40:47 -07001121 * protection here.
1122 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001123 cachep->node[node] = n;
David Rientjes8f9f8d92010-03-27 19:40:47 -07001124 }
1125
Christoph Lameter6a673682013-01-10 19:14:19 +00001126 spin_lock_irq(&cachep->node[node]->list_lock);
1127 cachep->node[node]->free_limit =
David Rientjes8f9f8d92010-03-27 19:40:47 -07001128 (1 + nr_cpus_node(node)) *
1129 cachep->batchcount + cachep->num;
Christoph Lameter6a673682013-01-10 19:14:19 +00001130 spin_unlock_irq(&cachep->node[node]->list_lock);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001131 }
1132 return 0;
1133}
1134
Wanpeng Li0fa81032013-07-04 08:33:22 +08001135static inline int slabs_tofree(struct kmem_cache *cachep,
1136 struct kmem_cache_node *n)
1137{
1138 return (n->free_objects + cachep->num - 1) / cachep->num;
1139}
1140
Paul Gortmaker0db06282013-06-19 14:53:51 -04001141static void cpuup_canceled(long cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142{
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001143 struct kmem_cache *cachep;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001144 struct kmem_cache_node *n = NULL;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07001145 int node = cpu_to_mem(cpu);
Rusty Russella70f7302009-03-13 14:49:46 +10301146 const struct cpumask *mask = cpumask_of_node(node);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001147
Christoph Lameter18004c52012-07-06 15:25:12 -05001148 list_for_each_entry(cachep, &slab_caches, list) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001149 struct array_cache *nc;
1150 struct array_cache *shared;
1151 struct array_cache **alien;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001152
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001153 /* cpu is dead; no one can alloc from it. */
1154 nc = cachep->array[cpu];
1155 cachep->array[cpu] = NULL;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001156 n = cachep->node[node];
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001157
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001158 if (!n)
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001159 goto free_array_cache;
1160
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001161 spin_lock_irq(&n->list_lock);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001162
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001163 /* Free limit for this kmem_cache_node */
1164 n->free_limit -= cachep->batchcount;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001165 if (nc)
1166 free_block(cachep, nc->entry, nc->avail, node);
1167
Rusty Russell58463c12009-12-17 11:43:12 -06001168 if (!cpumask_empty(mask)) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001169 spin_unlock_irq(&n->list_lock);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001170 goto free_array_cache;
1171 }
1172
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001173 shared = n->shared;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001174 if (shared) {
1175 free_block(cachep, shared->entry,
1176 shared->avail, node);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001177 n->shared = NULL;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001178 }
1179
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001180 alien = n->alien;
1181 n->alien = NULL;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001182
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001183 spin_unlock_irq(&n->list_lock);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001184
1185 kfree(shared);
1186 if (alien) {
1187 drain_alien_cache(cachep, alien);
1188 free_alien_cache(alien);
1189 }
1190free_array_cache:
1191 kfree(nc);
1192 }
1193 /*
1194 * In the previous loop, all the objects were freed to
1195 * the respective cache's slabs, now we can go ahead and
1196 * shrink each nodelist to its limit.
1197 */
Christoph Lameter18004c52012-07-06 15:25:12 -05001198 list_for_each_entry(cachep, &slab_caches, list) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001199 n = cachep->node[node];
1200 if (!n)
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001201 continue;
Wanpeng Li0fa81032013-07-04 08:33:22 +08001202 drain_freelist(cachep, n, slabs_tofree(cachep, n));
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001203 }
1204}
1205
Paul Gortmaker0db06282013-06-19 14:53:51 -04001206static int cpuup_prepare(long cpu)
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001207{
Pekka Enberg343e0d72006-02-01 03:05:50 -08001208 struct kmem_cache *cachep;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001209 struct kmem_cache_node *n = NULL;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07001210 int node = cpu_to_mem(cpu);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001211 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001213 /*
1214 * We need to do this right in the beginning since
1215 * alloc_arraycache's are going to use this list.
1216 * kmalloc_node allows us to add the slab to the right
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001217 * kmem_cache_node and not this cpu's kmem_cache_node
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001218 */
Christoph Lameter6a673682013-01-10 19:14:19 +00001219 err = init_cache_node_node(node);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001220 if (err < 0)
1221 goto bad;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001222
1223 /*
1224 * Now we can go ahead with allocating the shared arrays and
1225 * array caches
1226 */
Christoph Lameter18004c52012-07-06 15:25:12 -05001227 list_for_each_entry(cachep, &slab_caches, list) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001228 struct array_cache *nc;
1229 struct array_cache *shared = NULL;
1230 struct array_cache **alien = NULL;
1231
1232 nc = alloc_arraycache(node, cachep->limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03001233 cachep->batchcount, GFP_KERNEL);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001234 if (!nc)
1235 goto bad;
1236 if (cachep->shared) {
1237 shared = alloc_arraycache(node,
1238 cachep->shared * cachep->batchcount,
Pekka Enberg83b519e2009-06-10 19:40:04 +03001239 0xbaadf00d, GFP_KERNEL);
Akinobu Mita12d00f62007-10-18 03:05:11 -07001240 if (!shared) {
1241 kfree(nc);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001242 goto bad;
Akinobu Mita12d00f62007-10-18 03:05:11 -07001243 }
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001244 }
1245 if (use_alien_caches) {
Pekka Enberg83b519e2009-06-10 19:40:04 +03001246 alien = alloc_alien_cache(node, cachep->limit, GFP_KERNEL);
Akinobu Mita12d00f62007-10-18 03:05:11 -07001247 if (!alien) {
1248 kfree(shared);
1249 kfree(nc);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001250 goto bad;
Akinobu Mita12d00f62007-10-18 03:05:11 -07001251 }
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001252 }
1253 cachep->array[cpu] = nc;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001254 n = cachep->node[node];
1255 BUG_ON(!n);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001256
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001257 spin_lock_irq(&n->list_lock);
1258 if (!n->shared) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001259 /*
1260 * We are serialised from CPU_DEAD or
1261 * CPU_UP_CANCELLED by the cpucontrol lock
1262 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001263 n->shared = shared;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001264 shared = NULL;
1265 }
1266#ifdef CONFIG_NUMA
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001267 if (!n->alien) {
1268 n->alien = alien;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001269 alien = NULL;
1270 }
1271#endif
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001272 spin_unlock_irq(&n->list_lock);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001273 kfree(shared);
1274 free_alien_cache(alien);
Peter Zijlstra83835b32011-07-22 15:26:05 +02001275 if (cachep->flags & SLAB_DEBUG_OBJECTS)
1276 slab_set_debugobj_lock_classes_node(cachep, node);
Glauber Costa6ccfb5b2012-12-18 14:22:31 -08001277 else if (!OFF_SLAB(cachep) &&
1278 !(cachep->flags & SLAB_DESTROY_BY_RCU))
1279 on_slab_lock_classes_node(cachep, node);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001280 }
Pekka Enbergce79ddc2009-11-23 22:01:15 +02001281 init_node_lock_keys(node);
1282
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001283 return 0;
1284bad:
Akinobu Mita12d00f62007-10-18 03:05:11 -07001285 cpuup_canceled(cpu);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001286 return -ENOMEM;
1287}
1288
Paul Gortmaker0db06282013-06-19 14:53:51 -04001289static int cpuup_callback(struct notifier_block *nfb,
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001290 unsigned long action, void *hcpu)
1291{
1292 long cpu = (long)hcpu;
1293 int err = 0;
1294
Linus Torvalds1da177e2005-04-16 15:20:36 -07001295 switch (action) {
Heiko Carstens38c3bd92007-05-09 02:34:05 -07001296 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001297 case CPU_UP_PREPARE_FROZEN:
Christoph Lameter18004c52012-07-06 15:25:12 -05001298 mutex_lock(&slab_mutex);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001299 err = cpuup_prepare(cpu);
Christoph Lameter18004c52012-07-06 15:25:12 -05001300 mutex_unlock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301 break;
1302 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001303 case CPU_ONLINE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 start_cpu_timer(cpu);
1305 break;
1306#ifdef CONFIG_HOTPLUG_CPU
Christoph Lameter5830c592007-05-09 02:34:22 -07001307 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001308 case CPU_DOWN_PREPARE_FROZEN:
Christoph Lameter5830c592007-05-09 02:34:22 -07001309 /*
Christoph Lameter18004c52012-07-06 15:25:12 -05001310 * Shutdown cache reaper. Note that the slab_mutex is
Christoph Lameter5830c592007-05-09 02:34:22 -07001311 * held so that if cache_reap() is invoked it cannot do
1312 * anything expensive but will only modify reap_work
1313 * and reschedule the timer.
1314 */
Tejun Heoafe2c512010-12-14 16:21:17 +01001315 cancel_delayed_work_sync(&per_cpu(slab_reap_work, cpu));
Christoph Lameter5830c592007-05-09 02:34:22 -07001316 /* Now the cache_reaper is guaranteed to be not running. */
Tejun Heo1871e522009-10-29 22:34:13 +09001317 per_cpu(slab_reap_work, cpu).work.func = NULL;
Christoph Lameter5830c592007-05-09 02:34:22 -07001318 break;
1319 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001320 case CPU_DOWN_FAILED_FROZEN:
Christoph Lameter5830c592007-05-09 02:34:22 -07001321 start_cpu_timer(cpu);
1322 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001324 case CPU_DEAD_FROZEN:
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001325 /*
1326 * Even if all the cpus of a node are down, we don't free the
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001327 * kmem_cache_node of any cache. This to avoid a race between
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001328 * cpu_down, and a kmalloc allocation from another cpu for
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001329 * memory from the node of the cpu going down. The node
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001330 * structure is usually allocated from kmem_cache_create() and
1331 * gets destroyed at kmem_cache_destroy().
1332 */
Simon Arlott183ff222007-10-20 01:27:18 +02001333 /* fall through */
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08001334#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001335 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001336 case CPU_UP_CANCELED_FROZEN:
Christoph Lameter18004c52012-07-06 15:25:12 -05001337 mutex_lock(&slab_mutex);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001338 cpuup_canceled(cpu);
Christoph Lameter18004c52012-07-06 15:25:12 -05001339 mutex_unlock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 }
Akinobu Mitaeac40682010-05-26 14:43:32 -07001342 return notifier_from_errno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343}
1344
Paul Gortmaker0db06282013-06-19 14:53:51 -04001345static struct notifier_block cpucache_notifier = {
Chandra Seetharaman74b85f32006-06-27 02:54:09 -07001346 &cpuup_callback, NULL, 0
1347};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348
David Rientjes8f9f8d92010-03-27 19:40:47 -07001349#if defined(CONFIG_NUMA) && defined(CONFIG_MEMORY_HOTPLUG)
1350/*
1351 * Drains freelist for a node on each slab cache, used for memory hot-remove.
1352 * Returns -EBUSY if all objects cannot be drained so that the node is not
1353 * removed.
1354 *
Christoph Lameter18004c52012-07-06 15:25:12 -05001355 * Must hold slab_mutex.
David Rientjes8f9f8d92010-03-27 19:40:47 -07001356 */
Christoph Lameter6a673682013-01-10 19:14:19 +00001357static int __meminit drain_cache_node_node(int node)
David Rientjes8f9f8d92010-03-27 19:40:47 -07001358{
1359 struct kmem_cache *cachep;
1360 int ret = 0;
1361
Christoph Lameter18004c52012-07-06 15:25:12 -05001362 list_for_each_entry(cachep, &slab_caches, list) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001363 struct kmem_cache_node *n;
David Rientjes8f9f8d92010-03-27 19:40:47 -07001364
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001365 n = cachep->node[node];
1366 if (!n)
David Rientjes8f9f8d92010-03-27 19:40:47 -07001367 continue;
1368
Wanpeng Li0fa81032013-07-04 08:33:22 +08001369 drain_freelist(cachep, n, slabs_tofree(cachep, n));
David Rientjes8f9f8d92010-03-27 19:40:47 -07001370
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001371 if (!list_empty(&n->slabs_full) ||
1372 !list_empty(&n->slabs_partial)) {
David Rientjes8f9f8d92010-03-27 19:40:47 -07001373 ret = -EBUSY;
1374 break;
1375 }
1376 }
1377 return ret;
1378}
1379
1380static int __meminit slab_memory_callback(struct notifier_block *self,
1381 unsigned long action, void *arg)
1382{
1383 struct memory_notify *mnb = arg;
1384 int ret = 0;
1385 int nid;
1386
1387 nid = mnb->status_change_nid;
1388 if (nid < 0)
1389 goto out;
1390
1391 switch (action) {
1392 case MEM_GOING_ONLINE:
Christoph Lameter18004c52012-07-06 15:25:12 -05001393 mutex_lock(&slab_mutex);
Christoph Lameter6a673682013-01-10 19:14:19 +00001394 ret = init_cache_node_node(nid);
Christoph Lameter18004c52012-07-06 15:25:12 -05001395 mutex_unlock(&slab_mutex);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001396 break;
1397 case MEM_GOING_OFFLINE:
Christoph Lameter18004c52012-07-06 15:25:12 -05001398 mutex_lock(&slab_mutex);
Christoph Lameter6a673682013-01-10 19:14:19 +00001399 ret = drain_cache_node_node(nid);
Christoph Lameter18004c52012-07-06 15:25:12 -05001400 mutex_unlock(&slab_mutex);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001401 break;
1402 case MEM_ONLINE:
1403 case MEM_OFFLINE:
1404 case MEM_CANCEL_ONLINE:
1405 case MEM_CANCEL_OFFLINE:
1406 break;
1407 }
1408out:
Prarit Bhargava5fda1bd2011-03-22 16:30:49 -07001409 return notifier_from_errno(ret);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001410}
1411#endif /* CONFIG_NUMA && CONFIG_MEMORY_HOTPLUG */
1412
Christoph Lametere498be72005-09-09 13:03:32 -07001413/*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001414 * swap the static kmem_cache_node with kmalloced memory
Christoph Lametere498be72005-09-09 13:03:32 -07001415 */
Christoph Lameter6744f082013-01-10 19:12:17 +00001416static void __init init_list(struct kmem_cache *cachep, struct kmem_cache_node *list,
David Rientjes8f9f8d92010-03-27 19:40:47 -07001417 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07001418{
Christoph Lameter6744f082013-01-10 19:12:17 +00001419 struct kmem_cache_node *ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001420
Christoph Lameter6744f082013-01-10 19:12:17 +00001421 ptr = kmalloc_node(sizeof(struct kmem_cache_node), GFP_NOWAIT, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07001422 BUG_ON(!ptr);
1423
Christoph Lameter6744f082013-01-10 19:12:17 +00001424 memcpy(ptr, list, sizeof(struct kmem_cache_node));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001425 /*
1426 * Do not assume that spinlocks can be initialized via memcpy:
1427 */
1428 spin_lock_init(&ptr->list_lock);
1429
Christoph Lametere498be72005-09-09 13:03:32 -07001430 MAKE_ALL_LISTS(cachep, ptr, nodeid);
Christoph Lameter6a673682013-01-10 19:14:19 +00001431 cachep->node[nodeid] = ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001432}
1433
Andrew Mortona737b3e2006-03-22 00:08:11 -08001434/*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001435 * For setting up all the kmem_cache_node for cache whose buffer_size is same as
1436 * size of kmem_cache_node.
Pekka Enberg556a1692008-01-25 08:20:51 +02001437 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001438static void __init set_up_node(struct kmem_cache *cachep, int index)
Pekka Enberg556a1692008-01-25 08:20:51 +02001439{
1440 int node;
1441
1442 for_each_online_node(node) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001443 cachep->node[node] = &init_kmem_cache_node[index + node];
Christoph Lameter6a673682013-01-10 19:14:19 +00001444 cachep->node[node]->next_reap = jiffies +
Pekka Enberg556a1692008-01-25 08:20:51 +02001445 REAPTIMEOUT_LIST3 +
1446 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
1447 }
1448}
1449
1450/*
Christoph Lameter3c583462012-11-28 16:23:01 +00001451 * The memory after the last cpu cache pointer is used for the
Christoph Lameter6a673682013-01-10 19:14:19 +00001452 * the node pointer.
Christoph Lameter3c583462012-11-28 16:23:01 +00001453 */
Christoph Lameter6a673682013-01-10 19:14:19 +00001454static void setup_node_pointer(struct kmem_cache *cachep)
Christoph Lameter3c583462012-11-28 16:23:01 +00001455{
Christoph Lameter6a673682013-01-10 19:14:19 +00001456 cachep->node = (struct kmem_cache_node **)&cachep->array[nr_cpu_ids];
Christoph Lameter3c583462012-11-28 16:23:01 +00001457}
1458
1459/*
Andrew Mortona737b3e2006-03-22 00:08:11 -08001460 * Initialisation. Called after the page allocator have been initialised and
1461 * before smp_init().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 */
1463void __init kmem_cache_init(void)
1464{
Christoph Lametere498be72005-09-09 13:03:32 -07001465 int i;
1466
Joonsoo Kim68126702013-10-24 10:07:42 +09001467 BUILD_BUG_ON(sizeof(((struct page *)NULL)->lru) <
1468 sizeof(struct rcu_head));
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001469 kmem_cache = &kmem_cache_boot;
Christoph Lameter6a673682013-01-10 19:14:19 +00001470 setup_node_pointer(kmem_cache);
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001471
Mel Gormanb6e68bc2009-06-16 15:32:16 -07001472 if (num_possible_nodes() == 1)
Siddha, Suresh B62918a02007-05-02 19:27:18 +02001473 use_alien_caches = 0;
1474
Christoph Lameter3c583462012-11-28 16:23:01 +00001475 for (i = 0; i < NUM_INIT_LISTS; i++)
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001476 kmem_cache_node_init(&init_kmem_cache_node[i]);
Christoph Lameter3c583462012-11-28 16:23:01 +00001477
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001478 set_up_node(kmem_cache, CACHE_CACHE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479
1480 /*
1481 * Fragmentation resistance on low memory - only use bigger
David Rientjes3df1ccc2011-10-18 22:09:28 -07001482 * page orders on machines with more than 32MB of memory if
1483 * not overridden on the command line.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 */
David Rientjes3df1ccc2011-10-18 22:09:28 -07001485 if (!slab_max_order_set && totalram_pages > (32 << 20) >> PAGE_SHIFT)
David Rientjes543585c2011-10-18 22:09:24 -07001486 slab_max_order = SLAB_MAX_ORDER_HI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487
Linus Torvalds1da177e2005-04-16 15:20:36 -07001488 /* Bootstrap is tricky, because several objects are allocated
1489 * from caches that do not exist yet:
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001490 * 1) initialize the kmem_cache cache: it contains the struct
1491 * kmem_cache structures of all caches, except kmem_cache itself:
1492 * kmem_cache is statically allocated.
Christoph Lametere498be72005-09-09 13:03:32 -07001493 * Initially an __init data area is used for the head array and the
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001494 * kmem_cache_node structures, it's replaced with a kmalloc allocated
Christoph Lametere498be72005-09-09 13:03:32 -07001495 * array at the end of the bootstrap.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496 * 2) Create the first kmalloc cache.
Pekka Enberg343e0d72006-02-01 03:05:50 -08001497 * The struct kmem_cache for the new cache is allocated normally.
Christoph Lametere498be72005-09-09 13:03:32 -07001498 * An __init data area is used for the head array.
1499 * 3) Create the remaining kmalloc caches, with minimally sized
1500 * head arrays.
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001501 * 4) Replace the __init data head arrays for kmem_cache and the first
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 * kmalloc cache with kmalloc allocated arrays.
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001503 * 5) Replace the __init data for kmem_cache_node for kmem_cache and
Christoph Lametere498be72005-09-09 13:03:32 -07001504 * the other cache's with kmalloc allocated memory.
1505 * 6) Resize the head arrays of the kmalloc caches to their final sizes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001506 */
1507
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001508 /* 1) create the kmem_cache */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509
Eric Dumazet8da34302007-05-06 14:49:29 -07001510 /*
Eric Dumazetb56efcf2011-07-20 19:04:23 +02001511 * struct kmem_cache size depends on nr_node_ids & nr_cpu_ids
Eric Dumazet8da34302007-05-06 14:49:29 -07001512 */
Christoph Lameter2f9baa92012-11-28 16:23:09 +00001513 create_boot_cache(kmem_cache, "kmem_cache",
1514 offsetof(struct kmem_cache, array[nr_cpu_ids]) +
Christoph Lameter6744f082013-01-10 19:12:17 +00001515 nr_node_ids * sizeof(struct kmem_cache_node *),
Christoph Lameter2f9baa92012-11-28 16:23:09 +00001516 SLAB_HWCACHE_ALIGN);
1517 list_add(&kmem_cache->list, &slab_caches);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518
1519 /* 2+3) create the kmalloc caches */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
Andrew Mortona737b3e2006-03-22 00:08:11 -08001521 /*
1522 * Initialize the caches that provide memory for the array cache and the
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001523 * kmem_cache_node structures first. Without this, further allocations will
Andrew Mortona737b3e2006-03-22 00:08:11 -08001524 * bug.
Christoph Lametere498be72005-09-09 13:03:32 -07001525 */
1526
Christoph Lametere3366012013-01-10 19:14:18 +00001527 kmalloc_caches[INDEX_AC] = create_kmalloc_cache("kmalloc-ac",
1528 kmalloc_size(INDEX_AC), ARCH_KMALLOC_FLAGS);
Christoph Lametere498be72005-09-09 13:03:32 -07001529
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001530 if (INDEX_AC != INDEX_NODE)
1531 kmalloc_caches[INDEX_NODE] =
1532 create_kmalloc_cache("kmalloc-node",
1533 kmalloc_size(INDEX_NODE), ARCH_KMALLOC_FLAGS);
Christoph Lametere498be72005-09-09 13:03:32 -07001534
Ingo Molnare0a42722006-06-23 02:03:46 -07001535 slab_early_init = 0;
1536
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 /* 4) Replace the bootstrap head arrays */
1538 {
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001539 struct array_cache *ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001540
Pekka Enberg83b519e2009-06-10 19:40:04 +03001541 ptr = kmalloc(sizeof(struct arraycache_init), GFP_NOWAIT);
Christoph Lametere498be72005-09-09 13:03:32 -07001542
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001543 memcpy(ptr, cpu_cache_get(kmem_cache),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001544 sizeof(struct arraycache_init));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001545 /*
1546 * Do not assume that spinlocks can be initialized via memcpy:
1547 */
1548 spin_lock_init(&ptr->lock);
1549
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001550 kmem_cache->array[smp_processor_id()] = ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001551
Pekka Enberg83b519e2009-06-10 19:40:04 +03001552 ptr = kmalloc(sizeof(struct arraycache_init), GFP_NOWAIT);
Christoph Lametere498be72005-09-09 13:03:32 -07001553
Christoph Lametere3366012013-01-10 19:14:18 +00001554 BUG_ON(cpu_cache_get(kmalloc_caches[INDEX_AC])
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001555 != &initarray_generic.cache);
Christoph Lametere3366012013-01-10 19:14:18 +00001556 memcpy(ptr, cpu_cache_get(kmalloc_caches[INDEX_AC]),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001557 sizeof(struct arraycache_init));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001558 /*
1559 * Do not assume that spinlocks can be initialized via memcpy:
1560 */
1561 spin_lock_init(&ptr->lock);
1562
Christoph Lametere3366012013-01-10 19:14:18 +00001563 kmalloc_caches[INDEX_AC]->array[smp_processor_id()] = ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001565 /* 5) Replace the bootstrap kmem_cache_node */
Christoph Lametere498be72005-09-09 13:03:32 -07001566 {
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001567 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568
Mel Gorman9c09a952008-01-24 05:49:54 -08001569 for_each_online_node(nid) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001570 init_list(kmem_cache, &init_kmem_cache_node[CACHE_CACHE + nid], nid);
Pekka Enberg556a1692008-01-25 08:20:51 +02001571
Christoph Lametere3366012013-01-10 19:14:18 +00001572 init_list(kmalloc_caches[INDEX_AC],
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001573 &init_kmem_cache_node[SIZE_AC + nid], nid);
Christoph Lametere498be72005-09-09 13:03:32 -07001574
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001575 if (INDEX_AC != INDEX_NODE) {
1576 init_list(kmalloc_caches[INDEX_NODE],
1577 &init_kmem_cache_node[SIZE_NODE + nid], nid);
Christoph Lametere498be72005-09-09 13:03:32 -07001578 }
1579 }
1580 }
1581
Christoph Lameterf97d5f62013-01-10 19:12:17 +00001582 create_kmalloc_caches(ARCH_KMALLOC_FLAGS);
Pekka Enberg8429db52009-06-12 15:58:59 +03001583}
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -07001584
Pekka Enberg8429db52009-06-12 15:58:59 +03001585void __init kmem_cache_init_late(void)
1586{
1587 struct kmem_cache *cachep;
1588
Christoph Lameter97d06602012-07-06 15:25:11 -05001589 slab_state = UP;
Peter Zijlstra52cef182011-11-28 21:12:40 +01001590
Pekka Enberg8429db52009-06-12 15:58:59 +03001591 /* 6) resize the head arrays to their final sizes */
Christoph Lameter18004c52012-07-06 15:25:12 -05001592 mutex_lock(&slab_mutex);
1593 list_for_each_entry(cachep, &slab_caches, list)
Pekka Enberg8429db52009-06-12 15:58:59 +03001594 if (enable_cpucache(cachep, GFP_NOWAIT))
1595 BUG();
Christoph Lameter18004c52012-07-06 15:25:12 -05001596 mutex_unlock(&slab_mutex);
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -07001597
Michael Wang947ca182012-09-05 10:33:18 +08001598 /* Annotate slab for lockdep -- annotate the malloc caches */
1599 init_lock_keys();
1600
Christoph Lameter97d06602012-07-06 15:25:11 -05001601 /* Done! */
1602 slab_state = FULL;
1603
Andrew Mortona737b3e2006-03-22 00:08:11 -08001604 /*
1605 * Register a cpu startup notifier callback that initializes
1606 * cpu_cache_get for all new cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 */
1608 register_cpu_notifier(&cpucache_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609
David Rientjes8f9f8d92010-03-27 19:40:47 -07001610#ifdef CONFIG_NUMA
1611 /*
1612 * Register a memory hotplug callback that initializes and frees
Christoph Lameter6a673682013-01-10 19:14:19 +00001613 * node.
David Rientjes8f9f8d92010-03-27 19:40:47 -07001614 */
1615 hotplug_memory_notifier(slab_memory_callback, SLAB_CALLBACK_PRI);
1616#endif
1617
Andrew Mortona737b3e2006-03-22 00:08:11 -08001618 /*
1619 * The reap timers are started later, with a module init call: That part
1620 * of the kernel is not yet operational.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 */
1622}
1623
1624static int __init cpucache_init(void)
1625{
1626 int cpu;
1627
Andrew Mortona737b3e2006-03-22 00:08:11 -08001628 /*
1629 * Register the timers that return unneeded pages to the page allocator
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 */
Christoph Lametere498be72005-09-09 13:03:32 -07001631 for_each_online_cpu(cpu)
Andrew Mortona737b3e2006-03-22 00:08:11 -08001632 start_cpu_timer(cpu);
Glauber Costaa164f8962012-06-21 00:59:18 +04001633
1634 /* Done! */
Christoph Lameter97d06602012-07-06 15:25:11 -05001635 slab_state = FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636 return 0;
1637}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638__initcall(cpucache_init);
1639
Rafael Aquini8bdec192012-03-09 17:27:27 -03001640static noinline void
1641slab_out_of_memory(struct kmem_cache *cachep, gfp_t gfpflags, int nodeid)
1642{
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001643 struct kmem_cache_node *n;
Rafael Aquini8bdec192012-03-09 17:27:27 -03001644 struct slab *slabp;
1645 unsigned long flags;
1646 int node;
1647
1648 printk(KERN_WARNING
1649 "SLAB: Unable to allocate memory on node %d (gfp=0x%x)\n",
1650 nodeid, gfpflags);
1651 printk(KERN_WARNING " cache: %s, object size: %d, order: %d\n",
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05001652 cachep->name, cachep->size, cachep->gfporder);
Rafael Aquini8bdec192012-03-09 17:27:27 -03001653
1654 for_each_online_node(node) {
1655 unsigned long active_objs = 0, num_objs = 0, free_objects = 0;
1656 unsigned long active_slabs = 0, num_slabs = 0;
1657
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001658 n = cachep->node[node];
1659 if (!n)
Rafael Aquini8bdec192012-03-09 17:27:27 -03001660 continue;
1661
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001662 spin_lock_irqsave(&n->list_lock, flags);
1663 list_for_each_entry(slabp, &n->slabs_full, list) {
Rafael Aquini8bdec192012-03-09 17:27:27 -03001664 active_objs += cachep->num;
1665 active_slabs++;
1666 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001667 list_for_each_entry(slabp, &n->slabs_partial, list) {
Rafael Aquini8bdec192012-03-09 17:27:27 -03001668 active_objs += slabp->inuse;
1669 active_slabs++;
1670 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001671 list_for_each_entry(slabp, &n->slabs_free, list)
Rafael Aquini8bdec192012-03-09 17:27:27 -03001672 num_slabs++;
1673
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001674 free_objects += n->free_objects;
1675 spin_unlock_irqrestore(&n->list_lock, flags);
Rafael Aquini8bdec192012-03-09 17:27:27 -03001676
1677 num_slabs += active_slabs;
1678 num_objs = num_slabs * cachep->num;
1679 printk(KERN_WARNING
1680 " node %d: slabs: %ld/%ld, objs: %ld/%ld, free: %ld\n",
1681 node, active_slabs, num_slabs, active_objs, num_objs,
1682 free_objects);
1683 }
1684}
1685
Linus Torvalds1da177e2005-04-16 15:20:36 -07001686/*
1687 * Interface to system's page allocator. No need to hold the cache-lock.
1688 *
1689 * If we requested dmaable memory, we will get it. Even if we
1690 * did not request dmaable memory, we might get it, but that
1691 * would be relatively rare and ignorable.
1692 */
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09001693static struct page *kmem_getpages(struct kmem_cache *cachep, gfp_t flags,
1694 int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695{
1696 struct page *page;
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001697 int nr_pages;
Christoph Lameter765c4502006-09-27 01:50:08 -07001698
Glauber Costaa618e892012-06-14 16:17:21 +04001699 flags |= cachep->allocflags;
Mel Gormane12ba742007-10-16 01:25:52 -07001700 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1701 flags |= __GFP_RECLAIMABLE;
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001702
Linus Torvalds517d0862009-06-16 19:50:13 -07001703 page = alloc_pages_exact_node(nodeid, flags | __GFP_NOTRACK, cachep->gfporder);
Rafael Aquini8bdec192012-03-09 17:27:27 -03001704 if (!page) {
1705 if (!(flags & __GFP_NOWARN) && printk_ratelimit())
1706 slab_out_of_memory(cachep, flags, nodeid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 return NULL;
Rafael Aquini8bdec192012-03-09 17:27:27 -03001708 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709
Mel Gormanb37f1dd2012-07-31 16:44:03 -07001710 /* Record if ALLOC_NO_WATERMARKS was set when allocating the slab */
Mel Gorman072bb0a2012-07-31 16:43:58 -07001711 if (unlikely(page->pfmemalloc))
1712 pfmemalloc_active = true;
1713
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001714 nr_pages = (1 << cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
Christoph Lameter972d1a72006-09-25 23:31:51 -07001716 add_zone_page_state(page_zone(page),
1717 NR_SLAB_RECLAIMABLE, nr_pages);
1718 else
1719 add_zone_page_state(page_zone(page),
1720 NR_SLAB_UNRECLAIMABLE, nr_pages);
Joonsoo Kima57a4982013-10-24 10:07:44 +09001721 __SetPageSlab(page);
1722 if (page->pfmemalloc)
1723 SetPageSlabPfmemalloc(page);
Glauber Costa1f458cb2012-12-18 14:22:50 -08001724 memcg_bind_pages(cachep, cachep->gfporder);
Mel Gorman072bb0a2012-07-31 16:43:58 -07001725
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001726 if (kmemcheck_enabled && !(cachep->flags & SLAB_NOTRACK)) {
1727 kmemcheck_alloc_shadow(page, cachep->gfporder, flags, nodeid);
1728
1729 if (cachep->ctor)
1730 kmemcheck_mark_uninitialized_pages(page, nr_pages);
1731 else
1732 kmemcheck_mark_unallocated_pages(page, nr_pages);
1733 }
Pekka Enbergc175eea2008-05-09 20:35:53 +02001734
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09001735 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736}
1737
1738/*
1739 * Interface to system's page release.
1740 */
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09001741static void kmem_freepages(struct kmem_cache *cachep, struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742{
Joonsoo Kima57a4982013-10-24 10:07:44 +09001743 const unsigned long nr_freed = (1 << cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001745 kmemcheck_free_shadow(page, cachep->gfporder);
Pekka Enbergc175eea2008-05-09 20:35:53 +02001746
Christoph Lameter972d1a72006-09-25 23:31:51 -07001747 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1748 sub_zone_page_state(page_zone(page),
1749 NR_SLAB_RECLAIMABLE, nr_freed);
1750 else
1751 sub_zone_page_state(page_zone(page),
1752 NR_SLAB_UNRECLAIMABLE, nr_freed);
Joonsoo Kim73293c22013-10-24 10:07:37 +09001753
Joonsoo Kima57a4982013-10-24 10:07:44 +09001754 BUG_ON(!PageSlab(page));
Joonsoo Kim73293c22013-10-24 10:07:37 +09001755 __ClearPageSlabPfmemalloc(page);
Joonsoo Kima57a4982013-10-24 10:07:44 +09001756 __ClearPageSlab(page);
Glauber Costa1f458cb2012-12-18 14:22:50 -08001757
1758 memcg_release_pages(cachep, cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001759 if (current->reclaim_state)
1760 current->reclaim_state->reclaimed_slab += nr_freed;
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09001761 __free_memcg_kmem_pages(page, cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762}
1763
1764static void kmem_rcu_free(struct rcu_head *head)
1765{
Joonsoo Kim68126702013-10-24 10:07:42 +09001766 struct kmem_cache *cachep;
1767 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768
Joonsoo Kim68126702013-10-24 10:07:42 +09001769 page = container_of(head, struct page, rcu_head);
1770 cachep = page->slab_cache;
1771
1772 kmem_freepages(cachep, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001773}
1774
1775#if DEBUG
1776
1777#ifdef CONFIG_DEBUG_PAGEALLOC
Pekka Enberg343e0d72006-02-01 03:05:50 -08001778static void store_stackinfo(struct kmem_cache *cachep, unsigned long *addr,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001779 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780{
Christoph Lameter8c138bc2012-06-13 10:24:58 -05001781 int size = cachep->object_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001783 addr = (unsigned long *)&((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001785 if (size < 5 * sizeof(unsigned long))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 return;
1787
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001788 *addr++ = 0x12345678;
1789 *addr++ = caller;
1790 *addr++ = smp_processor_id();
1791 size -= 3 * sizeof(unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 {
1793 unsigned long *sptr = &caller;
1794 unsigned long svalue;
1795
1796 while (!kstack_end(sptr)) {
1797 svalue = *sptr++;
1798 if (kernel_text_address(svalue)) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001799 *addr++ = svalue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800 size -= sizeof(unsigned long);
1801 if (size <= sizeof(unsigned long))
1802 break;
1803 }
1804 }
1805
1806 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001807 *addr++ = 0x87654321;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808}
1809#endif
1810
Pekka Enberg343e0d72006-02-01 03:05:50 -08001811static void poison_obj(struct kmem_cache *cachep, void *addr, unsigned char val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812{
Christoph Lameter8c138bc2012-06-13 10:24:58 -05001813 int size = cachep->object_size;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001814 addr = &((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815
1816 memset(addr, val, size);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001817 *(unsigned char *)(addr + size - 1) = POISON_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818}
1819
1820static void dump_line(char *data, int offset, int limit)
1821{
1822 int i;
Dave Jonesaa83aa42006-09-29 01:59:51 -07001823 unsigned char error = 0;
1824 int bad_count = 0;
1825
Sebastian Andrzej Siewiorfdde6ab2011-07-29 18:22:13 +02001826 printk(KERN_ERR "%03x: ", offset);
Dave Jonesaa83aa42006-09-29 01:59:51 -07001827 for (i = 0; i < limit; i++) {
1828 if (data[offset + i] != POISON_FREE) {
1829 error = data[offset + i];
1830 bad_count++;
1831 }
Dave Jonesaa83aa42006-09-29 01:59:51 -07001832 }
Sebastian Andrzej Siewiorfdde6ab2011-07-29 18:22:13 +02001833 print_hex_dump(KERN_CONT, "", 0, 16, 1,
1834 &data[offset], limit, 1);
Dave Jonesaa83aa42006-09-29 01:59:51 -07001835
1836 if (bad_count == 1) {
1837 error ^= POISON_FREE;
1838 if (!(error & (error - 1))) {
1839 printk(KERN_ERR "Single bit error detected. Probably "
1840 "bad RAM.\n");
1841#ifdef CONFIG_X86
1842 printk(KERN_ERR "Run memtest86+ or a similar memory "
1843 "test tool.\n");
1844#else
1845 printk(KERN_ERR "Run a memory test tool.\n");
1846#endif
1847 }
1848 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849}
1850#endif
1851
1852#if DEBUG
1853
Pekka Enberg343e0d72006-02-01 03:05:50 -08001854static void print_objinfo(struct kmem_cache *cachep, void *objp, int lines)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855{
1856 int i, size;
1857 char *realobj;
1858
1859 if (cachep->flags & SLAB_RED_ZONE) {
David Woodhouseb46b8f12007-05-08 00:22:59 -07001860 printk(KERN_ERR "Redzone: 0x%llx/0x%llx.\n",
Andrew Mortona737b3e2006-03-22 00:08:11 -08001861 *dbg_redzone1(cachep, objp),
1862 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 }
1864
1865 if (cachep->flags & SLAB_STORE_USER) {
Joe Perches071361d2012-12-12 10:19:12 -08001866 printk(KERN_ERR "Last user: [<%p>](%pSR)\n",
1867 *dbg_userword(cachep, objp),
1868 *dbg_userword(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 }
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001870 realobj = (char *)objp + obj_offset(cachep);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05001871 size = cachep->object_size;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001872 for (i = 0; i < size && lines; i += 16, lines--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 int limit;
1874 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001875 if (i + limit > size)
1876 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 dump_line(realobj, i, limit);
1878 }
1879}
1880
Pekka Enberg343e0d72006-02-01 03:05:50 -08001881static void check_poison_obj(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882{
1883 char *realobj;
1884 int size, i;
1885 int lines = 0;
1886
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001887 realobj = (char *)objp + obj_offset(cachep);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05001888 size = cachep->object_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001890 for (i = 0; i < size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 char exp = POISON_FREE;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001892 if (i == size - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893 exp = POISON_END;
1894 if (realobj[i] != exp) {
1895 int limit;
1896 /* Mismatch ! */
1897 /* Print header */
1898 if (lines == 0) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001899 printk(KERN_ERR
Dave Jonesface37f2011-11-15 15:03:52 -08001900 "Slab corruption (%s): %s start=%p, len=%d\n",
1901 print_tainted(), cachep->name, realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 print_objinfo(cachep, objp, 0);
1903 }
1904 /* Hexdump the affected line */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001905 i = (i / 16) * 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001907 if (i + limit > size)
1908 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 dump_line(realobj, i, limit);
1910 i += 16;
1911 lines++;
1912 /* Limit to 5 lines */
1913 if (lines > 5)
1914 break;
1915 }
1916 }
1917 if (lines != 0) {
1918 /* Print some data about the neighboring objects, if they
1919 * exist:
1920 */
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -08001921 struct slab *slabp = virt_to_slab(objp);
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001922 unsigned int objnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001924 objnr = obj_to_index(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001925 if (objnr) {
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 "Prev 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 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001932 if (objnr + 1 < cachep->num) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001933 objp = index_to_obj(cachep, slabp, objnr + 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001934 realobj = (char *)objp + obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 printk(KERN_ERR "Next obj: start=%p, len=%d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001936 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 print_objinfo(cachep, objp, 2);
1938 }
1939 }
1940}
1941#endif
1942
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943#if DEBUG
Rabin Vincente79aec22008-07-04 00:40:32 +05301944static void slab_destroy_debugcheck(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001945{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 int i;
1947 for (i = 0; i < cachep->num; i++) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001948 void *objp = index_to_obj(cachep, slabp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949
1950 if (cachep->flags & SLAB_POISON) {
1951#ifdef CONFIG_DEBUG_PAGEALLOC
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05001952 if (cachep->size % PAGE_SIZE == 0 &&
Andrew Mortona737b3e2006-03-22 00:08:11 -08001953 OFF_SLAB(cachep))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001954 kernel_map_pages(virt_to_page(objp),
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05001955 cachep->size / PAGE_SIZE, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 else
1957 check_poison_obj(cachep, objp);
1958#else
1959 check_poison_obj(cachep, objp);
1960#endif
1961 }
1962 if (cachep->flags & SLAB_RED_ZONE) {
1963 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
1964 slab_error(cachep, "start of a freed object "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001965 "was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
1967 slab_error(cachep, "end of a freed object "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001968 "was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 }
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001971}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972#else
Rabin Vincente79aec22008-07-04 00:40:32 +05301973static void slab_destroy_debugcheck(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001974{
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001975}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976#endif
1977
Randy Dunlap911851e2006-03-22 00:08:14 -08001978/**
1979 * slab_destroy - destroy and release all objects in a slab
1980 * @cachep: cache pointer being destroyed
1981 * @slabp: slab pointer being destroyed
1982 *
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001983 * Destroy all the objs in a slab, and release the mem back to the system.
Andrew Mortona737b3e2006-03-22 00:08:11 -08001984 * Before calling the slab must have been unlinked from the cache. The
1985 * cache-lock is not held/needed.
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001986 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001987static void slab_destroy(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001988{
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09001989 struct page *page = virt_to_head_page(slabp->s_mem);
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001990
Rabin Vincente79aec22008-07-04 00:40:32 +05301991 slab_destroy_debugcheck(cachep, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992 if (unlikely(cachep->flags & SLAB_DESTROY_BY_RCU)) {
Joonsoo Kim68126702013-10-24 10:07:42 +09001993 struct rcu_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994
Joonsoo Kim68126702013-10-24 10:07:42 +09001995 /*
1996 * RCU free overloads the RCU head over the LRU.
1997 * slab_page has been overloeaded over the LRU,
1998 * however it is not used from now on so that
1999 * we can use it safely.
2000 */
2001 head = (void *)&page->rcu_head;
2002 call_rcu(head, kmem_rcu_free);
2003
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004 } else {
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002005 kmem_freepages(cachep, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 }
Joonsoo Kim68126702013-10-24 10:07:42 +09002007
2008 /*
2009 * From now on, we don't use slab management
2010 * although actual page can be freed in rcu context
2011 */
2012 if (OFF_SLAB(cachep))
2013 kmem_cache_free(cachep->slabp_cache, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014}
2015
2016/**
Randy.Dunlapa70773d2006-02-01 03:05:52 -08002017 * calculate_slab_order - calculate size (page order) of slabs
2018 * @cachep: pointer to the cache that is being created
2019 * @size: size of objects to be created in this cache.
2020 * @align: required alignment for the objects.
2021 * @flags: slab allocation flags
2022 *
2023 * Also calculates the number of objects per slab.
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002024 *
2025 * This could be made much more intelligent. For now, try to avoid using
2026 * high order pages for slabs. When the gfp() functions are more friendly
2027 * towards high-order requests, this should be changed.
2028 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002029static size_t calculate_slab_order(struct kmem_cache *cachep,
Randy Dunlapee13d782006-02-01 03:05:53 -08002030 size_t size, size_t align, unsigned long flags)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002031{
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02002032 unsigned long offslab_limit;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002033 size_t left_over = 0;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002034 int gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002035
Christoph Lameter0aa817f2007-05-16 22:11:01 -07002036 for (gfporder = 0; gfporder <= KMALLOC_MAX_ORDER; gfporder++) {
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002037 unsigned int num;
2038 size_t remainder;
2039
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002040 cache_estimate(gfporder, size, align, flags, &remainder, &num);
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002041 if (!num)
2042 continue;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002043
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02002044 if (flags & CFLGS_OFF_SLAB) {
2045 /*
2046 * Max number of objs-per-slab for caches which
2047 * use off-slab slabs. Needed to avoid a possible
2048 * looping condition in cache_grow().
2049 */
2050 offslab_limit = size - sizeof(struct slab);
Joonsoo Kim16025172013-10-24 10:07:46 +09002051 offslab_limit /= sizeof(unsigned int);
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02002052
2053 if (num > offslab_limit)
2054 break;
2055 }
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002056
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002057 /* Found something acceptable - save it away */
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002058 cachep->num = num;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002059 cachep->gfporder = gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002060 left_over = remainder;
2061
2062 /*
Linus Torvaldsf78bb8a2006-03-08 10:33:05 -08002063 * A VFS-reclaimable slab tends to have most allocations
2064 * as GFP_NOFS and we really don't want to have to be allocating
2065 * higher-order pages when we are unable to shrink dcache.
2066 */
2067 if (flags & SLAB_RECLAIM_ACCOUNT)
2068 break;
2069
2070 /*
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002071 * Large number of objects is good, but very large slabs are
2072 * currently bad for the gfp()s.
2073 */
David Rientjes543585c2011-10-18 22:09:24 -07002074 if (gfporder >= slab_max_order)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002075 break;
2076
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002077 /*
2078 * Acceptable internal fragmentation?
2079 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002080 if (left_over * 8 <= (PAGE_SIZE << gfporder))
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002081 break;
2082 }
2083 return left_over;
2084}
2085
Pekka Enberg83b519e2009-06-10 19:40:04 +03002086static int __init_refok setup_cpu_cache(struct kmem_cache *cachep, gfp_t gfp)
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002087{
Christoph Lameter97d06602012-07-06 15:25:11 -05002088 if (slab_state >= FULL)
Pekka Enberg83b519e2009-06-10 19:40:04 +03002089 return enable_cpucache(cachep, gfp);
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002090
Christoph Lameter97d06602012-07-06 15:25:11 -05002091 if (slab_state == DOWN) {
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002092 /*
Christoph Lameter2f9baa92012-11-28 16:23:09 +00002093 * Note: Creation of first cache (kmem_cache).
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002094 * The setup_node is taken care
Christoph Lameter2f9baa92012-11-28 16:23:09 +00002095 * of by the caller of __kmem_cache_create
2096 */
2097 cachep->array[smp_processor_id()] = &initarray_generic.cache;
2098 slab_state = PARTIAL;
2099 } else if (slab_state == PARTIAL) {
2100 /*
2101 * Note: the second kmem_cache_create must create the cache
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002102 * that's used by kmalloc(24), otherwise the creation of
2103 * further caches will BUG().
2104 */
2105 cachep->array[smp_processor_id()] = &initarray_generic.cache;
2106
2107 /*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002108 * If the cache that's used by kmalloc(sizeof(kmem_cache_node)) is
2109 * the second cache, then we need to set up all its node/,
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002110 * otherwise the creation of further caches will BUG().
2111 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002112 set_up_node(cachep, SIZE_AC);
2113 if (INDEX_AC == INDEX_NODE)
2114 slab_state = PARTIAL_NODE;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002115 else
Christoph Lameter97d06602012-07-06 15:25:11 -05002116 slab_state = PARTIAL_ARRAYCACHE;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002117 } else {
Christoph Lameter2f9baa92012-11-28 16:23:09 +00002118 /* Remaining boot caches */
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002119 cachep->array[smp_processor_id()] =
Pekka Enberg83b519e2009-06-10 19:40:04 +03002120 kmalloc(sizeof(struct arraycache_init), gfp);
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002121
Christoph Lameter97d06602012-07-06 15:25:11 -05002122 if (slab_state == PARTIAL_ARRAYCACHE) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002123 set_up_node(cachep, SIZE_NODE);
2124 slab_state = PARTIAL_NODE;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002125 } else {
2126 int node;
Pekka Enberg556a1692008-01-25 08:20:51 +02002127 for_each_online_node(node) {
Christoph Lameter6a673682013-01-10 19:14:19 +00002128 cachep->node[node] =
Christoph Lameter6744f082013-01-10 19:12:17 +00002129 kmalloc_node(sizeof(struct kmem_cache_node),
Pekka Enbergeb91f1d2009-06-12 14:56:09 +03002130 gfp, node);
Christoph Lameter6a673682013-01-10 19:14:19 +00002131 BUG_ON(!cachep->node[node]);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002132 kmem_cache_node_init(cachep->node[node]);
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002133 }
2134 }
2135 }
Christoph Lameter6a673682013-01-10 19:14:19 +00002136 cachep->node[numa_mem_id()]->next_reap =
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002137 jiffies + REAPTIMEOUT_LIST3 +
2138 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
2139
2140 cpu_cache_get(cachep)->avail = 0;
2141 cpu_cache_get(cachep)->limit = BOOT_CPUCACHE_ENTRIES;
2142 cpu_cache_get(cachep)->batchcount = 1;
2143 cpu_cache_get(cachep)->touched = 0;
2144 cachep->batchcount = 1;
2145 cachep->limit = BOOT_CPUCACHE_ENTRIES;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002146 return 0;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002147}
2148
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002149/**
Christoph Lameter039363f2012-07-06 15:25:10 -05002150 * __kmem_cache_create - Create a cache.
Randy Dunlapa755b762012-11-06 17:10:10 -08002151 * @cachep: cache management descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 * @flags: SLAB flags
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153 *
2154 * Returns a ptr to the cache on success, NULL on failure.
2155 * Cannot be called within a int, but can be interrupted.
Paul Mundt20c2df82007-07-20 10:11:58 +09002156 * The @ctor is run when new pages are allocated by the cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158 * The flags are
2159 *
2160 * %SLAB_POISON - Poison the slab with a known test pattern (a5a5a5a5)
2161 * to catch references to uninitialised memory.
2162 *
2163 * %SLAB_RED_ZONE - Insert `Red' zones around the allocated memory to check
2164 * for buffer overruns.
2165 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166 * %SLAB_HWCACHE_ALIGN - Align the objects in this cache to a hardware
2167 * cacheline. This can be beneficial if you're counting cycles as closely
2168 * as davem.
2169 */
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002170int
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002171__kmem_cache_create (struct kmem_cache *cachep, unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172{
2173 size_t left_over, slab_size, ralign;
Pekka Enberg83b519e2009-06-10 19:40:04 +03002174 gfp_t gfp;
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002175 int err;
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002176 size_t size = cachep->size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178#if DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179#if FORCED_DEBUG
2180 /*
2181 * Enable redzoning and last user accounting, except for caches with
2182 * large objects, if the increased size would increase the object size
2183 * above the next power of two: caches with object sizes just above a
2184 * power of two have a significant amount of internal fragmentation.
2185 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002186 if (size < 4096 || fls(size - 1) == fls(size-1 + REDZONE_ALIGN +
2187 2 * sizeof(unsigned long long)))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002188 flags |= SLAB_RED_ZONE | SLAB_STORE_USER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002189 if (!(flags & SLAB_DESTROY_BY_RCU))
2190 flags |= SLAB_POISON;
2191#endif
2192 if (flags & SLAB_DESTROY_BY_RCU)
2193 BUG_ON(flags & SLAB_POISON);
2194#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195
Andrew Mortona737b3e2006-03-22 00:08:11 -08002196 /*
2197 * Check that size is in terms of words. This is needed to avoid
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 * unaligned accesses for some archs when redzoning is used, and makes
2199 * sure any on-slab bufctl's are also correctly aligned.
2200 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002201 if (size & (BYTES_PER_WORD - 1)) {
2202 size += (BYTES_PER_WORD - 1);
2203 size &= ~(BYTES_PER_WORD - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002204 }
2205
Pekka Enbergca5f9702006-09-25 23:31:25 -07002206 /*
David Woodhouse87a927c2007-07-04 21:26:44 -04002207 * Redzoning and user store require word alignment or possibly larger.
2208 * Note this will be overridden by architecture or caller mandated
2209 * alignment if either is greater than BYTES_PER_WORD.
Pekka Enbergca5f9702006-09-25 23:31:25 -07002210 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002211 if (flags & SLAB_STORE_USER)
2212 ralign = BYTES_PER_WORD;
2213
2214 if (flags & SLAB_RED_ZONE) {
2215 ralign = REDZONE_ALIGN;
2216 /* If redzoning, ensure that the second redzone is suitably
2217 * aligned, by adjusting the object size accordingly. */
2218 size += REDZONE_ALIGN - 1;
2219 size &= ~(REDZONE_ALIGN - 1);
2220 }
Pekka Enbergca5f9702006-09-25 23:31:25 -07002221
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002222 /* 3) caller mandated alignment */
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002223 if (ralign < cachep->align) {
2224 ralign = cachep->align;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002225 }
Pekka Enberg3ff84a72011-02-14 17:46:21 +02002226 /* disable debug if necessary */
2227 if (ralign > __alignof__(unsigned long long))
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002228 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002229 /*
Pekka Enbergca5f9702006-09-25 23:31:25 -07002230 * 4) Store it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 */
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002232 cachep->align = ralign;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233
Pekka Enberg83b519e2009-06-10 19:40:04 +03002234 if (slab_is_available())
2235 gfp = GFP_KERNEL;
2236 else
2237 gfp = GFP_NOWAIT;
2238
Christoph Lameter6a673682013-01-10 19:14:19 +00002239 setup_node_pointer(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240#if DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241
Pekka Enbergca5f9702006-09-25 23:31:25 -07002242 /*
2243 * Both debugging options require word-alignment which is calculated
2244 * into align above.
2245 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 if (flags & SLAB_RED_ZONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 /* add space for red zone words */
Pekka Enberg3ff84a72011-02-14 17:46:21 +02002248 cachep->obj_offset += sizeof(unsigned long long);
2249 size += 2 * sizeof(unsigned long long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250 }
2251 if (flags & SLAB_STORE_USER) {
Pekka Enbergca5f9702006-09-25 23:31:25 -07002252 /* user store requires one word storage behind the end of
David Woodhouse87a927c2007-07-04 21:26:44 -04002253 * the real object. But if the second red zone needs to be
2254 * aligned to 64 bits, we must allow that much space.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002255 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002256 if (flags & SLAB_RED_ZONE)
2257 size += REDZONE_ALIGN;
2258 else
2259 size += BYTES_PER_WORD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 }
2261#if FORCED_DEBUG && defined(CONFIG_DEBUG_PAGEALLOC)
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002262 if (size >= kmalloc_size(INDEX_NODE + 1)
Tetsuo Handa608da7e2012-09-30 17:28:25 +09002263 && cachep->object_size > cache_line_size()
2264 && ALIGN(size, cachep->align) < PAGE_SIZE) {
2265 cachep->obj_offset += PAGE_SIZE - ALIGN(size, cachep->align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266 size = PAGE_SIZE;
2267 }
2268#endif
2269#endif
2270
Ingo Molnare0a42722006-06-23 02:03:46 -07002271 /*
2272 * Determine if the slab management is 'on' or 'off' slab.
2273 * (bootstrapping cannot cope with offslab caches so don't do
Catalin Marinase7cb55b2009-10-28 13:33:08 +00002274 * it too early on. Always use on-slab management when
2275 * SLAB_NOLEAKTRACE to avoid recursive calls into kmemleak)
Ingo Molnare0a42722006-06-23 02:03:46 -07002276 */
Catalin Marinase7cb55b2009-10-28 13:33:08 +00002277 if ((size >= (PAGE_SIZE >> 3)) && !slab_early_init &&
2278 !(flags & SLAB_NOLEAKTRACE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279 /*
2280 * Size is large, assume best to place the slab management obj
2281 * off-slab (should allow better packing of objs).
2282 */
2283 flags |= CFLGS_OFF_SLAB;
2284
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002285 size = ALIGN(size, cachep->align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002287 left_over = calculate_slab_order(cachep, size, cachep->align, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002289 if (!cachep->num)
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002290 return -E2BIG;
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002291
Joonsoo Kim16025172013-10-24 10:07:46 +09002292 slab_size = ALIGN(cachep->num * sizeof(unsigned int)
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002293 + sizeof(struct slab), cachep->align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294
2295 /*
2296 * If the slab has been placed off-slab, and we have enough space then
2297 * move it on-slab. This is at the expense of any extra colouring.
2298 */
2299 if (flags & CFLGS_OFF_SLAB && left_over >= slab_size) {
2300 flags &= ~CFLGS_OFF_SLAB;
2301 left_over -= slab_size;
2302 }
2303
2304 if (flags & CFLGS_OFF_SLAB) {
2305 /* really off slab. No need for manual alignment */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002306 slab_size =
Joonsoo Kim16025172013-10-24 10:07:46 +09002307 cachep->num * sizeof(unsigned int) + sizeof(struct slab);
Ron Lee67461362009-05-22 04:58:22 +09302308
2309#ifdef CONFIG_PAGE_POISONING
2310 /* If we're going to use the generic kernel_map_pages()
2311 * poisoning, then it's going to smash the contents of
2312 * the redzone and userword anyhow, so switch them off.
2313 */
2314 if (size % PAGE_SIZE == 0 && flags & SLAB_POISON)
2315 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
2316#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 }
2318
2319 cachep->colour_off = cache_line_size();
2320 /* Offset must be a multiple of the alignment. */
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002321 if (cachep->colour_off < cachep->align)
2322 cachep->colour_off = cachep->align;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002323 cachep->colour = left_over / cachep->colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 cachep->slab_size = slab_size;
2325 cachep->flags = flags;
Joonsoo Kima57a4982013-10-24 10:07:44 +09002326 cachep->allocflags = __GFP_COMP;
Christoph Lameter4b51d662007-02-10 01:43:10 -08002327 if (CONFIG_ZONE_DMA_FLAG && (flags & SLAB_CACHE_DMA))
Glauber Costaa618e892012-06-14 16:17:21 +04002328 cachep->allocflags |= GFP_DMA;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002329 cachep->size = size;
Eric Dumazet6a2d7a92006-12-13 00:34:27 -08002330 cachep->reciprocal_buffer_size = reciprocal_value(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002332 if (flags & CFLGS_OFF_SLAB) {
Christoph Lameter2c59dd62013-01-10 19:14:19 +00002333 cachep->slabp_cache = kmalloc_slab(slab_size, 0u);
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002334 /*
2335 * This is a possibility for one of the malloc_sizes caches.
2336 * But since we go off slab only for object size greater than
2337 * PAGE_SIZE/8, and malloc_sizes gets created in ascending order,
2338 * this should not happen at all.
2339 * But leave a BUG_ON for some lucky dude.
2340 */
Christoph Lameter6cb8f912007-07-17 04:03:22 -07002341 BUG_ON(ZERO_OR_NULL_PTR(cachep->slabp_cache));
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002342 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002344 err = setup_cpu_cache(cachep, gfp);
2345 if (err) {
Christoph Lameter12c36672012-09-04 23:38:33 +00002346 __kmem_cache_shutdown(cachep);
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002347 return err;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002348 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349
Peter Zijlstra83835b32011-07-22 15:26:05 +02002350 if (flags & SLAB_DEBUG_OBJECTS) {
2351 /*
2352 * Would deadlock through slab_destroy()->call_rcu()->
2353 * debug_object_activate()->kmem_cache_alloc().
2354 */
2355 WARN_ON_ONCE(flags & SLAB_DESTROY_BY_RCU);
2356
2357 slab_set_debugobj_lock_classes(cachep);
Glauber Costa6ccfb5b2012-12-18 14:22:31 -08002358 } else if (!OFF_SLAB(cachep) && !(flags & SLAB_DESTROY_BY_RCU))
2359 on_slab_lock_classes(cachep);
Peter Zijlstra83835b32011-07-22 15:26:05 +02002360
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002361 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363
2364#if DEBUG
2365static void check_irq_off(void)
2366{
2367 BUG_ON(!irqs_disabled());
2368}
2369
2370static void check_irq_on(void)
2371{
2372 BUG_ON(irqs_disabled());
2373}
2374
Pekka Enberg343e0d72006-02-01 03:05:50 -08002375static void check_spinlock_acquired(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376{
2377#ifdef CONFIG_SMP
2378 check_irq_off();
Christoph Lameter6a673682013-01-10 19:14:19 +00002379 assert_spin_locked(&cachep->node[numa_mem_id()]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380#endif
2381}
Christoph Lametere498be72005-09-09 13:03:32 -07002382
Pekka Enberg343e0d72006-02-01 03:05:50 -08002383static void check_spinlock_acquired_node(struct kmem_cache *cachep, int node)
Christoph Lametere498be72005-09-09 13:03:32 -07002384{
2385#ifdef CONFIG_SMP
2386 check_irq_off();
Christoph Lameter6a673682013-01-10 19:14:19 +00002387 assert_spin_locked(&cachep->node[node]->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07002388#endif
2389}
2390
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391#else
2392#define check_irq_off() do { } while(0)
2393#define check_irq_on() do { } while(0)
2394#define check_spinlock_acquired(x) do { } while(0)
Christoph Lametere498be72005-09-09 13:03:32 -07002395#define check_spinlock_acquired_node(x, y) do { } while(0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396#endif
2397
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002398static void drain_array(struct kmem_cache *cachep, struct kmem_cache_node *n,
Christoph Lameteraab22072006-03-22 00:09:06 -08002399 struct array_cache *ac,
2400 int force, int node);
2401
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402static void do_drain(void *arg)
2403{
Andrew Mortona737b3e2006-03-22 00:08:11 -08002404 struct kmem_cache *cachep = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 struct array_cache *ac;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07002406 int node = numa_mem_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407
2408 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002409 ac = cpu_cache_get(cachep);
Christoph Lameter6a673682013-01-10 19:14:19 +00002410 spin_lock(&cachep->node[node]->list_lock);
Christoph Lameterff694162005-09-22 21:44:02 -07002411 free_block(cachep, ac->entry, ac->avail, node);
Christoph Lameter6a673682013-01-10 19:14:19 +00002412 spin_unlock(&cachep->node[node]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 ac->avail = 0;
2414}
2415
Pekka Enberg343e0d72006-02-01 03:05:50 -08002416static void drain_cpu_caches(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417{
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002418 struct kmem_cache_node *n;
Christoph Lametere498be72005-09-09 13:03:32 -07002419 int node;
2420
Jens Axboe15c8b6c2008-05-09 09:39:44 +02002421 on_each_cpu(do_drain, cachep, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 check_irq_on();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002423 for_each_online_node(node) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002424 n = cachep->node[node];
2425 if (n && n->alien)
2426 drain_alien_cache(cachep, n->alien);
Roland Dreiera4523a82006-05-15 11:41:00 -07002427 }
2428
2429 for_each_online_node(node) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002430 n = cachep->node[node];
2431 if (n)
2432 drain_array(cachep, n, n->shared, 1, node);
Christoph Lametere498be72005-09-09 13:03:32 -07002433 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434}
2435
Christoph Lametered11d9e2006-06-30 01:55:45 -07002436/*
2437 * Remove slabs from the list of free slabs.
2438 * Specify the number of slabs to drain in tofree.
2439 *
2440 * Returns the actual number of slabs released.
2441 */
2442static int drain_freelist(struct kmem_cache *cache,
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002443 struct kmem_cache_node *n, int tofree)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444{
Christoph Lametered11d9e2006-06-30 01:55:45 -07002445 struct list_head *p;
2446 int nr_freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 struct slab *slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448
Christoph Lametered11d9e2006-06-30 01:55:45 -07002449 nr_freed = 0;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002450 while (nr_freed < tofree && !list_empty(&n->slabs_free)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002452 spin_lock_irq(&n->list_lock);
2453 p = n->slabs_free.prev;
2454 if (p == &n->slabs_free) {
2455 spin_unlock_irq(&n->list_lock);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002456 goto out;
2457 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458
Christoph Lametered11d9e2006-06-30 01:55:45 -07002459 slabp = list_entry(p, struct slab, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460#if DEBUG
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002461 BUG_ON(slabp->inuse);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462#endif
2463 list_del(&slabp->list);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002464 /*
2465 * Safe to drop the lock. The slab is no longer linked
2466 * to the cache.
2467 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002468 n->free_objects -= cache->num;
2469 spin_unlock_irq(&n->list_lock);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002470 slab_destroy(cache, slabp);
2471 nr_freed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 }
Christoph Lametered11d9e2006-06-30 01:55:45 -07002473out:
2474 return nr_freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475}
2476
Christoph Lameter18004c52012-07-06 15:25:12 -05002477/* Called with slab_mutex held to protect against cpu hotplug */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002478static int __cache_shrink(struct kmem_cache *cachep)
Christoph Lametere498be72005-09-09 13:03:32 -07002479{
2480 int ret = 0, i = 0;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002481 struct kmem_cache_node *n;
Christoph Lametere498be72005-09-09 13:03:32 -07002482
2483 drain_cpu_caches(cachep);
2484
2485 check_irq_on();
2486 for_each_online_node(i) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002487 n = cachep->node[i];
2488 if (!n)
Christoph Lametered11d9e2006-06-30 01:55:45 -07002489 continue;
2490
Wanpeng Li0fa81032013-07-04 08:33:22 +08002491 drain_freelist(cachep, n, slabs_tofree(cachep, n));
Christoph Lametered11d9e2006-06-30 01:55:45 -07002492
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002493 ret += !list_empty(&n->slabs_full) ||
2494 !list_empty(&n->slabs_partial);
Christoph Lametere498be72005-09-09 13:03:32 -07002495 }
2496 return (ret ? 1 : 0);
2497}
2498
Linus Torvalds1da177e2005-04-16 15:20:36 -07002499/**
2500 * kmem_cache_shrink - Shrink a cache.
2501 * @cachep: The cache to shrink.
2502 *
2503 * Releases as many slabs as possible for a cache.
2504 * To help debugging, a zero exit status indicates all slabs were released.
2505 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002506int kmem_cache_shrink(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507{
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002508 int ret;
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002509 BUG_ON(!cachep || in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002511 get_online_cpus();
Christoph Lameter18004c52012-07-06 15:25:12 -05002512 mutex_lock(&slab_mutex);
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002513 ret = __cache_shrink(cachep);
Christoph Lameter18004c52012-07-06 15:25:12 -05002514 mutex_unlock(&slab_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002515 put_online_cpus();
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002516 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517}
2518EXPORT_SYMBOL(kmem_cache_shrink);
2519
Christoph Lameter945cf2b2012-09-04 23:18:33 +00002520int __kmem_cache_shutdown(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521{
Christoph Lameter12c36672012-09-04 23:38:33 +00002522 int i;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002523 struct kmem_cache_node *n;
Christoph Lameter12c36672012-09-04 23:38:33 +00002524 int rc = __cache_shrink(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525
Christoph Lameter12c36672012-09-04 23:38:33 +00002526 if (rc)
2527 return rc;
2528
2529 for_each_online_cpu(i)
2530 kfree(cachep->array[i]);
2531
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002532 /* NUMA: free the node structures */
Christoph Lameter12c36672012-09-04 23:38:33 +00002533 for_each_online_node(i) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002534 n = cachep->node[i];
2535 if (n) {
2536 kfree(n->shared);
2537 free_alien_cache(n->alien);
2538 kfree(n);
Christoph Lameter12c36672012-09-04 23:38:33 +00002539 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540 }
Christoph Lameter12c36672012-09-04 23:38:33 +00002541 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002544/*
2545 * Get the memory for a slab management obj.
2546 * For a slab cache when the slab descriptor is off-slab, slab descriptors
2547 * always come from malloc_sizes caches. The slab descriptor cannot
2548 * come from the same cache which is getting created because,
2549 * when we are searching for an appropriate cache for these
2550 * descriptors in kmem_cache_create, we search through the malloc_sizes array.
2551 * If we are creating a malloc_sizes cache here it would not be visible to
2552 * kmem_find_general_cachep till the initialization is complete.
2553 * Hence we cannot have slabp_cache same as the original cache.
2554 */
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002555static struct slab *alloc_slabmgmt(struct kmem_cache *cachep,
2556 struct page *page, int colour_off,
2557 gfp_t local_flags, int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558{
2559 struct slab *slabp;
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002560 void *addr = page_address(page);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002561
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562 if (OFF_SLAB(cachep)) {
2563 /* Slab management obj is off-slab. */
Ravikiran G Thirumalai5b74ada2006-04-10 22:52:53 -07002564 slabp = kmem_cache_alloc_node(cachep->slabp_cache,
Pekka Enberg8759ec52008-11-26 10:01:31 +02002565 local_flags, nodeid);
Catalin Marinasd5cff632009-06-11 13:22:40 +01002566 /*
2567 * If the first object in the slab is leaked (it's allocated
2568 * but no one has a reference to it), we want to make sure
2569 * kmemleak does not treat the ->s_mem pointer as a reference
2570 * to the object. Otherwise we will not report the leak.
2571 */
Catalin Marinasc017b4b2009-10-28 13:33:09 +00002572 kmemleak_scan_area(&slabp->list, sizeof(struct list_head),
2573 local_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574 if (!slabp)
2575 return NULL;
2576 } else {
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002577 slabp = addr + colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578 colour_off += cachep->slab_size;
2579 }
2580 slabp->inuse = 0;
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002581 slabp->s_mem = addr + colour_off;
Marcin Slusarze51bfd02008-02-10 11:21:54 +01002582 slabp->free = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583 return slabp;
2584}
2585
Joonsoo Kim16025172013-10-24 10:07:46 +09002586static inline unsigned int *slab_bufctl(struct slab *slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587{
Joonsoo Kim16025172013-10-24 10:07:46 +09002588 return (unsigned int *) (slabp + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589}
2590
Pekka Enberg343e0d72006-02-01 03:05:50 -08002591static void cache_init_objs(struct kmem_cache *cachep,
Christoph Lametera35afb82007-05-16 22:10:57 -07002592 struct slab *slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593{
2594 int i;
2595
2596 for (i = 0; i < cachep->num; i++) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002597 void *objp = index_to_obj(cachep, slabp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598#if DEBUG
2599 /* need to poison the objs? */
2600 if (cachep->flags & SLAB_POISON)
2601 poison_obj(cachep, objp, POISON_FREE);
2602 if (cachep->flags & SLAB_STORE_USER)
2603 *dbg_userword(cachep, objp) = NULL;
2604
2605 if (cachep->flags & SLAB_RED_ZONE) {
2606 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2607 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2608 }
2609 /*
Andrew Mortona737b3e2006-03-22 00:08:11 -08002610 * Constructors are not allowed to allocate memory from the same
2611 * cache which they are a constructor for. Otherwise, deadlock.
2612 * They must also be threaded.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 */
2614 if (cachep->ctor && !(cachep->flags & SLAB_POISON))
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002615 cachep->ctor(objp + obj_offset(cachep));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616
2617 if (cachep->flags & SLAB_RED_ZONE) {
2618 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
2619 slab_error(cachep, "constructor overwrote the"
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002620 " end of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
2622 slab_error(cachep, "constructor overwrote the"
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002623 " start of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624 }
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002625 if ((cachep->size % PAGE_SIZE) == 0 &&
Andrew Mortona737b3e2006-03-22 00:08:11 -08002626 OFF_SLAB(cachep) && cachep->flags & SLAB_POISON)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002627 kernel_map_pages(virt_to_page(objp),
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002628 cachep->size / PAGE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629#else
2630 if (cachep->ctor)
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002631 cachep->ctor(objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632#endif
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09002633 slab_bufctl(slabp)[i] = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635}
2636
Pekka Enberg343e0d72006-02-01 03:05:50 -08002637static void kmem_flagcheck(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638{
Christoph Lameter4b51d662007-02-10 01:43:10 -08002639 if (CONFIG_ZONE_DMA_FLAG) {
2640 if (flags & GFP_DMA)
Glauber Costaa618e892012-06-14 16:17:21 +04002641 BUG_ON(!(cachep->allocflags & GFP_DMA));
Christoph Lameter4b51d662007-02-10 01:43:10 -08002642 else
Glauber Costaa618e892012-06-14 16:17:21 +04002643 BUG_ON(cachep->allocflags & GFP_DMA);
Christoph Lameter4b51d662007-02-10 01:43:10 -08002644 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645}
2646
Andrew Mortona737b3e2006-03-22 00:08:11 -08002647static void *slab_get_obj(struct kmem_cache *cachep, struct slab *slabp,
2648 int nodeid)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002649{
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09002650 void *objp;
Matthew Dobson78d382d2006-02-01 03:05:47 -08002651
2652 slabp->inuse++;
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09002653 objp = index_to_obj(cachep, slabp, slab_bufctl(slabp)[slabp->free]);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002654#if DEBUG
Joonsoo Kim1ea991b2013-10-24 10:07:40 +09002655 WARN_ON(page_to_nid(virt_to_page(objp)) != nodeid);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002656#endif
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09002657 slabp->free++;
Matthew Dobson78d382d2006-02-01 03:05:47 -08002658
2659 return objp;
2660}
2661
Andrew Mortona737b3e2006-03-22 00:08:11 -08002662static void slab_put_obj(struct kmem_cache *cachep, struct slab *slabp,
2663 void *objp, int nodeid)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002664{
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002665 unsigned int objnr = obj_to_index(cachep, slabp, objp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002666#if DEBUG
Joonsoo Kim16025172013-10-24 10:07:46 +09002667 unsigned int i;
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09002668
Matthew Dobson78d382d2006-02-01 03:05:47 -08002669 /* Verify that the slab belongs to the intended node */
Joonsoo Kim1ea991b2013-10-24 10:07:40 +09002670 WARN_ON(page_to_nid(virt_to_page(objp)) != nodeid);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002671
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09002672 /* Verify double free bug */
2673 for (i = slabp->free; i < cachep->num; i++) {
2674 if (slab_bufctl(slabp)[i] == objnr) {
2675 printk(KERN_ERR "slab: double free detected in cache "
2676 "'%s', objp %p\n", cachep->name, objp);
2677 BUG();
2678 }
Matthew Dobson78d382d2006-02-01 03:05:47 -08002679 }
2680#endif
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09002681 slabp->free--;
2682 slab_bufctl(slabp)[slabp->free] = objnr;
Matthew Dobson78d382d2006-02-01 03:05:47 -08002683 slabp->inuse--;
2684}
2685
Pekka Enberg47768742006-06-23 02:03:07 -07002686/*
2687 * Map pages beginning at addr to the given cache and slab. This is required
2688 * for the slab allocator to be able to lookup the cache and slab of a
Nick Pigginccd35fb2011-01-07 17:49:17 +11002689 * virtual address for kfree, ksize, and slab debugging.
Pekka Enberg47768742006-06-23 02:03:07 -07002690 */
2691static void slab_map_pages(struct kmem_cache *cache, struct slab *slab,
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002692 struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693{
Joonsoo Kima57a4982013-10-24 10:07:44 +09002694 page->slab_cache = cache;
2695 page->slab_page = slab;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696}
2697
2698/*
2699 * Grow (by 1) the number of slabs within a cache. This is called by
2700 * kmem_cache_alloc() when there are no active objs left in a cache.
2701 */
Christoph Lameter3c517a62006-12-06 20:33:29 -08002702static int cache_grow(struct kmem_cache *cachep,
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002703 gfp_t flags, int nodeid, struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002705 struct slab *slabp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002706 size_t offset;
2707 gfp_t local_flags;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002708 struct kmem_cache_node *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709
Andrew Mortona737b3e2006-03-22 00:08:11 -08002710 /*
2711 * Be lazy and only check for valid flags here, keeping it out of the
2712 * critical path in kmem_cache_alloc().
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713 */
Christoph Lameter6cb06222007-10-16 01:25:41 -07002714 BUG_ON(flags & GFP_SLAB_BUG_MASK);
2715 local_flags = flags & (GFP_CONSTRAINT_MASK|GFP_RECLAIM_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002717 /* Take the node list lock to change the colour_next on this node */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 check_irq_off();
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002719 n = cachep->node[nodeid];
2720 spin_lock(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721
2722 /* Get colour for the slab, and cal the next value. */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002723 offset = n->colour_next;
2724 n->colour_next++;
2725 if (n->colour_next >= cachep->colour)
2726 n->colour_next = 0;
2727 spin_unlock(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002729 offset *= cachep->colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730
2731 if (local_flags & __GFP_WAIT)
2732 local_irq_enable();
2733
2734 /*
2735 * The test for missing atomic flag is performed here, rather than
2736 * the more obvious place, simply to reduce the critical path length
2737 * in kmem_cache_alloc(). If a caller is seriously mis-behaving they
2738 * will eventually be caught here (where it matters).
2739 */
2740 kmem_flagcheck(cachep, flags);
2741
Andrew Mortona737b3e2006-03-22 00:08:11 -08002742 /*
2743 * Get mem for the objs. Attempt to allocate a physical page from
2744 * 'nodeid'.
Christoph Lametere498be72005-09-09 13:03:32 -07002745 */
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002746 if (!page)
2747 page = kmem_getpages(cachep, local_flags, nodeid);
2748 if (!page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749 goto failed;
2750
2751 /* Get slab management. */
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002752 slabp = alloc_slabmgmt(cachep, page, offset,
Christoph Lameter6cb06222007-10-16 01:25:41 -07002753 local_flags & ~GFP_CONSTRAINT_MASK, nodeid);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002754 if (!slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755 goto opps1;
2756
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002757 slab_map_pages(cachep, slabp, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758
Christoph Lametera35afb82007-05-16 22:10:57 -07002759 cache_init_objs(cachep, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760
2761 if (local_flags & __GFP_WAIT)
2762 local_irq_disable();
2763 check_irq_off();
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002764 spin_lock(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765
2766 /* Make slab active. */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002767 list_add_tail(&slabp->list, &(n->slabs_free));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768 STATS_INC_GROWN(cachep);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002769 n->free_objects += cachep->num;
2770 spin_unlock(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771 return 1;
Andrew Mortona737b3e2006-03-22 00:08:11 -08002772opps1:
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002773 kmem_freepages(cachep, page);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002774failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 if (local_flags & __GFP_WAIT)
2776 local_irq_disable();
2777 return 0;
2778}
2779
2780#if DEBUG
2781
2782/*
2783 * Perform extra freeing checks:
2784 * - detect bad pointers.
2785 * - POISON/RED_ZONE checking
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786 */
2787static void kfree_debugcheck(const void *objp)
2788{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789 if (!virt_addr_valid(objp)) {
2790 printk(KERN_ERR "kfree_debugcheck: out of range ptr %lxh.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002791 (unsigned long)objp);
2792 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794}
2795
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002796static inline void verify_redzone_free(struct kmem_cache *cache, void *obj)
2797{
David Woodhouseb46b8f12007-05-08 00:22:59 -07002798 unsigned long long redzone1, redzone2;
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002799
2800 redzone1 = *dbg_redzone1(cache, obj);
2801 redzone2 = *dbg_redzone2(cache, obj);
2802
2803 /*
2804 * Redzone is ok.
2805 */
2806 if (redzone1 == RED_ACTIVE && redzone2 == RED_ACTIVE)
2807 return;
2808
2809 if (redzone1 == RED_INACTIVE && redzone2 == RED_INACTIVE)
2810 slab_error(cache, "double free detected");
2811 else
2812 slab_error(cache, "memory outside object was overwritten");
2813
David Woodhouseb46b8f12007-05-08 00:22:59 -07002814 printk(KERN_ERR "%p: redzone 1:0x%llx, redzone 2:0x%llx.\n",
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002815 obj, redzone1, redzone2);
2816}
2817
Pekka Enberg343e0d72006-02-01 03:05:50 -08002818static void *cache_free_debugcheck(struct kmem_cache *cachep, void *objp,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03002819 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821 unsigned int objnr;
2822 struct slab *slabp;
2823
Matthew Wilcox80cbd912007-11-29 12:05:13 -07002824 BUG_ON(virt_to_cache(objp) != cachep);
2825
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002826 objp -= obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827 kfree_debugcheck(objp);
Joonsoo Kim56f295e2013-10-24 10:07:43 +09002828 slabp = virt_to_slab(objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829
2830 if (cachep->flags & SLAB_RED_ZONE) {
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002831 verify_redzone_free(cachep, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2833 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2834 }
2835 if (cachep->flags & SLAB_STORE_USER)
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03002836 *dbg_userword(cachep, objp) = (void *)caller;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002838 objnr = obj_to_index(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839
2840 BUG_ON(objnr >= cachep->num);
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002841 BUG_ON(objp != index_to_obj(cachep, slabp, objnr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843 if (cachep->flags & SLAB_POISON) {
2844#ifdef CONFIG_DEBUG_PAGEALLOC
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002845 if ((cachep->size % PAGE_SIZE)==0 && OFF_SLAB(cachep)) {
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03002846 store_stackinfo(cachep, objp, caller);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002847 kernel_map_pages(virt_to_page(objp),
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002848 cachep->size / PAGE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849 } else {
2850 poison_obj(cachep, objp, POISON_FREE);
2851 }
2852#else
2853 poison_obj(cachep, objp, POISON_FREE);
2854#endif
2855 }
2856 return objp;
2857}
2858
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859#else
2860#define kfree_debugcheck(x) do { } while(0)
2861#define cache_free_debugcheck(x,objp,z) (objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002862#endif
2863
Mel Gorman072bb0a2012-07-31 16:43:58 -07002864static void *cache_alloc_refill(struct kmem_cache *cachep, gfp_t flags,
2865 bool force_refill)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002866{
2867 int batchcount;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002868 struct kmem_cache_node *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869 struct array_cache *ac;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07002870 int node;
2871
Joe Korty6d2144d2008-03-05 15:04:59 -08002872 check_irq_off();
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07002873 node = numa_mem_id();
Mel Gorman072bb0a2012-07-31 16:43:58 -07002874 if (unlikely(force_refill))
2875 goto force_grow;
2876retry:
Joe Korty6d2144d2008-03-05 15:04:59 -08002877 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878 batchcount = ac->batchcount;
2879 if (!ac->touched && batchcount > BATCHREFILL_LIMIT) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002880 /*
2881 * If there was little recent activity on this cache, then
2882 * perform only a partial refill. Otherwise we could generate
2883 * refill bouncing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002884 */
2885 batchcount = BATCHREFILL_LIMIT;
2886 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002887 n = cachep->node[node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002889 BUG_ON(ac->avail > 0 || !n);
2890 spin_lock(&n->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07002891
Christoph Lameter3ded1752006-03-25 03:06:44 -08002892 /* See if we can refill from the shared array */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002893 if (n->shared && transfer_objects(ac, n->shared, batchcount)) {
2894 n->shared->touched = 1;
Christoph Lameter3ded1752006-03-25 03:06:44 -08002895 goto alloc_done;
Nick Piggin44b57f12010-01-27 22:27:40 +11002896 }
Christoph Lameter3ded1752006-03-25 03:06:44 -08002897
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898 while (batchcount > 0) {
2899 struct list_head *entry;
2900 struct slab *slabp;
2901 /* Get slab alloc is to come from. */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002902 entry = n->slabs_partial.next;
2903 if (entry == &n->slabs_partial) {
2904 n->free_touched = 1;
2905 entry = n->slabs_free.next;
2906 if (entry == &n->slabs_free)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907 goto must_grow;
2908 }
2909
2910 slabp = list_entry(entry, struct slab, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911 check_spinlock_acquired(cachep);
Pekka Enberg714b81712007-05-06 14:49:03 -07002912
2913 /*
2914 * The slab was either on partial or free list so
2915 * there must be at least one object available for
2916 * allocation.
2917 */
roel kluin249b9f32008-10-29 17:18:07 -04002918 BUG_ON(slabp->inuse >= cachep->num);
Pekka Enberg714b81712007-05-06 14:49:03 -07002919
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920 while (slabp->inuse < cachep->num && batchcount--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921 STATS_INC_ALLOCED(cachep);
2922 STATS_INC_ACTIVE(cachep);
2923 STATS_SET_HIGH(cachep);
2924
Mel Gorman072bb0a2012-07-31 16:43:58 -07002925 ac_put_obj(cachep, ac, slab_get_obj(cachep, slabp,
2926 node));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928
2929 /* move slabp to correct slabp list: */
2930 list_del(&slabp->list);
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09002931 if (slabp->free == cachep->num)
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002932 list_add(&slabp->list, &n->slabs_full);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933 else
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002934 list_add(&slabp->list, &n->slabs_partial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935 }
2936
Andrew Mortona737b3e2006-03-22 00:08:11 -08002937must_grow:
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002938 n->free_objects -= ac->avail;
Andrew Mortona737b3e2006-03-22 00:08:11 -08002939alloc_done:
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002940 spin_unlock(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941
2942 if (unlikely(!ac->avail)) {
2943 int x;
Mel Gorman072bb0a2012-07-31 16:43:58 -07002944force_grow:
Christoph Lameter3c517a62006-12-06 20:33:29 -08002945 x = cache_grow(cachep, flags | GFP_THISNODE, node, NULL);
Christoph Lametere498be72005-09-09 13:03:32 -07002946
Andrew Mortona737b3e2006-03-22 00:08:11 -08002947 /* cache_grow can reenable interrupts, then ac could change. */
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002948 ac = cpu_cache_get(cachep);
David Rientjes51cd8e62012-08-28 19:57:21 -07002949 node = numa_mem_id();
Mel Gorman072bb0a2012-07-31 16:43:58 -07002950
2951 /* no objects in sight? abort */
2952 if (!x && (ac->avail == 0 || force_refill))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953 return NULL;
2954
Andrew Mortona737b3e2006-03-22 00:08:11 -08002955 if (!ac->avail) /* objects refilled by interrupt? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002956 goto retry;
2957 }
2958 ac->touched = 1;
Mel Gorman072bb0a2012-07-31 16:43:58 -07002959
2960 return ac_get_obj(cachep, ac, flags, force_refill);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002961}
2962
Andrew Mortona737b3e2006-03-22 00:08:11 -08002963static inline void cache_alloc_debugcheck_before(struct kmem_cache *cachep,
2964 gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965{
2966 might_sleep_if(flags & __GFP_WAIT);
2967#if DEBUG
2968 kmem_flagcheck(cachep, flags);
2969#endif
2970}
2971
2972#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08002973static void *cache_alloc_debugcheck_after(struct kmem_cache *cachep,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03002974 gfp_t flags, void *objp, unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002976 if (!objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977 return objp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002978 if (cachep->flags & SLAB_POISON) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979#ifdef CONFIG_DEBUG_PAGEALLOC
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002980 if ((cachep->size % PAGE_SIZE) == 0 && OFF_SLAB(cachep))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002981 kernel_map_pages(virt_to_page(objp),
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002982 cachep->size / PAGE_SIZE, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983 else
2984 check_poison_obj(cachep, objp);
2985#else
2986 check_poison_obj(cachep, objp);
2987#endif
2988 poison_obj(cachep, objp, POISON_INUSE);
2989 }
2990 if (cachep->flags & SLAB_STORE_USER)
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03002991 *dbg_userword(cachep, objp) = (void *)caller;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992
2993 if (cachep->flags & SLAB_RED_ZONE) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002994 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE ||
2995 *dbg_redzone2(cachep, objp) != RED_INACTIVE) {
2996 slab_error(cachep, "double free, or memory outside"
2997 " object was overwritten");
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002998 printk(KERN_ERR
David Woodhouseb46b8f12007-05-08 00:22:59 -07002999 "%p: redzone 1:0x%llx, redzone 2:0x%llx\n",
Andrew Mortona737b3e2006-03-22 00:08:11 -08003000 objp, *dbg_redzone1(cachep, objp),
3001 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002 }
3003 *dbg_redzone1(cachep, objp) = RED_ACTIVE;
3004 *dbg_redzone2(cachep, objp) = RED_ACTIVE;
3005 }
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003006 objp += obj_offset(cachep);
Christoph Lameter4f104932007-05-06 14:50:17 -07003007 if (cachep->ctor && cachep->flags & SLAB_POISON)
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07003008 cachep->ctor(objp);
Tetsuo Handa7ea466f2011-07-21 09:42:45 +09003009 if (ARCH_SLAB_MINALIGN &&
3010 ((unsigned long)objp & (ARCH_SLAB_MINALIGN-1))) {
Kevin Hilmana44b56d2006-12-06 20:32:11 -08003011 printk(KERN_ERR "0x%p: not aligned to ARCH_SLAB_MINALIGN=%d\n",
Hugh Dickinsc2251502011-07-11 13:35:08 -07003012 objp, (int)ARCH_SLAB_MINALIGN);
Kevin Hilmana44b56d2006-12-06 20:32:11 -08003013 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014 return objp;
3015}
3016#else
3017#define cache_alloc_debugcheck_after(a,b,objp,d) (objp)
3018#endif
3019
Akinobu Mita773ff602008-12-23 19:37:01 +09003020static bool slab_should_failslab(struct kmem_cache *cachep, gfp_t flags)
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003021{
Christoph Lameter9b030cb2012-09-05 00:20:33 +00003022 if (cachep == kmem_cache)
Akinobu Mita773ff602008-12-23 19:37:01 +09003023 return false;
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003024
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003025 return should_failslab(cachep->object_size, flags, cachep->flags);
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003026}
3027
Pekka Enberg343e0d72006-02-01 03:05:50 -08003028static inline void *____cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003030 void *objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031 struct array_cache *ac;
Mel Gorman072bb0a2012-07-31 16:43:58 -07003032 bool force_refill = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033
Alok N Kataria5c382302005-09-27 21:45:46 -07003034 check_irq_off();
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003035
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003036 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037 if (likely(ac->avail)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003038 ac->touched = 1;
Mel Gorman072bb0a2012-07-31 16:43:58 -07003039 objp = ac_get_obj(cachep, ac, flags, false);
3040
J. R. Okajimaddbf2e82009-12-02 16:55:50 +09003041 /*
Mel Gorman072bb0a2012-07-31 16:43:58 -07003042 * Allow for the possibility all avail objects are not allowed
3043 * by the current flags
J. R. Okajimaddbf2e82009-12-02 16:55:50 +09003044 */
Mel Gorman072bb0a2012-07-31 16:43:58 -07003045 if (objp) {
3046 STATS_INC_ALLOCHIT(cachep);
3047 goto out;
3048 }
3049 force_refill = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050 }
Mel Gorman072bb0a2012-07-31 16:43:58 -07003051
3052 STATS_INC_ALLOCMISS(cachep);
3053 objp = cache_alloc_refill(cachep, flags, force_refill);
3054 /*
3055 * the 'ac' may be updated by cache_alloc_refill(),
3056 * and kmemleak_erase() requires its correct value.
3057 */
3058 ac = cpu_cache_get(cachep);
3059
3060out:
Catalin Marinasd5cff632009-06-11 13:22:40 +01003061 /*
3062 * To avoid a false negative, if an object that is in one of the
3063 * per-CPU caches is leaked, we need to make sure kmemleak doesn't
3064 * treat the array pointers as a reference to the object.
3065 */
J. R. Okajimaf3d8b532009-12-02 16:55:49 +09003066 if (objp)
3067 kmemleak_erase(&ac->entry[ac->avail]);
Alok N Kataria5c382302005-09-27 21:45:46 -07003068 return objp;
3069}
3070
Christoph Lametere498be72005-09-09 13:03:32 -07003071#ifdef CONFIG_NUMA
3072/*
Paul Jacksonb2455392006-03-24 03:16:12 -08003073 * Try allocating on another node if PF_SPREAD_SLAB|PF_MEMPOLICY.
Paul Jacksonc61afb12006-03-24 03:16:08 -08003074 *
3075 * If we are in_interrupt, then process context, including cpusets and
3076 * mempolicy, may not apply and should not be used for allocation policy.
3077 */
3078static void *alternate_node_alloc(struct kmem_cache *cachep, gfp_t flags)
3079{
3080 int nid_alloc, nid_here;
3081
Christoph Lameter765c4502006-09-27 01:50:08 -07003082 if (in_interrupt() || (flags & __GFP_THISNODE))
Paul Jacksonc61afb12006-03-24 03:16:08 -08003083 return NULL;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003084 nid_alloc = nid_here = numa_mem_id();
Paul Jacksonc61afb12006-03-24 03:16:08 -08003085 if (cpuset_do_slab_mem_spread() && (cachep->flags & SLAB_MEM_SPREAD))
Jack Steiner6adef3e2010-05-26 14:42:49 -07003086 nid_alloc = cpuset_slab_spread_node();
Paul Jacksonc61afb12006-03-24 03:16:08 -08003087 else if (current->mempolicy)
Andi Kleene7b691b2012-06-09 02:40:03 -07003088 nid_alloc = slab_node();
Paul Jacksonc61afb12006-03-24 03:16:08 -08003089 if (nid_alloc != nid_here)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003090 return ____cache_alloc_node(cachep, flags, nid_alloc);
Paul Jacksonc61afb12006-03-24 03:16:08 -08003091 return NULL;
3092}
3093
3094/*
Christoph Lameter765c4502006-09-27 01:50:08 -07003095 * Fallback function if there was no memory available and no objects on a
Christoph Lameter3c517a62006-12-06 20:33:29 -08003096 * certain node and fall back is permitted. First we scan all the
Christoph Lameter6a673682013-01-10 19:14:19 +00003097 * available node for available objects. If that fails then we
Christoph Lameter3c517a62006-12-06 20:33:29 -08003098 * perform an allocation without specifying a node. This allows the page
3099 * allocator to do its reclaim / fallback magic. We then insert the
3100 * slab into the proper nodelist and then allocate from it.
Christoph Lameter765c4502006-09-27 01:50:08 -07003101 */
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003102static void *fallback_alloc(struct kmem_cache *cache, gfp_t flags)
Christoph Lameter765c4502006-09-27 01:50:08 -07003103{
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003104 struct zonelist *zonelist;
3105 gfp_t local_flags;
Mel Gormandd1a2392008-04-28 02:12:17 -07003106 struct zoneref *z;
Mel Gorman54a6eb52008-04-28 02:12:16 -07003107 struct zone *zone;
3108 enum zone_type high_zoneidx = gfp_zone(flags);
Christoph Lameter765c4502006-09-27 01:50:08 -07003109 void *obj = NULL;
Christoph Lameter3c517a62006-12-06 20:33:29 -08003110 int nid;
Mel Gormancc9a6c82012-03-21 16:34:11 -07003111 unsigned int cpuset_mems_cookie;
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003112
3113 if (flags & __GFP_THISNODE)
3114 return NULL;
3115
Christoph Lameter6cb06222007-10-16 01:25:41 -07003116 local_flags = flags & (GFP_CONSTRAINT_MASK|GFP_RECLAIM_MASK);
Christoph Lameter765c4502006-09-27 01:50:08 -07003117
Mel Gormancc9a6c82012-03-21 16:34:11 -07003118retry_cpuset:
3119 cpuset_mems_cookie = get_mems_allowed();
Andi Kleene7b691b2012-06-09 02:40:03 -07003120 zonelist = node_zonelist(slab_node(), flags);
Mel Gormancc9a6c82012-03-21 16:34:11 -07003121
Christoph Lameter3c517a62006-12-06 20:33:29 -08003122retry:
3123 /*
3124 * Look through allowed nodes for objects available
3125 * from existing per node queues.
3126 */
Mel Gorman54a6eb52008-04-28 02:12:16 -07003127 for_each_zone_zonelist(zone, z, zonelist, high_zoneidx) {
3128 nid = zone_to_nid(zone);
Christoph Lameteraedb0eb2006-10-21 10:24:16 -07003129
Mel Gorman54a6eb52008-04-28 02:12:16 -07003130 if (cpuset_zone_allowed_hardwall(zone, flags) &&
Christoph Lameter6a673682013-01-10 19:14:19 +00003131 cache->node[nid] &&
3132 cache->node[nid]->free_objects) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003133 obj = ____cache_alloc_node(cache,
3134 flags | GFP_THISNODE, nid);
Christoph Lameter481c5342008-06-21 16:46:35 -07003135 if (obj)
3136 break;
3137 }
Christoph Lameter3c517a62006-12-06 20:33:29 -08003138 }
3139
Christoph Lametercfce6602007-05-06 14:50:17 -07003140 if (!obj) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003141 /*
3142 * This allocation will be performed within the constraints
3143 * of the current cpuset / memory policy requirements.
3144 * We may trigger various forms of reclaim on the allowed
3145 * set and go into memory reserves if necessary.
3146 */
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09003147 struct page *page;
3148
Christoph Lameterdd47ea72006-12-13 00:34:11 -08003149 if (local_flags & __GFP_WAIT)
3150 local_irq_enable();
3151 kmem_flagcheck(cache, flags);
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09003152 page = kmem_getpages(cache, local_flags, numa_mem_id());
Christoph Lameterdd47ea72006-12-13 00:34:11 -08003153 if (local_flags & __GFP_WAIT)
3154 local_irq_disable();
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09003155 if (page) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003156 /*
3157 * Insert into the appropriate per node queues
3158 */
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09003159 nid = page_to_nid(page);
3160 if (cache_grow(cache, flags, nid, page)) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003161 obj = ____cache_alloc_node(cache,
3162 flags | GFP_THISNODE, nid);
3163 if (!obj)
3164 /*
3165 * Another processor may allocate the
3166 * objects in the slab since we are
3167 * not holding any locks.
3168 */
3169 goto retry;
3170 } else {
Hugh Dickinsb6a60452007-01-05 16:36:36 -08003171 /* cache_grow already freed obj */
Christoph Lameter3c517a62006-12-06 20:33:29 -08003172 obj = NULL;
3173 }
3174 }
Christoph Lameteraedb0eb2006-10-21 10:24:16 -07003175 }
Mel Gormancc9a6c82012-03-21 16:34:11 -07003176
3177 if (unlikely(!put_mems_allowed(cpuset_mems_cookie) && !obj))
3178 goto retry_cpuset;
Christoph Lameter765c4502006-09-27 01:50:08 -07003179 return obj;
3180}
3181
3182/*
Christoph Lametere498be72005-09-09 13:03:32 -07003183 * A interface to enable slab creation on nodeid
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184 */
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003185static void *____cache_alloc_node(struct kmem_cache *cachep, gfp_t flags,
Andrew Mortona737b3e2006-03-22 00:08:11 -08003186 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07003187{
3188 struct list_head *entry;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003189 struct slab *slabp;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003190 struct kmem_cache_node *n;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003191 void *obj;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003192 int x;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193
Aaron Tomlin14e50c62013-04-26 16:15:34 +01003194 VM_BUG_ON(nodeid > num_online_nodes());
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003195 n = cachep->node[nodeid];
3196 BUG_ON(!n);
Christoph Lametere498be72005-09-09 13:03:32 -07003197
Andrew Mortona737b3e2006-03-22 00:08:11 -08003198retry:
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08003199 check_irq_off();
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003200 spin_lock(&n->list_lock);
3201 entry = n->slabs_partial.next;
3202 if (entry == &n->slabs_partial) {
3203 n->free_touched = 1;
3204 entry = n->slabs_free.next;
3205 if (entry == &n->slabs_free)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003206 goto must_grow;
3207 }
Christoph Lametere498be72005-09-09 13:03:32 -07003208
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003209 slabp = list_entry(entry, struct slab, list);
3210 check_spinlock_acquired_node(cachep, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07003211
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003212 STATS_INC_NODEALLOCS(cachep);
3213 STATS_INC_ACTIVE(cachep);
3214 STATS_SET_HIGH(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003215
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003216 BUG_ON(slabp->inuse == cachep->num);
Christoph Lametere498be72005-09-09 13:03:32 -07003217
Matthew Dobson78d382d2006-02-01 03:05:47 -08003218 obj = slab_get_obj(cachep, slabp, nodeid);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003219 n->free_objects--;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003220 /* move slabp to correct slabp list: */
3221 list_del(&slabp->list);
Christoph Lametere498be72005-09-09 13:03:32 -07003222
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09003223 if (slabp->free == cachep->num)
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003224 list_add(&slabp->list, &n->slabs_full);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003225 else
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003226 list_add(&slabp->list, &n->slabs_partial);
Christoph Lametere498be72005-09-09 13:03:32 -07003227
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003228 spin_unlock(&n->list_lock);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003229 goto done;
Christoph Lametere498be72005-09-09 13:03:32 -07003230
Andrew Mortona737b3e2006-03-22 00:08:11 -08003231must_grow:
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003232 spin_unlock(&n->list_lock);
Christoph Lameter3c517a62006-12-06 20:33:29 -08003233 x = cache_grow(cachep, flags | GFP_THISNODE, nodeid, NULL);
Christoph Lameter765c4502006-09-27 01:50:08 -07003234 if (x)
3235 goto retry;
Christoph Lametere498be72005-09-09 13:03:32 -07003236
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003237 return fallback_alloc(cachep, flags);
Christoph Lameter765c4502006-09-27 01:50:08 -07003238
Andrew Mortona737b3e2006-03-22 00:08:11 -08003239done:
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003240 return obj;
Christoph Lametere498be72005-09-09 13:03:32 -07003241}
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003242
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003243static __always_inline void *
Ezequiel Garcia48356302012-09-08 17:47:57 -03003244slab_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003245 unsigned long caller)
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003246{
3247 unsigned long save_flags;
3248 void *ptr;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003249 int slab_node = numa_mem_id();
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003250
Benjamin Herrenschmidtdcce2842009-06-18 13:24:12 +10003251 flags &= gfp_allowed_mask;
Pekka Enberg7e85ee02009-06-12 14:03:06 +03003252
Nick Piggincf40bd12009-01-21 08:12:39 +01003253 lockdep_trace_alloc(flags);
3254
Akinobu Mita773ff602008-12-23 19:37:01 +09003255 if (slab_should_failslab(cachep, flags))
Akinobu Mita824ebef2007-05-06 14:49:58 -07003256 return NULL;
3257
Glauber Costad79923f2012-12-18 14:22:48 -08003258 cachep = memcg_kmem_get_cache(cachep, flags);
3259
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003260 cache_alloc_debugcheck_before(cachep, flags);
3261 local_irq_save(save_flags);
3262
Andrew Mortoneacbbae2011-07-28 13:59:49 -07003263 if (nodeid == NUMA_NO_NODE)
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003264 nodeid = slab_node;
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003265
Christoph Lameter6a673682013-01-10 19:14:19 +00003266 if (unlikely(!cachep->node[nodeid])) {
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003267 /* Node not bootstrapped yet */
3268 ptr = fallback_alloc(cachep, flags);
3269 goto out;
3270 }
3271
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003272 if (nodeid == slab_node) {
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003273 /*
3274 * Use the locally cached objects if possible.
3275 * However ____cache_alloc does not allow fallback
3276 * to other nodes. It may fail while we still have
3277 * objects on other nodes available.
3278 */
3279 ptr = ____cache_alloc(cachep, flags);
3280 if (ptr)
3281 goto out;
3282 }
3283 /* ___cache_alloc_node can fall back to other nodes */
3284 ptr = ____cache_alloc_node(cachep, flags, nodeid);
3285 out:
3286 local_irq_restore(save_flags);
3287 ptr = cache_alloc_debugcheck_after(cachep, flags, ptr, caller);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003288 kmemleak_alloc_recursive(ptr, cachep->object_size, 1, cachep->flags,
Catalin Marinasd5cff632009-06-11 13:22:40 +01003289 flags);
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003290
Pekka Enbergc175eea2008-05-09 20:35:53 +02003291 if (likely(ptr))
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003292 kmemcheck_slab_alloc(cachep, flags, ptr, cachep->object_size);
Pekka Enbergc175eea2008-05-09 20:35:53 +02003293
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003294 if (unlikely((flags & __GFP_ZERO) && ptr))
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003295 memset(ptr, 0, cachep->object_size);
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003296
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003297 return ptr;
3298}
3299
3300static __always_inline void *
3301__do_cache_alloc(struct kmem_cache *cache, gfp_t flags)
3302{
3303 void *objp;
3304
3305 if (unlikely(current->flags & (PF_SPREAD_SLAB | PF_MEMPOLICY))) {
3306 objp = alternate_node_alloc(cache, flags);
3307 if (objp)
3308 goto out;
3309 }
3310 objp = ____cache_alloc(cache, flags);
3311
3312 /*
3313 * We may just have run out of memory on the local node.
3314 * ____cache_alloc_node() knows how to locate memory on other nodes
3315 */
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003316 if (!objp)
3317 objp = ____cache_alloc_node(cache, flags, numa_mem_id());
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003318
3319 out:
3320 return objp;
3321}
3322#else
3323
3324static __always_inline void *
3325__do_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
3326{
3327 return ____cache_alloc(cachep, flags);
3328}
3329
3330#endif /* CONFIG_NUMA */
3331
3332static __always_inline void *
Ezequiel Garcia48356302012-09-08 17:47:57 -03003333slab_alloc(struct kmem_cache *cachep, gfp_t flags, unsigned long caller)
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003334{
3335 unsigned long save_flags;
3336 void *objp;
3337
Benjamin Herrenschmidtdcce2842009-06-18 13:24:12 +10003338 flags &= gfp_allowed_mask;
Pekka Enberg7e85ee02009-06-12 14:03:06 +03003339
Nick Piggincf40bd12009-01-21 08:12:39 +01003340 lockdep_trace_alloc(flags);
3341
Akinobu Mita773ff602008-12-23 19:37:01 +09003342 if (slab_should_failslab(cachep, flags))
Akinobu Mita824ebef2007-05-06 14:49:58 -07003343 return NULL;
3344
Glauber Costad79923f2012-12-18 14:22:48 -08003345 cachep = memcg_kmem_get_cache(cachep, flags);
3346
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003347 cache_alloc_debugcheck_before(cachep, flags);
3348 local_irq_save(save_flags);
3349 objp = __do_cache_alloc(cachep, flags);
3350 local_irq_restore(save_flags);
3351 objp = cache_alloc_debugcheck_after(cachep, flags, objp, caller);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003352 kmemleak_alloc_recursive(objp, cachep->object_size, 1, cachep->flags,
Catalin Marinasd5cff632009-06-11 13:22:40 +01003353 flags);
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003354 prefetchw(objp);
3355
Pekka Enbergc175eea2008-05-09 20:35:53 +02003356 if (likely(objp))
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003357 kmemcheck_slab_alloc(cachep, flags, objp, cachep->object_size);
Pekka Enbergc175eea2008-05-09 20:35:53 +02003358
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003359 if (unlikely((flags & __GFP_ZERO) && objp))
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003360 memset(objp, 0, cachep->object_size);
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003361
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003362 return objp;
3363}
Christoph Lametere498be72005-09-09 13:03:32 -07003364
3365/*
3366 * Caller needs to acquire correct kmem_list's list_lock
3367 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003368static void free_block(struct kmem_cache *cachep, void **objpp, int nr_objects,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003369 int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003370{
3371 int i;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003372 struct kmem_cache_node *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373
3374 for (i = 0; i < nr_objects; i++) {
Mel Gorman072bb0a2012-07-31 16:43:58 -07003375 void *objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376 struct slab *slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377
Mel Gorman072bb0a2012-07-31 16:43:58 -07003378 clear_obj_pfmemalloc(&objpp[i]);
3379 objp = objpp[i];
3380
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -08003381 slabp = virt_to_slab(objp);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003382 n = cachep->node[node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383 list_del(&slabp->list);
Christoph Lameterff694162005-09-22 21:44:02 -07003384 check_spinlock_acquired_node(cachep, node);
Matthew Dobson78d382d2006-02-01 03:05:47 -08003385 slab_put_obj(cachep, slabp, objp, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003386 STATS_DEC_ACTIVE(cachep);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003387 n->free_objects++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388
3389 /* fixup slab chains */
3390 if (slabp->inuse == 0) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003391 if (n->free_objects > n->free_limit) {
3392 n->free_objects -= cachep->num;
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07003393 /* No need to drop any previously held
3394 * lock here, even if we have a off-slab slab
3395 * descriptor it is guaranteed to come from
3396 * a different cache, refer to comments before
3397 * alloc_slabmgmt.
3398 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003399 slab_destroy(cachep, slabp);
3400 } else {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003401 list_add(&slabp->list, &n->slabs_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003402 }
3403 } else {
3404 /* Unconditionally move a slab to the end of the
3405 * partial list on free - maximum time for the
3406 * other objects to be freed, too.
3407 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003408 list_add_tail(&slabp->list, &n->slabs_partial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409 }
3410 }
3411}
3412
Pekka Enberg343e0d72006-02-01 03:05:50 -08003413static void cache_flusharray(struct kmem_cache *cachep, struct array_cache *ac)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414{
3415 int batchcount;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003416 struct kmem_cache_node *n;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003417 int node = numa_mem_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003418
3419 batchcount = ac->batchcount;
3420#if DEBUG
3421 BUG_ON(!batchcount || batchcount > ac->avail);
3422#endif
3423 check_irq_off();
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003424 n = cachep->node[node];
3425 spin_lock(&n->list_lock);
3426 if (n->shared) {
3427 struct array_cache *shared_array = n->shared;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003428 int max = shared_array->limit - shared_array->avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003429 if (max) {
3430 if (batchcount > max)
3431 batchcount = max;
Christoph Lametere498be72005-09-09 13:03:32 -07003432 memcpy(&(shared_array->entry[shared_array->avail]),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003433 ac->entry, sizeof(void *) * batchcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003434 shared_array->avail += batchcount;
3435 goto free_done;
3436 }
3437 }
3438
Christoph Lameterff694162005-09-22 21:44:02 -07003439 free_block(cachep, ac->entry, batchcount, node);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003440free_done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003441#if STATS
3442 {
3443 int i = 0;
3444 struct list_head *p;
3445
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003446 p = n->slabs_free.next;
3447 while (p != &(n->slabs_free)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003448 struct slab *slabp;
3449
3450 slabp = list_entry(p, struct slab, list);
3451 BUG_ON(slabp->inuse);
3452
3453 i++;
3454 p = p->next;
3455 }
3456 STATS_SET_FREEABLE(cachep, i);
3457 }
3458#endif
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003459 spin_unlock(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003460 ac->avail -= batchcount;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003461 memmove(ac->entry, &(ac->entry[batchcount]), sizeof(void *)*ac->avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462}
3463
3464/*
Andrew Mortona737b3e2006-03-22 00:08:11 -08003465 * Release an obj back to its cache. If the obj has a constructed state, it must
3466 * be in this state _before_ it is released. Called with disabled ints.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003467 */
Suleiman Souhlala947eb92011-06-02 00:16:42 -07003468static inline void __cache_free(struct kmem_cache *cachep, void *objp,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003469 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470{
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003471 struct array_cache *ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472
3473 check_irq_off();
Catalin Marinasd5cff632009-06-11 13:22:40 +01003474 kmemleak_free_recursive(objp, cachep->flags);
Suleiman Souhlala947eb92011-06-02 00:16:42 -07003475 objp = cache_free_debugcheck(cachep, objp, caller);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003477 kmemcheck_slab_free(cachep, objp, cachep->object_size);
Pekka Enbergc175eea2008-05-09 20:35:53 +02003478
Siddha, Suresh B1807a1a2007-08-22 14:01:49 -07003479 /*
3480 * Skip calling cache_free_alien() when the platform is not numa.
3481 * This will avoid cache misses that happen while accessing slabp (which
3482 * is per page memory reference) to get nodeid. Instead use a global
3483 * variable to skip the call, which is mostly likely to be present in
3484 * the cache.
3485 */
Mel Gormanb6e68bc2009-06-16 15:32:16 -07003486 if (nr_online_nodes > 1 && cache_free_alien(cachep, objp))
Pekka Enberg729bd0b2006-06-23 02:03:05 -07003487 return;
Christoph Lametere498be72005-09-09 13:03:32 -07003488
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489 if (likely(ac->avail < ac->limit)) {
3490 STATS_INC_FREEHIT(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003491 } else {
3492 STATS_INC_FREEMISS(cachep);
3493 cache_flusharray(cachep, ac);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003494 }
Zhao Jin42c8c992011-08-27 00:26:17 +08003495
Mel Gorman072bb0a2012-07-31 16:43:58 -07003496 ac_put_obj(cachep, ac, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497}
3498
3499/**
3500 * kmem_cache_alloc - Allocate an object
3501 * @cachep: The cache to allocate from.
3502 * @flags: See kmalloc().
3503 *
3504 * Allocate an object from this cache. The flags are only relevant
3505 * if the cache has no available objects.
3506 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003507void *kmem_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003508{
Ezequiel Garcia48356302012-09-08 17:47:57 -03003509 void *ret = slab_alloc(cachep, flags, _RET_IP_);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003510
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003511 trace_kmem_cache_alloc(_RET_IP_, ret,
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003512 cachep->object_size, cachep->size, flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003513
3514 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003515}
3516EXPORT_SYMBOL(kmem_cache_alloc);
3517
Li Zefan0f24f122009-12-11 15:45:30 +08003518#ifdef CONFIG_TRACING
Steven Rostedt85beb582010-11-24 16:23:34 -05003519void *
Ezequiel Garcia40521472012-09-08 17:47:56 -03003520kmem_cache_alloc_trace(struct kmem_cache *cachep, gfp_t flags, size_t size)
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003521{
Steven Rostedt85beb582010-11-24 16:23:34 -05003522 void *ret;
3523
Ezequiel Garcia48356302012-09-08 17:47:57 -03003524 ret = slab_alloc(cachep, flags, _RET_IP_);
Steven Rostedt85beb582010-11-24 16:23:34 -05003525
3526 trace_kmalloc(_RET_IP_, ret,
Ezequiel Garciaff4fcd02012-09-08 17:47:52 -03003527 size, cachep->size, flags);
Steven Rostedt85beb582010-11-24 16:23:34 -05003528 return ret;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003529}
Steven Rostedt85beb582010-11-24 16:23:34 -05003530EXPORT_SYMBOL(kmem_cache_alloc_trace);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003531#endif
3532
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533#ifdef CONFIG_NUMA
Zhouping Liud0d04b72013-05-16 11:36:23 +08003534/**
3535 * kmem_cache_alloc_node - Allocate an object on the specified node
3536 * @cachep: The cache to allocate from.
3537 * @flags: See kmalloc().
3538 * @nodeid: node number of the target node.
3539 *
3540 * Identical to kmem_cache_alloc but it will allocate memory on the given
3541 * node, which can improve the performance for cpu bound structures.
3542 *
3543 * Fallback to other node is possible if __GFP_THISNODE is not set.
3544 */
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003545void *kmem_cache_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid)
3546{
Ezequiel Garcia48356302012-09-08 17:47:57 -03003547 void *ret = slab_alloc_node(cachep, flags, nodeid, _RET_IP_);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003548
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003549 trace_kmem_cache_alloc_node(_RET_IP_, ret,
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003550 cachep->object_size, cachep->size,
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003551 flags, nodeid);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003552
3553 return ret;
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003554}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003555EXPORT_SYMBOL(kmem_cache_alloc_node);
3556
Li Zefan0f24f122009-12-11 15:45:30 +08003557#ifdef CONFIG_TRACING
Ezequiel Garcia40521472012-09-08 17:47:56 -03003558void *kmem_cache_alloc_node_trace(struct kmem_cache *cachep,
Steven Rostedt85beb582010-11-24 16:23:34 -05003559 gfp_t flags,
Ezequiel Garcia40521472012-09-08 17:47:56 -03003560 int nodeid,
3561 size_t size)
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003562{
Steven Rostedt85beb582010-11-24 16:23:34 -05003563 void *ret;
3564
Ezequiel Garcia592f4142012-09-25 08:07:08 -03003565 ret = slab_alloc_node(cachep, flags, nodeid, _RET_IP_);
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003566
Steven Rostedt85beb582010-11-24 16:23:34 -05003567 trace_kmalloc_node(_RET_IP_, ret,
Ezequiel Garciaff4fcd02012-09-08 17:47:52 -03003568 size, cachep->size,
Steven Rostedt85beb582010-11-24 16:23:34 -05003569 flags, nodeid);
3570 return ret;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003571}
Steven Rostedt85beb582010-11-24 16:23:34 -05003572EXPORT_SYMBOL(kmem_cache_alloc_node_trace);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003573#endif
3574
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003575static __always_inline void *
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003576__do_kmalloc_node(size_t size, gfp_t flags, int node, unsigned long caller)
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003577{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003578 struct kmem_cache *cachep;
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003579
Christoph Lameter2c59dd62013-01-10 19:14:19 +00003580 cachep = kmalloc_slab(size, flags);
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003581 if (unlikely(ZERO_OR_NULL_PTR(cachep)))
3582 return cachep;
Ezequiel Garcia40521472012-09-08 17:47:56 -03003583 return kmem_cache_alloc_node_trace(cachep, flags, node, size);
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003584}
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003585
Li Zefan0bb38a52009-12-11 15:45:50 +08003586#if defined(CONFIG_DEBUG_SLAB) || defined(CONFIG_TRACING)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003587void *__kmalloc_node(size_t size, gfp_t flags, int node)
3588{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003589 return __do_kmalloc_node(size, flags, node, _RET_IP_);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003590}
Christoph Hellwigdbe5e692006-09-25 23:31:36 -07003591EXPORT_SYMBOL(__kmalloc_node);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003592
3593void *__kmalloc_node_track_caller(size_t size, gfp_t flags,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003594 int node, unsigned long caller)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003595{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003596 return __do_kmalloc_node(size, flags, node, caller);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003597}
3598EXPORT_SYMBOL(__kmalloc_node_track_caller);
3599#else
3600void *__kmalloc_node(size_t size, gfp_t flags, int node)
3601{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003602 return __do_kmalloc_node(size, flags, node, 0);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003603}
3604EXPORT_SYMBOL(__kmalloc_node);
Li Zefan0bb38a52009-12-11 15:45:50 +08003605#endif /* CONFIG_DEBUG_SLAB || CONFIG_TRACING */
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003606#endif /* CONFIG_NUMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003607
3608/**
Paul Drynoff800590f2006-06-23 02:03:48 -07003609 * __do_kmalloc - allocate memory
Linus Torvalds1da177e2005-04-16 15:20:36 -07003610 * @size: how many bytes of memory are required.
Paul Drynoff800590f2006-06-23 02:03:48 -07003611 * @flags: the type of memory to allocate (see kmalloc).
Randy Dunlap911851e2006-03-22 00:08:14 -08003612 * @caller: function caller for debug tracking of the caller
Linus Torvalds1da177e2005-04-16 15:20:36 -07003613 */
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003614static __always_inline void *__do_kmalloc(size_t size, gfp_t flags,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003615 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003616{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003617 struct kmem_cache *cachep;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003618 void *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003620 /* If you want to save a few bytes .text space: replace
3621 * __ with kmem_.
3622 * Then kmalloc uses the uninlined functions instead of the inline
3623 * functions.
3624 */
Christoph Lameter2c59dd62013-01-10 19:14:19 +00003625 cachep = kmalloc_slab(size, flags);
Linus Torvaldsa5c96d82007-07-19 13:17:15 -07003626 if (unlikely(ZERO_OR_NULL_PTR(cachep)))
3627 return cachep;
Ezequiel Garcia48356302012-09-08 17:47:57 -03003628 ret = slab_alloc(cachep, flags, caller);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003629
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003630 trace_kmalloc(caller, ret,
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003631 size, cachep->size, flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003632
3633 return ret;
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003634}
3635
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003636
Li Zefan0bb38a52009-12-11 15:45:50 +08003637#if defined(CONFIG_DEBUG_SLAB) || defined(CONFIG_TRACING)
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003638void *__kmalloc(size_t size, gfp_t flags)
3639{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003640 return __do_kmalloc(size, flags, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003641}
3642EXPORT_SYMBOL(__kmalloc);
3643
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003644void *__kmalloc_track_caller(size_t size, gfp_t flags, unsigned long caller)
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003645{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003646 return __do_kmalloc(size, flags, caller);
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003647}
3648EXPORT_SYMBOL(__kmalloc_track_caller);
Christoph Hellwig1d2c8ee2006-10-04 02:15:25 -07003649
3650#else
3651void *__kmalloc(size_t size, gfp_t flags)
3652{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003653 return __do_kmalloc(size, flags, 0);
Christoph Hellwig1d2c8ee2006-10-04 02:15:25 -07003654}
3655EXPORT_SYMBOL(__kmalloc);
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003656#endif
3657
Linus Torvalds1da177e2005-04-16 15:20:36 -07003658/**
3659 * kmem_cache_free - Deallocate an object
3660 * @cachep: The cache the allocation was from.
3661 * @objp: The previously allocated object.
3662 *
3663 * Free an object which was previously allocated from this
3664 * cache.
3665 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003666void kmem_cache_free(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003667{
3668 unsigned long flags;
Glauber Costab9ce5ef2012-12-18 14:22:46 -08003669 cachep = cache_from_obj(cachep, objp);
3670 if (!cachep)
3671 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003672
3673 local_irq_save(flags);
Feng Tangd97d4762012-07-02 14:29:10 +08003674 debug_check_no_locks_freed(objp, cachep->object_size);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -07003675 if (!(cachep->flags & SLAB_DEBUG_OBJECTS))
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003676 debug_check_no_obj_freed(objp, cachep->object_size);
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003677 __cache_free(cachep, objp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003678 local_irq_restore(flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003679
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003680 trace_kmem_cache_free(_RET_IP_, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003681}
3682EXPORT_SYMBOL(kmem_cache_free);
3683
3684/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685 * kfree - free previously allocated memory
3686 * @objp: pointer returned by kmalloc.
3687 *
Pekka Enberg80e93ef2005-09-09 13:10:16 -07003688 * If @objp is NULL, no operation is performed.
3689 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003690 * Don't free memory not originally allocated by kmalloc()
3691 * or you will run into trouble.
3692 */
3693void kfree(const void *objp)
3694{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003695 struct kmem_cache *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003696 unsigned long flags;
3697
Pekka Enberg2121db72009-03-25 11:05:57 +02003698 trace_kfree(_RET_IP_, objp);
3699
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003700 if (unlikely(ZERO_OR_NULL_PTR(objp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701 return;
3702 local_irq_save(flags);
3703 kfree_debugcheck(objp);
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -08003704 c = virt_to_cache(objp);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003705 debug_check_no_locks_freed(objp, c->object_size);
3706
3707 debug_check_no_obj_freed(objp, c->object_size);
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003708 __cache_free(c, (void *)objp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003709 local_irq_restore(flags);
3710}
3711EXPORT_SYMBOL(kfree);
3712
Christoph Lametere498be72005-09-09 13:03:32 -07003713/*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003714 * This initializes kmem_cache_node or resizes various caches for all nodes.
Christoph Lametere498be72005-09-09 13:03:32 -07003715 */
Pekka Enberg83b519e2009-06-10 19:40:04 +03003716static int alloc_kmemlist(struct kmem_cache *cachep, gfp_t gfp)
Christoph Lametere498be72005-09-09 13:03:32 -07003717{
3718 int node;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003719 struct kmem_cache_node *n;
Christoph Lametercafeb022006-03-25 03:06:46 -08003720 struct array_cache *new_shared;
Paul Menage3395ee02006-12-06 20:32:16 -08003721 struct array_cache **new_alien = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07003722
Mel Gorman9c09a952008-01-24 05:49:54 -08003723 for_each_online_node(node) {
Christoph Lametercafeb022006-03-25 03:06:46 -08003724
Paul Menage3395ee02006-12-06 20:32:16 -08003725 if (use_alien_caches) {
Pekka Enberg83b519e2009-06-10 19:40:04 +03003726 new_alien = alloc_alien_cache(node, cachep->limit, gfp);
Paul Menage3395ee02006-12-06 20:32:16 -08003727 if (!new_alien)
3728 goto fail;
3729 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003730
Eric Dumazet63109842007-05-06 14:49:28 -07003731 new_shared = NULL;
3732 if (cachep->shared) {
3733 new_shared = alloc_arraycache(node,
Christoph Lameter0718dc22006-03-25 03:06:47 -08003734 cachep->shared*cachep->batchcount,
Pekka Enberg83b519e2009-06-10 19:40:04 +03003735 0xbaadf00d, gfp);
Eric Dumazet63109842007-05-06 14:49:28 -07003736 if (!new_shared) {
3737 free_alien_cache(new_alien);
3738 goto fail;
3739 }
Christoph Lameter0718dc22006-03-25 03:06:47 -08003740 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003741
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003742 n = cachep->node[node];
3743 if (n) {
3744 struct array_cache *shared = n->shared;
Christoph Lametercafeb022006-03-25 03:06:46 -08003745
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003746 spin_lock_irq(&n->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07003747
Christoph Lametercafeb022006-03-25 03:06:46 -08003748 if (shared)
Christoph Lameter0718dc22006-03-25 03:06:47 -08003749 free_block(cachep, shared->entry,
3750 shared->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -07003751
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003752 n->shared = new_shared;
3753 if (!n->alien) {
3754 n->alien = new_alien;
Christoph Lametere498be72005-09-09 13:03:32 -07003755 new_alien = NULL;
3756 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003757 n->free_limit = (1 + nr_cpus_node(node)) *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003758 cachep->batchcount + cachep->num;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003759 spin_unlock_irq(&n->list_lock);
Christoph Lametercafeb022006-03-25 03:06:46 -08003760 kfree(shared);
Christoph Lametere498be72005-09-09 13:03:32 -07003761 free_alien_cache(new_alien);
3762 continue;
3763 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003764 n = kmalloc_node(sizeof(struct kmem_cache_node), gfp, node);
3765 if (!n) {
Christoph Lameter0718dc22006-03-25 03:06:47 -08003766 free_alien_cache(new_alien);
3767 kfree(new_shared);
Christoph Lametere498be72005-09-09 13:03:32 -07003768 goto fail;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003769 }
Christoph Lametere498be72005-09-09 13:03:32 -07003770
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003771 kmem_cache_node_init(n);
3772 n->next_reap = jiffies + REAPTIMEOUT_LIST3 +
Andrew Mortona737b3e2006-03-22 00:08:11 -08003773 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003774 n->shared = new_shared;
3775 n->alien = new_alien;
3776 n->free_limit = (1 + nr_cpus_node(node)) *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003777 cachep->batchcount + cachep->num;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003778 cachep->node[node] = n;
Christoph Lametere498be72005-09-09 13:03:32 -07003779 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003780 return 0;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003781
Andrew Mortona737b3e2006-03-22 00:08:11 -08003782fail:
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003783 if (!cachep->list.next) {
Christoph Lameter0718dc22006-03-25 03:06:47 -08003784 /* Cache is not active yet. Roll back what we did */
3785 node--;
3786 while (node >= 0) {
Christoph Lameter6a673682013-01-10 19:14:19 +00003787 if (cachep->node[node]) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003788 n = cachep->node[node];
Christoph Lameter0718dc22006-03-25 03:06:47 -08003789
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003790 kfree(n->shared);
3791 free_alien_cache(n->alien);
3792 kfree(n);
Christoph Lameter6a673682013-01-10 19:14:19 +00003793 cachep->node[node] = NULL;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003794 }
3795 node--;
3796 }
3797 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003798 return -ENOMEM;
Christoph Lametere498be72005-09-09 13:03:32 -07003799}
3800
Linus Torvalds1da177e2005-04-16 15:20:36 -07003801struct ccupdate_struct {
Pekka Enberg343e0d72006-02-01 03:05:50 -08003802 struct kmem_cache *cachep;
Eric Dumazetacfe7d72011-07-25 08:55:42 +02003803 struct array_cache *new[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804};
3805
3806static void do_ccupdate_local(void *info)
3807{
Andrew Mortona737b3e2006-03-22 00:08:11 -08003808 struct ccupdate_struct *new = info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003809 struct array_cache *old;
3810
3811 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003812 old = cpu_cache_get(new->cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003813
Linus Torvalds1da177e2005-04-16 15:20:36 -07003814 new->cachep->array[smp_processor_id()] = new->new[smp_processor_id()];
3815 new->new[smp_processor_id()] = old;
3816}
3817
Christoph Lameter18004c52012-07-06 15:25:12 -05003818/* Always called with the slab_mutex held */
Glauber Costa943a4512012-12-18 14:23:03 -08003819static int __do_tune_cpucache(struct kmem_cache *cachep, int limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03003820 int batchcount, int shared, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003821{
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003822 struct ccupdate_struct *new;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07003823 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824
Eric Dumazetacfe7d72011-07-25 08:55:42 +02003825 new = kzalloc(sizeof(*new) + nr_cpu_ids * sizeof(struct array_cache *),
3826 gfp);
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003827 if (!new)
3828 return -ENOMEM;
3829
Christoph Lametere498be72005-09-09 13:03:32 -07003830 for_each_online_cpu(i) {
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003831 new->new[i] = alloc_arraycache(cpu_to_mem(i), limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03003832 batchcount, gfp);
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003833 if (!new->new[i]) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003834 for (i--; i >= 0; i--)
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003835 kfree(new->new[i]);
3836 kfree(new);
Christoph Lametere498be72005-09-09 13:03:32 -07003837 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003838 }
3839 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003840 new->cachep = cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841
Jens Axboe15c8b6c2008-05-09 09:39:44 +02003842 on_each_cpu(do_ccupdate_local, (void *)new, 1);
Christoph Lametere498be72005-09-09 13:03:32 -07003843
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844 check_irq_on();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003845 cachep->batchcount = batchcount;
3846 cachep->limit = limit;
Christoph Lametere498be72005-09-09 13:03:32 -07003847 cachep->shared = shared;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003848
Christoph Lametere498be72005-09-09 13:03:32 -07003849 for_each_online_cpu(i) {
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003850 struct array_cache *ccold = new->new[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003851 if (!ccold)
3852 continue;
Christoph Lameter6a673682013-01-10 19:14:19 +00003853 spin_lock_irq(&cachep->node[cpu_to_mem(i)]->list_lock);
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003854 free_block(cachep, ccold->entry, ccold->avail, cpu_to_mem(i));
Christoph Lameter6a673682013-01-10 19:14:19 +00003855 spin_unlock_irq(&cachep->node[cpu_to_mem(i)]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003856 kfree(ccold);
3857 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003858 kfree(new);
Pekka Enberg83b519e2009-06-10 19:40:04 +03003859 return alloc_kmemlist(cachep, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003860}
3861
Glauber Costa943a4512012-12-18 14:23:03 -08003862static int do_tune_cpucache(struct kmem_cache *cachep, int limit,
3863 int batchcount, int shared, gfp_t gfp)
3864{
3865 int ret;
3866 struct kmem_cache *c = NULL;
3867 int i = 0;
3868
3869 ret = __do_tune_cpucache(cachep, limit, batchcount, shared, gfp);
3870
3871 if (slab_state < FULL)
3872 return ret;
3873
3874 if ((ret < 0) || !is_root_cache(cachep))
3875 return ret;
3876
Glauber Costaebe945c2012-12-18 14:23:10 -08003877 VM_BUG_ON(!mutex_is_locked(&slab_mutex));
Glauber Costa943a4512012-12-18 14:23:03 -08003878 for_each_memcg_cache_index(i) {
3879 c = cache_from_memcg(cachep, i);
3880 if (c)
3881 /* return value determined by the parent cache only */
3882 __do_tune_cpucache(c, limit, batchcount, shared, gfp);
3883 }
3884
3885 return ret;
3886}
3887
Christoph Lameter18004c52012-07-06 15:25:12 -05003888/* Called with slab_mutex held always */
Pekka Enberg83b519e2009-06-10 19:40:04 +03003889static int enable_cpucache(struct kmem_cache *cachep, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003890{
3891 int err;
Glauber Costa943a4512012-12-18 14:23:03 -08003892 int limit = 0;
3893 int shared = 0;
3894 int batchcount = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003895
Glauber Costa943a4512012-12-18 14:23:03 -08003896 if (!is_root_cache(cachep)) {
3897 struct kmem_cache *root = memcg_root_cache(cachep);
3898 limit = root->limit;
3899 shared = root->shared;
3900 batchcount = root->batchcount;
3901 }
3902
3903 if (limit && shared && batchcount)
3904 goto skip_setup;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003905 /*
3906 * The head array serves three purposes:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907 * - create a LIFO ordering, i.e. return objects that are cache-warm
3908 * - reduce the number of spinlock operations.
Andrew Mortona737b3e2006-03-22 00:08:11 -08003909 * - reduce the number of linked list operations on the slab and
Linus Torvalds1da177e2005-04-16 15:20:36 -07003910 * bufctl chains: array operations are cheaper.
3911 * The numbers are guessed, we should auto-tune as described by
3912 * Bonwick.
3913 */
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003914 if (cachep->size > 131072)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915 limit = 1;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003916 else if (cachep->size > PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003917 limit = 8;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003918 else if (cachep->size > 1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003919 limit = 24;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003920 else if (cachep->size > 256)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921 limit = 54;
3922 else
3923 limit = 120;
3924
Andrew Mortona737b3e2006-03-22 00:08:11 -08003925 /*
3926 * CPU bound tasks (e.g. network routing) can exhibit cpu bound
Linus Torvalds1da177e2005-04-16 15:20:36 -07003927 * allocation behaviour: Most allocs on one cpu, most free operations
3928 * on another cpu. For these cases, an efficient object passing between
3929 * cpus is necessary. This is provided by a shared array. The array
3930 * replaces Bonwick's magazine layer.
3931 * On uniprocessor, it's functionally equivalent (but less efficient)
3932 * to a larger limit. Thus disabled by default.
3933 */
3934 shared = 0;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003935 if (cachep->size <= PAGE_SIZE && num_possible_cpus() > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003936 shared = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003937
3938#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08003939 /*
3940 * With debugging enabled, large batchcount lead to excessively long
3941 * periods with disabled local interrupts. Limit the batchcount
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942 */
3943 if (limit > 32)
3944 limit = 32;
3945#endif
Glauber Costa943a4512012-12-18 14:23:03 -08003946 batchcount = (limit + 1) / 2;
3947skip_setup:
3948 err = do_tune_cpucache(cachep, limit, batchcount, shared, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003949 if (err)
3950 printk(KERN_ERR "enable_cpucache failed for %s, error %d.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003951 cachep->name, -err);
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07003952 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953}
3954
Christoph Lameter1b552532006-03-22 00:09:07 -08003955/*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003956 * Drain an array if it contains any elements taking the node lock only if
3957 * necessary. Note that the node listlock also protects the array_cache
Christoph Lameterb18e7e62006-03-22 00:09:07 -08003958 * if drain_array() is used on the shared array.
Christoph Lameter1b552532006-03-22 00:09:07 -08003959 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003960static void drain_array(struct kmem_cache *cachep, struct kmem_cache_node *n,
Christoph Lameter1b552532006-03-22 00:09:07 -08003961 struct array_cache *ac, int force, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003962{
3963 int tofree;
3964
Christoph Lameter1b552532006-03-22 00:09:07 -08003965 if (!ac || !ac->avail)
3966 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003967 if (ac->touched && !force) {
3968 ac->touched = 0;
Christoph Lameterb18e7e62006-03-22 00:09:07 -08003969 } else {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003970 spin_lock_irq(&n->list_lock);
Christoph Lameterb18e7e62006-03-22 00:09:07 -08003971 if (ac->avail) {
3972 tofree = force ? ac->avail : (ac->limit + 4) / 5;
3973 if (tofree > ac->avail)
3974 tofree = (ac->avail + 1) / 2;
3975 free_block(cachep, ac->entry, tofree, node);
3976 ac->avail -= tofree;
3977 memmove(ac->entry, &(ac->entry[tofree]),
3978 sizeof(void *) * ac->avail);
3979 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003980 spin_unlock_irq(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003981 }
3982}
3983
3984/**
3985 * cache_reap - Reclaim memory from caches.
Randy Dunlap05fb6bf2007-02-28 20:12:13 -08003986 * @w: work descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -07003987 *
3988 * Called from workqueue/eventd every few seconds.
3989 * Purpose:
3990 * - clear the per-cpu caches for this CPU.
3991 * - return freeable pages to the main free memory pool.
3992 *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003993 * If we cannot acquire the cache chain mutex then just give up - we'll try
3994 * again on the next iteration.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003995 */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08003996static void cache_reap(struct work_struct *w)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003997{
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07003998 struct kmem_cache *searchp;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003999 struct kmem_cache_node *n;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07004000 int node = numa_mem_id();
Jean Delvarebf6aede2009-04-02 16:56:54 -07004001 struct delayed_work *work = to_delayed_work(w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004002
Christoph Lameter18004c52012-07-06 15:25:12 -05004003 if (!mutex_trylock(&slab_mutex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004004 /* Give up. Setup the next iteration. */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004005 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004006
Christoph Lameter18004c52012-07-06 15:25:12 -05004007 list_for_each_entry(searchp, &slab_caches, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008 check_irq_on();
4009
Christoph Lameter35386e32006-03-22 00:09:05 -08004010 /*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004011 * We only take the node lock if absolutely necessary and we
Christoph Lameter35386e32006-03-22 00:09:05 -08004012 * have established with reasonable certainty that
4013 * we can do some work if the lock was obtained.
4014 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004015 n = searchp->node[node];
Christoph Lameter35386e32006-03-22 00:09:05 -08004016
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004017 reap_alien(searchp, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004018
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004019 drain_array(searchp, n, cpu_cache_get(searchp), 0, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004020
Christoph Lameter35386e32006-03-22 00:09:05 -08004021 /*
4022 * These are racy checks but it does not matter
4023 * if we skip one check or scan twice.
4024 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004025 if (time_after(n->next_reap, jiffies))
Christoph Lameter35386e32006-03-22 00:09:05 -08004026 goto next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004027
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004028 n->next_reap = jiffies + REAPTIMEOUT_LIST3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004030 drain_array(searchp, n, n->shared, 0, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004031
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004032 if (n->free_touched)
4033 n->free_touched = 0;
Christoph Lametered11d9e2006-06-30 01:55:45 -07004034 else {
4035 int freed;
4036
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004037 freed = drain_freelist(searchp, n, (n->free_limit +
Christoph Lametered11d9e2006-06-30 01:55:45 -07004038 5 * searchp->num - 1) / (5 * searchp->num));
4039 STATS_ADD_REAPED(searchp, freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004040 }
Christoph Lameter35386e32006-03-22 00:09:05 -08004041next:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004042 cond_resched();
4043 }
4044 check_irq_on();
Christoph Lameter18004c52012-07-06 15:25:12 -05004045 mutex_unlock(&slab_mutex);
Christoph Lameter8fce4d82006-03-09 17:33:54 -08004046 next_reap_node();
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004047out:
Andrew Mortona737b3e2006-03-22 00:08:11 -08004048 /* Set up the next iteration */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004049 schedule_delayed_work(work, round_jiffies_relative(REAPTIMEOUT_CPUC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004050}
4051
Linus Torvalds158a9622008-01-02 13:04:48 -08004052#ifdef CONFIG_SLABINFO
Glauber Costa0d7561c2012-10-19 18:20:27 +04004053void get_slabinfo(struct kmem_cache *cachep, struct slabinfo *sinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004054{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004055 struct slab *slabp;
4056 unsigned long active_objs;
4057 unsigned long num_objs;
4058 unsigned long active_slabs = 0;
4059 unsigned long num_slabs, free_objects = 0, shared_avail = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07004060 const char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004061 char *error = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07004062 int node;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004063 struct kmem_cache_node *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004064
Linus Torvalds1da177e2005-04-16 15:20:36 -07004065 active_objs = 0;
4066 num_slabs = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07004067 for_each_online_node(node) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004068 n = cachep->node[node];
4069 if (!n)
Christoph Lametere498be72005-09-09 13:03:32 -07004070 continue;
4071
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08004072 check_irq_on();
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004073 spin_lock_irq(&n->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07004074
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004075 list_for_each_entry(slabp, &n->slabs_full, list) {
Christoph Lametere498be72005-09-09 13:03:32 -07004076 if (slabp->inuse != cachep->num && !error)
4077 error = "slabs_full accounting error";
4078 active_objs += cachep->num;
4079 active_slabs++;
4080 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004081 list_for_each_entry(slabp, &n->slabs_partial, list) {
Christoph Lametere498be72005-09-09 13:03:32 -07004082 if (slabp->inuse == cachep->num && !error)
4083 error = "slabs_partial inuse accounting error";
4084 if (!slabp->inuse && !error)
4085 error = "slabs_partial/inuse accounting error";
4086 active_objs += slabp->inuse;
4087 active_slabs++;
4088 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004089 list_for_each_entry(slabp, &n->slabs_free, list) {
Christoph Lametere498be72005-09-09 13:03:32 -07004090 if (slabp->inuse && !error)
4091 error = "slabs_free/inuse accounting error";
4092 num_slabs++;
4093 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004094 free_objects += n->free_objects;
4095 if (n->shared)
4096 shared_avail += n->shared->avail;
Christoph Lametere498be72005-09-09 13:03:32 -07004097
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004098 spin_unlock_irq(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004099 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004100 num_slabs += active_slabs;
4101 num_objs = num_slabs * cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07004102 if (num_objs - active_objs != free_objects && !error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004103 error = "free_objects accounting error";
4104
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004105 name = cachep->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004106 if (error)
4107 printk(KERN_ERR "slab: cache %s error: %s\n", name, error);
4108
Glauber Costa0d7561c2012-10-19 18:20:27 +04004109 sinfo->active_objs = active_objs;
4110 sinfo->num_objs = num_objs;
4111 sinfo->active_slabs = active_slabs;
4112 sinfo->num_slabs = num_slabs;
4113 sinfo->shared_avail = shared_avail;
4114 sinfo->limit = cachep->limit;
4115 sinfo->batchcount = cachep->batchcount;
4116 sinfo->shared = cachep->shared;
4117 sinfo->objects_per_slab = cachep->num;
4118 sinfo->cache_order = cachep->gfporder;
4119}
4120
4121void slabinfo_show_stats(struct seq_file *m, struct kmem_cache *cachep)
4122{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004123#if STATS
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004124 { /* node stats */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004125 unsigned long high = cachep->high_mark;
4126 unsigned long allocs = cachep->num_allocations;
4127 unsigned long grown = cachep->grown;
4128 unsigned long reaped = cachep->reaped;
4129 unsigned long errors = cachep->errors;
4130 unsigned long max_freeable = cachep->max_freeable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004131 unsigned long node_allocs = cachep->node_allocs;
Christoph Lametere498be72005-09-09 13:03:32 -07004132 unsigned long node_frees = cachep->node_frees;
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -07004133 unsigned long overflows = cachep->node_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004134
Joe Perchese92dd4f2010-03-26 19:27:58 -07004135 seq_printf(m, " : globalstat %7lu %6lu %5lu %4lu "
4136 "%4lu %4lu %4lu %4lu %4lu",
4137 allocs, high, grown,
4138 reaped, errors, max_freeable, node_allocs,
4139 node_frees, overflows);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004140 }
4141 /* cpu stats */
4142 {
4143 unsigned long allochit = atomic_read(&cachep->allochit);
4144 unsigned long allocmiss = atomic_read(&cachep->allocmiss);
4145 unsigned long freehit = atomic_read(&cachep->freehit);
4146 unsigned long freemiss = atomic_read(&cachep->freemiss);
4147
4148 seq_printf(m, " : cpustat %6lu %6lu %6lu %6lu",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004149 allochit, allocmiss, freehit, freemiss);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004150 }
4151#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004152}
4153
Linus Torvalds1da177e2005-04-16 15:20:36 -07004154#define MAX_SLABINFO_WRITE 128
4155/**
4156 * slabinfo_write - Tuning for the slab allocator
4157 * @file: unused
4158 * @buffer: user buffer
4159 * @count: data length
4160 * @ppos: unused
4161 */
Glauber Costab7454ad2012-10-19 18:20:25 +04004162ssize_t slabinfo_write(struct file *file, const char __user *buffer,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004163 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004164{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004165 char kbuf[MAX_SLABINFO_WRITE + 1], *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004166 int limit, batchcount, shared, res;
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004167 struct kmem_cache *cachep;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004168
Linus Torvalds1da177e2005-04-16 15:20:36 -07004169 if (count > MAX_SLABINFO_WRITE)
4170 return -EINVAL;
4171 if (copy_from_user(&kbuf, buffer, count))
4172 return -EFAULT;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004173 kbuf[MAX_SLABINFO_WRITE] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07004174
4175 tmp = strchr(kbuf, ' ');
4176 if (!tmp)
4177 return -EINVAL;
4178 *tmp = '\0';
4179 tmp++;
4180 if (sscanf(tmp, " %d %d %d", &limit, &batchcount, &shared) != 3)
4181 return -EINVAL;
4182
4183 /* Find the cache in the chain of caches. */
Christoph Lameter18004c52012-07-06 15:25:12 -05004184 mutex_lock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004185 res = -EINVAL;
Christoph Lameter18004c52012-07-06 15:25:12 -05004186 list_for_each_entry(cachep, &slab_caches, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004187 if (!strcmp(cachep->name, kbuf)) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08004188 if (limit < 1 || batchcount < 1 ||
4189 batchcount > limit || shared < 0) {
Christoph Lametere498be72005-09-09 13:03:32 -07004190 res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004191 } else {
Christoph Lametere498be72005-09-09 13:03:32 -07004192 res = do_tune_cpucache(cachep, limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03004193 batchcount, shared,
4194 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004195 }
4196 break;
4197 }
4198 }
Christoph Lameter18004c52012-07-06 15:25:12 -05004199 mutex_unlock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004200 if (res >= 0)
4201 res = count;
4202 return res;
4203}
Al Viro871751e2006-03-25 03:06:39 -08004204
4205#ifdef CONFIG_DEBUG_SLAB_LEAK
4206
4207static void *leaks_start(struct seq_file *m, loff_t *pos)
4208{
Christoph Lameter18004c52012-07-06 15:25:12 -05004209 mutex_lock(&slab_mutex);
4210 return seq_list_start(&slab_caches, *pos);
Al Viro871751e2006-03-25 03:06:39 -08004211}
4212
4213static inline int add_caller(unsigned long *n, unsigned long v)
4214{
4215 unsigned long *p;
4216 int l;
4217 if (!v)
4218 return 1;
4219 l = n[1];
4220 p = n + 2;
4221 while (l) {
4222 int i = l/2;
4223 unsigned long *q = p + 2 * i;
4224 if (*q == v) {
4225 q[1]++;
4226 return 1;
4227 }
4228 if (*q > v) {
4229 l = i;
4230 } else {
4231 p = q + 2;
4232 l -= i + 1;
4233 }
4234 }
4235 if (++n[1] == n[0])
4236 return 0;
4237 memmove(p + 2, p, n[1] * 2 * sizeof(unsigned long) - ((void *)p - (void *)n));
4238 p[0] = v;
4239 p[1] = 1;
4240 return 1;
4241}
4242
4243static void handle_slab(unsigned long *n, struct kmem_cache *c, struct slab *s)
4244{
4245 void *p;
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09004246 int i, j;
4247
Al Viro871751e2006-03-25 03:06:39 -08004248 if (n[0] == n[1])
4249 return;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05004250 for (i = 0, p = s->s_mem; i < c->num; i++, p += c->size) {
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09004251 bool active = true;
4252
4253 for (j = s->free; j < c->num; j++) {
4254 /* Skip freed item */
4255 if (slab_bufctl(s)[j] == i) {
4256 active = false;
4257 break;
4258 }
4259 }
4260 if (!active)
Al Viro871751e2006-03-25 03:06:39 -08004261 continue;
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09004262
Al Viro871751e2006-03-25 03:06:39 -08004263 if (!add_caller(n, (unsigned long)*dbg_userword(c, p)))
4264 return;
4265 }
4266}
4267
4268static void show_symbol(struct seq_file *m, unsigned long address)
4269{
4270#ifdef CONFIG_KALLSYMS
Al Viro871751e2006-03-25 03:06:39 -08004271 unsigned long offset, size;
Tejun Heo9281ace2007-07-17 04:03:51 -07004272 char modname[MODULE_NAME_LEN], name[KSYM_NAME_LEN];
Al Viro871751e2006-03-25 03:06:39 -08004273
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004274 if (lookup_symbol_attrs(address, &size, &offset, modname, name) == 0) {
Al Viro871751e2006-03-25 03:06:39 -08004275 seq_printf(m, "%s+%#lx/%#lx", name, offset, size);
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004276 if (modname[0])
Al Viro871751e2006-03-25 03:06:39 -08004277 seq_printf(m, " [%s]", modname);
4278 return;
4279 }
4280#endif
4281 seq_printf(m, "%p", (void *)address);
4282}
4283
4284static int leaks_show(struct seq_file *m, void *p)
4285{
Thierry Reding0672aa72012-06-22 19:42:49 +02004286 struct kmem_cache *cachep = list_entry(p, struct kmem_cache, list);
Al Viro871751e2006-03-25 03:06:39 -08004287 struct slab *slabp;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004288 struct kmem_cache_node *n;
Al Viro871751e2006-03-25 03:06:39 -08004289 const char *name;
Christoph Lameterdb845062013-02-05 18:45:23 +00004290 unsigned long *x = m->private;
Al Viro871751e2006-03-25 03:06:39 -08004291 int node;
4292 int i;
4293
4294 if (!(cachep->flags & SLAB_STORE_USER))
4295 return 0;
4296 if (!(cachep->flags & SLAB_RED_ZONE))
4297 return 0;
4298
4299 /* OK, we can do it */
4300
Christoph Lameterdb845062013-02-05 18:45:23 +00004301 x[1] = 0;
Al Viro871751e2006-03-25 03:06:39 -08004302
4303 for_each_online_node(node) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004304 n = cachep->node[node];
4305 if (!n)
Al Viro871751e2006-03-25 03:06:39 -08004306 continue;
4307
4308 check_irq_on();
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004309 spin_lock_irq(&n->list_lock);
Al Viro871751e2006-03-25 03:06:39 -08004310
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004311 list_for_each_entry(slabp, &n->slabs_full, list)
Christoph Lameterdb845062013-02-05 18:45:23 +00004312 handle_slab(x, cachep, slabp);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004313 list_for_each_entry(slabp, &n->slabs_partial, list)
Christoph Lameterdb845062013-02-05 18:45:23 +00004314 handle_slab(x, cachep, slabp);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004315 spin_unlock_irq(&n->list_lock);
Al Viro871751e2006-03-25 03:06:39 -08004316 }
4317 name = cachep->name;
Christoph Lameterdb845062013-02-05 18:45:23 +00004318 if (x[0] == x[1]) {
Al Viro871751e2006-03-25 03:06:39 -08004319 /* Increase the buffer size */
Christoph Lameter18004c52012-07-06 15:25:12 -05004320 mutex_unlock(&slab_mutex);
Christoph Lameterdb845062013-02-05 18:45:23 +00004321 m->private = kzalloc(x[0] * 4 * sizeof(unsigned long), GFP_KERNEL);
Al Viro871751e2006-03-25 03:06:39 -08004322 if (!m->private) {
4323 /* Too bad, we are really out */
Christoph Lameterdb845062013-02-05 18:45:23 +00004324 m->private = x;
Christoph Lameter18004c52012-07-06 15:25:12 -05004325 mutex_lock(&slab_mutex);
Al Viro871751e2006-03-25 03:06:39 -08004326 return -ENOMEM;
4327 }
Christoph Lameterdb845062013-02-05 18:45:23 +00004328 *(unsigned long *)m->private = x[0] * 2;
4329 kfree(x);
Christoph Lameter18004c52012-07-06 15:25:12 -05004330 mutex_lock(&slab_mutex);
Al Viro871751e2006-03-25 03:06:39 -08004331 /* Now make sure this entry will be retried */
4332 m->count = m->size;
4333 return 0;
4334 }
Christoph Lameterdb845062013-02-05 18:45:23 +00004335 for (i = 0; i < x[1]; i++) {
4336 seq_printf(m, "%s: %lu ", name, x[2*i+3]);
4337 show_symbol(m, x[2*i+2]);
Al Viro871751e2006-03-25 03:06:39 -08004338 seq_putc(m, '\n');
4339 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004340
Al Viro871751e2006-03-25 03:06:39 -08004341 return 0;
4342}
4343
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004344static const struct seq_operations slabstats_op = {
Al Viro871751e2006-03-25 03:06:39 -08004345 .start = leaks_start,
Wanpeng Li276a2432013-07-08 08:08:28 +08004346 .next = slab_next,
4347 .stop = slab_stop,
Al Viro871751e2006-03-25 03:06:39 -08004348 .show = leaks_show,
4349};
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004350
4351static int slabstats_open(struct inode *inode, struct file *file)
4352{
4353 unsigned long *n = kzalloc(PAGE_SIZE, GFP_KERNEL);
4354 int ret = -ENOMEM;
4355 if (n) {
4356 ret = seq_open(file, &slabstats_op);
4357 if (!ret) {
4358 struct seq_file *m = file->private_data;
4359 *n = PAGE_SIZE / (2 * sizeof(unsigned long));
4360 m->private = n;
4361 n = NULL;
4362 }
4363 kfree(n);
4364 }
4365 return ret;
4366}
4367
4368static const struct file_operations proc_slabstats_operations = {
4369 .open = slabstats_open,
4370 .read = seq_read,
4371 .llseek = seq_lseek,
4372 .release = seq_release_private,
4373};
Al Viro871751e2006-03-25 03:06:39 -08004374#endif
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004375
4376static int __init slab_proc_init(void)
4377{
4378#ifdef CONFIG_DEBUG_SLAB_LEAK
4379 proc_create("slab_allocators", 0, NULL, &proc_slabstats_operations);
4380#endif
4381 return 0;
4382}
4383module_init(slab_proc_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004384#endif
4385
Manfred Spraul00e145b2005-09-03 15:55:07 -07004386/**
4387 * ksize - get the actual amount of memory allocated for a given object
4388 * @objp: Pointer to the object
4389 *
4390 * kmalloc may internally round up allocations and return more memory
4391 * than requested. ksize() can be used to determine the actual amount of
4392 * memory allocated. The caller may use this additional memory, even though
4393 * a smaller amount of memory was initially specified with the kmalloc call.
4394 * The caller must guarantee that objp points to a valid object previously
4395 * allocated with either kmalloc() or kmem_cache_alloc(). The object
4396 * must not be freed during the duration of the call.
4397 */
Pekka Enbergfd76bab2007-05-06 14:48:40 -07004398size_t ksize(const void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004399{
Christoph Lameteref8b4522007-10-16 01:24:46 -07004400 BUG_ON(!objp);
4401 if (unlikely(objp == ZERO_SIZE_PTR))
Manfred Spraul00e145b2005-09-03 15:55:07 -07004402 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004403
Christoph Lameter8c138bc2012-06-13 10:24:58 -05004404 return virt_to_cache(objp)->object_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004405}
Kirill A. Shutemovb1aabec2009-02-10 15:21:44 +02004406EXPORT_SYMBOL(ksize);