blob: e4dc0896b891c07ed0063417533d80641fa95e5c [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
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -0700473#define BAD_ALIEN_MAGIC 0x01020304ul
474
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200475#ifdef CONFIG_LOCKDEP
476
477/*
478 * Slab sometimes uses the kmalloc slabs to store the slab headers
479 * for other slabs "off slab".
480 * The locking for this is tricky in that it nests within the locks
481 * of all other slabs in a few places; to deal with this special
482 * locking we put on-slab caches into a separate lock-class.
483 *
484 * We set lock class for alien array caches which are up during init.
485 * The lock annotation will be lost if all cpus of a node goes down and
486 * then comes back up during hotplug
487 */
488static struct lock_class_key on_slab_l3_key;
489static struct lock_class_key on_slab_alc_key;
490
Peter Zijlstra83835b32011-07-22 15:26:05 +0200491static struct lock_class_key debugobj_l3_key;
492static struct lock_class_key debugobj_alc_key;
493
494static void slab_set_lock_classes(struct kmem_cache *cachep,
495 struct lock_class_key *l3_key, struct lock_class_key *alc_key,
Christoph Lameter18bf8542014-08-06 16:04:11 -0700496 struct kmem_cache_node *n)
Peter Zijlstra83835b32011-07-22 15:26:05 +0200497{
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700498 struct alien_cache **alc;
Peter Zijlstra83835b32011-07-22 15:26:05 +0200499 int r;
500
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000501 lockdep_set_class(&n->list_lock, l3_key);
502 alc = n->alien;
Peter Zijlstra83835b32011-07-22 15:26:05 +0200503 /*
504 * FIXME: This check for BAD_ALIEN_MAGIC
505 * should go away when common slab code is taught to
506 * work even without alien caches.
507 * Currently, non NUMA code returns BAD_ALIEN_MAGIC
508 * for alloc_alien_cache,
509 */
510 if (!alc || (unsigned long)alc == BAD_ALIEN_MAGIC)
511 return;
512 for_each_node(r) {
513 if (alc[r])
Joonsoo Kim49dfc302014-08-06 16:04:31 -0700514 lockdep_set_class(&(alc[r]->lock), alc_key);
Peter Zijlstra83835b32011-07-22 15:26:05 +0200515 }
516}
517
Christoph Lameter18bf8542014-08-06 16:04:11 -0700518static void slab_set_debugobj_lock_classes_node(struct kmem_cache *cachep,
519 struct kmem_cache_node *n)
Peter Zijlstra83835b32011-07-22 15:26:05 +0200520{
Christoph Lameter18bf8542014-08-06 16:04:11 -0700521 slab_set_lock_classes(cachep, &debugobj_l3_key, &debugobj_alc_key, n);
Peter Zijlstra83835b32011-07-22 15:26:05 +0200522}
523
524static void slab_set_debugobj_lock_classes(struct kmem_cache *cachep)
525{
526 int node;
Christoph Lameter18bf8542014-08-06 16:04:11 -0700527 struct kmem_cache_node *n;
Peter Zijlstra83835b32011-07-22 15:26:05 +0200528
Christoph Lameter18bf8542014-08-06 16:04:11 -0700529 for_each_kmem_cache_node(cachep, node, n)
530 slab_set_debugobj_lock_classes_node(cachep, n);
Peter Zijlstra83835b32011-07-22 15:26:05 +0200531}
532
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200533static void init_node_lock_keys(int q)
534{
Christoph Lametere3366012013-01-10 19:14:18 +0000535 int i;
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200536
Christoph Lameter97d06602012-07-06 15:25:11 -0500537 if (slab_state < UP)
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200538 return;
539
Christoph Lameter0f8f8092013-07-02 12:12:10 -0700540 for (i = 1; i <= KMALLOC_SHIFT_HIGH; i++) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000541 struct kmem_cache_node *n;
Christoph Lametere3366012013-01-10 19:14:18 +0000542 struct kmem_cache *cache = kmalloc_caches[i];
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200543
Christoph Lametere3366012013-01-10 19:14:18 +0000544 if (!cache)
Pekka Enberg00afa752009-12-27 14:33:14 +0200545 continue;
Peter Zijlstra83835b32011-07-22 15:26:05 +0200546
Christoph Lameter18bf8542014-08-06 16:04:11 -0700547 n = get_node(cache, q);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000548 if (!n || OFF_SLAB(cache))
Christoph Lametere3366012013-01-10 19:14:18 +0000549 continue;
550
551 slab_set_lock_classes(cache, &on_slab_l3_key,
Christoph Lameter18bf8542014-08-06 16:04:11 -0700552 &on_slab_alc_key, n);
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200553 }
554}
555
Christoph Lameter18bf8542014-08-06 16:04:11 -0700556static void on_slab_lock_classes_node(struct kmem_cache *cachep,
557 struct kmem_cache_node *n)
Glauber Costa6ccfb5b2012-12-18 14:22:31 -0800558{
Glauber Costa6ccfb5b2012-12-18 14:22:31 -0800559 slab_set_lock_classes(cachep, &on_slab_l3_key,
Christoph Lameter18bf8542014-08-06 16:04:11 -0700560 &on_slab_alc_key, n);
Glauber Costa6ccfb5b2012-12-18 14:22:31 -0800561}
562
563static inline void on_slab_lock_classes(struct kmem_cache *cachep)
564{
565 int node;
Christoph Lameter18bf8542014-08-06 16:04:11 -0700566 struct kmem_cache_node *n;
Glauber Costa6ccfb5b2012-12-18 14:22:31 -0800567
568 VM_BUG_ON(OFF_SLAB(cachep));
Christoph Lameter18bf8542014-08-06 16:04:11 -0700569 for_each_kmem_cache_node(cachep, node, n)
570 on_slab_lock_classes_node(cachep, n);
Glauber Costa6ccfb5b2012-12-18 14:22:31 -0800571}
572
Fabian Frederick1536cb32014-08-06 16:04:05 -0700573static inline void __init init_lock_keys(void)
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200574{
575 int node;
576
577 for_each_node(node)
578 init_node_lock_keys(node);
579}
580#else
Fabian Frederick1536cb32014-08-06 16:04:05 -0700581static void __init init_node_lock_keys(int q)
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200582{
583}
584
585static inline void init_lock_keys(void)
586{
587}
Peter Zijlstra83835b32011-07-22 15:26:05 +0200588
Glauber Costa6ccfb5b2012-12-18 14:22:31 -0800589static inline void on_slab_lock_classes(struct kmem_cache *cachep)
590{
591}
592
Christoph Lameter18bf8542014-08-06 16:04:11 -0700593static inline void on_slab_lock_classes_node(struct kmem_cache *cachep,
594 struct kmem_cache_node *n)
Glauber Costa6ccfb5b2012-12-18 14:22:31 -0800595{
596}
597
Christoph Lameter18bf8542014-08-06 16:04:11 -0700598static void slab_set_debugobj_lock_classes_node(struct kmem_cache *cachep,
599 struct kmem_cache_node *n)
Peter Zijlstra83835b32011-07-22 15:26:05 +0200600{
601}
602
603static void slab_set_debugobj_lock_classes(struct kmem_cache *cachep)
604{
605}
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200606#endif
607
Tejun Heo1871e522009-10-29 22:34:13 +0900608static DEFINE_PER_CPU(struct delayed_work, slab_reap_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609
Pekka Enberg343e0d72006-02-01 03:05:50 -0800610static inline struct array_cache *cpu_cache_get(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611{
612 return cachep->array[smp_processor_id()];
613}
614
Joonsoo Kim03787302014-06-23 13:22:06 -0700615static size_t calculate_freelist_size(int nr_objs, size_t align)
616{
617 size_t freelist_size;
618
619 freelist_size = nr_objs * sizeof(freelist_idx_t);
620 if (IS_ENABLED(CONFIG_DEBUG_SLAB_LEAK))
621 freelist_size += nr_objs * sizeof(char);
622
623 if (align)
624 freelist_size = ALIGN(freelist_size, align);
625
626 return freelist_size;
627}
628
Joonsoo Kim9cef2e22013-12-02 17:49:39 +0900629static int calculate_nr_objs(size_t slab_size, size_t buffer_size,
630 size_t idx_size, size_t align)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631{
Joonsoo Kim9cef2e22013-12-02 17:49:39 +0900632 int nr_objs;
Joonsoo Kim03787302014-06-23 13:22:06 -0700633 size_t remained_size;
Joonsoo Kim9cef2e22013-12-02 17:49:39 +0900634 size_t freelist_size;
Joonsoo Kim03787302014-06-23 13:22:06 -0700635 int extra_space = 0;
Joonsoo Kim9cef2e22013-12-02 17:49:39 +0900636
Joonsoo Kim03787302014-06-23 13:22:06 -0700637 if (IS_ENABLED(CONFIG_DEBUG_SLAB_LEAK))
638 extra_space = sizeof(char);
Joonsoo Kim9cef2e22013-12-02 17:49:39 +0900639 /*
640 * Ignore padding for the initial guess. The padding
641 * is at most @align-1 bytes, and @buffer_size is at
642 * least @align. In the worst case, this result will
643 * be one greater than the number of objects that fit
644 * into the memory allocation when taking the padding
645 * into account.
646 */
Joonsoo Kim03787302014-06-23 13:22:06 -0700647 nr_objs = slab_size / (buffer_size + idx_size + extra_space);
Joonsoo Kim9cef2e22013-12-02 17:49:39 +0900648
649 /*
650 * This calculated number will be either the right
651 * amount, or one greater than what we want.
652 */
Joonsoo Kim03787302014-06-23 13:22:06 -0700653 remained_size = slab_size - nr_objs * buffer_size;
654 freelist_size = calculate_freelist_size(nr_objs, align);
655 if (remained_size < freelist_size)
Joonsoo Kim9cef2e22013-12-02 17:49:39 +0900656 nr_objs--;
657
658 return nr_objs;
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800659}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
Andrew Mortona737b3e2006-03-22 00:08:11 -0800661/*
662 * Calculate the number of objects and left-over bytes for a given buffer size.
663 */
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800664static void cache_estimate(unsigned long gfporder, size_t buffer_size,
665 size_t align, int flags, size_t *left_over,
666 unsigned int *num)
667{
668 int nr_objs;
669 size_t mgmt_size;
670 size_t slab_size = PAGE_SIZE << gfporder;
671
672 /*
673 * The slab management structure can be either off the slab or
674 * on it. For the latter case, the memory allocated for a
675 * slab is used for:
676 *
Joonsoo Kim16025172013-10-24 10:07:46 +0900677 * - One unsigned int for each object
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800678 * - Padding to respect alignment of @align
679 * - @buffer_size bytes for each object
680 *
681 * If the slab management structure is off the slab, then the
682 * alignment will already be calculated into the size. Because
683 * the slabs are all pages aligned, the objects will be at the
684 * correct alignment when allocated.
685 */
686 if (flags & CFLGS_OFF_SLAB) {
687 mgmt_size = 0;
688 nr_objs = slab_size / buffer_size;
689
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800690 } else {
Joonsoo Kim9cef2e22013-12-02 17:49:39 +0900691 nr_objs = calculate_nr_objs(slab_size, buffer_size,
Joonsoo Kima41adfa2013-12-02 17:49:42 +0900692 sizeof(freelist_idx_t), align);
Joonsoo Kim03787302014-06-23 13:22:06 -0700693 mgmt_size = calculate_freelist_size(nr_objs, align);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 }
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800695 *num = nr_objs;
696 *left_over = slab_size - nr_objs*buffer_size - mgmt_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697}
698
Christoph Lameterf28510d2012-09-11 19:49:38 +0000699#if DEBUG
Harvey Harrisond40cee22008-04-30 00:55:07 -0700700#define slab_error(cachep, msg) __slab_error(__func__, cachep, msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
Andrew Mortona737b3e2006-03-22 00:08:11 -0800702static void __slab_error(const char *function, struct kmem_cache *cachep,
703 char *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704{
705 printk(KERN_ERR "slab error in %s(): cache `%s': %s\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800706 function, cachep->name, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 dump_stack();
Rusty Russell373d4d02013-01-21 17:17:39 +1030708 add_taint(TAINT_BAD_PAGE, LOCKDEP_NOW_UNRELIABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709}
Christoph Lameterf28510d2012-09-11 19:49:38 +0000710#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
Paul Menage3395ee02006-12-06 20:32:16 -0800712/*
713 * By default on NUMA we use alien caches to stage the freeing of
714 * objects allocated from other nodes. This causes massive memory
715 * inefficiencies when using fake NUMA setup to split memory into a
716 * large number of small nodes, so it can be disabled on the command
717 * line
718 */
719
720static int use_alien_caches __read_mostly = 1;
721static int __init noaliencache_setup(char *s)
722{
723 use_alien_caches = 0;
724 return 1;
725}
726__setup("noaliencache", noaliencache_setup);
727
David Rientjes3df1ccc2011-10-18 22:09:28 -0700728static int __init slab_max_order_setup(char *str)
729{
730 get_option(&str, &slab_max_order);
731 slab_max_order = slab_max_order < 0 ? 0 :
732 min(slab_max_order, MAX_ORDER - 1);
733 slab_max_order_set = true;
734
735 return 1;
736}
737__setup("slab_max_order=", slab_max_order_setup);
738
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800739#ifdef CONFIG_NUMA
740/*
741 * Special reaping functions for NUMA systems called from cache_reap().
742 * These take care of doing round robin flushing of alien caches (containing
743 * objects freed on different nodes from which they were allocated) and the
744 * flushing of remote pcps by calling drain_node_pages.
745 */
Tejun Heo1871e522009-10-29 22:34:13 +0900746static DEFINE_PER_CPU(unsigned long, slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800747
748static void init_reap_node(int cpu)
749{
750 int node;
751
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -0700752 node = next_node(cpu_to_mem(cpu), node_online_map);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800753 if (node == MAX_NUMNODES)
Paul Jackson442295c2006-03-22 00:09:11 -0800754 node = first_node(node_online_map);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800755
Tejun Heo1871e522009-10-29 22:34:13 +0900756 per_cpu(slab_reap_node, cpu) = node;
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800757}
758
759static void next_reap_node(void)
760{
Christoph Lameter909ea962010-12-08 16:22:55 +0100761 int node = __this_cpu_read(slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800762
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800763 node = next_node(node, node_online_map);
764 if (unlikely(node >= MAX_NUMNODES))
765 node = first_node(node_online_map);
Christoph Lameter909ea962010-12-08 16:22:55 +0100766 __this_cpu_write(slab_reap_node, node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800767}
768
769#else
770#define init_reap_node(cpu) do { } while (0)
771#define next_reap_node(void) do { } while (0)
772#endif
773
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774/*
775 * Initiate the reap timer running on the target CPU. We run at around 1 to 2Hz
776 * via the workqueue/eventd.
777 * Add the CPU number into the expiration time to minimize the possibility of
778 * the CPUs getting into lockstep and contending for the global cache chain
779 * lock.
780 */
Paul Gortmaker0db06282013-06-19 14:53:51 -0400781static void start_cpu_timer(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782{
Tejun Heo1871e522009-10-29 22:34:13 +0900783 struct delayed_work *reap_work = &per_cpu(slab_reap_work, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784
785 /*
786 * When this gets called from do_initcalls via cpucache_init(),
787 * init_workqueues() has already run, so keventd will be setup
788 * at that time.
789 */
David Howells52bad642006-11-22 14:54:01 +0000790 if (keventd_up() && reap_work->work.func == NULL) {
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800791 init_reap_node(cpu);
Tejun Heo203b42f2012-08-21 13:18:23 -0700792 INIT_DEFERRABLE_WORK(reap_work, cache_reap);
Arjan van de Ven2b284212006-12-10 02:21:28 -0800793 schedule_delayed_work_on(cpu, reap_work,
794 __round_jiffies_relative(HZ, cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 }
796}
797
Joonsoo Kim1fe00d52014-08-06 16:04:27 -0700798static void init_arraycache(struct array_cache *ac, int limit, int batch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799{
Catalin Marinasd5cff632009-06-11 13:22:40 +0100800 /*
801 * The array_cache structures contain pointers to free object.
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300802 * However, when such objects are allocated or transferred to another
Catalin Marinasd5cff632009-06-11 13:22:40 +0100803 * cache the pointers are not cleared and they could be counted as
804 * valid references during a kmemleak scan. Therefore, kmemleak must
805 * not scan such objects.
806 */
Joonsoo Kim1fe00d52014-08-06 16:04:27 -0700807 kmemleak_no_scan(ac);
808 if (ac) {
809 ac->avail = 0;
810 ac->limit = limit;
811 ac->batchcount = batch;
812 ac->touched = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 }
Joonsoo Kim1fe00d52014-08-06 16:04:27 -0700814}
815
816static struct array_cache *alloc_arraycache(int node, int entries,
817 int batchcount, gfp_t gfp)
818{
819 int memsize = sizeof(void *) * entries + sizeof(struct array_cache);
820 struct array_cache *ac = NULL;
821
822 ac = kmalloc_node(memsize, gfp, node);
823 init_arraycache(ac, entries, batchcount);
824 return ac;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825}
826
Joonsoo Kim8456a642013-10-24 10:07:49 +0900827static inline bool is_slab_pfmemalloc(struct page *page)
Mel Gorman072bb0a2012-07-31 16:43:58 -0700828{
Mel Gorman072bb0a2012-07-31 16:43:58 -0700829 return PageSlabPfmemalloc(page);
830}
831
832/* Clears pfmemalloc_active if no slabs have pfmalloc set */
833static void recheck_pfmemalloc_active(struct kmem_cache *cachep,
834 struct array_cache *ac)
835{
Christoph Lameter18bf8542014-08-06 16:04:11 -0700836 struct kmem_cache_node *n = get_node(cachep, numa_mem_id());
Joonsoo Kim8456a642013-10-24 10:07:49 +0900837 struct page *page;
Mel Gorman072bb0a2012-07-31 16:43:58 -0700838 unsigned long flags;
839
840 if (!pfmemalloc_active)
841 return;
842
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000843 spin_lock_irqsave(&n->list_lock, flags);
Joonsoo Kim8456a642013-10-24 10:07:49 +0900844 list_for_each_entry(page, &n->slabs_full, lru)
845 if (is_slab_pfmemalloc(page))
Mel Gorman072bb0a2012-07-31 16:43:58 -0700846 goto out;
847
Joonsoo Kim8456a642013-10-24 10:07:49 +0900848 list_for_each_entry(page, &n->slabs_partial, lru)
849 if (is_slab_pfmemalloc(page))
Mel Gorman072bb0a2012-07-31 16:43:58 -0700850 goto out;
851
Joonsoo Kim8456a642013-10-24 10:07:49 +0900852 list_for_each_entry(page, &n->slabs_free, lru)
853 if (is_slab_pfmemalloc(page))
Mel Gorman072bb0a2012-07-31 16:43:58 -0700854 goto out;
855
856 pfmemalloc_active = false;
857out:
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000858 spin_unlock_irqrestore(&n->list_lock, flags);
Mel Gorman072bb0a2012-07-31 16:43:58 -0700859}
860
Mel Gorman381760e2012-07-31 16:44:30 -0700861static void *__ac_get_obj(struct kmem_cache *cachep, struct array_cache *ac,
Mel Gorman072bb0a2012-07-31 16:43:58 -0700862 gfp_t flags, bool force_refill)
863{
864 int i;
865 void *objp = ac->entry[--ac->avail];
866
867 /* Ensure the caller is allowed to use objects from PFMEMALLOC slab */
868 if (unlikely(is_obj_pfmemalloc(objp))) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000869 struct kmem_cache_node *n;
Mel Gorman072bb0a2012-07-31 16:43:58 -0700870
871 if (gfp_pfmemalloc_allowed(flags)) {
872 clear_obj_pfmemalloc(&objp);
873 return objp;
874 }
875
876 /* The caller cannot use PFMEMALLOC objects, find another one */
Joonsoo Kimd014dc22012-09-17 14:09:06 -0700877 for (i = 0; i < ac->avail; i++) {
Mel Gorman072bb0a2012-07-31 16:43:58 -0700878 /* If a !PFMEMALLOC object is found, swap them */
879 if (!is_obj_pfmemalloc(ac->entry[i])) {
880 objp = ac->entry[i];
881 ac->entry[i] = ac->entry[ac->avail];
882 ac->entry[ac->avail] = objp;
883 return objp;
884 }
885 }
886
887 /*
888 * If there are empty slabs on the slabs_free list and we are
889 * being forced to refill the cache, mark this one !pfmemalloc.
890 */
Christoph Lameter18bf8542014-08-06 16:04:11 -0700891 n = get_node(cachep, numa_mem_id());
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000892 if (!list_empty(&n->slabs_free) && force_refill) {
Joonsoo Kim8456a642013-10-24 10:07:49 +0900893 struct page *page = virt_to_head_page(objp);
Joonsoo Kim7ecccf92013-10-24 10:07:50 +0900894 ClearPageSlabPfmemalloc(page);
Mel Gorman072bb0a2012-07-31 16:43:58 -0700895 clear_obj_pfmemalloc(&objp);
896 recheck_pfmemalloc_active(cachep, ac);
897 return objp;
898 }
899
900 /* No !PFMEMALLOC objects available */
901 ac->avail++;
902 objp = NULL;
903 }
904
905 return objp;
906}
907
Mel Gorman381760e2012-07-31 16:44:30 -0700908static inline void *ac_get_obj(struct kmem_cache *cachep,
909 struct array_cache *ac, gfp_t flags, bool force_refill)
910{
911 void *objp;
912
913 if (unlikely(sk_memalloc_socks()))
914 objp = __ac_get_obj(cachep, ac, flags, force_refill);
915 else
916 objp = ac->entry[--ac->avail];
917
918 return objp;
919}
920
921static void *__ac_put_obj(struct kmem_cache *cachep, struct array_cache *ac,
Mel Gorman072bb0a2012-07-31 16:43:58 -0700922 void *objp)
923{
924 if (unlikely(pfmemalloc_active)) {
925 /* Some pfmemalloc slabs exist, check if this is one */
Mel Gorman30c29be2012-09-17 14:09:03 -0700926 struct page *page = virt_to_head_page(objp);
Mel Gorman072bb0a2012-07-31 16:43:58 -0700927 if (PageSlabPfmemalloc(page))
928 set_obj_pfmemalloc(&objp);
929 }
930
Mel Gorman381760e2012-07-31 16:44:30 -0700931 return objp;
932}
933
934static inline void ac_put_obj(struct kmem_cache *cachep, struct array_cache *ac,
935 void *objp)
936{
937 if (unlikely(sk_memalloc_socks()))
938 objp = __ac_put_obj(cachep, ac, objp);
939
Mel Gorman072bb0a2012-07-31 16:43:58 -0700940 ac->entry[ac->avail++] = objp;
941}
942
Christoph Lameter3ded1752006-03-25 03:06:44 -0800943/*
944 * Transfer objects in one arraycache to another.
945 * Locking must be handled by the caller.
946 *
947 * Return the number of entries transferred.
948 */
949static int transfer_objects(struct array_cache *to,
950 struct array_cache *from, unsigned int max)
951{
952 /* Figure out how many entries to transfer */
Hagen Paul Pfeifer732eacc2010-10-26 14:22:23 -0700953 int nr = min3(from->avail, max, to->limit - to->avail);
Christoph Lameter3ded1752006-03-25 03:06:44 -0800954
955 if (!nr)
956 return 0;
957
958 memcpy(to->entry + to->avail, from->entry + from->avail -nr,
959 sizeof(void *) *nr);
960
961 from->avail -= nr;
962 to->avail += nr;
Christoph Lameter3ded1752006-03-25 03:06:44 -0800963 return nr;
964}
965
Christoph Lameter765c4502006-09-27 01:50:08 -0700966#ifndef CONFIG_NUMA
967
968#define drain_alien_cache(cachep, alien) do { } while (0)
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000969#define reap_alien(cachep, n) do { } while (0)
Christoph Lameter765c4502006-09-27 01:50:08 -0700970
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700971static inline struct alien_cache **alloc_alien_cache(int node,
972 int limit, gfp_t gfp)
Christoph Lameter765c4502006-09-27 01:50:08 -0700973{
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700974 return (struct alien_cache **)BAD_ALIEN_MAGIC;
Christoph Lameter765c4502006-09-27 01:50:08 -0700975}
976
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700977static inline void free_alien_cache(struct alien_cache **ac_ptr)
Christoph Lameter765c4502006-09-27 01:50:08 -0700978{
979}
980
981static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
982{
983 return 0;
984}
985
986static inline void *alternate_node_alloc(struct kmem_cache *cachep,
987 gfp_t flags)
988{
989 return NULL;
990}
991
Christoph Hellwig8b98c162006-12-06 20:32:30 -0800992static inline void *____cache_alloc_node(struct kmem_cache *cachep,
Christoph Lameter765c4502006-09-27 01:50:08 -0700993 gfp_t flags, int nodeid)
994{
995 return NULL;
996}
997
998#else /* CONFIG_NUMA */
999
Christoph Hellwig8b98c162006-12-06 20:32:30 -08001000static void *____cache_alloc_node(struct kmem_cache *, gfp_t, int);
Paul Jacksonc61afb12006-03-24 03:16:08 -08001001static void *alternate_node_alloc(struct kmem_cache *, gfp_t);
Christoph Lameterdc85da12006-01-18 17:42:36 -08001002
Joonsoo Kimc8522a32014-08-06 16:04:29 -07001003static struct alien_cache *__alloc_alien_cache(int node, int entries,
1004 int batch, gfp_t gfp)
Christoph Lametere498be72005-09-09 13:03:32 -07001005{
Joonsoo Kimc8522a32014-08-06 16:04:29 -07001006 int memsize = sizeof(void *) * entries + sizeof(struct alien_cache);
1007 struct alien_cache *alc = NULL;
1008
1009 alc = kmalloc_node(memsize, gfp, node);
1010 init_arraycache(&alc->ac, entries, batch);
Joonsoo Kim49dfc302014-08-06 16:04:31 -07001011 spin_lock_init(&alc->lock);
Joonsoo Kimc8522a32014-08-06 16:04:29 -07001012 return alc;
1013}
1014
1015static struct alien_cache **alloc_alien_cache(int node, int limit, gfp_t gfp)
1016{
1017 struct alien_cache **alc_ptr;
Christoph Lameter8ef82862007-02-20 13:57:52 -08001018 int memsize = sizeof(void *) * nr_node_ids;
Christoph Lametere498be72005-09-09 13:03:32 -07001019 int i;
1020
1021 if (limit > 1)
1022 limit = 12;
Joonsoo Kimc8522a32014-08-06 16:04:29 -07001023 alc_ptr = kzalloc_node(memsize, gfp, node);
1024 if (!alc_ptr)
1025 return NULL;
1026
1027 for_each_node(i) {
1028 if (i == node || !node_online(i))
1029 continue;
1030 alc_ptr[i] = __alloc_alien_cache(node, limit, 0xbaadf00d, gfp);
1031 if (!alc_ptr[i]) {
1032 for (i--; i >= 0; i--)
1033 kfree(alc_ptr[i]);
1034 kfree(alc_ptr);
1035 return NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07001036 }
1037 }
Joonsoo Kimc8522a32014-08-06 16:04:29 -07001038 return alc_ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001039}
1040
Joonsoo Kimc8522a32014-08-06 16:04:29 -07001041static void free_alien_cache(struct alien_cache **alc_ptr)
Christoph Lametere498be72005-09-09 13:03:32 -07001042{
1043 int i;
1044
Joonsoo Kimc8522a32014-08-06 16:04:29 -07001045 if (!alc_ptr)
Christoph Lametere498be72005-09-09 13:03:32 -07001046 return;
Christoph Lametere498be72005-09-09 13:03:32 -07001047 for_each_node(i)
Joonsoo Kimc8522a32014-08-06 16:04:29 -07001048 kfree(alc_ptr[i]);
1049 kfree(alc_ptr);
Christoph Lametere498be72005-09-09 13:03:32 -07001050}
1051
Pekka Enberg343e0d72006-02-01 03:05:50 -08001052static void __drain_alien_cache(struct kmem_cache *cachep,
Joonsoo Kim833b7062014-08-06 16:04:33 -07001053 struct array_cache *ac, int node,
1054 struct list_head *list)
Christoph Lametere498be72005-09-09 13:03:32 -07001055{
Christoph Lameter18bf8542014-08-06 16:04:11 -07001056 struct kmem_cache_node *n = get_node(cachep, node);
Christoph Lametere498be72005-09-09 13:03:32 -07001057
1058 if (ac->avail) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001059 spin_lock(&n->list_lock);
Christoph Lametere00946f2006-03-25 03:06:45 -08001060 /*
1061 * Stuff objects into the remote nodes shared array first.
1062 * That way we could avoid the overhead of putting the objects
1063 * into the free lists and getting them back later.
1064 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001065 if (n->shared)
1066 transfer_objects(n->shared, ac, ac->limit);
Christoph Lametere00946f2006-03-25 03:06:45 -08001067
Joonsoo Kim833b7062014-08-06 16:04:33 -07001068 free_block(cachep, ac->entry, ac->avail, node, list);
Christoph Lametere498be72005-09-09 13:03:32 -07001069 ac->avail = 0;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001070 spin_unlock(&n->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07001071 }
1072}
1073
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001074/*
1075 * Called from cache_reap() to regularly drain alien caches round robin.
1076 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001077static void reap_alien(struct kmem_cache *cachep, struct kmem_cache_node *n)
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001078{
Christoph Lameter909ea962010-12-08 16:22:55 +01001079 int node = __this_cpu_read(slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001080
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001081 if (n->alien) {
Joonsoo Kimc8522a32014-08-06 16:04:29 -07001082 struct alien_cache *alc = n->alien[node];
1083 struct array_cache *ac;
Christoph Lametere00946f2006-03-25 03:06:45 -08001084
Joonsoo Kimc8522a32014-08-06 16:04:29 -07001085 if (alc) {
1086 ac = &alc->ac;
Joonsoo Kim49dfc302014-08-06 16:04:31 -07001087 if (ac->avail && spin_trylock_irq(&alc->lock)) {
Joonsoo Kim833b7062014-08-06 16:04:33 -07001088 LIST_HEAD(list);
1089
1090 __drain_alien_cache(cachep, ac, node, &list);
Joonsoo Kim49dfc302014-08-06 16:04:31 -07001091 spin_unlock_irq(&alc->lock);
Joonsoo Kim833b7062014-08-06 16:04:33 -07001092 slabs_destroy(cachep, &list);
Joonsoo Kimc8522a32014-08-06 16:04:29 -07001093 }
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001094 }
1095 }
1096}
1097
Andrew Mortona737b3e2006-03-22 00:08:11 -08001098static void drain_alien_cache(struct kmem_cache *cachep,
Joonsoo Kimc8522a32014-08-06 16:04:29 -07001099 struct alien_cache **alien)
Christoph Lametere498be72005-09-09 13:03:32 -07001100{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001101 int i = 0;
Joonsoo Kimc8522a32014-08-06 16:04:29 -07001102 struct alien_cache *alc;
Christoph Lametere498be72005-09-09 13:03:32 -07001103 struct array_cache *ac;
1104 unsigned long flags;
1105
1106 for_each_online_node(i) {
Joonsoo Kimc8522a32014-08-06 16:04:29 -07001107 alc = alien[i];
1108 if (alc) {
Joonsoo Kim833b7062014-08-06 16:04:33 -07001109 LIST_HEAD(list);
1110
Joonsoo Kimc8522a32014-08-06 16:04:29 -07001111 ac = &alc->ac;
Joonsoo Kim49dfc302014-08-06 16:04:31 -07001112 spin_lock_irqsave(&alc->lock, flags);
Joonsoo Kim833b7062014-08-06 16:04:33 -07001113 __drain_alien_cache(cachep, ac, i, &list);
Joonsoo Kim49dfc302014-08-06 16:04:31 -07001114 spin_unlock_irqrestore(&alc->lock, flags);
Joonsoo Kim833b7062014-08-06 16:04:33 -07001115 slabs_destroy(cachep, &list);
Christoph Lametere498be72005-09-09 13:03:32 -07001116 }
1117 }
1118}
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001119
Ingo Molnar873623d2006-07-13 14:44:38 +02001120static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001121{
Joonsoo Kim1ea991b2013-10-24 10:07:40 +09001122 int nodeid = page_to_nid(virt_to_page(objp));
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001123 struct kmem_cache_node *n;
Joonsoo Kimc8522a32014-08-06 16:04:29 -07001124 struct alien_cache *alien = NULL;
1125 struct array_cache *ac;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001126 int node;
Joonsoo Kim97654df2014-08-06 16:04:25 -07001127 LIST_HEAD(list);
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001128
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07001129 node = numa_mem_id();
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001130
1131 /*
1132 * Make sure we are not freeing a object from another node to the array
1133 * cache on this cpu.
1134 */
Joonsoo Kim1ea991b2013-10-24 10:07:40 +09001135 if (likely(nodeid == node))
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001136 return 0;
1137
Christoph Lameter18bf8542014-08-06 16:04:11 -07001138 n = get_node(cachep, node);
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001139 STATS_INC_NODEFREES(cachep);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001140 if (n->alien && n->alien[nodeid]) {
1141 alien = n->alien[nodeid];
Joonsoo Kimc8522a32014-08-06 16:04:29 -07001142 ac = &alien->ac;
Joonsoo Kim49dfc302014-08-06 16:04:31 -07001143 spin_lock(&alien->lock);
Joonsoo Kimc8522a32014-08-06 16:04:29 -07001144 if (unlikely(ac->avail == ac->limit)) {
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001145 STATS_INC_ACOVERFLOW(cachep);
Joonsoo Kim833b7062014-08-06 16:04:33 -07001146 __drain_alien_cache(cachep, ac, nodeid, &list);
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001147 }
Joonsoo Kimc8522a32014-08-06 16:04:29 -07001148 ac_put_obj(cachep, ac, objp);
Joonsoo Kim49dfc302014-08-06 16:04:31 -07001149 spin_unlock(&alien->lock);
Joonsoo Kim833b7062014-08-06 16:04:33 -07001150 slabs_destroy(cachep, &list);
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001151 } else {
Christoph Lameter18bf8542014-08-06 16:04:11 -07001152 n = get_node(cachep, nodeid);
1153 spin_lock(&n->list_lock);
Joonsoo Kim97654df2014-08-06 16:04:25 -07001154 free_block(cachep, &objp, 1, nodeid, &list);
Christoph Lameter18bf8542014-08-06 16:04:11 -07001155 spin_unlock(&n->list_lock);
Joonsoo Kim97654df2014-08-06 16:04:25 -07001156 slabs_destroy(cachep, &list);
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001157 }
1158 return 1;
1159}
Christoph Lametere498be72005-09-09 13:03:32 -07001160#endif
1161
David Rientjes8f9f8d92010-03-27 19:40:47 -07001162/*
Christoph Lameter6a673682013-01-10 19:14:19 +00001163 * Allocates and initializes node for a node on each slab cache, used for
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001164 * either memory or cpu hotplug. If memory is being hot-added, the kmem_cache_node
David Rientjes8f9f8d92010-03-27 19:40:47 -07001165 * will be allocated off-node since memory is not yet online for the new node.
Christoph Lameter6a673682013-01-10 19:14:19 +00001166 * When hotplugging memory or a cpu, existing node are not replaced if
David Rientjes8f9f8d92010-03-27 19:40:47 -07001167 * already in use.
1168 *
Christoph Lameter18004c52012-07-06 15:25:12 -05001169 * Must hold slab_mutex.
David Rientjes8f9f8d92010-03-27 19:40:47 -07001170 */
Christoph Lameter6a673682013-01-10 19:14:19 +00001171static int init_cache_node_node(int node)
David Rientjes8f9f8d92010-03-27 19:40:47 -07001172{
1173 struct kmem_cache *cachep;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001174 struct kmem_cache_node *n;
Christoph Lameter6744f082013-01-10 19:12:17 +00001175 const int memsize = sizeof(struct kmem_cache_node);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001176
Christoph Lameter18004c52012-07-06 15:25:12 -05001177 list_for_each_entry(cachep, &slab_caches, list) {
David Rientjes8f9f8d92010-03-27 19:40:47 -07001178 /*
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08001179 * Set up the kmem_cache_node for cpu before we can
David Rientjes8f9f8d92010-03-27 19:40:47 -07001180 * begin anything. Make sure some other cpu on this
1181 * node has not already allocated this
1182 */
Christoph Lameter18bf8542014-08-06 16:04:11 -07001183 n = get_node(cachep, node);
1184 if (!n) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001185 n = kmalloc_node(memsize, GFP_KERNEL, node);
1186 if (!n)
David Rientjes8f9f8d92010-03-27 19:40:47 -07001187 return -ENOMEM;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001188 kmem_cache_node_init(n);
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08001189 n->next_reap = jiffies + REAPTIMEOUT_NODE +
1190 ((unsigned long)cachep) % REAPTIMEOUT_NODE;
David Rientjes8f9f8d92010-03-27 19:40:47 -07001191
1192 /*
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08001193 * The kmem_cache_nodes don't come and go as CPUs
1194 * come and go. slab_mutex is sufficient
David Rientjes8f9f8d92010-03-27 19:40:47 -07001195 * protection here.
1196 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001197 cachep->node[node] = n;
David Rientjes8f9f8d92010-03-27 19:40:47 -07001198 }
1199
Christoph Lameter18bf8542014-08-06 16:04:11 -07001200 spin_lock_irq(&n->list_lock);
1201 n->free_limit =
David Rientjes8f9f8d92010-03-27 19:40:47 -07001202 (1 + nr_cpus_node(node)) *
1203 cachep->batchcount + cachep->num;
Christoph Lameter18bf8542014-08-06 16:04:11 -07001204 spin_unlock_irq(&n->list_lock);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001205 }
1206 return 0;
1207}
1208
Wanpeng Li0fa81032013-07-04 08:33:22 +08001209static inline int slabs_tofree(struct kmem_cache *cachep,
1210 struct kmem_cache_node *n)
1211{
1212 return (n->free_objects + cachep->num - 1) / cachep->num;
1213}
1214
Paul Gortmaker0db06282013-06-19 14:53:51 -04001215static void cpuup_canceled(long cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216{
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001217 struct kmem_cache *cachep;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001218 struct kmem_cache_node *n = NULL;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07001219 int node = cpu_to_mem(cpu);
Rusty Russella70f7302009-03-13 14:49:46 +10301220 const struct cpumask *mask = cpumask_of_node(node);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001221
Christoph Lameter18004c52012-07-06 15:25:12 -05001222 list_for_each_entry(cachep, &slab_caches, list) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001223 struct array_cache *nc;
1224 struct array_cache *shared;
Joonsoo Kimc8522a32014-08-06 16:04:29 -07001225 struct alien_cache **alien;
Joonsoo Kim97654df2014-08-06 16:04:25 -07001226 LIST_HEAD(list);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001227
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001228 /* cpu is dead; no one can alloc from it. */
1229 nc = cachep->array[cpu];
1230 cachep->array[cpu] = NULL;
Christoph Lameter18bf8542014-08-06 16:04:11 -07001231 n = get_node(cachep, node);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001232
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001233 if (!n)
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001234 goto free_array_cache;
1235
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001236 spin_lock_irq(&n->list_lock);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001237
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001238 /* Free limit for this kmem_cache_node */
1239 n->free_limit -= cachep->batchcount;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001240 if (nc)
Joonsoo Kim97654df2014-08-06 16:04:25 -07001241 free_block(cachep, nc->entry, nc->avail, node, &list);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001242
Rusty Russell58463c12009-12-17 11:43:12 -06001243 if (!cpumask_empty(mask)) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001244 spin_unlock_irq(&n->list_lock);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001245 goto free_array_cache;
1246 }
1247
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001248 shared = n->shared;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001249 if (shared) {
1250 free_block(cachep, shared->entry,
Joonsoo Kim97654df2014-08-06 16:04:25 -07001251 shared->avail, node, &list);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001252 n->shared = NULL;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001253 }
1254
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001255 alien = n->alien;
1256 n->alien = NULL;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001257
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001258 spin_unlock_irq(&n->list_lock);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001259
1260 kfree(shared);
1261 if (alien) {
1262 drain_alien_cache(cachep, alien);
1263 free_alien_cache(alien);
1264 }
1265free_array_cache:
Joonsoo Kim97654df2014-08-06 16:04:25 -07001266 slabs_destroy(cachep, &list);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001267 kfree(nc);
1268 }
1269 /*
1270 * In the previous loop, all the objects were freed to
1271 * the respective cache's slabs, now we can go ahead and
1272 * shrink each nodelist to its limit.
1273 */
Christoph Lameter18004c52012-07-06 15:25:12 -05001274 list_for_each_entry(cachep, &slab_caches, list) {
Christoph Lameter18bf8542014-08-06 16:04:11 -07001275 n = get_node(cachep, node);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001276 if (!n)
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001277 continue;
Wanpeng Li0fa81032013-07-04 08:33:22 +08001278 drain_freelist(cachep, n, slabs_tofree(cachep, n));
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001279 }
1280}
1281
Paul Gortmaker0db06282013-06-19 14:53:51 -04001282static int cpuup_prepare(long cpu)
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001283{
Pekka Enberg343e0d72006-02-01 03:05:50 -08001284 struct kmem_cache *cachep;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001285 struct kmem_cache_node *n = NULL;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07001286 int node = cpu_to_mem(cpu);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001287 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001288
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001289 /*
1290 * We need to do this right in the beginning since
1291 * alloc_arraycache's are going to use this list.
1292 * kmalloc_node allows us to add the slab to the right
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001293 * kmem_cache_node and not this cpu's kmem_cache_node
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001294 */
Christoph Lameter6a673682013-01-10 19:14:19 +00001295 err = init_cache_node_node(node);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001296 if (err < 0)
1297 goto bad;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001298
1299 /*
1300 * Now we can go ahead with allocating the shared arrays and
1301 * array caches
1302 */
Christoph Lameter18004c52012-07-06 15:25:12 -05001303 list_for_each_entry(cachep, &slab_caches, list) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001304 struct array_cache *nc;
1305 struct array_cache *shared = NULL;
Joonsoo Kimc8522a32014-08-06 16:04:29 -07001306 struct alien_cache **alien = NULL;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001307
1308 nc = alloc_arraycache(node, cachep->limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03001309 cachep->batchcount, GFP_KERNEL);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001310 if (!nc)
1311 goto bad;
1312 if (cachep->shared) {
1313 shared = alloc_arraycache(node,
1314 cachep->shared * cachep->batchcount,
Pekka Enberg83b519e2009-06-10 19:40:04 +03001315 0xbaadf00d, GFP_KERNEL);
Akinobu Mita12d00f62007-10-18 03:05:11 -07001316 if (!shared) {
1317 kfree(nc);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001318 goto bad;
Akinobu Mita12d00f62007-10-18 03:05:11 -07001319 }
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001320 }
1321 if (use_alien_caches) {
Pekka Enberg83b519e2009-06-10 19:40:04 +03001322 alien = alloc_alien_cache(node, cachep->limit, GFP_KERNEL);
Akinobu Mita12d00f62007-10-18 03:05:11 -07001323 if (!alien) {
1324 kfree(shared);
1325 kfree(nc);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001326 goto bad;
Akinobu Mita12d00f62007-10-18 03:05:11 -07001327 }
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001328 }
1329 cachep->array[cpu] = nc;
Christoph Lameter18bf8542014-08-06 16:04:11 -07001330 n = get_node(cachep, node);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001331 BUG_ON(!n);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001332
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001333 spin_lock_irq(&n->list_lock);
1334 if (!n->shared) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001335 /*
1336 * We are serialised from CPU_DEAD or
1337 * CPU_UP_CANCELLED by the cpucontrol lock
1338 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001339 n->shared = shared;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001340 shared = NULL;
1341 }
1342#ifdef CONFIG_NUMA
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001343 if (!n->alien) {
1344 n->alien = alien;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001345 alien = NULL;
1346 }
1347#endif
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001348 spin_unlock_irq(&n->list_lock);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001349 kfree(shared);
1350 free_alien_cache(alien);
Peter Zijlstra83835b32011-07-22 15:26:05 +02001351 if (cachep->flags & SLAB_DEBUG_OBJECTS)
Christoph Lameter18bf8542014-08-06 16:04:11 -07001352 slab_set_debugobj_lock_classes_node(cachep, n);
Glauber Costa6ccfb5b2012-12-18 14:22:31 -08001353 else if (!OFF_SLAB(cachep) &&
1354 !(cachep->flags & SLAB_DESTROY_BY_RCU))
Christoph Lameter18bf8542014-08-06 16:04:11 -07001355 on_slab_lock_classes_node(cachep, n);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001356 }
Pekka Enbergce79ddc2009-11-23 22:01:15 +02001357 init_node_lock_keys(node);
1358
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001359 return 0;
1360bad:
Akinobu Mita12d00f62007-10-18 03:05:11 -07001361 cpuup_canceled(cpu);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001362 return -ENOMEM;
1363}
1364
Paul Gortmaker0db06282013-06-19 14:53:51 -04001365static int cpuup_callback(struct notifier_block *nfb,
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001366 unsigned long action, void *hcpu)
1367{
1368 long cpu = (long)hcpu;
1369 int err = 0;
1370
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 switch (action) {
Heiko Carstens38c3bd92007-05-09 02:34:05 -07001372 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001373 case CPU_UP_PREPARE_FROZEN:
Christoph Lameter18004c52012-07-06 15:25:12 -05001374 mutex_lock(&slab_mutex);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001375 err = cpuup_prepare(cpu);
Christoph Lameter18004c52012-07-06 15:25:12 -05001376 mutex_unlock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 break;
1378 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001379 case CPU_ONLINE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 start_cpu_timer(cpu);
1381 break;
1382#ifdef CONFIG_HOTPLUG_CPU
Christoph Lameter5830c592007-05-09 02:34:22 -07001383 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001384 case CPU_DOWN_PREPARE_FROZEN:
Christoph Lameter5830c592007-05-09 02:34:22 -07001385 /*
Christoph Lameter18004c52012-07-06 15:25:12 -05001386 * Shutdown cache reaper. Note that the slab_mutex is
Christoph Lameter5830c592007-05-09 02:34:22 -07001387 * held so that if cache_reap() is invoked it cannot do
1388 * anything expensive but will only modify reap_work
1389 * and reschedule the timer.
1390 */
Tejun Heoafe2c512010-12-14 16:21:17 +01001391 cancel_delayed_work_sync(&per_cpu(slab_reap_work, cpu));
Christoph Lameter5830c592007-05-09 02:34:22 -07001392 /* Now the cache_reaper is guaranteed to be not running. */
Tejun Heo1871e522009-10-29 22:34:13 +09001393 per_cpu(slab_reap_work, cpu).work.func = NULL;
Christoph Lameter5830c592007-05-09 02:34:22 -07001394 break;
1395 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001396 case CPU_DOWN_FAILED_FROZEN:
Christoph Lameter5830c592007-05-09 02:34:22 -07001397 start_cpu_timer(cpu);
1398 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001400 case CPU_DEAD_FROZEN:
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001401 /*
1402 * Even if all the cpus of a node are down, we don't free the
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001403 * kmem_cache_node of any cache. This to avoid a race between
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001404 * cpu_down, and a kmalloc allocation from another cpu for
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001405 * memory from the node of the cpu going down. The node
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001406 * structure is usually allocated from kmem_cache_create() and
1407 * gets destroyed at kmem_cache_destroy().
1408 */
Simon Arlott183ff222007-10-20 01:27:18 +02001409 /* fall through */
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08001410#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001412 case CPU_UP_CANCELED_FROZEN:
Christoph Lameter18004c52012-07-06 15:25:12 -05001413 mutex_lock(&slab_mutex);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001414 cpuup_canceled(cpu);
Christoph Lameter18004c52012-07-06 15:25:12 -05001415 mutex_unlock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417 }
Akinobu Mitaeac40682010-05-26 14:43:32 -07001418 return notifier_from_errno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419}
1420
Paul Gortmaker0db06282013-06-19 14:53:51 -04001421static struct notifier_block cpucache_notifier = {
Chandra Seetharaman74b85f32006-06-27 02:54:09 -07001422 &cpuup_callback, NULL, 0
1423};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
David Rientjes8f9f8d92010-03-27 19:40:47 -07001425#if defined(CONFIG_NUMA) && defined(CONFIG_MEMORY_HOTPLUG)
1426/*
1427 * Drains freelist for a node on each slab cache, used for memory hot-remove.
1428 * Returns -EBUSY if all objects cannot be drained so that the node is not
1429 * removed.
1430 *
Christoph Lameter18004c52012-07-06 15:25:12 -05001431 * Must hold slab_mutex.
David Rientjes8f9f8d92010-03-27 19:40:47 -07001432 */
Christoph Lameter6a673682013-01-10 19:14:19 +00001433static int __meminit drain_cache_node_node(int node)
David Rientjes8f9f8d92010-03-27 19:40:47 -07001434{
1435 struct kmem_cache *cachep;
1436 int ret = 0;
1437
Christoph Lameter18004c52012-07-06 15:25:12 -05001438 list_for_each_entry(cachep, &slab_caches, list) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001439 struct kmem_cache_node *n;
David Rientjes8f9f8d92010-03-27 19:40:47 -07001440
Christoph Lameter18bf8542014-08-06 16:04:11 -07001441 n = get_node(cachep, node);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001442 if (!n)
David Rientjes8f9f8d92010-03-27 19:40:47 -07001443 continue;
1444
Wanpeng Li0fa81032013-07-04 08:33:22 +08001445 drain_freelist(cachep, n, slabs_tofree(cachep, n));
David Rientjes8f9f8d92010-03-27 19:40:47 -07001446
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001447 if (!list_empty(&n->slabs_full) ||
1448 !list_empty(&n->slabs_partial)) {
David Rientjes8f9f8d92010-03-27 19:40:47 -07001449 ret = -EBUSY;
1450 break;
1451 }
1452 }
1453 return ret;
1454}
1455
1456static int __meminit slab_memory_callback(struct notifier_block *self,
1457 unsigned long action, void *arg)
1458{
1459 struct memory_notify *mnb = arg;
1460 int ret = 0;
1461 int nid;
1462
1463 nid = mnb->status_change_nid;
1464 if (nid < 0)
1465 goto out;
1466
1467 switch (action) {
1468 case MEM_GOING_ONLINE:
Christoph Lameter18004c52012-07-06 15:25:12 -05001469 mutex_lock(&slab_mutex);
Christoph Lameter6a673682013-01-10 19:14:19 +00001470 ret = init_cache_node_node(nid);
Christoph Lameter18004c52012-07-06 15:25:12 -05001471 mutex_unlock(&slab_mutex);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001472 break;
1473 case MEM_GOING_OFFLINE:
Christoph Lameter18004c52012-07-06 15:25:12 -05001474 mutex_lock(&slab_mutex);
Christoph Lameter6a673682013-01-10 19:14:19 +00001475 ret = drain_cache_node_node(nid);
Christoph Lameter18004c52012-07-06 15:25:12 -05001476 mutex_unlock(&slab_mutex);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001477 break;
1478 case MEM_ONLINE:
1479 case MEM_OFFLINE:
1480 case MEM_CANCEL_ONLINE:
1481 case MEM_CANCEL_OFFLINE:
1482 break;
1483 }
1484out:
Prarit Bhargava5fda1bd2011-03-22 16:30:49 -07001485 return notifier_from_errno(ret);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001486}
1487#endif /* CONFIG_NUMA && CONFIG_MEMORY_HOTPLUG */
1488
Christoph Lametere498be72005-09-09 13:03:32 -07001489/*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001490 * swap the static kmem_cache_node with kmalloced memory
Christoph Lametere498be72005-09-09 13:03:32 -07001491 */
Christoph Lameter6744f082013-01-10 19:12:17 +00001492static void __init init_list(struct kmem_cache *cachep, struct kmem_cache_node *list,
David Rientjes8f9f8d92010-03-27 19:40:47 -07001493 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07001494{
Christoph Lameter6744f082013-01-10 19:12:17 +00001495 struct kmem_cache_node *ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001496
Christoph Lameter6744f082013-01-10 19:12:17 +00001497 ptr = kmalloc_node(sizeof(struct kmem_cache_node), GFP_NOWAIT, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07001498 BUG_ON(!ptr);
1499
Christoph Lameter6744f082013-01-10 19:12:17 +00001500 memcpy(ptr, list, sizeof(struct kmem_cache_node));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001501 /*
1502 * Do not assume that spinlocks can be initialized via memcpy:
1503 */
1504 spin_lock_init(&ptr->list_lock);
1505
Christoph Lametere498be72005-09-09 13:03:32 -07001506 MAKE_ALL_LISTS(cachep, ptr, nodeid);
Christoph Lameter6a673682013-01-10 19:14:19 +00001507 cachep->node[nodeid] = ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001508}
1509
Andrew Mortona737b3e2006-03-22 00:08:11 -08001510/*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001511 * For setting up all the kmem_cache_node for cache whose buffer_size is same as
1512 * size of kmem_cache_node.
Pekka Enberg556a1692008-01-25 08:20:51 +02001513 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001514static void __init set_up_node(struct kmem_cache *cachep, int index)
Pekka Enberg556a1692008-01-25 08:20:51 +02001515{
1516 int node;
1517
1518 for_each_online_node(node) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001519 cachep->node[node] = &init_kmem_cache_node[index + node];
Christoph Lameter6a673682013-01-10 19:14:19 +00001520 cachep->node[node]->next_reap = jiffies +
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08001521 REAPTIMEOUT_NODE +
1522 ((unsigned long)cachep) % REAPTIMEOUT_NODE;
Pekka Enberg556a1692008-01-25 08:20:51 +02001523 }
1524}
1525
1526/*
Christoph Lameter3c583462012-11-28 16:23:01 +00001527 * The memory after the last cpu cache pointer is used for the
Christoph Lameter6a673682013-01-10 19:14:19 +00001528 * the node pointer.
Christoph Lameter3c583462012-11-28 16:23:01 +00001529 */
Christoph Lameter6a673682013-01-10 19:14:19 +00001530static void setup_node_pointer(struct kmem_cache *cachep)
Christoph Lameter3c583462012-11-28 16:23:01 +00001531{
Christoph Lameter6a673682013-01-10 19:14:19 +00001532 cachep->node = (struct kmem_cache_node **)&cachep->array[nr_cpu_ids];
Christoph Lameter3c583462012-11-28 16:23:01 +00001533}
1534
1535/*
Andrew Mortona737b3e2006-03-22 00:08:11 -08001536 * Initialisation. Called after the page allocator have been initialised and
1537 * before smp_init().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 */
1539void __init kmem_cache_init(void)
1540{
Christoph Lametere498be72005-09-09 13:03:32 -07001541 int i;
1542
Joonsoo Kim68126702013-10-24 10:07:42 +09001543 BUILD_BUG_ON(sizeof(((struct page *)NULL)->lru) <
1544 sizeof(struct rcu_head));
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001545 kmem_cache = &kmem_cache_boot;
Christoph Lameter6a673682013-01-10 19:14:19 +00001546 setup_node_pointer(kmem_cache);
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001547
Mel Gormanb6e68bc2009-06-16 15:32:16 -07001548 if (num_possible_nodes() == 1)
Siddha, Suresh B62918a02007-05-02 19:27:18 +02001549 use_alien_caches = 0;
1550
Christoph Lameter3c583462012-11-28 16:23:01 +00001551 for (i = 0; i < NUM_INIT_LISTS; i++)
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001552 kmem_cache_node_init(&init_kmem_cache_node[i]);
Christoph Lameter3c583462012-11-28 16:23:01 +00001553
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001554 set_up_node(kmem_cache, CACHE_CACHE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555
1556 /*
1557 * Fragmentation resistance on low memory - only use bigger
David Rientjes3df1ccc2011-10-18 22:09:28 -07001558 * page orders on machines with more than 32MB of memory if
1559 * not overridden on the command line.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 */
David Rientjes3df1ccc2011-10-18 22:09:28 -07001561 if (!slab_max_order_set && totalram_pages > (32 << 20) >> PAGE_SHIFT)
David Rientjes543585c2011-10-18 22:09:24 -07001562 slab_max_order = SLAB_MAX_ORDER_HI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 /* Bootstrap is tricky, because several objects are allocated
1565 * from caches that do not exist yet:
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001566 * 1) initialize the kmem_cache cache: it contains the struct
1567 * kmem_cache structures of all caches, except kmem_cache itself:
1568 * kmem_cache is statically allocated.
Christoph Lametere498be72005-09-09 13:03:32 -07001569 * Initially an __init data area is used for the head array and the
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001570 * kmem_cache_node structures, it's replaced with a kmalloc allocated
Christoph Lametere498be72005-09-09 13:03:32 -07001571 * array at the end of the bootstrap.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 * 2) Create the first kmalloc cache.
Pekka Enberg343e0d72006-02-01 03:05:50 -08001573 * The struct kmem_cache for the new cache is allocated normally.
Christoph Lametere498be72005-09-09 13:03:32 -07001574 * An __init data area is used for the head array.
1575 * 3) Create the remaining kmalloc caches, with minimally sized
1576 * head arrays.
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001577 * 4) Replace the __init data head arrays for kmem_cache and the first
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 * kmalloc cache with kmalloc allocated arrays.
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001579 * 5) Replace the __init data for kmem_cache_node for kmem_cache and
Christoph Lametere498be72005-09-09 13:03:32 -07001580 * the other cache's with kmalloc allocated memory.
1581 * 6) Resize the head arrays of the kmalloc caches to their final sizes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 */
1583
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001584 /* 1) create the kmem_cache */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585
Eric Dumazet8da34302007-05-06 14:49:29 -07001586 /*
Eric Dumazetb56efcf2011-07-20 19:04:23 +02001587 * struct kmem_cache size depends on nr_node_ids & nr_cpu_ids
Eric Dumazet8da34302007-05-06 14:49:29 -07001588 */
Christoph Lameter2f9baa92012-11-28 16:23:09 +00001589 create_boot_cache(kmem_cache, "kmem_cache",
1590 offsetof(struct kmem_cache, array[nr_cpu_ids]) +
Christoph Lameter6744f082013-01-10 19:12:17 +00001591 nr_node_ids * sizeof(struct kmem_cache_node *),
Christoph Lameter2f9baa92012-11-28 16:23:09 +00001592 SLAB_HWCACHE_ALIGN);
1593 list_add(&kmem_cache->list, &slab_caches);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594
1595 /* 2+3) create the kmalloc caches */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001596
Andrew Mortona737b3e2006-03-22 00:08:11 -08001597 /*
1598 * Initialize the caches that provide memory for the array cache and the
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001599 * kmem_cache_node structures first. Without this, further allocations will
Andrew Mortona737b3e2006-03-22 00:08:11 -08001600 * bug.
Christoph Lametere498be72005-09-09 13:03:32 -07001601 */
1602
Christoph Lametere3366012013-01-10 19:14:18 +00001603 kmalloc_caches[INDEX_AC] = create_kmalloc_cache("kmalloc-ac",
1604 kmalloc_size(INDEX_AC), ARCH_KMALLOC_FLAGS);
Christoph Lametere498be72005-09-09 13:03:32 -07001605
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001606 if (INDEX_AC != INDEX_NODE)
1607 kmalloc_caches[INDEX_NODE] =
1608 create_kmalloc_cache("kmalloc-node",
1609 kmalloc_size(INDEX_NODE), ARCH_KMALLOC_FLAGS);
Christoph Lametere498be72005-09-09 13:03:32 -07001610
Ingo Molnare0a42722006-06-23 02:03:46 -07001611 slab_early_init = 0;
1612
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 /* 4) Replace the bootstrap head arrays */
1614 {
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001615 struct array_cache *ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001616
Pekka Enberg83b519e2009-06-10 19:40:04 +03001617 ptr = kmalloc(sizeof(struct arraycache_init), GFP_NOWAIT);
Christoph Lametere498be72005-09-09 13:03:32 -07001618
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001619 memcpy(ptr, cpu_cache_get(kmem_cache),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001620 sizeof(struct arraycache_init));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001621
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001622 kmem_cache->array[smp_processor_id()] = ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001623
Pekka Enberg83b519e2009-06-10 19:40:04 +03001624 ptr = kmalloc(sizeof(struct arraycache_init), GFP_NOWAIT);
Christoph Lametere498be72005-09-09 13:03:32 -07001625
Christoph Lametere3366012013-01-10 19:14:18 +00001626 BUG_ON(cpu_cache_get(kmalloc_caches[INDEX_AC])
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001627 != &initarray_generic.cache);
Christoph Lametere3366012013-01-10 19:14:18 +00001628 memcpy(ptr, cpu_cache_get(kmalloc_caches[INDEX_AC]),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001629 sizeof(struct arraycache_init));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001630
Christoph Lametere3366012013-01-10 19:14:18 +00001631 kmalloc_caches[INDEX_AC]->array[smp_processor_id()] = ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001633 /* 5) Replace the bootstrap kmem_cache_node */
Christoph Lametere498be72005-09-09 13:03:32 -07001634 {
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001635 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001636
Mel Gorman9c09a952008-01-24 05:49:54 -08001637 for_each_online_node(nid) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001638 init_list(kmem_cache, &init_kmem_cache_node[CACHE_CACHE + nid], nid);
Pekka Enberg556a1692008-01-25 08:20:51 +02001639
Christoph Lametere3366012013-01-10 19:14:18 +00001640 init_list(kmalloc_caches[INDEX_AC],
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001641 &init_kmem_cache_node[SIZE_AC + nid], nid);
Christoph Lametere498be72005-09-09 13:03:32 -07001642
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001643 if (INDEX_AC != INDEX_NODE) {
1644 init_list(kmalloc_caches[INDEX_NODE],
1645 &init_kmem_cache_node[SIZE_NODE + nid], nid);
Christoph Lametere498be72005-09-09 13:03:32 -07001646 }
1647 }
1648 }
1649
Christoph Lameterf97d5f62013-01-10 19:12:17 +00001650 create_kmalloc_caches(ARCH_KMALLOC_FLAGS);
Pekka Enberg8429db52009-06-12 15:58:59 +03001651}
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -07001652
Pekka Enberg8429db52009-06-12 15:58:59 +03001653void __init kmem_cache_init_late(void)
1654{
1655 struct kmem_cache *cachep;
1656
Christoph Lameter97d06602012-07-06 15:25:11 -05001657 slab_state = UP;
Peter Zijlstra52cef182011-11-28 21:12:40 +01001658
Pekka Enberg8429db52009-06-12 15:58:59 +03001659 /* 6) resize the head arrays to their final sizes */
Christoph Lameter18004c52012-07-06 15:25:12 -05001660 mutex_lock(&slab_mutex);
1661 list_for_each_entry(cachep, &slab_caches, list)
Pekka Enberg8429db52009-06-12 15:58:59 +03001662 if (enable_cpucache(cachep, GFP_NOWAIT))
1663 BUG();
Christoph Lameter18004c52012-07-06 15:25:12 -05001664 mutex_unlock(&slab_mutex);
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -07001665
Michael Wang947ca182012-09-05 10:33:18 +08001666 /* Annotate slab for lockdep -- annotate the malloc caches */
1667 init_lock_keys();
1668
Christoph Lameter97d06602012-07-06 15:25:11 -05001669 /* Done! */
1670 slab_state = FULL;
1671
Andrew Mortona737b3e2006-03-22 00:08:11 -08001672 /*
1673 * Register a cpu startup notifier callback that initializes
1674 * cpu_cache_get for all new cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 */
1676 register_cpu_notifier(&cpucache_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677
David Rientjes8f9f8d92010-03-27 19:40:47 -07001678#ifdef CONFIG_NUMA
1679 /*
1680 * Register a memory hotplug callback that initializes and frees
Christoph Lameter6a673682013-01-10 19:14:19 +00001681 * node.
David Rientjes8f9f8d92010-03-27 19:40:47 -07001682 */
1683 hotplug_memory_notifier(slab_memory_callback, SLAB_CALLBACK_PRI);
1684#endif
1685
Andrew Mortona737b3e2006-03-22 00:08:11 -08001686 /*
1687 * The reap timers are started later, with a module init call: That part
1688 * of the kernel is not yet operational.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 */
1690}
1691
1692static int __init cpucache_init(void)
1693{
1694 int cpu;
1695
Andrew Mortona737b3e2006-03-22 00:08:11 -08001696 /*
1697 * Register the timers that return unneeded pages to the page allocator
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 */
Christoph Lametere498be72005-09-09 13:03:32 -07001699 for_each_online_cpu(cpu)
Andrew Mortona737b3e2006-03-22 00:08:11 -08001700 start_cpu_timer(cpu);
Glauber Costaa164f8962012-06-21 00:59:18 +04001701
1702 /* Done! */
Christoph Lameter97d06602012-07-06 15:25:11 -05001703 slab_state = FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 return 0;
1705}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706__initcall(cpucache_init);
1707
Rafael Aquini8bdec192012-03-09 17:27:27 -03001708static noinline void
1709slab_out_of_memory(struct kmem_cache *cachep, gfp_t gfpflags, int nodeid)
1710{
David Rientjes9a02d692014-06-04 16:06:36 -07001711#if DEBUG
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001712 struct kmem_cache_node *n;
Joonsoo Kim8456a642013-10-24 10:07:49 +09001713 struct page *page;
Rafael Aquini8bdec192012-03-09 17:27:27 -03001714 unsigned long flags;
1715 int node;
David Rientjes9a02d692014-06-04 16:06:36 -07001716 static DEFINE_RATELIMIT_STATE(slab_oom_rs, DEFAULT_RATELIMIT_INTERVAL,
1717 DEFAULT_RATELIMIT_BURST);
1718
1719 if ((gfpflags & __GFP_NOWARN) || !__ratelimit(&slab_oom_rs))
1720 return;
Rafael Aquini8bdec192012-03-09 17:27:27 -03001721
1722 printk(KERN_WARNING
1723 "SLAB: Unable to allocate memory on node %d (gfp=0x%x)\n",
1724 nodeid, gfpflags);
1725 printk(KERN_WARNING " cache: %s, object size: %d, order: %d\n",
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05001726 cachep->name, cachep->size, cachep->gfporder);
Rafael Aquini8bdec192012-03-09 17:27:27 -03001727
Christoph Lameter18bf8542014-08-06 16:04:11 -07001728 for_each_kmem_cache_node(cachep, node, n) {
Rafael Aquini8bdec192012-03-09 17:27:27 -03001729 unsigned long active_objs = 0, num_objs = 0, free_objects = 0;
1730 unsigned long active_slabs = 0, num_slabs = 0;
1731
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001732 spin_lock_irqsave(&n->list_lock, flags);
Joonsoo Kim8456a642013-10-24 10:07:49 +09001733 list_for_each_entry(page, &n->slabs_full, lru) {
Rafael Aquini8bdec192012-03-09 17:27:27 -03001734 active_objs += cachep->num;
1735 active_slabs++;
1736 }
Joonsoo Kim8456a642013-10-24 10:07:49 +09001737 list_for_each_entry(page, &n->slabs_partial, lru) {
1738 active_objs += page->active;
Rafael Aquini8bdec192012-03-09 17:27:27 -03001739 active_slabs++;
1740 }
Joonsoo Kim8456a642013-10-24 10:07:49 +09001741 list_for_each_entry(page, &n->slabs_free, lru)
Rafael Aquini8bdec192012-03-09 17:27:27 -03001742 num_slabs++;
1743
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001744 free_objects += n->free_objects;
1745 spin_unlock_irqrestore(&n->list_lock, flags);
Rafael Aquini8bdec192012-03-09 17:27:27 -03001746
1747 num_slabs += active_slabs;
1748 num_objs = num_slabs * cachep->num;
1749 printk(KERN_WARNING
1750 " node %d: slabs: %ld/%ld, objs: %ld/%ld, free: %ld\n",
1751 node, active_slabs, num_slabs, active_objs, num_objs,
1752 free_objects);
1753 }
David Rientjes9a02d692014-06-04 16:06:36 -07001754#endif
Rafael Aquini8bdec192012-03-09 17:27:27 -03001755}
1756
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757/*
1758 * Interface to system's page allocator. No need to hold the cache-lock.
1759 *
1760 * If we requested dmaable memory, we will get it. Even if we
1761 * did not request dmaable memory, we might get it, but that
1762 * would be relatively rare and ignorable.
1763 */
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09001764static struct page *kmem_getpages(struct kmem_cache *cachep, gfp_t flags,
1765 int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766{
1767 struct page *page;
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001768 int nr_pages;
Christoph Lameter765c4502006-09-27 01:50:08 -07001769
Glauber Costaa618e892012-06-14 16:17:21 +04001770 flags |= cachep->allocflags;
Mel Gormane12ba742007-10-16 01:25:52 -07001771 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1772 flags |= __GFP_RECLAIMABLE;
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001773
Vladimir Davydov5dfb4172014-06-04 16:06:38 -07001774 if (memcg_charge_slab(cachep, flags, cachep->gfporder))
1775 return NULL;
1776
Linus Torvalds517d0862009-06-16 19:50:13 -07001777 page = alloc_pages_exact_node(nodeid, flags | __GFP_NOTRACK, cachep->gfporder);
Rafael Aquini8bdec192012-03-09 17:27:27 -03001778 if (!page) {
Vladimir Davydov5dfb4172014-06-04 16:06:38 -07001779 memcg_uncharge_slab(cachep, cachep->gfporder);
David Rientjes9a02d692014-06-04 16:06:36 -07001780 slab_out_of_memory(cachep, flags, nodeid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781 return NULL;
Rafael Aquini8bdec192012-03-09 17:27:27 -03001782 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783
Mel Gormanb37f1dd2012-07-31 16:44:03 -07001784 /* Record if ALLOC_NO_WATERMARKS was set when allocating the slab */
Mel Gorman072bb0a2012-07-31 16:43:58 -07001785 if (unlikely(page->pfmemalloc))
1786 pfmemalloc_active = true;
1787
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001788 nr_pages = (1 << cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
Christoph Lameter972d1a72006-09-25 23:31:51 -07001790 add_zone_page_state(page_zone(page),
1791 NR_SLAB_RECLAIMABLE, nr_pages);
1792 else
1793 add_zone_page_state(page_zone(page),
1794 NR_SLAB_UNRECLAIMABLE, nr_pages);
Joonsoo Kima57a4982013-10-24 10:07:44 +09001795 __SetPageSlab(page);
1796 if (page->pfmemalloc)
1797 SetPageSlabPfmemalloc(page);
Mel Gorman072bb0a2012-07-31 16:43:58 -07001798
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001799 if (kmemcheck_enabled && !(cachep->flags & SLAB_NOTRACK)) {
1800 kmemcheck_alloc_shadow(page, cachep->gfporder, flags, nodeid);
1801
1802 if (cachep->ctor)
1803 kmemcheck_mark_uninitialized_pages(page, nr_pages);
1804 else
1805 kmemcheck_mark_unallocated_pages(page, nr_pages);
1806 }
Pekka Enbergc175eea2008-05-09 20:35:53 +02001807
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09001808 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809}
1810
1811/*
1812 * Interface to system's page release.
1813 */
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09001814static void kmem_freepages(struct kmem_cache *cachep, struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815{
Joonsoo Kima57a4982013-10-24 10:07:44 +09001816 const unsigned long nr_freed = (1 << cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001818 kmemcheck_free_shadow(page, cachep->gfporder);
Pekka Enbergc175eea2008-05-09 20:35:53 +02001819
Christoph Lameter972d1a72006-09-25 23:31:51 -07001820 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1821 sub_zone_page_state(page_zone(page),
1822 NR_SLAB_RECLAIMABLE, nr_freed);
1823 else
1824 sub_zone_page_state(page_zone(page),
1825 NR_SLAB_UNRECLAIMABLE, nr_freed);
Joonsoo Kim73293c22013-10-24 10:07:37 +09001826
Joonsoo Kima57a4982013-10-24 10:07:44 +09001827 BUG_ON(!PageSlab(page));
Joonsoo Kim73293c22013-10-24 10:07:37 +09001828 __ClearPageSlabPfmemalloc(page);
Joonsoo Kima57a4982013-10-24 10:07:44 +09001829 __ClearPageSlab(page);
Joonsoo Kim8456a642013-10-24 10:07:49 +09001830 page_mapcount_reset(page);
1831 page->mapping = NULL;
Glauber Costa1f458cb2012-12-18 14:22:50 -08001832
Linus Torvalds1da177e2005-04-16 15:20:36 -07001833 if (current->reclaim_state)
1834 current->reclaim_state->reclaimed_slab += nr_freed;
Vladimir Davydov5dfb4172014-06-04 16:06:38 -07001835 __free_pages(page, cachep->gfporder);
1836 memcg_uncharge_slab(cachep, cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837}
1838
1839static void kmem_rcu_free(struct rcu_head *head)
1840{
Joonsoo Kim68126702013-10-24 10:07:42 +09001841 struct kmem_cache *cachep;
1842 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843
Joonsoo Kim68126702013-10-24 10:07:42 +09001844 page = container_of(head, struct page, rcu_head);
1845 cachep = page->slab_cache;
1846
1847 kmem_freepages(cachep, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848}
1849
1850#if DEBUG
1851
1852#ifdef CONFIG_DEBUG_PAGEALLOC
Pekka Enberg343e0d72006-02-01 03:05:50 -08001853static void store_stackinfo(struct kmem_cache *cachep, unsigned long *addr,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001854 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855{
Christoph Lameter8c138bc2012-06-13 10:24:58 -05001856 int size = cachep->object_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001858 addr = (unsigned long *)&((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001860 if (size < 5 * sizeof(unsigned long))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 return;
1862
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001863 *addr++ = 0x12345678;
1864 *addr++ = caller;
1865 *addr++ = smp_processor_id();
1866 size -= 3 * sizeof(unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 {
1868 unsigned long *sptr = &caller;
1869 unsigned long svalue;
1870
1871 while (!kstack_end(sptr)) {
1872 svalue = *sptr++;
1873 if (kernel_text_address(svalue)) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001874 *addr++ = svalue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875 size -= sizeof(unsigned long);
1876 if (size <= sizeof(unsigned long))
1877 break;
1878 }
1879 }
1880
1881 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001882 *addr++ = 0x87654321;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883}
1884#endif
1885
Pekka Enberg343e0d72006-02-01 03:05:50 -08001886static void poison_obj(struct kmem_cache *cachep, void *addr, unsigned char val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887{
Christoph Lameter8c138bc2012-06-13 10:24:58 -05001888 int size = cachep->object_size;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001889 addr = &((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890
1891 memset(addr, val, size);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001892 *(unsigned char *)(addr + size - 1) = POISON_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893}
1894
1895static void dump_line(char *data, int offset, int limit)
1896{
1897 int i;
Dave Jonesaa83aa42006-09-29 01:59:51 -07001898 unsigned char error = 0;
1899 int bad_count = 0;
1900
Sebastian Andrzej Siewiorfdde6ab2011-07-29 18:22:13 +02001901 printk(KERN_ERR "%03x: ", offset);
Dave Jonesaa83aa42006-09-29 01:59:51 -07001902 for (i = 0; i < limit; i++) {
1903 if (data[offset + i] != POISON_FREE) {
1904 error = data[offset + i];
1905 bad_count++;
1906 }
Dave Jonesaa83aa42006-09-29 01:59:51 -07001907 }
Sebastian Andrzej Siewiorfdde6ab2011-07-29 18:22:13 +02001908 print_hex_dump(KERN_CONT, "", 0, 16, 1,
1909 &data[offset], limit, 1);
Dave Jonesaa83aa42006-09-29 01:59:51 -07001910
1911 if (bad_count == 1) {
1912 error ^= POISON_FREE;
1913 if (!(error & (error - 1))) {
1914 printk(KERN_ERR "Single bit error detected. Probably "
1915 "bad RAM.\n");
1916#ifdef CONFIG_X86
1917 printk(KERN_ERR "Run memtest86+ or a similar memory "
1918 "test tool.\n");
1919#else
1920 printk(KERN_ERR "Run a memory test tool.\n");
1921#endif
1922 }
1923 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924}
1925#endif
1926
1927#if DEBUG
1928
Pekka Enberg343e0d72006-02-01 03:05:50 -08001929static void print_objinfo(struct kmem_cache *cachep, void *objp, int lines)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930{
1931 int i, size;
1932 char *realobj;
1933
1934 if (cachep->flags & SLAB_RED_ZONE) {
David Woodhouseb46b8f12007-05-08 00:22:59 -07001935 printk(KERN_ERR "Redzone: 0x%llx/0x%llx.\n",
Andrew Mortona737b3e2006-03-22 00:08:11 -08001936 *dbg_redzone1(cachep, objp),
1937 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 }
1939
1940 if (cachep->flags & SLAB_STORE_USER) {
Joe Perches071361d2012-12-12 10:19:12 -08001941 printk(KERN_ERR "Last user: [<%p>](%pSR)\n",
1942 *dbg_userword(cachep, objp),
1943 *dbg_userword(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 }
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001945 realobj = (char *)objp + obj_offset(cachep);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05001946 size = cachep->object_size;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001947 for (i = 0; i < size && lines; i += 16, lines--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 int limit;
1949 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001950 if (i + limit > size)
1951 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 dump_line(realobj, i, limit);
1953 }
1954}
1955
Pekka Enberg343e0d72006-02-01 03:05:50 -08001956static void check_poison_obj(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957{
1958 char *realobj;
1959 int size, i;
1960 int lines = 0;
1961
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001962 realobj = (char *)objp + obj_offset(cachep);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05001963 size = cachep->object_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001965 for (i = 0; i < size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 char exp = POISON_FREE;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001967 if (i == size - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 exp = POISON_END;
1969 if (realobj[i] != exp) {
1970 int limit;
1971 /* Mismatch ! */
1972 /* Print header */
1973 if (lines == 0) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001974 printk(KERN_ERR
Dave Jonesface37f2011-11-15 15:03:52 -08001975 "Slab corruption (%s): %s start=%p, len=%d\n",
1976 print_tainted(), cachep->name, realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 print_objinfo(cachep, objp, 0);
1978 }
1979 /* Hexdump the affected line */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001980 i = (i / 16) * 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001982 if (i + limit > size)
1983 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 dump_line(realobj, i, limit);
1985 i += 16;
1986 lines++;
1987 /* Limit to 5 lines */
1988 if (lines > 5)
1989 break;
1990 }
1991 }
1992 if (lines != 0) {
1993 /* Print some data about the neighboring objects, if they
1994 * exist:
1995 */
Joonsoo Kim8456a642013-10-24 10:07:49 +09001996 struct page *page = virt_to_head_page(objp);
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001997 unsigned int objnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998
Joonsoo Kim8456a642013-10-24 10:07:49 +09001999 objnr = obj_to_index(cachep, page, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000 if (objnr) {
Joonsoo Kim8456a642013-10-24 10:07:49 +09002001 objp = index_to_obj(cachep, page, objnr - 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002002 realobj = (char *)objp + obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 printk(KERN_ERR "Prev obj: start=%p, len=%d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002004 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 print_objinfo(cachep, objp, 2);
2006 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002007 if (objnr + 1 < cachep->num) {
Joonsoo Kim8456a642013-10-24 10:07:49 +09002008 objp = index_to_obj(cachep, page, objnr + 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002009 realobj = (char *)objp + obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 printk(KERN_ERR "Next obj: start=%p, len=%d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002011 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 print_objinfo(cachep, objp, 2);
2013 }
2014 }
2015}
2016#endif
2017
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018#if DEBUG
Joonsoo Kim8456a642013-10-24 10:07:49 +09002019static void slab_destroy_debugcheck(struct kmem_cache *cachep,
2020 struct page *page)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002021{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 int i;
2023 for (i = 0; i < cachep->num; i++) {
Joonsoo Kim8456a642013-10-24 10:07:49 +09002024 void *objp = index_to_obj(cachep, page, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025
2026 if (cachep->flags & SLAB_POISON) {
2027#ifdef CONFIG_DEBUG_PAGEALLOC
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002028 if (cachep->size % PAGE_SIZE == 0 &&
Andrew Mortona737b3e2006-03-22 00:08:11 -08002029 OFF_SLAB(cachep))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002030 kernel_map_pages(virt_to_page(objp),
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002031 cachep->size / PAGE_SIZE, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 else
2033 check_poison_obj(cachep, objp);
2034#else
2035 check_poison_obj(cachep, objp);
2036#endif
2037 }
2038 if (cachep->flags & SLAB_RED_ZONE) {
2039 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
2040 slab_error(cachep, "start of a freed object "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002041 "was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
2043 slab_error(cachep, "end of a freed object "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002044 "was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 }
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002047}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048#else
Joonsoo Kim8456a642013-10-24 10:07:49 +09002049static void slab_destroy_debugcheck(struct kmem_cache *cachep,
2050 struct page *page)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002051{
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002052}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053#endif
2054
Randy Dunlap911851e2006-03-22 00:08:14 -08002055/**
2056 * slab_destroy - destroy and release all objects in a slab
2057 * @cachep: cache pointer being destroyed
Masanari Iidacb8ee1a2014-01-28 02:57:08 +09002058 * @page: page pointer being destroyed
Randy Dunlap911851e2006-03-22 00:08:14 -08002059 *
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002060 * Destroy all the objs in a slab, and release the mem back to the system.
Andrew Mortona737b3e2006-03-22 00:08:11 -08002061 * Before calling the slab must have been unlinked from the cache. The
2062 * cache-lock is not held/needed.
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002063 */
Joonsoo Kim8456a642013-10-24 10:07:49 +09002064static void slab_destroy(struct kmem_cache *cachep, struct page *page)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002065{
Joonsoo Kim7e007352013-10-30 19:04:01 +09002066 void *freelist;
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002067
Joonsoo Kim8456a642013-10-24 10:07:49 +09002068 freelist = page->freelist;
2069 slab_destroy_debugcheck(cachep, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 if (unlikely(cachep->flags & SLAB_DESTROY_BY_RCU)) {
Joonsoo Kim68126702013-10-24 10:07:42 +09002071 struct rcu_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072
Joonsoo Kim68126702013-10-24 10:07:42 +09002073 /*
2074 * RCU free overloads the RCU head over the LRU.
2075 * slab_page has been overloeaded over the LRU,
2076 * however it is not used from now on so that
2077 * we can use it safely.
2078 */
2079 head = (void *)&page->rcu_head;
2080 call_rcu(head, kmem_rcu_free);
2081
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082 } else {
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002083 kmem_freepages(cachep, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 }
Joonsoo Kim68126702013-10-24 10:07:42 +09002085
2086 /*
Joonsoo Kim8456a642013-10-24 10:07:49 +09002087 * From now on, we don't use freelist
Joonsoo Kim68126702013-10-24 10:07:42 +09002088 * although actual page can be freed in rcu context
2089 */
2090 if (OFF_SLAB(cachep))
Joonsoo Kim8456a642013-10-24 10:07:49 +09002091 kmem_cache_free(cachep->freelist_cache, freelist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092}
2093
Joonsoo Kim97654df2014-08-06 16:04:25 -07002094static void slabs_destroy(struct kmem_cache *cachep, struct list_head *list)
2095{
2096 struct page *page, *n;
2097
2098 list_for_each_entry_safe(page, n, list, lru) {
2099 list_del(&page->lru);
2100 slab_destroy(cachep, page);
2101 }
2102}
2103
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104/**
Randy.Dunlapa70773d2006-02-01 03:05:52 -08002105 * calculate_slab_order - calculate size (page order) of slabs
2106 * @cachep: pointer to the cache that is being created
2107 * @size: size of objects to be created in this cache.
2108 * @align: required alignment for the objects.
2109 * @flags: slab allocation flags
2110 *
2111 * Also calculates the number of objects per slab.
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002112 *
2113 * This could be made much more intelligent. For now, try to avoid using
2114 * high order pages for slabs. When the gfp() functions are more friendly
2115 * towards high-order requests, this should be changed.
2116 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002117static size_t calculate_slab_order(struct kmem_cache *cachep,
Randy Dunlapee13d782006-02-01 03:05:53 -08002118 size_t size, size_t align, unsigned long flags)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002119{
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02002120 unsigned long offslab_limit;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002121 size_t left_over = 0;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002122 int gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002123
Christoph Lameter0aa817f2007-05-16 22:11:01 -07002124 for (gfporder = 0; gfporder <= KMALLOC_MAX_ORDER; gfporder++) {
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002125 unsigned int num;
2126 size_t remainder;
2127
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002128 cache_estimate(gfporder, size, align, flags, &remainder, &num);
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002129 if (!num)
2130 continue;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002131
Joonsoo Kimf315e3f2013-12-02 17:49:41 +09002132 /* Can't handle number of objects more than SLAB_OBJ_MAX_NUM */
2133 if (num > SLAB_OBJ_MAX_NUM)
2134 break;
2135
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02002136 if (flags & CFLGS_OFF_SLAB) {
Joonsoo Kim03787302014-06-23 13:22:06 -07002137 size_t freelist_size_per_obj = sizeof(freelist_idx_t);
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02002138 /*
2139 * Max number of objs-per-slab for caches which
2140 * use off-slab slabs. Needed to avoid a possible
2141 * looping condition in cache_grow().
2142 */
Joonsoo Kim03787302014-06-23 13:22:06 -07002143 if (IS_ENABLED(CONFIG_DEBUG_SLAB_LEAK))
2144 freelist_size_per_obj += sizeof(char);
Joonsoo Kim8456a642013-10-24 10:07:49 +09002145 offslab_limit = size;
Joonsoo Kim03787302014-06-23 13:22:06 -07002146 offslab_limit /= freelist_size_per_obj;
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02002147
2148 if (num > offslab_limit)
2149 break;
2150 }
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002151
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002152 /* Found something acceptable - save it away */
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002153 cachep->num = num;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002154 cachep->gfporder = gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002155 left_over = remainder;
2156
2157 /*
Linus Torvaldsf78bb8a2006-03-08 10:33:05 -08002158 * A VFS-reclaimable slab tends to have most allocations
2159 * as GFP_NOFS and we really don't want to have to be allocating
2160 * higher-order pages when we are unable to shrink dcache.
2161 */
2162 if (flags & SLAB_RECLAIM_ACCOUNT)
2163 break;
2164
2165 /*
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002166 * Large number of objects is good, but very large slabs are
2167 * currently bad for the gfp()s.
2168 */
David Rientjes543585c2011-10-18 22:09:24 -07002169 if (gfporder >= slab_max_order)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002170 break;
2171
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002172 /*
2173 * Acceptable internal fragmentation?
2174 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002175 if (left_over * 8 <= (PAGE_SIZE << gfporder))
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002176 break;
2177 }
2178 return left_over;
2179}
2180
Pekka Enberg83b519e2009-06-10 19:40:04 +03002181static int __init_refok setup_cpu_cache(struct kmem_cache *cachep, gfp_t gfp)
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002182{
Christoph Lameter97d06602012-07-06 15:25:11 -05002183 if (slab_state >= FULL)
Pekka Enberg83b519e2009-06-10 19:40:04 +03002184 return enable_cpucache(cachep, gfp);
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002185
Christoph Lameter97d06602012-07-06 15:25:11 -05002186 if (slab_state == DOWN) {
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002187 /*
Christoph Lameter2f9baa92012-11-28 16:23:09 +00002188 * Note: Creation of first cache (kmem_cache).
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002189 * The setup_node is taken care
Christoph Lameter2f9baa92012-11-28 16:23:09 +00002190 * of by the caller of __kmem_cache_create
2191 */
2192 cachep->array[smp_processor_id()] = &initarray_generic.cache;
2193 slab_state = PARTIAL;
2194 } else if (slab_state == PARTIAL) {
2195 /*
2196 * Note: the second kmem_cache_create must create the cache
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002197 * that's used by kmalloc(24), otherwise the creation of
2198 * further caches will BUG().
2199 */
2200 cachep->array[smp_processor_id()] = &initarray_generic.cache;
2201
2202 /*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002203 * If the cache that's used by kmalloc(sizeof(kmem_cache_node)) is
2204 * the second cache, then we need to set up all its node/,
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002205 * otherwise the creation of further caches will BUG().
2206 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002207 set_up_node(cachep, SIZE_AC);
2208 if (INDEX_AC == INDEX_NODE)
2209 slab_state = PARTIAL_NODE;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002210 else
Christoph Lameter97d06602012-07-06 15:25:11 -05002211 slab_state = PARTIAL_ARRAYCACHE;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002212 } else {
Christoph Lameter2f9baa92012-11-28 16:23:09 +00002213 /* Remaining boot caches */
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002214 cachep->array[smp_processor_id()] =
Pekka Enberg83b519e2009-06-10 19:40:04 +03002215 kmalloc(sizeof(struct arraycache_init), gfp);
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002216
Christoph Lameter97d06602012-07-06 15:25:11 -05002217 if (slab_state == PARTIAL_ARRAYCACHE) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002218 set_up_node(cachep, SIZE_NODE);
2219 slab_state = PARTIAL_NODE;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002220 } else {
2221 int node;
Pekka Enberg556a1692008-01-25 08:20:51 +02002222 for_each_online_node(node) {
Christoph Lameter6a673682013-01-10 19:14:19 +00002223 cachep->node[node] =
Christoph Lameter6744f082013-01-10 19:12:17 +00002224 kmalloc_node(sizeof(struct kmem_cache_node),
Pekka Enbergeb91f1d2009-06-12 14:56:09 +03002225 gfp, node);
Christoph Lameter6a673682013-01-10 19:14:19 +00002226 BUG_ON(!cachep->node[node]);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002227 kmem_cache_node_init(cachep->node[node]);
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002228 }
2229 }
2230 }
Christoph Lameter6a673682013-01-10 19:14:19 +00002231 cachep->node[numa_mem_id()]->next_reap =
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08002232 jiffies + REAPTIMEOUT_NODE +
2233 ((unsigned long)cachep) % REAPTIMEOUT_NODE;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002234
2235 cpu_cache_get(cachep)->avail = 0;
2236 cpu_cache_get(cachep)->limit = BOOT_CPUCACHE_ENTRIES;
2237 cpu_cache_get(cachep)->batchcount = 1;
2238 cpu_cache_get(cachep)->touched = 0;
2239 cachep->batchcount = 1;
2240 cachep->limit = BOOT_CPUCACHE_ENTRIES;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002241 return 0;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002242}
2243
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002244/**
Christoph Lameter039363f2012-07-06 15:25:10 -05002245 * __kmem_cache_create - Create a cache.
Randy Dunlapa755b762012-11-06 17:10:10 -08002246 * @cachep: cache management descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 * @flags: SLAB flags
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 *
2249 * Returns a ptr to the cache on success, NULL on failure.
2250 * Cannot be called within a int, but can be interrupted.
Paul Mundt20c2df82007-07-20 10:11:58 +09002251 * The @ctor is run when new pages are allocated by the cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253 * The flags are
2254 *
2255 * %SLAB_POISON - Poison the slab with a known test pattern (a5a5a5a5)
2256 * to catch references to uninitialised memory.
2257 *
2258 * %SLAB_RED_ZONE - Insert `Red' zones around the allocated memory to check
2259 * for buffer overruns.
2260 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 * %SLAB_HWCACHE_ALIGN - Align the objects in this cache to a hardware
2262 * cacheline. This can be beneficial if you're counting cycles as closely
2263 * as davem.
2264 */
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002265int
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002266__kmem_cache_create (struct kmem_cache *cachep, unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267{
Joonsoo Kim8456a642013-10-24 10:07:49 +09002268 size_t left_over, freelist_size, ralign;
Pekka Enberg83b519e2009-06-10 19:40:04 +03002269 gfp_t gfp;
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002270 int err;
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002271 size_t size = cachep->size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273#if DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274#if FORCED_DEBUG
2275 /*
2276 * Enable redzoning and last user accounting, except for caches with
2277 * large objects, if the increased size would increase the object size
2278 * above the next power of two: caches with object sizes just above a
2279 * power of two have a significant amount of internal fragmentation.
2280 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002281 if (size < 4096 || fls(size - 1) == fls(size-1 + REDZONE_ALIGN +
2282 2 * sizeof(unsigned long long)))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002283 flags |= SLAB_RED_ZONE | SLAB_STORE_USER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 if (!(flags & SLAB_DESTROY_BY_RCU))
2285 flags |= SLAB_POISON;
2286#endif
2287 if (flags & SLAB_DESTROY_BY_RCU)
2288 BUG_ON(flags & SLAB_POISON);
2289#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290
Andrew Mortona737b3e2006-03-22 00:08:11 -08002291 /*
2292 * Check that size is in terms of words. This is needed to avoid
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 * unaligned accesses for some archs when redzoning is used, and makes
2294 * sure any on-slab bufctl's are also correctly aligned.
2295 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002296 if (size & (BYTES_PER_WORD - 1)) {
2297 size += (BYTES_PER_WORD - 1);
2298 size &= ~(BYTES_PER_WORD - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 }
2300
Pekka Enbergca5f9702006-09-25 23:31:25 -07002301 /*
David Woodhouse87a927c2007-07-04 21:26:44 -04002302 * Redzoning and user store require word alignment or possibly larger.
2303 * Note this will be overridden by architecture or caller mandated
2304 * alignment if either is greater than BYTES_PER_WORD.
Pekka Enbergca5f9702006-09-25 23:31:25 -07002305 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002306 if (flags & SLAB_STORE_USER)
2307 ralign = BYTES_PER_WORD;
2308
2309 if (flags & SLAB_RED_ZONE) {
2310 ralign = REDZONE_ALIGN;
2311 /* If redzoning, ensure that the second redzone is suitably
2312 * aligned, by adjusting the object size accordingly. */
2313 size += REDZONE_ALIGN - 1;
2314 size &= ~(REDZONE_ALIGN - 1);
2315 }
Pekka Enbergca5f9702006-09-25 23:31:25 -07002316
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002317 /* 3) caller mandated alignment */
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002318 if (ralign < cachep->align) {
2319 ralign = cachep->align;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002320 }
Pekka Enberg3ff84a72011-02-14 17:46:21 +02002321 /* disable debug if necessary */
2322 if (ralign > __alignof__(unsigned long long))
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002323 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002324 /*
Pekka Enbergca5f9702006-09-25 23:31:25 -07002325 * 4) Store it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 */
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002327 cachep->align = ralign;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328
Pekka Enberg83b519e2009-06-10 19:40:04 +03002329 if (slab_is_available())
2330 gfp = GFP_KERNEL;
2331 else
2332 gfp = GFP_NOWAIT;
2333
Christoph Lameter6a673682013-01-10 19:14:19 +00002334 setup_node_pointer(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335#if DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336
Pekka Enbergca5f9702006-09-25 23:31:25 -07002337 /*
2338 * Both debugging options require word-alignment which is calculated
2339 * into align above.
2340 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 if (flags & SLAB_RED_ZONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342 /* add space for red zone words */
Pekka Enberg3ff84a72011-02-14 17:46:21 +02002343 cachep->obj_offset += sizeof(unsigned long long);
2344 size += 2 * sizeof(unsigned long long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345 }
2346 if (flags & SLAB_STORE_USER) {
Pekka Enbergca5f9702006-09-25 23:31:25 -07002347 /* user store requires one word storage behind the end of
David Woodhouse87a927c2007-07-04 21:26:44 -04002348 * the real object. But if the second red zone needs to be
2349 * aligned to 64 bits, we must allow that much space.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002351 if (flags & SLAB_RED_ZONE)
2352 size += REDZONE_ALIGN;
2353 else
2354 size += BYTES_PER_WORD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355 }
2356#if FORCED_DEBUG && defined(CONFIG_DEBUG_PAGEALLOC)
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002357 if (size >= kmalloc_size(INDEX_NODE + 1)
Tetsuo Handa608da7e2012-09-30 17:28:25 +09002358 && cachep->object_size > cache_line_size()
2359 && ALIGN(size, cachep->align) < PAGE_SIZE) {
2360 cachep->obj_offset += PAGE_SIZE - ALIGN(size, cachep->align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002361 size = PAGE_SIZE;
2362 }
2363#endif
2364#endif
2365
Ingo Molnare0a42722006-06-23 02:03:46 -07002366 /*
2367 * Determine if the slab management is 'on' or 'off' slab.
2368 * (bootstrapping cannot cope with offslab caches so don't do
Catalin Marinase7cb55b2009-10-28 13:33:08 +00002369 * it too early on. Always use on-slab management when
2370 * SLAB_NOLEAKTRACE to avoid recursive calls into kmemleak)
Ingo Molnare0a42722006-06-23 02:03:46 -07002371 */
Joonsoo Kim8fc9cf42013-12-02 17:49:43 +09002372 if ((size >= (PAGE_SIZE >> 5)) && !slab_early_init &&
Catalin Marinase7cb55b2009-10-28 13:33:08 +00002373 !(flags & SLAB_NOLEAKTRACE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 /*
2375 * Size is large, assume best to place the slab management obj
2376 * off-slab (should allow better packing of objs).
2377 */
2378 flags |= CFLGS_OFF_SLAB;
2379
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002380 size = ALIGN(size, cachep->align);
Joonsoo Kimf315e3f2013-12-02 17:49:41 +09002381 /*
2382 * We should restrict the number of objects in a slab to implement
2383 * byte sized index. Refer comment on SLAB_OBJ_MIN_SIZE definition.
2384 */
2385 if (FREELIST_BYTE_INDEX && size < SLAB_OBJ_MIN_SIZE)
2386 size = ALIGN(SLAB_OBJ_MIN_SIZE, cachep->align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002388 left_over = calculate_slab_order(cachep, size, cachep->align, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002390 if (!cachep->num)
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002391 return -E2BIG;
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002392
Joonsoo Kim03787302014-06-23 13:22:06 -07002393 freelist_size = calculate_freelist_size(cachep->num, cachep->align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002394
2395 /*
2396 * If the slab has been placed off-slab, and we have enough space then
2397 * move it on-slab. This is at the expense of any extra colouring.
2398 */
Joonsoo Kim8456a642013-10-24 10:07:49 +09002399 if (flags & CFLGS_OFF_SLAB && left_over >= freelist_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 flags &= ~CFLGS_OFF_SLAB;
Joonsoo Kim8456a642013-10-24 10:07:49 +09002401 left_over -= freelist_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 }
2403
2404 if (flags & CFLGS_OFF_SLAB) {
2405 /* really off slab. No need for manual alignment */
Joonsoo Kim03787302014-06-23 13:22:06 -07002406 freelist_size = calculate_freelist_size(cachep->num, 0);
Ron Lee67461362009-05-22 04:58:22 +09302407
2408#ifdef CONFIG_PAGE_POISONING
2409 /* If we're going to use the generic kernel_map_pages()
2410 * poisoning, then it's going to smash the contents of
2411 * the redzone and userword anyhow, so switch them off.
2412 */
2413 if (size % PAGE_SIZE == 0 && flags & SLAB_POISON)
2414 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
2415#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 }
2417
2418 cachep->colour_off = cache_line_size();
2419 /* Offset must be a multiple of the alignment. */
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002420 if (cachep->colour_off < cachep->align)
2421 cachep->colour_off = cachep->align;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002422 cachep->colour = left_over / cachep->colour_off;
Joonsoo Kim8456a642013-10-24 10:07:49 +09002423 cachep->freelist_size = freelist_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 cachep->flags = flags;
Joonsoo Kima57a4982013-10-24 10:07:44 +09002425 cachep->allocflags = __GFP_COMP;
Christoph Lameter4b51d662007-02-10 01:43:10 -08002426 if (CONFIG_ZONE_DMA_FLAG && (flags & SLAB_CACHE_DMA))
Glauber Costaa618e892012-06-14 16:17:21 +04002427 cachep->allocflags |= GFP_DMA;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002428 cachep->size = size;
Eric Dumazet6a2d7a92006-12-13 00:34:27 -08002429 cachep->reciprocal_buffer_size = reciprocal_value(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002431 if (flags & CFLGS_OFF_SLAB) {
Joonsoo Kim8456a642013-10-24 10:07:49 +09002432 cachep->freelist_cache = kmalloc_slab(freelist_size, 0u);
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002433 /*
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08002434 * This is a possibility for one of the kmalloc_{dma,}_caches.
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002435 * But since we go off slab only for object size greater than
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08002436 * PAGE_SIZE/8, and kmalloc_{dma,}_caches get created
2437 * in ascending order,this should not happen at all.
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002438 * But leave a BUG_ON for some lucky dude.
2439 */
Joonsoo Kim8456a642013-10-24 10:07:49 +09002440 BUG_ON(ZERO_OR_NULL_PTR(cachep->freelist_cache));
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002441 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002443 err = setup_cpu_cache(cachep, gfp);
2444 if (err) {
Christoph Lameter12c36672012-09-04 23:38:33 +00002445 __kmem_cache_shutdown(cachep);
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002446 return err;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002447 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448
Peter Zijlstra83835b32011-07-22 15:26:05 +02002449 if (flags & SLAB_DEBUG_OBJECTS) {
2450 /*
2451 * Would deadlock through slab_destroy()->call_rcu()->
2452 * debug_object_activate()->kmem_cache_alloc().
2453 */
2454 WARN_ON_ONCE(flags & SLAB_DESTROY_BY_RCU);
2455
2456 slab_set_debugobj_lock_classes(cachep);
Glauber Costa6ccfb5b2012-12-18 14:22:31 -08002457 } else if (!OFF_SLAB(cachep) && !(flags & SLAB_DESTROY_BY_RCU))
2458 on_slab_lock_classes(cachep);
Peter Zijlstra83835b32011-07-22 15:26:05 +02002459
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002460 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462
2463#if DEBUG
2464static void check_irq_off(void)
2465{
2466 BUG_ON(!irqs_disabled());
2467}
2468
2469static void check_irq_on(void)
2470{
2471 BUG_ON(irqs_disabled());
2472}
2473
Pekka Enberg343e0d72006-02-01 03:05:50 -08002474static void check_spinlock_acquired(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475{
2476#ifdef CONFIG_SMP
2477 check_irq_off();
Christoph Lameter18bf8542014-08-06 16:04:11 -07002478 assert_spin_locked(&get_node(cachep, numa_mem_id())->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479#endif
2480}
Christoph Lametere498be72005-09-09 13:03:32 -07002481
Pekka Enberg343e0d72006-02-01 03:05:50 -08002482static void check_spinlock_acquired_node(struct kmem_cache *cachep, int node)
Christoph Lametere498be72005-09-09 13:03:32 -07002483{
2484#ifdef CONFIG_SMP
2485 check_irq_off();
Christoph Lameter18bf8542014-08-06 16:04:11 -07002486 assert_spin_locked(&get_node(cachep, node)->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07002487#endif
2488}
2489
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490#else
2491#define check_irq_off() do { } while(0)
2492#define check_irq_on() do { } while(0)
2493#define check_spinlock_acquired(x) do { } while(0)
Christoph Lametere498be72005-09-09 13:03:32 -07002494#define check_spinlock_acquired_node(x, y) do { } while(0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495#endif
2496
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002497static void drain_array(struct kmem_cache *cachep, struct kmem_cache_node *n,
Christoph Lameteraab22072006-03-22 00:09:06 -08002498 struct array_cache *ac,
2499 int force, int node);
2500
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501static void do_drain(void *arg)
2502{
Andrew Mortona737b3e2006-03-22 00:08:11 -08002503 struct kmem_cache *cachep = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002504 struct array_cache *ac;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07002505 int node = numa_mem_id();
Christoph Lameter18bf8542014-08-06 16:04:11 -07002506 struct kmem_cache_node *n;
Joonsoo Kim97654df2014-08-06 16:04:25 -07002507 LIST_HEAD(list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508
2509 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002510 ac = cpu_cache_get(cachep);
Christoph Lameter18bf8542014-08-06 16:04:11 -07002511 n = get_node(cachep, node);
2512 spin_lock(&n->list_lock);
Joonsoo Kim97654df2014-08-06 16:04:25 -07002513 free_block(cachep, ac->entry, ac->avail, node, &list);
Christoph Lameter18bf8542014-08-06 16:04:11 -07002514 spin_unlock(&n->list_lock);
Joonsoo Kim97654df2014-08-06 16:04:25 -07002515 slabs_destroy(cachep, &list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516 ac->avail = 0;
2517}
2518
Pekka Enberg343e0d72006-02-01 03:05:50 -08002519static void drain_cpu_caches(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520{
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002521 struct kmem_cache_node *n;
Christoph Lametere498be72005-09-09 13:03:32 -07002522 int node;
2523
Jens Axboe15c8b6c2008-05-09 09:39:44 +02002524 on_each_cpu(do_drain, cachep, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525 check_irq_on();
Christoph Lameter18bf8542014-08-06 16:04:11 -07002526 for_each_kmem_cache_node(cachep, node, n)
2527 if (n->alien)
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002528 drain_alien_cache(cachep, n->alien);
Roland Dreiera4523a82006-05-15 11:41:00 -07002529
Christoph Lameter18bf8542014-08-06 16:04:11 -07002530 for_each_kmem_cache_node(cachep, node, n)
2531 drain_array(cachep, n, n->shared, 1, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532}
2533
Christoph Lametered11d9e2006-06-30 01:55:45 -07002534/*
2535 * Remove slabs from the list of free slabs.
2536 * Specify the number of slabs to drain in tofree.
2537 *
2538 * Returns the actual number of slabs released.
2539 */
2540static int drain_freelist(struct kmem_cache *cache,
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002541 struct kmem_cache_node *n, int tofree)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542{
Christoph Lametered11d9e2006-06-30 01:55:45 -07002543 struct list_head *p;
2544 int nr_freed;
Joonsoo Kim8456a642013-10-24 10:07:49 +09002545 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546
Christoph Lametered11d9e2006-06-30 01:55:45 -07002547 nr_freed = 0;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002548 while (nr_freed < tofree && !list_empty(&n->slabs_free)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002550 spin_lock_irq(&n->list_lock);
2551 p = n->slabs_free.prev;
2552 if (p == &n->slabs_free) {
2553 spin_unlock_irq(&n->list_lock);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002554 goto out;
2555 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556
Joonsoo Kim8456a642013-10-24 10:07:49 +09002557 page = list_entry(p, struct page, lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558#if DEBUG
Joonsoo Kim8456a642013-10-24 10:07:49 +09002559 BUG_ON(page->active);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560#endif
Joonsoo Kim8456a642013-10-24 10:07:49 +09002561 list_del(&page->lru);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002562 /*
2563 * Safe to drop the lock. The slab is no longer linked
2564 * to the cache.
2565 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002566 n->free_objects -= cache->num;
2567 spin_unlock_irq(&n->list_lock);
Joonsoo Kim8456a642013-10-24 10:07:49 +09002568 slab_destroy(cache, page);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002569 nr_freed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570 }
Christoph Lametered11d9e2006-06-30 01:55:45 -07002571out:
2572 return nr_freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573}
2574
Vladimir Davydov03afc0e2014-06-04 16:07:20 -07002575int __kmem_cache_shrink(struct kmem_cache *cachep)
Christoph Lametere498be72005-09-09 13:03:32 -07002576{
Christoph Lameter18bf8542014-08-06 16:04:11 -07002577 int ret = 0;
2578 int node;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002579 struct kmem_cache_node *n;
Christoph Lametere498be72005-09-09 13:03:32 -07002580
2581 drain_cpu_caches(cachep);
2582
2583 check_irq_on();
Christoph Lameter18bf8542014-08-06 16:04:11 -07002584 for_each_kmem_cache_node(cachep, node, n) {
Wanpeng Li0fa81032013-07-04 08:33:22 +08002585 drain_freelist(cachep, n, slabs_tofree(cachep, n));
Christoph Lametered11d9e2006-06-30 01:55:45 -07002586
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002587 ret += !list_empty(&n->slabs_full) ||
2588 !list_empty(&n->slabs_partial);
Christoph Lametere498be72005-09-09 13:03:32 -07002589 }
2590 return (ret ? 1 : 0);
2591}
2592
Christoph Lameter945cf2b2012-09-04 23:18:33 +00002593int __kmem_cache_shutdown(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594{
Christoph Lameter12c36672012-09-04 23:38:33 +00002595 int i;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002596 struct kmem_cache_node *n;
Vladimir Davydov03afc0e2014-06-04 16:07:20 -07002597 int rc = __kmem_cache_shrink(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598
Christoph Lameter12c36672012-09-04 23:38:33 +00002599 if (rc)
2600 return rc;
2601
2602 for_each_online_cpu(i)
2603 kfree(cachep->array[i]);
2604
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002605 /* NUMA: free the node structures */
Christoph Lameter18bf8542014-08-06 16:04:11 -07002606 for_each_kmem_cache_node(cachep, i, n) {
2607 kfree(n->shared);
2608 free_alien_cache(n->alien);
2609 kfree(n);
2610 cachep->node[i] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611 }
Christoph Lameter12c36672012-09-04 23:38:33 +00002612 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002615/*
2616 * Get the memory for a slab management obj.
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08002617 *
2618 * For a slab cache when the slab descriptor is off-slab, the
2619 * slab descriptor can't come from the same cache which is being created,
2620 * Because if it is the case, that means we defer the creation of
2621 * the kmalloc_{dma,}_cache of size sizeof(slab descriptor) to this point.
2622 * And we eventually call down to __kmem_cache_create(), which
2623 * in turn looks up in the kmalloc_{dma,}_caches for the disired-size one.
2624 * This is a "chicken-and-egg" problem.
2625 *
2626 * So the off-slab slab descriptor shall come from the kmalloc_{dma,}_caches,
2627 * which are all initialized during kmem_cache_init().
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002628 */
Joonsoo Kim7e007352013-10-30 19:04:01 +09002629static void *alloc_slabmgmt(struct kmem_cache *cachep,
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002630 struct page *page, int colour_off,
2631 gfp_t local_flags, int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632{
Joonsoo Kim7e007352013-10-30 19:04:01 +09002633 void *freelist;
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002634 void *addr = page_address(page);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002635
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636 if (OFF_SLAB(cachep)) {
2637 /* Slab management obj is off-slab. */
Joonsoo Kim8456a642013-10-24 10:07:49 +09002638 freelist = kmem_cache_alloc_node(cachep->freelist_cache,
Pekka Enberg8759ec52008-11-26 10:01:31 +02002639 local_flags, nodeid);
Joonsoo Kim8456a642013-10-24 10:07:49 +09002640 if (!freelist)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641 return NULL;
2642 } else {
Joonsoo Kim8456a642013-10-24 10:07:49 +09002643 freelist = addr + colour_off;
2644 colour_off += cachep->freelist_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 }
Joonsoo Kim8456a642013-10-24 10:07:49 +09002646 page->active = 0;
2647 page->s_mem = addr + colour_off;
2648 return freelist;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649}
2650
Joonsoo Kim7cc689732014-04-18 16:24:09 +09002651static inline freelist_idx_t get_free_obj(struct page *page, unsigned int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652{
Joonsoo Kima41adfa2013-12-02 17:49:42 +09002653 return ((freelist_idx_t *)page->freelist)[idx];
Joonsoo Kime5c58df2013-12-02 17:49:40 +09002654}
2655
2656static inline void set_free_obj(struct page *page,
Joonsoo Kim7cc689732014-04-18 16:24:09 +09002657 unsigned int idx, freelist_idx_t val)
Joonsoo Kime5c58df2013-12-02 17:49:40 +09002658{
Joonsoo Kima41adfa2013-12-02 17:49:42 +09002659 ((freelist_idx_t *)(page->freelist))[idx] = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660}
2661
Pekka Enberg343e0d72006-02-01 03:05:50 -08002662static void cache_init_objs(struct kmem_cache *cachep,
Joonsoo Kim8456a642013-10-24 10:07:49 +09002663 struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664{
2665 int i;
2666
2667 for (i = 0; i < cachep->num; i++) {
Joonsoo Kim8456a642013-10-24 10:07:49 +09002668 void *objp = index_to_obj(cachep, page, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669#if DEBUG
2670 /* need to poison the objs? */
2671 if (cachep->flags & SLAB_POISON)
2672 poison_obj(cachep, objp, POISON_FREE);
2673 if (cachep->flags & SLAB_STORE_USER)
2674 *dbg_userword(cachep, objp) = NULL;
2675
2676 if (cachep->flags & SLAB_RED_ZONE) {
2677 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2678 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2679 }
2680 /*
Andrew Mortona737b3e2006-03-22 00:08:11 -08002681 * Constructors are not allowed to allocate memory from the same
2682 * cache which they are a constructor for. Otherwise, deadlock.
2683 * They must also be threaded.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684 */
2685 if (cachep->ctor && !(cachep->flags & SLAB_POISON))
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002686 cachep->ctor(objp + obj_offset(cachep));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687
2688 if (cachep->flags & SLAB_RED_ZONE) {
2689 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
2690 slab_error(cachep, "constructor overwrote the"
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002691 " end of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
2693 slab_error(cachep, "constructor overwrote the"
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002694 " start of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695 }
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002696 if ((cachep->size % PAGE_SIZE) == 0 &&
Andrew Mortona737b3e2006-03-22 00:08:11 -08002697 OFF_SLAB(cachep) && cachep->flags & SLAB_POISON)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002698 kernel_map_pages(virt_to_page(objp),
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002699 cachep->size / PAGE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700#else
2701 if (cachep->ctor)
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002702 cachep->ctor(objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703#endif
Joonsoo Kim03787302014-06-23 13:22:06 -07002704 set_obj_status(page, i, OBJECT_FREE);
Joonsoo Kime5c58df2013-12-02 17:49:40 +09002705 set_free_obj(page, i, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707}
2708
Pekka Enberg343e0d72006-02-01 03:05:50 -08002709static void kmem_flagcheck(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710{
Christoph Lameter4b51d662007-02-10 01:43:10 -08002711 if (CONFIG_ZONE_DMA_FLAG) {
2712 if (flags & GFP_DMA)
Glauber Costaa618e892012-06-14 16:17:21 +04002713 BUG_ON(!(cachep->allocflags & GFP_DMA));
Christoph Lameter4b51d662007-02-10 01:43:10 -08002714 else
Glauber Costaa618e892012-06-14 16:17:21 +04002715 BUG_ON(cachep->allocflags & GFP_DMA);
Christoph Lameter4b51d662007-02-10 01:43:10 -08002716 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717}
2718
Joonsoo Kim8456a642013-10-24 10:07:49 +09002719static void *slab_get_obj(struct kmem_cache *cachep, struct page *page,
Andrew Mortona737b3e2006-03-22 00:08:11 -08002720 int nodeid)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002721{
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09002722 void *objp;
Matthew Dobson78d382d2006-02-01 03:05:47 -08002723
Joonsoo Kime5c58df2013-12-02 17:49:40 +09002724 objp = index_to_obj(cachep, page, get_free_obj(page, page->active));
Joonsoo Kim8456a642013-10-24 10:07:49 +09002725 page->active++;
Matthew Dobson78d382d2006-02-01 03:05:47 -08002726#if DEBUG
Joonsoo Kim1ea991b2013-10-24 10:07:40 +09002727 WARN_ON(page_to_nid(virt_to_page(objp)) != nodeid);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002728#endif
Matthew Dobson78d382d2006-02-01 03:05:47 -08002729
2730 return objp;
2731}
2732
Joonsoo Kim8456a642013-10-24 10:07:49 +09002733static void slab_put_obj(struct kmem_cache *cachep, struct page *page,
Andrew Mortona737b3e2006-03-22 00:08:11 -08002734 void *objp, int nodeid)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002735{
Joonsoo Kim8456a642013-10-24 10:07:49 +09002736 unsigned int objnr = obj_to_index(cachep, page, objp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002737#if DEBUG
Joonsoo Kim16025172013-10-24 10:07:46 +09002738 unsigned int i;
Matthew Dobson78d382d2006-02-01 03:05:47 -08002739
Matthew Dobson78d382d2006-02-01 03:05:47 -08002740 /* Verify that the slab belongs to the intended node */
Joonsoo Kim1ea991b2013-10-24 10:07:40 +09002741 WARN_ON(page_to_nid(virt_to_page(objp)) != nodeid);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002742
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09002743 /* Verify double free bug */
Joonsoo Kim8456a642013-10-24 10:07:49 +09002744 for (i = page->active; i < cachep->num; i++) {
Joonsoo Kime5c58df2013-12-02 17:49:40 +09002745 if (get_free_obj(page, i) == objnr) {
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09002746 printk(KERN_ERR "slab: double free detected in cache "
2747 "'%s', objp %p\n", cachep->name, objp);
2748 BUG();
2749 }
Matthew Dobson78d382d2006-02-01 03:05:47 -08002750 }
2751#endif
Joonsoo Kim8456a642013-10-24 10:07:49 +09002752 page->active--;
Joonsoo Kime5c58df2013-12-02 17:49:40 +09002753 set_free_obj(page, page->active, objnr);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002754}
2755
Pekka Enberg47768742006-06-23 02:03:07 -07002756/*
2757 * Map pages beginning at addr to the given cache and slab. This is required
2758 * for the slab allocator to be able to lookup the cache and slab of a
Nick Pigginccd35fb2011-01-07 17:49:17 +11002759 * virtual address for kfree, ksize, and slab debugging.
Pekka Enberg47768742006-06-23 02:03:07 -07002760 */
Joonsoo Kim8456a642013-10-24 10:07:49 +09002761static void slab_map_pages(struct kmem_cache *cache, struct page *page,
Joonsoo Kim7e007352013-10-30 19:04:01 +09002762 void *freelist)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763{
Joonsoo Kima57a4982013-10-24 10:07:44 +09002764 page->slab_cache = cache;
Joonsoo Kim8456a642013-10-24 10:07:49 +09002765 page->freelist = freelist;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766}
2767
2768/*
2769 * Grow (by 1) the number of slabs within a cache. This is called by
2770 * kmem_cache_alloc() when there are no active objs left in a cache.
2771 */
Christoph Lameter3c517a62006-12-06 20:33:29 -08002772static int cache_grow(struct kmem_cache *cachep,
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002773 gfp_t flags, int nodeid, struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774{
Joonsoo Kim7e007352013-10-30 19:04:01 +09002775 void *freelist;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002776 size_t offset;
2777 gfp_t local_flags;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002778 struct kmem_cache_node *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779
Andrew Mortona737b3e2006-03-22 00:08:11 -08002780 /*
2781 * Be lazy and only check for valid flags here, keeping it out of the
2782 * critical path in kmem_cache_alloc().
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783 */
Christoph Lameter6cb06222007-10-16 01:25:41 -07002784 BUG_ON(flags & GFP_SLAB_BUG_MASK);
2785 local_flags = flags & (GFP_CONSTRAINT_MASK|GFP_RECLAIM_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002787 /* Take the node list lock to change the colour_next on this node */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 check_irq_off();
Christoph Lameter18bf8542014-08-06 16:04:11 -07002789 n = get_node(cachep, nodeid);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002790 spin_lock(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791
2792 /* Get colour for the slab, and cal the next value. */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002793 offset = n->colour_next;
2794 n->colour_next++;
2795 if (n->colour_next >= cachep->colour)
2796 n->colour_next = 0;
2797 spin_unlock(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002799 offset *= cachep->colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800
2801 if (local_flags & __GFP_WAIT)
2802 local_irq_enable();
2803
2804 /*
2805 * The test for missing atomic flag is performed here, rather than
2806 * the more obvious place, simply to reduce the critical path length
2807 * in kmem_cache_alloc(). If a caller is seriously mis-behaving they
2808 * will eventually be caught here (where it matters).
2809 */
2810 kmem_flagcheck(cachep, flags);
2811
Andrew Mortona737b3e2006-03-22 00:08:11 -08002812 /*
2813 * Get mem for the objs. Attempt to allocate a physical page from
2814 * 'nodeid'.
Christoph Lametere498be72005-09-09 13:03:32 -07002815 */
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002816 if (!page)
2817 page = kmem_getpages(cachep, local_flags, nodeid);
2818 if (!page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819 goto failed;
2820
2821 /* Get slab management. */
Joonsoo Kim8456a642013-10-24 10:07:49 +09002822 freelist = alloc_slabmgmt(cachep, page, offset,
Christoph Lameter6cb06222007-10-16 01:25:41 -07002823 local_flags & ~GFP_CONSTRAINT_MASK, nodeid);
Joonsoo Kim8456a642013-10-24 10:07:49 +09002824 if (!freelist)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825 goto opps1;
2826
Joonsoo Kim8456a642013-10-24 10:07:49 +09002827 slab_map_pages(cachep, page, freelist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828
Joonsoo Kim8456a642013-10-24 10:07:49 +09002829 cache_init_objs(cachep, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830
2831 if (local_flags & __GFP_WAIT)
2832 local_irq_disable();
2833 check_irq_off();
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002834 spin_lock(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835
2836 /* Make slab active. */
Joonsoo Kim8456a642013-10-24 10:07:49 +09002837 list_add_tail(&page->lru, &(n->slabs_free));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838 STATS_INC_GROWN(cachep);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002839 n->free_objects += cachep->num;
2840 spin_unlock(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002841 return 1;
Andrew Mortona737b3e2006-03-22 00:08:11 -08002842opps1:
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002843 kmem_freepages(cachep, page);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002844failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845 if (local_flags & __GFP_WAIT)
2846 local_irq_disable();
2847 return 0;
2848}
2849
2850#if DEBUG
2851
2852/*
2853 * Perform extra freeing checks:
2854 * - detect bad pointers.
2855 * - POISON/RED_ZONE checking
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856 */
2857static void kfree_debugcheck(const void *objp)
2858{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002859 if (!virt_addr_valid(objp)) {
2860 printk(KERN_ERR "kfree_debugcheck: out of range ptr %lxh.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002861 (unsigned long)objp);
2862 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002864}
2865
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002866static inline void verify_redzone_free(struct kmem_cache *cache, void *obj)
2867{
David Woodhouseb46b8f12007-05-08 00:22:59 -07002868 unsigned long long redzone1, redzone2;
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002869
2870 redzone1 = *dbg_redzone1(cache, obj);
2871 redzone2 = *dbg_redzone2(cache, obj);
2872
2873 /*
2874 * Redzone is ok.
2875 */
2876 if (redzone1 == RED_ACTIVE && redzone2 == RED_ACTIVE)
2877 return;
2878
2879 if (redzone1 == RED_INACTIVE && redzone2 == RED_INACTIVE)
2880 slab_error(cache, "double free detected");
2881 else
2882 slab_error(cache, "memory outside object was overwritten");
2883
David Woodhouseb46b8f12007-05-08 00:22:59 -07002884 printk(KERN_ERR "%p: redzone 1:0x%llx, redzone 2:0x%llx.\n",
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002885 obj, redzone1, redzone2);
2886}
2887
Pekka Enberg343e0d72006-02-01 03:05:50 -08002888static void *cache_free_debugcheck(struct kmem_cache *cachep, void *objp,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03002889 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891 unsigned int objnr;
Joonsoo Kim8456a642013-10-24 10:07:49 +09002892 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893
Matthew Wilcox80cbd912007-11-29 12:05:13 -07002894 BUG_ON(virt_to_cache(objp) != cachep);
2895
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002896 objp -= obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897 kfree_debugcheck(objp);
Christoph Lameterb49af682007-05-06 14:49:41 -07002898 page = virt_to_head_page(objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899
Linus Torvalds1da177e2005-04-16 15:20:36 -07002900 if (cachep->flags & SLAB_RED_ZONE) {
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002901 verify_redzone_free(cachep, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2903 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2904 }
2905 if (cachep->flags & SLAB_STORE_USER)
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03002906 *dbg_userword(cachep, objp) = (void *)caller;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907
Joonsoo Kim8456a642013-10-24 10:07:49 +09002908 objnr = obj_to_index(cachep, page, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909
2910 BUG_ON(objnr >= cachep->num);
Joonsoo Kim8456a642013-10-24 10:07:49 +09002911 BUG_ON(objp != index_to_obj(cachep, page, objnr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912
Joonsoo Kim03787302014-06-23 13:22:06 -07002913 set_obj_status(page, objnr, OBJECT_FREE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914 if (cachep->flags & SLAB_POISON) {
2915#ifdef CONFIG_DEBUG_PAGEALLOC
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002916 if ((cachep->size % PAGE_SIZE)==0 && OFF_SLAB(cachep)) {
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03002917 store_stackinfo(cachep, objp, caller);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002918 kernel_map_pages(virt_to_page(objp),
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002919 cachep->size / PAGE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920 } else {
2921 poison_obj(cachep, objp, POISON_FREE);
2922 }
2923#else
2924 poison_obj(cachep, objp, POISON_FREE);
2925#endif
2926 }
2927 return objp;
2928}
2929
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930#else
2931#define kfree_debugcheck(x) do { } while(0)
2932#define cache_free_debugcheck(x,objp,z) (objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933#endif
2934
Mel Gorman072bb0a2012-07-31 16:43:58 -07002935static void *cache_alloc_refill(struct kmem_cache *cachep, gfp_t flags,
2936 bool force_refill)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937{
2938 int batchcount;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002939 struct kmem_cache_node *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940 struct array_cache *ac;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07002941 int node;
2942
Joe Korty6d2144d2008-03-05 15:04:59 -08002943 check_irq_off();
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07002944 node = numa_mem_id();
Mel Gorman072bb0a2012-07-31 16:43:58 -07002945 if (unlikely(force_refill))
2946 goto force_grow;
2947retry:
Joe Korty6d2144d2008-03-05 15:04:59 -08002948 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949 batchcount = ac->batchcount;
2950 if (!ac->touched && batchcount > BATCHREFILL_LIMIT) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002951 /*
2952 * If there was little recent activity on this cache, then
2953 * perform only a partial refill. Otherwise we could generate
2954 * refill bouncing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955 */
2956 batchcount = BATCHREFILL_LIMIT;
2957 }
Christoph Lameter18bf8542014-08-06 16:04:11 -07002958 n = get_node(cachep, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002960 BUG_ON(ac->avail > 0 || !n);
2961 spin_lock(&n->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07002962
Christoph Lameter3ded1752006-03-25 03:06:44 -08002963 /* See if we can refill from the shared array */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002964 if (n->shared && transfer_objects(ac, n->shared, batchcount)) {
2965 n->shared->touched = 1;
Christoph Lameter3ded1752006-03-25 03:06:44 -08002966 goto alloc_done;
Nick Piggin44b57f12010-01-27 22:27:40 +11002967 }
Christoph Lameter3ded1752006-03-25 03:06:44 -08002968
Linus Torvalds1da177e2005-04-16 15:20:36 -07002969 while (batchcount > 0) {
2970 struct list_head *entry;
Joonsoo Kim8456a642013-10-24 10:07:49 +09002971 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972 /* Get slab alloc is to come from. */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002973 entry = n->slabs_partial.next;
2974 if (entry == &n->slabs_partial) {
2975 n->free_touched = 1;
2976 entry = n->slabs_free.next;
2977 if (entry == &n->slabs_free)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978 goto must_grow;
2979 }
2980
Joonsoo Kim8456a642013-10-24 10:07:49 +09002981 page = list_entry(entry, struct page, lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982 check_spinlock_acquired(cachep);
Pekka Enberg714b81712007-05-06 14:49:03 -07002983
2984 /*
2985 * The slab was either on partial or free list so
2986 * there must be at least one object available for
2987 * allocation.
2988 */
Joonsoo Kim8456a642013-10-24 10:07:49 +09002989 BUG_ON(page->active >= cachep->num);
Pekka Enberg714b81712007-05-06 14:49:03 -07002990
Joonsoo Kim8456a642013-10-24 10:07:49 +09002991 while (page->active < cachep->num && batchcount--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992 STATS_INC_ALLOCED(cachep);
2993 STATS_INC_ACTIVE(cachep);
2994 STATS_SET_HIGH(cachep);
2995
Joonsoo Kim8456a642013-10-24 10:07:49 +09002996 ac_put_obj(cachep, ac, slab_get_obj(cachep, page,
Mel Gorman072bb0a2012-07-31 16:43:58 -07002997 node));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002998 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002999
3000 /* move slabp to correct slabp list: */
Joonsoo Kim8456a642013-10-24 10:07:49 +09003001 list_del(&page->lru);
3002 if (page->active == cachep->num)
Dave Hansen34bf6ef2014-04-08 13:44:27 -07003003 list_add(&page->lru, &n->slabs_full);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004 else
Dave Hansen34bf6ef2014-04-08 13:44:27 -07003005 list_add(&page->lru, &n->slabs_partial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003006 }
3007
Andrew Mortona737b3e2006-03-22 00:08:11 -08003008must_grow:
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003009 n->free_objects -= ac->avail;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003010alloc_done:
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003011 spin_unlock(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012
3013 if (unlikely(!ac->avail)) {
3014 int x;
Mel Gorman072bb0a2012-07-31 16:43:58 -07003015force_grow:
Christoph Lameter3c517a62006-12-06 20:33:29 -08003016 x = cache_grow(cachep, flags | GFP_THISNODE, node, NULL);
Christoph Lametere498be72005-09-09 13:03:32 -07003017
Andrew Mortona737b3e2006-03-22 00:08:11 -08003018 /* cache_grow can reenable interrupts, then ac could change. */
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003019 ac = cpu_cache_get(cachep);
David Rientjes51cd8e62012-08-28 19:57:21 -07003020 node = numa_mem_id();
Mel Gorman072bb0a2012-07-31 16:43:58 -07003021
3022 /* no objects in sight? abort */
3023 if (!x && (ac->avail == 0 || force_refill))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024 return NULL;
3025
Andrew Mortona737b3e2006-03-22 00:08:11 -08003026 if (!ac->avail) /* objects refilled by interrupt? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027 goto retry;
3028 }
3029 ac->touched = 1;
Mel Gorman072bb0a2012-07-31 16:43:58 -07003030
3031 return ac_get_obj(cachep, ac, flags, force_refill);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032}
3033
Andrew Mortona737b3e2006-03-22 00:08:11 -08003034static inline void cache_alloc_debugcheck_before(struct kmem_cache *cachep,
3035 gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036{
3037 might_sleep_if(flags & __GFP_WAIT);
3038#if DEBUG
3039 kmem_flagcheck(cachep, flags);
3040#endif
3041}
3042
3043#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08003044static void *cache_alloc_debugcheck_after(struct kmem_cache *cachep,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003045 gfp_t flags, void *objp, unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046{
Joonsoo Kim03787302014-06-23 13:22:06 -07003047 struct page *page;
3048
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003049 if (!objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050 return objp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003051 if (cachep->flags & SLAB_POISON) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052#ifdef CONFIG_DEBUG_PAGEALLOC
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003053 if ((cachep->size % PAGE_SIZE) == 0 && OFF_SLAB(cachep))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003054 kernel_map_pages(virt_to_page(objp),
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003055 cachep->size / PAGE_SIZE, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056 else
3057 check_poison_obj(cachep, objp);
3058#else
3059 check_poison_obj(cachep, objp);
3060#endif
3061 poison_obj(cachep, objp, POISON_INUSE);
3062 }
3063 if (cachep->flags & SLAB_STORE_USER)
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003064 *dbg_userword(cachep, objp) = (void *)caller;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003065
3066 if (cachep->flags & SLAB_RED_ZONE) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08003067 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE ||
3068 *dbg_redzone2(cachep, objp) != RED_INACTIVE) {
3069 slab_error(cachep, "double free, or memory outside"
3070 " object was overwritten");
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003071 printk(KERN_ERR
David Woodhouseb46b8f12007-05-08 00:22:59 -07003072 "%p: redzone 1:0x%llx, redzone 2:0x%llx\n",
Andrew Mortona737b3e2006-03-22 00:08:11 -08003073 objp, *dbg_redzone1(cachep, objp),
3074 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003075 }
3076 *dbg_redzone1(cachep, objp) = RED_ACTIVE;
3077 *dbg_redzone2(cachep, objp) = RED_ACTIVE;
3078 }
Joonsoo Kim03787302014-06-23 13:22:06 -07003079
3080 page = virt_to_head_page(objp);
3081 set_obj_status(page, obj_to_index(cachep, page, objp), OBJECT_ACTIVE);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003082 objp += obj_offset(cachep);
Christoph Lameter4f104932007-05-06 14:50:17 -07003083 if (cachep->ctor && cachep->flags & SLAB_POISON)
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07003084 cachep->ctor(objp);
Tetsuo Handa7ea466f2011-07-21 09:42:45 +09003085 if (ARCH_SLAB_MINALIGN &&
3086 ((unsigned long)objp & (ARCH_SLAB_MINALIGN-1))) {
Kevin Hilmana44b56d2006-12-06 20:32:11 -08003087 printk(KERN_ERR "0x%p: not aligned to ARCH_SLAB_MINALIGN=%d\n",
Hugh Dickinsc2251502011-07-11 13:35:08 -07003088 objp, (int)ARCH_SLAB_MINALIGN);
Kevin Hilmana44b56d2006-12-06 20:32:11 -08003089 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090 return objp;
3091}
3092#else
3093#define cache_alloc_debugcheck_after(a,b,objp,d) (objp)
3094#endif
3095
Akinobu Mita773ff602008-12-23 19:37:01 +09003096static bool slab_should_failslab(struct kmem_cache *cachep, gfp_t flags)
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003097{
Joonsoo Kim8a9c61d2014-08-06 16:04:20 -07003098 if (unlikely(cachep == kmem_cache))
Akinobu Mita773ff602008-12-23 19:37:01 +09003099 return false;
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003100
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003101 return should_failslab(cachep->object_size, flags, cachep->flags);
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003102}
3103
Pekka Enberg343e0d72006-02-01 03:05:50 -08003104static inline void *____cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003106 void *objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107 struct array_cache *ac;
Mel Gorman072bb0a2012-07-31 16:43:58 -07003108 bool force_refill = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003109
Alok N Kataria5c382302005-09-27 21:45:46 -07003110 check_irq_off();
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003111
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003112 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113 if (likely(ac->avail)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114 ac->touched = 1;
Mel Gorman072bb0a2012-07-31 16:43:58 -07003115 objp = ac_get_obj(cachep, ac, flags, false);
3116
J. R. Okajimaddbf2e82009-12-02 16:55:50 +09003117 /*
Mel Gorman072bb0a2012-07-31 16:43:58 -07003118 * Allow for the possibility all avail objects are not allowed
3119 * by the current flags
J. R. Okajimaddbf2e82009-12-02 16:55:50 +09003120 */
Mel Gorman072bb0a2012-07-31 16:43:58 -07003121 if (objp) {
3122 STATS_INC_ALLOCHIT(cachep);
3123 goto out;
3124 }
3125 force_refill = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003126 }
Mel Gorman072bb0a2012-07-31 16:43:58 -07003127
3128 STATS_INC_ALLOCMISS(cachep);
3129 objp = cache_alloc_refill(cachep, flags, force_refill);
3130 /*
3131 * the 'ac' may be updated by cache_alloc_refill(),
3132 * and kmemleak_erase() requires its correct value.
3133 */
3134 ac = cpu_cache_get(cachep);
3135
3136out:
Catalin Marinasd5cff632009-06-11 13:22:40 +01003137 /*
3138 * To avoid a false negative, if an object that is in one of the
3139 * per-CPU caches is leaked, we need to make sure kmemleak doesn't
3140 * treat the array pointers as a reference to the object.
3141 */
J. R. Okajimaf3d8b532009-12-02 16:55:49 +09003142 if (objp)
3143 kmemleak_erase(&ac->entry[ac->avail]);
Alok N Kataria5c382302005-09-27 21:45:46 -07003144 return objp;
3145}
3146
Christoph Lametere498be72005-09-09 13:03:32 -07003147#ifdef CONFIG_NUMA
3148/*
David Rientjesf0432d12014-04-07 15:37:30 -07003149 * Try allocating on another node if PF_SPREAD_SLAB is a mempolicy is set.
Paul Jacksonc61afb12006-03-24 03:16:08 -08003150 *
3151 * If we are in_interrupt, then process context, including cpusets and
3152 * mempolicy, may not apply and should not be used for allocation policy.
3153 */
3154static void *alternate_node_alloc(struct kmem_cache *cachep, gfp_t flags)
3155{
3156 int nid_alloc, nid_here;
3157
Christoph Lameter765c4502006-09-27 01:50:08 -07003158 if (in_interrupt() || (flags & __GFP_THISNODE))
Paul Jacksonc61afb12006-03-24 03:16:08 -08003159 return NULL;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003160 nid_alloc = nid_here = numa_mem_id();
Paul Jacksonc61afb12006-03-24 03:16:08 -08003161 if (cpuset_do_slab_mem_spread() && (cachep->flags & SLAB_MEM_SPREAD))
Jack Steiner6adef3e2010-05-26 14:42:49 -07003162 nid_alloc = cpuset_slab_spread_node();
Paul Jacksonc61afb12006-03-24 03:16:08 -08003163 else if (current->mempolicy)
David Rientjes2a389612014-04-07 15:37:29 -07003164 nid_alloc = mempolicy_slab_node();
Paul Jacksonc61afb12006-03-24 03:16:08 -08003165 if (nid_alloc != nid_here)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003166 return ____cache_alloc_node(cachep, flags, nid_alloc);
Paul Jacksonc61afb12006-03-24 03:16:08 -08003167 return NULL;
3168}
3169
3170/*
Christoph Lameter765c4502006-09-27 01:50:08 -07003171 * Fallback function if there was no memory available and no objects on a
Christoph Lameter3c517a62006-12-06 20:33:29 -08003172 * certain node and fall back is permitted. First we scan all the
Christoph Lameter6a673682013-01-10 19:14:19 +00003173 * available node for available objects. If that fails then we
Christoph Lameter3c517a62006-12-06 20:33:29 -08003174 * perform an allocation without specifying a node. This allows the page
3175 * allocator to do its reclaim / fallback magic. We then insert the
3176 * slab into the proper nodelist and then allocate from it.
Christoph Lameter765c4502006-09-27 01:50:08 -07003177 */
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003178static void *fallback_alloc(struct kmem_cache *cache, gfp_t flags)
Christoph Lameter765c4502006-09-27 01:50:08 -07003179{
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003180 struct zonelist *zonelist;
3181 gfp_t local_flags;
Mel Gormandd1a2392008-04-28 02:12:17 -07003182 struct zoneref *z;
Mel Gorman54a6eb52008-04-28 02:12:16 -07003183 struct zone *zone;
3184 enum zone_type high_zoneidx = gfp_zone(flags);
Christoph Lameter765c4502006-09-27 01:50:08 -07003185 void *obj = NULL;
Christoph Lameter3c517a62006-12-06 20:33:29 -08003186 int nid;
Mel Gormancc9a6c82012-03-21 16:34:11 -07003187 unsigned int cpuset_mems_cookie;
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003188
3189 if (flags & __GFP_THISNODE)
3190 return NULL;
3191
Christoph Lameter6cb06222007-10-16 01:25:41 -07003192 local_flags = flags & (GFP_CONSTRAINT_MASK|GFP_RECLAIM_MASK);
Christoph Lameter765c4502006-09-27 01:50:08 -07003193
Mel Gormancc9a6c82012-03-21 16:34:11 -07003194retry_cpuset:
Mel Gormand26914d2014-04-03 14:47:24 -07003195 cpuset_mems_cookie = read_mems_allowed_begin();
David Rientjes2a389612014-04-07 15:37:29 -07003196 zonelist = node_zonelist(mempolicy_slab_node(), flags);
Mel Gormancc9a6c82012-03-21 16:34:11 -07003197
Christoph Lameter3c517a62006-12-06 20:33:29 -08003198retry:
3199 /*
3200 * Look through allowed nodes for objects available
3201 * from existing per node queues.
3202 */
Mel Gorman54a6eb52008-04-28 02:12:16 -07003203 for_each_zone_zonelist(zone, z, zonelist, high_zoneidx) {
3204 nid = zone_to_nid(zone);
Christoph Lameteraedb0eb2006-10-21 10:24:16 -07003205
Mel Gorman54a6eb52008-04-28 02:12:16 -07003206 if (cpuset_zone_allowed_hardwall(zone, flags) &&
Christoph Lameter18bf8542014-08-06 16:04:11 -07003207 get_node(cache, nid) &&
3208 get_node(cache, nid)->free_objects) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003209 obj = ____cache_alloc_node(cache,
3210 flags | GFP_THISNODE, nid);
Christoph Lameter481c5342008-06-21 16:46:35 -07003211 if (obj)
3212 break;
3213 }
Christoph Lameter3c517a62006-12-06 20:33:29 -08003214 }
3215
Christoph Lametercfce6602007-05-06 14:50:17 -07003216 if (!obj) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003217 /*
3218 * This allocation will be performed within the constraints
3219 * of the current cpuset / memory policy requirements.
3220 * We may trigger various forms of reclaim on the allowed
3221 * set and go into memory reserves if necessary.
3222 */
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09003223 struct page *page;
3224
Christoph Lameterdd47ea72006-12-13 00:34:11 -08003225 if (local_flags & __GFP_WAIT)
3226 local_irq_enable();
3227 kmem_flagcheck(cache, flags);
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09003228 page = kmem_getpages(cache, local_flags, numa_mem_id());
Christoph Lameterdd47ea72006-12-13 00:34:11 -08003229 if (local_flags & __GFP_WAIT)
3230 local_irq_disable();
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09003231 if (page) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003232 /*
3233 * Insert into the appropriate per node queues
3234 */
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09003235 nid = page_to_nid(page);
3236 if (cache_grow(cache, flags, nid, page)) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003237 obj = ____cache_alloc_node(cache,
3238 flags | GFP_THISNODE, nid);
3239 if (!obj)
3240 /*
3241 * Another processor may allocate the
3242 * objects in the slab since we are
3243 * not holding any locks.
3244 */
3245 goto retry;
3246 } else {
Hugh Dickinsb6a60452007-01-05 16:36:36 -08003247 /* cache_grow already freed obj */
Christoph Lameter3c517a62006-12-06 20:33:29 -08003248 obj = NULL;
3249 }
3250 }
Christoph Lameteraedb0eb2006-10-21 10:24:16 -07003251 }
Mel Gormancc9a6c82012-03-21 16:34:11 -07003252
Mel Gormand26914d2014-04-03 14:47:24 -07003253 if (unlikely(!obj && read_mems_allowed_retry(cpuset_mems_cookie)))
Mel Gormancc9a6c82012-03-21 16:34:11 -07003254 goto retry_cpuset;
Christoph Lameter765c4502006-09-27 01:50:08 -07003255 return obj;
3256}
3257
3258/*
Christoph Lametere498be72005-09-09 13:03:32 -07003259 * A interface to enable slab creation on nodeid
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260 */
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003261static void *____cache_alloc_node(struct kmem_cache *cachep, gfp_t flags,
Andrew Mortona737b3e2006-03-22 00:08:11 -08003262 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07003263{
3264 struct list_head *entry;
Joonsoo Kim8456a642013-10-24 10:07:49 +09003265 struct page *page;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003266 struct kmem_cache_node *n;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003267 void *obj;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003268 int x;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003269
Aaron Tomlin14e50c62013-04-26 16:15:34 +01003270 VM_BUG_ON(nodeid > num_online_nodes());
Christoph Lameter18bf8542014-08-06 16:04:11 -07003271 n = get_node(cachep, nodeid);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003272 BUG_ON(!n);
Christoph Lametere498be72005-09-09 13:03:32 -07003273
Andrew Mortona737b3e2006-03-22 00:08:11 -08003274retry:
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08003275 check_irq_off();
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003276 spin_lock(&n->list_lock);
3277 entry = n->slabs_partial.next;
3278 if (entry == &n->slabs_partial) {
3279 n->free_touched = 1;
3280 entry = n->slabs_free.next;
3281 if (entry == &n->slabs_free)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003282 goto must_grow;
3283 }
Christoph Lametere498be72005-09-09 13:03:32 -07003284
Joonsoo Kim8456a642013-10-24 10:07:49 +09003285 page = list_entry(entry, struct page, lru);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003286 check_spinlock_acquired_node(cachep, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07003287
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003288 STATS_INC_NODEALLOCS(cachep);
3289 STATS_INC_ACTIVE(cachep);
3290 STATS_SET_HIGH(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003291
Joonsoo Kim8456a642013-10-24 10:07:49 +09003292 BUG_ON(page->active == cachep->num);
Christoph Lametere498be72005-09-09 13:03:32 -07003293
Joonsoo Kim8456a642013-10-24 10:07:49 +09003294 obj = slab_get_obj(cachep, page, nodeid);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003295 n->free_objects--;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003296 /* move slabp to correct slabp list: */
Joonsoo Kim8456a642013-10-24 10:07:49 +09003297 list_del(&page->lru);
Christoph Lametere498be72005-09-09 13:03:32 -07003298
Joonsoo Kim8456a642013-10-24 10:07:49 +09003299 if (page->active == cachep->num)
3300 list_add(&page->lru, &n->slabs_full);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003301 else
Joonsoo Kim8456a642013-10-24 10:07:49 +09003302 list_add(&page->lru, &n->slabs_partial);
Christoph Lametere498be72005-09-09 13:03:32 -07003303
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003304 spin_unlock(&n->list_lock);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003305 goto done;
Christoph Lametere498be72005-09-09 13:03:32 -07003306
Andrew Mortona737b3e2006-03-22 00:08:11 -08003307must_grow:
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003308 spin_unlock(&n->list_lock);
Christoph Lameter3c517a62006-12-06 20:33:29 -08003309 x = cache_grow(cachep, flags | GFP_THISNODE, nodeid, NULL);
Christoph Lameter765c4502006-09-27 01:50:08 -07003310 if (x)
3311 goto retry;
Christoph Lametere498be72005-09-09 13:03:32 -07003312
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003313 return fallback_alloc(cachep, flags);
Christoph Lameter765c4502006-09-27 01:50:08 -07003314
Andrew Mortona737b3e2006-03-22 00:08:11 -08003315done:
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003316 return obj;
Christoph Lametere498be72005-09-09 13:03:32 -07003317}
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003318
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003319static __always_inline void *
Ezequiel Garcia48356302012-09-08 17:47:57 -03003320slab_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003321 unsigned long caller)
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003322{
3323 unsigned long save_flags;
3324 void *ptr;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003325 int slab_node = numa_mem_id();
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003326
Benjamin Herrenschmidtdcce2842009-06-18 13:24:12 +10003327 flags &= gfp_allowed_mask;
Pekka Enberg7e85ee02009-06-12 14:03:06 +03003328
Nick Piggincf40bd12009-01-21 08:12:39 +01003329 lockdep_trace_alloc(flags);
3330
Akinobu Mita773ff602008-12-23 19:37:01 +09003331 if (slab_should_failslab(cachep, flags))
Akinobu Mita824ebef2007-05-06 14:49:58 -07003332 return NULL;
3333
Glauber Costad79923f2012-12-18 14:22:48 -08003334 cachep = memcg_kmem_get_cache(cachep, flags);
3335
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003336 cache_alloc_debugcheck_before(cachep, flags);
3337 local_irq_save(save_flags);
3338
Andrew Mortoneacbbae2011-07-28 13:59:49 -07003339 if (nodeid == NUMA_NO_NODE)
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003340 nodeid = slab_node;
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003341
Christoph Lameter18bf8542014-08-06 16:04:11 -07003342 if (unlikely(!get_node(cachep, nodeid))) {
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003343 /* Node not bootstrapped yet */
3344 ptr = fallback_alloc(cachep, flags);
3345 goto out;
3346 }
3347
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003348 if (nodeid == slab_node) {
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003349 /*
3350 * Use the locally cached objects if possible.
3351 * However ____cache_alloc does not allow fallback
3352 * to other nodes. It may fail while we still have
3353 * objects on other nodes available.
3354 */
3355 ptr = ____cache_alloc(cachep, flags);
3356 if (ptr)
3357 goto out;
3358 }
3359 /* ___cache_alloc_node can fall back to other nodes */
3360 ptr = ____cache_alloc_node(cachep, flags, nodeid);
3361 out:
3362 local_irq_restore(save_flags);
3363 ptr = cache_alloc_debugcheck_after(cachep, flags, ptr, caller);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003364 kmemleak_alloc_recursive(ptr, cachep->object_size, 1, cachep->flags,
Catalin Marinasd5cff632009-06-11 13:22:40 +01003365 flags);
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003366
Joe Perches5087c822013-09-10 17:02:51 -07003367 if (likely(ptr)) {
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003368 kmemcheck_slab_alloc(cachep, flags, ptr, cachep->object_size);
Joe Perches5087c822013-09-10 17:02:51 -07003369 if (unlikely(flags & __GFP_ZERO))
3370 memset(ptr, 0, cachep->object_size);
3371 }
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003372
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003373 return ptr;
3374}
3375
3376static __always_inline void *
3377__do_cache_alloc(struct kmem_cache *cache, gfp_t flags)
3378{
3379 void *objp;
3380
David Rientjesf0432d12014-04-07 15:37:30 -07003381 if (current->mempolicy || unlikely(current->flags & PF_SPREAD_SLAB)) {
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003382 objp = alternate_node_alloc(cache, flags);
3383 if (objp)
3384 goto out;
3385 }
3386 objp = ____cache_alloc(cache, flags);
3387
3388 /*
3389 * We may just have run out of memory on the local node.
3390 * ____cache_alloc_node() knows how to locate memory on other nodes
3391 */
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003392 if (!objp)
3393 objp = ____cache_alloc_node(cache, flags, numa_mem_id());
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003394
3395 out:
3396 return objp;
3397}
3398#else
3399
3400static __always_inline void *
3401__do_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
3402{
3403 return ____cache_alloc(cachep, flags);
3404}
3405
3406#endif /* CONFIG_NUMA */
3407
3408static __always_inline void *
Ezequiel Garcia48356302012-09-08 17:47:57 -03003409slab_alloc(struct kmem_cache *cachep, gfp_t flags, unsigned long caller)
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003410{
3411 unsigned long save_flags;
3412 void *objp;
3413
Benjamin Herrenschmidtdcce2842009-06-18 13:24:12 +10003414 flags &= gfp_allowed_mask;
Pekka Enberg7e85ee02009-06-12 14:03:06 +03003415
Nick Piggincf40bd12009-01-21 08:12:39 +01003416 lockdep_trace_alloc(flags);
3417
Akinobu Mita773ff602008-12-23 19:37:01 +09003418 if (slab_should_failslab(cachep, flags))
Akinobu Mita824ebef2007-05-06 14:49:58 -07003419 return NULL;
3420
Glauber Costad79923f2012-12-18 14:22:48 -08003421 cachep = memcg_kmem_get_cache(cachep, flags);
3422
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003423 cache_alloc_debugcheck_before(cachep, flags);
3424 local_irq_save(save_flags);
3425 objp = __do_cache_alloc(cachep, flags);
3426 local_irq_restore(save_flags);
3427 objp = cache_alloc_debugcheck_after(cachep, flags, objp, caller);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003428 kmemleak_alloc_recursive(objp, cachep->object_size, 1, cachep->flags,
Catalin Marinasd5cff632009-06-11 13:22:40 +01003429 flags);
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003430 prefetchw(objp);
3431
Joe Perches5087c822013-09-10 17:02:51 -07003432 if (likely(objp)) {
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003433 kmemcheck_slab_alloc(cachep, flags, objp, cachep->object_size);
Joe Perches5087c822013-09-10 17:02:51 -07003434 if (unlikely(flags & __GFP_ZERO))
3435 memset(objp, 0, cachep->object_size);
3436 }
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003437
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003438 return objp;
3439}
Christoph Lametere498be72005-09-09 13:03:32 -07003440
3441/*
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08003442 * Caller needs to acquire correct kmem_cache_node's list_lock
Joonsoo Kim97654df2014-08-06 16:04:25 -07003443 * @list: List of detached free slabs should be freed by caller
Christoph Lametere498be72005-09-09 13:03:32 -07003444 */
Joonsoo Kim97654df2014-08-06 16:04:25 -07003445static void free_block(struct kmem_cache *cachep, void **objpp,
3446 int nr_objects, int node, struct list_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447{
3448 int i;
Joonsoo Kim25c063f2014-08-06 16:04:22 -07003449 struct kmem_cache_node *n = get_node(cachep, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003450
3451 for (i = 0; i < nr_objects; i++) {
Mel Gorman072bb0a2012-07-31 16:43:58 -07003452 void *objp;
Joonsoo Kim8456a642013-10-24 10:07:49 +09003453 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003454
Mel Gorman072bb0a2012-07-31 16:43:58 -07003455 clear_obj_pfmemalloc(&objpp[i]);
3456 objp = objpp[i];
3457
Joonsoo Kim8456a642013-10-24 10:07:49 +09003458 page = virt_to_head_page(objp);
Joonsoo Kim8456a642013-10-24 10:07:49 +09003459 list_del(&page->lru);
Christoph Lameterff694162005-09-22 21:44:02 -07003460 check_spinlock_acquired_node(cachep, node);
Joonsoo Kim8456a642013-10-24 10:07:49 +09003461 slab_put_obj(cachep, page, objp, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003462 STATS_DEC_ACTIVE(cachep);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003463 n->free_objects++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003464
3465 /* fixup slab chains */
Joonsoo Kim8456a642013-10-24 10:07:49 +09003466 if (page->active == 0) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003467 if (n->free_objects > n->free_limit) {
3468 n->free_objects -= cachep->num;
Joonsoo Kim97654df2014-08-06 16:04:25 -07003469 list_add_tail(&page->lru, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003470 } else {
Joonsoo Kim8456a642013-10-24 10:07:49 +09003471 list_add(&page->lru, &n->slabs_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472 }
3473 } else {
3474 /* Unconditionally move a slab to the end of the
3475 * partial list on free - maximum time for the
3476 * other objects to be freed, too.
3477 */
Joonsoo Kim8456a642013-10-24 10:07:49 +09003478 list_add_tail(&page->lru, &n->slabs_partial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479 }
3480 }
3481}
3482
Pekka Enberg343e0d72006-02-01 03:05:50 -08003483static void cache_flusharray(struct kmem_cache *cachep, struct array_cache *ac)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003484{
3485 int batchcount;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003486 struct kmem_cache_node *n;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003487 int node = numa_mem_id();
Joonsoo Kim97654df2014-08-06 16:04:25 -07003488 LIST_HEAD(list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489
3490 batchcount = ac->batchcount;
3491#if DEBUG
3492 BUG_ON(!batchcount || batchcount > ac->avail);
3493#endif
3494 check_irq_off();
Christoph Lameter18bf8542014-08-06 16:04:11 -07003495 n = get_node(cachep, node);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003496 spin_lock(&n->list_lock);
3497 if (n->shared) {
3498 struct array_cache *shared_array = n->shared;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003499 int max = shared_array->limit - shared_array->avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500 if (max) {
3501 if (batchcount > max)
3502 batchcount = max;
Christoph Lametere498be72005-09-09 13:03:32 -07003503 memcpy(&(shared_array->entry[shared_array->avail]),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003504 ac->entry, sizeof(void *) * batchcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505 shared_array->avail += batchcount;
3506 goto free_done;
3507 }
3508 }
3509
Joonsoo Kim97654df2014-08-06 16:04:25 -07003510 free_block(cachep, ac->entry, batchcount, node, &list);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003511free_done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512#if STATS
3513 {
3514 int i = 0;
3515 struct list_head *p;
3516
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003517 p = n->slabs_free.next;
3518 while (p != &(n->slabs_free)) {
Joonsoo Kim8456a642013-10-24 10:07:49 +09003519 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520
Joonsoo Kim8456a642013-10-24 10:07:49 +09003521 page = list_entry(p, struct page, lru);
3522 BUG_ON(page->active);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003523
3524 i++;
3525 p = p->next;
3526 }
3527 STATS_SET_FREEABLE(cachep, i);
3528 }
3529#endif
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003530 spin_unlock(&n->list_lock);
Joonsoo Kim97654df2014-08-06 16:04:25 -07003531 slabs_destroy(cachep, &list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003532 ac->avail -= batchcount;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003533 memmove(ac->entry, &(ac->entry[batchcount]), sizeof(void *)*ac->avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003534}
3535
3536/*
Andrew Mortona737b3e2006-03-22 00:08:11 -08003537 * Release an obj back to its cache. If the obj has a constructed state, it must
3538 * be in this state _before_ it is released. Called with disabled ints.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003539 */
Suleiman Souhlala947eb92011-06-02 00:16:42 -07003540static inline void __cache_free(struct kmem_cache *cachep, void *objp,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003541 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542{
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003543 struct array_cache *ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544
3545 check_irq_off();
Catalin Marinasd5cff632009-06-11 13:22:40 +01003546 kmemleak_free_recursive(objp, cachep->flags);
Suleiman Souhlala947eb92011-06-02 00:16:42 -07003547 objp = cache_free_debugcheck(cachep, objp, caller);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003548
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003549 kmemcheck_slab_free(cachep, objp, cachep->object_size);
Pekka Enbergc175eea2008-05-09 20:35:53 +02003550
Siddha, Suresh B1807a1a2007-08-22 14:01:49 -07003551 /*
3552 * Skip calling cache_free_alien() when the platform is not numa.
3553 * This will avoid cache misses that happen while accessing slabp (which
3554 * is per page memory reference) to get nodeid. Instead use a global
3555 * variable to skip the call, which is mostly likely to be present in
3556 * the cache.
3557 */
Mel Gormanb6e68bc2009-06-16 15:32:16 -07003558 if (nr_online_nodes > 1 && cache_free_alien(cachep, objp))
Pekka Enberg729bd0b2006-06-23 02:03:05 -07003559 return;
Christoph Lametere498be72005-09-09 13:03:32 -07003560
Linus Torvalds1da177e2005-04-16 15:20:36 -07003561 if (likely(ac->avail < ac->limit)) {
3562 STATS_INC_FREEHIT(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563 } else {
3564 STATS_INC_FREEMISS(cachep);
3565 cache_flusharray(cachep, ac);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003566 }
Zhao Jin42c8c992011-08-27 00:26:17 +08003567
Mel Gorman072bb0a2012-07-31 16:43:58 -07003568 ac_put_obj(cachep, ac, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003569}
3570
3571/**
3572 * kmem_cache_alloc - Allocate an object
3573 * @cachep: The cache to allocate from.
3574 * @flags: See kmalloc().
3575 *
3576 * Allocate an object from this cache. The flags are only relevant
3577 * if the cache has no available objects.
3578 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003579void *kmem_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003580{
Ezequiel Garcia48356302012-09-08 17:47:57 -03003581 void *ret = slab_alloc(cachep, flags, _RET_IP_);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003582
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003583 trace_kmem_cache_alloc(_RET_IP_, ret,
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003584 cachep->object_size, cachep->size, flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003585
3586 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003587}
3588EXPORT_SYMBOL(kmem_cache_alloc);
3589
Li Zefan0f24f122009-12-11 15:45:30 +08003590#ifdef CONFIG_TRACING
Steven Rostedt85beb582010-11-24 16:23:34 -05003591void *
Ezequiel Garcia40521472012-09-08 17:47:56 -03003592kmem_cache_alloc_trace(struct kmem_cache *cachep, gfp_t flags, size_t size)
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003593{
Steven Rostedt85beb582010-11-24 16:23:34 -05003594 void *ret;
3595
Ezequiel Garcia48356302012-09-08 17:47:57 -03003596 ret = slab_alloc(cachep, flags, _RET_IP_);
Steven Rostedt85beb582010-11-24 16:23:34 -05003597
3598 trace_kmalloc(_RET_IP_, ret,
Ezequiel Garciaff4fcd02012-09-08 17:47:52 -03003599 size, cachep->size, flags);
Steven Rostedt85beb582010-11-24 16:23:34 -05003600 return ret;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003601}
Steven Rostedt85beb582010-11-24 16:23:34 -05003602EXPORT_SYMBOL(kmem_cache_alloc_trace);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003603#endif
3604
Linus Torvalds1da177e2005-04-16 15:20:36 -07003605#ifdef CONFIG_NUMA
Zhouping Liud0d04b72013-05-16 11:36:23 +08003606/**
3607 * kmem_cache_alloc_node - Allocate an object on the specified node
3608 * @cachep: The cache to allocate from.
3609 * @flags: See kmalloc().
3610 * @nodeid: node number of the target node.
3611 *
3612 * Identical to kmem_cache_alloc but it will allocate memory on the given
3613 * node, which can improve the performance for cpu bound structures.
3614 *
3615 * Fallback to other node is possible if __GFP_THISNODE is not set.
3616 */
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003617void *kmem_cache_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid)
3618{
Ezequiel Garcia48356302012-09-08 17:47:57 -03003619 void *ret = slab_alloc_node(cachep, flags, nodeid, _RET_IP_);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003620
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003621 trace_kmem_cache_alloc_node(_RET_IP_, ret,
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003622 cachep->object_size, cachep->size,
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003623 flags, nodeid);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003624
3625 return ret;
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003626}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627EXPORT_SYMBOL(kmem_cache_alloc_node);
3628
Li Zefan0f24f122009-12-11 15:45:30 +08003629#ifdef CONFIG_TRACING
Ezequiel Garcia40521472012-09-08 17:47:56 -03003630void *kmem_cache_alloc_node_trace(struct kmem_cache *cachep,
Steven Rostedt85beb582010-11-24 16:23:34 -05003631 gfp_t flags,
Ezequiel Garcia40521472012-09-08 17:47:56 -03003632 int nodeid,
3633 size_t size)
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003634{
Steven Rostedt85beb582010-11-24 16:23:34 -05003635 void *ret;
3636
Ezequiel Garcia592f4142012-09-25 08:07:08 -03003637 ret = slab_alloc_node(cachep, flags, nodeid, _RET_IP_);
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003638
Steven Rostedt85beb582010-11-24 16:23:34 -05003639 trace_kmalloc_node(_RET_IP_, ret,
Ezequiel Garciaff4fcd02012-09-08 17:47:52 -03003640 size, cachep->size,
Steven Rostedt85beb582010-11-24 16:23:34 -05003641 flags, nodeid);
3642 return ret;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003643}
Steven Rostedt85beb582010-11-24 16:23:34 -05003644EXPORT_SYMBOL(kmem_cache_alloc_node_trace);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003645#endif
3646
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003647static __always_inline void *
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003648__do_kmalloc_node(size_t size, gfp_t flags, int node, unsigned long caller)
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003649{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003650 struct kmem_cache *cachep;
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003651
Christoph Lameter2c59dd62013-01-10 19:14:19 +00003652 cachep = kmalloc_slab(size, flags);
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003653 if (unlikely(ZERO_OR_NULL_PTR(cachep)))
3654 return cachep;
Ezequiel Garcia40521472012-09-08 17:47:56 -03003655 return kmem_cache_alloc_node_trace(cachep, flags, node, size);
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003656}
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003657
Li Zefan0bb38a52009-12-11 15:45:50 +08003658#if defined(CONFIG_DEBUG_SLAB) || defined(CONFIG_TRACING)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003659void *__kmalloc_node(size_t size, gfp_t flags, int node)
3660{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003661 return __do_kmalloc_node(size, flags, node, _RET_IP_);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003662}
Christoph Hellwigdbe5e692006-09-25 23:31:36 -07003663EXPORT_SYMBOL(__kmalloc_node);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003664
3665void *__kmalloc_node_track_caller(size_t size, gfp_t flags,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003666 int node, unsigned long caller)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003667{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003668 return __do_kmalloc_node(size, flags, node, caller);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003669}
3670EXPORT_SYMBOL(__kmalloc_node_track_caller);
3671#else
3672void *__kmalloc_node(size_t size, gfp_t flags, int node)
3673{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003674 return __do_kmalloc_node(size, flags, node, 0);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003675}
3676EXPORT_SYMBOL(__kmalloc_node);
Li Zefan0bb38a52009-12-11 15:45:50 +08003677#endif /* CONFIG_DEBUG_SLAB || CONFIG_TRACING */
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003678#endif /* CONFIG_NUMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003679
3680/**
Paul Drynoff800590f2006-06-23 02:03:48 -07003681 * __do_kmalloc - allocate memory
Linus Torvalds1da177e2005-04-16 15:20:36 -07003682 * @size: how many bytes of memory are required.
Paul Drynoff800590f2006-06-23 02:03:48 -07003683 * @flags: the type of memory to allocate (see kmalloc).
Randy Dunlap911851e2006-03-22 00:08:14 -08003684 * @caller: function caller for debug tracking of the caller
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685 */
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003686static __always_inline void *__do_kmalloc(size_t size, gfp_t flags,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003687 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003689 struct kmem_cache *cachep;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003690 void *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691
Christoph Lameter2c59dd62013-01-10 19:14:19 +00003692 cachep = kmalloc_slab(size, flags);
Linus Torvaldsa5c96d82007-07-19 13:17:15 -07003693 if (unlikely(ZERO_OR_NULL_PTR(cachep)))
3694 return cachep;
Ezequiel Garcia48356302012-09-08 17:47:57 -03003695 ret = slab_alloc(cachep, flags, caller);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003696
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003697 trace_kmalloc(caller, ret,
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003698 size, cachep->size, flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003699
3700 return ret;
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003701}
3702
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003703
Li Zefan0bb38a52009-12-11 15:45:50 +08003704#if defined(CONFIG_DEBUG_SLAB) || defined(CONFIG_TRACING)
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003705void *__kmalloc(size_t size, gfp_t flags)
3706{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003707 return __do_kmalloc(size, flags, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003708}
3709EXPORT_SYMBOL(__kmalloc);
3710
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003711void *__kmalloc_track_caller(size_t size, gfp_t flags, unsigned long caller)
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003712{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003713 return __do_kmalloc(size, flags, caller);
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003714}
3715EXPORT_SYMBOL(__kmalloc_track_caller);
Christoph Hellwig1d2c8ee2006-10-04 02:15:25 -07003716
3717#else
3718void *__kmalloc(size_t size, gfp_t flags)
3719{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003720 return __do_kmalloc(size, flags, 0);
Christoph Hellwig1d2c8ee2006-10-04 02:15:25 -07003721}
3722EXPORT_SYMBOL(__kmalloc);
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003723#endif
3724
Linus Torvalds1da177e2005-04-16 15:20:36 -07003725/**
3726 * kmem_cache_free - Deallocate an object
3727 * @cachep: The cache the allocation was from.
3728 * @objp: The previously allocated object.
3729 *
3730 * Free an object which was previously allocated from this
3731 * cache.
3732 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003733void kmem_cache_free(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003734{
3735 unsigned long flags;
Glauber Costab9ce5ef2012-12-18 14:22:46 -08003736 cachep = cache_from_obj(cachep, objp);
3737 if (!cachep)
3738 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739
3740 local_irq_save(flags);
Feng Tangd97d4762012-07-02 14:29:10 +08003741 debug_check_no_locks_freed(objp, cachep->object_size);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -07003742 if (!(cachep->flags & SLAB_DEBUG_OBJECTS))
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003743 debug_check_no_obj_freed(objp, cachep->object_size);
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003744 __cache_free(cachep, objp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745 local_irq_restore(flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003746
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003747 trace_kmem_cache_free(_RET_IP_, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748}
3749EXPORT_SYMBOL(kmem_cache_free);
3750
3751/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003752 * kfree - free previously allocated memory
3753 * @objp: pointer returned by kmalloc.
3754 *
Pekka Enberg80e93ef2005-09-09 13:10:16 -07003755 * If @objp is NULL, no operation is performed.
3756 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757 * Don't free memory not originally allocated by kmalloc()
3758 * or you will run into trouble.
3759 */
3760void kfree(const void *objp)
3761{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003762 struct kmem_cache *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003763 unsigned long flags;
3764
Pekka Enberg2121db72009-03-25 11:05:57 +02003765 trace_kfree(_RET_IP_, objp);
3766
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003767 if (unlikely(ZERO_OR_NULL_PTR(objp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768 return;
3769 local_irq_save(flags);
3770 kfree_debugcheck(objp);
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -08003771 c = virt_to_cache(objp);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003772 debug_check_no_locks_freed(objp, c->object_size);
3773
3774 debug_check_no_obj_freed(objp, c->object_size);
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003775 __cache_free(c, (void *)objp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003776 local_irq_restore(flags);
3777}
3778EXPORT_SYMBOL(kfree);
3779
Christoph Lametere498be72005-09-09 13:03:32 -07003780/*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003781 * This initializes kmem_cache_node or resizes various caches for all nodes.
Christoph Lametere498be72005-09-09 13:03:32 -07003782 */
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08003783static int alloc_kmem_cache_node(struct kmem_cache *cachep, gfp_t gfp)
Christoph Lametere498be72005-09-09 13:03:32 -07003784{
3785 int node;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003786 struct kmem_cache_node *n;
Christoph Lametercafeb022006-03-25 03:06:46 -08003787 struct array_cache *new_shared;
Joonsoo Kimc8522a32014-08-06 16:04:29 -07003788 struct alien_cache **new_alien = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07003789
Mel Gorman9c09a952008-01-24 05:49:54 -08003790 for_each_online_node(node) {
Christoph Lametercafeb022006-03-25 03:06:46 -08003791
Paul Menage3395ee02006-12-06 20:32:16 -08003792 if (use_alien_caches) {
Pekka Enberg83b519e2009-06-10 19:40:04 +03003793 new_alien = alloc_alien_cache(node, cachep->limit, gfp);
Paul Menage3395ee02006-12-06 20:32:16 -08003794 if (!new_alien)
3795 goto fail;
3796 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003797
Eric Dumazet63109842007-05-06 14:49:28 -07003798 new_shared = NULL;
3799 if (cachep->shared) {
3800 new_shared = alloc_arraycache(node,
Christoph Lameter0718dc22006-03-25 03:06:47 -08003801 cachep->shared*cachep->batchcount,
Pekka Enberg83b519e2009-06-10 19:40:04 +03003802 0xbaadf00d, gfp);
Eric Dumazet63109842007-05-06 14:49:28 -07003803 if (!new_shared) {
3804 free_alien_cache(new_alien);
3805 goto fail;
3806 }
Christoph Lameter0718dc22006-03-25 03:06:47 -08003807 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003808
Christoph Lameter18bf8542014-08-06 16:04:11 -07003809 n = get_node(cachep, node);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003810 if (n) {
3811 struct array_cache *shared = n->shared;
Joonsoo Kim97654df2014-08-06 16:04:25 -07003812 LIST_HEAD(list);
Christoph Lametercafeb022006-03-25 03:06:46 -08003813
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003814 spin_lock_irq(&n->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07003815
Christoph Lametercafeb022006-03-25 03:06:46 -08003816 if (shared)
Christoph Lameter0718dc22006-03-25 03:06:47 -08003817 free_block(cachep, shared->entry,
Joonsoo Kim97654df2014-08-06 16:04:25 -07003818 shared->avail, node, &list);
Christoph Lametere498be72005-09-09 13:03:32 -07003819
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003820 n->shared = new_shared;
3821 if (!n->alien) {
3822 n->alien = new_alien;
Christoph Lametere498be72005-09-09 13:03:32 -07003823 new_alien = NULL;
3824 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003825 n->free_limit = (1 + nr_cpus_node(node)) *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003826 cachep->batchcount + cachep->num;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003827 spin_unlock_irq(&n->list_lock);
Joonsoo Kim97654df2014-08-06 16:04:25 -07003828 slabs_destroy(cachep, &list);
Christoph Lametercafeb022006-03-25 03:06:46 -08003829 kfree(shared);
Christoph Lametere498be72005-09-09 13:03:32 -07003830 free_alien_cache(new_alien);
3831 continue;
3832 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003833 n = kmalloc_node(sizeof(struct kmem_cache_node), gfp, node);
3834 if (!n) {
Christoph Lameter0718dc22006-03-25 03:06:47 -08003835 free_alien_cache(new_alien);
3836 kfree(new_shared);
Christoph Lametere498be72005-09-09 13:03:32 -07003837 goto fail;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003838 }
Christoph Lametere498be72005-09-09 13:03:32 -07003839
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003840 kmem_cache_node_init(n);
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08003841 n->next_reap = jiffies + REAPTIMEOUT_NODE +
3842 ((unsigned long)cachep) % REAPTIMEOUT_NODE;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003843 n->shared = new_shared;
3844 n->alien = new_alien;
3845 n->free_limit = (1 + nr_cpus_node(node)) *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003846 cachep->batchcount + cachep->num;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003847 cachep->node[node] = n;
Christoph Lametere498be72005-09-09 13:03:32 -07003848 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003849 return 0;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003850
Andrew Mortona737b3e2006-03-22 00:08:11 -08003851fail:
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003852 if (!cachep->list.next) {
Christoph Lameter0718dc22006-03-25 03:06:47 -08003853 /* Cache is not active yet. Roll back what we did */
3854 node--;
3855 while (node >= 0) {
Christoph Lameter18bf8542014-08-06 16:04:11 -07003856 n = get_node(cachep, node);
3857 if (n) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003858 kfree(n->shared);
3859 free_alien_cache(n->alien);
3860 kfree(n);
Christoph Lameter6a673682013-01-10 19:14:19 +00003861 cachep->node[node] = NULL;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003862 }
3863 node--;
3864 }
3865 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003866 return -ENOMEM;
Christoph Lametere498be72005-09-09 13:03:32 -07003867}
3868
Linus Torvalds1da177e2005-04-16 15:20:36 -07003869struct ccupdate_struct {
Pekka Enberg343e0d72006-02-01 03:05:50 -08003870 struct kmem_cache *cachep;
Eric Dumazetacfe7d72011-07-25 08:55:42 +02003871 struct array_cache *new[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003872};
3873
3874static void do_ccupdate_local(void *info)
3875{
Andrew Mortona737b3e2006-03-22 00:08:11 -08003876 struct ccupdate_struct *new = info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003877 struct array_cache *old;
3878
3879 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003880 old = cpu_cache_get(new->cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003881
Linus Torvalds1da177e2005-04-16 15:20:36 -07003882 new->cachep->array[smp_processor_id()] = new->new[smp_processor_id()];
3883 new->new[smp_processor_id()] = old;
3884}
3885
Christoph Lameter18004c52012-07-06 15:25:12 -05003886/* Always called with the slab_mutex held */
Glauber Costa943a4512012-12-18 14:23:03 -08003887static int __do_tune_cpucache(struct kmem_cache *cachep, int limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03003888 int batchcount, int shared, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003889{
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003890 struct ccupdate_struct *new;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07003891 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003892
Eric Dumazetacfe7d72011-07-25 08:55:42 +02003893 new = kzalloc(sizeof(*new) + nr_cpu_ids * sizeof(struct array_cache *),
3894 gfp);
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003895 if (!new)
3896 return -ENOMEM;
3897
Christoph Lametere498be72005-09-09 13:03:32 -07003898 for_each_online_cpu(i) {
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003899 new->new[i] = alloc_arraycache(cpu_to_mem(i), limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03003900 batchcount, gfp);
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003901 if (!new->new[i]) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003902 for (i--; i >= 0; i--)
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003903 kfree(new->new[i]);
3904 kfree(new);
Christoph Lametere498be72005-09-09 13:03:32 -07003905 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003906 }
3907 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003908 new->cachep = cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909
Jens Axboe15c8b6c2008-05-09 09:39:44 +02003910 on_each_cpu(do_ccupdate_local, (void *)new, 1);
Christoph Lametere498be72005-09-09 13:03:32 -07003911
Linus Torvalds1da177e2005-04-16 15:20:36 -07003912 check_irq_on();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003913 cachep->batchcount = batchcount;
3914 cachep->limit = limit;
Christoph Lametere498be72005-09-09 13:03:32 -07003915 cachep->shared = shared;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003916
Christoph Lametere498be72005-09-09 13:03:32 -07003917 for_each_online_cpu(i) {
Joonsoo Kim97654df2014-08-06 16:04:25 -07003918 LIST_HEAD(list);
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003919 struct array_cache *ccold = new->new[i];
Christoph Lameter18bf8542014-08-06 16:04:11 -07003920 int node;
3921 struct kmem_cache_node *n;
3922
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923 if (!ccold)
3924 continue;
Christoph Lameter18bf8542014-08-06 16:04:11 -07003925
3926 node = cpu_to_mem(i);
3927 n = get_node(cachep, node);
3928 spin_lock_irq(&n->list_lock);
Joonsoo Kim97654df2014-08-06 16:04:25 -07003929 free_block(cachep, ccold->entry, ccold->avail, node, &list);
Christoph Lameter18bf8542014-08-06 16:04:11 -07003930 spin_unlock_irq(&n->list_lock);
Joonsoo Kim97654df2014-08-06 16:04:25 -07003931 slabs_destroy(cachep, &list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932 kfree(ccold);
3933 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003934 kfree(new);
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08003935 return alloc_kmem_cache_node(cachep, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003936}
3937
Glauber Costa943a4512012-12-18 14:23:03 -08003938static int do_tune_cpucache(struct kmem_cache *cachep, int limit,
3939 int batchcount, int shared, gfp_t gfp)
3940{
3941 int ret;
3942 struct kmem_cache *c = NULL;
3943 int i = 0;
3944
3945 ret = __do_tune_cpucache(cachep, limit, batchcount, shared, gfp);
3946
3947 if (slab_state < FULL)
3948 return ret;
3949
3950 if ((ret < 0) || !is_root_cache(cachep))
3951 return ret;
3952
Glauber Costaebe945c2012-12-18 14:23:10 -08003953 VM_BUG_ON(!mutex_is_locked(&slab_mutex));
Glauber Costa943a4512012-12-18 14:23:03 -08003954 for_each_memcg_cache_index(i) {
Qiang Huang2ade4de2013-11-12 15:08:23 -08003955 c = cache_from_memcg_idx(cachep, i);
Glauber Costa943a4512012-12-18 14:23:03 -08003956 if (c)
3957 /* return value determined by the parent cache only */
3958 __do_tune_cpucache(c, limit, batchcount, shared, gfp);
3959 }
3960
3961 return ret;
3962}
3963
Christoph Lameter18004c52012-07-06 15:25:12 -05003964/* Called with slab_mutex held always */
Pekka Enberg83b519e2009-06-10 19:40:04 +03003965static int enable_cpucache(struct kmem_cache *cachep, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003966{
3967 int err;
Glauber Costa943a4512012-12-18 14:23:03 -08003968 int limit = 0;
3969 int shared = 0;
3970 int batchcount = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003971
Glauber Costa943a4512012-12-18 14:23:03 -08003972 if (!is_root_cache(cachep)) {
3973 struct kmem_cache *root = memcg_root_cache(cachep);
3974 limit = root->limit;
3975 shared = root->shared;
3976 batchcount = root->batchcount;
3977 }
3978
3979 if (limit && shared && batchcount)
3980 goto skip_setup;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003981 /*
3982 * The head array serves three purposes:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003983 * - create a LIFO ordering, i.e. return objects that are cache-warm
3984 * - reduce the number of spinlock operations.
Andrew Mortona737b3e2006-03-22 00:08:11 -08003985 * - reduce the number of linked list operations on the slab and
Linus Torvalds1da177e2005-04-16 15:20:36 -07003986 * bufctl chains: array operations are cheaper.
3987 * The numbers are guessed, we should auto-tune as described by
3988 * Bonwick.
3989 */
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003990 if (cachep->size > 131072)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003991 limit = 1;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003992 else if (cachep->size > PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003993 limit = 8;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003994 else if (cachep->size > 1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003995 limit = 24;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003996 else if (cachep->size > 256)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003997 limit = 54;
3998 else
3999 limit = 120;
4000
Andrew Mortona737b3e2006-03-22 00:08:11 -08004001 /*
4002 * CPU bound tasks (e.g. network routing) can exhibit cpu bound
Linus Torvalds1da177e2005-04-16 15:20:36 -07004003 * allocation behaviour: Most allocs on one cpu, most free operations
4004 * on another cpu. For these cases, an efficient object passing between
4005 * cpus is necessary. This is provided by a shared array. The array
4006 * replaces Bonwick's magazine layer.
4007 * On uniprocessor, it's functionally equivalent (but less efficient)
4008 * to a larger limit. Thus disabled by default.
4009 */
4010 shared = 0;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05004011 if (cachep->size <= PAGE_SIZE && num_possible_cpus() > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004012 shared = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004013
4014#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08004015 /*
4016 * With debugging enabled, large batchcount lead to excessively long
4017 * periods with disabled local interrupts. Limit the batchcount
Linus Torvalds1da177e2005-04-16 15:20:36 -07004018 */
4019 if (limit > 32)
4020 limit = 32;
4021#endif
Glauber Costa943a4512012-12-18 14:23:03 -08004022 batchcount = (limit + 1) / 2;
4023skip_setup:
4024 err = do_tune_cpucache(cachep, limit, batchcount, shared, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004025 if (err)
4026 printk(KERN_ERR "enable_cpucache failed for %s, error %d.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004027 cachep->name, -err);
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07004028 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004029}
4030
Christoph Lameter1b552532006-03-22 00:09:07 -08004031/*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004032 * Drain an array if it contains any elements taking the node lock only if
4033 * necessary. Note that the node listlock also protects the array_cache
Christoph Lameterb18e7e62006-03-22 00:09:07 -08004034 * if drain_array() is used on the shared array.
Christoph Lameter1b552532006-03-22 00:09:07 -08004035 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004036static void drain_array(struct kmem_cache *cachep, struct kmem_cache_node *n,
Christoph Lameter1b552532006-03-22 00:09:07 -08004037 struct array_cache *ac, int force, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004038{
Joonsoo Kim97654df2014-08-06 16:04:25 -07004039 LIST_HEAD(list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004040 int tofree;
4041
Christoph Lameter1b552532006-03-22 00:09:07 -08004042 if (!ac || !ac->avail)
4043 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004044 if (ac->touched && !force) {
4045 ac->touched = 0;
Christoph Lameterb18e7e62006-03-22 00:09:07 -08004046 } else {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004047 spin_lock_irq(&n->list_lock);
Christoph Lameterb18e7e62006-03-22 00:09:07 -08004048 if (ac->avail) {
4049 tofree = force ? ac->avail : (ac->limit + 4) / 5;
4050 if (tofree > ac->avail)
4051 tofree = (ac->avail + 1) / 2;
Joonsoo Kim97654df2014-08-06 16:04:25 -07004052 free_block(cachep, ac->entry, tofree, node, &list);
Christoph Lameterb18e7e62006-03-22 00:09:07 -08004053 ac->avail -= tofree;
4054 memmove(ac->entry, &(ac->entry[tofree]),
4055 sizeof(void *) * ac->avail);
4056 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004057 spin_unlock_irq(&n->list_lock);
Joonsoo Kim97654df2014-08-06 16:04:25 -07004058 slabs_destroy(cachep, &list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004059 }
4060}
4061
4062/**
4063 * cache_reap - Reclaim memory from caches.
Randy Dunlap05fb6bf2007-02-28 20:12:13 -08004064 * @w: work descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -07004065 *
4066 * Called from workqueue/eventd every few seconds.
4067 * Purpose:
4068 * - clear the per-cpu caches for this CPU.
4069 * - return freeable pages to the main free memory pool.
4070 *
Andrew Mortona737b3e2006-03-22 00:08:11 -08004071 * If we cannot acquire the cache chain mutex then just give up - we'll try
4072 * again on the next iteration.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004073 */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004074static void cache_reap(struct work_struct *w)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004075{
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004076 struct kmem_cache *searchp;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004077 struct kmem_cache_node *n;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07004078 int node = numa_mem_id();
Jean Delvarebf6aede2009-04-02 16:56:54 -07004079 struct delayed_work *work = to_delayed_work(w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004080
Christoph Lameter18004c52012-07-06 15:25:12 -05004081 if (!mutex_trylock(&slab_mutex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004082 /* Give up. Setup the next iteration. */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004083 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004084
Christoph Lameter18004c52012-07-06 15:25:12 -05004085 list_for_each_entry(searchp, &slab_caches, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004086 check_irq_on();
4087
Christoph Lameter35386e32006-03-22 00:09:05 -08004088 /*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004089 * We only take the node lock if absolutely necessary and we
Christoph Lameter35386e32006-03-22 00:09:05 -08004090 * have established with reasonable certainty that
4091 * we can do some work if the lock was obtained.
4092 */
Christoph Lameter18bf8542014-08-06 16:04:11 -07004093 n = get_node(searchp, node);
Christoph Lameter35386e32006-03-22 00:09:05 -08004094
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004095 reap_alien(searchp, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004096
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004097 drain_array(searchp, n, cpu_cache_get(searchp), 0, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004098
Christoph Lameter35386e32006-03-22 00:09:05 -08004099 /*
4100 * These are racy checks but it does not matter
4101 * if we skip one check or scan twice.
4102 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004103 if (time_after(n->next_reap, jiffies))
Christoph Lameter35386e32006-03-22 00:09:05 -08004104 goto next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004105
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08004106 n->next_reap = jiffies + REAPTIMEOUT_NODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004107
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004108 drain_array(searchp, n, n->shared, 0, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004109
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004110 if (n->free_touched)
4111 n->free_touched = 0;
Christoph Lametered11d9e2006-06-30 01:55:45 -07004112 else {
4113 int freed;
4114
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004115 freed = drain_freelist(searchp, n, (n->free_limit +
Christoph Lametered11d9e2006-06-30 01:55:45 -07004116 5 * searchp->num - 1) / (5 * searchp->num));
4117 STATS_ADD_REAPED(searchp, freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004118 }
Christoph Lameter35386e32006-03-22 00:09:05 -08004119next:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004120 cond_resched();
4121 }
4122 check_irq_on();
Christoph Lameter18004c52012-07-06 15:25:12 -05004123 mutex_unlock(&slab_mutex);
Christoph Lameter8fce4d82006-03-09 17:33:54 -08004124 next_reap_node();
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004125out:
Andrew Mortona737b3e2006-03-22 00:08:11 -08004126 /* Set up the next iteration */
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08004127 schedule_delayed_work(work, round_jiffies_relative(REAPTIMEOUT_AC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128}
4129
Linus Torvalds158a9622008-01-02 13:04:48 -08004130#ifdef CONFIG_SLABINFO
Glauber Costa0d7561c2012-10-19 18:20:27 +04004131void get_slabinfo(struct kmem_cache *cachep, struct slabinfo *sinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004132{
Joonsoo Kim8456a642013-10-24 10:07:49 +09004133 struct page *page;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004134 unsigned long active_objs;
4135 unsigned long num_objs;
4136 unsigned long active_slabs = 0;
4137 unsigned long num_slabs, free_objects = 0, shared_avail = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07004138 const char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004139 char *error = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07004140 int node;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004141 struct kmem_cache_node *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004142
Linus Torvalds1da177e2005-04-16 15:20:36 -07004143 active_objs = 0;
4144 num_slabs = 0;
Christoph Lameter18bf8542014-08-06 16:04:11 -07004145 for_each_kmem_cache_node(cachep, node, n) {
Christoph Lametere498be72005-09-09 13:03:32 -07004146
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08004147 check_irq_on();
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004148 spin_lock_irq(&n->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07004149
Joonsoo Kim8456a642013-10-24 10:07:49 +09004150 list_for_each_entry(page, &n->slabs_full, lru) {
4151 if (page->active != cachep->num && !error)
Christoph Lametere498be72005-09-09 13:03:32 -07004152 error = "slabs_full accounting error";
4153 active_objs += cachep->num;
4154 active_slabs++;
4155 }
Joonsoo Kim8456a642013-10-24 10:07:49 +09004156 list_for_each_entry(page, &n->slabs_partial, lru) {
4157 if (page->active == cachep->num && !error)
Joonsoo Kim106a74e2013-10-24 10:07:48 +09004158 error = "slabs_partial accounting error";
Joonsoo Kim8456a642013-10-24 10:07:49 +09004159 if (!page->active && !error)
Joonsoo Kim106a74e2013-10-24 10:07:48 +09004160 error = "slabs_partial accounting error";
Joonsoo Kim8456a642013-10-24 10:07:49 +09004161 active_objs += page->active;
Christoph Lametere498be72005-09-09 13:03:32 -07004162 active_slabs++;
4163 }
Joonsoo Kim8456a642013-10-24 10:07:49 +09004164 list_for_each_entry(page, &n->slabs_free, lru) {
4165 if (page->active && !error)
Joonsoo Kim106a74e2013-10-24 10:07:48 +09004166 error = "slabs_free accounting error";
Christoph Lametere498be72005-09-09 13:03:32 -07004167 num_slabs++;
4168 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004169 free_objects += n->free_objects;
4170 if (n->shared)
4171 shared_avail += n->shared->avail;
Christoph Lametere498be72005-09-09 13:03:32 -07004172
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004173 spin_unlock_irq(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004174 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004175 num_slabs += active_slabs;
4176 num_objs = num_slabs * cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07004177 if (num_objs - active_objs != free_objects && !error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004178 error = "free_objects accounting error";
4179
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004180 name = cachep->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004181 if (error)
4182 printk(KERN_ERR "slab: cache %s error: %s\n", name, error);
4183
Glauber Costa0d7561c2012-10-19 18:20:27 +04004184 sinfo->active_objs = active_objs;
4185 sinfo->num_objs = num_objs;
4186 sinfo->active_slabs = active_slabs;
4187 sinfo->num_slabs = num_slabs;
4188 sinfo->shared_avail = shared_avail;
4189 sinfo->limit = cachep->limit;
4190 sinfo->batchcount = cachep->batchcount;
4191 sinfo->shared = cachep->shared;
4192 sinfo->objects_per_slab = cachep->num;
4193 sinfo->cache_order = cachep->gfporder;
4194}
4195
4196void slabinfo_show_stats(struct seq_file *m, struct kmem_cache *cachep)
4197{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004198#if STATS
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004199 { /* node stats */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004200 unsigned long high = cachep->high_mark;
4201 unsigned long allocs = cachep->num_allocations;
4202 unsigned long grown = cachep->grown;
4203 unsigned long reaped = cachep->reaped;
4204 unsigned long errors = cachep->errors;
4205 unsigned long max_freeable = cachep->max_freeable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004206 unsigned long node_allocs = cachep->node_allocs;
Christoph Lametere498be72005-09-09 13:03:32 -07004207 unsigned long node_frees = cachep->node_frees;
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -07004208 unsigned long overflows = cachep->node_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004209
Joe Perchese92dd4f2010-03-26 19:27:58 -07004210 seq_printf(m, " : globalstat %7lu %6lu %5lu %4lu "
4211 "%4lu %4lu %4lu %4lu %4lu",
4212 allocs, high, grown,
4213 reaped, errors, max_freeable, node_allocs,
4214 node_frees, overflows);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004215 }
4216 /* cpu stats */
4217 {
4218 unsigned long allochit = atomic_read(&cachep->allochit);
4219 unsigned long allocmiss = atomic_read(&cachep->allocmiss);
4220 unsigned long freehit = atomic_read(&cachep->freehit);
4221 unsigned long freemiss = atomic_read(&cachep->freemiss);
4222
4223 seq_printf(m, " : cpustat %6lu %6lu %6lu %6lu",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004224 allochit, allocmiss, freehit, freemiss);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004225 }
4226#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004227}
4228
Linus Torvalds1da177e2005-04-16 15:20:36 -07004229#define MAX_SLABINFO_WRITE 128
4230/**
4231 * slabinfo_write - Tuning for the slab allocator
4232 * @file: unused
4233 * @buffer: user buffer
4234 * @count: data length
4235 * @ppos: unused
4236 */
Glauber Costab7454ad2012-10-19 18:20:25 +04004237ssize_t slabinfo_write(struct file *file, const char __user *buffer,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004238 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004239{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004240 char kbuf[MAX_SLABINFO_WRITE + 1], *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004241 int limit, batchcount, shared, res;
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004242 struct kmem_cache *cachep;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004243
Linus Torvalds1da177e2005-04-16 15:20:36 -07004244 if (count > MAX_SLABINFO_WRITE)
4245 return -EINVAL;
4246 if (copy_from_user(&kbuf, buffer, count))
4247 return -EFAULT;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004248 kbuf[MAX_SLABINFO_WRITE] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07004249
4250 tmp = strchr(kbuf, ' ');
4251 if (!tmp)
4252 return -EINVAL;
4253 *tmp = '\0';
4254 tmp++;
4255 if (sscanf(tmp, " %d %d %d", &limit, &batchcount, &shared) != 3)
4256 return -EINVAL;
4257
4258 /* Find the cache in the chain of caches. */
Christoph Lameter18004c52012-07-06 15:25:12 -05004259 mutex_lock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004260 res = -EINVAL;
Christoph Lameter18004c52012-07-06 15:25:12 -05004261 list_for_each_entry(cachep, &slab_caches, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004262 if (!strcmp(cachep->name, kbuf)) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08004263 if (limit < 1 || batchcount < 1 ||
4264 batchcount > limit || shared < 0) {
Christoph Lametere498be72005-09-09 13:03:32 -07004265 res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004266 } else {
Christoph Lametere498be72005-09-09 13:03:32 -07004267 res = do_tune_cpucache(cachep, limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03004268 batchcount, shared,
4269 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004270 }
4271 break;
4272 }
4273 }
Christoph Lameter18004c52012-07-06 15:25:12 -05004274 mutex_unlock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004275 if (res >= 0)
4276 res = count;
4277 return res;
4278}
Al Viro871751e2006-03-25 03:06:39 -08004279
4280#ifdef CONFIG_DEBUG_SLAB_LEAK
4281
4282static void *leaks_start(struct seq_file *m, loff_t *pos)
4283{
Christoph Lameter18004c52012-07-06 15:25:12 -05004284 mutex_lock(&slab_mutex);
4285 return seq_list_start(&slab_caches, *pos);
Al Viro871751e2006-03-25 03:06:39 -08004286}
4287
4288static inline int add_caller(unsigned long *n, unsigned long v)
4289{
4290 unsigned long *p;
4291 int l;
4292 if (!v)
4293 return 1;
4294 l = n[1];
4295 p = n + 2;
4296 while (l) {
4297 int i = l/2;
4298 unsigned long *q = p + 2 * i;
4299 if (*q == v) {
4300 q[1]++;
4301 return 1;
4302 }
4303 if (*q > v) {
4304 l = i;
4305 } else {
4306 p = q + 2;
4307 l -= i + 1;
4308 }
4309 }
4310 if (++n[1] == n[0])
4311 return 0;
4312 memmove(p + 2, p, n[1] * 2 * sizeof(unsigned long) - ((void *)p - (void *)n));
4313 p[0] = v;
4314 p[1] = 1;
4315 return 1;
4316}
4317
Joonsoo Kim8456a642013-10-24 10:07:49 +09004318static void handle_slab(unsigned long *n, struct kmem_cache *c,
4319 struct page *page)
Al Viro871751e2006-03-25 03:06:39 -08004320{
4321 void *p;
Joonsoo Kim03787302014-06-23 13:22:06 -07004322 int i;
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09004323
Al Viro871751e2006-03-25 03:06:39 -08004324 if (n[0] == n[1])
4325 return;
Joonsoo Kim8456a642013-10-24 10:07:49 +09004326 for (i = 0, p = page->s_mem; i < c->num; i++, p += c->size) {
Joonsoo Kim03787302014-06-23 13:22:06 -07004327 if (get_obj_status(page, i) != OBJECT_ACTIVE)
Al Viro871751e2006-03-25 03:06:39 -08004328 continue;
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09004329
Al Viro871751e2006-03-25 03:06:39 -08004330 if (!add_caller(n, (unsigned long)*dbg_userword(c, p)))
4331 return;
4332 }
4333}
4334
4335static void show_symbol(struct seq_file *m, unsigned long address)
4336{
4337#ifdef CONFIG_KALLSYMS
Al Viro871751e2006-03-25 03:06:39 -08004338 unsigned long offset, size;
Tejun Heo9281ace2007-07-17 04:03:51 -07004339 char modname[MODULE_NAME_LEN], name[KSYM_NAME_LEN];
Al Viro871751e2006-03-25 03:06:39 -08004340
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004341 if (lookup_symbol_attrs(address, &size, &offset, modname, name) == 0) {
Al Viro871751e2006-03-25 03:06:39 -08004342 seq_printf(m, "%s+%#lx/%#lx", name, offset, size);
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004343 if (modname[0])
Al Viro871751e2006-03-25 03:06:39 -08004344 seq_printf(m, " [%s]", modname);
4345 return;
4346 }
4347#endif
4348 seq_printf(m, "%p", (void *)address);
4349}
4350
4351static int leaks_show(struct seq_file *m, void *p)
4352{
Thierry Reding0672aa72012-06-22 19:42:49 +02004353 struct kmem_cache *cachep = list_entry(p, struct kmem_cache, list);
Joonsoo Kim8456a642013-10-24 10:07:49 +09004354 struct page *page;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004355 struct kmem_cache_node *n;
Al Viro871751e2006-03-25 03:06:39 -08004356 const char *name;
Christoph Lameterdb845062013-02-05 18:45:23 +00004357 unsigned long *x = m->private;
Al Viro871751e2006-03-25 03:06:39 -08004358 int node;
4359 int i;
4360
4361 if (!(cachep->flags & SLAB_STORE_USER))
4362 return 0;
4363 if (!(cachep->flags & SLAB_RED_ZONE))
4364 return 0;
4365
4366 /* OK, we can do it */
4367
Christoph Lameterdb845062013-02-05 18:45:23 +00004368 x[1] = 0;
Al Viro871751e2006-03-25 03:06:39 -08004369
Christoph Lameter18bf8542014-08-06 16:04:11 -07004370 for_each_kmem_cache_node(cachep, node, n) {
Al Viro871751e2006-03-25 03:06:39 -08004371
4372 check_irq_on();
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004373 spin_lock_irq(&n->list_lock);
Al Viro871751e2006-03-25 03:06:39 -08004374
Joonsoo Kim8456a642013-10-24 10:07:49 +09004375 list_for_each_entry(page, &n->slabs_full, lru)
4376 handle_slab(x, cachep, page);
4377 list_for_each_entry(page, &n->slabs_partial, lru)
4378 handle_slab(x, cachep, page);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004379 spin_unlock_irq(&n->list_lock);
Al Viro871751e2006-03-25 03:06:39 -08004380 }
4381 name = cachep->name;
Christoph Lameterdb845062013-02-05 18:45:23 +00004382 if (x[0] == x[1]) {
Al Viro871751e2006-03-25 03:06:39 -08004383 /* Increase the buffer size */
Christoph Lameter18004c52012-07-06 15:25:12 -05004384 mutex_unlock(&slab_mutex);
Christoph Lameterdb845062013-02-05 18:45:23 +00004385 m->private = kzalloc(x[0] * 4 * sizeof(unsigned long), GFP_KERNEL);
Al Viro871751e2006-03-25 03:06:39 -08004386 if (!m->private) {
4387 /* Too bad, we are really out */
Christoph Lameterdb845062013-02-05 18:45:23 +00004388 m->private = x;
Christoph Lameter18004c52012-07-06 15:25:12 -05004389 mutex_lock(&slab_mutex);
Al Viro871751e2006-03-25 03:06:39 -08004390 return -ENOMEM;
4391 }
Christoph Lameterdb845062013-02-05 18:45:23 +00004392 *(unsigned long *)m->private = x[0] * 2;
4393 kfree(x);
Christoph Lameter18004c52012-07-06 15:25:12 -05004394 mutex_lock(&slab_mutex);
Al Viro871751e2006-03-25 03:06:39 -08004395 /* Now make sure this entry will be retried */
4396 m->count = m->size;
4397 return 0;
4398 }
Christoph Lameterdb845062013-02-05 18:45:23 +00004399 for (i = 0; i < x[1]; i++) {
4400 seq_printf(m, "%s: %lu ", name, x[2*i+3]);
4401 show_symbol(m, x[2*i+2]);
Al Viro871751e2006-03-25 03:06:39 -08004402 seq_putc(m, '\n');
4403 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004404
Al Viro871751e2006-03-25 03:06:39 -08004405 return 0;
4406}
4407
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004408static const struct seq_operations slabstats_op = {
Al Viro871751e2006-03-25 03:06:39 -08004409 .start = leaks_start,
Wanpeng Li276a2432013-07-08 08:08:28 +08004410 .next = slab_next,
4411 .stop = slab_stop,
Al Viro871751e2006-03-25 03:06:39 -08004412 .show = leaks_show,
4413};
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004414
4415static int slabstats_open(struct inode *inode, struct file *file)
4416{
4417 unsigned long *n = kzalloc(PAGE_SIZE, GFP_KERNEL);
4418 int ret = -ENOMEM;
4419 if (n) {
4420 ret = seq_open(file, &slabstats_op);
4421 if (!ret) {
4422 struct seq_file *m = file->private_data;
4423 *n = PAGE_SIZE / (2 * sizeof(unsigned long));
4424 m->private = n;
4425 n = NULL;
4426 }
4427 kfree(n);
4428 }
4429 return ret;
4430}
4431
4432static const struct file_operations proc_slabstats_operations = {
4433 .open = slabstats_open,
4434 .read = seq_read,
4435 .llseek = seq_lseek,
4436 .release = seq_release_private,
4437};
Al Viro871751e2006-03-25 03:06:39 -08004438#endif
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004439
4440static int __init slab_proc_init(void)
4441{
4442#ifdef CONFIG_DEBUG_SLAB_LEAK
4443 proc_create("slab_allocators", 0, NULL, &proc_slabstats_operations);
4444#endif
4445 return 0;
4446}
4447module_init(slab_proc_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004448#endif
4449
Manfred Spraul00e145b2005-09-03 15:55:07 -07004450/**
4451 * ksize - get the actual amount of memory allocated for a given object
4452 * @objp: Pointer to the object
4453 *
4454 * kmalloc may internally round up allocations and return more memory
4455 * than requested. ksize() can be used to determine the actual amount of
4456 * memory allocated. The caller may use this additional memory, even though
4457 * a smaller amount of memory was initially specified with the kmalloc call.
4458 * The caller must guarantee that objp points to a valid object previously
4459 * allocated with either kmalloc() or kmem_cache_alloc(). The object
4460 * must not be freed during the duration of the call.
4461 */
Pekka Enbergfd76bab2007-05-06 14:48:40 -07004462size_t ksize(const void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004463{
Christoph Lameteref8b4522007-10-16 01:24:46 -07004464 BUG_ON(!objp);
4465 if (unlikely(objp == ZERO_SIZE_PTR))
Manfred Spraul00e145b2005-09-03 15:55:07 -07004466 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004467
Christoph Lameter8c138bc2012-06-13 10:24:58 -05004468 return virt_to_cache(objp)->object_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004469}
Kirill A. Shutemovb1aabec2009-02-10 15:21:44 +02004470EXPORT_SYMBOL(ksize);