blob: a998d35599a370a84f32c5b738b6b68d9f20f147 [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/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 * struct array_cache
173 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 * Purpose:
175 * - LIFO ordering, to hand out cache-warm objects from _alloc
176 * - reduce the number of linked list operations
177 * - reduce spinlock operations
178 *
179 * The limit is stored in the per-cpu structure to reduce the data cache
180 * footprint.
181 *
182 */
183struct array_cache {
184 unsigned int avail;
185 unsigned int limit;
186 unsigned int batchcount;
187 unsigned int touched;
Robert P. J. Daybda5b652007-10-16 23:30:05 -0700188 void *entry[]; /*
Andrew Mortona737b3e2006-03-22 00:08:11 -0800189 * Must have this definition in here for the proper
190 * alignment of array_cache. Also simplifies accessing
191 * the entries.
Andrew Mortona737b3e2006-03-22 00:08:11 -0800192 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193};
194
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700195struct alien_cache {
196 spinlock_t lock;
197 struct array_cache ac;
198};
199
Andrew Mortona737b3e2006-03-22 00:08:11 -0800200/*
Christoph Lametere498be72005-09-09 13:03:32 -0700201 * Need this for bootstrapping a per node allocator.
202 */
Joonsoo Kimbf0dea22014-10-09 15:26:27 -0700203#define NUM_INIT_LISTS (2 * MAX_NUMNODES)
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000204static struct kmem_cache_node __initdata init_kmem_cache_node[NUM_INIT_LISTS];
Christoph Lametere498be72005-09-09 13:03:32 -0700205#define CACHE_CACHE 0
Joonsoo Kimbf0dea22014-10-09 15:26:27 -0700206#define SIZE_NODE (MAX_NUMNODES)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Christoph Lametered11d9e2006-06-30 01:55:45 -0700208static int drain_freelist(struct kmem_cache *cache,
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000209 struct kmem_cache_node *n, int tofree);
Christoph Lametered11d9e2006-06-30 01:55:45 -0700210static void free_block(struct kmem_cache *cachep, void **objpp, int len,
Joonsoo Kim97654df2014-08-06 16:04:25 -0700211 int node, struct list_head *list);
212static void slabs_destroy(struct kmem_cache *cachep, struct list_head *list);
Pekka Enberg83b519e2009-06-10 19:40:04 +0300213static int enable_cpucache(struct kmem_cache *cachep, gfp_t gfp);
David Howells65f27f32006-11-22 14:55:48 +0000214static void cache_reap(struct work_struct *unused);
Christoph Lametered11d9e2006-06-30 01:55:45 -0700215
Ingo Molnare0a42722006-06-23 02:03:46 -0700216static int slab_early_init = 1;
217
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000218#define INDEX_NODE kmalloc_index(sizeof(struct kmem_cache_node))
Christoph Lametere498be72005-09-09 13:03:32 -0700219
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000220static void kmem_cache_node_init(struct kmem_cache_node *parent)
Christoph Lametere498be72005-09-09 13:03:32 -0700221{
222 INIT_LIST_HEAD(&parent->slabs_full);
223 INIT_LIST_HEAD(&parent->slabs_partial);
224 INIT_LIST_HEAD(&parent->slabs_free);
225 parent->shared = NULL;
226 parent->alien = NULL;
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -0800227 parent->colour_next = 0;
Christoph Lametere498be72005-09-09 13:03:32 -0700228 spin_lock_init(&parent->list_lock);
229 parent->free_objects = 0;
230 parent->free_touched = 0;
231}
232
Andrew Mortona737b3e2006-03-22 00:08:11 -0800233#define MAKE_LIST(cachep, listp, slab, nodeid) \
234 do { \
235 INIT_LIST_HEAD(listp); \
Christoph Lameter18bf8542014-08-06 16:04:11 -0700236 list_splice(&get_node(cachep, nodeid)->slab, listp); \
Christoph Lametere498be72005-09-09 13:03:32 -0700237 } while (0)
238
Andrew Mortona737b3e2006-03-22 00:08:11 -0800239#define MAKE_ALL_LISTS(cachep, ptr, nodeid) \
240 do { \
Christoph Lametere498be72005-09-09 13:03:32 -0700241 MAKE_LIST((cachep), (&(ptr)->slabs_full), slabs_full, nodeid); \
242 MAKE_LIST((cachep), (&(ptr)->slabs_partial), slabs_partial, nodeid); \
243 MAKE_LIST((cachep), (&(ptr)->slabs_free), slabs_free, nodeid); \
244 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Joonsoo Kimb03a017b2016-03-15 14:54:50 -0700246#define CFLGS_OBJFREELIST_SLAB (0x40000000UL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247#define CFLGS_OFF_SLAB (0x80000000UL)
Joonsoo Kimb03a017b2016-03-15 14:54:50 -0700248#define OBJFREELIST_SLAB(x) ((x)->flags & CFLGS_OBJFREELIST_SLAB)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249#define OFF_SLAB(x) ((x)->flags & CFLGS_OFF_SLAB)
250
251#define BATCHREFILL_LIMIT 16
Andrew Mortona737b3e2006-03-22 00:08:11 -0800252/*
253 * Optimization question: fewer reaps means less probability for unnessary
254 * cpucache drain/refill cycles.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 *
Adrian Bunkdc6f3f22005-11-08 16:44:08 +0100256 * OTOH the cpuarrays can contain lots of objects,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257 * which could lock up otherwise freeable slabs.
258 */
Jianyu Zhan5f0985b2014-03-30 17:02:20 +0800259#define REAPTIMEOUT_AC (2*HZ)
260#define REAPTIMEOUT_NODE (4*HZ)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261
262#if STATS
263#define STATS_INC_ACTIVE(x) ((x)->num_active++)
264#define STATS_DEC_ACTIVE(x) ((x)->num_active--)
265#define STATS_INC_ALLOCED(x) ((x)->num_allocations++)
266#define STATS_INC_GROWN(x) ((x)->grown++)
Christoph Lametered11d9e2006-06-30 01:55:45 -0700267#define STATS_ADD_REAPED(x,y) ((x)->reaped += (y))
Andrew Mortona737b3e2006-03-22 00:08:11 -0800268#define STATS_SET_HIGH(x) \
269 do { \
270 if ((x)->num_active > (x)->high_mark) \
271 (x)->high_mark = (x)->num_active; \
272 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273#define STATS_INC_ERR(x) ((x)->errors++)
274#define STATS_INC_NODEALLOCS(x) ((x)->node_allocs++)
Christoph Lametere498be72005-09-09 13:03:32 -0700275#define STATS_INC_NODEFREES(x) ((x)->node_frees++)
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -0700276#define STATS_INC_ACOVERFLOW(x) ((x)->node_overflow++)
Andrew Mortona737b3e2006-03-22 00:08:11 -0800277#define STATS_SET_FREEABLE(x, i) \
278 do { \
279 if ((x)->max_freeable < i) \
280 (x)->max_freeable = i; \
281 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282#define STATS_INC_ALLOCHIT(x) atomic_inc(&(x)->allochit)
283#define STATS_INC_ALLOCMISS(x) atomic_inc(&(x)->allocmiss)
284#define STATS_INC_FREEHIT(x) atomic_inc(&(x)->freehit)
285#define STATS_INC_FREEMISS(x) atomic_inc(&(x)->freemiss)
286#else
287#define STATS_INC_ACTIVE(x) do { } while (0)
288#define STATS_DEC_ACTIVE(x) do { } while (0)
289#define STATS_INC_ALLOCED(x) do { } while (0)
290#define STATS_INC_GROWN(x) do { } while (0)
Andi Kleen4e60c862010-08-09 17:19:03 -0700291#define STATS_ADD_REAPED(x,y) do { (void)(y); } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292#define STATS_SET_HIGH(x) do { } while (0)
293#define STATS_INC_ERR(x) do { } while (0)
294#define STATS_INC_NODEALLOCS(x) do { } while (0)
Christoph Lametere498be72005-09-09 13:03:32 -0700295#define STATS_INC_NODEFREES(x) do { } while (0)
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -0700296#define STATS_INC_ACOVERFLOW(x) do { } while (0)
Andrew Mortona737b3e2006-03-22 00:08:11 -0800297#define STATS_SET_FREEABLE(x, i) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298#define STATS_INC_ALLOCHIT(x) do { } while (0)
299#define STATS_INC_ALLOCMISS(x) do { } while (0)
300#define STATS_INC_FREEHIT(x) do { } while (0)
301#define STATS_INC_FREEMISS(x) do { } while (0)
302#endif
303
304#if DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Andrew Mortona737b3e2006-03-22 00:08:11 -0800306/*
307 * memory layout of objects:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 * 0 : objp
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800309 * 0 .. cachep->obj_offset - BYTES_PER_WORD - 1: padding. This ensures that
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 * the end of an object is aligned with the end of the real
311 * allocation. Catches writes behind the end of the allocation.
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800312 * cachep->obj_offset - BYTES_PER_WORD .. cachep->obj_offset - 1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 * redzone word.
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800314 * cachep->obj_offset: The real object.
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500315 * cachep->size - 2* BYTES_PER_WORD: redzone word [BYTES_PER_WORD long]
316 * cachep->size - 1* BYTES_PER_WORD: last caller address
Andrew Mortona737b3e2006-03-22 00:08:11 -0800317 * [BYTES_PER_WORD long]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800319static int obj_offset(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320{
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800321 return cachep->obj_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322}
323
David Woodhouseb46b8f12007-05-08 00:22:59 -0700324static unsigned long long *dbg_redzone1(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325{
326 BUG_ON(!(cachep->flags & SLAB_RED_ZONE));
David Woodhouseb46b8f12007-05-08 00:22:59 -0700327 return (unsigned long long*) (objp + obj_offset(cachep) -
328 sizeof(unsigned long long));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329}
330
David Woodhouseb46b8f12007-05-08 00:22:59 -0700331static unsigned long long *dbg_redzone2(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332{
333 BUG_ON(!(cachep->flags & SLAB_RED_ZONE));
334 if (cachep->flags & SLAB_STORE_USER)
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500335 return (unsigned long long *)(objp + cachep->size -
David Woodhouseb46b8f12007-05-08 00:22:59 -0700336 sizeof(unsigned long long) -
David Woodhouse87a927c2007-07-04 21:26:44 -0400337 REDZONE_ALIGN);
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500338 return (unsigned long long *) (objp + cachep->size -
David Woodhouseb46b8f12007-05-08 00:22:59 -0700339 sizeof(unsigned long long));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340}
341
Pekka Enberg343e0d72006-02-01 03:05:50 -0800342static void **dbg_userword(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343{
344 BUG_ON(!(cachep->flags & SLAB_STORE_USER));
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500345 return (void **)(objp + cachep->size - BYTES_PER_WORD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346}
347
348#else
349
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800350#define obj_offset(x) 0
David Woodhouseb46b8f12007-05-08 00:22:59 -0700351#define dbg_redzone1(cachep, objp) ({BUG(); (unsigned long long *)NULL;})
352#define dbg_redzone2(cachep, objp) ({BUG(); (unsigned long long *)NULL;})
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353#define dbg_userword(cachep, objp) ({BUG(); (void **)NULL;})
354
355#endif
356
Joonsoo Kim03787302014-06-23 13:22:06 -0700357#ifdef CONFIG_DEBUG_SLAB_LEAK
358
Joonsoo Kimd31676d2016-03-15 14:54:24 -0700359static inline bool is_store_user_clean(struct kmem_cache *cachep)
Joonsoo Kim03787302014-06-23 13:22:06 -0700360{
Joonsoo Kimd31676d2016-03-15 14:54:24 -0700361 return atomic_read(&cachep->store_user_clean) == 1;
362}
Joonsoo Kim03787302014-06-23 13:22:06 -0700363
Joonsoo Kimd31676d2016-03-15 14:54:24 -0700364static inline void set_store_user_clean(struct kmem_cache *cachep)
365{
366 atomic_set(&cachep->store_user_clean, 1);
367}
Joonsoo Kim03787302014-06-23 13:22:06 -0700368
Joonsoo Kimd31676d2016-03-15 14:54:24 -0700369static inline void set_store_user_dirty(struct kmem_cache *cachep)
370{
371 if (is_store_user_clean(cachep))
372 atomic_set(&cachep->store_user_clean, 0);
Joonsoo Kim03787302014-06-23 13:22:06 -0700373}
374
375#else
Joonsoo Kimd31676d2016-03-15 14:54:24 -0700376static inline void set_store_user_dirty(struct kmem_cache *cachep) {}
Joonsoo Kim03787302014-06-23 13:22:06 -0700377
378#endif
379
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380/*
David Rientjes3df1ccc2011-10-18 22:09:28 -0700381 * Do not go above this order unless 0 objects fit into the slab or
382 * overridden on the command line.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 */
David Rientjes543585c2011-10-18 22:09:24 -0700384#define SLAB_MAX_ORDER_HI 1
385#define SLAB_MAX_ORDER_LO 0
386static int slab_max_order = SLAB_MAX_ORDER_LO;
David Rientjes3df1ccc2011-10-18 22:09:28 -0700387static bool slab_max_order_set __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -0800389static inline struct kmem_cache *virt_to_cache(const void *obj)
390{
Christoph Lameterb49af682007-05-06 14:49:41 -0700391 struct page *page = virt_to_head_page(obj);
Christoph Lameter35026082012-06-13 10:24:56 -0500392 return page->slab_cache;
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -0800393}
394
Joonsoo Kim8456a642013-10-24 10:07:49 +0900395static inline void *index_to_obj(struct kmem_cache *cache, struct page *page,
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800396 unsigned int idx)
397{
Joonsoo Kim8456a642013-10-24 10:07:49 +0900398 return page->s_mem + cache->size * idx;
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800399}
400
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800401/*
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500402 * We want to avoid an expensive divide : (offset / cache->size)
403 * Using the fact that size is a constant for a particular cache,
404 * we can replace (offset / cache->size) by
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800405 * reciprocal_divide(offset, cache->reciprocal_buffer_size)
406 */
407static inline unsigned int obj_to_index(const struct kmem_cache *cache,
Joonsoo Kim8456a642013-10-24 10:07:49 +0900408 const struct page *page, void *obj)
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800409{
Joonsoo Kim8456a642013-10-24 10:07:49 +0900410 u32 offset = (obj - page->s_mem);
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800411 return reciprocal_divide(offset, cache->reciprocal_buffer_size);
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800412}
413
Joonsoo Kim6fb92432016-03-15 14:54:09 -0700414#define BOOT_CPUCACHE_ENTRIES 1
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415/* internal cache of cache description objs */
Christoph Lameter9b030cb2012-09-05 00:20:33 +0000416static struct kmem_cache kmem_cache_boot = {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800417 .batchcount = 1,
418 .limit = BOOT_CPUCACHE_ENTRIES,
419 .shared = 1,
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500420 .size = sizeof(struct kmem_cache),
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800421 .name = "kmem_cache",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422};
423
Tejun Heo1871e522009-10-29 22:34:13 +0900424static DEFINE_PER_CPU(struct delayed_work, slab_reap_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425
Pekka Enberg343e0d72006-02-01 03:05:50 -0800426static inline struct array_cache *cpu_cache_get(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427{
Joonsoo Kimbf0dea22014-10-09 15:26:27 -0700428 return this_cpu_ptr(cachep->cpu_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429}
430
Andrew Mortona737b3e2006-03-22 00:08:11 -0800431/*
432 * Calculate the number of objects and left-over bytes for a given buffer size.
433 */
Joonsoo Kim70f75062016-03-15 14:54:53 -0700434static unsigned int cache_estimate(unsigned long gfporder, size_t buffer_size,
435 unsigned long flags, size_t *left_over)
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800436{
Joonsoo Kim70f75062016-03-15 14:54:53 -0700437 unsigned int num;
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800438 size_t slab_size = PAGE_SIZE << gfporder;
439
440 /*
441 * The slab management structure can be either off the slab or
442 * on it. For the latter case, the memory allocated for a
443 * slab is used for:
444 *
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800445 * - @buffer_size bytes for each object
Joonsoo Kim2e6b3602016-03-15 14:54:30 -0700446 * - One freelist_idx_t for each object
447 *
448 * We don't need to consider alignment of freelist because
449 * freelist will be at the end of slab page. The objects will be
450 * at the correct alignment.
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800451 *
452 * If the slab management structure is off the slab, then the
453 * alignment will already be calculated into the size. Because
454 * the slabs are all pages aligned, the objects will be at the
455 * correct alignment when allocated.
456 */
Joonsoo Kimb03a017b2016-03-15 14:54:50 -0700457 if (flags & (CFLGS_OBJFREELIST_SLAB | CFLGS_OFF_SLAB)) {
Joonsoo Kim70f75062016-03-15 14:54:53 -0700458 num = slab_size / buffer_size;
Joonsoo Kim2e6b3602016-03-15 14:54:30 -0700459 *left_over = slab_size % buffer_size;
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800460 } else {
Joonsoo Kim70f75062016-03-15 14:54:53 -0700461 num = slab_size / (buffer_size + sizeof(freelist_idx_t));
Joonsoo Kim2e6b3602016-03-15 14:54:30 -0700462 *left_over = slab_size %
463 (buffer_size + sizeof(freelist_idx_t));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 }
Joonsoo Kim70f75062016-03-15 14:54:53 -0700465
466 return num;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467}
468
Christoph Lameterf28510d2012-09-11 19:49:38 +0000469#if DEBUG
Harvey Harrisond40cee22008-04-30 00:55:07 -0700470#define slab_error(cachep, msg) __slab_error(__func__, cachep, msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
Andrew Mortona737b3e2006-03-22 00:08:11 -0800472static void __slab_error(const char *function, struct kmem_cache *cachep,
473 char *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474{
Joe Perches11705322016-03-17 14:19:50 -0700475 pr_err("slab error in %s(): cache `%s': %s\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800476 function, cachep->name, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 dump_stack();
Rusty Russell373d4d02013-01-21 17:17:39 +1030478 add_taint(TAINT_BAD_PAGE, LOCKDEP_NOW_UNRELIABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479}
Christoph Lameterf28510d2012-09-11 19:49:38 +0000480#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
Paul Menage3395ee02006-12-06 20:32:16 -0800482/*
483 * By default on NUMA we use alien caches to stage the freeing of
484 * objects allocated from other nodes. This causes massive memory
485 * inefficiencies when using fake NUMA setup to split memory into a
486 * large number of small nodes, so it can be disabled on the command
487 * line
488 */
489
490static int use_alien_caches __read_mostly = 1;
491static int __init noaliencache_setup(char *s)
492{
493 use_alien_caches = 0;
494 return 1;
495}
496__setup("noaliencache", noaliencache_setup);
497
David Rientjes3df1ccc2011-10-18 22:09:28 -0700498static int __init slab_max_order_setup(char *str)
499{
500 get_option(&str, &slab_max_order);
501 slab_max_order = slab_max_order < 0 ? 0 :
502 min(slab_max_order, MAX_ORDER - 1);
503 slab_max_order_set = true;
504
505 return 1;
506}
507__setup("slab_max_order=", slab_max_order_setup);
508
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800509#ifdef CONFIG_NUMA
510/*
511 * Special reaping functions for NUMA systems called from cache_reap().
512 * These take care of doing round robin flushing of alien caches (containing
513 * objects freed on different nodes from which they were allocated) and the
514 * flushing of remote pcps by calling drain_node_pages.
515 */
Tejun Heo1871e522009-10-29 22:34:13 +0900516static DEFINE_PER_CPU(unsigned long, slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800517
518static void init_reap_node(int cpu)
519{
520 int node;
521
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -0700522 node = next_node(cpu_to_mem(cpu), node_online_map);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800523 if (node == MAX_NUMNODES)
Paul Jackson442295c2006-03-22 00:09:11 -0800524 node = first_node(node_online_map);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800525
Tejun Heo1871e522009-10-29 22:34:13 +0900526 per_cpu(slab_reap_node, cpu) = node;
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800527}
528
529static void next_reap_node(void)
530{
Christoph Lameter909ea962010-12-08 16:22:55 +0100531 int node = __this_cpu_read(slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800532
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800533 node = next_node(node, node_online_map);
534 if (unlikely(node >= MAX_NUMNODES))
535 node = first_node(node_online_map);
Christoph Lameter909ea962010-12-08 16:22:55 +0100536 __this_cpu_write(slab_reap_node, node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800537}
538
539#else
540#define init_reap_node(cpu) do { } while (0)
541#define next_reap_node(void) do { } while (0)
542#endif
543
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544/*
545 * Initiate the reap timer running on the target CPU. We run at around 1 to 2Hz
546 * via the workqueue/eventd.
547 * Add the CPU number into the expiration time to minimize the possibility of
548 * the CPUs getting into lockstep and contending for the global cache chain
549 * lock.
550 */
Paul Gortmaker0db06282013-06-19 14:53:51 -0400551static void start_cpu_timer(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552{
Tejun Heo1871e522009-10-29 22:34:13 +0900553 struct delayed_work *reap_work = &per_cpu(slab_reap_work, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
555 /*
556 * When this gets called from do_initcalls via cpucache_init(),
557 * init_workqueues() has already run, so keventd will be setup
558 * at that time.
559 */
David Howells52bad642006-11-22 14:54:01 +0000560 if (keventd_up() && reap_work->work.func == NULL) {
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800561 init_reap_node(cpu);
Tejun Heo203b42f2012-08-21 13:18:23 -0700562 INIT_DEFERRABLE_WORK(reap_work, cache_reap);
Arjan van de Ven2b284212006-12-10 02:21:28 -0800563 schedule_delayed_work_on(cpu, reap_work,
564 __round_jiffies_relative(HZ, cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 }
566}
567
Joonsoo Kim1fe00d52014-08-06 16:04:27 -0700568static void init_arraycache(struct array_cache *ac, int limit, int batch)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569{
Catalin Marinasd5cff632009-06-11 13:22:40 +0100570 /*
571 * The array_cache structures contain pointers to free object.
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300572 * However, when such objects are allocated or transferred to another
Catalin Marinasd5cff632009-06-11 13:22:40 +0100573 * cache the pointers are not cleared and they could be counted as
574 * valid references during a kmemleak scan. Therefore, kmemleak must
575 * not scan such objects.
576 */
Joonsoo Kim1fe00d52014-08-06 16:04:27 -0700577 kmemleak_no_scan(ac);
578 if (ac) {
579 ac->avail = 0;
580 ac->limit = limit;
581 ac->batchcount = batch;
582 ac->touched = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 }
Joonsoo Kim1fe00d52014-08-06 16:04:27 -0700584}
585
586static struct array_cache *alloc_arraycache(int node, int entries,
587 int batchcount, gfp_t gfp)
588{
Joonsoo Kim5e804782014-08-06 16:04:40 -0700589 size_t memsize = sizeof(void *) * entries + sizeof(struct array_cache);
Joonsoo Kim1fe00d52014-08-06 16:04:27 -0700590 struct array_cache *ac = NULL;
591
592 ac = kmalloc_node(memsize, gfp, node);
593 init_arraycache(ac, entries, batchcount);
594 return ac;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595}
596
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -0700597static noinline void cache_free_pfmemalloc(struct kmem_cache *cachep,
598 struct page *page, void *objp)
Mel Gorman072bb0a2012-07-31 16:43:58 -0700599{
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -0700600 struct kmem_cache_node *n;
601 int page_node;
602 LIST_HEAD(list);
Mel Gorman072bb0a2012-07-31 16:43:58 -0700603
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -0700604 page_node = page_to_nid(page);
605 n = get_node(cachep, page_node);
Mel Gorman072bb0a2012-07-31 16:43:58 -0700606
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -0700607 spin_lock(&n->list_lock);
608 free_block(cachep, &objp, 1, page_node, &list);
609 spin_unlock(&n->list_lock);
Mel Gorman072bb0a2012-07-31 16:43:58 -0700610
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -0700611 slabs_destroy(cachep, &list);
Mel Gorman072bb0a2012-07-31 16:43:58 -0700612}
613
Christoph Lameter3ded1752006-03-25 03:06:44 -0800614/*
615 * Transfer objects in one arraycache to another.
616 * Locking must be handled by the caller.
617 *
618 * Return the number of entries transferred.
619 */
620static int transfer_objects(struct array_cache *to,
621 struct array_cache *from, unsigned int max)
622{
623 /* Figure out how many entries to transfer */
Hagen Paul Pfeifer732eacc2010-10-26 14:22:23 -0700624 int nr = min3(from->avail, max, to->limit - to->avail);
Christoph Lameter3ded1752006-03-25 03:06:44 -0800625
626 if (!nr)
627 return 0;
628
629 memcpy(to->entry + to->avail, from->entry + from->avail -nr,
630 sizeof(void *) *nr);
631
632 from->avail -= nr;
633 to->avail += nr;
Christoph Lameter3ded1752006-03-25 03:06:44 -0800634 return nr;
635}
636
Christoph Lameter765c4502006-09-27 01:50:08 -0700637#ifndef CONFIG_NUMA
638
639#define drain_alien_cache(cachep, alien) do { } while (0)
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000640#define reap_alien(cachep, n) do { } while (0)
Christoph Lameter765c4502006-09-27 01:50:08 -0700641
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700642static inline struct alien_cache **alloc_alien_cache(int node,
643 int limit, gfp_t gfp)
Christoph Lameter765c4502006-09-27 01:50:08 -0700644{
Joonsoo Kim88881772016-05-19 17:10:05 -0700645 return NULL;
Christoph Lameter765c4502006-09-27 01:50:08 -0700646}
647
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700648static inline void free_alien_cache(struct alien_cache **ac_ptr)
Christoph Lameter765c4502006-09-27 01:50:08 -0700649{
650}
651
652static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
653{
654 return 0;
655}
656
657static inline void *alternate_node_alloc(struct kmem_cache *cachep,
658 gfp_t flags)
659{
660 return NULL;
661}
662
Christoph Hellwig8b98c162006-12-06 20:32:30 -0800663static inline void *____cache_alloc_node(struct kmem_cache *cachep,
Christoph Lameter765c4502006-09-27 01:50:08 -0700664 gfp_t flags, int nodeid)
665{
666 return NULL;
667}
668
David Rientjes4167e9b2015-04-14 15:46:55 -0700669static inline gfp_t gfp_exact_node(gfp_t flags)
670{
Mel Gorman444eb2a42016-03-17 14:19:23 -0700671 return flags & ~__GFP_NOFAIL;
David Rientjes4167e9b2015-04-14 15:46:55 -0700672}
673
Christoph Lameter765c4502006-09-27 01:50:08 -0700674#else /* CONFIG_NUMA */
675
Christoph Hellwig8b98c162006-12-06 20:32:30 -0800676static void *____cache_alloc_node(struct kmem_cache *, gfp_t, int);
Paul Jacksonc61afb12006-03-24 03:16:08 -0800677static void *alternate_node_alloc(struct kmem_cache *, gfp_t);
Christoph Lameterdc85da12006-01-18 17:42:36 -0800678
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700679static struct alien_cache *__alloc_alien_cache(int node, int entries,
680 int batch, gfp_t gfp)
Christoph Lametere498be72005-09-09 13:03:32 -0700681{
Joonsoo Kim5e804782014-08-06 16:04:40 -0700682 size_t memsize = sizeof(void *) * entries + sizeof(struct alien_cache);
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700683 struct alien_cache *alc = NULL;
684
685 alc = kmalloc_node(memsize, gfp, node);
686 init_arraycache(&alc->ac, entries, batch);
Joonsoo Kim49dfc302014-08-06 16:04:31 -0700687 spin_lock_init(&alc->lock);
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700688 return alc;
689}
690
691static struct alien_cache **alloc_alien_cache(int node, int limit, gfp_t gfp)
692{
693 struct alien_cache **alc_ptr;
Joonsoo Kim5e804782014-08-06 16:04:40 -0700694 size_t memsize = sizeof(void *) * nr_node_ids;
Christoph Lametere498be72005-09-09 13:03:32 -0700695 int i;
696
697 if (limit > 1)
698 limit = 12;
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700699 alc_ptr = kzalloc_node(memsize, gfp, node);
700 if (!alc_ptr)
701 return NULL;
702
703 for_each_node(i) {
704 if (i == node || !node_online(i))
705 continue;
706 alc_ptr[i] = __alloc_alien_cache(node, limit, 0xbaadf00d, gfp);
707 if (!alc_ptr[i]) {
708 for (i--; i >= 0; i--)
709 kfree(alc_ptr[i]);
710 kfree(alc_ptr);
711 return NULL;
Christoph Lametere498be72005-09-09 13:03:32 -0700712 }
713 }
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700714 return alc_ptr;
Christoph Lametere498be72005-09-09 13:03:32 -0700715}
716
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700717static void free_alien_cache(struct alien_cache **alc_ptr)
Christoph Lametere498be72005-09-09 13:03:32 -0700718{
719 int i;
720
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700721 if (!alc_ptr)
Christoph Lametere498be72005-09-09 13:03:32 -0700722 return;
Christoph Lametere498be72005-09-09 13:03:32 -0700723 for_each_node(i)
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700724 kfree(alc_ptr[i]);
725 kfree(alc_ptr);
Christoph Lametere498be72005-09-09 13:03:32 -0700726}
727
Pekka Enberg343e0d72006-02-01 03:05:50 -0800728static void __drain_alien_cache(struct kmem_cache *cachep,
Joonsoo Kim833b7062014-08-06 16:04:33 -0700729 struct array_cache *ac, int node,
730 struct list_head *list)
Christoph Lametere498be72005-09-09 13:03:32 -0700731{
Christoph Lameter18bf8542014-08-06 16:04:11 -0700732 struct kmem_cache_node *n = get_node(cachep, node);
Christoph Lametere498be72005-09-09 13:03:32 -0700733
734 if (ac->avail) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000735 spin_lock(&n->list_lock);
Christoph Lametere00946f2006-03-25 03:06:45 -0800736 /*
737 * Stuff objects into the remote nodes shared array first.
738 * That way we could avoid the overhead of putting the objects
739 * into the free lists and getting them back later.
740 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000741 if (n->shared)
742 transfer_objects(n->shared, ac, ac->limit);
Christoph Lametere00946f2006-03-25 03:06:45 -0800743
Joonsoo Kim833b7062014-08-06 16:04:33 -0700744 free_block(cachep, ac->entry, ac->avail, node, list);
Christoph Lametere498be72005-09-09 13:03:32 -0700745 ac->avail = 0;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000746 spin_unlock(&n->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -0700747 }
748}
749
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800750/*
751 * Called from cache_reap() to regularly drain alien caches round robin.
752 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000753static void reap_alien(struct kmem_cache *cachep, struct kmem_cache_node *n)
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800754{
Christoph Lameter909ea962010-12-08 16:22:55 +0100755 int node = __this_cpu_read(slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800756
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000757 if (n->alien) {
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700758 struct alien_cache *alc = n->alien[node];
759 struct array_cache *ac;
Christoph Lametere00946f2006-03-25 03:06:45 -0800760
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700761 if (alc) {
762 ac = &alc->ac;
Joonsoo Kim49dfc302014-08-06 16:04:31 -0700763 if (ac->avail && spin_trylock_irq(&alc->lock)) {
Joonsoo Kim833b7062014-08-06 16:04:33 -0700764 LIST_HEAD(list);
765
766 __drain_alien_cache(cachep, ac, node, &list);
Joonsoo Kim49dfc302014-08-06 16:04:31 -0700767 spin_unlock_irq(&alc->lock);
Joonsoo Kim833b7062014-08-06 16:04:33 -0700768 slabs_destroy(cachep, &list);
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700769 }
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800770 }
771 }
772}
773
Andrew Mortona737b3e2006-03-22 00:08:11 -0800774static void drain_alien_cache(struct kmem_cache *cachep,
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700775 struct alien_cache **alien)
Christoph Lametere498be72005-09-09 13:03:32 -0700776{
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800777 int i = 0;
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700778 struct alien_cache *alc;
Christoph Lametere498be72005-09-09 13:03:32 -0700779 struct array_cache *ac;
780 unsigned long flags;
781
782 for_each_online_node(i) {
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700783 alc = alien[i];
784 if (alc) {
Joonsoo Kim833b7062014-08-06 16:04:33 -0700785 LIST_HEAD(list);
786
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700787 ac = &alc->ac;
Joonsoo Kim49dfc302014-08-06 16:04:31 -0700788 spin_lock_irqsave(&alc->lock, flags);
Joonsoo Kim833b7062014-08-06 16:04:33 -0700789 __drain_alien_cache(cachep, ac, i, &list);
Joonsoo Kim49dfc302014-08-06 16:04:31 -0700790 spin_unlock_irqrestore(&alc->lock, flags);
Joonsoo Kim833b7062014-08-06 16:04:33 -0700791 slabs_destroy(cachep, &list);
Christoph Lametere498be72005-09-09 13:03:32 -0700792 }
793 }
794}
Pekka Enberg729bd0b2006-06-23 02:03:05 -0700795
Joonsoo Kim25c4f302014-10-09 15:26:09 -0700796static int __cache_free_alien(struct kmem_cache *cachep, void *objp,
797 int node, int page_node)
Pekka Enberg729bd0b2006-06-23 02:03:05 -0700798{
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000799 struct kmem_cache_node *n;
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700800 struct alien_cache *alien = NULL;
801 struct array_cache *ac;
Joonsoo Kim97654df2014-08-06 16:04:25 -0700802 LIST_HEAD(list);
Pekka Enberg1ca4cb22006-10-06 00:43:52 -0700803
Christoph Lameter18bf8542014-08-06 16:04:11 -0700804 n = get_node(cachep, node);
Pekka Enberg729bd0b2006-06-23 02:03:05 -0700805 STATS_INC_NODEFREES(cachep);
Joonsoo Kim25c4f302014-10-09 15:26:09 -0700806 if (n->alien && n->alien[page_node]) {
807 alien = n->alien[page_node];
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700808 ac = &alien->ac;
Joonsoo Kim49dfc302014-08-06 16:04:31 -0700809 spin_lock(&alien->lock);
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700810 if (unlikely(ac->avail == ac->limit)) {
Pekka Enberg729bd0b2006-06-23 02:03:05 -0700811 STATS_INC_ACOVERFLOW(cachep);
Joonsoo Kim25c4f302014-10-09 15:26:09 -0700812 __drain_alien_cache(cachep, ac, page_node, &list);
Pekka Enberg729bd0b2006-06-23 02:03:05 -0700813 }
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -0700814 ac->entry[ac->avail++] = objp;
Joonsoo Kim49dfc302014-08-06 16:04:31 -0700815 spin_unlock(&alien->lock);
Joonsoo Kim833b7062014-08-06 16:04:33 -0700816 slabs_destroy(cachep, &list);
Pekka Enberg729bd0b2006-06-23 02:03:05 -0700817 } else {
Joonsoo Kim25c4f302014-10-09 15:26:09 -0700818 n = get_node(cachep, page_node);
Christoph Lameter18bf8542014-08-06 16:04:11 -0700819 spin_lock(&n->list_lock);
Joonsoo Kim25c4f302014-10-09 15:26:09 -0700820 free_block(cachep, &objp, 1, page_node, &list);
Christoph Lameter18bf8542014-08-06 16:04:11 -0700821 spin_unlock(&n->list_lock);
Joonsoo Kim97654df2014-08-06 16:04:25 -0700822 slabs_destroy(cachep, &list);
Pekka Enberg729bd0b2006-06-23 02:03:05 -0700823 }
824 return 1;
825}
Joonsoo Kim25c4f302014-10-09 15:26:09 -0700826
827static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
828{
829 int page_node = page_to_nid(virt_to_page(objp));
830 int node = numa_mem_id();
831 /*
832 * Make sure we are not freeing a object from another node to the array
833 * cache on this cpu.
834 */
835 if (likely(node == page_node))
836 return 0;
837
838 return __cache_free_alien(cachep, objp, node, page_node);
839}
David Rientjes4167e9b2015-04-14 15:46:55 -0700840
841/*
Mel Gorman444eb2a42016-03-17 14:19:23 -0700842 * Construct gfp mask to allocate from a specific node but do not reclaim or
843 * warn about failures.
David Rientjes4167e9b2015-04-14 15:46:55 -0700844 */
845static inline gfp_t gfp_exact_node(gfp_t flags)
846{
Mel Gorman444eb2a42016-03-17 14:19:23 -0700847 return (flags | __GFP_THISNODE | __GFP_NOWARN) & ~(__GFP_RECLAIM|__GFP_NOFAIL);
David Rientjes4167e9b2015-04-14 15:46:55 -0700848}
Christoph Lametere498be72005-09-09 13:03:32 -0700849#endif
850
David Rientjes8f9f8d92010-03-27 19:40:47 -0700851/*
Christoph Lameter6a673682013-01-10 19:14:19 +0000852 * Allocates and initializes node for a node on each slab cache, used for
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000853 * either memory or cpu hotplug. If memory is being hot-added, the kmem_cache_node
David Rientjes8f9f8d92010-03-27 19:40:47 -0700854 * will be allocated off-node since memory is not yet online for the new node.
Christoph Lameter6a673682013-01-10 19:14:19 +0000855 * When hotplugging memory or a cpu, existing node are not replaced if
David Rientjes8f9f8d92010-03-27 19:40:47 -0700856 * already in use.
857 *
Christoph Lameter18004c52012-07-06 15:25:12 -0500858 * Must hold slab_mutex.
David Rientjes8f9f8d92010-03-27 19:40:47 -0700859 */
Christoph Lameter6a673682013-01-10 19:14:19 +0000860static int init_cache_node_node(int node)
David Rientjes8f9f8d92010-03-27 19:40:47 -0700861{
862 struct kmem_cache *cachep;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000863 struct kmem_cache_node *n;
Joonsoo Kim5e804782014-08-06 16:04:40 -0700864 const size_t memsize = sizeof(struct kmem_cache_node);
David Rientjes8f9f8d92010-03-27 19:40:47 -0700865
Christoph Lameter18004c52012-07-06 15:25:12 -0500866 list_for_each_entry(cachep, &slab_caches, list) {
David Rientjes8f9f8d92010-03-27 19:40:47 -0700867 /*
Jianyu Zhan5f0985b2014-03-30 17:02:20 +0800868 * Set up the kmem_cache_node for cpu before we can
David Rientjes8f9f8d92010-03-27 19:40:47 -0700869 * begin anything. Make sure some other cpu on this
870 * node has not already allocated this
871 */
Christoph Lameter18bf8542014-08-06 16:04:11 -0700872 n = get_node(cachep, node);
873 if (!n) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000874 n = kmalloc_node(memsize, GFP_KERNEL, node);
875 if (!n)
David Rientjes8f9f8d92010-03-27 19:40:47 -0700876 return -ENOMEM;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000877 kmem_cache_node_init(n);
Jianyu Zhan5f0985b2014-03-30 17:02:20 +0800878 n->next_reap = jiffies + REAPTIMEOUT_NODE +
879 ((unsigned long)cachep) % REAPTIMEOUT_NODE;
David Rientjes8f9f8d92010-03-27 19:40:47 -0700880
881 /*
Jianyu Zhan5f0985b2014-03-30 17:02:20 +0800882 * The kmem_cache_nodes don't come and go as CPUs
883 * come and go. slab_mutex is sufficient
David Rientjes8f9f8d92010-03-27 19:40:47 -0700884 * protection here.
885 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000886 cachep->node[node] = n;
David Rientjes8f9f8d92010-03-27 19:40:47 -0700887 }
888
Christoph Lameter18bf8542014-08-06 16:04:11 -0700889 spin_lock_irq(&n->list_lock);
890 n->free_limit =
David Rientjes8f9f8d92010-03-27 19:40:47 -0700891 (1 + nr_cpus_node(node)) *
892 cachep->batchcount + cachep->num;
Christoph Lameter18bf8542014-08-06 16:04:11 -0700893 spin_unlock_irq(&n->list_lock);
David Rientjes8f9f8d92010-03-27 19:40:47 -0700894 }
895 return 0;
896}
897
Paul Gortmaker0db06282013-06-19 14:53:51 -0400898static void cpuup_canceled(long cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899{
Akinobu Mitafbf1e472007-10-18 03:05:09 -0700900 struct kmem_cache *cachep;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000901 struct kmem_cache_node *n = NULL;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -0700902 int node = cpu_to_mem(cpu);
Rusty Russella70f7302009-03-13 14:49:46 +1030903 const struct cpumask *mask = cpumask_of_node(node);
Akinobu Mitafbf1e472007-10-18 03:05:09 -0700904
Christoph Lameter18004c52012-07-06 15:25:12 -0500905 list_for_each_entry(cachep, &slab_caches, list) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -0700906 struct array_cache *nc;
907 struct array_cache *shared;
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700908 struct alien_cache **alien;
Joonsoo Kim97654df2014-08-06 16:04:25 -0700909 LIST_HEAD(list);
Akinobu Mitafbf1e472007-10-18 03:05:09 -0700910
Christoph Lameter18bf8542014-08-06 16:04:11 -0700911 n = get_node(cachep, node);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000912 if (!n)
Joonsoo Kimbf0dea22014-10-09 15:26:27 -0700913 continue;
Akinobu Mitafbf1e472007-10-18 03:05:09 -0700914
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000915 spin_lock_irq(&n->list_lock);
Akinobu Mitafbf1e472007-10-18 03:05:09 -0700916
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000917 /* Free limit for this kmem_cache_node */
918 n->free_limit -= cachep->batchcount;
Joonsoo Kimbf0dea22014-10-09 15:26:27 -0700919
920 /* cpu is dead; no one can alloc from it. */
921 nc = per_cpu_ptr(cachep->cpu_cache, cpu);
922 if (nc) {
Joonsoo Kim97654df2014-08-06 16:04:25 -0700923 free_block(cachep, nc->entry, nc->avail, node, &list);
Joonsoo Kimbf0dea22014-10-09 15:26:27 -0700924 nc->avail = 0;
925 }
Akinobu Mitafbf1e472007-10-18 03:05:09 -0700926
Rusty Russell58463c12009-12-17 11:43:12 -0600927 if (!cpumask_empty(mask)) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000928 spin_unlock_irq(&n->list_lock);
Joonsoo Kimbf0dea22014-10-09 15:26:27 -0700929 goto free_slab;
Akinobu Mitafbf1e472007-10-18 03:05:09 -0700930 }
931
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000932 shared = n->shared;
Akinobu Mitafbf1e472007-10-18 03:05:09 -0700933 if (shared) {
934 free_block(cachep, shared->entry,
Joonsoo Kim97654df2014-08-06 16:04:25 -0700935 shared->avail, node, &list);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000936 n->shared = NULL;
Akinobu Mitafbf1e472007-10-18 03:05:09 -0700937 }
938
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000939 alien = n->alien;
940 n->alien = NULL;
Akinobu Mitafbf1e472007-10-18 03:05:09 -0700941
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000942 spin_unlock_irq(&n->list_lock);
Akinobu Mitafbf1e472007-10-18 03:05:09 -0700943
944 kfree(shared);
945 if (alien) {
946 drain_alien_cache(cachep, alien);
947 free_alien_cache(alien);
948 }
Joonsoo Kimbf0dea22014-10-09 15:26:27 -0700949
950free_slab:
Joonsoo Kim97654df2014-08-06 16:04:25 -0700951 slabs_destroy(cachep, &list);
Akinobu Mitafbf1e472007-10-18 03:05:09 -0700952 }
953 /*
954 * In the previous loop, all the objects were freed to
955 * the respective cache's slabs, now we can go ahead and
956 * shrink each nodelist to its limit.
957 */
Christoph Lameter18004c52012-07-06 15:25:12 -0500958 list_for_each_entry(cachep, &slab_caches, list) {
Christoph Lameter18bf8542014-08-06 16:04:11 -0700959 n = get_node(cachep, node);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000960 if (!n)
Akinobu Mitafbf1e472007-10-18 03:05:09 -0700961 continue;
Joonsoo Kima5aa63a2016-05-19 17:10:08 -0700962 drain_freelist(cachep, n, INT_MAX);
Akinobu Mitafbf1e472007-10-18 03:05:09 -0700963 }
964}
965
Paul Gortmaker0db06282013-06-19 14:53:51 -0400966static int cpuup_prepare(long cpu)
Akinobu Mitafbf1e472007-10-18 03:05:09 -0700967{
Pekka Enberg343e0d72006-02-01 03:05:50 -0800968 struct kmem_cache *cachep;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000969 struct kmem_cache_node *n = NULL;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -0700970 int node = cpu_to_mem(cpu);
David Rientjes8f9f8d92010-03-27 19:40:47 -0700971 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972
Akinobu Mitafbf1e472007-10-18 03:05:09 -0700973 /*
974 * We need to do this right in the beginning since
975 * alloc_arraycache's are going to use this list.
976 * kmalloc_node allows us to add the slab to the right
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000977 * kmem_cache_node and not this cpu's kmem_cache_node
Akinobu Mitafbf1e472007-10-18 03:05:09 -0700978 */
Christoph Lameter6a673682013-01-10 19:14:19 +0000979 err = init_cache_node_node(node);
David Rientjes8f9f8d92010-03-27 19:40:47 -0700980 if (err < 0)
981 goto bad;
Akinobu Mitafbf1e472007-10-18 03:05:09 -0700982
983 /*
984 * Now we can go ahead with allocating the shared arrays and
985 * array caches
986 */
Christoph Lameter18004c52012-07-06 15:25:12 -0500987 list_for_each_entry(cachep, &slab_caches, list) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -0700988 struct array_cache *shared = NULL;
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700989 struct alien_cache **alien = NULL;
Akinobu Mitafbf1e472007-10-18 03:05:09 -0700990
Akinobu Mitafbf1e472007-10-18 03:05:09 -0700991 if (cachep->shared) {
992 shared = alloc_arraycache(node,
993 cachep->shared * cachep->batchcount,
Pekka Enberg83b519e2009-06-10 19:40:04 +0300994 0xbaadf00d, GFP_KERNEL);
Joonsoo Kimbf0dea22014-10-09 15:26:27 -0700995 if (!shared)
Akinobu Mitafbf1e472007-10-18 03:05:09 -0700996 goto bad;
997 }
998 if (use_alien_caches) {
Pekka Enberg83b519e2009-06-10 19:40:04 +0300999 alien = alloc_alien_cache(node, cachep->limit, GFP_KERNEL);
Akinobu Mita12d00f62007-10-18 03:05:11 -07001000 if (!alien) {
1001 kfree(shared);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001002 goto bad;
Akinobu Mita12d00f62007-10-18 03:05:11 -07001003 }
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001004 }
Christoph Lameter18bf8542014-08-06 16:04:11 -07001005 n = get_node(cachep, node);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001006 BUG_ON(!n);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001007
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001008 spin_lock_irq(&n->list_lock);
1009 if (!n->shared) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001010 /*
1011 * We are serialised from CPU_DEAD or
1012 * CPU_UP_CANCELLED by the cpucontrol lock
1013 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001014 n->shared = shared;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001015 shared = NULL;
1016 }
1017#ifdef CONFIG_NUMA
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001018 if (!n->alien) {
1019 n->alien = alien;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001020 alien = NULL;
1021 }
1022#endif
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001023 spin_unlock_irq(&n->list_lock);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001024 kfree(shared);
1025 free_alien_cache(alien);
1026 }
Pekka Enbergce79ddc2009-11-23 22:01:15 +02001027
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001028 return 0;
1029bad:
Akinobu Mita12d00f62007-10-18 03:05:11 -07001030 cpuup_canceled(cpu);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001031 return -ENOMEM;
1032}
1033
Paul Gortmaker0db06282013-06-19 14:53:51 -04001034static int cpuup_callback(struct notifier_block *nfb,
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001035 unsigned long action, void *hcpu)
1036{
1037 long cpu = (long)hcpu;
1038 int err = 0;
1039
Linus Torvalds1da177e2005-04-16 15:20:36 -07001040 switch (action) {
Heiko Carstens38c3bd92007-05-09 02:34:05 -07001041 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001042 case CPU_UP_PREPARE_FROZEN:
Christoph Lameter18004c52012-07-06 15:25:12 -05001043 mutex_lock(&slab_mutex);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001044 err = cpuup_prepare(cpu);
Christoph Lameter18004c52012-07-06 15:25:12 -05001045 mutex_unlock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 break;
1047 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001048 case CPU_ONLINE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 start_cpu_timer(cpu);
1050 break;
1051#ifdef CONFIG_HOTPLUG_CPU
Christoph Lameter5830c592007-05-09 02:34:22 -07001052 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001053 case CPU_DOWN_PREPARE_FROZEN:
Christoph Lameter5830c592007-05-09 02:34:22 -07001054 /*
Christoph Lameter18004c52012-07-06 15:25:12 -05001055 * Shutdown cache reaper. Note that the slab_mutex is
Christoph Lameter5830c592007-05-09 02:34:22 -07001056 * held so that if cache_reap() is invoked it cannot do
1057 * anything expensive but will only modify reap_work
1058 * and reschedule the timer.
1059 */
Tejun Heoafe2c512010-12-14 16:21:17 +01001060 cancel_delayed_work_sync(&per_cpu(slab_reap_work, cpu));
Christoph Lameter5830c592007-05-09 02:34:22 -07001061 /* Now the cache_reaper is guaranteed to be not running. */
Tejun Heo1871e522009-10-29 22:34:13 +09001062 per_cpu(slab_reap_work, cpu).work.func = NULL;
Christoph Lameter5830c592007-05-09 02:34:22 -07001063 break;
1064 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001065 case CPU_DOWN_FAILED_FROZEN:
Christoph Lameter5830c592007-05-09 02:34:22 -07001066 start_cpu_timer(cpu);
1067 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001069 case CPU_DEAD_FROZEN:
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001070 /*
1071 * Even if all the cpus of a node are down, we don't free the
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001072 * kmem_cache_node of any cache. This to avoid a race between
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001073 * cpu_down, and a kmalloc allocation from another cpu for
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001074 * memory from the node of the cpu going down. The node
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001075 * structure is usually allocated from kmem_cache_create() and
1076 * gets destroyed at kmem_cache_destroy().
1077 */
Simon Arlott183ff222007-10-20 01:27:18 +02001078 /* fall through */
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08001079#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001081 case CPU_UP_CANCELED_FROZEN:
Christoph Lameter18004c52012-07-06 15:25:12 -05001082 mutex_lock(&slab_mutex);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001083 cpuup_canceled(cpu);
Christoph Lameter18004c52012-07-06 15:25:12 -05001084 mutex_unlock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001086 }
Akinobu Mitaeac40682010-05-26 14:43:32 -07001087 return notifier_from_errno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001088}
1089
Paul Gortmaker0db06282013-06-19 14:53:51 -04001090static struct notifier_block cpucache_notifier = {
Chandra Seetharaman74b85f32006-06-27 02:54:09 -07001091 &cpuup_callback, NULL, 0
1092};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
David Rientjes8f9f8d92010-03-27 19:40:47 -07001094#if defined(CONFIG_NUMA) && defined(CONFIG_MEMORY_HOTPLUG)
1095/*
1096 * Drains freelist for a node on each slab cache, used for memory hot-remove.
1097 * Returns -EBUSY if all objects cannot be drained so that the node is not
1098 * removed.
1099 *
Christoph Lameter18004c52012-07-06 15:25:12 -05001100 * Must hold slab_mutex.
David Rientjes8f9f8d92010-03-27 19:40:47 -07001101 */
Christoph Lameter6a673682013-01-10 19:14:19 +00001102static int __meminit drain_cache_node_node(int node)
David Rientjes8f9f8d92010-03-27 19:40:47 -07001103{
1104 struct kmem_cache *cachep;
1105 int ret = 0;
1106
Christoph Lameter18004c52012-07-06 15:25:12 -05001107 list_for_each_entry(cachep, &slab_caches, list) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001108 struct kmem_cache_node *n;
David Rientjes8f9f8d92010-03-27 19:40:47 -07001109
Christoph Lameter18bf8542014-08-06 16:04:11 -07001110 n = get_node(cachep, node);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001111 if (!n)
David Rientjes8f9f8d92010-03-27 19:40:47 -07001112 continue;
1113
Joonsoo Kima5aa63a2016-05-19 17:10:08 -07001114 drain_freelist(cachep, n, INT_MAX);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001115
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001116 if (!list_empty(&n->slabs_full) ||
1117 !list_empty(&n->slabs_partial)) {
David Rientjes8f9f8d92010-03-27 19:40:47 -07001118 ret = -EBUSY;
1119 break;
1120 }
1121 }
1122 return ret;
1123}
1124
1125static int __meminit slab_memory_callback(struct notifier_block *self,
1126 unsigned long action, void *arg)
1127{
1128 struct memory_notify *mnb = arg;
1129 int ret = 0;
1130 int nid;
1131
1132 nid = mnb->status_change_nid;
1133 if (nid < 0)
1134 goto out;
1135
1136 switch (action) {
1137 case MEM_GOING_ONLINE:
Christoph Lameter18004c52012-07-06 15:25:12 -05001138 mutex_lock(&slab_mutex);
Christoph Lameter6a673682013-01-10 19:14:19 +00001139 ret = init_cache_node_node(nid);
Christoph Lameter18004c52012-07-06 15:25:12 -05001140 mutex_unlock(&slab_mutex);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001141 break;
1142 case MEM_GOING_OFFLINE:
Christoph Lameter18004c52012-07-06 15:25:12 -05001143 mutex_lock(&slab_mutex);
Christoph Lameter6a673682013-01-10 19:14:19 +00001144 ret = drain_cache_node_node(nid);
Christoph Lameter18004c52012-07-06 15:25:12 -05001145 mutex_unlock(&slab_mutex);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001146 break;
1147 case MEM_ONLINE:
1148 case MEM_OFFLINE:
1149 case MEM_CANCEL_ONLINE:
1150 case MEM_CANCEL_OFFLINE:
1151 break;
1152 }
1153out:
Prarit Bhargava5fda1bd2011-03-22 16:30:49 -07001154 return notifier_from_errno(ret);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001155}
1156#endif /* CONFIG_NUMA && CONFIG_MEMORY_HOTPLUG */
1157
Christoph Lametere498be72005-09-09 13:03:32 -07001158/*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001159 * swap the static kmem_cache_node with kmalloced memory
Christoph Lametere498be72005-09-09 13:03:32 -07001160 */
Christoph Lameter6744f082013-01-10 19:12:17 +00001161static void __init init_list(struct kmem_cache *cachep, struct kmem_cache_node *list,
David Rientjes8f9f8d92010-03-27 19:40:47 -07001162 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07001163{
Christoph Lameter6744f082013-01-10 19:12:17 +00001164 struct kmem_cache_node *ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001165
Christoph Lameter6744f082013-01-10 19:12:17 +00001166 ptr = kmalloc_node(sizeof(struct kmem_cache_node), GFP_NOWAIT, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07001167 BUG_ON(!ptr);
1168
Christoph Lameter6744f082013-01-10 19:12:17 +00001169 memcpy(ptr, list, sizeof(struct kmem_cache_node));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001170 /*
1171 * Do not assume that spinlocks can be initialized via memcpy:
1172 */
1173 spin_lock_init(&ptr->list_lock);
1174
Christoph Lametere498be72005-09-09 13:03:32 -07001175 MAKE_ALL_LISTS(cachep, ptr, nodeid);
Christoph Lameter6a673682013-01-10 19:14:19 +00001176 cachep->node[nodeid] = ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001177}
1178
Andrew Mortona737b3e2006-03-22 00:08:11 -08001179/*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001180 * For setting up all the kmem_cache_node for cache whose buffer_size is same as
1181 * size of kmem_cache_node.
Pekka Enberg556a1692008-01-25 08:20:51 +02001182 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001183static void __init set_up_node(struct kmem_cache *cachep, int index)
Pekka Enberg556a1692008-01-25 08:20:51 +02001184{
1185 int node;
1186
1187 for_each_online_node(node) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001188 cachep->node[node] = &init_kmem_cache_node[index + node];
Christoph Lameter6a673682013-01-10 19:14:19 +00001189 cachep->node[node]->next_reap = jiffies +
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08001190 REAPTIMEOUT_NODE +
1191 ((unsigned long)cachep) % REAPTIMEOUT_NODE;
Pekka Enberg556a1692008-01-25 08:20:51 +02001192 }
1193}
1194
1195/*
Andrew Mortona737b3e2006-03-22 00:08:11 -08001196 * Initialisation. Called after the page allocator have been initialised and
1197 * before smp_init().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 */
1199void __init kmem_cache_init(void)
1200{
Christoph Lametere498be72005-09-09 13:03:32 -07001201 int i;
1202
Joonsoo Kim68126702013-10-24 10:07:42 +09001203 BUILD_BUG_ON(sizeof(((struct page *)NULL)->lru) <
1204 sizeof(struct rcu_head));
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001205 kmem_cache = &kmem_cache_boot;
1206
Joonsoo Kim88881772016-05-19 17:10:05 -07001207 if (!IS_ENABLED(CONFIG_NUMA) || num_possible_nodes() == 1)
Siddha, Suresh B62918a02007-05-02 19:27:18 +02001208 use_alien_caches = 0;
1209
Christoph Lameter3c583462012-11-28 16:23:01 +00001210 for (i = 0; i < NUM_INIT_LISTS; i++)
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001211 kmem_cache_node_init(&init_kmem_cache_node[i]);
Christoph Lameter3c583462012-11-28 16:23:01 +00001212
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 /*
1214 * Fragmentation resistance on low memory - only use bigger
David Rientjes3df1ccc2011-10-18 22:09:28 -07001215 * page orders on machines with more than 32MB of memory if
1216 * not overridden on the command line.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 */
David Rientjes3df1ccc2011-10-18 22:09:28 -07001218 if (!slab_max_order_set && totalram_pages > (32 << 20) >> PAGE_SHIFT)
David Rientjes543585c2011-10-18 22:09:24 -07001219 slab_max_order = SLAB_MAX_ORDER_HI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 /* Bootstrap is tricky, because several objects are allocated
1222 * from caches that do not exist yet:
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001223 * 1) initialize the kmem_cache cache: it contains the struct
1224 * kmem_cache structures of all caches, except kmem_cache itself:
1225 * kmem_cache is statically allocated.
Christoph Lametere498be72005-09-09 13:03:32 -07001226 * Initially an __init data area is used for the head array and the
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001227 * kmem_cache_node structures, it's replaced with a kmalloc allocated
Christoph Lametere498be72005-09-09 13:03:32 -07001228 * array at the end of the bootstrap.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 * 2) Create the first kmalloc cache.
Pekka Enberg343e0d72006-02-01 03:05:50 -08001230 * The struct kmem_cache for the new cache is allocated normally.
Christoph Lametere498be72005-09-09 13:03:32 -07001231 * An __init data area is used for the head array.
1232 * 3) Create the remaining kmalloc caches, with minimally sized
1233 * head arrays.
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001234 * 4) Replace the __init data head arrays for kmem_cache and the first
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235 * kmalloc cache with kmalloc allocated arrays.
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001236 * 5) Replace the __init data for kmem_cache_node for kmem_cache and
Christoph Lametere498be72005-09-09 13:03:32 -07001237 * the other cache's with kmalloc allocated memory.
1238 * 6) Resize the head arrays of the kmalloc caches to their final sizes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 */
1240
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001241 /* 1) create the kmem_cache */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242
Eric Dumazet8da34302007-05-06 14:49:29 -07001243 /*
Eric Dumazetb56efcf2011-07-20 19:04:23 +02001244 * struct kmem_cache size depends on nr_node_ids & nr_cpu_ids
Eric Dumazet8da34302007-05-06 14:49:29 -07001245 */
Christoph Lameter2f9baa92012-11-28 16:23:09 +00001246 create_boot_cache(kmem_cache, "kmem_cache",
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07001247 offsetof(struct kmem_cache, node) +
Christoph Lameter6744f082013-01-10 19:12:17 +00001248 nr_node_ids * sizeof(struct kmem_cache_node *),
Christoph Lameter2f9baa92012-11-28 16:23:09 +00001249 SLAB_HWCACHE_ALIGN);
1250 list_add(&kmem_cache->list, &slab_caches);
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07001251 slab_state = PARTIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
Andrew Mortona737b3e2006-03-22 00:08:11 -08001253 /*
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07001254 * Initialize the caches that provide memory for the kmem_cache_node
1255 * structures first. Without this, further allocations will bug.
Christoph Lametere498be72005-09-09 13:03:32 -07001256 */
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07001257 kmalloc_caches[INDEX_NODE] = create_kmalloc_cache("kmalloc-node",
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001258 kmalloc_size(INDEX_NODE), ARCH_KMALLOC_FLAGS);
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07001259 slab_state = PARTIAL_NODE;
Daniel Sanders34cc6992015-06-24 16:55:57 -07001260 setup_kmalloc_cache_index_table();
Christoph Lametere498be72005-09-09 13:03:32 -07001261
Ingo Molnare0a42722006-06-23 02:03:46 -07001262 slab_early_init = 0;
1263
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001264 /* 5) Replace the bootstrap kmem_cache_node */
Christoph Lametere498be72005-09-09 13:03:32 -07001265 {
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001266 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
Mel Gorman9c09a952008-01-24 05:49:54 -08001268 for_each_online_node(nid) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001269 init_list(kmem_cache, &init_kmem_cache_node[CACHE_CACHE + nid], nid);
Pekka Enberg556a1692008-01-25 08:20:51 +02001270
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07001271 init_list(kmalloc_caches[INDEX_NODE],
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001272 &init_kmem_cache_node[SIZE_NODE + nid], nid);
Christoph Lametere498be72005-09-09 13:03:32 -07001273 }
1274 }
1275
Christoph Lameterf97d5f62013-01-10 19:12:17 +00001276 create_kmalloc_caches(ARCH_KMALLOC_FLAGS);
Pekka Enberg8429db52009-06-12 15:58:59 +03001277}
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -07001278
Pekka Enberg8429db52009-06-12 15:58:59 +03001279void __init kmem_cache_init_late(void)
1280{
1281 struct kmem_cache *cachep;
1282
Christoph Lameter97d06602012-07-06 15:25:11 -05001283 slab_state = UP;
Peter Zijlstra52cef182011-11-28 21:12:40 +01001284
Pekka Enberg8429db52009-06-12 15:58:59 +03001285 /* 6) resize the head arrays to their final sizes */
Christoph Lameter18004c52012-07-06 15:25:12 -05001286 mutex_lock(&slab_mutex);
1287 list_for_each_entry(cachep, &slab_caches, list)
Pekka Enberg8429db52009-06-12 15:58:59 +03001288 if (enable_cpucache(cachep, GFP_NOWAIT))
1289 BUG();
Christoph Lameter18004c52012-07-06 15:25:12 -05001290 mutex_unlock(&slab_mutex);
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -07001291
Christoph Lameter97d06602012-07-06 15:25:11 -05001292 /* Done! */
1293 slab_state = FULL;
1294
Andrew Mortona737b3e2006-03-22 00:08:11 -08001295 /*
1296 * Register a cpu startup notifier callback that initializes
1297 * cpu_cache_get for all new cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07001298 */
1299 register_cpu_notifier(&cpucache_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001300
David Rientjes8f9f8d92010-03-27 19:40:47 -07001301#ifdef CONFIG_NUMA
1302 /*
1303 * Register a memory hotplug callback that initializes and frees
Christoph Lameter6a673682013-01-10 19:14:19 +00001304 * node.
David Rientjes8f9f8d92010-03-27 19:40:47 -07001305 */
1306 hotplug_memory_notifier(slab_memory_callback, SLAB_CALLBACK_PRI);
1307#endif
1308
Andrew Mortona737b3e2006-03-22 00:08:11 -08001309 /*
1310 * The reap timers are started later, with a module init call: That part
1311 * of the kernel is not yet operational.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 */
1313}
1314
1315static int __init cpucache_init(void)
1316{
1317 int cpu;
1318
Andrew Mortona737b3e2006-03-22 00:08:11 -08001319 /*
1320 * Register the timers that return unneeded pages to the page allocator
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 */
Christoph Lametere498be72005-09-09 13:03:32 -07001322 for_each_online_cpu(cpu)
Andrew Mortona737b3e2006-03-22 00:08:11 -08001323 start_cpu_timer(cpu);
Glauber Costaa164f8962012-06-21 00:59:18 +04001324
1325 /* Done! */
Christoph Lameter97d06602012-07-06 15:25:11 -05001326 slab_state = FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327 return 0;
1328}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329__initcall(cpucache_init);
1330
Rafael Aquini8bdec192012-03-09 17:27:27 -03001331static noinline void
1332slab_out_of_memory(struct kmem_cache *cachep, gfp_t gfpflags, int nodeid)
1333{
David Rientjes9a02d692014-06-04 16:06:36 -07001334#if DEBUG
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001335 struct kmem_cache_node *n;
Joonsoo Kim8456a642013-10-24 10:07:49 +09001336 struct page *page;
Rafael Aquini8bdec192012-03-09 17:27:27 -03001337 unsigned long flags;
1338 int node;
David Rientjes9a02d692014-06-04 16:06:36 -07001339 static DEFINE_RATELIMIT_STATE(slab_oom_rs, DEFAULT_RATELIMIT_INTERVAL,
1340 DEFAULT_RATELIMIT_BURST);
1341
1342 if ((gfpflags & __GFP_NOWARN) || !__ratelimit(&slab_oom_rs))
1343 return;
Rafael Aquini8bdec192012-03-09 17:27:27 -03001344
Vlastimil Babka5b3810e2016-03-15 14:56:33 -07001345 pr_warn("SLAB: Unable to allocate memory on node %d, gfp=%#x(%pGg)\n",
1346 nodeid, gfpflags, &gfpflags);
1347 pr_warn(" cache: %s, object size: %d, order: %d\n",
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05001348 cachep->name, cachep->size, cachep->gfporder);
Rafael Aquini8bdec192012-03-09 17:27:27 -03001349
Christoph Lameter18bf8542014-08-06 16:04:11 -07001350 for_each_kmem_cache_node(cachep, node, n) {
Rafael Aquini8bdec192012-03-09 17:27:27 -03001351 unsigned long active_objs = 0, num_objs = 0, free_objects = 0;
1352 unsigned long active_slabs = 0, num_slabs = 0;
1353
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001354 spin_lock_irqsave(&n->list_lock, flags);
Joonsoo Kim8456a642013-10-24 10:07:49 +09001355 list_for_each_entry(page, &n->slabs_full, lru) {
Rafael Aquini8bdec192012-03-09 17:27:27 -03001356 active_objs += cachep->num;
1357 active_slabs++;
1358 }
Joonsoo Kim8456a642013-10-24 10:07:49 +09001359 list_for_each_entry(page, &n->slabs_partial, lru) {
1360 active_objs += page->active;
Rafael Aquini8bdec192012-03-09 17:27:27 -03001361 active_slabs++;
1362 }
Joonsoo Kim8456a642013-10-24 10:07:49 +09001363 list_for_each_entry(page, &n->slabs_free, lru)
Rafael Aquini8bdec192012-03-09 17:27:27 -03001364 num_slabs++;
1365
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001366 free_objects += n->free_objects;
1367 spin_unlock_irqrestore(&n->list_lock, flags);
Rafael Aquini8bdec192012-03-09 17:27:27 -03001368
1369 num_slabs += active_slabs;
1370 num_objs = num_slabs * cachep->num;
Vlastimil Babka5b3810e2016-03-15 14:56:33 -07001371 pr_warn(" node %d: slabs: %ld/%ld, objs: %ld/%ld, free: %ld\n",
Rafael Aquini8bdec192012-03-09 17:27:27 -03001372 node, active_slabs, num_slabs, active_objs, num_objs,
1373 free_objects);
1374 }
David Rientjes9a02d692014-06-04 16:06:36 -07001375#endif
Rafael Aquini8bdec192012-03-09 17:27:27 -03001376}
1377
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378/*
Wang Sheng-Hui8a7d9b42014-08-06 16:04:46 -07001379 * Interface to system's page allocator. No need to hold the
1380 * kmem_cache_node ->list_lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 *
1382 * If we requested dmaable memory, we will get it. Even if we
1383 * did not request dmaable memory, we might get it, but that
1384 * would be relatively rare and ignorable.
1385 */
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09001386static struct page *kmem_getpages(struct kmem_cache *cachep, gfp_t flags,
1387 int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388{
1389 struct page *page;
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001390 int nr_pages;
Christoph Lameter765c4502006-09-27 01:50:08 -07001391
Glauber Costaa618e892012-06-14 16:17:21 +04001392 flags |= cachep->allocflags;
Mel Gormane12ba742007-10-16 01:25:52 -07001393 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1394 flags |= __GFP_RECLAIMABLE;
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001395
Vlastimil Babka96db8002015-09-08 15:03:50 -07001396 page = __alloc_pages_node(nodeid, flags | __GFP_NOTRACK, cachep->gfporder);
Rafael Aquini8bdec192012-03-09 17:27:27 -03001397 if (!page) {
David Rientjes9a02d692014-06-04 16:06:36 -07001398 slab_out_of_memory(cachep, flags, nodeid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 return NULL;
Rafael Aquini8bdec192012-03-09 17:27:27 -03001400 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401
Vladimir Davydovf3ccb2c42015-11-05 18:49:01 -08001402 if (memcg_charge_slab(page, flags, cachep->gfporder, cachep)) {
1403 __free_pages(page, cachep->gfporder);
1404 return NULL;
1405 }
1406
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001407 nr_pages = (1 << cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
Christoph Lameter972d1a72006-09-25 23:31:51 -07001409 add_zone_page_state(page_zone(page),
1410 NR_SLAB_RECLAIMABLE, nr_pages);
1411 else
1412 add_zone_page_state(page_zone(page),
1413 NR_SLAB_UNRECLAIMABLE, nr_pages);
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07001414
Joonsoo Kima57a4982013-10-24 10:07:44 +09001415 __SetPageSlab(page);
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07001416 /* Record if ALLOC_NO_WATERMARKS was set when allocating the slab */
1417 if (sk_memalloc_socks() && page_is_pfmemalloc(page))
Joonsoo Kima57a4982013-10-24 10:07:44 +09001418 SetPageSlabPfmemalloc(page);
Mel Gorman072bb0a2012-07-31 16:43:58 -07001419
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001420 if (kmemcheck_enabled && !(cachep->flags & SLAB_NOTRACK)) {
1421 kmemcheck_alloc_shadow(page, cachep->gfporder, flags, nodeid);
1422
1423 if (cachep->ctor)
1424 kmemcheck_mark_uninitialized_pages(page, nr_pages);
1425 else
1426 kmemcheck_mark_unallocated_pages(page, nr_pages);
1427 }
Pekka Enbergc175eea2008-05-09 20:35:53 +02001428
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09001429 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430}
1431
1432/*
1433 * Interface to system's page release.
1434 */
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09001435static void kmem_freepages(struct kmem_cache *cachep, struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436{
Vladimir Davydov27ee57c2016-03-17 14:17:35 -07001437 int order = cachep->gfporder;
1438 unsigned long nr_freed = (1 << order);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439
Vladimir Davydov27ee57c2016-03-17 14:17:35 -07001440 kmemcheck_free_shadow(page, order);
Pekka Enbergc175eea2008-05-09 20:35:53 +02001441
Christoph Lameter972d1a72006-09-25 23:31:51 -07001442 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1443 sub_zone_page_state(page_zone(page),
1444 NR_SLAB_RECLAIMABLE, nr_freed);
1445 else
1446 sub_zone_page_state(page_zone(page),
1447 NR_SLAB_UNRECLAIMABLE, nr_freed);
Joonsoo Kim73293c22013-10-24 10:07:37 +09001448
Joonsoo Kima57a4982013-10-24 10:07:44 +09001449 BUG_ON(!PageSlab(page));
Joonsoo Kim73293c22013-10-24 10:07:37 +09001450 __ClearPageSlabPfmemalloc(page);
Joonsoo Kima57a4982013-10-24 10:07:44 +09001451 __ClearPageSlab(page);
Joonsoo Kim8456a642013-10-24 10:07:49 +09001452 page_mapcount_reset(page);
1453 page->mapping = NULL;
Glauber Costa1f458cb2012-12-18 14:22:50 -08001454
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455 if (current->reclaim_state)
1456 current->reclaim_state->reclaimed_slab += nr_freed;
Vladimir Davydov27ee57c2016-03-17 14:17:35 -07001457 memcg_uncharge_slab(page, order, cachep);
1458 __free_pages(page, order);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459}
1460
1461static void kmem_rcu_free(struct rcu_head *head)
1462{
Joonsoo Kim68126702013-10-24 10:07:42 +09001463 struct kmem_cache *cachep;
1464 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
Joonsoo Kim68126702013-10-24 10:07:42 +09001466 page = container_of(head, struct page, rcu_head);
1467 cachep = page->slab_cache;
1468
1469 kmem_freepages(cachep, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470}
1471
1472#if DEBUG
Joonsoo Kim40b44132016-03-15 14:54:21 -07001473static bool is_debug_pagealloc_cache(struct kmem_cache *cachep)
1474{
1475 if (debug_pagealloc_enabled() && OFF_SLAB(cachep) &&
1476 (cachep->size % PAGE_SIZE) == 0)
1477 return true;
1478
1479 return false;
1480}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481
1482#ifdef CONFIG_DEBUG_PAGEALLOC
Pekka Enberg343e0d72006-02-01 03:05:50 -08001483static void store_stackinfo(struct kmem_cache *cachep, unsigned long *addr,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001484 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485{
Christoph Lameter8c138bc2012-06-13 10:24:58 -05001486 int size = cachep->object_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001488 addr = (unsigned long *)&((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001490 if (size < 5 * sizeof(unsigned long))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 return;
1492
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001493 *addr++ = 0x12345678;
1494 *addr++ = caller;
1495 *addr++ = smp_processor_id();
1496 size -= 3 * sizeof(unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 {
1498 unsigned long *sptr = &caller;
1499 unsigned long svalue;
1500
1501 while (!kstack_end(sptr)) {
1502 svalue = *sptr++;
1503 if (kernel_text_address(svalue)) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001504 *addr++ = svalue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 size -= sizeof(unsigned long);
1506 if (size <= sizeof(unsigned long))
1507 break;
1508 }
1509 }
1510
1511 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001512 *addr++ = 0x87654321;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513}
Joonsoo Kim40b44132016-03-15 14:54:21 -07001514
1515static void slab_kernel_map(struct kmem_cache *cachep, void *objp,
1516 int map, unsigned long caller)
1517{
1518 if (!is_debug_pagealloc_cache(cachep))
1519 return;
1520
1521 if (caller)
1522 store_stackinfo(cachep, objp, caller);
1523
1524 kernel_map_pages(virt_to_page(objp), cachep->size / PAGE_SIZE, map);
1525}
1526
1527#else
1528static inline void slab_kernel_map(struct kmem_cache *cachep, void *objp,
1529 int map, unsigned long caller) {}
1530
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531#endif
1532
Pekka Enberg343e0d72006-02-01 03:05:50 -08001533static void poison_obj(struct kmem_cache *cachep, void *addr, unsigned char val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534{
Christoph Lameter8c138bc2012-06-13 10:24:58 -05001535 int size = cachep->object_size;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001536 addr = &((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537
1538 memset(addr, val, size);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001539 *(unsigned char *)(addr + size - 1) = POISON_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540}
1541
1542static void dump_line(char *data, int offset, int limit)
1543{
1544 int i;
Dave Jonesaa83aa42006-09-29 01:59:51 -07001545 unsigned char error = 0;
1546 int bad_count = 0;
1547
Joe Perches11705322016-03-17 14:19:50 -07001548 pr_err("%03x: ", offset);
Dave Jonesaa83aa42006-09-29 01:59:51 -07001549 for (i = 0; i < limit; i++) {
1550 if (data[offset + i] != POISON_FREE) {
1551 error = data[offset + i];
1552 bad_count++;
1553 }
Dave Jonesaa83aa42006-09-29 01:59:51 -07001554 }
Sebastian Andrzej Siewiorfdde6ab2011-07-29 18:22:13 +02001555 print_hex_dump(KERN_CONT, "", 0, 16, 1,
1556 &data[offset], limit, 1);
Dave Jonesaa83aa42006-09-29 01:59:51 -07001557
1558 if (bad_count == 1) {
1559 error ^= POISON_FREE;
1560 if (!(error & (error - 1))) {
Joe Perches11705322016-03-17 14:19:50 -07001561 pr_err("Single bit error detected. Probably bad RAM.\n");
Dave Jonesaa83aa42006-09-29 01:59:51 -07001562#ifdef CONFIG_X86
Joe Perches11705322016-03-17 14:19:50 -07001563 pr_err("Run memtest86+ or a similar memory test tool.\n");
Dave Jonesaa83aa42006-09-29 01:59:51 -07001564#else
Joe Perches11705322016-03-17 14:19:50 -07001565 pr_err("Run a memory test tool.\n");
Dave Jonesaa83aa42006-09-29 01:59:51 -07001566#endif
1567 }
1568 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569}
1570#endif
1571
1572#if DEBUG
1573
Pekka Enberg343e0d72006-02-01 03:05:50 -08001574static void print_objinfo(struct kmem_cache *cachep, void *objp, int lines)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575{
1576 int i, size;
1577 char *realobj;
1578
1579 if (cachep->flags & SLAB_RED_ZONE) {
Joe Perches11705322016-03-17 14:19:50 -07001580 pr_err("Redzone: 0x%llx/0x%llx\n",
1581 *dbg_redzone1(cachep, objp),
1582 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 }
1584
1585 if (cachep->flags & SLAB_STORE_USER) {
Joe Perches11705322016-03-17 14:19:50 -07001586 pr_err("Last user: [<%p>](%pSR)\n",
Joe Perches071361d2012-12-12 10:19:12 -08001587 *dbg_userword(cachep, objp),
1588 *dbg_userword(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589 }
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001590 realobj = (char *)objp + obj_offset(cachep);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05001591 size = cachep->object_size;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001592 for (i = 0; i < size && lines; i += 16, lines--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593 int limit;
1594 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001595 if (i + limit > size)
1596 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 dump_line(realobj, i, limit);
1598 }
1599}
1600
Pekka Enberg343e0d72006-02-01 03:05:50 -08001601static void check_poison_obj(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602{
1603 char *realobj;
1604 int size, i;
1605 int lines = 0;
1606
Joonsoo Kim40b44132016-03-15 14:54:21 -07001607 if (is_debug_pagealloc_cache(cachep))
1608 return;
1609
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001610 realobj = (char *)objp + obj_offset(cachep);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05001611 size = cachep->object_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001613 for (i = 0; i < size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 char exp = POISON_FREE;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001615 if (i == size - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 exp = POISON_END;
1617 if (realobj[i] != exp) {
1618 int limit;
1619 /* Mismatch ! */
1620 /* Print header */
1621 if (lines == 0) {
Joe Perches11705322016-03-17 14:19:50 -07001622 pr_err("Slab corruption (%s): %s start=%p, len=%d\n",
1623 print_tainted(), cachep->name,
1624 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 print_objinfo(cachep, objp, 0);
1626 }
1627 /* Hexdump the affected line */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001628 i = (i / 16) * 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001630 if (i + limit > size)
1631 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 dump_line(realobj, i, limit);
1633 i += 16;
1634 lines++;
1635 /* Limit to 5 lines */
1636 if (lines > 5)
1637 break;
1638 }
1639 }
1640 if (lines != 0) {
1641 /* Print some data about the neighboring objects, if they
1642 * exist:
1643 */
Joonsoo Kim8456a642013-10-24 10:07:49 +09001644 struct page *page = virt_to_head_page(objp);
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001645 unsigned int objnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646
Joonsoo Kim8456a642013-10-24 10:07:49 +09001647 objnr = obj_to_index(cachep, page, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 if (objnr) {
Joonsoo Kim8456a642013-10-24 10:07:49 +09001649 objp = index_to_obj(cachep, page, objnr - 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001650 realobj = (char *)objp + obj_offset(cachep);
Joe Perches11705322016-03-17 14:19:50 -07001651 pr_err("Prev obj: start=%p, len=%d\n", realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 print_objinfo(cachep, objp, 2);
1653 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001654 if (objnr + 1 < cachep->num) {
Joonsoo Kim8456a642013-10-24 10:07:49 +09001655 objp = index_to_obj(cachep, page, objnr + 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001656 realobj = (char *)objp + obj_offset(cachep);
Joe Perches11705322016-03-17 14:19:50 -07001657 pr_err("Next obj: start=%p, len=%d\n", realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658 print_objinfo(cachep, objp, 2);
1659 }
1660 }
1661}
1662#endif
1663
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664#if DEBUG
Joonsoo Kim8456a642013-10-24 10:07:49 +09001665static void slab_destroy_debugcheck(struct kmem_cache *cachep,
1666 struct page *page)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001667{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 int i;
Joonsoo Kimb03a017b2016-03-15 14:54:50 -07001669
1670 if (OBJFREELIST_SLAB(cachep) && cachep->flags & SLAB_POISON) {
1671 poison_obj(cachep, page->freelist - obj_offset(cachep),
1672 POISON_FREE);
1673 }
1674
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 for (i = 0; i < cachep->num; i++) {
Joonsoo Kim8456a642013-10-24 10:07:49 +09001676 void *objp = index_to_obj(cachep, page, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677
1678 if (cachep->flags & SLAB_POISON) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679 check_poison_obj(cachep, objp);
Joonsoo Kim40b44132016-03-15 14:54:21 -07001680 slab_kernel_map(cachep, objp, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 }
1682 if (cachep->flags & SLAB_RED_ZONE) {
1683 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
Joe Perches756a0252016-03-17 14:19:47 -07001684 slab_error(cachep, "start of a freed object was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
Joe Perches756a0252016-03-17 14:19:47 -07001686 slab_error(cachep, "end of a freed object was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 }
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001689}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690#else
Joonsoo Kim8456a642013-10-24 10:07:49 +09001691static void slab_destroy_debugcheck(struct kmem_cache *cachep,
1692 struct page *page)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001693{
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001694}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695#endif
1696
Randy Dunlap911851e2006-03-22 00:08:14 -08001697/**
1698 * slab_destroy - destroy and release all objects in a slab
1699 * @cachep: cache pointer being destroyed
Masanari Iidacb8ee1a2014-01-28 02:57:08 +09001700 * @page: page pointer being destroyed
Randy Dunlap911851e2006-03-22 00:08:14 -08001701 *
Wang Sheng-Hui8a7d9b42014-08-06 16:04:46 -07001702 * Destroy all the objs in a slab page, and release the mem back to the system.
1703 * Before calling the slab page must have been unlinked from the cache. The
1704 * kmem_cache_node ->list_lock is not held/needed.
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001705 */
Joonsoo Kim8456a642013-10-24 10:07:49 +09001706static void slab_destroy(struct kmem_cache *cachep, struct page *page)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001707{
Joonsoo Kim7e007352013-10-30 19:04:01 +09001708 void *freelist;
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001709
Joonsoo Kim8456a642013-10-24 10:07:49 +09001710 freelist = page->freelist;
1711 slab_destroy_debugcheck(cachep, page);
Kirill A. Shutemovbc4f6102015-11-06 16:29:44 -08001712 if (unlikely(cachep->flags & SLAB_DESTROY_BY_RCU))
1713 call_rcu(&page->rcu_head, kmem_rcu_free);
1714 else
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09001715 kmem_freepages(cachep, page);
Joonsoo Kim68126702013-10-24 10:07:42 +09001716
1717 /*
Joonsoo Kim8456a642013-10-24 10:07:49 +09001718 * From now on, we don't use freelist
Joonsoo Kim68126702013-10-24 10:07:42 +09001719 * although actual page can be freed in rcu context
1720 */
1721 if (OFF_SLAB(cachep))
Joonsoo Kim8456a642013-10-24 10:07:49 +09001722 kmem_cache_free(cachep->freelist_cache, freelist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723}
1724
Joonsoo Kim97654df2014-08-06 16:04:25 -07001725static void slabs_destroy(struct kmem_cache *cachep, struct list_head *list)
1726{
1727 struct page *page, *n;
1728
1729 list_for_each_entry_safe(page, n, list, lru) {
1730 list_del(&page->lru);
1731 slab_destroy(cachep, page);
1732 }
1733}
1734
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735/**
Randy.Dunlapa70773d2006-02-01 03:05:52 -08001736 * calculate_slab_order - calculate size (page order) of slabs
1737 * @cachep: pointer to the cache that is being created
1738 * @size: size of objects to be created in this cache.
Randy.Dunlapa70773d2006-02-01 03:05:52 -08001739 * @flags: slab allocation flags
1740 *
1741 * Also calculates the number of objects per slab.
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001742 *
1743 * This could be made much more intelligent. For now, try to avoid using
1744 * high order pages for slabs. When the gfp() functions are more friendly
1745 * towards high-order requests, this should be changed.
1746 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08001747static size_t calculate_slab_order(struct kmem_cache *cachep,
Joonsoo Kim2e6b3602016-03-15 14:54:30 -07001748 size_t size, unsigned long flags)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001749{
1750 size_t left_over = 0;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001751 int gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001752
Christoph Lameter0aa817f2007-05-16 22:11:01 -07001753 for (gfporder = 0; gfporder <= KMALLOC_MAX_ORDER; gfporder++) {
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001754 unsigned int num;
1755 size_t remainder;
1756
Joonsoo Kim70f75062016-03-15 14:54:53 -07001757 num = cache_estimate(gfporder, size, flags, &remainder);
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001758 if (!num)
1759 continue;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001760
Joonsoo Kimf315e3f2013-12-02 17:49:41 +09001761 /* Can't handle number of objects more than SLAB_OBJ_MAX_NUM */
1762 if (num > SLAB_OBJ_MAX_NUM)
1763 break;
1764
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02001765 if (flags & CFLGS_OFF_SLAB) {
Joonsoo Kim3217fd92016-03-15 14:54:41 -07001766 struct kmem_cache *freelist_cache;
1767 size_t freelist_size;
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02001768
Joonsoo Kim3217fd92016-03-15 14:54:41 -07001769 freelist_size = num * sizeof(freelist_idx_t);
1770 freelist_cache = kmalloc_slab(freelist_size, 0u);
1771 if (!freelist_cache)
1772 continue;
1773
1774 /*
1775 * Needed to avoid possible looping condition
1776 * in cache_grow()
1777 */
1778 if (OFF_SLAB(freelist_cache))
1779 continue;
1780
1781 /* check if off slab has enough benefit */
1782 if (freelist_cache->size > cachep->size / 2)
1783 continue;
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02001784 }
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001785
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001786 /* Found something acceptable - save it away */
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001787 cachep->num = num;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001788 cachep->gfporder = gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001789 left_over = remainder;
1790
1791 /*
Linus Torvaldsf78bb8a2006-03-08 10:33:05 -08001792 * A VFS-reclaimable slab tends to have most allocations
1793 * as GFP_NOFS and we really don't want to have to be allocating
1794 * higher-order pages when we are unable to shrink dcache.
1795 */
1796 if (flags & SLAB_RECLAIM_ACCOUNT)
1797 break;
1798
1799 /*
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001800 * Large number of objects is good, but very large slabs are
1801 * currently bad for the gfp()s.
1802 */
David Rientjes543585c2011-10-18 22:09:24 -07001803 if (gfporder >= slab_max_order)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001804 break;
1805
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001806 /*
1807 * Acceptable internal fragmentation?
1808 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08001809 if (left_over * 8 <= (PAGE_SIZE << gfporder))
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001810 break;
1811 }
1812 return left_over;
1813}
1814
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07001815static struct array_cache __percpu *alloc_kmem_cache_cpus(
1816 struct kmem_cache *cachep, int entries, int batchcount)
1817{
1818 int cpu;
1819 size_t size;
1820 struct array_cache __percpu *cpu_cache;
1821
1822 size = sizeof(void *) * entries + sizeof(struct array_cache);
Joonsoo Kim85c9f4b2014-10-13 15:51:01 -07001823 cpu_cache = __alloc_percpu(size, sizeof(void *));
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07001824
1825 if (!cpu_cache)
1826 return NULL;
1827
1828 for_each_possible_cpu(cpu) {
1829 init_arraycache(per_cpu_ptr(cpu_cache, cpu),
1830 entries, batchcount);
1831 }
1832
1833 return cpu_cache;
1834}
1835
Pekka Enberg83b519e2009-06-10 19:40:04 +03001836static int __init_refok setup_cpu_cache(struct kmem_cache *cachep, gfp_t gfp)
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08001837{
Christoph Lameter97d06602012-07-06 15:25:11 -05001838 if (slab_state >= FULL)
Pekka Enberg83b519e2009-06-10 19:40:04 +03001839 return enable_cpucache(cachep, gfp);
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07001840
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07001841 cachep->cpu_cache = alloc_kmem_cache_cpus(cachep, 1, 1);
1842 if (!cachep->cpu_cache)
1843 return 1;
1844
Christoph Lameter97d06602012-07-06 15:25:11 -05001845 if (slab_state == DOWN) {
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07001846 /* Creation of first cache (kmem_cache). */
1847 set_up_node(kmem_cache, CACHE_CACHE);
Christoph Lameter2f9baa92012-11-28 16:23:09 +00001848 } else if (slab_state == PARTIAL) {
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07001849 /* For kmem_cache_node */
1850 set_up_node(cachep, SIZE_NODE);
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08001851 } else {
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07001852 int node;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08001853
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07001854 for_each_online_node(node) {
1855 cachep->node[node] = kmalloc_node(
1856 sizeof(struct kmem_cache_node), gfp, node);
1857 BUG_ON(!cachep->node[node]);
1858 kmem_cache_node_init(cachep->node[node]);
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08001859 }
1860 }
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07001861
Christoph Lameter6a673682013-01-10 19:14:19 +00001862 cachep->node[numa_mem_id()]->next_reap =
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08001863 jiffies + REAPTIMEOUT_NODE +
1864 ((unsigned long)cachep) % REAPTIMEOUT_NODE;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08001865
1866 cpu_cache_get(cachep)->avail = 0;
1867 cpu_cache_get(cachep)->limit = BOOT_CPUCACHE_ENTRIES;
1868 cpu_cache_get(cachep)->batchcount = 1;
1869 cpu_cache_get(cachep)->touched = 0;
1870 cachep->batchcount = 1;
1871 cachep->limit = BOOT_CPUCACHE_ENTRIES;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07001872 return 0;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08001873}
1874
Joonsoo Kim12220de2014-10-09 15:26:24 -07001875unsigned long kmem_cache_flags(unsigned long object_size,
1876 unsigned long flags, const char *name,
1877 void (*ctor)(void *))
1878{
1879 return flags;
1880}
1881
1882struct kmem_cache *
1883__kmem_cache_alias(const char *name, size_t size, size_t align,
1884 unsigned long flags, void (*ctor)(void *))
1885{
1886 struct kmem_cache *cachep;
1887
1888 cachep = find_mergeable(size, align, flags, name, ctor);
1889 if (cachep) {
1890 cachep->refcount++;
1891
1892 /*
1893 * Adjust the object sizes so that we clear
1894 * the complete object on kzalloc.
1895 */
1896 cachep->object_size = max_t(int, cachep->object_size, size);
1897 }
1898 return cachep;
1899}
1900
Joonsoo Kimb03a017b2016-03-15 14:54:50 -07001901static bool set_objfreelist_slab_cache(struct kmem_cache *cachep,
1902 size_t size, unsigned long flags)
1903{
1904 size_t left;
1905
1906 cachep->num = 0;
1907
1908 if (cachep->ctor || flags & SLAB_DESTROY_BY_RCU)
1909 return false;
1910
1911 left = calculate_slab_order(cachep, size,
1912 flags | CFLGS_OBJFREELIST_SLAB);
1913 if (!cachep->num)
1914 return false;
1915
1916 if (cachep->num * sizeof(freelist_idx_t) > cachep->object_size)
1917 return false;
1918
1919 cachep->colour = left / cachep->colour_off;
1920
1921 return true;
1922}
1923
Joonsoo Kim158e3192016-03-15 14:54:35 -07001924static bool set_off_slab_cache(struct kmem_cache *cachep,
1925 size_t size, unsigned long flags)
1926{
1927 size_t left;
1928
1929 cachep->num = 0;
1930
1931 /*
Joonsoo Kim3217fd92016-03-15 14:54:41 -07001932 * Always use on-slab management when SLAB_NOLEAKTRACE
1933 * to avoid recursive calls into kmemleak.
Joonsoo Kim158e3192016-03-15 14:54:35 -07001934 */
Joonsoo Kim158e3192016-03-15 14:54:35 -07001935 if (flags & SLAB_NOLEAKTRACE)
1936 return false;
1937
1938 /*
1939 * Size is large, assume best to place the slab management obj
1940 * off-slab (should allow better packing of objs).
1941 */
1942 left = calculate_slab_order(cachep, size, flags | CFLGS_OFF_SLAB);
1943 if (!cachep->num)
1944 return false;
1945
1946 /*
1947 * If the slab has been placed off-slab, and we have enough space then
1948 * move it on-slab. This is at the expense of any extra colouring.
1949 */
1950 if (left >= cachep->num * sizeof(freelist_idx_t))
1951 return false;
1952
1953 cachep->colour = left / cachep->colour_off;
1954
1955 return true;
1956}
1957
1958static bool set_on_slab_cache(struct kmem_cache *cachep,
1959 size_t size, unsigned long flags)
1960{
1961 size_t left;
1962
1963 cachep->num = 0;
1964
1965 left = calculate_slab_order(cachep, size, flags);
1966 if (!cachep->num)
1967 return false;
1968
1969 cachep->colour = left / cachep->colour_off;
1970
1971 return true;
1972}
1973
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001974/**
Christoph Lameter039363f2012-07-06 15:25:10 -05001975 * __kmem_cache_create - Create a cache.
Randy Dunlapa755b762012-11-06 17:10:10 -08001976 * @cachep: cache management descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 * @flags: SLAB flags
Linus Torvalds1da177e2005-04-16 15:20:36 -07001978 *
1979 * Returns a ptr to the cache on success, NULL on failure.
1980 * Cannot be called within a int, but can be interrupted.
Paul Mundt20c2df82007-07-20 10:11:58 +09001981 * The @ctor is run when new pages are allocated by the cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 * The flags are
1984 *
1985 * %SLAB_POISON - Poison the slab with a known test pattern (a5a5a5a5)
1986 * to catch references to uninitialised memory.
1987 *
1988 * %SLAB_RED_ZONE - Insert `Red' zones around the allocated memory to check
1989 * for buffer overruns.
1990 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 * %SLAB_HWCACHE_ALIGN - Align the objects in this cache to a hardware
1992 * cacheline. This can be beneficial if you're counting cycles as closely
1993 * as davem.
1994 */
Christoph Lameter278b1bb2012-09-05 00:20:34 +00001995int
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00001996__kmem_cache_create (struct kmem_cache *cachep, unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997{
David Rientjesd4a5fca2014-09-25 16:05:20 -07001998 size_t ralign = BYTES_PER_WORD;
Pekka Enberg83b519e2009-06-10 19:40:04 +03001999 gfp_t gfp;
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002000 int err;
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002001 size_t size = cachep->size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002002
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003#if DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07002004#if FORCED_DEBUG
2005 /*
2006 * Enable redzoning and last user accounting, except for caches with
2007 * large objects, if the increased size would increase the object size
2008 * above the next power of two: caches with object sizes just above a
2009 * power of two have a significant amount of internal fragmentation.
2010 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002011 if (size < 4096 || fls(size - 1) == fls(size-1 + REDZONE_ALIGN +
2012 2 * sizeof(unsigned long long)))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002013 flags |= SLAB_RED_ZONE | SLAB_STORE_USER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 if (!(flags & SLAB_DESTROY_BY_RCU))
2015 flags |= SLAB_POISON;
2016#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018
Andrew Mortona737b3e2006-03-22 00:08:11 -08002019 /*
2020 * Check that size is in terms of words. This is needed to avoid
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 * unaligned accesses for some archs when redzoning is used, and makes
2022 * sure any on-slab bufctl's are also correctly aligned.
2023 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002024 if (size & (BYTES_PER_WORD - 1)) {
2025 size += (BYTES_PER_WORD - 1);
2026 size &= ~(BYTES_PER_WORD - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 }
2028
David Woodhouse87a927c2007-07-04 21:26:44 -04002029 if (flags & SLAB_RED_ZONE) {
2030 ralign = REDZONE_ALIGN;
2031 /* If redzoning, ensure that the second redzone is suitably
2032 * aligned, by adjusting the object size accordingly. */
2033 size += REDZONE_ALIGN - 1;
2034 size &= ~(REDZONE_ALIGN - 1);
2035 }
Pekka Enbergca5f9702006-09-25 23:31:25 -07002036
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002037 /* 3) caller mandated alignment */
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002038 if (ralign < cachep->align) {
2039 ralign = cachep->align;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 }
Pekka Enberg3ff84a72011-02-14 17:46:21 +02002041 /* disable debug if necessary */
2042 if (ralign > __alignof__(unsigned long long))
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002043 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002044 /*
Pekka Enbergca5f9702006-09-25 23:31:25 -07002045 * 4) Store it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 */
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002047 cachep->align = ralign;
Joonsoo Kim158e3192016-03-15 14:54:35 -07002048 cachep->colour_off = cache_line_size();
2049 /* Offset must be a multiple of the alignment. */
2050 if (cachep->colour_off < cachep->align)
2051 cachep->colour_off = cachep->align;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052
Pekka Enberg83b519e2009-06-10 19:40:04 +03002053 if (slab_is_available())
2054 gfp = GFP_KERNEL;
2055 else
2056 gfp = GFP_NOWAIT;
2057
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058#if DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059
Pekka Enbergca5f9702006-09-25 23:31:25 -07002060 /*
2061 * Both debugging options require word-alignment which is calculated
2062 * into align above.
2063 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064 if (flags & SLAB_RED_ZONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 /* add space for red zone words */
Pekka Enberg3ff84a72011-02-14 17:46:21 +02002066 cachep->obj_offset += sizeof(unsigned long long);
2067 size += 2 * sizeof(unsigned long long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 }
2069 if (flags & SLAB_STORE_USER) {
Pekka Enbergca5f9702006-09-25 23:31:25 -07002070 /* user store requires one word storage behind the end of
David Woodhouse87a927c2007-07-04 21:26:44 -04002071 * the real object. But if the second red zone needs to be
2072 * aligned to 64 bits, we must allow that much space.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002074 if (flags & SLAB_RED_ZONE)
2075 size += REDZONE_ALIGN;
2076 else
2077 size += BYTES_PER_WORD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 }
Joonsoo Kim832a15d2016-03-15 14:54:33 -07002079#endif
2080
Alexander Potapenko7ed2f9e2016-03-25 14:21:59 -07002081 kasan_cache_create(cachep, &size, &flags);
2082
Joonsoo Kim832a15d2016-03-15 14:54:33 -07002083 size = ALIGN(size, cachep->align);
2084 /*
2085 * We should restrict the number of objects in a slab to implement
2086 * byte sized index. Refer comment on SLAB_OBJ_MIN_SIZE definition.
2087 */
2088 if (FREELIST_BYTE_INDEX && size < SLAB_OBJ_MIN_SIZE)
2089 size = ALIGN(SLAB_OBJ_MIN_SIZE, cachep->align);
2090
2091#if DEBUG
Joonsoo Kim03a2d2a2015-10-01 15:36:54 -07002092 /*
2093 * To activate debug pagealloc, off-slab management is necessary
2094 * requirement. In early phase of initialization, small sized slab
2095 * doesn't get initialized so it would not be possible. So, we need
2096 * to check size >= 256. It guarantees that all necessary small
2097 * sized slab is initialized in current slab initialization sequence.
2098 */
Joonsoo Kim40323272016-03-15 14:54:18 -07002099 if (debug_pagealloc_enabled() && (flags & SLAB_POISON) &&
Joonsoo Kimf3a3c322016-03-15 14:54:38 -07002100 size >= 256 && cachep->object_size > cache_line_size()) {
2101 if (size < PAGE_SIZE || size % PAGE_SIZE == 0) {
2102 size_t tmp_size = ALIGN(size, PAGE_SIZE);
2103
2104 if (set_off_slab_cache(cachep, tmp_size, flags)) {
2105 flags |= CFLGS_OFF_SLAB;
2106 cachep->obj_offset += tmp_size - size;
2107 size = tmp_size;
2108 goto done;
2109 }
2110 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002111 }
2112#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113
Joonsoo Kimb03a017b2016-03-15 14:54:50 -07002114 if (set_objfreelist_slab_cache(cachep, size, flags)) {
2115 flags |= CFLGS_OBJFREELIST_SLAB;
2116 goto done;
2117 }
2118
Joonsoo Kim158e3192016-03-15 14:54:35 -07002119 if (set_off_slab_cache(cachep, size, flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 flags |= CFLGS_OFF_SLAB;
Joonsoo Kim158e3192016-03-15 14:54:35 -07002121 goto done;
Joonsoo Kim832a15d2016-03-15 14:54:33 -07002122 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002123
Joonsoo Kim158e3192016-03-15 14:54:35 -07002124 if (set_on_slab_cache(cachep, size, flags))
2125 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126
Joonsoo Kim158e3192016-03-15 14:54:35 -07002127 return -E2BIG;
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002128
Joonsoo Kim158e3192016-03-15 14:54:35 -07002129done:
2130 cachep->freelist_size = cachep->num * sizeof(freelist_idx_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 cachep->flags = flags;
Joonsoo Kima57a4982013-10-24 10:07:44 +09002132 cachep->allocflags = __GFP_COMP;
Christoph Lameter4b51d662007-02-10 01:43:10 -08002133 if (CONFIG_ZONE_DMA_FLAG && (flags & SLAB_CACHE_DMA))
Glauber Costaa618e892012-06-14 16:17:21 +04002134 cachep->allocflags |= GFP_DMA;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002135 cachep->size = size;
Eric Dumazet6a2d7a92006-12-13 00:34:27 -08002136 cachep->reciprocal_buffer_size = reciprocal_value(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137
Joonsoo Kim40b44132016-03-15 14:54:21 -07002138#if DEBUG
2139 /*
2140 * If we're going to use the generic kernel_map_pages()
2141 * poisoning, then it's going to smash the contents of
2142 * the redzone and userword anyhow, so switch them off.
2143 */
2144 if (IS_ENABLED(CONFIG_PAGE_POISONING) &&
2145 (cachep->flags & SLAB_POISON) &&
2146 is_debug_pagealloc_cache(cachep))
2147 cachep->flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
2148#endif
2149
2150 if (OFF_SLAB(cachep)) {
Joonsoo Kim158e3192016-03-15 14:54:35 -07002151 cachep->freelist_cache =
2152 kmalloc_slab(cachep->freelist_size, 0u);
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002153 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002155 err = setup_cpu_cache(cachep, gfp);
2156 if (err) {
Dmitry Safonov52b4b952016-02-17 13:11:37 -08002157 __kmem_cache_release(cachep);
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002158 return err;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002159 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002161 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002163
2164#if DEBUG
2165static void check_irq_off(void)
2166{
2167 BUG_ON(!irqs_disabled());
2168}
2169
2170static void check_irq_on(void)
2171{
2172 BUG_ON(irqs_disabled());
2173}
2174
Joonsoo Kim18726ca2016-05-19 17:10:02 -07002175static void check_mutex_acquired(void)
2176{
2177 BUG_ON(!mutex_is_locked(&slab_mutex));
2178}
2179
Pekka Enberg343e0d72006-02-01 03:05:50 -08002180static void check_spinlock_acquired(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181{
2182#ifdef CONFIG_SMP
2183 check_irq_off();
Christoph Lameter18bf8542014-08-06 16:04:11 -07002184 assert_spin_locked(&get_node(cachep, numa_mem_id())->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185#endif
2186}
Christoph Lametere498be72005-09-09 13:03:32 -07002187
Pekka Enberg343e0d72006-02-01 03:05:50 -08002188static void check_spinlock_acquired_node(struct kmem_cache *cachep, int node)
Christoph Lametere498be72005-09-09 13:03:32 -07002189{
2190#ifdef CONFIG_SMP
2191 check_irq_off();
Christoph Lameter18bf8542014-08-06 16:04:11 -07002192 assert_spin_locked(&get_node(cachep, node)->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07002193#endif
2194}
2195
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196#else
2197#define check_irq_off() do { } while(0)
2198#define check_irq_on() do { } while(0)
Joonsoo Kim18726ca2016-05-19 17:10:02 -07002199#define check_mutex_acquired() do { } while(0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200#define check_spinlock_acquired(x) do { } while(0)
Christoph Lametere498be72005-09-09 13:03:32 -07002201#define check_spinlock_acquired_node(x, y) do { } while(0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002202#endif
2203
Joonsoo Kim18726ca2016-05-19 17:10:02 -07002204static void drain_array_locked(struct kmem_cache *cachep, struct array_cache *ac,
2205 int node, bool free_all, struct list_head *list)
2206{
2207 int tofree;
2208
2209 if (!ac || !ac->avail)
2210 return;
2211
2212 tofree = free_all ? ac->avail : (ac->limit + 4) / 5;
2213 if (tofree > ac->avail)
2214 tofree = (ac->avail + 1) / 2;
2215
2216 free_block(cachep, ac->entry, tofree, node, list);
2217 ac->avail -= tofree;
2218 memmove(ac->entry, &(ac->entry[tofree]), sizeof(void *) * ac->avail);
2219}
Christoph Lameteraab22072006-03-22 00:09:06 -08002220
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221static void do_drain(void *arg)
2222{
Andrew Mortona737b3e2006-03-22 00:08:11 -08002223 struct kmem_cache *cachep = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 struct array_cache *ac;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07002225 int node = numa_mem_id();
Christoph Lameter18bf8542014-08-06 16:04:11 -07002226 struct kmem_cache_node *n;
Joonsoo Kim97654df2014-08-06 16:04:25 -07002227 LIST_HEAD(list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228
2229 check_irq_off();
Pekka Enberg9a2dba4b2006-02-01 03:05:49 -08002230 ac = cpu_cache_get(cachep);
Christoph Lameter18bf8542014-08-06 16:04:11 -07002231 n = get_node(cachep, node);
2232 spin_lock(&n->list_lock);
Joonsoo Kim97654df2014-08-06 16:04:25 -07002233 free_block(cachep, ac->entry, ac->avail, node, &list);
Christoph Lameter18bf8542014-08-06 16:04:11 -07002234 spin_unlock(&n->list_lock);
Joonsoo Kim97654df2014-08-06 16:04:25 -07002235 slabs_destroy(cachep, &list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 ac->avail = 0;
2237}
2238
Pekka Enberg343e0d72006-02-01 03:05:50 -08002239static void drain_cpu_caches(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240{
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002241 struct kmem_cache_node *n;
Christoph Lametere498be72005-09-09 13:03:32 -07002242 int node;
Joonsoo Kim18726ca2016-05-19 17:10:02 -07002243 LIST_HEAD(list);
Christoph Lametere498be72005-09-09 13:03:32 -07002244
Jens Axboe15c8b6c2008-05-09 09:39:44 +02002245 on_each_cpu(do_drain, cachep, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002246 check_irq_on();
Christoph Lameter18bf8542014-08-06 16:04:11 -07002247 for_each_kmem_cache_node(cachep, node, n)
2248 if (n->alien)
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002249 drain_alien_cache(cachep, n->alien);
Roland Dreiera4523a82006-05-15 11:41:00 -07002250
Joonsoo Kim18726ca2016-05-19 17:10:02 -07002251 for_each_kmem_cache_node(cachep, node, n) {
2252 spin_lock_irq(&n->list_lock);
2253 drain_array_locked(cachep, n->shared, node, true, &list);
2254 spin_unlock_irq(&n->list_lock);
2255
2256 slabs_destroy(cachep, &list);
2257 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258}
2259
Christoph Lametered11d9e2006-06-30 01:55:45 -07002260/*
2261 * Remove slabs from the list of free slabs.
2262 * Specify the number of slabs to drain in tofree.
2263 *
2264 * Returns the actual number of slabs released.
2265 */
2266static int drain_freelist(struct kmem_cache *cache,
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002267 struct kmem_cache_node *n, int tofree)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002268{
Christoph Lametered11d9e2006-06-30 01:55:45 -07002269 struct list_head *p;
2270 int nr_freed;
Joonsoo Kim8456a642013-10-24 10:07:49 +09002271 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272
Christoph Lametered11d9e2006-06-30 01:55:45 -07002273 nr_freed = 0;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002274 while (nr_freed < tofree && !list_empty(&n->slabs_free)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002276 spin_lock_irq(&n->list_lock);
2277 p = n->slabs_free.prev;
2278 if (p == &n->slabs_free) {
2279 spin_unlock_irq(&n->list_lock);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002280 goto out;
2281 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282
Joonsoo Kim8456a642013-10-24 10:07:49 +09002283 page = list_entry(p, struct page, lru);
Joonsoo Kim8456a642013-10-24 10:07:49 +09002284 list_del(&page->lru);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002285 /*
2286 * Safe to drop the lock. The slab is no longer linked
2287 * to the cache.
2288 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002289 n->free_objects -= cache->num;
2290 spin_unlock_irq(&n->list_lock);
Joonsoo Kim8456a642013-10-24 10:07:49 +09002291 slab_destroy(cache, page);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002292 nr_freed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293 }
Christoph Lametered11d9e2006-06-30 01:55:45 -07002294out:
2295 return nr_freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296}
2297
Vladimir Davydovd6e0b7f2015-02-12 14:59:47 -08002298int __kmem_cache_shrink(struct kmem_cache *cachep, bool deactivate)
Christoph Lametere498be72005-09-09 13:03:32 -07002299{
Christoph Lameter18bf8542014-08-06 16:04:11 -07002300 int ret = 0;
2301 int node;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002302 struct kmem_cache_node *n;
Christoph Lametere498be72005-09-09 13:03:32 -07002303
2304 drain_cpu_caches(cachep);
2305
2306 check_irq_on();
Christoph Lameter18bf8542014-08-06 16:04:11 -07002307 for_each_kmem_cache_node(cachep, node, n) {
Joonsoo Kima5aa63a2016-05-19 17:10:08 -07002308 drain_freelist(cachep, n, INT_MAX);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002309
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002310 ret += !list_empty(&n->slabs_full) ||
2311 !list_empty(&n->slabs_partial);
Christoph Lametere498be72005-09-09 13:03:32 -07002312 }
2313 return (ret ? 1 : 0);
2314}
2315
Christoph Lameter945cf2b2012-09-04 23:18:33 +00002316int __kmem_cache_shutdown(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317{
Dmitry Safonov52b4b952016-02-17 13:11:37 -08002318 return __kmem_cache_shrink(cachep, false);
2319}
2320
2321void __kmem_cache_release(struct kmem_cache *cachep)
2322{
Christoph Lameter12c36672012-09-04 23:38:33 +00002323 int i;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002324 struct kmem_cache_node *n;
Christoph Lameter12c36672012-09-04 23:38:33 +00002325
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07002326 free_percpu(cachep->cpu_cache);
Christoph Lameter12c36672012-09-04 23:38:33 +00002327
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002328 /* NUMA: free the node structures */
Christoph Lameter18bf8542014-08-06 16:04:11 -07002329 for_each_kmem_cache_node(cachep, i, n) {
2330 kfree(n->shared);
2331 free_alien_cache(n->alien);
2332 kfree(n);
2333 cachep->node[i] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002336
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002337/*
2338 * Get the memory for a slab management obj.
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08002339 *
2340 * For a slab cache when the slab descriptor is off-slab, the
2341 * slab descriptor can't come from the same cache which is being created,
2342 * Because if it is the case, that means we defer the creation of
2343 * the kmalloc_{dma,}_cache of size sizeof(slab descriptor) to this point.
2344 * And we eventually call down to __kmem_cache_create(), which
2345 * in turn looks up in the kmalloc_{dma,}_caches for the disired-size one.
2346 * This is a "chicken-and-egg" problem.
2347 *
2348 * So the off-slab slab descriptor shall come from the kmalloc_{dma,}_caches,
2349 * which are all initialized during kmem_cache_init().
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002350 */
Joonsoo Kim7e007352013-10-30 19:04:01 +09002351static void *alloc_slabmgmt(struct kmem_cache *cachep,
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002352 struct page *page, int colour_off,
2353 gfp_t local_flags, int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354{
Joonsoo Kim7e007352013-10-30 19:04:01 +09002355 void *freelist;
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002356 void *addr = page_address(page);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002357
Joonsoo Kim2e6b3602016-03-15 14:54:30 -07002358 page->s_mem = addr + colour_off;
2359 page->active = 0;
2360
Joonsoo Kimb03a017b2016-03-15 14:54:50 -07002361 if (OBJFREELIST_SLAB(cachep))
2362 freelist = NULL;
2363 else if (OFF_SLAB(cachep)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364 /* Slab management obj is off-slab. */
Joonsoo Kim8456a642013-10-24 10:07:49 +09002365 freelist = kmem_cache_alloc_node(cachep->freelist_cache,
Pekka Enberg8759ec52008-11-26 10:01:31 +02002366 local_flags, nodeid);
Joonsoo Kim8456a642013-10-24 10:07:49 +09002367 if (!freelist)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368 return NULL;
2369 } else {
Joonsoo Kim2e6b3602016-03-15 14:54:30 -07002370 /* We will use last bytes at the slab for freelist */
2371 freelist = addr + (PAGE_SIZE << cachep->gfporder) -
2372 cachep->freelist_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 }
Joonsoo Kim2e6b3602016-03-15 14:54:30 -07002374
Joonsoo Kim8456a642013-10-24 10:07:49 +09002375 return freelist;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376}
2377
Joonsoo Kim7cc68972014-04-18 16:24:09 +09002378static inline freelist_idx_t get_free_obj(struct page *page, unsigned int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379{
Joonsoo Kima41adfa2013-12-02 17:49:42 +09002380 return ((freelist_idx_t *)page->freelist)[idx];
Joonsoo Kime5c58df2013-12-02 17:49:40 +09002381}
2382
2383static inline void set_free_obj(struct page *page,
Joonsoo Kim7cc68972014-04-18 16:24:09 +09002384 unsigned int idx, freelist_idx_t val)
Joonsoo Kime5c58df2013-12-02 17:49:40 +09002385{
Joonsoo Kima41adfa2013-12-02 17:49:42 +09002386 ((freelist_idx_t *)(page->freelist))[idx] = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387}
2388
Joonsoo Kim10b2e9e2016-03-15 14:54:47 -07002389static void cache_init_objs_debug(struct kmem_cache *cachep, struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390{
Joonsoo Kim10b2e9e2016-03-15 14:54:47 -07002391#if DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392 int i;
2393
2394 for (i = 0; i < cachep->num; i++) {
Joonsoo Kim8456a642013-10-24 10:07:49 +09002395 void *objp = index_to_obj(cachep, page, i);
Joonsoo Kim10b2e9e2016-03-15 14:54:47 -07002396
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397 if (cachep->flags & SLAB_STORE_USER)
2398 *dbg_userword(cachep, objp) = NULL;
2399
2400 if (cachep->flags & SLAB_RED_ZONE) {
2401 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2402 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2403 }
2404 /*
Andrew Mortona737b3e2006-03-22 00:08:11 -08002405 * Constructors are not allowed to allocate memory from the same
2406 * cache which they are a constructor for. Otherwise, deadlock.
2407 * They must also be threaded.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 */
Alexander Potapenko7ed2f9e2016-03-25 14:21:59 -07002409 if (cachep->ctor && !(cachep->flags & SLAB_POISON)) {
2410 kasan_unpoison_object_data(cachep,
2411 objp + obj_offset(cachep));
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002412 cachep->ctor(objp + obj_offset(cachep));
Alexander Potapenko7ed2f9e2016-03-25 14:21:59 -07002413 kasan_poison_object_data(
2414 cachep, objp + obj_offset(cachep));
2415 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416
2417 if (cachep->flags & SLAB_RED_ZONE) {
2418 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
Joe Perches756a0252016-03-17 14:19:47 -07002419 slab_error(cachep, "constructor overwrote the end of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
Joe Perches756a0252016-03-17 14:19:47 -07002421 slab_error(cachep, "constructor overwrote the start of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 }
Joonsoo Kim40b44132016-03-15 14:54:21 -07002423 /* need to poison the objs? */
2424 if (cachep->flags & SLAB_POISON) {
2425 poison_obj(cachep, objp, POISON_FREE);
2426 slab_kernel_map(cachep, objp, 0, 0);
2427 }
Joonsoo Kim10b2e9e2016-03-15 14:54:47 -07002428 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429#endif
Joonsoo Kim10b2e9e2016-03-15 14:54:47 -07002430}
2431
2432static void cache_init_objs(struct kmem_cache *cachep,
2433 struct page *page)
2434{
2435 int i;
Alexander Potapenko7ed2f9e2016-03-25 14:21:59 -07002436 void *objp;
Joonsoo Kim10b2e9e2016-03-15 14:54:47 -07002437
2438 cache_init_objs_debug(cachep, page);
2439
Joonsoo Kimb03a017b2016-03-15 14:54:50 -07002440 if (OBJFREELIST_SLAB(cachep)) {
2441 page->freelist = index_to_obj(cachep, page, cachep->num - 1) +
2442 obj_offset(cachep);
2443 }
2444
Joonsoo Kim10b2e9e2016-03-15 14:54:47 -07002445 for (i = 0; i < cachep->num; i++) {
2446 /* constructor could break poison info */
Alexander Potapenko7ed2f9e2016-03-25 14:21:59 -07002447 if (DEBUG == 0 && cachep->ctor) {
2448 objp = index_to_obj(cachep, page, i);
2449 kasan_unpoison_object_data(cachep, objp);
2450 cachep->ctor(objp);
2451 kasan_poison_object_data(cachep, objp);
2452 }
Joonsoo Kim10b2e9e2016-03-15 14:54:47 -07002453
Joonsoo Kime5c58df2013-12-02 17:49:40 +09002454 set_free_obj(page, i, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456}
2457
Pekka Enberg343e0d72006-02-01 03:05:50 -08002458static void kmem_flagcheck(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459{
Christoph Lameter4b51d662007-02-10 01:43:10 -08002460 if (CONFIG_ZONE_DMA_FLAG) {
2461 if (flags & GFP_DMA)
Glauber Costaa618e892012-06-14 16:17:21 +04002462 BUG_ON(!(cachep->allocflags & GFP_DMA));
Christoph Lameter4b51d662007-02-10 01:43:10 -08002463 else
Glauber Costaa618e892012-06-14 16:17:21 +04002464 BUG_ON(cachep->allocflags & GFP_DMA);
Christoph Lameter4b51d662007-02-10 01:43:10 -08002465 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002466}
2467
Joonsoo Kim260b61d2016-03-15 14:54:12 -07002468static void *slab_get_obj(struct kmem_cache *cachep, struct page *page)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002469{
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09002470 void *objp;
Matthew Dobson78d382d2006-02-01 03:05:47 -08002471
Joonsoo Kime5c58df2013-12-02 17:49:40 +09002472 objp = index_to_obj(cachep, page, get_free_obj(page, page->active));
Joonsoo Kim8456a642013-10-24 10:07:49 +09002473 page->active++;
Matthew Dobson78d382d2006-02-01 03:05:47 -08002474
Joonsoo Kimd31676d2016-03-15 14:54:24 -07002475#if DEBUG
2476 if (cachep->flags & SLAB_STORE_USER)
2477 set_store_user_dirty(cachep);
2478#endif
2479
Matthew Dobson78d382d2006-02-01 03:05:47 -08002480 return objp;
2481}
2482
Joonsoo Kim260b61d2016-03-15 14:54:12 -07002483static void slab_put_obj(struct kmem_cache *cachep,
2484 struct page *page, void *objp)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002485{
Joonsoo Kim8456a642013-10-24 10:07:49 +09002486 unsigned int objnr = obj_to_index(cachep, page, objp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002487#if DEBUG
Joonsoo Kim16025172013-10-24 10:07:46 +09002488 unsigned int i;
Matthew Dobson78d382d2006-02-01 03:05:47 -08002489
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09002490 /* Verify double free bug */
Joonsoo Kim8456a642013-10-24 10:07:49 +09002491 for (i = page->active; i < cachep->num; i++) {
Joonsoo Kime5c58df2013-12-02 17:49:40 +09002492 if (get_free_obj(page, i) == objnr) {
Joe Perches11705322016-03-17 14:19:50 -07002493 pr_err("slab: double free detected in cache '%s', objp %p\n",
Joe Perches756a0252016-03-17 14:19:47 -07002494 cachep->name, objp);
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09002495 BUG();
2496 }
Matthew Dobson78d382d2006-02-01 03:05:47 -08002497 }
2498#endif
Joonsoo Kim8456a642013-10-24 10:07:49 +09002499 page->active--;
Joonsoo Kimb03a017b2016-03-15 14:54:50 -07002500 if (!page->freelist)
2501 page->freelist = objp + obj_offset(cachep);
2502
Joonsoo Kime5c58df2013-12-02 17:49:40 +09002503 set_free_obj(page, page->active, objnr);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002504}
2505
Pekka Enberg47768742006-06-23 02:03:07 -07002506/*
2507 * Map pages beginning at addr to the given cache and slab. This is required
2508 * for the slab allocator to be able to lookup the cache and slab of a
Nick Pigginccd35fb2011-01-07 17:49:17 +11002509 * virtual address for kfree, ksize, and slab debugging.
Pekka Enberg47768742006-06-23 02:03:07 -07002510 */
Joonsoo Kim8456a642013-10-24 10:07:49 +09002511static void slab_map_pages(struct kmem_cache *cache, struct page *page,
Joonsoo Kim7e007352013-10-30 19:04:01 +09002512 void *freelist)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513{
Joonsoo Kima57a4982013-10-24 10:07:44 +09002514 page->slab_cache = cache;
Joonsoo Kim8456a642013-10-24 10:07:49 +09002515 page->freelist = freelist;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002516}
2517
2518/*
2519 * Grow (by 1) the number of slabs within a cache. This is called by
2520 * kmem_cache_alloc() when there are no active objs left in a cache.
2521 */
Christoph Lameter3c517a62006-12-06 20:33:29 -08002522static int cache_grow(struct kmem_cache *cachep,
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002523 gfp_t flags, int nodeid, struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524{
Joonsoo Kim7e007352013-10-30 19:04:01 +09002525 void *freelist;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002526 size_t offset;
2527 gfp_t local_flags;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002528 struct kmem_cache_node *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529
Andrew Mortona737b3e2006-03-22 00:08:11 -08002530 /*
2531 * Be lazy and only check for valid flags here, keeping it out of the
2532 * critical path in kmem_cache_alloc().
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533 */
Andrew Mortonc871ac42014-12-10 15:42:25 -08002534 if (unlikely(flags & GFP_SLAB_BUG_MASK)) {
2535 pr_emerg("gfp: %u\n", flags & GFP_SLAB_BUG_MASK);
2536 BUG();
2537 }
Christoph Lameter6cb06222007-10-16 01:25:41 -07002538 local_flags = flags & (GFP_CONSTRAINT_MASK|GFP_RECLAIM_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002540 /* Take the node list lock to change the colour_next on this node */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 check_irq_off();
Christoph Lameter18bf8542014-08-06 16:04:11 -07002542 n = get_node(cachep, nodeid);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002543 spin_lock(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002544
2545 /* Get colour for the slab, and cal the next value. */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002546 offset = n->colour_next;
2547 n->colour_next++;
2548 if (n->colour_next >= cachep->colour)
2549 n->colour_next = 0;
2550 spin_unlock(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002552 offset *= cachep->colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553
Mel Gormand0164ad2015-11-06 16:28:21 -08002554 if (gfpflags_allow_blocking(local_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555 local_irq_enable();
2556
2557 /*
2558 * The test for missing atomic flag is performed here, rather than
2559 * the more obvious place, simply to reduce the critical path length
2560 * in kmem_cache_alloc(). If a caller is seriously mis-behaving they
2561 * will eventually be caught here (where it matters).
2562 */
2563 kmem_flagcheck(cachep, flags);
2564
Andrew Mortona737b3e2006-03-22 00:08:11 -08002565 /*
2566 * Get mem for the objs. Attempt to allocate a physical page from
2567 * 'nodeid'.
Christoph Lametere498be72005-09-09 13:03:32 -07002568 */
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002569 if (!page)
2570 page = kmem_getpages(cachep, local_flags, nodeid);
2571 if (!page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572 goto failed;
2573
2574 /* Get slab management. */
Joonsoo Kim8456a642013-10-24 10:07:49 +09002575 freelist = alloc_slabmgmt(cachep, page, offset,
Christoph Lameter6cb06222007-10-16 01:25:41 -07002576 local_flags & ~GFP_CONSTRAINT_MASK, nodeid);
Joonsoo Kimb03a017b2016-03-15 14:54:50 -07002577 if (OFF_SLAB(cachep) && !freelist)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578 goto opps1;
2579
Joonsoo Kim8456a642013-10-24 10:07:49 +09002580 slab_map_pages(cachep, page, freelist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581
Alexander Potapenko7ed2f9e2016-03-25 14:21:59 -07002582 kasan_poison_slab(page);
Joonsoo Kim8456a642013-10-24 10:07:49 +09002583 cache_init_objs(cachep, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584
Mel Gormand0164ad2015-11-06 16:28:21 -08002585 if (gfpflags_allow_blocking(local_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586 local_irq_disable();
2587 check_irq_off();
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002588 spin_lock(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589
2590 /* Make slab active. */
Joonsoo Kim8456a642013-10-24 10:07:49 +09002591 list_add_tail(&page->lru, &(n->slabs_free));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592 STATS_INC_GROWN(cachep);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002593 n->free_objects += cachep->num;
2594 spin_unlock(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595 return 1;
Andrew Mortona737b3e2006-03-22 00:08:11 -08002596opps1:
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002597 kmem_freepages(cachep, page);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002598failed:
Mel Gormand0164ad2015-11-06 16:28:21 -08002599 if (gfpflags_allow_blocking(local_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600 local_irq_disable();
2601 return 0;
2602}
2603
2604#if DEBUG
2605
2606/*
2607 * Perform extra freeing checks:
2608 * - detect bad pointers.
2609 * - POISON/RED_ZONE checking
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 */
2611static void kfree_debugcheck(const void *objp)
2612{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 if (!virt_addr_valid(objp)) {
Joe Perches11705322016-03-17 14:19:50 -07002614 pr_err("kfree_debugcheck: out of range ptr %lxh\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002615 (unsigned long)objp);
2616 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002618}
2619
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002620static inline void verify_redzone_free(struct kmem_cache *cache, void *obj)
2621{
David Woodhouseb46b8f12007-05-08 00:22:59 -07002622 unsigned long long redzone1, redzone2;
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002623
2624 redzone1 = *dbg_redzone1(cache, obj);
2625 redzone2 = *dbg_redzone2(cache, obj);
2626
2627 /*
2628 * Redzone is ok.
2629 */
2630 if (redzone1 == RED_ACTIVE && redzone2 == RED_ACTIVE)
2631 return;
2632
2633 if (redzone1 == RED_INACTIVE && redzone2 == RED_INACTIVE)
2634 slab_error(cache, "double free detected");
2635 else
2636 slab_error(cache, "memory outside object was overwritten");
2637
Joe Perches11705322016-03-17 14:19:50 -07002638 pr_err("%p: redzone 1:0x%llx, redzone 2:0x%llx\n",
2639 obj, redzone1, redzone2);
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002640}
2641
Pekka Enberg343e0d72006-02-01 03:05:50 -08002642static void *cache_free_debugcheck(struct kmem_cache *cachep, void *objp,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03002643 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645 unsigned int objnr;
Joonsoo Kim8456a642013-10-24 10:07:49 +09002646 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647
Matthew Wilcox80cbd912007-11-29 12:05:13 -07002648 BUG_ON(virt_to_cache(objp) != cachep);
2649
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002650 objp -= obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651 kfree_debugcheck(objp);
Christoph Lameterb49af682007-05-06 14:49:41 -07002652 page = virt_to_head_page(objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654 if (cachep->flags & SLAB_RED_ZONE) {
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002655 verify_redzone_free(cachep, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2657 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2658 }
Joonsoo Kimd31676d2016-03-15 14:54:24 -07002659 if (cachep->flags & SLAB_STORE_USER) {
2660 set_store_user_dirty(cachep);
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03002661 *dbg_userword(cachep, objp) = (void *)caller;
Joonsoo Kimd31676d2016-03-15 14:54:24 -07002662 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663
Joonsoo Kim8456a642013-10-24 10:07:49 +09002664 objnr = obj_to_index(cachep, page, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665
2666 BUG_ON(objnr >= cachep->num);
Joonsoo Kim8456a642013-10-24 10:07:49 +09002667 BUG_ON(objp != index_to_obj(cachep, page, objnr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 if (cachep->flags & SLAB_POISON) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670 poison_obj(cachep, objp, POISON_FREE);
Joonsoo Kim40b44132016-03-15 14:54:21 -07002671 slab_kernel_map(cachep, objp, 0, caller);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672 }
2673 return objp;
2674}
2675
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676#else
2677#define kfree_debugcheck(x) do { } while(0)
2678#define cache_free_debugcheck(x,objp,z) (objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679#endif
2680
Joonsoo Kimb03a017b2016-03-15 14:54:50 -07002681static inline void fixup_objfreelist_debug(struct kmem_cache *cachep,
2682 void **list)
2683{
2684#if DEBUG
2685 void *next = *list;
2686 void *objp;
2687
2688 while (next) {
2689 objp = next - obj_offset(cachep);
2690 next = *(void **)next;
2691 poison_obj(cachep, objp, POISON_FREE);
2692 }
2693#endif
2694}
2695
Joonsoo Kimd8410232016-03-15 14:54:44 -07002696static inline void fixup_slab_list(struct kmem_cache *cachep,
Joonsoo Kimb03a017b2016-03-15 14:54:50 -07002697 struct kmem_cache_node *n, struct page *page,
2698 void **list)
Joonsoo Kimd8410232016-03-15 14:54:44 -07002699{
2700 /* move slabp to correct slabp list: */
2701 list_del(&page->lru);
Joonsoo Kimb03a017b2016-03-15 14:54:50 -07002702 if (page->active == cachep->num) {
Joonsoo Kimd8410232016-03-15 14:54:44 -07002703 list_add(&page->lru, &n->slabs_full);
Joonsoo Kimb03a017b2016-03-15 14:54:50 -07002704 if (OBJFREELIST_SLAB(cachep)) {
2705#if DEBUG
2706 /* Poisoning will be done without holding the lock */
2707 if (cachep->flags & SLAB_POISON) {
2708 void **objp = page->freelist;
2709
2710 *objp = *list;
2711 *list = objp;
2712 }
2713#endif
2714 page->freelist = NULL;
2715 }
2716 } else
Joonsoo Kimd8410232016-03-15 14:54:44 -07002717 list_add(&page->lru, &n->slabs_partial);
2718}
2719
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07002720/* Try to find non-pfmemalloc slab if needed */
2721static noinline struct page *get_valid_first_slab(struct kmem_cache_node *n,
2722 struct page *page, bool pfmemalloc)
2723{
2724 if (!page)
2725 return NULL;
2726
2727 if (pfmemalloc)
2728 return page;
2729
2730 if (!PageSlabPfmemalloc(page))
2731 return page;
2732
2733 /* No need to keep pfmemalloc slab if we have enough free objects */
2734 if (n->free_objects > n->free_limit) {
2735 ClearPageSlabPfmemalloc(page);
2736 return page;
2737 }
2738
2739 /* Move pfmemalloc slab to the end of list to speed up next search */
2740 list_del(&page->lru);
2741 if (!page->active)
2742 list_add_tail(&page->lru, &n->slabs_free);
2743 else
2744 list_add_tail(&page->lru, &n->slabs_partial);
2745
2746 list_for_each_entry(page, &n->slabs_partial, lru) {
2747 if (!PageSlabPfmemalloc(page))
2748 return page;
2749 }
2750
2751 list_for_each_entry(page, &n->slabs_free, lru) {
2752 if (!PageSlabPfmemalloc(page))
2753 return page;
2754 }
2755
2756 return NULL;
2757}
2758
2759static struct page *get_first_slab(struct kmem_cache_node *n, bool pfmemalloc)
Geliang Tang7aa0d222016-01-14 15:18:02 -08002760{
2761 struct page *page;
2762
2763 page = list_first_entry_or_null(&n->slabs_partial,
2764 struct page, lru);
2765 if (!page) {
2766 n->free_touched = 1;
2767 page = list_first_entry_or_null(&n->slabs_free,
2768 struct page, lru);
2769 }
2770
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07002771 if (sk_memalloc_socks())
2772 return get_valid_first_slab(n, page, pfmemalloc);
2773
Geliang Tang7aa0d222016-01-14 15:18:02 -08002774 return page;
2775}
2776
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07002777static noinline void *cache_alloc_pfmemalloc(struct kmem_cache *cachep,
2778 struct kmem_cache_node *n, gfp_t flags)
2779{
2780 struct page *page;
2781 void *obj;
2782 void *list = NULL;
2783
2784 if (!gfp_pfmemalloc_allowed(flags))
2785 return NULL;
2786
2787 spin_lock(&n->list_lock);
2788 page = get_first_slab(n, true);
2789 if (!page) {
2790 spin_unlock(&n->list_lock);
2791 return NULL;
2792 }
2793
2794 obj = slab_get_obj(cachep, page);
2795 n->free_objects--;
2796
2797 fixup_slab_list(cachep, n, page, &list);
2798
2799 spin_unlock(&n->list_lock);
2800 fixup_objfreelist_debug(cachep, &list);
2801
2802 return obj;
2803}
2804
2805static void *cache_alloc_refill(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002806{
2807 int batchcount;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002808 struct kmem_cache_node *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809 struct array_cache *ac;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07002810 int node;
Joonsoo Kimb03a017b2016-03-15 14:54:50 -07002811 void *list = NULL;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07002812
Joe Korty6d2144d2008-03-05 15:04:59 -08002813 check_irq_off();
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07002814 node = numa_mem_id();
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07002815
Mel Gorman072bb0a2012-07-31 16:43:58 -07002816retry:
Joe Korty6d2144d2008-03-05 15:04:59 -08002817 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818 batchcount = ac->batchcount;
2819 if (!ac->touched && batchcount > BATCHREFILL_LIMIT) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002820 /*
2821 * If there was little recent activity on this cache, then
2822 * perform only a partial refill. Otherwise we could generate
2823 * refill bouncing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002824 */
2825 batchcount = BATCHREFILL_LIMIT;
2826 }
Christoph Lameter18bf8542014-08-06 16:04:11 -07002827 n = get_node(cachep, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002829 BUG_ON(ac->avail > 0 || !n);
2830 spin_lock(&n->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07002831
Christoph Lameter3ded1752006-03-25 03:06:44 -08002832 /* See if we can refill from the shared array */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002833 if (n->shared && transfer_objects(ac, n->shared, batchcount)) {
2834 n->shared->touched = 1;
Christoph Lameter3ded1752006-03-25 03:06:44 -08002835 goto alloc_done;
Nick Piggin44b57f12010-01-27 22:27:40 +11002836 }
Christoph Lameter3ded1752006-03-25 03:06:44 -08002837
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838 while (batchcount > 0) {
Joonsoo Kim8456a642013-10-24 10:07:49 +09002839 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 /* Get slab alloc is to come from. */
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07002841 page = get_first_slab(n, false);
Geliang Tang7aa0d222016-01-14 15:18:02 -08002842 if (!page)
2843 goto must_grow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845 check_spinlock_acquired(cachep);
Pekka Enberg714b81712007-05-06 14:49:03 -07002846
2847 /*
2848 * The slab was either on partial or free list so
2849 * there must be at least one object available for
2850 * allocation.
2851 */
Joonsoo Kim8456a642013-10-24 10:07:49 +09002852 BUG_ON(page->active >= cachep->num);
Pekka Enberg714b81712007-05-06 14:49:03 -07002853
Joonsoo Kim8456a642013-10-24 10:07:49 +09002854 while (page->active < cachep->num && batchcount--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002855 STATS_INC_ALLOCED(cachep);
2856 STATS_INC_ACTIVE(cachep);
2857 STATS_SET_HIGH(cachep);
2858
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07002859 ac->entry[ac->avail++] = slab_get_obj(cachep, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861
Joonsoo Kimb03a017b2016-03-15 14:54:50 -07002862 fixup_slab_list(cachep, n, page, &list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863 }
2864
Andrew Mortona737b3e2006-03-22 00:08:11 -08002865must_grow:
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002866 n->free_objects -= ac->avail;
Andrew Mortona737b3e2006-03-22 00:08:11 -08002867alloc_done:
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002868 spin_unlock(&n->list_lock);
Joonsoo Kimb03a017b2016-03-15 14:54:50 -07002869 fixup_objfreelist_debug(cachep, &list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870
2871 if (unlikely(!ac->avail)) {
2872 int x;
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07002873
2874 /* Check if we can use obj in pfmemalloc slab */
2875 if (sk_memalloc_socks()) {
2876 void *obj = cache_alloc_pfmemalloc(cachep, n, flags);
2877
2878 if (obj)
2879 return obj;
2880 }
2881
David Rientjes4167e9b2015-04-14 15:46:55 -07002882 x = cache_grow(cachep, gfp_exact_node(flags), node, NULL);
Christoph Lametere498be72005-09-09 13:03:32 -07002883
Andrew Mortona737b3e2006-03-22 00:08:11 -08002884 /* cache_grow can reenable interrupts, then ac could change. */
Pekka Enberg9a2dba4b2006-02-01 03:05:49 -08002885 ac = cpu_cache_get(cachep);
David Rientjes51cd8e62012-08-28 19:57:21 -07002886 node = numa_mem_id();
Mel Gorman072bb0a2012-07-31 16:43:58 -07002887
2888 /* no objects in sight? abort */
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07002889 if (!x && ac->avail == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890 return NULL;
2891
Andrew Mortona737b3e2006-03-22 00:08:11 -08002892 if (!ac->avail) /* objects refilled by interrupt? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893 goto retry;
2894 }
2895 ac->touched = 1;
Mel Gorman072bb0a2012-07-31 16:43:58 -07002896
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07002897 return ac->entry[--ac->avail];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898}
2899
Andrew Mortona737b3e2006-03-22 00:08:11 -08002900static inline void cache_alloc_debugcheck_before(struct kmem_cache *cachep,
2901 gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902{
Mel Gormand0164ad2015-11-06 16:28:21 -08002903 might_sleep_if(gfpflags_allow_blocking(flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904#if DEBUG
2905 kmem_flagcheck(cachep, flags);
2906#endif
2907}
2908
2909#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08002910static void *cache_alloc_debugcheck_after(struct kmem_cache *cachep,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03002911 gfp_t flags, void *objp, unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002913 if (!objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914 return objp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002915 if (cachep->flags & SLAB_POISON) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916 check_poison_obj(cachep, objp);
Joonsoo Kim40b44132016-03-15 14:54:21 -07002917 slab_kernel_map(cachep, objp, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918 poison_obj(cachep, objp, POISON_INUSE);
2919 }
2920 if (cachep->flags & SLAB_STORE_USER)
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03002921 *dbg_userword(cachep, objp) = (void *)caller;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922
2923 if (cachep->flags & SLAB_RED_ZONE) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002924 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE ||
2925 *dbg_redzone2(cachep, objp) != RED_INACTIVE) {
Joe Perches756a0252016-03-17 14:19:47 -07002926 slab_error(cachep, "double free, or memory outside object was overwritten");
Joe Perches11705322016-03-17 14:19:50 -07002927 pr_err("%p: redzone 1:0x%llx, redzone 2:0x%llx\n",
2928 objp, *dbg_redzone1(cachep, objp),
2929 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930 }
2931 *dbg_redzone1(cachep, objp) = RED_ACTIVE;
2932 *dbg_redzone2(cachep, objp) = RED_ACTIVE;
2933 }
Joonsoo Kim03787302014-06-23 13:22:06 -07002934
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002935 objp += obj_offset(cachep);
Christoph Lameter4f104932007-05-06 14:50:17 -07002936 if (cachep->ctor && cachep->flags & SLAB_POISON)
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002937 cachep->ctor(objp);
Tetsuo Handa7ea466f2011-07-21 09:42:45 +09002938 if (ARCH_SLAB_MINALIGN &&
2939 ((unsigned long)objp & (ARCH_SLAB_MINALIGN-1))) {
Joe Perches11705322016-03-17 14:19:50 -07002940 pr_err("0x%p: not aligned to ARCH_SLAB_MINALIGN=%d\n",
Hugh Dickinsc2251502011-07-11 13:35:08 -07002941 objp, (int)ARCH_SLAB_MINALIGN);
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002942 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943 return objp;
2944}
2945#else
2946#define cache_alloc_debugcheck_after(a,b,objp,d) (objp)
2947#endif
2948
Pekka Enberg343e0d72006-02-01 03:05:50 -08002949static inline void *____cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002951 void *objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952 struct array_cache *ac;
2953
Alok N Kataria5c382302005-09-27 21:45:46 -07002954 check_irq_off();
Akinobu Mita8a8b6502006-12-08 02:39:44 -08002955
Pekka Enberg9a2dba4b2006-02-01 03:05:49 -08002956 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957 if (likely(ac->avail)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958 ac->touched = 1;
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07002959 objp = ac->entry[--ac->avail];
Mel Gorman072bb0a2012-07-31 16:43:58 -07002960
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07002961 STATS_INC_ALLOCHIT(cachep);
2962 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963 }
Mel Gorman072bb0a2012-07-31 16:43:58 -07002964
2965 STATS_INC_ALLOCMISS(cachep);
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07002966 objp = cache_alloc_refill(cachep, flags);
Mel Gorman072bb0a2012-07-31 16:43:58 -07002967 /*
2968 * the 'ac' may be updated by cache_alloc_refill(),
2969 * and kmemleak_erase() requires its correct value.
2970 */
2971 ac = cpu_cache_get(cachep);
2972
2973out:
Catalin Marinasd5cff632009-06-11 13:22:40 +01002974 /*
2975 * To avoid a false negative, if an object that is in one of the
2976 * per-CPU caches is leaked, we need to make sure kmemleak doesn't
2977 * treat the array pointers as a reference to the object.
2978 */
J. R. Okajimaf3d8b532009-12-02 16:55:49 +09002979 if (objp)
2980 kmemleak_erase(&ac->entry[ac->avail]);
Alok N Kataria5c382302005-09-27 21:45:46 -07002981 return objp;
2982}
2983
Christoph Lametere498be72005-09-09 13:03:32 -07002984#ifdef CONFIG_NUMA
2985/*
Zefan Li2ad654b2014-09-25 09:41:02 +08002986 * Try allocating on another node if PFA_SPREAD_SLAB is a mempolicy is set.
Paul Jacksonc61afb12006-03-24 03:16:08 -08002987 *
2988 * If we are in_interrupt, then process context, including cpusets and
2989 * mempolicy, may not apply and should not be used for allocation policy.
2990 */
2991static void *alternate_node_alloc(struct kmem_cache *cachep, gfp_t flags)
2992{
2993 int nid_alloc, nid_here;
2994
Christoph Lameter765c4502006-09-27 01:50:08 -07002995 if (in_interrupt() || (flags & __GFP_THISNODE))
Paul Jacksonc61afb12006-03-24 03:16:08 -08002996 return NULL;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07002997 nid_alloc = nid_here = numa_mem_id();
Paul Jacksonc61afb12006-03-24 03:16:08 -08002998 if (cpuset_do_slab_mem_spread() && (cachep->flags & SLAB_MEM_SPREAD))
Jack Steiner6adef3e2010-05-26 14:42:49 -07002999 nid_alloc = cpuset_slab_spread_node();
Paul Jacksonc61afb12006-03-24 03:16:08 -08003000 else if (current->mempolicy)
David Rientjes2a389612014-04-07 15:37:29 -07003001 nid_alloc = mempolicy_slab_node();
Paul Jacksonc61afb12006-03-24 03:16:08 -08003002 if (nid_alloc != nid_here)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003003 return ____cache_alloc_node(cachep, flags, nid_alloc);
Paul Jacksonc61afb12006-03-24 03:16:08 -08003004 return NULL;
3005}
3006
3007/*
Christoph Lameter765c4502006-09-27 01:50:08 -07003008 * Fallback function if there was no memory available and no objects on a
Christoph Lameter3c517a62006-12-06 20:33:29 -08003009 * certain node and fall back is permitted. First we scan all the
Christoph Lameter6a673682013-01-10 19:14:19 +00003010 * available node for available objects. If that fails then we
Christoph Lameter3c517a62006-12-06 20:33:29 -08003011 * perform an allocation without specifying a node. This allows the page
3012 * allocator to do its reclaim / fallback magic. We then insert the
3013 * slab into the proper nodelist and then allocate from it.
Christoph Lameter765c4502006-09-27 01:50:08 -07003014 */
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003015static void *fallback_alloc(struct kmem_cache *cache, gfp_t flags)
Christoph Lameter765c4502006-09-27 01:50:08 -07003016{
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003017 struct zonelist *zonelist;
3018 gfp_t local_flags;
Mel Gormandd1a2392008-04-28 02:12:17 -07003019 struct zoneref *z;
Mel Gorman54a6eb52008-04-28 02:12:16 -07003020 struct zone *zone;
3021 enum zone_type high_zoneidx = gfp_zone(flags);
Christoph Lameter765c4502006-09-27 01:50:08 -07003022 void *obj = NULL;
Christoph Lameter3c517a62006-12-06 20:33:29 -08003023 int nid;
Mel Gormancc9a6c82012-03-21 16:34:11 -07003024 unsigned int cpuset_mems_cookie;
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003025
3026 if (flags & __GFP_THISNODE)
3027 return NULL;
3028
Christoph Lameter6cb06222007-10-16 01:25:41 -07003029 local_flags = flags & (GFP_CONSTRAINT_MASK|GFP_RECLAIM_MASK);
Christoph Lameter765c4502006-09-27 01:50:08 -07003030
Mel Gormancc9a6c82012-03-21 16:34:11 -07003031retry_cpuset:
Mel Gormand26914d2014-04-03 14:47:24 -07003032 cpuset_mems_cookie = read_mems_allowed_begin();
David Rientjes2a389612014-04-07 15:37:29 -07003033 zonelist = node_zonelist(mempolicy_slab_node(), flags);
Mel Gormancc9a6c82012-03-21 16:34:11 -07003034
Christoph Lameter3c517a62006-12-06 20:33:29 -08003035retry:
3036 /*
3037 * Look through allowed nodes for objects available
3038 * from existing per node queues.
3039 */
Mel Gorman54a6eb52008-04-28 02:12:16 -07003040 for_each_zone_zonelist(zone, z, zonelist, high_zoneidx) {
3041 nid = zone_to_nid(zone);
Christoph Lameteraedb0eb2006-10-21 10:24:16 -07003042
Vladimir Davydov061d7072014-12-12 16:58:25 -08003043 if (cpuset_zone_allowed(zone, flags) &&
Christoph Lameter18bf8542014-08-06 16:04:11 -07003044 get_node(cache, nid) &&
3045 get_node(cache, nid)->free_objects) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003046 obj = ____cache_alloc_node(cache,
David Rientjes4167e9b2015-04-14 15:46:55 -07003047 gfp_exact_node(flags), nid);
Christoph Lameter481c5342008-06-21 16:46:35 -07003048 if (obj)
3049 break;
3050 }
Christoph Lameter3c517a62006-12-06 20:33:29 -08003051 }
3052
Christoph Lametercfce6602007-05-06 14:50:17 -07003053 if (!obj) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003054 /*
3055 * This allocation will be performed within the constraints
3056 * of the current cpuset / memory policy requirements.
3057 * We may trigger various forms of reclaim on the allowed
3058 * set and go into memory reserves if necessary.
3059 */
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09003060 struct page *page;
3061
Mel Gormand0164ad2015-11-06 16:28:21 -08003062 if (gfpflags_allow_blocking(local_flags))
Christoph Lameterdd47ea72006-12-13 00:34:11 -08003063 local_irq_enable();
3064 kmem_flagcheck(cache, flags);
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09003065 page = kmem_getpages(cache, local_flags, numa_mem_id());
Mel Gormand0164ad2015-11-06 16:28:21 -08003066 if (gfpflags_allow_blocking(local_flags))
Christoph Lameterdd47ea72006-12-13 00:34:11 -08003067 local_irq_disable();
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09003068 if (page) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003069 /*
3070 * Insert into the appropriate per node queues
3071 */
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09003072 nid = page_to_nid(page);
3073 if (cache_grow(cache, flags, nid, page)) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003074 obj = ____cache_alloc_node(cache,
David Rientjes4167e9b2015-04-14 15:46:55 -07003075 gfp_exact_node(flags), nid);
Christoph Lameter3c517a62006-12-06 20:33:29 -08003076 if (!obj)
3077 /*
3078 * Another processor may allocate the
3079 * objects in the slab since we are
3080 * not holding any locks.
3081 */
3082 goto retry;
3083 } else {
Hugh Dickinsb6a60452007-01-05 16:36:36 -08003084 /* cache_grow already freed obj */
Christoph Lameter3c517a62006-12-06 20:33:29 -08003085 obj = NULL;
3086 }
3087 }
Christoph Lameteraedb0eb2006-10-21 10:24:16 -07003088 }
Mel Gormancc9a6c82012-03-21 16:34:11 -07003089
Mel Gormand26914d2014-04-03 14:47:24 -07003090 if (unlikely(!obj && read_mems_allowed_retry(cpuset_mems_cookie)))
Mel Gormancc9a6c82012-03-21 16:34:11 -07003091 goto retry_cpuset;
Christoph Lameter765c4502006-09-27 01:50:08 -07003092 return obj;
3093}
3094
3095/*
Christoph Lametere498be72005-09-09 13:03:32 -07003096 * A interface to enable slab creation on nodeid
Linus Torvalds1da177e2005-04-16 15:20:36 -07003097 */
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003098static void *____cache_alloc_node(struct kmem_cache *cachep, gfp_t flags,
Andrew Mortona737b3e2006-03-22 00:08:11 -08003099 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07003100{
Joonsoo Kim8456a642013-10-24 10:07:49 +09003101 struct page *page;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003102 struct kmem_cache_node *n;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003103 void *obj;
Joonsoo Kimb03a017b2016-03-15 14:54:50 -07003104 void *list = NULL;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003105 int x;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003106
Paul Mackerras7c3fbbd2014-12-02 15:59:48 -08003107 VM_BUG_ON(nodeid < 0 || nodeid >= MAX_NUMNODES);
Christoph Lameter18bf8542014-08-06 16:04:11 -07003108 n = get_node(cachep, nodeid);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003109 BUG_ON(!n);
Christoph Lametere498be72005-09-09 13:03:32 -07003110
Andrew Mortona737b3e2006-03-22 00:08:11 -08003111retry:
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08003112 check_irq_off();
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003113 spin_lock(&n->list_lock);
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07003114 page = get_first_slab(n, false);
Geliang Tang7aa0d222016-01-14 15:18:02 -08003115 if (!page)
3116 goto must_grow;
Christoph Lametere498be72005-09-09 13:03:32 -07003117
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003118 check_spinlock_acquired_node(cachep, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07003119
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003120 STATS_INC_NODEALLOCS(cachep);
3121 STATS_INC_ACTIVE(cachep);
3122 STATS_SET_HIGH(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003123
Joonsoo Kim8456a642013-10-24 10:07:49 +09003124 BUG_ON(page->active == cachep->num);
Christoph Lametere498be72005-09-09 13:03:32 -07003125
Joonsoo Kim260b61d2016-03-15 14:54:12 -07003126 obj = slab_get_obj(cachep, page);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003127 n->free_objects--;
Christoph Lametere498be72005-09-09 13:03:32 -07003128
Joonsoo Kimb03a017b2016-03-15 14:54:50 -07003129 fixup_slab_list(cachep, n, page, &list);
Christoph Lametere498be72005-09-09 13:03:32 -07003130
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003131 spin_unlock(&n->list_lock);
Joonsoo Kimb03a017b2016-03-15 14:54:50 -07003132 fixup_objfreelist_debug(cachep, &list);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003133 goto done;
Christoph Lametere498be72005-09-09 13:03:32 -07003134
Andrew Mortona737b3e2006-03-22 00:08:11 -08003135must_grow:
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003136 spin_unlock(&n->list_lock);
David Rientjes4167e9b2015-04-14 15:46:55 -07003137 x = cache_grow(cachep, gfp_exact_node(flags), nodeid, NULL);
Christoph Lameter765c4502006-09-27 01:50:08 -07003138 if (x)
3139 goto retry;
Christoph Lametere498be72005-09-09 13:03:32 -07003140
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003141 return fallback_alloc(cachep, flags);
Christoph Lameter765c4502006-09-27 01:50:08 -07003142
Andrew Mortona737b3e2006-03-22 00:08:11 -08003143done:
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003144 return obj;
Christoph Lametere498be72005-09-09 13:03:32 -07003145}
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003146
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003147static __always_inline void *
Ezequiel Garcia48356302012-09-08 17:47:57 -03003148slab_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003149 unsigned long caller)
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003150{
3151 unsigned long save_flags;
3152 void *ptr;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003153 int slab_node = numa_mem_id();
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003154
Benjamin Herrenschmidtdcce2842009-06-18 13:24:12 +10003155 flags &= gfp_allowed_mask;
Jesper Dangaard Brouer011ecea2016-03-15 14:53:41 -07003156 cachep = slab_pre_alloc_hook(cachep, flags);
3157 if (unlikely(!cachep))
Akinobu Mita824ebef2007-05-06 14:49:58 -07003158 return NULL;
3159
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003160 cache_alloc_debugcheck_before(cachep, flags);
3161 local_irq_save(save_flags);
3162
Andrew Mortoneacbbae2011-07-28 13:59:49 -07003163 if (nodeid == NUMA_NO_NODE)
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003164 nodeid = slab_node;
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003165
Christoph Lameter18bf8542014-08-06 16:04:11 -07003166 if (unlikely(!get_node(cachep, nodeid))) {
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003167 /* Node not bootstrapped yet */
3168 ptr = fallback_alloc(cachep, flags);
3169 goto out;
3170 }
3171
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003172 if (nodeid == slab_node) {
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003173 /*
3174 * Use the locally cached objects if possible.
3175 * However ____cache_alloc does not allow fallback
3176 * to other nodes. It may fail while we still have
3177 * objects on other nodes available.
3178 */
3179 ptr = ____cache_alloc(cachep, flags);
3180 if (ptr)
3181 goto out;
3182 }
3183 /* ___cache_alloc_node can fall back to other nodes */
3184 ptr = ____cache_alloc_node(cachep, flags, nodeid);
3185 out:
3186 local_irq_restore(save_flags);
3187 ptr = cache_alloc_debugcheck_after(cachep, flags, ptr, caller);
3188
Jesper Dangaard Brouerd5e3ed62016-03-15 14:53:47 -07003189 if (unlikely(flags & __GFP_ZERO) && ptr)
3190 memset(ptr, 0, cachep->object_size);
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003191
Jesper Dangaard Brouerd5e3ed62016-03-15 14:53:47 -07003192 slab_post_alloc_hook(cachep, flags, 1, &ptr);
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003193 return ptr;
3194}
3195
3196static __always_inline void *
3197__do_cache_alloc(struct kmem_cache *cache, gfp_t flags)
3198{
3199 void *objp;
3200
Zefan Li2ad654b2014-09-25 09:41:02 +08003201 if (current->mempolicy || cpuset_do_slab_mem_spread()) {
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003202 objp = alternate_node_alloc(cache, flags);
3203 if (objp)
3204 goto out;
3205 }
3206 objp = ____cache_alloc(cache, flags);
3207
3208 /*
3209 * We may just have run out of memory on the local node.
3210 * ____cache_alloc_node() knows how to locate memory on other nodes
3211 */
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003212 if (!objp)
3213 objp = ____cache_alloc_node(cache, flags, numa_mem_id());
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003214
3215 out:
3216 return objp;
3217}
3218#else
3219
3220static __always_inline void *
3221__do_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
3222{
3223 return ____cache_alloc(cachep, flags);
3224}
3225
3226#endif /* CONFIG_NUMA */
3227
3228static __always_inline void *
Ezequiel Garcia48356302012-09-08 17:47:57 -03003229slab_alloc(struct kmem_cache *cachep, gfp_t flags, unsigned long caller)
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003230{
3231 unsigned long save_flags;
3232 void *objp;
3233
Benjamin Herrenschmidtdcce2842009-06-18 13:24:12 +10003234 flags &= gfp_allowed_mask;
Jesper Dangaard Brouer011ecea2016-03-15 14:53:41 -07003235 cachep = slab_pre_alloc_hook(cachep, flags);
3236 if (unlikely(!cachep))
Akinobu Mita824ebef2007-05-06 14:49:58 -07003237 return NULL;
3238
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003239 cache_alloc_debugcheck_before(cachep, flags);
3240 local_irq_save(save_flags);
3241 objp = __do_cache_alloc(cachep, flags);
3242 local_irq_restore(save_flags);
3243 objp = cache_alloc_debugcheck_after(cachep, flags, objp, caller);
3244 prefetchw(objp);
3245
Jesper Dangaard Brouerd5e3ed62016-03-15 14:53:47 -07003246 if (unlikely(flags & __GFP_ZERO) && objp)
3247 memset(objp, 0, cachep->object_size);
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003248
Jesper Dangaard Brouerd5e3ed62016-03-15 14:53:47 -07003249 slab_post_alloc_hook(cachep, flags, 1, &objp);
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003250 return objp;
3251}
Christoph Lametere498be72005-09-09 13:03:32 -07003252
3253/*
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08003254 * Caller needs to acquire correct kmem_cache_node's list_lock
Joonsoo Kim97654df2014-08-06 16:04:25 -07003255 * @list: List of detached free slabs should be freed by caller
Christoph Lametere498be72005-09-09 13:03:32 -07003256 */
Joonsoo Kim97654df2014-08-06 16:04:25 -07003257static void free_block(struct kmem_cache *cachep, void **objpp,
3258 int nr_objects, int node, struct list_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003259{
3260 int i;
Joonsoo Kim25c063f2014-08-06 16:04:22 -07003261 struct kmem_cache_node *n = get_node(cachep, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262
3263 for (i = 0; i < nr_objects; i++) {
Mel Gorman072bb0a2012-07-31 16:43:58 -07003264 void *objp;
Joonsoo Kim8456a642013-10-24 10:07:49 +09003265 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266
Mel Gorman072bb0a2012-07-31 16:43:58 -07003267 objp = objpp[i];
3268
Joonsoo Kim8456a642013-10-24 10:07:49 +09003269 page = virt_to_head_page(objp);
Joonsoo Kim8456a642013-10-24 10:07:49 +09003270 list_del(&page->lru);
Christoph Lameterff694162005-09-22 21:44:02 -07003271 check_spinlock_acquired_node(cachep, node);
Joonsoo Kim260b61d2016-03-15 14:54:12 -07003272 slab_put_obj(cachep, page, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273 STATS_DEC_ACTIVE(cachep);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003274 n->free_objects++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003275
3276 /* fixup slab chains */
Joonsoo Kim8456a642013-10-24 10:07:49 +09003277 if (page->active == 0) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003278 if (n->free_objects > n->free_limit) {
3279 n->free_objects -= cachep->num;
Joonsoo Kim97654df2014-08-06 16:04:25 -07003280 list_add_tail(&page->lru, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281 } else {
Joonsoo Kim8456a642013-10-24 10:07:49 +09003282 list_add(&page->lru, &n->slabs_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003283 }
3284 } else {
3285 /* Unconditionally move a slab to the end of the
3286 * partial list on free - maximum time for the
3287 * other objects to be freed, too.
3288 */
Joonsoo Kim8456a642013-10-24 10:07:49 +09003289 list_add_tail(&page->lru, &n->slabs_partial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003290 }
3291 }
3292}
3293
Pekka Enberg343e0d72006-02-01 03:05:50 -08003294static void cache_flusharray(struct kmem_cache *cachep, struct array_cache *ac)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003295{
3296 int batchcount;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003297 struct kmem_cache_node *n;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003298 int node = numa_mem_id();
Joonsoo Kim97654df2014-08-06 16:04:25 -07003299 LIST_HEAD(list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300
3301 batchcount = ac->batchcount;
Joonsoo Kim260b61d2016-03-15 14:54:12 -07003302
Linus Torvalds1da177e2005-04-16 15:20:36 -07003303 check_irq_off();
Christoph Lameter18bf8542014-08-06 16:04:11 -07003304 n = get_node(cachep, node);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003305 spin_lock(&n->list_lock);
3306 if (n->shared) {
3307 struct array_cache *shared_array = n->shared;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003308 int max = shared_array->limit - shared_array->avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309 if (max) {
3310 if (batchcount > max)
3311 batchcount = max;
Christoph Lametere498be72005-09-09 13:03:32 -07003312 memcpy(&(shared_array->entry[shared_array->avail]),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003313 ac->entry, sizeof(void *) * batchcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003314 shared_array->avail += batchcount;
3315 goto free_done;
3316 }
3317 }
3318
Joonsoo Kim97654df2014-08-06 16:04:25 -07003319 free_block(cachep, ac->entry, batchcount, node, &list);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003320free_done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321#if STATS
3322 {
3323 int i = 0;
Geliang Tang73c02192016-01-14 15:17:59 -08003324 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325
Geliang Tang73c02192016-01-14 15:17:59 -08003326 list_for_each_entry(page, &n->slabs_free, lru) {
Joonsoo Kim8456a642013-10-24 10:07:49 +09003327 BUG_ON(page->active);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328
3329 i++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330 }
3331 STATS_SET_FREEABLE(cachep, i);
3332 }
3333#endif
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003334 spin_unlock(&n->list_lock);
Joonsoo Kim97654df2014-08-06 16:04:25 -07003335 slabs_destroy(cachep, &list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336 ac->avail -= batchcount;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003337 memmove(ac->entry, &(ac->entry[batchcount]), sizeof(void *)*ac->avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338}
3339
3340/*
Andrew Mortona737b3e2006-03-22 00:08:11 -08003341 * Release an obj back to its cache. If the obj has a constructed state, it must
3342 * be in this state _before_ it is released. Called with disabled ints.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003343 */
Suleiman Souhlala947eb92011-06-02 00:16:42 -07003344static inline void __cache_free(struct kmem_cache *cachep, void *objp,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003345 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346{
Pekka Enberg9a2dba4b2006-02-01 03:05:49 -08003347 struct array_cache *ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003348
Alexander Potapenko7ed2f9e2016-03-25 14:21:59 -07003349 kasan_slab_free(cachep, objp);
3350
Linus Torvalds1da177e2005-04-16 15:20:36 -07003351 check_irq_off();
Catalin Marinasd5cff632009-06-11 13:22:40 +01003352 kmemleak_free_recursive(objp, cachep->flags);
Suleiman Souhlala947eb92011-06-02 00:16:42 -07003353 objp = cache_free_debugcheck(cachep, objp, caller);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003355 kmemcheck_slab_free(cachep, objp, cachep->object_size);
Pekka Enbergc175eea2008-05-09 20:35:53 +02003356
Siddha, Suresh B1807a1a2007-08-22 14:01:49 -07003357 /*
3358 * Skip calling cache_free_alien() when the platform is not numa.
3359 * This will avoid cache misses that happen while accessing slabp (which
3360 * is per page memory reference) to get nodeid. Instead use a global
3361 * variable to skip the call, which is mostly likely to be present in
3362 * the cache.
3363 */
Mel Gormanb6e68bc2009-06-16 15:32:16 -07003364 if (nr_online_nodes > 1 && cache_free_alien(cachep, objp))
Pekka Enberg729bd0b2006-06-23 02:03:05 -07003365 return;
Christoph Lametere498be72005-09-09 13:03:32 -07003366
Joonsoo Kim3d880192014-10-09 15:26:04 -07003367 if (ac->avail < ac->limit) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003368 STATS_INC_FREEHIT(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003369 } else {
3370 STATS_INC_FREEMISS(cachep);
3371 cache_flusharray(cachep, ac);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003372 }
Zhao Jin42c8c992011-08-27 00:26:17 +08003373
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07003374 if (sk_memalloc_socks()) {
3375 struct page *page = virt_to_head_page(objp);
3376
3377 if (unlikely(PageSlabPfmemalloc(page))) {
3378 cache_free_pfmemalloc(cachep, page, objp);
3379 return;
3380 }
3381 }
3382
3383 ac->entry[ac->avail++] = objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384}
3385
3386/**
3387 * kmem_cache_alloc - Allocate an object
3388 * @cachep: The cache to allocate from.
3389 * @flags: See kmalloc().
3390 *
3391 * Allocate an object from this cache. The flags are only relevant
3392 * if the cache has no available objects.
3393 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003394void *kmem_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003395{
Ezequiel Garcia48356302012-09-08 17:47:57 -03003396 void *ret = slab_alloc(cachep, flags, _RET_IP_);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003397
Alexander Potapenko505f5dc2016-03-25 14:22:02 -07003398 kasan_slab_alloc(cachep, ret, flags);
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003399 trace_kmem_cache_alloc(_RET_IP_, ret,
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003400 cachep->object_size, cachep->size, flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003401
3402 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403}
3404EXPORT_SYMBOL(kmem_cache_alloc);
3405
Jesper Dangaard Brouer7b0501d2016-03-15 14:53:53 -07003406static __always_inline void
3407cache_alloc_debugcheck_after_bulk(struct kmem_cache *s, gfp_t flags,
3408 size_t size, void **p, unsigned long caller)
3409{
3410 size_t i;
3411
3412 for (i = 0; i < size; i++)
3413 p[i] = cache_alloc_debugcheck_after(s, flags, p[i], caller);
3414}
3415
Jesper Dangaard Brouer865762a2015-11-20 15:57:58 -08003416int kmem_cache_alloc_bulk(struct kmem_cache *s, gfp_t flags, size_t size,
Jesper Dangaard Brouer2a777ea2016-03-15 14:53:50 -07003417 void **p)
Christoph Lameter484748f2015-09-04 15:45:34 -07003418{
Jesper Dangaard Brouer2a777ea2016-03-15 14:53:50 -07003419 size_t i;
3420
3421 s = slab_pre_alloc_hook(s, flags);
3422 if (!s)
3423 return 0;
3424
3425 cache_alloc_debugcheck_before(s, flags);
3426
3427 local_irq_disable();
3428 for (i = 0; i < size; i++) {
3429 void *objp = __do_cache_alloc(s, flags);
3430
Jesper Dangaard Brouer2a777ea2016-03-15 14:53:50 -07003431 if (unlikely(!objp))
3432 goto error;
3433 p[i] = objp;
3434 }
3435 local_irq_enable();
3436
Jesper Dangaard Brouer7b0501d2016-03-15 14:53:53 -07003437 cache_alloc_debugcheck_after_bulk(s, flags, size, p, _RET_IP_);
3438
Jesper Dangaard Brouer2a777ea2016-03-15 14:53:50 -07003439 /* Clear memory outside IRQ disabled section */
3440 if (unlikely(flags & __GFP_ZERO))
3441 for (i = 0; i < size; i++)
3442 memset(p[i], 0, s->object_size);
3443
3444 slab_post_alloc_hook(s, flags, size, p);
3445 /* FIXME: Trace call missing. Christoph would like a bulk variant */
3446 return size;
3447error:
3448 local_irq_enable();
Jesper Dangaard Brouer7b0501d2016-03-15 14:53:53 -07003449 cache_alloc_debugcheck_after_bulk(s, flags, i, p, _RET_IP_);
Jesper Dangaard Brouer2a777ea2016-03-15 14:53:50 -07003450 slab_post_alloc_hook(s, flags, i, p);
3451 __kmem_cache_free_bulk(s, i, p);
3452 return 0;
Christoph Lameter484748f2015-09-04 15:45:34 -07003453}
3454EXPORT_SYMBOL(kmem_cache_alloc_bulk);
3455
Li Zefan0f24f122009-12-11 15:45:30 +08003456#ifdef CONFIG_TRACING
Steven Rostedt85beb582010-11-24 16:23:34 -05003457void *
Ezequiel Garcia40521472012-09-08 17:47:56 -03003458kmem_cache_alloc_trace(struct kmem_cache *cachep, gfp_t flags, size_t size)
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003459{
Steven Rostedt85beb582010-11-24 16:23:34 -05003460 void *ret;
3461
Ezequiel Garcia48356302012-09-08 17:47:57 -03003462 ret = slab_alloc(cachep, flags, _RET_IP_);
Steven Rostedt85beb582010-11-24 16:23:34 -05003463
Alexander Potapenko505f5dc2016-03-25 14:22:02 -07003464 kasan_kmalloc(cachep, ret, size, flags);
Steven Rostedt85beb582010-11-24 16:23:34 -05003465 trace_kmalloc(_RET_IP_, ret,
Ezequiel Garciaff4fcd02012-09-08 17:47:52 -03003466 size, cachep->size, flags);
Steven Rostedt85beb582010-11-24 16:23:34 -05003467 return ret;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003468}
Steven Rostedt85beb582010-11-24 16:23:34 -05003469EXPORT_SYMBOL(kmem_cache_alloc_trace);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003470#endif
3471
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472#ifdef CONFIG_NUMA
Zhouping Liud0d04b72013-05-16 11:36:23 +08003473/**
3474 * kmem_cache_alloc_node - Allocate an object on the specified node
3475 * @cachep: The cache to allocate from.
3476 * @flags: See kmalloc().
3477 * @nodeid: node number of the target node.
3478 *
3479 * Identical to kmem_cache_alloc but it will allocate memory on the given
3480 * node, which can improve the performance for cpu bound structures.
3481 *
3482 * Fallback to other node is possible if __GFP_THISNODE is not set.
3483 */
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003484void *kmem_cache_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid)
3485{
Ezequiel Garcia48356302012-09-08 17:47:57 -03003486 void *ret = slab_alloc_node(cachep, flags, nodeid, _RET_IP_);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003487
Alexander Potapenko505f5dc2016-03-25 14:22:02 -07003488 kasan_slab_alloc(cachep, ret, flags);
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003489 trace_kmem_cache_alloc_node(_RET_IP_, ret,
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003490 cachep->object_size, cachep->size,
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003491 flags, nodeid);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003492
3493 return ret;
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003494}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003495EXPORT_SYMBOL(kmem_cache_alloc_node);
3496
Li Zefan0f24f122009-12-11 15:45:30 +08003497#ifdef CONFIG_TRACING
Ezequiel Garcia40521472012-09-08 17:47:56 -03003498void *kmem_cache_alloc_node_trace(struct kmem_cache *cachep,
Steven Rostedt85beb582010-11-24 16:23:34 -05003499 gfp_t flags,
Ezequiel Garcia40521472012-09-08 17:47:56 -03003500 int nodeid,
3501 size_t size)
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003502{
Steven Rostedt85beb582010-11-24 16:23:34 -05003503 void *ret;
3504
Ezequiel Garcia592f4142012-09-25 08:07:08 -03003505 ret = slab_alloc_node(cachep, flags, nodeid, _RET_IP_);
Alexander Potapenko505f5dc2016-03-25 14:22:02 -07003506
3507 kasan_kmalloc(cachep, ret, size, flags);
Steven Rostedt85beb582010-11-24 16:23:34 -05003508 trace_kmalloc_node(_RET_IP_, ret,
Ezequiel Garciaff4fcd02012-09-08 17:47:52 -03003509 size, cachep->size,
Steven Rostedt85beb582010-11-24 16:23:34 -05003510 flags, nodeid);
3511 return ret;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003512}
Steven Rostedt85beb582010-11-24 16:23:34 -05003513EXPORT_SYMBOL(kmem_cache_alloc_node_trace);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003514#endif
3515
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003516static __always_inline void *
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003517__do_kmalloc_node(size_t size, gfp_t flags, int node, unsigned long caller)
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003518{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003519 struct kmem_cache *cachep;
Alexander Potapenko7ed2f9e2016-03-25 14:21:59 -07003520 void *ret;
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003521
Christoph Lameter2c59dd62013-01-10 19:14:19 +00003522 cachep = kmalloc_slab(size, flags);
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003523 if (unlikely(ZERO_OR_NULL_PTR(cachep)))
3524 return cachep;
Alexander Potapenko7ed2f9e2016-03-25 14:21:59 -07003525 ret = kmem_cache_alloc_node_trace(cachep, flags, node, size);
Alexander Potapenko505f5dc2016-03-25 14:22:02 -07003526 kasan_kmalloc(cachep, ret, size, flags);
Alexander Potapenko7ed2f9e2016-03-25 14:21:59 -07003527
3528 return ret;
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003529}
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003530
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003531void *__kmalloc_node(size_t size, gfp_t flags, int node)
3532{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003533 return __do_kmalloc_node(size, flags, node, _RET_IP_);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003534}
Christoph Hellwigdbe5e692006-09-25 23:31:36 -07003535EXPORT_SYMBOL(__kmalloc_node);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003536
3537void *__kmalloc_node_track_caller(size_t size, gfp_t flags,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003538 int node, unsigned long caller)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003539{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003540 return __do_kmalloc_node(size, flags, node, caller);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003541}
3542EXPORT_SYMBOL(__kmalloc_node_track_caller);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003543#endif /* CONFIG_NUMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544
3545/**
Paul Drynoff800590f2006-06-23 02:03:48 -07003546 * __do_kmalloc - allocate memory
Linus Torvalds1da177e2005-04-16 15:20:36 -07003547 * @size: how many bytes of memory are required.
Paul Drynoff800590f2006-06-23 02:03:48 -07003548 * @flags: the type of memory to allocate (see kmalloc).
Randy Dunlap911851e2006-03-22 00:08:14 -08003549 * @caller: function caller for debug tracking of the caller
Linus Torvalds1da177e2005-04-16 15:20:36 -07003550 */
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003551static __always_inline void *__do_kmalloc(size_t size, gfp_t flags,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003552 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003554 struct kmem_cache *cachep;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003555 void *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003556
Christoph Lameter2c59dd62013-01-10 19:14:19 +00003557 cachep = kmalloc_slab(size, flags);
Linus Torvaldsa5c96d82007-07-19 13:17:15 -07003558 if (unlikely(ZERO_OR_NULL_PTR(cachep)))
3559 return cachep;
Ezequiel Garcia48356302012-09-08 17:47:57 -03003560 ret = slab_alloc(cachep, flags, caller);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003561
Alexander Potapenko505f5dc2016-03-25 14:22:02 -07003562 kasan_kmalloc(cachep, ret, size, flags);
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003563 trace_kmalloc(caller, ret,
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003564 size, cachep->size, flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003565
3566 return ret;
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003567}
3568
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003569void *__kmalloc(size_t size, gfp_t flags)
3570{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003571 return __do_kmalloc(size, flags, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003572}
3573EXPORT_SYMBOL(__kmalloc);
3574
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003575void *__kmalloc_track_caller(size_t size, gfp_t flags, unsigned long caller)
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003576{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003577 return __do_kmalloc(size, flags, caller);
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003578}
3579EXPORT_SYMBOL(__kmalloc_track_caller);
Christoph Hellwig1d2c8ee2006-10-04 02:15:25 -07003580
Linus Torvalds1da177e2005-04-16 15:20:36 -07003581/**
3582 * kmem_cache_free - Deallocate an object
3583 * @cachep: The cache the allocation was from.
3584 * @objp: The previously allocated object.
3585 *
3586 * Free an object which was previously allocated from this
3587 * cache.
3588 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003589void kmem_cache_free(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590{
3591 unsigned long flags;
Glauber Costab9ce5ef2012-12-18 14:22:46 -08003592 cachep = cache_from_obj(cachep, objp);
3593 if (!cachep)
3594 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595
3596 local_irq_save(flags);
Feng Tangd97d4762012-07-02 14:29:10 +08003597 debug_check_no_locks_freed(objp, cachep->object_size);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -07003598 if (!(cachep->flags & SLAB_DEBUG_OBJECTS))
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003599 debug_check_no_obj_freed(objp, cachep->object_size);
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003600 __cache_free(cachep, objp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003601 local_irq_restore(flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003602
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003603 trace_kmem_cache_free(_RET_IP_, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003604}
3605EXPORT_SYMBOL(kmem_cache_free);
3606
Jesper Dangaard Brouere6cdb582016-03-15 14:53:56 -07003607void kmem_cache_free_bulk(struct kmem_cache *orig_s, size_t size, void **p)
3608{
3609 struct kmem_cache *s;
3610 size_t i;
3611
3612 local_irq_disable();
3613 for (i = 0; i < size; i++) {
3614 void *objp = p[i];
3615
Jesper Dangaard Brouerca257192016-03-15 14:54:00 -07003616 if (!orig_s) /* called via kfree_bulk */
3617 s = virt_to_cache(objp);
3618 else
3619 s = cache_from_obj(orig_s, objp);
Jesper Dangaard Brouere6cdb582016-03-15 14:53:56 -07003620
3621 debug_check_no_locks_freed(objp, s->object_size);
3622 if (!(s->flags & SLAB_DEBUG_OBJECTS))
3623 debug_check_no_obj_freed(objp, s->object_size);
3624
3625 __cache_free(s, objp, _RET_IP_);
3626 }
3627 local_irq_enable();
3628
3629 /* FIXME: add tracing */
3630}
3631EXPORT_SYMBOL(kmem_cache_free_bulk);
3632
Linus Torvalds1da177e2005-04-16 15:20:36 -07003633/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003634 * kfree - free previously allocated memory
3635 * @objp: pointer returned by kmalloc.
3636 *
Pekka Enberg80e93ef2005-09-09 13:10:16 -07003637 * If @objp is NULL, no operation is performed.
3638 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003639 * Don't free memory not originally allocated by kmalloc()
3640 * or you will run into trouble.
3641 */
3642void kfree(const void *objp)
3643{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003644 struct kmem_cache *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003645 unsigned long flags;
3646
Pekka Enberg2121db72009-03-25 11:05:57 +02003647 trace_kfree(_RET_IP_, objp);
3648
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003649 if (unlikely(ZERO_OR_NULL_PTR(objp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003650 return;
3651 local_irq_save(flags);
3652 kfree_debugcheck(objp);
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -08003653 c = virt_to_cache(objp);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003654 debug_check_no_locks_freed(objp, c->object_size);
3655
3656 debug_check_no_obj_freed(objp, c->object_size);
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003657 __cache_free(c, (void *)objp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003658 local_irq_restore(flags);
3659}
3660EXPORT_SYMBOL(kfree);
3661
Christoph Lametere498be72005-09-09 13:03:32 -07003662/*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003663 * This initializes kmem_cache_node or resizes various caches for all nodes.
Christoph Lametere498be72005-09-09 13:03:32 -07003664 */
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08003665static int alloc_kmem_cache_node(struct kmem_cache *cachep, gfp_t gfp)
Christoph Lametere498be72005-09-09 13:03:32 -07003666{
3667 int node;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003668 struct kmem_cache_node *n;
Christoph Lametercafeb022006-03-25 03:06:46 -08003669 struct array_cache *new_shared;
Joonsoo Kimc8522a32014-08-06 16:04:29 -07003670 struct alien_cache **new_alien = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07003671
Mel Gorman9c09a952008-01-24 05:49:54 -08003672 for_each_online_node(node) {
Christoph Lametercafeb022006-03-25 03:06:46 -08003673
LQYMGTb455def2014-12-10 15:42:13 -08003674 if (use_alien_caches) {
3675 new_alien = alloc_alien_cache(node, cachep->limit, gfp);
3676 if (!new_alien)
3677 goto fail;
3678 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003679
Eric Dumazet63109842007-05-06 14:49:28 -07003680 new_shared = NULL;
3681 if (cachep->shared) {
3682 new_shared = alloc_arraycache(node,
Christoph Lameter0718dc22006-03-25 03:06:47 -08003683 cachep->shared*cachep->batchcount,
Pekka Enberg83b519e2009-06-10 19:40:04 +03003684 0xbaadf00d, gfp);
Eric Dumazet63109842007-05-06 14:49:28 -07003685 if (!new_shared) {
3686 free_alien_cache(new_alien);
3687 goto fail;
3688 }
Christoph Lameter0718dc22006-03-25 03:06:47 -08003689 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003690
Christoph Lameter18bf8542014-08-06 16:04:11 -07003691 n = get_node(cachep, node);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003692 if (n) {
3693 struct array_cache *shared = n->shared;
Joonsoo Kim97654df2014-08-06 16:04:25 -07003694 LIST_HEAD(list);
Christoph Lametercafeb022006-03-25 03:06:46 -08003695
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003696 spin_lock_irq(&n->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07003697
Christoph Lametercafeb022006-03-25 03:06:46 -08003698 if (shared)
Christoph Lameter0718dc22006-03-25 03:06:47 -08003699 free_block(cachep, shared->entry,
Joonsoo Kim97654df2014-08-06 16:04:25 -07003700 shared->avail, node, &list);
Christoph Lametere498be72005-09-09 13:03:32 -07003701
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003702 n->shared = new_shared;
3703 if (!n->alien) {
3704 n->alien = new_alien;
Christoph Lametere498be72005-09-09 13:03:32 -07003705 new_alien = NULL;
3706 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003707 n->free_limit = (1 + nr_cpus_node(node)) *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003708 cachep->batchcount + cachep->num;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003709 spin_unlock_irq(&n->list_lock);
Joonsoo Kim97654df2014-08-06 16:04:25 -07003710 slabs_destroy(cachep, &list);
Christoph Lametercafeb022006-03-25 03:06:46 -08003711 kfree(shared);
Christoph Lametere498be72005-09-09 13:03:32 -07003712 free_alien_cache(new_alien);
3713 continue;
3714 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003715 n = kmalloc_node(sizeof(struct kmem_cache_node), gfp, node);
3716 if (!n) {
Christoph Lameter0718dc22006-03-25 03:06:47 -08003717 free_alien_cache(new_alien);
3718 kfree(new_shared);
Christoph Lametere498be72005-09-09 13:03:32 -07003719 goto fail;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003720 }
Christoph Lametere498be72005-09-09 13:03:32 -07003721
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003722 kmem_cache_node_init(n);
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08003723 n->next_reap = jiffies + REAPTIMEOUT_NODE +
3724 ((unsigned long)cachep) % REAPTIMEOUT_NODE;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003725 n->shared = new_shared;
3726 n->alien = new_alien;
3727 n->free_limit = (1 + nr_cpus_node(node)) *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003728 cachep->batchcount + cachep->num;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003729 cachep->node[node] = n;
Christoph Lametere498be72005-09-09 13:03:32 -07003730 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003731 return 0;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003732
Andrew Mortona737b3e2006-03-22 00:08:11 -08003733fail:
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003734 if (!cachep->list.next) {
Christoph Lameter0718dc22006-03-25 03:06:47 -08003735 /* Cache is not active yet. Roll back what we did */
3736 node--;
3737 while (node >= 0) {
Christoph Lameter18bf8542014-08-06 16:04:11 -07003738 n = get_node(cachep, node);
3739 if (n) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003740 kfree(n->shared);
3741 free_alien_cache(n->alien);
3742 kfree(n);
Christoph Lameter6a673682013-01-10 19:14:19 +00003743 cachep->node[node] = NULL;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003744 }
3745 node--;
3746 }
3747 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003748 return -ENOMEM;
Christoph Lametere498be72005-09-09 13:03:32 -07003749}
3750
Christoph Lameter18004c52012-07-06 15:25:12 -05003751/* Always called with the slab_mutex held */
Glauber Costa943a4512012-12-18 14:23:03 -08003752static int __do_tune_cpucache(struct kmem_cache *cachep, int limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03003753 int batchcount, int shared, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003754{
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07003755 struct array_cache __percpu *cpu_cache, *prev;
3756 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003757
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07003758 cpu_cache = alloc_kmem_cache_cpus(cachep, limit, batchcount);
3759 if (!cpu_cache)
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003760 return -ENOMEM;
3761
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07003762 prev = cachep->cpu_cache;
3763 cachep->cpu_cache = cpu_cache;
3764 kick_all_cpus_sync();
Christoph Lametere498be72005-09-09 13:03:32 -07003765
Linus Torvalds1da177e2005-04-16 15:20:36 -07003766 check_irq_on();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003767 cachep->batchcount = batchcount;
3768 cachep->limit = limit;
Christoph Lametere498be72005-09-09 13:03:32 -07003769 cachep->shared = shared;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07003771 if (!prev)
3772 goto alloc_node;
3773
3774 for_each_online_cpu(cpu) {
Joonsoo Kim97654df2014-08-06 16:04:25 -07003775 LIST_HEAD(list);
Christoph Lameter18bf8542014-08-06 16:04:11 -07003776 int node;
3777 struct kmem_cache_node *n;
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07003778 struct array_cache *ac = per_cpu_ptr(prev, cpu);
Christoph Lameter18bf8542014-08-06 16:04:11 -07003779
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07003780 node = cpu_to_mem(cpu);
Christoph Lameter18bf8542014-08-06 16:04:11 -07003781 n = get_node(cachep, node);
3782 spin_lock_irq(&n->list_lock);
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07003783 free_block(cachep, ac->entry, ac->avail, node, &list);
Christoph Lameter18bf8542014-08-06 16:04:11 -07003784 spin_unlock_irq(&n->list_lock);
Joonsoo Kim97654df2014-08-06 16:04:25 -07003785 slabs_destroy(cachep, &list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003786 }
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07003787 free_percpu(prev);
3788
3789alloc_node:
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08003790 return alloc_kmem_cache_node(cachep, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003791}
3792
Glauber Costa943a4512012-12-18 14:23:03 -08003793static int do_tune_cpucache(struct kmem_cache *cachep, int limit,
3794 int batchcount, int shared, gfp_t gfp)
3795{
3796 int ret;
Vladimir Davydov426589f2015-02-12 14:59:23 -08003797 struct kmem_cache *c;
Glauber Costa943a4512012-12-18 14:23:03 -08003798
3799 ret = __do_tune_cpucache(cachep, limit, batchcount, shared, gfp);
3800
3801 if (slab_state < FULL)
3802 return ret;
3803
3804 if ((ret < 0) || !is_root_cache(cachep))
3805 return ret;
3806
Vladimir Davydov426589f2015-02-12 14:59:23 -08003807 lockdep_assert_held(&slab_mutex);
3808 for_each_memcg_cache(c, cachep) {
3809 /* return value determined by the root cache only */
3810 __do_tune_cpucache(c, limit, batchcount, shared, gfp);
Glauber Costa943a4512012-12-18 14:23:03 -08003811 }
3812
3813 return ret;
3814}
3815
Christoph Lameter18004c52012-07-06 15:25:12 -05003816/* Called with slab_mutex held always */
Pekka Enberg83b519e2009-06-10 19:40:04 +03003817static int enable_cpucache(struct kmem_cache *cachep, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818{
3819 int err;
Glauber Costa943a4512012-12-18 14:23:03 -08003820 int limit = 0;
3821 int shared = 0;
3822 int batchcount = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823
Glauber Costa943a4512012-12-18 14:23:03 -08003824 if (!is_root_cache(cachep)) {
3825 struct kmem_cache *root = memcg_root_cache(cachep);
3826 limit = root->limit;
3827 shared = root->shared;
3828 batchcount = root->batchcount;
3829 }
3830
3831 if (limit && shared && batchcount)
3832 goto skip_setup;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003833 /*
3834 * The head array serves three purposes:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003835 * - create a LIFO ordering, i.e. return objects that are cache-warm
3836 * - reduce the number of spinlock operations.
Andrew Mortona737b3e2006-03-22 00:08:11 -08003837 * - reduce the number of linked list operations on the slab and
Linus Torvalds1da177e2005-04-16 15:20:36 -07003838 * bufctl chains: array operations are cheaper.
3839 * The numbers are guessed, we should auto-tune as described by
3840 * Bonwick.
3841 */
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003842 if (cachep->size > 131072)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003843 limit = 1;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003844 else if (cachep->size > PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003845 limit = 8;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003846 else if (cachep->size > 1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003847 limit = 24;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003848 else if (cachep->size > 256)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003849 limit = 54;
3850 else
3851 limit = 120;
3852
Andrew Mortona737b3e2006-03-22 00:08:11 -08003853 /*
3854 * CPU bound tasks (e.g. network routing) can exhibit cpu bound
Linus Torvalds1da177e2005-04-16 15:20:36 -07003855 * allocation behaviour: Most allocs on one cpu, most free operations
3856 * on another cpu. For these cases, an efficient object passing between
3857 * cpus is necessary. This is provided by a shared array. The array
3858 * replaces Bonwick's magazine layer.
3859 * On uniprocessor, it's functionally equivalent (but less efficient)
3860 * to a larger limit. Thus disabled by default.
3861 */
3862 shared = 0;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003863 if (cachep->size <= PAGE_SIZE && num_possible_cpus() > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003864 shared = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865
3866#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08003867 /*
3868 * With debugging enabled, large batchcount lead to excessively long
3869 * periods with disabled local interrupts. Limit the batchcount
Linus Torvalds1da177e2005-04-16 15:20:36 -07003870 */
3871 if (limit > 32)
3872 limit = 32;
3873#endif
Glauber Costa943a4512012-12-18 14:23:03 -08003874 batchcount = (limit + 1) / 2;
3875skip_setup:
3876 err = do_tune_cpucache(cachep, limit, batchcount, shared, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003877 if (err)
Joe Perches11705322016-03-17 14:19:50 -07003878 pr_err("enable_cpucache failed for %s, error %d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003879 cachep->name, -err);
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07003880 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003881}
3882
Christoph Lameter1b552532006-03-22 00:09:07 -08003883/*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003884 * Drain an array if it contains any elements taking the node lock only if
3885 * necessary. Note that the node listlock also protects the array_cache
Christoph Lameterb18e7e62006-03-22 00:09:07 -08003886 * if drain_array() is used on the shared array.
Christoph Lameter1b552532006-03-22 00:09:07 -08003887 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003888static void drain_array(struct kmem_cache *cachep, struct kmem_cache_node *n,
Joonsoo Kim18726ca2016-05-19 17:10:02 -07003889 struct array_cache *ac, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003890{
Joonsoo Kim97654df2014-08-06 16:04:25 -07003891 LIST_HEAD(list);
Joonsoo Kim18726ca2016-05-19 17:10:02 -07003892
3893 /* ac from n->shared can be freed if we don't hold the slab_mutex. */
3894 check_mutex_acquired();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003895
Christoph Lameter1b552532006-03-22 00:09:07 -08003896 if (!ac || !ac->avail)
3897 return;
Joonsoo Kim18726ca2016-05-19 17:10:02 -07003898
3899 if (ac->touched) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900 ac->touched = 0;
Joonsoo Kim18726ca2016-05-19 17:10:02 -07003901 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902 }
Joonsoo Kim18726ca2016-05-19 17:10:02 -07003903
3904 spin_lock_irq(&n->list_lock);
3905 drain_array_locked(cachep, ac, node, false, &list);
3906 spin_unlock_irq(&n->list_lock);
3907
3908 slabs_destroy(cachep, &list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909}
3910
3911/**
3912 * cache_reap - Reclaim memory from caches.
Randy Dunlap05fb6bf2007-02-28 20:12:13 -08003913 * @w: work descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -07003914 *
3915 * Called from workqueue/eventd every few seconds.
3916 * Purpose:
3917 * - clear the per-cpu caches for this CPU.
3918 * - return freeable pages to the main free memory pool.
3919 *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003920 * If we cannot acquire the cache chain mutex then just give up - we'll try
3921 * again on the next iteration.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922 */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08003923static void cache_reap(struct work_struct *w)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003924{
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07003925 struct kmem_cache *searchp;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003926 struct kmem_cache_node *n;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003927 int node = numa_mem_id();
Jean Delvarebf6aede2009-04-02 16:56:54 -07003928 struct delayed_work *work = to_delayed_work(w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929
Christoph Lameter18004c52012-07-06 15:25:12 -05003930 if (!mutex_trylock(&slab_mutex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003931 /* Give up. Setup the next iteration. */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08003932 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933
Christoph Lameter18004c52012-07-06 15:25:12 -05003934 list_for_each_entry(searchp, &slab_caches, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003935 check_irq_on();
3936
Christoph Lameter35386e32006-03-22 00:09:05 -08003937 /*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003938 * We only take the node lock if absolutely necessary and we
Christoph Lameter35386e32006-03-22 00:09:05 -08003939 * have established with reasonable certainty that
3940 * we can do some work if the lock was obtained.
3941 */
Christoph Lameter18bf8542014-08-06 16:04:11 -07003942 n = get_node(searchp, node);
Christoph Lameter35386e32006-03-22 00:09:05 -08003943
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003944 reap_alien(searchp, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003945
Joonsoo Kim18726ca2016-05-19 17:10:02 -07003946 drain_array(searchp, n, cpu_cache_get(searchp), node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947
Christoph Lameter35386e32006-03-22 00:09:05 -08003948 /*
3949 * These are racy checks but it does not matter
3950 * if we skip one check or scan twice.
3951 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003952 if (time_after(n->next_reap, jiffies))
Christoph Lameter35386e32006-03-22 00:09:05 -08003953 goto next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08003955 n->next_reap = jiffies + REAPTIMEOUT_NODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956
Joonsoo Kim18726ca2016-05-19 17:10:02 -07003957 drain_array(searchp, n, n->shared, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003959 if (n->free_touched)
3960 n->free_touched = 0;
Christoph Lametered11d9e2006-06-30 01:55:45 -07003961 else {
3962 int freed;
3963
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003964 freed = drain_freelist(searchp, n, (n->free_limit +
Christoph Lametered11d9e2006-06-30 01:55:45 -07003965 5 * searchp->num - 1) / (5 * searchp->num));
3966 STATS_ADD_REAPED(searchp, freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003967 }
Christoph Lameter35386e32006-03-22 00:09:05 -08003968next:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003969 cond_resched();
3970 }
3971 check_irq_on();
Christoph Lameter18004c52012-07-06 15:25:12 -05003972 mutex_unlock(&slab_mutex);
Christoph Lameter8fce4d82006-03-09 17:33:54 -08003973 next_reap_node();
Christoph Lameter7c5cae32007-02-10 01:42:55 -08003974out:
Andrew Mortona737b3e2006-03-22 00:08:11 -08003975 /* Set up the next iteration */
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08003976 schedule_delayed_work(work, round_jiffies_relative(REAPTIMEOUT_AC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977}
3978
Linus Torvalds158a9622008-01-02 13:04:48 -08003979#ifdef CONFIG_SLABINFO
Glauber Costa0d7561c2012-10-19 18:20:27 +04003980void get_slabinfo(struct kmem_cache *cachep, struct slabinfo *sinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003981{
Joonsoo Kim8456a642013-10-24 10:07:49 +09003982 struct page *page;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003983 unsigned long active_objs;
3984 unsigned long num_objs;
3985 unsigned long active_slabs = 0;
3986 unsigned long num_slabs, free_objects = 0, shared_avail = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07003987 const char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003988 char *error = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07003989 int node;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003990 struct kmem_cache_node *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003991
Linus Torvalds1da177e2005-04-16 15:20:36 -07003992 active_objs = 0;
3993 num_slabs = 0;
Christoph Lameter18bf8542014-08-06 16:04:11 -07003994 for_each_kmem_cache_node(cachep, node, n) {
Christoph Lametere498be72005-09-09 13:03:32 -07003995
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08003996 check_irq_on();
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003997 spin_lock_irq(&n->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07003998
Joonsoo Kim8456a642013-10-24 10:07:49 +09003999 list_for_each_entry(page, &n->slabs_full, lru) {
4000 if (page->active != cachep->num && !error)
Christoph Lametere498be72005-09-09 13:03:32 -07004001 error = "slabs_full accounting error";
4002 active_objs += cachep->num;
4003 active_slabs++;
4004 }
Joonsoo Kim8456a642013-10-24 10:07:49 +09004005 list_for_each_entry(page, &n->slabs_partial, lru) {
4006 if (page->active == cachep->num && !error)
Joonsoo Kim106a74e2013-10-24 10:07:48 +09004007 error = "slabs_partial accounting error";
Joonsoo Kim8456a642013-10-24 10:07:49 +09004008 if (!page->active && !error)
Joonsoo Kim106a74e2013-10-24 10:07:48 +09004009 error = "slabs_partial accounting error";
Joonsoo Kim8456a642013-10-24 10:07:49 +09004010 active_objs += page->active;
Christoph Lametere498be72005-09-09 13:03:32 -07004011 active_slabs++;
4012 }
Joonsoo Kim8456a642013-10-24 10:07:49 +09004013 list_for_each_entry(page, &n->slabs_free, lru) {
4014 if (page->active && !error)
Joonsoo Kim106a74e2013-10-24 10:07:48 +09004015 error = "slabs_free accounting error";
Christoph Lametere498be72005-09-09 13:03:32 -07004016 num_slabs++;
4017 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004018 free_objects += n->free_objects;
4019 if (n->shared)
4020 shared_avail += n->shared->avail;
Christoph Lametere498be72005-09-09 13:03:32 -07004021
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004022 spin_unlock_irq(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004023 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004024 num_slabs += active_slabs;
4025 num_objs = num_slabs * cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07004026 if (num_objs - active_objs != free_objects && !error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004027 error = "free_objects accounting error";
4028
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004029 name = cachep->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004030 if (error)
Joe Perches11705322016-03-17 14:19:50 -07004031 pr_err("slab: cache %s error: %s\n", name, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004032
Glauber Costa0d7561c2012-10-19 18:20:27 +04004033 sinfo->active_objs = active_objs;
4034 sinfo->num_objs = num_objs;
4035 sinfo->active_slabs = active_slabs;
4036 sinfo->num_slabs = num_slabs;
4037 sinfo->shared_avail = shared_avail;
4038 sinfo->limit = cachep->limit;
4039 sinfo->batchcount = cachep->batchcount;
4040 sinfo->shared = cachep->shared;
4041 sinfo->objects_per_slab = cachep->num;
4042 sinfo->cache_order = cachep->gfporder;
4043}
4044
4045void slabinfo_show_stats(struct seq_file *m, struct kmem_cache *cachep)
4046{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004047#if STATS
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004048 { /* node stats */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004049 unsigned long high = cachep->high_mark;
4050 unsigned long allocs = cachep->num_allocations;
4051 unsigned long grown = cachep->grown;
4052 unsigned long reaped = cachep->reaped;
4053 unsigned long errors = cachep->errors;
4054 unsigned long max_freeable = cachep->max_freeable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004055 unsigned long node_allocs = cachep->node_allocs;
Christoph Lametere498be72005-09-09 13:03:32 -07004056 unsigned long node_frees = cachep->node_frees;
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -07004057 unsigned long overflows = cachep->node_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004058
Joe Perches756a0252016-03-17 14:19:47 -07004059 seq_printf(m, " : globalstat %7lu %6lu %5lu %4lu %4lu %4lu %4lu %4lu %4lu",
Joe Perchese92dd4f2010-03-26 19:27:58 -07004060 allocs, high, grown,
4061 reaped, errors, max_freeable, node_allocs,
4062 node_frees, overflows);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004063 }
4064 /* cpu stats */
4065 {
4066 unsigned long allochit = atomic_read(&cachep->allochit);
4067 unsigned long allocmiss = atomic_read(&cachep->allocmiss);
4068 unsigned long freehit = atomic_read(&cachep->freehit);
4069 unsigned long freemiss = atomic_read(&cachep->freemiss);
4070
4071 seq_printf(m, " : cpustat %6lu %6lu %6lu %6lu",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004072 allochit, allocmiss, freehit, freemiss);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004073 }
4074#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004075}
4076
Linus Torvalds1da177e2005-04-16 15:20:36 -07004077#define MAX_SLABINFO_WRITE 128
4078/**
4079 * slabinfo_write - Tuning for the slab allocator
4080 * @file: unused
4081 * @buffer: user buffer
4082 * @count: data length
4083 * @ppos: unused
4084 */
Glauber Costab7454ad2012-10-19 18:20:25 +04004085ssize_t slabinfo_write(struct file *file, const char __user *buffer,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004086 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004087{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004088 char kbuf[MAX_SLABINFO_WRITE + 1], *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004089 int limit, batchcount, shared, res;
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004090 struct kmem_cache *cachep;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004091
Linus Torvalds1da177e2005-04-16 15:20:36 -07004092 if (count > MAX_SLABINFO_WRITE)
4093 return -EINVAL;
4094 if (copy_from_user(&kbuf, buffer, count))
4095 return -EFAULT;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004096 kbuf[MAX_SLABINFO_WRITE] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07004097
4098 tmp = strchr(kbuf, ' ');
4099 if (!tmp)
4100 return -EINVAL;
4101 *tmp = '\0';
4102 tmp++;
4103 if (sscanf(tmp, " %d %d %d", &limit, &batchcount, &shared) != 3)
4104 return -EINVAL;
4105
4106 /* Find the cache in the chain of caches. */
Christoph Lameter18004c52012-07-06 15:25:12 -05004107 mutex_lock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004108 res = -EINVAL;
Christoph Lameter18004c52012-07-06 15:25:12 -05004109 list_for_each_entry(cachep, &slab_caches, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004110 if (!strcmp(cachep->name, kbuf)) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08004111 if (limit < 1 || batchcount < 1 ||
4112 batchcount > limit || shared < 0) {
Christoph Lametere498be72005-09-09 13:03:32 -07004113 res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004114 } else {
Christoph Lametere498be72005-09-09 13:03:32 -07004115 res = do_tune_cpucache(cachep, limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03004116 batchcount, shared,
4117 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004118 }
4119 break;
4120 }
4121 }
Christoph Lameter18004c52012-07-06 15:25:12 -05004122 mutex_unlock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004123 if (res >= 0)
4124 res = count;
4125 return res;
4126}
Al Viro871751e2006-03-25 03:06:39 -08004127
4128#ifdef CONFIG_DEBUG_SLAB_LEAK
4129
Al Viro871751e2006-03-25 03:06:39 -08004130static inline int add_caller(unsigned long *n, unsigned long v)
4131{
4132 unsigned long *p;
4133 int l;
4134 if (!v)
4135 return 1;
4136 l = n[1];
4137 p = n + 2;
4138 while (l) {
4139 int i = l/2;
4140 unsigned long *q = p + 2 * i;
4141 if (*q == v) {
4142 q[1]++;
4143 return 1;
4144 }
4145 if (*q > v) {
4146 l = i;
4147 } else {
4148 p = q + 2;
4149 l -= i + 1;
4150 }
4151 }
4152 if (++n[1] == n[0])
4153 return 0;
4154 memmove(p + 2, p, n[1] * 2 * sizeof(unsigned long) - ((void *)p - (void *)n));
4155 p[0] = v;
4156 p[1] = 1;
4157 return 1;
4158}
4159
Joonsoo Kim8456a642013-10-24 10:07:49 +09004160static void handle_slab(unsigned long *n, struct kmem_cache *c,
4161 struct page *page)
Al Viro871751e2006-03-25 03:06:39 -08004162{
4163 void *p;
Joonsoo Kimd31676d2016-03-15 14:54:24 -07004164 int i, j;
4165 unsigned long v;
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09004166
Al Viro871751e2006-03-25 03:06:39 -08004167 if (n[0] == n[1])
4168 return;
Joonsoo Kim8456a642013-10-24 10:07:49 +09004169 for (i = 0, p = page->s_mem; i < c->num; i++, p += c->size) {
Joonsoo Kimd31676d2016-03-15 14:54:24 -07004170 bool active = true;
4171
4172 for (j = page->active; j < c->num; j++) {
4173 if (get_free_obj(page, j) == i) {
4174 active = false;
4175 break;
4176 }
4177 }
4178
4179 if (!active)
Al Viro871751e2006-03-25 03:06:39 -08004180 continue;
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09004181
Joonsoo Kimd31676d2016-03-15 14:54:24 -07004182 /*
4183 * probe_kernel_read() is used for DEBUG_PAGEALLOC. page table
4184 * mapping is established when actual object allocation and
4185 * we could mistakenly access the unmapped object in the cpu
4186 * cache.
4187 */
4188 if (probe_kernel_read(&v, dbg_userword(c, p), sizeof(v)))
4189 continue;
4190
4191 if (!add_caller(n, v))
Al Viro871751e2006-03-25 03:06:39 -08004192 return;
4193 }
4194}
4195
4196static void show_symbol(struct seq_file *m, unsigned long address)
4197{
4198#ifdef CONFIG_KALLSYMS
Al Viro871751e2006-03-25 03:06:39 -08004199 unsigned long offset, size;
Tejun Heo9281ace2007-07-17 04:03:51 -07004200 char modname[MODULE_NAME_LEN], name[KSYM_NAME_LEN];
Al Viro871751e2006-03-25 03:06:39 -08004201
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004202 if (lookup_symbol_attrs(address, &size, &offset, modname, name) == 0) {
Al Viro871751e2006-03-25 03:06:39 -08004203 seq_printf(m, "%s+%#lx/%#lx", name, offset, size);
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004204 if (modname[0])
Al Viro871751e2006-03-25 03:06:39 -08004205 seq_printf(m, " [%s]", modname);
4206 return;
4207 }
4208#endif
4209 seq_printf(m, "%p", (void *)address);
4210}
4211
4212static int leaks_show(struct seq_file *m, void *p)
4213{
Thierry Reding0672aa72012-06-22 19:42:49 +02004214 struct kmem_cache *cachep = list_entry(p, struct kmem_cache, list);
Joonsoo Kim8456a642013-10-24 10:07:49 +09004215 struct page *page;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004216 struct kmem_cache_node *n;
Al Viro871751e2006-03-25 03:06:39 -08004217 const char *name;
Christoph Lameterdb845062013-02-05 18:45:23 +00004218 unsigned long *x = m->private;
Al Viro871751e2006-03-25 03:06:39 -08004219 int node;
4220 int i;
4221
4222 if (!(cachep->flags & SLAB_STORE_USER))
4223 return 0;
4224 if (!(cachep->flags & SLAB_RED_ZONE))
4225 return 0;
4226
Joonsoo Kimd31676d2016-03-15 14:54:24 -07004227 /*
4228 * Set store_user_clean and start to grab stored user information
4229 * for all objects on this cache. If some alloc/free requests comes
4230 * during the processing, information would be wrong so restart
4231 * whole processing.
4232 */
4233 do {
4234 set_store_user_clean(cachep);
4235 drain_cpu_caches(cachep);
Al Viro871751e2006-03-25 03:06:39 -08004236
Joonsoo Kimd31676d2016-03-15 14:54:24 -07004237 x[1] = 0;
Al Viro871751e2006-03-25 03:06:39 -08004238
Joonsoo Kimd31676d2016-03-15 14:54:24 -07004239 for_each_kmem_cache_node(cachep, node, n) {
Al Viro871751e2006-03-25 03:06:39 -08004240
Joonsoo Kimd31676d2016-03-15 14:54:24 -07004241 check_irq_on();
4242 spin_lock_irq(&n->list_lock);
Al Viro871751e2006-03-25 03:06:39 -08004243
Joonsoo Kimd31676d2016-03-15 14:54:24 -07004244 list_for_each_entry(page, &n->slabs_full, lru)
4245 handle_slab(x, cachep, page);
4246 list_for_each_entry(page, &n->slabs_partial, lru)
4247 handle_slab(x, cachep, page);
4248 spin_unlock_irq(&n->list_lock);
4249 }
4250 } while (!is_store_user_clean(cachep));
4251
Al Viro871751e2006-03-25 03:06:39 -08004252 name = cachep->name;
Christoph Lameterdb845062013-02-05 18:45:23 +00004253 if (x[0] == x[1]) {
Al Viro871751e2006-03-25 03:06:39 -08004254 /* Increase the buffer size */
Christoph Lameter18004c52012-07-06 15:25:12 -05004255 mutex_unlock(&slab_mutex);
Christoph Lameterdb845062013-02-05 18:45:23 +00004256 m->private = kzalloc(x[0] * 4 * sizeof(unsigned long), GFP_KERNEL);
Al Viro871751e2006-03-25 03:06:39 -08004257 if (!m->private) {
4258 /* Too bad, we are really out */
Christoph Lameterdb845062013-02-05 18:45:23 +00004259 m->private = x;
Christoph Lameter18004c52012-07-06 15:25:12 -05004260 mutex_lock(&slab_mutex);
Al Viro871751e2006-03-25 03:06:39 -08004261 return -ENOMEM;
4262 }
Christoph Lameterdb845062013-02-05 18:45:23 +00004263 *(unsigned long *)m->private = x[0] * 2;
4264 kfree(x);
Christoph Lameter18004c52012-07-06 15:25:12 -05004265 mutex_lock(&slab_mutex);
Al Viro871751e2006-03-25 03:06:39 -08004266 /* Now make sure this entry will be retried */
4267 m->count = m->size;
4268 return 0;
4269 }
Christoph Lameterdb845062013-02-05 18:45:23 +00004270 for (i = 0; i < x[1]; i++) {
4271 seq_printf(m, "%s: %lu ", name, x[2*i+3]);
4272 show_symbol(m, x[2*i+2]);
Al Viro871751e2006-03-25 03:06:39 -08004273 seq_putc(m, '\n');
4274 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004275
Al Viro871751e2006-03-25 03:06:39 -08004276 return 0;
4277}
4278
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004279static const struct seq_operations slabstats_op = {
Vladimir Davydov1df3b262014-12-10 15:42:16 -08004280 .start = slab_start,
Wanpeng Li276a2432013-07-08 08:08:28 +08004281 .next = slab_next,
4282 .stop = slab_stop,
Al Viro871751e2006-03-25 03:06:39 -08004283 .show = leaks_show,
4284};
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004285
4286static int slabstats_open(struct inode *inode, struct file *file)
4287{
Rob Jonesb208ce32014-10-09 15:28:03 -07004288 unsigned long *n;
4289
4290 n = __seq_open_private(file, &slabstats_op, PAGE_SIZE);
4291 if (!n)
4292 return -ENOMEM;
4293
4294 *n = PAGE_SIZE / (2 * sizeof(unsigned long));
4295
4296 return 0;
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004297}
4298
4299static const struct file_operations proc_slabstats_operations = {
4300 .open = slabstats_open,
4301 .read = seq_read,
4302 .llseek = seq_lseek,
4303 .release = seq_release_private,
4304};
Al Viro871751e2006-03-25 03:06:39 -08004305#endif
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004306
4307static int __init slab_proc_init(void)
4308{
4309#ifdef CONFIG_DEBUG_SLAB_LEAK
4310 proc_create("slab_allocators", 0, NULL, &proc_slabstats_operations);
4311#endif
4312 return 0;
4313}
4314module_init(slab_proc_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004315#endif
4316
Manfred Spraul00e145b2005-09-03 15:55:07 -07004317/**
4318 * ksize - get the actual amount of memory allocated for a given object
4319 * @objp: Pointer to the object
4320 *
4321 * kmalloc may internally round up allocations and return more memory
4322 * than requested. ksize() can be used to determine the actual amount of
4323 * memory allocated. The caller may use this additional memory, even though
4324 * a smaller amount of memory was initially specified with the kmalloc call.
4325 * The caller must guarantee that objp points to a valid object previously
4326 * allocated with either kmalloc() or kmem_cache_alloc(). The object
4327 * must not be freed during the duration of the call.
4328 */
Pekka Enbergfd76bab2007-05-06 14:48:40 -07004329size_t ksize(const void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004330{
Alexander Potapenko7ed2f9e2016-03-25 14:21:59 -07004331 size_t size;
4332
Christoph Lameteref8b4522007-10-16 01:24:46 -07004333 BUG_ON(!objp);
4334 if (unlikely(objp == ZERO_SIZE_PTR))
Manfred Spraul00e145b2005-09-03 15:55:07 -07004335 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004336
Alexander Potapenko7ed2f9e2016-03-25 14:21:59 -07004337 size = virt_to_cache(objp)->object_size;
4338 /* We assume that ksize callers could use the whole allocated area,
4339 * so we need to unpoison this area.
4340 */
Alexander Potapenko505f5dc2016-03-25 14:22:02 -07004341 kasan_krealloc(objp, size, GFP_NOWAIT);
Alexander Potapenko7ed2f9e2016-03-25 14:21:59 -07004342
4343 return size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004344}
Kirill A. Shutemovb1aabec2009-02-10 15:21:44 +02004345EXPORT_SYMBOL(ksize);