blob: 2e60bf3dedbb3925a015e1c66c0c871f03f28f6f [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
Tejun Heo1871e522009-10-29 22:34:13 +0900473static DEFINE_PER_CPU(struct delayed_work, slab_reap_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
Pekka Enberg343e0d72006-02-01 03:05:50 -0800475static inline struct array_cache *cpu_cache_get(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476{
477 return cachep->array[smp_processor_id()];
478}
479
Joonsoo Kim03787302014-06-23 13:22:06 -0700480static size_t calculate_freelist_size(int nr_objs, size_t align)
481{
482 size_t freelist_size;
483
484 freelist_size = nr_objs * sizeof(freelist_idx_t);
485 if (IS_ENABLED(CONFIG_DEBUG_SLAB_LEAK))
486 freelist_size += nr_objs * sizeof(char);
487
488 if (align)
489 freelist_size = ALIGN(freelist_size, align);
490
491 return freelist_size;
492}
493
Joonsoo Kim9cef2e22013-12-02 17:49:39 +0900494static int calculate_nr_objs(size_t slab_size, size_t buffer_size,
495 size_t idx_size, size_t align)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496{
Joonsoo Kim9cef2e22013-12-02 17:49:39 +0900497 int nr_objs;
Joonsoo Kim03787302014-06-23 13:22:06 -0700498 size_t remained_size;
Joonsoo Kim9cef2e22013-12-02 17:49:39 +0900499 size_t freelist_size;
Joonsoo Kim03787302014-06-23 13:22:06 -0700500 int extra_space = 0;
Joonsoo Kim9cef2e22013-12-02 17:49:39 +0900501
Joonsoo Kim03787302014-06-23 13:22:06 -0700502 if (IS_ENABLED(CONFIG_DEBUG_SLAB_LEAK))
503 extra_space = sizeof(char);
Joonsoo Kim9cef2e22013-12-02 17:49:39 +0900504 /*
505 * Ignore padding for the initial guess. The padding
506 * is at most @align-1 bytes, and @buffer_size is at
507 * least @align. In the worst case, this result will
508 * be one greater than the number of objects that fit
509 * into the memory allocation when taking the padding
510 * into account.
511 */
Joonsoo Kim03787302014-06-23 13:22:06 -0700512 nr_objs = slab_size / (buffer_size + idx_size + extra_space);
Joonsoo Kim9cef2e22013-12-02 17:49:39 +0900513
514 /*
515 * This calculated number will be either the right
516 * amount, or one greater than what we want.
517 */
Joonsoo Kim03787302014-06-23 13:22:06 -0700518 remained_size = slab_size - nr_objs * buffer_size;
519 freelist_size = calculate_freelist_size(nr_objs, align);
520 if (remained_size < freelist_size)
Joonsoo Kim9cef2e22013-12-02 17:49:39 +0900521 nr_objs--;
522
523 return nr_objs;
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800524}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700525
Andrew Mortona737b3e2006-03-22 00:08:11 -0800526/*
527 * Calculate the number of objects and left-over bytes for a given buffer size.
528 */
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800529static void cache_estimate(unsigned long gfporder, size_t buffer_size,
530 size_t align, int flags, size_t *left_over,
531 unsigned int *num)
532{
533 int nr_objs;
534 size_t mgmt_size;
535 size_t slab_size = PAGE_SIZE << gfporder;
536
537 /*
538 * The slab management structure can be either off the slab or
539 * on it. For the latter case, the memory allocated for a
540 * slab is used for:
541 *
Joonsoo Kim16025172013-10-24 10:07:46 +0900542 * - One unsigned int for each object
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800543 * - Padding to respect alignment of @align
544 * - @buffer_size bytes for each object
545 *
546 * If the slab management structure is off the slab, then the
547 * alignment will already be calculated into the size. Because
548 * the slabs are all pages aligned, the objects will be at the
549 * correct alignment when allocated.
550 */
551 if (flags & CFLGS_OFF_SLAB) {
552 mgmt_size = 0;
553 nr_objs = slab_size / buffer_size;
554
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800555 } else {
Joonsoo Kim9cef2e22013-12-02 17:49:39 +0900556 nr_objs = calculate_nr_objs(slab_size, buffer_size,
Joonsoo Kima41adfa2013-12-02 17:49:42 +0900557 sizeof(freelist_idx_t), align);
Joonsoo Kim03787302014-06-23 13:22:06 -0700558 mgmt_size = calculate_freelist_size(nr_objs, align);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 }
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800560 *num = nr_objs;
561 *left_over = slab_size - nr_objs*buffer_size - mgmt_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562}
563
Christoph Lameterf28510d2012-09-11 19:49:38 +0000564#if DEBUG
Harvey Harrisond40cee22008-04-30 00:55:07 -0700565#define slab_error(cachep, msg) __slab_error(__func__, cachep, msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566
Andrew Mortona737b3e2006-03-22 00:08:11 -0800567static void __slab_error(const char *function, struct kmem_cache *cachep,
568 char *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569{
570 printk(KERN_ERR "slab error in %s(): cache `%s': %s\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800571 function, cachep->name, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 dump_stack();
Rusty Russell373d4d02013-01-21 17:17:39 +1030573 add_taint(TAINT_BAD_PAGE, LOCKDEP_NOW_UNRELIABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574}
Christoph Lameterf28510d2012-09-11 19:49:38 +0000575#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
Paul Menage3395ee02006-12-06 20:32:16 -0800577/*
578 * By default on NUMA we use alien caches to stage the freeing of
579 * objects allocated from other nodes. This causes massive memory
580 * inefficiencies when using fake NUMA setup to split memory into a
581 * large number of small nodes, so it can be disabled on the command
582 * line
583 */
584
585static int use_alien_caches __read_mostly = 1;
586static int __init noaliencache_setup(char *s)
587{
588 use_alien_caches = 0;
589 return 1;
590}
591__setup("noaliencache", noaliencache_setup);
592
David Rientjes3df1ccc2011-10-18 22:09:28 -0700593static int __init slab_max_order_setup(char *str)
594{
595 get_option(&str, &slab_max_order);
596 slab_max_order = slab_max_order < 0 ? 0 :
597 min(slab_max_order, MAX_ORDER - 1);
598 slab_max_order_set = true;
599
600 return 1;
601}
602__setup("slab_max_order=", slab_max_order_setup);
603
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800604#ifdef CONFIG_NUMA
605/*
606 * Special reaping functions for NUMA systems called from cache_reap().
607 * These take care of doing round robin flushing of alien caches (containing
608 * objects freed on different nodes from which they were allocated) and the
609 * flushing of remote pcps by calling drain_node_pages.
610 */
Tejun Heo1871e522009-10-29 22:34:13 +0900611static DEFINE_PER_CPU(unsigned long, slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800612
613static void init_reap_node(int cpu)
614{
615 int node;
616
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -0700617 node = next_node(cpu_to_mem(cpu), node_online_map);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800618 if (node == MAX_NUMNODES)
Paul Jackson442295c2006-03-22 00:09:11 -0800619 node = first_node(node_online_map);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800620
Tejun Heo1871e522009-10-29 22:34:13 +0900621 per_cpu(slab_reap_node, cpu) = node;
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800622}
623
624static void next_reap_node(void)
625{
Christoph Lameter909ea962010-12-08 16:22:55 +0100626 int node = __this_cpu_read(slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800627
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800628 node = next_node(node, node_online_map);
629 if (unlikely(node >= MAX_NUMNODES))
630 node = first_node(node_online_map);
Christoph Lameter909ea962010-12-08 16:22:55 +0100631 __this_cpu_write(slab_reap_node, node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800632}
633
634#else
635#define init_reap_node(cpu) do { } while (0)
636#define next_reap_node(void) do { } while (0)
637#endif
638
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639/*
640 * Initiate the reap timer running on the target CPU. We run at around 1 to 2Hz
641 * via the workqueue/eventd.
642 * Add the CPU number into the expiration time to minimize the possibility of
643 * the CPUs getting into lockstep and contending for the global cache chain
644 * lock.
645 */
Paul Gortmaker0db06282013-06-19 14:53:51 -0400646static void start_cpu_timer(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647{
Tejun Heo1871e522009-10-29 22:34:13 +0900648 struct delayed_work *reap_work = &per_cpu(slab_reap_work, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649
650 /*
651 * When this gets called from do_initcalls via cpucache_init(),
652 * init_workqueues() has already run, so keventd will be setup
653 * at that time.
654 */
David Howells52bad642006-11-22 14:54:01 +0000655 if (keventd_up() && reap_work->work.func == NULL) {
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800656 init_reap_node(cpu);
Tejun Heo203b42f2012-08-21 13:18:23 -0700657 INIT_DEFERRABLE_WORK(reap_work, cache_reap);
Arjan van de Ven2b284212006-12-10 02:21:28 -0800658 schedule_delayed_work_on(cpu, reap_work,
659 __round_jiffies_relative(HZ, cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 }
661}
662
Joonsoo Kim1fe00d52014-08-06 16:04:27 -0700663static void init_arraycache(struct array_cache *ac, int limit, int batch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664{
Catalin Marinasd5cff632009-06-11 13:22:40 +0100665 /*
666 * The array_cache structures contain pointers to free object.
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300667 * However, when such objects are allocated or transferred to another
Catalin Marinasd5cff632009-06-11 13:22:40 +0100668 * cache the pointers are not cleared and they could be counted as
669 * valid references during a kmemleak scan. Therefore, kmemleak must
670 * not scan such objects.
671 */
Joonsoo Kim1fe00d52014-08-06 16:04:27 -0700672 kmemleak_no_scan(ac);
673 if (ac) {
674 ac->avail = 0;
675 ac->limit = limit;
676 ac->batchcount = batch;
677 ac->touched = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 }
Joonsoo Kim1fe00d52014-08-06 16:04:27 -0700679}
680
681static struct array_cache *alloc_arraycache(int node, int entries,
682 int batchcount, gfp_t gfp)
683{
Joonsoo Kim5e804782014-08-06 16:04:40 -0700684 size_t memsize = sizeof(void *) * entries + sizeof(struct array_cache);
Joonsoo Kim1fe00d52014-08-06 16:04:27 -0700685 struct array_cache *ac = NULL;
686
687 ac = kmalloc_node(memsize, gfp, node);
688 init_arraycache(ac, entries, batchcount);
689 return ac;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690}
691
Joonsoo Kim8456a642013-10-24 10:07:49 +0900692static inline bool is_slab_pfmemalloc(struct page *page)
Mel Gorman072bb0a2012-07-31 16:43:58 -0700693{
Mel Gorman072bb0a2012-07-31 16:43:58 -0700694 return PageSlabPfmemalloc(page);
695}
696
697/* Clears pfmemalloc_active if no slabs have pfmalloc set */
698static void recheck_pfmemalloc_active(struct kmem_cache *cachep,
699 struct array_cache *ac)
700{
Christoph Lameter18bf8542014-08-06 16:04:11 -0700701 struct kmem_cache_node *n = get_node(cachep, numa_mem_id());
Joonsoo Kim8456a642013-10-24 10:07:49 +0900702 struct page *page;
Mel Gorman072bb0a2012-07-31 16:43:58 -0700703 unsigned long flags;
704
705 if (!pfmemalloc_active)
706 return;
707
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000708 spin_lock_irqsave(&n->list_lock, flags);
Joonsoo Kim8456a642013-10-24 10:07:49 +0900709 list_for_each_entry(page, &n->slabs_full, lru)
710 if (is_slab_pfmemalloc(page))
Mel Gorman072bb0a2012-07-31 16:43:58 -0700711 goto out;
712
Joonsoo Kim8456a642013-10-24 10:07:49 +0900713 list_for_each_entry(page, &n->slabs_partial, lru)
714 if (is_slab_pfmemalloc(page))
Mel Gorman072bb0a2012-07-31 16:43:58 -0700715 goto out;
716
Joonsoo Kim8456a642013-10-24 10:07:49 +0900717 list_for_each_entry(page, &n->slabs_free, lru)
718 if (is_slab_pfmemalloc(page))
Mel Gorman072bb0a2012-07-31 16:43:58 -0700719 goto out;
720
721 pfmemalloc_active = false;
722out:
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000723 spin_unlock_irqrestore(&n->list_lock, flags);
Mel Gorman072bb0a2012-07-31 16:43:58 -0700724}
725
Mel Gorman381760e2012-07-31 16:44:30 -0700726static void *__ac_get_obj(struct kmem_cache *cachep, struct array_cache *ac,
Mel Gorman072bb0a2012-07-31 16:43:58 -0700727 gfp_t flags, bool force_refill)
728{
729 int i;
730 void *objp = ac->entry[--ac->avail];
731
732 /* Ensure the caller is allowed to use objects from PFMEMALLOC slab */
733 if (unlikely(is_obj_pfmemalloc(objp))) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000734 struct kmem_cache_node *n;
Mel Gorman072bb0a2012-07-31 16:43:58 -0700735
736 if (gfp_pfmemalloc_allowed(flags)) {
737 clear_obj_pfmemalloc(&objp);
738 return objp;
739 }
740
741 /* The caller cannot use PFMEMALLOC objects, find another one */
Joonsoo Kimd014dc22012-09-17 14:09:06 -0700742 for (i = 0; i < ac->avail; i++) {
Mel Gorman072bb0a2012-07-31 16:43:58 -0700743 /* If a !PFMEMALLOC object is found, swap them */
744 if (!is_obj_pfmemalloc(ac->entry[i])) {
745 objp = ac->entry[i];
746 ac->entry[i] = ac->entry[ac->avail];
747 ac->entry[ac->avail] = objp;
748 return objp;
749 }
750 }
751
752 /*
753 * If there are empty slabs on the slabs_free list and we are
754 * being forced to refill the cache, mark this one !pfmemalloc.
755 */
Christoph Lameter18bf8542014-08-06 16:04:11 -0700756 n = get_node(cachep, numa_mem_id());
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000757 if (!list_empty(&n->slabs_free) && force_refill) {
Joonsoo Kim8456a642013-10-24 10:07:49 +0900758 struct page *page = virt_to_head_page(objp);
Joonsoo Kim7ecccf92013-10-24 10:07:50 +0900759 ClearPageSlabPfmemalloc(page);
Mel Gorman072bb0a2012-07-31 16:43:58 -0700760 clear_obj_pfmemalloc(&objp);
761 recheck_pfmemalloc_active(cachep, ac);
762 return objp;
763 }
764
765 /* No !PFMEMALLOC objects available */
766 ac->avail++;
767 objp = NULL;
768 }
769
770 return objp;
771}
772
Mel Gorman381760e2012-07-31 16:44:30 -0700773static inline void *ac_get_obj(struct kmem_cache *cachep,
774 struct array_cache *ac, gfp_t flags, bool force_refill)
775{
776 void *objp;
777
778 if (unlikely(sk_memalloc_socks()))
779 objp = __ac_get_obj(cachep, ac, flags, force_refill);
780 else
781 objp = ac->entry[--ac->avail];
782
783 return objp;
784}
785
786static void *__ac_put_obj(struct kmem_cache *cachep, struct array_cache *ac,
Mel Gorman072bb0a2012-07-31 16:43:58 -0700787 void *objp)
788{
789 if (unlikely(pfmemalloc_active)) {
790 /* Some pfmemalloc slabs exist, check if this is one */
Mel Gorman30c29be2012-09-17 14:09:03 -0700791 struct page *page = virt_to_head_page(objp);
Mel Gorman072bb0a2012-07-31 16:43:58 -0700792 if (PageSlabPfmemalloc(page))
793 set_obj_pfmemalloc(&objp);
794 }
795
Mel Gorman381760e2012-07-31 16:44:30 -0700796 return objp;
797}
798
799static inline void ac_put_obj(struct kmem_cache *cachep, struct array_cache *ac,
800 void *objp)
801{
802 if (unlikely(sk_memalloc_socks()))
803 objp = __ac_put_obj(cachep, ac, objp);
804
Mel Gorman072bb0a2012-07-31 16:43:58 -0700805 ac->entry[ac->avail++] = objp;
806}
807
Christoph Lameter3ded1752006-03-25 03:06:44 -0800808/*
809 * Transfer objects in one arraycache to another.
810 * Locking must be handled by the caller.
811 *
812 * Return the number of entries transferred.
813 */
814static int transfer_objects(struct array_cache *to,
815 struct array_cache *from, unsigned int max)
816{
817 /* Figure out how many entries to transfer */
Hagen Paul Pfeifer732eacc2010-10-26 14:22:23 -0700818 int nr = min3(from->avail, max, to->limit - to->avail);
Christoph Lameter3ded1752006-03-25 03:06:44 -0800819
820 if (!nr)
821 return 0;
822
823 memcpy(to->entry + to->avail, from->entry + from->avail -nr,
824 sizeof(void *) *nr);
825
826 from->avail -= nr;
827 to->avail += nr;
Christoph Lameter3ded1752006-03-25 03:06:44 -0800828 return nr;
829}
830
Christoph Lameter765c4502006-09-27 01:50:08 -0700831#ifndef CONFIG_NUMA
832
833#define drain_alien_cache(cachep, alien) do { } while (0)
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000834#define reap_alien(cachep, n) do { } while (0)
Christoph Lameter765c4502006-09-27 01:50:08 -0700835
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700836static inline struct alien_cache **alloc_alien_cache(int node,
837 int limit, gfp_t gfp)
Christoph Lameter765c4502006-09-27 01:50:08 -0700838{
Joonsoo Kima6406162014-08-06 16:04:38 -0700839 return NULL;
Christoph Lameter765c4502006-09-27 01:50:08 -0700840}
841
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700842static inline void free_alien_cache(struct alien_cache **ac_ptr)
Christoph Lameter765c4502006-09-27 01:50:08 -0700843{
844}
845
846static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
847{
848 return 0;
849}
850
851static inline void *alternate_node_alloc(struct kmem_cache *cachep,
852 gfp_t flags)
853{
854 return NULL;
855}
856
Christoph Hellwig8b98c162006-12-06 20:32:30 -0800857static inline void *____cache_alloc_node(struct kmem_cache *cachep,
Christoph Lameter765c4502006-09-27 01:50:08 -0700858 gfp_t flags, int nodeid)
859{
860 return NULL;
861}
862
863#else /* CONFIG_NUMA */
864
Christoph Hellwig8b98c162006-12-06 20:32:30 -0800865static void *____cache_alloc_node(struct kmem_cache *, gfp_t, int);
Paul Jacksonc61afb12006-03-24 03:16:08 -0800866static void *alternate_node_alloc(struct kmem_cache *, gfp_t);
Christoph Lameterdc85da12006-01-18 17:42:36 -0800867
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700868static struct alien_cache *__alloc_alien_cache(int node, int entries,
869 int batch, gfp_t gfp)
Christoph Lametere498be72005-09-09 13:03:32 -0700870{
Joonsoo Kim5e804782014-08-06 16:04:40 -0700871 size_t memsize = sizeof(void *) * entries + sizeof(struct alien_cache);
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700872 struct alien_cache *alc = NULL;
873
874 alc = kmalloc_node(memsize, gfp, node);
875 init_arraycache(&alc->ac, entries, batch);
Joonsoo Kim49dfc302014-08-06 16:04:31 -0700876 spin_lock_init(&alc->lock);
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700877 return alc;
878}
879
880static struct alien_cache **alloc_alien_cache(int node, int limit, gfp_t gfp)
881{
882 struct alien_cache **alc_ptr;
Joonsoo Kim5e804782014-08-06 16:04:40 -0700883 size_t memsize = sizeof(void *) * nr_node_ids;
Christoph Lametere498be72005-09-09 13:03:32 -0700884 int i;
885
886 if (limit > 1)
887 limit = 12;
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700888 alc_ptr = kzalloc_node(memsize, gfp, node);
889 if (!alc_ptr)
890 return NULL;
891
892 for_each_node(i) {
893 if (i == node || !node_online(i))
894 continue;
895 alc_ptr[i] = __alloc_alien_cache(node, limit, 0xbaadf00d, gfp);
896 if (!alc_ptr[i]) {
897 for (i--; i >= 0; i--)
898 kfree(alc_ptr[i]);
899 kfree(alc_ptr);
900 return NULL;
Christoph Lametere498be72005-09-09 13:03:32 -0700901 }
902 }
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700903 return alc_ptr;
Christoph Lametere498be72005-09-09 13:03:32 -0700904}
905
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700906static void free_alien_cache(struct alien_cache **alc_ptr)
Christoph Lametere498be72005-09-09 13:03:32 -0700907{
908 int i;
909
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700910 if (!alc_ptr)
Christoph Lametere498be72005-09-09 13:03:32 -0700911 return;
Christoph Lametere498be72005-09-09 13:03:32 -0700912 for_each_node(i)
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700913 kfree(alc_ptr[i]);
914 kfree(alc_ptr);
Christoph Lametere498be72005-09-09 13:03:32 -0700915}
916
Pekka Enberg343e0d72006-02-01 03:05:50 -0800917static void __drain_alien_cache(struct kmem_cache *cachep,
Joonsoo Kim833b7062014-08-06 16:04:33 -0700918 struct array_cache *ac, int node,
919 struct list_head *list)
Christoph Lametere498be72005-09-09 13:03:32 -0700920{
Christoph Lameter18bf8542014-08-06 16:04:11 -0700921 struct kmem_cache_node *n = get_node(cachep, node);
Christoph Lametere498be72005-09-09 13:03:32 -0700922
923 if (ac->avail) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000924 spin_lock(&n->list_lock);
Christoph Lametere00946f2006-03-25 03:06:45 -0800925 /*
926 * Stuff objects into the remote nodes shared array first.
927 * That way we could avoid the overhead of putting the objects
928 * into the free lists and getting them back later.
929 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000930 if (n->shared)
931 transfer_objects(n->shared, ac, ac->limit);
Christoph Lametere00946f2006-03-25 03:06:45 -0800932
Joonsoo Kim833b7062014-08-06 16:04:33 -0700933 free_block(cachep, ac->entry, ac->avail, node, list);
Christoph Lametere498be72005-09-09 13:03:32 -0700934 ac->avail = 0;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000935 spin_unlock(&n->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -0700936 }
937}
938
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800939/*
940 * Called from cache_reap() to regularly drain alien caches round robin.
941 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000942static void reap_alien(struct kmem_cache *cachep, struct kmem_cache_node *n)
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800943{
Christoph Lameter909ea962010-12-08 16:22:55 +0100944 int node = __this_cpu_read(slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800945
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000946 if (n->alien) {
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700947 struct alien_cache *alc = n->alien[node];
948 struct array_cache *ac;
Christoph Lametere00946f2006-03-25 03:06:45 -0800949
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700950 if (alc) {
951 ac = &alc->ac;
Joonsoo Kim49dfc302014-08-06 16:04:31 -0700952 if (ac->avail && spin_trylock_irq(&alc->lock)) {
Joonsoo Kim833b7062014-08-06 16:04:33 -0700953 LIST_HEAD(list);
954
955 __drain_alien_cache(cachep, ac, node, &list);
Joonsoo Kim49dfc302014-08-06 16:04:31 -0700956 spin_unlock_irq(&alc->lock);
Joonsoo Kim833b7062014-08-06 16:04:33 -0700957 slabs_destroy(cachep, &list);
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700958 }
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800959 }
960 }
961}
962
Andrew Mortona737b3e2006-03-22 00:08:11 -0800963static void drain_alien_cache(struct kmem_cache *cachep,
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700964 struct alien_cache **alien)
Christoph Lametere498be72005-09-09 13:03:32 -0700965{
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800966 int i = 0;
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700967 struct alien_cache *alc;
Christoph Lametere498be72005-09-09 13:03:32 -0700968 struct array_cache *ac;
969 unsigned long flags;
970
971 for_each_online_node(i) {
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700972 alc = alien[i];
973 if (alc) {
Joonsoo Kim833b7062014-08-06 16:04:33 -0700974 LIST_HEAD(list);
975
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700976 ac = &alc->ac;
Joonsoo Kim49dfc302014-08-06 16:04:31 -0700977 spin_lock_irqsave(&alc->lock, flags);
Joonsoo Kim833b7062014-08-06 16:04:33 -0700978 __drain_alien_cache(cachep, ac, i, &list);
Joonsoo Kim49dfc302014-08-06 16:04:31 -0700979 spin_unlock_irqrestore(&alc->lock, flags);
Joonsoo Kim833b7062014-08-06 16:04:33 -0700980 slabs_destroy(cachep, &list);
Christoph Lametere498be72005-09-09 13:03:32 -0700981 }
982 }
983}
Pekka Enberg729bd0b2006-06-23 02:03:05 -0700984
Ingo Molnar873623d2006-07-13 14:44:38 +0200985static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
Pekka Enberg729bd0b2006-06-23 02:03:05 -0700986{
Joonsoo Kim1ea991b2013-10-24 10:07:40 +0900987 int nodeid = page_to_nid(virt_to_page(objp));
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000988 struct kmem_cache_node *n;
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700989 struct alien_cache *alien = NULL;
990 struct array_cache *ac;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -0700991 int node;
Joonsoo Kim97654df2014-08-06 16:04:25 -0700992 LIST_HEAD(list);
Pekka Enberg1ca4cb22006-10-06 00:43:52 -0700993
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -0700994 node = numa_mem_id();
Pekka Enberg729bd0b2006-06-23 02:03:05 -0700995
996 /*
997 * Make sure we are not freeing a object from another node to the array
998 * cache on this cpu.
999 */
Joonsoo Kim1ea991b2013-10-24 10:07:40 +09001000 if (likely(nodeid == node))
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001001 return 0;
1002
Christoph Lameter18bf8542014-08-06 16:04:11 -07001003 n = get_node(cachep, node);
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001004 STATS_INC_NODEFREES(cachep);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001005 if (n->alien && n->alien[nodeid]) {
1006 alien = n->alien[nodeid];
Joonsoo Kimc8522a32014-08-06 16:04:29 -07001007 ac = &alien->ac;
Joonsoo Kim49dfc302014-08-06 16:04:31 -07001008 spin_lock(&alien->lock);
Joonsoo Kimc8522a32014-08-06 16:04:29 -07001009 if (unlikely(ac->avail == ac->limit)) {
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001010 STATS_INC_ACOVERFLOW(cachep);
Joonsoo Kim833b7062014-08-06 16:04:33 -07001011 __drain_alien_cache(cachep, ac, nodeid, &list);
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001012 }
Joonsoo Kimc8522a32014-08-06 16:04:29 -07001013 ac_put_obj(cachep, ac, objp);
Joonsoo Kim49dfc302014-08-06 16:04:31 -07001014 spin_unlock(&alien->lock);
Joonsoo Kim833b7062014-08-06 16:04:33 -07001015 slabs_destroy(cachep, &list);
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001016 } else {
Christoph Lameter18bf8542014-08-06 16:04:11 -07001017 n = get_node(cachep, nodeid);
1018 spin_lock(&n->list_lock);
Joonsoo Kim97654df2014-08-06 16:04:25 -07001019 free_block(cachep, &objp, 1, nodeid, &list);
Christoph Lameter18bf8542014-08-06 16:04:11 -07001020 spin_unlock(&n->list_lock);
Joonsoo Kim97654df2014-08-06 16:04:25 -07001021 slabs_destroy(cachep, &list);
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001022 }
1023 return 1;
1024}
Christoph Lametere498be72005-09-09 13:03:32 -07001025#endif
1026
David Rientjes8f9f8d92010-03-27 19:40:47 -07001027/*
Christoph Lameter6a673682013-01-10 19:14:19 +00001028 * Allocates and initializes node for a node on each slab cache, used for
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001029 * either memory or cpu hotplug. If memory is being hot-added, the kmem_cache_node
David Rientjes8f9f8d92010-03-27 19:40:47 -07001030 * will be allocated off-node since memory is not yet online for the new node.
Christoph Lameter6a673682013-01-10 19:14:19 +00001031 * When hotplugging memory or a cpu, existing node are not replaced if
David Rientjes8f9f8d92010-03-27 19:40:47 -07001032 * already in use.
1033 *
Christoph Lameter18004c52012-07-06 15:25:12 -05001034 * Must hold slab_mutex.
David Rientjes8f9f8d92010-03-27 19:40:47 -07001035 */
Christoph Lameter6a673682013-01-10 19:14:19 +00001036static int init_cache_node_node(int node)
David Rientjes8f9f8d92010-03-27 19:40:47 -07001037{
1038 struct kmem_cache *cachep;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001039 struct kmem_cache_node *n;
Joonsoo Kim5e804782014-08-06 16:04:40 -07001040 const size_t memsize = sizeof(struct kmem_cache_node);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001041
Christoph Lameter18004c52012-07-06 15:25:12 -05001042 list_for_each_entry(cachep, &slab_caches, list) {
David Rientjes8f9f8d92010-03-27 19:40:47 -07001043 /*
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08001044 * Set up the kmem_cache_node for cpu before we can
David Rientjes8f9f8d92010-03-27 19:40:47 -07001045 * begin anything. Make sure some other cpu on this
1046 * node has not already allocated this
1047 */
Christoph Lameter18bf8542014-08-06 16:04:11 -07001048 n = get_node(cachep, node);
1049 if (!n) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001050 n = kmalloc_node(memsize, GFP_KERNEL, node);
1051 if (!n)
David Rientjes8f9f8d92010-03-27 19:40:47 -07001052 return -ENOMEM;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001053 kmem_cache_node_init(n);
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08001054 n->next_reap = jiffies + REAPTIMEOUT_NODE +
1055 ((unsigned long)cachep) % REAPTIMEOUT_NODE;
David Rientjes8f9f8d92010-03-27 19:40:47 -07001056
1057 /*
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08001058 * The kmem_cache_nodes don't come and go as CPUs
1059 * come and go. slab_mutex is sufficient
David Rientjes8f9f8d92010-03-27 19:40:47 -07001060 * protection here.
1061 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001062 cachep->node[node] = n;
David Rientjes8f9f8d92010-03-27 19:40:47 -07001063 }
1064
Christoph Lameter18bf8542014-08-06 16:04:11 -07001065 spin_lock_irq(&n->list_lock);
1066 n->free_limit =
David Rientjes8f9f8d92010-03-27 19:40:47 -07001067 (1 + nr_cpus_node(node)) *
1068 cachep->batchcount + cachep->num;
Christoph Lameter18bf8542014-08-06 16:04:11 -07001069 spin_unlock_irq(&n->list_lock);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001070 }
1071 return 0;
1072}
1073
Wanpeng Li0fa81032013-07-04 08:33:22 +08001074static inline int slabs_tofree(struct kmem_cache *cachep,
1075 struct kmem_cache_node *n)
1076{
1077 return (n->free_objects + cachep->num - 1) / cachep->num;
1078}
1079
Paul Gortmaker0db06282013-06-19 14:53:51 -04001080static void cpuup_canceled(long cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081{
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001082 struct kmem_cache *cachep;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001083 struct kmem_cache_node *n = NULL;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07001084 int node = cpu_to_mem(cpu);
Rusty Russella70f7302009-03-13 14:49:46 +10301085 const struct cpumask *mask = cpumask_of_node(node);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001086
Christoph Lameter18004c52012-07-06 15:25:12 -05001087 list_for_each_entry(cachep, &slab_caches, list) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001088 struct array_cache *nc;
1089 struct array_cache *shared;
Joonsoo Kimc8522a32014-08-06 16:04:29 -07001090 struct alien_cache **alien;
Joonsoo Kim97654df2014-08-06 16:04:25 -07001091 LIST_HEAD(list);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001092
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001093 /* cpu is dead; no one can alloc from it. */
1094 nc = cachep->array[cpu];
1095 cachep->array[cpu] = NULL;
Christoph Lameter18bf8542014-08-06 16:04:11 -07001096 n = get_node(cachep, node);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001097
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001098 if (!n)
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001099 goto free_array_cache;
1100
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001101 spin_lock_irq(&n->list_lock);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001102
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001103 /* Free limit for this kmem_cache_node */
1104 n->free_limit -= cachep->batchcount;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001105 if (nc)
Joonsoo Kim97654df2014-08-06 16:04:25 -07001106 free_block(cachep, nc->entry, nc->avail, node, &list);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001107
Rusty Russell58463c12009-12-17 11:43:12 -06001108 if (!cpumask_empty(mask)) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001109 spin_unlock_irq(&n->list_lock);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001110 goto free_array_cache;
1111 }
1112
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001113 shared = n->shared;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001114 if (shared) {
1115 free_block(cachep, shared->entry,
Joonsoo Kim97654df2014-08-06 16:04:25 -07001116 shared->avail, node, &list);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001117 n->shared = NULL;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001118 }
1119
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001120 alien = n->alien;
1121 n->alien = NULL;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001122
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001123 spin_unlock_irq(&n->list_lock);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001124
1125 kfree(shared);
1126 if (alien) {
1127 drain_alien_cache(cachep, alien);
1128 free_alien_cache(alien);
1129 }
1130free_array_cache:
Joonsoo Kim97654df2014-08-06 16:04:25 -07001131 slabs_destroy(cachep, &list);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001132 kfree(nc);
1133 }
1134 /*
1135 * In the previous loop, all the objects were freed to
1136 * the respective cache's slabs, now we can go ahead and
1137 * shrink each nodelist to its limit.
1138 */
Christoph Lameter18004c52012-07-06 15:25:12 -05001139 list_for_each_entry(cachep, &slab_caches, list) {
Christoph Lameter18bf8542014-08-06 16:04:11 -07001140 n = get_node(cachep, node);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001141 if (!n)
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001142 continue;
Wanpeng Li0fa81032013-07-04 08:33:22 +08001143 drain_freelist(cachep, n, slabs_tofree(cachep, n));
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001144 }
1145}
1146
Paul Gortmaker0db06282013-06-19 14:53:51 -04001147static int cpuup_prepare(long cpu)
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001148{
Pekka Enberg343e0d72006-02-01 03:05:50 -08001149 struct kmem_cache *cachep;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001150 struct kmem_cache_node *n = NULL;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07001151 int node = cpu_to_mem(cpu);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001152 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001154 /*
1155 * We need to do this right in the beginning since
1156 * alloc_arraycache's are going to use this list.
1157 * kmalloc_node allows us to add the slab to the right
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001158 * kmem_cache_node and not this cpu's kmem_cache_node
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001159 */
Christoph Lameter6a673682013-01-10 19:14:19 +00001160 err = init_cache_node_node(node);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001161 if (err < 0)
1162 goto bad;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001163
1164 /*
1165 * Now we can go ahead with allocating the shared arrays and
1166 * array caches
1167 */
Christoph Lameter18004c52012-07-06 15:25:12 -05001168 list_for_each_entry(cachep, &slab_caches, list) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001169 struct array_cache *nc;
1170 struct array_cache *shared = NULL;
Joonsoo Kimc8522a32014-08-06 16:04:29 -07001171 struct alien_cache **alien = NULL;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001172
1173 nc = alloc_arraycache(node, cachep->limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03001174 cachep->batchcount, GFP_KERNEL);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001175 if (!nc)
1176 goto bad;
1177 if (cachep->shared) {
1178 shared = alloc_arraycache(node,
1179 cachep->shared * cachep->batchcount,
Pekka Enberg83b519e2009-06-10 19:40:04 +03001180 0xbaadf00d, GFP_KERNEL);
Akinobu Mita12d00f62007-10-18 03:05:11 -07001181 if (!shared) {
1182 kfree(nc);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001183 goto bad;
Akinobu Mita12d00f62007-10-18 03:05:11 -07001184 }
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001185 }
1186 if (use_alien_caches) {
Pekka Enberg83b519e2009-06-10 19:40:04 +03001187 alien = alloc_alien_cache(node, cachep->limit, GFP_KERNEL);
Akinobu Mita12d00f62007-10-18 03:05:11 -07001188 if (!alien) {
1189 kfree(shared);
1190 kfree(nc);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001191 goto bad;
Akinobu Mita12d00f62007-10-18 03:05:11 -07001192 }
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001193 }
1194 cachep->array[cpu] = nc;
Christoph Lameter18bf8542014-08-06 16:04:11 -07001195 n = get_node(cachep, node);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001196 BUG_ON(!n);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001197
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001198 spin_lock_irq(&n->list_lock);
1199 if (!n->shared) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001200 /*
1201 * We are serialised from CPU_DEAD or
1202 * CPU_UP_CANCELLED by the cpucontrol lock
1203 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001204 n->shared = shared;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001205 shared = NULL;
1206 }
1207#ifdef CONFIG_NUMA
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001208 if (!n->alien) {
1209 n->alien = alien;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001210 alien = NULL;
1211 }
1212#endif
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001213 spin_unlock_irq(&n->list_lock);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001214 kfree(shared);
1215 free_alien_cache(alien);
1216 }
Pekka Enbergce79ddc2009-11-23 22:01:15 +02001217
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001218 return 0;
1219bad:
Akinobu Mita12d00f62007-10-18 03:05:11 -07001220 cpuup_canceled(cpu);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001221 return -ENOMEM;
1222}
1223
Paul Gortmaker0db06282013-06-19 14:53:51 -04001224static int cpuup_callback(struct notifier_block *nfb,
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001225 unsigned long action, void *hcpu)
1226{
1227 long cpu = (long)hcpu;
1228 int err = 0;
1229
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 switch (action) {
Heiko Carstens38c3bd92007-05-09 02:34:05 -07001231 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001232 case CPU_UP_PREPARE_FROZEN:
Christoph Lameter18004c52012-07-06 15:25:12 -05001233 mutex_lock(&slab_mutex);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001234 err = cpuup_prepare(cpu);
Christoph Lameter18004c52012-07-06 15:25:12 -05001235 mutex_unlock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 break;
1237 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001238 case CPU_ONLINE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 start_cpu_timer(cpu);
1240 break;
1241#ifdef CONFIG_HOTPLUG_CPU
Christoph Lameter5830c592007-05-09 02:34:22 -07001242 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001243 case CPU_DOWN_PREPARE_FROZEN:
Christoph Lameter5830c592007-05-09 02:34:22 -07001244 /*
Christoph Lameter18004c52012-07-06 15:25:12 -05001245 * Shutdown cache reaper. Note that the slab_mutex is
Christoph Lameter5830c592007-05-09 02:34:22 -07001246 * held so that if cache_reap() is invoked it cannot do
1247 * anything expensive but will only modify reap_work
1248 * and reschedule the timer.
1249 */
Tejun Heoafe2c512010-12-14 16:21:17 +01001250 cancel_delayed_work_sync(&per_cpu(slab_reap_work, cpu));
Christoph Lameter5830c592007-05-09 02:34:22 -07001251 /* Now the cache_reaper is guaranteed to be not running. */
Tejun Heo1871e522009-10-29 22:34:13 +09001252 per_cpu(slab_reap_work, cpu).work.func = NULL;
Christoph Lameter5830c592007-05-09 02:34:22 -07001253 break;
1254 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001255 case CPU_DOWN_FAILED_FROZEN:
Christoph Lameter5830c592007-05-09 02:34:22 -07001256 start_cpu_timer(cpu);
1257 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001259 case CPU_DEAD_FROZEN:
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001260 /*
1261 * Even if all the cpus of a node are down, we don't free the
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001262 * kmem_cache_node of any cache. This to avoid a race between
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001263 * cpu_down, and a kmalloc allocation from another cpu for
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001264 * memory from the node of the cpu going down. The node
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001265 * structure is usually allocated from kmem_cache_create() and
1266 * gets destroyed at kmem_cache_destroy().
1267 */
Simon Arlott183ff222007-10-20 01:27:18 +02001268 /* fall through */
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08001269#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001271 case CPU_UP_CANCELED_FROZEN:
Christoph Lameter18004c52012-07-06 15:25:12 -05001272 mutex_lock(&slab_mutex);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001273 cpuup_canceled(cpu);
Christoph Lameter18004c52012-07-06 15:25:12 -05001274 mutex_unlock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 }
Akinobu Mitaeac40682010-05-26 14:43:32 -07001277 return notifier_from_errno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278}
1279
Paul Gortmaker0db06282013-06-19 14:53:51 -04001280static struct notifier_block cpucache_notifier = {
Chandra Seetharaman74b85f32006-06-27 02:54:09 -07001281 &cpuup_callback, NULL, 0
1282};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
David Rientjes8f9f8d92010-03-27 19:40:47 -07001284#if defined(CONFIG_NUMA) && defined(CONFIG_MEMORY_HOTPLUG)
1285/*
1286 * Drains freelist for a node on each slab cache, used for memory hot-remove.
1287 * Returns -EBUSY if all objects cannot be drained so that the node is not
1288 * removed.
1289 *
Christoph Lameter18004c52012-07-06 15:25:12 -05001290 * Must hold slab_mutex.
David Rientjes8f9f8d92010-03-27 19:40:47 -07001291 */
Christoph Lameter6a673682013-01-10 19:14:19 +00001292static int __meminit drain_cache_node_node(int node)
David Rientjes8f9f8d92010-03-27 19:40:47 -07001293{
1294 struct kmem_cache *cachep;
1295 int ret = 0;
1296
Christoph Lameter18004c52012-07-06 15:25:12 -05001297 list_for_each_entry(cachep, &slab_caches, list) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001298 struct kmem_cache_node *n;
David Rientjes8f9f8d92010-03-27 19:40:47 -07001299
Christoph Lameter18bf8542014-08-06 16:04:11 -07001300 n = get_node(cachep, node);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001301 if (!n)
David Rientjes8f9f8d92010-03-27 19:40:47 -07001302 continue;
1303
Wanpeng Li0fa81032013-07-04 08:33:22 +08001304 drain_freelist(cachep, n, slabs_tofree(cachep, n));
David Rientjes8f9f8d92010-03-27 19:40:47 -07001305
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001306 if (!list_empty(&n->slabs_full) ||
1307 !list_empty(&n->slabs_partial)) {
David Rientjes8f9f8d92010-03-27 19:40:47 -07001308 ret = -EBUSY;
1309 break;
1310 }
1311 }
1312 return ret;
1313}
1314
1315static int __meminit slab_memory_callback(struct notifier_block *self,
1316 unsigned long action, void *arg)
1317{
1318 struct memory_notify *mnb = arg;
1319 int ret = 0;
1320 int nid;
1321
1322 nid = mnb->status_change_nid;
1323 if (nid < 0)
1324 goto out;
1325
1326 switch (action) {
1327 case MEM_GOING_ONLINE:
Christoph Lameter18004c52012-07-06 15:25:12 -05001328 mutex_lock(&slab_mutex);
Christoph Lameter6a673682013-01-10 19:14:19 +00001329 ret = init_cache_node_node(nid);
Christoph Lameter18004c52012-07-06 15:25:12 -05001330 mutex_unlock(&slab_mutex);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001331 break;
1332 case MEM_GOING_OFFLINE:
Christoph Lameter18004c52012-07-06 15:25:12 -05001333 mutex_lock(&slab_mutex);
Christoph Lameter6a673682013-01-10 19:14:19 +00001334 ret = drain_cache_node_node(nid);
Christoph Lameter18004c52012-07-06 15:25:12 -05001335 mutex_unlock(&slab_mutex);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001336 break;
1337 case MEM_ONLINE:
1338 case MEM_OFFLINE:
1339 case MEM_CANCEL_ONLINE:
1340 case MEM_CANCEL_OFFLINE:
1341 break;
1342 }
1343out:
Prarit Bhargava5fda1bd2011-03-22 16:30:49 -07001344 return notifier_from_errno(ret);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001345}
1346#endif /* CONFIG_NUMA && CONFIG_MEMORY_HOTPLUG */
1347
Christoph Lametere498be72005-09-09 13:03:32 -07001348/*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001349 * swap the static kmem_cache_node with kmalloced memory
Christoph Lametere498be72005-09-09 13:03:32 -07001350 */
Christoph Lameter6744f082013-01-10 19:12:17 +00001351static void __init init_list(struct kmem_cache *cachep, struct kmem_cache_node *list,
David Rientjes8f9f8d92010-03-27 19:40:47 -07001352 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07001353{
Christoph Lameter6744f082013-01-10 19:12:17 +00001354 struct kmem_cache_node *ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001355
Christoph Lameter6744f082013-01-10 19:12:17 +00001356 ptr = kmalloc_node(sizeof(struct kmem_cache_node), GFP_NOWAIT, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07001357 BUG_ON(!ptr);
1358
Christoph Lameter6744f082013-01-10 19:12:17 +00001359 memcpy(ptr, list, sizeof(struct kmem_cache_node));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001360 /*
1361 * Do not assume that spinlocks can be initialized via memcpy:
1362 */
1363 spin_lock_init(&ptr->list_lock);
1364
Christoph Lametere498be72005-09-09 13:03:32 -07001365 MAKE_ALL_LISTS(cachep, ptr, nodeid);
Christoph Lameter6a673682013-01-10 19:14:19 +00001366 cachep->node[nodeid] = ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001367}
1368
Andrew Mortona737b3e2006-03-22 00:08:11 -08001369/*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001370 * For setting up all the kmem_cache_node for cache whose buffer_size is same as
1371 * size of kmem_cache_node.
Pekka Enberg556a1692008-01-25 08:20:51 +02001372 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001373static void __init set_up_node(struct kmem_cache *cachep, int index)
Pekka Enberg556a1692008-01-25 08:20:51 +02001374{
1375 int node;
1376
1377 for_each_online_node(node) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001378 cachep->node[node] = &init_kmem_cache_node[index + node];
Christoph Lameter6a673682013-01-10 19:14:19 +00001379 cachep->node[node]->next_reap = jiffies +
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08001380 REAPTIMEOUT_NODE +
1381 ((unsigned long)cachep) % REAPTIMEOUT_NODE;
Pekka Enberg556a1692008-01-25 08:20:51 +02001382 }
1383}
1384
1385/*
Christoph Lameter3c583462012-11-28 16:23:01 +00001386 * The memory after the last cpu cache pointer is used for the
Christoph Lameter6a673682013-01-10 19:14:19 +00001387 * the node pointer.
Christoph Lameter3c583462012-11-28 16:23:01 +00001388 */
Christoph Lameter6a673682013-01-10 19:14:19 +00001389static void setup_node_pointer(struct kmem_cache *cachep)
Christoph Lameter3c583462012-11-28 16:23:01 +00001390{
Christoph Lameter6a673682013-01-10 19:14:19 +00001391 cachep->node = (struct kmem_cache_node **)&cachep->array[nr_cpu_ids];
Christoph Lameter3c583462012-11-28 16:23:01 +00001392}
1393
1394/*
Andrew Mortona737b3e2006-03-22 00:08:11 -08001395 * Initialisation. Called after the page allocator have been initialised and
1396 * before smp_init().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 */
1398void __init kmem_cache_init(void)
1399{
Christoph Lametere498be72005-09-09 13:03:32 -07001400 int i;
1401
Joonsoo Kim68126702013-10-24 10:07:42 +09001402 BUILD_BUG_ON(sizeof(((struct page *)NULL)->lru) <
1403 sizeof(struct rcu_head));
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001404 kmem_cache = &kmem_cache_boot;
Christoph Lameter6a673682013-01-10 19:14:19 +00001405 setup_node_pointer(kmem_cache);
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001406
Mel Gormanb6e68bc2009-06-16 15:32:16 -07001407 if (num_possible_nodes() == 1)
Siddha, Suresh B62918a02007-05-02 19:27:18 +02001408 use_alien_caches = 0;
1409
Christoph Lameter3c583462012-11-28 16:23:01 +00001410 for (i = 0; i < NUM_INIT_LISTS; i++)
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001411 kmem_cache_node_init(&init_kmem_cache_node[i]);
Christoph Lameter3c583462012-11-28 16:23:01 +00001412
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001413 set_up_node(kmem_cache, CACHE_CACHE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414
1415 /*
1416 * Fragmentation resistance on low memory - only use bigger
David Rientjes3df1ccc2011-10-18 22:09:28 -07001417 * page orders on machines with more than 32MB of memory if
1418 * not overridden on the command line.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 */
David Rientjes3df1ccc2011-10-18 22:09:28 -07001420 if (!slab_max_order_set && totalram_pages > (32 << 20) >> PAGE_SHIFT)
David Rientjes543585c2011-10-18 22:09:24 -07001421 slab_max_order = SLAB_MAX_ORDER_HI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 /* Bootstrap is tricky, because several objects are allocated
1424 * from caches that do not exist yet:
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001425 * 1) initialize the kmem_cache cache: it contains the struct
1426 * kmem_cache structures of all caches, except kmem_cache itself:
1427 * kmem_cache is statically allocated.
Christoph Lametere498be72005-09-09 13:03:32 -07001428 * Initially an __init data area is used for the head array and the
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001429 * kmem_cache_node structures, it's replaced with a kmalloc allocated
Christoph Lametere498be72005-09-09 13:03:32 -07001430 * array at the end of the bootstrap.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 * 2) Create the first kmalloc cache.
Pekka Enberg343e0d72006-02-01 03:05:50 -08001432 * The struct kmem_cache for the new cache is allocated normally.
Christoph Lametere498be72005-09-09 13:03:32 -07001433 * An __init data area is used for the head array.
1434 * 3) Create the remaining kmalloc caches, with minimally sized
1435 * head arrays.
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001436 * 4) Replace the __init data head arrays for kmem_cache and the first
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 * kmalloc cache with kmalloc allocated arrays.
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001438 * 5) Replace the __init data for kmem_cache_node for kmem_cache and
Christoph Lametere498be72005-09-09 13:03:32 -07001439 * the other cache's with kmalloc allocated memory.
1440 * 6) Resize the head arrays of the kmalloc caches to their final sizes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 */
1442
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001443 /* 1) create the kmem_cache */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444
Eric Dumazet8da34302007-05-06 14:49:29 -07001445 /*
Eric Dumazetb56efcf2011-07-20 19:04:23 +02001446 * struct kmem_cache size depends on nr_node_ids & nr_cpu_ids
Eric Dumazet8da34302007-05-06 14:49:29 -07001447 */
Christoph Lameter2f9baa92012-11-28 16:23:09 +00001448 create_boot_cache(kmem_cache, "kmem_cache",
1449 offsetof(struct kmem_cache, array[nr_cpu_ids]) +
Christoph Lameter6744f082013-01-10 19:12:17 +00001450 nr_node_ids * sizeof(struct kmem_cache_node *),
Christoph Lameter2f9baa92012-11-28 16:23:09 +00001451 SLAB_HWCACHE_ALIGN);
1452 list_add(&kmem_cache->list, &slab_caches);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453
1454 /* 2+3) create the kmalloc caches */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455
Andrew Mortona737b3e2006-03-22 00:08:11 -08001456 /*
1457 * Initialize the caches that provide memory for the array cache and the
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001458 * kmem_cache_node structures first. Without this, further allocations will
Andrew Mortona737b3e2006-03-22 00:08:11 -08001459 * bug.
Christoph Lametere498be72005-09-09 13:03:32 -07001460 */
1461
Christoph Lametere3366012013-01-10 19:14:18 +00001462 kmalloc_caches[INDEX_AC] = create_kmalloc_cache("kmalloc-ac",
1463 kmalloc_size(INDEX_AC), ARCH_KMALLOC_FLAGS);
Christoph Lametere498be72005-09-09 13:03:32 -07001464
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001465 if (INDEX_AC != INDEX_NODE)
1466 kmalloc_caches[INDEX_NODE] =
1467 create_kmalloc_cache("kmalloc-node",
1468 kmalloc_size(INDEX_NODE), ARCH_KMALLOC_FLAGS);
Christoph Lametere498be72005-09-09 13:03:32 -07001469
Ingo Molnare0a42722006-06-23 02:03:46 -07001470 slab_early_init = 0;
1471
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 /* 4) Replace the bootstrap head arrays */
1473 {
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001474 struct array_cache *ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001475
Pekka Enberg83b519e2009-06-10 19:40:04 +03001476 ptr = kmalloc(sizeof(struct arraycache_init), GFP_NOWAIT);
Christoph Lametere498be72005-09-09 13:03:32 -07001477
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001478 memcpy(ptr, cpu_cache_get(kmem_cache),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001479 sizeof(struct arraycache_init));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001480
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001481 kmem_cache->array[smp_processor_id()] = ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001482
Pekka Enberg83b519e2009-06-10 19:40:04 +03001483 ptr = kmalloc(sizeof(struct arraycache_init), GFP_NOWAIT);
Christoph Lametere498be72005-09-09 13:03:32 -07001484
Christoph Lametere3366012013-01-10 19:14:18 +00001485 BUG_ON(cpu_cache_get(kmalloc_caches[INDEX_AC])
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001486 != &initarray_generic.cache);
Christoph Lametere3366012013-01-10 19:14:18 +00001487 memcpy(ptr, cpu_cache_get(kmalloc_caches[INDEX_AC]),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001488 sizeof(struct arraycache_init));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001489
Christoph Lametere3366012013-01-10 19:14:18 +00001490 kmalloc_caches[INDEX_AC]->array[smp_processor_id()] = ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001492 /* 5) Replace the bootstrap kmem_cache_node */
Christoph Lametere498be72005-09-09 13:03:32 -07001493 {
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001494 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495
Mel Gorman9c09a952008-01-24 05:49:54 -08001496 for_each_online_node(nid) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001497 init_list(kmem_cache, &init_kmem_cache_node[CACHE_CACHE + nid], nid);
Pekka Enberg556a1692008-01-25 08:20:51 +02001498
Christoph Lametere3366012013-01-10 19:14:18 +00001499 init_list(kmalloc_caches[INDEX_AC],
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001500 &init_kmem_cache_node[SIZE_AC + nid], nid);
Christoph Lametere498be72005-09-09 13:03:32 -07001501
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001502 if (INDEX_AC != INDEX_NODE) {
1503 init_list(kmalloc_caches[INDEX_NODE],
1504 &init_kmem_cache_node[SIZE_NODE + nid], nid);
Christoph Lametere498be72005-09-09 13:03:32 -07001505 }
1506 }
1507 }
1508
Christoph Lameterf97d5f62013-01-10 19:12:17 +00001509 create_kmalloc_caches(ARCH_KMALLOC_FLAGS);
Pekka Enberg8429db52009-06-12 15:58:59 +03001510}
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -07001511
Pekka Enberg8429db52009-06-12 15:58:59 +03001512void __init kmem_cache_init_late(void)
1513{
1514 struct kmem_cache *cachep;
1515
Christoph Lameter97d06602012-07-06 15:25:11 -05001516 slab_state = UP;
Peter Zijlstra52cef182011-11-28 21:12:40 +01001517
Pekka Enberg8429db52009-06-12 15:58:59 +03001518 /* 6) resize the head arrays to their final sizes */
Christoph Lameter18004c52012-07-06 15:25:12 -05001519 mutex_lock(&slab_mutex);
1520 list_for_each_entry(cachep, &slab_caches, list)
Pekka Enberg8429db52009-06-12 15:58:59 +03001521 if (enable_cpucache(cachep, GFP_NOWAIT))
1522 BUG();
Christoph Lameter18004c52012-07-06 15:25:12 -05001523 mutex_unlock(&slab_mutex);
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -07001524
Christoph Lameter97d06602012-07-06 15:25:11 -05001525 /* Done! */
1526 slab_state = FULL;
1527
Andrew Mortona737b3e2006-03-22 00:08:11 -08001528 /*
1529 * Register a cpu startup notifier callback that initializes
1530 * cpu_cache_get for all new cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 */
1532 register_cpu_notifier(&cpucache_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533
David Rientjes8f9f8d92010-03-27 19:40:47 -07001534#ifdef CONFIG_NUMA
1535 /*
1536 * Register a memory hotplug callback that initializes and frees
Christoph Lameter6a673682013-01-10 19:14:19 +00001537 * node.
David Rientjes8f9f8d92010-03-27 19:40:47 -07001538 */
1539 hotplug_memory_notifier(slab_memory_callback, SLAB_CALLBACK_PRI);
1540#endif
1541
Andrew Mortona737b3e2006-03-22 00:08:11 -08001542 /*
1543 * The reap timers are started later, with a module init call: That part
1544 * of the kernel is not yet operational.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 */
1546}
1547
1548static int __init cpucache_init(void)
1549{
1550 int cpu;
1551
Andrew Mortona737b3e2006-03-22 00:08:11 -08001552 /*
1553 * Register the timers that return unneeded pages to the page allocator
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 */
Christoph Lametere498be72005-09-09 13:03:32 -07001555 for_each_online_cpu(cpu)
Andrew Mortona737b3e2006-03-22 00:08:11 -08001556 start_cpu_timer(cpu);
Glauber Costaa164f8962012-06-21 00:59:18 +04001557
1558 /* Done! */
Christoph Lameter97d06602012-07-06 15:25:11 -05001559 slab_state = FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 return 0;
1561}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562__initcall(cpucache_init);
1563
Rafael Aquini8bdec192012-03-09 17:27:27 -03001564static noinline void
1565slab_out_of_memory(struct kmem_cache *cachep, gfp_t gfpflags, int nodeid)
1566{
David Rientjes9a02d692014-06-04 16:06:36 -07001567#if DEBUG
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001568 struct kmem_cache_node *n;
Joonsoo Kim8456a642013-10-24 10:07:49 +09001569 struct page *page;
Rafael Aquini8bdec192012-03-09 17:27:27 -03001570 unsigned long flags;
1571 int node;
David Rientjes9a02d692014-06-04 16:06:36 -07001572 static DEFINE_RATELIMIT_STATE(slab_oom_rs, DEFAULT_RATELIMIT_INTERVAL,
1573 DEFAULT_RATELIMIT_BURST);
1574
1575 if ((gfpflags & __GFP_NOWARN) || !__ratelimit(&slab_oom_rs))
1576 return;
Rafael Aquini8bdec192012-03-09 17:27:27 -03001577
1578 printk(KERN_WARNING
1579 "SLAB: Unable to allocate memory on node %d (gfp=0x%x)\n",
1580 nodeid, gfpflags);
1581 printk(KERN_WARNING " cache: %s, object size: %d, order: %d\n",
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05001582 cachep->name, cachep->size, cachep->gfporder);
Rafael Aquini8bdec192012-03-09 17:27:27 -03001583
Christoph Lameter18bf8542014-08-06 16:04:11 -07001584 for_each_kmem_cache_node(cachep, node, n) {
Rafael Aquini8bdec192012-03-09 17:27:27 -03001585 unsigned long active_objs = 0, num_objs = 0, free_objects = 0;
1586 unsigned long active_slabs = 0, num_slabs = 0;
1587
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001588 spin_lock_irqsave(&n->list_lock, flags);
Joonsoo Kim8456a642013-10-24 10:07:49 +09001589 list_for_each_entry(page, &n->slabs_full, lru) {
Rafael Aquini8bdec192012-03-09 17:27:27 -03001590 active_objs += cachep->num;
1591 active_slabs++;
1592 }
Joonsoo Kim8456a642013-10-24 10:07:49 +09001593 list_for_each_entry(page, &n->slabs_partial, lru) {
1594 active_objs += page->active;
Rafael Aquini8bdec192012-03-09 17:27:27 -03001595 active_slabs++;
1596 }
Joonsoo Kim8456a642013-10-24 10:07:49 +09001597 list_for_each_entry(page, &n->slabs_free, lru)
Rafael Aquini8bdec192012-03-09 17:27:27 -03001598 num_slabs++;
1599
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001600 free_objects += n->free_objects;
1601 spin_unlock_irqrestore(&n->list_lock, flags);
Rafael Aquini8bdec192012-03-09 17:27:27 -03001602
1603 num_slabs += active_slabs;
1604 num_objs = num_slabs * cachep->num;
1605 printk(KERN_WARNING
1606 " node %d: slabs: %ld/%ld, objs: %ld/%ld, free: %ld\n",
1607 node, active_slabs, num_slabs, active_objs, num_objs,
1608 free_objects);
1609 }
David Rientjes9a02d692014-06-04 16:06:36 -07001610#endif
Rafael Aquini8bdec192012-03-09 17:27:27 -03001611}
1612
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613/*
Wang Sheng-Hui8a7d9b42014-08-06 16:04:46 -07001614 * Interface to system's page allocator. No need to hold the
1615 * kmem_cache_node ->list_lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 *
1617 * If we requested dmaable memory, we will get it. Even if we
1618 * did not request dmaable memory, we might get it, but that
1619 * would be relatively rare and ignorable.
1620 */
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09001621static struct page *kmem_getpages(struct kmem_cache *cachep, gfp_t flags,
1622 int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623{
1624 struct page *page;
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001625 int nr_pages;
Christoph Lameter765c4502006-09-27 01:50:08 -07001626
Glauber Costaa618e892012-06-14 16:17:21 +04001627 flags |= cachep->allocflags;
Mel Gormane12ba742007-10-16 01:25:52 -07001628 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1629 flags |= __GFP_RECLAIMABLE;
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001630
Vladimir Davydov5dfb4172014-06-04 16:06:38 -07001631 if (memcg_charge_slab(cachep, flags, cachep->gfporder))
1632 return NULL;
1633
Linus Torvalds517d0862009-06-16 19:50:13 -07001634 page = alloc_pages_exact_node(nodeid, flags | __GFP_NOTRACK, cachep->gfporder);
Rafael Aquini8bdec192012-03-09 17:27:27 -03001635 if (!page) {
Vladimir Davydov5dfb4172014-06-04 16:06:38 -07001636 memcg_uncharge_slab(cachep, cachep->gfporder);
David Rientjes9a02d692014-06-04 16:06:36 -07001637 slab_out_of_memory(cachep, flags, nodeid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638 return NULL;
Rafael Aquini8bdec192012-03-09 17:27:27 -03001639 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640
Mel Gormanb37f1dd2012-07-31 16:44:03 -07001641 /* Record if ALLOC_NO_WATERMARKS was set when allocating the slab */
Mel Gorman072bb0a2012-07-31 16:43:58 -07001642 if (unlikely(page->pfmemalloc))
1643 pfmemalloc_active = true;
1644
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001645 nr_pages = (1 << cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
Christoph Lameter972d1a72006-09-25 23:31:51 -07001647 add_zone_page_state(page_zone(page),
1648 NR_SLAB_RECLAIMABLE, nr_pages);
1649 else
1650 add_zone_page_state(page_zone(page),
1651 NR_SLAB_UNRECLAIMABLE, nr_pages);
Joonsoo Kima57a4982013-10-24 10:07:44 +09001652 __SetPageSlab(page);
1653 if (page->pfmemalloc)
1654 SetPageSlabPfmemalloc(page);
Mel Gorman072bb0a2012-07-31 16:43:58 -07001655
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001656 if (kmemcheck_enabled && !(cachep->flags & SLAB_NOTRACK)) {
1657 kmemcheck_alloc_shadow(page, cachep->gfporder, flags, nodeid);
1658
1659 if (cachep->ctor)
1660 kmemcheck_mark_uninitialized_pages(page, nr_pages);
1661 else
1662 kmemcheck_mark_unallocated_pages(page, nr_pages);
1663 }
Pekka Enbergc175eea2008-05-09 20:35:53 +02001664
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09001665 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666}
1667
1668/*
1669 * Interface to system's page release.
1670 */
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09001671static void kmem_freepages(struct kmem_cache *cachep, struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672{
Joonsoo Kima57a4982013-10-24 10:07:44 +09001673 const unsigned long nr_freed = (1 << cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001675 kmemcheck_free_shadow(page, cachep->gfporder);
Pekka Enbergc175eea2008-05-09 20:35:53 +02001676
Christoph Lameter972d1a72006-09-25 23:31:51 -07001677 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1678 sub_zone_page_state(page_zone(page),
1679 NR_SLAB_RECLAIMABLE, nr_freed);
1680 else
1681 sub_zone_page_state(page_zone(page),
1682 NR_SLAB_UNRECLAIMABLE, nr_freed);
Joonsoo Kim73293c22013-10-24 10:07:37 +09001683
Joonsoo Kima57a4982013-10-24 10:07:44 +09001684 BUG_ON(!PageSlab(page));
Joonsoo Kim73293c22013-10-24 10:07:37 +09001685 __ClearPageSlabPfmemalloc(page);
Joonsoo Kima57a4982013-10-24 10:07:44 +09001686 __ClearPageSlab(page);
Joonsoo Kim8456a642013-10-24 10:07:49 +09001687 page_mapcount_reset(page);
1688 page->mapping = NULL;
Glauber Costa1f458cb2012-12-18 14:22:50 -08001689
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 if (current->reclaim_state)
1691 current->reclaim_state->reclaimed_slab += nr_freed;
Vladimir Davydov5dfb4172014-06-04 16:06:38 -07001692 __free_pages(page, cachep->gfporder);
1693 memcg_uncharge_slab(cachep, cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694}
1695
1696static void kmem_rcu_free(struct rcu_head *head)
1697{
Joonsoo Kim68126702013-10-24 10:07:42 +09001698 struct kmem_cache *cachep;
1699 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700
Joonsoo Kim68126702013-10-24 10:07:42 +09001701 page = container_of(head, struct page, rcu_head);
1702 cachep = page->slab_cache;
1703
1704 kmem_freepages(cachep, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705}
1706
1707#if DEBUG
1708
1709#ifdef CONFIG_DEBUG_PAGEALLOC
Pekka Enberg343e0d72006-02-01 03:05:50 -08001710static void store_stackinfo(struct kmem_cache *cachep, unsigned long *addr,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001711 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712{
Christoph Lameter8c138bc2012-06-13 10:24:58 -05001713 int size = cachep->object_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001715 addr = (unsigned long *)&((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001716
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001717 if (size < 5 * sizeof(unsigned long))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 return;
1719
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001720 *addr++ = 0x12345678;
1721 *addr++ = caller;
1722 *addr++ = smp_processor_id();
1723 size -= 3 * sizeof(unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 {
1725 unsigned long *sptr = &caller;
1726 unsigned long svalue;
1727
1728 while (!kstack_end(sptr)) {
1729 svalue = *sptr++;
1730 if (kernel_text_address(svalue)) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001731 *addr++ = svalue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732 size -= sizeof(unsigned long);
1733 if (size <= sizeof(unsigned long))
1734 break;
1735 }
1736 }
1737
1738 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001739 *addr++ = 0x87654321;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740}
1741#endif
1742
Pekka Enberg343e0d72006-02-01 03:05:50 -08001743static void poison_obj(struct kmem_cache *cachep, void *addr, unsigned char val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744{
Christoph Lameter8c138bc2012-06-13 10:24:58 -05001745 int size = cachep->object_size;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001746 addr = &((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747
1748 memset(addr, val, size);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001749 *(unsigned char *)(addr + size - 1) = POISON_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001750}
1751
1752static void dump_line(char *data, int offset, int limit)
1753{
1754 int i;
Dave Jonesaa83aa42006-09-29 01:59:51 -07001755 unsigned char error = 0;
1756 int bad_count = 0;
1757
Sebastian Andrzej Siewiorfdde6ab2011-07-29 18:22:13 +02001758 printk(KERN_ERR "%03x: ", offset);
Dave Jonesaa83aa42006-09-29 01:59:51 -07001759 for (i = 0; i < limit; i++) {
1760 if (data[offset + i] != POISON_FREE) {
1761 error = data[offset + i];
1762 bad_count++;
1763 }
Dave Jonesaa83aa42006-09-29 01:59:51 -07001764 }
Sebastian Andrzej Siewiorfdde6ab2011-07-29 18:22:13 +02001765 print_hex_dump(KERN_CONT, "", 0, 16, 1,
1766 &data[offset], limit, 1);
Dave Jonesaa83aa42006-09-29 01:59:51 -07001767
1768 if (bad_count == 1) {
1769 error ^= POISON_FREE;
1770 if (!(error & (error - 1))) {
1771 printk(KERN_ERR "Single bit error detected. Probably "
1772 "bad RAM.\n");
1773#ifdef CONFIG_X86
1774 printk(KERN_ERR "Run memtest86+ or a similar memory "
1775 "test tool.\n");
1776#else
1777 printk(KERN_ERR "Run a memory test tool.\n");
1778#endif
1779 }
1780 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781}
1782#endif
1783
1784#if DEBUG
1785
Pekka Enberg343e0d72006-02-01 03:05:50 -08001786static void print_objinfo(struct kmem_cache *cachep, void *objp, int lines)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787{
1788 int i, size;
1789 char *realobj;
1790
1791 if (cachep->flags & SLAB_RED_ZONE) {
David Woodhouseb46b8f12007-05-08 00:22:59 -07001792 printk(KERN_ERR "Redzone: 0x%llx/0x%llx.\n",
Andrew Mortona737b3e2006-03-22 00:08:11 -08001793 *dbg_redzone1(cachep, objp),
1794 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 }
1796
1797 if (cachep->flags & SLAB_STORE_USER) {
Joe Perches071361d2012-12-12 10:19:12 -08001798 printk(KERN_ERR "Last user: [<%p>](%pSR)\n",
1799 *dbg_userword(cachep, objp),
1800 *dbg_userword(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 }
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001802 realobj = (char *)objp + obj_offset(cachep);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05001803 size = cachep->object_size;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001804 for (i = 0; i < size && lines; i += 16, lines--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 int limit;
1806 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001807 if (i + limit > size)
1808 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 dump_line(realobj, i, limit);
1810 }
1811}
1812
Pekka Enberg343e0d72006-02-01 03:05:50 -08001813static void check_poison_obj(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814{
1815 char *realobj;
1816 int size, i;
1817 int lines = 0;
1818
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001819 realobj = (char *)objp + obj_offset(cachep);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05001820 size = cachep->object_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001822 for (i = 0; i < size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 char exp = POISON_FREE;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001824 if (i == size - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 exp = POISON_END;
1826 if (realobj[i] != exp) {
1827 int limit;
1828 /* Mismatch ! */
1829 /* Print header */
1830 if (lines == 0) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001831 printk(KERN_ERR
Dave Jonesface37f2011-11-15 15:03:52 -08001832 "Slab corruption (%s): %s start=%p, len=%d\n",
1833 print_tainted(), cachep->name, realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834 print_objinfo(cachep, objp, 0);
1835 }
1836 /* Hexdump the affected line */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001837 i = (i / 16) * 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001839 if (i + limit > size)
1840 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 dump_line(realobj, i, limit);
1842 i += 16;
1843 lines++;
1844 /* Limit to 5 lines */
1845 if (lines > 5)
1846 break;
1847 }
1848 }
1849 if (lines != 0) {
1850 /* Print some data about the neighboring objects, if they
1851 * exist:
1852 */
Joonsoo Kim8456a642013-10-24 10:07:49 +09001853 struct page *page = virt_to_head_page(objp);
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001854 unsigned int objnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855
Joonsoo Kim8456a642013-10-24 10:07:49 +09001856 objnr = obj_to_index(cachep, page, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 if (objnr) {
Joonsoo Kim8456a642013-10-24 10:07:49 +09001858 objp = index_to_obj(cachep, page, objnr - 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001859 realobj = (char *)objp + obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 printk(KERN_ERR "Prev obj: start=%p, len=%d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001861 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 print_objinfo(cachep, objp, 2);
1863 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001864 if (objnr + 1 < cachep->num) {
Joonsoo Kim8456a642013-10-24 10:07:49 +09001865 objp = index_to_obj(cachep, page, objnr + 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001866 realobj = (char *)objp + obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 printk(KERN_ERR "Next obj: start=%p, len=%d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001868 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 print_objinfo(cachep, objp, 2);
1870 }
1871 }
1872}
1873#endif
1874
Linus Torvalds1da177e2005-04-16 15:20:36 -07001875#if DEBUG
Joonsoo Kim8456a642013-10-24 10:07:49 +09001876static void slab_destroy_debugcheck(struct kmem_cache *cachep,
1877 struct page *page)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001878{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 int i;
1880 for (i = 0; i < cachep->num; i++) {
Joonsoo Kim8456a642013-10-24 10:07:49 +09001881 void *objp = index_to_obj(cachep, page, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882
1883 if (cachep->flags & SLAB_POISON) {
1884#ifdef CONFIG_DEBUG_PAGEALLOC
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05001885 if (cachep->size % PAGE_SIZE == 0 &&
Andrew Mortona737b3e2006-03-22 00:08:11 -08001886 OFF_SLAB(cachep))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001887 kernel_map_pages(virt_to_page(objp),
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05001888 cachep->size / PAGE_SIZE, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 else
1890 check_poison_obj(cachep, objp);
1891#else
1892 check_poison_obj(cachep, objp);
1893#endif
1894 }
1895 if (cachep->flags & SLAB_RED_ZONE) {
1896 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
1897 slab_error(cachep, "start of a freed object "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001898 "was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
1900 slab_error(cachep, "end of a freed object "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001901 "was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 }
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001904}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001905#else
Joonsoo Kim8456a642013-10-24 10:07:49 +09001906static void slab_destroy_debugcheck(struct kmem_cache *cachep,
1907 struct page *page)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001908{
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001909}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910#endif
1911
Randy Dunlap911851e2006-03-22 00:08:14 -08001912/**
1913 * slab_destroy - destroy and release all objects in a slab
1914 * @cachep: cache pointer being destroyed
Masanari Iidacb8ee1a2014-01-28 02:57:08 +09001915 * @page: page pointer being destroyed
Randy Dunlap911851e2006-03-22 00:08:14 -08001916 *
Wang Sheng-Hui8a7d9b42014-08-06 16:04:46 -07001917 * Destroy all the objs in a slab page, and release the mem back to the system.
1918 * Before calling the slab page must have been unlinked from the cache. The
1919 * kmem_cache_node ->list_lock is not held/needed.
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001920 */
Joonsoo Kim8456a642013-10-24 10:07:49 +09001921static void slab_destroy(struct kmem_cache *cachep, struct page *page)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001922{
Joonsoo Kim7e007352013-10-30 19:04:01 +09001923 void *freelist;
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001924
Joonsoo Kim8456a642013-10-24 10:07:49 +09001925 freelist = page->freelist;
1926 slab_destroy_debugcheck(cachep, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 if (unlikely(cachep->flags & SLAB_DESTROY_BY_RCU)) {
Joonsoo Kim68126702013-10-24 10:07:42 +09001928 struct rcu_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929
Joonsoo Kim68126702013-10-24 10:07:42 +09001930 /*
1931 * RCU free overloads the RCU head over the LRU.
1932 * slab_page has been overloeaded over the LRU,
1933 * however it is not used from now on so that
1934 * we can use it safely.
1935 */
1936 head = (void *)&page->rcu_head;
1937 call_rcu(head, kmem_rcu_free);
1938
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 } else {
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09001940 kmem_freepages(cachep, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 }
Joonsoo Kim68126702013-10-24 10:07:42 +09001942
1943 /*
Joonsoo Kim8456a642013-10-24 10:07:49 +09001944 * From now on, we don't use freelist
Joonsoo Kim68126702013-10-24 10:07:42 +09001945 * although actual page can be freed in rcu context
1946 */
1947 if (OFF_SLAB(cachep))
Joonsoo Kim8456a642013-10-24 10:07:49 +09001948 kmem_cache_free(cachep->freelist_cache, freelist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949}
1950
Joonsoo Kim97654df2014-08-06 16:04:25 -07001951static void slabs_destroy(struct kmem_cache *cachep, struct list_head *list)
1952{
1953 struct page *page, *n;
1954
1955 list_for_each_entry_safe(page, n, list, lru) {
1956 list_del(&page->lru);
1957 slab_destroy(cachep, page);
1958 }
1959}
1960
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961/**
Randy.Dunlapa70773d2006-02-01 03:05:52 -08001962 * calculate_slab_order - calculate size (page order) of slabs
1963 * @cachep: pointer to the cache that is being created
1964 * @size: size of objects to be created in this cache.
1965 * @align: required alignment for the objects.
1966 * @flags: slab allocation flags
1967 *
1968 * Also calculates the number of objects per slab.
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001969 *
1970 * This could be made much more intelligent. For now, try to avoid using
1971 * high order pages for slabs. When the gfp() functions are more friendly
1972 * towards high-order requests, this should be changed.
1973 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08001974static size_t calculate_slab_order(struct kmem_cache *cachep,
Randy Dunlapee13d782006-02-01 03:05:53 -08001975 size_t size, size_t align, unsigned long flags)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001976{
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02001977 unsigned long offslab_limit;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001978 size_t left_over = 0;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001979 int gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001980
Christoph Lameter0aa817f2007-05-16 22:11:01 -07001981 for (gfporder = 0; gfporder <= KMALLOC_MAX_ORDER; gfporder++) {
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001982 unsigned int num;
1983 size_t remainder;
1984
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001985 cache_estimate(gfporder, size, align, flags, &remainder, &num);
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001986 if (!num)
1987 continue;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001988
Joonsoo Kimf315e3f2013-12-02 17:49:41 +09001989 /* Can't handle number of objects more than SLAB_OBJ_MAX_NUM */
1990 if (num > SLAB_OBJ_MAX_NUM)
1991 break;
1992
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02001993 if (flags & CFLGS_OFF_SLAB) {
Joonsoo Kim03787302014-06-23 13:22:06 -07001994 size_t freelist_size_per_obj = sizeof(freelist_idx_t);
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02001995 /*
1996 * Max number of objs-per-slab for caches which
1997 * use off-slab slabs. Needed to avoid a possible
1998 * looping condition in cache_grow().
1999 */
Joonsoo Kim03787302014-06-23 13:22:06 -07002000 if (IS_ENABLED(CONFIG_DEBUG_SLAB_LEAK))
2001 freelist_size_per_obj += sizeof(char);
Joonsoo Kim8456a642013-10-24 10:07:49 +09002002 offslab_limit = size;
Joonsoo Kim03787302014-06-23 13:22:06 -07002003 offslab_limit /= freelist_size_per_obj;
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02002004
2005 if (num > offslab_limit)
2006 break;
2007 }
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002008
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002009 /* Found something acceptable - save it away */
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002010 cachep->num = num;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002011 cachep->gfporder = gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002012 left_over = remainder;
2013
2014 /*
Linus Torvaldsf78bb8a2006-03-08 10:33:05 -08002015 * A VFS-reclaimable slab tends to have most allocations
2016 * as GFP_NOFS and we really don't want to have to be allocating
2017 * higher-order pages when we are unable to shrink dcache.
2018 */
2019 if (flags & SLAB_RECLAIM_ACCOUNT)
2020 break;
2021
2022 /*
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002023 * Large number of objects is good, but very large slabs are
2024 * currently bad for the gfp()s.
2025 */
David Rientjes543585c2011-10-18 22:09:24 -07002026 if (gfporder >= slab_max_order)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002027 break;
2028
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002029 /*
2030 * Acceptable internal fragmentation?
2031 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002032 if (left_over * 8 <= (PAGE_SIZE << gfporder))
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002033 break;
2034 }
2035 return left_over;
2036}
2037
Pekka Enberg83b519e2009-06-10 19:40:04 +03002038static int __init_refok setup_cpu_cache(struct kmem_cache *cachep, gfp_t gfp)
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002039{
Christoph Lameter97d06602012-07-06 15:25:11 -05002040 if (slab_state >= FULL)
Pekka Enberg83b519e2009-06-10 19:40:04 +03002041 return enable_cpucache(cachep, gfp);
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002042
Christoph Lameter97d06602012-07-06 15:25:11 -05002043 if (slab_state == DOWN) {
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002044 /*
Christoph Lameter2f9baa92012-11-28 16:23:09 +00002045 * Note: Creation of first cache (kmem_cache).
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002046 * The setup_node is taken care
Christoph Lameter2f9baa92012-11-28 16:23:09 +00002047 * of by the caller of __kmem_cache_create
2048 */
2049 cachep->array[smp_processor_id()] = &initarray_generic.cache;
2050 slab_state = PARTIAL;
2051 } else if (slab_state == PARTIAL) {
2052 /*
2053 * Note: the second kmem_cache_create must create the cache
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002054 * that's used by kmalloc(24), otherwise the creation of
2055 * further caches will BUG().
2056 */
2057 cachep->array[smp_processor_id()] = &initarray_generic.cache;
2058
2059 /*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002060 * If the cache that's used by kmalloc(sizeof(kmem_cache_node)) is
2061 * the second cache, then we need to set up all its node/,
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002062 * otherwise the creation of further caches will BUG().
2063 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002064 set_up_node(cachep, SIZE_AC);
2065 if (INDEX_AC == INDEX_NODE)
2066 slab_state = PARTIAL_NODE;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002067 else
Christoph Lameter97d06602012-07-06 15:25:11 -05002068 slab_state = PARTIAL_ARRAYCACHE;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002069 } else {
Christoph Lameter2f9baa92012-11-28 16:23:09 +00002070 /* Remaining boot caches */
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002071 cachep->array[smp_processor_id()] =
Pekka Enberg83b519e2009-06-10 19:40:04 +03002072 kmalloc(sizeof(struct arraycache_init), gfp);
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002073
Christoph Lameter97d06602012-07-06 15:25:11 -05002074 if (slab_state == PARTIAL_ARRAYCACHE) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002075 set_up_node(cachep, SIZE_NODE);
2076 slab_state = PARTIAL_NODE;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002077 } else {
2078 int node;
Pekka Enberg556a1692008-01-25 08:20:51 +02002079 for_each_online_node(node) {
Christoph Lameter6a673682013-01-10 19:14:19 +00002080 cachep->node[node] =
Christoph Lameter6744f082013-01-10 19:12:17 +00002081 kmalloc_node(sizeof(struct kmem_cache_node),
Pekka Enbergeb91f1d2009-06-12 14:56:09 +03002082 gfp, node);
Christoph Lameter6a673682013-01-10 19:14:19 +00002083 BUG_ON(!cachep->node[node]);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002084 kmem_cache_node_init(cachep->node[node]);
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002085 }
2086 }
2087 }
Christoph Lameter6a673682013-01-10 19:14:19 +00002088 cachep->node[numa_mem_id()]->next_reap =
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08002089 jiffies + REAPTIMEOUT_NODE +
2090 ((unsigned long)cachep) % REAPTIMEOUT_NODE;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002091
2092 cpu_cache_get(cachep)->avail = 0;
2093 cpu_cache_get(cachep)->limit = BOOT_CPUCACHE_ENTRIES;
2094 cpu_cache_get(cachep)->batchcount = 1;
2095 cpu_cache_get(cachep)->touched = 0;
2096 cachep->batchcount = 1;
2097 cachep->limit = BOOT_CPUCACHE_ENTRIES;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002098 return 0;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002099}
2100
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002101/**
Christoph Lameter039363f2012-07-06 15:25:10 -05002102 * __kmem_cache_create - Create a cache.
Randy Dunlapa755b762012-11-06 17:10:10 -08002103 * @cachep: cache management descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104 * @flags: SLAB flags
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 *
2106 * Returns a ptr to the cache on success, NULL on failure.
2107 * Cannot be called within a int, but can be interrupted.
Paul Mundt20c2df82007-07-20 10:11:58 +09002108 * The @ctor is run when new pages are allocated by the cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002109 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 * The flags are
2111 *
2112 * %SLAB_POISON - Poison the slab with a known test pattern (a5a5a5a5)
2113 * to catch references to uninitialised memory.
2114 *
2115 * %SLAB_RED_ZONE - Insert `Red' zones around the allocated memory to check
2116 * for buffer overruns.
2117 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 * %SLAB_HWCACHE_ALIGN - Align the objects in this cache to a hardware
2119 * cacheline. This can be beneficial if you're counting cycles as closely
2120 * as davem.
2121 */
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002122int
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002123__kmem_cache_create (struct kmem_cache *cachep, unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124{
Joonsoo Kim8456a642013-10-24 10:07:49 +09002125 size_t left_over, freelist_size, ralign;
Pekka Enberg83b519e2009-06-10 19:40:04 +03002126 gfp_t gfp;
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002127 int err;
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002128 size_t size = cachep->size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129
Linus Torvalds1da177e2005-04-16 15:20:36 -07002130#if DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131#if FORCED_DEBUG
2132 /*
2133 * Enable redzoning and last user accounting, except for caches with
2134 * large objects, if the increased size would increase the object size
2135 * above the next power of two: caches with object sizes just above a
2136 * power of two have a significant amount of internal fragmentation.
2137 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002138 if (size < 4096 || fls(size - 1) == fls(size-1 + REDZONE_ALIGN +
2139 2 * sizeof(unsigned long long)))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002140 flags |= SLAB_RED_ZONE | SLAB_STORE_USER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 if (!(flags & SLAB_DESTROY_BY_RCU))
2142 flags |= SLAB_POISON;
2143#endif
2144 if (flags & SLAB_DESTROY_BY_RCU)
2145 BUG_ON(flags & SLAB_POISON);
2146#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147
Andrew Mortona737b3e2006-03-22 00:08:11 -08002148 /*
2149 * Check that size is in terms of words. This is needed to avoid
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 * unaligned accesses for some archs when redzoning is used, and makes
2151 * sure any on-slab bufctl's are also correctly aligned.
2152 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002153 if (size & (BYTES_PER_WORD - 1)) {
2154 size += (BYTES_PER_WORD - 1);
2155 size &= ~(BYTES_PER_WORD - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 }
2157
Pekka Enbergca5f9702006-09-25 23:31:25 -07002158 /*
David Woodhouse87a927c2007-07-04 21:26:44 -04002159 * Redzoning and user store require word alignment or possibly larger.
2160 * Note this will be overridden by architecture or caller mandated
2161 * alignment if either is greater than BYTES_PER_WORD.
Pekka Enbergca5f9702006-09-25 23:31:25 -07002162 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002163 if (flags & SLAB_STORE_USER)
2164 ralign = BYTES_PER_WORD;
2165
2166 if (flags & SLAB_RED_ZONE) {
2167 ralign = REDZONE_ALIGN;
2168 /* If redzoning, ensure that the second redzone is suitably
2169 * aligned, by adjusting the object size accordingly. */
2170 size += REDZONE_ALIGN - 1;
2171 size &= ~(REDZONE_ALIGN - 1);
2172 }
Pekka Enbergca5f9702006-09-25 23:31:25 -07002173
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002174 /* 3) caller mandated alignment */
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002175 if (ralign < cachep->align) {
2176 ralign = cachep->align;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 }
Pekka Enberg3ff84a72011-02-14 17:46:21 +02002178 /* disable debug if necessary */
2179 if (ralign > __alignof__(unsigned long long))
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002180 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002181 /*
Pekka Enbergca5f9702006-09-25 23:31:25 -07002182 * 4) Store it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002183 */
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002184 cachep->align = ralign;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185
Pekka Enberg83b519e2009-06-10 19:40:04 +03002186 if (slab_is_available())
2187 gfp = GFP_KERNEL;
2188 else
2189 gfp = GFP_NOWAIT;
2190
Christoph Lameter6a673682013-01-10 19:14:19 +00002191 setup_node_pointer(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002192#if DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193
Pekka Enbergca5f9702006-09-25 23:31:25 -07002194 /*
2195 * Both debugging options require word-alignment which is calculated
2196 * into align above.
2197 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198 if (flags & SLAB_RED_ZONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 /* add space for red zone words */
Pekka Enberg3ff84a72011-02-14 17:46:21 +02002200 cachep->obj_offset += sizeof(unsigned long long);
2201 size += 2 * sizeof(unsigned long long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202 }
2203 if (flags & SLAB_STORE_USER) {
Pekka Enbergca5f9702006-09-25 23:31:25 -07002204 /* user store requires one word storage behind the end of
David Woodhouse87a927c2007-07-04 21:26:44 -04002205 * the real object. But if the second red zone needs to be
2206 * aligned to 64 bits, we must allow that much space.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002207 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002208 if (flags & SLAB_RED_ZONE)
2209 size += REDZONE_ALIGN;
2210 else
2211 size += BYTES_PER_WORD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212 }
2213#if FORCED_DEBUG && defined(CONFIG_DEBUG_PAGEALLOC)
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002214 if (size >= kmalloc_size(INDEX_NODE + 1)
Tetsuo Handa608da7e2012-09-30 17:28:25 +09002215 && cachep->object_size > cache_line_size()
2216 && ALIGN(size, cachep->align) < PAGE_SIZE) {
2217 cachep->obj_offset += PAGE_SIZE - ALIGN(size, cachep->align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 size = PAGE_SIZE;
2219 }
2220#endif
2221#endif
2222
Ingo Molnare0a42722006-06-23 02:03:46 -07002223 /*
2224 * Determine if the slab management is 'on' or 'off' slab.
2225 * (bootstrapping cannot cope with offslab caches so don't do
Catalin Marinase7cb55b2009-10-28 13:33:08 +00002226 * it too early on. Always use on-slab management when
2227 * SLAB_NOLEAKTRACE to avoid recursive calls into kmemleak)
Ingo Molnare0a42722006-06-23 02:03:46 -07002228 */
Joonsoo Kim8fc9cf42013-12-02 17:49:43 +09002229 if ((size >= (PAGE_SIZE >> 5)) && !slab_early_init &&
Catalin Marinase7cb55b2009-10-28 13:33:08 +00002230 !(flags & SLAB_NOLEAKTRACE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002231 /*
2232 * Size is large, assume best to place the slab management obj
2233 * off-slab (should allow better packing of objs).
2234 */
2235 flags |= CFLGS_OFF_SLAB;
2236
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002237 size = ALIGN(size, cachep->align);
Joonsoo Kimf315e3f2013-12-02 17:49:41 +09002238 /*
2239 * We should restrict the number of objects in a slab to implement
2240 * byte sized index. Refer comment on SLAB_OBJ_MIN_SIZE definition.
2241 */
2242 if (FREELIST_BYTE_INDEX && size < SLAB_OBJ_MIN_SIZE)
2243 size = ALIGN(SLAB_OBJ_MIN_SIZE, cachep->align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002245 left_over = calculate_slab_order(cachep, size, cachep->align, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002247 if (!cachep->num)
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002248 return -E2BIG;
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002249
Joonsoo Kim03787302014-06-23 13:22:06 -07002250 freelist_size = calculate_freelist_size(cachep->num, cachep->align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251
2252 /*
2253 * If the slab has been placed off-slab, and we have enough space then
2254 * move it on-slab. This is at the expense of any extra colouring.
2255 */
Joonsoo Kim8456a642013-10-24 10:07:49 +09002256 if (flags & CFLGS_OFF_SLAB && left_over >= freelist_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 flags &= ~CFLGS_OFF_SLAB;
Joonsoo Kim8456a642013-10-24 10:07:49 +09002258 left_over -= freelist_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 }
2260
2261 if (flags & CFLGS_OFF_SLAB) {
2262 /* really off slab. No need for manual alignment */
Joonsoo Kim03787302014-06-23 13:22:06 -07002263 freelist_size = calculate_freelist_size(cachep->num, 0);
Ron Lee67461362009-05-22 04:58:22 +09302264
2265#ifdef CONFIG_PAGE_POISONING
2266 /* If we're going to use the generic kernel_map_pages()
2267 * poisoning, then it's going to smash the contents of
2268 * the redzone and userword anyhow, so switch them off.
2269 */
2270 if (size % PAGE_SIZE == 0 && flags & SLAB_POISON)
2271 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
2272#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 }
2274
2275 cachep->colour_off = cache_line_size();
2276 /* Offset must be a multiple of the alignment. */
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002277 if (cachep->colour_off < cachep->align)
2278 cachep->colour_off = cachep->align;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002279 cachep->colour = left_over / cachep->colour_off;
Joonsoo Kim8456a642013-10-24 10:07:49 +09002280 cachep->freelist_size = freelist_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002281 cachep->flags = flags;
Joonsoo Kima57a4982013-10-24 10:07:44 +09002282 cachep->allocflags = __GFP_COMP;
Christoph Lameter4b51d662007-02-10 01:43:10 -08002283 if (CONFIG_ZONE_DMA_FLAG && (flags & SLAB_CACHE_DMA))
Glauber Costaa618e892012-06-14 16:17:21 +04002284 cachep->allocflags |= GFP_DMA;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002285 cachep->size = size;
Eric Dumazet6a2d7a92006-12-13 00:34:27 -08002286 cachep->reciprocal_buffer_size = reciprocal_value(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002288 if (flags & CFLGS_OFF_SLAB) {
Joonsoo Kim8456a642013-10-24 10:07:49 +09002289 cachep->freelist_cache = kmalloc_slab(freelist_size, 0u);
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002290 /*
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08002291 * This is a possibility for one of the kmalloc_{dma,}_caches.
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002292 * But since we go off slab only for object size greater than
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08002293 * PAGE_SIZE/8, and kmalloc_{dma,}_caches get created
2294 * in ascending order,this should not happen at all.
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002295 * But leave a BUG_ON for some lucky dude.
2296 */
Joonsoo Kim8456a642013-10-24 10:07:49 +09002297 BUG_ON(ZERO_OR_NULL_PTR(cachep->freelist_cache));
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002298 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002300 err = setup_cpu_cache(cachep, gfp);
2301 if (err) {
Christoph Lameter12c36672012-09-04 23:38:33 +00002302 __kmem_cache_shutdown(cachep);
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002303 return err;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002304 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002306 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002307}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002308
2309#if DEBUG
2310static void check_irq_off(void)
2311{
2312 BUG_ON(!irqs_disabled());
2313}
2314
2315static void check_irq_on(void)
2316{
2317 BUG_ON(irqs_disabled());
2318}
2319
Pekka Enberg343e0d72006-02-01 03:05:50 -08002320static void check_spinlock_acquired(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321{
2322#ifdef CONFIG_SMP
2323 check_irq_off();
Christoph Lameter18bf8542014-08-06 16:04:11 -07002324 assert_spin_locked(&get_node(cachep, numa_mem_id())->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325#endif
2326}
Christoph Lametere498be72005-09-09 13:03:32 -07002327
Pekka Enberg343e0d72006-02-01 03:05:50 -08002328static void check_spinlock_acquired_node(struct kmem_cache *cachep, int node)
Christoph Lametere498be72005-09-09 13:03:32 -07002329{
2330#ifdef CONFIG_SMP
2331 check_irq_off();
Christoph Lameter18bf8542014-08-06 16:04:11 -07002332 assert_spin_locked(&get_node(cachep, node)->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07002333#endif
2334}
2335
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336#else
2337#define check_irq_off() do { } while(0)
2338#define check_irq_on() do { } while(0)
2339#define check_spinlock_acquired(x) do { } while(0)
Christoph Lametere498be72005-09-09 13:03:32 -07002340#define check_spinlock_acquired_node(x, y) do { } while(0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341#endif
2342
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002343static void drain_array(struct kmem_cache *cachep, struct kmem_cache_node *n,
Christoph Lameteraab22072006-03-22 00:09:06 -08002344 struct array_cache *ac,
2345 int force, int node);
2346
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347static void do_drain(void *arg)
2348{
Andrew Mortona737b3e2006-03-22 00:08:11 -08002349 struct kmem_cache *cachep = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 struct array_cache *ac;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07002351 int node = numa_mem_id();
Christoph Lameter18bf8542014-08-06 16:04:11 -07002352 struct kmem_cache_node *n;
Joonsoo Kim97654df2014-08-06 16:04:25 -07002353 LIST_HEAD(list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354
2355 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002356 ac = cpu_cache_get(cachep);
Christoph Lameter18bf8542014-08-06 16:04:11 -07002357 n = get_node(cachep, node);
2358 spin_lock(&n->list_lock);
Joonsoo Kim97654df2014-08-06 16:04:25 -07002359 free_block(cachep, ac->entry, ac->avail, node, &list);
Christoph Lameter18bf8542014-08-06 16:04:11 -07002360 spin_unlock(&n->list_lock);
Joonsoo Kim97654df2014-08-06 16:04:25 -07002361 slabs_destroy(cachep, &list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 ac->avail = 0;
2363}
2364
Pekka Enberg343e0d72006-02-01 03:05:50 -08002365static void drain_cpu_caches(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366{
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002367 struct kmem_cache_node *n;
Christoph Lametere498be72005-09-09 13:03:32 -07002368 int node;
2369
Jens Axboe15c8b6c2008-05-09 09:39:44 +02002370 on_each_cpu(do_drain, cachep, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002371 check_irq_on();
Christoph Lameter18bf8542014-08-06 16:04:11 -07002372 for_each_kmem_cache_node(cachep, node, n)
2373 if (n->alien)
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002374 drain_alien_cache(cachep, n->alien);
Roland Dreiera4523a82006-05-15 11:41:00 -07002375
Christoph Lameter18bf8542014-08-06 16:04:11 -07002376 for_each_kmem_cache_node(cachep, node, n)
2377 drain_array(cachep, n, n->shared, 1, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002378}
2379
Christoph Lametered11d9e2006-06-30 01:55:45 -07002380/*
2381 * Remove slabs from the list of free slabs.
2382 * Specify the number of slabs to drain in tofree.
2383 *
2384 * Returns the actual number of slabs released.
2385 */
2386static int drain_freelist(struct kmem_cache *cache,
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002387 struct kmem_cache_node *n, int tofree)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388{
Christoph Lametered11d9e2006-06-30 01:55:45 -07002389 struct list_head *p;
2390 int nr_freed;
Joonsoo Kim8456a642013-10-24 10:07:49 +09002391 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392
Christoph Lametered11d9e2006-06-30 01:55:45 -07002393 nr_freed = 0;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002394 while (nr_freed < tofree && !list_empty(&n->slabs_free)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002396 spin_lock_irq(&n->list_lock);
2397 p = n->slabs_free.prev;
2398 if (p == &n->slabs_free) {
2399 spin_unlock_irq(&n->list_lock);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002400 goto out;
2401 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402
Joonsoo Kim8456a642013-10-24 10:07:49 +09002403 page = list_entry(p, struct page, lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404#if DEBUG
Joonsoo Kim8456a642013-10-24 10:07:49 +09002405 BUG_ON(page->active);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406#endif
Joonsoo Kim8456a642013-10-24 10:07:49 +09002407 list_del(&page->lru);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002408 /*
2409 * Safe to drop the lock. The slab is no longer linked
2410 * to the cache.
2411 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002412 n->free_objects -= cache->num;
2413 spin_unlock_irq(&n->list_lock);
Joonsoo Kim8456a642013-10-24 10:07:49 +09002414 slab_destroy(cache, page);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002415 nr_freed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 }
Christoph Lametered11d9e2006-06-30 01:55:45 -07002417out:
2418 return nr_freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419}
2420
Vladimir Davydov03afc0e2014-06-04 16:07:20 -07002421int __kmem_cache_shrink(struct kmem_cache *cachep)
Christoph Lametere498be72005-09-09 13:03:32 -07002422{
Christoph Lameter18bf8542014-08-06 16:04:11 -07002423 int ret = 0;
2424 int node;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002425 struct kmem_cache_node *n;
Christoph Lametere498be72005-09-09 13:03:32 -07002426
2427 drain_cpu_caches(cachep);
2428
2429 check_irq_on();
Christoph Lameter18bf8542014-08-06 16:04:11 -07002430 for_each_kmem_cache_node(cachep, node, n) {
Wanpeng Li0fa81032013-07-04 08:33:22 +08002431 drain_freelist(cachep, n, slabs_tofree(cachep, n));
Christoph Lametered11d9e2006-06-30 01:55:45 -07002432
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002433 ret += !list_empty(&n->slabs_full) ||
2434 !list_empty(&n->slabs_partial);
Christoph Lametere498be72005-09-09 13:03:32 -07002435 }
2436 return (ret ? 1 : 0);
2437}
2438
Christoph Lameter945cf2b2012-09-04 23:18:33 +00002439int __kmem_cache_shutdown(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440{
Christoph Lameter12c36672012-09-04 23:38:33 +00002441 int i;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002442 struct kmem_cache_node *n;
Vladimir Davydov03afc0e2014-06-04 16:07:20 -07002443 int rc = __kmem_cache_shrink(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444
Christoph Lameter12c36672012-09-04 23:38:33 +00002445 if (rc)
2446 return rc;
2447
2448 for_each_online_cpu(i)
2449 kfree(cachep->array[i]);
2450
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002451 /* NUMA: free the node structures */
Christoph Lameter18bf8542014-08-06 16:04:11 -07002452 for_each_kmem_cache_node(cachep, i, n) {
2453 kfree(n->shared);
2454 free_alien_cache(n->alien);
2455 kfree(n);
2456 cachep->node[i] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 }
Christoph Lameter12c36672012-09-04 23:38:33 +00002458 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002461/*
2462 * Get the memory for a slab management obj.
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08002463 *
2464 * For a slab cache when the slab descriptor is off-slab, the
2465 * slab descriptor can't come from the same cache which is being created,
2466 * Because if it is the case, that means we defer the creation of
2467 * the kmalloc_{dma,}_cache of size sizeof(slab descriptor) to this point.
2468 * And we eventually call down to __kmem_cache_create(), which
2469 * in turn looks up in the kmalloc_{dma,}_caches for the disired-size one.
2470 * This is a "chicken-and-egg" problem.
2471 *
2472 * So the off-slab slab descriptor shall come from the kmalloc_{dma,}_caches,
2473 * which are all initialized during kmem_cache_init().
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002474 */
Joonsoo Kim7e007352013-10-30 19:04:01 +09002475static void *alloc_slabmgmt(struct kmem_cache *cachep,
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002476 struct page *page, int colour_off,
2477 gfp_t local_flags, int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478{
Joonsoo Kim7e007352013-10-30 19:04:01 +09002479 void *freelist;
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002480 void *addr = page_address(page);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002481
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482 if (OFF_SLAB(cachep)) {
2483 /* Slab management obj is off-slab. */
Joonsoo Kim8456a642013-10-24 10:07:49 +09002484 freelist = kmem_cache_alloc_node(cachep->freelist_cache,
Pekka Enberg8759ec52008-11-26 10:01:31 +02002485 local_flags, nodeid);
Joonsoo Kim8456a642013-10-24 10:07:49 +09002486 if (!freelist)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 return NULL;
2488 } else {
Joonsoo Kim8456a642013-10-24 10:07:49 +09002489 freelist = addr + colour_off;
2490 colour_off += cachep->freelist_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 }
Joonsoo Kim8456a642013-10-24 10:07:49 +09002492 page->active = 0;
2493 page->s_mem = addr + colour_off;
2494 return freelist;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495}
2496
Joonsoo Kim7cc68972014-04-18 16:24:09 +09002497static inline freelist_idx_t get_free_obj(struct page *page, unsigned int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002498{
Joonsoo Kima41adfa2013-12-02 17:49:42 +09002499 return ((freelist_idx_t *)page->freelist)[idx];
Joonsoo Kime5c58df2013-12-02 17:49:40 +09002500}
2501
2502static inline void set_free_obj(struct page *page,
Joonsoo Kim7cc68972014-04-18 16:24:09 +09002503 unsigned int idx, freelist_idx_t val)
Joonsoo Kime5c58df2013-12-02 17:49:40 +09002504{
Joonsoo Kima41adfa2013-12-02 17:49:42 +09002505 ((freelist_idx_t *)(page->freelist))[idx] = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506}
2507
Pekka Enberg343e0d72006-02-01 03:05:50 -08002508static void cache_init_objs(struct kmem_cache *cachep,
Joonsoo Kim8456a642013-10-24 10:07:49 +09002509 struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510{
2511 int i;
2512
2513 for (i = 0; i < cachep->num; i++) {
Joonsoo Kim8456a642013-10-24 10:07:49 +09002514 void *objp = index_to_obj(cachep, page, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515#if DEBUG
2516 /* need to poison the objs? */
2517 if (cachep->flags & SLAB_POISON)
2518 poison_obj(cachep, objp, POISON_FREE);
2519 if (cachep->flags & SLAB_STORE_USER)
2520 *dbg_userword(cachep, objp) = NULL;
2521
2522 if (cachep->flags & SLAB_RED_ZONE) {
2523 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2524 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2525 }
2526 /*
Andrew Mortona737b3e2006-03-22 00:08:11 -08002527 * Constructors are not allowed to allocate memory from the same
2528 * cache which they are a constructor for. Otherwise, deadlock.
2529 * They must also be threaded.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 */
2531 if (cachep->ctor && !(cachep->flags & SLAB_POISON))
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002532 cachep->ctor(objp + obj_offset(cachep));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533
2534 if (cachep->flags & SLAB_RED_ZONE) {
2535 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
2536 slab_error(cachep, "constructor overwrote the"
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002537 " end of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
2539 slab_error(cachep, "constructor overwrote the"
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002540 " start of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 }
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002542 if ((cachep->size % PAGE_SIZE) == 0 &&
Andrew Mortona737b3e2006-03-22 00:08:11 -08002543 OFF_SLAB(cachep) && cachep->flags & SLAB_POISON)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002544 kernel_map_pages(virt_to_page(objp),
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002545 cachep->size / PAGE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546#else
2547 if (cachep->ctor)
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002548 cachep->ctor(objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549#endif
Joonsoo Kim03787302014-06-23 13:22:06 -07002550 set_obj_status(page, i, OBJECT_FREE);
Joonsoo Kime5c58df2013-12-02 17:49:40 +09002551 set_free_obj(page, i, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553}
2554
Pekka Enberg343e0d72006-02-01 03:05:50 -08002555static void kmem_flagcheck(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556{
Christoph Lameter4b51d662007-02-10 01:43:10 -08002557 if (CONFIG_ZONE_DMA_FLAG) {
2558 if (flags & GFP_DMA)
Glauber Costaa618e892012-06-14 16:17:21 +04002559 BUG_ON(!(cachep->allocflags & GFP_DMA));
Christoph Lameter4b51d662007-02-10 01:43:10 -08002560 else
Glauber Costaa618e892012-06-14 16:17:21 +04002561 BUG_ON(cachep->allocflags & GFP_DMA);
Christoph Lameter4b51d662007-02-10 01:43:10 -08002562 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002563}
2564
Joonsoo Kim8456a642013-10-24 10:07:49 +09002565static void *slab_get_obj(struct kmem_cache *cachep, struct page *page,
Andrew Mortona737b3e2006-03-22 00:08:11 -08002566 int nodeid)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002567{
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09002568 void *objp;
Matthew Dobson78d382d2006-02-01 03:05:47 -08002569
Joonsoo Kime5c58df2013-12-02 17:49:40 +09002570 objp = index_to_obj(cachep, page, get_free_obj(page, page->active));
Joonsoo Kim8456a642013-10-24 10:07:49 +09002571 page->active++;
Matthew Dobson78d382d2006-02-01 03:05:47 -08002572#if DEBUG
Joonsoo Kim1ea991b2013-10-24 10:07:40 +09002573 WARN_ON(page_to_nid(virt_to_page(objp)) != nodeid);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002574#endif
Matthew Dobson78d382d2006-02-01 03:05:47 -08002575
2576 return objp;
2577}
2578
Joonsoo Kim8456a642013-10-24 10:07:49 +09002579static void slab_put_obj(struct kmem_cache *cachep, struct page *page,
Andrew Mortona737b3e2006-03-22 00:08:11 -08002580 void *objp, int nodeid)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002581{
Joonsoo Kim8456a642013-10-24 10:07:49 +09002582 unsigned int objnr = obj_to_index(cachep, page, objp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002583#if DEBUG
Joonsoo Kim16025172013-10-24 10:07:46 +09002584 unsigned int i;
Matthew Dobson78d382d2006-02-01 03:05:47 -08002585
Matthew Dobson78d382d2006-02-01 03:05:47 -08002586 /* Verify that the slab belongs to the intended node */
Joonsoo Kim1ea991b2013-10-24 10:07:40 +09002587 WARN_ON(page_to_nid(virt_to_page(objp)) != nodeid);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002588
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09002589 /* Verify double free bug */
Joonsoo Kim8456a642013-10-24 10:07:49 +09002590 for (i = page->active; i < cachep->num; i++) {
Joonsoo Kime5c58df2013-12-02 17:49:40 +09002591 if (get_free_obj(page, i) == objnr) {
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09002592 printk(KERN_ERR "slab: double free detected in cache "
2593 "'%s', objp %p\n", cachep->name, objp);
2594 BUG();
2595 }
Matthew Dobson78d382d2006-02-01 03:05:47 -08002596 }
2597#endif
Joonsoo Kim8456a642013-10-24 10:07:49 +09002598 page->active--;
Joonsoo Kime5c58df2013-12-02 17:49:40 +09002599 set_free_obj(page, page->active, objnr);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002600}
2601
Pekka Enberg47768742006-06-23 02:03:07 -07002602/*
2603 * Map pages beginning at addr to the given cache and slab. This is required
2604 * for the slab allocator to be able to lookup the cache and slab of a
Nick Pigginccd35fb2011-01-07 17:49:17 +11002605 * virtual address for kfree, ksize, and slab debugging.
Pekka Enberg47768742006-06-23 02:03:07 -07002606 */
Joonsoo Kim8456a642013-10-24 10:07:49 +09002607static void slab_map_pages(struct kmem_cache *cache, struct page *page,
Joonsoo Kim7e007352013-10-30 19:04:01 +09002608 void *freelist)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609{
Joonsoo Kima57a4982013-10-24 10:07:44 +09002610 page->slab_cache = cache;
Joonsoo Kim8456a642013-10-24 10:07:49 +09002611 page->freelist = freelist;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612}
2613
2614/*
2615 * Grow (by 1) the number of slabs within a cache. This is called by
2616 * kmem_cache_alloc() when there are no active objs left in a cache.
2617 */
Christoph Lameter3c517a62006-12-06 20:33:29 -08002618static int cache_grow(struct kmem_cache *cachep,
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002619 gfp_t flags, int nodeid, struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620{
Joonsoo Kim7e007352013-10-30 19:04:01 +09002621 void *freelist;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002622 size_t offset;
2623 gfp_t local_flags;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002624 struct kmem_cache_node *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625
Andrew Mortona737b3e2006-03-22 00:08:11 -08002626 /*
2627 * Be lazy and only check for valid flags here, keeping it out of the
2628 * critical path in kmem_cache_alloc().
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629 */
Christoph Lameter6cb06222007-10-16 01:25:41 -07002630 BUG_ON(flags & GFP_SLAB_BUG_MASK);
2631 local_flags = flags & (GFP_CONSTRAINT_MASK|GFP_RECLAIM_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002633 /* Take the node list lock to change the colour_next on this node */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634 check_irq_off();
Christoph Lameter18bf8542014-08-06 16:04:11 -07002635 n = get_node(cachep, nodeid);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002636 spin_lock(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637
2638 /* Get colour for the slab, and cal the next value. */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002639 offset = n->colour_next;
2640 n->colour_next++;
2641 if (n->colour_next >= cachep->colour)
2642 n->colour_next = 0;
2643 spin_unlock(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002645 offset *= cachep->colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646
2647 if (local_flags & __GFP_WAIT)
2648 local_irq_enable();
2649
2650 /*
2651 * The test for missing atomic flag is performed here, rather than
2652 * the more obvious place, simply to reduce the critical path length
2653 * in kmem_cache_alloc(). If a caller is seriously mis-behaving they
2654 * will eventually be caught here (where it matters).
2655 */
2656 kmem_flagcheck(cachep, flags);
2657
Andrew Mortona737b3e2006-03-22 00:08:11 -08002658 /*
2659 * Get mem for the objs. Attempt to allocate a physical page from
2660 * 'nodeid'.
Christoph Lametere498be72005-09-09 13:03:32 -07002661 */
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002662 if (!page)
2663 page = kmem_getpages(cachep, local_flags, nodeid);
2664 if (!page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665 goto failed;
2666
2667 /* Get slab management. */
Joonsoo Kim8456a642013-10-24 10:07:49 +09002668 freelist = alloc_slabmgmt(cachep, page, offset,
Christoph Lameter6cb06222007-10-16 01:25:41 -07002669 local_flags & ~GFP_CONSTRAINT_MASK, nodeid);
Joonsoo Kim8456a642013-10-24 10:07:49 +09002670 if (!freelist)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671 goto opps1;
2672
Joonsoo Kim8456a642013-10-24 10:07:49 +09002673 slab_map_pages(cachep, page, freelist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674
Joonsoo Kim8456a642013-10-24 10:07:49 +09002675 cache_init_objs(cachep, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676
2677 if (local_flags & __GFP_WAIT)
2678 local_irq_disable();
2679 check_irq_off();
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002680 spin_lock(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681
2682 /* Make slab active. */
Joonsoo Kim8456a642013-10-24 10:07:49 +09002683 list_add_tail(&page->lru, &(n->slabs_free));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684 STATS_INC_GROWN(cachep);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002685 n->free_objects += cachep->num;
2686 spin_unlock(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687 return 1;
Andrew Mortona737b3e2006-03-22 00:08:11 -08002688opps1:
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002689 kmem_freepages(cachep, page);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002690failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002691 if (local_flags & __GFP_WAIT)
2692 local_irq_disable();
2693 return 0;
2694}
2695
2696#if DEBUG
2697
2698/*
2699 * Perform extra freeing checks:
2700 * - detect bad pointers.
2701 * - POISON/RED_ZONE checking
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702 */
2703static void kfree_debugcheck(const void *objp)
2704{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 if (!virt_addr_valid(objp)) {
2706 printk(KERN_ERR "kfree_debugcheck: out of range ptr %lxh.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002707 (unsigned long)objp);
2708 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710}
2711
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002712static inline void verify_redzone_free(struct kmem_cache *cache, void *obj)
2713{
David Woodhouseb46b8f12007-05-08 00:22:59 -07002714 unsigned long long redzone1, redzone2;
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002715
2716 redzone1 = *dbg_redzone1(cache, obj);
2717 redzone2 = *dbg_redzone2(cache, obj);
2718
2719 /*
2720 * Redzone is ok.
2721 */
2722 if (redzone1 == RED_ACTIVE && redzone2 == RED_ACTIVE)
2723 return;
2724
2725 if (redzone1 == RED_INACTIVE && redzone2 == RED_INACTIVE)
2726 slab_error(cache, "double free detected");
2727 else
2728 slab_error(cache, "memory outside object was overwritten");
2729
David Woodhouseb46b8f12007-05-08 00:22:59 -07002730 printk(KERN_ERR "%p: redzone 1:0x%llx, redzone 2:0x%llx.\n",
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002731 obj, redzone1, redzone2);
2732}
2733
Pekka Enberg343e0d72006-02-01 03:05:50 -08002734static void *cache_free_debugcheck(struct kmem_cache *cachep, void *objp,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03002735 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737 unsigned int objnr;
Joonsoo Kim8456a642013-10-24 10:07:49 +09002738 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739
Matthew Wilcox80cbd912007-11-29 12:05:13 -07002740 BUG_ON(virt_to_cache(objp) != cachep);
2741
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002742 objp -= obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743 kfree_debugcheck(objp);
Christoph Lameterb49af682007-05-06 14:49:41 -07002744 page = virt_to_head_page(objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002745
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746 if (cachep->flags & SLAB_RED_ZONE) {
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002747 verify_redzone_free(cachep, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2749 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2750 }
2751 if (cachep->flags & SLAB_STORE_USER)
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03002752 *dbg_userword(cachep, objp) = (void *)caller;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002753
Joonsoo Kim8456a642013-10-24 10:07:49 +09002754 objnr = obj_to_index(cachep, page, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755
2756 BUG_ON(objnr >= cachep->num);
Joonsoo Kim8456a642013-10-24 10:07:49 +09002757 BUG_ON(objp != index_to_obj(cachep, page, objnr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758
Joonsoo Kim03787302014-06-23 13:22:06 -07002759 set_obj_status(page, objnr, OBJECT_FREE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760 if (cachep->flags & SLAB_POISON) {
2761#ifdef CONFIG_DEBUG_PAGEALLOC
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002762 if ((cachep->size % PAGE_SIZE)==0 && OFF_SLAB(cachep)) {
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03002763 store_stackinfo(cachep, objp, caller);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002764 kernel_map_pages(virt_to_page(objp),
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002765 cachep->size / PAGE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766 } else {
2767 poison_obj(cachep, objp, POISON_FREE);
2768 }
2769#else
2770 poison_obj(cachep, objp, POISON_FREE);
2771#endif
2772 }
2773 return objp;
2774}
2775
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776#else
2777#define kfree_debugcheck(x) do { } while(0)
2778#define cache_free_debugcheck(x,objp,z) (objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779#endif
2780
Mel Gorman072bb0a2012-07-31 16:43:58 -07002781static void *cache_alloc_refill(struct kmem_cache *cachep, gfp_t flags,
2782 bool force_refill)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783{
2784 int batchcount;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002785 struct kmem_cache_node *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786 struct array_cache *ac;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07002787 int node;
2788
Joe Korty6d2144d2008-03-05 15:04:59 -08002789 check_irq_off();
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07002790 node = numa_mem_id();
Mel Gorman072bb0a2012-07-31 16:43:58 -07002791 if (unlikely(force_refill))
2792 goto force_grow;
2793retry:
Joe Korty6d2144d2008-03-05 15:04:59 -08002794 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795 batchcount = ac->batchcount;
2796 if (!ac->touched && batchcount > BATCHREFILL_LIMIT) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002797 /*
2798 * If there was little recent activity on this cache, then
2799 * perform only a partial refill. Otherwise we could generate
2800 * refill bouncing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801 */
2802 batchcount = BATCHREFILL_LIMIT;
2803 }
Christoph Lameter18bf8542014-08-06 16:04:11 -07002804 n = get_node(cachep, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002806 BUG_ON(ac->avail > 0 || !n);
2807 spin_lock(&n->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07002808
Christoph Lameter3ded1752006-03-25 03:06:44 -08002809 /* See if we can refill from the shared array */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002810 if (n->shared && transfer_objects(ac, n->shared, batchcount)) {
2811 n->shared->touched = 1;
Christoph Lameter3ded1752006-03-25 03:06:44 -08002812 goto alloc_done;
Nick Piggin44b57f12010-01-27 22:27:40 +11002813 }
Christoph Lameter3ded1752006-03-25 03:06:44 -08002814
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815 while (batchcount > 0) {
2816 struct list_head *entry;
Joonsoo Kim8456a642013-10-24 10:07:49 +09002817 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818 /* Get slab alloc is to come from. */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002819 entry = n->slabs_partial.next;
2820 if (entry == &n->slabs_partial) {
2821 n->free_touched = 1;
2822 entry = n->slabs_free.next;
2823 if (entry == &n->slabs_free)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824 goto must_grow;
2825 }
2826
Joonsoo Kim8456a642013-10-24 10:07:49 +09002827 page = list_entry(entry, struct page, lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828 check_spinlock_acquired(cachep);
Pekka Enberg714b81712007-05-06 14:49:03 -07002829
2830 /*
2831 * The slab was either on partial or free list so
2832 * there must be at least one object available for
2833 * allocation.
2834 */
Joonsoo Kim8456a642013-10-24 10:07:49 +09002835 BUG_ON(page->active >= cachep->num);
Pekka Enberg714b81712007-05-06 14:49:03 -07002836
Joonsoo Kim8456a642013-10-24 10:07:49 +09002837 while (page->active < cachep->num && batchcount--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838 STATS_INC_ALLOCED(cachep);
2839 STATS_INC_ACTIVE(cachep);
2840 STATS_SET_HIGH(cachep);
2841
Joonsoo Kim8456a642013-10-24 10:07:49 +09002842 ac_put_obj(cachep, ac, slab_get_obj(cachep, page,
Mel Gorman072bb0a2012-07-31 16:43:58 -07002843 node));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845
2846 /* move slabp to correct slabp list: */
Joonsoo Kim8456a642013-10-24 10:07:49 +09002847 list_del(&page->lru);
2848 if (page->active == cachep->num)
Dave Hansen34bf6ef2014-04-08 13:44:27 -07002849 list_add(&page->lru, &n->slabs_full);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850 else
Dave Hansen34bf6ef2014-04-08 13:44:27 -07002851 list_add(&page->lru, &n->slabs_partial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002852 }
2853
Andrew Mortona737b3e2006-03-22 00:08:11 -08002854must_grow:
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002855 n->free_objects -= ac->avail;
Andrew Mortona737b3e2006-03-22 00:08:11 -08002856alloc_done:
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002857 spin_unlock(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858
2859 if (unlikely(!ac->avail)) {
2860 int x;
Mel Gorman072bb0a2012-07-31 16:43:58 -07002861force_grow:
Christoph Lameter3c517a62006-12-06 20:33:29 -08002862 x = cache_grow(cachep, flags | GFP_THISNODE, node, NULL);
Christoph Lametere498be72005-09-09 13:03:32 -07002863
Andrew Mortona737b3e2006-03-22 00:08:11 -08002864 /* cache_grow can reenable interrupts, then ac could change. */
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002865 ac = cpu_cache_get(cachep);
David Rientjes51cd8e62012-08-28 19:57:21 -07002866 node = numa_mem_id();
Mel Gorman072bb0a2012-07-31 16:43:58 -07002867
2868 /* no objects in sight? abort */
2869 if (!x && (ac->avail == 0 || force_refill))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870 return NULL;
2871
Andrew Mortona737b3e2006-03-22 00:08:11 -08002872 if (!ac->avail) /* objects refilled by interrupt? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873 goto retry;
2874 }
2875 ac->touched = 1;
Mel Gorman072bb0a2012-07-31 16:43:58 -07002876
2877 return ac_get_obj(cachep, ac, flags, force_refill);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878}
2879
Andrew Mortona737b3e2006-03-22 00:08:11 -08002880static inline void cache_alloc_debugcheck_before(struct kmem_cache *cachep,
2881 gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002882{
2883 might_sleep_if(flags & __GFP_WAIT);
2884#if DEBUG
2885 kmem_flagcheck(cachep, flags);
2886#endif
2887}
2888
2889#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08002890static void *cache_alloc_debugcheck_after(struct kmem_cache *cachep,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03002891 gfp_t flags, void *objp, unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892{
Joonsoo Kim03787302014-06-23 13:22:06 -07002893 struct page *page;
2894
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002895 if (!objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 return objp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002897 if (cachep->flags & SLAB_POISON) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898#ifdef CONFIG_DEBUG_PAGEALLOC
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002899 if ((cachep->size % PAGE_SIZE) == 0 && OFF_SLAB(cachep))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002900 kernel_map_pages(virt_to_page(objp),
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002901 cachep->size / PAGE_SIZE, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902 else
2903 check_poison_obj(cachep, objp);
2904#else
2905 check_poison_obj(cachep, objp);
2906#endif
2907 poison_obj(cachep, objp, POISON_INUSE);
2908 }
2909 if (cachep->flags & SLAB_STORE_USER)
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03002910 *dbg_userword(cachep, objp) = (void *)caller;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911
2912 if (cachep->flags & SLAB_RED_ZONE) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002913 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE ||
2914 *dbg_redzone2(cachep, objp) != RED_INACTIVE) {
2915 slab_error(cachep, "double free, or memory outside"
2916 " object was overwritten");
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002917 printk(KERN_ERR
David Woodhouseb46b8f12007-05-08 00:22:59 -07002918 "%p: redzone 1:0x%llx, redzone 2:0x%llx\n",
Andrew Mortona737b3e2006-03-22 00:08:11 -08002919 objp, *dbg_redzone1(cachep, objp),
2920 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921 }
2922 *dbg_redzone1(cachep, objp) = RED_ACTIVE;
2923 *dbg_redzone2(cachep, objp) = RED_ACTIVE;
2924 }
Joonsoo Kim03787302014-06-23 13:22:06 -07002925
2926 page = virt_to_head_page(objp);
2927 set_obj_status(page, obj_to_index(cachep, page, objp), OBJECT_ACTIVE);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002928 objp += obj_offset(cachep);
Christoph Lameter4f104932007-05-06 14:50:17 -07002929 if (cachep->ctor && cachep->flags & SLAB_POISON)
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002930 cachep->ctor(objp);
Tetsuo Handa7ea466f2011-07-21 09:42:45 +09002931 if (ARCH_SLAB_MINALIGN &&
2932 ((unsigned long)objp & (ARCH_SLAB_MINALIGN-1))) {
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002933 printk(KERN_ERR "0x%p: not aligned to ARCH_SLAB_MINALIGN=%d\n",
Hugh Dickinsc2251502011-07-11 13:35:08 -07002934 objp, (int)ARCH_SLAB_MINALIGN);
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002935 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936 return objp;
2937}
2938#else
2939#define cache_alloc_debugcheck_after(a,b,objp,d) (objp)
2940#endif
2941
Akinobu Mita773ff602008-12-23 19:37:01 +09002942static bool slab_should_failslab(struct kmem_cache *cachep, gfp_t flags)
Akinobu Mita8a8b6502006-12-08 02:39:44 -08002943{
Joonsoo Kim8a9c61d2014-08-06 16:04:20 -07002944 if (unlikely(cachep == kmem_cache))
Akinobu Mita773ff602008-12-23 19:37:01 +09002945 return false;
Akinobu Mita8a8b6502006-12-08 02:39:44 -08002946
Christoph Lameter8c138bc2012-06-13 10:24:58 -05002947 return should_failslab(cachep->object_size, flags, cachep->flags);
Akinobu Mita8a8b6502006-12-08 02:39:44 -08002948}
2949
Pekka Enberg343e0d72006-02-01 03:05:50 -08002950static inline void *____cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002952 void *objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002953 struct array_cache *ac;
Mel Gorman072bb0a2012-07-31 16:43:58 -07002954 bool force_refill = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955
Alok N Kataria5c382302005-09-27 21:45:46 -07002956 check_irq_off();
Akinobu Mita8a8b6502006-12-08 02:39:44 -08002957
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002958 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959 if (likely(ac->avail)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960 ac->touched = 1;
Mel Gorman072bb0a2012-07-31 16:43:58 -07002961 objp = ac_get_obj(cachep, ac, flags, false);
2962
J. R. Okajimaddbf2e82009-12-02 16:55:50 +09002963 /*
Mel Gorman072bb0a2012-07-31 16:43:58 -07002964 * Allow for the possibility all avail objects are not allowed
2965 * by the current flags
J. R. Okajimaddbf2e82009-12-02 16:55:50 +09002966 */
Mel Gorman072bb0a2012-07-31 16:43:58 -07002967 if (objp) {
2968 STATS_INC_ALLOCHIT(cachep);
2969 goto out;
2970 }
2971 force_refill = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972 }
Mel Gorman072bb0a2012-07-31 16:43:58 -07002973
2974 STATS_INC_ALLOCMISS(cachep);
2975 objp = cache_alloc_refill(cachep, flags, force_refill);
2976 /*
2977 * the 'ac' may be updated by cache_alloc_refill(),
2978 * and kmemleak_erase() requires its correct value.
2979 */
2980 ac = cpu_cache_get(cachep);
2981
2982out:
Catalin Marinasd5cff632009-06-11 13:22:40 +01002983 /*
2984 * To avoid a false negative, if an object that is in one of the
2985 * per-CPU caches is leaked, we need to make sure kmemleak doesn't
2986 * treat the array pointers as a reference to the object.
2987 */
J. R. Okajimaf3d8b532009-12-02 16:55:49 +09002988 if (objp)
2989 kmemleak_erase(&ac->entry[ac->avail]);
Alok N Kataria5c382302005-09-27 21:45:46 -07002990 return objp;
2991}
2992
Christoph Lametere498be72005-09-09 13:03:32 -07002993#ifdef CONFIG_NUMA
2994/*
David Rientjesf0432d12014-04-07 15:37:30 -07002995 * Try allocating on another node if PF_SPREAD_SLAB is a mempolicy is set.
Paul Jacksonc61afb12006-03-24 03:16:08 -08002996 *
2997 * If we are in_interrupt, then process context, including cpusets and
2998 * mempolicy, may not apply and should not be used for allocation policy.
2999 */
3000static void *alternate_node_alloc(struct kmem_cache *cachep, gfp_t flags)
3001{
3002 int nid_alloc, nid_here;
3003
Christoph Lameter765c4502006-09-27 01:50:08 -07003004 if (in_interrupt() || (flags & __GFP_THISNODE))
Paul Jacksonc61afb12006-03-24 03:16:08 -08003005 return NULL;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003006 nid_alloc = nid_here = numa_mem_id();
Paul Jacksonc61afb12006-03-24 03:16:08 -08003007 if (cpuset_do_slab_mem_spread() && (cachep->flags & SLAB_MEM_SPREAD))
Jack Steiner6adef3e2010-05-26 14:42:49 -07003008 nid_alloc = cpuset_slab_spread_node();
Paul Jacksonc61afb12006-03-24 03:16:08 -08003009 else if (current->mempolicy)
David Rientjes2a389612014-04-07 15:37:29 -07003010 nid_alloc = mempolicy_slab_node();
Paul Jacksonc61afb12006-03-24 03:16:08 -08003011 if (nid_alloc != nid_here)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003012 return ____cache_alloc_node(cachep, flags, nid_alloc);
Paul Jacksonc61afb12006-03-24 03:16:08 -08003013 return NULL;
3014}
3015
3016/*
Christoph Lameter765c4502006-09-27 01:50:08 -07003017 * Fallback function if there was no memory available and no objects on a
Christoph Lameter3c517a62006-12-06 20:33:29 -08003018 * certain node and fall back is permitted. First we scan all the
Christoph Lameter6a673682013-01-10 19:14:19 +00003019 * available node for available objects. If that fails then we
Christoph Lameter3c517a62006-12-06 20:33:29 -08003020 * perform an allocation without specifying a node. This allows the page
3021 * allocator to do its reclaim / fallback magic. We then insert the
3022 * slab into the proper nodelist and then allocate from it.
Christoph Lameter765c4502006-09-27 01:50:08 -07003023 */
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003024static void *fallback_alloc(struct kmem_cache *cache, gfp_t flags)
Christoph Lameter765c4502006-09-27 01:50:08 -07003025{
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003026 struct zonelist *zonelist;
3027 gfp_t local_flags;
Mel Gormandd1a2392008-04-28 02:12:17 -07003028 struct zoneref *z;
Mel Gorman54a6eb52008-04-28 02:12:16 -07003029 struct zone *zone;
3030 enum zone_type high_zoneidx = gfp_zone(flags);
Christoph Lameter765c4502006-09-27 01:50:08 -07003031 void *obj = NULL;
Christoph Lameter3c517a62006-12-06 20:33:29 -08003032 int nid;
Mel Gormancc9a6c82012-03-21 16:34:11 -07003033 unsigned int cpuset_mems_cookie;
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003034
3035 if (flags & __GFP_THISNODE)
3036 return NULL;
3037
Christoph Lameter6cb06222007-10-16 01:25:41 -07003038 local_flags = flags & (GFP_CONSTRAINT_MASK|GFP_RECLAIM_MASK);
Christoph Lameter765c4502006-09-27 01:50:08 -07003039
Mel Gormancc9a6c82012-03-21 16:34:11 -07003040retry_cpuset:
Mel Gormand26914d2014-04-03 14:47:24 -07003041 cpuset_mems_cookie = read_mems_allowed_begin();
David Rientjes2a389612014-04-07 15:37:29 -07003042 zonelist = node_zonelist(mempolicy_slab_node(), flags);
Mel Gormancc9a6c82012-03-21 16:34:11 -07003043
Christoph Lameter3c517a62006-12-06 20:33:29 -08003044retry:
3045 /*
3046 * Look through allowed nodes for objects available
3047 * from existing per node queues.
3048 */
Mel Gorman54a6eb52008-04-28 02:12:16 -07003049 for_each_zone_zonelist(zone, z, zonelist, high_zoneidx) {
3050 nid = zone_to_nid(zone);
Christoph Lameteraedb0eb2006-10-21 10:24:16 -07003051
Mel Gorman54a6eb52008-04-28 02:12:16 -07003052 if (cpuset_zone_allowed_hardwall(zone, flags) &&
Christoph Lameter18bf8542014-08-06 16:04:11 -07003053 get_node(cache, nid) &&
3054 get_node(cache, nid)->free_objects) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003055 obj = ____cache_alloc_node(cache,
3056 flags | GFP_THISNODE, nid);
Christoph Lameter481c5342008-06-21 16:46:35 -07003057 if (obj)
3058 break;
3059 }
Christoph Lameter3c517a62006-12-06 20:33:29 -08003060 }
3061
Christoph Lametercfce6602007-05-06 14:50:17 -07003062 if (!obj) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003063 /*
3064 * This allocation will be performed within the constraints
3065 * of the current cpuset / memory policy requirements.
3066 * We may trigger various forms of reclaim on the allowed
3067 * set and go into memory reserves if necessary.
3068 */
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09003069 struct page *page;
3070
Christoph Lameterdd47ea72006-12-13 00:34:11 -08003071 if (local_flags & __GFP_WAIT)
3072 local_irq_enable();
3073 kmem_flagcheck(cache, flags);
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09003074 page = kmem_getpages(cache, local_flags, numa_mem_id());
Christoph Lameterdd47ea72006-12-13 00:34:11 -08003075 if (local_flags & __GFP_WAIT)
3076 local_irq_disable();
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09003077 if (page) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003078 /*
3079 * Insert into the appropriate per node queues
3080 */
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09003081 nid = page_to_nid(page);
3082 if (cache_grow(cache, flags, nid, page)) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003083 obj = ____cache_alloc_node(cache,
3084 flags | GFP_THISNODE, nid);
3085 if (!obj)
3086 /*
3087 * Another processor may allocate the
3088 * objects in the slab since we are
3089 * not holding any locks.
3090 */
3091 goto retry;
3092 } else {
Hugh Dickinsb6a60452007-01-05 16:36:36 -08003093 /* cache_grow already freed obj */
Christoph Lameter3c517a62006-12-06 20:33:29 -08003094 obj = NULL;
3095 }
3096 }
Christoph Lameteraedb0eb2006-10-21 10:24:16 -07003097 }
Mel Gormancc9a6c82012-03-21 16:34:11 -07003098
Mel Gormand26914d2014-04-03 14:47:24 -07003099 if (unlikely(!obj && read_mems_allowed_retry(cpuset_mems_cookie)))
Mel Gormancc9a6c82012-03-21 16:34:11 -07003100 goto retry_cpuset;
Christoph Lameter765c4502006-09-27 01:50:08 -07003101 return obj;
3102}
3103
3104/*
Christoph Lametere498be72005-09-09 13:03:32 -07003105 * A interface to enable slab creation on nodeid
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106 */
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003107static void *____cache_alloc_node(struct kmem_cache *cachep, gfp_t flags,
Andrew Mortona737b3e2006-03-22 00:08:11 -08003108 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07003109{
3110 struct list_head *entry;
Joonsoo Kim8456a642013-10-24 10:07:49 +09003111 struct page *page;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003112 struct kmem_cache_node *n;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003113 void *obj;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003114 int x;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003115
Aaron Tomlin14e50c62013-04-26 16:15:34 +01003116 VM_BUG_ON(nodeid > num_online_nodes());
Christoph Lameter18bf8542014-08-06 16:04:11 -07003117 n = get_node(cachep, nodeid);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003118 BUG_ON(!n);
Christoph Lametere498be72005-09-09 13:03:32 -07003119
Andrew Mortona737b3e2006-03-22 00:08:11 -08003120retry:
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08003121 check_irq_off();
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003122 spin_lock(&n->list_lock);
3123 entry = n->slabs_partial.next;
3124 if (entry == &n->slabs_partial) {
3125 n->free_touched = 1;
3126 entry = n->slabs_free.next;
3127 if (entry == &n->slabs_free)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003128 goto must_grow;
3129 }
Christoph Lametere498be72005-09-09 13:03:32 -07003130
Joonsoo Kim8456a642013-10-24 10:07:49 +09003131 page = list_entry(entry, struct page, lru);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003132 check_spinlock_acquired_node(cachep, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07003133
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003134 STATS_INC_NODEALLOCS(cachep);
3135 STATS_INC_ACTIVE(cachep);
3136 STATS_SET_HIGH(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003137
Joonsoo Kim8456a642013-10-24 10:07:49 +09003138 BUG_ON(page->active == cachep->num);
Christoph Lametere498be72005-09-09 13:03:32 -07003139
Joonsoo Kim8456a642013-10-24 10:07:49 +09003140 obj = slab_get_obj(cachep, page, nodeid);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003141 n->free_objects--;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003142 /* move slabp to correct slabp list: */
Joonsoo Kim8456a642013-10-24 10:07:49 +09003143 list_del(&page->lru);
Christoph Lametere498be72005-09-09 13:03:32 -07003144
Joonsoo Kim8456a642013-10-24 10:07:49 +09003145 if (page->active == cachep->num)
3146 list_add(&page->lru, &n->slabs_full);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003147 else
Joonsoo Kim8456a642013-10-24 10:07:49 +09003148 list_add(&page->lru, &n->slabs_partial);
Christoph Lametere498be72005-09-09 13:03:32 -07003149
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003150 spin_unlock(&n->list_lock);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003151 goto done;
Christoph Lametere498be72005-09-09 13:03:32 -07003152
Andrew Mortona737b3e2006-03-22 00:08:11 -08003153must_grow:
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003154 spin_unlock(&n->list_lock);
Christoph Lameter3c517a62006-12-06 20:33:29 -08003155 x = cache_grow(cachep, flags | GFP_THISNODE, nodeid, NULL);
Christoph Lameter765c4502006-09-27 01:50:08 -07003156 if (x)
3157 goto retry;
Christoph Lametere498be72005-09-09 13:03:32 -07003158
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003159 return fallback_alloc(cachep, flags);
Christoph Lameter765c4502006-09-27 01:50:08 -07003160
Andrew Mortona737b3e2006-03-22 00:08:11 -08003161done:
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003162 return obj;
Christoph Lametere498be72005-09-09 13:03:32 -07003163}
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003164
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003165static __always_inline void *
Ezequiel Garcia48356302012-09-08 17:47:57 -03003166slab_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003167 unsigned long caller)
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003168{
3169 unsigned long save_flags;
3170 void *ptr;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003171 int slab_node = numa_mem_id();
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003172
Benjamin Herrenschmidtdcce2842009-06-18 13:24:12 +10003173 flags &= gfp_allowed_mask;
Pekka Enberg7e85ee02009-06-12 14:03:06 +03003174
Nick Piggincf40bd12009-01-21 08:12:39 +01003175 lockdep_trace_alloc(flags);
3176
Akinobu Mita773ff602008-12-23 19:37:01 +09003177 if (slab_should_failslab(cachep, flags))
Akinobu Mita824ebef2007-05-06 14:49:58 -07003178 return NULL;
3179
Glauber Costad79923f2012-12-18 14:22:48 -08003180 cachep = memcg_kmem_get_cache(cachep, flags);
3181
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003182 cache_alloc_debugcheck_before(cachep, flags);
3183 local_irq_save(save_flags);
3184
Andrew Mortoneacbbae2011-07-28 13:59:49 -07003185 if (nodeid == NUMA_NO_NODE)
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003186 nodeid = slab_node;
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003187
Christoph Lameter18bf8542014-08-06 16:04:11 -07003188 if (unlikely(!get_node(cachep, nodeid))) {
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003189 /* Node not bootstrapped yet */
3190 ptr = fallback_alloc(cachep, flags);
3191 goto out;
3192 }
3193
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003194 if (nodeid == slab_node) {
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003195 /*
3196 * Use the locally cached objects if possible.
3197 * However ____cache_alloc does not allow fallback
3198 * to other nodes. It may fail while we still have
3199 * objects on other nodes available.
3200 */
3201 ptr = ____cache_alloc(cachep, flags);
3202 if (ptr)
3203 goto out;
3204 }
3205 /* ___cache_alloc_node can fall back to other nodes */
3206 ptr = ____cache_alloc_node(cachep, flags, nodeid);
3207 out:
3208 local_irq_restore(save_flags);
3209 ptr = cache_alloc_debugcheck_after(cachep, flags, ptr, caller);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003210 kmemleak_alloc_recursive(ptr, cachep->object_size, 1, cachep->flags,
Catalin Marinasd5cff632009-06-11 13:22:40 +01003211 flags);
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003212
Joe Perches5087c822013-09-10 17:02:51 -07003213 if (likely(ptr)) {
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003214 kmemcheck_slab_alloc(cachep, flags, ptr, cachep->object_size);
Joe Perches5087c822013-09-10 17:02:51 -07003215 if (unlikely(flags & __GFP_ZERO))
3216 memset(ptr, 0, cachep->object_size);
3217 }
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003218
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003219 return ptr;
3220}
3221
3222static __always_inline void *
3223__do_cache_alloc(struct kmem_cache *cache, gfp_t flags)
3224{
3225 void *objp;
3226
David Rientjesf0432d12014-04-07 15:37:30 -07003227 if (current->mempolicy || unlikely(current->flags & PF_SPREAD_SLAB)) {
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003228 objp = alternate_node_alloc(cache, flags);
3229 if (objp)
3230 goto out;
3231 }
3232 objp = ____cache_alloc(cache, flags);
3233
3234 /*
3235 * We may just have run out of memory on the local node.
3236 * ____cache_alloc_node() knows how to locate memory on other nodes
3237 */
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003238 if (!objp)
3239 objp = ____cache_alloc_node(cache, flags, numa_mem_id());
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003240
3241 out:
3242 return objp;
3243}
3244#else
3245
3246static __always_inline void *
3247__do_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
3248{
3249 return ____cache_alloc(cachep, flags);
3250}
3251
3252#endif /* CONFIG_NUMA */
3253
3254static __always_inline void *
Ezequiel Garcia48356302012-09-08 17:47:57 -03003255slab_alloc(struct kmem_cache *cachep, gfp_t flags, unsigned long caller)
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003256{
3257 unsigned long save_flags;
3258 void *objp;
3259
Benjamin Herrenschmidtdcce2842009-06-18 13:24:12 +10003260 flags &= gfp_allowed_mask;
Pekka Enberg7e85ee02009-06-12 14:03:06 +03003261
Nick Piggincf40bd12009-01-21 08:12:39 +01003262 lockdep_trace_alloc(flags);
3263
Akinobu Mita773ff602008-12-23 19:37:01 +09003264 if (slab_should_failslab(cachep, flags))
Akinobu Mita824ebef2007-05-06 14:49:58 -07003265 return NULL;
3266
Glauber Costad79923f2012-12-18 14:22:48 -08003267 cachep = memcg_kmem_get_cache(cachep, flags);
3268
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003269 cache_alloc_debugcheck_before(cachep, flags);
3270 local_irq_save(save_flags);
3271 objp = __do_cache_alloc(cachep, flags);
3272 local_irq_restore(save_flags);
3273 objp = cache_alloc_debugcheck_after(cachep, flags, objp, caller);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003274 kmemleak_alloc_recursive(objp, cachep->object_size, 1, cachep->flags,
Catalin Marinasd5cff632009-06-11 13:22:40 +01003275 flags);
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003276 prefetchw(objp);
3277
Joe Perches5087c822013-09-10 17:02:51 -07003278 if (likely(objp)) {
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003279 kmemcheck_slab_alloc(cachep, flags, objp, cachep->object_size);
Joe Perches5087c822013-09-10 17:02:51 -07003280 if (unlikely(flags & __GFP_ZERO))
3281 memset(objp, 0, cachep->object_size);
3282 }
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003283
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003284 return objp;
3285}
Christoph Lametere498be72005-09-09 13:03:32 -07003286
3287/*
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08003288 * Caller needs to acquire correct kmem_cache_node's list_lock
Joonsoo Kim97654df2014-08-06 16:04:25 -07003289 * @list: List of detached free slabs should be freed by caller
Christoph Lametere498be72005-09-09 13:03:32 -07003290 */
Joonsoo Kim97654df2014-08-06 16:04:25 -07003291static void free_block(struct kmem_cache *cachep, void **objpp,
3292 int nr_objects, int node, struct list_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003293{
3294 int i;
Joonsoo Kim25c063f2014-08-06 16:04:22 -07003295 struct kmem_cache_node *n = get_node(cachep, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003296
3297 for (i = 0; i < nr_objects; i++) {
Mel Gorman072bb0a2012-07-31 16:43:58 -07003298 void *objp;
Joonsoo Kim8456a642013-10-24 10:07:49 +09003299 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300
Mel Gorman072bb0a2012-07-31 16:43:58 -07003301 clear_obj_pfmemalloc(&objpp[i]);
3302 objp = objpp[i];
3303
Joonsoo Kim8456a642013-10-24 10:07:49 +09003304 page = virt_to_head_page(objp);
Joonsoo Kim8456a642013-10-24 10:07:49 +09003305 list_del(&page->lru);
Christoph Lameterff694162005-09-22 21:44:02 -07003306 check_spinlock_acquired_node(cachep, node);
Joonsoo Kim8456a642013-10-24 10:07:49 +09003307 slab_put_obj(cachep, page, objp, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003308 STATS_DEC_ACTIVE(cachep);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003309 n->free_objects++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003310
3311 /* fixup slab chains */
Joonsoo Kim8456a642013-10-24 10:07:49 +09003312 if (page->active == 0) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003313 if (n->free_objects > n->free_limit) {
3314 n->free_objects -= cachep->num;
Joonsoo Kim97654df2014-08-06 16:04:25 -07003315 list_add_tail(&page->lru, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316 } else {
Joonsoo Kim8456a642013-10-24 10:07:49 +09003317 list_add(&page->lru, &n->slabs_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003318 }
3319 } else {
3320 /* Unconditionally move a slab to the end of the
3321 * partial list on free - maximum time for the
3322 * other objects to be freed, too.
3323 */
Joonsoo Kim8456a642013-10-24 10:07:49 +09003324 list_add_tail(&page->lru, &n->slabs_partial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325 }
3326 }
3327}
3328
Pekka Enberg343e0d72006-02-01 03:05:50 -08003329static void cache_flusharray(struct kmem_cache *cachep, struct array_cache *ac)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330{
3331 int batchcount;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003332 struct kmem_cache_node *n;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003333 int node = numa_mem_id();
Joonsoo Kim97654df2014-08-06 16:04:25 -07003334 LIST_HEAD(list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003335
3336 batchcount = ac->batchcount;
3337#if DEBUG
3338 BUG_ON(!batchcount || batchcount > ac->avail);
3339#endif
3340 check_irq_off();
Christoph Lameter18bf8542014-08-06 16:04:11 -07003341 n = get_node(cachep, node);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003342 spin_lock(&n->list_lock);
3343 if (n->shared) {
3344 struct array_cache *shared_array = n->shared;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003345 int max = shared_array->limit - shared_array->avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346 if (max) {
3347 if (batchcount > max)
3348 batchcount = max;
Christoph Lametere498be72005-09-09 13:03:32 -07003349 memcpy(&(shared_array->entry[shared_array->avail]),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003350 ac->entry, sizeof(void *) * batchcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351 shared_array->avail += batchcount;
3352 goto free_done;
3353 }
3354 }
3355
Joonsoo Kim97654df2014-08-06 16:04:25 -07003356 free_block(cachep, ac->entry, batchcount, node, &list);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003357free_done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003358#if STATS
3359 {
3360 int i = 0;
3361 struct list_head *p;
3362
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003363 p = n->slabs_free.next;
3364 while (p != &(n->slabs_free)) {
Joonsoo Kim8456a642013-10-24 10:07:49 +09003365 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003366
Joonsoo Kim8456a642013-10-24 10:07:49 +09003367 page = list_entry(p, struct page, lru);
3368 BUG_ON(page->active);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369
3370 i++;
3371 p = p->next;
3372 }
3373 STATS_SET_FREEABLE(cachep, i);
3374 }
3375#endif
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003376 spin_unlock(&n->list_lock);
Joonsoo Kim97654df2014-08-06 16:04:25 -07003377 slabs_destroy(cachep, &list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003378 ac->avail -= batchcount;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003379 memmove(ac->entry, &(ac->entry[batchcount]), sizeof(void *)*ac->avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003380}
3381
3382/*
Andrew Mortona737b3e2006-03-22 00:08:11 -08003383 * Release an obj back to its cache. If the obj has a constructed state, it must
3384 * be in this state _before_ it is released. Called with disabled ints.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385 */
Suleiman Souhlala947eb92011-06-02 00:16:42 -07003386static inline void __cache_free(struct kmem_cache *cachep, void *objp,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003387 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388{
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003389 struct array_cache *ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003390
3391 check_irq_off();
Catalin Marinasd5cff632009-06-11 13:22:40 +01003392 kmemleak_free_recursive(objp, cachep->flags);
Suleiman Souhlala947eb92011-06-02 00:16:42 -07003393 objp = cache_free_debugcheck(cachep, objp, caller);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003394
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003395 kmemcheck_slab_free(cachep, objp, cachep->object_size);
Pekka Enbergc175eea2008-05-09 20:35:53 +02003396
Siddha, Suresh B1807a1a2007-08-22 14:01:49 -07003397 /*
3398 * Skip calling cache_free_alien() when the platform is not numa.
3399 * This will avoid cache misses that happen while accessing slabp (which
3400 * is per page memory reference) to get nodeid. Instead use a global
3401 * variable to skip the call, which is mostly likely to be present in
3402 * the cache.
3403 */
Mel Gormanb6e68bc2009-06-16 15:32:16 -07003404 if (nr_online_nodes > 1 && cache_free_alien(cachep, objp))
Pekka Enberg729bd0b2006-06-23 02:03:05 -07003405 return;
Christoph Lametere498be72005-09-09 13:03:32 -07003406
Linus Torvalds1da177e2005-04-16 15:20:36 -07003407 if (likely(ac->avail < ac->limit)) {
3408 STATS_INC_FREEHIT(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003409 } else {
3410 STATS_INC_FREEMISS(cachep);
3411 cache_flusharray(cachep, ac);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003412 }
Zhao Jin42c8c992011-08-27 00:26:17 +08003413
Mel Gorman072bb0a2012-07-31 16:43:58 -07003414 ac_put_obj(cachep, ac, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003415}
3416
3417/**
3418 * kmem_cache_alloc - Allocate an object
3419 * @cachep: The cache to allocate from.
3420 * @flags: See kmalloc().
3421 *
3422 * Allocate an object from this cache. The flags are only relevant
3423 * if the cache has no available objects.
3424 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003425void *kmem_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426{
Ezequiel Garcia48356302012-09-08 17:47:57 -03003427 void *ret = slab_alloc(cachep, flags, _RET_IP_);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003428
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003429 trace_kmem_cache_alloc(_RET_IP_, ret,
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003430 cachep->object_size, cachep->size, flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003431
3432 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433}
3434EXPORT_SYMBOL(kmem_cache_alloc);
3435
Li Zefan0f24f122009-12-11 15:45:30 +08003436#ifdef CONFIG_TRACING
Steven Rostedt85beb582010-11-24 16:23:34 -05003437void *
Ezequiel Garcia40521472012-09-08 17:47:56 -03003438kmem_cache_alloc_trace(struct kmem_cache *cachep, gfp_t flags, size_t size)
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003439{
Steven Rostedt85beb582010-11-24 16:23:34 -05003440 void *ret;
3441
Ezequiel Garcia48356302012-09-08 17:47:57 -03003442 ret = slab_alloc(cachep, flags, _RET_IP_);
Steven Rostedt85beb582010-11-24 16:23:34 -05003443
3444 trace_kmalloc(_RET_IP_, ret,
Ezequiel Garciaff4fcd02012-09-08 17:47:52 -03003445 size, cachep->size, flags);
Steven Rostedt85beb582010-11-24 16:23:34 -05003446 return ret;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003447}
Steven Rostedt85beb582010-11-24 16:23:34 -05003448EXPORT_SYMBOL(kmem_cache_alloc_trace);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003449#endif
3450
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451#ifdef CONFIG_NUMA
Zhouping Liud0d04b72013-05-16 11:36:23 +08003452/**
3453 * kmem_cache_alloc_node - Allocate an object on the specified node
3454 * @cachep: The cache to allocate from.
3455 * @flags: See kmalloc().
3456 * @nodeid: node number of the target node.
3457 *
3458 * Identical to kmem_cache_alloc but it will allocate memory on the given
3459 * node, which can improve the performance for cpu bound structures.
3460 *
3461 * Fallback to other node is possible if __GFP_THISNODE is not set.
3462 */
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003463void *kmem_cache_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid)
3464{
Ezequiel Garcia48356302012-09-08 17:47:57 -03003465 void *ret = slab_alloc_node(cachep, flags, nodeid, _RET_IP_);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003466
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003467 trace_kmem_cache_alloc_node(_RET_IP_, ret,
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003468 cachep->object_size, cachep->size,
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003469 flags, nodeid);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003470
3471 return ret;
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003472}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003473EXPORT_SYMBOL(kmem_cache_alloc_node);
3474
Li Zefan0f24f122009-12-11 15:45:30 +08003475#ifdef CONFIG_TRACING
Ezequiel Garcia40521472012-09-08 17:47:56 -03003476void *kmem_cache_alloc_node_trace(struct kmem_cache *cachep,
Steven Rostedt85beb582010-11-24 16:23:34 -05003477 gfp_t flags,
Ezequiel Garcia40521472012-09-08 17:47:56 -03003478 int nodeid,
3479 size_t size)
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003480{
Steven Rostedt85beb582010-11-24 16:23:34 -05003481 void *ret;
3482
Ezequiel Garcia592f4142012-09-25 08:07:08 -03003483 ret = slab_alloc_node(cachep, flags, nodeid, _RET_IP_);
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003484
Steven Rostedt85beb582010-11-24 16:23:34 -05003485 trace_kmalloc_node(_RET_IP_, ret,
Ezequiel Garciaff4fcd02012-09-08 17:47:52 -03003486 size, cachep->size,
Steven Rostedt85beb582010-11-24 16:23:34 -05003487 flags, nodeid);
3488 return ret;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003489}
Steven Rostedt85beb582010-11-24 16:23:34 -05003490EXPORT_SYMBOL(kmem_cache_alloc_node_trace);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003491#endif
3492
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003493static __always_inline void *
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003494__do_kmalloc_node(size_t size, gfp_t flags, int node, unsigned long caller)
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003495{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003496 struct kmem_cache *cachep;
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003497
Christoph Lameter2c59dd62013-01-10 19:14:19 +00003498 cachep = kmalloc_slab(size, flags);
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003499 if (unlikely(ZERO_OR_NULL_PTR(cachep)))
3500 return cachep;
Ezequiel Garcia40521472012-09-08 17:47:56 -03003501 return kmem_cache_alloc_node_trace(cachep, flags, node, size);
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003502}
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003503
Li Zefan0bb38a52009-12-11 15:45:50 +08003504#if defined(CONFIG_DEBUG_SLAB) || defined(CONFIG_TRACING)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003505void *__kmalloc_node(size_t size, gfp_t flags, int node)
3506{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003507 return __do_kmalloc_node(size, flags, node, _RET_IP_);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003508}
Christoph Hellwigdbe5e692006-09-25 23:31:36 -07003509EXPORT_SYMBOL(__kmalloc_node);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003510
3511void *__kmalloc_node_track_caller(size_t size, gfp_t flags,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003512 int node, unsigned long caller)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003513{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003514 return __do_kmalloc_node(size, flags, node, caller);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003515}
3516EXPORT_SYMBOL(__kmalloc_node_track_caller);
3517#else
3518void *__kmalloc_node(size_t size, gfp_t flags, int node)
3519{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003520 return __do_kmalloc_node(size, flags, node, 0);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003521}
3522EXPORT_SYMBOL(__kmalloc_node);
Li Zefan0bb38a52009-12-11 15:45:50 +08003523#endif /* CONFIG_DEBUG_SLAB || CONFIG_TRACING */
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003524#endif /* CONFIG_NUMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003525
3526/**
Paul Drynoff800590f2006-06-23 02:03:48 -07003527 * __do_kmalloc - allocate memory
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528 * @size: how many bytes of memory are required.
Paul Drynoff800590f2006-06-23 02:03:48 -07003529 * @flags: the type of memory to allocate (see kmalloc).
Randy Dunlap911851e2006-03-22 00:08:14 -08003530 * @caller: function caller for debug tracking of the caller
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531 */
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003532static __always_inline void *__do_kmalloc(size_t size, gfp_t flags,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003533 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003534{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003535 struct kmem_cache *cachep;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003536 void *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537
Christoph Lameter2c59dd62013-01-10 19:14:19 +00003538 cachep = kmalloc_slab(size, flags);
Linus Torvaldsa5c96d82007-07-19 13:17:15 -07003539 if (unlikely(ZERO_OR_NULL_PTR(cachep)))
3540 return cachep;
Ezequiel Garcia48356302012-09-08 17:47:57 -03003541 ret = slab_alloc(cachep, flags, caller);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003542
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003543 trace_kmalloc(caller, ret,
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003544 size, cachep->size, flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003545
3546 return ret;
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003547}
3548
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003549
Li Zefan0bb38a52009-12-11 15:45:50 +08003550#if defined(CONFIG_DEBUG_SLAB) || defined(CONFIG_TRACING)
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003551void *__kmalloc(size_t size, gfp_t flags)
3552{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003553 return __do_kmalloc(size, flags, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003554}
3555EXPORT_SYMBOL(__kmalloc);
3556
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003557void *__kmalloc_track_caller(size_t size, gfp_t flags, unsigned long caller)
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003558{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003559 return __do_kmalloc(size, flags, caller);
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003560}
3561EXPORT_SYMBOL(__kmalloc_track_caller);
Christoph Hellwig1d2c8ee2006-10-04 02:15:25 -07003562
3563#else
3564void *__kmalloc(size_t size, gfp_t flags)
3565{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003566 return __do_kmalloc(size, flags, 0);
Christoph Hellwig1d2c8ee2006-10-04 02:15:25 -07003567}
3568EXPORT_SYMBOL(__kmalloc);
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003569#endif
3570
Linus Torvalds1da177e2005-04-16 15:20:36 -07003571/**
3572 * kmem_cache_free - Deallocate an object
3573 * @cachep: The cache the allocation was from.
3574 * @objp: The previously allocated object.
3575 *
3576 * Free an object which was previously allocated from this
3577 * cache.
3578 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003579void kmem_cache_free(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003580{
3581 unsigned long flags;
Glauber Costab9ce5ef2012-12-18 14:22:46 -08003582 cachep = cache_from_obj(cachep, objp);
3583 if (!cachep)
3584 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585
3586 local_irq_save(flags);
Feng Tangd97d4762012-07-02 14:29:10 +08003587 debug_check_no_locks_freed(objp, cachep->object_size);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -07003588 if (!(cachep->flags & SLAB_DEBUG_OBJECTS))
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003589 debug_check_no_obj_freed(objp, cachep->object_size);
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003590 __cache_free(cachep, objp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003591 local_irq_restore(flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003592
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003593 trace_kmem_cache_free(_RET_IP_, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003594}
3595EXPORT_SYMBOL(kmem_cache_free);
3596
3597/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003598 * kfree - free previously allocated memory
3599 * @objp: pointer returned by kmalloc.
3600 *
Pekka Enberg80e93ef2005-09-09 13:10:16 -07003601 * If @objp is NULL, no operation is performed.
3602 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003603 * Don't free memory not originally allocated by kmalloc()
3604 * or you will run into trouble.
3605 */
3606void kfree(const void *objp)
3607{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003608 struct kmem_cache *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003609 unsigned long flags;
3610
Pekka Enberg2121db72009-03-25 11:05:57 +02003611 trace_kfree(_RET_IP_, objp);
3612
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003613 if (unlikely(ZERO_OR_NULL_PTR(objp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003614 return;
3615 local_irq_save(flags);
3616 kfree_debugcheck(objp);
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -08003617 c = virt_to_cache(objp);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003618 debug_check_no_locks_freed(objp, c->object_size);
3619
3620 debug_check_no_obj_freed(objp, c->object_size);
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003621 __cache_free(c, (void *)objp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003622 local_irq_restore(flags);
3623}
3624EXPORT_SYMBOL(kfree);
3625
Christoph Lametere498be72005-09-09 13:03:32 -07003626/*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003627 * This initializes kmem_cache_node or resizes various caches for all nodes.
Christoph Lametere498be72005-09-09 13:03:32 -07003628 */
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08003629static int alloc_kmem_cache_node(struct kmem_cache *cachep, gfp_t gfp)
Christoph Lametere498be72005-09-09 13:03:32 -07003630{
3631 int node;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003632 struct kmem_cache_node *n;
Christoph Lametercafeb022006-03-25 03:06:46 -08003633 struct array_cache *new_shared;
Joonsoo Kimc8522a32014-08-06 16:04:29 -07003634 struct alien_cache **new_alien = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07003635
Mel Gorman9c09a952008-01-24 05:49:54 -08003636 for_each_online_node(node) {
Christoph Lametercafeb022006-03-25 03:06:46 -08003637
Paul Menage3395ee02006-12-06 20:32:16 -08003638 if (use_alien_caches) {
Pekka Enberg83b519e2009-06-10 19:40:04 +03003639 new_alien = alloc_alien_cache(node, cachep->limit, gfp);
Paul Menage3395ee02006-12-06 20:32:16 -08003640 if (!new_alien)
3641 goto fail;
3642 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003643
Eric Dumazet63109842007-05-06 14:49:28 -07003644 new_shared = NULL;
3645 if (cachep->shared) {
3646 new_shared = alloc_arraycache(node,
Christoph Lameter0718dc22006-03-25 03:06:47 -08003647 cachep->shared*cachep->batchcount,
Pekka Enberg83b519e2009-06-10 19:40:04 +03003648 0xbaadf00d, gfp);
Eric Dumazet63109842007-05-06 14:49:28 -07003649 if (!new_shared) {
3650 free_alien_cache(new_alien);
3651 goto fail;
3652 }
Christoph Lameter0718dc22006-03-25 03:06:47 -08003653 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003654
Christoph Lameter18bf8542014-08-06 16:04:11 -07003655 n = get_node(cachep, node);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003656 if (n) {
3657 struct array_cache *shared = n->shared;
Joonsoo Kim97654df2014-08-06 16:04:25 -07003658 LIST_HEAD(list);
Christoph Lametercafeb022006-03-25 03:06:46 -08003659
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003660 spin_lock_irq(&n->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07003661
Christoph Lametercafeb022006-03-25 03:06:46 -08003662 if (shared)
Christoph Lameter0718dc22006-03-25 03:06:47 -08003663 free_block(cachep, shared->entry,
Joonsoo Kim97654df2014-08-06 16:04:25 -07003664 shared->avail, node, &list);
Christoph Lametere498be72005-09-09 13:03:32 -07003665
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003666 n->shared = new_shared;
3667 if (!n->alien) {
3668 n->alien = new_alien;
Christoph Lametere498be72005-09-09 13:03:32 -07003669 new_alien = NULL;
3670 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003671 n->free_limit = (1 + nr_cpus_node(node)) *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003672 cachep->batchcount + cachep->num;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003673 spin_unlock_irq(&n->list_lock);
Joonsoo Kim97654df2014-08-06 16:04:25 -07003674 slabs_destroy(cachep, &list);
Christoph Lametercafeb022006-03-25 03:06:46 -08003675 kfree(shared);
Christoph Lametere498be72005-09-09 13:03:32 -07003676 free_alien_cache(new_alien);
3677 continue;
3678 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003679 n = kmalloc_node(sizeof(struct kmem_cache_node), gfp, node);
3680 if (!n) {
Christoph Lameter0718dc22006-03-25 03:06:47 -08003681 free_alien_cache(new_alien);
3682 kfree(new_shared);
Christoph Lametere498be72005-09-09 13:03:32 -07003683 goto fail;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003684 }
Christoph Lametere498be72005-09-09 13:03:32 -07003685
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003686 kmem_cache_node_init(n);
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08003687 n->next_reap = jiffies + REAPTIMEOUT_NODE +
3688 ((unsigned long)cachep) % REAPTIMEOUT_NODE;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003689 n->shared = new_shared;
3690 n->alien = new_alien;
3691 n->free_limit = (1 + nr_cpus_node(node)) *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003692 cachep->batchcount + cachep->num;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003693 cachep->node[node] = n;
Christoph Lametere498be72005-09-09 13:03:32 -07003694 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003695 return 0;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003696
Andrew Mortona737b3e2006-03-22 00:08:11 -08003697fail:
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003698 if (!cachep->list.next) {
Christoph Lameter0718dc22006-03-25 03:06:47 -08003699 /* Cache is not active yet. Roll back what we did */
3700 node--;
3701 while (node >= 0) {
Christoph Lameter18bf8542014-08-06 16:04:11 -07003702 n = get_node(cachep, node);
3703 if (n) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003704 kfree(n->shared);
3705 free_alien_cache(n->alien);
3706 kfree(n);
Christoph Lameter6a673682013-01-10 19:14:19 +00003707 cachep->node[node] = NULL;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003708 }
3709 node--;
3710 }
3711 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003712 return -ENOMEM;
Christoph Lametere498be72005-09-09 13:03:32 -07003713}
3714
Linus Torvalds1da177e2005-04-16 15:20:36 -07003715struct ccupdate_struct {
Pekka Enberg343e0d72006-02-01 03:05:50 -08003716 struct kmem_cache *cachep;
Eric Dumazetacfe7d72011-07-25 08:55:42 +02003717 struct array_cache *new[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003718};
3719
3720static void do_ccupdate_local(void *info)
3721{
Andrew Mortona737b3e2006-03-22 00:08:11 -08003722 struct ccupdate_struct *new = info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723 struct array_cache *old;
3724
3725 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003726 old = cpu_cache_get(new->cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003727
Linus Torvalds1da177e2005-04-16 15:20:36 -07003728 new->cachep->array[smp_processor_id()] = new->new[smp_processor_id()];
3729 new->new[smp_processor_id()] = old;
3730}
3731
Christoph Lameter18004c52012-07-06 15:25:12 -05003732/* Always called with the slab_mutex held */
Glauber Costa943a4512012-12-18 14:23:03 -08003733static int __do_tune_cpucache(struct kmem_cache *cachep, int limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03003734 int batchcount, int shared, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003735{
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003736 struct ccupdate_struct *new;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07003737 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003738
Eric Dumazetacfe7d72011-07-25 08:55:42 +02003739 new = kzalloc(sizeof(*new) + nr_cpu_ids * sizeof(struct array_cache *),
3740 gfp);
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003741 if (!new)
3742 return -ENOMEM;
3743
Christoph Lametere498be72005-09-09 13:03:32 -07003744 for_each_online_cpu(i) {
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003745 new->new[i] = alloc_arraycache(cpu_to_mem(i), limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03003746 batchcount, gfp);
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003747 if (!new->new[i]) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003748 for (i--; i >= 0; i--)
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003749 kfree(new->new[i]);
3750 kfree(new);
Christoph Lametere498be72005-09-09 13:03:32 -07003751 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003752 }
3753 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003754 new->cachep = cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003755
Jens Axboe15c8b6c2008-05-09 09:39:44 +02003756 on_each_cpu(do_ccupdate_local, (void *)new, 1);
Christoph Lametere498be72005-09-09 13:03:32 -07003757
Linus Torvalds1da177e2005-04-16 15:20:36 -07003758 check_irq_on();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759 cachep->batchcount = batchcount;
3760 cachep->limit = limit;
Christoph Lametere498be72005-09-09 13:03:32 -07003761 cachep->shared = shared;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003762
Christoph Lametere498be72005-09-09 13:03:32 -07003763 for_each_online_cpu(i) {
Joonsoo Kim97654df2014-08-06 16:04:25 -07003764 LIST_HEAD(list);
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003765 struct array_cache *ccold = new->new[i];
Christoph Lameter18bf8542014-08-06 16:04:11 -07003766 int node;
3767 struct kmem_cache_node *n;
3768
Linus Torvalds1da177e2005-04-16 15:20:36 -07003769 if (!ccold)
3770 continue;
Christoph Lameter18bf8542014-08-06 16:04:11 -07003771
3772 node = cpu_to_mem(i);
3773 n = get_node(cachep, node);
3774 spin_lock_irq(&n->list_lock);
Joonsoo Kim97654df2014-08-06 16:04:25 -07003775 free_block(cachep, ccold->entry, ccold->avail, node, &list);
Christoph Lameter18bf8542014-08-06 16:04:11 -07003776 spin_unlock_irq(&n->list_lock);
Joonsoo Kim97654df2014-08-06 16:04:25 -07003777 slabs_destroy(cachep, &list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003778 kfree(ccold);
3779 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003780 kfree(new);
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08003781 return alloc_kmem_cache_node(cachep, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003782}
3783
Glauber Costa943a4512012-12-18 14:23:03 -08003784static int do_tune_cpucache(struct kmem_cache *cachep, int limit,
3785 int batchcount, int shared, gfp_t gfp)
3786{
3787 int ret;
3788 struct kmem_cache *c = NULL;
3789 int i = 0;
3790
3791 ret = __do_tune_cpucache(cachep, limit, batchcount, shared, gfp);
3792
3793 if (slab_state < FULL)
3794 return ret;
3795
3796 if ((ret < 0) || !is_root_cache(cachep))
3797 return ret;
3798
Glauber Costaebe945c2012-12-18 14:23:10 -08003799 VM_BUG_ON(!mutex_is_locked(&slab_mutex));
Glauber Costa943a4512012-12-18 14:23:03 -08003800 for_each_memcg_cache_index(i) {
Qiang Huang2ade4de2013-11-12 15:08:23 -08003801 c = cache_from_memcg_idx(cachep, i);
Glauber Costa943a4512012-12-18 14:23:03 -08003802 if (c)
3803 /* return value determined by the parent cache only */
3804 __do_tune_cpucache(c, limit, batchcount, shared, gfp);
3805 }
3806
3807 return ret;
3808}
3809
Christoph Lameter18004c52012-07-06 15:25:12 -05003810/* Called with slab_mutex held always */
Pekka Enberg83b519e2009-06-10 19:40:04 +03003811static int enable_cpucache(struct kmem_cache *cachep, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003812{
3813 int err;
Glauber Costa943a4512012-12-18 14:23:03 -08003814 int limit = 0;
3815 int shared = 0;
3816 int batchcount = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003817
Glauber Costa943a4512012-12-18 14:23:03 -08003818 if (!is_root_cache(cachep)) {
3819 struct kmem_cache *root = memcg_root_cache(cachep);
3820 limit = root->limit;
3821 shared = root->shared;
3822 batchcount = root->batchcount;
3823 }
3824
3825 if (limit && shared && batchcount)
3826 goto skip_setup;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003827 /*
3828 * The head array serves three purposes:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829 * - create a LIFO ordering, i.e. return objects that are cache-warm
3830 * - reduce the number of spinlock operations.
Andrew Mortona737b3e2006-03-22 00:08:11 -08003831 * - reduce the number of linked list operations on the slab and
Linus Torvalds1da177e2005-04-16 15:20:36 -07003832 * bufctl chains: array operations are cheaper.
3833 * The numbers are guessed, we should auto-tune as described by
3834 * Bonwick.
3835 */
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003836 if (cachep->size > 131072)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003837 limit = 1;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003838 else if (cachep->size > PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003839 limit = 8;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003840 else if (cachep->size > 1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841 limit = 24;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003842 else if (cachep->size > 256)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843 limit = 54;
3844 else
3845 limit = 120;
3846
Andrew Mortona737b3e2006-03-22 00:08:11 -08003847 /*
3848 * CPU bound tasks (e.g. network routing) can exhibit cpu bound
Linus Torvalds1da177e2005-04-16 15:20:36 -07003849 * allocation behaviour: Most allocs on one cpu, most free operations
3850 * on another cpu. For these cases, an efficient object passing between
3851 * cpus is necessary. This is provided by a shared array. The array
3852 * replaces Bonwick's magazine layer.
3853 * On uniprocessor, it's functionally equivalent (but less efficient)
3854 * to a larger limit. Thus disabled by default.
3855 */
3856 shared = 0;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003857 if (cachep->size <= PAGE_SIZE && num_possible_cpus() > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003858 shared = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003859
3860#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08003861 /*
3862 * With debugging enabled, large batchcount lead to excessively long
3863 * periods with disabled local interrupts. Limit the batchcount
Linus Torvalds1da177e2005-04-16 15:20:36 -07003864 */
3865 if (limit > 32)
3866 limit = 32;
3867#endif
Glauber Costa943a4512012-12-18 14:23:03 -08003868 batchcount = (limit + 1) / 2;
3869skip_setup:
3870 err = do_tune_cpucache(cachep, limit, batchcount, shared, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871 if (err)
3872 printk(KERN_ERR "enable_cpucache failed for %s, error %d.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003873 cachep->name, -err);
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07003874 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003875}
3876
Christoph Lameter1b552532006-03-22 00:09:07 -08003877/*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003878 * Drain an array if it contains any elements taking the node lock only if
3879 * necessary. Note that the node listlock also protects the array_cache
Christoph Lameterb18e7e62006-03-22 00:09:07 -08003880 * if drain_array() is used on the shared array.
Christoph Lameter1b552532006-03-22 00:09:07 -08003881 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003882static void drain_array(struct kmem_cache *cachep, struct kmem_cache_node *n,
Christoph Lameter1b552532006-03-22 00:09:07 -08003883 struct array_cache *ac, int force, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003884{
Joonsoo Kim97654df2014-08-06 16:04:25 -07003885 LIST_HEAD(list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886 int tofree;
3887
Christoph Lameter1b552532006-03-22 00:09:07 -08003888 if (!ac || !ac->avail)
3889 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003890 if (ac->touched && !force) {
3891 ac->touched = 0;
Christoph Lameterb18e7e62006-03-22 00:09:07 -08003892 } else {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003893 spin_lock_irq(&n->list_lock);
Christoph Lameterb18e7e62006-03-22 00:09:07 -08003894 if (ac->avail) {
3895 tofree = force ? ac->avail : (ac->limit + 4) / 5;
3896 if (tofree > ac->avail)
3897 tofree = (ac->avail + 1) / 2;
Joonsoo Kim97654df2014-08-06 16:04:25 -07003898 free_block(cachep, ac->entry, tofree, node, &list);
Christoph Lameterb18e7e62006-03-22 00:09:07 -08003899 ac->avail -= tofree;
3900 memmove(ac->entry, &(ac->entry[tofree]),
3901 sizeof(void *) * ac->avail);
3902 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003903 spin_unlock_irq(&n->list_lock);
Joonsoo Kim97654df2014-08-06 16:04:25 -07003904 slabs_destroy(cachep, &list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905 }
3906}
3907
3908/**
3909 * cache_reap - Reclaim memory from caches.
Randy Dunlap05fb6bf2007-02-28 20:12:13 -08003910 * @w: work descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911 *
3912 * Called from workqueue/eventd every few seconds.
3913 * Purpose:
3914 * - clear the per-cpu caches for this CPU.
3915 * - return freeable pages to the main free memory pool.
3916 *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003917 * If we cannot acquire the cache chain mutex then just give up - we'll try
3918 * again on the next iteration.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003919 */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08003920static void cache_reap(struct work_struct *w)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921{
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07003922 struct kmem_cache *searchp;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003923 struct kmem_cache_node *n;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003924 int node = numa_mem_id();
Jean Delvarebf6aede2009-04-02 16:56:54 -07003925 struct delayed_work *work = to_delayed_work(w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003926
Christoph Lameter18004c52012-07-06 15:25:12 -05003927 if (!mutex_trylock(&slab_mutex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003928 /* Give up. Setup the next iteration. */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08003929 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930
Christoph Lameter18004c52012-07-06 15:25:12 -05003931 list_for_each_entry(searchp, &slab_caches, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932 check_irq_on();
3933
Christoph Lameter35386e32006-03-22 00:09:05 -08003934 /*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003935 * We only take the node lock if absolutely necessary and we
Christoph Lameter35386e32006-03-22 00:09:05 -08003936 * have established with reasonable certainty that
3937 * we can do some work if the lock was obtained.
3938 */
Christoph Lameter18bf8542014-08-06 16:04:11 -07003939 n = get_node(searchp, node);
Christoph Lameter35386e32006-03-22 00:09:05 -08003940
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003941 reap_alien(searchp, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003943 drain_array(searchp, n, cpu_cache_get(searchp), 0, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003944
Christoph Lameter35386e32006-03-22 00:09:05 -08003945 /*
3946 * These are racy checks but it does not matter
3947 * if we skip one check or scan twice.
3948 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003949 if (time_after(n->next_reap, jiffies))
Christoph Lameter35386e32006-03-22 00:09:05 -08003950 goto next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08003952 n->next_reap = jiffies + REAPTIMEOUT_NODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003953
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003954 drain_array(searchp, n, n->shared, 0, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003955
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003956 if (n->free_touched)
3957 n->free_touched = 0;
Christoph Lametered11d9e2006-06-30 01:55:45 -07003958 else {
3959 int freed;
3960
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003961 freed = drain_freelist(searchp, n, (n->free_limit +
Christoph Lametered11d9e2006-06-30 01:55:45 -07003962 5 * searchp->num - 1) / (5 * searchp->num));
3963 STATS_ADD_REAPED(searchp, freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003964 }
Christoph Lameter35386e32006-03-22 00:09:05 -08003965next:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003966 cond_resched();
3967 }
3968 check_irq_on();
Christoph Lameter18004c52012-07-06 15:25:12 -05003969 mutex_unlock(&slab_mutex);
Christoph Lameter8fce4d82006-03-09 17:33:54 -08003970 next_reap_node();
Christoph Lameter7c5cae32007-02-10 01:42:55 -08003971out:
Andrew Mortona737b3e2006-03-22 00:08:11 -08003972 /* Set up the next iteration */
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08003973 schedule_delayed_work(work, round_jiffies_relative(REAPTIMEOUT_AC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003974}
3975
Linus Torvalds158a9622008-01-02 13:04:48 -08003976#ifdef CONFIG_SLABINFO
Glauber Costa0d7561c2012-10-19 18:20:27 +04003977void get_slabinfo(struct kmem_cache *cachep, struct slabinfo *sinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003978{
Joonsoo Kim8456a642013-10-24 10:07:49 +09003979 struct page *page;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003980 unsigned long active_objs;
3981 unsigned long num_objs;
3982 unsigned long active_slabs = 0;
3983 unsigned long num_slabs, free_objects = 0, shared_avail = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07003984 const char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003985 char *error = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07003986 int node;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003987 struct kmem_cache_node *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003988
Linus Torvalds1da177e2005-04-16 15:20:36 -07003989 active_objs = 0;
3990 num_slabs = 0;
Christoph Lameter18bf8542014-08-06 16:04:11 -07003991 for_each_kmem_cache_node(cachep, node, n) {
Christoph Lametere498be72005-09-09 13:03:32 -07003992
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08003993 check_irq_on();
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003994 spin_lock_irq(&n->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07003995
Joonsoo Kim8456a642013-10-24 10:07:49 +09003996 list_for_each_entry(page, &n->slabs_full, lru) {
3997 if (page->active != cachep->num && !error)
Christoph Lametere498be72005-09-09 13:03:32 -07003998 error = "slabs_full accounting error";
3999 active_objs += cachep->num;
4000 active_slabs++;
4001 }
Joonsoo Kim8456a642013-10-24 10:07:49 +09004002 list_for_each_entry(page, &n->slabs_partial, lru) {
4003 if (page->active == cachep->num && !error)
Joonsoo Kim106a74e2013-10-24 10:07:48 +09004004 error = "slabs_partial accounting error";
Joonsoo Kim8456a642013-10-24 10:07:49 +09004005 if (!page->active && !error)
Joonsoo Kim106a74e2013-10-24 10:07:48 +09004006 error = "slabs_partial accounting error";
Joonsoo Kim8456a642013-10-24 10:07:49 +09004007 active_objs += page->active;
Christoph Lametere498be72005-09-09 13:03:32 -07004008 active_slabs++;
4009 }
Joonsoo Kim8456a642013-10-24 10:07:49 +09004010 list_for_each_entry(page, &n->slabs_free, lru) {
4011 if (page->active && !error)
Joonsoo Kim106a74e2013-10-24 10:07:48 +09004012 error = "slabs_free accounting error";
Christoph Lametere498be72005-09-09 13:03:32 -07004013 num_slabs++;
4014 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004015 free_objects += n->free_objects;
4016 if (n->shared)
4017 shared_avail += n->shared->avail;
Christoph Lametere498be72005-09-09 13:03:32 -07004018
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004019 spin_unlock_irq(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004020 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004021 num_slabs += active_slabs;
4022 num_objs = num_slabs * cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07004023 if (num_objs - active_objs != free_objects && !error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004024 error = "free_objects accounting error";
4025
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004026 name = cachep->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004027 if (error)
4028 printk(KERN_ERR "slab: cache %s error: %s\n", name, error);
4029
Glauber Costa0d7561c2012-10-19 18:20:27 +04004030 sinfo->active_objs = active_objs;
4031 sinfo->num_objs = num_objs;
4032 sinfo->active_slabs = active_slabs;
4033 sinfo->num_slabs = num_slabs;
4034 sinfo->shared_avail = shared_avail;
4035 sinfo->limit = cachep->limit;
4036 sinfo->batchcount = cachep->batchcount;
4037 sinfo->shared = cachep->shared;
4038 sinfo->objects_per_slab = cachep->num;
4039 sinfo->cache_order = cachep->gfporder;
4040}
4041
4042void slabinfo_show_stats(struct seq_file *m, struct kmem_cache *cachep)
4043{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004044#if STATS
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004045 { /* node stats */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004046 unsigned long high = cachep->high_mark;
4047 unsigned long allocs = cachep->num_allocations;
4048 unsigned long grown = cachep->grown;
4049 unsigned long reaped = cachep->reaped;
4050 unsigned long errors = cachep->errors;
4051 unsigned long max_freeable = cachep->max_freeable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004052 unsigned long node_allocs = cachep->node_allocs;
Christoph Lametere498be72005-09-09 13:03:32 -07004053 unsigned long node_frees = cachep->node_frees;
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -07004054 unsigned long overflows = cachep->node_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004055
Joe Perchese92dd4f2010-03-26 19:27:58 -07004056 seq_printf(m, " : globalstat %7lu %6lu %5lu %4lu "
4057 "%4lu %4lu %4lu %4lu %4lu",
4058 allocs, high, grown,
4059 reaped, errors, max_freeable, node_allocs,
4060 node_frees, overflows);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004061 }
4062 /* cpu stats */
4063 {
4064 unsigned long allochit = atomic_read(&cachep->allochit);
4065 unsigned long allocmiss = atomic_read(&cachep->allocmiss);
4066 unsigned long freehit = atomic_read(&cachep->freehit);
4067 unsigned long freemiss = atomic_read(&cachep->freemiss);
4068
4069 seq_printf(m, " : cpustat %6lu %6lu %6lu %6lu",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004070 allochit, allocmiss, freehit, freemiss);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004071 }
4072#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004073}
4074
Linus Torvalds1da177e2005-04-16 15:20:36 -07004075#define MAX_SLABINFO_WRITE 128
4076/**
4077 * slabinfo_write - Tuning for the slab allocator
4078 * @file: unused
4079 * @buffer: user buffer
4080 * @count: data length
4081 * @ppos: unused
4082 */
Glauber Costab7454ad2012-10-19 18:20:25 +04004083ssize_t slabinfo_write(struct file *file, const char __user *buffer,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004084 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004085{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004086 char kbuf[MAX_SLABINFO_WRITE + 1], *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004087 int limit, batchcount, shared, res;
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004088 struct kmem_cache *cachep;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004089
Linus Torvalds1da177e2005-04-16 15:20:36 -07004090 if (count > MAX_SLABINFO_WRITE)
4091 return -EINVAL;
4092 if (copy_from_user(&kbuf, buffer, count))
4093 return -EFAULT;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004094 kbuf[MAX_SLABINFO_WRITE] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07004095
4096 tmp = strchr(kbuf, ' ');
4097 if (!tmp)
4098 return -EINVAL;
4099 *tmp = '\0';
4100 tmp++;
4101 if (sscanf(tmp, " %d %d %d", &limit, &batchcount, &shared) != 3)
4102 return -EINVAL;
4103
4104 /* Find the cache in the chain of caches. */
Christoph Lameter18004c52012-07-06 15:25:12 -05004105 mutex_lock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004106 res = -EINVAL;
Christoph Lameter18004c52012-07-06 15:25:12 -05004107 list_for_each_entry(cachep, &slab_caches, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004108 if (!strcmp(cachep->name, kbuf)) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08004109 if (limit < 1 || batchcount < 1 ||
4110 batchcount > limit || shared < 0) {
Christoph Lametere498be72005-09-09 13:03:32 -07004111 res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004112 } else {
Christoph Lametere498be72005-09-09 13:03:32 -07004113 res = do_tune_cpucache(cachep, limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03004114 batchcount, shared,
4115 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004116 }
4117 break;
4118 }
4119 }
Christoph Lameter18004c52012-07-06 15:25:12 -05004120 mutex_unlock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004121 if (res >= 0)
4122 res = count;
4123 return res;
4124}
Al Viro871751e2006-03-25 03:06:39 -08004125
4126#ifdef CONFIG_DEBUG_SLAB_LEAK
4127
4128static void *leaks_start(struct seq_file *m, loff_t *pos)
4129{
Christoph Lameter18004c52012-07-06 15:25:12 -05004130 mutex_lock(&slab_mutex);
4131 return seq_list_start(&slab_caches, *pos);
Al Viro871751e2006-03-25 03:06:39 -08004132}
4133
4134static inline int add_caller(unsigned long *n, unsigned long v)
4135{
4136 unsigned long *p;
4137 int l;
4138 if (!v)
4139 return 1;
4140 l = n[1];
4141 p = n + 2;
4142 while (l) {
4143 int i = l/2;
4144 unsigned long *q = p + 2 * i;
4145 if (*q == v) {
4146 q[1]++;
4147 return 1;
4148 }
4149 if (*q > v) {
4150 l = i;
4151 } else {
4152 p = q + 2;
4153 l -= i + 1;
4154 }
4155 }
4156 if (++n[1] == n[0])
4157 return 0;
4158 memmove(p + 2, p, n[1] * 2 * sizeof(unsigned long) - ((void *)p - (void *)n));
4159 p[0] = v;
4160 p[1] = 1;
4161 return 1;
4162}
4163
Joonsoo Kim8456a642013-10-24 10:07:49 +09004164static void handle_slab(unsigned long *n, struct kmem_cache *c,
4165 struct page *page)
Al Viro871751e2006-03-25 03:06:39 -08004166{
4167 void *p;
Joonsoo Kim03787302014-06-23 13:22:06 -07004168 int i;
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09004169
Al Viro871751e2006-03-25 03:06:39 -08004170 if (n[0] == n[1])
4171 return;
Joonsoo Kim8456a642013-10-24 10:07:49 +09004172 for (i = 0, p = page->s_mem; i < c->num; i++, p += c->size) {
Joonsoo Kim03787302014-06-23 13:22:06 -07004173 if (get_obj_status(page, i) != OBJECT_ACTIVE)
Al Viro871751e2006-03-25 03:06:39 -08004174 continue;
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09004175
Al Viro871751e2006-03-25 03:06:39 -08004176 if (!add_caller(n, (unsigned long)*dbg_userword(c, p)))
4177 return;
4178 }
4179}
4180
4181static void show_symbol(struct seq_file *m, unsigned long address)
4182{
4183#ifdef CONFIG_KALLSYMS
Al Viro871751e2006-03-25 03:06:39 -08004184 unsigned long offset, size;
Tejun Heo9281ace2007-07-17 04:03:51 -07004185 char modname[MODULE_NAME_LEN], name[KSYM_NAME_LEN];
Al Viro871751e2006-03-25 03:06:39 -08004186
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004187 if (lookup_symbol_attrs(address, &size, &offset, modname, name) == 0) {
Al Viro871751e2006-03-25 03:06:39 -08004188 seq_printf(m, "%s+%#lx/%#lx", name, offset, size);
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004189 if (modname[0])
Al Viro871751e2006-03-25 03:06:39 -08004190 seq_printf(m, " [%s]", modname);
4191 return;
4192 }
4193#endif
4194 seq_printf(m, "%p", (void *)address);
4195}
4196
4197static int leaks_show(struct seq_file *m, void *p)
4198{
Thierry Reding0672aa72012-06-22 19:42:49 +02004199 struct kmem_cache *cachep = list_entry(p, struct kmem_cache, list);
Joonsoo Kim8456a642013-10-24 10:07:49 +09004200 struct page *page;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004201 struct kmem_cache_node *n;
Al Viro871751e2006-03-25 03:06:39 -08004202 const char *name;
Christoph Lameterdb845062013-02-05 18:45:23 +00004203 unsigned long *x = m->private;
Al Viro871751e2006-03-25 03:06:39 -08004204 int node;
4205 int i;
4206
4207 if (!(cachep->flags & SLAB_STORE_USER))
4208 return 0;
4209 if (!(cachep->flags & SLAB_RED_ZONE))
4210 return 0;
4211
4212 /* OK, we can do it */
4213
Christoph Lameterdb845062013-02-05 18:45:23 +00004214 x[1] = 0;
Al Viro871751e2006-03-25 03:06:39 -08004215
Christoph Lameter18bf8542014-08-06 16:04:11 -07004216 for_each_kmem_cache_node(cachep, node, n) {
Al Viro871751e2006-03-25 03:06:39 -08004217
4218 check_irq_on();
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004219 spin_lock_irq(&n->list_lock);
Al Viro871751e2006-03-25 03:06:39 -08004220
Joonsoo Kim8456a642013-10-24 10:07:49 +09004221 list_for_each_entry(page, &n->slabs_full, lru)
4222 handle_slab(x, cachep, page);
4223 list_for_each_entry(page, &n->slabs_partial, lru)
4224 handle_slab(x, cachep, page);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004225 spin_unlock_irq(&n->list_lock);
Al Viro871751e2006-03-25 03:06:39 -08004226 }
4227 name = cachep->name;
Christoph Lameterdb845062013-02-05 18:45:23 +00004228 if (x[0] == x[1]) {
Al Viro871751e2006-03-25 03:06:39 -08004229 /* Increase the buffer size */
Christoph Lameter18004c52012-07-06 15:25:12 -05004230 mutex_unlock(&slab_mutex);
Christoph Lameterdb845062013-02-05 18:45:23 +00004231 m->private = kzalloc(x[0] * 4 * sizeof(unsigned long), GFP_KERNEL);
Al Viro871751e2006-03-25 03:06:39 -08004232 if (!m->private) {
4233 /* Too bad, we are really out */
Christoph Lameterdb845062013-02-05 18:45:23 +00004234 m->private = x;
Christoph Lameter18004c52012-07-06 15:25:12 -05004235 mutex_lock(&slab_mutex);
Al Viro871751e2006-03-25 03:06:39 -08004236 return -ENOMEM;
4237 }
Christoph Lameterdb845062013-02-05 18:45:23 +00004238 *(unsigned long *)m->private = x[0] * 2;
4239 kfree(x);
Christoph Lameter18004c52012-07-06 15:25:12 -05004240 mutex_lock(&slab_mutex);
Al Viro871751e2006-03-25 03:06:39 -08004241 /* Now make sure this entry will be retried */
4242 m->count = m->size;
4243 return 0;
4244 }
Christoph Lameterdb845062013-02-05 18:45:23 +00004245 for (i = 0; i < x[1]; i++) {
4246 seq_printf(m, "%s: %lu ", name, x[2*i+3]);
4247 show_symbol(m, x[2*i+2]);
Al Viro871751e2006-03-25 03:06:39 -08004248 seq_putc(m, '\n');
4249 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004250
Al Viro871751e2006-03-25 03:06:39 -08004251 return 0;
4252}
4253
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004254static const struct seq_operations slabstats_op = {
Al Viro871751e2006-03-25 03:06:39 -08004255 .start = leaks_start,
Wanpeng Li276a2432013-07-08 08:08:28 +08004256 .next = slab_next,
4257 .stop = slab_stop,
Al Viro871751e2006-03-25 03:06:39 -08004258 .show = leaks_show,
4259};
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004260
4261static int slabstats_open(struct inode *inode, struct file *file)
4262{
4263 unsigned long *n = kzalloc(PAGE_SIZE, GFP_KERNEL);
4264 int ret = -ENOMEM;
4265 if (n) {
4266 ret = seq_open(file, &slabstats_op);
4267 if (!ret) {
4268 struct seq_file *m = file->private_data;
4269 *n = PAGE_SIZE / (2 * sizeof(unsigned long));
4270 m->private = n;
4271 n = NULL;
4272 }
4273 kfree(n);
4274 }
4275 return ret;
4276}
4277
4278static const struct file_operations proc_slabstats_operations = {
4279 .open = slabstats_open,
4280 .read = seq_read,
4281 .llseek = seq_lseek,
4282 .release = seq_release_private,
4283};
Al Viro871751e2006-03-25 03:06:39 -08004284#endif
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004285
4286static int __init slab_proc_init(void)
4287{
4288#ifdef CONFIG_DEBUG_SLAB_LEAK
4289 proc_create("slab_allocators", 0, NULL, &proc_slabstats_operations);
4290#endif
4291 return 0;
4292}
4293module_init(slab_proc_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004294#endif
4295
Manfred Spraul00e145b2005-09-03 15:55:07 -07004296/**
4297 * ksize - get the actual amount of memory allocated for a given object
4298 * @objp: Pointer to the object
4299 *
4300 * kmalloc may internally round up allocations and return more memory
4301 * than requested. ksize() can be used to determine the actual amount of
4302 * memory allocated. The caller may use this additional memory, even though
4303 * a smaller amount of memory was initially specified with the kmalloc call.
4304 * The caller must guarantee that objp points to a valid object previously
4305 * allocated with either kmalloc() or kmem_cache_alloc(). The object
4306 * must not be freed during the duration of the call.
4307 */
Pekka Enbergfd76bab2007-05-06 14:48:40 -07004308size_t ksize(const void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004309{
Christoph Lameteref8b4522007-10-16 01:24:46 -07004310 BUG_ON(!objp);
4311 if (unlikely(objp == ZERO_SIZE_PTR))
Manfred Spraul00e145b2005-09-03 15:55:07 -07004312 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004313
Christoph Lameter8c138bc2012-06-13 10:24:58 -05004314 return virt_to_cache(objp)->object_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004315}
Kirill A. Shutemovb1aabec2009-02-10 15:21:44 +02004316EXPORT_SYMBOL(ksize);