blob: 9bef33bc4daa769bf7f7c2581d187d1b4e0d1afa [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
Joonsoo Kimded0ecf2016-05-19 17:10:11 -0700851static int init_cache_node(struct kmem_cache *cachep, int node, gfp_t gfp)
852{
853 struct kmem_cache_node *n;
854
855 /*
856 * Set up the kmem_cache_node for cpu before we can
857 * begin anything. Make sure some other cpu on this
858 * node has not already allocated this
859 */
860 n = get_node(cachep, node);
861 if (n) {
862 spin_lock_irq(&n->list_lock);
863 n->free_limit = (1 + nr_cpus_node(node)) * cachep->batchcount +
864 cachep->num;
865 spin_unlock_irq(&n->list_lock);
866
867 return 0;
868 }
869
870 n = kmalloc_node(sizeof(struct kmem_cache_node), gfp, node);
871 if (!n)
872 return -ENOMEM;
873
874 kmem_cache_node_init(n);
875 n->next_reap = jiffies + REAPTIMEOUT_NODE +
876 ((unsigned long)cachep) % REAPTIMEOUT_NODE;
877
878 n->free_limit =
879 (1 + nr_cpus_node(node)) * cachep->batchcount + cachep->num;
880
881 /*
882 * The kmem_cache_nodes don't come and go as CPUs
883 * come and go. slab_mutex is sufficient
884 * protection here.
885 */
886 cachep->node[node] = n;
887
888 return 0;
889}
890
David Rientjes8f9f8d92010-03-27 19:40:47 -0700891/*
Christoph Lameter6a673682013-01-10 19:14:19 +0000892 * Allocates and initializes node for a node on each slab cache, used for
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000893 * either memory or cpu hotplug. If memory is being hot-added, the kmem_cache_node
David Rientjes8f9f8d92010-03-27 19:40:47 -0700894 * will be allocated off-node since memory is not yet online for the new node.
Christoph Lameter6a673682013-01-10 19:14:19 +0000895 * When hotplugging memory or a cpu, existing node are not replaced if
David Rientjes8f9f8d92010-03-27 19:40:47 -0700896 * already in use.
897 *
Christoph Lameter18004c52012-07-06 15:25:12 -0500898 * Must hold slab_mutex.
David Rientjes8f9f8d92010-03-27 19:40:47 -0700899 */
Christoph Lameter6a673682013-01-10 19:14:19 +0000900static int init_cache_node_node(int node)
David Rientjes8f9f8d92010-03-27 19:40:47 -0700901{
Joonsoo Kimded0ecf2016-05-19 17:10:11 -0700902 int ret;
David Rientjes8f9f8d92010-03-27 19:40:47 -0700903 struct kmem_cache *cachep;
David Rientjes8f9f8d92010-03-27 19:40:47 -0700904
Christoph Lameter18004c52012-07-06 15:25:12 -0500905 list_for_each_entry(cachep, &slab_caches, list) {
Joonsoo Kimded0ecf2016-05-19 17:10:11 -0700906 ret = init_cache_node(cachep, node, GFP_KERNEL);
907 if (ret)
908 return ret;
David Rientjes8f9f8d92010-03-27 19:40:47 -0700909 }
Joonsoo Kimded0ecf2016-05-19 17:10:11 -0700910
David Rientjes8f9f8d92010-03-27 19:40:47 -0700911 return 0;
912}
913
Paul Gortmaker0db06282013-06-19 14:53:51 -0400914static void cpuup_canceled(long cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915{
Akinobu Mitafbf1e472007-10-18 03:05:09 -0700916 struct kmem_cache *cachep;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000917 struct kmem_cache_node *n = NULL;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -0700918 int node = cpu_to_mem(cpu);
Rusty Russella70f7302009-03-13 14:49:46 +1030919 const struct cpumask *mask = cpumask_of_node(node);
Akinobu Mitafbf1e472007-10-18 03:05:09 -0700920
Christoph Lameter18004c52012-07-06 15:25:12 -0500921 list_for_each_entry(cachep, &slab_caches, list) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -0700922 struct array_cache *nc;
923 struct array_cache *shared;
Joonsoo Kimc8522a32014-08-06 16:04:29 -0700924 struct alien_cache **alien;
Joonsoo Kim97654df2014-08-06 16:04:25 -0700925 LIST_HEAD(list);
Akinobu Mitafbf1e472007-10-18 03:05:09 -0700926
Christoph Lameter18bf8542014-08-06 16:04:11 -0700927 n = get_node(cachep, node);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000928 if (!n)
Joonsoo Kimbf0dea22014-10-09 15:26:27 -0700929 continue;
Akinobu Mitafbf1e472007-10-18 03:05:09 -0700930
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000931 spin_lock_irq(&n->list_lock);
Akinobu Mitafbf1e472007-10-18 03:05:09 -0700932
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000933 /* Free limit for this kmem_cache_node */
934 n->free_limit -= cachep->batchcount;
Joonsoo Kimbf0dea22014-10-09 15:26:27 -0700935
936 /* cpu is dead; no one can alloc from it. */
937 nc = per_cpu_ptr(cachep->cpu_cache, cpu);
938 if (nc) {
Joonsoo Kim97654df2014-08-06 16:04:25 -0700939 free_block(cachep, nc->entry, nc->avail, node, &list);
Joonsoo Kimbf0dea22014-10-09 15:26:27 -0700940 nc->avail = 0;
941 }
Akinobu Mitafbf1e472007-10-18 03:05:09 -0700942
Rusty Russell58463c12009-12-17 11:43:12 -0600943 if (!cpumask_empty(mask)) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000944 spin_unlock_irq(&n->list_lock);
Joonsoo Kimbf0dea22014-10-09 15:26:27 -0700945 goto free_slab;
Akinobu Mitafbf1e472007-10-18 03:05:09 -0700946 }
947
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000948 shared = n->shared;
Akinobu Mitafbf1e472007-10-18 03:05:09 -0700949 if (shared) {
950 free_block(cachep, shared->entry,
Joonsoo Kim97654df2014-08-06 16:04:25 -0700951 shared->avail, node, &list);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000952 n->shared = NULL;
Akinobu Mitafbf1e472007-10-18 03:05:09 -0700953 }
954
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000955 alien = n->alien;
956 n->alien = NULL;
Akinobu Mitafbf1e472007-10-18 03:05:09 -0700957
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000958 spin_unlock_irq(&n->list_lock);
Akinobu Mitafbf1e472007-10-18 03:05:09 -0700959
960 kfree(shared);
961 if (alien) {
962 drain_alien_cache(cachep, alien);
963 free_alien_cache(alien);
964 }
Joonsoo Kimbf0dea22014-10-09 15:26:27 -0700965
966free_slab:
Joonsoo Kim97654df2014-08-06 16:04:25 -0700967 slabs_destroy(cachep, &list);
Akinobu Mitafbf1e472007-10-18 03:05:09 -0700968 }
969 /*
970 * In the previous loop, all the objects were freed to
971 * the respective cache's slabs, now we can go ahead and
972 * shrink each nodelist to its limit.
973 */
Christoph Lameter18004c52012-07-06 15:25:12 -0500974 list_for_each_entry(cachep, &slab_caches, list) {
Christoph Lameter18bf8542014-08-06 16:04:11 -0700975 n = get_node(cachep, node);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000976 if (!n)
Akinobu Mitafbf1e472007-10-18 03:05:09 -0700977 continue;
Joonsoo Kima5aa63a2016-05-19 17:10:08 -0700978 drain_freelist(cachep, n, INT_MAX);
Akinobu Mitafbf1e472007-10-18 03:05:09 -0700979 }
980}
981
Paul Gortmaker0db06282013-06-19 14:53:51 -0400982static int cpuup_prepare(long cpu)
Akinobu Mitafbf1e472007-10-18 03:05:09 -0700983{
Pekka Enberg343e0d72006-02-01 03:05:50 -0800984 struct kmem_cache *cachep;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000985 struct kmem_cache_node *n = NULL;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -0700986 int node = cpu_to_mem(cpu);
David Rientjes8f9f8d92010-03-27 19:40:47 -0700987 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988
Akinobu Mitafbf1e472007-10-18 03:05:09 -0700989 /*
990 * We need to do this right in the beginning since
991 * alloc_arraycache's are going to use this list.
992 * kmalloc_node allows us to add the slab to the right
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000993 * kmem_cache_node and not this cpu's kmem_cache_node
Akinobu Mitafbf1e472007-10-18 03:05:09 -0700994 */
Christoph Lameter6a673682013-01-10 19:14:19 +0000995 err = init_cache_node_node(node);
David Rientjes8f9f8d92010-03-27 19:40:47 -0700996 if (err < 0)
997 goto bad;
Akinobu Mitafbf1e472007-10-18 03:05:09 -0700998
999 /*
1000 * Now we can go ahead with allocating the shared arrays and
1001 * array caches
1002 */
Christoph Lameter18004c52012-07-06 15:25:12 -05001003 list_for_each_entry(cachep, &slab_caches, list) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001004 struct array_cache *shared = NULL;
Joonsoo Kimc8522a32014-08-06 16:04:29 -07001005 struct alien_cache **alien = NULL;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001006
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001007 if (cachep->shared) {
1008 shared = alloc_arraycache(node,
1009 cachep->shared * cachep->batchcount,
Pekka Enberg83b519e2009-06-10 19:40:04 +03001010 0xbaadf00d, GFP_KERNEL);
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07001011 if (!shared)
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001012 goto bad;
1013 }
1014 if (use_alien_caches) {
Pekka Enberg83b519e2009-06-10 19:40:04 +03001015 alien = alloc_alien_cache(node, cachep->limit, GFP_KERNEL);
Akinobu Mita12d00f62007-10-18 03:05:11 -07001016 if (!alien) {
1017 kfree(shared);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001018 goto bad;
Akinobu Mita12d00f62007-10-18 03:05:11 -07001019 }
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001020 }
Christoph Lameter18bf8542014-08-06 16:04:11 -07001021 n = get_node(cachep, node);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001022 BUG_ON(!n);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001023
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001024 spin_lock_irq(&n->list_lock);
1025 if (!n->shared) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001026 /*
1027 * We are serialised from CPU_DEAD or
1028 * CPU_UP_CANCELLED by the cpucontrol lock
1029 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001030 n->shared = shared;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001031 shared = NULL;
1032 }
1033#ifdef CONFIG_NUMA
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001034 if (!n->alien) {
1035 n->alien = alien;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001036 alien = NULL;
1037 }
1038#endif
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001039 spin_unlock_irq(&n->list_lock);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001040 kfree(shared);
1041 free_alien_cache(alien);
1042 }
Pekka Enbergce79ddc2009-11-23 22:01:15 +02001043
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001044 return 0;
1045bad:
Akinobu Mita12d00f62007-10-18 03:05:11 -07001046 cpuup_canceled(cpu);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001047 return -ENOMEM;
1048}
1049
Paul Gortmaker0db06282013-06-19 14:53:51 -04001050static int cpuup_callback(struct notifier_block *nfb,
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001051 unsigned long action, void *hcpu)
1052{
1053 long cpu = (long)hcpu;
1054 int err = 0;
1055
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 switch (action) {
Heiko Carstens38c3bd92007-05-09 02:34:05 -07001057 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001058 case CPU_UP_PREPARE_FROZEN:
Christoph Lameter18004c52012-07-06 15:25:12 -05001059 mutex_lock(&slab_mutex);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001060 err = cpuup_prepare(cpu);
Christoph Lameter18004c52012-07-06 15:25:12 -05001061 mutex_unlock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 break;
1063 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001064 case CPU_ONLINE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 start_cpu_timer(cpu);
1066 break;
1067#ifdef CONFIG_HOTPLUG_CPU
Christoph Lameter5830c592007-05-09 02:34:22 -07001068 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001069 case CPU_DOWN_PREPARE_FROZEN:
Christoph Lameter5830c592007-05-09 02:34:22 -07001070 /*
Christoph Lameter18004c52012-07-06 15:25:12 -05001071 * Shutdown cache reaper. Note that the slab_mutex is
Christoph Lameter5830c592007-05-09 02:34:22 -07001072 * held so that if cache_reap() is invoked it cannot do
1073 * anything expensive but will only modify reap_work
1074 * and reschedule the timer.
1075 */
Tejun Heoafe2c512010-12-14 16:21:17 +01001076 cancel_delayed_work_sync(&per_cpu(slab_reap_work, cpu));
Christoph Lameter5830c592007-05-09 02:34:22 -07001077 /* Now the cache_reaper is guaranteed to be not running. */
Tejun Heo1871e522009-10-29 22:34:13 +09001078 per_cpu(slab_reap_work, cpu).work.func = NULL;
Christoph Lameter5830c592007-05-09 02:34:22 -07001079 break;
1080 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001081 case CPU_DOWN_FAILED_FROZEN:
Christoph Lameter5830c592007-05-09 02:34:22 -07001082 start_cpu_timer(cpu);
1083 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001085 case CPU_DEAD_FROZEN:
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001086 /*
1087 * Even if all the cpus of a node are down, we don't free the
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001088 * kmem_cache_node of any cache. This to avoid a race between
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001089 * cpu_down, and a kmalloc allocation from another cpu for
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001090 * memory from the node of the cpu going down. The node
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001091 * structure is usually allocated from kmem_cache_create() and
1092 * gets destroyed at kmem_cache_destroy().
1093 */
Simon Arlott183ff222007-10-20 01:27:18 +02001094 /* fall through */
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08001095#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001097 case CPU_UP_CANCELED_FROZEN:
Christoph Lameter18004c52012-07-06 15:25:12 -05001098 mutex_lock(&slab_mutex);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001099 cpuup_canceled(cpu);
Christoph Lameter18004c52012-07-06 15:25:12 -05001100 mutex_unlock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001101 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 }
Akinobu Mitaeac40682010-05-26 14:43:32 -07001103 return notifier_from_errno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104}
1105
Paul Gortmaker0db06282013-06-19 14:53:51 -04001106static struct notifier_block cpucache_notifier = {
Chandra Seetharaman74b85f32006-06-27 02:54:09 -07001107 &cpuup_callback, NULL, 0
1108};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109
David Rientjes8f9f8d92010-03-27 19:40:47 -07001110#if defined(CONFIG_NUMA) && defined(CONFIG_MEMORY_HOTPLUG)
1111/*
1112 * Drains freelist for a node on each slab cache, used for memory hot-remove.
1113 * Returns -EBUSY if all objects cannot be drained so that the node is not
1114 * removed.
1115 *
Christoph Lameter18004c52012-07-06 15:25:12 -05001116 * Must hold slab_mutex.
David Rientjes8f9f8d92010-03-27 19:40:47 -07001117 */
Christoph Lameter6a673682013-01-10 19:14:19 +00001118static int __meminit drain_cache_node_node(int node)
David Rientjes8f9f8d92010-03-27 19:40:47 -07001119{
1120 struct kmem_cache *cachep;
1121 int ret = 0;
1122
Christoph Lameter18004c52012-07-06 15:25:12 -05001123 list_for_each_entry(cachep, &slab_caches, list) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001124 struct kmem_cache_node *n;
David Rientjes8f9f8d92010-03-27 19:40:47 -07001125
Christoph Lameter18bf8542014-08-06 16:04:11 -07001126 n = get_node(cachep, node);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001127 if (!n)
David Rientjes8f9f8d92010-03-27 19:40:47 -07001128 continue;
1129
Joonsoo Kima5aa63a2016-05-19 17:10:08 -07001130 drain_freelist(cachep, n, INT_MAX);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001131
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001132 if (!list_empty(&n->slabs_full) ||
1133 !list_empty(&n->slabs_partial)) {
David Rientjes8f9f8d92010-03-27 19:40:47 -07001134 ret = -EBUSY;
1135 break;
1136 }
1137 }
1138 return ret;
1139}
1140
1141static int __meminit slab_memory_callback(struct notifier_block *self,
1142 unsigned long action, void *arg)
1143{
1144 struct memory_notify *mnb = arg;
1145 int ret = 0;
1146 int nid;
1147
1148 nid = mnb->status_change_nid;
1149 if (nid < 0)
1150 goto out;
1151
1152 switch (action) {
1153 case MEM_GOING_ONLINE:
Christoph Lameter18004c52012-07-06 15:25:12 -05001154 mutex_lock(&slab_mutex);
Christoph Lameter6a673682013-01-10 19:14:19 +00001155 ret = init_cache_node_node(nid);
Christoph Lameter18004c52012-07-06 15:25:12 -05001156 mutex_unlock(&slab_mutex);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001157 break;
1158 case MEM_GOING_OFFLINE:
Christoph Lameter18004c52012-07-06 15:25:12 -05001159 mutex_lock(&slab_mutex);
Christoph Lameter6a673682013-01-10 19:14:19 +00001160 ret = drain_cache_node_node(nid);
Christoph Lameter18004c52012-07-06 15:25:12 -05001161 mutex_unlock(&slab_mutex);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001162 break;
1163 case MEM_ONLINE:
1164 case MEM_OFFLINE:
1165 case MEM_CANCEL_ONLINE:
1166 case MEM_CANCEL_OFFLINE:
1167 break;
1168 }
1169out:
Prarit Bhargava5fda1bd2011-03-22 16:30:49 -07001170 return notifier_from_errno(ret);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001171}
1172#endif /* CONFIG_NUMA && CONFIG_MEMORY_HOTPLUG */
1173
Christoph Lametere498be72005-09-09 13:03:32 -07001174/*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001175 * swap the static kmem_cache_node with kmalloced memory
Christoph Lametere498be72005-09-09 13:03:32 -07001176 */
Christoph Lameter6744f082013-01-10 19:12:17 +00001177static void __init init_list(struct kmem_cache *cachep, struct kmem_cache_node *list,
David Rientjes8f9f8d92010-03-27 19:40:47 -07001178 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07001179{
Christoph Lameter6744f082013-01-10 19:12:17 +00001180 struct kmem_cache_node *ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001181
Christoph Lameter6744f082013-01-10 19:12:17 +00001182 ptr = kmalloc_node(sizeof(struct kmem_cache_node), GFP_NOWAIT, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07001183 BUG_ON(!ptr);
1184
Christoph Lameter6744f082013-01-10 19:12:17 +00001185 memcpy(ptr, list, sizeof(struct kmem_cache_node));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001186 /*
1187 * Do not assume that spinlocks can be initialized via memcpy:
1188 */
1189 spin_lock_init(&ptr->list_lock);
1190
Christoph Lametere498be72005-09-09 13:03:32 -07001191 MAKE_ALL_LISTS(cachep, ptr, nodeid);
Christoph Lameter6a673682013-01-10 19:14:19 +00001192 cachep->node[nodeid] = ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001193}
1194
Andrew Mortona737b3e2006-03-22 00:08:11 -08001195/*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001196 * For setting up all the kmem_cache_node for cache whose buffer_size is same as
1197 * size of kmem_cache_node.
Pekka Enberg556a1692008-01-25 08:20:51 +02001198 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001199static void __init set_up_node(struct kmem_cache *cachep, int index)
Pekka Enberg556a1692008-01-25 08:20:51 +02001200{
1201 int node;
1202
1203 for_each_online_node(node) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001204 cachep->node[node] = &init_kmem_cache_node[index + node];
Christoph Lameter6a673682013-01-10 19:14:19 +00001205 cachep->node[node]->next_reap = jiffies +
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08001206 REAPTIMEOUT_NODE +
1207 ((unsigned long)cachep) % REAPTIMEOUT_NODE;
Pekka Enberg556a1692008-01-25 08:20:51 +02001208 }
1209}
1210
1211/*
Andrew Mortona737b3e2006-03-22 00:08:11 -08001212 * Initialisation. Called after the page allocator have been initialised and
1213 * before smp_init().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 */
1215void __init kmem_cache_init(void)
1216{
Christoph Lametere498be72005-09-09 13:03:32 -07001217 int i;
1218
Joonsoo Kim68126702013-10-24 10:07:42 +09001219 BUILD_BUG_ON(sizeof(((struct page *)NULL)->lru) <
1220 sizeof(struct rcu_head));
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001221 kmem_cache = &kmem_cache_boot;
1222
Joonsoo Kim88881772016-05-19 17:10:05 -07001223 if (!IS_ENABLED(CONFIG_NUMA) || num_possible_nodes() == 1)
Siddha, Suresh B62918a02007-05-02 19:27:18 +02001224 use_alien_caches = 0;
1225
Christoph Lameter3c583462012-11-28 16:23:01 +00001226 for (i = 0; i < NUM_INIT_LISTS; i++)
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001227 kmem_cache_node_init(&init_kmem_cache_node[i]);
Christoph Lameter3c583462012-11-28 16:23:01 +00001228
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 /*
1230 * Fragmentation resistance on low memory - only use bigger
David Rientjes3df1ccc2011-10-18 22:09:28 -07001231 * page orders on machines with more than 32MB of memory if
1232 * not overridden on the command line.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233 */
David Rientjes3df1ccc2011-10-18 22:09:28 -07001234 if (!slab_max_order_set && totalram_pages > (32 << 20) >> PAGE_SHIFT)
David Rientjes543585c2011-10-18 22:09:24 -07001235 slab_max_order = SLAB_MAX_ORDER_HI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
Linus Torvalds1da177e2005-04-16 15:20:36 -07001237 /* Bootstrap is tricky, because several objects are allocated
1238 * from caches that do not exist yet:
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001239 * 1) initialize the kmem_cache cache: it contains the struct
1240 * kmem_cache structures of all caches, except kmem_cache itself:
1241 * kmem_cache is statically allocated.
Christoph Lametere498be72005-09-09 13:03:32 -07001242 * Initially an __init data area is used for the head array and the
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001243 * kmem_cache_node structures, it's replaced with a kmalloc allocated
Christoph Lametere498be72005-09-09 13:03:32 -07001244 * array at the end of the bootstrap.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 * 2) Create the first kmalloc cache.
Pekka Enberg343e0d72006-02-01 03:05:50 -08001246 * The struct kmem_cache for the new cache is allocated normally.
Christoph Lametere498be72005-09-09 13:03:32 -07001247 * An __init data area is used for the head array.
1248 * 3) Create the remaining kmalloc caches, with minimally sized
1249 * head arrays.
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001250 * 4) Replace the __init data head arrays for kmem_cache and the first
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 * kmalloc cache with kmalloc allocated arrays.
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001252 * 5) Replace the __init data for kmem_cache_node for kmem_cache and
Christoph Lametere498be72005-09-09 13:03:32 -07001253 * the other cache's with kmalloc allocated memory.
1254 * 6) Resize the head arrays of the kmalloc caches to their final sizes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255 */
1256
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001257 /* 1) create the kmem_cache */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001258
Eric Dumazet8da34302007-05-06 14:49:29 -07001259 /*
Eric Dumazetb56efcf2011-07-20 19:04:23 +02001260 * struct kmem_cache size depends on nr_node_ids & nr_cpu_ids
Eric Dumazet8da34302007-05-06 14:49:29 -07001261 */
Christoph Lameter2f9baa92012-11-28 16:23:09 +00001262 create_boot_cache(kmem_cache, "kmem_cache",
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07001263 offsetof(struct kmem_cache, node) +
Christoph Lameter6744f082013-01-10 19:12:17 +00001264 nr_node_ids * sizeof(struct kmem_cache_node *),
Christoph Lameter2f9baa92012-11-28 16:23:09 +00001265 SLAB_HWCACHE_ALIGN);
1266 list_add(&kmem_cache->list, &slab_caches);
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07001267 slab_state = PARTIAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268
Andrew Mortona737b3e2006-03-22 00:08:11 -08001269 /*
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07001270 * Initialize the caches that provide memory for the kmem_cache_node
1271 * structures first. Without this, further allocations will bug.
Christoph Lametere498be72005-09-09 13:03:32 -07001272 */
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07001273 kmalloc_caches[INDEX_NODE] = create_kmalloc_cache("kmalloc-node",
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001274 kmalloc_size(INDEX_NODE), ARCH_KMALLOC_FLAGS);
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07001275 slab_state = PARTIAL_NODE;
Daniel Sanders34cc6992015-06-24 16:55:57 -07001276 setup_kmalloc_cache_index_table();
Christoph Lametere498be72005-09-09 13:03:32 -07001277
Ingo Molnare0a42722006-06-23 02:03:46 -07001278 slab_early_init = 0;
1279
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001280 /* 5) Replace the bootstrap kmem_cache_node */
Christoph Lametere498be72005-09-09 13:03:32 -07001281 {
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001282 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283
Mel Gorman9c09a952008-01-24 05:49:54 -08001284 for_each_online_node(nid) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001285 init_list(kmem_cache, &init_kmem_cache_node[CACHE_CACHE + nid], nid);
Pekka Enberg556a1692008-01-25 08:20:51 +02001286
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07001287 init_list(kmalloc_caches[INDEX_NODE],
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001288 &init_kmem_cache_node[SIZE_NODE + nid], nid);
Christoph Lametere498be72005-09-09 13:03:32 -07001289 }
1290 }
1291
Christoph Lameterf97d5f62013-01-10 19:12:17 +00001292 create_kmalloc_caches(ARCH_KMALLOC_FLAGS);
Pekka Enberg8429db52009-06-12 15:58:59 +03001293}
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -07001294
Pekka Enberg8429db52009-06-12 15:58:59 +03001295void __init kmem_cache_init_late(void)
1296{
1297 struct kmem_cache *cachep;
1298
Christoph Lameter97d06602012-07-06 15:25:11 -05001299 slab_state = UP;
Peter Zijlstra52cef182011-11-28 21:12:40 +01001300
Pekka Enberg8429db52009-06-12 15:58:59 +03001301 /* 6) resize the head arrays to their final sizes */
Christoph Lameter18004c52012-07-06 15:25:12 -05001302 mutex_lock(&slab_mutex);
1303 list_for_each_entry(cachep, &slab_caches, list)
Pekka Enberg8429db52009-06-12 15:58:59 +03001304 if (enable_cpucache(cachep, GFP_NOWAIT))
1305 BUG();
Christoph Lameter18004c52012-07-06 15:25:12 -05001306 mutex_unlock(&slab_mutex);
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -07001307
Christoph Lameter97d06602012-07-06 15:25:11 -05001308 /* Done! */
1309 slab_state = FULL;
1310
Andrew Mortona737b3e2006-03-22 00:08:11 -08001311 /*
1312 * Register a cpu startup notifier callback that initializes
1313 * cpu_cache_get for all new cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07001314 */
1315 register_cpu_notifier(&cpucache_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
David Rientjes8f9f8d92010-03-27 19:40:47 -07001317#ifdef CONFIG_NUMA
1318 /*
1319 * Register a memory hotplug callback that initializes and frees
Christoph Lameter6a673682013-01-10 19:14:19 +00001320 * node.
David Rientjes8f9f8d92010-03-27 19:40:47 -07001321 */
1322 hotplug_memory_notifier(slab_memory_callback, SLAB_CALLBACK_PRI);
1323#endif
1324
Andrew Mortona737b3e2006-03-22 00:08:11 -08001325 /*
1326 * The reap timers are started later, with a module init call: That part
1327 * of the kernel is not yet operational.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328 */
1329}
1330
1331static int __init cpucache_init(void)
1332{
1333 int cpu;
1334
Andrew Mortona737b3e2006-03-22 00:08:11 -08001335 /*
1336 * Register the timers that return unneeded pages to the page allocator
Linus Torvalds1da177e2005-04-16 15:20:36 -07001337 */
Christoph Lametere498be72005-09-09 13:03:32 -07001338 for_each_online_cpu(cpu)
Andrew Mortona737b3e2006-03-22 00:08:11 -08001339 start_cpu_timer(cpu);
Glauber Costaa164f8962012-06-21 00:59:18 +04001340
1341 /* Done! */
Christoph Lameter97d06602012-07-06 15:25:11 -05001342 slab_state = FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 return 0;
1344}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345__initcall(cpucache_init);
1346
Rafael Aquini8bdec192012-03-09 17:27:27 -03001347static noinline void
1348slab_out_of_memory(struct kmem_cache *cachep, gfp_t gfpflags, int nodeid)
1349{
David Rientjes9a02d692014-06-04 16:06:36 -07001350#if DEBUG
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001351 struct kmem_cache_node *n;
Joonsoo Kim8456a642013-10-24 10:07:49 +09001352 struct page *page;
Rafael Aquini8bdec192012-03-09 17:27:27 -03001353 unsigned long flags;
1354 int node;
David Rientjes9a02d692014-06-04 16:06:36 -07001355 static DEFINE_RATELIMIT_STATE(slab_oom_rs, DEFAULT_RATELIMIT_INTERVAL,
1356 DEFAULT_RATELIMIT_BURST);
1357
1358 if ((gfpflags & __GFP_NOWARN) || !__ratelimit(&slab_oom_rs))
1359 return;
Rafael Aquini8bdec192012-03-09 17:27:27 -03001360
Vlastimil Babka5b3810e2016-03-15 14:56:33 -07001361 pr_warn("SLAB: Unable to allocate memory on node %d, gfp=%#x(%pGg)\n",
1362 nodeid, gfpflags, &gfpflags);
1363 pr_warn(" cache: %s, object size: %d, order: %d\n",
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05001364 cachep->name, cachep->size, cachep->gfporder);
Rafael Aquini8bdec192012-03-09 17:27:27 -03001365
Christoph Lameter18bf8542014-08-06 16:04:11 -07001366 for_each_kmem_cache_node(cachep, node, n) {
Rafael Aquini8bdec192012-03-09 17:27:27 -03001367 unsigned long active_objs = 0, num_objs = 0, free_objects = 0;
1368 unsigned long active_slabs = 0, num_slabs = 0;
1369
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001370 spin_lock_irqsave(&n->list_lock, flags);
Joonsoo Kim8456a642013-10-24 10:07:49 +09001371 list_for_each_entry(page, &n->slabs_full, lru) {
Rafael Aquini8bdec192012-03-09 17:27:27 -03001372 active_objs += cachep->num;
1373 active_slabs++;
1374 }
Joonsoo Kim8456a642013-10-24 10:07:49 +09001375 list_for_each_entry(page, &n->slabs_partial, lru) {
1376 active_objs += page->active;
Rafael Aquini8bdec192012-03-09 17:27:27 -03001377 active_slabs++;
1378 }
Joonsoo Kim8456a642013-10-24 10:07:49 +09001379 list_for_each_entry(page, &n->slabs_free, lru)
Rafael Aquini8bdec192012-03-09 17:27:27 -03001380 num_slabs++;
1381
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001382 free_objects += n->free_objects;
1383 spin_unlock_irqrestore(&n->list_lock, flags);
Rafael Aquini8bdec192012-03-09 17:27:27 -03001384
1385 num_slabs += active_slabs;
1386 num_objs = num_slabs * cachep->num;
Vlastimil Babka5b3810e2016-03-15 14:56:33 -07001387 pr_warn(" node %d: slabs: %ld/%ld, objs: %ld/%ld, free: %ld\n",
Rafael Aquini8bdec192012-03-09 17:27:27 -03001388 node, active_slabs, num_slabs, active_objs, num_objs,
1389 free_objects);
1390 }
David Rientjes9a02d692014-06-04 16:06:36 -07001391#endif
Rafael Aquini8bdec192012-03-09 17:27:27 -03001392}
1393
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394/*
Wang Sheng-Hui8a7d9b42014-08-06 16:04:46 -07001395 * Interface to system's page allocator. No need to hold the
1396 * kmem_cache_node ->list_lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001397 *
1398 * If we requested dmaable memory, we will get it. Even if we
1399 * did not request dmaable memory, we might get it, but that
1400 * would be relatively rare and ignorable.
1401 */
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09001402static struct page *kmem_getpages(struct kmem_cache *cachep, gfp_t flags,
1403 int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404{
1405 struct page *page;
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001406 int nr_pages;
Christoph Lameter765c4502006-09-27 01:50:08 -07001407
Glauber Costaa618e892012-06-14 16:17:21 +04001408 flags |= cachep->allocflags;
Mel Gormane12ba742007-10-16 01:25:52 -07001409 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1410 flags |= __GFP_RECLAIMABLE;
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001411
Vlastimil Babka96db8002015-09-08 15:03:50 -07001412 page = __alloc_pages_node(nodeid, flags | __GFP_NOTRACK, cachep->gfporder);
Rafael Aquini8bdec192012-03-09 17:27:27 -03001413 if (!page) {
David Rientjes9a02d692014-06-04 16:06:36 -07001414 slab_out_of_memory(cachep, flags, nodeid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415 return NULL;
Rafael Aquini8bdec192012-03-09 17:27:27 -03001416 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001417
Vladimir Davydovf3ccb2c42015-11-05 18:49:01 -08001418 if (memcg_charge_slab(page, flags, cachep->gfporder, cachep)) {
1419 __free_pages(page, cachep->gfporder);
1420 return NULL;
1421 }
1422
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001423 nr_pages = (1 << cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
Christoph Lameter972d1a72006-09-25 23:31:51 -07001425 add_zone_page_state(page_zone(page),
1426 NR_SLAB_RECLAIMABLE, nr_pages);
1427 else
1428 add_zone_page_state(page_zone(page),
1429 NR_SLAB_UNRECLAIMABLE, nr_pages);
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07001430
Joonsoo Kima57a4982013-10-24 10:07:44 +09001431 __SetPageSlab(page);
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07001432 /* Record if ALLOC_NO_WATERMARKS was set when allocating the slab */
1433 if (sk_memalloc_socks() && page_is_pfmemalloc(page))
Joonsoo Kima57a4982013-10-24 10:07:44 +09001434 SetPageSlabPfmemalloc(page);
Mel Gorman072bb0a2012-07-31 16:43:58 -07001435
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001436 if (kmemcheck_enabled && !(cachep->flags & SLAB_NOTRACK)) {
1437 kmemcheck_alloc_shadow(page, cachep->gfporder, flags, nodeid);
1438
1439 if (cachep->ctor)
1440 kmemcheck_mark_uninitialized_pages(page, nr_pages);
1441 else
1442 kmemcheck_mark_unallocated_pages(page, nr_pages);
1443 }
Pekka Enbergc175eea2008-05-09 20:35:53 +02001444
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09001445 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446}
1447
1448/*
1449 * Interface to system's page release.
1450 */
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09001451static void kmem_freepages(struct kmem_cache *cachep, struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452{
Vladimir Davydov27ee57c2016-03-17 14:17:35 -07001453 int order = cachep->gfporder;
1454 unsigned long nr_freed = (1 << order);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455
Vladimir Davydov27ee57c2016-03-17 14:17:35 -07001456 kmemcheck_free_shadow(page, order);
Pekka Enbergc175eea2008-05-09 20:35:53 +02001457
Christoph Lameter972d1a72006-09-25 23:31:51 -07001458 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1459 sub_zone_page_state(page_zone(page),
1460 NR_SLAB_RECLAIMABLE, nr_freed);
1461 else
1462 sub_zone_page_state(page_zone(page),
1463 NR_SLAB_UNRECLAIMABLE, nr_freed);
Joonsoo Kim73293c22013-10-24 10:07:37 +09001464
Joonsoo Kima57a4982013-10-24 10:07:44 +09001465 BUG_ON(!PageSlab(page));
Joonsoo Kim73293c22013-10-24 10:07:37 +09001466 __ClearPageSlabPfmemalloc(page);
Joonsoo Kima57a4982013-10-24 10:07:44 +09001467 __ClearPageSlab(page);
Joonsoo Kim8456a642013-10-24 10:07:49 +09001468 page_mapcount_reset(page);
1469 page->mapping = NULL;
Glauber Costa1f458cb2012-12-18 14:22:50 -08001470
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 if (current->reclaim_state)
1472 current->reclaim_state->reclaimed_slab += nr_freed;
Vladimir Davydov27ee57c2016-03-17 14:17:35 -07001473 memcg_uncharge_slab(page, order, cachep);
1474 __free_pages(page, order);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475}
1476
1477static void kmem_rcu_free(struct rcu_head *head)
1478{
Joonsoo Kim68126702013-10-24 10:07:42 +09001479 struct kmem_cache *cachep;
1480 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481
Joonsoo Kim68126702013-10-24 10:07:42 +09001482 page = container_of(head, struct page, rcu_head);
1483 cachep = page->slab_cache;
1484
1485 kmem_freepages(cachep, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486}
1487
1488#if DEBUG
Joonsoo Kim40b44132016-03-15 14:54:21 -07001489static bool is_debug_pagealloc_cache(struct kmem_cache *cachep)
1490{
1491 if (debug_pagealloc_enabled() && OFF_SLAB(cachep) &&
1492 (cachep->size % PAGE_SIZE) == 0)
1493 return true;
1494
1495 return false;
1496}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497
1498#ifdef CONFIG_DEBUG_PAGEALLOC
Pekka Enberg343e0d72006-02-01 03:05:50 -08001499static void store_stackinfo(struct kmem_cache *cachep, unsigned long *addr,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001500 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001501{
Christoph Lameter8c138bc2012-06-13 10:24:58 -05001502 int size = cachep->object_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001504 addr = (unsigned long *)&((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001506 if (size < 5 * sizeof(unsigned long))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 return;
1508
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001509 *addr++ = 0x12345678;
1510 *addr++ = caller;
1511 *addr++ = smp_processor_id();
1512 size -= 3 * sizeof(unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 {
1514 unsigned long *sptr = &caller;
1515 unsigned long svalue;
1516
1517 while (!kstack_end(sptr)) {
1518 svalue = *sptr++;
1519 if (kernel_text_address(svalue)) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001520 *addr++ = svalue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 size -= sizeof(unsigned long);
1522 if (size <= sizeof(unsigned long))
1523 break;
1524 }
1525 }
1526
1527 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001528 *addr++ = 0x87654321;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529}
Joonsoo Kim40b44132016-03-15 14:54:21 -07001530
1531static void slab_kernel_map(struct kmem_cache *cachep, void *objp,
1532 int map, unsigned long caller)
1533{
1534 if (!is_debug_pagealloc_cache(cachep))
1535 return;
1536
1537 if (caller)
1538 store_stackinfo(cachep, objp, caller);
1539
1540 kernel_map_pages(virt_to_page(objp), cachep->size / PAGE_SIZE, map);
1541}
1542
1543#else
1544static inline void slab_kernel_map(struct kmem_cache *cachep, void *objp,
1545 int map, unsigned long caller) {}
1546
Linus Torvalds1da177e2005-04-16 15:20:36 -07001547#endif
1548
Pekka Enberg343e0d72006-02-01 03:05:50 -08001549static void poison_obj(struct kmem_cache *cachep, void *addr, unsigned char val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550{
Christoph Lameter8c138bc2012-06-13 10:24:58 -05001551 int size = cachep->object_size;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001552 addr = &((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553
1554 memset(addr, val, size);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001555 *(unsigned char *)(addr + size - 1) = POISON_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556}
1557
1558static void dump_line(char *data, int offset, int limit)
1559{
1560 int i;
Dave Jonesaa83aa42006-09-29 01:59:51 -07001561 unsigned char error = 0;
1562 int bad_count = 0;
1563
Joe Perches11705322016-03-17 14:19:50 -07001564 pr_err("%03x: ", offset);
Dave Jonesaa83aa42006-09-29 01:59:51 -07001565 for (i = 0; i < limit; i++) {
1566 if (data[offset + i] != POISON_FREE) {
1567 error = data[offset + i];
1568 bad_count++;
1569 }
Dave Jonesaa83aa42006-09-29 01:59:51 -07001570 }
Sebastian Andrzej Siewiorfdde6ab2011-07-29 18:22:13 +02001571 print_hex_dump(KERN_CONT, "", 0, 16, 1,
1572 &data[offset], limit, 1);
Dave Jonesaa83aa42006-09-29 01:59:51 -07001573
1574 if (bad_count == 1) {
1575 error ^= POISON_FREE;
1576 if (!(error & (error - 1))) {
Joe Perches11705322016-03-17 14:19:50 -07001577 pr_err("Single bit error detected. Probably bad RAM.\n");
Dave Jonesaa83aa42006-09-29 01:59:51 -07001578#ifdef CONFIG_X86
Joe Perches11705322016-03-17 14:19:50 -07001579 pr_err("Run memtest86+ or a similar memory test tool.\n");
Dave Jonesaa83aa42006-09-29 01:59:51 -07001580#else
Joe Perches11705322016-03-17 14:19:50 -07001581 pr_err("Run a memory test tool.\n");
Dave Jonesaa83aa42006-09-29 01:59:51 -07001582#endif
1583 }
1584 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585}
1586#endif
1587
1588#if DEBUG
1589
Pekka Enberg343e0d72006-02-01 03:05:50 -08001590static void print_objinfo(struct kmem_cache *cachep, void *objp, int lines)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591{
1592 int i, size;
1593 char *realobj;
1594
1595 if (cachep->flags & SLAB_RED_ZONE) {
Joe Perches11705322016-03-17 14:19:50 -07001596 pr_err("Redzone: 0x%llx/0x%llx\n",
1597 *dbg_redzone1(cachep, objp),
1598 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 }
1600
1601 if (cachep->flags & SLAB_STORE_USER) {
Joe Perches11705322016-03-17 14:19:50 -07001602 pr_err("Last user: [<%p>](%pSR)\n",
Joe Perches071361d2012-12-12 10:19:12 -08001603 *dbg_userword(cachep, objp),
1604 *dbg_userword(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 }
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001606 realobj = (char *)objp + obj_offset(cachep);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05001607 size = cachep->object_size;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001608 for (i = 0; i < size && lines; i += 16, lines--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 int limit;
1610 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001611 if (i + limit > size)
1612 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 dump_line(realobj, i, limit);
1614 }
1615}
1616
Pekka Enberg343e0d72006-02-01 03:05:50 -08001617static void check_poison_obj(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618{
1619 char *realobj;
1620 int size, i;
1621 int lines = 0;
1622
Joonsoo Kim40b44132016-03-15 14:54:21 -07001623 if (is_debug_pagealloc_cache(cachep))
1624 return;
1625
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001626 realobj = (char *)objp + obj_offset(cachep);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05001627 size = cachep->object_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001629 for (i = 0; i < size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 char exp = POISON_FREE;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001631 if (i == size - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 exp = POISON_END;
1633 if (realobj[i] != exp) {
1634 int limit;
1635 /* Mismatch ! */
1636 /* Print header */
1637 if (lines == 0) {
Joe Perches11705322016-03-17 14:19:50 -07001638 pr_err("Slab corruption (%s): %s start=%p, len=%d\n",
1639 print_tainted(), cachep->name,
1640 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 print_objinfo(cachep, objp, 0);
1642 }
1643 /* Hexdump the affected line */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001644 i = (i / 16) * 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001646 if (i + limit > size)
1647 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 dump_line(realobj, i, limit);
1649 i += 16;
1650 lines++;
1651 /* Limit to 5 lines */
1652 if (lines > 5)
1653 break;
1654 }
1655 }
1656 if (lines != 0) {
1657 /* Print some data about the neighboring objects, if they
1658 * exist:
1659 */
Joonsoo Kim8456a642013-10-24 10:07:49 +09001660 struct page *page = virt_to_head_page(objp);
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001661 unsigned int objnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001662
Joonsoo Kim8456a642013-10-24 10:07:49 +09001663 objnr = obj_to_index(cachep, page, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 if (objnr) {
Joonsoo Kim8456a642013-10-24 10:07:49 +09001665 objp = index_to_obj(cachep, page, objnr - 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001666 realobj = (char *)objp + obj_offset(cachep);
Joe Perches11705322016-03-17 14:19:50 -07001667 pr_err("Prev obj: start=%p, len=%d\n", realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668 print_objinfo(cachep, objp, 2);
1669 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001670 if (objnr + 1 < cachep->num) {
Joonsoo Kim8456a642013-10-24 10:07:49 +09001671 objp = index_to_obj(cachep, page, objnr + 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001672 realobj = (char *)objp + obj_offset(cachep);
Joe Perches11705322016-03-17 14:19:50 -07001673 pr_err("Next obj: start=%p, len=%d\n", realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 print_objinfo(cachep, objp, 2);
1675 }
1676 }
1677}
1678#endif
1679
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680#if DEBUG
Joonsoo Kim8456a642013-10-24 10:07:49 +09001681static void slab_destroy_debugcheck(struct kmem_cache *cachep,
1682 struct page *page)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001683{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684 int i;
Joonsoo Kimb03a017b2016-03-15 14:54:50 -07001685
1686 if (OBJFREELIST_SLAB(cachep) && cachep->flags & SLAB_POISON) {
1687 poison_obj(cachep, page->freelist - obj_offset(cachep),
1688 POISON_FREE);
1689 }
1690
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 for (i = 0; i < cachep->num; i++) {
Joonsoo Kim8456a642013-10-24 10:07:49 +09001692 void *objp = index_to_obj(cachep, page, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693
1694 if (cachep->flags & SLAB_POISON) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 check_poison_obj(cachep, objp);
Joonsoo Kim40b44132016-03-15 14:54:21 -07001696 slab_kernel_map(cachep, objp, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 }
1698 if (cachep->flags & SLAB_RED_ZONE) {
1699 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
Joe Perches756a0252016-03-17 14:19:47 -07001700 slab_error(cachep, "start of a freed object was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
Joe Perches756a0252016-03-17 14:19:47 -07001702 slab_error(cachep, "end of a freed object was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 }
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001705}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706#else
Joonsoo Kim8456a642013-10-24 10:07:49 +09001707static void slab_destroy_debugcheck(struct kmem_cache *cachep,
1708 struct page *page)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001709{
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001710}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001711#endif
1712
Randy Dunlap911851e2006-03-22 00:08:14 -08001713/**
1714 * slab_destroy - destroy and release all objects in a slab
1715 * @cachep: cache pointer being destroyed
Masanari Iidacb8ee1a2014-01-28 02:57:08 +09001716 * @page: page pointer being destroyed
Randy Dunlap911851e2006-03-22 00:08:14 -08001717 *
Wang Sheng-Hui8a7d9b42014-08-06 16:04:46 -07001718 * Destroy all the objs in a slab page, and release the mem back to the system.
1719 * Before calling the slab page must have been unlinked from the cache. The
1720 * kmem_cache_node ->list_lock is not held/needed.
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001721 */
Joonsoo Kim8456a642013-10-24 10:07:49 +09001722static void slab_destroy(struct kmem_cache *cachep, struct page *page)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001723{
Joonsoo Kim7e007352013-10-30 19:04:01 +09001724 void *freelist;
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001725
Joonsoo Kim8456a642013-10-24 10:07:49 +09001726 freelist = page->freelist;
1727 slab_destroy_debugcheck(cachep, page);
Kirill A. Shutemovbc4f6102015-11-06 16:29:44 -08001728 if (unlikely(cachep->flags & SLAB_DESTROY_BY_RCU))
1729 call_rcu(&page->rcu_head, kmem_rcu_free);
1730 else
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09001731 kmem_freepages(cachep, page);
Joonsoo Kim68126702013-10-24 10:07:42 +09001732
1733 /*
Joonsoo Kim8456a642013-10-24 10:07:49 +09001734 * From now on, we don't use freelist
Joonsoo Kim68126702013-10-24 10:07:42 +09001735 * although actual page can be freed in rcu context
1736 */
1737 if (OFF_SLAB(cachep))
Joonsoo Kim8456a642013-10-24 10:07:49 +09001738 kmem_cache_free(cachep->freelist_cache, freelist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001739}
1740
Joonsoo Kim97654df2014-08-06 16:04:25 -07001741static void slabs_destroy(struct kmem_cache *cachep, struct list_head *list)
1742{
1743 struct page *page, *n;
1744
1745 list_for_each_entry_safe(page, n, list, lru) {
1746 list_del(&page->lru);
1747 slab_destroy(cachep, page);
1748 }
1749}
1750
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751/**
Randy.Dunlapa70773d2006-02-01 03:05:52 -08001752 * calculate_slab_order - calculate size (page order) of slabs
1753 * @cachep: pointer to the cache that is being created
1754 * @size: size of objects to be created in this cache.
Randy.Dunlapa70773d2006-02-01 03:05:52 -08001755 * @flags: slab allocation flags
1756 *
1757 * Also calculates the number of objects per slab.
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001758 *
1759 * This could be made much more intelligent. For now, try to avoid using
1760 * high order pages for slabs. When the gfp() functions are more friendly
1761 * towards high-order requests, this should be changed.
1762 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08001763static size_t calculate_slab_order(struct kmem_cache *cachep,
Joonsoo Kim2e6b3602016-03-15 14:54:30 -07001764 size_t size, unsigned long flags)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001765{
1766 size_t left_over = 0;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001767 int gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001768
Christoph Lameter0aa817f2007-05-16 22:11:01 -07001769 for (gfporder = 0; gfporder <= KMALLOC_MAX_ORDER; gfporder++) {
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001770 unsigned int num;
1771 size_t remainder;
1772
Joonsoo Kim70f75062016-03-15 14:54:53 -07001773 num = cache_estimate(gfporder, size, flags, &remainder);
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001774 if (!num)
1775 continue;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001776
Joonsoo Kimf315e3f2013-12-02 17:49:41 +09001777 /* Can't handle number of objects more than SLAB_OBJ_MAX_NUM */
1778 if (num > SLAB_OBJ_MAX_NUM)
1779 break;
1780
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02001781 if (flags & CFLGS_OFF_SLAB) {
Joonsoo Kim3217fd92016-03-15 14:54:41 -07001782 struct kmem_cache *freelist_cache;
1783 size_t freelist_size;
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02001784
Joonsoo Kim3217fd92016-03-15 14:54:41 -07001785 freelist_size = num * sizeof(freelist_idx_t);
1786 freelist_cache = kmalloc_slab(freelist_size, 0u);
1787 if (!freelist_cache)
1788 continue;
1789
1790 /*
1791 * Needed to avoid possible looping condition
1792 * in cache_grow()
1793 */
1794 if (OFF_SLAB(freelist_cache))
1795 continue;
1796
1797 /* check if off slab has enough benefit */
1798 if (freelist_cache->size > cachep->size / 2)
1799 continue;
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02001800 }
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001801
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001802 /* Found something acceptable - save it away */
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001803 cachep->num = num;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001804 cachep->gfporder = gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001805 left_over = remainder;
1806
1807 /*
Linus Torvaldsf78bb8a2006-03-08 10:33:05 -08001808 * A VFS-reclaimable slab tends to have most allocations
1809 * as GFP_NOFS and we really don't want to have to be allocating
1810 * higher-order pages when we are unable to shrink dcache.
1811 */
1812 if (flags & SLAB_RECLAIM_ACCOUNT)
1813 break;
1814
1815 /*
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001816 * Large number of objects is good, but very large slabs are
1817 * currently bad for the gfp()s.
1818 */
David Rientjes543585c2011-10-18 22:09:24 -07001819 if (gfporder >= slab_max_order)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001820 break;
1821
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001822 /*
1823 * Acceptable internal fragmentation?
1824 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08001825 if (left_over * 8 <= (PAGE_SIZE << gfporder))
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001826 break;
1827 }
1828 return left_over;
1829}
1830
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07001831static struct array_cache __percpu *alloc_kmem_cache_cpus(
1832 struct kmem_cache *cachep, int entries, int batchcount)
1833{
1834 int cpu;
1835 size_t size;
1836 struct array_cache __percpu *cpu_cache;
1837
1838 size = sizeof(void *) * entries + sizeof(struct array_cache);
Joonsoo Kim85c9f4b2014-10-13 15:51:01 -07001839 cpu_cache = __alloc_percpu(size, sizeof(void *));
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07001840
1841 if (!cpu_cache)
1842 return NULL;
1843
1844 for_each_possible_cpu(cpu) {
1845 init_arraycache(per_cpu_ptr(cpu_cache, cpu),
1846 entries, batchcount);
1847 }
1848
1849 return cpu_cache;
1850}
1851
Pekka Enberg83b519e2009-06-10 19:40:04 +03001852static int __init_refok setup_cpu_cache(struct kmem_cache *cachep, gfp_t gfp)
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08001853{
Christoph Lameter97d06602012-07-06 15:25:11 -05001854 if (slab_state >= FULL)
Pekka Enberg83b519e2009-06-10 19:40:04 +03001855 return enable_cpucache(cachep, gfp);
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07001856
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07001857 cachep->cpu_cache = alloc_kmem_cache_cpus(cachep, 1, 1);
1858 if (!cachep->cpu_cache)
1859 return 1;
1860
Christoph Lameter97d06602012-07-06 15:25:11 -05001861 if (slab_state == DOWN) {
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07001862 /* Creation of first cache (kmem_cache). */
1863 set_up_node(kmem_cache, CACHE_CACHE);
Christoph Lameter2f9baa92012-11-28 16:23:09 +00001864 } else if (slab_state == PARTIAL) {
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07001865 /* For kmem_cache_node */
1866 set_up_node(cachep, SIZE_NODE);
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08001867 } else {
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07001868 int node;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08001869
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07001870 for_each_online_node(node) {
1871 cachep->node[node] = kmalloc_node(
1872 sizeof(struct kmem_cache_node), gfp, node);
1873 BUG_ON(!cachep->node[node]);
1874 kmem_cache_node_init(cachep->node[node]);
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08001875 }
1876 }
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07001877
Christoph Lameter6a673682013-01-10 19:14:19 +00001878 cachep->node[numa_mem_id()]->next_reap =
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08001879 jiffies + REAPTIMEOUT_NODE +
1880 ((unsigned long)cachep) % REAPTIMEOUT_NODE;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08001881
1882 cpu_cache_get(cachep)->avail = 0;
1883 cpu_cache_get(cachep)->limit = BOOT_CPUCACHE_ENTRIES;
1884 cpu_cache_get(cachep)->batchcount = 1;
1885 cpu_cache_get(cachep)->touched = 0;
1886 cachep->batchcount = 1;
1887 cachep->limit = BOOT_CPUCACHE_ENTRIES;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07001888 return 0;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08001889}
1890
Joonsoo Kim12220de2014-10-09 15:26:24 -07001891unsigned long kmem_cache_flags(unsigned long object_size,
1892 unsigned long flags, const char *name,
1893 void (*ctor)(void *))
1894{
1895 return flags;
1896}
1897
1898struct kmem_cache *
1899__kmem_cache_alias(const char *name, size_t size, size_t align,
1900 unsigned long flags, void (*ctor)(void *))
1901{
1902 struct kmem_cache *cachep;
1903
1904 cachep = find_mergeable(size, align, flags, name, ctor);
1905 if (cachep) {
1906 cachep->refcount++;
1907
1908 /*
1909 * Adjust the object sizes so that we clear
1910 * the complete object on kzalloc.
1911 */
1912 cachep->object_size = max_t(int, cachep->object_size, size);
1913 }
1914 return cachep;
1915}
1916
Joonsoo Kimb03a017b2016-03-15 14:54:50 -07001917static bool set_objfreelist_slab_cache(struct kmem_cache *cachep,
1918 size_t size, unsigned long flags)
1919{
1920 size_t left;
1921
1922 cachep->num = 0;
1923
1924 if (cachep->ctor || flags & SLAB_DESTROY_BY_RCU)
1925 return false;
1926
1927 left = calculate_slab_order(cachep, size,
1928 flags | CFLGS_OBJFREELIST_SLAB);
1929 if (!cachep->num)
1930 return false;
1931
1932 if (cachep->num * sizeof(freelist_idx_t) > cachep->object_size)
1933 return false;
1934
1935 cachep->colour = left / cachep->colour_off;
1936
1937 return true;
1938}
1939
Joonsoo Kim158e3192016-03-15 14:54:35 -07001940static bool set_off_slab_cache(struct kmem_cache *cachep,
1941 size_t size, unsigned long flags)
1942{
1943 size_t left;
1944
1945 cachep->num = 0;
1946
1947 /*
Joonsoo Kim3217fd92016-03-15 14:54:41 -07001948 * Always use on-slab management when SLAB_NOLEAKTRACE
1949 * to avoid recursive calls into kmemleak.
Joonsoo Kim158e3192016-03-15 14:54:35 -07001950 */
Joonsoo Kim158e3192016-03-15 14:54:35 -07001951 if (flags & SLAB_NOLEAKTRACE)
1952 return false;
1953
1954 /*
1955 * Size is large, assume best to place the slab management obj
1956 * off-slab (should allow better packing of objs).
1957 */
1958 left = calculate_slab_order(cachep, size, flags | CFLGS_OFF_SLAB);
1959 if (!cachep->num)
1960 return false;
1961
1962 /*
1963 * If the slab has been placed off-slab, and we have enough space then
1964 * move it on-slab. This is at the expense of any extra colouring.
1965 */
1966 if (left >= cachep->num * sizeof(freelist_idx_t))
1967 return false;
1968
1969 cachep->colour = left / cachep->colour_off;
1970
1971 return true;
1972}
1973
1974static bool set_on_slab_cache(struct kmem_cache *cachep,
1975 size_t size, unsigned long flags)
1976{
1977 size_t left;
1978
1979 cachep->num = 0;
1980
1981 left = calculate_slab_order(cachep, size, flags);
1982 if (!cachep->num)
1983 return false;
1984
1985 cachep->colour = left / cachep->colour_off;
1986
1987 return true;
1988}
1989
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001990/**
Christoph Lameter039363f2012-07-06 15:25:10 -05001991 * __kmem_cache_create - Create a cache.
Randy Dunlapa755b762012-11-06 17:10:10 -08001992 * @cachep: cache management descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -07001993 * @flags: SLAB flags
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 *
1995 * Returns a ptr to the cache on success, NULL on failure.
1996 * Cannot be called within a int, but can be interrupted.
Paul Mundt20c2df82007-07-20 10:11:58 +09001997 * The @ctor is run when new pages are allocated by the cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 * The flags are
2000 *
2001 * %SLAB_POISON - Poison the slab with a known test pattern (a5a5a5a5)
2002 * to catch references to uninitialised memory.
2003 *
2004 * %SLAB_RED_ZONE - Insert `Red' zones around the allocated memory to check
2005 * for buffer overruns.
2006 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 * %SLAB_HWCACHE_ALIGN - Align the objects in this cache to a hardware
2008 * cacheline. This can be beneficial if you're counting cycles as closely
2009 * as davem.
2010 */
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002011int
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002012__kmem_cache_create (struct kmem_cache *cachep, unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013{
David Rientjesd4a5fca52014-09-25 16:05:20 -07002014 size_t ralign = BYTES_PER_WORD;
Pekka Enberg83b519e2009-06-10 19:40:04 +03002015 gfp_t gfp;
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002016 int err;
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002017 size_t size = cachep->size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002018
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019#if DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020#if FORCED_DEBUG
2021 /*
2022 * Enable redzoning and last user accounting, except for caches with
2023 * large objects, if the increased size would increase the object size
2024 * above the next power of two: caches with object sizes just above a
2025 * power of two have a significant amount of internal fragmentation.
2026 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002027 if (size < 4096 || fls(size - 1) == fls(size-1 + REDZONE_ALIGN +
2028 2 * sizeof(unsigned long long)))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002029 flags |= SLAB_RED_ZONE | SLAB_STORE_USER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030 if (!(flags & SLAB_DESTROY_BY_RCU))
2031 flags |= SLAB_POISON;
2032#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002033#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034
Andrew Mortona737b3e2006-03-22 00:08:11 -08002035 /*
2036 * Check that size is in terms of words. This is needed to avoid
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 * unaligned accesses for some archs when redzoning is used, and makes
2038 * sure any on-slab bufctl's are also correctly aligned.
2039 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002040 if (size & (BYTES_PER_WORD - 1)) {
2041 size += (BYTES_PER_WORD - 1);
2042 size &= ~(BYTES_PER_WORD - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 }
2044
David Woodhouse87a927c2007-07-04 21:26:44 -04002045 if (flags & SLAB_RED_ZONE) {
2046 ralign = REDZONE_ALIGN;
2047 /* If redzoning, ensure that the second redzone is suitably
2048 * aligned, by adjusting the object size accordingly. */
2049 size += REDZONE_ALIGN - 1;
2050 size &= ~(REDZONE_ALIGN - 1);
2051 }
Pekka Enbergca5f9702006-09-25 23:31:25 -07002052
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002053 /* 3) caller mandated alignment */
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002054 if (ralign < cachep->align) {
2055 ralign = cachep->align;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 }
Pekka Enberg3ff84a72011-02-14 17:46:21 +02002057 /* disable debug if necessary */
2058 if (ralign > __alignof__(unsigned long long))
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002059 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002060 /*
Pekka Enbergca5f9702006-09-25 23:31:25 -07002061 * 4) Store it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 */
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002063 cachep->align = ralign;
Joonsoo Kim158e3192016-03-15 14:54:35 -07002064 cachep->colour_off = cache_line_size();
2065 /* Offset must be a multiple of the alignment. */
2066 if (cachep->colour_off < cachep->align)
2067 cachep->colour_off = cachep->align;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068
Pekka Enberg83b519e2009-06-10 19:40:04 +03002069 if (slab_is_available())
2070 gfp = GFP_KERNEL;
2071 else
2072 gfp = GFP_NOWAIT;
2073
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074#if DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075
Pekka Enbergca5f9702006-09-25 23:31:25 -07002076 /*
2077 * Both debugging options require word-alignment which is calculated
2078 * into align above.
2079 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080 if (flags & SLAB_RED_ZONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 /* add space for red zone words */
Pekka Enberg3ff84a72011-02-14 17:46:21 +02002082 cachep->obj_offset += sizeof(unsigned long long);
2083 size += 2 * sizeof(unsigned long long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 }
2085 if (flags & SLAB_STORE_USER) {
Pekka Enbergca5f9702006-09-25 23:31:25 -07002086 /* user store requires one word storage behind the end of
David Woodhouse87a927c2007-07-04 21:26:44 -04002087 * the real object. But if the second red zone needs to be
2088 * aligned to 64 bits, we must allow that much space.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002089 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002090 if (flags & SLAB_RED_ZONE)
2091 size += REDZONE_ALIGN;
2092 else
2093 size += BYTES_PER_WORD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 }
Joonsoo Kim832a15d2016-03-15 14:54:33 -07002095#endif
2096
Alexander Potapenko7ed2f9e2016-03-25 14:21:59 -07002097 kasan_cache_create(cachep, &size, &flags);
2098
Joonsoo Kim832a15d2016-03-15 14:54:33 -07002099 size = ALIGN(size, cachep->align);
2100 /*
2101 * We should restrict the number of objects in a slab to implement
2102 * byte sized index. Refer comment on SLAB_OBJ_MIN_SIZE definition.
2103 */
2104 if (FREELIST_BYTE_INDEX && size < SLAB_OBJ_MIN_SIZE)
2105 size = ALIGN(SLAB_OBJ_MIN_SIZE, cachep->align);
2106
2107#if DEBUG
Joonsoo Kim03a2d2a2015-10-01 15:36:54 -07002108 /*
2109 * To activate debug pagealloc, off-slab management is necessary
2110 * requirement. In early phase of initialization, small sized slab
2111 * doesn't get initialized so it would not be possible. So, we need
2112 * to check size >= 256. It guarantees that all necessary small
2113 * sized slab is initialized in current slab initialization sequence.
2114 */
Joonsoo Kim40323272016-03-15 14:54:18 -07002115 if (debug_pagealloc_enabled() && (flags & SLAB_POISON) &&
Joonsoo Kimf3a3c322016-03-15 14:54:38 -07002116 size >= 256 && cachep->object_size > cache_line_size()) {
2117 if (size < PAGE_SIZE || size % PAGE_SIZE == 0) {
2118 size_t tmp_size = ALIGN(size, PAGE_SIZE);
2119
2120 if (set_off_slab_cache(cachep, tmp_size, flags)) {
2121 flags |= CFLGS_OFF_SLAB;
2122 cachep->obj_offset += tmp_size - size;
2123 size = tmp_size;
2124 goto done;
2125 }
2126 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 }
2128#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002129
Joonsoo Kimb03a017b2016-03-15 14:54:50 -07002130 if (set_objfreelist_slab_cache(cachep, size, flags)) {
2131 flags |= CFLGS_OBJFREELIST_SLAB;
2132 goto done;
2133 }
2134
Joonsoo Kim158e3192016-03-15 14:54:35 -07002135 if (set_off_slab_cache(cachep, size, flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 flags |= CFLGS_OFF_SLAB;
Joonsoo Kim158e3192016-03-15 14:54:35 -07002137 goto done;
Joonsoo Kim832a15d2016-03-15 14:54:33 -07002138 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139
Joonsoo Kim158e3192016-03-15 14:54:35 -07002140 if (set_on_slab_cache(cachep, size, flags))
2141 goto done;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002142
Joonsoo Kim158e3192016-03-15 14:54:35 -07002143 return -E2BIG;
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002144
Joonsoo Kim158e3192016-03-15 14:54:35 -07002145done:
2146 cachep->freelist_size = cachep->num * sizeof(freelist_idx_t);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 cachep->flags = flags;
Joonsoo Kima57a4982013-10-24 10:07:44 +09002148 cachep->allocflags = __GFP_COMP;
Christoph Lameter4b51d662007-02-10 01:43:10 -08002149 if (CONFIG_ZONE_DMA_FLAG && (flags & SLAB_CACHE_DMA))
Glauber Costaa618e892012-06-14 16:17:21 +04002150 cachep->allocflags |= GFP_DMA;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002151 cachep->size = size;
Eric Dumazet6a2d7a92006-12-13 00:34:27 -08002152 cachep->reciprocal_buffer_size = reciprocal_value(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002153
Joonsoo Kim40b44132016-03-15 14:54:21 -07002154#if DEBUG
2155 /*
2156 * If we're going to use the generic kernel_map_pages()
2157 * poisoning, then it's going to smash the contents of
2158 * the redzone and userword anyhow, so switch them off.
2159 */
2160 if (IS_ENABLED(CONFIG_PAGE_POISONING) &&
2161 (cachep->flags & SLAB_POISON) &&
2162 is_debug_pagealloc_cache(cachep))
2163 cachep->flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
2164#endif
2165
2166 if (OFF_SLAB(cachep)) {
Joonsoo Kim158e3192016-03-15 14:54:35 -07002167 cachep->freelist_cache =
2168 kmalloc_slab(cachep->freelist_size, 0u);
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002169 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002171 err = setup_cpu_cache(cachep, gfp);
2172 if (err) {
Dmitry Safonov52b4b952016-02-17 13:11:37 -08002173 __kmem_cache_release(cachep);
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002174 return err;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002175 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002177 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002179
2180#if DEBUG
2181static void check_irq_off(void)
2182{
2183 BUG_ON(!irqs_disabled());
2184}
2185
2186static void check_irq_on(void)
2187{
2188 BUG_ON(irqs_disabled());
2189}
2190
Joonsoo Kim18726ca2016-05-19 17:10:02 -07002191static void check_mutex_acquired(void)
2192{
2193 BUG_ON(!mutex_is_locked(&slab_mutex));
2194}
2195
Pekka Enberg343e0d72006-02-01 03:05:50 -08002196static void check_spinlock_acquired(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197{
2198#ifdef CONFIG_SMP
2199 check_irq_off();
Christoph Lameter18bf8542014-08-06 16:04:11 -07002200 assert_spin_locked(&get_node(cachep, numa_mem_id())->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201#endif
2202}
Christoph Lametere498be72005-09-09 13:03:32 -07002203
Pekka Enberg343e0d72006-02-01 03:05:50 -08002204static void check_spinlock_acquired_node(struct kmem_cache *cachep, int node)
Christoph Lametere498be72005-09-09 13:03:32 -07002205{
2206#ifdef CONFIG_SMP
2207 check_irq_off();
Christoph Lameter18bf8542014-08-06 16:04:11 -07002208 assert_spin_locked(&get_node(cachep, node)->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07002209#endif
2210}
2211
Linus Torvalds1da177e2005-04-16 15:20:36 -07002212#else
2213#define check_irq_off() do { } while(0)
2214#define check_irq_on() do { } while(0)
Joonsoo Kim18726ca2016-05-19 17:10:02 -07002215#define check_mutex_acquired() do { } while(0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216#define check_spinlock_acquired(x) do { } while(0)
Christoph Lametere498be72005-09-09 13:03:32 -07002217#define check_spinlock_acquired_node(x, y) do { } while(0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218#endif
2219
Joonsoo Kim18726ca2016-05-19 17:10:02 -07002220static void drain_array_locked(struct kmem_cache *cachep, struct array_cache *ac,
2221 int node, bool free_all, struct list_head *list)
2222{
2223 int tofree;
2224
2225 if (!ac || !ac->avail)
2226 return;
2227
2228 tofree = free_all ? ac->avail : (ac->limit + 4) / 5;
2229 if (tofree > ac->avail)
2230 tofree = (ac->avail + 1) / 2;
2231
2232 free_block(cachep, ac->entry, tofree, node, list);
2233 ac->avail -= tofree;
2234 memmove(ac->entry, &(ac->entry[tofree]), sizeof(void *) * ac->avail);
2235}
Christoph Lameteraab22072006-03-22 00:09:06 -08002236
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237static void do_drain(void *arg)
2238{
Andrew Mortona737b3e2006-03-22 00:08:11 -08002239 struct kmem_cache *cachep = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240 struct array_cache *ac;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07002241 int node = numa_mem_id();
Christoph Lameter18bf8542014-08-06 16:04:11 -07002242 struct kmem_cache_node *n;
Joonsoo Kim97654df2014-08-06 16:04:25 -07002243 LIST_HEAD(list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002244
2245 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002246 ac = cpu_cache_get(cachep);
Christoph Lameter18bf8542014-08-06 16:04:11 -07002247 n = get_node(cachep, node);
2248 spin_lock(&n->list_lock);
Joonsoo Kim97654df2014-08-06 16:04:25 -07002249 free_block(cachep, ac->entry, ac->avail, node, &list);
Christoph Lameter18bf8542014-08-06 16:04:11 -07002250 spin_unlock(&n->list_lock);
Joonsoo Kim97654df2014-08-06 16:04:25 -07002251 slabs_destroy(cachep, &list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 ac->avail = 0;
2253}
2254
Pekka Enberg343e0d72006-02-01 03:05:50 -08002255static void drain_cpu_caches(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256{
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002257 struct kmem_cache_node *n;
Christoph Lametere498be72005-09-09 13:03:32 -07002258 int node;
Joonsoo Kim18726ca2016-05-19 17:10:02 -07002259 LIST_HEAD(list);
Christoph Lametere498be72005-09-09 13:03:32 -07002260
Jens Axboe15c8b6c2008-05-09 09:39:44 +02002261 on_each_cpu(do_drain, cachep, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 check_irq_on();
Christoph Lameter18bf8542014-08-06 16:04:11 -07002263 for_each_kmem_cache_node(cachep, node, n)
2264 if (n->alien)
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002265 drain_alien_cache(cachep, n->alien);
Roland Dreiera4523a82006-05-15 11:41:00 -07002266
Joonsoo Kim18726ca2016-05-19 17:10:02 -07002267 for_each_kmem_cache_node(cachep, node, n) {
2268 spin_lock_irq(&n->list_lock);
2269 drain_array_locked(cachep, n->shared, node, true, &list);
2270 spin_unlock_irq(&n->list_lock);
2271
2272 slabs_destroy(cachep, &list);
2273 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002274}
2275
Christoph Lametered11d9e2006-06-30 01:55:45 -07002276/*
2277 * Remove slabs from the list of free slabs.
2278 * Specify the number of slabs to drain in tofree.
2279 *
2280 * Returns the actual number of slabs released.
2281 */
2282static int drain_freelist(struct kmem_cache *cache,
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002283 struct kmem_cache_node *n, int tofree)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284{
Christoph Lametered11d9e2006-06-30 01:55:45 -07002285 struct list_head *p;
2286 int nr_freed;
Joonsoo Kim8456a642013-10-24 10:07:49 +09002287 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288
Christoph Lametered11d9e2006-06-30 01:55:45 -07002289 nr_freed = 0;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002290 while (nr_freed < tofree && !list_empty(&n->slabs_free)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002292 spin_lock_irq(&n->list_lock);
2293 p = n->slabs_free.prev;
2294 if (p == &n->slabs_free) {
2295 spin_unlock_irq(&n->list_lock);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002296 goto out;
2297 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298
Joonsoo Kim8456a642013-10-24 10:07:49 +09002299 page = list_entry(p, struct page, lru);
Joonsoo Kim8456a642013-10-24 10:07:49 +09002300 list_del(&page->lru);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002301 /*
2302 * Safe to drop the lock. The slab is no longer linked
2303 * to the cache.
2304 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002305 n->free_objects -= cache->num;
2306 spin_unlock_irq(&n->list_lock);
Joonsoo Kim8456a642013-10-24 10:07:49 +09002307 slab_destroy(cache, page);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002308 nr_freed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 }
Christoph Lametered11d9e2006-06-30 01:55:45 -07002310out:
2311 return nr_freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002312}
2313
Vladimir Davydovd6e0b7f2015-02-12 14:59:47 -08002314int __kmem_cache_shrink(struct kmem_cache *cachep, bool deactivate)
Christoph Lametere498be72005-09-09 13:03:32 -07002315{
Christoph Lameter18bf8542014-08-06 16:04:11 -07002316 int ret = 0;
2317 int node;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002318 struct kmem_cache_node *n;
Christoph Lametere498be72005-09-09 13:03:32 -07002319
2320 drain_cpu_caches(cachep);
2321
2322 check_irq_on();
Christoph Lameter18bf8542014-08-06 16:04:11 -07002323 for_each_kmem_cache_node(cachep, node, n) {
Joonsoo Kima5aa63a2016-05-19 17:10:08 -07002324 drain_freelist(cachep, n, INT_MAX);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002325
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002326 ret += !list_empty(&n->slabs_full) ||
2327 !list_empty(&n->slabs_partial);
Christoph Lametere498be72005-09-09 13:03:32 -07002328 }
2329 return (ret ? 1 : 0);
2330}
2331
Christoph Lameter945cf2b2012-09-04 23:18:33 +00002332int __kmem_cache_shutdown(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333{
Dmitry Safonov52b4b952016-02-17 13:11:37 -08002334 return __kmem_cache_shrink(cachep, false);
2335}
2336
2337void __kmem_cache_release(struct kmem_cache *cachep)
2338{
Christoph Lameter12c36672012-09-04 23:38:33 +00002339 int i;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002340 struct kmem_cache_node *n;
Christoph Lameter12c36672012-09-04 23:38:33 +00002341
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07002342 free_percpu(cachep->cpu_cache);
Christoph Lameter12c36672012-09-04 23:38:33 +00002343
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002344 /* NUMA: free the node structures */
Christoph Lameter18bf8542014-08-06 16:04:11 -07002345 for_each_kmem_cache_node(cachep, i, n) {
2346 kfree(n->shared);
2347 free_alien_cache(n->alien);
2348 kfree(n);
2349 cachep->node[i] = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002351}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002352
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002353/*
2354 * Get the memory for a slab management obj.
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08002355 *
2356 * For a slab cache when the slab descriptor is off-slab, the
2357 * slab descriptor can't come from the same cache which is being created,
2358 * Because if it is the case, that means we defer the creation of
2359 * the kmalloc_{dma,}_cache of size sizeof(slab descriptor) to this point.
2360 * And we eventually call down to __kmem_cache_create(), which
2361 * in turn looks up in the kmalloc_{dma,}_caches for the disired-size one.
2362 * This is a "chicken-and-egg" problem.
2363 *
2364 * So the off-slab slab descriptor shall come from the kmalloc_{dma,}_caches,
2365 * which are all initialized during kmem_cache_init().
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002366 */
Joonsoo Kim7e007352013-10-30 19:04:01 +09002367static void *alloc_slabmgmt(struct kmem_cache *cachep,
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002368 struct page *page, int colour_off,
2369 gfp_t local_flags, int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370{
Joonsoo Kim7e007352013-10-30 19:04:01 +09002371 void *freelist;
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002372 void *addr = page_address(page);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002373
Joonsoo Kim2e6b3602016-03-15 14:54:30 -07002374 page->s_mem = addr + colour_off;
2375 page->active = 0;
2376
Joonsoo Kimb03a017b2016-03-15 14:54:50 -07002377 if (OBJFREELIST_SLAB(cachep))
2378 freelist = NULL;
2379 else if (OFF_SLAB(cachep)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 /* Slab management obj is off-slab. */
Joonsoo Kim8456a642013-10-24 10:07:49 +09002381 freelist = kmem_cache_alloc_node(cachep->freelist_cache,
Pekka Enberg8759ec52008-11-26 10:01:31 +02002382 local_flags, nodeid);
Joonsoo Kim8456a642013-10-24 10:07:49 +09002383 if (!freelist)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 return NULL;
2385 } else {
Joonsoo Kim2e6b3602016-03-15 14:54:30 -07002386 /* We will use last bytes at the slab for freelist */
2387 freelist = addr + (PAGE_SIZE << cachep->gfporder) -
2388 cachep->freelist_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002389 }
Joonsoo Kim2e6b3602016-03-15 14:54:30 -07002390
Joonsoo Kim8456a642013-10-24 10:07:49 +09002391 return freelist;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392}
2393
Joonsoo Kim7cc68972014-04-18 16:24:09 +09002394static inline freelist_idx_t get_free_obj(struct page *page, unsigned int idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395{
Joonsoo Kima41adfa2013-12-02 17:49:42 +09002396 return ((freelist_idx_t *)page->freelist)[idx];
Joonsoo Kime5c58df2013-12-02 17:49:40 +09002397}
2398
2399static inline void set_free_obj(struct page *page,
Joonsoo Kim7cc68972014-04-18 16:24:09 +09002400 unsigned int idx, freelist_idx_t val)
Joonsoo Kime5c58df2013-12-02 17:49:40 +09002401{
Joonsoo Kima41adfa2013-12-02 17:49:42 +09002402 ((freelist_idx_t *)(page->freelist))[idx] = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403}
2404
Joonsoo Kim10b2e9e2016-03-15 14:54:47 -07002405static void cache_init_objs_debug(struct kmem_cache *cachep, struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406{
Joonsoo Kim10b2e9e2016-03-15 14:54:47 -07002407#if DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 int i;
2409
2410 for (i = 0; i < cachep->num; i++) {
Joonsoo Kim8456a642013-10-24 10:07:49 +09002411 void *objp = index_to_obj(cachep, page, i);
Joonsoo Kim10b2e9e2016-03-15 14:54:47 -07002412
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413 if (cachep->flags & SLAB_STORE_USER)
2414 *dbg_userword(cachep, objp) = NULL;
2415
2416 if (cachep->flags & SLAB_RED_ZONE) {
2417 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2418 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2419 }
2420 /*
Andrew Mortona737b3e2006-03-22 00:08:11 -08002421 * Constructors are not allowed to allocate memory from the same
2422 * cache which they are a constructor for. Otherwise, deadlock.
2423 * They must also be threaded.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424 */
Alexander Potapenko7ed2f9e2016-03-25 14:21:59 -07002425 if (cachep->ctor && !(cachep->flags & SLAB_POISON)) {
2426 kasan_unpoison_object_data(cachep,
2427 objp + obj_offset(cachep));
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002428 cachep->ctor(objp + obj_offset(cachep));
Alexander Potapenko7ed2f9e2016-03-25 14:21:59 -07002429 kasan_poison_object_data(
2430 cachep, objp + obj_offset(cachep));
2431 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432
2433 if (cachep->flags & SLAB_RED_ZONE) {
2434 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
Joe Perches756a0252016-03-17 14:19:47 -07002435 slab_error(cachep, "constructor overwrote the end of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
Joe Perches756a0252016-03-17 14:19:47 -07002437 slab_error(cachep, "constructor overwrote the start of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438 }
Joonsoo Kim40b44132016-03-15 14:54:21 -07002439 /* need to poison the objs? */
2440 if (cachep->flags & SLAB_POISON) {
2441 poison_obj(cachep, objp, POISON_FREE);
2442 slab_kernel_map(cachep, objp, 0, 0);
2443 }
Joonsoo Kim10b2e9e2016-03-15 14:54:47 -07002444 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445#endif
Joonsoo Kim10b2e9e2016-03-15 14:54:47 -07002446}
2447
2448static void cache_init_objs(struct kmem_cache *cachep,
2449 struct page *page)
2450{
2451 int i;
Alexander Potapenko7ed2f9e2016-03-25 14:21:59 -07002452 void *objp;
Joonsoo Kim10b2e9e2016-03-15 14:54:47 -07002453
2454 cache_init_objs_debug(cachep, page);
2455
Joonsoo Kimb03a017b2016-03-15 14:54:50 -07002456 if (OBJFREELIST_SLAB(cachep)) {
2457 page->freelist = index_to_obj(cachep, page, cachep->num - 1) +
2458 obj_offset(cachep);
2459 }
2460
Joonsoo Kim10b2e9e2016-03-15 14:54:47 -07002461 for (i = 0; i < cachep->num; i++) {
2462 /* constructor could break poison info */
Alexander Potapenko7ed2f9e2016-03-25 14:21:59 -07002463 if (DEBUG == 0 && cachep->ctor) {
2464 objp = index_to_obj(cachep, page, i);
2465 kasan_unpoison_object_data(cachep, objp);
2466 cachep->ctor(objp);
2467 kasan_poison_object_data(cachep, objp);
2468 }
Joonsoo Kim10b2e9e2016-03-15 14:54:47 -07002469
Joonsoo Kime5c58df2013-12-02 17:49:40 +09002470 set_free_obj(page, i, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472}
2473
Pekka Enberg343e0d72006-02-01 03:05:50 -08002474static void kmem_flagcheck(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475{
Christoph Lameter4b51d662007-02-10 01:43:10 -08002476 if (CONFIG_ZONE_DMA_FLAG) {
2477 if (flags & GFP_DMA)
Glauber Costaa618e892012-06-14 16:17:21 +04002478 BUG_ON(!(cachep->allocflags & GFP_DMA));
Christoph Lameter4b51d662007-02-10 01:43:10 -08002479 else
Glauber Costaa618e892012-06-14 16:17:21 +04002480 BUG_ON(cachep->allocflags & GFP_DMA);
Christoph Lameter4b51d662007-02-10 01:43:10 -08002481 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482}
2483
Joonsoo Kim260b61d2016-03-15 14:54:12 -07002484static void *slab_get_obj(struct kmem_cache *cachep, struct page *page)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002485{
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09002486 void *objp;
Matthew Dobson78d382d2006-02-01 03:05:47 -08002487
Joonsoo Kime5c58df2013-12-02 17:49:40 +09002488 objp = index_to_obj(cachep, page, get_free_obj(page, page->active));
Joonsoo Kim8456a642013-10-24 10:07:49 +09002489 page->active++;
Matthew Dobson78d382d2006-02-01 03:05:47 -08002490
Joonsoo Kimd31676d2016-03-15 14:54:24 -07002491#if DEBUG
2492 if (cachep->flags & SLAB_STORE_USER)
2493 set_store_user_dirty(cachep);
2494#endif
2495
Matthew Dobson78d382d2006-02-01 03:05:47 -08002496 return objp;
2497}
2498
Joonsoo Kim260b61d2016-03-15 14:54:12 -07002499static void slab_put_obj(struct kmem_cache *cachep,
2500 struct page *page, void *objp)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002501{
Joonsoo Kim8456a642013-10-24 10:07:49 +09002502 unsigned int objnr = obj_to_index(cachep, page, objp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002503#if DEBUG
Joonsoo Kim16025172013-10-24 10:07:46 +09002504 unsigned int i;
Matthew Dobson78d382d2006-02-01 03:05:47 -08002505
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09002506 /* Verify double free bug */
Joonsoo Kim8456a642013-10-24 10:07:49 +09002507 for (i = page->active; i < cachep->num; i++) {
Joonsoo Kime5c58df2013-12-02 17:49:40 +09002508 if (get_free_obj(page, i) == objnr) {
Joe Perches11705322016-03-17 14:19:50 -07002509 pr_err("slab: double free detected in cache '%s', objp %p\n",
Joe Perches756a0252016-03-17 14:19:47 -07002510 cachep->name, objp);
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09002511 BUG();
2512 }
Matthew Dobson78d382d2006-02-01 03:05:47 -08002513 }
2514#endif
Joonsoo Kim8456a642013-10-24 10:07:49 +09002515 page->active--;
Joonsoo Kimb03a017b2016-03-15 14:54:50 -07002516 if (!page->freelist)
2517 page->freelist = objp + obj_offset(cachep);
2518
Joonsoo Kime5c58df2013-12-02 17:49:40 +09002519 set_free_obj(page, page->active, objnr);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002520}
2521
Pekka Enberg47768742006-06-23 02:03:07 -07002522/*
2523 * Map pages beginning at addr to the given cache and slab. This is required
2524 * for the slab allocator to be able to lookup the cache and slab of a
Nick Pigginccd35fb2011-01-07 17:49:17 +11002525 * virtual address for kfree, ksize, and slab debugging.
Pekka Enberg47768742006-06-23 02:03:07 -07002526 */
Joonsoo Kim8456a642013-10-24 10:07:49 +09002527static void slab_map_pages(struct kmem_cache *cache, struct page *page,
Joonsoo Kim7e007352013-10-30 19:04:01 +09002528 void *freelist)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002529{
Joonsoo Kima57a4982013-10-24 10:07:44 +09002530 page->slab_cache = cache;
Joonsoo Kim8456a642013-10-24 10:07:49 +09002531 page->freelist = freelist;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532}
2533
2534/*
2535 * Grow (by 1) the number of slabs within a cache. This is called by
2536 * kmem_cache_alloc() when there are no active objs left in a cache.
2537 */
Christoph Lameter3c517a62006-12-06 20:33:29 -08002538static int cache_grow(struct kmem_cache *cachep,
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002539 gfp_t flags, int nodeid, struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540{
Joonsoo Kim7e007352013-10-30 19:04:01 +09002541 void *freelist;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002542 size_t offset;
2543 gfp_t local_flags;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002544 struct kmem_cache_node *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545
Andrew Mortona737b3e2006-03-22 00:08:11 -08002546 /*
2547 * Be lazy and only check for valid flags here, keeping it out of the
2548 * critical path in kmem_cache_alloc().
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 */
Andrew Mortonc871ac42014-12-10 15:42:25 -08002550 if (unlikely(flags & GFP_SLAB_BUG_MASK)) {
2551 pr_emerg("gfp: %u\n", flags & GFP_SLAB_BUG_MASK);
2552 BUG();
2553 }
Christoph Lameter6cb06222007-10-16 01:25:41 -07002554 local_flags = flags & (GFP_CONSTRAINT_MASK|GFP_RECLAIM_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002556 /* Take the node list lock to change the colour_next on this node */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 check_irq_off();
Christoph Lameter18bf8542014-08-06 16:04:11 -07002558 n = get_node(cachep, nodeid);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002559 spin_lock(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560
2561 /* Get colour for the slab, and cal the next value. */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002562 offset = n->colour_next;
2563 n->colour_next++;
2564 if (n->colour_next >= cachep->colour)
2565 n->colour_next = 0;
2566 spin_unlock(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002568 offset *= cachep->colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569
Mel Gormand0164ad2015-11-06 16:28:21 -08002570 if (gfpflags_allow_blocking(local_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002571 local_irq_enable();
2572
2573 /*
2574 * The test for missing atomic flag is performed here, rather than
2575 * the more obvious place, simply to reduce the critical path length
2576 * in kmem_cache_alloc(). If a caller is seriously mis-behaving they
2577 * will eventually be caught here (where it matters).
2578 */
2579 kmem_flagcheck(cachep, flags);
2580
Andrew Mortona737b3e2006-03-22 00:08:11 -08002581 /*
2582 * Get mem for the objs. Attempt to allocate a physical page from
2583 * 'nodeid'.
Christoph Lametere498be72005-09-09 13:03:32 -07002584 */
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002585 if (!page)
2586 page = kmem_getpages(cachep, local_flags, nodeid);
2587 if (!page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588 goto failed;
2589
2590 /* Get slab management. */
Joonsoo Kim8456a642013-10-24 10:07:49 +09002591 freelist = alloc_slabmgmt(cachep, page, offset,
Christoph Lameter6cb06222007-10-16 01:25:41 -07002592 local_flags & ~GFP_CONSTRAINT_MASK, nodeid);
Joonsoo Kimb03a017b2016-03-15 14:54:50 -07002593 if (OFF_SLAB(cachep) && !freelist)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594 goto opps1;
2595
Joonsoo Kim8456a642013-10-24 10:07:49 +09002596 slab_map_pages(cachep, page, freelist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597
Alexander Potapenko7ed2f9e2016-03-25 14:21:59 -07002598 kasan_poison_slab(page);
Joonsoo Kim8456a642013-10-24 10:07:49 +09002599 cache_init_objs(cachep, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600
Mel Gormand0164ad2015-11-06 16:28:21 -08002601 if (gfpflags_allow_blocking(local_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 local_irq_disable();
2603 check_irq_off();
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002604 spin_lock(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605
2606 /* Make slab active. */
Joonsoo Kim8456a642013-10-24 10:07:49 +09002607 list_add_tail(&page->lru, &(n->slabs_free));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608 STATS_INC_GROWN(cachep);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002609 n->free_objects += cachep->num;
2610 spin_unlock(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002611 return 1;
Andrew Mortona737b3e2006-03-22 00:08:11 -08002612opps1:
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002613 kmem_freepages(cachep, page);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002614failed:
Mel Gormand0164ad2015-11-06 16:28:21 -08002615 if (gfpflags_allow_blocking(local_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616 local_irq_disable();
2617 return 0;
2618}
2619
2620#if DEBUG
2621
2622/*
2623 * Perform extra freeing checks:
2624 * - detect bad pointers.
2625 * - POISON/RED_ZONE checking
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626 */
2627static void kfree_debugcheck(const void *objp)
2628{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002629 if (!virt_addr_valid(objp)) {
Joe Perches11705322016-03-17 14:19:50 -07002630 pr_err("kfree_debugcheck: out of range ptr %lxh\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002631 (unsigned long)objp);
2632 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634}
2635
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002636static inline void verify_redzone_free(struct kmem_cache *cache, void *obj)
2637{
David Woodhouseb46b8f12007-05-08 00:22:59 -07002638 unsigned long long redzone1, redzone2;
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002639
2640 redzone1 = *dbg_redzone1(cache, obj);
2641 redzone2 = *dbg_redzone2(cache, obj);
2642
2643 /*
2644 * Redzone is ok.
2645 */
2646 if (redzone1 == RED_ACTIVE && redzone2 == RED_ACTIVE)
2647 return;
2648
2649 if (redzone1 == RED_INACTIVE && redzone2 == RED_INACTIVE)
2650 slab_error(cache, "double free detected");
2651 else
2652 slab_error(cache, "memory outside object was overwritten");
2653
Joe Perches11705322016-03-17 14:19:50 -07002654 pr_err("%p: redzone 1:0x%llx, redzone 2:0x%llx\n",
2655 obj, redzone1, redzone2);
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002656}
2657
Pekka Enberg343e0d72006-02-01 03:05:50 -08002658static void *cache_free_debugcheck(struct kmem_cache *cachep, void *objp,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03002659 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661 unsigned int objnr;
Joonsoo Kim8456a642013-10-24 10:07:49 +09002662 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663
Matthew Wilcox80cbd912007-11-29 12:05:13 -07002664 BUG_ON(virt_to_cache(objp) != cachep);
2665
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002666 objp -= obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002667 kfree_debugcheck(objp);
Christoph Lameterb49af682007-05-06 14:49:41 -07002668 page = virt_to_head_page(objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670 if (cachep->flags & SLAB_RED_ZONE) {
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002671 verify_redzone_free(cachep, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2673 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2674 }
Joonsoo Kimd31676d2016-03-15 14:54:24 -07002675 if (cachep->flags & SLAB_STORE_USER) {
2676 set_store_user_dirty(cachep);
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03002677 *dbg_userword(cachep, objp) = (void *)caller;
Joonsoo Kimd31676d2016-03-15 14:54:24 -07002678 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679
Joonsoo Kim8456a642013-10-24 10:07:49 +09002680 objnr = obj_to_index(cachep, page, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002681
2682 BUG_ON(objnr >= cachep->num);
Joonsoo Kim8456a642013-10-24 10:07:49 +09002683 BUG_ON(objp != index_to_obj(cachep, page, objnr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685 if (cachep->flags & SLAB_POISON) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686 poison_obj(cachep, objp, POISON_FREE);
Joonsoo Kim40b44132016-03-15 14:54:21 -07002687 slab_kernel_map(cachep, objp, 0, caller);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688 }
2689 return objp;
2690}
2691
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692#else
2693#define kfree_debugcheck(x) do { } while(0)
2694#define cache_free_debugcheck(x,objp,z) (objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695#endif
2696
Joonsoo Kimb03a017b2016-03-15 14:54:50 -07002697static inline void fixup_objfreelist_debug(struct kmem_cache *cachep,
2698 void **list)
2699{
2700#if DEBUG
2701 void *next = *list;
2702 void *objp;
2703
2704 while (next) {
2705 objp = next - obj_offset(cachep);
2706 next = *(void **)next;
2707 poison_obj(cachep, objp, POISON_FREE);
2708 }
2709#endif
2710}
2711
Joonsoo Kimd8410232016-03-15 14:54:44 -07002712static inline void fixup_slab_list(struct kmem_cache *cachep,
Joonsoo Kimb03a017b2016-03-15 14:54:50 -07002713 struct kmem_cache_node *n, struct page *page,
2714 void **list)
Joonsoo Kimd8410232016-03-15 14:54:44 -07002715{
2716 /* move slabp to correct slabp list: */
2717 list_del(&page->lru);
Joonsoo Kimb03a017b2016-03-15 14:54:50 -07002718 if (page->active == cachep->num) {
Joonsoo Kimd8410232016-03-15 14:54:44 -07002719 list_add(&page->lru, &n->slabs_full);
Joonsoo Kimb03a017b2016-03-15 14:54:50 -07002720 if (OBJFREELIST_SLAB(cachep)) {
2721#if DEBUG
2722 /* Poisoning will be done without holding the lock */
2723 if (cachep->flags & SLAB_POISON) {
2724 void **objp = page->freelist;
2725
2726 *objp = *list;
2727 *list = objp;
2728 }
2729#endif
2730 page->freelist = NULL;
2731 }
2732 } else
Joonsoo Kimd8410232016-03-15 14:54:44 -07002733 list_add(&page->lru, &n->slabs_partial);
2734}
2735
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07002736/* Try to find non-pfmemalloc slab if needed */
2737static noinline struct page *get_valid_first_slab(struct kmem_cache_node *n,
2738 struct page *page, bool pfmemalloc)
2739{
2740 if (!page)
2741 return NULL;
2742
2743 if (pfmemalloc)
2744 return page;
2745
2746 if (!PageSlabPfmemalloc(page))
2747 return page;
2748
2749 /* No need to keep pfmemalloc slab if we have enough free objects */
2750 if (n->free_objects > n->free_limit) {
2751 ClearPageSlabPfmemalloc(page);
2752 return page;
2753 }
2754
2755 /* Move pfmemalloc slab to the end of list to speed up next search */
2756 list_del(&page->lru);
2757 if (!page->active)
2758 list_add_tail(&page->lru, &n->slabs_free);
2759 else
2760 list_add_tail(&page->lru, &n->slabs_partial);
2761
2762 list_for_each_entry(page, &n->slabs_partial, lru) {
2763 if (!PageSlabPfmemalloc(page))
2764 return page;
2765 }
2766
2767 list_for_each_entry(page, &n->slabs_free, lru) {
2768 if (!PageSlabPfmemalloc(page))
2769 return page;
2770 }
2771
2772 return NULL;
2773}
2774
2775static struct page *get_first_slab(struct kmem_cache_node *n, bool pfmemalloc)
Geliang Tang7aa0d222016-01-14 15:18:02 -08002776{
2777 struct page *page;
2778
2779 page = list_first_entry_or_null(&n->slabs_partial,
2780 struct page, lru);
2781 if (!page) {
2782 n->free_touched = 1;
2783 page = list_first_entry_or_null(&n->slabs_free,
2784 struct page, lru);
2785 }
2786
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07002787 if (sk_memalloc_socks())
2788 return get_valid_first_slab(n, page, pfmemalloc);
2789
Geliang Tang7aa0d222016-01-14 15:18:02 -08002790 return page;
2791}
2792
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07002793static noinline void *cache_alloc_pfmemalloc(struct kmem_cache *cachep,
2794 struct kmem_cache_node *n, gfp_t flags)
2795{
2796 struct page *page;
2797 void *obj;
2798 void *list = NULL;
2799
2800 if (!gfp_pfmemalloc_allowed(flags))
2801 return NULL;
2802
2803 spin_lock(&n->list_lock);
2804 page = get_first_slab(n, true);
2805 if (!page) {
2806 spin_unlock(&n->list_lock);
2807 return NULL;
2808 }
2809
2810 obj = slab_get_obj(cachep, page);
2811 n->free_objects--;
2812
2813 fixup_slab_list(cachep, n, page, &list);
2814
2815 spin_unlock(&n->list_lock);
2816 fixup_objfreelist_debug(cachep, &list);
2817
2818 return obj;
2819}
2820
2821static void *cache_alloc_refill(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822{
2823 int batchcount;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002824 struct kmem_cache_node *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825 struct array_cache *ac;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07002826 int node;
Joonsoo Kimb03a017b2016-03-15 14:54:50 -07002827 void *list = NULL;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07002828
Joe Korty6d2144d2008-03-05 15:04:59 -08002829 check_irq_off();
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07002830 node = numa_mem_id();
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07002831
Mel Gorman072bb0a2012-07-31 16:43:58 -07002832retry:
Joe Korty6d2144d2008-03-05 15:04:59 -08002833 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834 batchcount = ac->batchcount;
2835 if (!ac->touched && batchcount > BATCHREFILL_LIMIT) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002836 /*
2837 * If there was little recent activity on this cache, then
2838 * perform only a partial refill. Otherwise we could generate
2839 * refill bouncing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 */
2841 batchcount = BATCHREFILL_LIMIT;
2842 }
Christoph Lameter18bf8542014-08-06 16:04:11 -07002843 n = get_node(cachep, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002845 BUG_ON(ac->avail > 0 || !n);
2846 spin_lock(&n->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07002847
Christoph Lameter3ded1752006-03-25 03:06:44 -08002848 /* See if we can refill from the shared array */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002849 if (n->shared && transfer_objects(ac, n->shared, batchcount)) {
2850 n->shared->touched = 1;
Christoph Lameter3ded1752006-03-25 03:06:44 -08002851 goto alloc_done;
Nick Piggin44b57f12010-01-27 22:27:40 +11002852 }
Christoph Lameter3ded1752006-03-25 03:06:44 -08002853
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854 while (batchcount > 0) {
Joonsoo Kim8456a642013-10-24 10:07:49 +09002855 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856 /* Get slab alloc is to come from. */
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07002857 page = get_first_slab(n, false);
Geliang Tang7aa0d222016-01-14 15:18:02 -08002858 if (!page)
2859 goto must_grow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861 check_spinlock_acquired(cachep);
Pekka Enberg714b81712007-05-06 14:49:03 -07002862
2863 /*
2864 * The slab was either on partial or free list so
2865 * there must be at least one object available for
2866 * allocation.
2867 */
Joonsoo Kim8456a642013-10-24 10:07:49 +09002868 BUG_ON(page->active >= cachep->num);
Pekka Enberg714b81712007-05-06 14:49:03 -07002869
Joonsoo Kim8456a642013-10-24 10:07:49 +09002870 while (page->active < cachep->num && batchcount--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871 STATS_INC_ALLOCED(cachep);
2872 STATS_INC_ACTIVE(cachep);
2873 STATS_SET_HIGH(cachep);
2874
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07002875 ac->entry[ac->avail++] = slab_get_obj(cachep, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877
Joonsoo Kimb03a017b2016-03-15 14:54:50 -07002878 fixup_slab_list(cachep, n, page, &list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879 }
2880
Andrew Mortona737b3e2006-03-22 00:08:11 -08002881must_grow:
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002882 n->free_objects -= ac->avail;
Andrew Mortona737b3e2006-03-22 00:08:11 -08002883alloc_done:
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002884 spin_unlock(&n->list_lock);
Joonsoo Kimb03a017b2016-03-15 14:54:50 -07002885 fixup_objfreelist_debug(cachep, &list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886
2887 if (unlikely(!ac->avail)) {
2888 int x;
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07002889
2890 /* Check if we can use obj in pfmemalloc slab */
2891 if (sk_memalloc_socks()) {
2892 void *obj = cache_alloc_pfmemalloc(cachep, n, flags);
2893
2894 if (obj)
2895 return obj;
2896 }
2897
David Rientjes4167e9b2015-04-14 15:46:55 -07002898 x = cache_grow(cachep, gfp_exact_node(flags), node, NULL);
Christoph Lametere498be72005-09-09 13:03:32 -07002899
Andrew Mortona737b3e2006-03-22 00:08:11 -08002900 /* cache_grow can reenable interrupts, then ac could change. */
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002901 ac = cpu_cache_get(cachep);
David Rientjes51cd8e62012-08-28 19:57:21 -07002902 node = numa_mem_id();
Mel Gorman072bb0a2012-07-31 16:43:58 -07002903
2904 /* no objects in sight? abort */
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07002905 if (!x && ac->avail == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906 return NULL;
2907
Andrew Mortona737b3e2006-03-22 00:08:11 -08002908 if (!ac->avail) /* objects refilled by interrupt? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 goto retry;
2910 }
2911 ac->touched = 1;
Mel Gorman072bb0a2012-07-31 16:43:58 -07002912
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07002913 return ac->entry[--ac->avail];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914}
2915
Andrew Mortona737b3e2006-03-22 00:08:11 -08002916static inline void cache_alloc_debugcheck_before(struct kmem_cache *cachep,
2917 gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918{
Mel Gormand0164ad2015-11-06 16:28:21 -08002919 might_sleep_if(gfpflags_allow_blocking(flags));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920#if DEBUG
2921 kmem_flagcheck(cachep, flags);
2922#endif
2923}
2924
2925#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08002926static void *cache_alloc_debugcheck_after(struct kmem_cache *cachep,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03002927 gfp_t flags, void *objp, unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002929 if (!objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930 return objp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002931 if (cachep->flags & SLAB_POISON) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932 check_poison_obj(cachep, objp);
Joonsoo Kim40b44132016-03-15 14:54:21 -07002933 slab_kernel_map(cachep, objp, 1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934 poison_obj(cachep, objp, POISON_INUSE);
2935 }
2936 if (cachep->flags & SLAB_STORE_USER)
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03002937 *dbg_userword(cachep, objp) = (void *)caller;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002938
2939 if (cachep->flags & SLAB_RED_ZONE) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002940 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE ||
2941 *dbg_redzone2(cachep, objp) != RED_INACTIVE) {
Joe Perches756a0252016-03-17 14:19:47 -07002942 slab_error(cachep, "double free, or memory outside object was overwritten");
Joe Perches11705322016-03-17 14:19:50 -07002943 pr_err("%p: redzone 1:0x%llx, redzone 2:0x%llx\n",
2944 objp, *dbg_redzone1(cachep, objp),
2945 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 }
2947 *dbg_redzone1(cachep, objp) = RED_ACTIVE;
2948 *dbg_redzone2(cachep, objp) = RED_ACTIVE;
2949 }
Joonsoo Kim03787302014-06-23 13:22:06 -07002950
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002951 objp += obj_offset(cachep);
Christoph Lameter4f104932007-05-06 14:50:17 -07002952 if (cachep->ctor && cachep->flags & SLAB_POISON)
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002953 cachep->ctor(objp);
Tetsuo Handa7ea466f2011-07-21 09:42:45 +09002954 if (ARCH_SLAB_MINALIGN &&
2955 ((unsigned long)objp & (ARCH_SLAB_MINALIGN-1))) {
Joe Perches11705322016-03-17 14:19:50 -07002956 pr_err("0x%p: not aligned to ARCH_SLAB_MINALIGN=%d\n",
Hugh Dickinsc2251502011-07-11 13:35:08 -07002957 objp, (int)ARCH_SLAB_MINALIGN);
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002958 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959 return objp;
2960}
2961#else
2962#define cache_alloc_debugcheck_after(a,b,objp,d) (objp)
2963#endif
2964
Pekka Enberg343e0d72006-02-01 03:05:50 -08002965static inline void *____cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002967 void *objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 struct array_cache *ac;
2969
Alok N Kataria5c382302005-09-27 21:45:46 -07002970 check_irq_off();
Akinobu Mita8a8b6502006-12-08 02:39:44 -08002971
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002972 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973 if (likely(ac->avail)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974 ac->touched = 1;
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07002975 objp = ac->entry[--ac->avail];
Mel Gorman072bb0a2012-07-31 16:43:58 -07002976
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07002977 STATS_INC_ALLOCHIT(cachep);
2978 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979 }
Mel Gorman072bb0a2012-07-31 16:43:58 -07002980
2981 STATS_INC_ALLOCMISS(cachep);
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07002982 objp = cache_alloc_refill(cachep, flags);
Mel Gorman072bb0a2012-07-31 16:43:58 -07002983 /*
2984 * the 'ac' may be updated by cache_alloc_refill(),
2985 * and kmemleak_erase() requires its correct value.
2986 */
2987 ac = cpu_cache_get(cachep);
2988
2989out:
Catalin Marinasd5cff632009-06-11 13:22:40 +01002990 /*
2991 * To avoid a false negative, if an object that is in one of the
2992 * per-CPU caches is leaked, we need to make sure kmemleak doesn't
2993 * treat the array pointers as a reference to the object.
2994 */
J. R. Okajimaf3d8b532009-12-02 16:55:49 +09002995 if (objp)
2996 kmemleak_erase(&ac->entry[ac->avail]);
Alok N Kataria5c382302005-09-27 21:45:46 -07002997 return objp;
2998}
2999
Christoph Lametere498be72005-09-09 13:03:32 -07003000#ifdef CONFIG_NUMA
3001/*
Zefan Li2ad654b2014-09-25 09:41:02 +08003002 * Try allocating on another node if PFA_SPREAD_SLAB is a mempolicy is set.
Paul Jacksonc61afb12006-03-24 03:16:08 -08003003 *
3004 * If we are in_interrupt, then process context, including cpusets and
3005 * mempolicy, may not apply and should not be used for allocation policy.
3006 */
3007static void *alternate_node_alloc(struct kmem_cache *cachep, gfp_t flags)
3008{
3009 int nid_alloc, nid_here;
3010
Christoph Lameter765c4502006-09-27 01:50:08 -07003011 if (in_interrupt() || (flags & __GFP_THISNODE))
Paul Jacksonc61afb12006-03-24 03:16:08 -08003012 return NULL;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003013 nid_alloc = nid_here = numa_mem_id();
Paul Jacksonc61afb12006-03-24 03:16:08 -08003014 if (cpuset_do_slab_mem_spread() && (cachep->flags & SLAB_MEM_SPREAD))
Jack Steiner6adef3e2010-05-26 14:42:49 -07003015 nid_alloc = cpuset_slab_spread_node();
Paul Jacksonc61afb12006-03-24 03:16:08 -08003016 else if (current->mempolicy)
David Rientjes2a389612014-04-07 15:37:29 -07003017 nid_alloc = mempolicy_slab_node();
Paul Jacksonc61afb12006-03-24 03:16:08 -08003018 if (nid_alloc != nid_here)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003019 return ____cache_alloc_node(cachep, flags, nid_alloc);
Paul Jacksonc61afb12006-03-24 03:16:08 -08003020 return NULL;
3021}
3022
3023/*
Christoph Lameter765c4502006-09-27 01:50:08 -07003024 * Fallback function if there was no memory available and no objects on a
Christoph Lameter3c517a62006-12-06 20:33:29 -08003025 * certain node and fall back is permitted. First we scan all the
Christoph Lameter6a673682013-01-10 19:14:19 +00003026 * available node for available objects. If that fails then we
Christoph Lameter3c517a62006-12-06 20:33:29 -08003027 * perform an allocation without specifying a node. This allows the page
3028 * allocator to do its reclaim / fallback magic. We then insert the
3029 * slab into the proper nodelist and then allocate from it.
Christoph Lameter765c4502006-09-27 01:50:08 -07003030 */
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003031static void *fallback_alloc(struct kmem_cache *cache, gfp_t flags)
Christoph Lameter765c4502006-09-27 01:50:08 -07003032{
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003033 struct zonelist *zonelist;
3034 gfp_t local_flags;
Mel Gormandd1a2392008-04-28 02:12:17 -07003035 struct zoneref *z;
Mel Gorman54a6eb52008-04-28 02:12:16 -07003036 struct zone *zone;
3037 enum zone_type high_zoneidx = gfp_zone(flags);
Christoph Lameter765c4502006-09-27 01:50:08 -07003038 void *obj = NULL;
Christoph Lameter3c517a62006-12-06 20:33:29 -08003039 int nid;
Mel Gormancc9a6c82012-03-21 16:34:11 -07003040 unsigned int cpuset_mems_cookie;
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003041
3042 if (flags & __GFP_THISNODE)
3043 return NULL;
3044
Christoph Lameter6cb06222007-10-16 01:25:41 -07003045 local_flags = flags & (GFP_CONSTRAINT_MASK|GFP_RECLAIM_MASK);
Christoph Lameter765c4502006-09-27 01:50:08 -07003046
Mel Gormancc9a6c82012-03-21 16:34:11 -07003047retry_cpuset:
Mel Gormand26914d2014-04-03 14:47:24 -07003048 cpuset_mems_cookie = read_mems_allowed_begin();
David Rientjes2a389612014-04-07 15:37:29 -07003049 zonelist = node_zonelist(mempolicy_slab_node(), flags);
Mel Gormancc9a6c82012-03-21 16:34:11 -07003050
Christoph Lameter3c517a62006-12-06 20:33:29 -08003051retry:
3052 /*
3053 * Look through allowed nodes for objects available
3054 * from existing per node queues.
3055 */
Mel Gorman54a6eb52008-04-28 02:12:16 -07003056 for_each_zone_zonelist(zone, z, zonelist, high_zoneidx) {
3057 nid = zone_to_nid(zone);
Christoph Lameteraedb0eb2006-10-21 10:24:16 -07003058
Vladimir Davydov061d70742014-12-12 16:58:25 -08003059 if (cpuset_zone_allowed(zone, flags) &&
Christoph Lameter18bf8542014-08-06 16:04:11 -07003060 get_node(cache, nid) &&
3061 get_node(cache, nid)->free_objects) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003062 obj = ____cache_alloc_node(cache,
David Rientjes4167e9b2015-04-14 15:46:55 -07003063 gfp_exact_node(flags), nid);
Christoph Lameter481c5342008-06-21 16:46:35 -07003064 if (obj)
3065 break;
3066 }
Christoph Lameter3c517a62006-12-06 20:33:29 -08003067 }
3068
Christoph Lametercfce6602007-05-06 14:50:17 -07003069 if (!obj) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003070 /*
3071 * This allocation will be performed within the constraints
3072 * of the current cpuset / memory policy requirements.
3073 * We may trigger various forms of reclaim on the allowed
3074 * set and go into memory reserves if necessary.
3075 */
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09003076 struct page *page;
3077
Mel Gormand0164ad2015-11-06 16:28:21 -08003078 if (gfpflags_allow_blocking(local_flags))
Christoph Lameterdd47ea72006-12-13 00:34:11 -08003079 local_irq_enable();
3080 kmem_flagcheck(cache, flags);
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09003081 page = kmem_getpages(cache, local_flags, numa_mem_id());
Mel Gormand0164ad2015-11-06 16:28:21 -08003082 if (gfpflags_allow_blocking(local_flags))
Christoph Lameterdd47ea72006-12-13 00:34:11 -08003083 local_irq_disable();
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09003084 if (page) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003085 /*
3086 * Insert into the appropriate per node queues
3087 */
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09003088 nid = page_to_nid(page);
3089 if (cache_grow(cache, flags, nid, page)) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003090 obj = ____cache_alloc_node(cache,
David Rientjes4167e9b2015-04-14 15:46:55 -07003091 gfp_exact_node(flags), nid);
Christoph Lameter3c517a62006-12-06 20:33:29 -08003092 if (!obj)
3093 /*
3094 * Another processor may allocate the
3095 * objects in the slab since we are
3096 * not holding any locks.
3097 */
3098 goto retry;
3099 } else {
Hugh Dickinsb6a60452007-01-05 16:36:36 -08003100 /* cache_grow already freed obj */
Christoph Lameter3c517a62006-12-06 20:33:29 -08003101 obj = NULL;
3102 }
3103 }
Christoph Lameteraedb0eb2006-10-21 10:24:16 -07003104 }
Mel Gormancc9a6c82012-03-21 16:34:11 -07003105
Mel Gormand26914d2014-04-03 14:47:24 -07003106 if (unlikely(!obj && read_mems_allowed_retry(cpuset_mems_cookie)))
Mel Gormancc9a6c82012-03-21 16:34:11 -07003107 goto retry_cpuset;
Christoph Lameter765c4502006-09-27 01:50:08 -07003108 return obj;
3109}
3110
3111/*
Christoph Lametere498be72005-09-09 13:03:32 -07003112 * A interface to enable slab creation on nodeid
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113 */
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003114static void *____cache_alloc_node(struct kmem_cache *cachep, gfp_t flags,
Andrew Mortona737b3e2006-03-22 00:08:11 -08003115 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07003116{
Joonsoo Kim8456a642013-10-24 10:07:49 +09003117 struct page *page;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003118 struct kmem_cache_node *n;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003119 void *obj;
Joonsoo Kimb03a017b2016-03-15 14:54:50 -07003120 void *list = NULL;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003121 int x;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122
Paul Mackerras7c3fbbd2014-12-02 15:59:48 -08003123 VM_BUG_ON(nodeid < 0 || nodeid >= MAX_NUMNODES);
Christoph Lameter18bf8542014-08-06 16:04:11 -07003124 n = get_node(cachep, nodeid);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003125 BUG_ON(!n);
Christoph Lametere498be72005-09-09 13:03:32 -07003126
Andrew Mortona737b3e2006-03-22 00:08:11 -08003127retry:
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08003128 check_irq_off();
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003129 spin_lock(&n->list_lock);
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07003130 page = get_first_slab(n, false);
Geliang Tang7aa0d222016-01-14 15:18:02 -08003131 if (!page)
3132 goto must_grow;
Christoph Lametere498be72005-09-09 13:03:32 -07003133
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003134 check_spinlock_acquired_node(cachep, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07003135
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003136 STATS_INC_NODEALLOCS(cachep);
3137 STATS_INC_ACTIVE(cachep);
3138 STATS_SET_HIGH(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003139
Joonsoo Kim8456a642013-10-24 10:07:49 +09003140 BUG_ON(page->active == cachep->num);
Christoph Lametere498be72005-09-09 13:03:32 -07003141
Joonsoo Kim260b61d2016-03-15 14:54:12 -07003142 obj = slab_get_obj(cachep, page);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003143 n->free_objects--;
Christoph Lametere498be72005-09-09 13:03:32 -07003144
Joonsoo Kimb03a017b2016-03-15 14:54:50 -07003145 fixup_slab_list(cachep, n, page, &list);
Christoph Lametere498be72005-09-09 13:03:32 -07003146
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003147 spin_unlock(&n->list_lock);
Joonsoo Kimb03a017b2016-03-15 14:54:50 -07003148 fixup_objfreelist_debug(cachep, &list);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003149 goto done;
Christoph Lametere498be72005-09-09 13:03:32 -07003150
Andrew Mortona737b3e2006-03-22 00:08:11 -08003151must_grow:
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003152 spin_unlock(&n->list_lock);
David Rientjes4167e9b2015-04-14 15:46:55 -07003153 x = cache_grow(cachep, gfp_exact_node(flags), nodeid, NULL);
Christoph Lameter765c4502006-09-27 01:50:08 -07003154 if (x)
3155 goto retry;
Christoph Lametere498be72005-09-09 13:03:32 -07003156
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003157 return fallback_alloc(cachep, flags);
Christoph Lameter765c4502006-09-27 01:50:08 -07003158
Andrew Mortona737b3e2006-03-22 00:08:11 -08003159done:
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003160 return obj;
Christoph Lametere498be72005-09-09 13:03:32 -07003161}
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003162
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003163static __always_inline void *
Ezequiel Garcia48356302012-09-08 17:47:57 -03003164slab_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003165 unsigned long caller)
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003166{
3167 unsigned long save_flags;
3168 void *ptr;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003169 int slab_node = numa_mem_id();
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003170
Benjamin Herrenschmidtdcce2842009-06-18 13:24:12 +10003171 flags &= gfp_allowed_mask;
Jesper Dangaard Brouer011ecea2016-03-15 14:53:41 -07003172 cachep = slab_pre_alloc_hook(cachep, flags);
3173 if (unlikely(!cachep))
Akinobu Mita824ebef2007-05-06 14:49:58 -07003174 return NULL;
3175
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003176 cache_alloc_debugcheck_before(cachep, flags);
3177 local_irq_save(save_flags);
3178
Andrew Mortoneacbbae2011-07-28 13:59:49 -07003179 if (nodeid == NUMA_NO_NODE)
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003180 nodeid = slab_node;
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003181
Christoph Lameter18bf8542014-08-06 16:04:11 -07003182 if (unlikely(!get_node(cachep, nodeid))) {
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003183 /* Node not bootstrapped yet */
3184 ptr = fallback_alloc(cachep, flags);
3185 goto out;
3186 }
3187
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003188 if (nodeid == slab_node) {
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003189 /*
3190 * Use the locally cached objects if possible.
3191 * However ____cache_alloc does not allow fallback
3192 * to other nodes. It may fail while we still have
3193 * objects on other nodes available.
3194 */
3195 ptr = ____cache_alloc(cachep, flags);
3196 if (ptr)
3197 goto out;
3198 }
3199 /* ___cache_alloc_node can fall back to other nodes */
3200 ptr = ____cache_alloc_node(cachep, flags, nodeid);
3201 out:
3202 local_irq_restore(save_flags);
3203 ptr = cache_alloc_debugcheck_after(cachep, flags, ptr, caller);
3204
Jesper Dangaard Brouerd5e3ed62016-03-15 14:53:47 -07003205 if (unlikely(flags & __GFP_ZERO) && ptr)
3206 memset(ptr, 0, cachep->object_size);
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003207
Jesper Dangaard Brouerd5e3ed62016-03-15 14:53:47 -07003208 slab_post_alloc_hook(cachep, flags, 1, &ptr);
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003209 return ptr;
3210}
3211
3212static __always_inline void *
3213__do_cache_alloc(struct kmem_cache *cache, gfp_t flags)
3214{
3215 void *objp;
3216
Zefan Li2ad654b2014-09-25 09:41:02 +08003217 if (current->mempolicy || cpuset_do_slab_mem_spread()) {
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003218 objp = alternate_node_alloc(cache, flags);
3219 if (objp)
3220 goto out;
3221 }
3222 objp = ____cache_alloc(cache, flags);
3223
3224 /*
3225 * We may just have run out of memory on the local node.
3226 * ____cache_alloc_node() knows how to locate memory on other nodes
3227 */
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003228 if (!objp)
3229 objp = ____cache_alloc_node(cache, flags, numa_mem_id());
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003230
3231 out:
3232 return objp;
3233}
3234#else
3235
3236static __always_inline void *
3237__do_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
3238{
3239 return ____cache_alloc(cachep, flags);
3240}
3241
3242#endif /* CONFIG_NUMA */
3243
3244static __always_inline void *
Ezequiel Garcia48356302012-09-08 17:47:57 -03003245slab_alloc(struct kmem_cache *cachep, gfp_t flags, unsigned long caller)
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003246{
3247 unsigned long save_flags;
3248 void *objp;
3249
Benjamin Herrenschmidtdcce2842009-06-18 13:24:12 +10003250 flags &= gfp_allowed_mask;
Jesper Dangaard Brouer011ecea2016-03-15 14:53:41 -07003251 cachep = slab_pre_alloc_hook(cachep, flags);
3252 if (unlikely(!cachep))
Akinobu Mita824ebef2007-05-06 14:49:58 -07003253 return NULL;
3254
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003255 cache_alloc_debugcheck_before(cachep, flags);
3256 local_irq_save(save_flags);
3257 objp = __do_cache_alloc(cachep, flags);
3258 local_irq_restore(save_flags);
3259 objp = cache_alloc_debugcheck_after(cachep, flags, objp, caller);
3260 prefetchw(objp);
3261
Jesper Dangaard Brouerd5e3ed62016-03-15 14:53:47 -07003262 if (unlikely(flags & __GFP_ZERO) && objp)
3263 memset(objp, 0, cachep->object_size);
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003264
Jesper Dangaard Brouerd5e3ed62016-03-15 14:53:47 -07003265 slab_post_alloc_hook(cachep, flags, 1, &objp);
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003266 return objp;
3267}
Christoph Lametere498be72005-09-09 13:03:32 -07003268
3269/*
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08003270 * Caller needs to acquire correct kmem_cache_node's list_lock
Joonsoo Kim97654df2014-08-06 16:04:25 -07003271 * @list: List of detached free slabs should be freed by caller
Christoph Lametere498be72005-09-09 13:03:32 -07003272 */
Joonsoo Kim97654df2014-08-06 16:04:25 -07003273static void free_block(struct kmem_cache *cachep, void **objpp,
3274 int nr_objects, int node, struct list_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003275{
3276 int i;
Joonsoo Kim25c063f2014-08-06 16:04:22 -07003277 struct kmem_cache_node *n = get_node(cachep, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003278
3279 for (i = 0; i < nr_objects; i++) {
Mel Gorman072bb0a2012-07-31 16:43:58 -07003280 void *objp;
Joonsoo Kim8456a642013-10-24 10:07:49 +09003281 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282
Mel Gorman072bb0a2012-07-31 16:43:58 -07003283 objp = objpp[i];
3284
Joonsoo Kim8456a642013-10-24 10:07:49 +09003285 page = virt_to_head_page(objp);
Joonsoo Kim8456a642013-10-24 10:07:49 +09003286 list_del(&page->lru);
Christoph Lameterff694162005-09-22 21:44:02 -07003287 check_spinlock_acquired_node(cachep, node);
Joonsoo Kim260b61d2016-03-15 14:54:12 -07003288 slab_put_obj(cachep, page, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003289 STATS_DEC_ACTIVE(cachep);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003290 n->free_objects++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003291
3292 /* fixup slab chains */
Joonsoo Kim8456a642013-10-24 10:07:49 +09003293 if (page->active == 0) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003294 if (n->free_objects > n->free_limit) {
3295 n->free_objects -= cachep->num;
Joonsoo Kim97654df2014-08-06 16:04:25 -07003296 list_add_tail(&page->lru, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003297 } else {
Joonsoo Kim8456a642013-10-24 10:07:49 +09003298 list_add(&page->lru, &n->slabs_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003299 }
3300 } else {
3301 /* Unconditionally move a slab to the end of the
3302 * partial list on free - maximum time for the
3303 * other objects to be freed, too.
3304 */
Joonsoo Kim8456a642013-10-24 10:07:49 +09003305 list_add_tail(&page->lru, &n->slabs_partial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306 }
3307 }
3308}
3309
Pekka Enberg343e0d72006-02-01 03:05:50 -08003310static void cache_flusharray(struct kmem_cache *cachep, struct array_cache *ac)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311{
3312 int batchcount;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003313 struct kmem_cache_node *n;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003314 int node = numa_mem_id();
Joonsoo Kim97654df2014-08-06 16:04:25 -07003315 LIST_HEAD(list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003316
3317 batchcount = ac->batchcount;
Joonsoo Kim260b61d2016-03-15 14:54:12 -07003318
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319 check_irq_off();
Christoph Lameter18bf8542014-08-06 16:04:11 -07003320 n = get_node(cachep, node);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003321 spin_lock(&n->list_lock);
3322 if (n->shared) {
3323 struct array_cache *shared_array = n->shared;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003324 int max = shared_array->limit - shared_array->avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325 if (max) {
3326 if (batchcount > max)
3327 batchcount = max;
Christoph Lametere498be72005-09-09 13:03:32 -07003328 memcpy(&(shared_array->entry[shared_array->avail]),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003329 ac->entry, sizeof(void *) * batchcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330 shared_array->avail += batchcount;
3331 goto free_done;
3332 }
3333 }
3334
Joonsoo Kim97654df2014-08-06 16:04:25 -07003335 free_block(cachep, ac->entry, batchcount, node, &list);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003336free_done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337#if STATS
3338 {
3339 int i = 0;
Geliang Tang73c02192016-01-14 15:17:59 -08003340 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003341
Geliang Tang73c02192016-01-14 15:17:59 -08003342 list_for_each_entry(page, &n->slabs_free, lru) {
Joonsoo Kim8456a642013-10-24 10:07:49 +09003343 BUG_ON(page->active);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003344
3345 i++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346 }
3347 STATS_SET_FREEABLE(cachep, i);
3348 }
3349#endif
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003350 spin_unlock(&n->list_lock);
Joonsoo Kim97654df2014-08-06 16:04:25 -07003351 slabs_destroy(cachep, &list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003352 ac->avail -= batchcount;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003353 memmove(ac->entry, &(ac->entry[batchcount]), sizeof(void *)*ac->avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003354}
3355
3356/*
Andrew Mortona737b3e2006-03-22 00:08:11 -08003357 * Release an obj back to its cache. If the obj has a constructed state, it must
3358 * be in this state _before_ it is released. Called with disabled ints.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003359 */
Suleiman Souhlala947eb92011-06-02 00:16:42 -07003360static inline void __cache_free(struct kmem_cache *cachep, void *objp,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003361 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362{
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003363 struct array_cache *ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364
Alexander Potapenko7ed2f9e2016-03-25 14:21:59 -07003365 kasan_slab_free(cachep, objp);
3366
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367 check_irq_off();
Catalin Marinasd5cff632009-06-11 13:22:40 +01003368 kmemleak_free_recursive(objp, cachep->flags);
Suleiman Souhlala947eb92011-06-02 00:16:42 -07003369 objp = cache_free_debugcheck(cachep, objp, caller);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003370
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003371 kmemcheck_slab_free(cachep, objp, cachep->object_size);
Pekka Enbergc175eea2008-05-09 20:35:53 +02003372
Siddha, Suresh B1807a1a2007-08-22 14:01:49 -07003373 /*
3374 * Skip calling cache_free_alien() when the platform is not numa.
3375 * This will avoid cache misses that happen while accessing slabp (which
3376 * is per page memory reference) to get nodeid. Instead use a global
3377 * variable to skip the call, which is mostly likely to be present in
3378 * the cache.
3379 */
Mel Gormanb6e68bc2009-06-16 15:32:16 -07003380 if (nr_online_nodes > 1 && cache_free_alien(cachep, objp))
Pekka Enberg729bd0b2006-06-23 02:03:05 -07003381 return;
Christoph Lametere498be72005-09-09 13:03:32 -07003382
Joonsoo Kim3d880192014-10-09 15:26:04 -07003383 if (ac->avail < ac->limit) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003384 STATS_INC_FREEHIT(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003385 } else {
3386 STATS_INC_FREEMISS(cachep);
3387 cache_flusharray(cachep, ac);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003388 }
Zhao Jin42c8c992011-08-27 00:26:17 +08003389
Joonsoo Kimf68f8dd2016-03-15 14:54:56 -07003390 if (sk_memalloc_socks()) {
3391 struct page *page = virt_to_head_page(objp);
3392
3393 if (unlikely(PageSlabPfmemalloc(page))) {
3394 cache_free_pfmemalloc(cachep, page, objp);
3395 return;
3396 }
3397 }
3398
3399 ac->entry[ac->avail++] = objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003400}
3401
3402/**
3403 * kmem_cache_alloc - Allocate an object
3404 * @cachep: The cache to allocate from.
3405 * @flags: See kmalloc().
3406 *
3407 * Allocate an object from this cache. The flags are only relevant
3408 * if the cache has no available objects.
3409 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003410void *kmem_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003411{
Ezequiel Garcia48356302012-09-08 17:47:57 -03003412 void *ret = slab_alloc(cachep, flags, _RET_IP_);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003413
Alexander Potapenko505f5dc2016-03-25 14:22:02 -07003414 kasan_slab_alloc(cachep, ret, flags);
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003415 trace_kmem_cache_alloc(_RET_IP_, ret,
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003416 cachep->object_size, cachep->size, flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003417
3418 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419}
3420EXPORT_SYMBOL(kmem_cache_alloc);
3421
Jesper Dangaard Brouer7b0501d2016-03-15 14:53:53 -07003422static __always_inline void
3423cache_alloc_debugcheck_after_bulk(struct kmem_cache *s, gfp_t flags,
3424 size_t size, void **p, unsigned long caller)
3425{
3426 size_t i;
3427
3428 for (i = 0; i < size; i++)
3429 p[i] = cache_alloc_debugcheck_after(s, flags, p[i], caller);
3430}
3431
Jesper Dangaard Brouer865762a2015-11-20 15:57:58 -08003432int kmem_cache_alloc_bulk(struct kmem_cache *s, gfp_t flags, size_t size,
Jesper Dangaard Brouer2a777ea2016-03-15 14:53:50 -07003433 void **p)
Christoph Lameter484748f2015-09-04 15:45:34 -07003434{
Jesper Dangaard Brouer2a777ea2016-03-15 14:53:50 -07003435 size_t i;
3436
3437 s = slab_pre_alloc_hook(s, flags);
3438 if (!s)
3439 return 0;
3440
3441 cache_alloc_debugcheck_before(s, flags);
3442
3443 local_irq_disable();
3444 for (i = 0; i < size; i++) {
3445 void *objp = __do_cache_alloc(s, flags);
3446
Jesper Dangaard Brouer2a777ea2016-03-15 14:53:50 -07003447 if (unlikely(!objp))
3448 goto error;
3449 p[i] = objp;
3450 }
3451 local_irq_enable();
3452
Jesper Dangaard Brouer7b0501d2016-03-15 14:53:53 -07003453 cache_alloc_debugcheck_after_bulk(s, flags, size, p, _RET_IP_);
3454
Jesper Dangaard Brouer2a777ea2016-03-15 14:53:50 -07003455 /* Clear memory outside IRQ disabled section */
3456 if (unlikely(flags & __GFP_ZERO))
3457 for (i = 0; i < size; i++)
3458 memset(p[i], 0, s->object_size);
3459
3460 slab_post_alloc_hook(s, flags, size, p);
3461 /* FIXME: Trace call missing. Christoph would like a bulk variant */
3462 return size;
3463error:
3464 local_irq_enable();
Jesper Dangaard Brouer7b0501d2016-03-15 14:53:53 -07003465 cache_alloc_debugcheck_after_bulk(s, flags, i, p, _RET_IP_);
Jesper Dangaard Brouer2a777ea2016-03-15 14:53:50 -07003466 slab_post_alloc_hook(s, flags, i, p);
3467 __kmem_cache_free_bulk(s, i, p);
3468 return 0;
Christoph Lameter484748f2015-09-04 15:45:34 -07003469}
3470EXPORT_SYMBOL(kmem_cache_alloc_bulk);
3471
Li Zefan0f24f122009-12-11 15:45:30 +08003472#ifdef CONFIG_TRACING
Steven Rostedt85beb582010-11-24 16:23:34 -05003473void *
Ezequiel Garcia40521472012-09-08 17:47:56 -03003474kmem_cache_alloc_trace(struct kmem_cache *cachep, gfp_t flags, size_t size)
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003475{
Steven Rostedt85beb582010-11-24 16:23:34 -05003476 void *ret;
3477
Ezequiel Garcia48356302012-09-08 17:47:57 -03003478 ret = slab_alloc(cachep, flags, _RET_IP_);
Steven Rostedt85beb582010-11-24 16:23:34 -05003479
Alexander Potapenko505f5dc2016-03-25 14:22:02 -07003480 kasan_kmalloc(cachep, ret, size, flags);
Steven Rostedt85beb582010-11-24 16:23:34 -05003481 trace_kmalloc(_RET_IP_, ret,
Ezequiel Garciaff4fcd02012-09-08 17:47:52 -03003482 size, cachep->size, flags);
Steven Rostedt85beb582010-11-24 16:23:34 -05003483 return ret;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003484}
Steven Rostedt85beb582010-11-24 16:23:34 -05003485EXPORT_SYMBOL(kmem_cache_alloc_trace);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003486#endif
3487
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488#ifdef CONFIG_NUMA
Zhouping Liud0d04b72013-05-16 11:36:23 +08003489/**
3490 * kmem_cache_alloc_node - Allocate an object on the specified node
3491 * @cachep: The cache to allocate from.
3492 * @flags: See kmalloc().
3493 * @nodeid: node number of the target node.
3494 *
3495 * Identical to kmem_cache_alloc but it will allocate memory on the given
3496 * node, which can improve the performance for cpu bound structures.
3497 *
3498 * Fallback to other node is possible if __GFP_THISNODE is not set.
3499 */
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003500void *kmem_cache_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid)
3501{
Ezequiel Garcia48356302012-09-08 17:47:57 -03003502 void *ret = slab_alloc_node(cachep, flags, nodeid, _RET_IP_);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003503
Alexander Potapenko505f5dc2016-03-25 14:22:02 -07003504 kasan_slab_alloc(cachep, ret, flags);
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003505 trace_kmem_cache_alloc_node(_RET_IP_, ret,
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003506 cachep->object_size, cachep->size,
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003507 flags, nodeid);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003508
3509 return ret;
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003510}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511EXPORT_SYMBOL(kmem_cache_alloc_node);
3512
Li Zefan0f24f122009-12-11 15:45:30 +08003513#ifdef CONFIG_TRACING
Ezequiel Garcia40521472012-09-08 17:47:56 -03003514void *kmem_cache_alloc_node_trace(struct kmem_cache *cachep,
Steven Rostedt85beb582010-11-24 16:23:34 -05003515 gfp_t flags,
Ezequiel Garcia40521472012-09-08 17:47:56 -03003516 int nodeid,
3517 size_t size)
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003518{
Steven Rostedt85beb582010-11-24 16:23:34 -05003519 void *ret;
3520
Ezequiel Garcia592f4142012-09-25 08:07:08 -03003521 ret = slab_alloc_node(cachep, flags, nodeid, _RET_IP_);
Alexander Potapenko505f5dc2016-03-25 14:22:02 -07003522
3523 kasan_kmalloc(cachep, ret, size, flags);
Steven Rostedt85beb582010-11-24 16:23:34 -05003524 trace_kmalloc_node(_RET_IP_, ret,
Ezequiel Garciaff4fcd02012-09-08 17:47:52 -03003525 size, cachep->size,
Steven Rostedt85beb582010-11-24 16:23:34 -05003526 flags, nodeid);
3527 return ret;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003528}
Steven Rostedt85beb582010-11-24 16:23:34 -05003529EXPORT_SYMBOL(kmem_cache_alloc_node_trace);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003530#endif
3531
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003532static __always_inline void *
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003533__do_kmalloc_node(size_t size, gfp_t flags, int node, unsigned long caller)
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003534{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003535 struct kmem_cache *cachep;
Alexander Potapenko7ed2f9e2016-03-25 14:21:59 -07003536 void *ret;
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003537
Christoph Lameter2c59dd62013-01-10 19:14:19 +00003538 cachep = kmalloc_slab(size, flags);
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003539 if (unlikely(ZERO_OR_NULL_PTR(cachep)))
3540 return cachep;
Alexander Potapenko7ed2f9e2016-03-25 14:21:59 -07003541 ret = kmem_cache_alloc_node_trace(cachep, flags, node, size);
Alexander Potapenko505f5dc2016-03-25 14:22:02 -07003542 kasan_kmalloc(cachep, ret, size, flags);
Alexander Potapenko7ed2f9e2016-03-25 14:21:59 -07003543
3544 return ret;
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003545}
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003546
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003547void *__kmalloc_node(size_t size, gfp_t flags, int node)
3548{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003549 return __do_kmalloc_node(size, flags, node, _RET_IP_);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003550}
Christoph Hellwigdbe5e692006-09-25 23:31:36 -07003551EXPORT_SYMBOL(__kmalloc_node);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003552
3553void *__kmalloc_node_track_caller(size_t size, gfp_t flags,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003554 int node, unsigned long caller)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003555{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003556 return __do_kmalloc_node(size, flags, node, caller);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003557}
3558EXPORT_SYMBOL(__kmalloc_node_track_caller);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003559#endif /* CONFIG_NUMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560
3561/**
Paul Drynoff800590f2006-06-23 02:03:48 -07003562 * __do_kmalloc - allocate memory
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563 * @size: how many bytes of memory are required.
Paul Drynoff800590f2006-06-23 02:03:48 -07003564 * @flags: the type of memory to allocate (see kmalloc).
Randy Dunlap911851e2006-03-22 00:08:14 -08003565 * @caller: function caller for debug tracking of the caller
Linus Torvalds1da177e2005-04-16 15:20:36 -07003566 */
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003567static __always_inline void *__do_kmalloc(size_t size, gfp_t flags,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003568 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003569{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003570 struct kmem_cache *cachep;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003571 void *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003572
Christoph Lameter2c59dd62013-01-10 19:14:19 +00003573 cachep = kmalloc_slab(size, flags);
Linus Torvaldsa5c96d82007-07-19 13:17:15 -07003574 if (unlikely(ZERO_OR_NULL_PTR(cachep)))
3575 return cachep;
Ezequiel Garcia48356302012-09-08 17:47:57 -03003576 ret = slab_alloc(cachep, flags, caller);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003577
Alexander Potapenko505f5dc2016-03-25 14:22:02 -07003578 kasan_kmalloc(cachep, ret, size, flags);
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003579 trace_kmalloc(caller, ret,
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003580 size, cachep->size, flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003581
3582 return ret;
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003583}
3584
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003585void *__kmalloc(size_t size, gfp_t flags)
3586{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003587 return __do_kmalloc(size, flags, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003588}
3589EXPORT_SYMBOL(__kmalloc);
3590
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003591void *__kmalloc_track_caller(size_t size, gfp_t flags, unsigned long caller)
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003592{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003593 return __do_kmalloc(size, flags, caller);
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003594}
3595EXPORT_SYMBOL(__kmalloc_track_caller);
Christoph Hellwig1d2c8ee2006-10-04 02:15:25 -07003596
Linus Torvalds1da177e2005-04-16 15:20:36 -07003597/**
3598 * kmem_cache_free - Deallocate an object
3599 * @cachep: The cache the allocation was from.
3600 * @objp: The previously allocated object.
3601 *
3602 * Free an object which was previously allocated from this
3603 * cache.
3604 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003605void kmem_cache_free(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606{
3607 unsigned long flags;
Glauber Costab9ce5ef2012-12-18 14:22:46 -08003608 cachep = cache_from_obj(cachep, objp);
3609 if (!cachep)
3610 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003611
3612 local_irq_save(flags);
Feng Tangd97d4762012-07-02 14:29:10 +08003613 debug_check_no_locks_freed(objp, cachep->object_size);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -07003614 if (!(cachep->flags & SLAB_DEBUG_OBJECTS))
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003615 debug_check_no_obj_freed(objp, cachep->object_size);
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003616 __cache_free(cachep, objp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003617 local_irq_restore(flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003618
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003619 trace_kmem_cache_free(_RET_IP_, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620}
3621EXPORT_SYMBOL(kmem_cache_free);
3622
Jesper Dangaard Brouere6cdb582016-03-15 14:53:56 -07003623void kmem_cache_free_bulk(struct kmem_cache *orig_s, size_t size, void **p)
3624{
3625 struct kmem_cache *s;
3626 size_t i;
3627
3628 local_irq_disable();
3629 for (i = 0; i < size; i++) {
3630 void *objp = p[i];
3631
Jesper Dangaard Brouerca257192016-03-15 14:54:00 -07003632 if (!orig_s) /* called via kfree_bulk */
3633 s = virt_to_cache(objp);
3634 else
3635 s = cache_from_obj(orig_s, objp);
Jesper Dangaard Brouere6cdb582016-03-15 14:53:56 -07003636
3637 debug_check_no_locks_freed(objp, s->object_size);
3638 if (!(s->flags & SLAB_DEBUG_OBJECTS))
3639 debug_check_no_obj_freed(objp, s->object_size);
3640
3641 __cache_free(s, objp, _RET_IP_);
3642 }
3643 local_irq_enable();
3644
3645 /* FIXME: add tracing */
3646}
3647EXPORT_SYMBOL(kmem_cache_free_bulk);
3648
Linus Torvalds1da177e2005-04-16 15:20:36 -07003649/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003650 * kfree - free previously allocated memory
3651 * @objp: pointer returned by kmalloc.
3652 *
Pekka Enberg80e93ef2005-09-09 13:10:16 -07003653 * If @objp is NULL, no operation is performed.
3654 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655 * Don't free memory not originally allocated by kmalloc()
3656 * or you will run into trouble.
3657 */
3658void kfree(const void *objp)
3659{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003660 struct kmem_cache *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003661 unsigned long flags;
3662
Pekka Enberg2121db72009-03-25 11:05:57 +02003663 trace_kfree(_RET_IP_, objp);
3664
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003665 if (unlikely(ZERO_OR_NULL_PTR(objp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003666 return;
3667 local_irq_save(flags);
3668 kfree_debugcheck(objp);
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -08003669 c = virt_to_cache(objp);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003670 debug_check_no_locks_freed(objp, c->object_size);
3671
3672 debug_check_no_obj_freed(objp, c->object_size);
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003673 __cache_free(c, (void *)objp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003674 local_irq_restore(flags);
3675}
3676EXPORT_SYMBOL(kfree);
3677
Christoph Lametere498be72005-09-09 13:03:32 -07003678/*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003679 * This initializes kmem_cache_node or resizes various caches for all nodes.
Christoph Lametere498be72005-09-09 13:03:32 -07003680 */
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08003681static int alloc_kmem_cache_node(struct kmem_cache *cachep, gfp_t gfp)
Christoph Lametere498be72005-09-09 13:03:32 -07003682{
3683 int node;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003684 struct kmem_cache_node *n;
Christoph Lametercafeb022006-03-25 03:06:46 -08003685 struct array_cache *new_shared;
Joonsoo Kimc8522a32014-08-06 16:04:29 -07003686 struct alien_cache **new_alien = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07003687
Mel Gorman9c09a952008-01-24 05:49:54 -08003688 for_each_online_node(node) {
Christoph Lametercafeb022006-03-25 03:06:46 -08003689
LQYMGTb455def2014-12-10 15:42:13 -08003690 if (use_alien_caches) {
3691 new_alien = alloc_alien_cache(node, cachep->limit, gfp);
3692 if (!new_alien)
3693 goto fail;
3694 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003695
Eric Dumazet63109842007-05-06 14:49:28 -07003696 new_shared = NULL;
3697 if (cachep->shared) {
3698 new_shared = alloc_arraycache(node,
Christoph Lameter0718dc22006-03-25 03:06:47 -08003699 cachep->shared*cachep->batchcount,
Pekka Enberg83b519e2009-06-10 19:40:04 +03003700 0xbaadf00d, gfp);
Eric Dumazet63109842007-05-06 14:49:28 -07003701 if (!new_shared) {
3702 free_alien_cache(new_alien);
3703 goto fail;
3704 }
Christoph Lameter0718dc22006-03-25 03:06:47 -08003705 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003706
Christoph Lameter18bf8542014-08-06 16:04:11 -07003707 n = get_node(cachep, node);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003708 if (n) {
3709 struct array_cache *shared = n->shared;
Joonsoo Kim97654df2014-08-06 16:04:25 -07003710 LIST_HEAD(list);
Christoph Lametercafeb022006-03-25 03:06:46 -08003711
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003712 spin_lock_irq(&n->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07003713
Christoph Lametercafeb022006-03-25 03:06:46 -08003714 if (shared)
Christoph Lameter0718dc22006-03-25 03:06:47 -08003715 free_block(cachep, shared->entry,
Joonsoo Kim97654df2014-08-06 16:04:25 -07003716 shared->avail, node, &list);
Christoph Lametere498be72005-09-09 13:03:32 -07003717
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003718 n->shared = new_shared;
3719 if (!n->alien) {
3720 n->alien = new_alien;
Christoph Lametere498be72005-09-09 13:03:32 -07003721 new_alien = NULL;
3722 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003723 n->free_limit = (1 + nr_cpus_node(node)) *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003724 cachep->batchcount + cachep->num;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003725 spin_unlock_irq(&n->list_lock);
Joonsoo Kim97654df2014-08-06 16:04:25 -07003726 slabs_destroy(cachep, &list);
Christoph Lametercafeb022006-03-25 03:06:46 -08003727 kfree(shared);
Christoph Lametere498be72005-09-09 13:03:32 -07003728 free_alien_cache(new_alien);
3729 continue;
3730 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003731 n = kmalloc_node(sizeof(struct kmem_cache_node), gfp, node);
3732 if (!n) {
Christoph Lameter0718dc22006-03-25 03:06:47 -08003733 free_alien_cache(new_alien);
3734 kfree(new_shared);
Christoph Lametere498be72005-09-09 13:03:32 -07003735 goto fail;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003736 }
Christoph Lametere498be72005-09-09 13:03:32 -07003737
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003738 kmem_cache_node_init(n);
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08003739 n->next_reap = jiffies + REAPTIMEOUT_NODE +
3740 ((unsigned long)cachep) % REAPTIMEOUT_NODE;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003741 n->shared = new_shared;
3742 n->alien = new_alien;
3743 n->free_limit = (1 + nr_cpus_node(node)) *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003744 cachep->batchcount + cachep->num;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003745 cachep->node[node] = n;
Christoph Lametere498be72005-09-09 13:03:32 -07003746 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003747 return 0;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003748
Andrew Mortona737b3e2006-03-22 00:08:11 -08003749fail:
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003750 if (!cachep->list.next) {
Christoph Lameter0718dc22006-03-25 03:06:47 -08003751 /* Cache is not active yet. Roll back what we did */
3752 node--;
3753 while (node >= 0) {
Christoph Lameter18bf8542014-08-06 16:04:11 -07003754 n = get_node(cachep, node);
3755 if (n) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003756 kfree(n->shared);
3757 free_alien_cache(n->alien);
3758 kfree(n);
Christoph Lameter6a673682013-01-10 19:14:19 +00003759 cachep->node[node] = NULL;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003760 }
3761 node--;
3762 }
3763 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003764 return -ENOMEM;
Christoph Lametere498be72005-09-09 13:03:32 -07003765}
3766
Christoph Lameter18004c52012-07-06 15:25:12 -05003767/* Always called with the slab_mutex held */
Glauber Costa943a4512012-12-18 14:23:03 -08003768static int __do_tune_cpucache(struct kmem_cache *cachep, int limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03003769 int batchcount, int shared, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770{
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07003771 struct array_cache __percpu *cpu_cache, *prev;
3772 int cpu;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003773
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07003774 cpu_cache = alloc_kmem_cache_cpus(cachep, limit, batchcount);
3775 if (!cpu_cache)
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003776 return -ENOMEM;
3777
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07003778 prev = cachep->cpu_cache;
3779 cachep->cpu_cache = cpu_cache;
3780 kick_all_cpus_sync();
Christoph Lametere498be72005-09-09 13:03:32 -07003781
Linus Torvalds1da177e2005-04-16 15:20:36 -07003782 check_irq_on();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783 cachep->batchcount = batchcount;
3784 cachep->limit = limit;
Christoph Lametere498be72005-09-09 13:03:32 -07003785 cachep->shared = shared;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003786
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07003787 if (!prev)
3788 goto alloc_node;
3789
3790 for_each_online_cpu(cpu) {
Joonsoo Kim97654df2014-08-06 16:04:25 -07003791 LIST_HEAD(list);
Christoph Lameter18bf8542014-08-06 16:04:11 -07003792 int node;
3793 struct kmem_cache_node *n;
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07003794 struct array_cache *ac = per_cpu_ptr(prev, cpu);
Christoph Lameter18bf8542014-08-06 16:04:11 -07003795
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07003796 node = cpu_to_mem(cpu);
Christoph Lameter18bf8542014-08-06 16:04:11 -07003797 n = get_node(cachep, node);
3798 spin_lock_irq(&n->list_lock);
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07003799 free_block(cachep, ac->entry, ac->avail, node, &list);
Christoph Lameter18bf8542014-08-06 16:04:11 -07003800 spin_unlock_irq(&n->list_lock);
Joonsoo Kim97654df2014-08-06 16:04:25 -07003801 slabs_destroy(cachep, &list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802 }
Joonsoo Kimbf0dea22014-10-09 15:26:27 -07003803 free_percpu(prev);
3804
3805alloc_node:
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08003806 return alloc_kmem_cache_node(cachep, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003807}
3808
Glauber Costa943a4512012-12-18 14:23:03 -08003809static int do_tune_cpucache(struct kmem_cache *cachep, int limit,
3810 int batchcount, int shared, gfp_t gfp)
3811{
3812 int ret;
Vladimir Davydov426589f2015-02-12 14:59:23 -08003813 struct kmem_cache *c;
Glauber Costa943a4512012-12-18 14:23:03 -08003814
3815 ret = __do_tune_cpucache(cachep, limit, batchcount, shared, gfp);
3816
3817 if (slab_state < FULL)
3818 return ret;
3819
3820 if ((ret < 0) || !is_root_cache(cachep))
3821 return ret;
3822
Vladimir Davydov426589f2015-02-12 14:59:23 -08003823 lockdep_assert_held(&slab_mutex);
3824 for_each_memcg_cache(c, cachep) {
3825 /* return value determined by the root cache only */
3826 __do_tune_cpucache(c, limit, batchcount, shared, gfp);
Glauber Costa943a4512012-12-18 14:23:03 -08003827 }
3828
3829 return ret;
3830}
3831
Christoph Lameter18004c52012-07-06 15:25:12 -05003832/* Called with slab_mutex held always */
Pekka Enberg83b519e2009-06-10 19:40:04 +03003833static int enable_cpucache(struct kmem_cache *cachep, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003834{
3835 int err;
Glauber Costa943a4512012-12-18 14:23:03 -08003836 int limit = 0;
3837 int shared = 0;
3838 int batchcount = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003839
Glauber Costa943a4512012-12-18 14:23:03 -08003840 if (!is_root_cache(cachep)) {
3841 struct kmem_cache *root = memcg_root_cache(cachep);
3842 limit = root->limit;
3843 shared = root->shared;
3844 batchcount = root->batchcount;
3845 }
3846
3847 if (limit && shared && batchcount)
3848 goto skip_setup;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003849 /*
3850 * The head array serves three purposes:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003851 * - create a LIFO ordering, i.e. return objects that are cache-warm
3852 * - reduce the number of spinlock operations.
Andrew Mortona737b3e2006-03-22 00:08:11 -08003853 * - reduce the number of linked list operations on the slab and
Linus Torvalds1da177e2005-04-16 15:20:36 -07003854 * bufctl chains: array operations are cheaper.
3855 * The numbers are guessed, we should auto-tune as described by
3856 * Bonwick.
3857 */
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003858 if (cachep->size > 131072)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003859 limit = 1;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003860 else if (cachep->size > PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003861 limit = 8;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003862 else if (cachep->size > 1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003863 limit = 24;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003864 else if (cachep->size > 256)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003865 limit = 54;
3866 else
3867 limit = 120;
3868
Andrew Mortona737b3e2006-03-22 00:08:11 -08003869 /*
3870 * CPU bound tasks (e.g. network routing) can exhibit cpu bound
Linus Torvalds1da177e2005-04-16 15:20:36 -07003871 * allocation behaviour: Most allocs on one cpu, most free operations
3872 * on another cpu. For these cases, an efficient object passing between
3873 * cpus is necessary. This is provided by a shared array. The array
3874 * replaces Bonwick's magazine layer.
3875 * On uniprocessor, it's functionally equivalent (but less efficient)
3876 * to a larger limit. Thus disabled by default.
3877 */
3878 shared = 0;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003879 if (cachep->size <= PAGE_SIZE && num_possible_cpus() > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003880 shared = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003881
3882#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08003883 /*
3884 * With debugging enabled, large batchcount lead to excessively long
3885 * periods with disabled local interrupts. Limit the batchcount
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886 */
3887 if (limit > 32)
3888 limit = 32;
3889#endif
Glauber Costa943a4512012-12-18 14:23:03 -08003890 batchcount = (limit + 1) / 2;
3891skip_setup:
3892 err = do_tune_cpucache(cachep, limit, batchcount, shared, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003893 if (err)
Joe Perches11705322016-03-17 14:19:50 -07003894 pr_err("enable_cpucache failed for %s, error %d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003895 cachep->name, -err);
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07003896 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003897}
3898
Christoph Lameter1b552532006-03-22 00:09:07 -08003899/*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003900 * Drain an array if it contains any elements taking the node lock only if
3901 * necessary. Note that the node listlock also protects the array_cache
Christoph Lameterb18e7e62006-03-22 00:09:07 -08003902 * if drain_array() is used on the shared array.
Christoph Lameter1b552532006-03-22 00:09:07 -08003903 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003904static void drain_array(struct kmem_cache *cachep, struct kmem_cache_node *n,
Joonsoo Kim18726ca2016-05-19 17:10:02 -07003905 struct array_cache *ac, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003906{
Joonsoo Kim97654df2014-08-06 16:04:25 -07003907 LIST_HEAD(list);
Joonsoo Kim18726ca2016-05-19 17:10:02 -07003908
3909 /* ac from n->shared can be freed if we don't hold the slab_mutex. */
3910 check_mutex_acquired();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003911
Christoph Lameter1b552532006-03-22 00:09:07 -08003912 if (!ac || !ac->avail)
3913 return;
Joonsoo Kim18726ca2016-05-19 17:10:02 -07003914
3915 if (ac->touched) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003916 ac->touched = 0;
Joonsoo Kim18726ca2016-05-19 17:10:02 -07003917 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918 }
Joonsoo Kim18726ca2016-05-19 17:10:02 -07003919
3920 spin_lock_irq(&n->list_lock);
3921 drain_array_locked(cachep, ac, node, false, &list);
3922 spin_unlock_irq(&n->list_lock);
3923
3924 slabs_destroy(cachep, &list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925}
3926
3927/**
3928 * cache_reap - Reclaim memory from caches.
Randy Dunlap05fb6bf2007-02-28 20:12:13 -08003929 * @w: work descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930 *
3931 * Called from workqueue/eventd every few seconds.
3932 * Purpose:
3933 * - clear the per-cpu caches for this CPU.
3934 * - return freeable pages to the main free memory pool.
3935 *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003936 * If we cannot acquire the cache chain mutex then just give up - we'll try
3937 * again on the next iteration.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003938 */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08003939static void cache_reap(struct work_struct *w)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940{
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07003941 struct kmem_cache *searchp;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003942 struct kmem_cache_node *n;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003943 int node = numa_mem_id();
Jean Delvarebf6aede2009-04-02 16:56:54 -07003944 struct delayed_work *work = to_delayed_work(w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003945
Christoph Lameter18004c52012-07-06 15:25:12 -05003946 if (!mutex_trylock(&slab_mutex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003947 /* Give up. Setup the next iteration. */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08003948 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003949
Christoph Lameter18004c52012-07-06 15:25:12 -05003950 list_for_each_entry(searchp, &slab_caches, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003951 check_irq_on();
3952
Christoph Lameter35386e32006-03-22 00:09:05 -08003953 /*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003954 * We only take the node lock if absolutely necessary and we
Christoph Lameter35386e32006-03-22 00:09:05 -08003955 * have established with reasonable certainty that
3956 * we can do some work if the lock was obtained.
3957 */
Christoph Lameter18bf8542014-08-06 16:04:11 -07003958 n = get_node(searchp, node);
Christoph Lameter35386e32006-03-22 00:09:05 -08003959
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003960 reap_alien(searchp, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003961
Joonsoo Kim18726ca2016-05-19 17:10:02 -07003962 drain_array(searchp, n, cpu_cache_get(searchp), node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003963
Christoph Lameter35386e32006-03-22 00:09:05 -08003964 /*
3965 * These are racy checks but it does not matter
3966 * if we skip one check or scan twice.
3967 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003968 if (time_after(n->next_reap, jiffies))
Christoph Lameter35386e32006-03-22 00:09:05 -08003969 goto next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003970
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08003971 n->next_reap = jiffies + REAPTIMEOUT_NODE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003972
Joonsoo Kim18726ca2016-05-19 17:10:02 -07003973 drain_array(searchp, n, n->shared, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003974
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003975 if (n->free_touched)
3976 n->free_touched = 0;
Christoph Lametered11d9e2006-06-30 01:55:45 -07003977 else {
3978 int freed;
3979
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003980 freed = drain_freelist(searchp, n, (n->free_limit +
Christoph Lametered11d9e2006-06-30 01:55:45 -07003981 5 * searchp->num - 1) / (5 * searchp->num));
3982 STATS_ADD_REAPED(searchp, freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003983 }
Christoph Lameter35386e32006-03-22 00:09:05 -08003984next:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003985 cond_resched();
3986 }
3987 check_irq_on();
Christoph Lameter18004c52012-07-06 15:25:12 -05003988 mutex_unlock(&slab_mutex);
Christoph Lameter8fce4d82006-03-09 17:33:54 -08003989 next_reap_node();
Christoph Lameter7c5cae32007-02-10 01:42:55 -08003990out:
Andrew Mortona737b3e2006-03-22 00:08:11 -08003991 /* Set up the next iteration */
Jianyu Zhan5f0985b2014-03-30 17:02:20 +08003992 schedule_delayed_work(work, round_jiffies_relative(REAPTIMEOUT_AC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003993}
3994
Linus Torvalds158a9622008-01-02 13:04:48 -08003995#ifdef CONFIG_SLABINFO
Glauber Costa0d7561c2012-10-19 18:20:27 +04003996void get_slabinfo(struct kmem_cache *cachep, struct slabinfo *sinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003997{
Joonsoo Kim8456a642013-10-24 10:07:49 +09003998 struct page *page;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003999 unsigned long active_objs;
4000 unsigned long num_objs;
4001 unsigned long active_slabs = 0;
4002 unsigned long num_slabs, free_objects = 0, shared_avail = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07004003 const char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004004 char *error = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07004005 int node;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004006 struct kmem_cache_node *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004007
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008 active_objs = 0;
4009 num_slabs = 0;
Christoph Lameter18bf8542014-08-06 16:04:11 -07004010 for_each_kmem_cache_node(cachep, node, n) {
Christoph Lametere498be72005-09-09 13:03:32 -07004011
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08004012 check_irq_on();
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004013 spin_lock_irq(&n->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07004014
Joonsoo Kim8456a642013-10-24 10:07:49 +09004015 list_for_each_entry(page, &n->slabs_full, lru) {
4016 if (page->active != cachep->num && !error)
Christoph Lametere498be72005-09-09 13:03:32 -07004017 error = "slabs_full accounting error";
4018 active_objs += cachep->num;
4019 active_slabs++;
4020 }
Joonsoo Kim8456a642013-10-24 10:07:49 +09004021 list_for_each_entry(page, &n->slabs_partial, lru) {
4022 if (page->active == cachep->num && !error)
Joonsoo Kim106a74e2013-10-24 10:07:48 +09004023 error = "slabs_partial accounting error";
Joonsoo Kim8456a642013-10-24 10:07:49 +09004024 if (!page->active && !error)
Joonsoo Kim106a74e2013-10-24 10:07:48 +09004025 error = "slabs_partial accounting error";
Joonsoo Kim8456a642013-10-24 10:07:49 +09004026 active_objs += page->active;
Christoph Lametere498be72005-09-09 13:03:32 -07004027 active_slabs++;
4028 }
Joonsoo Kim8456a642013-10-24 10:07:49 +09004029 list_for_each_entry(page, &n->slabs_free, lru) {
4030 if (page->active && !error)
Joonsoo Kim106a74e2013-10-24 10:07:48 +09004031 error = "slabs_free accounting error";
Christoph Lametere498be72005-09-09 13:03:32 -07004032 num_slabs++;
4033 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004034 free_objects += n->free_objects;
4035 if (n->shared)
4036 shared_avail += n->shared->avail;
Christoph Lametere498be72005-09-09 13:03:32 -07004037
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004038 spin_unlock_irq(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004039 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004040 num_slabs += active_slabs;
4041 num_objs = num_slabs * cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07004042 if (num_objs - active_objs != free_objects && !error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043 error = "free_objects accounting error";
4044
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004045 name = cachep->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004046 if (error)
Joe Perches11705322016-03-17 14:19:50 -07004047 pr_err("slab: cache %s error: %s\n", name, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004048
Glauber Costa0d7561c2012-10-19 18:20:27 +04004049 sinfo->active_objs = active_objs;
4050 sinfo->num_objs = num_objs;
4051 sinfo->active_slabs = active_slabs;
4052 sinfo->num_slabs = num_slabs;
4053 sinfo->shared_avail = shared_avail;
4054 sinfo->limit = cachep->limit;
4055 sinfo->batchcount = cachep->batchcount;
4056 sinfo->shared = cachep->shared;
4057 sinfo->objects_per_slab = cachep->num;
4058 sinfo->cache_order = cachep->gfporder;
4059}
4060
4061void slabinfo_show_stats(struct seq_file *m, struct kmem_cache *cachep)
4062{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004063#if STATS
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004064 { /* node stats */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004065 unsigned long high = cachep->high_mark;
4066 unsigned long allocs = cachep->num_allocations;
4067 unsigned long grown = cachep->grown;
4068 unsigned long reaped = cachep->reaped;
4069 unsigned long errors = cachep->errors;
4070 unsigned long max_freeable = cachep->max_freeable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004071 unsigned long node_allocs = cachep->node_allocs;
Christoph Lametere498be72005-09-09 13:03:32 -07004072 unsigned long node_frees = cachep->node_frees;
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -07004073 unsigned long overflows = cachep->node_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004074
Joe Perches756a0252016-03-17 14:19:47 -07004075 seq_printf(m, " : globalstat %7lu %6lu %5lu %4lu %4lu %4lu %4lu %4lu %4lu",
Joe Perchese92dd4f2010-03-26 19:27:58 -07004076 allocs, high, grown,
4077 reaped, errors, max_freeable, node_allocs,
4078 node_frees, overflows);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004079 }
4080 /* cpu stats */
4081 {
4082 unsigned long allochit = atomic_read(&cachep->allochit);
4083 unsigned long allocmiss = atomic_read(&cachep->allocmiss);
4084 unsigned long freehit = atomic_read(&cachep->freehit);
4085 unsigned long freemiss = atomic_read(&cachep->freemiss);
4086
4087 seq_printf(m, " : cpustat %6lu %6lu %6lu %6lu",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004088 allochit, allocmiss, freehit, freemiss);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004089 }
4090#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004091}
4092
Linus Torvalds1da177e2005-04-16 15:20:36 -07004093#define MAX_SLABINFO_WRITE 128
4094/**
4095 * slabinfo_write - Tuning for the slab allocator
4096 * @file: unused
4097 * @buffer: user buffer
4098 * @count: data length
4099 * @ppos: unused
4100 */
Glauber Costab7454ad2012-10-19 18:20:25 +04004101ssize_t slabinfo_write(struct file *file, const char __user *buffer,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004102 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004103{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004104 char kbuf[MAX_SLABINFO_WRITE + 1], *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004105 int limit, batchcount, shared, res;
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004106 struct kmem_cache *cachep;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004107
Linus Torvalds1da177e2005-04-16 15:20:36 -07004108 if (count > MAX_SLABINFO_WRITE)
4109 return -EINVAL;
4110 if (copy_from_user(&kbuf, buffer, count))
4111 return -EFAULT;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004112 kbuf[MAX_SLABINFO_WRITE] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07004113
4114 tmp = strchr(kbuf, ' ');
4115 if (!tmp)
4116 return -EINVAL;
4117 *tmp = '\0';
4118 tmp++;
4119 if (sscanf(tmp, " %d %d %d", &limit, &batchcount, &shared) != 3)
4120 return -EINVAL;
4121
4122 /* Find the cache in the chain of caches. */
Christoph Lameter18004c52012-07-06 15:25:12 -05004123 mutex_lock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004124 res = -EINVAL;
Christoph Lameter18004c52012-07-06 15:25:12 -05004125 list_for_each_entry(cachep, &slab_caches, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004126 if (!strcmp(cachep->name, kbuf)) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08004127 if (limit < 1 || batchcount < 1 ||
4128 batchcount > limit || shared < 0) {
Christoph Lametere498be72005-09-09 13:03:32 -07004129 res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004130 } else {
Christoph Lametere498be72005-09-09 13:03:32 -07004131 res = do_tune_cpucache(cachep, limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03004132 batchcount, shared,
4133 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004134 }
4135 break;
4136 }
4137 }
Christoph Lameter18004c52012-07-06 15:25:12 -05004138 mutex_unlock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004139 if (res >= 0)
4140 res = count;
4141 return res;
4142}
Al Viro871751e2006-03-25 03:06:39 -08004143
4144#ifdef CONFIG_DEBUG_SLAB_LEAK
4145
Al Viro871751e2006-03-25 03:06:39 -08004146static inline int add_caller(unsigned long *n, unsigned long v)
4147{
4148 unsigned long *p;
4149 int l;
4150 if (!v)
4151 return 1;
4152 l = n[1];
4153 p = n + 2;
4154 while (l) {
4155 int i = l/2;
4156 unsigned long *q = p + 2 * i;
4157 if (*q == v) {
4158 q[1]++;
4159 return 1;
4160 }
4161 if (*q > v) {
4162 l = i;
4163 } else {
4164 p = q + 2;
4165 l -= i + 1;
4166 }
4167 }
4168 if (++n[1] == n[0])
4169 return 0;
4170 memmove(p + 2, p, n[1] * 2 * sizeof(unsigned long) - ((void *)p - (void *)n));
4171 p[0] = v;
4172 p[1] = 1;
4173 return 1;
4174}
4175
Joonsoo Kim8456a642013-10-24 10:07:49 +09004176static void handle_slab(unsigned long *n, struct kmem_cache *c,
4177 struct page *page)
Al Viro871751e2006-03-25 03:06:39 -08004178{
4179 void *p;
Joonsoo Kimd31676d2016-03-15 14:54:24 -07004180 int i, j;
4181 unsigned long v;
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09004182
Al Viro871751e2006-03-25 03:06:39 -08004183 if (n[0] == n[1])
4184 return;
Joonsoo Kim8456a642013-10-24 10:07:49 +09004185 for (i = 0, p = page->s_mem; i < c->num; i++, p += c->size) {
Joonsoo Kimd31676d2016-03-15 14:54:24 -07004186 bool active = true;
4187
4188 for (j = page->active; j < c->num; j++) {
4189 if (get_free_obj(page, j) == i) {
4190 active = false;
4191 break;
4192 }
4193 }
4194
4195 if (!active)
Al Viro871751e2006-03-25 03:06:39 -08004196 continue;
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09004197
Joonsoo Kimd31676d2016-03-15 14:54:24 -07004198 /*
4199 * probe_kernel_read() is used for DEBUG_PAGEALLOC. page table
4200 * mapping is established when actual object allocation and
4201 * we could mistakenly access the unmapped object in the cpu
4202 * cache.
4203 */
4204 if (probe_kernel_read(&v, dbg_userword(c, p), sizeof(v)))
4205 continue;
4206
4207 if (!add_caller(n, v))
Al Viro871751e2006-03-25 03:06:39 -08004208 return;
4209 }
4210}
4211
4212static void show_symbol(struct seq_file *m, unsigned long address)
4213{
4214#ifdef CONFIG_KALLSYMS
Al Viro871751e2006-03-25 03:06:39 -08004215 unsigned long offset, size;
Tejun Heo9281ace2007-07-17 04:03:51 -07004216 char modname[MODULE_NAME_LEN], name[KSYM_NAME_LEN];
Al Viro871751e2006-03-25 03:06:39 -08004217
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004218 if (lookup_symbol_attrs(address, &size, &offset, modname, name) == 0) {
Al Viro871751e2006-03-25 03:06:39 -08004219 seq_printf(m, "%s+%#lx/%#lx", name, offset, size);
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004220 if (modname[0])
Al Viro871751e2006-03-25 03:06:39 -08004221 seq_printf(m, " [%s]", modname);
4222 return;
4223 }
4224#endif
4225 seq_printf(m, "%p", (void *)address);
4226}
4227
4228static int leaks_show(struct seq_file *m, void *p)
4229{
Thierry Reding0672aa72012-06-22 19:42:49 +02004230 struct kmem_cache *cachep = list_entry(p, struct kmem_cache, list);
Joonsoo Kim8456a642013-10-24 10:07:49 +09004231 struct page *page;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004232 struct kmem_cache_node *n;
Al Viro871751e2006-03-25 03:06:39 -08004233 const char *name;
Christoph Lameterdb845062013-02-05 18:45:23 +00004234 unsigned long *x = m->private;
Al Viro871751e2006-03-25 03:06:39 -08004235 int node;
4236 int i;
4237
4238 if (!(cachep->flags & SLAB_STORE_USER))
4239 return 0;
4240 if (!(cachep->flags & SLAB_RED_ZONE))
4241 return 0;
4242
Joonsoo Kimd31676d2016-03-15 14:54:24 -07004243 /*
4244 * Set store_user_clean and start to grab stored user information
4245 * for all objects on this cache. If some alloc/free requests comes
4246 * during the processing, information would be wrong so restart
4247 * whole processing.
4248 */
4249 do {
4250 set_store_user_clean(cachep);
4251 drain_cpu_caches(cachep);
Al Viro871751e2006-03-25 03:06:39 -08004252
Joonsoo Kimd31676d2016-03-15 14:54:24 -07004253 x[1] = 0;
Al Viro871751e2006-03-25 03:06:39 -08004254
Joonsoo Kimd31676d2016-03-15 14:54:24 -07004255 for_each_kmem_cache_node(cachep, node, n) {
Al Viro871751e2006-03-25 03:06:39 -08004256
Joonsoo Kimd31676d2016-03-15 14:54:24 -07004257 check_irq_on();
4258 spin_lock_irq(&n->list_lock);
Al Viro871751e2006-03-25 03:06:39 -08004259
Joonsoo Kimd31676d2016-03-15 14:54:24 -07004260 list_for_each_entry(page, &n->slabs_full, lru)
4261 handle_slab(x, cachep, page);
4262 list_for_each_entry(page, &n->slabs_partial, lru)
4263 handle_slab(x, cachep, page);
4264 spin_unlock_irq(&n->list_lock);
4265 }
4266 } while (!is_store_user_clean(cachep));
4267
Al Viro871751e2006-03-25 03:06:39 -08004268 name = cachep->name;
Christoph Lameterdb845062013-02-05 18:45:23 +00004269 if (x[0] == x[1]) {
Al Viro871751e2006-03-25 03:06:39 -08004270 /* Increase the buffer size */
Christoph Lameter18004c52012-07-06 15:25:12 -05004271 mutex_unlock(&slab_mutex);
Christoph Lameterdb845062013-02-05 18:45:23 +00004272 m->private = kzalloc(x[0] * 4 * sizeof(unsigned long), GFP_KERNEL);
Al Viro871751e2006-03-25 03:06:39 -08004273 if (!m->private) {
4274 /* Too bad, we are really out */
Christoph Lameterdb845062013-02-05 18:45:23 +00004275 m->private = x;
Christoph Lameter18004c52012-07-06 15:25:12 -05004276 mutex_lock(&slab_mutex);
Al Viro871751e2006-03-25 03:06:39 -08004277 return -ENOMEM;
4278 }
Christoph Lameterdb845062013-02-05 18:45:23 +00004279 *(unsigned long *)m->private = x[0] * 2;
4280 kfree(x);
Christoph Lameter18004c52012-07-06 15:25:12 -05004281 mutex_lock(&slab_mutex);
Al Viro871751e2006-03-25 03:06:39 -08004282 /* Now make sure this entry will be retried */
4283 m->count = m->size;
4284 return 0;
4285 }
Christoph Lameterdb845062013-02-05 18:45:23 +00004286 for (i = 0; i < x[1]; i++) {
4287 seq_printf(m, "%s: %lu ", name, x[2*i+3]);
4288 show_symbol(m, x[2*i+2]);
Al Viro871751e2006-03-25 03:06:39 -08004289 seq_putc(m, '\n');
4290 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004291
Al Viro871751e2006-03-25 03:06:39 -08004292 return 0;
4293}
4294
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004295static const struct seq_operations slabstats_op = {
Vladimir Davydov1df3b262014-12-10 15:42:16 -08004296 .start = slab_start,
Wanpeng Li276a2432013-07-08 08:08:28 +08004297 .next = slab_next,
4298 .stop = slab_stop,
Al Viro871751e2006-03-25 03:06:39 -08004299 .show = leaks_show,
4300};
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004301
4302static int slabstats_open(struct inode *inode, struct file *file)
4303{
Rob Jonesb208ce32014-10-09 15:28:03 -07004304 unsigned long *n;
4305
4306 n = __seq_open_private(file, &slabstats_op, PAGE_SIZE);
4307 if (!n)
4308 return -ENOMEM;
4309
4310 *n = PAGE_SIZE / (2 * sizeof(unsigned long));
4311
4312 return 0;
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004313}
4314
4315static const struct file_operations proc_slabstats_operations = {
4316 .open = slabstats_open,
4317 .read = seq_read,
4318 .llseek = seq_lseek,
4319 .release = seq_release_private,
4320};
Al Viro871751e2006-03-25 03:06:39 -08004321#endif
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004322
4323static int __init slab_proc_init(void)
4324{
4325#ifdef CONFIG_DEBUG_SLAB_LEAK
4326 proc_create("slab_allocators", 0, NULL, &proc_slabstats_operations);
4327#endif
4328 return 0;
4329}
4330module_init(slab_proc_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004331#endif
4332
Manfred Spraul00e145b2005-09-03 15:55:07 -07004333/**
4334 * ksize - get the actual amount of memory allocated for a given object
4335 * @objp: Pointer to the object
4336 *
4337 * kmalloc may internally round up allocations and return more memory
4338 * than requested. ksize() can be used to determine the actual amount of
4339 * memory allocated. The caller may use this additional memory, even though
4340 * a smaller amount of memory was initially specified with the kmalloc call.
4341 * The caller must guarantee that objp points to a valid object previously
4342 * allocated with either kmalloc() or kmem_cache_alloc(). The object
4343 * must not be freed during the duration of the call.
4344 */
Pekka Enbergfd76bab2007-05-06 14:48:40 -07004345size_t ksize(const void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004346{
Alexander Potapenko7ed2f9e2016-03-25 14:21:59 -07004347 size_t size;
4348
Christoph Lameteref8b4522007-10-16 01:24:46 -07004349 BUG_ON(!objp);
4350 if (unlikely(objp == ZERO_SIZE_PTR))
Manfred Spraul00e145b2005-09-03 15:55:07 -07004351 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004352
Alexander Potapenko7ed2f9e2016-03-25 14:21:59 -07004353 size = virt_to_cache(objp)->object_size;
4354 /* We assume that ksize callers could use the whole allocated area,
4355 * so we need to unpoison this area.
4356 */
Alexander Potapenko505f5dc2016-03-25 14:22:02 -07004357 kasan_krealloc(objp, size, GFP_NOWAIT);
Alexander Potapenko7ed2f9e2016-03-25 14:21:59 -07004358
4359 return size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004360}
Kirill A. Shutemovb1aabec2009-02-10 15:21:44 +02004361EXPORT_SYMBOL(ksize);