blob: 0b1c2a58559dcdfd7f6bc065a2a3e4f3f7b75e6c [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
Mel Gorman072bb0a2012-07-31 16:43:58 -0700160/*
161 * true if a page was allocated from pfmemalloc reserves for network-based
162 * swap
163 */
164static bool pfmemalloc_active __read_mostly;
165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 * struct array_cache
168 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 * Purpose:
170 * - LIFO ordering, to hand out cache-warm objects from _alloc
171 * - reduce the number of linked list operations
172 * - reduce spinlock operations
173 *
174 * The limit is stored in the per-cpu structure to reduce the data cache
175 * footprint.
176 *
177 */
178struct array_cache {
179 unsigned int avail;
180 unsigned int limit;
181 unsigned int batchcount;
182 unsigned int touched;
Christoph Lametere498be72005-09-09 13:03:32 -0700183 spinlock_t lock;
Robert P. J. Daybda5b652007-10-16 23:30:05 -0700184 void *entry[]; /*
Andrew Mortona737b3e2006-03-22 00:08:11 -0800185 * Must have this definition in here for the proper
186 * alignment of array_cache. Also simplifies accessing
187 * the entries.
Mel Gorman072bb0a2012-07-31 16:43:58 -0700188 *
189 * Entries should not be directly dereferenced as
190 * entries belonging to slabs marked pfmemalloc will
191 * have the lower bits set SLAB_OBJ_PFMEMALLOC
Andrew Mortona737b3e2006-03-22 00:08:11 -0800192 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193};
194
Mel Gorman072bb0a2012-07-31 16:43:58 -0700195#define SLAB_OBJ_PFMEMALLOC 1
196static inline bool is_obj_pfmemalloc(void *objp)
197{
198 return (unsigned long)objp & SLAB_OBJ_PFMEMALLOC;
199}
200
201static inline void set_obj_pfmemalloc(void **objp)
202{
203 *objp = (void *)((unsigned long)*objp | SLAB_OBJ_PFMEMALLOC);
204 return;
205}
206
207static inline void clear_obj_pfmemalloc(void **objp)
208{
209 *objp = (void *)((unsigned long)*objp & ~SLAB_OBJ_PFMEMALLOC);
210}
211
Andrew Mortona737b3e2006-03-22 00:08:11 -0800212/*
213 * bootstrap: The caches do not work without cpuarrays anymore, but the
214 * cpuarrays are allocated from the generic caches...
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 */
216#define BOOT_CPUCACHE_ENTRIES 1
217struct arraycache_init {
218 struct array_cache cache;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800219 void *entries[BOOT_CPUCACHE_ENTRIES];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220};
221
222/*
Christoph Lametere498be72005-09-09 13:03:32 -0700223 * Need this for bootstrapping a per node allocator.
224 */
Pekka Enberg556a1692008-01-25 08:20:51 +0200225#define NUM_INIT_LISTS (3 * MAX_NUMNODES)
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000226static struct kmem_cache_node __initdata init_kmem_cache_node[NUM_INIT_LISTS];
Christoph Lametere498be72005-09-09 13:03:32 -0700227#define CACHE_CACHE 0
Pekka Enberg556a1692008-01-25 08:20:51 +0200228#define SIZE_AC MAX_NUMNODES
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000229#define SIZE_NODE (2 * MAX_NUMNODES)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Christoph Lametered11d9e2006-06-30 01:55:45 -0700231static int drain_freelist(struct kmem_cache *cache,
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000232 struct kmem_cache_node *n, int tofree);
Christoph Lametered11d9e2006-06-30 01:55:45 -0700233static void free_block(struct kmem_cache *cachep, void **objpp, int len,
234 int node);
Pekka Enberg83b519e2009-06-10 19:40:04 +0300235static int enable_cpucache(struct kmem_cache *cachep, gfp_t gfp);
David Howells65f27f32006-11-22 14:55:48 +0000236static void cache_reap(struct work_struct *unused);
Christoph Lametered11d9e2006-06-30 01:55:45 -0700237
Ingo Molnare0a42722006-06-23 02:03:46 -0700238static int slab_early_init = 1;
239
Christoph Lametere3366012013-01-10 19:14:18 +0000240#define INDEX_AC kmalloc_index(sizeof(struct arraycache_init))
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000241#define INDEX_NODE kmalloc_index(sizeof(struct kmem_cache_node))
Christoph Lametere498be72005-09-09 13:03:32 -0700242
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000243static void kmem_cache_node_init(struct kmem_cache_node *parent)
Christoph Lametere498be72005-09-09 13:03:32 -0700244{
245 INIT_LIST_HEAD(&parent->slabs_full);
246 INIT_LIST_HEAD(&parent->slabs_partial);
247 INIT_LIST_HEAD(&parent->slabs_free);
248 parent->shared = NULL;
249 parent->alien = NULL;
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -0800250 parent->colour_next = 0;
Christoph Lametere498be72005-09-09 13:03:32 -0700251 spin_lock_init(&parent->list_lock);
252 parent->free_objects = 0;
253 parent->free_touched = 0;
254}
255
Andrew Mortona737b3e2006-03-22 00:08:11 -0800256#define MAKE_LIST(cachep, listp, slab, nodeid) \
257 do { \
258 INIT_LIST_HEAD(listp); \
Christoph Lameter6a673682013-01-10 19:14:19 +0000259 list_splice(&(cachep->node[nodeid]->slab), listp); \
Christoph Lametere498be72005-09-09 13:03:32 -0700260 } while (0)
261
Andrew Mortona737b3e2006-03-22 00:08:11 -0800262#define MAKE_ALL_LISTS(cachep, ptr, nodeid) \
263 do { \
Christoph Lametere498be72005-09-09 13:03:32 -0700264 MAKE_LIST((cachep), (&(ptr)->slabs_full), slabs_full, nodeid); \
265 MAKE_LIST((cachep), (&(ptr)->slabs_partial), slabs_partial, nodeid); \
266 MAKE_LIST((cachep), (&(ptr)->slabs_free), slabs_free, nodeid); \
267 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269#define CFLGS_OFF_SLAB (0x80000000UL)
270#define OFF_SLAB(x) ((x)->flags & CFLGS_OFF_SLAB)
271
272#define BATCHREFILL_LIMIT 16
Andrew Mortona737b3e2006-03-22 00:08:11 -0800273/*
274 * Optimization question: fewer reaps means less probability for unnessary
275 * cpucache drain/refill cycles.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 *
Adrian Bunkdc6f3f22005-11-08 16:44:08 +0100277 * OTOH the cpuarrays can contain lots of objects,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 * which could lock up otherwise freeable slabs.
279 */
280#define REAPTIMEOUT_CPUC (2*HZ)
281#define REAPTIMEOUT_LIST3 (4*HZ)
282
283#if STATS
284#define STATS_INC_ACTIVE(x) ((x)->num_active++)
285#define STATS_DEC_ACTIVE(x) ((x)->num_active--)
286#define STATS_INC_ALLOCED(x) ((x)->num_allocations++)
287#define STATS_INC_GROWN(x) ((x)->grown++)
Christoph Lametered11d9e2006-06-30 01:55:45 -0700288#define STATS_ADD_REAPED(x,y) ((x)->reaped += (y))
Andrew Mortona737b3e2006-03-22 00:08:11 -0800289#define STATS_SET_HIGH(x) \
290 do { \
291 if ((x)->num_active > (x)->high_mark) \
292 (x)->high_mark = (x)->num_active; \
293 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294#define STATS_INC_ERR(x) ((x)->errors++)
295#define STATS_INC_NODEALLOCS(x) ((x)->node_allocs++)
Christoph Lametere498be72005-09-09 13:03:32 -0700296#define STATS_INC_NODEFREES(x) ((x)->node_frees++)
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -0700297#define STATS_INC_ACOVERFLOW(x) ((x)->node_overflow++)
Andrew Mortona737b3e2006-03-22 00:08:11 -0800298#define STATS_SET_FREEABLE(x, i) \
299 do { \
300 if ((x)->max_freeable < i) \
301 (x)->max_freeable = i; \
302 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303#define STATS_INC_ALLOCHIT(x) atomic_inc(&(x)->allochit)
304#define STATS_INC_ALLOCMISS(x) atomic_inc(&(x)->allocmiss)
305#define STATS_INC_FREEHIT(x) atomic_inc(&(x)->freehit)
306#define STATS_INC_FREEMISS(x) atomic_inc(&(x)->freemiss)
307#else
308#define STATS_INC_ACTIVE(x) do { } while (0)
309#define STATS_DEC_ACTIVE(x) do { } while (0)
310#define STATS_INC_ALLOCED(x) do { } while (0)
311#define STATS_INC_GROWN(x) do { } while (0)
Andi Kleen4e60c862010-08-09 17:19:03 -0700312#define STATS_ADD_REAPED(x,y) do { (void)(y); } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313#define STATS_SET_HIGH(x) do { } while (0)
314#define STATS_INC_ERR(x) do { } while (0)
315#define STATS_INC_NODEALLOCS(x) do { } while (0)
Christoph Lametere498be72005-09-09 13:03:32 -0700316#define STATS_INC_NODEFREES(x) do { } while (0)
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -0700317#define STATS_INC_ACOVERFLOW(x) do { } while (0)
Andrew Mortona737b3e2006-03-22 00:08:11 -0800318#define STATS_SET_FREEABLE(x, i) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319#define STATS_INC_ALLOCHIT(x) do { } while (0)
320#define STATS_INC_ALLOCMISS(x) do { } while (0)
321#define STATS_INC_FREEHIT(x) do { } while (0)
322#define STATS_INC_FREEMISS(x) do { } while (0)
323#endif
324
325#if DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Andrew Mortona737b3e2006-03-22 00:08:11 -0800327/*
328 * memory layout of objects:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 * 0 : objp
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800330 * 0 .. cachep->obj_offset - BYTES_PER_WORD - 1: padding. This ensures that
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 * the end of an object is aligned with the end of the real
332 * allocation. Catches writes behind the end of the allocation.
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800333 * cachep->obj_offset - BYTES_PER_WORD .. cachep->obj_offset - 1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 * redzone word.
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800335 * cachep->obj_offset: The real object.
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500336 * cachep->size - 2* BYTES_PER_WORD: redzone word [BYTES_PER_WORD long]
337 * cachep->size - 1* BYTES_PER_WORD: last caller address
Andrew Mortona737b3e2006-03-22 00:08:11 -0800338 * [BYTES_PER_WORD long]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339 */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800340static int obj_offset(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341{
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800342 return cachep->obj_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343}
344
David Woodhouseb46b8f12007-05-08 00:22:59 -0700345static unsigned long long *dbg_redzone1(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346{
347 BUG_ON(!(cachep->flags & SLAB_RED_ZONE));
David Woodhouseb46b8f12007-05-08 00:22:59 -0700348 return (unsigned long long*) (objp + obj_offset(cachep) -
349 sizeof(unsigned long long));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350}
351
David Woodhouseb46b8f12007-05-08 00:22:59 -0700352static unsigned long long *dbg_redzone2(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353{
354 BUG_ON(!(cachep->flags & SLAB_RED_ZONE));
355 if (cachep->flags & SLAB_STORE_USER)
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500356 return (unsigned long long *)(objp + cachep->size -
David Woodhouseb46b8f12007-05-08 00:22:59 -0700357 sizeof(unsigned long long) -
David Woodhouse87a927c2007-07-04 21:26:44 -0400358 REDZONE_ALIGN);
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500359 return (unsigned long long *) (objp + cachep->size -
David Woodhouseb46b8f12007-05-08 00:22:59 -0700360 sizeof(unsigned long long));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361}
362
Pekka Enberg343e0d72006-02-01 03:05:50 -0800363static void **dbg_userword(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364{
365 BUG_ON(!(cachep->flags & SLAB_STORE_USER));
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500366 return (void **)(objp + cachep->size - BYTES_PER_WORD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367}
368
369#else
370
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800371#define obj_offset(x) 0
David Woodhouseb46b8f12007-05-08 00:22:59 -0700372#define dbg_redzone1(cachep, objp) ({BUG(); (unsigned long long *)NULL;})
373#define dbg_redzone2(cachep, objp) ({BUG(); (unsigned long long *)NULL;})
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374#define dbg_userword(cachep, objp) ({BUG(); (void **)NULL;})
375
376#endif
377
Joonsoo Kimd35426e2014-06-23 13:22:06 -0700378#define OBJECT_FREE (0)
379#define OBJECT_ACTIVE (1)
380
381#ifdef CONFIG_DEBUG_SLAB_LEAK
382
383static void set_obj_status(struct page *page, int idx, int val)
384{
385 int freelist_size;
386 char *status;
387 struct kmem_cache *cachep = page->slab_cache;
388
389 freelist_size = cachep->num * sizeof(unsigned int);
390 status = (char *)page->freelist + freelist_size;
391 status[idx] = val;
392}
393
394static inline unsigned int get_obj_status(struct page *page, int idx)
395{
396 int freelist_size;
397 char *status;
398 struct kmem_cache *cachep = page->slab_cache;
399
400 freelist_size = cachep->num * sizeof(unsigned int);
401 status = (char *)page->freelist + freelist_size;
402
403 return status[idx];
404}
405
406#else
407static inline void set_obj_status(struct page *page, int idx, int val) {}
408
409#endif
410
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411/*
David Rientjes3df1ccc2011-10-18 22:09:28 -0700412 * Do not go above this order unless 0 objects fit into the slab or
413 * overridden on the command line.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 */
David Rientjes543585c2011-10-18 22:09:24 -0700415#define SLAB_MAX_ORDER_HI 1
416#define SLAB_MAX_ORDER_LO 0
417static int slab_max_order = SLAB_MAX_ORDER_LO;
David Rientjes3df1ccc2011-10-18 22:09:28 -0700418static bool slab_max_order_set __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -0800420static inline struct kmem_cache *virt_to_cache(const void *obj)
421{
Christoph Lameterb49af682007-05-06 14:49:41 -0700422 struct page *page = virt_to_head_page(obj);
Christoph Lameter35026082012-06-13 10:24:56 -0500423 return page->slab_cache;
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -0800424}
425
Joonsoo Kim8456a642013-10-24 10:07:49 +0900426static inline void *index_to_obj(struct kmem_cache *cache, struct page *page,
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800427 unsigned int idx)
428{
Joonsoo Kim8456a642013-10-24 10:07:49 +0900429 return page->s_mem + cache->size * idx;
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800430}
431
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800432/*
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500433 * We want to avoid an expensive divide : (offset / cache->size)
434 * Using the fact that size is a constant for a particular cache,
435 * we can replace (offset / cache->size) by
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800436 * reciprocal_divide(offset, cache->reciprocal_buffer_size)
437 */
438static inline unsigned int obj_to_index(const struct kmem_cache *cache,
Joonsoo Kim8456a642013-10-24 10:07:49 +0900439 const struct page *page, void *obj)
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800440{
Joonsoo Kim8456a642013-10-24 10:07:49 +0900441 u32 offset = (obj - page->s_mem);
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800442 return reciprocal_divide(offset, cache->reciprocal_buffer_size);
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800443}
444
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445static struct arraycache_init initarray_generic =
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800446 { {0, BOOT_CPUCACHE_ENTRIES, 1, 0} };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
448/* internal cache of cache description objs */
Christoph Lameter9b030cb2012-09-05 00:20:33 +0000449static struct kmem_cache kmem_cache_boot = {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800450 .batchcount = 1,
451 .limit = BOOT_CPUCACHE_ENTRIES,
452 .shared = 1,
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500453 .size = sizeof(struct kmem_cache),
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800454 .name = "kmem_cache",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455};
456
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -0700457#define BAD_ALIEN_MAGIC 0x01020304ul
458
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200459#ifdef CONFIG_LOCKDEP
460
461/*
462 * Slab sometimes uses the kmalloc slabs to store the slab headers
463 * for other slabs "off slab".
464 * The locking for this is tricky in that it nests within the locks
465 * of all other slabs in a few places; to deal with this special
466 * locking we put on-slab caches into a separate lock-class.
467 *
468 * We set lock class for alien array caches which are up during init.
469 * The lock annotation will be lost if all cpus of a node goes down and
470 * then comes back up during hotplug
471 */
472static struct lock_class_key on_slab_l3_key;
473static struct lock_class_key on_slab_alc_key;
474
Peter Zijlstra83835b32011-07-22 15:26:05 +0200475static struct lock_class_key debugobj_l3_key;
476static struct lock_class_key debugobj_alc_key;
477
478static void slab_set_lock_classes(struct kmem_cache *cachep,
479 struct lock_class_key *l3_key, struct lock_class_key *alc_key,
480 int q)
481{
482 struct array_cache **alc;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000483 struct kmem_cache_node *n;
Peter Zijlstra83835b32011-07-22 15:26:05 +0200484 int r;
485
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000486 n = cachep->node[q];
487 if (!n)
Peter Zijlstra83835b32011-07-22 15:26:05 +0200488 return;
489
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000490 lockdep_set_class(&n->list_lock, l3_key);
491 alc = n->alien;
Peter Zijlstra83835b32011-07-22 15:26:05 +0200492 /*
493 * FIXME: This check for BAD_ALIEN_MAGIC
494 * should go away when common slab code is taught to
495 * work even without alien caches.
496 * Currently, non NUMA code returns BAD_ALIEN_MAGIC
497 * for alloc_alien_cache,
498 */
499 if (!alc || (unsigned long)alc == BAD_ALIEN_MAGIC)
500 return;
501 for_each_node(r) {
502 if (alc[r])
503 lockdep_set_class(&alc[r]->lock, alc_key);
504 }
505}
506
507static void slab_set_debugobj_lock_classes_node(struct kmem_cache *cachep, int node)
508{
509 slab_set_lock_classes(cachep, &debugobj_l3_key, &debugobj_alc_key, node);
510}
511
512static void slab_set_debugobj_lock_classes(struct kmem_cache *cachep)
513{
514 int node;
515
516 for_each_online_node(node)
517 slab_set_debugobj_lock_classes_node(cachep, node);
518}
519
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200520static void init_node_lock_keys(int q)
521{
Christoph Lametere3366012013-01-10 19:14:18 +0000522 int i;
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200523
Christoph Lameter97d06602012-07-06 15:25:11 -0500524 if (slab_state < UP)
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200525 return;
526
Christoph Lameter0f8f8092013-07-02 12:12:10 -0700527 for (i = 1; i <= KMALLOC_SHIFT_HIGH; i++) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000528 struct kmem_cache_node *n;
Christoph Lametere3366012013-01-10 19:14:18 +0000529 struct kmem_cache *cache = kmalloc_caches[i];
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200530
Christoph Lametere3366012013-01-10 19:14:18 +0000531 if (!cache)
Pekka Enberg00afa752009-12-27 14:33:14 +0200532 continue;
Peter Zijlstra83835b32011-07-22 15:26:05 +0200533
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000534 n = cache->node[q];
535 if (!n || OFF_SLAB(cache))
Christoph Lametere3366012013-01-10 19:14:18 +0000536 continue;
537
538 slab_set_lock_classes(cache, &on_slab_l3_key,
Peter Zijlstra83835b32011-07-22 15:26:05 +0200539 &on_slab_alc_key, q);
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200540 }
541}
542
Glauber Costa6ccfb5b2012-12-18 14:22:31 -0800543static void on_slab_lock_classes_node(struct kmem_cache *cachep, int q)
544{
Christoph Lameter6a673682013-01-10 19:14:19 +0000545 if (!cachep->node[q])
Glauber Costa6ccfb5b2012-12-18 14:22:31 -0800546 return;
547
548 slab_set_lock_classes(cachep, &on_slab_l3_key,
549 &on_slab_alc_key, q);
550}
551
552static inline void on_slab_lock_classes(struct kmem_cache *cachep)
553{
554 int node;
555
556 VM_BUG_ON(OFF_SLAB(cachep));
557 for_each_node(node)
558 on_slab_lock_classes_node(cachep, node);
559}
560
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200561static inline void init_lock_keys(void)
562{
563 int node;
564
565 for_each_node(node)
566 init_node_lock_keys(node);
567}
568#else
569static void init_node_lock_keys(int q)
570{
571}
572
573static inline void init_lock_keys(void)
574{
575}
Peter Zijlstra83835b32011-07-22 15:26:05 +0200576
Glauber Costa6ccfb5b2012-12-18 14:22:31 -0800577static inline void on_slab_lock_classes(struct kmem_cache *cachep)
578{
579}
580
581static inline void on_slab_lock_classes_node(struct kmem_cache *cachep, int node)
582{
583}
584
Peter Zijlstra83835b32011-07-22 15:26:05 +0200585static void slab_set_debugobj_lock_classes_node(struct kmem_cache *cachep, int node)
586{
587}
588
589static void slab_set_debugobj_lock_classes(struct kmem_cache *cachep)
590{
591}
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200592#endif
593
Tejun Heo1871e522009-10-29 22:34:13 +0900594static DEFINE_PER_CPU(struct delayed_work, slab_reap_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
Pekka Enberg343e0d72006-02-01 03:05:50 -0800596static inline struct array_cache *cpu_cache_get(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597{
598 return cachep->array[smp_processor_id()];
599}
600
Joonsoo Kimd35426e2014-06-23 13:22:06 -0700601static size_t calculate_freelist_size(int nr_objs, size_t align)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602{
Joonsoo Kimd35426e2014-06-23 13:22:06 -0700603 size_t freelist_size;
604
605 freelist_size = nr_objs * sizeof(unsigned int);
606 if (IS_ENABLED(CONFIG_DEBUG_SLAB_LEAK))
607 freelist_size += nr_objs * sizeof(char);
608
609 if (align)
610 freelist_size = ALIGN(freelist_size, align);
611
612 return freelist_size;
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800613}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
Andrew Mortona737b3e2006-03-22 00:08:11 -0800615/*
616 * Calculate the number of objects and left-over bytes for a given buffer size.
617 */
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800618static void cache_estimate(unsigned long gfporder, size_t buffer_size,
619 size_t align, int flags, size_t *left_over,
620 unsigned int *num)
621{
622 int nr_objs;
623 size_t mgmt_size;
624 size_t slab_size = PAGE_SIZE << gfporder;
625
626 /*
627 * The slab management structure can be either off the slab or
628 * on it. For the latter case, the memory allocated for a
629 * slab is used for:
630 *
Joonsoo Kim16025172013-10-24 10:07:46 +0900631 * - One unsigned int for each object
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800632 * - Padding to respect alignment of @align
633 * - @buffer_size bytes for each object
634 *
635 * If the slab management structure is off the slab, then the
636 * alignment will already be calculated into the size. Because
637 * the slabs are all pages aligned, the objects will be at the
638 * correct alignment when allocated.
639 */
640 if (flags & CFLGS_OFF_SLAB) {
641 mgmt_size = 0;
642 nr_objs = slab_size / buffer_size;
643
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800644 } else {
Joonsoo Kimd35426e2014-06-23 13:22:06 -0700645 int extra_space = 0;
646
647 if (IS_ENABLED(CONFIG_DEBUG_SLAB_LEAK))
648 extra_space = sizeof(char);
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800649 /*
650 * Ignore padding for the initial guess. The padding
651 * is at most @align-1 bytes, and @buffer_size is at
652 * least @align. In the worst case, this result will
653 * be one greater than the number of objects that fit
654 * into the memory allocation when taking the padding
655 * into account.
656 */
Joonsoo Kimd35426e2014-06-23 13:22:06 -0700657 nr_objs = (slab_size) /
658 (buffer_size + sizeof(unsigned int) + extra_space);
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800659
660 /*
661 * This calculated number will be either the right
662 * amount, or one greater than what we want.
663 */
Joonsoo Kimd35426e2014-06-23 13:22:06 -0700664 if (calculate_freelist_size(nr_objs, align) >
665 slab_size - nr_objs * buffer_size)
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800666 nr_objs--;
667
Joonsoo Kimd35426e2014-06-23 13:22:06 -0700668 mgmt_size = calculate_freelist_size(nr_objs, align);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669 }
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800670 *num = nr_objs;
671 *left_over = slab_size - nr_objs*buffer_size - mgmt_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672}
673
Christoph Lameterf28510d2012-09-11 19:49:38 +0000674#if DEBUG
Harvey Harrisond40cee22008-04-30 00:55:07 -0700675#define slab_error(cachep, msg) __slab_error(__func__, cachep, msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
Andrew Mortona737b3e2006-03-22 00:08:11 -0800677static void __slab_error(const char *function, struct kmem_cache *cachep,
678 char *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679{
680 printk(KERN_ERR "slab error in %s(): cache `%s': %s\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800681 function, cachep->name, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 dump_stack();
Rusty Russell373d4d02013-01-21 17:17:39 +1030683 add_taint(TAINT_BAD_PAGE, LOCKDEP_NOW_UNRELIABLE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684}
Christoph Lameterf28510d2012-09-11 19:49:38 +0000685#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
Paul Menage3395ee02006-12-06 20:32:16 -0800687/*
688 * By default on NUMA we use alien caches to stage the freeing of
689 * objects allocated from other nodes. This causes massive memory
690 * inefficiencies when using fake NUMA setup to split memory into a
691 * large number of small nodes, so it can be disabled on the command
692 * line
693 */
694
695static int use_alien_caches __read_mostly = 1;
696static int __init noaliencache_setup(char *s)
697{
698 use_alien_caches = 0;
699 return 1;
700}
701__setup("noaliencache", noaliencache_setup);
702
David Rientjes3df1ccc2011-10-18 22:09:28 -0700703static int __init slab_max_order_setup(char *str)
704{
705 get_option(&str, &slab_max_order);
706 slab_max_order = slab_max_order < 0 ? 0 :
707 min(slab_max_order, MAX_ORDER - 1);
708 slab_max_order_set = true;
709
710 return 1;
711}
712__setup("slab_max_order=", slab_max_order_setup);
713
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800714#ifdef CONFIG_NUMA
715/*
716 * Special reaping functions for NUMA systems called from cache_reap().
717 * These take care of doing round robin flushing of alien caches (containing
718 * objects freed on different nodes from which they were allocated) and the
719 * flushing of remote pcps by calling drain_node_pages.
720 */
Tejun Heo1871e522009-10-29 22:34:13 +0900721static DEFINE_PER_CPU(unsigned long, slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800722
723static void init_reap_node(int cpu)
724{
725 int node;
726
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -0700727 node = next_node(cpu_to_mem(cpu), node_online_map);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800728 if (node == MAX_NUMNODES)
Paul Jackson442295c2006-03-22 00:09:11 -0800729 node = first_node(node_online_map);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800730
Tejun Heo1871e522009-10-29 22:34:13 +0900731 per_cpu(slab_reap_node, cpu) = node;
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800732}
733
734static void next_reap_node(void)
735{
Christoph Lameter909ea962010-12-08 16:22:55 +0100736 int node = __this_cpu_read(slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800737
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800738 node = next_node(node, node_online_map);
739 if (unlikely(node >= MAX_NUMNODES))
740 node = first_node(node_online_map);
Christoph Lameter909ea962010-12-08 16:22:55 +0100741 __this_cpu_write(slab_reap_node, node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800742}
743
744#else
745#define init_reap_node(cpu) do { } while (0)
746#define next_reap_node(void) do { } while (0)
747#endif
748
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749/*
750 * Initiate the reap timer running on the target CPU. We run at around 1 to 2Hz
751 * via the workqueue/eventd.
752 * Add the CPU number into the expiration time to minimize the possibility of
753 * the CPUs getting into lockstep and contending for the global cache chain
754 * lock.
755 */
Paul Gortmaker0db06282013-06-19 14:53:51 -0400756static void start_cpu_timer(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757{
Tejun Heo1871e522009-10-29 22:34:13 +0900758 struct delayed_work *reap_work = &per_cpu(slab_reap_work, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759
760 /*
761 * When this gets called from do_initcalls via cpucache_init(),
762 * init_workqueues() has already run, so keventd will be setup
763 * at that time.
764 */
David Howells52bad642006-11-22 14:54:01 +0000765 if (keventd_up() && reap_work->work.func == NULL) {
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800766 init_reap_node(cpu);
Tejun Heo203b42f2012-08-21 13:18:23 -0700767 INIT_DEFERRABLE_WORK(reap_work, cache_reap);
Arjan van de Ven2b284212006-12-10 02:21:28 -0800768 schedule_delayed_work_on(cpu, reap_work,
769 __round_jiffies_relative(HZ, cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 }
771}
772
Christoph Lametere498be72005-09-09 13:03:32 -0700773static struct array_cache *alloc_arraycache(int node, int entries,
Pekka Enberg83b519e2009-06-10 19:40:04 +0300774 int batchcount, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775{
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800776 int memsize = sizeof(void *) * entries + sizeof(struct array_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777 struct array_cache *nc = NULL;
778
Pekka Enberg83b519e2009-06-10 19:40:04 +0300779 nc = kmalloc_node(memsize, gfp, node);
Catalin Marinasd5cff632009-06-11 13:22:40 +0100780 /*
781 * The array_cache structures contain pointers to free object.
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300782 * However, when such objects are allocated or transferred to another
Catalin Marinasd5cff632009-06-11 13:22:40 +0100783 * cache the pointers are not cleared and they could be counted as
784 * valid references during a kmemleak scan. Therefore, kmemleak must
785 * not scan such objects.
786 */
787 kmemleak_no_scan(nc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 if (nc) {
789 nc->avail = 0;
790 nc->limit = entries;
791 nc->batchcount = batchcount;
792 nc->touched = 0;
Christoph Lametere498be72005-09-09 13:03:32 -0700793 spin_lock_init(&nc->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 }
795 return nc;
796}
797
Joonsoo Kim8456a642013-10-24 10:07:49 +0900798static inline bool is_slab_pfmemalloc(struct page *page)
Mel Gorman072bb0a2012-07-31 16:43:58 -0700799{
Mel Gorman072bb0a2012-07-31 16:43:58 -0700800 return PageSlabPfmemalloc(page);
801}
802
803/* Clears pfmemalloc_active if no slabs have pfmalloc set */
804static void recheck_pfmemalloc_active(struct kmem_cache *cachep,
805 struct array_cache *ac)
806{
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000807 struct kmem_cache_node *n = cachep->node[numa_mem_id()];
Joonsoo Kim8456a642013-10-24 10:07:49 +0900808 struct page *page;
Mel Gorman072bb0a2012-07-31 16:43:58 -0700809 unsigned long flags;
810
811 if (!pfmemalloc_active)
812 return;
813
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000814 spin_lock_irqsave(&n->list_lock, flags);
Joonsoo Kim8456a642013-10-24 10:07:49 +0900815 list_for_each_entry(page, &n->slabs_full, lru)
816 if (is_slab_pfmemalloc(page))
Mel Gorman072bb0a2012-07-31 16:43:58 -0700817 goto out;
818
Joonsoo Kim8456a642013-10-24 10:07:49 +0900819 list_for_each_entry(page, &n->slabs_partial, lru)
820 if (is_slab_pfmemalloc(page))
Mel Gorman072bb0a2012-07-31 16:43:58 -0700821 goto out;
822
Joonsoo Kim8456a642013-10-24 10:07:49 +0900823 list_for_each_entry(page, &n->slabs_free, lru)
824 if (is_slab_pfmemalloc(page))
Mel Gorman072bb0a2012-07-31 16:43:58 -0700825 goto out;
826
827 pfmemalloc_active = false;
828out:
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000829 spin_unlock_irqrestore(&n->list_lock, flags);
Mel Gorman072bb0a2012-07-31 16:43:58 -0700830}
831
Mel Gorman381760e2012-07-31 16:44:30 -0700832static void *__ac_get_obj(struct kmem_cache *cachep, struct array_cache *ac,
Mel Gorman072bb0a2012-07-31 16:43:58 -0700833 gfp_t flags, bool force_refill)
834{
835 int i;
836 void *objp = ac->entry[--ac->avail];
837
838 /* Ensure the caller is allowed to use objects from PFMEMALLOC slab */
839 if (unlikely(is_obj_pfmemalloc(objp))) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000840 struct kmem_cache_node *n;
Mel Gorman072bb0a2012-07-31 16:43:58 -0700841
842 if (gfp_pfmemalloc_allowed(flags)) {
843 clear_obj_pfmemalloc(&objp);
844 return objp;
845 }
846
847 /* The caller cannot use PFMEMALLOC objects, find another one */
Joonsoo Kimd014dc22012-09-17 14:09:06 -0700848 for (i = 0; i < ac->avail; i++) {
Mel Gorman072bb0a2012-07-31 16:43:58 -0700849 /* If a !PFMEMALLOC object is found, swap them */
850 if (!is_obj_pfmemalloc(ac->entry[i])) {
851 objp = ac->entry[i];
852 ac->entry[i] = ac->entry[ac->avail];
853 ac->entry[ac->avail] = objp;
854 return objp;
855 }
856 }
857
858 /*
859 * If there are empty slabs on the slabs_free list and we are
860 * being forced to refill the cache, mark this one !pfmemalloc.
861 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000862 n = cachep->node[numa_mem_id()];
863 if (!list_empty(&n->slabs_free) && force_refill) {
Joonsoo Kim8456a642013-10-24 10:07:49 +0900864 struct page *page = virt_to_head_page(objp);
Joonsoo Kim7ecccf92013-10-24 10:07:50 +0900865 ClearPageSlabPfmemalloc(page);
Mel Gorman072bb0a2012-07-31 16:43:58 -0700866 clear_obj_pfmemalloc(&objp);
867 recheck_pfmemalloc_active(cachep, ac);
868 return objp;
869 }
870
871 /* No !PFMEMALLOC objects available */
872 ac->avail++;
873 objp = NULL;
874 }
875
876 return objp;
877}
878
Mel Gorman381760e2012-07-31 16:44:30 -0700879static inline void *ac_get_obj(struct kmem_cache *cachep,
880 struct array_cache *ac, gfp_t flags, bool force_refill)
881{
882 void *objp;
883
884 if (unlikely(sk_memalloc_socks()))
885 objp = __ac_get_obj(cachep, ac, flags, force_refill);
886 else
887 objp = ac->entry[--ac->avail];
888
889 return objp;
890}
891
892static void *__ac_put_obj(struct kmem_cache *cachep, struct array_cache *ac,
Mel Gorman072bb0a2012-07-31 16:43:58 -0700893 void *objp)
894{
895 if (unlikely(pfmemalloc_active)) {
896 /* Some pfmemalloc slabs exist, check if this is one */
Mel Gorman30c29be2012-09-17 14:09:03 -0700897 struct page *page = virt_to_head_page(objp);
Mel Gorman072bb0a2012-07-31 16:43:58 -0700898 if (PageSlabPfmemalloc(page))
899 set_obj_pfmemalloc(&objp);
900 }
901
Mel Gorman381760e2012-07-31 16:44:30 -0700902 return objp;
903}
904
905static inline void ac_put_obj(struct kmem_cache *cachep, struct array_cache *ac,
906 void *objp)
907{
908 if (unlikely(sk_memalloc_socks()))
909 objp = __ac_put_obj(cachep, ac, objp);
910
Mel Gorman072bb0a2012-07-31 16:43:58 -0700911 ac->entry[ac->avail++] = objp;
912}
913
Christoph Lameter3ded1752006-03-25 03:06:44 -0800914/*
915 * Transfer objects in one arraycache to another.
916 * Locking must be handled by the caller.
917 *
918 * Return the number of entries transferred.
919 */
920static int transfer_objects(struct array_cache *to,
921 struct array_cache *from, unsigned int max)
922{
923 /* Figure out how many entries to transfer */
Hagen Paul Pfeifer732eacc2010-10-26 14:22:23 -0700924 int nr = min3(from->avail, max, to->limit - to->avail);
Christoph Lameter3ded1752006-03-25 03:06:44 -0800925
926 if (!nr)
927 return 0;
928
929 memcpy(to->entry + to->avail, from->entry + from->avail -nr,
930 sizeof(void *) *nr);
931
932 from->avail -= nr;
933 to->avail += nr;
Christoph Lameter3ded1752006-03-25 03:06:44 -0800934 return nr;
935}
936
Christoph Lameter765c4502006-09-27 01:50:08 -0700937#ifndef CONFIG_NUMA
938
939#define drain_alien_cache(cachep, alien) do { } while (0)
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000940#define reap_alien(cachep, n) do { } while (0)
Christoph Lameter765c4502006-09-27 01:50:08 -0700941
Pekka Enberg83b519e2009-06-10 19:40:04 +0300942static inline struct array_cache **alloc_alien_cache(int node, int limit, gfp_t gfp)
Christoph Lameter765c4502006-09-27 01:50:08 -0700943{
944 return (struct array_cache **)BAD_ALIEN_MAGIC;
945}
946
947static inline void free_alien_cache(struct array_cache **ac_ptr)
948{
949}
950
951static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
952{
953 return 0;
954}
955
956static inline void *alternate_node_alloc(struct kmem_cache *cachep,
957 gfp_t flags)
958{
959 return NULL;
960}
961
Christoph Hellwig8b98c162006-12-06 20:32:30 -0800962static inline void *____cache_alloc_node(struct kmem_cache *cachep,
Christoph Lameter765c4502006-09-27 01:50:08 -0700963 gfp_t flags, int nodeid)
964{
965 return NULL;
966}
967
968#else /* CONFIG_NUMA */
969
Christoph Hellwig8b98c162006-12-06 20:32:30 -0800970static void *____cache_alloc_node(struct kmem_cache *, gfp_t, int);
Paul Jacksonc61afb12006-03-24 03:16:08 -0800971static void *alternate_node_alloc(struct kmem_cache *, gfp_t);
Christoph Lameterdc85da12006-01-18 17:42:36 -0800972
Pekka Enberg83b519e2009-06-10 19:40:04 +0300973static struct array_cache **alloc_alien_cache(int node, int limit, gfp_t gfp)
Christoph Lametere498be72005-09-09 13:03:32 -0700974{
975 struct array_cache **ac_ptr;
Christoph Lameter8ef82862007-02-20 13:57:52 -0800976 int memsize = sizeof(void *) * nr_node_ids;
Christoph Lametere498be72005-09-09 13:03:32 -0700977 int i;
978
979 if (limit > 1)
980 limit = 12;
Haicheng Lif3186a92010-01-06 15:25:23 +0800981 ac_ptr = kzalloc_node(memsize, gfp, node);
Christoph Lametere498be72005-09-09 13:03:32 -0700982 if (ac_ptr) {
983 for_each_node(i) {
Haicheng Lif3186a92010-01-06 15:25:23 +0800984 if (i == node || !node_online(i))
Christoph Lametere498be72005-09-09 13:03:32 -0700985 continue;
Pekka Enberg83b519e2009-06-10 19:40:04 +0300986 ac_ptr[i] = alloc_arraycache(node, limit, 0xbaadf00d, gfp);
Christoph Lametere498be72005-09-09 13:03:32 -0700987 if (!ac_ptr[i]) {
Akinobu Mitacc550de2007-11-14 16:58:35 -0800988 for (i--; i >= 0; i--)
Christoph Lametere498be72005-09-09 13:03:32 -0700989 kfree(ac_ptr[i]);
990 kfree(ac_ptr);
991 return NULL;
992 }
993 }
994 }
995 return ac_ptr;
996}
997
Pekka Enberg5295a742006-02-01 03:05:48 -0800998static void free_alien_cache(struct array_cache **ac_ptr)
Christoph Lametere498be72005-09-09 13:03:32 -0700999{
1000 int i;
1001
1002 if (!ac_ptr)
1003 return;
Christoph Lametere498be72005-09-09 13:03:32 -07001004 for_each_node(i)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001005 kfree(ac_ptr[i]);
Christoph Lametere498be72005-09-09 13:03:32 -07001006 kfree(ac_ptr);
1007}
1008
Pekka Enberg343e0d72006-02-01 03:05:50 -08001009static void __drain_alien_cache(struct kmem_cache *cachep,
Pekka Enberg5295a742006-02-01 03:05:48 -08001010 struct array_cache *ac, int node)
Christoph Lametere498be72005-09-09 13:03:32 -07001011{
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001012 struct kmem_cache_node *n = cachep->node[node];
Christoph Lametere498be72005-09-09 13:03:32 -07001013
1014 if (ac->avail) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001015 spin_lock(&n->list_lock);
Christoph Lametere00946f2006-03-25 03:06:45 -08001016 /*
1017 * Stuff objects into the remote nodes shared array first.
1018 * That way we could avoid the overhead of putting the objects
1019 * into the free lists and getting them back later.
1020 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001021 if (n->shared)
1022 transfer_objects(n->shared, ac, ac->limit);
Christoph Lametere00946f2006-03-25 03:06:45 -08001023
Christoph Lameterff694162005-09-22 21:44:02 -07001024 free_block(cachep, ac->entry, ac->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -07001025 ac->avail = 0;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001026 spin_unlock(&n->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07001027 }
1028}
1029
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001030/*
1031 * Called from cache_reap() to regularly drain alien caches round robin.
1032 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001033static void reap_alien(struct kmem_cache *cachep, struct kmem_cache_node *n)
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001034{
Christoph Lameter909ea962010-12-08 16:22:55 +01001035 int node = __this_cpu_read(slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001036
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001037 if (n->alien) {
1038 struct array_cache *ac = n->alien[node];
Christoph Lametere00946f2006-03-25 03:06:45 -08001039
1040 if (ac && ac->avail && spin_trylock_irq(&ac->lock)) {
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001041 __drain_alien_cache(cachep, ac, node);
1042 spin_unlock_irq(&ac->lock);
1043 }
1044 }
1045}
1046
Andrew Mortona737b3e2006-03-22 00:08:11 -08001047static void drain_alien_cache(struct kmem_cache *cachep,
1048 struct array_cache **alien)
Christoph Lametere498be72005-09-09 13:03:32 -07001049{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001050 int i = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07001051 struct array_cache *ac;
1052 unsigned long flags;
1053
1054 for_each_online_node(i) {
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001055 ac = alien[i];
Christoph Lametere498be72005-09-09 13:03:32 -07001056 if (ac) {
1057 spin_lock_irqsave(&ac->lock, flags);
1058 __drain_alien_cache(cachep, ac, i);
1059 spin_unlock_irqrestore(&ac->lock, flags);
1060 }
1061 }
1062}
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001063
Ingo Molnar873623d2006-07-13 14:44:38 +02001064static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001065{
Joonsoo Kim1ea991b2013-10-24 10:07:40 +09001066 int nodeid = page_to_nid(virt_to_page(objp));
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001067 struct kmem_cache_node *n;
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001068 struct array_cache *alien = NULL;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001069 int node;
1070
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07001071 node = numa_mem_id();
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001072
1073 /*
1074 * Make sure we are not freeing a object from another node to the array
1075 * cache on this cpu.
1076 */
Joonsoo Kim1ea991b2013-10-24 10:07:40 +09001077 if (likely(nodeid == node))
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001078 return 0;
1079
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001080 n = cachep->node[node];
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001081 STATS_INC_NODEFREES(cachep);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001082 if (n->alien && n->alien[nodeid]) {
1083 alien = n->alien[nodeid];
Ingo Molnar873623d2006-07-13 14:44:38 +02001084 spin_lock(&alien->lock);
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001085 if (unlikely(alien->avail == alien->limit)) {
1086 STATS_INC_ACOVERFLOW(cachep);
1087 __drain_alien_cache(cachep, alien, nodeid);
1088 }
Mel Gorman072bb0a2012-07-31 16:43:58 -07001089 ac_put_obj(cachep, alien, objp);
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001090 spin_unlock(&alien->lock);
1091 } else {
Christoph Lameter6a673682013-01-10 19:14:19 +00001092 spin_lock(&(cachep->node[nodeid])->list_lock);
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001093 free_block(cachep, &objp, 1, nodeid);
Christoph Lameter6a673682013-01-10 19:14:19 +00001094 spin_unlock(&(cachep->node[nodeid])->list_lock);
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001095 }
1096 return 1;
1097}
Christoph Lametere498be72005-09-09 13:03:32 -07001098#endif
1099
David Rientjes8f9f8d92010-03-27 19:40:47 -07001100/*
Christoph Lameter6a673682013-01-10 19:14:19 +00001101 * Allocates and initializes node for a node on each slab cache, used for
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001102 * either memory or cpu hotplug. If memory is being hot-added, the kmem_cache_node
David Rientjes8f9f8d92010-03-27 19:40:47 -07001103 * will be allocated off-node since memory is not yet online for the new node.
Christoph Lameter6a673682013-01-10 19:14:19 +00001104 * When hotplugging memory or a cpu, existing node are not replaced if
David Rientjes8f9f8d92010-03-27 19:40:47 -07001105 * already in use.
1106 *
Christoph Lameter18004c52012-07-06 15:25:12 -05001107 * Must hold slab_mutex.
David Rientjes8f9f8d92010-03-27 19:40:47 -07001108 */
Christoph Lameter6a673682013-01-10 19:14:19 +00001109static int init_cache_node_node(int node)
David Rientjes8f9f8d92010-03-27 19:40:47 -07001110{
1111 struct kmem_cache *cachep;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001112 struct kmem_cache_node *n;
Christoph Lameter6744f0872013-01-10 19:12:17 +00001113 const int memsize = sizeof(struct kmem_cache_node);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001114
Christoph Lameter18004c52012-07-06 15:25:12 -05001115 list_for_each_entry(cachep, &slab_caches, list) {
David Rientjes8f9f8d92010-03-27 19:40:47 -07001116 /*
1117 * Set up the size64 kmemlist for cpu before we can
1118 * begin anything. Make sure some other cpu on this
1119 * node has not already allocated this
1120 */
Christoph Lameter6a673682013-01-10 19:14:19 +00001121 if (!cachep->node[node]) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001122 n = kmalloc_node(memsize, GFP_KERNEL, node);
1123 if (!n)
David Rientjes8f9f8d92010-03-27 19:40:47 -07001124 return -ENOMEM;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001125 kmem_cache_node_init(n);
1126 n->next_reap = jiffies + REAPTIMEOUT_LIST3 +
David Rientjes8f9f8d92010-03-27 19:40:47 -07001127 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
1128
1129 /*
1130 * The l3s don't come and go as CPUs come and
Christoph Lameter18004c52012-07-06 15:25:12 -05001131 * go. slab_mutex is sufficient
David Rientjes8f9f8d92010-03-27 19:40:47 -07001132 * protection here.
1133 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001134 cachep->node[node] = n;
David Rientjes8f9f8d92010-03-27 19:40:47 -07001135 }
1136
Christoph Lameter6a673682013-01-10 19:14:19 +00001137 spin_lock_irq(&cachep->node[node]->list_lock);
1138 cachep->node[node]->free_limit =
David Rientjes8f9f8d92010-03-27 19:40:47 -07001139 (1 + nr_cpus_node(node)) *
1140 cachep->batchcount + cachep->num;
Christoph Lameter6a673682013-01-10 19:14:19 +00001141 spin_unlock_irq(&cachep->node[node]->list_lock);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001142 }
1143 return 0;
1144}
1145
Wanpeng Li0fa81032013-07-04 08:33:22 +08001146static inline int slabs_tofree(struct kmem_cache *cachep,
1147 struct kmem_cache_node *n)
1148{
1149 return (n->free_objects + cachep->num - 1) / cachep->num;
1150}
1151
Paul Gortmaker0db06282013-06-19 14:53:51 -04001152static void cpuup_canceled(long cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153{
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001154 struct kmem_cache *cachep;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001155 struct kmem_cache_node *n = NULL;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07001156 int node = cpu_to_mem(cpu);
Rusty Russella70f7302009-03-13 14:49:46 +10301157 const struct cpumask *mask = cpumask_of_node(node);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001158
Christoph Lameter18004c52012-07-06 15:25:12 -05001159 list_for_each_entry(cachep, &slab_caches, list) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001160 struct array_cache *nc;
1161 struct array_cache *shared;
1162 struct array_cache **alien;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001163
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001164 /* cpu is dead; no one can alloc from it. */
1165 nc = cachep->array[cpu];
1166 cachep->array[cpu] = NULL;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001167 n = cachep->node[node];
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001168
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001169 if (!n)
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001170 goto free_array_cache;
1171
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001172 spin_lock_irq(&n->list_lock);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001173
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001174 /* Free limit for this kmem_cache_node */
1175 n->free_limit -= cachep->batchcount;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001176 if (nc)
1177 free_block(cachep, nc->entry, nc->avail, node);
1178
Rusty Russell58463c12009-12-17 11:43:12 -06001179 if (!cpumask_empty(mask)) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001180 spin_unlock_irq(&n->list_lock);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001181 goto free_array_cache;
1182 }
1183
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001184 shared = n->shared;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001185 if (shared) {
1186 free_block(cachep, shared->entry,
1187 shared->avail, node);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001188 n->shared = NULL;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001189 }
1190
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001191 alien = n->alien;
1192 n->alien = NULL;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001193
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001194 spin_unlock_irq(&n->list_lock);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001195
1196 kfree(shared);
1197 if (alien) {
1198 drain_alien_cache(cachep, alien);
1199 free_alien_cache(alien);
1200 }
1201free_array_cache:
1202 kfree(nc);
1203 }
1204 /*
1205 * In the previous loop, all the objects were freed to
1206 * the respective cache's slabs, now we can go ahead and
1207 * shrink each nodelist to its limit.
1208 */
Christoph Lameter18004c52012-07-06 15:25:12 -05001209 list_for_each_entry(cachep, &slab_caches, list) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001210 n = cachep->node[node];
1211 if (!n)
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001212 continue;
Wanpeng Li0fa81032013-07-04 08:33:22 +08001213 drain_freelist(cachep, n, slabs_tofree(cachep, n));
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001214 }
1215}
1216
Paul Gortmaker0db06282013-06-19 14:53:51 -04001217static int cpuup_prepare(long cpu)
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001218{
Pekka Enberg343e0d72006-02-01 03:05:50 -08001219 struct kmem_cache *cachep;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001220 struct kmem_cache_node *n = NULL;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07001221 int node = cpu_to_mem(cpu);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001222 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001224 /*
1225 * We need to do this right in the beginning since
1226 * alloc_arraycache's are going to use this list.
1227 * kmalloc_node allows us to add the slab to the right
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001228 * kmem_cache_node and not this cpu's kmem_cache_node
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001229 */
Christoph Lameter6a673682013-01-10 19:14:19 +00001230 err = init_cache_node_node(node);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001231 if (err < 0)
1232 goto bad;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001233
1234 /*
1235 * Now we can go ahead with allocating the shared arrays and
1236 * array caches
1237 */
Christoph Lameter18004c52012-07-06 15:25:12 -05001238 list_for_each_entry(cachep, &slab_caches, list) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001239 struct array_cache *nc;
1240 struct array_cache *shared = NULL;
1241 struct array_cache **alien = NULL;
1242
1243 nc = alloc_arraycache(node, cachep->limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03001244 cachep->batchcount, GFP_KERNEL);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001245 if (!nc)
1246 goto bad;
1247 if (cachep->shared) {
1248 shared = alloc_arraycache(node,
1249 cachep->shared * cachep->batchcount,
Pekka Enberg83b519e2009-06-10 19:40:04 +03001250 0xbaadf00d, GFP_KERNEL);
Akinobu Mita12d00f62007-10-18 03:05:11 -07001251 if (!shared) {
1252 kfree(nc);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001253 goto bad;
Akinobu Mita12d00f62007-10-18 03:05:11 -07001254 }
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001255 }
1256 if (use_alien_caches) {
Pekka Enberg83b519e2009-06-10 19:40:04 +03001257 alien = alloc_alien_cache(node, cachep->limit, GFP_KERNEL);
Akinobu Mita12d00f62007-10-18 03:05:11 -07001258 if (!alien) {
1259 kfree(shared);
1260 kfree(nc);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001261 goto bad;
Akinobu Mita12d00f62007-10-18 03:05:11 -07001262 }
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001263 }
1264 cachep->array[cpu] = nc;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001265 n = cachep->node[node];
1266 BUG_ON(!n);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001267
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001268 spin_lock_irq(&n->list_lock);
1269 if (!n->shared) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001270 /*
1271 * We are serialised from CPU_DEAD or
1272 * CPU_UP_CANCELLED by the cpucontrol lock
1273 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001274 n->shared = shared;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001275 shared = NULL;
1276 }
1277#ifdef CONFIG_NUMA
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001278 if (!n->alien) {
1279 n->alien = alien;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001280 alien = NULL;
1281 }
1282#endif
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001283 spin_unlock_irq(&n->list_lock);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001284 kfree(shared);
1285 free_alien_cache(alien);
Peter Zijlstra83835b32011-07-22 15:26:05 +02001286 if (cachep->flags & SLAB_DEBUG_OBJECTS)
1287 slab_set_debugobj_lock_classes_node(cachep, node);
Glauber Costa6ccfb5b2012-12-18 14:22:31 -08001288 else if (!OFF_SLAB(cachep) &&
1289 !(cachep->flags & SLAB_DESTROY_BY_RCU))
1290 on_slab_lock_classes_node(cachep, node);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001291 }
Pekka Enbergce79ddc2009-11-23 22:01:15 +02001292 init_node_lock_keys(node);
1293
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001294 return 0;
1295bad:
Akinobu Mita12d00f62007-10-18 03:05:11 -07001296 cpuup_canceled(cpu);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001297 return -ENOMEM;
1298}
1299
Paul Gortmaker0db06282013-06-19 14:53:51 -04001300static int cpuup_callback(struct notifier_block *nfb,
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001301 unsigned long action, void *hcpu)
1302{
1303 long cpu = (long)hcpu;
1304 int err = 0;
1305
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 switch (action) {
Heiko Carstens38c3bd92007-05-09 02:34:05 -07001307 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001308 case CPU_UP_PREPARE_FROZEN:
Christoph Lameter18004c52012-07-06 15:25:12 -05001309 mutex_lock(&slab_mutex);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001310 err = cpuup_prepare(cpu);
Christoph Lameter18004c52012-07-06 15:25:12 -05001311 mutex_unlock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 break;
1313 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001314 case CPU_ONLINE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 start_cpu_timer(cpu);
1316 break;
1317#ifdef CONFIG_HOTPLUG_CPU
Christoph Lameter5830c592007-05-09 02:34:22 -07001318 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001319 case CPU_DOWN_PREPARE_FROZEN:
Christoph Lameter5830c592007-05-09 02:34:22 -07001320 /*
Christoph Lameter18004c52012-07-06 15:25:12 -05001321 * Shutdown cache reaper. Note that the slab_mutex is
Christoph Lameter5830c592007-05-09 02:34:22 -07001322 * held so that if cache_reap() is invoked it cannot do
1323 * anything expensive but will only modify reap_work
1324 * and reschedule the timer.
1325 */
Tejun Heoafe2c512010-12-14 16:21:17 +01001326 cancel_delayed_work_sync(&per_cpu(slab_reap_work, cpu));
Christoph Lameter5830c592007-05-09 02:34:22 -07001327 /* Now the cache_reaper is guaranteed to be not running. */
Tejun Heo1871e522009-10-29 22:34:13 +09001328 per_cpu(slab_reap_work, cpu).work.func = NULL;
Christoph Lameter5830c592007-05-09 02:34:22 -07001329 break;
1330 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001331 case CPU_DOWN_FAILED_FROZEN:
Christoph Lameter5830c592007-05-09 02:34:22 -07001332 start_cpu_timer(cpu);
1333 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001335 case CPU_DEAD_FROZEN:
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001336 /*
1337 * Even if all the cpus of a node are down, we don't free the
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001338 * kmem_cache_node of any cache. This to avoid a race between
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001339 * cpu_down, and a kmalloc allocation from another cpu for
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001340 * memory from the node of the cpu going down. The node
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001341 * structure is usually allocated from kmem_cache_create() and
1342 * gets destroyed at kmem_cache_destroy().
1343 */
Simon Arlott183ff222007-10-20 01:27:18 +02001344 /* fall through */
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08001345#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001347 case CPU_UP_CANCELED_FROZEN:
Christoph Lameter18004c52012-07-06 15:25:12 -05001348 mutex_lock(&slab_mutex);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001349 cpuup_canceled(cpu);
Christoph Lameter18004c52012-07-06 15:25:12 -05001350 mutex_unlock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 }
Akinobu Mitaeac40682010-05-26 14:43:32 -07001353 return notifier_from_errno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354}
1355
Paul Gortmaker0db06282013-06-19 14:53:51 -04001356static struct notifier_block cpucache_notifier = {
Chandra Seetharaman74b85f32006-06-27 02:54:09 -07001357 &cpuup_callback, NULL, 0
1358};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359
David Rientjes8f9f8d92010-03-27 19:40:47 -07001360#if defined(CONFIG_NUMA) && defined(CONFIG_MEMORY_HOTPLUG)
1361/*
1362 * Drains freelist for a node on each slab cache, used for memory hot-remove.
1363 * Returns -EBUSY if all objects cannot be drained so that the node is not
1364 * removed.
1365 *
Christoph Lameter18004c52012-07-06 15:25:12 -05001366 * Must hold slab_mutex.
David Rientjes8f9f8d92010-03-27 19:40:47 -07001367 */
Christoph Lameter6a673682013-01-10 19:14:19 +00001368static int __meminit drain_cache_node_node(int node)
David Rientjes8f9f8d92010-03-27 19:40:47 -07001369{
1370 struct kmem_cache *cachep;
1371 int ret = 0;
1372
Christoph Lameter18004c52012-07-06 15:25:12 -05001373 list_for_each_entry(cachep, &slab_caches, list) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001374 struct kmem_cache_node *n;
David Rientjes8f9f8d92010-03-27 19:40:47 -07001375
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001376 n = cachep->node[node];
1377 if (!n)
David Rientjes8f9f8d92010-03-27 19:40:47 -07001378 continue;
1379
Wanpeng Li0fa81032013-07-04 08:33:22 +08001380 drain_freelist(cachep, n, slabs_tofree(cachep, n));
David Rientjes8f9f8d92010-03-27 19:40:47 -07001381
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001382 if (!list_empty(&n->slabs_full) ||
1383 !list_empty(&n->slabs_partial)) {
David Rientjes8f9f8d92010-03-27 19:40:47 -07001384 ret = -EBUSY;
1385 break;
1386 }
1387 }
1388 return ret;
1389}
1390
1391static int __meminit slab_memory_callback(struct notifier_block *self,
1392 unsigned long action, void *arg)
1393{
1394 struct memory_notify *mnb = arg;
1395 int ret = 0;
1396 int nid;
1397
1398 nid = mnb->status_change_nid;
1399 if (nid < 0)
1400 goto out;
1401
1402 switch (action) {
1403 case MEM_GOING_ONLINE:
Christoph Lameter18004c52012-07-06 15:25:12 -05001404 mutex_lock(&slab_mutex);
Christoph Lameter6a673682013-01-10 19:14:19 +00001405 ret = init_cache_node_node(nid);
Christoph Lameter18004c52012-07-06 15:25:12 -05001406 mutex_unlock(&slab_mutex);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001407 break;
1408 case MEM_GOING_OFFLINE:
Christoph Lameter18004c52012-07-06 15:25:12 -05001409 mutex_lock(&slab_mutex);
Christoph Lameter6a673682013-01-10 19:14:19 +00001410 ret = drain_cache_node_node(nid);
Christoph Lameter18004c52012-07-06 15:25:12 -05001411 mutex_unlock(&slab_mutex);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001412 break;
1413 case MEM_ONLINE:
1414 case MEM_OFFLINE:
1415 case MEM_CANCEL_ONLINE:
1416 case MEM_CANCEL_OFFLINE:
1417 break;
1418 }
1419out:
Prarit Bhargava5fda1bd2011-03-22 16:30:49 -07001420 return notifier_from_errno(ret);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001421}
1422#endif /* CONFIG_NUMA && CONFIG_MEMORY_HOTPLUG */
1423
Christoph Lametere498be72005-09-09 13:03:32 -07001424/*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001425 * swap the static kmem_cache_node with kmalloced memory
Christoph Lametere498be72005-09-09 13:03:32 -07001426 */
Christoph Lameter6744f0872013-01-10 19:12:17 +00001427static void __init init_list(struct kmem_cache *cachep, struct kmem_cache_node *list,
David Rientjes8f9f8d92010-03-27 19:40:47 -07001428 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07001429{
Christoph Lameter6744f0872013-01-10 19:12:17 +00001430 struct kmem_cache_node *ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001431
Christoph Lameter6744f0872013-01-10 19:12:17 +00001432 ptr = kmalloc_node(sizeof(struct kmem_cache_node), GFP_NOWAIT, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07001433 BUG_ON(!ptr);
1434
Christoph Lameter6744f0872013-01-10 19:12:17 +00001435 memcpy(ptr, list, sizeof(struct kmem_cache_node));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001436 /*
1437 * Do not assume that spinlocks can be initialized via memcpy:
1438 */
1439 spin_lock_init(&ptr->list_lock);
1440
Christoph Lametere498be72005-09-09 13:03:32 -07001441 MAKE_ALL_LISTS(cachep, ptr, nodeid);
Christoph Lameter6a673682013-01-10 19:14:19 +00001442 cachep->node[nodeid] = ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001443}
1444
Andrew Mortona737b3e2006-03-22 00:08:11 -08001445/*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001446 * For setting up all the kmem_cache_node for cache whose buffer_size is same as
1447 * size of kmem_cache_node.
Pekka Enberg556a1692008-01-25 08:20:51 +02001448 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001449static void __init set_up_node(struct kmem_cache *cachep, int index)
Pekka Enberg556a1692008-01-25 08:20:51 +02001450{
1451 int node;
1452
1453 for_each_online_node(node) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001454 cachep->node[node] = &init_kmem_cache_node[index + node];
Christoph Lameter6a673682013-01-10 19:14:19 +00001455 cachep->node[node]->next_reap = jiffies +
Pekka Enberg556a1692008-01-25 08:20:51 +02001456 REAPTIMEOUT_LIST3 +
1457 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
1458 }
1459}
1460
1461/*
Christoph Lameter3c583462012-11-28 16:23:01 +00001462 * The memory after the last cpu cache pointer is used for the
Christoph Lameter6a673682013-01-10 19:14:19 +00001463 * the node pointer.
Christoph Lameter3c583462012-11-28 16:23:01 +00001464 */
Christoph Lameter6a673682013-01-10 19:14:19 +00001465static void setup_node_pointer(struct kmem_cache *cachep)
Christoph Lameter3c583462012-11-28 16:23:01 +00001466{
Christoph Lameter6a673682013-01-10 19:14:19 +00001467 cachep->node = (struct kmem_cache_node **)&cachep->array[nr_cpu_ids];
Christoph Lameter3c583462012-11-28 16:23:01 +00001468}
1469
1470/*
Andrew Mortona737b3e2006-03-22 00:08:11 -08001471 * Initialisation. Called after the page allocator have been initialised and
1472 * before smp_init().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 */
1474void __init kmem_cache_init(void)
1475{
Christoph Lametere498be72005-09-09 13:03:32 -07001476 int i;
1477
Joonsoo Kim68126702013-10-24 10:07:42 +09001478 BUILD_BUG_ON(sizeof(((struct page *)NULL)->lru) <
1479 sizeof(struct rcu_head));
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001480 kmem_cache = &kmem_cache_boot;
Christoph Lameter6a673682013-01-10 19:14:19 +00001481 setup_node_pointer(kmem_cache);
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001482
Mel Gormanb6e68bc2009-06-16 15:32:16 -07001483 if (num_possible_nodes() == 1)
Siddha, Suresh B62918a02007-05-02 19:27:18 +02001484 use_alien_caches = 0;
1485
Christoph Lameter3c583462012-11-28 16:23:01 +00001486 for (i = 0; i < NUM_INIT_LISTS; i++)
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001487 kmem_cache_node_init(&init_kmem_cache_node[i]);
Christoph Lameter3c583462012-11-28 16:23:01 +00001488
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001489 set_up_node(kmem_cache, CACHE_CACHE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490
1491 /*
1492 * Fragmentation resistance on low memory - only use bigger
David Rientjes3df1ccc2011-10-18 22:09:28 -07001493 * page orders on machines with more than 32MB of memory if
1494 * not overridden on the command line.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 */
David Rientjes3df1ccc2011-10-18 22:09:28 -07001496 if (!slab_max_order_set && totalram_pages > (32 << 20) >> PAGE_SHIFT)
David Rientjes543585c2011-10-18 22:09:24 -07001497 slab_max_order = SLAB_MAX_ORDER_HI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 /* Bootstrap is tricky, because several objects are allocated
1500 * from caches that do not exist yet:
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001501 * 1) initialize the kmem_cache cache: it contains the struct
1502 * kmem_cache structures of all caches, except kmem_cache itself:
1503 * kmem_cache is statically allocated.
Christoph Lametere498be72005-09-09 13:03:32 -07001504 * Initially an __init data area is used for the head array and the
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001505 * kmem_cache_node structures, it's replaced with a kmalloc allocated
Christoph Lametere498be72005-09-09 13:03:32 -07001506 * array at the end of the bootstrap.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 * 2) Create the first kmalloc cache.
Pekka Enberg343e0d72006-02-01 03:05:50 -08001508 * The struct kmem_cache for the new cache is allocated normally.
Christoph Lametere498be72005-09-09 13:03:32 -07001509 * An __init data area is used for the head array.
1510 * 3) Create the remaining kmalloc caches, with minimally sized
1511 * head arrays.
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001512 * 4) Replace the __init data head arrays for kmem_cache and the first
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 * kmalloc cache with kmalloc allocated arrays.
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001514 * 5) Replace the __init data for kmem_cache_node for kmem_cache and
Christoph Lametere498be72005-09-09 13:03:32 -07001515 * the other cache's with kmalloc allocated memory.
1516 * 6) Resize the head arrays of the kmalloc caches to their final sizes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 */
1518
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001519 /* 1) create the kmem_cache */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
Eric Dumazet8da34302007-05-06 14:49:29 -07001521 /*
Eric Dumazetb56efcf2011-07-20 19:04:23 +02001522 * struct kmem_cache size depends on nr_node_ids & nr_cpu_ids
Eric Dumazet8da34302007-05-06 14:49:29 -07001523 */
Christoph Lameter2f9baa92012-11-28 16:23:09 +00001524 create_boot_cache(kmem_cache, "kmem_cache",
1525 offsetof(struct kmem_cache, array[nr_cpu_ids]) +
Christoph Lameter6744f0872013-01-10 19:12:17 +00001526 nr_node_ids * sizeof(struct kmem_cache_node *),
Christoph Lameter2f9baa92012-11-28 16:23:09 +00001527 SLAB_HWCACHE_ALIGN);
1528 list_add(&kmem_cache->list, &slab_caches);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529
1530 /* 2+3) create the kmalloc caches */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531
Andrew Mortona737b3e2006-03-22 00:08:11 -08001532 /*
1533 * Initialize the caches that provide memory for the array cache and the
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001534 * kmem_cache_node structures first. Without this, further allocations will
Andrew Mortona737b3e2006-03-22 00:08:11 -08001535 * bug.
Christoph Lametere498be72005-09-09 13:03:32 -07001536 */
1537
Christoph Lametere3366012013-01-10 19:14:18 +00001538 kmalloc_caches[INDEX_AC] = create_kmalloc_cache("kmalloc-ac",
1539 kmalloc_size(INDEX_AC), ARCH_KMALLOC_FLAGS);
Christoph Lametere498be72005-09-09 13:03:32 -07001540
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001541 if (INDEX_AC != INDEX_NODE)
1542 kmalloc_caches[INDEX_NODE] =
1543 create_kmalloc_cache("kmalloc-node",
1544 kmalloc_size(INDEX_NODE), ARCH_KMALLOC_FLAGS);
Christoph Lametere498be72005-09-09 13:03:32 -07001545
Ingo Molnare0a42722006-06-23 02:03:46 -07001546 slab_early_init = 0;
1547
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 /* 4) Replace the bootstrap head arrays */
1549 {
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001550 struct array_cache *ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001551
Pekka Enberg83b519e2009-06-10 19:40:04 +03001552 ptr = kmalloc(sizeof(struct arraycache_init), GFP_NOWAIT);
Christoph Lametere498be72005-09-09 13:03:32 -07001553
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001554 memcpy(ptr, cpu_cache_get(kmem_cache),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001555 sizeof(struct arraycache_init));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001556 /*
1557 * Do not assume that spinlocks can be initialized via memcpy:
1558 */
1559 spin_lock_init(&ptr->lock);
1560
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001561 kmem_cache->array[smp_processor_id()] = ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001562
Pekka Enberg83b519e2009-06-10 19:40:04 +03001563 ptr = kmalloc(sizeof(struct arraycache_init), GFP_NOWAIT);
Christoph Lametere498be72005-09-09 13:03:32 -07001564
Christoph Lametere3366012013-01-10 19:14:18 +00001565 BUG_ON(cpu_cache_get(kmalloc_caches[INDEX_AC])
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001566 != &initarray_generic.cache);
Christoph Lametere3366012013-01-10 19:14:18 +00001567 memcpy(ptr, cpu_cache_get(kmalloc_caches[INDEX_AC]),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001568 sizeof(struct arraycache_init));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001569 /*
1570 * Do not assume that spinlocks can be initialized via memcpy:
1571 */
1572 spin_lock_init(&ptr->lock);
1573
Christoph Lametere3366012013-01-10 19:14:18 +00001574 kmalloc_caches[INDEX_AC]->array[smp_processor_id()] = ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001576 /* 5) Replace the bootstrap kmem_cache_node */
Christoph Lametere498be72005-09-09 13:03:32 -07001577 {
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001578 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001579
Mel Gorman9c09a952008-01-24 05:49:54 -08001580 for_each_online_node(nid) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001581 init_list(kmem_cache, &init_kmem_cache_node[CACHE_CACHE + nid], nid);
Pekka Enberg556a1692008-01-25 08:20:51 +02001582
Christoph Lametere3366012013-01-10 19:14:18 +00001583 init_list(kmalloc_caches[INDEX_AC],
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001584 &init_kmem_cache_node[SIZE_AC + nid], nid);
Christoph Lametere498be72005-09-09 13:03:32 -07001585
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001586 if (INDEX_AC != INDEX_NODE) {
1587 init_list(kmalloc_caches[INDEX_NODE],
1588 &init_kmem_cache_node[SIZE_NODE + nid], nid);
Christoph Lametere498be72005-09-09 13:03:32 -07001589 }
1590 }
1591 }
1592
Christoph Lameterf97d5f62013-01-10 19:12:17 +00001593 create_kmalloc_caches(ARCH_KMALLOC_FLAGS);
Pekka Enberg8429db52009-06-12 15:58:59 +03001594}
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -07001595
Pekka Enberg8429db52009-06-12 15:58:59 +03001596void __init kmem_cache_init_late(void)
1597{
1598 struct kmem_cache *cachep;
1599
Christoph Lameter97d06602012-07-06 15:25:11 -05001600 slab_state = UP;
Peter Zijlstra52cef182011-11-28 21:12:40 +01001601
Pekka Enberg8429db52009-06-12 15:58:59 +03001602 /* 6) resize the head arrays to their final sizes */
Christoph Lameter18004c52012-07-06 15:25:12 -05001603 mutex_lock(&slab_mutex);
1604 list_for_each_entry(cachep, &slab_caches, list)
Pekka Enberg8429db52009-06-12 15:58:59 +03001605 if (enable_cpucache(cachep, GFP_NOWAIT))
1606 BUG();
Christoph Lameter18004c52012-07-06 15:25:12 -05001607 mutex_unlock(&slab_mutex);
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -07001608
Michael Wang947ca182012-09-05 10:33:18 +08001609 /* Annotate slab for lockdep -- annotate the malloc caches */
1610 init_lock_keys();
1611
Christoph Lameter97d06602012-07-06 15:25:11 -05001612 /* Done! */
1613 slab_state = FULL;
1614
Andrew Mortona737b3e2006-03-22 00:08:11 -08001615 /*
1616 * Register a cpu startup notifier callback that initializes
1617 * cpu_cache_get for all new cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 */
1619 register_cpu_notifier(&cpucache_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620
David Rientjes8f9f8d92010-03-27 19:40:47 -07001621#ifdef CONFIG_NUMA
1622 /*
1623 * Register a memory hotplug callback that initializes and frees
Christoph Lameter6a673682013-01-10 19:14:19 +00001624 * node.
David Rientjes8f9f8d92010-03-27 19:40:47 -07001625 */
1626 hotplug_memory_notifier(slab_memory_callback, SLAB_CALLBACK_PRI);
1627#endif
1628
Andrew Mortona737b3e2006-03-22 00:08:11 -08001629 /*
1630 * The reap timers are started later, with a module init call: That part
1631 * of the kernel is not yet operational.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 */
1633}
1634
1635static int __init cpucache_init(void)
1636{
1637 int cpu;
1638
Andrew Mortona737b3e2006-03-22 00:08:11 -08001639 /*
1640 * Register the timers that return unneeded pages to the page allocator
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 */
Christoph Lametere498be72005-09-09 13:03:32 -07001642 for_each_online_cpu(cpu)
Andrew Mortona737b3e2006-03-22 00:08:11 -08001643 start_cpu_timer(cpu);
Glauber Costaa164f8962012-06-21 00:59:18 +04001644
1645 /* Done! */
Christoph Lameter97d06602012-07-06 15:25:11 -05001646 slab_state = FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001647 return 0;
1648}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649__initcall(cpucache_init);
1650
Rafael Aquini8bdec192012-03-09 17:27:27 -03001651static noinline void
1652slab_out_of_memory(struct kmem_cache *cachep, gfp_t gfpflags, int nodeid)
1653{
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001654 struct kmem_cache_node *n;
Joonsoo Kim8456a642013-10-24 10:07:49 +09001655 struct page *page;
Rafael Aquini8bdec192012-03-09 17:27:27 -03001656 unsigned long flags;
1657 int node;
1658
1659 printk(KERN_WARNING
1660 "SLAB: Unable to allocate memory on node %d (gfp=0x%x)\n",
1661 nodeid, gfpflags);
1662 printk(KERN_WARNING " cache: %s, object size: %d, order: %d\n",
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05001663 cachep->name, cachep->size, cachep->gfporder);
Rafael Aquini8bdec192012-03-09 17:27:27 -03001664
1665 for_each_online_node(node) {
1666 unsigned long active_objs = 0, num_objs = 0, free_objects = 0;
1667 unsigned long active_slabs = 0, num_slabs = 0;
1668
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001669 n = cachep->node[node];
1670 if (!n)
Rafael Aquini8bdec192012-03-09 17:27:27 -03001671 continue;
1672
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001673 spin_lock_irqsave(&n->list_lock, flags);
Joonsoo Kim8456a642013-10-24 10:07:49 +09001674 list_for_each_entry(page, &n->slabs_full, lru) {
Rafael Aquini8bdec192012-03-09 17:27:27 -03001675 active_objs += cachep->num;
1676 active_slabs++;
1677 }
Joonsoo Kim8456a642013-10-24 10:07:49 +09001678 list_for_each_entry(page, &n->slabs_partial, lru) {
1679 active_objs += page->active;
Rafael Aquini8bdec192012-03-09 17:27:27 -03001680 active_slabs++;
1681 }
Joonsoo Kim8456a642013-10-24 10:07:49 +09001682 list_for_each_entry(page, &n->slabs_free, lru)
Rafael Aquini8bdec192012-03-09 17:27:27 -03001683 num_slabs++;
1684
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001685 free_objects += n->free_objects;
1686 spin_unlock_irqrestore(&n->list_lock, flags);
Rafael Aquini8bdec192012-03-09 17:27:27 -03001687
1688 num_slabs += active_slabs;
1689 num_objs = num_slabs * cachep->num;
1690 printk(KERN_WARNING
1691 " node %d: slabs: %ld/%ld, objs: %ld/%ld, free: %ld\n",
1692 node, active_slabs, num_slabs, active_objs, num_objs,
1693 free_objects);
1694 }
1695}
1696
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697/*
1698 * Interface to system's page allocator. No need to hold the cache-lock.
1699 *
1700 * If we requested dmaable memory, we will get it. Even if we
1701 * did not request dmaable memory, we might get it, but that
1702 * would be relatively rare and ignorable.
1703 */
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09001704static struct page *kmem_getpages(struct kmem_cache *cachep, gfp_t flags,
1705 int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706{
1707 struct page *page;
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001708 int nr_pages;
Christoph Lameter765c4502006-09-27 01:50:08 -07001709
Glauber Costaa618e892012-06-14 16:17:21 +04001710 flags |= cachep->allocflags;
Mel Gormane12ba742007-10-16 01:25:52 -07001711 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1712 flags |= __GFP_RECLAIMABLE;
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001713
Linus Torvalds517d0862009-06-16 19:50:13 -07001714 page = alloc_pages_exact_node(nodeid, flags | __GFP_NOTRACK, cachep->gfporder);
Rafael Aquini8bdec192012-03-09 17:27:27 -03001715 if (!page) {
1716 if (!(flags & __GFP_NOWARN) && printk_ratelimit())
1717 slab_out_of_memory(cachep, flags, nodeid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 return NULL;
Rafael Aquini8bdec192012-03-09 17:27:27 -03001719 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720
Mel Gormanb37f1dd2012-07-31 16:44:03 -07001721 /* Record if ALLOC_NO_WATERMARKS was set when allocating the slab */
Mel Gorman072bb0a2012-07-31 16:43:58 -07001722 if (unlikely(page->pfmemalloc))
1723 pfmemalloc_active = true;
1724
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001725 nr_pages = (1 << cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
Christoph Lameter972d1a72006-09-25 23:31:51 -07001727 add_zone_page_state(page_zone(page),
1728 NR_SLAB_RECLAIMABLE, nr_pages);
1729 else
1730 add_zone_page_state(page_zone(page),
1731 NR_SLAB_UNRECLAIMABLE, nr_pages);
Joonsoo Kima57a4982013-10-24 10:07:44 +09001732 __SetPageSlab(page);
1733 if (page->pfmemalloc)
1734 SetPageSlabPfmemalloc(page);
Glauber Costa1f458cb2012-12-18 14:22:50 -08001735 memcg_bind_pages(cachep, cachep->gfporder);
Mel Gorman072bb0a2012-07-31 16:43:58 -07001736
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001737 if (kmemcheck_enabled && !(cachep->flags & SLAB_NOTRACK)) {
1738 kmemcheck_alloc_shadow(page, cachep->gfporder, flags, nodeid);
1739
1740 if (cachep->ctor)
1741 kmemcheck_mark_uninitialized_pages(page, nr_pages);
1742 else
1743 kmemcheck_mark_unallocated_pages(page, nr_pages);
1744 }
Pekka Enbergc175eea2008-05-09 20:35:53 +02001745
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09001746 return page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001747}
1748
1749/*
1750 * Interface to system's page release.
1751 */
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09001752static void kmem_freepages(struct kmem_cache *cachep, struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753{
Joonsoo Kima57a4982013-10-24 10:07:44 +09001754 const unsigned long nr_freed = (1 << cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001756 kmemcheck_free_shadow(page, cachep->gfporder);
Pekka Enbergc175eea2008-05-09 20:35:53 +02001757
Christoph Lameter972d1a72006-09-25 23:31:51 -07001758 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1759 sub_zone_page_state(page_zone(page),
1760 NR_SLAB_RECLAIMABLE, nr_freed);
1761 else
1762 sub_zone_page_state(page_zone(page),
1763 NR_SLAB_UNRECLAIMABLE, nr_freed);
Joonsoo Kim73293c22013-10-24 10:07:37 +09001764
Joonsoo Kima57a4982013-10-24 10:07:44 +09001765 BUG_ON(!PageSlab(page));
Joonsoo Kim73293c22013-10-24 10:07:37 +09001766 __ClearPageSlabPfmemalloc(page);
Joonsoo Kima57a4982013-10-24 10:07:44 +09001767 __ClearPageSlab(page);
Joonsoo Kim8456a642013-10-24 10:07:49 +09001768 page_mapcount_reset(page);
1769 page->mapping = NULL;
Glauber Costa1f458cb2012-12-18 14:22:50 -08001770
1771 memcg_release_pages(cachep, cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 if (current->reclaim_state)
1773 current->reclaim_state->reclaimed_slab += nr_freed;
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09001774 __free_memcg_kmem_pages(page, cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775}
1776
1777static void kmem_rcu_free(struct rcu_head *head)
1778{
Joonsoo Kim68126702013-10-24 10:07:42 +09001779 struct kmem_cache *cachep;
1780 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781
Joonsoo Kim68126702013-10-24 10:07:42 +09001782 page = container_of(head, struct page, rcu_head);
1783 cachep = page->slab_cache;
1784
1785 kmem_freepages(cachep, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786}
1787
1788#if DEBUG
1789
1790#ifdef CONFIG_DEBUG_PAGEALLOC
Pekka Enberg343e0d72006-02-01 03:05:50 -08001791static void store_stackinfo(struct kmem_cache *cachep, unsigned long *addr,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001792 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793{
Christoph Lameter8c138bc2012-06-13 10:24:58 -05001794 int size = cachep->object_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001796 addr = (unsigned long *)&((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001798 if (size < 5 * sizeof(unsigned long))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 return;
1800
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001801 *addr++ = 0x12345678;
1802 *addr++ = caller;
1803 *addr++ = smp_processor_id();
1804 size -= 3 * sizeof(unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 {
1806 unsigned long *sptr = &caller;
1807 unsigned long svalue;
1808
1809 while (!kstack_end(sptr)) {
1810 svalue = *sptr++;
1811 if (kernel_text_address(svalue)) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001812 *addr++ = svalue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 size -= sizeof(unsigned long);
1814 if (size <= sizeof(unsigned long))
1815 break;
1816 }
1817 }
1818
1819 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001820 *addr++ = 0x87654321;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821}
1822#endif
1823
Pekka Enberg343e0d72006-02-01 03:05:50 -08001824static void poison_obj(struct kmem_cache *cachep, void *addr, unsigned char val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825{
Christoph Lameter8c138bc2012-06-13 10:24:58 -05001826 int size = cachep->object_size;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001827 addr = &((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001828
1829 memset(addr, val, size);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001830 *(unsigned char *)(addr + size - 1) = POISON_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831}
1832
1833static void dump_line(char *data, int offset, int limit)
1834{
1835 int i;
Dave Jonesaa83aa42006-09-29 01:59:51 -07001836 unsigned char error = 0;
1837 int bad_count = 0;
1838
Sebastian Andrzej Siewiorfdde6ab2011-07-29 18:22:13 +02001839 printk(KERN_ERR "%03x: ", offset);
Dave Jonesaa83aa42006-09-29 01:59:51 -07001840 for (i = 0; i < limit; i++) {
1841 if (data[offset + i] != POISON_FREE) {
1842 error = data[offset + i];
1843 bad_count++;
1844 }
Dave Jonesaa83aa42006-09-29 01:59:51 -07001845 }
Sebastian Andrzej Siewiorfdde6ab2011-07-29 18:22:13 +02001846 print_hex_dump(KERN_CONT, "", 0, 16, 1,
1847 &data[offset], limit, 1);
Dave Jonesaa83aa42006-09-29 01:59:51 -07001848
1849 if (bad_count == 1) {
1850 error ^= POISON_FREE;
1851 if (!(error & (error - 1))) {
1852 printk(KERN_ERR "Single bit error detected. Probably "
1853 "bad RAM.\n");
1854#ifdef CONFIG_X86
1855 printk(KERN_ERR "Run memtest86+ or a similar memory "
1856 "test tool.\n");
1857#else
1858 printk(KERN_ERR "Run a memory test tool.\n");
1859#endif
1860 }
1861 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862}
1863#endif
1864
1865#if DEBUG
1866
Pekka Enberg343e0d72006-02-01 03:05:50 -08001867static void print_objinfo(struct kmem_cache *cachep, void *objp, int lines)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001868{
1869 int i, size;
1870 char *realobj;
1871
1872 if (cachep->flags & SLAB_RED_ZONE) {
David Woodhouseb46b8f12007-05-08 00:22:59 -07001873 printk(KERN_ERR "Redzone: 0x%llx/0x%llx.\n",
Andrew Mortona737b3e2006-03-22 00:08:11 -08001874 *dbg_redzone1(cachep, objp),
1875 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 }
1877
1878 if (cachep->flags & SLAB_STORE_USER) {
Joe Perches071361d2012-12-12 10:19:12 -08001879 printk(KERN_ERR "Last user: [<%p>](%pSR)\n",
1880 *dbg_userword(cachep, objp),
1881 *dbg_userword(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 }
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001883 realobj = (char *)objp + obj_offset(cachep);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05001884 size = cachep->object_size;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001885 for (i = 0; i < size && lines; i += 16, lines--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 int limit;
1887 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001888 if (i + limit > size)
1889 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890 dump_line(realobj, i, limit);
1891 }
1892}
1893
Pekka Enberg343e0d72006-02-01 03:05:50 -08001894static void check_poison_obj(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895{
1896 char *realobj;
1897 int size, i;
1898 int lines = 0;
1899
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001900 realobj = (char *)objp + obj_offset(cachep);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05001901 size = cachep->object_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001902
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001903 for (i = 0; i < size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001904 char exp = POISON_FREE;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001905 if (i == size - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 exp = POISON_END;
1907 if (realobj[i] != exp) {
1908 int limit;
1909 /* Mismatch ! */
1910 /* Print header */
1911 if (lines == 0) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001912 printk(KERN_ERR
Dave Jonesface37f2011-11-15 15:03:52 -08001913 "Slab corruption (%s): %s start=%p, len=%d\n",
1914 print_tainted(), cachep->name, realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 print_objinfo(cachep, objp, 0);
1916 }
1917 /* Hexdump the affected line */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001918 i = (i / 16) * 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001920 if (i + limit > size)
1921 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 dump_line(realobj, i, limit);
1923 i += 16;
1924 lines++;
1925 /* Limit to 5 lines */
1926 if (lines > 5)
1927 break;
1928 }
1929 }
1930 if (lines != 0) {
1931 /* Print some data about the neighboring objects, if they
1932 * exist:
1933 */
Joonsoo Kim8456a642013-10-24 10:07:49 +09001934 struct page *page = virt_to_head_page(objp);
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001935 unsigned int objnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936
Joonsoo Kim8456a642013-10-24 10:07:49 +09001937 objnr = obj_to_index(cachep, page, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 if (objnr) {
Joonsoo Kim8456a642013-10-24 10:07:49 +09001939 objp = index_to_obj(cachep, page, objnr - 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001940 realobj = (char *)objp + obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 printk(KERN_ERR "Prev obj: start=%p, len=%d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001942 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 print_objinfo(cachep, objp, 2);
1944 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001945 if (objnr + 1 < cachep->num) {
Joonsoo Kim8456a642013-10-24 10:07:49 +09001946 objp = index_to_obj(cachep, page, objnr + 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001947 realobj = (char *)objp + obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 printk(KERN_ERR "Next obj: start=%p, len=%d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001949 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 print_objinfo(cachep, objp, 2);
1951 }
1952 }
1953}
1954#endif
1955
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956#if DEBUG
Joonsoo Kim8456a642013-10-24 10:07:49 +09001957static void slab_destroy_debugcheck(struct kmem_cache *cachep,
1958 struct page *page)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001959{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 int i;
1961 for (i = 0; i < cachep->num; i++) {
Joonsoo Kim8456a642013-10-24 10:07:49 +09001962 void *objp = index_to_obj(cachep, page, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963
1964 if (cachep->flags & SLAB_POISON) {
1965#ifdef CONFIG_DEBUG_PAGEALLOC
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05001966 if (cachep->size % PAGE_SIZE == 0 &&
Andrew Mortona737b3e2006-03-22 00:08:11 -08001967 OFF_SLAB(cachep))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001968 kernel_map_pages(virt_to_page(objp),
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05001969 cachep->size / PAGE_SIZE, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970 else
1971 check_poison_obj(cachep, objp);
1972#else
1973 check_poison_obj(cachep, objp);
1974#endif
1975 }
1976 if (cachep->flags & SLAB_RED_ZONE) {
1977 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
1978 slab_error(cachep, "start of a freed object "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001979 "was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
1981 slab_error(cachep, "end of a freed object "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001982 "was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 }
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001985}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001986#else
Joonsoo Kim8456a642013-10-24 10:07:49 +09001987static void slab_destroy_debugcheck(struct kmem_cache *cachep,
1988 struct page *page)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001989{
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001990}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991#endif
1992
Randy Dunlap911851e2006-03-22 00:08:14 -08001993/**
1994 * slab_destroy - destroy and release all objects in a slab
1995 * @cachep: cache pointer being destroyed
Masanari Iidacb8ee1a2014-01-28 02:57:08 +09001996 * @page: page pointer being destroyed
Randy Dunlap911851e2006-03-22 00:08:14 -08001997 *
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001998 * Destroy all the objs in a slab, and release the mem back to the system.
Andrew Mortona737b3e2006-03-22 00:08:11 -08001999 * Before calling the slab must have been unlinked from the cache. The
2000 * cache-lock is not held/needed.
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002001 */
Joonsoo Kim8456a642013-10-24 10:07:49 +09002002static void slab_destroy(struct kmem_cache *cachep, struct page *page)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002003{
Joonsoo Kim7e007352013-10-30 19:04:01 +09002004 void *freelist;
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002005
Joonsoo Kim8456a642013-10-24 10:07:49 +09002006 freelist = page->freelist;
2007 slab_destroy_debugcheck(cachep, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 if (unlikely(cachep->flags & SLAB_DESTROY_BY_RCU)) {
Joonsoo Kim68126702013-10-24 10:07:42 +09002009 struct rcu_head *head;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010
Joonsoo Kim68126702013-10-24 10:07:42 +09002011 /*
2012 * RCU free overloads the RCU head over the LRU.
2013 * slab_page has been overloeaded over the LRU,
2014 * however it is not used from now on so that
2015 * we can use it safely.
2016 */
2017 head = (void *)&page->rcu_head;
2018 call_rcu(head, kmem_rcu_free);
2019
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020 } else {
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002021 kmem_freepages(cachep, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022 }
Joonsoo Kim68126702013-10-24 10:07:42 +09002023
2024 /*
Joonsoo Kim8456a642013-10-24 10:07:49 +09002025 * From now on, we don't use freelist
Joonsoo Kim68126702013-10-24 10:07:42 +09002026 * although actual page can be freed in rcu context
2027 */
2028 if (OFF_SLAB(cachep))
Joonsoo Kim8456a642013-10-24 10:07:49 +09002029 kmem_cache_free(cachep->freelist_cache, freelist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030}
2031
2032/**
Randy.Dunlapa70773d2006-02-01 03:05:52 -08002033 * calculate_slab_order - calculate size (page order) of slabs
2034 * @cachep: pointer to the cache that is being created
2035 * @size: size of objects to be created in this cache.
2036 * @align: required alignment for the objects.
2037 * @flags: slab allocation flags
2038 *
2039 * Also calculates the number of objects per slab.
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002040 *
2041 * This could be made much more intelligent. For now, try to avoid using
2042 * high order pages for slabs. When the gfp() functions are more friendly
2043 * towards high-order requests, this should be changed.
2044 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002045static size_t calculate_slab_order(struct kmem_cache *cachep,
Randy Dunlapee13d782006-02-01 03:05:53 -08002046 size_t size, size_t align, unsigned long flags)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002047{
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02002048 unsigned long offslab_limit;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002049 size_t left_over = 0;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002050 int gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002051
Christoph Lameter0aa817f2007-05-16 22:11:01 -07002052 for (gfporder = 0; gfporder <= KMALLOC_MAX_ORDER; gfporder++) {
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002053 unsigned int num;
2054 size_t remainder;
2055
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002056 cache_estimate(gfporder, size, align, flags, &remainder, &num);
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002057 if (!num)
2058 continue;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002059
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02002060 if (flags & CFLGS_OFF_SLAB) {
Joonsoo Kimd35426e2014-06-23 13:22:06 -07002061 size_t freelist_size_per_obj = sizeof(unsigned int);
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02002062 /*
2063 * Max number of objs-per-slab for caches which
2064 * use off-slab slabs. Needed to avoid a possible
2065 * looping condition in cache_grow().
2066 */
Joonsoo Kimd35426e2014-06-23 13:22:06 -07002067 if (IS_ENABLED(CONFIG_DEBUG_SLAB_LEAK))
2068 freelist_size_per_obj += sizeof(char);
Joonsoo Kim8456a642013-10-24 10:07:49 +09002069 offslab_limit = size;
Joonsoo Kimd35426e2014-06-23 13:22:06 -07002070 offslab_limit /= freelist_size_per_obj;
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02002071
2072 if (num > offslab_limit)
2073 break;
2074 }
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002075
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002076 /* Found something acceptable - save it away */
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002077 cachep->num = num;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002078 cachep->gfporder = gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002079 left_over = remainder;
2080
2081 /*
Linus Torvaldsf78bb8a2006-03-08 10:33:05 -08002082 * A VFS-reclaimable slab tends to have most allocations
2083 * as GFP_NOFS and we really don't want to have to be allocating
2084 * higher-order pages when we are unable to shrink dcache.
2085 */
2086 if (flags & SLAB_RECLAIM_ACCOUNT)
2087 break;
2088
2089 /*
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002090 * Large number of objects is good, but very large slabs are
2091 * currently bad for the gfp()s.
2092 */
David Rientjes543585c2011-10-18 22:09:24 -07002093 if (gfporder >= slab_max_order)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002094 break;
2095
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002096 /*
2097 * Acceptable internal fragmentation?
2098 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002099 if (left_over * 8 <= (PAGE_SIZE << gfporder))
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002100 break;
2101 }
2102 return left_over;
2103}
2104
Pekka Enberg83b519e2009-06-10 19:40:04 +03002105static int __init_refok setup_cpu_cache(struct kmem_cache *cachep, gfp_t gfp)
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002106{
Christoph Lameter97d06602012-07-06 15:25:11 -05002107 if (slab_state >= FULL)
Pekka Enberg83b519e2009-06-10 19:40:04 +03002108 return enable_cpucache(cachep, gfp);
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002109
Christoph Lameter97d06602012-07-06 15:25:11 -05002110 if (slab_state == DOWN) {
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002111 /*
Christoph Lameter2f9baa92012-11-28 16:23:09 +00002112 * Note: Creation of first cache (kmem_cache).
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002113 * The setup_node is taken care
Christoph Lameter2f9baa92012-11-28 16:23:09 +00002114 * of by the caller of __kmem_cache_create
2115 */
2116 cachep->array[smp_processor_id()] = &initarray_generic.cache;
2117 slab_state = PARTIAL;
2118 } else if (slab_state == PARTIAL) {
2119 /*
2120 * Note: the second kmem_cache_create must create the cache
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002121 * that's used by kmalloc(24), otherwise the creation of
2122 * further caches will BUG().
2123 */
2124 cachep->array[smp_processor_id()] = &initarray_generic.cache;
2125
2126 /*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002127 * If the cache that's used by kmalloc(sizeof(kmem_cache_node)) is
2128 * the second cache, then we need to set up all its node/,
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002129 * otherwise the creation of further caches will BUG().
2130 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002131 set_up_node(cachep, SIZE_AC);
2132 if (INDEX_AC == INDEX_NODE)
2133 slab_state = PARTIAL_NODE;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002134 else
Christoph Lameter97d06602012-07-06 15:25:11 -05002135 slab_state = PARTIAL_ARRAYCACHE;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002136 } else {
Christoph Lameter2f9baa92012-11-28 16:23:09 +00002137 /* Remaining boot caches */
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002138 cachep->array[smp_processor_id()] =
Pekka Enberg83b519e2009-06-10 19:40:04 +03002139 kmalloc(sizeof(struct arraycache_init), gfp);
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002140
Christoph Lameter97d06602012-07-06 15:25:11 -05002141 if (slab_state == PARTIAL_ARRAYCACHE) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002142 set_up_node(cachep, SIZE_NODE);
2143 slab_state = PARTIAL_NODE;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002144 } else {
2145 int node;
Pekka Enberg556a1692008-01-25 08:20:51 +02002146 for_each_online_node(node) {
Christoph Lameter6a673682013-01-10 19:14:19 +00002147 cachep->node[node] =
Christoph Lameter6744f0872013-01-10 19:12:17 +00002148 kmalloc_node(sizeof(struct kmem_cache_node),
Pekka Enbergeb91f1d2009-06-12 14:56:09 +03002149 gfp, node);
Christoph Lameter6a673682013-01-10 19:14:19 +00002150 BUG_ON(!cachep->node[node]);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002151 kmem_cache_node_init(cachep->node[node]);
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002152 }
2153 }
2154 }
Christoph Lameter6a673682013-01-10 19:14:19 +00002155 cachep->node[numa_mem_id()]->next_reap =
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002156 jiffies + REAPTIMEOUT_LIST3 +
2157 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
2158
2159 cpu_cache_get(cachep)->avail = 0;
2160 cpu_cache_get(cachep)->limit = BOOT_CPUCACHE_ENTRIES;
2161 cpu_cache_get(cachep)->batchcount = 1;
2162 cpu_cache_get(cachep)->touched = 0;
2163 cachep->batchcount = 1;
2164 cachep->limit = BOOT_CPUCACHE_ENTRIES;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002165 return 0;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002166}
2167
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002168/**
Christoph Lameter039363f2012-07-06 15:25:10 -05002169 * __kmem_cache_create - Create a cache.
Randy Dunlapa755b762012-11-06 17:10:10 -08002170 * @cachep: cache management descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 * @flags: SLAB flags
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172 *
2173 * Returns a ptr to the cache on success, NULL on failure.
2174 * Cannot be called within a int, but can be interrupted.
Paul Mundt20c2df82007-07-20 10:11:58 +09002175 * The @ctor is run when new pages are allocated by the cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002176 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 * The flags are
2178 *
2179 * %SLAB_POISON - Poison the slab with a known test pattern (a5a5a5a5)
2180 * to catch references to uninitialised memory.
2181 *
2182 * %SLAB_RED_ZONE - Insert `Red' zones around the allocated memory to check
2183 * for buffer overruns.
2184 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 * %SLAB_HWCACHE_ALIGN - Align the objects in this cache to a hardware
2186 * cacheline. This can be beneficial if you're counting cycles as closely
2187 * as davem.
2188 */
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002189int
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002190__kmem_cache_create (struct kmem_cache *cachep, unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191{
David Rientjes168e7c52014-09-25 16:05:20 -07002192 size_t left_over, freelist_size;
2193 size_t ralign = BYTES_PER_WORD;
Pekka Enberg83b519e2009-06-10 19:40:04 +03002194 gfp_t gfp;
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002195 int err;
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002196 size_t size = cachep->size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198#if DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199#if FORCED_DEBUG
2200 /*
2201 * Enable redzoning and last user accounting, except for caches with
2202 * large objects, if the increased size would increase the object size
2203 * above the next power of two: caches with object sizes just above a
2204 * power of two have a significant amount of internal fragmentation.
2205 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002206 if (size < 4096 || fls(size - 1) == fls(size-1 + REDZONE_ALIGN +
2207 2 * sizeof(unsigned long long)))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002208 flags |= SLAB_RED_ZONE | SLAB_STORE_USER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 if (!(flags & SLAB_DESTROY_BY_RCU))
2210 flags |= SLAB_POISON;
2211#endif
2212 if (flags & SLAB_DESTROY_BY_RCU)
2213 BUG_ON(flags & SLAB_POISON);
2214#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215
Andrew Mortona737b3e2006-03-22 00:08:11 -08002216 /*
2217 * Check that size is in terms of words. This is needed to avoid
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 * unaligned accesses for some archs when redzoning is used, and makes
2219 * sure any on-slab bufctl's are also correctly aligned.
2220 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002221 if (size & (BYTES_PER_WORD - 1)) {
2222 size += (BYTES_PER_WORD - 1);
2223 size &= ~(BYTES_PER_WORD - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 }
2225
David Woodhouse87a927c2007-07-04 21:26:44 -04002226 if (flags & SLAB_RED_ZONE) {
2227 ralign = REDZONE_ALIGN;
2228 /* If redzoning, ensure that the second redzone is suitably
2229 * aligned, by adjusting the object size accordingly. */
2230 size += REDZONE_ALIGN - 1;
2231 size &= ~(REDZONE_ALIGN - 1);
2232 }
Pekka Enbergca5f9702006-09-25 23:31:25 -07002233
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002234 /* 3) caller mandated alignment */
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002235 if (ralign < cachep->align) {
2236 ralign = cachep->align;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 }
Pekka Enberg3ff84a72011-02-14 17:46:21 +02002238 /* disable debug if necessary */
2239 if (ralign > __alignof__(unsigned long long))
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002240 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002241 /*
Pekka Enbergca5f9702006-09-25 23:31:25 -07002242 * 4) Store it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 */
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002244 cachep->align = ralign;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245
Pekka Enberg83b519e2009-06-10 19:40:04 +03002246 if (slab_is_available())
2247 gfp = GFP_KERNEL;
2248 else
2249 gfp = GFP_NOWAIT;
2250
Christoph Lameter6a673682013-01-10 19:14:19 +00002251 setup_node_pointer(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252#if DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07002253
Pekka Enbergca5f9702006-09-25 23:31:25 -07002254 /*
2255 * Both debugging options require word-alignment which is calculated
2256 * into align above.
2257 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258 if (flags & SLAB_RED_ZONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002259 /* add space for red zone words */
Pekka Enberg3ff84a72011-02-14 17:46:21 +02002260 cachep->obj_offset += sizeof(unsigned long long);
2261 size += 2 * sizeof(unsigned long long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 }
2263 if (flags & SLAB_STORE_USER) {
Pekka Enbergca5f9702006-09-25 23:31:25 -07002264 /* user store requires one word storage behind the end of
David Woodhouse87a927c2007-07-04 21:26:44 -04002265 * the real object. But if the second red zone needs to be
2266 * aligned to 64 bits, we must allow that much space.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002268 if (flags & SLAB_RED_ZONE)
2269 size += REDZONE_ALIGN;
2270 else
2271 size += BYTES_PER_WORD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002272 }
2273#if FORCED_DEBUG && defined(CONFIG_DEBUG_PAGEALLOC)
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002274 if (size >= kmalloc_size(INDEX_NODE + 1)
Tetsuo Handa608da7e2012-09-30 17:28:25 +09002275 && cachep->object_size > cache_line_size()
2276 && ALIGN(size, cachep->align) < PAGE_SIZE) {
2277 cachep->obj_offset += PAGE_SIZE - ALIGN(size, cachep->align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 size = PAGE_SIZE;
2279 }
2280#endif
2281#endif
2282
Ingo Molnare0a42722006-06-23 02:03:46 -07002283 /*
2284 * Determine if the slab management is 'on' or 'off' slab.
2285 * (bootstrapping cannot cope with offslab caches so don't do
Catalin Marinase7cb55b2009-10-28 13:33:08 +00002286 * it too early on. Always use on-slab management when
2287 * SLAB_NOLEAKTRACE to avoid recursive calls into kmemleak)
Ingo Molnare0a42722006-06-23 02:03:46 -07002288 */
Catalin Marinase7cb55b2009-10-28 13:33:08 +00002289 if ((size >= (PAGE_SIZE >> 3)) && !slab_early_init &&
2290 !(flags & SLAB_NOLEAKTRACE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 /*
2292 * Size is large, assume best to place the slab management obj
2293 * off-slab (should allow better packing of objs).
2294 */
2295 flags |= CFLGS_OFF_SLAB;
2296
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002297 size = ALIGN(size, cachep->align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002299 left_over = calculate_slab_order(cachep, size, cachep->align, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002300
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002301 if (!cachep->num)
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002302 return -E2BIG;
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002303
Joonsoo Kimd35426e2014-06-23 13:22:06 -07002304 freelist_size = calculate_freelist_size(cachep->num, cachep->align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002305
2306 /*
2307 * If the slab has been placed off-slab, and we have enough space then
2308 * move it on-slab. This is at the expense of any extra colouring.
2309 */
Joonsoo Kim8456a642013-10-24 10:07:49 +09002310 if (flags & CFLGS_OFF_SLAB && left_over >= freelist_size) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 flags &= ~CFLGS_OFF_SLAB;
Joonsoo Kim8456a642013-10-24 10:07:49 +09002312 left_over -= freelist_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 }
2314
2315 if (flags & CFLGS_OFF_SLAB) {
2316 /* really off slab. No need for manual alignment */
Joonsoo Kimd35426e2014-06-23 13:22:06 -07002317 freelist_size = calculate_freelist_size(cachep->num, 0);
Ron Lee67461362009-05-22 04:58:22 +09302318
2319#ifdef CONFIG_PAGE_POISONING
2320 /* If we're going to use the generic kernel_map_pages()
2321 * poisoning, then it's going to smash the contents of
2322 * the redzone and userword anyhow, so switch them off.
2323 */
2324 if (size % PAGE_SIZE == 0 && flags & SLAB_POISON)
2325 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
2326#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 }
2328
2329 cachep->colour_off = cache_line_size();
2330 /* Offset must be a multiple of the alignment. */
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002331 if (cachep->colour_off < cachep->align)
2332 cachep->colour_off = cachep->align;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002333 cachep->colour = left_over / cachep->colour_off;
Joonsoo Kim8456a642013-10-24 10:07:49 +09002334 cachep->freelist_size = freelist_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 cachep->flags = flags;
Joonsoo Kima57a4982013-10-24 10:07:44 +09002336 cachep->allocflags = __GFP_COMP;
Christoph Lameter4b51d662007-02-10 01:43:10 -08002337 if (CONFIG_ZONE_DMA_FLAG && (flags & SLAB_CACHE_DMA))
Glauber Costaa618e892012-06-14 16:17:21 +04002338 cachep->allocflags |= GFP_DMA;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002339 cachep->size = size;
Eric Dumazet6a2d7a92006-12-13 00:34:27 -08002340 cachep->reciprocal_buffer_size = reciprocal_value(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002342 if (flags & CFLGS_OFF_SLAB) {
Joonsoo Kim8456a642013-10-24 10:07:49 +09002343 cachep->freelist_cache = kmalloc_slab(freelist_size, 0u);
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002344 /*
2345 * This is a possibility for one of the malloc_sizes caches.
2346 * But since we go off slab only for object size greater than
2347 * PAGE_SIZE/8, and malloc_sizes gets created in ascending order,
2348 * this should not happen at all.
2349 * But leave a BUG_ON for some lucky dude.
2350 */
Joonsoo Kim8456a642013-10-24 10:07:49 +09002351 BUG_ON(ZERO_OR_NULL_PTR(cachep->freelist_cache));
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002352 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002354 err = setup_cpu_cache(cachep, gfp);
2355 if (err) {
Christoph Lameter12c36672012-09-04 23:38:33 +00002356 __kmem_cache_shutdown(cachep);
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002357 return err;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002358 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359
Peter Zijlstra83835b32011-07-22 15:26:05 +02002360 if (flags & SLAB_DEBUG_OBJECTS) {
2361 /*
2362 * Would deadlock through slab_destroy()->call_rcu()->
2363 * debug_object_activate()->kmem_cache_alloc().
2364 */
2365 WARN_ON_ONCE(flags & SLAB_DESTROY_BY_RCU);
2366
2367 slab_set_debugobj_lock_classes(cachep);
Glauber Costa6ccfb5b2012-12-18 14:22:31 -08002368 } else if (!OFF_SLAB(cachep) && !(flags & SLAB_DESTROY_BY_RCU))
2369 on_slab_lock_classes(cachep);
Peter Zijlstra83835b32011-07-22 15:26:05 +02002370
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002371 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373
2374#if DEBUG
2375static void check_irq_off(void)
2376{
2377 BUG_ON(!irqs_disabled());
2378}
2379
2380static void check_irq_on(void)
2381{
2382 BUG_ON(irqs_disabled());
2383}
2384
Pekka Enberg343e0d72006-02-01 03:05:50 -08002385static void check_spinlock_acquired(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386{
2387#ifdef CONFIG_SMP
2388 check_irq_off();
Christoph Lameter6a673682013-01-10 19:14:19 +00002389 assert_spin_locked(&cachep->node[numa_mem_id()]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390#endif
2391}
Christoph Lametere498be72005-09-09 13:03:32 -07002392
Pekka Enberg343e0d72006-02-01 03:05:50 -08002393static void check_spinlock_acquired_node(struct kmem_cache *cachep, int node)
Christoph Lametere498be72005-09-09 13:03:32 -07002394{
2395#ifdef CONFIG_SMP
2396 check_irq_off();
Christoph Lameter6a673682013-01-10 19:14:19 +00002397 assert_spin_locked(&cachep->node[node]->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07002398#endif
2399}
2400
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401#else
2402#define check_irq_off() do { } while(0)
2403#define check_irq_on() do { } while(0)
2404#define check_spinlock_acquired(x) do { } while(0)
Christoph Lametere498be72005-09-09 13:03:32 -07002405#define check_spinlock_acquired_node(x, y) do { } while(0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406#endif
2407
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002408static void drain_array(struct kmem_cache *cachep, struct kmem_cache_node *n,
Christoph Lameteraab22072006-03-22 00:09:06 -08002409 struct array_cache *ac,
2410 int force, int node);
2411
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412static void do_drain(void *arg)
2413{
Andrew Mortona737b3e2006-03-22 00:08:11 -08002414 struct kmem_cache *cachep = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 struct array_cache *ac;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07002416 int node = numa_mem_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002417
2418 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002419 ac = cpu_cache_get(cachep);
Christoph Lameter6a673682013-01-10 19:14:19 +00002420 spin_lock(&cachep->node[node]->list_lock);
Christoph Lameterff694162005-09-22 21:44:02 -07002421 free_block(cachep, ac->entry, ac->avail, node);
Christoph Lameter6a673682013-01-10 19:14:19 +00002422 spin_unlock(&cachep->node[node]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 ac->avail = 0;
2424}
2425
Pekka Enberg343e0d72006-02-01 03:05:50 -08002426static void drain_cpu_caches(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002427{
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002428 struct kmem_cache_node *n;
Christoph Lametere498be72005-09-09 13:03:32 -07002429 int node;
2430
Jens Axboe15c8b6c2008-05-09 09:39:44 +02002431 on_each_cpu(do_drain, cachep, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432 check_irq_on();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002433 for_each_online_node(node) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002434 n = cachep->node[node];
2435 if (n && n->alien)
2436 drain_alien_cache(cachep, n->alien);
Roland Dreiera4523a82006-05-15 11:41:00 -07002437 }
2438
2439 for_each_online_node(node) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002440 n = cachep->node[node];
2441 if (n)
2442 drain_array(cachep, n, n->shared, 1, node);
Christoph Lametere498be72005-09-09 13:03:32 -07002443 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444}
2445
Christoph Lametered11d9e2006-06-30 01:55:45 -07002446/*
2447 * Remove slabs from the list of free slabs.
2448 * Specify the number of slabs to drain in tofree.
2449 *
2450 * Returns the actual number of slabs released.
2451 */
2452static int drain_freelist(struct kmem_cache *cache,
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002453 struct kmem_cache_node *n, int tofree)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454{
Christoph Lametered11d9e2006-06-30 01:55:45 -07002455 struct list_head *p;
2456 int nr_freed;
Joonsoo Kim8456a642013-10-24 10:07:49 +09002457 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458
Christoph Lametered11d9e2006-06-30 01:55:45 -07002459 nr_freed = 0;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002460 while (nr_freed < tofree && !list_empty(&n->slabs_free)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002461
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002462 spin_lock_irq(&n->list_lock);
2463 p = n->slabs_free.prev;
2464 if (p == &n->slabs_free) {
2465 spin_unlock_irq(&n->list_lock);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002466 goto out;
2467 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468
Joonsoo Kim8456a642013-10-24 10:07:49 +09002469 page = list_entry(p, struct page, lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470#if DEBUG
Joonsoo Kim8456a642013-10-24 10:07:49 +09002471 BUG_ON(page->active);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472#endif
Joonsoo Kim8456a642013-10-24 10:07:49 +09002473 list_del(&page->lru);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002474 /*
2475 * Safe to drop the lock. The slab is no longer linked
2476 * to the cache.
2477 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002478 n->free_objects -= cache->num;
2479 spin_unlock_irq(&n->list_lock);
Joonsoo Kim8456a642013-10-24 10:07:49 +09002480 slab_destroy(cache, page);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002481 nr_freed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482 }
Christoph Lametered11d9e2006-06-30 01:55:45 -07002483out:
2484 return nr_freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485}
2486
Christoph Lameter18004c52012-07-06 15:25:12 -05002487/* Called with slab_mutex held to protect against cpu hotplug */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002488static int __cache_shrink(struct kmem_cache *cachep)
Christoph Lametere498be72005-09-09 13:03:32 -07002489{
2490 int ret = 0, i = 0;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002491 struct kmem_cache_node *n;
Christoph Lametere498be72005-09-09 13:03:32 -07002492
2493 drain_cpu_caches(cachep);
2494
2495 check_irq_on();
2496 for_each_online_node(i) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002497 n = cachep->node[i];
2498 if (!n)
Christoph Lametered11d9e2006-06-30 01:55:45 -07002499 continue;
2500
Wanpeng Li0fa81032013-07-04 08:33:22 +08002501 drain_freelist(cachep, n, slabs_tofree(cachep, n));
Christoph Lametered11d9e2006-06-30 01:55:45 -07002502
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002503 ret += !list_empty(&n->slabs_full) ||
2504 !list_empty(&n->slabs_partial);
Christoph Lametere498be72005-09-09 13:03:32 -07002505 }
2506 return (ret ? 1 : 0);
2507}
2508
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509/**
2510 * kmem_cache_shrink - Shrink a cache.
2511 * @cachep: The cache to shrink.
2512 *
2513 * Releases as many slabs as possible for a cache.
2514 * To help debugging, a zero exit status indicates all slabs were released.
2515 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002516int kmem_cache_shrink(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517{
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002518 int ret;
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002519 BUG_ON(!cachep || in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002521 get_online_cpus();
Christoph Lameter18004c52012-07-06 15:25:12 -05002522 mutex_lock(&slab_mutex);
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002523 ret = __cache_shrink(cachep);
Christoph Lameter18004c52012-07-06 15:25:12 -05002524 mutex_unlock(&slab_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002525 put_online_cpus();
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002526 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527}
2528EXPORT_SYMBOL(kmem_cache_shrink);
2529
Christoph Lameter945cf2b2012-09-04 23:18:33 +00002530int __kmem_cache_shutdown(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531{
Christoph Lameter12c36672012-09-04 23:38:33 +00002532 int i;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002533 struct kmem_cache_node *n;
Christoph Lameter12c36672012-09-04 23:38:33 +00002534 int rc = __cache_shrink(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535
Christoph Lameter12c36672012-09-04 23:38:33 +00002536 if (rc)
2537 return rc;
2538
2539 for_each_online_cpu(i)
2540 kfree(cachep->array[i]);
2541
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002542 /* NUMA: free the node structures */
Christoph Lameter12c36672012-09-04 23:38:33 +00002543 for_each_online_node(i) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002544 n = cachep->node[i];
2545 if (n) {
2546 kfree(n->shared);
2547 free_alien_cache(n->alien);
2548 kfree(n);
Christoph Lameter12c36672012-09-04 23:38:33 +00002549 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 }
Christoph Lameter12c36672012-09-04 23:38:33 +00002551 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002554/*
2555 * Get the memory for a slab management obj.
2556 * For a slab cache when the slab descriptor is off-slab, slab descriptors
2557 * always come from malloc_sizes caches. The slab descriptor cannot
2558 * come from the same cache which is getting created because,
2559 * when we are searching for an appropriate cache for these
2560 * descriptors in kmem_cache_create, we search through the malloc_sizes array.
2561 * If we are creating a malloc_sizes cache here it would not be visible to
2562 * kmem_find_general_cachep till the initialization is complete.
Joonsoo Kim8456a642013-10-24 10:07:49 +09002563 * Hence we cannot have freelist_cache same as the original cache.
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002564 */
Joonsoo Kim7e007352013-10-30 19:04:01 +09002565static void *alloc_slabmgmt(struct kmem_cache *cachep,
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002566 struct page *page, int colour_off,
2567 gfp_t local_flags, int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568{
Joonsoo Kim7e007352013-10-30 19:04:01 +09002569 void *freelist;
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002570 void *addr = page_address(page);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002571
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572 if (OFF_SLAB(cachep)) {
2573 /* Slab management obj is off-slab. */
Joonsoo Kim8456a642013-10-24 10:07:49 +09002574 freelist = kmem_cache_alloc_node(cachep->freelist_cache,
Pekka Enberg8759ec52008-11-26 10:01:31 +02002575 local_flags, nodeid);
Joonsoo Kim8456a642013-10-24 10:07:49 +09002576 if (!freelist)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577 return NULL;
2578 } else {
Joonsoo Kim8456a642013-10-24 10:07:49 +09002579 freelist = addr + colour_off;
2580 colour_off += cachep->freelist_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581 }
Joonsoo Kim8456a642013-10-24 10:07:49 +09002582 page->active = 0;
2583 page->s_mem = addr + colour_off;
2584 return freelist;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585}
2586
Joonsoo Kime7444d92013-10-24 10:07:51 +09002587static inline unsigned int *slab_freelist(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002588{
Joonsoo Kim8456a642013-10-24 10:07:49 +09002589 return (unsigned int *)(page->freelist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590}
2591
Pekka Enberg343e0d72006-02-01 03:05:50 -08002592static void cache_init_objs(struct kmem_cache *cachep,
Joonsoo Kim8456a642013-10-24 10:07:49 +09002593 struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594{
2595 int i;
2596
2597 for (i = 0; i < cachep->num; i++) {
Joonsoo Kim8456a642013-10-24 10:07:49 +09002598 void *objp = index_to_obj(cachep, page, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599#if DEBUG
2600 /* need to poison the objs? */
2601 if (cachep->flags & SLAB_POISON)
2602 poison_obj(cachep, objp, POISON_FREE);
2603 if (cachep->flags & SLAB_STORE_USER)
2604 *dbg_userword(cachep, objp) = NULL;
2605
2606 if (cachep->flags & SLAB_RED_ZONE) {
2607 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2608 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2609 }
2610 /*
Andrew Mortona737b3e2006-03-22 00:08:11 -08002611 * Constructors are not allowed to allocate memory from the same
2612 * cache which they are a constructor for. Otherwise, deadlock.
2613 * They must also be threaded.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002614 */
2615 if (cachep->ctor && !(cachep->flags & SLAB_POISON))
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002616 cachep->ctor(objp + obj_offset(cachep));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617
2618 if (cachep->flags & SLAB_RED_ZONE) {
2619 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
2620 slab_error(cachep, "constructor overwrote the"
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002621 " end of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
2623 slab_error(cachep, "constructor overwrote the"
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002624 " start of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625 }
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002626 if ((cachep->size % PAGE_SIZE) == 0 &&
Andrew Mortona737b3e2006-03-22 00:08:11 -08002627 OFF_SLAB(cachep) && cachep->flags & SLAB_POISON)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002628 kernel_map_pages(virt_to_page(objp),
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002629 cachep->size / PAGE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630#else
2631 if (cachep->ctor)
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002632 cachep->ctor(objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633#endif
Joonsoo Kimd35426e2014-06-23 13:22:06 -07002634 set_obj_status(page, i, OBJECT_FREE);
Joonsoo Kime7444d92013-10-24 10:07:51 +09002635 slab_freelist(page)[i] = i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637}
2638
Pekka Enberg343e0d72006-02-01 03:05:50 -08002639static void kmem_flagcheck(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640{
Christoph Lameter4b51d662007-02-10 01:43:10 -08002641 if (CONFIG_ZONE_DMA_FLAG) {
2642 if (flags & GFP_DMA)
Glauber Costaa618e892012-06-14 16:17:21 +04002643 BUG_ON(!(cachep->allocflags & GFP_DMA));
Christoph Lameter4b51d662007-02-10 01:43:10 -08002644 else
Glauber Costaa618e892012-06-14 16:17:21 +04002645 BUG_ON(cachep->allocflags & GFP_DMA);
Christoph Lameter4b51d662007-02-10 01:43:10 -08002646 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002647}
2648
Joonsoo Kim8456a642013-10-24 10:07:49 +09002649static void *slab_get_obj(struct kmem_cache *cachep, struct page *page,
Andrew Mortona737b3e2006-03-22 00:08:11 -08002650 int nodeid)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002651{
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09002652 void *objp;
Matthew Dobson78d382d2006-02-01 03:05:47 -08002653
Joonsoo Kime7444d92013-10-24 10:07:51 +09002654 objp = index_to_obj(cachep, page, slab_freelist(page)[page->active]);
Joonsoo Kim8456a642013-10-24 10:07:49 +09002655 page->active++;
Matthew Dobson78d382d2006-02-01 03:05:47 -08002656#if DEBUG
Joonsoo Kim1ea991b2013-10-24 10:07:40 +09002657 WARN_ON(page_to_nid(virt_to_page(objp)) != nodeid);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002658#endif
Matthew Dobson78d382d2006-02-01 03:05:47 -08002659
2660 return objp;
2661}
2662
Joonsoo Kim8456a642013-10-24 10:07:49 +09002663static void slab_put_obj(struct kmem_cache *cachep, struct page *page,
Andrew Mortona737b3e2006-03-22 00:08:11 -08002664 void *objp, int nodeid)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002665{
Joonsoo Kim8456a642013-10-24 10:07:49 +09002666 unsigned int objnr = obj_to_index(cachep, page, objp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002667#if DEBUG
Joonsoo Kim16025172013-10-24 10:07:46 +09002668 unsigned int i;
Matthew Dobson78d382d2006-02-01 03:05:47 -08002669
Matthew Dobson78d382d2006-02-01 03:05:47 -08002670 /* Verify that the slab belongs to the intended node */
Joonsoo Kim1ea991b2013-10-24 10:07:40 +09002671 WARN_ON(page_to_nid(virt_to_page(objp)) != nodeid);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002672
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09002673 /* Verify double free bug */
Joonsoo Kim8456a642013-10-24 10:07:49 +09002674 for (i = page->active; i < cachep->num; i++) {
Joonsoo Kime7444d92013-10-24 10:07:51 +09002675 if (slab_freelist(page)[i] == objnr) {
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09002676 printk(KERN_ERR "slab: double free detected in cache "
2677 "'%s', objp %p\n", cachep->name, objp);
2678 BUG();
2679 }
Matthew Dobson78d382d2006-02-01 03:05:47 -08002680 }
2681#endif
Joonsoo Kim8456a642013-10-24 10:07:49 +09002682 page->active--;
Joonsoo Kime7444d92013-10-24 10:07:51 +09002683 slab_freelist(page)[page->active] = objnr;
Matthew Dobson78d382d2006-02-01 03:05:47 -08002684}
2685
Pekka Enberg47768742006-06-23 02:03:07 -07002686/*
2687 * Map pages beginning at addr to the given cache and slab. This is required
2688 * for the slab allocator to be able to lookup the cache and slab of a
Nick Pigginccd35fb2011-01-07 17:49:17 +11002689 * virtual address for kfree, ksize, and slab debugging.
Pekka Enberg47768742006-06-23 02:03:07 -07002690 */
Joonsoo Kim8456a642013-10-24 10:07:49 +09002691static void slab_map_pages(struct kmem_cache *cache, struct page *page,
Joonsoo Kim7e007352013-10-30 19:04:01 +09002692 void *freelist)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002693{
Joonsoo Kima57a4982013-10-24 10:07:44 +09002694 page->slab_cache = cache;
Joonsoo Kim8456a642013-10-24 10:07:49 +09002695 page->freelist = freelist;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002696}
2697
2698/*
2699 * Grow (by 1) the number of slabs within a cache. This is called by
2700 * kmem_cache_alloc() when there are no active objs left in a cache.
2701 */
Christoph Lameter3c517a62006-12-06 20:33:29 -08002702static int cache_grow(struct kmem_cache *cachep,
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002703 gfp_t flags, int nodeid, struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704{
Joonsoo Kim7e007352013-10-30 19:04:01 +09002705 void *freelist;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002706 size_t offset;
2707 gfp_t local_flags;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002708 struct kmem_cache_node *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709
Andrew Mortona737b3e2006-03-22 00:08:11 -08002710 /*
2711 * Be lazy and only check for valid flags here, keeping it out of the
2712 * critical path in kmem_cache_alloc().
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713 */
Christoph Lameter6cb06222007-10-16 01:25:41 -07002714 BUG_ON(flags & GFP_SLAB_BUG_MASK);
2715 local_flags = flags & (GFP_CONSTRAINT_MASK|GFP_RECLAIM_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002717 /* Take the node list lock to change the colour_next on this node */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 check_irq_off();
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002719 n = cachep->node[nodeid];
2720 spin_lock(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721
2722 /* Get colour for the slab, and cal the next value. */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002723 offset = n->colour_next;
2724 n->colour_next++;
2725 if (n->colour_next >= cachep->colour)
2726 n->colour_next = 0;
2727 spin_unlock(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002729 offset *= cachep->colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730
2731 if (local_flags & __GFP_WAIT)
2732 local_irq_enable();
2733
2734 /*
2735 * The test for missing atomic flag is performed here, rather than
2736 * the more obvious place, simply to reduce the critical path length
2737 * in kmem_cache_alloc(). If a caller is seriously mis-behaving they
2738 * will eventually be caught here (where it matters).
2739 */
2740 kmem_flagcheck(cachep, flags);
2741
Andrew Mortona737b3e2006-03-22 00:08:11 -08002742 /*
2743 * Get mem for the objs. Attempt to allocate a physical page from
2744 * 'nodeid'.
Christoph Lametere498be72005-09-09 13:03:32 -07002745 */
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002746 if (!page)
2747 page = kmem_getpages(cachep, local_flags, nodeid);
2748 if (!page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749 goto failed;
2750
2751 /* Get slab management. */
Joonsoo Kim8456a642013-10-24 10:07:49 +09002752 freelist = alloc_slabmgmt(cachep, page, offset,
Christoph Lameter6cb06222007-10-16 01:25:41 -07002753 local_flags & ~GFP_CONSTRAINT_MASK, nodeid);
Joonsoo Kim8456a642013-10-24 10:07:49 +09002754 if (!freelist)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755 goto opps1;
2756
Joonsoo Kim8456a642013-10-24 10:07:49 +09002757 slab_map_pages(cachep, page, freelist);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758
Joonsoo Kim8456a642013-10-24 10:07:49 +09002759 cache_init_objs(cachep, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760
2761 if (local_flags & __GFP_WAIT)
2762 local_irq_disable();
2763 check_irq_off();
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002764 spin_lock(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765
2766 /* Make slab active. */
Joonsoo Kim8456a642013-10-24 10:07:49 +09002767 list_add_tail(&page->lru, &(n->slabs_free));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768 STATS_INC_GROWN(cachep);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002769 n->free_objects += cachep->num;
2770 spin_unlock(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771 return 1;
Andrew Mortona737b3e2006-03-22 00:08:11 -08002772opps1:
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09002773 kmem_freepages(cachep, page);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002774failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775 if (local_flags & __GFP_WAIT)
2776 local_irq_disable();
2777 return 0;
2778}
2779
2780#if DEBUG
2781
2782/*
2783 * Perform extra freeing checks:
2784 * - detect bad pointers.
2785 * - POISON/RED_ZONE checking
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786 */
2787static void kfree_debugcheck(const void *objp)
2788{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789 if (!virt_addr_valid(objp)) {
2790 printk(KERN_ERR "kfree_debugcheck: out of range ptr %lxh.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002791 (unsigned long)objp);
2792 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794}
2795
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002796static inline void verify_redzone_free(struct kmem_cache *cache, void *obj)
2797{
David Woodhouseb46b8f12007-05-08 00:22:59 -07002798 unsigned long long redzone1, redzone2;
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002799
2800 redzone1 = *dbg_redzone1(cache, obj);
2801 redzone2 = *dbg_redzone2(cache, obj);
2802
2803 /*
2804 * Redzone is ok.
2805 */
2806 if (redzone1 == RED_ACTIVE && redzone2 == RED_ACTIVE)
2807 return;
2808
2809 if (redzone1 == RED_INACTIVE && redzone2 == RED_INACTIVE)
2810 slab_error(cache, "double free detected");
2811 else
2812 slab_error(cache, "memory outside object was overwritten");
2813
David Woodhouseb46b8f12007-05-08 00:22:59 -07002814 printk(KERN_ERR "%p: redzone 1:0x%llx, redzone 2:0x%llx.\n",
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002815 obj, redzone1, redzone2);
2816}
2817
Pekka Enberg343e0d72006-02-01 03:05:50 -08002818static void *cache_free_debugcheck(struct kmem_cache *cachep, void *objp,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03002819 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821 unsigned int objnr;
Joonsoo Kim8456a642013-10-24 10:07:49 +09002822 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823
Matthew Wilcox80cbd912007-11-29 12:05:13 -07002824 BUG_ON(virt_to_cache(objp) != cachep);
2825
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002826 objp -= obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827 kfree_debugcheck(objp);
Christoph Lameterb49af682007-05-06 14:49:41 -07002828 page = virt_to_head_page(objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830 if (cachep->flags & SLAB_RED_ZONE) {
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002831 verify_redzone_free(cachep, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2833 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2834 }
2835 if (cachep->flags & SLAB_STORE_USER)
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03002836 *dbg_userword(cachep, objp) = (void *)caller;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837
Joonsoo Kim8456a642013-10-24 10:07:49 +09002838 objnr = obj_to_index(cachep, page, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839
2840 BUG_ON(objnr >= cachep->num);
Joonsoo Kim8456a642013-10-24 10:07:49 +09002841 BUG_ON(objp != index_to_obj(cachep, page, objnr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842
Joonsoo Kimd35426e2014-06-23 13:22:06 -07002843 set_obj_status(page, objnr, OBJECT_FREE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844 if (cachep->flags & SLAB_POISON) {
2845#ifdef CONFIG_DEBUG_PAGEALLOC
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002846 if ((cachep->size % PAGE_SIZE)==0 && OFF_SLAB(cachep)) {
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03002847 store_stackinfo(cachep, objp, caller);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002848 kernel_map_pages(virt_to_page(objp),
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002849 cachep->size / PAGE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002850 } else {
2851 poison_obj(cachep, objp, POISON_FREE);
2852 }
2853#else
2854 poison_obj(cachep, objp, POISON_FREE);
2855#endif
2856 }
2857 return objp;
2858}
2859
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860#else
2861#define kfree_debugcheck(x) do { } while(0)
2862#define cache_free_debugcheck(x,objp,z) (objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863#endif
2864
Mel Gorman072bb0a2012-07-31 16:43:58 -07002865static void *cache_alloc_refill(struct kmem_cache *cachep, gfp_t flags,
2866 bool force_refill)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867{
2868 int batchcount;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002869 struct kmem_cache_node *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870 struct array_cache *ac;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07002871 int node;
2872
Joe Korty6d2144d2008-03-05 15:04:59 -08002873 check_irq_off();
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07002874 node = numa_mem_id();
Mel Gorman072bb0a2012-07-31 16:43:58 -07002875 if (unlikely(force_refill))
2876 goto force_grow;
2877retry:
Joe Korty6d2144d2008-03-05 15:04:59 -08002878 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879 batchcount = ac->batchcount;
2880 if (!ac->touched && batchcount > BATCHREFILL_LIMIT) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002881 /*
2882 * If there was little recent activity on this cache, then
2883 * perform only a partial refill. Otherwise we could generate
2884 * refill bouncing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885 */
2886 batchcount = BATCHREFILL_LIMIT;
2887 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002888 n = cachep->node[node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002889
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002890 BUG_ON(ac->avail > 0 || !n);
2891 spin_lock(&n->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07002892
Christoph Lameter3ded1752006-03-25 03:06:44 -08002893 /* See if we can refill from the shared array */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002894 if (n->shared && transfer_objects(ac, n->shared, batchcount)) {
2895 n->shared->touched = 1;
Christoph Lameter3ded1752006-03-25 03:06:44 -08002896 goto alloc_done;
Nick Piggin44b57f12010-01-27 22:27:40 +11002897 }
Christoph Lameter3ded1752006-03-25 03:06:44 -08002898
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899 while (batchcount > 0) {
2900 struct list_head *entry;
Joonsoo Kim8456a642013-10-24 10:07:49 +09002901 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902 /* Get slab alloc is to come from. */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002903 entry = n->slabs_partial.next;
2904 if (entry == &n->slabs_partial) {
2905 n->free_touched = 1;
2906 entry = n->slabs_free.next;
2907 if (entry == &n->slabs_free)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908 goto must_grow;
2909 }
2910
Joonsoo Kim8456a642013-10-24 10:07:49 +09002911 page = list_entry(entry, struct page, lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912 check_spinlock_acquired(cachep);
Pekka Enberg714b81712007-05-06 14:49:03 -07002913
2914 /*
2915 * The slab was either on partial or free list so
2916 * there must be at least one object available for
2917 * allocation.
2918 */
Joonsoo Kim8456a642013-10-24 10:07:49 +09002919 BUG_ON(page->active >= cachep->num);
Pekka Enberg714b81712007-05-06 14:49:03 -07002920
Joonsoo Kim8456a642013-10-24 10:07:49 +09002921 while (page->active < cachep->num && batchcount--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 STATS_INC_ALLOCED(cachep);
2923 STATS_INC_ACTIVE(cachep);
2924 STATS_SET_HIGH(cachep);
2925
Joonsoo Kim8456a642013-10-24 10:07:49 +09002926 ac_put_obj(cachep, ac, slab_get_obj(cachep, page,
Mel Gorman072bb0a2012-07-31 16:43:58 -07002927 node));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929
2930 /* move slabp to correct slabp list: */
Joonsoo Kim8456a642013-10-24 10:07:49 +09002931 list_del(&page->lru);
2932 if (page->active == cachep->num)
2933 list_add(&page->list, &n->slabs_full);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002934 else
Joonsoo Kim8456a642013-10-24 10:07:49 +09002935 list_add(&page->list, &n->slabs_partial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002936 }
2937
Andrew Mortona737b3e2006-03-22 00:08:11 -08002938must_grow:
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002939 n->free_objects -= ac->avail;
Andrew Mortona737b3e2006-03-22 00:08:11 -08002940alloc_done:
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002941 spin_unlock(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942
2943 if (unlikely(!ac->avail)) {
2944 int x;
Mel Gorman072bb0a2012-07-31 16:43:58 -07002945force_grow:
Christoph Lameter3c517a62006-12-06 20:33:29 -08002946 x = cache_grow(cachep, flags | GFP_THISNODE, node, NULL);
Christoph Lametere498be72005-09-09 13:03:32 -07002947
Andrew Mortona737b3e2006-03-22 00:08:11 -08002948 /* cache_grow can reenable interrupts, then ac could change. */
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002949 ac = cpu_cache_get(cachep);
David Rientjes51cd8e62012-08-28 19:57:21 -07002950 node = numa_mem_id();
Mel Gorman072bb0a2012-07-31 16:43:58 -07002951
2952 /* no objects in sight? abort */
2953 if (!x && (ac->avail == 0 || force_refill))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954 return NULL;
2955
Andrew Mortona737b3e2006-03-22 00:08:11 -08002956 if (!ac->avail) /* objects refilled by interrupt? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957 goto retry;
2958 }
2959 ac->touched = 1;
Mel Gorman072bb0a2012-07-31 16:43:58 -07002960
2961 return ac_get_obj(cachep, ac, flags, force_refill);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962}
2963
Andrew Mortona737b3e2006-03-22 00:08:11 -08002964static inline void cache_alloc_debugcheck_before(struct kmem_cache *cachep,
2965 gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966{
2967 might_sleep_if(flags & __GFP_WAIT);
2968#if DEBUG
2969 kmem_flagcheck(cachep, flags);
2970#endif
2971}
2972
2973#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08002974static void *cache_alloc_debugcheck_after(struct kmem_cache *cachep,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03002975 gfp_t flags, void *objp, unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976{
Joonsoo Kimd35426e2014-06-23 13:22:06 -07002977 struct page *page;
2978
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002979 if (!objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002980 return objp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002981 if (cachep->flags & SLAB_POISON) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982#ifdef CONFIG_DEBUG_PAGEALLOC
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002983 if ((cachep->size % PAGE_SIZE) == 0 && OFF_SLAB(cachep))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002984 kernel_map_pages(virt_to_page(objp),
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002985 cachep->size / PAGE_SIZE, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986 else
2987 check_poison_obj(cachep, objp);
2988#else
2989 check_poison_obj(cachep, objp);
2990#endif
2991 poison_obj(cachep, objp, POISON_INUSE);
2992 }
2993 if (cachep->flags & SLAB_STORE_USER)
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03002994 *dbg_userword(cachep, objp) = (void *)caller;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995
2996 if (cachep->flags & SLAB_RED_ZONE) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002997 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE ||
2998 *dbg_redzone2(cachep, objp) != RED_INACTIVE) {
2999 slab_error(cachep, "double free, or memory outside"
3000 " object was overwritten");
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003001 printk(KERN_ERR
David Woodhouseb46b8f12007-05-08 00:22:59 -07003002 "%p: redzone 1:0x%llx, redzone 2:0x%llx\n",
Andrew Mortona737b3e2006-03-22 00:08:11 -08003003 objp, *dbg_redzone1(cachep, objp),
3004 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005 }
3006 *dbg_redzone1(cachep, objp) = RED_ACTIVE;
3007 *dbg_redzone2(cachep, objp) = RED_ACTIVE;
3008 }
Joonsoo Kimd35426e2014-06-23 13:22:06 -07003009
3010 page = virt_to_head_page(objp);
3011 set_obj_status(page, obj_to_index(cachep, page, objp), OBJECT_ACTIVE);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003012 objp += obj_offset(cachep);
Christoph Lameter4f104932007-05-06 14:50:17 -07003013 if (cachep->ctor && cachep->flags & SLAB_POISON)
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07003014 cachep->ctor(objp);
Tetsuo Handa7ea466f2011-07-21 09:42:45 +09003015 if (ARCH_SLAB_MINALIGN &&
3016 ((unsigned long)objp & (ARCH_SLAB_MINALIGN-1))) {
Kevin Hilmana44b56d2006-12-06 20:32:11 -08003017 printk(KERN_ERR "0x%p: not aligned to ARCH_SLAB_MINALIGN=%d\n",
Hugh Dickinsc2251502011-07-11 13:35:08 -07003018 objp, (int)ARCH_SLAB_MINALIGN);
Kevin Hilmana44b56d2006-12-06 20:32:11 -08003019 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020 return objp;
3021}
3022#else
3023#define cache_alloc_debugcheck_after(a,b,objp,d) (objp)
3024#endif
3025
Akinobu Mita773ff602008-12-23 19:37:01 +09003026static bool slab_should_failslab(struct kmem_cache *cachep, gfp_t flags)
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003027{
Christoph Lameter9b030cb2012-09-05 00:20:33 +00003028 if (cachep == kmem_cache)
Akinobu Mita773ff602008-12-23 19:37:01 +09003029 return false;
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003030
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003031 return should_failslab(cachep->object_size, flags, cachep->flags);
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003032}
3033
Pekka Enberg343e0d72006-02-01 03:05:50 -08003034static inline void *____cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003036 void *objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037 struct array_cache *ac;
Mel Gorman072bb0a2012-07-31 16:43:58 -07003038 bool force_refill = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039
Alok N Kataria5c382302005-09-27 21:45:46 -07003040 check_irq_off();
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003041
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003042 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043 if (likely(ac->avail)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044 ac->touched = 1;
Mel Gorman072bb0a2012-07-31 16:43:58 -07003045 objp = ac_get_obj(cachep, ac, flags, false);
3046
J. R. Okajimaddbf2e82009-12-02 16:55:50 +09003047 /*
Mel Gorman072bb0a2012-07-31 16:43:58 -07003048 * Allow for the possibility all avail objects are not allowed
3049 * by the current flags
J. R. Okajimaddbf2e82009-12-02 16:55:50 +09003050 */
Mel Gorman072bb0a2012-07-31 16:43:58 -07003051 if (objp) {
3052 STATS_INC_ALLOCHIT(cachep);
3053 goto out;
3054 }
3055 force_refill = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056 }
Mel Gorman072bb0a2012-07-31 16:43:58 -07003057
3058 STATS_INC_ALLOCMISS(cachep);
3059 objp = cache_alloc_refill(cachep, flags, force_refill);
3060 /*
3061 * the 'ac' may be updated by cache_alloc_refill(),
3062 * and kmemleak_erase() requires its correct value.
3063 */
3064 ac = cpu_cache_get(cachep);
3065
3066out:
Catalin Marinasd5cff632009-06-11 13:22:40 +01003067 /*
3068 * To avoid a false negative, if an object that is in one of the
3069 * per-CPU caches is leaked, we need to make sure kmemleak doesn't
3070 * treat the array pointers as a reference to the object.
3071 */
J. R. Okajimaf3d8b532009-12-02 16:55:49 +09003072 if (objp)
3073 kmemleak_erase(&ac->entry[ac->avail]);
Alok N Kataria5c382302005-09-27 21:45:46 -07003074 return objp;
3075}
3076
Christoph Lametere498be72005-09-09 13:03:32 -07003077#ifdef CONFIG_NUMA
3078/*
Paul Jacksonb2455392006-03-24 03:16:12 -08003079 * Try allocating on another node if PF_SPREAD_SLAB|PF_MEMPOLICY.
Paul Jacksonc61afb12006-03-24 03:16:08 -08003080 *
3081 * If we are in_interrupt, then process context, including cpusets and
3082 * mempolicy, may not apply and should not be used for allocation policy.
3083 */
3084static void *alternate_node_alloc(struct kmem_cache *cachep, gfp_t flags)
3085{
3086 int nid_alloc, nid_here;
3087
Christoph Lameter765c4502006-09-27 01:50:08 -07003088 if (in_interrupt() || (flags & __GFP_THISNODE))
Paul Jacksonc61afb12006-03-24 03:16:08 -08003089 return NULL;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003090 nid_alloc = nid_here = numa_mem_id();
Paul Jacksonc61afb12006-03-24 03:16:08 -08003091 if (cpuset_do_slab_mem_spread() && (cachep->flags & SLAB_MEM_SPREAD))
Jack Steiner6adef3e2010-05-26 14:42:49 -07003092 nid_alloc = cpuset_slab_spread_node();
Paul Jacksonc61afb12006-03-24 03:16:08 -08003093 else if (current->mempolicy)
Andi Kleene7b691b2012-06-09 02:40:03 -07003094 nid_alloc = slab_node();
Paul Jacksonc61afb12006-03-24 03:16:08 -08003095 if (nid_alloc != nid_here)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003096 return ____cache_alloc_node(cachep, flags, nid_alloc);
Paul Jacksonc61afb12006-03-24 03:16:08 -08003097 return NULL;
3098}
3099
3100/*
Christoph Lameter765c4502006-09-27 01:50:08 -07003101 * Fallback function if there was no memory available and no objects on a
Christoph Lameter3c517a62006-12-06 20:33:29 -08003102 * certain node and fall back is permitted. First we scan all the
Christoph Lameter6a673682013-01-10 19:14:19 +00003103 * available node for available objects. If that fails then we
Christoph Lameter3c517a62006-12-06 20:33:29 -08003104 * perform an allocation without specifying a node. This allows the page
3105 * allocator to do its reclaim / fallback magic. We then insert the
3106 * slab into the proper nodelist and then allocate from it.
Christoph Lameter765c4502006-09-27 01:50:08 -07003107 */
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003108static void *fallback_alloc(struct kmem_cache *cache, gfp_t flags)
Christoph Lameter765c4502006-09-27 01:50:08 -07003109{
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003110 struct zonelist *zonelist;
3111 gfp_t local_flags;
Mel Gormandd1a2392008-04-28 02:12:17 -07003112 struct zoneref *z;
Mel Gorman54a6eb52008-04-28 02:12:16 -07003113 struct zone *zone;
3114 enum zone_type high_zoneidx = gfp_zone(flags);
Christoph Lameter765c4502006-09-27 01:50:08 -07003115 void *obj = NULL;
Christoph Lameter3c517a62006-12-06 20:33:29 -08003116 int nid;
Mel Gormancc9a6c82012-03-21 16:34:11 -07003117 unsigned int cpuset_mems_cookie;
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003118
3119 if (flags & __GFP_THISNODE)
3120 return NULL;
3121
Christoph Lameter6cb06222007-10-16 01:25:41 -07003122 local_flags = flags & (GFP_CONSTRAINT_MASK|GFP_RECLAIM_MASK);
Christoph Lameter765c4502006-09-27 01:50:08 -07003123
Mel Gormancc9a6c82012-03-21 16:34:11 -07003124retry_cpuset:
Mel Gorman29c2a882014-04-03 14:47:24 -07003125 cpuset_mems_cookie = read_mems_allowed_begin();
Andi Kleene7b691b2012-06-09 02:40:03 -07003126 zonelist = node_zonelist(slab_node(), flags);
Mel Gormancc9a6c82012-03-21 16:34:11 -07003127
Christoph Lameter3c517a62006-12-06 20:33:29 -08003128retry:
3129 /*
3130 * Look through allowed nodes for objects available
3131 * from existing per node queues.
3132 */
Mel Gorman54a6eb52008-04-28 02:12:16 -07003133 for_each_zone_zonelist(zone, z, zonelist, high_zoneidx) {
3134 nid = zone_to_nid(zone);
Christoph Lameteraedb0eb2006-10-21 10:24:16 -07003135
Mel Gorman54a6eb52008-04-28 02:12:16 -07003136 if (cpuset_zone_allowed_hardwall(zone, flags) &&
Christoph Lameter6a673682013-01-10 19:14:19 +00003137 cache->node[nid] &&
3138 cache->node[nid]->free_objects) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003139 obj = ____cache_alloc_node(cache,
3140 flags | GFP_THISNODE, nid);
Christoph Lameter481c5342008-06-21 16:46:35 -07003141 if (obj)
3142 break;
3143 }
Christoph Lameter3c517a62006-12-06 20:33:29 -08003144 }
3145
Christoph Lametercfce6602007-05-06 14:50:17 -07003146 if (!obj) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003147 /*
3148 * This allocation will be performed within the constraints
3149 * of the current cpuset / memory policy requirements.
3150 * We may trigger various forms of reclaim on the allowed
3151 * set and go into memory reserves if necessary.
3152 */
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09003153 struct page *page;
3154
Christoph Lameterdd47ea72006-12-13 00:34:11 -08003155 if (local_flags & __GFP_WAIT)
3156 local_irq_enable();
3157 kmem_flagcheck(cache, flags);
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09003158 page = kmem_getpages(cache, local_flags, numa_mem_id());
Christoph Lameterdd47ea72006-12-13 00:34:11 -08003159 if (local_flags & __GFP_WAIT)
3160 local_irq_disable();
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09003161 if (page) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003162 /*
3163 * Insert into the appropriate per node queues
3164 */
Joonsoo Kim0c3aa832013-10-24 10:07:38 +09003165 nid = page_to_nid(page);
3166 if (cache_grow(cache, flags, nid, page)) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003167 obj = ____cache_alloc_node(cache,
3168 flags | GFP_THISNODE, nid);
3169 if (!obj)
3170 /*
3171 * Another processor may allocate the
3172 * objects in the slab since we are
3173 * not holding any locks.
3174 */
3175 goto retry;
3176 } else {
Hugh Dickinsb6a60452007-01-05 16:36:36 -08003177 /* cache_grow already freed obj */
Christoph Lameter3c517a62006-12-06 20:33:29 -08003178 obj = NULL;
3179 }
3180 }
Christoph Lameteraedb0eb2006-10-21 10:24:16 -07003181 }
Mel Gormancc9a6c82012-03-21 16:34:11 -07003182
Mel Gorman29c2a882014-04-03 14:47:24 -07003183 if (unlikely(!obj && read_mems_allowed_retry(cpuset_mems_cookie)))
Mel Gormancc9a6c82012-03-21 16:34:11 -07003184 goto retry_cpuset;
Christoph Lameter765c4502006-09-27 01:50:08 -07003185 return obj;
3186}
3187
3188/*
Christoph Lametere498be72005-09-09 13:03:32 -07003189 * A interface to enable slab creation on nodeid
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190 */
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003191static void *____cache_alloc_node(struct kmem_cache *cachep, gfp_t flags,
Andrew Mortona737b3e2006-03-22 00:08:11 -08003192 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07003193{
3194 struct list_head *entry;
Joonsoo Kim8456a642013-10-24 10:07:49 +09003195 struct page *page;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003196 struct kmem_cache_node *n;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003197 void *obj;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003198 int x;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199
Aaron Tomlin14e50c62013-04-26 16:15:34 +01003200 VM_BUG_ON(nodeid > num_online_nodes());
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003201 n = cachep->node[nodeid];
3202 BUG_ON(!n);
Christoph Lametere498be72005-09-09 13:03:32 -07003203
Andrew Mortona737b3e2006-03-22 00:08:11 -08003204retry:
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08003205 check_irq_off();
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003206 spin_lock(&n->list_lock);
3207 entry = n->slabs_partial.next;
3208 if (entry == &n->slabs_partial) {
3209 n->free_touched = 1;
3210 entry = n->slabs_free.next;
3211 if (entry == &n->slabs_free)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003212 goto must_grow;
3213 }
Christoph Lametere498be72005-09-09 13:03:32 -07003214
Joonsoo Kim8456a642013-10-24 10:07:49 +09003215 page = list_entry(entry, struct page, lru);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003216 check_spinlock_acquired_node(cachep, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07003217
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003218 STATS_INC_NODEALLOCS(cachep);
3219 STATS_INC_ACTIVE(cachep);
3220 STATS_SET_HIGH(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003221
Joonsoo Kim8456a642013-10-24 10:07:49 +09003222 BUG_ON(page->active == cachep->num);
Christoph Lametere498be72005-09-09 13:03:32 -07003223
Joonsoo Kim8456a642013-10-24 10:07:49 +09003224 obj = slab_get_obj(cachep, page, nodeid);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003225 n->free_objects--;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003226 /* move slabp to correct slabp list: */
Joonsoo Kim8456a642013-10-24 10:07:49 +09003227 list_del(&page->lru);
Christoph Lametere498be72005-09-09 13:03:32 -07003228
Joonsoo Kim8456a642013-10-24 10:07:49 +09003229 if (page->active == cachep->num)
3230 list_add(&page->lru, &n->slabs_full);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003231 else
Joonsoo Kim8456a642013-10-24 10:07:49 +09003232 list_add(&page->lru, &n->slabs_partial);
Christoph Lametere498be72005-09-09 13:03:32 -07003233
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003234 spin_unlock(&n->list_lock);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003235 goto done;
Christoph Lametere498be72005-09-09 13:03:32 -07003236
Andrew Mortona737b3e2006-03-22 00:08:11 -08003237must_grow:
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003238 spin_unlock(&n->list_lock);
Christoph Lameter3c517a62006-12-06 20:33:29 -08003239 x = cache_grow(cachep, flags | GFP_THISNODE, nodeid, NULL);
Christoph Lameter765c4502006-09-27 01:50:08 -07003240 if (x)
3241 goto retry;
Christoph Lametere498be72005-09-09 13:03:32 -07003242
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003243 return fallback_alloc(cachep, flags);
Christoph Lameter765c4502006-09-27 01:50:08 -07003244
Andrew Mortona737b3e2006-03-22 00:08:11 -08003245done:
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003246 return obj;
Christoph Lametere498be72005-09-09 13:03:32 -07003247}
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003248
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003249static __always_inline void *
Ezequiel Garcia48356302012-09-08 17:47:57 -03003250slab_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003251 unsigned long caller)
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003252{
3253 unsigned long save_flags;
3254 void *ptr;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003255 int slab_node = numa_mem_id();
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003256
Benjamin Herrenschmidtdcce2842009-06-18 13:24:12 +10003257 flags &= gfp_allowed_mask;
Pekka Enberg7e85ee02009-06-12 14:03:06 +03003258
Nick Piggincf40bd12009-01-21 08:12:39 +01003259 lockdep_trace_alloc(flags);
3260
Akinobu Mita773ff602008-12-23 19:37:01 +09003261 if (slab_should_failslab(cachep, flags))
Akinobu Mita824ebef2007-05-06 14:49:58 -07003262 return NULL;
3263
Glauber Costad79923f2012-12-18 14:22:48 -08003264 cachep = memcg_kmem_get_cache(cachep, flags);
3265
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003266 cache_alloc_debugcheck_before(cachep, flags);
3267 local_irq_save(save_flags);
3268
Andrew Mortoneacbbae2011-07-28 13:59:49 -07003269 if (nodeid == NUMA_NO_NODE)
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003270 nodeid = slab_node;
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003271
Christoph Lameter6a673682013-01-10 19:14:19 +00003272 if (unlikely(!cachep->node[nodeid])) {
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003273 /* Node not bootstrapped yet */
3274 ptr = fallback_alloc(cachep, flags);
3275 goto out;
3276 }
3277
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003278 if (nodeid == slab_node) {
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003279 /*
3280 * Use the locally cached objects if possible.
3281 * However ____cache_alloc does not allow fallback
3282 * to other nodes. It may fail while we still have
3283 * objects on other nodes available.
3284 */
3285 ptr = ____cache_alloc(cachep, flags);
3286 if (ptr)
3287 goto out;
3288 }
3289 /* ___cache_alloc_node can fall back to other nodes */
3290 ptr = ____cache_alloc_node(cachep, flags, nodeid);
3291 out:
3292 local_irq_restore(save_flags);
3293 ptr = cache_alloc_debugcheck_after(cachep, flags, ptr, caller);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003294 kmemleak_alloc_recursive(ptr, cachep->object_size, 1, cachep->flags,
Catalin Marinasd5cff632009-06-11 13:22:40 +01003295 flags);
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003296
Pekka Enbergc175eea2008-05-09 20:35:53 +02003297 if (likely(ptr))
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003298 kmemcheck_slab_alloc(cachep, flags, ptr, cachep->object_size);
Pekka Enbergc175eea2008-05-09 20:35:53 +02003299
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003300 if (unlikely((flags & __GFP_ZERO) && ptr))
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003301 memset(ptr, 0, cachep->object_size);
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003302
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003303 return ptr;
3304}
3305
3306static __always_inline void *
3307__do_cache_alloc(struct kmem_cache *cache, gfp_t flags)
3308{
3309 void *objp;
3310
3311 if (unlikely(current->flags & (PF_SPREAD_SLAB | PF_MEMPOLICY))) {
3312 objp = alternate_node_alloc(cache, flags);
3313 if (objp)
3314 goto out;
3315 }
3316 objp = ____cache_alloc(cache, flags);
3317
3318 /*
3319 * We may just have run out of memory on the local node.
3320 * ____cache_alloc_node() knows how to locate memory on other nodes
3321 */
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003322 if (!objp)
3323 objp = ____cache_alloc_node(cache, flags, numa_mem_id());
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003324
3325 out:
3326 return objp;
3327}
3328#else
3329
3330static __always_inline void *
3331__do_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
3332{
3333 return ____cache_alloc(cachep, flags);
3334}
3335
3336#endif /* CONFIG_NUMA */
3337
3338static __always_inline void *
Ezequiel Garcia48356302012-09-08 17:47:57 -03003339slab_alloc(struct kmem_cache *cachep, gfp_t flags, unsigned long caller)
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003340{
3341 unsigned long save_flags;
3342 void *objp;
3343
Benjamin Herrenschmidtdcce2842009-06-18 13:24:12 +10003344 flags &= gfp_allowed_mask;
Pekka Enberg7e85ee02009-06-12 14:03:06 +03003345
Nick Piggincf40bd12009-01-21 08:12:39 +01003346 lockdep_trace_alloc(flags);
3347
Akinobu Mita773ff602008-12-23 19:37:01 +09003348 if (slab_should_failslab(cachep, flags))
Akinobu Mita824ebef2007-05-06 14:49:58 -07003349 return NULL;
3350
Glauber Costad79923f2012-12-18 14:22:48 -08003351 cachep = memcg_kmem_get_cache(cachep, flags);
3352
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003353 cache_alloc_debugcheck_before(cachep, flags);
3354 local_irq_save(save_flags);
3355 objp = __do_cache_alloc(cachep, flags);
3356 local_irq_restore(save_flags);
3357 objp = cache_alloc_debugcheck_after(cachep, flags, objp, caller);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003358 kmemleak_alloc_recursive(objp, cachep->object_size, 1, cachep->flags,
Catalin Marinasd5cff632009-06-11 13:22:40 +01003359 flags);
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003360 prefetchw(objp);
3361
Pekka Enbergc175eea2008-05-09 20:35:53 +02003362 if (likely(objp))
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003363 kmemcheck_slab_alloc(cachep, flags, objp, cachep->object_size);
Pekka Enbergc175eea2008-05-09 20:35:53 +02003364
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003365 if (unlikely((flags & __GFP_ZERO) && objp))
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003366 memset(objp, 0, cachep->object_size);
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003367
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003368 return objp;
3369}
Christoph Lametere498be72005-09-09 13:03:32 -07003370
3371/*
3372 * Caller needs to acquire correct kmem_list's list_lock
3373 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003374static void free_block(struct kmem_cache *cachep, void **objpp, int nr_objects,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003375 int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376{
3377 int i;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003378 struct kmem_cache_node *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379
3380 for (i = 0; i < nr_objects; i++) {
Mel Gorman072bb0a2012-07-31 16:43:58 -07003381 void *objp;
Joonsoo Kim8456a642013-10-24 10:07:49 +09003382 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003383
Mel Gorman072bb0a2012-07-31 16:43:58 -07003384 clear_obj_pfmemalloc(&objpp[i]);
3385 objp = objpp[i];
3386
Joonsoo Kim8456a642013-10-24 10:07:49 +09003387 page = virt_to_head_page(objp);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003388 n = cachep->node[node];
Joonsoo Kim8456a642013-10-24 10:07:49 +09003389 list_del(&page->lru);
Christoph Lameterff694162005-09-22 21:44:02 -07003390 check_spinlock_acquired_node(cachep, node);
Joonsoo Kim8456a642013-10-24 10:07:49 +09003391 slab_put_obj(cachep, page, objp, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003392 STATS_DEC_ACTIVE(cachep);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003393 n->free_objects++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003394
3395 /* fixup slab chains */
Joonsoo Kim8456a642013-10-24 10:07:49 +09003396 if (page->active == 0) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003397 if (n->free_objects > n->free_limit) {
3398 n->free_objects -= cachep->num;
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07003399 /* No need to drop any previously held
3400 * lock here, even if we have a off-slab slab
3401 * descriptor it is guaranteed to come from
3402 * a different cache, refer to comments before
3403 * alloc_slabmgmt.
3404 */
Joonsoo Kim8456a642013-10-24 10:07:49 +09003405 slab_destroy(cachep, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003406 } else {
Joonsoo Kim8456a642013-10-24 10:07:49 +09003407 list_add(&page->lru, &n->slabs_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003408 }
3409 } else {
3410 /* Unconditionally move a slab to the end of the
3411 * partial list on free - maximum time for the
3412 * other objects to be freed, too.
3413 */
Joonsoo Kim8456a642013-10-24 10:07:49 +09003414 list_add_tail(&page->lru, &n->slabs_partial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003415 }
3416 }
3417}
3418
Pekka Enberg343e0d72006-02-01 03:05:50 -08003419static void cache_flusharray(struct kmem_cache *cachep, struct array_cache *ac)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003420{
3421 int batchcount;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003422 struct kmem_cache_node *n;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003423 int node = numa_mem_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424
3425 batchcount = ac->batchcount;
3426#if DEBUG
3427 BUG_ON(!batchcount || batchcount > ac->avail);
3428#endif
3429 check_irq_off();
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003430 n = cachep->node[node];
3431 spin_lock(&n->list_lock);
3432 if (n->shared) {
3433 struct array_cache *shared_array = n->shared;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003434 int max = shared_array->limit - shared_array->avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435 if (max) {
3436 if (batchcount > max)
3437 batchcount = max;
Christoph Lametere498be72005-09-09 13:03:32 -07003438 memcpy(&(shared_array->entry[shared_array->avail]),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003439 ac->entry, sizeof(void *) * batchcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003440 shared_array->avail += batchcount;
3441 goto free_done;
3442 }
3443 }
3444
Christoph Lameterff694162005-09-22 21:44:02 -07003445 free_block(cachep, ac->entry, batchcount, node);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003446free_done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447#if STATS
3448 {
3449 int i = 0;
3450 struct list_head *p;
3451
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003452 p = n->slabs_free.next;
3453 while (p != &(n->slabs_free)) {
Joonsoo Kim8456a642013-10-24 10:07:49 +09003454 struct page *page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003455
Joonsoo Kim8456a642013-10-24 10:07:49 +09003456 page = list_entry(p, struct page, lru);
3457 BUG_ON(page->active);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003458
3459 i++;
3460 p = p->next;
3461 }
3462 STATS_SET_FREEABLE(cachep, i);
3463 }
3464#endif
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003465 spin_unlock(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003466 ac->avail -= batchcount;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003467 memmove(ac->entry, &(ac->entry[batchcount]), sizeof(void *)*ac->avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003468}
3469
3470/*
Andrew Mortona737b3e2006-03-22 00:08:11 -08003471 * Release an obj back to its cache. If the obj has a constructed state, it must
3472 * be in this state _before_ it is released. Called with disabled ints.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003473 */
Suleiman Souhlala947eb92011-06-02 00:16:42 -07003474static inline void __cache_free(struct kmem_cache *cachep, void *objp,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003475 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003476{
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003477 struct array_cache *ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003478
3479 check_irq_off();
Catalin Marinasd5cff632009-06-11 13:22:40 +01003480 kmemleak_free_recursive(objp, cachep->flags);
Suleiman Souhlala947eb92011-06-02 00:16:42 -07003481 objp = cache_free_debugcheck(cachep, objp, caller);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003483 kmemcheck_slab_free(cachep, objp, cachep->object_size);
Pekka Enbergc175eea2008-05-09 20:35:53 +02003484
Siddha, Suresh B1807a1a2007-08-22 14:01:49 -07003485 /*
3486 * Skip calling cache_free_alien() when the platform is not numa.
3487 * This will avoid cache misses that happen while accessing slabp (which
3488 * is per page memory reference) to get nodeid. Instead use a global
3489 * variable to skip the call, which is mostly likely to be present in
3490 * the cache.
3491 */
Mel Gormanb6e68bc2009-06-16 15:32:16 -07003492 if (nr_online_nodes > 1 && cache_free_alien(cachep, objp))
Pekka Enberg729bd0b2006-06-23 02:03:05 -07003493 return;
Christoph Lametere498be72005-09-09 13:03:32 -07003494
Linus Torvalds1da177e2005-04-16 15:20:36 -07003495 if (likely(ac->avail < ac->limit)) {
3496 STATS_INC_FREEHIT(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497 } else {
3498 STATS_INC_FREEMISS(cachep);
3499 cache_flusharray(cachep, ac);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500 }
Zhao Jin42c8c992011-08-27 00:26:17 +08003501
Mel Gorman072bb0a2012-07-31 16:43:58 -07003502 ac_put_obj(cachep, ac, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503}
3504
3505/**
3506 * kmem_cache_alloc - Allocate an object
3507 * @cachep: The cache to allocate from.
3508 * @flags: See kmalloc().
3509 *
3510 * Allocate an object from this cache. The flags are only relevant
3511 * if the cache has no available objects.
3512 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003513void *kmem_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003514{
Ezequiel Garcia48356302012-09-08 17:47:57 -03003515 void *ret = slab_alloc(cachep, flags, _RET_IP_);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003516
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003517 trace_kmem_cache_alloc(_RET_IP_, ret,
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003518 cachep->object_size, cachep->size, flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003519
3520 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521}
3522EXPORT_SYMBOL(kmem_cache_alloc);
3523
Li Zefan0f24f122009-12-11 15:45:30 +08003524#ifdef CONFIG_TRACING
Steven Rostedt85beb582010-11-24 16:23:34 -05003525void *
Ezequiel Garcia40521472012-09-08 17:47:56 -03003526kmem_cache_alloc_trace(struct kmem_cache *cachep, gfp_t flags, size_t size)
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003527{
Steven Rostedt85beb582010-11-24 16:23:34 -05003528 void *ret;
3529
Ezequiel Garcia48356302012-09-08 17:47:57 -03003530 ret = slab_alloc(cachep, flags, _RET_IP_);
Steven Rostedt85beb582010-11-24 16:23:34 -05003531
3532 trace_kmalloc(_RET_IP_, ret,
Ezequiel Garciaff4fcd02012-09-08 17:47:52 -03003533 size, cachep->size, flags);
Steven Rostedt85beb582010-11-24 16:23:34 -05003534 return ret;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003535}
Steven Rostedt85beb582010-11-24 16:23:34 -05003536EXPORT_SYMBOL(kmem_cache_alloc_trace);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003537#endif
3538
Linus Torvalds1da177e2005-04-16 15:20:36 -07003539#ifdef CONFIG_NUMA
Zhouping Liud0d04b72013-05-16 11:36:23 +08003540/**
3541 * kmem_cache_alloc_node - Allocate an object on the specified node
3542 * @cachep: The cache to allocate from.
3543 * @flags: See kmalloc().
3544 * @nodeid: node number of the target node.
3545 *
3546 * Identical to kmem_cache_alloc but it will allocate memory on the given
3547 * node, which can improve the performance for cpu bound structures.
3548 *
3549 * Fallback to other node is possible if __GFP_THISNODE is not set.
3550 */
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003551void *kmem_cache_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid)
3552{
Ezequiel Garcia48356302012-09-08 17:47:57 -03003553 void *ret = slab_alloc_node(cachep, flags, nodeid, _RET_IP_);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003554
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003555 trace_kmem_cache_alloc_node(_RET_IP_, ret,
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003556 cachep->object_size, cachep->size,
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003557 flags, nodeid);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003558
3559 return ret;
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003560}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003561EXPORT_SYMBOL(kmem_cache_alloc_node);
3562
Li Zefan0f24f122009-12-11 15:45:30 +08003563#ifdef CONFIG_TRACING
Ezequiel Garcia40521472012-09-08 17:47:56 -03003564void *kmem_cache_alloc_node_trace(struct kmem_cache *cachep,
Steven Rostedt85beb582010-11-24 16:23:34 -05003565 gfp_t flags,
Ezequiel Garcia40521472012-09-08 17:47:56 -03003566 int nodeid,
3567 size_t size)
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003568{
Steven Rostedt85beb582010-11-24 16:23:34 -05003569 void *ret;
3570
Ezequiel Garcia592f4142012-09-25 08:07:08 -03003571 ret = slab_alloc_node(cachep, flags, nodeid, _RET_IP_);
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003572
Steven Rostedt85beb582010-11-24 16:23:34 -05003573 trace_kmalloc_node(_RET_IP_, ret,
Ezequiel Garciaff4fcd02012-09-08 17:47:52 -03003574 size, cachep->size,
Steven Rostedt85beb582010-11-24 16:23:34 -05003575 flags, nodeid);
3576 return ret;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003577}
Steven Rostedt85beb582010-11-24 16:23:34 -05003578EXPORT_SYMBOL(kmem_cache_alloc_node_trace);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003579#endif
3580
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003581static __always_inline void *
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003582__do_kmalloc_node(size_t size, gfp_t flags, int node, unsigned long caller)
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003583{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003584 struct kmem_cache *cachep;
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003585
Christoph Lameter2c59dd62013-01-10 19:14:19 +00003586 cachep = kmalloc_slab(size, flags);
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003587 if (unlikely(ZERO_OR_NULL_PTR(cachep)))
3588 return cachep;
Ezequiel Garcia40521472012-09-08 17:47:56 -03003589 return kmem_cache_alloc_node_trace(cachep, flags, node, size);
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003590}
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003591
Li Zefan0bb38a52009-12-11 15:45:50 +08003592#if defined(CONFIG_DEBUG_SLAB) || defined(CONFIG_TRACING)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003593void *__kmalloc_node(size_t size, gfp_t flags, int node)
3594{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003595 return __do_kmalloc_node(size, flags, node, _RET_IP_);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003596}
Christoph Hellwigdbe5e692006-09-25 23:31:36 -07003597EXPORT_SYMBOL(__kmalloc_node);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003598
3599void *__kmalloc_node_track_caller(size_t size, gfp_t flags,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003600 int node, unsigned long caller)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003601{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003602 return __do_kmalloc_node(size, flags, node, caller);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003603}
3604EXPORT_SYMBOL(__kmalloc_node_track_caller);
3605#else
3606void *__kmalloc_node(size_t size, gfp_t flags, int node)
3607{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003608 return __do_kmalloc_node(size, flags, node, 0);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003609}
3610EXPORT_SYMBOL(__kmalloc_node);
Li Zefan0bb38a52009-12-11 15:45:50 +08003611#endif /* CONFIG_DEBUG_SLAB || CONFIG_TRACING */
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003612#endif /* CONFIG_NUMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003613
3614/**
Paul Drynoff800590f2006-06-23 02:03:48 -07003615 * __do_kmalloc - allocate memory
Linus Torvalds1da177e2005-04-16 15:20:36 -07003616 * @size: how many bytes of memory are required.
Paul Drynoff800590f2006-06-23 02:03:48 -07003617 * @flags: the type of memory to allocate (see kmalloc).
Randy Dunlap911851e2006-03-22 00:08:14 -08003618 * @caller: function caller for debug tracking of the caller
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619 */
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003620static __always_inline void *__do_kmalloc(size_t size, gfp_t flags,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003621 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003622{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003623 struct kmem_cache *cachep;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003624 void *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003626 /* If you want to save a few bytes .text space: replace
3627 * __ with kmem_.
3628 * Then kmalloc uses the uninlined functions instead of the inline
3629 * functions.
3630 */
Christoph Lameter2c59dd62013-01-10 19:14:19 +00003631 cachep = kmalloc_slab(size, flags);
Linus Torvaldsa5c96d82007-07-19 13:17:15 -07003632 if (unlikely(ZERO_OR_NULL_PTR(cachep)))
3633 return cachep;
Ezequiel Garcia48356302012-09-08 17:47:57 -03003634 ret = slab_alloc(cachep, flags, caller);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003635
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003636 trace_kmalloc(caller, ret,
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003637 size, cachep->size, flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003638
3639 return ret;
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003640}
3641
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003642
Li Zefan0bb38a52009-12-11 15:45:50 +08003643#if defined(CONFIG_DEBUG_SLAB) || defined(CONFIG_TRACING)
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003644void *__kmalloc(size_t size, gfp_t flags)
3645{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003646 return __do_kmalloc(size, flags, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003647}
3648EXPORT_SYMBOL(__kmalloc);
3649
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003650void *__kmalloc_track_caller(size_t size, gfp_t flags, unsigned long caller)
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003651{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003652 return __do_kmalloc(size, flags, caller);
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003653}
3654EXPORT_SYMBOL(__kmalloc_track_caller);
Christoph Hellwig1d2c8ee2006-10-04 02:15:25 -07003655
3656#else
3657void *__kmalloc(size_t size, gfp_t flags)
3658{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003659 return __do_kmalloc(size, flags, 0);
Christoph Hellwig1d2c8ee2006-10-04 02:15:25 -07003660}
3661EXPORT_SYMBOL(__kmalloc);
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003662#endif
3663
Linus Torvalds1da177e2005-04-16 15:20:36 -07003664/**
3665 * kmem_cache_free - Deallocate an object
3666 * @cachep: The cache the allocation was from.
3667 * @objp: The previously allocated object.
3668 *
3669 * Free an object which was previously allocated from this
3670 * cache.
3671 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003672void kmem_cache_free(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003673{
3674 unsigned long flags;
Glauber Costab9ce5ef2012-12-18 14:22:46 -08003675 cachep = cache_from_obj(cachep, objp);
3676 if (!cachep)
3677 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003678
3679 local_irq_save(flags);
Feng Tangd97d4762012-07-02 14:29:10 +08003680 debug_check_no_locks_freed(objp, cachep->object_size);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -07003681 if (!(cachep->flags & SLAB_DEBUG_OBJECTS))
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003682 debug_check_no_obj_freed(objp, cachep->object_size);
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003683 __cache_free(cachep, objp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003684 local_irq_restore(flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003685
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003686 trace_kmem_cache_free(_RET_IP_, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003687}
3688EXPORT_SYMBOL(kmem_cache_free);
3689
3690/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691 * kfree - free previously allocated memory
3692 * @objp: pointer returned by kmalloc.
3693 *
Pekka Enberg80e93ef2005-09-09 13:10:16 -07003694 * If @objp is NULL, no operation is performed.
3695 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003696 * Don't free memory not originally allocated by kmalloc()
3697 * or you will run into trouble.
3698 */
3699void kfree(const void *objp)
3700{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003701 struct kmem_cache *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003702 unsigned long flags;
3703
Pekka Enberg2121db72009-03-25 11:05:57 +02003704 trace_kfree(_RET_IP_, objp);
3705
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003706 if (unlikely(ZERO_OR_NULL_PTR(objp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003707 return;
3708 local_irq_save(flags);
3709 kfree_debugcheck(objp);
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -08003710 c = virt_to_cache(objp);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003711 debug_check_no_locks_freed(objp, c->object_size);
3712
3713 debug_check_no_obj_freed(objp, c->object_size);
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003714 __cache_free(c, (void *)objp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003715 local_irq_restore(flags);
3716}
3717EXPORT_SYMBOL(kfree);
3718
Christoph Lametere498be72005-09-09 13:03:32 -07003719/*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003720 * This initializes kmem_cache_node or resizes various caches for all nodes.
Christoph Lametere498be72005-09-09 13:03:32 -07003721 */
Pekka Enberg83b519e2009-06-10 19:40:04 +03003722static int alloc_kmemlist(struct kmem_cache *cachep, gfp_t gfp)
Christoph Lametere498be72005-09-09 13:03:32 -07003723{
3724 int node;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003725 struct kmem_cache_node *n;
Christoph Lametercafeb022006-03-25 03:06:46 -08003726 struct array_cache *new_shared;
Paul Menage3395ee02006-12-06 20:32:16 -08003727 struct array_cache **new_alien = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07003728
Mel Gorman9c09a952008-01-24 05:49:54 -08003729 for_each_online_node(node) {
Christoph Lametercafeb022006-03-25 03:06:46 -08003730
Paul Menage3395ee02006-12-06 20:32:16 -08003731 if (use_alien_caches) {
Pekka Enberg83b519e2009-06-10 19:40:04 +03003732 new_alien = alloc_alien_cache(node, cachep->limit, gfp);
Paul Menage3395ee02006-12-06 20:32:16 -08003733 if (!new_alien)
3734 goto fail;
3735 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003736
Eric Dumazet63109842007-05-06 14:49:28 -07003737 new_shared = NULL;
3738 if (cachep->shared) {
3739 new_shared = alloc_arraycache(node,
Christoph Lameter0718dc22006-03-25 03:06:47 -08003740 cachep->shared*cachep->batchcount,
Pekka Enberg83b519e2009-06-10 19:40:04 +03003741 0xbaadf00d, gfp);
Eric Dumazet63109842007-05-06 14:49:28 -07003742 if (!new_shared) {
3743 free_alien_cache(new_alien);
3744 goto fail;
3745 }
Christoph Lameter0718dc22006-03-25 03:06:47 -08003746 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003747
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003748 n = cachep->node[node];
3749 if (n) {
3750 struct array_cache *shared = n->shared;
Christoph Lametercafeb022006-03-25 03:06:46 -08003751
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003752 spin_lock_irq(&n->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07003753
Christoph Lametercafeb022006-03-25 03:06:46 -08003754 if (shared)
Christoph Lameter0718dc22006-03-25 03:06:47 -08003755 free_block(cachep, shared->entry,
3756 shared->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -07003757
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003758 n->shared = new_shared;
3759 if (!n->alien) {
3760 n->alien = new_alien;
Christoph Lametere498be72005-09-09 13:03:32 -07003761 new_alien = NULL;
3762 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003763 n->free_limit = (1 + nr_cpus_node(node)) *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003764 cachep->batchcount + cachep->num;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003765 spin_unlock_irq(&n->list_lock);
Christoph Lametercafeb022006-03-25 03:06:46 -08003766 kfree(shared);
Christoph Lametere498be72005-09-09 13:03:32 -07003767 free_alien_cache(new_alien);
3768 continue;
3769 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003770 n = kmalloc_node(sizeof(struct kmem_cache_node), gfp, node);
3771 if (!n) {
Christoph Lameter0718dc22006-03-25 03:06:47 -08003772 free_alien_cache(new_alien);
3773 kfree(new_shared);
Christoph Lametere498be72005-09-09 13:03:32 -07003774 goto fail;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003775 }
Christoph Lametere498be72005-09-09 13:03:32 -07003776
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003777 kmem_cache_node_init(n);
3778 n->next_reap = jiffies + REAPTIMEOUT_LIST3 +
Andrew Mortona737b3e2006-03-22 00:08:11 -08003779 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003780 n->shared = new_shared;
3781 n->alien = new_alien;
3782 n->free_limit = (1 + nr_cpus_node(node)) *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003783 cachep->batchcount + cachep->num;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003784 cachep->node[node] = n;
Christoph Lametere498be72005-09-09 13:03:32 -07003785 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003786 return 0;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003787
Andrew Mortona737b3e2006-03-22 00:08:11 -08003788fail:
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003789 if (!cachep->list.next) {
Christoph Lameter0718dc22006-03-25 03:06:47 -08003790 /* Cache is not active yet. Roll back what we did */
3791 node--;
3792 while (node >= 0) {
Christoph Lameter6a673682013-01-10 19:14:19 +00003793 if (cachep->node[node]) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003794 n = cachep->node[node];
Christoph Lameter0718dc22006-03-25 03:06:47 -08003795
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003796 kfree(n->shared);
3797 free_alien_cache(n->alien);
3798 kfree(n);
Christoph Lameter6a673682013-01-10 19:14:19 +00003799 cachep->node[node] = NULL;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003800 }
3801 node--;
3802 }
3803 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003804 return -ENOMEM;
Christoph Lametere498be72005-09-09 13:03:32 -07003805}
3806
Linus Torvalds1da177e2005-04-16 15:20:36 -07003807struct ccupdate_struct {
Pekka Enberg343e0d72006-02-01 03:05:50 -08003808 struct kmem_cache *cachep;
Eric Dumazetacfe7d72011-07-25 08:55:42 +02003809 struct array_cache *new[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003810};
3811
3812static void do_ccupdate_local(void *info)
3813{
Andrew Mortona737b3e2006-03-22 00:08:11 -08003814 struct ccupdate_struct *new = info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003815 struct array_cache *old;
3816
3817 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003818 old = cpu_cache_get(new->cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003819
Linus Torvalds1da177e2005-04-16 15:20:36 -07003820 new->cachep->array[smp_processor_id()] = new->new[smp_processor_id()];
3821 new->new[smp_processor_id()] = old;
3822}
3823
Christoph Lameter18004c52012-07-06 15:25:12 -05003824/* Always called with the slab_mutex held */
Glauber Costa943a4512012-12-18 14:23:03 -08003825static int __do_tune_cpucache(struct kmem_cache *cachep, int limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03003826 int batchcount, int shared, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003827{
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003828 struct ccupdate_struct *new;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07003829 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003830
Eric Dumazetacfe7d72011-07-25 08:55:42 +02003831 new = kzalloc(sizeof(*new) + nr_cpu_ids * sizeof(struct array_cache *),
3832 gfp);
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003833 if (!new)
3834 return -ENOMEM;
3835
Christoph Lametere498be72005-09-09 13:03:32 -07003836 for_each_online_cpu(i) {
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003837 new->new[i] = alloc_arraycache(cpu_to_mem(i), limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03003838 batchcount, gfp);
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003839 if (!new->new[i]) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003840 for (i--; i >= 0; i--)
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003841 kfree(new->new[i]);
3842 kfree(new);
Christoph Lametere498be72005-09-09 13:03:32 -07003843 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844 }
3845 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003846 new->cachep = cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003847
Jens Axboe15c8b6c2008-05-09 09:39:44 +02003848 on_each_cpu(do_ccupdate_local, (void *)new, 1);
Christoph Lametere498be72005-09-09 13:03:32 -07003849
Linus Torvalds1da177e2005-04-16 15:20:36 -07003850 check_irq_on();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003851 cachep->batchcount = batchcount;
3852 cachep->limit = limit;
Christoph Lametere498be72005-09-09 13:03:32 -07003853 cachep->shared = shared;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003854
Christoph Lametere498be72005-09-09 13:03:32 -07003855 for_each_online_cpu(i) {
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003856 struct array_cache *ccold = new->new[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857 if (!ccold)
3858 continue;
Christoph Lameter6a673682013-01-10 19:14:19 +00003859 spin_lock_irq(&cachep->node[cpu_to_mem(i)]->list_lock);
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003860 free_block(cachep, ccold->entry, ccold->avail, cpu_to_mem(i));
Christoph Lameter6a673682013-01-10 19:14:19 +00003861 spin_unlock_irq(&cachep->node[cpu_to_mem(i)]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003862 kfree(ccold);
3863 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003864 kfree(new);
Pekka Enberg83b519e2009-06-10 19:40:04 +03003865 return alloc_kmemlist(cachep, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003866}
3867
Glauber Costa943a4512012-12-18 14:23:03 -08003868static int do_tune_cpucache(struct kmem_cache *cachep, int limit,
3869 int batchcount, int shared, gfp_t gfp)
3870{
3871 int ret;
3872 struct kmem_cache *c = NULL;
3873 int i = 0;
3874
3875 ret = __do_tune_cpucache(cachep, limit, batchcount, shared, gfp);
3876
3877 if (slab_state < FULL)
3878 return ret;
3879
3880 if ((ret < 0) || !is_root_cache(cachep))
3881 return ret;
3882
Glauber Costaebe945c2012-12-18 14:23:10 -08003883 VM_BUG_ON(!mutex_is_locked(&slab_mutex));
Glauber Costa943a4512012-12-18 14:23:03 -08003884 for_each_memcg_cache_index(i) {
Qiang Huang2ade4de2013-11-12 15:08:23 -08003885 c = cache_from_memcg_idx(cachep, i);
Glauber Costa943a4512012-12-18 14:23:03 -08003886 if (c)
3887 /* return value determined by the parent cache only */
3888 __do_tune_cpucache(c, limit, batchcount, shared, gfp);
3889 }
3890
3891 return ret;
3892}
3893
Christoph Lameter18004c52012-07-06 15:25:12 -05003894/* Called with slab_mutex held always */
Pekka Enberg83b519e2009-06-10 19:40:04 +03003895static int enable_cpucache(struct kmem_cache *cachep, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003896{
3897 int err;
Glauber Costa943a4512012-12-18 14:23:03 -08003898 int limit = 0;
3899 int shared = 0;
3900 int batchcount = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901
Glauber Costa943a4512012-12-18 14:23:03 -08003902 if (!is_root_cache(cachep)) {
3903 struct kmem_cache *root = memcg_root_cache(cachep);
3904 limit = root->limit;
3905 shared = root->shared;
3906 batchcount = root->batchcount;
3907 }
3908
3909 if (limit && shared && batchcount)
3910 goto skip_setup;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003911 /*
3912 * The head array serves three purposes:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003913 * - create a LIFO ordering, i.e. return objects that are cache-warm
3914 * - reduce the number of spinlock operations.
Andrew Mortona737b3e2006-03-22 00:08:11 -08003915 * - reduce the number of linked list operations on the slab and
Linus Torvalds1da177e2005-04-16 15:20:36 -07003916 * bufctl chains: array operations are cheaper.
3917 * The numbers are guessed, we should auto-tune as described by
3918 * Bonwick.
3919 */
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003920 if (cachep->size > 131072)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921 limit = 1;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003922 else if (cachep->size > PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923 limit = 8;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003924 else if (cachep->size > 1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003925 limit = 24;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003926 else if (cachep->size > 256)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003927 limit = 54;
3928 else
3929 limit = 120;
3930
Andrew Mortona737b3e2006-03-22 00:08:11 -08003931 /*
3932 * CPU bound tasks (e.g. network routing) can exhibit cpu bound
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933 * allocation behaviour: Most allocs on one cpu, most free operations
3934 * on another cpu. For these cases, an efficient object passing between
3935 * cpus is necessary. This is provided by a shared array. The array
3936 * replaces Bonwick's magazine layer.
3937 * On uniprocessor, it's functionally equivalent (but less efficient)
3938 * to a larger limit. Thus disabled by default.
3939 */
3940 shared = 0;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003941 if (cachep->size <= PAGE_SIZE && num_possible_cpus() > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942 shared = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003943
3944#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08003945 /*
3946 * With debugging enabled, large batchcount lead to excessively long
3947 * periods with disabled local interrupts. Limit the batchcount
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948 */
3949 if (limit > 32)
3950 limit = 32;
3951#endif
Glauber Costa943a4512012-12-18 14:23:03 -08003952 batchcount = (limit + 1) / 2;
3953skip_setup:
3954 err = do_tune_cpucache(cachep, limit, batchcount, shared, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003955 if (err)
3956 printk(KERN_ERR "enable_cpucache failed for %s, error %d.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003957 cachep->name, -err);
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07003958 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003959}
3960
Christoph Lameter1b552532006-03-22 00:09:07 -08003961/*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003962 * Drain an array if it contains any elements taking the node lock only if
3963 * necessary. Note that the node listlock also protects the array_cache
Christoph Lameterb18e7e62006-03-22 00:09:07 -08003964 * if drain_array() is used on the shared array.
Christoph Lameter1b552532006-03-22 00:09:07 -08003965 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003966static void drain_array(struct kmem_cache *cachep, struct kmem_cache_node *n,
Christoph Lameter1b552532006-03-22 00:09:07 -08003967 struct array_cache *ac, int force, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003968{
3969 int tofree;
3970
Christoph Lameter1b552532006-03-22 00:09:07 -08003971 if (!ac || !ac->avail)
3972 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003973 if (ac->touched && !force) {
3974 ac->touched = 0;
Christoph Lameterb18e7e62006-03-22 00:09:07 -08003975 } else {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003976 spin_lock_irq(&n->list_lock);
Christoph Lameterb18e7e62006-03-22 00:09:07 -08003977 if (ac->avail) {
3978 tofree = force ? ac->avail : (ac->limit + 4) / 5;
3979 if (tofree > ac->avail)
3980 tofree = (ac->avail + 1) / 2;
3981 free_block(cachep, ac->entry, tofree, node);
3982 ac->avail -= tofree;
3983 memmove(ac->entry, &(ac->entry[tofree]),
3984 sizeof(void *) * ac->avail);
3985 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003986 spin_unlock_irq(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003987 }
3988}
3989
3990/**
3991 * cache_reap - Reclaim memory from caches.
Randy Dunlap05fb6bf2007-02-28 20:12:13 -08003992 * @w: work descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -07003993 *
3994 * Called from workqueue/eventd every few seconds.
3995 * Purpose:
3996 * - clear the per-cpu caches for this CPU.
3997 * - return freeable pages to the main free memory pool.
3998 *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003999 * If we cannot acquire the cache chain mutex then just give up - we'll try
4000 * again on the next iteration.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004001 */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004002static void cache_reap(struct work_struct *w)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004003{
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004004 struct kmem_cache *searchp;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004005 struct kmem_cache_node *n;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07004006 int node = numa_mem_id();
Jean Delvarebf6aede2009-04-02 16:56:54 -07004007 struct delayed_work *work = to_delayed_work(w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008
Christoph Lameter18004c52012-07-06 15:25:12 -05004009 if (!mutex_trylock(&slab_mutex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004010 /* Give up. Setup the next iteration. */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004011 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004012
Christoph Lameter18004c52012-07-06 15:25:12 -05004013 list_for_each_entry(searchp, &slab_caches, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004014 check_irq_on();
4015
Christoph Lameter35386e32006-03-22 00:09:05 -08004016 /*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004017 * We only take the node lock if absolutely necessary and we
Christoph Lameter35386e32006-03-22 00:09:05 -08004018 * have established with reasonable certainty that
4019 * we can do some work if the lock was obtained.
4020 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004021 n = searchp->node[node];
Christoph Lameter35386e32006-03-22 00:09:05 -08004022
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004023 reap_alien(searchp, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004024
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004025 drain_array(searchp, n, cpu_cache_get(searchp), 0, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004026
Christoph Lameter35386e32006-03-22 00:09:05 -08004027 /*
4028 * These are racy checks but it does not matter
4029 * if we skip one check or scan twice.
4030 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004031 if (time_after(n->next_reap, jiffies))
Christoph Lameter35386e32006-03-22 00:09:05 -08004032 goto next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004033
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004034 n->next_reap = jiffies + REAPTIMEOUT_LIST3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004036 drain_array(searchp, n, n->shared, 0, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004037
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004038 if (n->free_touched)
4039 n->free_touched = 0;
Christoph Lametered11d9e2006-06-30 01:55:45 -07004040 else {
4041 int freed;
4042
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004043 freed = drain_freelist(searchp, n, (n->free_limit +
Christoph Lametered11d9e2006-06-30 01:55:45 -07004044 5 * searchp->num - 1) / (5 * searchp->num));
4045 STATS_ADD_REAPED(searchp, freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004046 }
Christoph Lameter35386e32006-03-22 00:09:05 -08004047next:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004048 cond_resched();
4049 }
4050 check_irq_on();
Christoph Lameter18004c52012-07-06 15:25:12 -05004051 mutex_unlock(&slab_mutex);
Christoph Lameter8fce4d82006-03-09 17:33:54 -08004052 next_reap_node();
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004053out:
Andrew Mortona737b3e2006-03-22 00:08:11 -08004054 /* Set up the next iteration */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004055 schedule_delayed_work(work, round_jiffies_relative(REAPTIMEOUT_CPUC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004056}
4057
Linus Torvalds158a9622008-01-02 13:04:48 -08004058#ifdef CONFIG_SLABINFO
Glauber Costa0d7561c2012-10-19 18:20:27 +04004059void get_slabinfo(struct kmem_cache *cachep, struct slabinfo *sinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004060{
Joonsoo Kim8456a642013-10-24 10:07:49 +09004061 struct page *page;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004062 unsigned long active_objs;
4063 unsigned long num_objs;
4064 unsigned long active_slabs = 0;
4065 unsigned long num_slabs, free_objects = 0, shared_avail = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07004066 const char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004067 char *error = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07004068 int node;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004069 struct kmem_cache_node *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004070
Linus Torvalds1da177e2005-04-16 15:20:36 -07004071 active_objs = 0;
4072 num_slabs = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07004073 for_each_online_node(node) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004074 n = cachep->node[node];
4075 if (!n)
Christoph Lametere498be72005-09-09 13:03:32 -07004076 continue;
4077
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08004078 check_irq_on();
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004079 spin_lock_irq(&n->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07004080
Joonsoo Kim8456a642013-10-24 10:07:49 +09004081 list_for_each_entry(page, &n->slabs_full, lru) {
4082 if (page->active != cachep->num && !error)
Christoph Lametere498be72005-09-09 13:03:32 -07004083 error = "slabs_full accounting error";
4084 active_objs += cachep->num;
4085 active_slabs++;
4086 }
Joonsoo Kim8456a642013-10-24 10:07:49 +09004087 list_for_each_entry(page, &n->slabs_partial, lru) {
4088 if (page->active == cachep->num && !error)
Joonsoo Kim106a74e2013-10-24 10:07:48 +09004089 error = "slabs_partial accounting error";
Joonsoo Kim8456a642013-10-24 10:07:49 +09004090 if (!page->active && !error)
Joonsoo Kim106a74e2013-10-24 10:07:48 +09004091 error = "slabs_partial accounting error";
Joonsoo Kim8456a642013-10-24 10:07:49 +09004092 active_objs += page->active;
Christoph Lametere498be72005-09-09 13:03:32 -07004093 active_slabs++;
4094 }
Joonsoo Kim8456a642013-10-24 10:07:49 +09004095 list_for_each_entry(page, &n->slabs_free, lru) {
4096 if (page->active && !error)
Joonsoo Kim106a74e2013-10-24 10:07:48 +09004097 error = "slabs_free accounting error";
Christoph Lametere498be72005-09-09 13:03:32 -07004098 num_slabs++;
4099 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004100 free_objects += n->free_objects;
4101 if (n->shared)
4102 shared_avail += n->shared->avail;
Christoph Lametere498be72005-09-09 13:03:32 -07004103
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004104 spin_unlock_irq(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004105 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004106 num_slabs += active_slabs;
4107 num_objs = num_slabs * cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07004108 if (num_objs - active_objs != free_objects && !error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004109 error = "free_objects accounting error";
4110
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004111 name = cachep->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004112 if (error)
4113 printk(KERN_ERR "slab: cache %s error: %s\n", name, error);
4114
Glauber Costa0d7561c2012-10-19 18:20:27 +04004115 sinfo->active_objs = active_objs;
4116 sinfo->num_objs = num_objs;
4117 sinfo->active_slabs = active_slabs;
4118 sinfo->num_slabs = num_slabs;
4119 sinfo->shared_avail = shared_avail;
4120 sinfo->limit = cachep->limit;
4121 sinfo->batchcount = cachep->batchcount;
4122 sinfo->shared = cachep->shared;
4123 sinfo->objects_per_slab = cachep->num;
4124 sinfo->cache_order = cachep->gfporder;
4125}
4126
4127void slabinfo_show_stats(struct seq_file *m, struct kmem_cache *cachep)
4128{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004129#if STATS
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004130 { /* node stats */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004131 unsigned long high = cachep->high_mark;
4132 unsigned long allocs = cachep->num_allocations;
4133 unsigned long grown = cachep->grown;
4134 unsigned long reaped = cachep->reaped;
4135 unsigned long errors = cachep->errors;
4136 unsigned long max_freeable = cachep->max_freeable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004137 unsigned long node_allocs = cachep->node_allocs;
Christoph Lametere498be72005-09-09 13:03:32 -07004138 unsigned long node_frees = cachep->node_frees;
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -07004139 unsigned long overflows = cachep->node_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004140
Joe Perchese92dd4f2010-03-26 19:27:58 -07004141 seq_printf(m, " : globalstat %7lu %6lu %5lu %4lu "
4142 "%4lu %4lu %4lu %4lu %4lu",
4143 allocs, high, grown,
4144 reaped, errors, max_freeable, node_allocs,
4145 node_frees, overflows);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004146 }
4147 /* cpu stats */
4148 {
4149 unsigned long allochit = atomic_read(&cachep->allochit);
4150 unsigned long allocmiss = atomic_read(&cachep->allocmiss);
4151 unsigned long freehit = atomic_read(&cachep->freehit);
4152 unsigned long freemiss = atomic_read(&cachep->freemiss);
4153
4154 seq_printf(m, " : cpustat %6lu %6lu %6lu %6lu",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004155 allochit, allocmiss, freehit, freemiss);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004156 }
4157#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004158}
4159
Linus Torvalds1da177e2005-04-16 15:20:36 -07004160#define MAX_SLABINFO_WRITE 128
4161/**
4162 * slabinfo_write - Tuning for the slab allocator
4163 * @file: unused
4164 * @buffer: user buffer
4165 * @count: data length
4166 * @ppos: unused
4167 */
Glauber Costab7454ad2012-10-19 18:20:25 +04004168ssize_t slabinfo_write(struct file *file, const char __user *buffer,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004169 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004170{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004171 char kbuf[MAX_SLABINFO_WRITE + 1], *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004172 int limit, batchcount, shared, res;
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004173 struct kmem_cache *cachep;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004174
Linus Torvalds1da177e2005-04-16 15:20:36 -07004175 if (count > MAX_SLABINFO_WRITE)
4176 return -EINVAL;
4177 if (copy_from_user(&kbuf, buffer, count))
4178 return -EFAULT;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004179 kbuf[MAX_SLABINFO_WRITE] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07004180
4181 tmp = strchr(kbuf, ' ');
4182 if (!tmp)
4183 return -EINVAL;
4184 *tmp = '\0';
4185 tmp++;
4186 if (sscanf(tmp, " %d %d %d", &limit, &batchcount, &shared) != 3)
4187 return -EINVAL;
4188
4189 /* Find the cache in the chain of caches. */
Christoph Lameter18004c52012-07-06 15:25:12 -05004190 mutex_lock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004191 res = -EINVAL;
Christoph Lameter18004c52012-07-06 15:25:12 -05004192 list_for_each_entry(cachep, &slab_caches, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004193 if (!strcmp(cachep->name, kbuf)) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08004194 if (limit < 1 || batchcount < 1 ||
4195 batchcount > limit || shared < 0) {
Christoph Lametere498be72005-09-09 13:03:32 -07004196 res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004197 } else {
Christoph Lametere498be72005-09-09 13:03:32 -07004198 res = do_tune_cpucache(cachep, limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03004199 batchcount, shared,
4200 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004201 }
4202 break;
4203 }
4204 }
Christoph Lameter18004c52012-07-06 15:25:12 -05004205 mutex_unlock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004206 if (res >= 0)
4207 res = count;
4208 return res;
4209}
Al Viro871751e2006-03-25 03:06:39 -08004210
4211#ifdef CONFIG_DEBUG_SLAB_LEAK
4212
4213static void *leaks_start(struct seq_file *m, loff_t *pos)
4214{
Christoph Lameter18004c52012-07-06 15:25:12 -05004215 mutex_lock(&slab_mutex);
4216 return seq_list_start(&slab_caches, *pos);
Al Viro871751e2006-03-25 03:06:39 -08004217}
4218
4219static inline int add_caller(unsigned long *n, unsigned long v)
4220{
4221 unsigned long *p;
4222 int l;
4223 if (!v)
4224 return 1;
4225 l = n[1];
4226 p = n + 2;
4227 while (l) {
4228 int i = l/2;
4229 unsigned long *q = p + 2 * i;
4230 if (*q == v) {
4231 q[1]++;
4232 return 1;
4233 }
4234 if (*q > v) {
4235 l = i;
4236 } else {
4237 p = q + 2;
4238 l -= i + 1;
4239 }
4240 }
4241 if (++n[1] == n[0])
4242 return 0;
4243 memmove(p + 2, p, n[1] * 2 * sizeof(unsigned long) - ((void *)p - (void *)n));
4244 p[0] = v;
4245 p[1] = 1;
4246 return 1;
4247}
4248
Joonsoo Kim8456a642013-10-24 10:07:49 +09004249static void handle_slab(unsigned long *n, struct kmem_cache *c,
4250 struct page *page)
Al Viro871751e2006-03-25 03:06:39 -08004251{
4252 void *p;
Joonsoo Kimd35426e2014-06-23 13:22:06 -07004253 int i;
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09004254
Al Viro871751e2006-03-25 03:06:39 -08004255 if (n[0] == n[1])
4256 return;
Joonsoo Kim8456a642013-10-24 10:07:49 +09004257 for (i = 0, p = page->s_mem; i < c->num; i++, p += c->size) {
Joonsoo Kimd35426e2014-06-23 13:22:06 -07004258 if (get_obj_status(page, i) != OBJECT_ACTIVE)
Al Viro871751e2006-03-25 03:06:39 -08004259 continue;
Joonsoo Kimb1cb0982013-10-24 10:07:45 +09004260
Al Viro871751e2006-03-25 03:06:39 -08004261 if (!add_caller(n, (unsigned long)*dbg_userword(c, p)))
4262 return;
4263 }
4264}
4265
4266static void show_symbol(struct seq_file *m, unsigned long address)
4267{
4268#ifdef CONFIG_KALLSYMS
Al Viro871751e2006-03-25 03:06:39 -08004269 unsigned long offset, size;
Tejun Heo9281ace2007-07-17 04:03:51 -07004270 char modname[MODULE_NAME_LEN], name[KSYM_NAME_LEN];
Al Viro871751e2006-03-25 03:06:39 -08004271
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004272 if (lookup_symbol_attrs(address, &size, &offset, modname, name) == 0) {
Al Viro871751e2006-03-25 03:06:39 -08004273 seq_printf(m, "%s+%#lx/%#lx", name, offset, size);
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004274 if (modname[0])
Al Viro871751e2006-03-25 03:06:39 -08004275 seq_printf(m, " [%s]", modname);
4276 return;
4277 }
4278#endif
4279 seq_printf(m, "%p", (void *)address);
4280}
4281
4282static int leaks_show(struct seq_file *m, void *p)
4283{
Thierry Reding0672aa72012-06-22 19:42:49 +02004284 struct kmem_cache *cachep = list_entry(p, struct kmem_cache, list);
Joonsoo Kim8456a642013-10-24 10:07:49 +09004285 struct page *page;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004286 struct kmem_cache_node *n;
Al Viro871751e2006-03-25 03:06:39 -08004287 const char *name;
Christoph Lameterdb845062013-02-05 18:45:23 +00004288 unsigned long *x = m->private;
Al Viro871751e2006-03-25 03:06:39 -08004289 int node;
4290 int i;
4291
4292 if (!(cachep->flags & SLAB_STORE_USER))
4293 return 0;
4294 if (!(cachep->flags & SLAB_RED_ZONE))
4295 return 0;
4296
4297 /* OK, we can do it */
4298
Christoph Lameterdb845062013-02-05 18:45:23 +00004299 x[1] = 0;
Al Viro871751e2006-03-25 03:06:39 -08004300
4301 for_each_online_node(node) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004302 n = cachep->node[node];
4303 if (!n)
Al Viro871751e2006-03-25 03:06:39 -08004304 continue;
4305
4306 check_irq_on();
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004307 spin_lock_irq(&n->list_lock);
Al Viro871751e2006-03-25 03:06:39 -08004308
Joonsoo Kim8456a642013-10-24 10:07:49 +09004309 list_for_each_entry(page, &n->slabs_full, lru)
4310 handle_slab(x, cachep, page);
4311 list_for_each_entry(page, &n->slabs_partial, lru)
4312 handle_slab(x, cachep, page);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004313 spin_unlock_irq(&n->list_lock);
Al Viro871751e2006-03-25 03:06:39 -08004314 }
4315 name = cachep->name;
Christoph Lameterdb845062013-02-05 18:45:23 +00004316 if (x[0] == x[1]) {
Al Viro871751e2006-03-25 03:06:39 -08004317 /* Increase the buffer size */
Christoph Lameter18004c52012-07-06 15:25:12 -05004318 mutex_unlock(&slab_mutex);
Christoph Lameterdb845062013-02-05 18:45:23 +00004319 m->private = kzalloc(x[0] * 4 * sizeof(unsigned long), GFP_KERNEL);
Al Viro871751e2006-03-25 03:06:39 -08004320 if (!m->private) {
4321 /* Too bad, we are really out */
Christoph Lameterdb845062013-02-05 18:45:23 +00004322 m->private = x;
Christoph Lameter18004c52012-07-06 15:25:12 -05004323 mutex_lock(&slab_mutex);
Al Viro871751e2006-03-25 03:06:39 -08004324 return -ENOMEM;
4325 }
Christoph Lameterdb845062013-02-05 18:45:23 +00004326 *(unsigned long *)m->private = x[0] * 2;
4327 kfree(x);
Christoph Lameter18004c52012-07-06 15:25:12 -05004328 mutex_lock(&slab_mutex);
Al Viro871751e2006-03-25 03:06:39 -08004329 /* Now make sure this entry will be retried */
4330 m->count = m->size;
4331 return 0;
4332 }
Christoph Lameterdb845062013-02-05 18:45:23 +00004333 for (i = 0; i < x[1]; i++) {
4334 seq_printf(m, "%s: %lu ", name, x[2*i+3]);
4335 show_symbol(m, x[2*i+2]);
Al Viro871751e2006-03-25 03:06:39 -08004336 seq_putc(m, '\n');
4337 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004338
Al Viro871751e2006-03-25 03:06:39 -08004339 return 0;
4340}
4341
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004342static const struct seq_operations slabstats_op = {
Al Viro871751e2006-03-25 03:06:39 -08004343 .start = leaks_start,
Wanpeng Li276a2432013-07-08 08:08:28 +08004344 .next = slab_next,
4345 .stop = slab_stop,
Al Viro871751e2006-03-25 03:06:39 -08004346 .show = leaks_show,
4347};
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004348
4349static int slabstats_open(struct inode *inode, struct file *file)
4350{
4351 unsigned long *n = kzalloc(PAGE_SIZE, GFP_KERNEL);
4352 int ret = -ENOMEM;
4353 if (n) {
4354 ret = seq_open(file, &slabstats_op);
4355 if (!ret) {
4356 struct seq_file *m = file->private_data;
4357 *n = PAGE_SIZE / (2 * sizeof(unsigned long));
4358 m->private = n;
4359 n = NULL;
4360 }
4361 kfree(n);
4362 }
4363 return ret;
4364}
4365
4366static const struct file_operations proc_slabstats_operations = {
4367 .open = slabstats_open,
4368 .read = seq_read,
4369 .llseek = seq_lseek,
4370 .release = seq_release_private,
4371};
Al Viro871751e2006-03-25 03:06:39 -08004372#endif
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004373
4374static int __init slab_proc_init(void)
4375{
4376#ifdef CONFIG_DEBUG_SLAB_LEAK
4377 proc_create("slab_allocators", 0, NULL, &proc_slabstats_operations);
4378#endif
4379 return 0;
4380}
4381module_init(slab_proc_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004382#endif
4383
Manfred Spraul00e145b2005-09-03 15:55:07 -07004384/**
4385 * ksize - get the actual amount of memory allocated for a given object
4386 * @objp: Pointer to the object
4387 *
4388 * kmalloc may internally round up allocations and return more memory
4389 * than requested. ksize() can be used to determine the actual amount of
4390 * memory allocated. The caller may use this additional memory, even though
4391 * a smaller amount of memory was initially specified with the kmalloc call.
4392 * The caller must guarantee that objp points to a valid object previously
4393 * allocated with either kmalloc() or kmem_cache_alloc(). The object
4394 * must not be freed during the duration of the call.
4395 */
Pekka Enbergfd76bab2007-05-06 14:48:40 -07004396size_t ksize(const void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004397{
Christoph Lameteref8b4522007-10-16 01:24:46 -07004398 BUG_ON(!objp);
4399 if (unlikely(objp == ZERO_SIZE_PTR))
Manfred Spraul00e145b2005-09-03 15:55:07 -07004400 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004401
Christoph Lameter8c138bc2012-06-13 10:24:58 -05004402 return virt_to_cache(objp)->object_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004403}
Kirill A. Shutemovb1aabec2009-02-10 15:21:44 +02004404EXPORT_SYMBOL(ksize);