blob: f989af87b72c44abdf14162c26dd61a5d81fb3ea [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
Joonsoo Kimf315e3f2013-12-02 17:49:41 +0900160#define FREELIST_BYTE_INDEX (((PAGE_SIZE >> BITS_PER_BYTE) \
161 <= SLAB_OBJ_MIN_SIZE) ? 1 : 0)
162
163#if FREELIST_BYTE_INDEX
164typedef unsigned char freelist_idx_t;
165#else
166typedef unsigned short freelist_idx_t;
167#endif
168
David Miller30321c72014-05-05 16:20:04 -0400169#define SLAB_OBJ_MAX_NUM ((1 << sizeof(freelist_idx_t) * BITS_PER_BYTE) - 1)
Joonsoo Kimf315e3f2013-12-02 17:49:41 +0900170
Mel Gorman072bb0a2012-07-31 16:43:58 -0700171/*
172 * true if a page was allocated from pfmemalloc reserves for network-based
173 * swap
174 */
175static bool pfmemalloc_active __read_mostly;
176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 * struct array_cache
179 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 * Purpose:
181 * - LIFO ordering, to hand out cache-warm objects from _alloc
182 * - reduce the number of linked list operations
183 * - reduce spinlock operations
184 *
185 * The limit is stored in the per-cpu structure to reduce the data cache
186 * footprint.
187 *
188 */
189struct array_cache {
190 unsigned int avail;
191 unsigned int limit;
192 unsigned int batchcount;
193 unsigned int touched;
Robert P. J. Daybda5b652007-10-16 23:30:05 -0700194 void *entry[]; /*
Andrew Mortona737b3e2006-03-22 00:08:11 -0800195 * Must have this definition in here for the proper
196 * alignment of array_cache. Also simplifies accessing
197 * the entries.
Mel Gorman072bb0a2012-07-31 16:43:58 -0700198 *
199 * Entries should not be directly dereferenced as
200 * entries belonging to slabs marked pfmemalloc will
201 * have the lower bits set SLAB_OBJ_PFMEMALLOC
Andrew Mortona737b3e2006-03-22 00:08:11 -0800202 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203};
204
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700205struct alien_cache {
206 spinlock_t lock;
207 struct array_cache ac;
208};
209
Mel Gorman072bb0a2012-07-31 16:43:58 -0700210#define SLAB_OBJ_PFMEMALLOC 1
211static inline bool is_obj_pfmemalloc(void *objp)
212{
213 return (unsigned long)objp & SLAB_OBJ_PFMEMALLOC;
214}
215
216static inline void set_obj_pfmemalloc(void **objp)
217{
218 *objp = (void *)((unsigned long)*objp | SLAB_OBJ_PFMEMALLOC);
219 return;
220}
221
222static inline void clear_obj_pfmemalloc(void **objp)
223{
224 *objp = (void *)((unsigned long)*objp & ~SLAB_OBJ_PFMEMALLOC);
225}
226
Andrew Mortona737b3e2006-03-22 00:08:11 -0800227/*
228 * bootstrap: The caches do not work without cpuarrays anymore, but the
229 * cpuarrays are allocated from the generic caches...
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230 */
231#define BOOT_CPUCACHE_ENTRIES 1
232struct arraycache_init {
233 struct array_cache cache;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800234 void *entries[BOOT_CPUCACHE_ENTRIES];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235};
236
237/*
Christoph Lametere498be72005-09-09 13:03:32 -0700238 * Need this for bootstrapping a per node allocator.
239 */
Pekka Enberg556a1692008-01-25 08:20:51 +0200240#define NUM_INIT_LISTS (3 * MAX_NUMNODES)
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000241static struct kmem_cache_node __initdata init_kmem_cache_node[NUM_INIT_LISTS];
Christoph Lametere498be72005-09-09 13:03:32 -0700242#define CACHE_CACHE 0
Pekka Enberg556a1692008-01-25 08:20:51 +0200243#define SIZE_AC MAX_NUMNODES
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000244#define SIZE_NODE (2 * MAX_NUMNODES)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Christoph Lametered11d9e2006-06-30 01:55:45 -0700246static int drain_freelist(struct kmem_cache *cache,
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000247 struct kmem_cache_node *n, int tofree);
Christoph Lametered11d9e2006-06-30 01:55:45 -0700248static void free_block(struct kmem_cache *cachep, void **objpp, int len,
Joonsoo Kim97654df2014-08-06 16:04:25 -0700249 int node, struct list_head *list);
250static void slabs_destroy(struct kmem_cache *cachep, struct list_head *list);
Pekka Enberg83b519e2009-06-10 19:40:04 +0300251static int enable_cpucache(struct kmem_cache *cachep, gfp_t gfp);
David Howells65f27f32006-11-22 14:55:48 +0000252static void cache_reap(struct work_struct *unused);
Christoph Lametered11d9e2006-06-30 01:55:45 -0700253
Ingo Molnare0a42722006-06-23 02:03:46 -0700254static int slab_early_init = 1;
255
Christoph Lametere3366012013-01-10 19:14:18 +0000256#define INDEX_AC kmalloc_index(sizeof(struct arraycache_init))
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000257#define INDEX_NODE kmalloc_index(sizeof(struct kmem_cache_node))
Christoph Lametere498be72005-09-09 13:03:32 -0700258
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000259static void kmem_cache_node_init(struct kmem_cache_node *parent)
Christoph Lametere498be72005-09-09 13:03:32 -0700260{
261 INIT_LIST_HEAD(&parent->slabs_full);
262 INIT_LIST_HEAD(&parent->slabs_partial);
263 INIT_LIST_HEAD(&parent->slabs_free);
264 parent->shared = NULL;
265 parent->alien = NULL;
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -0800266 parent->colour_next = 0;
Christoph Lametere498be72005-09-09 13:03:32 -0700267 spin_lock_init(&parent->list_lock);
268 parent->free_objects = 0;
269 parent->free_touched = 0;
270}
271
Andrew Mortona737b3e2006-03-22 00:08:11 -0800272#define MAKE_LIST(cachep, listp, slab, nodeid) \
273 do { \
274 INIT_LIST_HEAD(listp); \
Christoph Lameter18bf8542014-08-06 16:04:11 -0700275 list_splice(&get_node(cachep, nodeid)->slab, listp); \
Christoph Lametere498be72005-09-09 13:03:32 -0700276 } while (0)
277
Andrew Mortona737b3e2006-03-22 00:08:11 -0800278#define MAKE_ALL_LISTS(cachep, ptr, nodeid) \
279 do { \
Christoph Lametere498be72005-09-09 13:03:32 -0700280 MAKE_LIST((cachep), (&(ptr)->slabs_full), slabs_full, nodeid); \
281 MAKE_LIST((cachep), (&(ptr)->slabs_partial), slabs_partial, nodeid); \
282 MAKE_LIST((cachep), (&(ptr)->slabs_free), slabs_free, nodeid); \
283 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285#define CFLGS_OFF_SLAB (0x80000000UL)
286#define OFF_SLAB(x) ((x)->flags & CFLGS_OFF_SLAB)
287
288#define BATCHREFILL_LIMIT 16
Andrew Mortona737b3e2006-03-22 00:08:11 -0800289/*
290 * Optimization question: fewer reaps means less probability for unnessary
291 * cpucache drain/refill cycles.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 *
Adrian Bunkdc6f3f22005-11-08 16:44:08 +0100293 * OTOH the cpuarrays can contain lots of objects,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 * which could lock up otherwise freeable slabs.
295 */
Jianyu Zhan5f0985b2014-03-30 17:02:20 +0800296#define REAPTIMEOUT_AC (2*HZ)
297#define REAPTIMEOUT_NODE (4*HZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
299#if STATS
300#define STATS_INC_ACTIVE(x) ((x)->num_active++)
301#define STATS_DEC_ACTIVE(x) ((x)->num_active--)
302#define STATS_INC_ALLOCED(x) ((x)->num_allocations++)
303#define STATS_INC_GROWN(x) ((x)->grown++)
Christoph Lametered11d9e2006-06-30 01:55:45 -0700304#define STATS_ADD_REAPED(x,y) ((x)->reaped += (y))
Andrew Mortona737b3e2006-03-22 00:08:11 -0800305#define STATS_SET_HIGH(x) \
306 do { \
307 if ((x)->num_active > (x)->high_mark) \
308 (x)->high_mark = (x)->num_active; \
309 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310#define STATS_INC_ERR(x) ((x)->errors++)
311#define STATS_INC_NODEALLOCS(x) ((x)->node_allocs++)
Christoph Lametere498be72005-09-09 13:03:32 -0700312#define STATS_INC_NODEFREES(x) ((x)->node_frees++)
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -0700313#define STATS_INC_ACOVERFLOW(x) ((x)->node_overflow++)
Andrew Mortona737b3e2006-03-22 00:08:11 -0800314#define STATS_SET_FREEABLE(x, i) \
315 do { \
316 if ((x)->max_freeable < i) \
317 (x)->max_freeable = i; \
318 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319#define STATS_INC_ALLOCHIT(x) atomic_inc(&(x)->allochit)
320#define STATS_INC_ALLOCMISS(x) atomic_inc(&(x)->allocmiss)
321#define STATS_INC_FREEHIT(x) atomic_inc(&(x)->freehit)
322#define STATS_INC_FREEMISS(x) atomic_inc(&(x)->freemiss)
323#else
324#define STATS_INC_ACTIVE(x) do { } while (0)
325#define STATS_DEC_ACTIVE(x) do { } while (0)
326#define STATS_INC_ALLOCED(x) do { } while (0)
327#define STATS_INC_GROWN(x) do { } while (0)
Andi Kleen4e60c862010-08-09 17:19:03 -0700328#define STATS_ADD_REAPED(x,y) do { (void)(y); } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329#define STATS_SET_HIGH(x) do { } while (0)
330#define STATS_INC_ERR(x) do { } while (0)
331#define STATS_INC_NODEALLOCS(x) do { } while (0)
Christoph Lametere498be72005-09-09 13:03:32 -0700332#define STATS_INC_NODEFREES(x) do { } while (0)
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -0700333#define STATS_INC_ACOVERFLOW(x) do { } while (0)
Andrew Mortona737b3e2006-03-22 00:08:11 -0800334#define STATS_SET_FREEABLE(x, i) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335#define STATS_INC_ALLOCHIT(x) do { } while (0)
336#define STATS_INC_ALLOCMISS(x) do { } while (0)
337#define STATS_INC_FREEHIT(x) do { } while (0)
338#define STATS_INC_FREEMISS(x) do { } while (0)
339#endif
340
341#if DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
Andrew Mortona737b3e2006-03-22 00:08:11 -0800343/*
344 * memory layout of objects:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 * 0 : objp
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800346 * 0 .. cachep->obj_offset - BYTES_PER_WORD - 1: padding. This ensures that
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 * the end of an object is aligned with the end of the real
348 * allocation. Catches writes behind the end of the allocation.
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800349 * cachep->obj_offset - BYTES_PER_WORD .. cachep->obj_offset - 1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350 * redzone word.
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800351 * cachep->obj_offset: The real object.
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500352 * cachep->size - 2* BYTES_PER_WORD: redzone word [BYTES_PER_WORD long]
353 * cachep->size - 1* BYTES_PER_WORD: last caller address
Andrew Mortona737b3e2006-03-22 00:08:11 -0800354 * [BYTES_PER_WORD long]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800356static int obj_offset(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357{
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800358 return cachep->obj_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359}
360
David Woodhouseb46b8f12007-05-08 00:22:59 -0700361static unsigned long long *dbg_redzone1(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362{
363 BUG_ON(!(cachep->flags & SLAB_RED_ZONE));
David Woodhouseb46b8f12007-05-08 00:22:59 -0700364 return (unsigned long long*) (objp + obj_offset(cachep) -
365 sizeof(unsigned long long));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366}
367
David Woodhouseb46b8f12007-05-08 00:22:59 -0700368static unsigned long long *dbg_redzone2(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369{
370 BUG_ON(!(cachep->flags & SLAB_RED_ZONE));
371 if (cachep->flags & SLAB_STORE_USER)
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500372 return (unsigned long long *)(objp + cachep->size -
David Woodhouseb46b8f12007-05-08 00:22:59 -0700373 sizeof(unsigned long long) -
David Woodhouse87a927c2007-07-04 21:26:44 -0400374 REDZONE_ALIGN);
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500375 return (unsigned long long *) (objp + cachep->size -
David Woodhouseb46b8f12007-05-08 00:22:59 -0700376 sizeof(unsigned long long));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377}
378
Pekka Enberg343e0d72006-02-01 03:05:50 -0800379static void **dbg_userword(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380{
381 BUG_ON(!(cachep->flags & SLAB_STORE_USER));
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500382 return (void **)(objp + cachep->size - BYTES_PER_WORD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383}
384
385#else
386
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800387#define obj_offset(x) 0
David Woodhouseb46b8f12007-05-08 00:22:59 -0700388#define dbg_redzone1(cachep, objp) ({BUG(); (unsigned long long *)NULL;})
389#define dbg_redzone2(cachep, objp) ({BUG(); (unsigned long long *)NULL;})
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390#define dbg_userword(cachep, objp) ({BUG(); (void **)NULL;})
391
392#endif
393
Joonsoo Kim03787302014-06-23 13:22:06 -0700394#define OBJECT_FREE (0)
395#define OBJECT_ACTIVE (1)
396
397#ifdef CONFIG_DEBUG_SLAB_LEAK
398
399static void set_obj_status(struct page *page, int idx, int val)
400{
401 int freelist_size;
402 char *status;
403 struct kmem_cache *cachep = page->slab_cache;
404
405 freelist_size = cachep->num * sizeof(freelist_idx_t);
406 status = (char *)page->freelist + freelist_size;
407 status[idx] = val;
408}
409
410static inline unsigned int get_obj_status(struct page *page, int idx)
411{
412 int freelist_size;
413 char *status;
414 struct kmem_cache *cachep = page->slab_cache;
415
416 freelist_size = cachep->num * sizeof(freelist_idx_t);
417 status = (char *)page->freelist + freelist_size;
418
419 return status[idx];
420}
421
422#else
423static inline void set_obj_status(struct page *page, int idx, int val) {}
424
425#endif
426
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427/*
David Rientjes3df1ccc2011-10-18 22:09:28 -0700428 * Do not go above this order unless 0 objects fit into the slab or
429 * overridden on the command line.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 */
David Rientjes543585c2011-10-18 22:09:24 -0700431#define SLAB_MAX_ORDER_HI 1
432#define SLAB_MAX_ORDER_LO 0
433static int slab_max_order = SLAB_MAX_ORDER_LO;
David Rientjes3df1ccc2011-10-18 22:09:28 -0700434static bool slab_max_order_set __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -0800436static inline struct kmem_cache *virt_to_cache(const void *obj)
437{
Christoph Lameterb49af682007-05-06 14:49:41 -0700438 struct page *page = virt_to_head_page(obj);
Christoph Lameter35026082012-06-13 10:24:56 -0500439 return page->slab_cache;
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -0800440}
441
Joonsoo Kim8456a642013-10-24 10:07:49 +0900442static inline void *index_to_obj(struct kmem_cache *cache, struct page *page,
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800443 unsigned int idx)
444{
Joonsoo Kim8456a642013-10-24 10:07:49 +0900445 return page->s_mem + cache->size * idx;
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800446}
447
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800448/*
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500449 * We want to avoid an expensive divide : (offset / cache->size)
450 * Using the fact that size is a constant for a particular cache,
451 * we can replace (offset / cache->size) by
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800452 * reciprocal_divide(offset, cache->reciprocal_buffer_size)
453 */
454static inline unsigned int obj_to_index(const struct kmem_cache *cache,
Joonsoo Kim8456a642013-10-24 10:07:49 +0900455 const struct page *page, void *obj)
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800456{
Joonsoo Kim8456a642013-10-24 10:07:49 +0900457 u32 offset = (obj - page->s_mem);
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800458 return reciprocal_divide(offset, cache->reciprocal_buffer_size);
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800459}
460
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461static struct arraycache_init initarray_generic =
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800462 { {0, BOOT_CPUCACHE_ENTRIES, 1, 0} };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463
464/* internal cache of cache description objs */
Christoph Lameter9b030cb2012-09-05 00:20:33 +0000465static struct kmem_cache kmem_cache_boot = {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800466 .batchcount = 1,
467 .limit = BOOT_CPUCACHE_ENTRIES,
468 .shared = 1,
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500469 .size = sizeof(struct kmem_cache),
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800470 .name = "kmem_cache",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471};
472
Joonsoo Kimedcad252014-08-08 14:19:15 -0700473#define BAD_ALIEN_MAGIC 0x01020304ul
474
Tejun Heo1871e522009-10-29 22:34:13 +0900475static DEFINE_PER_CPU(struct delayed_work, slab_reap_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476
Pekka Enberg343e0d72006-02-01 03:05:50 -0800477static inline struct array_cache *cpu_cache_get(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478{
479 return cachep->array[smp_processor_id()];
480}
481
Joonsoo Kim03787302014-06-23 13:22:06 -0700482static size_t calculate_freelist_size(int nr_objs, size_t align)
483{
484 size_t freelist_size;
485
486 freelist_size = nr_objs * sizeof(freelist_idx_t);
487 if (IS_ENABLED(CONFIG_DEBUG_SLAB_LEAK))
488 freelist_size += nr_objs * sizeof(char);
489
490 if (align)
491 freelist_size = ALIGN(freelist_size, align);
492
493 return freelist_size;
494}
495
Joonsoo Kim9cef2e22013-12-02 17:49:39 +0900496static int calculate_nr_objs(size_t slab_size, size_t buffer_size,
497 size_t idx_size, size_t align)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498{
Joonsoo Kim9cef2e22013-12-02 17:49:39 +0900499 int nr_objs;
Joonsoo Kim03787302014-06-23 13:22:06 -0700500 size_t remained_size;
Joonsoo Kim9cef2e22013-12-02 17:49:39 +0900501 size_t freelist_size;
Joonsoo Kim03787302014-06-23 13:22:06 -0700502 int extra_space = 0;
Joonsoo Kim9cef2e22013-12-02 17:49:39 +0900503
Joonsoo Kim03787302014-06-23 13:22:06 -0700504 if (IS_ENABLED(CONFIG_DEBUG_SLAB_LEAK))
505 extra_space = sizeof(char);
Joonsoo Kim9cef2e22013-12-02 17:49:39 +0900506 /*
507 * Ignore padding for the initial guess. The padding
508 * is at most @align-1 bytes, and @buffer_size is at
509 * least @align. In the worst case, this result will
510 * be one greater than the number of objects that fit
511 * into the memory allocation when taking the padding
512 * into account.
513 */
Joonsoo Kim03787302014-06-23 13:22:06 -0700514 nr_objs = slab_size / (buffer_size + idx_size + extra_space);
Joonsoo Kim9cef2e22013-12-02 17:49:39 +0900515
516 /*
517 * This calculated number will be either the right
518 * amount, or one greater than what we want.
519 */
Joonsoo Kim03787302014-06-23 13:22:06 -0700520 remained_size = slab_size - nr_objs * buffer_size;
521 freelist_size = calculate_freelist_size(nr_objs, align);
522 if (remained_size < freelist_size)
Joonsoo Kim9cef2e22013-12-02 17:49:39 +0900523 nr_objs--;
524
525 return nr_objs;
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800526}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
Andrew Mortona737b3e2006-03-22 00:08:11 -0800528/*
529 * Calculate the number of objects and left-over bytes for a given buffer size.
530 */
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800531static void cache_estimate(unsigned long gfporder, size_t buffer_size,
532 size_t align, int flags, size_t *left_over,
533 unsigned int *num)
534{
535 int nr_objs;
536 size_t mgmt_size;
537 size_t slab_size = PAGE_SIZE << gfporder;
538
539 /*
540 * The slab management structure can be either off the slab or
541 * on it. For the latter case, the memory allocated for a
542 * slab is used for:
543 *
Joonsoo Kim16025172013-10-24 10:07:46 +0900544 * - One unsigned int for each object
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800545 * - Padding to respect alignment of @align
546 * - @buffer_size bytes for each object
547 *
548 * If the slab management structure is off the slab, then the
549 * alignment will already be calculated into the size. Because
550 * the slabs are all pages aligned, the objects will be at the
551 * correct alignment when allocated.
552 */
553 if (flags & CFLGS_OFF_SLAB) {
554 mgmt_size = 0;
555 nr_objs = slab_size / buffer_size;
556
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800557 } else {
Joonsoo Kim9cef2e22013-12-02 17:49:39 +0900558 nr_objs = calculate_nr_objs(slab_size, buffer_size,
Joonsoo Kima41adfa2013-12-02 17:49:42 +0900559 sizeof(freelist_idx_t), align);
Joonsoo Kim03787302014-06-23 13:22:06 -0700560 mgmt_size = calculate_freelist_size(nr_objs, align);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 }
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800562 *num = nr_objs;
563 *left_over = slab_size - nr_objs*buffer_size - mgmt_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564}
565
Christoph Lameterf28510d2012-09-11 19:49:38 +0000566#if DEBUG
Harvey Harrisond40cee22008-04-30 00:55:07 -0700567#define slab_error(cachep, msg) __slab_error(__func__, cachep, msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568
Andrew Mortona737b3e2006-03-22 00:08:11 -0800569static void __slab_error(const char *function, struct kmem_cache *cachep,
570 char *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571{
572 printk(KERN_ERR "slab error in %s(): cache `%s': %s\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800573 function, cachep->name, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 dump_stack();
Rusty Russell373d4d02013-01-21 17:17:39 +1030575 add_taint(TAINT_BAD_PAGE, LOCKDEP_NOW_UNRELIABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576}
Christoph Lameterf28510d2012-09-11 19:49:38 +0000577#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578
Paul Menage3395ee02006-12-06 20:32:16 -0800579/*
580 * By default on NUMA we use alien caches to stage the freeing of
581 * objects allocated from other nodes. This causes massive memory
582 * inefficiencies when using fake NUMA setup to split memory into a
583 * large number of small nodes, so it can be disabled on the command
584 * line
585 */
586
587static int use_alien_caches __read_mostly = 1;
588static int __init noaliencache_setup(char *s)
589{
590 use_alien_caches = 0;
591 return 1;
592}
593__setup("noaliencache", noaliencache_setup);
594
David Rientjes3df1ccc2011-10-18 22:09:28 -0700595static int __init slab_max_order_setup(char *str)
596{
597 get_option(&str, &slab_max_order);
598 slab_max_order = slab_max_order < 0 ? 0 :
599 min(slab_max_order, MAX_ORDER - 1);
600 slab_max_order_set = true;
601
602 return 1;
603}
604__setup("slab_max_order=", slab_max_order_setup);
605
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800606#ifdef CONFIG_NUMA
607/*
608 * Special reaping functions for NUMA systems called from cache_reap().
609 * These take care of doing round robin flushing of alien caches (containing
610 * objects freed on different nodes from which they were allocated) and the
611 * flushing of remote pcps by calling drain_node_pages.
612 */
Tejun Heo1871e522009-10-29 22:34:13 +0900613static DEFINE_PER_CPU(unsigned long, slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800614
615static void init_reap_node(int cpu)
616{
617 int node;
618
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -0700619 node = next_node(cpu_to_mem(cpu), node_online_map);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800620 if (node == MAX_NUMNODES)
Paul Jackson442295c2006-03-22 00:09:11 -0800621 node = first_node(node_online_map);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800622
Tejun Heo1871e522009-10-29 22:34:13 +0900623 per_cpu(slab_reap_node, cpu) = node;
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800624}
625
626static void next_reap_node(void)
627{
Christoph Lameter909ea962010-12-08 16:22:55 +0100628 int node = __this_cpu_read(slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800629
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800630 node = next_node(node, node_online_map);
631 if (unlikely(node >= MAX_NUMNODES))
632 node = first_node(node_online_map);
Christoph Lameter909ea962010-12-08 16:22:55 +0100633 __this_cpu_write(slab_reap_node, node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800634}
635
636#else
637#define init_reap_node(cpu) do { } while (0)
638#define next_reap_node(void) do { } while (0)
639#endif
640
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641/*
642 * Initiate the reap timer running on the target CPU. We run at around 1 to 2Hz
643 * via the workqueue/eventd.
644 * Add the CPU number into the expiration time to minimize the possibility of
645 * the CPUs getting into lockstep and contending for the global cache chain
646 * lock.
647 */
Paul Gortmaker0db06282013-06-19 14:53:51 -0400648static void start_cpu_timer(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649{
Tejun Heo1871e522009-10-29 22:34:13 +0900650 struct delayed_work *reap_work = &per_cpu(slab_reap_work, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651
652 /*
653 * When this gets called from do_initcalls via cpucache_init(),
654 * init_workqueues() has already run, so keventd will be setup
655 * at that time.
656 */
David Howells52bad642006-11-22 14:54:01 +0000657 if (keventd_up() && reap_work->work.func == NULL) {
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800658 init_reap_node(cpu);
Tejun Heo203b42f2012-08-21 13:18:23 -0700659 INIT_DEFERRABLE_WORK(reap_work, cache_reap);
Arjan van de Ven2b284212006-12-10 02:21:28 -0800660 schedule_delayed_work_on(cpu, reap_work,
661 __round_jiffies_relative(HZ, cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662 }
663}
664
Joonsoo Kim1fe00d52014-08-06 16:04:27 -0700665static void init_arraycache(struct array_cache *ac, int limit, int batch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666{
Catalin Marinasd5cff632009-06-11 13:22:40 +0100667 /*
668 * The array_cache structures contain pointers to free object.
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300669 * However, when such objects are allocated or transferred to another
Catalin Marinasd5cff632009-06-11 13:22:40 +0100670 * cache the pointers are not cleared and they could be counted as
671 * valid references during a kmemleak scan. Therefore, kmemleak must
672 * not scan such objects.
673 */
Joonsoo Kim1fe00d52014-08-06 16:04:27 -0700674 kmemleak_no_scan(ac);
675 if (ac) {
676 ac->avail = 0;
677 ac->limit = limit;
678 ac->batchcount = batch;
679 ac->touched = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 }
Joonsoo Kim1fe00d52014-08-06 16:04:27 -0700681}
682
683static struct array_cache *alloc_arraycache(int node, int entries,
684 int batchcount, gfp_t gfp)
685{
Joonsoo Kim5e804782014-08-06 16:04:40 -0700686 size_t memsize = sizeof(void *) * entries + sizeof(struct array_cache);
Joonsoo Kim1fe00d52014-08-06 16:04:27 -0700687 struct array_cache *ac = NULL;
688
689 ac = kmalloc_node(memsize, gfp, node);
690 init_arraycache(ac, entries, batchcount);
691 return ac;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692}
693
Joonsoo Kim8456a642013-10-24 10:07:49 +0900694static inline bool is_slab_pfmemalloc(struct page *page)
Mel Gorman072bb0a2012-07-31 16:43:58 -0700695{
Mel Gorman072bb0a2012-07-31 16:43:58 -0700696 return PageSlabPfmemalloc(page);
697}
698
699/* Clears pfmemalloc_active if no slabs have pfmalloc set */
700static void recheck_pfmemalloc_active(struct kmem_cache *cachep,
701 struct array_cache *ac)
702{
Christoph Lameter18bf8542014-08-06 16:04:11 -0700703 struct kmem_cache_node *n = get_node(cachep, numa_mem_id());
Joonsoo Kim8456a642013-10-24 10:07:49 +0900704 struct page *page;
Mel Gorman072bb0a2012-07-31 16:43:58 -0700705 unsigned long flags;
706
707 if (!pfmemalloc_active)
708 return;
709
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000710 spin_lock_irqsave(&n->list_lock, flags);
Joonsoo Kim8456a642013-10-24 10:07:49 +0900711 list_for_each_entry(page, &n->slabs_full, lru)
712 if (is_slab_pfmemalloc(page))
Mel Gorman072bb0a2012-07-31 16:43:58 -0700713 goto out;
714
Joonsoo Kim8456a642013-10-24 10:07:49 +0900715 list_for_each_entry(page, &n->slabs_partial, lru)
716 if (is_slab_pfmemalloc(page))
Mel Gorman072bb0a2012-07-31 16:43:58 -0700717 goto out;
718
Joonsoo Kim8456a642013-10-24 10:07:49 +0900719 list_for_each_entry(page, &n->slabs_free, lru)
720 if (is_slab_pfmemalloc(page))
Mel Gorman072bb0a2012-07-31 16:43:58 -0700721 goto out;
722
723 pfmemalloc_active = false;
724out:
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000725 spin_unlock_irqrestore(&n->list_lock, flags);
Mel Gorman072bb0a2012-07-31 16:43:58 -0700726}
727
Mel Gorman381760e2012-07-31 16:44:30 -0700728static void *__ac_get_obj(struct kmem_cache *cachep, struct array_cache *ac,
Mel Gorman072bb0a2012-07-31 16:43:58 -0700729 gfp_t flags, bool force_refill)
730{
731 int i;
732 void *objp = ac->entry[--ac->avail];
733
734 /* Ensure the caller is allowed to use objects from PFMEMALLOC slab */
735 if (unlikely(is_obj_pfmemalloc(objp))) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000736 struct kmem_cache_node *n;
Mel Gorman072bb0a2012-07-31 16:43:58 -0700737
738 if (gfp_pfmemalloc_allowed(flags)) {
739 clear_obj_pfmemalloc(&objp);
740 return objp;
741 }
742
743 /* The caller cannot use PFMEMALLOC objects, find another one */
Joonsoo Kimd014dc22012-09-17 14:09:06 -0700744 for (i = 0; i < ac->avail; i++) {
Mel Gorman072bb0a2012-07-31 16:43:58 -0700745 /* If a !PFMEMALLOC object is found, swap them */
746 if (!is_obj_pfmemalloc(ac->entry[i])) {
747 objp = ac->entry[i];
748 ac->entry[i] = ac->entry[ac->avail];
749 ac->entry[ac->avail] = objp;
750 return objp;
751 }
752 }
753
754 /*
755 * If there are empty slabs on the slabs_free list and we are
756 * being forced to refill the cache, mark this one !pfmemalloc.
757 */
Christoph Lameter18bf8542014-08-06 16:04:11 -0700758 n = get_node(cachep, numa_mem_id());
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000759 if (!list_empty(&n->slabs_free) && force_refill) {
Joonsoo Kim8456a642013-10-24 10:07:49 +0900760 struct page *page = virt_to_head_page(objp);
Joonsoo Kim7ecccf92013-10-24 10:07:50 +0900761 ClearPageSlabPfmemalloc(page);
Mel Gorman072bb0a2012-07-31 16:43:58 -0700762 clear_obj_pfmemalloc(&objp);
763 recheck_pfmemalloc_active(cachep, ac);
764 return objp;
765 }
766
767 /* No !PFMEMALLOC objects available */
768 ac->avail++;
769 objp = NULL;
770 }
771
772 return objp;
773}
774
Mel Gorman381760e2012-07-31 16:44:30 -0700775static inline void *ac_get_obj(struct kmem_cache *cachep,
776 struct array_cache *ac, gfp_t flags, bool force_refill)
777{
778 void *objp;
779
780 if (unlikely(sk_memalloc_socks()))
781 objp = __ac_get_obj(cachep, ac, flags, force_refill);
782 else
783 objp = ac->entry[--ac->avail];
784
785 return objp;
786}
787
Joonsoo Kimd3aec342014-10-09 15:26:06 -0700788static noinline void *__ac_put_obj(struct kmem_cache *cachep,
789 struct array_cache *ac, void *objp)
Mel Gorman072bb0a2012-07-31 16:43:58 -0700790{
791 if (unlikely(pfmemalloc_active)) {
792 /* Some pfmemalloc slabs exist, check if this is one */
Mel Gorman30c29be2012-09-17 14:09:03 -0700793 struct page *page = virt_to_head_page(objp);
Mel Gorman072bb0a2012-07-31 16:43:58 -0700794 if (PageSlabPfmemalloc(page))
795 set_obj_pfmemalloc(&objp);
796 }
797
Mel Gorman381760e2012-07-31 16:44:30 -0700798 return objp;
799}
800
801static inline void ac_put_obj(struct kmem_cache *cachep, struct array_cache *ac,
802 void *objp)
803{
804 if (unlikely(sk_memalloc_socks()))
805 objp = __ac_put_obj(cachep, ac, objp);
806
Mel Gorman072bb0a2012-07-31 16:43:58 -0700807 ac->entry[ac->avail++] = objp;
808}
809
Christoph Lameter3ded1752006-03-25 03:06:44 -0800810/*
811 * Transfer objects in one arraycache to another.
812 * Locking must be handled by the caller.
813 *
814 * Return the number of entries transferred.
815 */
816static int transfer_objects(struct array_cache *to,
817 struct array_cache *from, unsigned int max)
818{
819 /* Figure out how many entries to transfer */
Hagen Paul Pfeifer732eacc2010-10-26 14:22:23 -0700820 int nr = min3(from->avail, max, to->limit - to->avail);
Christoph Lameter3ded1752006-03-25 03:06:44 -0800821
822 if (!nr)
823 return 0;
824
825 memcpy(to->entry + to->avail, from->entry + from->avail -nr,
826 sizeof(void *) *nr);
827
828 from->avail -= nr;
829 to->avail += nr;
Christoph Lameter3ded1752006-03-25 03:06:44 -0800830 return nr;
831}
832
Christoph Lameter765c4502006-09-27 01:50:08 -0700833#ifndef CONFIG_NUMA
834
835#define drain_alien_cache(cachep, alien) do { } while (0)
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000836#define reap_alien(cachep, n) do { } while (0)
Christoph Lameter765c4502006-09-27 01:50:08 -0700837
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700838static inline struct alien_cache **alloc_alien_cache(int node,
839 int limit, gfp_t gfp)
Christoph Lameter765c4502006-09-27 01:50:08 -0700840{
Joonsoo Kimedcad252014-08-08 14:19:15 -0700841 return (struct alien_cache **)BAD_ALIEN_MAGIC;
Christoph Lameter765c4502006-09-27 01:50:08 -0700842}
843
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700844static inline void free_alien_cache(struct alien_cache **ac_ptr)
Christoph Lameter765c4502006-09-27 01:50:08 -0700845{
846}
847
848static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
849{
850 return 0;
851}
852
853static inline void *alternate_node_alloc(struct kmem_cache *cachep,
854 gfp_t flags)
855{
856 return NULL;
857}
858
Christoph Hellwig8b98c162006-12-06 20:32:30 -0800859static inline void *____cache_alloc_node(struct kmem_cache *cachep,
Christoph Lameter765c4502006-09-27 01:50:08 -0700860 gfp_t flags, int nodeid)
861{
862 return NULL;
863}
864
865#else /* CONFIG_NUMA */
866
Christoph Hellwig8b98c162006-12-06 20:32:30 -0800867static void *____cache_alloc_node(struct kmem_cache *, gfp_t, int);
Paul Jacksonc61afb12006-03-24 03:16:08 -0800868static void *alternate_node_alloc(struct kmem_cache *, gfp_t);
Christoph Lameterdc85da12006-01-18 17:42:36 -0800869
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700870static struct alien_cache *__alloc_alien_cache(int node, int entries,
871 int batch, gfp_t gfp)
Christoph Lametere498be72005-09-09 13:03:32 -0700872{
Joonsoo Kim5e804782014-08-06 16:04:40 -0700873 size_t memsize = sizeof(void *) * entries + sizeof(struct alien_cache);
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700874 struct alien_cache *alc = NULL;
875
876 alc = kmalloc_node(memsize, gfp, node);
877 init_arraycache(&alc->ac, entries, batch);
Joonsoo Kim49dfc302014-08-06 16:04:31 -0700878 spin_lock_init(&alc->lock);
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700879 return alc;
880}
881
882static struct alien_cache **alloc_alien_cache(int node, int limit, gfp_t gfp)
883{
884 struct alien_cache **alc_ptr;
Joonsoo Kim5e804782014-08-06 16:04:40 -0700885 size_t memsize = sizeof(void *) * nr_node_ids;
Christoph Lametere498be72005-09-09 13:03:32 -0700886 int i;
887
888 if (limit > 1)
889 limit = 12;
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700890 alc_ptr = kzalloc_node(memsize, gfp, node);
891 if (!alc_ptr)
892 return NULL;
893
894 for_each_node(i) {
895 if (i == node || !node_online(i))
896 continue;
897 alc_ptr[i] = __alloc_alien_cache(node, limit, 0xbaadf00d, gfp);
898 if (!alc_ptr[i]) {
899 for (i--; i >= 0; i--)
900 kfree(alc_ptr[i]);
901 kfree(alc_ptr);
902 return NULL;
Christoph Lametere498be72005-09-09 13:03:32 -0700903 }
904 }
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700905 return alc_ptr;
Christoph Lametere498be72005-09-09 13:03:32 -0700906}
907
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700908static void free_alien_cache(struct alien_cache **alc_ptr)
Christoph Lametere498be72005-09-09 13:03:32 -0700909{
910 int i;
911
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700912 if (!alc_ptr)
Christoph Lametere498be72005-09-09 13:03:32 -0700913 return;
Christoph Lametere498be72005-09-09 13:03:32 -0700914 for_each_node(i)
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700915 kfree(alc_ptr[i]);
916 kfree(alc_ptr);
Christoph Lametere498be72005-09-09 13:03:32 -0700917}
918
Pekka Enberg343e0d72006-02-01 03:05:50 -0800919static void __drain_alien_cache(struct kmem_cache *cachep,
Joonsoo Kim833b7062014-08-06 16:04:33 -0700920 struct array_cache *ac, int node,
921 struct list_head *list)
Christoph Lametere498be72005-09-09 13:03:32 -0700922{
Christoph Lameter18bf8542014-08-06 16:04:11 -0700923 struct kmem_cache_node *n = get_node(cachep, node);
Christoph Lametere498be72005-09-09 13:03:32 -0700924
925 if (ac->avail) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000926 spin_lock(&n->list_lock);
Christoph Lametere00946f2006-03-25 03:06:45 -0800927 /*
928 * Stuff objects into the remote nodes shared array first.
929 * That way we could avoid the overhead of putting the objects
930 * into the free lists and getting them back later.
931 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000932 if (n->shared)
933 transfer_objects(n->shared, ac, ac->limit);
Christoph Lametere00946f2006-03-25 03:06:45 -0800934
Joonsoo Kim833b7062014-08-06 16:04:33 -0700935 free_block(cachep, ac->entry, ac->avail, node, list);
Christoph Lametere498be72005-09-09 13:03:32 -0700936 ac->avail = 0;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000937 spin_unlock(&n->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -0700938 }
939}
940
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800941/*
942 * Called from cache_reap() to regularly drain alien caches round robin.
943 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000944static void reap_alien(struct kmem_cache *cachep, struct kmem_cache_node *n)
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800945{
Christoph Lameter909ea962010-12-08 16:22:55 +0100946 int node = __this_cpu_read(slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800947
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000948 if (n->alien) {
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700949 struct alien_cache *alc = n->alien[node];
950 struct array_cache *ac;
Christoph Lametere00946f2006-03-25 03:06:45 -0800951
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700952 if (alc) {
953 ac = &alc->ac;
Joonsoo Kim49dfc302014-08-06 16:04:31 -0700954 if (ac->avail && spin_trylock_irq(&alc->lock)) {
Joonsoo Kim833b7062014-08-06 16:04:33 -0700955 LIST_HEAD(list);
956
957 __drain_alien_cache(cachep, ac, node, &list);
Joonsoo Kim49dfc302014-08-06 16:04:31 -0700958 spin_unlock_irq(&alc->lock);
Joonsoo Kim833b7062014-08-06 16:04:33 -0700959 slabs_destroy(cachep, &list);
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700960 }
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800961 }
962 }
963}
964
Andrew Mortona737b3e2006-03-22 00:08:11 -0800965static void drain_alien_cache(struct kmem_cache *cachep,
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700966 struct alien_cache **alien)
Christoph Lametere498be72005-09-09 13:03:32 -0700967{
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800968 int i = 0;
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700969 struct alien_cache *alc;
Christoph Lametere498be72005-09-09 13:03:32 -0700970 struct array_cache *ac;
971 unsigned long flags;
972
973 for_each_online_node(i) {
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700974 alc = alien[i];
975 if (alc) {
Joonsoo Kim833b7062014-08-06 16:04:33 -0700976 LIST_HEAD(list);
977
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700978 ac = &alc->ac;
Joonsoo Kim49dfc302014-08-06 16:04:31 -0700979 spin_lock_irqsave(&alc->lock, flags);
Joonsoo Kim833b7062014-08-06 16:04:33 -0700980 __drain_alien_cache(cachep, ac, i, &list);
Joonsoo Kim49dfc302014-08-06 16:04:31 -0700981 spin_unlock_irqrestore(&alc->lock, flags);
Joonsoo Kim833b7062014-08-06 16:04:33 -0700982 slabs_destroy(cachep, &list);
Christoph Lametere498be72005-09-09 13:03:32 -0700983 }
984 }
985}
Pekka Enberg729bd0b2006-06-23 02:03:05 -0700986
Joonsoo Kim25c4f302014-10-09 15:26:09 -0700987static int __cache_free_alien(struct kmem_cache *cachep, void *objp,
988 int node, int page_node)
Pekka Enberg729bd0b2006-06-23 02:03:05 -0700989{
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000990 struct kmem_cache_node *n;
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700991 struct alien_cache *alien = NULL;
992 struct array_cache *ac;
Joonsoo Kim97654df2014-08-06 16:04:25 -0700993 LIST_HEAD(list);
Pekka Enberg1ca4cb22006-10-06 00:43:52 -0700994
Christoph Lameter18bf8542014-08-06 16:04:11 -0700995 n = get_node(cachep, node);
Pekka Enberg729bd0b2006-06-23 02:03:05 -0700996 STATS_INC_NODEFREES(cachep);
Joonsoo Kim25c4f302014-10-09 15:26:09 -0700997 if (n->alien && n->alien[page_node]) {
998 alien = n->alien[page_node];
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700999 ac = &alien->ac;
Joonsoo Kim49dfc302014-08-06 16:04:31 -07001000 spin_lock(&alien->lock);
Joonsoo Kimc8522a32014-08-06 16:04:29 -07001001 if (unlikely(ac->avail == ac->limit)) {
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001002 STATS_INC_ACOVERFLOW(cachep);
Joonsoo Kim25c4f302014-10-09 15:26:09 -07001003 __drain_alien_cache(cachep, ac, page_node, &list);
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001004 }
Joonsoo Kimc8522a32014-08-06 16:04:29 -07001005 ac_put_obj(cachep, ac, objp);
Joonsoo Kim49dfc302014-08-06 16:04:31 -07001006 spin_unlock(&alien->lock);
Joonsoo Kim833b7062014-08-06 16:04:33 -07001007 slabs_destroy(cachep, &list);
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001008 } else {
Joonsoo Kim25c4f302014-10-09 15:26:09 -07001009 n = get_node(cachep, page_node);
Christoph Lameter18bf8542014-08-06 16:04:11 -07001010 spin_lock(&n->list_lock);
Joonsoo Kim25c4f302014-10-09 15:26:09 -07001011 free_block(cachep, &objp, 1, page_node, &list);
Christoph Lameter18bf8542014-08-06 16:04:11 -07001012 spin_unlock(&n->list_lock);
Joonsoo Kim97654df2014-08-06 16:04:25 -07001013 slabs_destroy(cachep, &list);
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001014 }
1015 return 1;
1016}
Joonsoo Kim25c4f302014-10-09 15:26:09 -07001017
1018static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
1019{
1020 int page_node = page_to_nid(virt_to_page(objp));
1021 int node = numa_mem_id();
1022 /*
1023 * Make sure we are not freeing a object from another node to the array
1024 * cache on this cpu.
1025 */
1026 if (likely(node == page_node))
1027 return 0;
1028
1029 return __cache_free_alien(cachep, objp, node, page_node);
1030}
Christoph Lametere498be72005-09-09 13:03:32 -07001031#endif
1032
David Rientjes8f9f8d92010-03-27 19:40:47 -07001033/*
Christoph Lameter6a673682013-01-10 19:14:19 +00001034 * Allocates and initializes node for a node on each slab cache, used for
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001035 * either memory or cpu hotplug. If memory is being hot-added, the kmem_cache_node
David Rientjes8f9f8d92010-03-27 19:40:47 -07001036 * will be allocated off-node since memory is not yet online for the new node.
Christoph Lameter6a673682013-01-10 19:14:19 +00001037 * When hotplugging memory or a cpu, existing node are not replaced if
David Rientjes8f9f8d92010-03-27 19:40:47 -07001038 * already in use.
1039 *
Christoph Lameter18004c52012-07-06 15:25:12 -05001040 * Must hold slab_mutex.
David Rientjes8f9f8d92010-03-27 19:40:47 -07001041 */
Christoph Lameter6a673682013-01-10 19:14:19 +00001042static int init_cache_node_node(int node)
David Rientjes8f9f8d92010-03-27 19:40:47 -07001043{
1044 struct kmem_cache *cachep;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001045 struct kmem_cache_node *n;
Joonsoo Kim5e804782014-08-06 16:04:40 -07001046 const size_t memsize = sizeof(struct kmem_cache_node);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001047
Christoph Lameter18004c52012-07-06 15:25:12 -05001048 list_for_each_entry(cachep, &slab_caches, list) {
David Rientjes8f9f8d92010-03-27 19:40:47 -07001049 /*
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08001050 * Set up the kmem_cache_node for cpu before we can
David Rientjes8f9f8d92010-03-27 19:40:47 -07001051 * begin anything. Make sure some other cpu on this
1052 * node has not already allocated this
1053 */
Christoph Lameter18bf8542014-08-06 16:04:11 -07001054 n = get_node(cachep, node);
1055 if (!n) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001056 n = kmalloc_node(memsize, GFP_KERNEL, node);
1057 if (!n)
David Rientjes8f9f8d92010-03-27 19:40:47 -07001058 return -ENOMEM;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001059 kmem_cache_node_init(n);
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08001060 n->next_reap = jiffies + REAPTIMEOUT_NODE +
1061 ((unsigned long)cachep) % REAPTIMEOUT_NODE;
David Rientjes8f9f8d92010-03-27 19:40:47 -07001062
1063 /*
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08001064 * The kmem_cache_nodes don't come and go as CPUs
1065 * come and go. slab_mutex is sufficient
David Rientjes8f9f8d92010-03-27 19:40:47 -07001066 * protection here.
1067 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001068 cachep->node[node] = n;
David Rientjes8f9f8d92010-03-27 19:40:47 -07001069 }
1070
Christoph Lameter18bf8542014-08-06 16:04:11 -07001071 spin_lock_irq(&n->list_lock);
1072 n->free_limit =
David Rientjes8f9f8d92010-03-27 19:40:47 -07001073 (1 + nr_cpus_node(node)) *
1074 cachep->batchcount + cachep->num;
Christoph Lameter18bf8542014-08-06 16:04:11 -07001075 spin_unlock_irq(&n->list_lock);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001076 }
1077 return 0;
1078}
1079
Wanpeng Li0fa81032013-07-04 08:33:22 +08001080static inline int slabs_tofree(struct kmem_cache *cachep,
1081 struct kmem_cache_node *n)
1082{
1083 return (n->free_objects + cachep->num - 1) / cachep->num;
1084}
1085
Paul Gortmaker0db06282013-06-19 14:53:51 -04001086static void cpuup_canceled(long cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001087{
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001088 struct kmem_cache *cachep;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001089 struct kmem_cache_node *n = NULL;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07001090 int node = cpu_to_mem(cpu);
Rusty Russella70f7302009-03-13 14:49:46 +10301091 const struct cpumask *mask = cpumask_of_node(node);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001092
Christoph Lameter18004c52012-07-06 15:25:12 -05001093 list_for_each_entry(cachep, &slab_caches, list) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001094 struct array_cache *nc;
1095 struct array_cache *shared;
Joonsoo Kimc8522a32014-08-06 16:04:29 -07001096 struct alien_cache **alien;
Joonsoo Kim97654df2014-08-06 16:04:25 -07001097 LIST_HEAD(list);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001098
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001099 /* cpu is dead; no one can alloc from it. */
1100 nc = cachep->array[cpu];
1101 cachep->array[cpu] = NULL;
Christoph Lameter18bf8542014-08-06 16:04:11 -07001102 n = get_node(cachep, node);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001103
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001104 if (!n)
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001105 goto free_array_cache;
1106
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001107 spin_lock_irq(&n->list_lock);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001108
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001109 /* Free limit for this kmem_cache_node */
1110 n->free_limit -= cachep->batchcount;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001111 if (nc)
Joonsoo Kim97654df2014-08-06 16:04:25 -07001112 free_block(cachep, nc->entry, nc->avail, node, &list);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001113
Rusty Russell58463c12009-12-17 11:43:12 -06001114 if (!cpumask_empty(mask)) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001115 spin_unlock_irq(&n->list_lock);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001116 goto free_array_cache;
1117 }
1118
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001119 shared = n->shared;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001120 if (shared) {
1121 free_block(cachep, shared->entry,
Joonsoo Kim97654df2014-08-06 16:04:25 -07001122 shared->avail, node, &list);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001123 n->shared = NULL;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001124 }
1125
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001126 alien = n->alien;
1127 n->alien = NULL;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001128
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001129 spin_unlock_irq(&n->list_lock);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001130
1131 kfree(shared);
1132 if (alien) {
1133 drain_alien_cache(cachep, alien);
1134 free_alien_cache(alien);
1135 }
1136free_array_cache:
Joonsoo Kim97654df2014-08-06 16:04:25 -07001137 slabs_destroy(cachep, &list);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001138 kfree(nc);
1139 }
1140 /*
1141 * In the previous loop, all the objects were freed to
1142 * the respective cache's slabs, now we can go ahead and
1143 * shrink each nodelist to its limit.
1144 */
Christoph Lameter18004c52012-07-06 15:25:12 -05001145 list_for_each_entry(cachep, &slab_caches, list) {
Christoph Lameter18bf8542014-08-06 16:04:11 -07001146 n = get_node(cachep, node);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001147 if (!n)
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001148 continue;
Wanpeng Li0fa81032013-07-04 08:33:22 +08001149 drain_freelist(cachep, n, slabs_tofree(cachep, n));
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001150 }
1151}
1152
Paul Gortmaker0db06282013-06-19 14:53:51 -04001153static int cpuup_prepare(long cpu)
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001154{
Pekka Enberg343e0d72006-02-01 03:05:50 -08001155 struct kmem_cache *cachep;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001156 struct kmem_cache_node *n = NULL;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07001157 int node = cpu_to_mem(cpu);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001158 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001160 /*
1161 * We need to do this right in the beginning since
1162 * alloc_arraycache's are going to use this list.
1163 * kmalloc_node allows us to add the slab to the right
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001164 * kmem_cache_node and not this cpu's kmem_cache_node
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001165 */
Christoph Lameter6a673682013-01-10 19:14:19 +00001166 err = init_cache_node_node(node);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001167 if (err < 0)
1168 goto bad;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001169
1170 /*
1171 * Now we can go ahead with allocating the shared arrays and
1172 * array caches
1173 */
Christoph Lameter18004c52012-07-06 15:25:12 -05001174 list_for_each_entry(cachep, &slab_caches, list) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001175 struct array_cache *nc;
1176 struct array_cache *shared = NULL;
Joonsoo Kimc8522a32014-08-06 16:04:29 -07001177 struct alien_cache **alien = NULL;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001178
1179 nc = alloc_arraycache(node, cachep->limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03001180 cachep->batchcount, GFP_KERNEL);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001181 if (!nc)
1182 goto bad;
1183 if (cachep->shared) {
1184 shared = alloc_arraycache(node,
1185 cachep->shared * cachep->batchcount,
Pekka Enberg83b519e2009-06-10 19:40:04 +03001186 0xbaadf00d, GFP_KERNEL);
Akinobu Mita12d00f62007-10-18 03:05:11 -07001187 if (!shared) {
1188 kfree(nc);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001189 goto bad;
Akinobu Mita12d00f62007-10-18 03:05:11 -07001190 }
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001191 }
1192 if (use_alien_caches) {
Pekka Enberg83b519e2009-06-10 19:40:04 +03001193 alien = alloc_alien_cache(node, cachep->limit, GFP_KERNEL);
Akinobu Mita12d00f62007-10-18 03:05:11 -07001194 if (!alien) {
1195 kfree(shared);
1196 kfree(nc);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001197 goto bad;
Akinobu Mita12d00f62007-10-18 03:05:11 -07001198 }
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001199 }
1200 cachep->array[cpu] = nc;
Christoph Lameter18bf8542014-08-06 16:04:11 -07001201 n = get_node(cachep, node);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001202 BUG_ON(!n);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001203
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001204 spin_lock_irq(&n->list_lock);
1205 if (!n->shared) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001206 /*
1207 * We are serialised from CPU_DEAD or
1208 * CPU_UP_CANCELLED by the cpucontrol lock
1209 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001210 n->shared = shared;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001211 shared = NULL;
1212 }
1213#ifdef CONFIG_NUMA
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001214 if (!n->alien) {
1215 n->alien = alien;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001216 alien = NULL;
1217 }
1218#endif
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001219 spin_unlock_irq(&n->list_lock);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001220 kfree(shared);
1221 free_alien_cache(alien);
1222 }
Pekka Enbergce79ddc2009-11-23 22:01:15 +02001223
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001224 return 0;
1225bad:
Akinobu Mita12d00f62007-10-18 03:05:11 -07001226 cpuup_canceled(cpu);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001227 return -ENOMEM;
1228}
1229
Paul Gortmaker0db06282013-06-19 14:53:51 -04001230static int cpuup_callback(struct notifier_block *nfb,
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001231 unsigned long action, void *hcpu)
1232{
1233 long cpu = (long)hcpu;
1234 int err = 0;
1235
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 switch (action) {
Heiko Carstens38c3bd92007-05-09 02:34:05 -07001237 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001238 case CPU_UP_PREPARE_FROZEN:
Christoph Lameter18004c52012-07-06 15:25:12 -05001239 mutex_lock(&slab_mutex);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001240 err = cpuup_prepare(cpu);
Christoph Lameter18004c52012-07-06 15:25:12 -05001241 mutex_unlock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242 break;
1243 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001244 case CPU_ONLINE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 start_cpu_timer(cpu);
1246 break;
1247#ifdef CONFIG_HOTPLUG_CPU
Christoph Lameter5830c592007-05-09 02:34:22 -07001248 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001249 case CPU_DOWN_PREPARE_FROZEN:
Christoph Lameter5830c592007-05-09 02:34:22 -07001250 /*
Christoph Lameter18004c52012-07-06 15:25:12 -05001251 * Shutdown cache reaper. Note that the slab_mutex is
Christoph Lameter5830c592007-05-09 02:34:22 -07001252 * held so that if cache_reap() is invoked it cannot do
1253 * anything expensive but will only modify reap_work
1254 * and reschedule the timer.
1255 */
Tejun Heoafe2c512010-12-14 16:21:17 +01001256 cancel_delayed_work_sync(&per_cpu(slab_reap_work, cpu));
Christoph Lameter5830c592007-05-09 02:34:22 -07001257 /* Now the cache_reaper is guaranteed to be not running. */
Tejun Heo1871e522009-10-29 22:34:13 +09001258 per_cpu(slab_reap_work, cpu).work.func = NULL;
Christoph Lameter5830c592007-05-09 02:34:22 -07001259 break;
1260 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001261 case CPU_DOWN_FAILED_FROZEN:
Christoph Lameter5830c592007-05-09 02:34:22 -07001262 start_cpu_timer(cpu);
1263 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001265 case CPU_DEAD_FROZEN:
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001266 /*
1267 * Even if all the cpus of a node are down, we don't free the
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001268 * kmem_cache_node of any cache. This to avoid a race between
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001269 * cpu_down, and a kmalloc allocation from another cpu for
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001270 * memory from the node of the cpu going down. The node
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001271 * structure is usually allocated from kmem_cache_create() and
1272 * gets destroyed at kmem_cache_destroy().
1273 */
Simon Arlott183ff222007-10-20 01:27:18 +02001274 /* fall through */
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08001275#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001277 case CPU_UP_CANCELED_FROZEN:
Christoph Lameter18004c52012-07-06 15:25:12 -05001278 mutex_lock(&slab_mutex);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001279 cpuup_canceled(cpu);
Christoph Lameter18004c52012-07-06 15:25:12 -05001280 mutex_unlock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 }
Akinobu Mitaeac40682010-05-26 14:43:32 -07001283 return notifier_from_errno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284}
1285
Paul Gortmaker0db06282013-06-19 14:53:51 -04001286static struct notifier_block cpucache_notifier = {
Chandra Seetharaman74b85f32006-06-27 02:54:09 -07001287 &cpuup_callback, NULL, 0
1288};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289
David Rientjes8f9f8d92010-03-27 19:40:47 -07001290#if defined(CONFIG_NUMA) && defined(CONFIG_MEMORY_HOTPLUG)
1291/*
1292 * Drains freelist for a node on each slab cache, used for memory hot-remove.
1293 * Returns -EBUSY if all objects cannot be drained so that the node is not
1294 * removed.
1295 *
Christoph Lameter18004c52012-07-06 15:25:12 -05001296 * Must hold slab_mutex.
David Rientjes8f9f8d92010-03-27 19:40:47 -07001297 */
Christoph Lameter6a673682013-01-10 19:14:19 +00001298static int __meminit drain_cache_node_node(int node)
David Rientjes8f9f8d92010-03-27 19:40:47 -07001299{
1300 struct kmem_cache *cachep;
1301 int ret = 0;
1302
Christoph Lameter18004c52012-07-06 15:25:12 -05001303 list_for_each_entry(cachep, &slab_caches, list) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001304 struct kmem_cache_node *n;
David Rientjes8f9f8d92010-03-27 19:40:47 -07001305
Christoph Lameter18bf8542014-08-06 16:04:11 -07001306 n = get_node(cachep, node);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001307 if (!n)
David Rientjes8f9f8d92010-03-27 19:40:47 -07001308 continue;
1309
Wanpeng Li0fa81032013-07-04 08:33:22 +08001310 drain_freelist(cachep, n, slabs_tofree(cachep, n));
David Rientjes8f9f8d92010-03-27 19:40:47 -07001311
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001312 if (!list_empty(&n->slabs_full) ||
1313 !list_empty(&n->slabs_partial)) {
David Rientjes8f9f8d92010-03-27 19:40:47 -07001314 ret = -EBUSY;
1315 break;
1316 }
1317 }
1318 return ret;
1319}
1320
1321static int __meminit slab_memory_callback(struct notifier_block *self,
1322 unsigned long action, void *arg)
1323{
1324 struct memory_notify *mnb = arg;
1325 int ret = 0;
1326 int nid;
1327
1328 nid = mnb->status_change_nid;
1329 if (nid < 0)
1330 goto out;
1331
1332 switch (action) {
1333 case MEM_GOING_ONLINE:
Christoph Lameter18004c52012-07-06 15:25:12 -05001334 mutex_lock(&slab_mutex);
Christoph Lameter6a673682013-01-10 19:14:19 +00001335 ret = init_cache_node_node(nid);
Christoph Lameter18004c52012-07-06 15:25:12 -05001336 mutex_unlock(&slab_mutex);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001337 break;
1338 case MEM_GOING_OFFLINE:
Christoph Lameter18004c52012-07-06 15:25:12 -05001339 mutex_lock(&slab_mutex);
Christoph Lameter6a673682013-01-10 19:14:19 +00001340 ret = drain_cache_node_node(nid);
Christoph Lameter18004c52012-07-06 15:25:12 -05001341 mutex_unlock(&slab_mutex);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001342 break;
1343 case MEM_ONLINE:
1344 case MEM_OFFLINE:
1345 case MEM_CANCEL_ONLINE:
1346 case MEM_CANCEL_OFFLINE:
1347 break;
1348 }
1349out:
Prarit Bhargava5fda1bd2011-03-22 16:30:49 -07001350 return notifier_from_errno(ret);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001351}
1352#endif /* CONFIG_NUMA && CONFIG_MEMORY_HOTPLUG */
1353
Christoph Lametere498be72005-09-09 13:03:32 -07001354/*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001355 * swap the static kmem_cache_node with kmalloced memory
Christoph Lametere498be72005-09-09 13:03:32 -07001356 */
Christoph Lameter6744f082013-01-10 19:12:17 +00001357static void __init init_list(struct kmem_cache *cachep, struct kmem_cache_node *list,
David Rientjes8f9f8d92010-03-27 19:40:47 -07001358 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07001359{
Christoph Lameter6744f082013-01-10 19:12:17 +00001360 struct kmem_cache_node *ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001361
Christoph Lameter6744f082013-01-10 19:12:17 +00001362 ptr = kmalloc_node(sizeof(struct kmem_cache_node), GFP_NOWAIT, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07001363 BUG_ON(!ptr);
1364
Christoph Lameter6744f082013-01-10 19:12:17 +00001365 memcpy(ptr, list, sizeof(struct kmem_cache_node));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001366 /*
1367 * Do not assume that spinlocks can be initialized via memcpy:
1368 */
1369 spin_lock_init(&ptr->list_lock);
1370
Christoph Lametere498be72005-09-09 13:03:32 -07001371 MAKE_ALL_LISTS(cachep, ptr, nodeid);
Christoph Lameter6a673682013-01-10 19:14:19 +00001372 cachep->node[nodeid] = ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001373}
1374
Andrew Mortona737b3e2006-03-22 00:08:11 -08001375/*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001376 * For setting up all the kmem_cache_node for cache whose buffer_size is same as
1377 * size of kmem_cache_node.
Pekka Enberg556a1692008-01-25 08:20:51 +02001378 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001379static void __init set_up_node(struct kmem_cache *cachep, int index)
Pekka Enberg556a1692008-01-25 08:20:51 +02001380{
1381 int node;
1382
1383 for_each_online_node(node) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001384 cachep->node[node] = &init_kmem_cache_node[index + node];
Christoph Lameter6a673682013-01-10 19:14:19 +00001385 cachep->node[node]->next_reap = jiffies +
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08001386 REAPTIMEOUT_NODE +
1387 ((unsigned long)cachep) % REAPTIMEOUT_NODE;
Pekka Enberg556a1692008-01-25 08:20:51 +02001388 }
1389}
1390
1391/*
Christoph Lameter3c583462012-11-28 16:23:01 +00001392 * The memory after the last cpu cache pointer is used for the
Christoph Lameter6a673682013-01-10 19:14:19 +00001393 * the node pointer.
Christoph Lameter3c583462012-11-28 16:23:01 +00001394 */
Christoph Lameter6a673682013-01-10 19:14:19 +00001395static void setup_node_pointer(struct kmem_cache *cachep)
Christoph Lameter3c583462012-11-28 16:23:01 +00001396{
Christoph Lameter6a673682013-01-10 19:14:19 +00001397 cachep->node = (struct kmem_cache_node **)&cachep->array[nr_cpu_ids];
Christoph Lameter3c583462012-11-28 16:23:01 +00001398}
1399
1400/*
Andrew Mortona737b3e2006-03-22 00:08:11 -08001401 * Initialisation. Called after the page allocator have been initialised and
1402 * before smp_init().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 */
1404void __init kmem_cache_init(void)
1405{
Christoph Lametere498be72005-09-09 13:03:32 -07001406 int i;
1407
Joonsoo Kim68126702013-10-24 10:07:42 +09001408 BUILD_BUG_ON(sizeof(((struct page *)NULL)->lru) <
1409 sizeof(struct rcu_head));
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001410 kmem_cache = &kmem_cache_boot;
Christoph Lameter6a673682013-01-10 19:14:19 +00001411 setup_node_pointer(kmem_cache);
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001412
Mel Gormanb6e68bc2009-06-16 15:32:16 -07001413 if (num_possible_nodes() == 1)
Siddha, Suresh B62918a02007-05-02 19:27:18 +02001414 use_alien_caches = 0;
1415
Christoph Lameter3c583462012-11-28 16:23:01 +00001416 for (i = 0; i < NUM_INIT_LISTS; i++)
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001417 kmem_cache_node_init(&init_kmem_cache_node[i]);
Christoph Lameter3c583462012-11-28 16:23:01 +00001418
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001419 set_up_node(kmem_cache, CACHE_CACHE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
1421 /*
1422 * Fragmentation resistance on low memory - only use bigger
David Rientjes3df1ccc2011-10-18 22:09:28 -07001423 * page orders on machines with more than 32MB of memory if
1424 * not overridden on the command line.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 */
David Rientjes3df1ccc2011-10-18 22:09:28 -07001426 if (!slab_max_order_set && totalram_pages > (32 << 20) >> PAGE_SHIFT)
David Rientjes543585c2011-10-18 22:09:24 -07001427 slab_max_order = SLAB_MAX_ORDER_HI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 /* Bootstrap is tricky, because several objects are allocated
1430 * from caches that do not exist yet:
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001431 * 1) initialize the kmem_cache cache: it contains the struct
1432 * kmem_cache structures of all caches, except kmem_cache itself:
1433 * kmem_cache is statically allocated.
Christoph Lametere498be72005-09-09 13:03:32 -07001434 * Initially an __init data area is used for the head array and the
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001435 * kmem_cache_node structures, it's replaced with a kmalloc allocated
Christoph Lametere498be72005-09-09 13:03:32 -07001436 * array at the end of the bootstrap.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 * 2) Create the first kmalloc cache.
Pekka Enberg343e0d72006-02-01 03:05:50 -08001438 * The struct kmem_cache for the new cache is allocated normally.
Christoph Lametere498be72005-09-09 13:03:32 -07001439 * An __init data area is used for the head array.
1440 * 3) Create the remaining kmalloc caches, with minimally sized
1441 * head arrays.
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001442 * 4) Replace the __init data head arrays for kmem_cache and the first
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 * kmalloc cache with kmalloc allocated arrays.
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001444 * 5) Replace the __init data for kmem_cache_node for kmem_cache and
Christoph Lametere498be72005-09-09 13:03:32 -07001445 * the other cache's with kmalloc allocated memory.
1446 * 6) Resize the head arrays of the kmalloc caches to their final sizes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 */
1448
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001449 /* 1) create the kmem_cache */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450
Eric Dumazet8da34302007-05-06 14:49:29 -07001451 /*
Eric Dumazetb56efcf2011-07-20 19:04:23 +02001452 * struct kmem_cache size depends on nr_node_ids & nr_cpu_ids
Eric Dumazet8da34302007-05-06 14:49:29 -07001453 */
Christoph Lameter2f9baa92012-11-28 16:23:09 +00001454 create_boot_cache(kmem_cache, "kmem_cache",
1455 offsetof(struct kmem_cache, array[nr_cpu_ids]) +
Christoph Lameter6744f082013-01-10 19:12:17 +00001456 nr_node_ids * sizeof(struct kmem_cache_node *),
Christoph Lameter2f9baa92012-11-28 16:23:09 +00001457 SLAB_HWCACHE_ALIGN);
1458 list_add(&kmem_cache->list, &slab_caches);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459
1460 /* 2+3) create the kmalloc caches */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461
Andrew Mortona737b3e2006-03-22 00:08:11 -08001462 /*
1463 * Initialize the caches that provide memory for the array cache and the
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001464 * kmem_cache_node structures first. Without this, further allocations will
Andrew Mortona737b3e2006-03-22 00:08:11 -08001465 * bug.
Christoph Lametere498be72005-09-09 13:03:32 -07001466 */
1467
Christoph Lametere3366012013-01-10 19:14:18 +00001468 kmalloc_caches[INDEX_AC] = create_kmalloc_cache("kmalloc-ac",
1469 kmalloc_size(INDEX_AC), ARCH_KMALLOC_FLAGS);
Christoph Lametere498be72005-09-09 13:03:32 -07001470
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001471 if (INDEX_AC != INDEX_NODE)
1472 kmalloc_caches[INDEX_NODE] =
1473 create_kmalloc_cache("kmalloc-node",
1474 kmalloc_size(INDEX_NODE), ARCH_KMALLOC_FLAGS);
Christoph Lametere498be72005-09-09 13:03:32 -07001475
Ingo Molnare0a42722006-06-23 02:03:46 -07001476 slab_early_init = 0;
1477
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 /* 4) Replace the bootstrap head arrays */
1479 {
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001480 struct array_cache *ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001481
Pekka Enberg83b519e2009-06-10 19:40:04 +03001482 ptr = kmalloc(sizeof(struct arraycache_init), GFP_NOWAIT);
Christoph Lametere498be72005-09-09 13:03:32 -07001483
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001484 memcpy(ptr, cpu_cache_get(kmem_cache),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001485 sizeof(struct arraycache_init));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001486
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001487 kmem_cache->array[smp_processor_id()] = ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001488
Pekka Enberg83b519e2009-06-10 19:40:04 +03001489 ptr = kmalloc(sizeof(struct arraycache_init), GFP_NOWAIT);
Christoph Lametere498be72005-09-09 13:03:32 -07001490
Christoph Lametere3366012013-01-10 19:14:18 +00001491 BUG_ON(cpu_cache_get(kmalloc_caches[INDEX_AC])
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001492 != &initarray_generic.cache);
Christoph Lametere3366012013-01-10 19:14:18 +00001493 memcpy(ptr, cpu_cache_get(kmalloc_caches[INDEX_AC]),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001494 sizeof(struct arraycache_init));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001495
Christoph Lametere3366012013-01-10 19:14:18 +00001496 kmalloc_caches[INDEX_AC]->array[smp_processor_id()] = ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001498 /* 5) Replace the bootstrap kmem_cache_node */
Christoph Lametere498be72005-09-09 13:03:32 -07001499 {
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001500 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501
Mel Gorman9c09a952008-01-24 05:49:54 -08001502 for_each_online_node(nid) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001503 init_list(kmem_cache, &init_kmem_cache_node[CACHE_CACHE + nid], nid);
Pekka Enberg556a1692008-01-25 08:20:51 +02001504
Christoph Lametere3366012013-01-10 19:14:18 +00001505 init_list(kmalloc_caches[INDEX_AC],
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001506 &init_kmem_cache_node[SIZE_AC + nid], nid);
Christoph Lametere498be72005-09-09 13:03:32 -07001507
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001508 if (INDEX_AC != INDEX_NODE) {
1509 init_list(kmalloc_caches[INDEX_NODE],
1510 &init_kmem_cache_node[SIZE_NODE + nid], nid);
Christoph Lametere498be72005-09-09 13:03:32 -07001511 }
1512 }
1513 }
1514
Christoph Lameterf97d5f62013-01-10 19:12:17 +00001515 create_kmalloc_caches(ARCH_KMALLOC_FLAGS);
Pekka Enberg8429db52009-06-12 15:58:59 +03001516}
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -07001517
Pekka Enberg8429db52009-06-12 15:58:59 +03001518void __init kmem_cache_init_late(void)
1519{
1520 struct kmem_cache *cachep;
1521
Christoph Lameter97d06602012-07-06 15:25:11 -05001522 slab_state = UP;
Peter Zijlstra52cef182011-11-28 21:12:40 +01001523
Pekka Enberg8429db52009-06-12 15:58:59 +03001524 /* 6) resize the head arrays to their final sizes */
Christoph Lameter18004c52012-07-06 15:25:12 -05001525 mutex_lock(&slab_mutex);
1526 list_for_each_entry(cachep, &slab_caches, list)
Pekka Enberg8429db52009-06-12 15:58:59 +03001527 if (enable_cpucache(cachep, GFP_NOWAIT))
1528 BUG();
Christoph Lameter18004c52012-07-06 15:25:12 -05001529 mutex_unlock(&slab_mutex);
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -07001530
Christoph Lameter97d06602012-07-06 15:25:11 -05001531 /* Done! */
1532 slab_state = FULL;
1533
Andrew Mortona737b3e2006-03-22 00:08:11 -08001534 /*
1535 * Register a cpu startup notifier callback that initializes
1536 * cpu_cache_get for all new cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 */
1538 register_cpu_notifier(&cpucache_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001539
David Rientjes8f9f8d92010-03-27 19:40:47 -07001540#ifdef CONFIG_NUMA
1541 /*
1542 * Register a memory hotplug callback that initializes and frees
Christoph Lameter6a673682013-01-10 19:14:19 +00001543 * node.
David Rientjes8f9f8d92010-03-27 19:40:47 -07001544 */
1545 hotplug_memory_notifier(slab_memory_callback, SLAB_CALLBACK_PRI);
1546#endif
1547
Andrew Mortona737b3e2006-03-22 00:08:11 -08001548 /*
1549 * The reap timers are started later, with a module init call: That part
1550 * of the kernel is not yet operational.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 */
1552}
1553
1554static int __init cpucache_init(void)
1555{
1556 int cpu;
1557
Andrew Mortona737b3e2006-03-22 00:08:11 -08001558 /*
1559 * Register the timers that return unneeded pages to the page allocator
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 */
Christoph Lametere498be72005-09-09 13:03:32 -07001561 for_each_online_cpu(cpu)
Andrew Mortona737b3e2006-03-22 00:08:11 -08001562 start_cpu_timer(cpu);
Glauber Costaa164f8962012-06-21 00:59:18 +04001563
1564 /* Done! */
Christoph Lameter97d06602012-07-06 15:25:11 -05001565 slab_state = FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566 return 0;
1567}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568__initcall(cpucache_init);
1569
Rafael Aquini8bdec192012-03-09 17:27:27 -03001570static noinline void
1571slab_out_of_memory(struct kmem_cache *cachep, gfp_t gfpflags, int nodeid)
1572{
David Rientjes9a02d692014-06-04 16:06:36 -07001573#if DEBUG
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001574 struct kmem_cache_node *n;
Joonsoo Kim8456a642013-10-24 10:07:49 +09001575 struct page *page;
Rafael Aquini8bdec192012-03-09 17:27:27 -03001576 unsigned long flags;
1577 int node;
David Rientjes9a02d692014-06-04 16:06:36 -07001578 static DEFINE_RATELIMIT_STATE(slab_oom_rs, DEFAULT_RATELIMIT_INTERVAL,
1579 DEFAULT_RATELIMIT_BURST);
1580
1581 if ((gfpflags & __GFP_NOWARN) || !__ratelimit(&slab_oom_rs))
1582 return;
Rafael Aquini8bdec192012-03-09 17:27:27 -03001583
1584 printk(KERN_WARNING
1585 "SLAB: Unable to allocate memory on node %d (gfp=0x%x)\n",
1586 nodeid, gfpflags);
1587 printk(KERN_WARNING " cache: %s, object size: %d, order: %d\n",
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05001588 cachep->name, cachep->size, cachep->gfporder);
Rafael Aquini8bdec192012-03-09 17:27:27 -03001589
Christoph Lameter18bf8542014-08-06 16:04:11 -07001590 for_each_kmem_cache_node(cachep, node, n) {
Rafael Aquini8bdec192012-03-09 17:27:27 -03001591 unsigned long active_objs = 0, num_objs = 0, free_objects = 0;
1592 unsigned long active_slabs = 0, num_slabs = 0;
1593
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001594 spin_lock_irqsave(&n->list_lock, flags);
Joonsoo Kim8456a642013-10-24 10:07:49 +09001595 list_for_each_entry(page, &n->slabs_full, lru) {
Rafael Aquini8bdec192012-03-09 17:27:27 -03001596 active_objs += cachep->num;
1597 active_slabs++;
1598 }
Joonsoo Kim8456a642013-10-24 10:07:49 +09001599 list_for_each_entry(page, &n->slabs_partial, lru) {
1600 active_objs += page->active;
Rafael Aquini8bdec192012-03-09 17:27:27 -03001601 active_slabs++;
1602 }
Joonsoo Kim8456a642013-10-24 10:07:49 +09001603 list_for_each_entry(page, &n->slabs_free, lru)
Rafael Aquini8bdec192012-03-09 17:27:27 -03001604 num_slabs++;
1605
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001606 free_objects += n->free_objects;
1607 spin_unlock_irqrestore(&n->list_lock, flags);
Rafael Aquini8bdec192012-03-09 17:27:27 -03001608
1609 num_slabs += active_slabs;
1610 num_objs = num_slabs * cachep->num;
1611 printk(KERN_WARNING
1612 " node %d: slabs: %ld/%ld, objs: %ld/%ld, free: %ld\n",
1613 node, active_slabs, num_slabs, active_objs, num_objs,
1614 free_objects);
1615 }
David Rientjes9a02d692014-06-04 16:06:36 -07001616#endif
Rafael Aquini8bdec192012-03-09 17:27:27 -03001617}
1618
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619/*
Wang Sheng-Hui8a7d9b42014-08-06 16:04:46 -07001620 * Interface to system's page allocator. No need to hold the
1621 * kmem_cache_node ->list_lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622 *
1623 * If we requested dmaable memory, we will get it. Even if we
1624 * did not request dmaable memory, we might get it, but that
1625 * would be relatively rare and ignorable.
1626 */
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09001627static struct page *kmem_getpages(struct kmem_cache *cachep, gfp_t flags,
1628 int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629{
1630 struct page *page;
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001631 int nr_pages;
Christoph Lameter765c4502006-09-27 01:50:08 -07001632
Glauber Costaa618e892012-06-14 16:17:21 +04001633 flags |= cachep->allocflags;
Mel Gormane12ba742007-10-16 01:25:52 -07001634 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1635 flags |= __GFP_RECLAIMABLE;
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001636
Vladimir Davydov5dfb4172014-06-04 16:06:38 -07001637 if (memcg_charge_slab(cachep, flags, cachep->gfporder))
1638 return NULL;
1639
Linus Torvalds517d0862009-06-16 19:50:13 -07001640 page = alloc_pages_exact_node(nodeid, flags | __GFP_NOTRACK, cachep->gfporder);
Rafael Aquini8bdec192012-03-09 17:27:27 -03001641 if (!page) {
Vladimir Davydov5dfb4172014-06-04 16:06:38 -07001642 memcg_uncharge_slab(cachep, cachep->gfporder);
David Rientjes9a02d692014-06-04 16:06:36 -07001643 slab_out_of_memory(cachep, flags, nodeid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 return NULL;
Rafael Aquini8bdec192012-03-09 17:27:27 -03001645 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646
Mel Gormanb37f1dd2012-07-31 16:44:03 -07001647 /* Record if ALLOC_NO_WATERMARKS was set when allocating the slab */
Mel Gorman072bb0a2012-07-31 16:43:58 -07001648 if (unlikely(page->pfmemalloc))
1649 pfmemalloc_active = true;
1650
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001651 nr_pages = (1 << cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
Christoph Lameter972d1a72006-09-25 23:31:51 -07001653 add_zone_page_state(page_zone(page),
1654 NR_SLAB_RECLAIMABLE, nr_pages);
1655 else
1656 add_zone_page_state(page_zone(page),
1657 NR_SLAB_UNRECLAIMABLE, nr_pages);
Joonsoo Kima57a4982013-10-24 10:07:44 +09001658 __SetPageSlab(page);
1659 if (page->pfmemalloc)
1660 SetPageSlabPfmemalloc(page);
Mel Gorman072bb0a2012-07-31 16:43:58 -07001661
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001662 if (kmemcheck_enabled && !(cachep->flags & SLAB_NOTRACK)) {
1663 kmemcheck_alloc_shadow(page, cachep->gfporder, flags, nodeid);
1664
1665 if (cachep->ctor)
1666 kmemcheck_mark_uninitialized_pages(page, nr_pages);
1667 else
1668 kmemcheck_mark_unallocated_pages(page, nr_pages);
1669 }
Pekka Enbergc175eea2008-05-09 20:35:53 +02001670
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09001671 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672}
1673
1674/*
1675 * Interface to system's page release.
1676 */
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09001677static void kmem_freepages(struct kmem_cache *cachep, struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678{
Joonsoo Kima57a4982013-10-24 10:07:44 +09001679 const unsigned long nr_freed = (1 << cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001681 kmemcheck_free_shadow(page, cachep->gfporder);
Pekka Enbergc175eea2008-05-09 20:35:53 +02001682
Christoph Lameter972d1a72006-09-25 23:31:51 -07001683 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1684 sub_zone_page_state(page_zone(page),
1685 NR_SLAB_RECLAIMABLE, nr_freed);
1686 else
1687 sub_zone_page_state(page_zone(page),
1688 NR_SLAB_UNRECLAIMABLE, nr_freed);
Joonsoo Kim73293c22013-10-24 10:07:37 +09001689
Joonsoo Kima57a4982013-10-24 10:07:44 +09001690 BUG_ON(!PageSlab(page));
Joonsoo Kim73293c22013-10-24 10:07:37 +09001691 __ClearPageSlabPfmemalloc(page);
Joonsoo Kima57a4982013-10-24 10:07:44 +09001692 __ClearPageSlab(page);
Joonsoo Kim8456a642013-10-24 10:07:49 +09001693 page_mapcount_reset(page);
1694 page->mapping = NULL;
Glauber Costa1f458cb2012-12-18 14:22:50 -08001695
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 if (current->reclaim_state)
1697 current->reclaim_state->reclaimed_slab += nr_freed;
Vladimir Davydov5dfb4172014-06-04 16:06:38 -07001698 __free_pages(page, cachep->gfporder);
1699 memcg_uncharge_slab(cachep, cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700}
1701
1702static void kmem_rcu_free(struct rcu_head *head)
1703{
Joonsoo Kim68126702013-10-24 10:07:42 +09001704 struct kmem_cache *cachep;
1705 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706
Joonsoo Kim68126702013-10-24 10:07:42 +09001707 page = container_of(head, struct page, rcu_head);
1708 cachep = page->slab_cache;
1709
1710 kmem_freepages(cachep, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711}
1712
1713#if DEBUG
1714
1715#ifdef CONFIG_DEBUG_PAGEALLOC
Pekka Enberg343e0d72006-02-01 03:05:50 -08001716static void store_stackinfo(struct kmem_cache *cachep, unsigned long *addr,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001717 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718{
Christoph Lameter8c138bc2012-06-13 10:24:58 -05001719 int size = cachep->object_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001721 addr = (unsigned long *)&((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001723 if (size < 5 * sizeof(unsigned long))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 return;
1725
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001726 *addr++ = 0x12345678;
1727 *addr++ = caller;
1728 *addr++ = smp_processor_id();
1729 size -= 3 * sizeof(unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730 {
1731 unsigned long *sptr = &caller;
1732 unsigned long svalue;
1733
1734 while (!kstack_end(sptr)) {
1735 svalue = *sptr++;
1736 if (kernel_text_address(svalue)) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001737 *addr++ = svalue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 size -= sizeof(unsigned long);
1739 if (size <= sizeof(unsigned long))
1740 break;
1741 }
1742 }
1743
1744 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001745 *addr++ = 0x87654321;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746}
1747#endif
1748
Pekka Enberg343e0d72006-02-01 03:05:50 -08001749static void poison_obj(struct kmem_cache *cachep, void *addr, unsigned char val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750{
Christoph Lameter8c138bc2012-06-13 10:24:58 -05001751 int size = cachep->object_size;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001752 addr = &((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753
1754 memset(addr, val, size);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001755 *(unsigned char *)(addr + size - 1) = POISON_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756}
1757
1758static void dump_line(char *data, int offset, int limit)
1759{
1760 int i;
Dave Jonesaa83aa42006-09-29 01:59:51 -07001761 unsigned char error = 0;
1762 int bad_count = 0;
1763
Sebastian Andrzej Siewiorfdde6ab2011-07-29 18:22:13 +02001764 printk(KERN_ERR "%03x: ", offset);
Dave Jonesaa83aa42006-09-29 01:59:51 -07001765 for (i = 0; i < limit; i++) {
1766 if (data[offset + i] != POISON_FREE) {
1767 error = data[offset + i];
1768 bad_count++;
1769 }
Dave Jonesaa83aa42006-09-29 01:59:51 -07001770 }
Sebastian Andrzej Siewiorfdde6ab2011-07-29 18:22:13 +02001771 print_hex_dump(KERN_CONT, "", 0, 16, 1,
1772 &data[offset], limit, 1);
Dave Jonesaa83aa42006-09-29 01:59:51 -07001773
1774 if (bad_count == 1) {
1775 error ^= POISON_FREE;
1776 if (!(error & (error - 1))) {
1777 printk(KERN_ERR "Single bit error detected. Probably "
1778 "bad RAM.\n");
1779#ifdef CONFIG_X86
1780 printk(KERN_ERR "Run memtest86+ or a similar memory "
1781 "test tool.\n");
1782#else
1783 printk(KERN_ERR "Run a memory test tool.\n");
1784#endif
1785 }
1786 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787}
1788#endif
1789
1790#if DEBUG
1791
Pekka Enberg343e0d72006-02-01 03:05:50 -08001792static void print_objinfo(struct kmem_cache *cachep, void *objp, int lines)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793{
1794 int i, size;
1795 char *realobj;
1796
1797 if (cachep->flags & SLAB_RED_ZONE) {
David Woodhouseb46b8f12007-05-08 00:22:59 -07001798 printk(KERN_ERR "Redzone: 0x%llx/0x%llx.\n",
Andrew Mortona737b3e2006-03-22 00:08:11 -08001799 *dbg_redzone1(cachep, objp),
1800 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 }
1802
1803 if (cachep->flags & SLAB_STORE_USER) {
Joe Perches071361d2012-12-12 10:19:12 -08001804 printk(KERN_ERR "Last user: [<%p>](%pSR)\n",
1805 *dbg_userword(cachep, objp),
1806 *dbg_userword(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 }
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001808 realobj = (char *)objp + obj_offset(cachep);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05001809 size = cachep->object_size;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001810 for (i = 0; i < size && lines; i += 16, lines--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811 int limit;
1812 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001813 if (i + limit > size)
1814 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815 dump_line(realobj, i, limit);
1816 }
1817}
1818
Pekka Enberg343e0d72006-02-01 03:05:50 -08001819static void check_poison_obj(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820{
1821 char *realobj;
1822 int size, i;
1823 int lines = 0;
1824
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001825 realobj = (char *)objp + obj_offset(cachep);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05001826 size = cachep->object_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001828 for (i = 0; i < size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 char exp = POISON_FREE;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001830 if (i == size - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 exp = POISON_END;
1832 if (realobj[i] != exp) {
1833 int limit;
1834 /* Mismatch ! */
1835 /* Print header */
1836 if (lines == 0) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001837 printk(KERN_ERR
Dave Jonesface37f2011-11-15 15:03:52 -08001838 "Slab corruption (%s): %s start=%p, len=%d\n",
1839 print_tainted(), cachep->name, realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 print_objinfo(cachep, objp, 0);
1841 }
1842 /* Hexdump the affected line */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001843 i = (i / 16) * 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001844 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001845 if (i + limit > size)
1846 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 dump_line(realobj, i, limit);
1848 i += 16;
1849 lines++;
1850 /* Limit to 5 lines */
1851 if (lines > 5)
1852 break;
1853 }
1854 }
1855 if (lines != 0) {
1856 /* Print some data about the neighboring objects, if they
1857 * exist:
1858 */
Joonsoo Kim8456a642013-10-24 10:07:49 +09001859 struct page *page = virt_to_head_page(objp);
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001860 unsigned int objnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861
Joonsoo Kim8456a642013-10-24 10:07:49 +09001862 objnr = obj_to_index(cachep, page, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 if (objnr) {
Joonsoo Kim8456a642013-10-24 10:07:49 +09001864 objp = index_to_obj(cachep, page, objnr - 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001865 realobj = (char *)objp + obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 printk(KERN_ERR "Prev obj: start=%p, len=%d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001867 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868 print_objinfo(cachep, objp, 2);
1869 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001870 if (objnr + 1 < cachep->num) {
Joonsoo Kim8456a642013-10-24 10:07:49 +09001871 objp = index_to_obj(cachep, page, objnr + 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001872 realobj = (char *)objp + obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 printk(KERN_ERR "Next obj: start=%p, len=%d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001874 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 print_objinfo(cachep, objp, 2);
1876 }
1877 }
1878}
1879#endif
1880
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881#if DEBUG
Joonsoo Kim8456a642013-10-24 10:07:49 +09001882static void slab_destroy_debugcheck(struct kmem_cache *cachep,
1883 struct page *page)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001884{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 int i;
1886 for (i = 0; i < cachep->num; i++) {
Joonsoo Kim8456a642013-10-24 10:07:49 +09001887 void *objp = index_to_obj(cachep, page, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888
1889 if (cachep->flags & SLAB_POISON) {
1890#ifdef CONFIG_DEBUG_PAGEALLOC
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05001891 if (cachep->size % PAGE_SIZE == 0 &&
Andrew Mortona737b3e2006-03-22 00:08:11 -08001892 OFF_SLAB(cachep))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001893 kernel_map_pages(virt_to_page(objp),
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05001894 cachep->size / PAGE_SIZE, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 else
1896 check_poison_obj(cachep, objp);
1897#else
1898 check_poison_obj(cachep, objp);
1899#endif
1900 }
1901 if (cachep->flags & SLAB_RED_ZONE) {
1902 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
1903 slab_error(cachep, "start of a freed object "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001904 "was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
1906 slab_error(cachep, "end of a freed object "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001907 "was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 }
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001910}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911#else
Joonsoo Kim8456a642013-10-24 10:07:49 +09001912static void slab_destroy_debugcheck(struct kmem_cache *cachep,
1913 struct page *page)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001914{
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001915}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916#endif
1917
Randy Dunlap911851e2006-03-22 00:08:14 -08001918/**
1919 * slab_destroy - destroy and release all objects in a slab
1920 * @cachep: cache pointer being destroyed
Masanari Iidacb8ee1a2014-01-28 02:57:08 +09001921 * @page: page pointer being destroyed
Randy Dunlap911851e2006-03-22 00:08:14 -08001922 *
Wang Sheng-Hui8a7d9b42014-08-06 16:04:46 -07001923 * Destroy all the objs in a slab page, and release the mem back to the system.
1924 * Before calling the slab page must have been unlinked from the cache. The
1925 * kmem_cache_node ->list_lock is not held/needed.
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001926 */
Joonsoo Kim8456a642013-10-24 10:07:49 +09001927static void slab_destroy(struct kmem_cache *cachep, struct page *page)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001928{
Joonsoo Kim7e007352013-10-30 19:04:01 +09001929 void *freelist;
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001930
Joonsoo Kim8456a642013-10-24 10:07:49 +09001931 freelist = page->freelist;
1932 slab_destroy_debugcheck(cachep, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 if (unlikely(cachep->flags & SLAB_DESTROY_BY_RCU)) {
Joonsoo Kim68126702013-10-24 10:07:42 +09001934 struct rcu_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935
Joonsoo Kim68126702013-10-24 10:07:42 +09001936 /*
1937 * RCU free overloads the RCU head over the LRU.
1938 * slab_page has been overloeaded over the LRU,
1939 * however it is not used from now on so that
1940 * we can use it safely.
1941 */
1942 head = (void *)&page->rcu_head;
1943 call_rcu(head, kmem_rcu_free);
1944
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945 } else {
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09001946 kmem_freepages(cachep, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001947 }
Joonsoo Kim68126702013-10-24 10:07:42 +09001948
1949 /*
Joonsoo Kim8456a642013-10-24 10:07:49 +09001950 * From now on, we don't use freelist
Joonsoo Kim68126702013-10-24 10:07:42 +09001951 * although actual page can be freed in rcu context
1952 */
1953 if (OFF_SLAB(cachep))
Joonsoo Kim8456a642013-10-24 10:07:49 +09001954 kmem_cache_free(cachep->freelist_cache, freelist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955}
1956
Joonsoo Kim97654df2014-08-06 16:04:25 -07001957static void slabs_destroy(struct kmem_cache *cachep, struct list_head *list)
1958{
1959 struct page *page, *n;
1960
1961 list_for_each_entry_safe(page, n, list, lru) {
1962 list_del(&page->lru);
1963 slab_destroy(cachep, page);
1964 }
1965}
1966
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967/**
Randy.Dunlapa70773d2006-02-01 03:05:52 -08001968 * calculate_slab_order - calculate size (page order) of slabs
1969 * @cachep: pointer to the cache that is being created
1970 * @size: size of objects to be created in this cache.
1971 * @align: required alignment for the objects.
1972 * @flags: slab allocation flags
1973 *
1974 * Also calculates the number of objects per slab.
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001975 *
1976 * This could be made much more intelligent. For now, try to avoid using
1977 * high order pages for slabs. When the gfp() functions are more friendly
1978 * towards high-order requests, this should be changed.
1979 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08001980static size_t calculate_slab_order(struct kmem_cache *cachep,
Randy Dunlapee13d782006-02-01 03:05:53 -08001981 size_t size, size_t align, unsigned long flags)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001982{
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02001983 unsigned long offslab_limit;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001984 size_t left_over = 0;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001985 int gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001986
Christoph Lameter0aa817f2007-05-16 22:11:01 -07001987 for (gfporder = 0; gfporder <= KMALLOC_MAX_ORDER; gfporder++) {
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001988 unsigned int num;
1989 size_t remainder;
1990
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001991 cache_estimate(gfporder, size, align, flags, &remainder, &num);
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001992 if (!num)
1993 continue;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001994
Joonsoo Kimf315e3f2013-12-02 17:49:41 +09001995 /* Can't handle number of objects more than SLAB_OBJ_MAX_NUM */
1996 if (num > SLAB_OBJ_MAX_NUM)
1997 break;
1998
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02001999 if (flags & CFLGS_OFF_SLAB) {
Joonsoo Kim03787302014-06-23 13:22:06 -07002000 size_t freelist_size_per_obj = sizeof(freelist_idx_t);
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02002001 /*
2002 * Max number of objs-per-slab for caches which
2003 * use off-slab slabs. Needed to avoid a possible
2004 * looping condition in cache_grow().
2005 */
Joonsoo Kim03787302014-06-23 13:22:06 -07002006 if (IS_ENABLED(CONFIG_DEBUG_SLAB_LEAK))
2007 freelist_size_per_obj += sizeof(char);
Joonsoo Kim8456a642013-10-24 10:07:49 +09002008 offslab_limit = size;
Joonsoo Kim03787302014-06-23 13:22:06 -07002009 offslab_limit /= freelist_size_per_obj;
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02002010
2011 if (num > offslab_limit)
2012 break;
2013 }
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002014
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002015 /* Found something acceptable - save it away */
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002016 cachep->num = num;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002017 cachep->gfporder = gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002018 left_over = remainder;
2019
2020 /*
Linus Torvaldsf78bb8a2006-03-08 10:33:05 -08002021 * A VFS-reclaimable slab tends to have most allocations
2022 * as GFP_NOFS and we really don't want to have to be allocating
2023 * higher-order pages when we are unable to shrink dcache.
2024 */
2025 if (flags & SLAB_RECLAIM_ACCOUNT)
2026 break;
2027
2028 /*
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002029 * Large number of objects is good, but very large slabs are
2030 * currently bad for the gfp()s.
2031 */
David Rientjes543585c2011-10-18 22:09:24 -07002032 if (gfporder >= slab_max_order)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002033 break;
2034
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002035 /*
2036 * Acceptable internal fragmentation?
2037 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002038 if (left_over * 8 <= (PAGE_SIZE << gfporder))
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002039 break;
2040 }
2041 return left_over;
2042}
2043
Pekka Enberg83b519e2009-06-10 19:40:04 +03002044static int __init_refok setup_cpu_cache(struct kmem_cache *cachep, gfp_t gfp)
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002045{
Christoph Lameter97d06602012-07-06 15:25:11 -05002046 if (slab_state >= FULL)
Pekka Enberg83b519e2009-06-10 19:40:04 +03002047 return enable_cpucache(cachep, gfp);
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002048
Christoph Lameter97d06602012-07-06 15:25:11 -05002049 if (slab_state == DOWN) {
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002050 /*
Christoph Lameter2f9baa92012-11-28 16:23:09 +00002051 * Note: Creation of first cache (kmem_cache).
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002052 * The setup_node is taken care
Christoph Lameter2f9baa92012-11-28 16:23:09 +00002053 * of by the caller of __kmem_cache_create
2054 */
2055 cachep->array[smp_processor_id()] = &initarray_generic.cache;
2056 slab_state = PARTIAL;
2057 } else if (slab_state == PARTIAL) {
2058 /*
2059 * Note: the second kmem_cache_create must create the cache
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002060 * that's used by kmalloc(24), otherwise the creation of
2061 * further caches will BUG().
2062 */
2063 cachep->array[smp_processor_id()] = &initarray_generic.cache;
2064
2065 /*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002066 * If the cache that's used by kmalloc(sizeof(kmem_cache_node)) is
2067 * the second cache, then we need to set up all its node/,
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002068 * otherwise the creation of further caches will BUG().
2069 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002070 set_up_node(cachep, SIZE_AC);
2071 if (INDEX_AC == INDEX_NODE)
2072 slab_state = PARTIAL_NODE;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002073 else
Christoph Lameter97d06602012-07-06 15:25:11 -05002074 slab_state = PARTIAL_ARRAYCACHE;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002075 } else {
Christoph Lameter2f9baa92012-11-28 16:23:09 +00002076 /* Remaining boot caches */
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002077 cachep->array[smp_processor_id()] =
Pekka Enberg83b519e2009-06-10 19:40:04 +03002078 kmalloc(sizeof(struct arraycache_init), gfp);
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002079
Christoph Lameter97d06602012-07-06 15:25:11 -05002080 if (slab_state == PARTIAL_ARRAYCACHE) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002081 set_up_node(cachep, SIZE_NODE);
2082 slab_state = PARTIAL_NODE;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002083 } else {
2084 int node;
Pekka Enberg556a1692008-01-25 08:20:51 +02002085 for_each_online_node(node) {
Christoph Lameter6a673682013-01-10 19:14:19 +00002086 cachep->node[node] =
Christoph Lameter6744f082013-01-10 19:12:17 +00002087 kmalloc_node(sizeof(struct kmem_cache_node),
Pekka Enbergeb91f1d2009-06-12 14:56:09 +03002088 gfp, node);
Christoph Lameter6a673682013-01-10 19:14:19 +00002089 BUG_ON(!cachep->node[node]);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002090 kmem_cache_node_init(cachep->node[node]);
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002091 }
2092 }
2093 }
Christoph Lameter6a673682013-01-10 19:14:19 +00002094 cachep->node[numa_mem_id()]->next_reap =
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08002095 jiffies + REAPTIMEOUT_NODE +
2096 ((unsigned long)cachep) % REAPTIMEOUT_NODE;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002097
2098 cpu_cache_get(cachep)->avail = 0;
2099 cpu_cache_get(cachep)->limit = BOOT_CPUCACHE_ENTRIES;
2100 cpu_cache_get(cachep)->batchcount = 1;
2101 cpu_cache_get(cachep)->touched = 0;
2102 cachep->batchcount = 1;
2103 cachep->limit = BOOT_CPUCACHE_ENTRIES;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002104 return 0;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002105}
2106
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002107/**
Christoph Lameter039363f2012-07-06 15:25:10 -05002108 * __kmem_cache_create - Create a cache.
Randy Dunlapa755b762012-11-06 17:10:10 -08002109 * @cachep: cache management descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 * @flags: SLAB flags
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 *
2112 * Returns a ptr to the cache on success, NULL on failure.
2113 * Cannot be called within a int, but can be interrupted.
Paul Mundt20c2df82007-07-20 10:11:58 +09002114 * The @ctor is run when new pages are allocated by the cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 * The flags are
2117 *
2118 * %SLAB_POISON - Poison the slab with a known test pattern (a5a5a5a5)
2119 * to catch references to uninitialised memory.
2120 *
2121 * %SLAB_RED_ZONE - Insert `Red' zones around the allocated memory to check
2122 * for buffer overruns.
2123 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124 * %SLAB_HWCACHE_ALIGN - Align the objects in this cache to a hardware
2125 * cacheline. This can be beneficial if you're counting cycles as closely
2126 * as davem.
2127 */
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002128int
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002129__kmem_cache_create (struct kmem_cache *cachep, unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130{
David Rientjesd4a5fca2014-09-25 16:05:20 -07002131 size_t left_over, freelist_size;
2132 size_t ralign = BYTES_PER_WORD;
Pekka Enberg83b519e2009-06-10 19:40:04 +03002133 gfp_t gfp;
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002134 int err;
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002135 size_t size = cachep->size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137#if DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138#if FORCED_DEBUG
2139 /*
2140 * Enable redzoning and last user accounting, except for caches with
2141 * large objects, if the increased size would increase the object size
2142 * above the next power of two: caches with object sizes just above a
2143 * power of two have a significant amount of internal fragmentation.
2144 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002145 if (size < 4096 || fls(size - 1) == fls(size-1 + REDZONE_ALIGN +
2146 2 * sizeof(unsigned long long)))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002147 flags |= SLAB_RED_ZONE | SLAB_STORE_USER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 if (!(flags & SLAB_DESTROY_BY_RCU))
2149 flags |= SLAB_POISON;
2150#endif
2151 if (flags & SLAB_DESTROY_BY_RCU)
2152 BUG_ON(flags & SLAB_POISON);
2153#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154
Andrew Mortona737b3e2006-03-22 00:08:11 -08002155 /*
2156 * Check that size is in terms of words. This is needed to avoid
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 * unaligned accesses for some archs when redzoning is used, and makes
2158 * sure any on-slab bufctl's are also correctly aligned.
2159 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002160 if (size & (BYTES_PER_WORD - 1)) {
2161 size += (BYTES_PER_WORD - 1);
2162 size &= ~(BYTES_PER_WORD - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163 }
2164
David Woodhouse87a927c2007-07-04 21:26:44 -04002165 if (flags & SLAB_RED_ZONE) {
2166 ralign = REDZONE_ALIGN;
2167 /* If redzoning, ensure that the second redzone is suitably
2168 * aligned, by adjusting the object size accordingly. */
2169 size += REDZONE_ALIGN - 1;
2170 size &= ~(REDZONE_ALIGN - 1);
2171 }
Pekka Enbergca5f9702006-09-25 23:31:25 -07002172
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002173 /* 3) caller mandated alignment */
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002174 if (ralign < cachep->align) {
2175 ralign = cachep->align;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 }
Pekka Enberg3ff84a72011-02-14 17:46:21 +02002177 /* disable debug if necessary */
2178 if (ralign > __alignof__(unsigned long long))
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002179 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002180 /*
Pekka Enbergca5f9702006-09-25 23:31:25 -07002181 * 4) Store it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 */
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002183 cachep->align = ralign;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184
Pekka Enberg83b519e2009-06-10 19:40:04 +03002185 if (slab_is_available())
2186 gfp = GFP_KERNEL;
2187 else
2188 gfp = GFP_NOWAIT;
2189
Christoph Lameter6a673682013-01-10 19:14:19 +00002190 setup_node_pointer(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191#if DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192
Pekka Enbergca5f9702006-09-25 23:31:25 -07002193 /*
2194 * Both debugging options require word-alignment which is calculated
2195 * into align above.
2196 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 if (flags & SLAB_RED_ZONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 /* add space for red zone words */
Pekka Enberg3ff84a72011-02-14 17:46:21 +02002199 cachep->obj_offset += sizeof(unsigned long long);
2200 size += 2 * sizeof(unsigned long long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201 }
2202 if (flags & SLAB_STORE_USER) {
Pekka Enbergca5f9702006-09-25 23:31:25 -07002203 /* user store requires one word storage behind the end of
David Woodhouse87a927c2007-07-04 21:26:44 -04002204 * the real object. But if the second red zone needs to be
2205 * aligned to 64 bits, we must allow that much space.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002206 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002207 if (flags & SLAB_RED_ZONE)
2208 size += REDZONE_ALIGN;
2209 else
2210 size += BYTES_PER_WORD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 }
2212#if FORCED_DEBUG && defined(CONFIG_DEBUG_PAGEALLOC)
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002213 if (size >= kmalloc_size(INDEX_NODE + 1)
Tetsuo Handa608da7e2012-09-30 17:28:25 +09002214 && cachep->object_size > cache_line_size()
2215 && ALIGN(size, cachep->align) < PAGE_SIZE) {
2216 cachep->obj_offset += PAGE_SIZE - ALIGN(size, cachep->align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 size = PAGE_SIZE;
2218 }
2219#endif
2220#endif
2221
Ingo Molnare0a42722006-06-23 02:03:46 -07002222 /*
2223 * Determine if the slab management is 'on' or 'off' slab.
2224 * (bootstrapping cannot cope with offslab caches so don't do
Catalin Marinase7cb55b2009-10-28 13:33:08 +00002225 * it too early on. Always use on-slab management when
2226 * SLAB_NOLEAKTRACE to avoid recursive calls into kmemleak)
Ingo Molnare0a42722006-06-23 02:03:46 -07002227 */
Joonsoo Kim8fc9cf42013-12-02 17:49:43 +09002228 if ((size >= (PAGE_SIZE >> 5)) && !slab_early_init &&
Catalin Marinase7cb55b2009-10-28 13:33:08 +00002229 !(flags & SLAB_NOLEAKTRACE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 /*
2231 * Size is large, assume best to place the slab management obj
2232 * off-slab (should allow better packing of objs).
2233 */
2234 flags |= CFLGS_OFF_SLAB;
2235
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002236 size = ALIGN(size, cachep->align);
Joonsoo Kimf315e3f2013-12-02 17:49:41 +09002237 /*
2238 * We should restrict the number of objects in a slab to implement
2239 * byte sized index. Refer comment on SLAB_OBJ_MIN_SIZE definition.
2240 */
2241 if (FREELIST_BYTE_INDEX && size < SLAB_OBJ_MIN_SIZE)
2242 size = ALIGN(SLAB_OBJ_MIN_SIZE, cachep->align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002244 left_over = calculate_slab_order(cachep, size, cachep->align, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002246 if (!cachep->num)
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002247 return -E2BIG;
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002248
Joonsoo Kim03787302014-06-23 13:22:06 -07002249 freelist_size = calculate_freelist_size(cachep->num, cachep->align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002250
2251 /*
2252 * If the slab has been placed off-slab, and we have enough space then
2253 * move it on-slab. This is at the expense of any extra colouring.
2254 */
Joonsoo Kim8456a642013-10-24 10:07:49 +09002255 if (flags & CFLGS_OFF_SLAB && left_over >= freelist_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256 flags &= ~CFLGS_OFF_SLAB;
Joonsoo Kim8456a642013-10-24 10:07:49 +09002257 left_over -= freelist_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 }
2259
2260 if (flags & CFLGS_OFF_SLAB) {
2261 /* really off slab. No need for manual alignment */
Joonsoo Kim03787302014-06-23 13:22:06 -07002262 freelist_size = calculate_freelist_size(cachep->num, 0);
Ron Lee67461362009-05-22 04:58:22 +09302263
2264#ifdef CONFIG_PAGE_POISONING
2265 /* If we're going to use the generic kernel_map_pages()
2266 * poisoning, then it's going to smash the contents of
2267 * the redzone and userword anyhow, so switch them off.
2268 */
2269 if (size % PAGE_SIZE == 0 && flags & SLAB_POISON)
2270 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
2271#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 }
2273
2274 cachep->colour_off = cache_line_size();
2275 /* Offset must be a multiple of the alignment. */
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002276 if (cachep->colour_off < cachep->align)
2277 cachep->colour_off = cachep->align;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002278 cachep->colour = left_over / cachep->colour_off;
Joonsoo Kim8456a642013-10-24 10:07:49 +09002279 cachep->freelist_size = freelist_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 cachep->flags = flags;
Joonsoo Kima57a4982013-10-24 10:07:44 +09002281 cachep->allocflags = __GFP_COMP;
Christoph Lameter4b51d662007-02-10 01:43:10 -08002282 if (CONFIG_ZONE_DMA_FLAG && (flags & SLAB_CACHE_DMA))
Glauber Costaa618e892012-06-14 16:17:21 +04002283 cachep->allocflags |= GFP_DMA;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002284 cachep->size = size;
Eric Dumazet6a2d7a92006-12-13 00:34:27 -08002285 cachep->reciprocal_buffer_size = reciprocal_value(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002287 if (flags & CFLGS_OFF_SLAB) {
Joonsoo Kim8456a642013-10-24 10:07:49 +09002288 cachep->freelist_cache = kmalloc_slab(freelist_size, 0u);
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002289 /*
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08002290 * This is a possibility for one of the kmalloc_{dma,}_caches.
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002291 * But since we go off slab only for object size greater than
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08002292 * PAGE_SIZE/8, and kmalloc_{dma,}_caches get created
2293 * in ascending order,this should not happen at all.
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002294 * But leave a BUG_ON for some lucky dude.
2295 */
Joonsoo Kim8456a642013-10-24 10:07:49 +09002296 BUG_ON(ZERO_OR_NULL_PTR(cachep->freelist_cache));
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002297 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002299 err = setup_cpu_cache(cachep, gfp);
2300 if (err) {
Christoph Lameter12c36672012-09-04 23:38:33 +00002301 __kmem_cache_shutdown(cachep);
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002302 return err;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002303 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002305 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307
2308#if DEBUG
2309static void check_irq_off(void)
2310{
2311 BUG_ON(!irqs_disabled());
2312}
2313
2314static void check_irq_on(void)
2315{
2316 BUG_ON(irqs_disabled());
2317}
2318
Pekka Enberg343e0d72006-02-01 03:05:50 -08002319static void check_spinlock_acquired(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320{
2321#ifdef CONFIG_SMP
2322 check_irq_off();
Christoph Lameter18bf8542014-08-06 16:04:11 -07002323 assert_spin_locked(&get_node(cachep, numa_mem_id())->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324#endif
2325}
Christoph Lametere498be72005-09-09 13:03:32 -07002326
Pekka Enberg343e0d72006-02-01 03:05:50 -08002327static void check_spinlock_acquired_node(struct kmem_cache *cachep, int node)
Christoph Lametere498be72005-09-09 13:03:32 -07002328{
2329#ifdef CONFIG_SMP
2330 check_irq_off();
Christoph Lameter18bf8542014-08-06 16:04:11 -07002331 assert_spin_locked(&get_node(cachep, node)->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07002332#endif
2333}
2334
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335#else
2336#define check_irq_off() do { } while(0)
2337#define check_irq_on() do { } while(0)
2338#define check_spinlock_acquired(x) do { } while(0)
Christoph Lametere498be72005-09-09 13:03:32 -07002339#define check_spinlock_acquired_node(x, y) do { } while(0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340#endif
2341
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002342static void drain_array(struct kmem_cache *cachep, struct kmem_cache_node *n,
Christoph Lameteraab22072006-03-22 00:09:06 -08002343 struct array_cache *ac,
2344 int force, int node);
2345
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346static void do_drain(void *arg)
2347{
Andrew Mortona737b3e2006-03-22 00:08:11 -08002348 struct kmem_cache *cachep = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 struct array_cache *ac;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07002350 int node = numa_mem_id();
Christoph Lameter18bf8542014-08-06 16:04:11 -07002351 struct kmem_cache_node *n;
Joonsoo Kim97654df2014-08-06 16:04:25 -07002352 LIST_HEAD(list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353
2354 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002355 ac = cpu_cache_get(cachep);
Christoph Lameter18bf8542014-08-06 16:04:11 -07002356 n = get_node(cachep, node);
2357 spin_lock(&n->list_lock);
Joonsoo Kim97654df2014-08-06 16:04:25 -07002358 free_block(cachep, ac->entry, ac->avail, node, &list);
Christoph Lameter18bf8542014-08-06 16:04:11 -07002359 spin_unlock(&n->list_lock);
Joonsoo Kim97654df2014-08-06 16:04:25 -07002360 slabs_destroy(cachep, &list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361 ac->avail = 0;
2362}
2363
Pekka Enberg343e0d72006-02-01 03:05:50 -08002364static void drain_cpu_caches(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365{
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002366 struct kmem_cache_node *n;
Christoph Lametere498be72005-09-09 13:03:32 -07002367 int node;
2368
Jens Axboe15c8b6c2008-05-09 09:39:44 +02002369 on_each_cpu(do_drain, cachep, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 check_irq_on();
Christoph Lameter18bf8542014-08-06 16:04:11 -07002371 for_each_kmem_cache_node(cachep, node, n)
2372 if (n->alien)
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002373 drain_alien_cache(cachep, n->alien);
Roland Dreiera4523a82006-05-15 11:41:00 -07002374
Christoph Lameter18bf8542014-08-06 16:04:11 -07002375 for_each_kmem_cache_node(cachep, node, n)
2376 drain_array(cachep, n, n->shared, 1, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377}
2378
Christoph Lametered11d9e2006-06-30 01:55:45 -07002379/*
2380 * Remove slabs from the list of free slabs.
2381 * Specify the number of slabs to drain in tofree.
2382 *
2383 * Returns the actual number of slabs released.
2384 */
2385static int drain_freelist(struct kmem_cache *cache,
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002386 struct kmem_cache_node *n, int tofree)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387{
Christoph Lametered11d9e2006-06-30 01:55:45 -07002388 struct list_head *p;
2389 int nr_freed;
Joonsoo Kim8456a642013-10-24 10:07:49 +09002390 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002391
Christoph Lametered11d9e2006-06-30 01:55:45 -07002392 nr_freed = 0;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002393 while (nr_freed < tofree && !list_empty(&n->slabs_free)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002395 spin_lock_irq(&n->list_lock);
2396 p = n->slabs_free.prev;
2397 if (p == &n->slabs_free) {
2398 spin_unlock_irq(&n->list_lock);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002399 goto out;
2400 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401
Joonsoo Kim8456a642013-10-24 10:07:49 +09002402 page = list_entry(p, struct page, lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403#if DEBUG
Joonsoo Kim8456a642013-10-24 10:07:49 +09002404 BUG_ON(page->active);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405#endif
Joonsoo Kim8456a642013-10-24 10:07:49 +09002406 list_del(&page->lru);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002407 /*
2408 * Safe to drop the lock. The slab is no longer linked
2409 * to the cache.
2410 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002411 n->free_objects -= cache->num;
2412 spin_unlock_irq(&n->list_lock);
Joonsoo Kim8456a642013-10-24 10:07:49 +09002413 slab_destroy(cache, page);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002414 nr_freed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 }
Christoph Lametered11d9e2006-06-30 01:55:45 -07002416out:
2417 return nr_freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418}
2419
Vladimir Davydov03afc0e2014-06-04 16:07:20 -07002420int __kmem_cache_shrink(struct kmem_cache *cachep)
Christoph Lametere498be72005-09-09 13:03:32 -07002421{
Christoph Lameter18bf8542014-08-06 16:04:11 -07002422 int ret = 0;
2423 int node;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002424 struct kmem_cache_node *n;
Christoph Lametere498be72005-09-09 13:03:32 -07002425
2426 drain_cpu_caches(cachep);
2427
2428 check_irq_on();
Christoph Lameter18bf8542014-08-06 16:04:11 -07002429 for_each_kmem_cache_node(cachep, node, n) {
Wanpeng Li0fa81032013-07-04 08:33:22 +08002430 drain_freelist(cachep, n, slabs_tofree(cachep, n));
Christoph Lametered11d9e2006-06-30 01:55:45 -07002431
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002432 ret += !list_empty(&n->slabs_full) ||
2433 !list_empty(&n->slabs_partial);
Christoph Lametere498be72005-09-09 13:03:32 -07002434 }
2435 return (ret ? 1 : 0);
2436}
2437
Christoph Lameter945cf2b2012-09-04 23:18:33 +00002438int __kmem_cache_shutdown(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439{
Christoph Lameter12c36672012-09-04 23:38:33 +00002440 int i;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002441 struct kmem_cache_node *n;
Vladimir Davydov03afc0e2014-06-04 16:07:20 -07002442 int rc = __kmem_cache_shrink(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443
Christoph Lameter12c36672012-09-04 23:38:33 +00002444 if (rc)
2445 return rc;
2446
2447 for_each_online_cpu(i)
2448 kfree(cachep->array[i]);
2449
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002450 /* NUMA: free the node structures */
Christoph Lameter18bf8542014-08-06 16:04:11 -07002451 for_each_kmem_cache_node(cachep, i, n) {
2452 kfree(n->shared);
2453 free_alien_cache(n->alien);
2454 kfree(n);
2455 cachep->node[i] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 }
Christoph Lameter12c36672012-09-04 23:38:33 +00002457 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002460/*
2461 * Get the memory for a slab management obj.
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08002462 *
2463 * For a slab cache when the slab descriptor is off-slab, the
2464 * slab descriptor can't come from the same cache which is being created,
2465 * Because if it is the case, that means we defer the creation of
2466 * the kmalloc_{dma,}_cache of size sizeof(slab descriptor) to this point.
2467 * And we eventually call down to __kmem_cache_create(), which
2468 * in turn looks up in the kmalloc_{dma,}_caches for the disired-size one.
2469 * This is a "chicken-and-egg" problem.
2470 *
2471 * So the off-slab slab descriptor shall come from the kmalloc_{dma,}_caches,
2472 * which are all initialized during kmem_cache_init().
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002473 */
Joonsoo Kim7e007352013-10-30 19:04:01 +09002474static void *alloc_slabmgmt(struct kmem_cache *cachep,
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002475 struct page *page, int colour_off,
2476 gfp_t local_flags, int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477{
Joonsoo Kim7e007352013-10-30 19:04:01 +09002478 void *freelist;
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002479 void *addr = page_address(page);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002480
Linus Torvalds1da177e2005-04-16 15:20:36 -07002481 if (OFF_SLAB(cachep)) {
2482 /* Slab management obj is off-slab. */
Joonsoo Kim8456a642013-10-24 10:07:49 +09002483 freelist = kmem_cache_alloc_node(cachep->freelist_cache,
Pekka Enberg8759ec52008-11-26 10:01:31 +02002484 local_flags, nodeid);
Joonsoo Kim8456a642013-10-24 10:07:49 +09002485 if (!freelist)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 return NULL;
2487 } else {
Joonsoo Kim8456a642013-10-24 10:07:49 +09002488 freelist = addr + colour_off;
2489 colour_off += cachep->freelist_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490 }
Joonsoo Kim8456a642013-10-24 10:07:49 +09002491 page->active = 0;
2492 page->s_mem = addr + colour_off;
2493 return freelist;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494}
2495
Joonsoo Kim7cc689732014-04-18 16:24:09 +09002496static inline freelist_idx_t get_free_obj(struct page *page, unsigned int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002497{
Joonsoo Kima41adfa2013-12-02 17:49:42 +09002498 return ((freelist_idx_t *)page->freelist)[idx];
Joonsoo Kime5c58df2013-12-02 17:49:40 +09002499}
2500
2501static inline void set_free_obj(struct page *page,
Joonsoo Kim7cc689732014-04-18 16:24:09 +09002502 unsigned int idx, freelist_idx_t val)
Joonsoo Kime5c58df2013-12-02 17:49:40 +09002503{
Joonsoo Kima41adfa2013-12-02 17:49:42 +09002504 ((freelist_idx_t *)(page->freelist))[idx] = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505}
2506
Pekka Enberg343e0d72006-02-01 03:05:50 -08002507static void cache_init_objs(struct kmem_cache *cachep,
Joonsoo Kim8456a642013-10-24 10:07:49 +09002508 struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509{
2510 int i;
2511
2512 for (i = 0; i < cachep->num; i++) {
Joonsoo Kim8456a642013-10-24 10:07:49 +09002513 void *objp = index_to_obj(cachep, page, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514#if DEBUG
2515 /* need to poison the objs? */
2516 if (cachep->flags & SLAB_POISON)
2517 poison_obj(cachep, objp, POISON_FREE);
2518 if (cachep->flags & SLAB_STORE_USER)
2519 *dbg_userword(cachep, objp) = NULL;
2520
2521 if (cachep->flags & SLAB_RED_ZONE) {
2522 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2523 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2524 }
2525 /*
Andrew Mortona737b3e2006-03-22 00:08:11 -08002526 * Constructors are not allowed to allocate memory from the same
2527 * cache which they are a constructor for. Otherwise, deadlock.
2528 * They must also be threaded.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529 */
2530 if (cachep->ctor && !(cachep->flags & SLAB_POISON))
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002531 cachep->ctor(objp + obj_offset(cachep));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532
2533 if (cachep->flags & SLAB_RED_ZONE) {
2534 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
2535 slab_error(cachep, "constructor overwrote the"
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002536 " end of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
2538 slab_error(cachep, "constructor overwrote the"
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002539 " start of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540 }
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002541 if ((cachep->size % PAGE_SIZE) == 0 &&
Andrew Mortona737b3e2006-03-22 00:08:11 -08002542 OFF_SLAB(cachep) && cachep->flags & SLAB_POISON)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002543 kernel_map_pages(virt_to_page(objp),
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002544 cachep->size / PAGE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545#else
2546 if (cachep->ctor)
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002547 cachep->ctor(objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548#endif
Joonsoo Kim03787302014-06-23 13:22:06 -07002549 set_obj_status(page, i, OBJECT_FREE);
Joonsoo Kime5c58df2013-12-02 17:49:40 +09002550 set_free_obj(page, i, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552}
2553
Pekka Enberg343e0d72006-02-01 03:05:50 -08002554static void kmem_flagcheck(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555{
Christoph Lameter4b51d662007-02-10 01:43:10 -08002556 if (CONFIG_ZONE_DMA_FLAG) {
2557 if (flags & GFP_DMA)
Glauber Costaa618e892012-06-14 16:17:21 +04002558 BUG_ON(!(cachep->allocflags & GFP_DMA));
Christoph Lameter4b51d662007-02-10 01:43:10 -08002559 else
Glauber Costaa618e892012-06-14 16:17:21 +04002560 BUG_ON(cachep->allocflags & GFP_DMA);
Christoph Lameter4b51d662007-02-10 01:43:10 -08002561 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002562}
2563
Joonsoo Kim8456a642013-10-24 10:07:49 +09002564static void *slab_get_obj(struct kmem_cache *cachep, struct page *page,
Andrew Mortona737b3e2006-03-22 00:08:11 -08002565 int nodeid)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002566{
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09002567 void *objp;
Matthew Dobson78d382d2006-02-01 03:05:47 -08002568
Joonsoo Kime5c58df2013-12-02 17:49:40 +09002569 objp = index_to_obj(cachep, page, get_free_obj(page, page->active));
Joonsoo Kim8456a642013-10-24 10:07:49 +09002570 page->active++;
Matthew Dobson78d382d2006-02-01 03:05:47 -08002571#if DEBUG
Joonsoo Kim1ea991b2013-10-24 10:07:40 +09002572 WARN_ON(page_to_nid(virt_to_page(objp)) != nodeid);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002573#endif
Matthew Dobson78d382d2006-02-01 03:05:47 -08002574
2575 return objp;
2576}
2577
Joonsoo Kim8456a642013-10-24 10:07:49 +09002578static void slab_put_obj(struct kmem_cache *cachep, struct page *page,
Andrew Mortona737b3e2006-03-22 00:08:11 -08002579 void *objp, int nodeid)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002580{
Joonsoo Kim8456a642013-10-24 10:07:49 +09002581 unsigned int objnr = obj_to_index(cachep, page, objp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002582#if DEBUG
Joonsoo Kim16025172013-10-24 10:07:46 +09002583 unsigned int i;
Matthew Dobson78d382d2006-02-01 03:05:47 -08002584
Matthew Dobson78d382d2006-02-01 03:05:47 -08002585 /* Verify that the slab belongs to the intended node */
Joonsoo Kim1ea991b2013-10-24 10:07:40 +09002586 WARN_ON(page_to_nid(virt_to_page(objp)) != nodeid);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002587
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09002588 /* Verify double free bug */
Joonsoo Kim8456a642013-10-24 10:07:49 +09002589 for (i = page->active; i < cachep->num; i++) {
Joonsoo Kime5c58df2013-12-02 17:49:40 +09002590 if (get_free_obj(page, i) == objnr) {
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09002591 printk(KERN_ERR "slab: double free detected in cache "
2592 "'%s', objp %p\n", cachep->name, objp);
2593 BUG();
2594 }
Matthew Dobson78d382d2006-02-01 03:05:47 -08002595 }
2596#endif
Joonsoo Kim8456a642013-10-24 10:07:49 +09002597 page->active--;
Joonsoo Kime5c58df2013-12-02 17:49:40 +09002598 set_free_obj(page, page->active, objnr);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002599}
2600
Pekka Enberg47768742006-06-23 02:03:07 -07002601/*
2602 * Map pages beginning at addr to the given cache and slab. This is required
2603 * for the slab allocator to be able to lookup the cache and slab of a
Nick Pigginccd35fb2011-01-07 17:49:17 +11002604 * virtual address for kfree, ksize, and slab debugging.
Pekka Enberg47768742006-06-23 02:03:07 -07002605 */
Joonsoo Kim8456a642013-10-24 10:07:49 +09002606static void slab_map_pages(struct kmem_cache *cache, struct page *page,
Joonsoo Kim7e007352013-10-30 19:04:01 +09002607 void *freelist)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608{
Joonsoo Kima57a4982013-10-24 10:07:44 +09002609 page->slab_cache = cache;
Joonsoo Kim8456a642013-10-24 10:07:49 +09002610 page->freelist = freelist;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611}
2612
2613/*
2614 * Grow (by 1) the number of slabs within a cache. This is called by
2615 * kmem_cache_alloc() when there are no active objs left in a cache.
2616 */
Christoph Lameter3c517a62006-12-06 20:33:29 -08002617static int cache_grow(struct kmem_cache *cachep,
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002618 gfp_t flags, int nodeid, struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002619{
Joonsoo Kim7e007352013-10-30 19:04:01 +09002620 void *freelist;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002621 size_t offset;
2622 gfp_t local_flags;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002623 struct kmem_cache_node *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624
Andrew Mortona737b3e2006-03-22 00:08:11 -08002625 /*
2626 * Be lazy and only check for valid flags here, keeping it out of the
2627 * critical path in kmem_cache_alloc().
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 */
Christoph Lameter6cb06222007-10-16 01:25:41 -07002629 BUG_ON(flags & GFP_SLAB_BUG_MASK);
2630 local_flags = flags & (GFP_CONSTRAINT_MASK|GFP_RECLAIM_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002632 /* Take the node list lock to change the colour_next on this node */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633 check_irq_off();
Christoph Lameter18bf8542014-08-06 16:04:11 -07002634 n = get_node(cachep, nodeid);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002635 spin_lock(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636
2637 /* Get colour for the slab, and cal the next value. */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002638 offset = n->colour_next;
2639 n->colour_next++;
2640 if (n->colour_next >= cachep->colour)
2641 n->colour_next = 0;
2642 spin_unlock(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002644 offset *= cachep->colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645
2646 if (local_flags & __GFP_WAIT)
2647 local_irq_enable();
2648
2649 /*
2650 * The test for missing atomic flag is performed here, rather than
2651 * the more obvious place, simply to reduce the critical path length
2652 * in kmem_cache_alloc(). If a caller is seriously mis-behaving they
2653 * will eventually be caught here (where it matters).
2654 */
2655 kmem_flagcheck(cachep, flags);
2656
Andrew Mortona737b3e2006-03-22 00:08:11 -08002657 /*
2658 * Get mem for the objs. Attempt to allocate a physical page from
2659 * 'nodeid'.
Christoph Lametere498be72005-09-09 13:03:32 -07002660 */
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002661 if (!page)
2662 page = kmem_getpages(cachep, local_flags, nodeid);
2663 if (!page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 goto failed;
2665
2666 /* Get slab management. */
Joonsoo Kim8456a642013-10-24 10:07:49 +09002667 freelist = alloc_slabmgmt(cachep, page, offset,
Christoph Lameter6cb06222007-10-16 01:25:41 -07002668 local_flags & ~GFP_CONSTRAINT_MASK, nodeid);
Joonsoo Kim8456a642013-10-24 10:07:49 +09002669 if (!freelist)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670 goto opps1;
2671
Joonsoo Kim8456a642013-10-24 10:07:49 +09002672 slab_map_pages(cachep, page, freelist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673
Joonsoo Kim8456a642013-10-24 10:07:49 +09002674 cache_init_objs(cachep, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675
2676 if (local_flags & __GFP_WAIT)
2677 local_irq_disable();
2678 check_irq_off();
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002679 spin_lock(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680
2681 /* Make slab active. */
Joonsoo Kim8456a642013-10-24 10:07:49 +09002682 list_add_tail(&page->lru, &(n->slabs_free));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 STATS_INC_GROWN(cachep);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002684 n->free_objects += cachep->num;
2685 spin_unlock(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 return 1;
Andrew Mortona737b3e2006-03-22 00:08:11 -08002687opps1:
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002688 kmem_freepages(cachep, page);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002689failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690 if (local_flags & __GFP_WAIT)
2691 local_irq_disable();
2692 return 0;
2693}
2694
2695#if DEBUG
2696
2697/*
2698 * Perform extra freeing checks:
2699 * - detect bad pointers.
2700 * - POISON/RED_ZONE checking
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701 */
2702static void kfree_debugcheck(const void *objp)
2703{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704 if (!virt_addr_valid(objp)) {
2705 printk(KERN_ERR "kfree_debugcheck: out of range ptr %lxh.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002706 (unsigned long)objp);
2707 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709}
2710
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002711static inline void verify_redzone_free(struct kmem_cache *cache, void *obj)
2712{
David Woodhouseb46b8f12007-05-08 00:22:59 -07002713 unsigned long long redzone1, redzone2;
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002714
2715 redzone1 = *dbg_redzone1(cache, obj);
2716 redzone2 = *dbg_redzone2(cache, obj);
2717
2718 /*
2719 * Redzone is ok.
2720 */
2721 if (redzone1 == RED_ACTIVE && redzone2 == RED_ACTIVE)
2722 return;
2723
2724 if (redzone1 == RED_INACTIVE && redzone2 == RED_INACTIVE)
2725 slab_error(cache, "double free detected");
2726 else
2727 slab_error(cache, "memory outside object was overwritten");
2728
David Woodhouseb46b8f12007-05-08 00:22:59 -07002729 printk(KERN_ERR "%p: redzone 1:0x%llx, redzone 2:0x%llx.\n",
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002730 obj, redzone1, redzone2);
2731}
2732
Pekka Enberg343e0d72006-02-01 03:05:50 -08002733static void *cache_free_debugcheck(struct kmem_cache *cachep, void *objp,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03002734 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002735{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736 unsigned int objnr;
Joonsoo Kim8456a642013-10-24 10:07:49 +09002737 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738
Matthew Wilcox80cbd912007-11-29 12:05:13 -07002739 BUG_ON(virt_to_cache(objp) != cachep);
2740
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002741 objp -= obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742 kfree_debugcheck(objp);
Christoph Lameterb49af682007-05-06 14:49:41 -07002743 page = virt_to_head_page(objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745 if (cachep->flags & SLAB_RED_ZONE) {
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002746 verify_redzone_free(cachep, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2748 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2749 }
2750 if (cachep->flags & SLAB_STORE_USER)
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03002751 *dbg_userword(cachep, objp) = (void *)caller;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752
Joonsoo Kim8456a642013-10-24 10:07:49 +09002753 objnr = obj_to_index(cachep, page, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002754
2755 BUG_ON(objnr >= cachep->num);
Joonsoo Kim8456a642013-10-24 10:07:49 +09002756 BUG_ON(objp != index_to_obj(cachep, page, objnr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757
Joonsoo Kim03787302014-06-23 13:22:06 -07002758 set_obj_status(page, objnr, OBJECT_FREE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759 if (cachep->flags & SLAB_POISON) {
2760#ifdef CONFIG_DEBUG_PAGEALLOC
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002761 if ((cachep->size % PAGE_SIZE)==0 && OFF_SLAB(cachep)) {
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03002762 store_stackinfo(cachep, objp, caller);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002763 kernel_map_pages(virt_to_page(objp),
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002764 cachep->size / PAGE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765 } else {
2766 poison_obj(cachep, objp, POISON_FREE);
2767 }
2768#else
2769 poison_obj(cachep, objp, POISON_FREE);
2770#endif
2771 }
2772 return objp;
2773}
2774
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775#else
2776#define kfree_debugcheck(x) do { } while(0)
2777#define cache_free_debugcheck(x,objp,z) (objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778#endif
2779
Mel Gorman072bb0a2012-07-31 16:43:58 -07002780static void *cache_alloc_refill(struct kmem_cache *cachep, gfp_t flags,
2781 bool force_refill)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782{
2783 int batchcount;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002784 struct kmem_cache_node *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785 struct array_cache *ac;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07002786 int node;
2787
Joe Korty6d2144d2008-03-05 15:04:59 -08002788 check_irq_off();
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07002789 node = numa_mem_id();
Mel Gorman072bb0a2012-07-31 16:43:58 -07002790 if (unlikely(force_refill))
2791 goto force_grow;
2792retry:
Joe Korty6d2144d2008-03-05 15:04:59 -08002793 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794 batchcount = ac->batchcount;
2795 if (!ac->touched && batchcount > BATCHREFILL_LIMIT) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002796 /*
2797 * If there was little recent activity on this cache, then
2798 * perform only a partial refill. Otherwise we could generate
2799 * refill bouncing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800 */
2801 batchcount = BATCHREFILL_LIMIT;
2802 }
Christoph Lameter18bf8542014-08-06 16:04:11 -07002803 n = get_node(cachep, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002805 BUG_ON(ac->avail > 0 || !n);
2806 spin_lock(&n->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07002807
Christoph Lameter3ded1752006-03-25 03:06:44 -08002808 /* See if we can refill from the shared array */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002809 if (n->shared && transfer_objects(ac, n->shared, batchcount)) {
2810 n->shared->touched = 1;
Christoph Lameter3ded1752006-03-25 03:06:44 -08002811 goto alloc_done;
Nick Piggin44b57f12010-01-27 22:27:40 +11002812 }
Christoph Lameter3ded1752006-03-25 03:06:44 -08002813
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814 while (batchcount > 0) {
2815 struct list_head *entry;
Joonsoo Kim8456a642013-10-24 10:07:49 +09002816 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817 /* Get slab alloc is to come from. */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002818 entry = n->slabs_partial.next;
2819 if (entry == &n->slabs_partial) {
2820 n->free_touched = 1;
2821 entry = n->slabs_free.next;
2822 if (entry == &n->slabs_free)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 goto must_grow;
2824 }
2825
Joonsoo Kim8456a642013-10-24 10:07:49 +09002826 page = list_entry(entry, struct page, lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827 check_spinlock_acquired(cachep);
Pekka Enberg714b81712007-05-06 14:49:03 -07002828
2829 /*
2830 * The slab was either on partial or free list so
2831 * there must be at least one object available for
2832 * allocation.
2833 */
Joonsoo Kim8456a642013-10-24 10:07:49 +09002834 BUG_ON(page->active >= cachep->num);
Pekka Enberg714b81712007-05-06 14:49:03 -07002835
Joonsoo Kim8456a642013-10-24 10:07:49 +09002836 while (page->active < cachep->num && batchcount--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837 STATS_INC_ALLOCED(cachep);
2838 STATS_INC_ACTIVE(cachep);
2839 STATS_SET_HIGH(cachep);
2840
Joonsoo Kim8456a642013-10-24 10:07:49 +09002841 ac_put_obj(cachep, ac, slab_get_obj(cachep, page,
Mel Gorman072bb0a2012-07-31 16:43:58 -07002842 node));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002843 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844
2845 /* move slabp to correct slabp list: */
Joonsoo Kim8456a642013-10-24 10:07:49 +09002846 list_del(&page->lru);
2847 if (page->active == cachep->num)
Dave Hansen34bf6ef2014-04-08 13:44:27 -07002848 list_add(&page->lru, &n->slabs_full);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849 else
Dave Hansen34bf6ef2014-04-08 13:44:27 -07002850 list_add(&page->lru, &n->slabs_partial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851 }
2852
Andrew Mortona737b3e2006-03-22 00:08:11 -08002853must_grow:
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002854 n->free_objects -= ac->avail;
Andrew Mortona737b3e2006-03-22 00:08:11 -08002855alloc_done:
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002856 spin_unlock(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857
2858 if (unlikely(!ac->avail)) {
2859 int x;
Mel Gorman072bb0a2012-07-31 16:43:58 -07002860force_grow:
Christoph Lameter3c517a62006-12-06 20:33:29 -08002861 x = cache_grow(cachep, flags | GFP_THISNODE, node, NULL);
Christoph Lametere498be72005-09-09 13:03:32 -07002862
Andrew Mortona737b3e2006-03-22 00:08:11 -08002863 /* cache_grow can reenable interrupts, then ac could change. */
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002864 ac = cpu_cache_get(cachep);
David Rientjes51cd8e62012-08-28 19:57:21 -07002865 node = numa_mem_id();
Mel Gorman072bb0a2012-07-31 16:43:58 -07002866
2867 /* no objects in sight? abort */
2868 if (!x && (ac->avail == 0 || force_refill))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002869 return NULL;
2870
Andrew Mortona737b3e2006-03-22 00:08:11 -08002871 if (!ac->avail) /* objects refilled by interrupt? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002872 goto retry;
2873 }
2874 ac->touched = 1;
Mel Gorman072bb0a2012-07-31 16:43:58 -07002875
2876 return ac_get_obj(cachep, ac, flags, force_refill);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877}
2878
Andrew Mortona737b3e2006-03-22 00:08:11 -08002879static inline void cache_alloc_debugcheck_before(struct kmem_cache *cachep,
2880 gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881{
2882 might_sleep_if(flags & __GFP_WAIT);
2883#if DEBUG
2884 kmem_flagcheck(cachep, flags);
2885#endif
2886}
2887
2888#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08002889static void *cache_alloc_debugcheck_after(struct kmem_cache *cachep,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03002890 gfp_t flags, void *objp, unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891{
Joonsoo Kim03787302014-06-23 13:22:06 -07002892 struct page *page;
2893
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002894 if (!objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895 return objp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002896 if (cachep->flags & SLAB_POISON) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897#ifdef CONFIG_DEBUG_PAGEALLOC
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002898 if ((cachep->size % PAGE_SIZE) == 0 && OFF_SLAB(cachep))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002899 kernel_map_pages(virt_to_page(objp),
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002900 cachep->size / PAGE_SIZE, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901 else
2902 check_poison_obj(cachep, objp);
2903#else
2904 check_poison_obj(cachep, objp);
2905#endif
2906 poison_obj(cachep, objp, POISON_INUSE);
2907 }
2908 if (cachep->flags & SLAB_STORE_USER)
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03002909 *dbg_userword(cachep, objp) = (void *)caller;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910
2911 if (cachep->flags & SLAB_RED_ZONE) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002912 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE ||
2913 *dbg_redzone2(cachep, objp) != RED_INACTIVE) {
2914 slab_error(cachep, "double free, or memory outside"
2915 " object was overwritten");
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002916 printk(KERN_ERR
David Woodhouseb46b8f12007-05-08 00:22:59 -07002917 "%p: redzone 1:0x%llx, redzone 2:0x%llx\n",
Andrew Mortona737b3e2006-03-22 00:08:11 -08002918 objp, *dbg_redzone1(cachep, objp),
2919 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920 }
2921 *dbg_redzone1(cachep, objp) = RED_ACTIVE;
2922 *dbg_redzone2(cachep, objp) = RED_ACTIVE;
2923 }
Joonsoo Kim03787302014-06-23 13:22:06 -07002924
2925 page = virt_to_head_page(objp);
2926 set_obj_status(page, obj_to_index(cachep, page, objp), OBJECT_ACTIVE);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002927 objp += obj_offset(cachep);
Christoph Lameter4f104932007-05-06 14:50:17 -07002928 if (cachep->ctor && cachep->flags & SLAB_POISON)
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002929 cachep->ctor(objp);
Tetsuo Handa7ea466f2011-07-21 09:42:45 +09002930 if (ARCH_SLAB_MINALIGN &&
2931 ((unsigned long)objp & (ARCH_SLAB_MINALIGN-1))) {
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002932 printk(KERN_ERR "0x%p: not aligned to ARCH_SLAB_MINALIGN=%d\n",
Hugh Dickinsc2251502011-07-11 13:35:08 -07002933 objp, (int)ARCH_SLAB_MINALIGN);
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002934 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935 return objp;
2936}
2937#else
2938#define cache_alloc_debugcheck_after(a,b,objp,d) (objp)
2939#endif
2940
Akinobu Mita773ff602008-12-23 19:37:01 +09002941static bool slab_should_failslab(struct kmem_cache *cachep, gfp_t flags)
Akinobu Mita8a8b6502006-12-08 02:39:44 -08002942{
Joonsoo Kim8a9c61d2014-08-06 16:04:20 -07002943 if (unlikely(cachep == kmem_cache))
Akinobu Mita773ff602008-12-23 19:37:01 +09002944 return false;
Akinobu Mita8a8b6502006-12-08 02:39:44 -08002945
Christoph Lameter8c138bc2012-06-13 10:24:58 -05002946 return should_failslab(cachep->object_size, flags, cachep->flags);
Akinobu Mita8a8b6502006-12-08 02:39:44 -08002947}
2948
Pekka Enberg343e0d72006-02-01 03:05:50 -08002949static inline void *____cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002951 void *objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952 struct array_cache *ac;
Mel Gorman072bb0a2012-07-31 16:43:58 -07002953 bool force_refill = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954
Alok N Kataria5c382302005-09-27 21:45:46 -07002955 check_irq_off();
Akinobu Mita8a8b6502006-12-08 02:39:44 -08002956
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002957 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958 if (likely(ac->avail)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959 ac->touched = 1;
Mel Gorman072bb0a2012-07-31 16:43:58 -07002960 objp = ac_get_obj(cachep, ac, flags, false);
2961
J. R. Okajimaddbf2e82009-12-02 16:55:50 +09002962 /*
Mel Gorman072bb0a2012-07-31 16:43:58 -07002963 * Allow for the possibility all avail objects are not allowed
2964 * by the current flags
J. R. Okajimaddbf2e82009-12-02 16:55:50 +09002965 */
Mel Gorman072bb0a2012-07-31 16:43:58 -07002966 if (objp) {
2967 STATS_INC_ALLOCHIT(cachep);
2968 goto out;
2969 }
2970 force_refill = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971 }
Mel Gorman072bb0a2012-07-31 16:43:58 -07002972
2973 STATS_INC_ALLOCMISS(cachep);
2974 objp = cache_alloc_refill(cachep, flags, force_refill);
2975 /*
2976 * the 'ac' may be updated by cache_alloc_refill(),
2977 * and kmemleak_erase() requires its correct value.
2978 */
2979 ac = cpu_cache_get(cachep);
2980
2981out:
Catalin Marinasd5cff632009-06-11 13:22:40 +01002982 /*
2983 * To avoid a false negative, if an object that is in one of the
2984 * per-CPU caches is leaked, we need to make sure kmemleak doesn't
2985 * treat the array pointers as a reference to the object.
2986 */
J. R. Okajimaf3d8b532009-12-02 16:55:49 +09002987 if (objp)
2988 kmemleak_erase(&ac->entry[ac->avail]);
Alok N Kataria5c382302005-09-27 21:45:46 -07002989 return objp;
2990}
2991
Christoph Lametere498be72005-09-09 13:03:32 -07002992#ifdef CONFIG_NUMA
2993/*
Zefan Li2ad654b2014-09-25 09:41:02 +08002994 * Try allocating on another node if PFA_SPREAD_SLAB is a mempolicy is set.
Paul Jacksonc61afb12006-03-24 03:16:08 -08002995 *
2996 * If we are in_interrupt, then process context, including cpusets and
2997 * mempolicy, may not apply and should not be used for allocation policy.
2998 */
2999static void *alternate_node_alloc(struct kmem_cache *cachep, gfp_t flags)
3000{
3001 int nid_alloc, nid_here;
3002
Christoph Lameter765c4502006-09-27 01:50:08 -07003003 if (in_interrupt() || (flags & __GFP_THISNODE))
Paul Jacksonc61afb12006-03-24 03:16:08 -08003004 return NULL;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003005 nid_alloc = nid_here = numa_mem_id();
Paul Jacksonc61afb12006-03-24 03:16:08 -08003006 if (cpuset_do_slab_mem_spread() && (cachep->flags & SLAB_MEM_SPREAD))
Jack Steiner6adef3e2010-05-26 14:42:49 -07003007 nid_alloc = cpuset_slab_spread_node();
Paul Jacksonc61afb12006-03-24 03:16:08 -08003008 else if (current->mempolicy)
David Rientjes2a389612014-04-07 15:37:29 -07003009 nid_alloc = mempolicy_slab_node();
Paul Jacksonc61afb12006-03-24 03:16:08 -08003010 if (nid_alloc != nid_here)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003011 return ____cache_alloc_node(cachep, flags, nid_alloc);
Paul Jacksonc61afb12006-03-24 03:16:08 -08003012 return NULL;
3013}
3014
3015/*
Christoph Lameter765c4502006-09-27 01:50:08 -07003016 * Fallback function if there was no memory available and no objects on a
Christoph Lameter3c517a62006-12-06 20:33:29 -08003017 * certain node and fall back is permitted. First we scan all the
Christoph Lameter6a673682013-01-10 19:14:19 +00003018 * available node for available objects. If that fails then we
Christoph Lameter3c517a62006-12-06 20:33:29 -08003019 * perform an allocation without specifying a node. This allows the page
3020 * allocator to do its reclaim / fallback magic. We then insert the
3021 * slab into the proper nodelist and then allocate from it.
Christoph Lameter765c4502006-09-27 01:50:08 -07003022 */
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003023static void *fallback_alloc(struct kmem_cache *cache, gfp_t flags)
Christoph Lameter765c4502006-09-27 01:50:08 -07003024{
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003025 struct zonelist *zonelist;
3026 gfp_t local_flags;
Mel Gormandd1a2392008-04-28 02:12:17 -07003027 struct zoneref *z;
Mel Gorman54a6eb52008-04-28 02:12:16 -07003028 struct zone *zone;
3029 enum zone_type high_zoneidx = gfp_zone(flags);
Christoph Lameter765c4502006-09-27 01:50:08 -07003030 void *obj = NULL;
Christoph Lameter3c517a62006-12-06 20:33:29 -08003031 int nid;
Mel Gormancc9a6c82012-03-21 16:34:11 -07003032 unsigned int cpuset_mems_cookie;
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003033
3034 if (flags & __GFP_THISNODE)
3035 return NULL;
3036
Christoph Lameter6cb06222007-10-16 01:25:41 -07003037 local_flags = flags & (GFP_CONSTRAINT_MASK|GFP_RECLAIM_MASK);
Christoph Lameter765c4502006-09-27 01:50:08 -07003038
Mel Gormancc9a6c82012-03-21 16:34:11 -07003039retry_cpuset:
Mel Gormand26914d2014-04-03 14:47:24 -07003040 cpuset_mems_cookie = read_mems_allowed_begin();
David Rientjes2a389612014-04-07 15:37:29 -07003041 zonelist = node_zonelist(mempolicy_slab_node(), flags);
Mel Gormancc9a6c82012-03-21 16:34:11 -07003042
Christoph Lameter3c517a62006-12-06 20:33:29 -08003043retry:
3044 /*
3045 * Look through allowed nodes for objects available
3046 * from existing per node queues.
3047 */
Mel Gorman54a6eb52008-04-28 02:12:16 -07003048 for_each_zone_zonelist(zone, z, zonelist, high_zoneidx) {
3049 nid = zone_to_nid(zone);
Christoph Lameteraedb0eb2006-10-21 10:24:16 -07003050
Mel Gorman54a6eb52008-04-28 02:12:16 -07003051 if (cpuset_zone_allowed_hardwall(zone, flags) &&
Christoph Lameter18bf8542014-08-06 16:04:11 -07003052 get_node(cache, nid) &&
3053 get_node(cache, nid)->free_objects) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003054 obj = ____cache_alloc_node(cache,
3055 flags | GFP_THISNODE, nid);
Christoph Lameter481c5342008-06-21 16:46:35 -07003056 if (obj)
3057 break;
3058 }
Christoph Lameter3c517a62006-12-06 20:33:29 -08003059 }
3060
Christoph Lametercfce6602007-05-06 14:50:17 -07003061 if (!obj) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003062 /*
3063 * This allocation will be performed within the constraints
3064 * of the current cpuset / memory policy requirements.
3065 * We may trigger various forms of reclaim on the allowed
3066 * set and go into memory reserves if necessary.
3067 */
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09003068 struct page *page;
3069
Christoph Lameterdd47ea72006-12-13 00:34:11 -08003070 if (local_flags & __GFP_WAIT)
3071 local_irq_enable();
3072 kmem_flagcheck(cache, flags);
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09003073 page = kmem_getpages(cache, local_flags, numa_mem_id());
Christoph Lameterdd47ea72006-12-13 00:34:11 -08003074 if (local_flags & __GFP_WAIT)
3075 local_irq_disable();
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09003076 if (page) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003077 /*
3078 * Insert into the appropriate per node queues
3079 */
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09003080 nid = page_to_nid(page);
3081 if (cache_grow(cache, flags, nid, page)) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003082 obj = ____cache_alloc_node(cache,
3083 flags | GFP_THISNODE, nid);
3084 if (!obj)
3085 /*
3086 * Another processor may allocate the
3087 * objects in the slab since we are
3088 * not holding any locks.
3089 */
3090 goto retry;
3091 } else {
Hugh Dickinsb6a60452007-01-05 16:36:36 -08003092 /* cache_grow already freed obj */
Christoph Lameter3c517a62006-12-06 20:33:29 -08003093 obj = NULL;
3094 }
3095 }
Christoph Lameteraedb0eb2006-10-21 10:24:16 -07003096 }
Mel Gormancc9a6c82012-03-21 16:34:11 -07003097
Mel Gormand26914d2014-04-03 14:47:24 -07003098 if (unlikely(!obj && read_mems_allowed_retry(cpuset_mems_cookie)))
Mel Gormancc9a6c82012-03-21 16:34:11 -07003099 goto retry_cpuset;
Christoph Lameter765c4502006-09-27 01:50:08 -07003100 return obj;
3101}
3102
3103/*
Christoph Lametere498be72005-09-09 13:03:32 -07003104 * A interface to enable slab creation on nodeid
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 */
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003106static void *____cache_alloc_node(struct kmem_cache *cachep, gfp_t flags,
Andrew Mortona737b3e2006-03-22 00:08:11 -08003107 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07003108{
3109 struct list_head *entry;
Joonsoo Kim8456a642013-10-24 10:07:49 +09003110 struct page *page;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003111 struct kmem_cache_node *n;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003112 void *obj;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003113 int x;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114
Aaron Tomlin14e50c62013-04-26 16:15:34 +01003115 VM_BUG_ON(nodeid > num_online_nodes());
Christoph Lameter18bf8542014-08-06 16:04:11 -07003116 n = get_node(cachep, nodeid);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003117 BUG_ON(!n);
Christoph Lametere498be72005-09-09 13:03:32 -07003118
Andrew Mortona737b3e2006-03-22 00:08:11 -08003119retry:
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08003120 check_irq_off();
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003121 spin_lock(&n->list_lock);
3122 entry = n->slabs_partial.next;
3123 if (entry == &n->slabs_partial) {
3124 n->free_touched = 1;
3125 entry = n->slabs_free.next;
3126 if (entry == &n->slabs_free)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003127 goto must_grow;
3128 }
Christoph Lametere498be72005-09-09 13:03:32 -07003129
Joonsoo Kim8456a642013-10-24 10:07:49 +09003130 page = list_entry(entry, struct page, lru);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003131 check_spinlock_acquired_node(cachep, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07003132
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003133 STATS_INC_NODEALLOCS(cachep);
3134 STATS_INC_ACTIVE(cachep);
3135 STATS_SET_HIGH(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003136
Joonsoo Kim8456a642013-10-24 10:07:49 +09003137 BUG_ON(page->active == cachep->num);
Christoph Lametere498be72005-09-09 13:03:32 -07003138
Joonsoo Kim8456a642013-10-24 10:07:49 +09003139 obj = slab_get_obj(cachep, page, nodeid);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003140 n->free_objects--;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003141 /* move slabp to correct slabp list: */
Joonsoo Kim8456a642013-10-24 10:07:49 +09003142 list_del(&page->lru);
Christoph Lametere498be72005-09-09 13:03:32 -07003143
Joonsoo Kim8456a642013-10-24 10:07:49 +09003144 if (page->active == cachep->num)
3145 list_add(&page->lru, &n->slabs_full);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003146 else
Joonsoo Kim8456a642013-10-24 10:07:49 +09003147 list_add(&page->lru, &n->slabs_partial);
Christoph Lametere498be72005-09-09 13:03:32 -07003148
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003149 spin_unlock(&n->list_lock);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003150 goto done;
Christoph Lametere498be72005-09-09 13:03:32 -07003151
Andrew Mortona737b3e2006-03-22 00:08:11 -08003152must_grow:
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003153 spin_unlock(&n->list_lock);
Christoph Lameter3c517a62006-12-06 20:33:29 -08003154 x = cache_grow(cachep, flags | GFP_THISNODE, nodeid, NULL);
Christoph Lameter765c4502006-09-27 01:50:08 -07003155 if (x)
3156 goto retry;
Christoph Lametere498be72005-09-09 13:03:32 -07003157
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003158 return fallback_alloc(cachep, flags);
Christoph Lameter765c4502006-09-27 01:50:08 -07003159
Andrew Mortona737b3e2006-03-22 00:08:11 -08003160done:
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003161 return obj;
Christoph Lametere498be72005-09-09 13:03:32 -07003162}
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003163
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003164static __always_inline void *
Ezequiel Garcia48356302012-09-08 17:47:57 -03003165slab_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003166 unsigned long caller)
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003167{
3168 unsigned long save_flags;
3169 void *ptr;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003170 int slab_node = numa_mem_id();
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003171
Benjamin Herrenschmidtdcce2842009-06-18 13:24:12 +10003172 flags &= gfp_allowed_mask;
Pekka Enberg7e85ee02009-06-12 14:03:06 +03003173
Nick Piggincf40bd12009-01-21 08:12:39 +01003174 lockdep_trace_alloc(flags);
3175
Akinobu Mita773ff602008-12-23 19:37:01 +09003176 if (slab_should_failslab(cachep, flags))
Akinobu Mita824ebef2007-05-06 14:49:58 -07003177 return NULL;
3178
Glauber Costad79923f2012-12-18 14:22:48 -08003179 cachep = memcg_kmem_get_cache(cachep, flags);
3180
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003181 cache_alloc_debugcheck_before(cachep, flags);
3182 local_irq_save(save_flags);
3183
Andrew Mortoneacbbae2011-07-28 13:59:49 -07003184 if (nodeid == NUMA_NO_NODE)
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003185 nodeid = slab_node;
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003186
Christoph Lameter18bf8542014-08-06 16:04:11 -07003187 if (unlikely(!get_node(cachep, nodeid))) {
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003188 /* Node not bootstrapped yet */
3189 ptr = fallback_alloc(cachep, flags);
3190 goto out;
3191 }
3192
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003193 if (nodeid == slab_node) {
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003194 /*
3195 * Use the locally cached objects if possible.
3196 * However ____cache_alloc does not allow fallback
3197 * to other nodes. It may fail while we still have
3198 * objects on other nodes available.
3199 */
3200 ptr = ____cache_alloc(cachep, flags);
3201 if (ptr)
3202 goto out;
3203 }
3204 /* ___cache_alloc_node can fall back to other nodes */
3205 ptr = ____cache_alloc_node(cachep, flags, nodeid);
3206 out:
3207 local_irq_restore(save_flags);
3208 ptr = cache_alloc_debugcheck_after(cachep, flags, ptr, caller);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003209 kmemleak_alloc_recursive(ptr, cachep->object_size, 1, cachep->flags,
Catalin Marinasd5cff632009-06-11 13:22:40 +01003210 flags);
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003211
Joe Perches5087c822013-09-10 17:02:51 -07003212 if (likely(ptr)) {
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003213 kmemcheck_slab_alloc(cachep, flags, ptr, cachep->object_size);
Joe Perches5087c822013-09-10 17:02:51 -07003214 if (unlikely(flags & __GFP_ZERO))
3215 memset(ptr, 0, cachep->object_size);
3216 }
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003217
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003218 return ptr;
3219}
3220
3221static __always_inline void *
3222__do_cache_alloc(struct kmem_cache *cache, gfp_t flags)
3223{
3224 void *objp;
3225
Zefan Li2ad654b2014-09-25 09:41:02 +08003226 if (current->mempolicy || cpuset_do_slab_mem_spread()) {
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003227 objp = alternate_node_alloc(cache, flags);
3228 if (objp)
3229 goto out;
3230 }
3231 objp = ____cache_alloc(cache, flags);
3232
3233 /*
3234 * We may just have run out of memory on the local node.
3235 * ____cache_alloc_node() knows how to locate memory on other nodes
3236 */
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003237 if (!objp)
3238 objp = ____cache_alloc_node(cache, flags, numa_mem_id());
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003239
3240 out:
3241 return objp;
3242}
3243#else
3244
3245static __always_inline void *
3246__do_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
3247{
3248 return ____cache_alloc(cachep, flags);
3249}
3250
3251#endif /* CONFIG_NUMA */
3252
3253static __always_inline void *
Ezequiel Garcia48356302012-09-08 17:47:57 -03003254slab_alloc(struct kmem_cache *cachep, gfp_t flags, unsigned long caller)
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003255{
3256 unsigned long save_flags;
3257 void *objp;
3258
Benjamin Herrenschmidtdcce2842009-06-18 13:24:12 +10003259 flags &= gfp_allowed_mask;
Pekka Enberg7e85ee02009-06-12 14:03:06 +03003260
Nick Piggincf40bd12009-01-21 08:12:39 +01003261 lockdep_trace_alloc(flags);
3262
Akinobu Mita773ff602008-12-23 19:37:01 +09003263 if (slab_should_failslab(cachep, flags))
Akinobu Mita824ebef2007-05-06 14:49:58 -07003264 return NULL;
3265
Glauber Costad79923f2012-12-18 14:22:48 -08003266 cachep = memcg_kmem_get_cache(cachep, flags);
3267
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003268 cache_alloc_debugcheck_before(cachep, flags);
3269 local_irq_save(save_flags);
3270 objp = __do_cache_alloc(cachep, flags);
3271 local_irq_restore(save_flags);
3272 objp = cache_alloc_debugcheck_after(cachep, flags, objp, caller);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003273 kmemleak_alloc_recursive(objp, cachep->object_size, 1, cachep->flags,
Catalin Marinasd5cff632009-06-11 13:22:40 +01003274 flags);
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003275 prefetchw(objp);
3276
Joe Perches5087c822013-09-10 17:02:51 -07003277 if (likely(objp)) {
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003278 kmemcheck_slab_alloc(cachep, flags, objp, cachep->object_size);
Joe Perches5087c822013-09-10 17:02:51 -07003279 if (unlikely(flags & __GFP_ZERO))
3280 memset(objp, 0, cachep->object_size);
3281 }
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003282
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003283 return objp;
3284}
Christoph Lametere498be72005-09-09 13:03:32 -07003285
3286/*
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08003287 * Caller needs to acquire correct kmem_cache_node's list_lock
Joonsoo Kim97654df2014-08-06 16:04:25 -07003288 * @list: List of detached free slabs should be freed by caller
Christoph Lametere498be72005-09-09 13:03:32 -07003289 */
Joonsoo Kim97654df2014-08-06 16:04:25 -07003290static void free_block(struct kmem_cache *cachep, void **objpp,
3291 int nr_objects, int node, struct list_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292{
3293 int i;
Joonsoo Kim25c063f2014-08-06 16:04:22 -07003294 struct kmem_cache_node *n = get_node(cachep, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003295
3296 for (i = 0; i < nr_objects; i++) {
Mel Gorman072bb0a2012-07-31 16:43:58 -07003297 void *objp;
Joonsoo Kim8456a642013-10-24 10:07:49 +09003298 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299
Mel Gorman072bb0a2012-07-31 16:43:58 -07003300 clear_obj_pfmemalloc(&objpp[i]);
3301 objp = objpp[i];
3302
Joonsoo Kim8456a642013-10-24 10:07:49 +09003303 page = virt_to_head_page(objp);
Joonsoo Kim8456a642013-10-24 10:07:49 +09003304 list_del(&page->lru);
Christoph Lameterff694162005-09-22 21:44:02 -07003305 check_spinlock_acquired_node(cachep, node);
Joonsoo Kim8456a642013-10-24 10:07:49 +09003306 slab_put_obj(cachep, page, objp, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307 STATS_DEC_ACTIVE(cachep);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003308 n->free_objects++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309
3310 /* fixup slab chains */
Joonsoo Kim8456a642013-10-24 10:07:49 +09003311 if (page->active == 0) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003312 if (n->free_objects > n->free_limit) {
3313 n->free_objects -= cachep->num;
Joonsoo Kim97654df2014-08-06 16:04:25 -07003314 list_add_tail(&page->lru, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003315 } else {
Joonsoo Kim8456a642013-10-24 10:07:49 +09003316 list_add(&page->lru, &n->slabs_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003317 }
3318 } else {
3319 /* Unconditionally move a slab to the end of the
3320 * partial list on free - maximum time for the
3321 * other objects to be freed, too.
3322 */
Joonsoo Kim8456a642013-10-24 10:07:49 +09003323 list_add_tail(&page->lru, &n->slabs_partial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003324 }
3325 }
3326}
3327
Pekka Enberg343e0d72006-02-01 03:05:50 -08003328static void cache_flusharray(struct kmem_cache *cachep, struct array_cache *ac)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003329{
3330 int batchcount;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003331 struct kmem_cache_node *n;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003332 int node = numa_mem_id();
Joonsoo Kim97654df2014-08-06 16:04:25 -07003333 LIST_HEAD(list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003334
3335 batchcount = ac->batchcount;
3336#if DEBUG
3337 BUG_ON(!batchcount || batchcount > ac->avail);
3338#endif
3339 check_irq_off();
Christoph Lameter18bf8542014-08-06 16:04:11 -07003340 n = get_node(cachep, node);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003341 spin_lock(&n->list_lock);
3342 if (n->shared) {
3343 struct array_cache *shared_array = n->shared;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003344 int max = shared_array->limit - shared_array->avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003345 if (max) {
3346 if (batchcount > max)
3347 batchcount = max;
Christoph Lametere498be72005-09-09 13:03:32 -07003348 memcpy(&(shared_array->entry[shared_array->avail]),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003349 ac->entry, sizeof(void *) * batchcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003350 shared_array->avail += batchcount;
3351 goto free_done;
3352 }
3353 }
3354
Joonsoo Kim97654df2014-08-06 16:04:25 -07003355 free_block(cachep, ac->entry, batchcount, node, &list);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003356free_done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003357#if STATS
3358 {
3359 int i = 0;
3360 struct list_head *p;
3361
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003362 p = n->slabs_free.next;
3363 while (p != &(n->slabs_free)) {
Joonsoo Kim8456a642013-10-24 10:07:49 +09003364 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003365
Joonsoo Kim8456a642013-10-24 10:07:49 +09003366 page = list_entry(p, struct page, lru);
3367 BUG_ON(page->active);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368
3369 i++;
3370 p = p->next;
3371 }
3372 STATS_SET_FREEABLE(cachep, i);
3373 }
3374#endif
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003375 spin_unlock(&n->list_lock);
Joonsoo Kim97654df2014-08-06 16:04:25 -07003376 slabs_destroy(cachep, &list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003377 ac->avail -= batchcount;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003378 memmove(ac->entry, &(ac->entry[batchcount]), sizeof(void *)*ac->avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379}
3380
3381/*
Andrew Mortona737b3e2006-03-22 00:08:11 -08003382 * Release an obj back to its cache. If the obj has a constructed state, it must
3383 * be in this state _before_ it is released. Called with disabled ints.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384 */
Suleiman Souhlala947eb92011-06-02 00:16:42 -07003385static inline void __cache_free(struct kmem_cache *cachep, void *objp,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003386 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003387{
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003388 struct array_cache *ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003389
3390 check_irq_off();
Catalin Marinasd5cff632009-06-11 13:22:40 +01003391 kmemleak_free_recursive(objp, cachep->flags);
Suleiman Souhlala947eb92011-06-02 00:16:42 -07003392 objp = cache_free_debugcheck(cachep, objp, caller);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003393
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003394 kmemcheck_slab_free(cachep, objp, cachep->object_size);
Pekka Enbergc175eea2008-05-09 20:35:53 +02003395
Siddha, Suresh B1807a1a2007-08-22 14:01:49 -07003396 /*
3397 * Skip calling cache_free_alien() when the platform is not numa.
3398 * This will avoid cache misses that happen while accessing slabp (which
3399 * is per page memory reference) to get nodeid. Instead use a global
3400 * variable to skip the call, which is mostly likely to be present in
3401 * the cache.
3402 */
Mel Gormanb6e68bc2009-06-16 15:32:16 -07003403 if (nr_online_nodes > 1 && cache_free_alien(cachep, objp))
Pekka Enberg729bd0b2006-06-23 02:03:05 -07003404 return;
Christoph Lametere498be72005-09-09 13:03:32 -07003405
Joonsoo Kim3d880192014-10-09 15:26:04 -07003406 if (ac->avail < ac->limit) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407 STATS_INC_FREEHIT(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408 } else {
3409 STATS_INC_FREEMISS(cachep);
3410 cache_flusharray(cachep, ac);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411 }
Zhao Jin42c8c992011-08-27 00:26:17 +08003412
Mel Gorman072bb0a2012-07-31 16:43:58 -07003413 ac_put_obj(cachep, ac, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003414}
3415
3416/**
3417 * kmem_cache_alloc - Allocate an object
3418 * @cachep: The cache to allocate from.
3419 * @flags: See kmalloc().
3420 *
3421 * Allocate an object from this cache. The flags are only relevant
3422 * if the cache has no available objects.
3423 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003424void *kmem_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003425{
Ezequiel Garcia48356302012-09-08 17:47:57 -03003426 void *ret = slab_alloc(cachep, flags, _RET_IP_);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003427
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003428 trace_kmem_cache_alloc(_RET_IP_, ret,
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003429 cachep->object_size, cachep->size, flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003430
3431 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432}
3433EXPORT_SYMBOL(kmem_cache_alloc);
3434
Li Zefan0f24f122009-12-11 15:45:30 +08003435#ifdef CONFIG_TRACING
Steven Rostedt85beb582010-11-24 16:23:34 -05003436void *
Ezequiel Garcia40521472012-09-08 17:47:56 -03003437kmem_cache_alloc_trace(struct kmem_cache *cachep, gfp_t flags, size_t size)
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003438{
Steven Rostedt85beb582010-11-24 16:23:34 -05003439 void *ret;
3440
Ezequiel Garcia48356302012-09-08 17:47:57 -03003441 ret = slab_alloc(cachep, flags, _RET_IP_);
Steven Rostedt85beb582010-11-24 16:23:34 -05003442
3443 trace_kmalloc(_RET_IP_, ret,
Ezequiel Garciaff4fcd02012-09-08 17:47:52 -03003444 size, cachep->size, flags);
Steven Rostedt85beb582010-11-24 16:23:34 -05003445 return ret;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003446}
Steven Rostedt85beb582010-11-24 16:23:34 -05003447EXPORT_SYMBOL(kmem_cache_alloc_trace);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003448#endif
3449
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450#ifdef CONFIG_NUMA
Zhouping Liud0d04b72013-05-16 11:36:23 +08003451/**
3452 * kmem_cache_alloc_node - Allocate an object on the specified node
3453 * @cachep: The cache to allocate from.
3454 * @flags: See kmalloc().
3455 * @nodeid: node number of the target node.
3456 *
3457 * Identical to kmem_cache_alloc but it will allocate memory on the given
3458 * node, which can improve the performance for cpu bound structures.
3459 *
3460 * Fallback to other node is possible if __GFP_THISNODE is not set.
3461 */
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003462void *kmem_cache_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid)
3463{
Ezequiel Garcia48356302012-09-08 17:47:57 -03003464 void *ret = slab_alloc_node(cachep, flags, nodeid, _RET_IP_);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003465
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003466 trace_kmem_cache_alloc_node(_RET_IP_, ret,
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003467 cachep->object_size, cachep->size,
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003468 flags, nodeid);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003469
3470 return ret;
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003471}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472EXPORT_SYMBOL(kmem_cache_alloc_node);
3473
Li Zefan0f24f122009-12-11 15:45:30 +08003474#ifdef CONFIG_TRACING
Ezequiel Garcia40521472012-09-08 17:47:56 -03003475void *kmem_cache_alloc_node_trace(struct kmem_cache *cachep,
Steven Rostedt85beb582010-11-24 16:23:34 -05003476 gfp_t flags,
Ezequiel Garcia40521472012-09-08 17:47:56 -03003477 int nodeid,
3478 size_t size)
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003479{
Steven Rostedt85beb582010-11-24 16:23:34 -05003480 void *ret;
3481
Ezequiel Garcia592f4142012-09-25 08:07:08 -03003482 ret = slab_alloc_node(cachep, flags, nodeid, _RET_IP_);
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003483
Steven Rostedt85beb582010-11-24 16:23:34 -05003484 trace_kmalloc_node(_RET_IP_, ret,
Ezequiel Garciaff4fcd02012-09-08 17:47:52 -03003485 size, cachep->size,
Steven Rostedt85beb582010-11-24 16:23:34 -05003486 flags, nodeid);
3487 return ret;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003488}
Steven Rostedt85beb582010-11-24 16:23:34 -05003489EXPORT_SYMBOL(kmem_cache_alloc_node_trace);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003490#endif
3491
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003492static __always_inline void *
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003493__do_kmalloc_node(size_t size, gfp_t flags, int node, unsigned long caller)
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003494{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003495 struct kmem_cache *cachep;
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003496
Christoph Lameter2c59dd62013-01-10 19:14:19 +00003497 cachep = kmalloc_slab(size, flags);
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003498 if (unlikely(ZERO_OR_NULL_PTR(cachep)))
3499 return cachep;
Ezequiel Garcia40521472012-09-08 17:47:56 -03003500 return kmem_cache_alloc_node_trace(cachep, flags, node, size);
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003501}
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003502
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003503void *__kmalloc_node(size_t size, gfp_t flags, int node)
3504{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003505 return __do_kmalloc_node(size, flags, node, _RET_IP_);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003506}
Christoph Hellwigdbe5e692006-09-25 23:31:36 -07003507EXPORT_SYMBOL(__kmalloc_node);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003508
3509void *__kmalloc_node_track_caller(size_t size, gfp_t flags,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003510 int node, unsigned long caller)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003511{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003512 return __do_kmalloc_node(size, flags, node, caller);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003513}
3514EXPORT_SYMBOL(__kmalloc_node_track_caller);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003515#endif /* CONFIG_NUMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516
3517/**
Paul Drynoff800590f2006-06-23 02:03:48 -07003518 * __do_kmalloc - allocate memory
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519 * @size: how many bytes of memory are required.
Paul Drynoff800590f2006-06-23 02:03:48 -07003520 * @flags: the type of memory to allocate (see kmalloc).
Randy Dunlap911851e2006-03-22 00:08:14 -08003521 * @caller: function caller for debug tracking of the caller
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522 */
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003523static __always_inline void *__do_kmalloc(size_t size, gfp_t flags,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003524 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003525{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003526 struct kmem_cache *cachep;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003527 void *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528
Christoph Lameter2c59dd62013-01-10 19:14:19 +00003529 cachep = kmalloc_slab(size, flags);
Linus Torvaldsa5c96d82007-07-19 13:17:15 -07003530 if (unlikely(ZERO_OR_NULL_PTR(cachep)))
3531 return cachep;
Ezequiel Garcia48356302012-09-08 17:47:57 -03003532 ret = slab_alloc(cachep, flags, caller);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003533
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003534 trace_kmalloc(caller, ret,
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003535 size, cachep->size, flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003536
3537 return ret;
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003538}
3539
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003540void *__kmalloc(size_t size, gfp_t flags)
3541{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003542 return __do_kmalloc(size, flags, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543}
3544EXPORT_SYMBOL(__kmalloc);
3545
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003546void *__kmalloc_track_caller(size_t size, gfp_t flags, unsigned long caller)
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003547{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003548 return __do_kmalloc(size, flags, caller);
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003549}
3550EXPORT_SYMBOL(__kmalloc_track_caller);
Christoph Hellwig1d2c8ee2006-10-04 02:15:25 -07003551
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552/**
3553 * kmem_cache_free - Deallocate an object
3554 * @cachep: The cache the allocation was from.
3555 * @objp: The previously allocated object.
3556 *
3557 * Free an object which was previously allocated from this
3558 * cache.
3559 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003560void kmem_cache_free(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003561{
3562 unsigned long flags;
Glauber Costab9ce5ef2012-12-18 14:22:46 -08003563 cachep = cache_from_obj(cachep, objp);
3564 if (!cachep)
3565 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003566
3567 local_irq_save(flags);
Feng Tangd97d4762012-07-02 14:29:10 +08003568 debug_check_no_locks_freed(objp, cachep->object_size);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -07003569 if (!(cachep->flags & SLAB_DEBUG_OBJECTS))
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003570 debug_check_no_obj_freed(objp, cachep->object_size);
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003571 __cache_free(cachep, objp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003572 local_irq_restore(flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003573
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003574 trace_kmem_cache_free(_RET_IP_, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003575}
3576EXPORT_SYMBOL(kmem_cache_free);
3577
3578/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003579 * kfree - free previously allocated memory
3580 * @objp: pointer returned by kmalloc.
3581 *
Pekka Enberg80e93ef2005-09-09 13:10:16 -07003582 * If @objp is NULL, no operation is performed.
3583 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003584 * Don't free memory not originally allocated by kmalloc()
3585 * or you will run into trouble.
3586 */
3587void kfree(const void *objp)
3588{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003589 struct kmem_cache *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590 unsigned long flags;
3591
Pekka Enberg2121db72009-03-25 11:05:57 +02003592 trace_kfree(_RET_IP_, objp);
3593
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003594 if (unlikely(ZERO_OR_NULL_PTR(objp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595 return;
3596 local_irq_save(flags);
3597 kfree_debugcheck(objp);
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -08003598 c = virt_to_cache(objp);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003599 debug_check_no_locks_freed(objp, c->object_size);
3600
3601 debug_check_no_obj_freed(objp, c->object_size);
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003602 __cache_free(c, (void *)objp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003603 local_irq_restore(flags);
3604}
3605EXPORT_SYMBOL(kfree);
3606
Christoph Lametere498be72005-09-09 13:03:32 -07003607/*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003608 * This initializes kmem_cache_node or resizes various caches for all nodes.
Christoph Lametere498be72005-09-09 13:03:32 -07003609 */
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08003610static int alloc_kmem_cache_node(struct kmem_cache *cachep, gfp_t gfp)
Christoph Lametere498be72005-09-09 13:03:32 -07003611{
3612 int node;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003613 struct kmem_cache_node *n;
Christoph Lametercafeb022006-03-25 03:06:46 -08003614 struct array_cache *new_shared;
Joonsoo Kimc8522a32014-08-06 16:04:29 -07003615 struct alien_cache **new_alien = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07003616
Mel Gorman9c09a952008-01-24 05:49:54 -08003617 for_each_online_node(node) {
Christoph Lametercafeb022006-03-25 03:06:46 -08003618
Paul Menage3395ee02006-12-06 20:32:16 -08003619 if (use_alien_caches) {
Pekka Enberg83b519e2009-06-10 19:40:04 +03003620 new_alien = alloc_alien_cache(node, cachep->limit, gfp);
Paul Menage3395ee02006-12-06 20:32:16 -08003621 if (!new_alien)
3622 goto fail;
3623 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003624
Eric Dumazet63109842007-05-06 14:49:28 -07003625 new_shared = NULL;
3626 if (cachep->shared) {
3627 new_shared = alloc_arraycache(node,
Christoph Lameter0718dc22006-03-25 03:06:47 -08003628 cachep->shared*cachep->batchcount,
Pekka Enberg83b519e2009-06-10 19:40:04 +03003629 0xbaadf00d, gfp);
Eric Dumazet63109842007-05-06 14:49:28 -07003630 if (!new_shared) {
3631 free_alien_cache(new_alien);
3632 goto fail;
3633 }
Christoph Lameter0718dc22006-03-25 03:06:47 -08003634 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003635
Christoph Lameter18bf8542014-08-06 16:04:11 -07003636 n = get_node(cachep, node);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003637 if (n) {
3638 struct array_cache *shared = n->shared;
Joonsoo Kim97654df2014-08-06 16:04:25 -07003639 LIST_HEAD(list);
Christoph Lametercafeb022006-03-25 03:06:46 -08003640
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003641 spin_lock_irq(&n->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07003642
Christoph Lametercafeb022006-03-25 03:06:46 -08003643 if (shared)
Christoph Lameter0718dc22006-03-25 03:06:47 -08003644 free_block(cachep, shared->entry,
Joonsoo Kim97654df2014-08-06 16:04:25 -07003645 shared->avail, node, &list);
Christoph Lametere498be72005-09-09 13:03:32 -07003646
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003647 n->shared = new_shared;
3648 if (!n->alien) {
3649 n->alien = new_alien;
Christoph Lametere498be72005-09-09 13:03:32 -07003650 new_alien = NULL;
3651 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003652 n->free_limit = (1 + nr_cpus_node(node)) *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003653 cachep->batchcount + cachep->num;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003654 spin_unlock_irq(&n->list_lock);
Joonsoo Kim97654df2014-08-06 16:04:25 -07003655 slabs_destroy(cachep, &list);
Christoph Lametercafeb022006-03-25 03:06:46 -08003656 kfree(shared);
Christoph Lametere498be72005-09-09 13:03:32 -07003657 free_alien_cache(new_alien);
3658 continue;
3659 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003660 n = kmalloc_node(sizeof(struct kmem_cache_node), gfp, node);
3661 if (!n) {
Christoph Lameter0718dc22006-03-25 03:06:47 -08003662 free_alien_cache(new_alien);
3663 kfree(new_shared);
Christoph Lametere498be72005-09-09 13:03:32 -07003664 goto fail;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003665 }
Christoph Lametere498be72005-09-09 13:03:32 -07003666
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003667 kmem_cache_node_init(n);
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08003668 n->next_reap = jiffies + REAPTIMEOUT_NODE +
3669 ((unsigned long)cachep) % REAPTIMEOUT_NODE;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003670 n->shared = new_shared;
3671 n->alien = new_alien;
3672 n->free_limit = (1 + nr_cpus_node(node)) *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003673 cachep->batchcount + cachep->num;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003674 cachep->node[node] = n;
Christoph Lametere498be72005-09-09 13:03:32 -07003675 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003676 return 0;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003677
Andrew Mortona737b3e2006-03-22 00:08:11 -08003678fail:
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003679 if (!cachep->list.next) {
Christoph Lameter0718dc22006-03-25 03:06:47 -08003680 /* Cache is not active yet. Roll back what we did */
3681 node--;
3682 while (node >= 0) {
Christoph Lameter18bf8542014-08-06 16:04:11 -07003683 n = get_node(cachep, node);
3684 if (n) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003685 kfree(n->shared);
3686 free_alien_cache(n->alien);
3687 kfree(n);
Christoph Lameter6a673682013-01-10 19:14:19 +00003688 cachep->node[node] = NULL;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003689 }
3690 node--;
3691 }
3692 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003693 return -ENOMEM;
Christoph Lametere498be72005-09-09 13:03:32 -07003694}
3695
Linus Torvalds1da177e2005-04-16 15:20:36 -07003696struct ccupdate_struct {
Pekka Enberg343e0d72006-02-01 03:05:50 -08003697 struct kmem_cache *cachep;
Eric Dumazetacfe7d72011-07-25 08:55:42 +02003698 struct array_cache *new[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003699};
3700
3701static void do_ccupdate_local(void *info)
3702{
Andrew Mortona737b3e2006-03-22 00:08:11 -08003703 struct ccupdate_struct *new = info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003704 struct array_cache *old;
3705
3706 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003707 old = cpu_cache_get(new->cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003708
Linus Torvalds1da177e2005-04-16 15:20:36 -07003709 new->cachep->array[smp_processor_id()] = new->new[smp_processor_id()];
3710 new->new[smp_processor_id()] = old;
3711}
3712
Christoph Lameter18004c52012-07-06 15:25:12 -05003713/* Always called with the slab_mutex held */
Glauber Costa943a4512012-12-18 14:23:03 -08003714static int __do_tune_cpucache(struct kmem_cache *cachep, int limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03003715 int batchcount, int shared, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003716{
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003717 struct ccupdate_struct *new;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07003718 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003719
Eric Dumazetacfe7d72011-07-25 08:55:42 +02003720 new = kzalloc(sizeof(*new) + nr_cpu_ids * sizeof(struct array_cache *),
3721 gfp);
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003722 if (!new)
3723 return -ENOMEM;
3724
Christoph Lametere498be72005-09-09 13:03:32 -07003725 for_each_online_cpu(i) {
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003726 new->new[i] = alloc_arraycache(cpu_to_mem(i), limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03003727 batchcount, gfp);
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003728 if (!new->new[i]) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003729 for (i--; i >= 0; i--)
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003730 kfree(new->new[i]);
3731 kfree(new);
Christoph Lametere498be72005-09-09 13:03:32 -07003732 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003733 }
3734 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003735 new->cachep = cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003736
Jens Axboe15c8b6c2008-05-09 09:39:44 +02003737 on_each_cpu(do_ccupdate_local, (void *)new, 1);
Christoph Lametere498be72005-09-09 13:03:32 -07003738
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739 check_irq_on();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003740 cachep->batchcount = batchcount;
3741 cachep->limit = limit;
Christoph Lametere498be72005-09-09 13:03:32 -07003742 cachep->shared = shared;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003743
Christoph Lametere498be72005-09-09 13:03:32 -07003744 for_each_online_cpu(i) {
Joonsoo Kim97654df2014-08-06 16:04:25 -07003745 LIST_HEAD(list);
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003746 struct array_cache *ccold = new->new[i];
Christoph Lameter18bf8542014-08-06 16:04:11 -07003747 int node;
3748 struct kmem_cache_node *n;
3749
Linus Torvalds1da177e2005-04-16 15:20:36 -07003750 if (!ccold)
3751 continue;
Christoph Lameter18bf8542014-08-06 16:04:11 -07003752
3753 node = cpu_to_mem(i);
3754 n = get_node(cachep, node);
3755 spin_lock_irq(&n->list_lock);
Joonsoo Kim97654df2014-08-06 16:04:25 -07003756 free_block(cachep, ccold->entry, ccold->avail, node, &list);
Christoph Lameter18bf8542014-08-06 16:04:11 -07003757 spin_unlock_irq(&n->list_lock);
Joonsoo Kim97654df2014-08-06 16:04:25 -07003758 slabs_destroy(cachep, &list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759 kfree(ccold);
3760 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003761 kfree(new);
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08003762 return alloc_kmem_cache_node(cachep, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003763}
3764
Glauber Costa943a4512012-12-18 14:23:03 -08003765static int do_tune_cpucache(struct kmem_cache *cachep, int limit,
3766 int batchcount, int shared, gfp_t gfp)
3767{
3768 int ret;
3769 struct kmem_cache *c = NULL;
3770 int i = 0;
3771
3772 ret = __do_tune_cpucache(cachep, limit, batchcount, shared, gfp);
3773
3774 if (slab_state < FULL)
3775 return ret;
3776
3777 if ((ret < 0) || !is_root_cache(cachep))
3778 return ret;
3779
Glauber Costaebe945c2012-12-18 14:23:10 -08003780 VM_BUG_ON(!mutex_is_locked(&slab_mutex));
Glauber Costa943a4512012-12-18 14:23:03 -08003781 for_each_memcg_cache_index(i) {
Qiang Huang2ade4de2013-11-12 15:08:23 -08003782 c = cache_from_memcg_idx(cachep, i);
Glauber Costa943a4512012-12-18 14:23:03 -08003783 if (c)
3784 /* return value determined by the parent cache only */
3785 __do_tune_cpucache(c, limit, batchcount, shared, gfp);
3786 }
3787
3788 return ret;
3789}
3790
Christoph Lameter18004c52012-07-06 15:25:12 -05003791/* Called with slab_mutex held always */
Pekka Enberg83b519e2009-06-10 19:40:04 +03003792static int enable_cpucache(struct kmem_cache *cachep, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003793{
3794 int err;
Glauber Costa943a4512012-12-18 14:23:03 -08003795 int limit = 0;
3796 int shared = 0;
3797 int batchcount = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003798
Glauber Costa943a4512012-12-18 14:23:03 -08003799 if (!is_root_cache(cachep)) {
3800 struct kmem_cache *root = memcg_root_cache(cachep);
3801 limit = root->limit;
3802 shared = root->shared;
3803 batchcount = root->batchcount;
3804 }
3805
3806 if (limit && shared && batchcount)
3807 goto skip_setup;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003808 /*
3809 * The head array serves three purposes:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003810 * - create a LIFO ordering, i.e. return objects that are cache-warm
3811 * - reduce the number of spinlock operations.
Andrew Mortona737b3e2006-03-22 00:08:11 -08003812 * - reduce the number of linked list operations on the slab and
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813 * bufctl chains: array operations are cheaper.
3814 * The numbers are guessed, we should auto-tune as described by
3815 * Bonwick.
3816 */
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003817 if (cachep->size > 131072)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818 limit = 1;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003819 else if (cachep->size > PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003820 limit = 8;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003821 else if (cachep->size > 1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003822 limit = 24;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003823 else if (cachep->size > 256)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824 limit = 54;
3825 else
3826 limit = 120;
3827
Andrew Mortona737b3e2006-03-22 00:08:11 -08003828 /*
3829 * CPU bound tasks (e.g. network routing) can exhibit cpu bound
Linus Torvalds1da177e2005-04-16 15:20:36 -07003830 * allocation behaviour: Most allocs on one cpu, most free operations
3831 * on another cpu. For these cases, an efficient object passing between
3832 * cpus is necessary. This is provided by a shared array. The array
3833 * replaces Bonwick's magazine layer.
3834 * On uniprocessor, it's functionally equivalent (but less efficient)
3835 * to a larger limit. Thus disabled by default.
3836 */
3837 shared = 0;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003838 if (cachep->size <= PAGE_SIZE && num_possible_cpus() > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003839 shared = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003840
3841#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08003842 /*
3843 * With debugging enabled, large batchcount lead to excessively long
3844 * periods with disabled local interrupts. Limit the batchcount
Linus Torvalds1da177e2005-04-16 15:20:36 -07003845 */
3846 if (limit > 32)
3847 limit = 32;
3848#endif
Glauber Costa943a4512012-12-18 14:23:03 -08003849 batchcount = (limit + 1) / 2;
3850skip_setup:
3851 err = do_tune_cpucache(cachep, limit, batchcount, shared, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852 if (err)
3853 printk(KERN_ERR "enable_cpucache failed for %s, error %d.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003854 cachep->name, -err);
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07003855 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003856}
3857
Christoph Lameter1b552532006-03-22 00:09:07 -08003858/*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003859 * Drain an array if it contains any elements taking the node lock only if
3860 * necessary. Note that the node listlock also protects the array_cache
Christoph Lameterb18e7e62006-03-22 00:09:07 -08003861 * if drain_array() is used on the shared array.
Christoph Lameter1b552532006-03-22 00:09:07 -08003862 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003863static void drain_array(struct kmem_cache *cachep, struct kmem_cache_node *n,
Christoph Lameter1b552532006-03-22 00:09:07 -08003864 struct array_cache *ac, int force, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865{
Joonsoo Kim97654df2014-08-06 16:04:25 -07003866 LIST_HEAD(list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003867 int tofree;
3868
Christoph Lameter1b552532006-03-22 00:09:07 -08003869 if (!ac || !ac->avail)
3870 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871 if (ac->touched && !force) {
3872 ac->touched = 0;
Christoph Lameterb18e7e62006-03-22 00:09:07 -08003873 } else {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003874 spin_lock_irq(&n->list_lock);
Christoph Lameterb18e7e62006-03-22 00:09:07 -08003875 if (ac->avail) {
3876 tofree = force ? ac->avail : (ac->limit + 4) / 5;
3877 if (tofree > ac->avail)
3878 tofree = (ac->avail + 1) / 2;
Joonsoo Kim97654df2014-08-06 16:04:25 -07003879 free_block(cachep, ac->entry, tofree, node, &list);
Christoph Lameterb18e7e62006-03-22 00:09:07 -08003880 ac->avail -= tofree;
3881 memmove(ac->entry, &(ac->entry[tofree]),
3882 sizeof(void *) * ac->avail);
3883 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003884 spin_unlock_irq(&n->list_lock);
Joonsoo Kim97654df2014-08-06 16:04:25 -07003885 slabs_destroy(cachep, &list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886 }
3887}
3888
3889/**
3890 * cache_reap - Reclaim memory from caches.
Randy Dunlap05fb6bf2007-02-28 20:12:13 -08003891 * @w: work descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -07003892 *
3893 * Called from workqueue/eventd every few seconds.
3894 * Purpose:
3895 * - clear the per-cpu caches for this CPU.
3896 * - return freeable pages to the main free memory pool.
3897 *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003898 * If we cannot acquire the cache chain mutex then just give up - we'll try
3899 * again on the next iteration.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900 */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08003901static void cache_reap(struct work_struct *w)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902{
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07003903 struct kmem_cache *searchp;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003904 struct kmem_cache_node *n;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003905 int node = numa_mem_id();
Jean Delvarebf6aede2009-04-02 16:56:54 -07003906 struct delayed_work *work = to_delayed_work(w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907
Christoph Lameter18004c52012-07-06 15:25:12 -05003908 if (!mutex_trylock(&slab_mutex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909 /* Give up. Setup the next iteration. */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08003910 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911
Christoph Lameter18004c52012-07-06 15:25:12 -05003912 list_for_each_entry(searchp, &slab_caches, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003913 check_irq_on();
3914
Christoph Lameter35386e32006-03-22 00:09:05 -08003915 /*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003916 * We only take the node lock if absolutely necessary and we
Christoph Lameter35386e32006-03-22 00:09:05 -08003917 * have established with reasonable certainty that
3918 * we can do some work if the lock was obtained.
3919 */
Christoph Lameter18bf8542014-08-06 16:04:11 -07003920 n = get_node(searchp, node);
Christoph Lameter35386e32006-03-22 00:09:05 -08003921
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003922 reap_alien(searchp, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003924 drain_array(searchp, n, cpu_cache_get(searchp), 0, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925
Christoph Lameter35386e32006-03-22 00:09:05 -08003926 /*
3927 * These are racy checks but it does not matter
3928 * if we skip one check or scan twice.
3929 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003930 if (time_after(n->next_reap, jiffies))
Christoph Lameter35386e32006-03-22 00:09:05 -08003931 goto next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08003933 n->next_reap = jiffies + REAPTIMEOUT_NODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003934
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003935 drain_array(searchp, n, n->shared, 0, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003936
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003937 if (n->free_touched)
3938 n->free_touched = 0;
Christoph Lametered11d9e2006-06-30 01:55:45 -07003939 else {
3940 int freed;
3941
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003942 freed = drain_freelist(searchp, n, (n->free_limit +
Christoph Lametered11d9e2006-06-30 01:55:45 -07003943 5 * searchp->num - 1) / (5 * searchp->num));
3944 STATS_ADD_REAPED(searchp, freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003945 }
Christoph Lameter35386e32006-03-22 00:09:05 -08003946next:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947 cond_resched();
3948 }
3949 check_irq_on();
Christoph Lameter18004c52012-07-06 15:25:12 -05003950 mutex_unlock(&slab_mutex);
Christoph Lameter8fce4d82006-03-09 17:33:54 -08003951 next_reap_node();
Christoph Lameter7c5cae32007-02-10 01:42:55 -08003952out:
Andrew Mortona737b3e2006-03-22 00:08:11 -08003953 /* Set up the next iteration */
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08003954 schedule_delayed_work(work, round_jiffies_relative(REAPTIMEOUT_AC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003955}
3956
Linus Torvalds158a9622008-01-02 13:04:48 -08003957#ifdef CONFIG_SLABINFO
Glauber Costa0d7561c2012-10-19 18:20:27 +04003958void get_slabinfo(struct kmem_cache *cachep, struct slabinfo *sinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003959{
Joonsoo Kim8456a642013-10-24 10:07:49 +09003960 struct page *page;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003961 unsigned long active_objs;
3962 unsigned long num_objs;
3963 unsigned long active_slabs = 0;
3964 unsigned long num_slabs, free_objects = 0, shared_avail = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07003965 const char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003966 char *error = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07003967 int node;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003968 struct kmem_cache_node *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003969
Linus Torvalds1da177e2005-04-16 15:20:36 -07003970 active_objs = 0;
3971 num_slabs = 0;
Christoph Lameter18bf8542014-08-06 16:04:11 -07003972 for_each_kmem_cache_node(cachep, node, n) {
Christoph Lametere498be72005-09-09 13:03:32 -07003973
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08003974 check_irq_on();
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003975 spin_lock_irq(&n->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07003976
Joonsoo Kim8456a642013-10-24 10:07:49 +09003977 list_for_each_entry(page, &n->slabs_full, lru) {
3978 if (page->active != cachep->num && !error)
Christoph Lametere498be72005-09-09 13:03:32 -07003979 error = "slabs_full accounting error";
3980 active_objs += cachep->num;
3981 active_slabs++;
3982 }
Joonsoo Kim8456a642013-10-24 10:07:49 +09003983 list_for_each_entry(page, &n->slabs_partial, lru) {
3984 if (page->active == cachep->num && !error)
Joonsoo Kim106a74e2013-10-24 10:07:48 +09003985 error = "slabs_partial accounting error";
Joonsoo Kim8456a642013-10-24 10:07:49 +09003986 if (!page->active && !error)
Joonsoo Kim106a74e2013-10-24 10:07:48 +09003987 error = "slabs_partial accounting error";
Joonsoo Kim8456a642013-10-24 10:07:49 +09003988 active_objs += page->active;
Christoph Lametere498be72005-09-09 13:03:32 -07003989 active_slabs++;
3990 }
Joonsoo Kim8456a642013-10-24 10:07:49 +09003991 list_for_each_entry(page, &n->slabs_free, lru) {
3992 if (page->active && !error)
Joonsoo Kim106a74e2013-10-24 10:07:48 +09003993 error = "slabs_free accounting error";
Christoph Lametere498be72005-09-09 13:03:32 -07003994 num_slabs++;
3995 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003996 free_objects += n->free_objects;
3997 if (n->shared)
3998 shared_avail += n->shared->avail;
Christoph Lametere498be72005-09-09 13:03:32 -07003999
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004000 spin_unlock_irq(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004001 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004002 num_slabs += active_slabs;
4003 num_objs = num_slabs * cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07004004 if (num_objs - active_objs != free_objects && !error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004005 error = "free_objects accounting error";
4006
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004007 name = cachep->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008 if (error)
4009 printk(KERN_ERR "slab: cache %s error: %s\n", name, error);
4010
Glauber Costa0d7561c2012-10-19 18:20:27 +04004011 sinfo->active_objs = active_objs;
4012 sinfo->num_objs = num_objs;
4013 sinfo->active_slabs = active_slabs;
4014 sinfo->num_slabs = num_slabs;
4015 sinfo->shared_avail = shared_avail;
4016 sinfo->limit = cachep->limit;
4017 sinfo->batchcount = cachep->batchcount;
4018 sinfo->shared = cachep->shared;
4019 sinfo->objects_per_slab = cachep->num;
4020 sinfo->cache_order = cachep->gfporder;
4021}
4022
4023void slabinfo_show_stats(struct seq_file *m, struct kmem_cache *cachep)
4024{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004025#if STATS
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004026 { /* node stats */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004027 unsigned long high = cachep->high_mark;
4028 unsigned long allocs = cachep->num_allocations;
4029 unsigned long grown = cachep->grown;
4030 unsigned long reaped = cachep->reaped;
4031 unsigned long errors = cachep->errors;
4032 unsigned long max_freeable = cachep->max_freeable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004033 unsigned long node_allocs = cachep->node_allocs;
Christoph Lametere498be72005-09-09 13:03:32 -07004034 unsigned long node_frees = cachep->node_frees;
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -07004035 unsigned long overflows = cachep->node_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004036
Joe Perchese92dd4f2010-03-26 19:27:58 -07004037 seq_printf(m, " : globalstat %7lu %6lu %5lu %4lu "
4038 "%4lu %4lu %4lu %4lu %4lu",
4039 allocs, high, grown,
4040 reaped, errors, max_freeable, node_allocs,
4041 node_frees, overflows);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004042 }
4043 /* cpu stats */
4044 {
4045 unsigned long allochit = atomic_read(&cachep->allochit);
4046 unsigned long allocmiss = atomic_read(&cachep->allocmiss);
4047 unsigned long freehit = atomic_read(&cachep->freehit);
4048 unsigned long freemiss = atomic_read(&cachep->freemiss);
4049
4050 seq_printf(m, " : cpustat %6lu %6lu %6lu %6lu",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004051 allochit, allocmiss, freehit, freemiss);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004052 }
4053#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004054}
4055
Linus Torvalds1da177e2005-04-16 15:20:36 -07004056#define MAX_SLABINFO_WRITE 128
4057/**
4058 * slabinfo_write - Tuning for the slab allocator
4059 * @file: unused
4060 * @buffer: user buffer
4061 * @count: data length
4062 * @ppos: unused
4063 */
Glauber Costab7454ad2012-10-19 18:20:25 +04004064ssize_t slabinfo_write(struct file *file, const char __user *buffer,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004065 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004066{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004067 char kbuf[MAX_SLABINFO_WRITE + 1], *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004068 int limit, batchcount, shared, res;
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004069 struct kmem_cache *cachep;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004070
Linus Torvalds1da177e2005-04-16 15:20:36 -07004071 if (count > MAX_SLABINFO_WRITE)
4072 return -EINVAL;
4073 if (copy_from_user(&kbuf, buffer, count))
4074 return -EFAULT;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004075 kbuf[MAX_SLABINFO_WRITE] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07004076
4077 tmp = strchr(kbuf, ' ');
4078 if (!tmp)
4079 return -EINVAL;
4080 *tmp = '\0';
4081 tmp++;
4082 if (sscanf(tmp, " %d %d %d", &limit, &batchcount, &shared) != 3)
4083 return -EINVAL;
4084
4085 /* Find the cache in the chain of caches. */
Christoph Lameter18004c52012-07-06 15:25:12 -05004086 mutex_lock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004087 res = -EINVAL;
Christoph Lameter18004c52012-07-06 15:25:12 -05004088 list_for_each_entry(cachep, &slab_caches, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004089 if (!strcmp(cachep->name, kbuf)) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08004090 if (limit < 1 || batchcount < 1 ||
4091 batchcount > limit || shared < 0) {
Christoph Lametere498be72005-09-09 13:03:32 -07004092 res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004093 } else {
Christoph Lametere498be72005-09-09 13:03:32 -07004094 res = do_tune_cpucache(cachep, limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03004095 batchcount, shared,
4096 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004097 }
4098 break;
4099 }
4100 }
Christoph Lameter18004c52012-07-06 15:25:12 -05004101 mutex_unlock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004102 if (res >= 0)
4103 res = count;
4104 return res;
4105}
Al Viro871751e2006-03-25 03:06:39 -08004106
4107#ifdef CONFIG_DEBUG_SLAB_LEAK
4108
4109static void *leaks_start(struct seq_file *m, loff_t *pos)
4110{
Christoph Lameter18004c52012-07-06 15:25:12 -05004111 mutex_lock(&slab_mutex);
4112 return seq_list_start(&slab_caches, *pos);
Al Viro871751e2006-03-25 03:06:39 -08004113}
4114
4115static inline int add_caller(unsigned long *n, unsigned long v)
4116{
4117 unsigned long *p;
4118 int l;
4119 if (!v)
4120 return 1;
4121 l = n[1];
4122 p = n + 2;
4123 while (l) {
4124 int i = l/2;
4125 unsigned long *q = p + 2 * i;
4126 if (*q == v) {
4127 q[1]++;
4128 return 1;
4129 }
4130 if (*q > v) {
4131 l = i;
4132 } else {
4133 p = q + 2;
4134 l -= i + 1;
4135 }
4136 }
4137 if (++n[1] == n[0])
4138 return 0;
4139 memmove(p + 2, p, n[1] * 2 * sizeof(unsigned long) - ((void *)p - (void *)n));
4140 p[0] = v;
4141 p[1] = 1;
4142 return 1;
4143}
4144
Joonsoo Kim8456a642013-10-24 10:07:49 +09004145static void handle_slab(unsigned long *n, struct kmem_cache *c,
4146 struct page *page)
Al Viro871751e2006-03-25 03:06:39 -08004147{
4148 void *p;
Joonsoo Kim03787302014-06-23 13:22:06 -07004149 int i;
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09004150
Al Viro871751e2006-03-25 03:06:39 -08004151 if (n[0] == n[1])
4152 return;
Joonsoo Kim8456a642013-10-24 10:07:49 +09004153 for (i = 0, p = page->s_mem; i < c->num; i++, p += c->size) {
Joonsoo Kim03787302014-06-23 13:22:06 -07004154 if (get_obj_status(page, i) != OBJECT_ACTIVE)
Al Viro871751e2006-03-25 03:06:39 -08004155 continue;
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09004156
Al Viro871751e2006-03-25 03:06:39 -08004157 if (!add_caller(n, (unsigned long)*dbg_userword(c, p)))
4158 return;
4159 }
4160}
4161
4162static void show_symbol(struct seq_file *m, unsigned long address)
4163{
4164#ifdef CONFIG_KALLSYMS
Al Viro871751e2006-03-25 03:06:39 -08004165 unsigned long offset, size;
Tejun Heo9281ace2007-07-17 04:03:51 -07004166 char modname[MODULE_NAME_LEN], name[KSYM_NAME_LEN];
Al Viro871751e2006-03-25 03:06:39 -08004167
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004168 if (lookup_symbol_attrs(address, &size, &offset, modname, name) == 0) {
Al Viro871751e2006-03-25 03:06:39 -08004169 seq_printf(m, "%s+%#lx/%#lx", name, offset, size);
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004170 if (modname[0])
Al Viro871751e2006-03-25 03:06:39 -08004171 seq_printf(m, " [%s]", modname);
4172 return;
4173 }
4174#endif
4175 seq_printf(m, "%p", (void *)address);
4176}
4177
4178static int leaks_show(struct seq_file *m, void *p)
4179{
Thierry Reding0672aa72012-06-22 19:42:49 +02004180 struct kmem_cache *cachep = list_entry(p, struct kmem_cache, list);
Joonsoo Kim8456a642013-10-24 10:07:49 +09004181 struct page *page;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004182 struct kmem_cache_node *n;
Al Viro871751e2006-03-25 03:06:39 -08004183 const char *name;
Christoph Lameterdb845062013-02-05 18:45:23 +00004184 unsigned long *x = m->private;
Al Viro871751e2006-03-25 03:06:39 -08004185 int node;
4186 int i;
4187
4188 if (!(cachep->flags & SLAB_STORE_USER))
4189 return 0;
4190 if (!(cachep->flags & SLAB_RED_ZONE))
4191 return 0;
4192
4193 /* OK, we can do it */
4194
Christoph Lameterdb845062013-02-05 18:45:23 +00004195 x[1] = 0;
Al Viro871751e2006-03-25 03:06:39 -08004196
Christoph Lameter18bf8542014-08-06 16:04:11 -07004197 for_each_kmem_cache_node(cachep, node, n) {
Al Viro871751e2006-03-25 03:06:39 -08004198
4199 check_irq_on();
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004200 spin_lock_irq(&n->list_lock);
Al Viro871751e2006-03-25 03:06:39 -08004201
Joonsoo Kim8456a642013-10-24 10:07:49 +09004202 list_for_each_entry(page, &n->slabs_full, lru)
4203 handle_slab(x, cachep, page);
4204 list_for_each_entry(page, &n->slabs_partial, lru)
4205 handle_slab(x, cachep, page);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004206 spin_unlock_irq(&n->list_lock);
Al Viro871751e2006-03-25 03:06:39 -08004207 }
4208 name = cachep->name;
Christoph Lameterdb845062013-02-05 18:45:23 +00004209 if (x[0] == x[1]) {
Al Viro871751e2006-03-25 03:06:39 -08004210 /* Increase the buffer size */
Christoph Lameter18004c52012-07-06 15:25:12 -05004211 mutex_unlock(&slab_mutex);
Christoph Lameterdb845062013-02-05 18:45:23 +00004212 m->private = kzalloc(x[0] * 4 * sizeof(unsigned long), GFP_KERNEL);
Al Viro871751e2006-03-25 03:06:39 -08004213 if (!m->private) {
4214 /* Too bad, we are really out */
Christoph Lameterdb845062013-02-05 18:45:23 +00004215 m->private = x;
Christoph Lameter18004c52012-07-06 15:25:12 -05004216 mutex_lock(&slab_mutex);
Al Viro871751e2006-03-25 03:06:39 -08004217 return -ENOMEM;
4218 }
Christoph Lameterdb845062013-02-05 18:45:23 +00004219 *(unsigned long *)m->private = x[0] * 2;
4220 kfree(x);
Christoph Lameter18004c52012-07-06 15:25:12 -05004221 mutex_lock(&slab_mutex);
Al Viro871751e2006-03-25 03:06:39 -08004222 /* Now make sure this entry will be retried */
4223 m->count = m->size;
4224 return 0;
4225 }
Christoph Lameterdb845062013-02-05 18:45:23 +00004226 for (i = 0; i < x[1]; i++) {
4227 seq_printf(m, "%s: %lu ", name, x[2*i+3]);
4228 show_symbol(m, x[2*i+2]);
Al Viro871751e2006-03-25 03:06:39 -08004229 seq_putc(m, '\n');
4230 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004231
Al Viro871751e2006-03-25 03:06:39 -08004232 return 0;
4233}
4234
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004235static const struct seq_operations slabstats_op = {
Al Viro871751e2006-03-25 03:06:39 -08004236 .start = leaks_start,
Wanpeng Li276a2432013-07-08 08:08:28 +08004237 .next = slab_next,
4238 .stop = slab_stop,
Al Viro871751e2006-03-25 03:06:39 -08004239 .show = leaks_show,
4240};
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004241
4242static int slabstats_open(struct inode *inode, struct file *file)
4243{
4244 unsigned long *n = kzalloc(PAGE_SIZE, GFP_KERNEL);
4245 int ret = -ENOMEM;
4246 if (n) {
4247 ret = seq_open(file, &slabstats_op);
4248 if (!ret) {
4249 struct seq_file *m = file->private_data;
4250 *n = PAGE_SIZE / (2 * sizeof(unsigned long));
4251 m->private = n;
4252 n = NULL;
4253 }
4254 kfree(n);
4255 }
4256 return ret;
4257}
4258
4259static const struct file_operations proc_slabstats_operations = {
4260 .open = slabstats_open,
4261 .read = seq_read,
4262 .llseek = seq_lseek,
4263 .release = seq_release_private,
4264};
Al Viro871751e2006-03-25 03:06:39 -08004265#endif
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004266
4267static int __init slab_proc_init(void)
4268{
4269#ifdef CONFIG_DEBUG_SLAB_LEAK
4270 proc_create("slab_allocators", 0, NULL, &proc_slabstats_operations);
4271#endif
4272 return 0;
4273}
4274module_init(slab_proc_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004275#endif
4276
Manfred Spraul00e145b2005-09-03 15:55:07 -07004277/**
4278 * ksize - get the actual amount of memory allocated for a given object
4279 * @objp: Pointer to the object
4280 *
4281 * kmalloc may internally round up allocations and return more memory
4282 * than requested. ksize() can be used to determine the actual amount of
4283 * memory allocated. The caller may use this additional memory, even though
4284 * a smaller amount of memory was initially specified with the kmalloc call.
4285 * The caller must guarantee that objp points to a valid object previously
4286 * allocated with either kmalloc() or kmem_cache_alloc(). The object
4287 * must not be freed during the duration of the call.
4288 */
Pekka Enbergfd76bab2007-05-06 14:48:40 -07004289size_t ksize(const void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004290{
Christoph Lameteref8b4522007-10-16 01:24:46 -07004291 BUG_ON(!objp);
4292 if (unlikely(objp == ZERO_SIZE_PTR))
Manfred Spraul00e145b2005-09-03 15:55:07 -07004293 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004294
Christoph Lameter8c138bc2012-06-13 10:24:58 -05004295 return virt_to_cache(objp)->object_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004296}
Kirill A. Shutemovb1aabec2009-02-10 15:21:44 +02004297EXPORT_SYMBOL(ksize);