blob: c162b2eb493a6b2a662d714c064a7d9d317dbc46 [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/*
167 * kmem_bufctl_t:
168 *
169 * Bufctl's are used for linking objs within a slab
170 * linked offsets.
171 *
172 * This implementation relies on "struct page" for locating the cache &
173 * slab an object belongs to.
174 * This allows the bufctl structure to be small (one int), but limits
175 * the number of objects a slab (not a cache) can contain when off-slab
176 * bufctls are used. The limit is the size of the largest general cache
177 * that does not use off-slab slabs.
178 * For 32bit archs with 4 kB pages, is this 56.
179 * This is not serious, as it is only for large objects, when it is unwise
180 * to have too many per slab.
181 * Note: This limit can be raised by introducing a general cache whose size
182 * is less than 512 (PAGE_SIZE<<3), but greater than 256.
183 */
184
Kyle Moffettfa5b08d2005-09-03 15:55:03 -0700185typedef unsigned int kmem_bufctl_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186#define BUFCTL_END (((kmem_bufctl_t)(~0U))-0)
187#define BUFCTL_FREE (((kmem_bufctl_t)(~0U))-1)
Al Viro871751e2006-03-25 03:06:39 -0800188#define BUFCTL_ACTIVE (((kmem_bufctl_t)(~0U))-2)
189#define SLAB_LIMIT (((kmem_bufctl_t)(~0U))-3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 * struct slab_rcu
193 *
194 * slab_destroy on a SLAB_DESTROY_BY_RCU cache uses this structure to
195 * arrange for kmem_freepages to be called via RCU. This is useful if
196 * we need to approach a kernel structure obliquely, from its address
197 * obtained without the usual locking. We can lock the structure to
198 * stabilize it and check it's still at the given address, only if we
199 * can be sure that the memory has not been meanwhile reused for some
200 * other kind of object (which our subsystem's lock might corrupt).
201 *
202 * rcu_read_lock before reading the address, then rcu_read_unlock after
203 * taking the spinlock within the structure expected at that address.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 */
205struct slab_rcu {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800206 struct rcu_head head;
Pekka Enberg343e0d72006-02-01 03:05:50 -0800207 struct kmem_cache *cachep;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800208 void *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209};
210
211/*
Lai Jiangshan5bfe53a2011-03-10 15:22:24 +0800212 * struct slab
213 *
214 * Manages the objs in a slab. Placed either at the beginning of mem allocated
215 * for a slab, or allocated from an general cache.
216 * Slabs are chained into three list: fully used, partial, fully free slabs.
217 */
218struct slab {
219 union {
220 struct {
221 struct list_head list;
222 unsigned long colouroff;
223 void *s_mem; /* including colour offset */
224 unsigned int inuse; /* num of objs active in slab */
225 kmem_bufctl_t free;
226 unsigned short nodeid;
227 };
228 struct slab_rcu __slab_cover_slab_rcu;
229 };
230};
231
232/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 * struct array_cache
234 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 * Purpose:
236 * - LIFO ordering, to hand out cache-warm objects from _alloc
237 * - reduce the number of linked list operations
238 * - reduce spinlock operations
239 *
240 * The limit is stored in the per-cpu structure to reduce the data cache
241 * footprint.
242 *
243 */
244struct array_cache {
245 unsigned int avail;
246 unsigned int limit;
247 unsigned int batchcount;
248 unsigned int touched;
Christoph Lametere498be72005-09-09 13:03:32 -0700249 spinlock_t lock;
Robert P. J. Daybda5b652007-10-16 23:30:05 -0700250 void *entry[]; /*
Andrew Mortona737b3e2006-03-22 00:08:11 -0800251 * Must have this definition in here for the proper
252 * alignment of array_cache. Also simplifies accessing
253 * the entries.
Mel Gorman072bb0a2012-07-31 16:43:58 -0700254 *
255 * Entries should not be directly dereferenced as
256 * entries belonging to slabs marked pfmemalloc will
257 * have the lower bits set SLAB_OBJ_PFMEMALLOC
Andrew Mortona737b3e2006-03-22 00:08:11 -0800258 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259};
260
Mel Gorman072bb0a2012-07-31 16:43:58 -0700261#define SLAB_OBJ_PFMEMALLOC 1
262static inline bool is_obj_pfmemalloc(void *objp)
263{
264 return (unsigned long)objp & SLAB_OBJ_PFMEMALLOC;
265}
266
267static inline void set_obj_pfmemalloc(void **objp)
268{
269 *objp = (void *)((unsigned long)*objp | SLAB_OBJ_PFMEMALLOC);
270 return;
271}
272
273static inline void clear_obj_pfmemalloc(void **objp)
274{
275 *objp = (void *)((unsigned long)*objp & ~SLAB_OBJ_PFMEMALLOC);
276}
277
Andrew Mortona737b3e2006-03-22 00:08:11 -0800278/*
279 * bootstrap: The caches do not work without cpuarrays anymore, but the
280 * cpuarrays are allocated from the generic caches...
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 */
282#define BOOT_CPUCACHE_ENTRIES 1
283struct arraycache_init {
284 struct array_cache cache;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800285 void *entries[BOOT_CPUCACHE_ENTRIES];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286};
287
288/*
Christoph Lametere498be72005-09-09 13:03:32 -0700289 * The slab lists for all objects.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 */
Christoph Lameter6744f082013-01-10 19:12:17 +0000291struct kmem_cache_node {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800292 struct list_head slabs_partial; /* partial list first, better asm code */
293 struct list_head slabs_full;
294 struct list_head slabs_free;
295 unsigned long free_objects;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800296 unsigned int free_limit;
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -0800297 unsigned int colour_next; /* Per-node cache coloring */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800298 spinlock_t list_lock;
299 struct array_cache *shared; /* shared per node */
300 struct array_cache **alien; /* on other nodes */
Christoph Lameter35386e32006-03-22 00:09:05 -0800301 unsigned long next_reap; /* updated without locking */
302 int free_touched; /* updated without locking */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303};
304
Christoph Lametere498be72005-09-09 13:03:32 -0700305/*
306 * Need this for bootstrapping a per node allocator.
307 */
Pekka Enberg556a1692008-01-25 08:20:51 +0200308#define NUM_INIT_LISTS (3 * MAX_NUMNODES)
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000309static struct kmem_cache_node __initdata init_kmem_cache_node[NUM_INIT_LISTS];
Christoph Lametere498be72005-09-09 13:03:32 -0700310#define CACHE_CACHE 0
Pekka Enberg556a1692008-01-25 08:20:51 +0200311#define SIZE_AC MAX_NUMNODES
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000312#define SIZE_NODE (2 * MAX_NUMNODES)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Christoph Lametered11d9e2006-06-30 01:55:45 -0700314static int drain_freelist(struct kmem_cache *cache,
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000315 struct kmem_cache_node *n, int tofree);
Christoph Lametered11d9e2006-06-30 01:55:45 -0700316static void free_block(struct kmem_cache *cachep, void **objpp, int len,
317 int node);
Pekka Enberg83b519e2009-06-10 19:40:04 +0300318static int enable_cpucache(struct kmem_cache *cachep, gfp_t gfp);
David Howells65f27f32006-11-22 14:55:48 +0000319static void cache_reap(struct work_struct *unused);
Christoph Lametered11d9e2006-06-30 01:55:45 -0700320
Ingo Molnare0a42722006-06-23 02:03:46 -0700321static int slab_early_init = 1;
322
Christoph Lametere3366012013-01-10 19:14:18 +0000323#define INDEX_AC kmalloc_index(sizeof(struct arraycache_init))
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000324#define INDEX_NODE kmalloc_index(sizeof(struct kmem_cache_node))
Christoph Lametere498be72005-09-09 13:03:32 -0700325
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000326static void kmem_cache_node_init(struct kmem_cache_node *parent)
Christoph Lametere498be72005-09-09 13:03:32 -0700327{
328 INIT_LIST_HEAD(&parent->slabs_full);
329 INIT_LIST_HEAD(&parent->slabs_partial);
330 INIT_LIST_HEAD(&parent->slabs_free);
331 parent->shared = NULL;
332 parent->alien = NULL;
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -0800333 parent->colour_next = 0;
Christoph Lametere498be72005-09-09 13:03:32 -0700334 spin_lock_init(&parent->list_lock);
335 parent->free_objects = 0;
336 parent->free_touched = 0;
337}
338
Andrew Mortona737b3e2006-03-22 00:08:11 -0800339#define MAKE_LIST(cachep, listp, slab, nodeid) \
340 do { \
341 INIT_LIST_HEAD(listp); \
Christoph Lameter6a673682013-01-10 19:14:19 +0000342 list_splice(&(cachep->node[nodeid]->slab), listp); \
Christoph Lametere498be72005-09-09 13:03:32 -0700343 } while (0)
344
Andrew Mortona737b3e2006-03-22 00:08:11 -0800345#define MAKE_ALL_LISTS(cachep, ptr, nodeid) \
346 do { \
Christoph Lametere498be72005-09-09 13:03:32 -0700347 MAKE_LIST((cachep), (&(ptr)->slabs_full), slabs_full, nodeid); \
348 MAKE_LIST((cachep), (&(ptr)->slabs_partial), slabs_partial, nodeid); \
349 MAKE_LIST((cachep), (&(ptr)->slabs_free), slabs_free, nodeid); \
350 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352#define CFLGS_OFF_SLAB (0x80000000UL)
353#define OFF_SLAB(x) ((x)->flags & CFLGS_OFF_SLAB)
354
355#define BATCHREFILL_LIMIT 16
Andrew Mortona737b3e2006-03-22 00:08:11 -0800356/*
357 * Optimization question: fewer reaps means less probability for unnessary
358 * cpucache drain/refill cycles.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 *
Adrian Bunkdc6f3f22005-11-08 16:44:08 +0100360 * OTOH the cpuarrays can contain lots of objects,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 * which could lock up otherwise freeable slabs.
362 */
363#define REAPTIMEOUT_CPUC (2*HZ)
364#define REAPTIMEOUT_LIST3 (4*HZ)
365
366#if STATS
367#define STATS_INC_ACTIVE(x) ((x)->num_active++)
368#define STATS_DEC_ACTIVE(x) ((x)->num_active--)
369#define STATS_INC_ALLOCED(x) ((x)->num_allocations++)
370#define STATS_INC_GROWN(x) ((x)->grown++)
Christoph Lametered11d9e2006-06-30 01:55:45 -0700371#define STATS_ADD_REAPED(x,y) ((x)->reaped += (y))
Andrew Mortona737b3e2006-03-22 00:08:11 -0800372#define STATS_SET_HIGH(x) \
373 do { \
374 if ((x)->num_active > (x)->high_mark) \
375 (x)->high_mark = (x)->num_active; \
376 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377#define STATS_INC_ERR(x) ((x)->errors++)
378#define STATS_INC_NODEALLOCS(x) ((x)->node_allocs++)
Christoph Lametere498be72005-09-09 13:03:32 -0700379#define STATS_INC_NODEFREES(x) ((x)->node_frees++)
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -0700380#define STATS_INC_ACOVERFLOW(x) ((x)->node_overflow++)
Andrew Mortona737b3e2006-03-22 00:08:11 -0800381#define STATS_SET_FREEABLE(x, i) \
382 do { \
383 if ((x)->max_freeable < i) \
384 (x)->max_freeable = i; \
385 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386#define STATS_INC_ALLOCHIT(x) atomic_inc(&(x)->allochit)
387#define STATS_INC_ALLOCMISS(x) atomic_inc(&(x)->allocmiss)
388#define STATS_INC_FREEHIT(x) atomic_inc(&(x)->freehit)
389#define STATS_INC_FREEMISS(x) atomic_inc(&(x)->freemiss)
390#else
391#define STATS_INC_ACTIVE(x) do { } while (0)
392#define STATS_DEC_ACTIVE(x) do { } while (0)
393#define STATS_INC_ALLOCED(x) do { } while (0)
394#define STATS_INC_GROWN(x) do { } while (0)
Andi Kleen4e60c862010-08-09 17:19:03 -0700395#define STATS_ADD_REAPED(x,y) do { (void)(y); } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396#define STATS_SET_HIGH(x) do { } while (0)
397#define STATS_INC_ERR(x) do { } while (0)
398#define STATS_INC_NODEALLOCS(x) do { } while (0)
Christoph Lametere498be72005-09-09 13:03:32 -0700399#define STATS_INC_NODEFREES(x) do { } while (0)
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -0700400#define STATS_INC_ACOVERFLOW(x) do { } while (0)
Andrew Mortona737b3e2006-03-22 00:08:11 -0800401#define STATS_SET_FREEABLE(x, i) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402#define STATS_INC_ALLOCHIT(x) do { } while (0)
403#define STATS_INC_ALLOCMISS(x) do { } while (0)
404#define STATS_INC_FREEHIT(x) do { } while (0)
405#define STATS_INC_FREEMISS(x) do { } while (0)
406#endif
407
408#if DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Andrew Mortona737b3e2006-03-22 00:08:11 -0800410/*
411 * memory layout of objects:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 * 0 : objp
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800413 * 0 .. cachep->obj_offset - BYTES_PER_WORD - 1: padding. This ensures that
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 * the end of an object is aligned with the end of the real
415 * allocation. Catches writes behind the end of the allocation.
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800416 * cachep->obj_offset - BYTES_PER_WORD .. cachep->obj_offset - 1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 * redzone word.
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800418 * cachep->obj_offset: The real object.
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500419 * cachep->size - 2* BYTES_PER_WORD: redzone word [BYTES_PER_WORD long]
420 * cachep->size - 1* BYTES_PER_WORD: last caller address
Andrew Mortona737b3e2006-03-22 00:08:11 -0800421 * [BYTES_PER_WORD long]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800423static int obj_offset(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424{
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800425 return cachep->obj_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426}
427
David Woodhouseb46b8f12007-05-08 00:22:59 -0700428static unsigned long long *dbg_redzone1(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429{
430 BUG_ON(!(cachep->flags & SLAB_RED_ZONE));
David Woodhouseb46b8f12007-05-08 00:22:59 -0700431 return (unsigned long long*) (objp + obj_offset(cachep) -
432 sizeof(unsigned long long));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433}
434
David Woodhouseb46b8f12007-05-08 00:22:59 -0700435static unsigned long long *dbg_redzone2(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436{
437 BUG_ON(!(cachep->flags & SLAB_RED_ZONE));
438 if (cachep->flags & SLAB_STORE_USER)
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500439 return (unsigned long long *)(objp + cachep->size -
David Woodhouseb46b8f12007-05-08 00:22:59 -0700440 sizeof(unsigned long long) -
David Woodhouse87a927c2007-07-04 21:26:44 -0400441 REDZONE_ALIGN);
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500442 return (unsigned long long *) (objp + cachep->size -
David Woodhouseb46b8f12007-05-08 00:22:59 -0700443 sizeof(unsigned long long));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444}
445
Pekka Enberg343e0d72006-02-01 03:05:50 -0800446static void **dbg_userword(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447{
448 BUG_ON(!(cachep->flags & SLAB_STORE_USER));
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500449 return (void **)(objp + cachep->size - BYTES_PER_WORD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450}
451
452#else
453
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800454#define obj_offset(x) 0
David Woodhouseb46b8f12007-05-08 00:22:59 -0700455#define dbg_redzone1(cachep, objp) ({BUG(); (unsigned long long *)NULL;})
456#define dbg_redzone2(cachep, objp) ({BUG(); (unsigned long long *)NULL;})
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457#define dbg_userword(cachep, objp) ({BUG(); (void **)NULL;})
458
459#endif
460
461/*
David Rientjes3df1ccc2011-10-18 22:09:28 -0700462 * Do not go above this order unless 0 objects fit into the slab or
463 * overridden on the command line.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 */
David Rientjes543585c2011-10-18 22:09:24 -0700465#define SLAB_MAX_ORDER_HI 1
466#define SLAB_MAX_ORDER_LO 0
467static int slab_max_order = SLAB_MAX_ORDER_LO;
David Rientjes3df1ccc2011-10-18 22:09:28 -0700468static bool slab_max_order_set __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -0800470static inline struct kmem_cache *virt_to_cache(const void *obj)
471{
Christoph Lameterb49af682007-05-06 14:49:41 -0700472 struct page *page = virt_to_head_page(obj);
Christoph Lameter35026082012-06-13 10:24:56 -0500473 return page->slab_cache;
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -0800474}
475
476static inline struct slab *virt_to_slab(const void *obj)
477{
Christoph Lameterb49af682007-05-06 14:49:41 -0700478 struct page *page = virt_to_head_page(obj);
Christoph Lameter35026082012-06-13 10:24:56 -0500479
480 VM_BUG_ON(!PageSlab(page));
481 return page->slab_page;
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -0800482}
483
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800484static inline void *index_to_obj(struct kmem_cache *cache, struct slab *slab,
485 unsigned int idx)
486{
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500487 return slab->s_mem + cache->size * idx;
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800488}
489
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800490/*
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500491 * We want to avoid an expensive divide : (offset / cache->size)
492 * Using the fact that size is a constant for a particular cache,
493 * we can replace (offset / cache->size) by
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800494 * reciprocal_divide(offset, cache->reciprocal_buffer_size)
495 */
496static inline unsigned int obj_to_index(const struct kmem_cache *cache,
497 const struct slab *slab, void *obj)
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800498{
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800499 u32 offset = (obj - slab->s_mem);
500 return reciprocal_divide(offset, cache->reciprocal_buffer_size);
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800501}
502
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503static struct arraycache_init initarray_generic =
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800504 { {0, BOOT_CPUCACHE_ENTRIES, 1, 0} };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
506/* internal cache of cache description objs */
Christoph Lameter9b030cb2012-09-05 00:20:33 +0000507static struct kmem_cache kmem_cache_boot = {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800508 .batchcount = 1,
509 .limit = BOOT_CPUCACHE_ENTRIES,
510 .shared = 1,
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500511 .size = sizeof(struct kmem_cache),
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800512 .name = "kmem_cache",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513};
514
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -0700515#define BAD_ALIEN_MAGIC 0x01020304ul
516
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200517#ifdef CONFIG_LOCKDEP
518
519/*
520 * Slab sometimes uses the kmalloc slabs to store the slab headers
521 * for other slabs "off slab".
522 * The locking for this is tricky in that it nests within the locks
523 * of all other slabs in a few places; to deal with this special
524 * locking we put on-slab caches into a separate lock-class.
525 *
526 * We set lock class for alien array caches which are up during init.
527 * The lock annotation will be lost if all cpus of a node goes down and
528 * then comes back up during hotplug
529 */
530static struct lock_class_key on_slab_l3_key;
531static struct lock_class_key on_slab_alc_key;
532
Peter Zijlstra83835b32011-07-22 15:26:05 +0200533static struct lock_class_key debugobj_l3_key;
534static struct lock_class_key debugobj_alc_key;
535
536static void slab_set_lock_classes(struct kmem_cache *cachep,
537 struct lock_class_key *l3_key, struct lock_class_key *alc_key,
538 int q)
539{
540 struct array_cache **alc;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000541 struct kmem_cache_node *n;
Peter Zijlstra83835b32011-07-22 15:26:05 +0200542 int r;
543
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000544 n = cachep->node[q];
545 if (!n)
Peter Zijlstra83835b32011-07-22 15:26:05 +0200546 return;
547
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000548 lockdep_set_class(&n->list_lock, l3_key);
549 alc = n->alien;
Peter Zijlstra83835b32011-07-22 15:26:05 +0200550 /*
551 * FIXME: This check for BAD_ALIEN_MAGIC
552 * should go away when common slab code is taught to
553 * work even without alien caches.
554 * Currently, non NUMA code returns BAD_ALIEN_MAGIC
555 * for alloc_alien_cache,
556 */
557 if (!alc || (unsigned long)alc == BAD_ALIEN_MAGIC)
558 return;
559 for_each_node(r) {
560 if (alc[r])
561 lockdep_set_class(&alc[r]->lock, alc_key);
562 }
563}
564
565static void slab_set_debugobj_lock_classes_node(struct kmem_cache *cachep, int node)
566{
567 slab_set_lock_classes(cachep, &debugobj_l3_key, &debugobj_alc_key, node);
568}
569
570static void slab_set_debugobj_lock_classes(struct kmem_cache *cachep)
571{
572 int node;
573
574 for_each_online_node(node)
575 slab_set_debugobj_lock_classes_node(cachep, node);
576}
577
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200578static void init_node_lock_keys(int q)
579{
Christoph Lametere3366012013-01-10 19:14:18 +0000580 int i;
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200581
Christoph Lameter97d06602012-07-06 15:25:11 -0500582 if (slab_state < UP)
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200583 return;
584
Christoph Lametere3366012013-01-10 19:14:18 +0000585 for (i = 1; i < PAGE_SHIFT + MAX_ORDER; i++) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000586 struct kmem_cache_node *n;
Christoph Lametere3366012013-01-10 19:14:18 +0000587 struct kmem_cache *cache = kmalloc_caches[i];
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200588
Christoph Lametere3366012013-01-10 19:14:18 +0000589 if (!cache)
Pekka Enberg00afa752009-12-27 14:33:14 +0200590 continue;
Peter Zijlstra83835b32011-07-22 15:26:05 +0200591
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000592 n = cache->node[q];
593 if (!n || OFF_SLAB(cache))
Christoph Lametere3366012013-01-10 19:14:18 +0000594 continue;
595
596 slab_set_lock_classes(cache, &on_slab_l3_key,
Peter Zijlstra83835b32011-07-22 15:26:05 +0200597 &on_slab_alc_key, q);
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200598 }
599}
600
Glauber Costa6ccfb5b2012-12-18 14:22:31 -0800601static void on_slab_lock_classes_node(struct kmem_cache *cachep, int q)
602{
Christoph Lameter6a673682013-01-10 19:14:19 +0000603 if (!cachep->node[q])
Glauber Costa6ccfb5b2012-12-18 14:22:31 -0800604 return;
605
606 slab_set_lock_classes(cachep, &on_slab_l3_key,
607 &on_slab_alc_key, q);
608}
609
610static inline void on_slab_lock_classes(struct kmem_cache *cachep)
611{
612 int node;
613
614 VM_BUG_ON(OFF_SLAB(cachep));
615 for_each_node(node)
616 on_slab_lock_classes_node(cachep, node);
617}
618
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200619static inline void init_lock_keys(void)
620{
621 int node;
622
623 for_each_node(node)
624 init_node_lock_keys(node);
625}
626#else
627static void init_node_lock_keys(int q)
628{
629}
630
631static inline void init_lock_keys(void)
632{
633}
Peter Zijlstra83835b32011-07-22 15:26:05 +0200634
Glauber Costa6ccfb5b2012-12-18 14:22:31 -0800635static inline void on_slab_lock_classes(struct kmem_cache *cachep)
636{
637}
638
639static inline void on_slab_lock_classes_node(struct kmem_cache *cachep, int node)
640{
641}
642
Peter Zijlstra83835b32011-07-22 15:26:05 +0200643static void slab_set_debugobj_lock_classes_node(struct kmem_cache *cachep, int node)
644{
645}
646
647static void slab_set_debugobj_lock_classes(struct kmem_cache *cachep)
648{
649}
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200650#endif
651
Tejun Heo1871e522009-10-29 22:34:13 +0900652static DEFINE_PER_CPU(struct delayed_work, slab_reap_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700653
Pekka Enberg343e0d72006-02-01 03:05:50 -0800654static inline struct array_cache *cpu_cache_get(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655{
656 return cachep->array[smp_processor_id()];
657}
658
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800659static size_t slab_mgmt_size(size_t nr_objs, size_t align)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660{
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800661 return ALIGN(sizeof(struct slab)+nr_objs*sizeof(kmem_bufctl_t), align);
662}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663
Andrew Mortona737b3e2006-03-22 00:08:11 -0800664/*
665 * Calculate the number of objects and left-over bytes for a given buffer size.
666 */
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800667static void cache_estimate(unsigned long gfporder, size_t buffer_size,
668 size_t align, int flags, size_t *left_over,
669 unsigned int *num)
670{
671 int nr_objs;
672 size_t mgmt_size;
673 size_t slab_size = PAGE_SIZE << gfporder;
674
675 /*
676 * The slab management structure can be either off the slab or
677 * on it. For the latter case, the memory allocated for a
678 * slab is used for:
679 *
680 * - The struct slab
681 * - One kmem_bufctl_t for each object
682 * - Padding to respect alignment of @align
683 * - @buffer_size bytes for each object
684 *
685 * If the slab management structure is off the slab, then the
686 * alignment will already be calculated into the size. Because
687 * the slabs are all pages aligned, the objects will be at the
688 * correct alignment when allocated.
689 */
690 if (flags & CFLGS_OFF_SLAB) {
691 mgmt_size = 0;
692 nr_objs = slab_size / buffer_size;
693
694 if (nr_objs > SLAB_LIMIT)
695 nr_objs = SLAB_LIMIT;
696 } else {
697 /*
698 * Ignore padding for the initial guess. The padding
699 * is at most @align-1 bytes, and @buffer_size is at
700 * least @align. In the worst case, this result will
701 * be one greater than the number of objects that fit
702 * into the memory allocation when taking the padding
703 * into account.
704 */
705 nr_objs = (slab_size - sizeof(struct slab)) /
706 (buffer_size + sizeof(kmem_bufctl_t));
707
708 /*
709 * This calculated number will be either the right
710 * amount, or one greater than what we want.
711 */
712 if (slab_mgmt_size(nr_objs, align) + nr_objs*buffer_size
713 > slab_size)
714 nr_objs--;
715
716 if (nr_objs > SLAB_LIMIT)
717 nr_objs = SLAB_LIMIT;
718
719 mgmt_size = slab_mgmt_size(nr_objs, align);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 }
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800721 *num = nr_objs;
722 *left_over = slab_size - nr_objs*buffer_size - mgmt_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723}
724
Christoph Lameterf28510d2012-09-11 19:49:38 +0000725#if DEBUG
Harvey Harrisond40cee22008-04-30 00:55:07 -0700726#define slab_error(cachep, msg) __slab_error(__func__, cachep, msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727
Andrew Mortona737b3e2006-03-22 00:08:11 -0800728static void __slab_error(const char *function, struct kmem_cache *cachep,
729 char *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730{
731 printk(KERN_ERR "slab error in %s(): cache `%s': %s\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800732 function, cachep->name, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 dump_stack();
Dave Jones645df232012-09-18 15:54:12 -0400734 add_taint(TAINT_BAD_PAGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735}
Christoph Lameterf28510d2012-09-11 19:49:38 +0000736#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
Paul Menage3395ee02006-12-06 20:32:16 -0800738/*
739 * By default on NUMA we use alien caches to stage the freeing of
740 * objects allocated from other nodes. This causes massive memory
741 * inefficiencies when using fake NUMA setup to split memory into a
742 * large number of small nodes, so it can be disabled on the command
743 * line
744 */
745
746static int use_alien_caches __read_mostly = 1;
747static int __init noaliencache_setup(char *s)
748{
749 use_alien_caches = 0;
750 return 1;
751}
752__setup("noaliencache", noaliencache_setup);
753
David Rientjes3df1ccc2011-10-18 22:09:28 -0700754static int __init slab_max_order_setup(char *str)
755{
756 get_option(&str, &slab_max_order);
757 slab_max_order = slab_max_order < 0 ? 0 :
758 min(slab_max_order, MAX_ORDER - 1);
759 slab_max_order_set = true;
760
761 return 1;
762}
763__setup("slab_max_order=", slab_max_order_setup);
764
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800765#ifdef CONFIG_NUMA
766/*
767 * Special reaping functions for NUMA systems called from cache_reap().
768 * These take care of doing round robin flushing of alien caches (containing
769 * objects freed on different nodes from which they were allocated) and the
770 * flushing of remote pcps by calling drain_node_pages.
771 */
Tejun Heo1871e522009-10-29 22:34:13 +0900772static DEFINE_PER_CPU(unsigned long, slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800773
774static void init_reap_node(int cpu)
775{
776 int node;
777
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -0700778 node = next_node(cpu_to_mem(cpu), node_online_map);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800779 if (node == MAX_NUMNODES)
Paul Jackson442295c2006-03-22 00:09:11 -0800780 node = first_node(node_online_map);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800781
Tejun Heo1871e522009-10-29 22:34:13 +0900782 per_cpu(slab_reap_node, cpu) = node;
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800783}
784
785static void next_reap_node(void)
786{
Christoph Lameter909ea962010-12-08 16:22:55 +0100787 int node = __this_cpu_read(slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800788
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800789 node = next_node(node, node_online_map);
790 if (unlikely(node >= MAX_NUMNODES))
791 node = first_node(node_online_map);
Christoph Lameter909ea962010-12-08 16:22:55 +0100792 __this_cpu_write(slab_reap_node, node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800793}
794
795#else
796#define init_reap_node(cpu) do { } while (0)
797#define next_reap_node(void) do { } while (0)
798#endif
799
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800/*
801 * Initiate the reap timer running on the target CPU. We run at around 1 to 2Hz
802 * via the workqueue/eventd.
803 * Add the CPU number into the expiration time to minimize the possibility of
804 * the CPUs getting into lockstep and contending for the global cache chain
805 * lock.
806 */
Adrian Bunk897e6792007-07-15 23:38:20 -0700807static void __cpuinit start_cpu_timer(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808{
Tejun Heo1871e522009-10-29 22:34:13 +0900809 struct delayed_work *reap_work = &per_cpu(slab_reap_work, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810
811 /*
812 * When this gets called from do_initcalls via cpucache_init(),
813 * init_workqueues() has already run, so keventd will be setup
814 * at that time.
815 */
David Howells52bad642006-11-22 14:54:01 +0000816 if (keventd_up() && reap_work->work.func == NULL) {
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800817 init_reap_node(cpu);
Tejun Heo203b42f2012-08-21 13:18:23 -0700818 INIT_DEFERRABLE_WORK(reap_work, cache_reap);
Arjan van de Ven2b284212006-12-10 02:21:28 -0800819 schedule_delayed_work_on(cpu, reap_work,
820 __round_jiffies_relative(HZ, cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 }
822}
823
Christoph Lametere498be72005-09-09 13:03:32 -0700824static struct array_cache *alloc_arraycache(int node, int entries,
Pekka Enberg83b519e2009-06-10 19:40:04 +0300825 int batchcount, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826{
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800827 int memsize = sizeof(void *) * entries + sizeof(struct array_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 struct array_cache *nc = NULL;
829
Pekka Enberg83b519e2009-06-10 19:40:04 +0300830 nc = kmalloc_node(memsize, gfp, node);
Catalin Marinasd5cff632009-06-11 13:22:40 +0100831 /*
832 * The array_cache structures contain pointers to free object.
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300833 * However, when such objects are allocated or transferred to another
Catalin Marinasd5cff632009-06-11 13:22:40 +0100834 * cache the pointers are not cleared and they could be counted as
835 * valid references during a kmemleak scan. Therefore, kmemleak must
836 * not scan such objects.
837 */
838 kmemleak_no_scan(nc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 if (nc) {
840 nc->avail = 0;
841 nc->limit = entries;
842 nc->batchcount = batchcount;
843 nc->touched = 0;
Christoph Lametere498be72005-09-09 13:03:32 -0700844 spin_lock_init(&nc->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 }
846 return nc;
847}
848
Mel Gorman072bb0a2012-07-31 16:43:58 -0700849static inline bool is_slab_pfmemalloc(struct slab *slabp)
850{
851 struct page *page = virt_to_page(slabp->s_mem);
852
853 return PageSlabPfmemalloc(page);
854}
855
856/* Clears pfmemalloc_active if no slabs have pfmalloc set */
857static void recheck_pfmemalloc_active(struct kmem_cache *cachep,
858 struct array_cache *ac)
859{
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000860 struct kmem_cache_node *n = cachep->node[numa_mem_id()];
Mel Gorman072bb0a2012-07-31 16:43:58 -0700861 struct slab *slabp;
862 unsigned long flags;
863
864 if (!pfmemalloc_active)
865 return;
866
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000867 spin_lock_irqsave(&n->list_lock, flags);
868 list_for_each_entry(slabp, &n->slabs_full, list)
Mel Gorman072bb0a2012-07-31 16:43:58 -0700869 if (is_slab_pfmemalloc(slabp))
870 goto out;
871
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000872 list_for_each_entry(slabp, &n->slabs_partial, list)
Mel Gorman072bb0a2012-07-31 16:43:58 -0700873 if (is_slab_pfmemalloc(slabp))
874 goto out;
875
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000876 list_for_each_entry(slabp, &n->slabs_free, list)
Mel Gorman072bb0a2012-07-31 16:43:58 -0700877 if (is_slab_pfmemalloc(slabp))
878 goto out;
879
880 pfmemalloc_active = false;
881out:
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000882 spin_unlock_irqrestore(&n->list_lock, flags);
Mel Gorman072bb0a2012-07-31 16:43:58 -0700883}
884
Mel Gorman381760e2012-07-31 16:44:30 -0700885static void *__ac_get_obj(struct kmem_cache *cachep, struct array_cache *ac,
Mel Gorman072bb0a2012-07-31 16:43:58 -0700886 gfp_t flags, bool force_refill)
887{
888 int i;
889 void *objp = ac->entry[--ac->avail];
890
891 /* Ensure the caller is allowed to use objects from PFMEMALLOC slab */
892 if (unlikely(is_obj_pfmemalloc(objp))) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000893 struct kmem_cache_node *n;
Mel Gorman072bb0a2012-07-31 16:43:58 -0700894
895 if (gfp_pfmemalloc_allowed(flags)) {
896 clear_obj_pfmemalloc(&objp);
897 return objp;
898 }
899
900 /* The caller cannot use PFMEMALLOC objects, find another one */
Joonsoo Kimd014dc22012-09-17 14:09:06 -0700901 for (i = 0; i < ac->avail; i++) {
Mel Gorman072bb0a2012-07-31 16:43:58 -0700902 /* If a !PFMEMALLOC object is found, swap them */
903 if (!is_obj_pfmemalloc(ac->entry[i])) {
904 objp = ac->entry[i];
905 ac->entry[i] = ac->entry[ac->avail];
906 ac->entry[ac->avail] = objp;
907 return objp;
908 }
909 }
910
911 /*
912 * If there are empty slabs on the slabs_free list and we are
913 * being forced to refill the cache, mark this one !pfmemalloc.
914 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000915 n = cachep->node[numa_mem_id()];
916 if (!list_empty(&n->slabs_free) && force_refill) {
Mel Gorman072bb0a2012-07-31 16:43:58 -0700917 struct slab *slabp = virt_to_slab(objp);
Mel Gorman30c29be2012-09-17 14:09:03 -0700918 ClearPageSlabPfmemalloc(virt_to_head_page(slabp->s_mem));
Mel Gorman072bb0a2012-07-31 16:43:58 -0700919 clear_obj_pfmemalloc(&objp);
920 recheck_pfmemalloc_active(cachep, ac);
921 return objp;
922 }
923
924 /* No !PFMEMALLOC objects available */
925 ac->avail++;
926 objp = NULL;
927 }
928
929 return objp;
930}
931
Mel Gorman381760e2012-07-31 16:44:30 -0700932static inline void *ac_get_obj(struct kmem_cache *cachep,
933 struct array_cache *ac, gfp_t flags, bool force_refill)
934{
935 void *objp;
936
937 if (unlikely(sk_memalloc_socks()))
938 objp = __ac_get_obj(cachep, ac, flags, force_refill);
939 else
940 objp = ac->entry[--ac->avail];
941
942 return objp;
943}
944
945static void *__ac_put_obj(struct kmem_cache *cachep, struct array_cache *ac,
Mel Gorman072bb0a2012-07-31 16:43:58 -0700946 void *objp)
947{
948 if (unlikely(pfmemalloc_active)) {
949 /* Some pfmemalloc slabs exist, check if this is one */
Mel Gorman30c29be2012-09-17 14:09:03 -0700950 struct page *page = virt_to_head_page(objp);
Mel Gorman072bb0a2012-07-31 16:43:58 -0700951 if (PageSlabPfmemalloc(page))
952 set_obj_pfmemalloc(&objp);
953 }
954
Mel Gorman381760e2012-07-31 16:44:30 -0700955 return objp;
956}
957
958static inline void ac_put_obj(struct kmem_cache *cachep, struct array_cache *ac,
959 void *objp)
960{
961 if (unlikely(sk_memalloc_socks()))
962 objp = __ac_put_obj(cachep, ac, objp);
963
Mel Gorman072bb0a2012-07-31 16:43:58 -0700964 ac->entry[ac->avail++] = objp;
965}
966
Christoph Lameter3ded1752006-03-25 03:06:44 -0800967/*
968 * Transfer objects in one arraycache to another.
969 * Locking must be handled by the caller.
970 *
971 * Return the number of entries transferred.
972 */
973static int transfer_objects(struct array_cache *to,
974 struct array_cache *from, unsigned int max)
975{
976 /* Figure out how many entries to transfer */
Hagen Paul Pfeifer732eacc2010-10-26 14:22:23 -0700977 int nr = min3(from->avail, max, to->limit - to->avail);
Christoph Lameter3ded1752006-03-25 03:06:44 -0800978
979 if (!nr)
980 return 0;
981
982 memcpy(to->entry + to->avail, from->entry + from->avail -nr,
983 sizeof(void *) *nr);
984
985 from->avail -= nr;
986 to->avail += nr;
Christoph Lameter3ded1752006-03-25 03:06:44 -0800987 return nr;
988}
989
Christoph Lameter765c4502006-09-27 01:50:08 -0700990#ifndef CONFIG_NUMA
991
992#define drain_alien_cache(cachep, alien) do { } while (0)
Christoph Lameterce8eb6c2013-01-10 19:14:19 +0000993#define reap_alien(cachep, n) do { } while (0)
Christoph Lameter765c4502006-09-27 01:50:08 -0700994
Pekka Enberg83b519e2009-06-10 19:40:04 +0300995static inline struct array_cache **alloc_alien_cache(int node, int limit, gfp_t gfp)
Christoph Lameter765c4502006-09-27 01:50:08 -0700996{
997 return (struct array_cache **)BAD_ALIEN_MAGIC;
998}
999
1000static inline void free_alien_cache(struct array_cache **ac_ptr)
1001{
1002}
1003
1004static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
1005{
1006 return 0;
1007}
1008
1009static inline void *alternate_node_alloc(struct kmem_cache *cachep,
1010 gfp_t flags)
1011{
1012 return NULL;
1013}
1014
Christoph Hellwig8b98c162006-12-06 20:32:30 -08001015static inline void *____cache_alloc_node(struct kmem_cache *cachep,
Christoph Lameter765c4502006-09-27 01:50:08 -07001016 gfp_t flags, int nodeid)
1017{
1018 return NULL;
1019}
1020
1021#else /* CONFIG_NUMA */
1022
Christoph Hellwig8b98c162006-12-06 20:32:30 -08001023static void *____cache_alloc_node(struct kmem_cache *, gfp_t, int);
Paul Jacksonc61afb12006-03-24 03:16:08 -08001024static void *alternate_node_alloc(struct kmem_cache *, gfp_t);
Christoph Lameterdc85da12006-01-18 17:42:36 -08001025
Pekka Enberg83b519e2009-06-10 19:40:04 +03001026static struct array_cache **alloc_alien_cache(int node, int limit, gfp_t gfp)
Christoph Lametere498be72005-09-09 13:03:32 -07001027{
1028 struct array_cache **ac_ptr;
Christoph Lameter8ef82862007-02-20 13:57:52 -08001029 int memsize = sizeof(void *) * nr_node_ids;
Christoph Lametere498be72005-09-09 13:03:32 -07001030 int i;
1031
1032 if (limit > 1)
1033 limit = 12;
Haicheng Lif3186a92010-01-06 15:25:23 +08001034 ac_ptr = kzalloc_node(memsize, gfp, node);
Christoph Lametere498be72005-09-09 13:03:32 -07001035 if (ac_ptr) {
1036 for_each_node(i) {
Haicheng Lif3186a92010-01-06 15:25:23 +08001037 if (i == node || !node_online(i))
Christoph Lametere498be72005-09-09 13:03:32 -07001038 continue;
Pekka Enberg83b519e2009-06-10 19:40:04 +03001039 ac_ptr[i] = alloc_arraycache(node, limit, 0xbaadf00d, gfp);
Christoph Lametere498be72005-09-09 13:03:32 -07001040 if (!ac_ptr[i]) {
Akinobu Mitacc550de2007-11-14 16:58:35 -08001041 for (i--; i >= 0; i--)
Christoph Lametere498be72005-09-09 13:03:32 -07001042 kfree(ac_ptr[i]);
1043 kfree(ac_ptr);
1044 return NULL;
1045 }
1046 }
1047 }
1048 return ac_ptr;
1049}
1050
Pekka Enberg5295a742006-02-01 03:05:48 -08001051static void free_alien_cache(struct array_cache **ac_ptr)
Christoph Lametere498be72005-09-09 13:03:32 -07001052{
1053 int i;
1054
1055 if (!ac_ptr)
1056 return;
Christoph Lametere498be72005-09-09 13:03:32 -07001057 for_each_node(i)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001058 kfree(ac_ptr[i]);
Christoph Lametere498be72005-09-09 13:03:32 -07001059 kfree(ac_ptr);
1060}
1061
Pekka Enberg343e0d72006-02-01 03:05:50 -08001062static void __drain_alien_cache(struct kmem_cache *cachep,
Pekka Enberg5295a742006-02-01 03:05:48 -08001063 struct array_cache *ac, int node)
Christoph Lametere498be72005-09-09 13:03:32 -07001064{
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001065 struct kmem_cache_node *n = cachep->node[node];
Christoph Lametere498be72005-09-09 13:03:32 -07001066
1067 if (ac->avail) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001068 spin_lock(&n->list_lock);
Christoph Lametere00946f2006-03-25 03:06:45 -08001069 /*
1070 * Stuff objects into the remote nodes shared array first.
1071 * That way we could avoid the overhead of putting the objects
1072 * into the free lists and getting them back later.
1073 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001074 if (n->shared)
1075 transfer_objects(n->shared, ac, ac->limit);
Christoph Lametere00946f2006-03-25 03:06:45 -08001076
Christoph Lameterff694162005-09-22 21:44:02 -07001077 free_block(cachep, ac->entry, ac->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -07001078 ac->avail = 0;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001079 spin_unlock(&n->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07001080 }
1081}
1082
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001083/*
1084 * Called from cache_reap() to regularly drain alien caches round robin.
1085 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001086static void reap_alien(struct kmem_cache *cachep, struct kmem_cache_node *n)
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001087{
Christoph Lameter909ea962010-12-08 16:22:55 +01001088 int node = __this_cpu_read(slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001089
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001090 if (n->alien) {
1091 struct array_cache *ac = n->alien[node];
Christoph Lametere00946f2006-03-25 03:06:45 -08001092
1093 if (ac && ac->avail && spin_trylock_irq(&ac->lock)) {
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001094 __drain_alien_cache(cachep, ac, node);
1095 spin_unlock_irq(&ac->lock);
1096 }
1097 }
1098}
1099
Andrew Mortona737b3e2006-03-22 00:08:11 -08001100static void drain_alien_cache(struct kmem_cache *cachep,
1101 struct array_cache **alien)
Christoph Lametere498be72005-09-09 13:03:32 -07001102{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001103 int i = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07001104 struct array_cache *ac;
1105 unsigned long flags;
1106
1107 for_each_online_node(i) {
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001108 ac = alien[i];
Christoph Lametere498be72005-09-09 13:03:32 -07001109 if (ac) {
1110 spin_lock_irqsave(&ac->lock, flags);
1111 __drain_alien_cache(cachep, ac, i);
1112 spin_unlock_irqrestore(&ac->lock, flags);
1113 }
1114 }
1115}
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001116
Ingo Molnar873623d2006-07-13 14:44:38 +02001117static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001118{
1119 struct slab *slabp = virt_to_slab(objp);
1120 int nodeid = slabp->nodeid;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001121 struct kmem_cache_node *n;
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001122 struct array_cache *alien = NULL;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001123 int node;
1124
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07001125 node = numa_mem_id();
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001126
1127 /*
1128 * Make sure we are not freeing a object from another node to the array
1129 * cache on this cpu.
1130 */
Siddha, Suresh B62918a02007-05-02 19:27:18 +02001131 if (likely(slabp->nodeid == node))
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001132 return 0;
1133
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001134 n = cachep->node[node];
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001135 STATS_INC_NODEFREES(cachep);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001136 if (n->alien && n->alien[nodeid]) {
1137 alien = n->alien[nodeid];
Ingo Molnar873623d2006-07-13 14:44:38 +02001138 spin_lock(&alien->lock);
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001139 if (unlikely(alien->avail == alien->limit)) {
1140 STATS_INC_ACOVERFLOW(cachep);
1141 __drain_alien_cache(cachep, alien, nodeid);
1142 }
Mel Gorman072bb0a2012-07-31 16:43:58 -07001143 ac_put_obj(cachep, alien, objp);
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001144 spin_unlock(&alien->lock);
1145 } else {
Christoph Lameter6a673682013-01-10 19:14:19 +00001146 spin_lock(&(cachep->node[nodeid])->list_lock);
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001147 free_block(cachep, &objp, 1, nodeid);
Christoph Lameter6a673682013-01-10 19:14:19 +00001148 spin_unlock(&(cachep->node[nodeid])->list_lock);
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001149 }
1150 return 1;
1151}
Christoph Lametere498be72005-09-09 13:03:32 -07001152#endif
1153
David Rientjes8f9f8d92010-03-27 19:40:47 -07001154/*
Christoph Lameter6a673682013-01-10 19:14:19 +00001155 * Allocates and initializes node for a node on each slab cache, used for
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001156 * either memory or cpu hotplug. If memory is being hot-added, the kmem_cache_node
David Rientjes8f9f8d92010-03-27 19:40:47 -07001157 * will be allocated off-node since memory is not yet online for the new node.
Christoph Lameter6a673682013-01-10 19:14:19 +00001158 * When hotplugging memory or a cpu, existing node are not replaced if
David Rientjes8f9f8d92010-03-27 19:40:47 -07001159 * already in use.
1160 *
Christoph Lameter18004c52012-07-06 15:25:12 -05001161 * Must hold slab_mutex.
David Rientjes8f9f8d92010-03-27 19:40:47 -07001162 */
Christoph Lameter6a673682013-01-10 19:14:19 +00001163static int init_cache_node_node(int node)
David Rientjes8f9f8d92010-03-27 19:40:47 -07001164{
1165 struct kmem_cache *cachep;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001166 struct kmem_cache_node *n;
Christoph Lameter6744f082013-01-10 19:12:17 +00001167 const int memsize = sizeof(struct kmem_cache_node);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001168
Christoph Lameter18004c52012-07-06 15:25:12 -05001169 list_for_each_entry(cachep, &slab_caches, list) {
David Rientjes8f9f8d92010-03-27 19:40:47 -07001170 /*
1171 * Set up the size64 kmemlist for cpu before we can
1172 * begin anything. Make sure some other cpu on this
1173 * node has not already allocated this
1174 */
Christoph Lameter6a673682013-01-10 19:14:19 +00001175 if (!cachep->node[node]) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001176 n = kmalloc_node(memsize, GFP_KERNEL, node);
1177 if (!n)
David Rientjes8f9f8d92010-03-27 19:40:47 -07001178 return -ENOMEM;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001179 kmem_cache_node_init(n);
1180 n->next_reap = jiffies + REAPTIMEOUT_LIST3 +
David Rientjes8f9f8d92010-03-27 19:40:47 -07001181 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
1182
1183 /*
1184 * The l3s don't come and go as CPUs come and
Christoph Lameter18004c52012-07-06 15:25:12 -05001185 * go. slab_mutex is sufficient
David Rientjes8f9f8d92010-03-27 19:40:47 -07001186 * protection here.
1187 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001188 cachep->node[node] = n;
David Rientjes8f9f8d92010-03-27 19:40:47 -07001189 }
1190
Christoph Lameter6a673682013-01-10 19:14:19 +00001191 spin_lock_irq(&cachep->node[node]->list_lock);
1192 cachep->node[node]->free_limit =
David Rientjes8f9f8d92010-03-27 19:40:47 -07001193 (1 + nr_cpus_node(node)) *
1194 cachep->batchcount + cachep->num;
Christoph Lameter6a673682013-01-10 19:14:19 +00001195 spin_unlock_irq(&cachep->node[node]->list_lock);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001196 }
1197 return 0;
1198}
1199
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001200static void __cpuinit cpuup_canceled(long cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201{
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001202 struct kmem_cache *cachep;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001203 struct kmem_cache_node *n = NULL;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07001204 int node = cpu_to_mem(cpu);
Rusty Russella70f7302009-03-13 14:49:46 +10301205 const struct cpumask *mask = cpumask_of_node(node);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001206
Christoph Lameter18004c52012-07-06 15:25:12 -05001207 list_for_each_entry(cachep, &slab_caches, list) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001208 struct array_cache *nc;
1209 struct array_cache *shared;
1210 struct array_cache **alien;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001211
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001212 /* cpu is dead; no one can alloc from it. */
1213 nc = cachep->array[cpu];
1214 cachep->array[cpu] = NULL;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001215 n = cachep->node[node];
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001216
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001217 if (!n)
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001218 goto free_array_cache;
1219
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001220 spin_lock_irq(&n->list_lock);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001221
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001222 /* Free limit for this kmem_cache_node */
1223 n->free_limit -= cachep->batchcount;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001224 if (nc)
1225 free_block(cachep, nc->entry, nc->avail, node);
1226
Rusty Russell58463c12009-12-17 11:43:12 -06001227 if (!cpumask_empty(mask)) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001228 spin_unlock_irq(&n->list_lock);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001229 goto free_array_cache;
1230 }
1231
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001232 shared = n->shared;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001233 if (shared) {
1234 free_block(cachep, shared->entry,
1235 shared->avail, node);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001236 n->shared = NULL;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001237 }
1238
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001239 alien = n->alien;
1240 n->alien = NULL;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001241
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001242 spin_unlock_irq(&n->list_lock);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001243
1244 kfree(shared);
1245 if (alien) {
1246 drain_alien_cache(cachep, alien);
1247 free_alien_cache(alien);
1248 }
1249free_array_cache:
1250 kfree(nc);
1251 }
1252 /*
1253 * In the previous loop, all the objects were freed to
1254 * the respective cache's slabs, now we can go ahead and
1255 * shrink each nodelist to its limit.
1256 */
Christoph Lameter18004c52012-07-06 15:25:12 -05001257 list_for_each_entry(cachep, &slab_caches, list) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001258 n = cachep->node[node];
1259 if (!n)
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001260 continue;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001261 drain_freelist(cachep, n, n->free_objects);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001262 }
1263}
1264
1265static int __cpuinit cpuup_prepare(long cpu)
1266{
Pekka Enberg343e0d72006-02-01 03:05:50 -08001267 struct kmem_cache *cachep;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001268 struct kmem_cache_node *n = NULL;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07001269 int node = cpu_to_mem(cpu);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001270 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001272 /*
1273 * We need to do this right in the beginning since
1274 * alloc_arraycache's are going to use this list.
1275 * kmalloc_node allows us to add the slab to the right
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001276 * kmem_cache_node and not this cpu's kmem_cache_node
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001277 */
Christoph Lameter6a673682013-01-10 19:14:19 +00001278 err = init_cache_node_node(node);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001279 if (err < 0)
1280 goto bad;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001281
1282 /*
1283 * Now we can go ahead with allocating the shared arrays and
1284 * array caches
1285 */
Christoph Lameter18004c52012-07-06 15:25:12 -05001286 list_for_each_entry(cachep, &slab_caches, list) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001287 struct array_cache *nc;
1288 struct array_cache *shared = NULL;
1289 struct array_cache **alien = NULL;
1290
1291 nc = alloc_arraycache(node, cachep->limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03001292 cachep->batchcount, GFP_KERNEL);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001293 if (!nc)
1294 goto bad;
1295 if (cachep->shared) {
1296 shared = alloc_arraycache(node,
1297 cachep->shared * cachep->batchcount,
Pekka Enberg83b519e2009-06-10 19:40:04 +03001298 0xbaadf00d, GFP_KERNEL);
Akinobu Mita12d00f62007-10-18 03:05:11 -07001299 if (!shared) {
1300 kfree(nc);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001301 goto bad;
Akinobu Mita12d00f62007-10-18 03:05:11 -07001302 }
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001303 }
1304 if (use_alien_caches) {
Pekka Enberg83b519e2009-06-10 19:40:04 +03001305 alien = alloc_alien_cache(node, cachep->limit, GFP_KERNEL);
Akinobu Mita12d00f62007-10-18 03:05:11 -07001306 if (!alien) {
1307 kfree(shared);
1308 kfree(nc);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001309 goto bad;
Akinobu Mita12d00f62007-10-18 03:05:11 -07001310 }
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001311 }
1312 cachep->array[cpu] = nc;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001313 n = cachep->node[node];
1314 BUG_ON(!n);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001315
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001316 spin_lock_irq(&n->list_lock);
1317 if (!n->shared) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001318 /*
1319 * We are serialised from CPU_DEAD or
1320 * CPU_UP_CANCELLED by the cpucontrol lock
1321 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001322 n->shared = shared;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001323 shared = NULL;
1324 }
1325#ifdef CONFIG_NUMA
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001326 if (!n->alien) {
1327 n->alien = alien;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001328 alien = NULL;
1329 }
1330#endif
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001331 spin_unlock_irq(&n->list_lock);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001332 kfree(shared);
1333 free_alien_cache(alien);
Peter Zijlstra83835b32011-07-22 15:26:05 +02001334 if (cachep->flags & SLAB_DEBUG_OBJECTS)
1335 slab_set_debugobj_lock_classes_node(cachep, node);
Glauber Costa6ccfb5b2012-12-18 14:22:31 -08001336 else if (!OFF_SLAB(cachep) &&
1337 !(cachep->flags & SLAB_DESTROY_BY_RCU))
1338 on_slab_lock_classes_node(cachep, node);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001339 }
Pekka Enbergce79ddc2009-11-23 22:01:15 +02001340 init_node_lock_keys(node);
1341
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001342 return 0;
1343bad:
Akinobu Mita12d00f62007-10-18 03:05:11 -07001344 cpuup_canceled(cpu);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001345 return -ENOMEM;
1346}
1347
1348static int __cpuinit cpuup_callback(struct notifier_block *nfb,
1349 unsigned long action, void *hcpu)
1350{
1351 long cpu = (long)hcpu;
1352 int err = 0;
1353
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 switch (action) {
Heiko Carstens38c3bd92007-05-09 02:34:05 -07001355 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001356 case CPU_UP_PREPARE_FROZEN:
Christoph Lameter18004c52012-07-06 15:25:12 -05001357 mutex_lock(&slab_mutex);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001358 err = cpuup_prepare(cpu);
Christoph Lameter18004c52012-07-06 15:25:12 -05001359 mutex_unlock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 break;
1361 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001362 case CPU_ONLINE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001363 start_cpu_timer(cpu);
1364 break;
1365#ifdef CONFIG_HOTPLUG_CPU
Christoph Lameter5830c592007-05-09 02:34:22 -07001366 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001367 case CPU_DOWN_PREPARE_FROZEN:
Christoph Lameter5830c592007-05-09 02:34:22 -07001368 /*
Christoph Lameter18004c52012-07-06 15:25:12 -05001369 * Shutdown cache reaper. Note that the slab_mutex is
Christoph Lameter5830c592007-05-09 02:34:22 -07001370 * held so that if cache_reap() is invoked it cannot do
1371 * anything expensive but will only modify reap_work
1372 * and reschedule the timer.
1373 */
Tejun Heoafe2c512010-12-14 16:21:17 +01001374 cancel_delayed_work_sync(&per_cpu(slab_reap_work, cpu));
Christoph Lameter5830c592007-05-09 02:34:22 -07001375 /* Now the cache_reaper is guaranteed to be not running. */
Tejun Heo1871e522009-10-29 22:34:13 +09001376 per_cpu(slab_reap_work, cpu).work.func = NULL;
Christoph Lameter5830c592007-05-09 02:34:22 -07001377 break;
1378 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001379 case CPU_DOWN_FAILED_FROZEN:
Christoph Lameter5830c592007-05-09 02:34:22 -07001380 start_cpu_timer(cpu);
1381 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001383 case CPU_DEAD_FROZEN:
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001384 /*
1385 * Even if all the cpus of a node are down, we don't free the
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001386 * kmem_cache_node of any cache. This to avoid a race between
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001387 * cpu_down, and a kmalloc allocation from another cpu for
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001388 * memory from the node of the cpu going down. The node
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001389 * structure is usually allocated from kmem_cache_create() and
1390 * gets destroyed at kmem_cache_destroy().
1391 */
Simon Arlott183ff222007-10-20 01:27:18 +02001392 /* fall through */
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08001393#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001395 case CPU_UP_CANCELED_FROZEN:
Christoph Lameter18004c52012-07-06 15:25:12 -05001396 mutex_lock(&slab_mutex);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001397 cpuup_canceled(cpu);
Christoph Lameter18004c52012-07-06 15:25:12 -05001398 mutex_unlock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 }
Akinobu Mitaeac40682010-05-26 14:43:32 -07001401 return notifier_from_errno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402}
1403
Chandra Seetharaman74b85f32006-06-27 02:54:09 -07001404static struct notifier_block __cpuinitdata cpucache_notifier = {
1405 &cpuup_callback, NULL, 0
1406};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407
David Rientjes8f9f8d92010-03-27 19:40:47 -07001408#if defined(CONFIG_NUMA) && defined(CONFIG_MEMORY_HOTPLUG)
1409/*
1410 * Drains freelist for a node on each slab cache, used for memory hot-remove.
1411 * Returns -EBUSY if all objects cannot be drained so that the node is not
1412 * removed.
1413 *
Christoph Lameter18004c52012-07-06 15:25:12 -05001414 * Must hold slab_mutex.
David Rientjes8f9f8d92010-03-27 19:40:47 -07001415 */
Christoph Lameter6a673682013-01-10 19:14:19 +00001416static int __meminit drain_cache_node_node(int node)
David Rientjes8f9f8d92010-03-27 19:40:47 -07001417{
1418 struct kmem_cache *cachep;
1419 int ret = 0;
1420
Christoph Lameter18004c52012-07-06 15:25:12 -05001421 list_for_each_entry(cachep, &slab_caches, list) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001422 struct kmem_cache_node *n;
David Rientjes8f9f8d92010-03-27 19:40:47 -07001423
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001424 n = cachep->node[node];
1425 if (!n)
David Rientjes8f9f8d92010-03-27 19:40:47 -07001426 continue;
1427
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001428 drain_freelist(cachep, n, n->free_objects);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001429
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001430 if (!list_empty(&n->slabs_full) ||
1431 !list_empty(&n->slabs_partial)) {
David Rientjes8f9f8d92010-03-27 19:40:47 -07001432 ret = -EBUSY;
1433 break;
1434 }
1435 }
1436 return ret;
1437}
1438
1439static int __meminit slab_memory_callback(struct notifier_block *self,
1440 unsigned long action, void *arg)
1441{
1442 struct memory_notify *mnb = arg;
1443 int ret = 0;
1444 int nid;
1445
1446 nid = mnb->status_change_nid;
1447 if (nid < 0)
1448 goto out;
1449
1450 switch (action) {
1451 case MEM_GOING_ONLINE:
Christoph Lameter18004c52012-07-06 15:25:12 -05001452 mutex_lock(&slab_mutex);
Christoph Lameter6a673682013-01-10 19:14:19 +00001453 ret = init_cache_node_node(nid);
Christoph Lameter18004c52012-07-06 15:25:12 -05001454 mutex_unlock(&slab_mutex);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001455 break;
1456 case MEM_GOING_OFFLINE:
Christoph Lameter18004c52012-07-06 15:25:12 -05001457 mutex_lock(&slab_mutex);
Christoph Lameter6a673682013-01-10 19:14:19 +00001458 ret = drain_cache_node_node(nid);
Christoph Lameter18004c52012-07-06 15:25:12 -05001459 mutex_unlock(&slab_mutex);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001460 break;
1461 case MEM_ONLINE:
1462 case MEM_OFFLINE:
1463 case MEM_CANCEL_ONLINE:
1464 case MEM_CANCEL_OFFLINE:
1465 break;
1466 }
1467out:
Prarit Bhargava5fda1bd2011-03-22 16:30:49 -07001468 return notifier_from_errno(ret);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001469}
1470#endif /* CONFIG_NUMA && CONFIG_MEMORY_HOTPLUG */
1471
Christoph Lametere498be72005-09-09 13:03:32 -07001472/*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001473 * swap the static kmem_cache_node with kmalloced memory
Christoph Lametere498be72005-09-09 13:03:32 -07001474 */
Christoph Lameter6744f082013-01-10 19:12:17 +00001475static void __init init_list(struct kmem_cache *cachep, struct kmem_cache_node *list,
David Rientjes8f9f8d92010-03-27 19:40:47 -07001476 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07001477{
Christoph Lameter6744f082013-01-10 19:12:17 +00001478 struct kmem_cache_node *ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001479
Christoph Lameter6744f082013-01-10 19:12:17 +00001480 ptr = kmalloc_node(sizeof(struct kmem_cache_node), GFP_NOWAIT, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07001481 BUG_ON(!ptr);
1482
Christoph Lameter6744f082013-01-10 19:12:17 +00001483 memcpy(ptr, list, sizeof(struct kmem_cache_node));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001484 /*
1485 * Do not assume that spinlocks can be initialized via memcpy:
1486 */
1487 spin_lock_init(&ptr->list_lock);
1488
Christoph Lametere498be72005-09-09 13:03:32 -07001489 MAKE_ALL_LISTS(cachep, ptr, nodeid);
Christoph Lameter6a673682013-01-10 19:14:19 +00001490 cachep->node[nodeid] = ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001491}
1492
Andrew Mortona737b3e2006-03-22 00:08:11 -08001493/*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001494 * For setting up all the kmem_cache_node for cache whose buffer_size is same as
1495 * size of kmem_cache_node.
Pekka Enberg556a1692008-01-25 08:20:51 +02001496 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001497static void __init set_up_node(struct kmem_cache *cachep, int index)
Pekka Enberg556a1692008-01-25 08:20:51 +02001498{
1499 int node;
1500
1501 for_each_online_node(node) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001502 cachep->node[node] = &init_kmem_cache_node[index + node];
Christoph Lameter6a673682013-01-10 19:14:19 +00001503 cachep->node[node]->next_reap = jiffies +
Pekka Enberg556a1692008-01-25 08:20:51 +02001504 REAPTIMEOUT_LIST3 +
1505 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
1506 }
1507}
1508
1509/*
Christoph Lameter3c583462012-11-28 16:23:01 +00001510 * The memory after the last cpu cache pointer is used for the
Christoph Lameter6a673682013-01-10 19:14:19 +00001511 * the node pointer.
Christoph Lameter3c583462012-11-28 16:23:01 +00001512 */
Christoph Lameter6a673682013-01-10 19:14:19 +00001513static void setup_node_pointer(struct kmem_cache *cachep)
Christoph Lameter3c583462012-11-28 16:23:01 +00001514{
Christoph Lameter6a673682013-01-10 19:14:19 +00001515 cachep->node = (struct kmem_cache_node **)&cachep->array[nr_cpu_ids];
Christoph Lameter3c583462012-11-28 16:23:01 +00001516}
1517
1518/*
Andrew Mortona737b3e2006-03-22 00:08:11 -08001519 * Initialisation. Called after the page allocator have been initialised and
1520 * before smp_init().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 */
1522void __init kmem_cache_init(void)
1523{
Christoph Lametere498be72005-09-09 13:03:32 -07001524 int i;
1525
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001526 kmem_cache = &kmem_cache_boot;
Christoph Lameter6a673682013-01-10 19:14:19 +00001527 setup_node_pointer(kmem_cache);
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001528
Mel Gormanb6e68bc2009-06-16 15:32:16 -07001529 if (num_possible_nodes() == 1)
Siddha, Suresh B62918a02007-05-02 19:27:18 +02001530 use_alien_caches = 0;
1531
Christoph Lameter3c583462012-11-28 16:23:01 +00001532 for (i = 0; i < NUM_INIT_LISTS; i++)
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001533 kmem_cache_node_init(&init_kmem_cache_node[i]);
Christoph Lameter3c583462012-11-28 16:23:01 +00001534
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001535 set_up_node(kmem_cache, CACHE_CACHE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536
1537 /*
1538 * Fragmentation resistance on low memory - only use bigger
David Rientjes3df1ccc2011-10-18 22:09:28 -07001539 * page orders on machines with more than 32MB of memory if
1540 * not overridden on the command line.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541 */
David Rientjes3df1ccc2011-10-18 22:09:28 -07001542 if (!slab_max_order_set && totalram_pages > (32 << 20) >> PAGE_SHIFT)
David Rientjes543585c2011-10-18 22:09:24 -07001543 slab_max_order = SLAB_MAX_ORDER_HI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 /* Bootstrap is tricky, because several objects are allocated
1546 * from caches that do not exist yet:
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001547 * 1) initialize the kmem_cache cache: it contains the struct
1548 * kmem_cache structures of all caches, except kmem_cache itself:
1549 * kmem_cache is statically allocated.
Christoph Lametere498be72005-09-09 13:03:32 -07001550 * Initially an __init data area is used for the head array and the
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001551 * kmem_cache_node structures, it's replaced with a kmalloc allocated
Christoph Lametere498be72005-09-09 13:03:32 -07001552 * array at the end of the bootstrap.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553 * 2) Create the first kmalloc cache.
Pekka Enberg343e0d72006-02-01 03:05:50 -08001554 * The struct kmem_cache for the new cache is allocated normally.
Christoph Lametere498be72005-09-09 13:03:32 -07001555 * An __init data area is used for the head array.
1556 * 3) Create the remaining kmalloc caches, with minimally sized
1557 * head arrays.
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001558 * 4) Replace the __init data head arrays for kmem_cache and the first
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 * kmalloc cache with kmalloc allocated arrays.
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001560 * 5) Replace the __init data for kmem_cache_node for kmem_cache and
Christoph Lametere498be72005-09-09 13:03:32 -07001561 * the other cache's with kmalloc allocated memory.
1562 * 6) Resize the head arrays of the kmalloc caches to their final sizes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 */
1564
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001565 /* 1) create the kmem_cache */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566
Eric Dumazet8da34302007-05-06 14:49:29 -07001567 /*
Eric Dumazetb56efcf2011-07-20 19:04:23 +02001568 * struct kmem_cache size depends on nr_node_ids & nr_cpu_ids
Eric Dumazet8da34302007-05-06 14:49:29 -07001569 */
Christoph Lameter2f9baa92012-11-28 16:23:09 +00001570 create_boot_cache(kmem_cache, "kmem_cache",
1571 offsetof(struct kmem_cache, array[nr_cpu_ids]) +
Christoph Lameter6744f082013-01-10 19:12:17 +00001572 nr_node_ids * sizeof(struct kmem_cache_node *),
Christoph Lameter2f9baa92012-11-28 16:23:09 +00001573 SLAB_HWCACHE_ALIGN);
1574 list_add(&kmem_cache->list, &slab_caches);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575
1576 /* 2+3) create the kmalloc caches */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577
Andrew Mortona737b3e2006-03-22 00:08:11 -08001578 /*
1579 * Initialize the caches that provide memory for the array cache and the
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001580 * kmem_cache_node structures first. Without this, further allocations will
Andrew Mortona737b3e2006-03-22 00:08:11 -08001581 * bug.
Christoph Lametere498be72005-09-09 13:03:32 -07001582 */
1583
Christoph Lametere3366012013-01-10 19:14:18 +00001584 kmalloc_caches[INDEX_AC] = create_kmalloc_cache("kmalloc-ac",
1585 kmalloc_size(INDEX_AC), ARCH_KMALLOC_FLAGS);
Christoph Lametere498be72005-09-09 13:03:32 -07001586
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001587 if (INDEX_AC != INDEX_NODE)
1588 kmalloc_caches[INDEX_NODE] =
1589 create_kmalloc_cache("kmalloc-node",
1590 kmalloc_size(INDEX_NODE), ARCH_KMALLOC_FLAGS);
Christoph Lametere498be72005-09-09 13:03:32 -07001591
Ingo Molnare0a42722006-06-23 02:03:46 -07001592 slab_early_init = 0;
1593
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 /* 4) Replace the bootstrap head arrays */
1595 {
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001596 struct array_cache *ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001597
Pekka Enberg83b519e2009-06-10 19:40:04 +03001598 ptr = kmalloc(sizeof(struct arraycache_init), GFP_NOWAIT);
Christoph Lametere498be72005-09-09 13:03:32 -07001599
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001600 memcpy(ptr, cpu_cache_get(kmem_cache),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001601 sizeof(struct arraycache_init));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001602 /*
1603 * Do not assume that spinlocks can be initialized via memcpy:
1604 */
1605 spin_lock_init(&ptr->lock);
1606
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001607 kmem_cache->array[smp_processor_id()] = ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001608
Pekka Enberg83b519e2009-06-10 19:40:04 +03001609 ptr = kmalloc(sizeof(struct arraycache_init), GFP_NOWAIT);
Christoph Lametere498be72005-09-09 13:03:32 -07001610
Christoph Lametere3366012013-01-10 19:14:18 +00001611 BUG_ON(cpu_cache_get(kmalloc_caches[INDEX_AC])
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001612 != &initarray_generic.cache);
Christoph Lametere3366012013-01-10 19:14:18 +00001613 memcpy(ptr, cpu_cache_get(kmalloc_caches[INDEX_AC]),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001614 sizeof(struct arraycache_init));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001615 /*
1616 * Do not assume that spinlocks can be initialized via memcpy:
1617 */
1618 spin_lock_init(&ptr->lock);
1619
Christoph Lametere3366012013-01-10 19:14:18 +00001620 kmalloc_caches[INDEX_AC]->array[smp_processor_id()] = ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001622 /* 5) Replace the bootstrap kmem_cache_node */
Christoph Lametere498be72005-09-09 13:03:32 -07001623 {
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001624 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625
Mel Gorman9c09a952008-01-24 05:49:54 -08001626 for_each_online_node(nid) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001627 init_list(kmem_cache, &init_kmem_cache_node[CACHE_CACHE + nid], nid);
Pekka Enberg556a1692008-01-25 08:20:51 +02001628
Christoph Lametere3366012013-01-10 19:14:18 +00001629 init_list(kmalloc_caches[INDEX_AC],
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001630 &init_kmem_cache_node[SIZE_AC + nid], nid);
Christoph Lametere498be72005-09-09 13:03:32 -07001631
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001632 if (INDEX_AC != INDEX_NODE) {
1633 init_list(kmalloc_caches[INDEX_NODE],
1634 &init_kmem_cache_node[SIZE_NODE + nid], nid);
Christoph Lametere498be72005-09-09 13:03:32 -07001635 }
1636 }
1637 }
1638
Christoph Lameterf97d5f62013-01-10 19:12:17 +00001639 create_kmalloc_caches(ARCH_KMALLOC_FLAGS);
Pekka Enberg8429db52009-06-12 15:58:59 +03001640}
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -07001641
Pekka Enberg8429db52009-06-12 15:58:59 +03001642void __init kmem_cache_init_late(void)
1643{
1644 struct kmem_cache *cachep;
1645
Christoph Lameter97d06602012-07-06 15:25:11 -05001646 slab_state = UP;
Peter Zijlstra52cef182011-11-28 21:12:40 +01001647
Pekka Enberg8429db52009-06-12 15:58:59 +03001648 /* 6) resize the head arrays to their final sizes */
Christoph Lameter18004c52012-07-06 15:25:12 -05001649 mutex_lock(&slab_mutex);
1650 list_for_each_entry(cachep, &slab_caches, list)
Pekka Enberg8429db52009-06-12 15:58:59 +03001651 if (enable_cpucache(cachep, GFP_NOWAIT))
1652 BUG();
Christoph Lameter18004c52012-07-06 15:25:12 -05001653 mutex_unlock(&slab_mutex);
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -07001654
Michael Wang947ca182012-09-05 10:33:18 +08001655 /* Annotate slab for lockdep -- annotate the malloc caches */
1656 init_lock_keys();
1657
Christoph Lameter97d06602012-07-06 15:25:11 -05001658 /* Done! */
1659 slab_state = FULL;
1660
Andrew Mortona737b3e2006-03-22 00:08:11 -08001661 /*
1662 * Register a cpu startup notifier callback that initializes
1663 * cpu_cache_get for all new cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 */
1665 register_cpu_notifier(&cpucache_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666
David Rientjes8f9f8d92010-03-27 19:40:47 -07001667#ifdef CONFIG_NUMA
1668 /*
1669 * Register a memory hotplug callback that initializes and frees
Christoph Lameter6a673682013-01-10 19:14:19 +00001670 * node.
David Rientjes8f9f8d92010-03-27 19:40:47 -07001671 */
1672 hotplug_memory_notifier(slab_memory_callback, SLAB_CALLBACK_PRI);
1673#endif
1674
Andrew Mortona737b3e2006-03-22 00:08:11 -08001675 /*
1676 * The reap timers are started later, with a module init call: That part
1677 * of the kernel is not yet operational.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 */
1679}
1680
1681static int __init cpucache_init(void)
1682{
1683 int cpu;
1684
Andrew Mortona737b3e2006-03-22 00:08:11 -08001685 /*
1686 * Register the timers that return unneeded pages to the page allocator
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 */
Christoph Lametere498be72005-09-09 13:03:32 -07001688 for_each_online_cpu(cpu)
Andrew Mortona737b3e2006-03-22 00:08:11 -08001689 start_cpu_timer(cpu);
Glauber Costaa164f8962012-06-21 00:59:18 +04001690
1691 /* Done! */
Christoph Lameter97d06602012-07-06 15:25:11 -05001692 slab_state = FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001693 return 0;
1694}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695__initcall(cpucache_init);
1696
Rafael Aquini8bdec192012-03-09 17:27:27 -03001697static noinline void
1698slab_out_of_memory(struct kmem_cache *cachep, gfp_t gfpflags, int nodeid)
1699{
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001700 struct kmem_cache_node *n;
Rafael Aquini8bdec192012-03-09 17:27:27 -03001701 struct slab *slabp;
1702 unsigned long flags;
1703 int node;
1704
1705 printk(KERN_WARNING
1706 "SLAB: Unable to allocate memory on node %d (gfp=0x%x)\n",
1707 nodeid, gfpflags);
1708 printk(KERN_WARNING " cache: %s, object size: %d, order: %d\n",
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05001709 cachep->name, cachep->size, cachep->gfporder);
Rafael Aquini8bdec192012-03-09 17:27:27 -03001710
1711 for_each_online_node(node) {
1712 unsigned long active_objs = 0, num_objs = 0, free_objects = 0;
1713 unsigned long active_slabs = 0, num_slabs = 0;
1714
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001715 n = cachep->node[node];
1716 if (!n)
Rafael Aquini8bdec192012-03-09 17:27:27 -03001717 continue;
1718
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001719 spin_lock_irqsave(&n->list_lock, flags);
1720 list_for_each_entry(slabp, &n->slabs_full, list) {
Rafael Aquini8bdec192012-03-09 17:27:27 -03001721 active_objs += cachep->num;
1722 active_slabs++;
1723 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001724 list_for_each_entry(slabp, &n->slabs_partial, list) {
Rafael Aquini8bdec192012-03-09 17:27:27 -03001725 active_objs += slabp->inuse;
1726 active_slabs++;
1727 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001728 list_for_each_entry(slabp, &n->slabs_free, list)
Rafael Aquini8bdec192012-03-09 17:27:27 -03001729 num_slabs++;
1730
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00001731 free_objects += n->free_objects;
1732 spin_unlock_irqrestore(&n->list_lock, flags);
Rafael Aquini8bdec192012-03-09 17:27:27 -03001733
1734 num_slabs += active_slabs;
1735 num_objs = num_slabs * cachep->num;
1736 printk(KERN_WARNING
1737 " node %d: slabs: %ld/%ld, objs: %ld/%ld, free: %ld\n",
1738 node, active_slabs, num_slabs, active_objs, num_objs,
1739 free_objects);
1740 }
1741}
1742
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743/*
1744 * Interface to system's page allocator. No need to hold the cache-lock.
1745 *
1746 * If we requested dmaable memory, we will get it. Even if we
1747 * did not request dmaable memory, we might get it, but that
1748 * would be relatively rare and ignorable.
1749 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001750static void *kmem_getpages(struct kmem_cache *cachep, gfp_t flags, int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751{
1752 struct page *page;
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001753 int nr_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 int i;
1755
Luke Yangd6fef9d2006-04-10 22:52:56 -07001756#ifndef CONFIG_MMU
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001757 /*
1758 * Nommu uses slab's for process anonymous memory allocations, and thus
1759 * requires __GFP_COMP to properly refcount higher order allocations
Luke Yangd6fef9d2006-04-10 22:52:56 -07001760 */
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001761 flags |= __GFP_COMP;
Luke Yangd6fef9d2006-04-10 22:52:56 -07001762#endif
Christoph Lameter765c4502006-09-27 01:50:08 -07001763
Glauber Costaa618e892012-06-14 16:17:21 +04001764 flags |= cachep->allocflags;
Mel Gormane12ba742007-10-16 01:25:52 -07001765 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1766 flags |= __GFP_RECLAIMABLE;
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001767
Linus Torvalds517d0862009-06-16 19:50:13 -07001768 page = alloc_pages_exact_node(nodeid, flags | __GFP_NOTRACK, cachep->gfporder);
Rafael Aquini8bdec192012-03-09 17:27:27 -03001769 if (!page) {
1770 if (!(flags & __GFP_NOWARN) && printk_ratelimit())
1771 slab_out_of_memory(cachep, flags, nodeid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001772 return NULL;
Rafael Aquini8bdec192012-03-09 17:27:27 -03001773 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774
Mel Gormanb37f1dd2012-07-31 16:44:03 -07001775 /* Record if ALLOC_NO_WATERMARKS was set when allocating the slab */
Mel Gorman072bb0a2012-07-31 16:43:58 -07001776 if (unlikely(page->pfmemalloc))
1777 pfmemalloc_active = true;
1778
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001779 nr_pages = (1 << cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
Christoph Lameter972d1a72006-09-25 23:31:51 -07001781 add_zone_page_state(page_zone(page),
1782 NR_SLAB_RECLAIMABLE, nr_pages);
1783 else
1784 add_zone_page_state(page_zone(page),
1785 NR_SLAB_UNRECLAIMABLE, nr_pages);
Mel Gorman072bb0a2012-07-31 16:43:58 -07001786 for (i = 0; i < nr_pages; i++) {
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001787 __SetPageSlab(page + i);
Pekka Enbergc175eea2008-05-09 20:35:53 +02001788
Mel Gorman072bb0a2012-07-31 16:43:58 -07001789 if (page->pfmemalloc)
1790 SetPageSlabPfmemalloc(page + i);
1791 }
Glauber Costa1f458cb2012-12-18 14:22:50 -08001792 memcg_bind_pages(cachep, cachep->gfporder);
Mel Gorman072bb0a2012-07-31 16:43:58 -07001793
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001794 if (kmemcheck_enabled && !(cachep->flags & SLAB_NOTRACK)) {
1795 kmemcheck_alloc_shadow(page, cachep->gfporder, flags, nodeid);
1796
1797 if (cachep->ctor)
1798 kmemcheck_mark_uninitialized_pages(page, nr_pages);
1799 else
1800 kmemcheck_mark_unallocated_pages(page, nr_pages);
1801 }
Pekka Enbergc175eea2008-05-09 20:35:53 +02001802
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001803 return page_address(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804}
1805
1806/*
1807 * Interface to system's page release.
1808 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001809static void kmem_freepages(struct kmem_cache *cachep, void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001811 unsigned long i = (1 << cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 struct page *page = virt_to_page(addr);
1813 const unsigned long nr_freed = i;
1814
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001815 kmemcheck_free_shadow(page, cachep->gfporder);
Pekka Enbergc175eea2008-05-09 20:35:53 +02001816
Christoph Lameter972d1a72006-09-25 23:31:51 -07001817 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1818 sub_zone_page_state(page_zone(page),
1819 NR_SLAB_RECLAIMABLE, nr_freed);
1820 else
1821 sub_zone_page_state(page_zone(page),
1822 NR_SLAB_UNRECLAIMABLE, nr_freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 while (i--) {
Nick Pigginf205b2f2006-03-22 00:08:02 -08001824 BUG_ON(!PageSlab(page));
Mel Gorman072bb0a2012-07-31 16:43:58 -07001825 __ClearPageSlabPfmemalloc(page);
Nick Pigginf205b2f2006-03-22 00:08:02 -08001826 __ClearPageSlab(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 page++;
1828 }
Glauber Costa1f458cb2012-12-18 14:22:50 -08001829
1830 memcg_release_pages(cachep, cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 if (current->reclaim_state)
1832 current->reclaim_state->reclaimed_slab += nr_freed;
Glauber Costad79923f2012-12-18 14:22:48 -08001833 free_memcg_kmem_pages((unsigned long)addr, cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001834}
1835
1836static void kmem_rcu_free(struct rcu_head *head)
1837{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001838 struct slab_rcu *slab_rcu = (struct slab_rcu *)head;
Pekka Enberg343e0d72006-02-01 03:05:50 -08001839 struct kmem_cache *cachep = slab_rcu->cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840
1841 kmem_freepages(cachep, slab_rcu->addr);
1842 if (OFF_SLAB(cachep))
1843 kmem_cache_free(cachep->slabp_cache, slab_rcu);
1844}
1845
1846#if DEBUG
1847
1848#ifdef CONFIG_DEBUG_PAGEALLOC
Pekka Enberg343e0d72006-02-01 03:05:50 -08001849static void store_stackinfo(struct kmem_cache *cachep, unsigned long *addr,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001850 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851{
Christoph Lameter8c138bc2012-06-13 10:24:58 -05001852 int size = cachep->object_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001854 addr = (unsigned long *)&((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001856 if (size < 5 * sizeof(unsigned long))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 return;
1858
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001859 *addr++ = 0x12345678;
1860 *addr++ = caller;
1861 *addr++ = smp_processor_id();
1862 size -= 3 * sizeof(unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 {
1864 unsigned long *sptr = &caller;
1865 unsigned long svalue;
1866
1867 while (!kstack_end(sptr)) {
1868 svalue = *sptr++;
1869 if (kernel_text_address(svalue)) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001870 *addr++ = svalue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 size -= sizeof(unsigned long);
1872 if (size <= sizeof(unsigned long))
1873 break;
1874 }
1875 }
1876
1877 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001878 *addr++ = 0x87654321;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879}
1880#endif
1881
Pekka Enberg343e0d72006-02-01 03:05:50 -08001882static void poison_obj(struct kmem_cache *cachep, void *addr, unsigned char val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883{
Christoph Lameter8c138bc2012-06-13 10:24:58 -05001884 int size = cachep->object_size;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001885 addr = &((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886
1887 memset(addr, val, size);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001888 *(unsigned char *)(addr + size - 1) = POISON_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889}
1890
1891static void dump_line(char *data, int offset, int limit)
1892{
1893 int i;
Dave Jonesaa83aa42006-09-29 01:59:51 -07001894 unsigned char error = 0;
1895 int bad_count = 0;
1896
Sebastian Andrzej Siewiorfdde6ab2011-07-29 18:22:13 +02001897 printk(KERN_ERR "%03x: ", offset);
Dave Jonesaa83aa42006-09-29 01:59:51 -07001898 for (i = 0; i < limit; i++) {
1899 if (data[offset + i] != POISON_FREE) {
1900 error = data[offset + i];
1901 bad_count++;
1902 }
Dave Jonesaa83aa42006-09-29 01:59:51 -07001903 }
Sebastian Andrzej Siewiorfdde6ab2011-07-29 18:22:13 +02001904 print_hex_dump(KERN_CONT, "", 0, 16, 1,
1905 &data[offset], limit, 1);
Dave Jonesaa83aa42006-09-29 01:59:51 -07001906
1907 if (bad_count == 1) {
1908 error ^= POISON_FREE;
1909 if (!(error & (error - 1))) {
1910 printk(KERN_ERR "Single bit error detected. Probably "
1911 "bad RAM.\n");
1912#ifdef CONFIG_X86
1913 printk(KERN_ERR "Run memtest86+ or a similar memory "
1914 "test tool.\n");
1915#else
1916 printk(KERN_ERR "Run a memory test tool.\n");
1917#endif
1918 }
1919 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920}
1921#endif
1922
1923#if DEBUG
1924
Pekka Enberg343e0d72006-02-01 03:05:50 -08001925static void print_objinfo(struct kmem_cache *cachep, void *objp, int lines)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926{
1927 int i, size;
1928 char *realobj;
1929
1930 if (cachep->flags & SLAB_RED_ZONE) {
David Woodhouseb46b8f12007-05-08 00:22:59 -07001931 printk(KERN_ERR "Redzone: 0x%llx/0x%llx.\n",
Andrew Mortona737b3e2006-03-22 00:08:11 -08001932 *dbg_redzone1(cachep, objp),
1933 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 }
1935
1936 if (cachep->flags & SLAB_STORE_USER) {
1937 printk(KERN_ERR "Last user: [<%p>]",
Andrew Mortona737b3e2006-03-22 00:08:11 -08001938 *dbg_userword(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 print_symbol("(%s)",
Andrew Mortona737b3e2006-03-22 00:08:11 -08001940 (unsigned long)*dbg_userword(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 printk("\n");
1942 }
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001943 realobj = (char *)objp + obj_offset(cachep);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05001944 size = cachep->object_size;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001945 for (i = 0; i < size && lines; i += 16, lines--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 int limit;
1947 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001948 if (i + limit > size)
1949 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 dump_line(realobj, i, limit);
1951 }
1952}
1953
Pekka Enberg343e0d72006-02-01 03:05:50 -08001954static void check_poison_obj(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955{
1956 char *realobj;
1957 int size, i;
1958 int lines = 0;
1959
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001960 realobj = (char *)objp + obj_offset(cachep);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05001961 size = cachep->object_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001963 for (i = 0; i < size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 char exp = POISON_FREE;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001965 if (i == size - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 exp = POISON_END;
1967 if (realobj[i] != exp) {
1968 int limit;
1969 /* Mismatch ! */
1970 /* Print header */
1971 if (lines == 0) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001972 printk(KERN_ERR
Dave Jonesface37f2011-11-15 15:03:52 -08001973 "Slab corruption (%s): %s start=%p, len=%d\n",
1974 print_tainted(), cachep->name, realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 print_objinfo(cachep, objp, 0);
1976 }
1977 /* Hexdump the affected line */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001978 i = (i / 16) * 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001980 if (i + limit > size)
1981 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 dump_line(realobj, i, limit);
1983 i += 16;
1984 lines++;
1985 /* Limit to 5 lines */
1986 if (lines > 5)
1987 break;
1988 }
1989 }
1990 if (lines != 0) {
1991 /* Print some data about the neighboring objects, if they
1992 * exist:
1993 */
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -08001994 struct slab *slabp = virt_to_slab(objp);
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001995 unsigned int objnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001997 objnr = obj_to_index(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 if (objnr) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001999 objp = index_to_obj(cachep, slabp, objnr - 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002000 realobj = (char *)objp + obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 printk(KERN_ERR "Prev obj: start=%p, len=%d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002002 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 print_objinfo(cachep, objp, 2);
2004 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002005 if (objnr + 1 < cachep->num) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002006 objp = index_to_obj(cachep, slabp, objnr + 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002007 realobj = (char *)objp + obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 printk(KERN_ERR "Next obj: start=%p, len=%d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002009 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002010 print_objinfo(cachep, objp, 2);
2011 }
2012 }
2013}
2014#endif
2015
Linus Torvalds1da177e2005-04-16 15:20:36 -07002016#if DEBUG
Rabin Vincente79aec22008-07-04 00:40:32 +05302017static void slab_destroy_debugcheck(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002018{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 int i;
2020 for (i = 0; i < cachep->num; i++) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002021 void *objp = index_to_obj(cachep, slabp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022
2023 if (cachep->flags & SLAB_POISON) {
2024#ifdef CONFIG_DEBUG_PAGEALLOC
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002025 if (cachep->size % PAGE_SIZE == 0 &&
Andrew Mortona737b3e2006-03-22 00:08:11 -08002026 OFF_SLAB(cachep))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002027 kernel_map_pages(virt_to_page(objp),
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002028 cachep->size / PAGE_SIZE, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 else
2030 check_poison_obj(cachep, objp);
2031#else
2032 check_poison_obj(cachep, objp);
2033#endif
2034 }
2035 if (cachep->flags & SLAB_RED_ZONE) {
2036 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
2037 slab_error(cachep, "start of a freed object "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002038 "was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002039 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
2040 slab_error(cachep, "end of a freed object "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002041 "was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002042 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 }
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002044}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002045#else
Rabin Vincente79aec22008-07-04 00:40:32 +05302046static void slab_destroy_debugcheck(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002047{
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002048}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002049#endif
2050
Randy Dunlap911851e2006-03-22 00:08:14 -08002051/**
2052 * slab_destroy - destroy and release all objects in a slab
2053 * @cachep: cache pointer being destroyed
2054 * @slabp: slab pointer being destroyed
2055 *
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002056 * Destroy all the objs in a slab, and release the mem back to the system.
Andrew Mortona737b3e2006-03-22 00:08:11 -08002057 * Before calling the slab must have been unlinked from the cache. The
2058 * cache-lock is not held/needed.
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002059 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002060static void slab_destroy(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002061{
2062 void *addr = slabp->s_mem - slabp->colouroff;
2063
Rabin Vincente79aec22008-07-04 00:40:32 +05302064 slab_destroy_debugcheck(cachep, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 if (unlikely(cachep->flags & SLAB_DESTROY_BY_RCU)) {
2066 struct slab_rcu *slab_rcu;
2067
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002068 slab_rcu = (struct slab_rcu *)slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 slab_rcu->cachep = cachep;
2070 slab_rcu->addr = addr;
2071 call_rcu(&slab_rcu->head, kmem_rcu_free);
2072 } else {
2073 kmem_freepages(cachep, addr);
Ingo Molnar873623d2006-07-13 14:44:38 +02002074 if (OFF_SLAB(cachep))
2075 kmem_cache_free(cachep->slabp_cache, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 }
2077}
2078
2079/**
Randy.Dunlapa70773d2006-02-01 03:05:52 -08002080 * calculate_slab_order - calculate size (page order) of slabs
2081 * @cachep: pointer to the cache that is being created
2082 * @size: size of objects to be created in this cache.
2083 * @align: required alignment for the objects.
2084 * @flags: slab allocation flags
2085 *
2086 * Also calculates the number of objects per slab.
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002087 *
2088 * This could be made much more intelligent. For now, try to avoid using
2089 * high order pages for slabs. When the gfp() functions are more friendly
2090 * towards high-order requests, this should be changed.
2091 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002092static size_t calculate_slab_order(struct kmem_cache *cachep,
Randy Dunlapee13d782006-02-01 03:05:53 -08002093 size_t size, size_t align, unsigned long flags)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002094{
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02002095 unsigned long offslab_limit;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002096 size_t left_over = 0;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002097 int gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002098
Christoph Lameter0aa817f2007-05-16 22:11:01 -07002099 for (gfporder = 0; gfporder <= KMALLOC_MAX_ORDER; gfporder++) {
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002100 unsigned int num;
2101 size_t remainder;
2102
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002103 cache_estimate(gfporder, size, align, flags, &remainder, &num);
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002104 if (!num)
2105 continue;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002106
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02002107 if (flags & CFLGS_OFF_SLAB) {
2108 /*
2109 * Max number of objs-per-slab for caches which
2110 * use off-slab slabs. Needed to avoid a possible
2111 * looping condition in cache_grow().
2112 */
2113 offslab_limit = size - sizeof(struct slab);
2114 offslab_limit /= sizeof(kmem_bufctl_t);
2115
2116 if (num > offslab_limit)
2117 break;
2118 }
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002119
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002120 /* Found something acceptable - save it away */
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002121 cachep->num = num;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002122 cachep->gfporder = gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002123 left_over = remainder;
2124
2125 /*
Linus Torvaldsf78bb8a2006-03-08 10:33:05 -08002126 * A VFS-reclaimable slab tends to have most allocations
2127 * as GFP_NOFS and we really don't want to have to be allocating
2128 * higher-order pages when we are unable to shrink dcache.
2129 */
2130 if (flags & SLAB_RECLAIM_ACCOUNT)
2131 break;
2132
2133 /*
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002134 * Large number of objects is good, but very large slabs are
2135 * currently bad for the gfp()s.
2136 */
David Rientjes543585c2011-10-18 22:09:24 -07002137 if (gfporder >= slab_max_order)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002138 break;
2139
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002140 /*
2141 * Acceptable internal fragmentation?
2142 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002143 if (left_over * 8 <= (PAGE_SIZE << gfporder))
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002144 break;
2145 }
2146 return left_over;
2147}
2148
Pekka Enberg83b519e2009-06-10 19:40:04 +03002149static int __init_refok setup_cpu_cache(struct kmem_cache *cachep, gfp_t gfp)
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002150{
Christoph Lameter97d06602012-07-06 15:25:11 -05002151 if (slab_state >= FULL)
Pekka Enberg83b519e2009-06-10 19:40:04 +03002152 return enable_cpucache(cachep, gfp);
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002153
Christoph Lameter97d06602012-07-06 15:25:11 -05002154 if (slab_state == DOWN) {
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002155 /*
Christoph Lameter2f9baa92012-11-28 16:23:09 +00002156 * Note: Creation of first cache (kmem_cache).
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002157 * The setup_node is taken care
Christoph Lameter2f9baa92012-11-28 16:23:09 +00002158 * of by the caller of __kmem_cache_create
2159 */
2160 cachep->array[smp_processor_id()] = &initarray_generic.cache;
2161 slab_state = PARTIAL;
2162 } else if (slab_state == PARTIAL) {
2163 /*
2164 * Note: the second kmem_cache_create must create the cache
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002165 * that's used by kmalloc(24), otherwise the creation of
2166 * further caches will BUG().
2167 */
2168 cachep->array[smp_processor_id()] = &initarray_generic.cache;
2169
2170 /*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002171 * If the cache that's used by kmalloc(sizeof(kmem_cache_node)) is
2172 * the second cache, then we need to set up all its node/,
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002173 * otherwise the creation of further caches will BUG().
2174 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002175 set_up_node(cachep, SIZE_AC);
2176 if (INDEX_AC == INDEX_NODE)
2177 slab_state = PARTIAL_NODE;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002178 else
Christoph Lameter97d06602012-07-06 15:25:11 -05002179 slab_state = PARTIAL_ARRAYCACHE;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002180 } else {
Christoph Lameter2f9baa92012-11-28 16:23:09 +00002181 /* Remaining boot caches */
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002182 cachep->array[smp_processor_id()] =
Pekka Enberg83b519e2009-06-10 19:40:04 +03002183 kmalloc(sizeof(struct arraycache_init), gfp);
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002184
Christoph Lameter97d06602012-07-06 15:25:11 -05002185 if (slab_state == PARTIAL_ARRAYCACHE) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002186 set_up_node(cachep, SIZE_NODE);
2187 slab_state = PARTIAL_NODE;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002188 } else {
2189 int node;
Pekka Enberg556a1692008-01-25 08:20:51 +02002190 for_each_online_node(node) {
Christoph Lameter6a673682013-01-10 19:14:19 +00002191 cachep->node[node] =
Christoph Lameter6744f082013-01-10 19:12:17 +00002192 kmalloc_node(sizeof(struct kmem_cache_node),
Pekka Enbergeb91f1d2009-06-12 14:56:09 +03002193 gfp, node);
Christoph Lameter6a673682013-01-10 19:14:19 +00002194 BUG_ON(!cachep->node[node]);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002195 kmem_cache_node_init(cachep->node[node]);
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002196 }
2197 }
2198 }
Christoph Lameter6a673682013-01-10 19:14:19 +00002199 cachep->node[numa_mem_id()]->next_reap =
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002200 jiffies + REAPTIMEOUT_LIST3 +
2201 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
2202
2203 cpu_cache_get(cachep)->avail = 0;
2204 cpu_cache_get(cachep)->limit = BOOT_CPUCACHE_ENTRIES;
2205 cpu_cache_get(cachep)->batchcount = 1;
2206 cpu_cache_get(cachep)->touched = 0;
2207 cachep->batchcount = 1;
2208 cachep->limit = BOOT_CPUCACHE_ENTRIES;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002209 return 0;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002210}
2211
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002212/**
Christoph Lameter039363f2012-07-06 15:25:10 -05002213 * __kmem_cache_create - Create a cache.
Randy Dunlapa755b762012-11-06 17:10:10 -08002214 * @cachep: cache management descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215 * @flags: SLAB flags
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 *
2217 * Returns a ptr to the cache on success, NULL on failure.
2218 * Cannot be called within a int, but can be interrupted.
Paul Mundt20c2df82007-07-20 10:11:58 +09002219 * The @ctor is run when new pages are allocated by the cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002221 * The flags are
2222 *
2223 * %SLAB_POISON - Poison the slab with a known test pattern (a5a5a5a5)
2224 * to catch references to uninitialised memory.
2225 *
2226 * %SLAB_RED_ZONE - Insert `Red' zones around the allocated memory to check
2227 * for buffer overruns.
2228 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 * %SLAB_HWCACHE_ALIGN - Align the objects in this cache to a hardware
2230 * cacheline. This can be beneficial if you're counting cycles as closely
2231 * as davem.
2232 */
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002233int
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002234__kmem_cache_create (struct kmem_cache *cachep, unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002235{
2236 size_t left_over, slab_size, ralign;
Pekka Enberg83b519e2009-06-10 19:40:04 +03002237 gfp_t gfp;
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002238 int err;
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002239 size_t size = cachep->size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241#if DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07002242#if FORCED_DEBUG
2243 /*
2244 * Enable redzoning and last user accounting, except for caches with
2245 * large objects, if the increased size would increase the object size
2246 * above the next power of two: caches with object sizes just above a
2247 * power of two have a significant amount of internal fragmentation.
2248 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002249 if (size < 4096 || fls(size - 1) == fls(size-1 + REDZONE_ALIGN +
2250 2 * sizeof(unsigned long long)))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002251 flags |= SLAB_RED_ZONE | SLAB_STORE_USER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 if (!(flags & SLAB_DESTROY_BY_RCU))
2253 flags |= SLAB_POISON;
2254#endif
2255 if (flags & SLAB_DESTROY_BY_RCU)
2256 BUG_ON(flags & SLAB_POISON);
2257#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002258
Andrew Mortona737b3e2006-03-22 00:08:11 -08002259 /*
2260 * Check that size is in terms of words. This is needed to avoid
Linus Torvalds1da177e2005-04-16 15:20:36 -07002261 * unaligned accesses for some archs when redzoning is used, and makes
2262 * sure any on-slab bufctl's are also correctly aligned.
2263 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002264 if (size & (BYTES_PER_WORD - 1)) {
2265 size += (BYTES_PER_WORD - 1);
2266 size &= ~(BYTES_PER_WORD - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 }
2268
Pekka Enbergca5f9702006-09-25 23:31:25 -07002269 /*
David Woodhouse87a927c2007-07-04 21:26:44 -04002270 * Redzoning and user store require word alignment or possibly larger.
2271 * Note this will be overridden by architecture or caller mandated
2272 * alignment if either is greater than BYTES_PER_WORD.
Pekka Enbergca5f9702006-09-25 23:31:25 -07002273 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002274 if (flags & SLAB_STORE_USER)
2275 ralign = BYTES_PER_WORD;
2276
2277 if (flags & SLAB_RED_ZONE) {
2278 ralign = REDZONE_ALIGN;
2279 /* If redzoning, ensure that the second redzone is suitably
2280 * aligned, by adjusting the object size accordingly. */
2281 size += REDZONE_ALIGN - 1;
2282 size &= ~(REDZONE_ALIGN - 1);
2283 }
Pekka Enbergca5f9702006-09-25 23:31:25 -07002284
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002285 /* 3) caller mandated alignment */
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002286 if (ralign < cachep->align) {
2287 ralign = cachep->align;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 }
Pekka Enberg3ff84a72011-02-14 17:46:21 +02002289 /* disable debug if necessary */
2290 if (ralign > __alignof__(unsigned long long))
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002291 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002292 /*
Pekka Enbergca5f9702006-09-25 23:31:25 -07002293 * 4) Store it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 */
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002295 cachep->align = ralign;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296
Pekka Enberg83b519e2009-06-10 19:40:04 +03002297 if (slab_is_available())
2298 gfp = GFP_KERNEL;
2299 else
2300 gfp = GFP_NOWAIT;
2301
Christoph Lameter6a673682013-01-10 19:14:19 +00002302 setup_node_pointer(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303#if DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304
Pekka Enbergca5f9702006-09-25 23:31:25 -07002305 /*
2306 * Both debugging options require word-alignment which is calculated
2307 * into align above.
2308 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 if (flags & SLAB_RED_ZONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002310 /* add space for red zone words */
Pekka Enberg3ff84a72011-02-14 17:46:21 +02002311 cachep->obj_offset += sizeof(unsigned long long);
2312 size += 2 * sizeof(unsigned long long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 }
2314 if (flags & SLAB_STORE_USER) {
Pekka Enbergca5f9702006-09-25 23:31:25 -07002315 /* user store requires one word storage behind the end of
David Woodhouse87a927c2007-07-04 21:26:44 -04002316 * the real object. But if the second red zone needs to be
2317 * aligned to 64 bits, we must allow that much space.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002319 if (flags & SLAB_RED_ZONE)
2320 size += REDZONE_ALIGN;
2321 else
2322 size += BYTES_PER_WORD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 }
2324#if FORCED_DEBUG && defined(CONFIG_DEBUG_PAGEALLOC)
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002325 if (size >= kmalloc_size(INDEX_NODE + 1)
Christoph Lametere3366012013-01-10 19:14:18 +00002326 && cachep->object_size > cache_line_size() && ALIGN(size, align) < PAGE_SIZE) {
2327 cachep->obj_offset += PAGE_SIZE - ALIGN(size, align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 size = PAGE_SIZE;
2329 }
2330#endif
2331#endif
2332
Ingo Molnare0a42722006-06-23 02:03:46 -07002333 /*
2334 * Determine if the slab management is 'on' or 'off' slab.
2335 * (bootstrapping cannot cope with offslab caches so don't do
Catalin Marinase7cb55b2009-10-28 13:33:08 +00002336 * it too early on. Always use on-slab management when
2337 * SLAB_NOLEAKTRACE to avoid recursive calls into kmemleak)
Ingo Molnare0a42722006-06-23 02:03:46 -07002338 */
Catalin Marinase7cb55b2009-10-28 13:33:08 +00002339 if ((size >= (PAGE_SIZE >> 3)) && !slab_early_init &&
2340 !(flags & SLAB_NOLEAKTRACE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 /*
2342 * Size is large, assume best to place the slab management obj
2343 * off-slab (should allow better packing of objs).
2344 */
2345 flags |= CFLGS_OFF_SLAB;
2346
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002347 size = ALIGN(size, cachep->align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002349 left_over = calculate_slab_order(cachep, size, cachep->align, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002351 if (!cachep->num)
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002352 return -E2BIG;
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002353
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002354 slab_size = ALIGN(cachep->num * sizeof(kmem_bufctl_t)
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002355 + sizeof(struct slab), cachep->align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356
2357 /*
2358 * If the slab has been placed off-slab, and we have enough space then
2359 * move it on-slab. This is at the expense of any extra colouring.
2360 */
2361 if (flags & CFLGS_OFF_SLAB && left_over >= slab_size) {
2362 flags &= ~CFLGS_OFF_SLAB;
2363 left_over -= slab_size;
2364 }
2365
2366 if (flags & CFLGS_OFF_SLAB) {
2367 /* really off slab. No need for manual alignment */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002368 slab_size =
2369 cachep->num * sizeof(kmem_bufctl_t) + sizeof(struct slab);
Ron Lee67461362009-05-22 04:58:22 +09302370
2371#ifdef CONFIG_PAGE_POISONING
2372 /* If we're going to use the generic kernel_map_pages()
2373 * poisoning, then it's going to smash the contents of
2374 * the redzone and userword anyhow, so switch them off.
2375 */
2376 if (size % PAGE_SIZE == 0 && flags & SLAB_POISON)
2377 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
2378#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 }
2380
2381 cachep->colour_off = cache_line_size();
2382 /* Offset must be a multiple of the alignment. */
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002383 if (cachep->colour_off < cachep->align)
2384 cachep->colour_off = cachep->align;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002385 cachep->colour = left_over / cachep->colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 cachep->slab_size = slab_size;
2387 cachep->flags = flags;
Glauber Costaa618e892012-06-14 16:17:21 +04002388 cachep->allocflags = 0;
Christoph Lameter4b51d662007-02-10 01:43:10 -08002389 if (CONFIG_ZONE_DMA_FLAG && (flags & SLAB_CACHE_DMA))
Glauber Costaa618e892012-06-14 16:17:21 +04002390 cachep->allocflags |= GFP_DMA;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002391 cachep->size = size;
Eric Dumazet6a2d7a92006-12-13 00:34:27 -08002392 cachep->reciprocal_buffer_size = reciprocal_value(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002394 if (flags & CFLGS_OFF_SLAB) {
Christoph Lameter2c59dd62013-01-10 19:14:19 +00002395 cachep->slabp_cache = kmalloc_slab(slab_size, 0u);
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002396 /*
2397 * This is a possibility for one of the malloc_sizes caches.
2398 * But since we go off slab only for object size greater than
2399 * PAGE_SIZE/8, and malloc_sizes gets created in ascending order,
2400 * this should not happen at all.
2401 * But leave a BUG_ON for some lucky dude.
2402 */
Christoph Lameter6cb8f912007-07-17 04:03:22 -07002403 BUG_ON(ZERO_OR_NULL_PTR(cachep->slabp_cache));
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002404 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002406 err = setup_cpu_cache(cachep, gfp);
2407 if (err) {
Christoph Lameter12c36672012-09-04 23:38:33 +00002408 __kmem_cache_shutdown(cachep);
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002409 return err;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002410 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411
Peter Zijlstra83835b32011-07-22 15:26:05 +02002412 if (flags & SLAB_DEBUG_OBJECTS) {
2413 /*
2414 * Would deadlock through slab_destroy()->call_rcu()->
2415 * debug_object_activate()->kmem_cache_alloc().
2416 */
2417 WARN_ON_ONCE(flags & SLAB_DESTROY_BY_RCU);
2418
2419 slab_set_debugobj_lock_classes(cachep);
Glauber Costa6ccfb5b2012-12-18 14:22:31 -08002420 } else if (!OFF_SLAB(cachep) && !(flags & SLAB_DESTROY_BY_RCU))
2421 on_slab_lock_classes(cachep);
Peter Zijlstra83835b32011-07-22 15:26:05 +02002422
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002423 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425
2426#if DEBUG
2427static void check_irq_off(void)
2428{
2429 BUG_ON(!irqs_disabled());
2430}
2431
2432static void check_irq_on(void)
2433{
2434 BUG_ON(irqs_disabled());
2435}
2436
Pekka Enberg343e0d72006-02-01 03:05:50 -08002437static void check_spinlock_acquired(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438{
2439#ifdef CONFIG_SMP
2440 check_irq_off();
Christoph Lameter6a673682013-01-10 19:14:19 +00002441 assert_spin_locked(&cachep->node[numa_mem_id()]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002442#endif
2443}
Christoph Lametere498be72005-09-09 13:03:32 -07002444
Pekka Enberg343e0d72006-02-01 03:05:50 -08002445static void check_spinlock_acquired_node(struct kmem_cache *cachep, int node)
Christoph Lametere498be72005-09-09 13:03:32 -07002446{
2447#ifdef CONFIG_SMP
2448 check_irq_off();
Christoph Lameter6a673682013-01-10 19:14:19 +00002449 assert_spin_locked(&cachep->node[node]->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07002450#endif
2451}
2452
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453#else
2454#define check_irq_off() do { } while(0)
2455#define check_irq_on() do { } while(0)
2456#define check_spinlock_acquired(x) do { } while(0)
Christoph Lametere498be72005-09-09 13:03:32 -07002457#define check_spinlock_acquired_node(x, y) do { } while(0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458#endif
2459
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002460static void drain_array(struct kmem_cache *cachep, struct kmem_cache_node *n,
Christoph Lameteraab22072006-03-22 00:09:06 -08002461 struct array_cache *ac,
2462 int force, int node);
2463
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464static void do_drain(void *arg)
2465{
Andrew Mortona737b3e2006-03-22 00:08:11 -08002466 struct kmem_cache *cachep = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002467 struct array_cache *ac;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07002468 int node = numa_mem_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469
2470 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002471 ac = cpu_cache_get(cachep);
Christoph Lameter6a673682013-01-10 19:14:19 +00002472 spin_lock(&cachep->node[node]->list_lock);
Christoph Lameterff694162005-09-22 21:44:02 -07002473 free_block(cachep, ac->entry, ac->avail, node);
Christoph Lameter6a673682013-01-10 19:14:19 +00002474 spin_unlock(&cachep->node[node]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 ac->avail = 0;
2476}
2477
Pekka Enberg343e0d72006-02-01 03:05:50 -08002478static void drain_cpu_caches(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479{
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002480 struct kmem_cache_node *n;
Christoph Lametere498be72005-09-09 13:03:32 -07002481 int node;
2482
Jens Axboe15c8b6c2008-05-09 09:39:44 +02002483 on_each_cpu(do_drain, cachep, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002484 check_irq_on();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002485 for_each_online_node(node) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002486 n = cachep->node[node];
2487 if (n && n->alien)
2488 drain_alien_cache(cachep, n->alien);
Roland Dreiera4523a82006-05-15 11:41:00 -07002489 }
2490
2491 for_each_online_node(node) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002492 n = cachep->node[node];
2493 if (n)
2494 drain_array(cachep, n, n->shared, 1, node);
Christoph Lametere498be72005-09-09 13:03:32 -07002495 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496}
2497
Christoph Lametered11d9e2006-06-30 01:55:45 -07002498/*
2499 * Remove slabs from the list of free slabs.
2500 * Specify the number of slabs to drain in tofree.
2501 *
2502 * Returns the actual number of slabs released.
2503 */
2504static int drain_freelist(struct kmem_cache *cache,
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002505 struct kmem_cache_node *n, int tofree)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506{
Christoph Lametered11d9e2006-06-30 01:55:45 -07002507 struct list_head *p;
2508 int nr_freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509 struct slab *slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002510
Christoph Lametered11d9e2006-06-30 01:55:45 -07002511 nr_freed = 0;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002512 while (nr_freed < tofree && !list_empty(&n->slabs_free)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002514 spin_lock_irq(&n->list_lock);
2515 p = n->slabs_free.prev;
2516 if (p == &n->slabs_free) {
2517 spin_unlock_irq(&n->list_lock);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002518 goto out;
2519 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520
Christoph Lametered11d9e2006-06-30 01:55:45 -07002521 slabp = list_entry(p, struct slab, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522#if DEBUG
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002523 BUG_ON(slabp->inuse);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524#endif
2525 list_del(&slabp->list);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002526 /*
2527 * Safe to drop the lock. The slab is no longer linked
2528 * to the cache.
2529 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002530 n->free_objects -= cache->num;
2531 spin_unlock_irq(&n->list_lock);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002532 slab_destroy(cache, slabp);
2533 nr_freed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534 }
Christoph Lametered11d9e2006-06-30 01:55:45 -07002535out:
2536 return nr_freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002537}
2538
Christoph Lameter18004c52012-07-06 15:25:12 -05002539/* Called with slab_mutex held to protect against cpu hotplug */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002540static int __cache_shrink(struct kmem_cache *cachep)
Christoph Lametere498be72005-09-09 13:03:32 -07002541{
2542 int ret = 0, i = 0;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002543 struct kmem_cache_node *n;
Christoph Lametere498be72005-09-09 13:03:32 -07002544
2545 drain_cpu_caches(cachep);
2546
2547 check_irq_on();
2548 for_each_online_node(i) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002549 n = cachep->node[i];
2550 if (!n)
Christoph Lametered11d9e2006-06-30 01:55:45 -07002551 continue;
2552
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002553 drain_freelist(cachep, n, n->free_objects);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002554
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002555 ret += !list_empty(&n->slabs_full) ||
2556 !list_empty(&n->slabs_partial);
Christoph Lametere498be72005-09-09 13:03:32 -07002557 }
2558 return (ret ? 1 : 0);
2559}
2560
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561/**
2562 * kmem_cache_shrink - Shrink a cache.
2563 * @cachep: The cache to shrink.
2564 *
2565 * Releases as many slabs as possible for a cache.
2566 * To help debugging, a zero exit status indicates all slabs were released.
2567 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002568int kmem_cache_shrink(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569{
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002570 int ret;
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002571 BUG_ON(!cachep || in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002573 get_online_cpus();
Christoph Lameter18004c52012-07-06 15:25:12 -05002574 mutex_lock(&slab_mutex);
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002575 ret = __cache_shrink(cachep);
Christoph Lameter18004c52012-07-06 15:25:12 -05002576 mutex_unlock(&slab_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002577 put_online_cpus();
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002578 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579}
2580EXPORT_SYMBOL(kmem_cache_shrink);
2581
Christoph Lameter945cf2b2012-09-04 23:18:33 +00002582int __kmem_cache_shutdown(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583{
Christoph Lameter12c36672012-09-04 23:38:33 +00002584 int i;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002585 struct kmem_cache_node *n;
Christoph Lameter12c36672012-09-04 23:38:33 +00002586 int rc = __cache_shrink(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587
Christoph Lameter12c36672012-09-04 23:38:33 +00002588 if (rc)
2589 return rc;
2590
2591 for_each_online_cpu(i)
2592 kfree(cachep->array[i]);
2593
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002594 /* NUMA: free the node structures */
Christoph Lameter12c36672012-09-04 23:38:33 +00002595 for_each_online_node(i) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002596 n = cachep->node[i];
2597 if (n) {
2598 kfree(n->shared);
2599 free_alien_cache(n->alien);
2600 kfree(n);
Christoph Lameter12c36672012-09-04 23:38:33 +00002601 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602 }
Christoph Lameter12c36672012-09-04 23:38:33 +00002603 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002606/*
2607 * Get the memory for a slab management obj.
2608 * For a slab cache when the slab descriptor is off-slab, slab descriptors
2609 * always come from malloc_sizes caches. The slab descriptor cannot
2610 * come from the same cache which is getting created because,
2611 * when we are searching for an appropriate cache for these
2612 * descriptors in kmem_cache_create, we search through the malloc_sizes array.
2613 * If we are creating a malloc_sizes cache here it would not be visible to
2614 * kmem_find_general_cachep till the initialization is complete.
2615 * Hence we cannot have slabp_cache same as the original cache.
2616 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002617static struct slab *alloc_slabmgmt(struct kmem_cache *cachep, void *objp,
Ravikiran G Thirumalai5b74ada2006-04-10 22:52:53 -07002618 int colour_off, gfp_t local_flags,
2619 int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620{
2621 struct slab *slabp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002622
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623 if (OFF_SLAB(cachep)) {
2624 /* Slab management obj is off-slab. */
Ravikiran G Thirumalai5b74ada2006-04-10 22:52:53 -07002625 slabp = kmem_cache_alloc_node(cachep->slabp_cache,
Pekka Enberg8759ec52008-11-26 10:01:31 +02002626 local_flags, nodeid);
Catalin Marinasd5cff632009-06-11 13:22:40 +01002627 /*
2628 * If the first object in the slab is leaked (it's allocated
2629 * but no one has a reference to it), we want to make sure
2630 * kmemleak does not treat the ->s_mem pointer as a reference
2631 * to the object. Otherwise we will not report the leak.
2632 */
Catalin Marinasc017b4b2009-10-28 13:33:09 +00002633 kmemleak_scan_area(&slabp->list, sizeof(struct list_head),
2634 local_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 if (!slabp)
2636 return NULL;
2637 } else {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002638 slabp = objp + colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639 colour_off += cachep->slab_size;
2640 }
2641 slabp->inuse = 0;
2642 slabp->colouroff = colour_off;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002643 slabp->s_mem = objp + colour_off;
Ravikiran G Thirumalai5b74ada2006-04-10 22:52:53 -07002644 slabp->nodeid = nodeid;
Marcin Slusarze51bfd02008-02-10 11:21:54 +01002645 slabp->free = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646 return slabp;
2647}
2648
2649static inline kmem_bufctl_t *slab_bufctl(struct slab *slabp)
2650{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002651 return (kmem_bufctl_t *) (slabp + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652}
2653
Pekka Enberg343e0d72006-02-01 03:05:50 -08002654static void cache_init_objs(struct kmem_cache *cachep,
Christoph Lametera35afb82007-05-16 22:10:57 -07002655 struct slab *slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656{
2657 int i;
2658
2659 for (i = 0; i < cachep->num; i++) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002660 void *objp = index_to_obj(cachep, slabp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661#if DEBUG
2662 /* need to poison the objs? */
2663 if (cachep->flags & SLAB_POISON)
2664 poison_obj(cachep, objp, POISON_FREE);
2665 if (cachep->flags & SLAB_STORE_USER)
2666 *dbg_userword(cachep, objp) = NULL;
2667
2668 if (cachep->flags & SLAB_RED_ZONE) {
2669 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2670 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2671 }
2672 /*
Andrew Mortona737b3e2006-03-22 00:08:11 -08002673 * Constructors are not allowed to allocate memory from the same
2674 * cache which they are a constructor for. Otherwise, deadlock.
2675 * They must also be threaded.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002676 */
2677 if (cachep->ctor && !(cachep->flags & SLAB_POISON))
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002678 cachep->ctor(objp + obj_offset(cachep));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002679
2680 if (cachep->flags & SLAB_RED_ZONE) {
2681 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
2682 slab_error(cachep, "constructor overwrote the"
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002683 " end of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
2685 slab_error(cachep, "constructor overwrote the"
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002686 " start of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687 }
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002688 if ((cachep->size % PAGE_SIZE) == 0 &&
Andrew Mortona737b3e2006-03-22 00:08:11 -08002689 OFF_SLAB(cachep) && cachep->flags & SLAB_POISON)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002690 kernel_map_pages(virt_to_page(objp),
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002691 cachep->size / PAGE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692#else
2693 if (cachep->ctor)
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002694 cachep->ctor(objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695#endif
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002696 slab_bufctl(slabp)[i] = i + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002698 slab_bufctl(slabp)[i - 1] = BUFCTL_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699}
2700
Pekka Enberg343e0d72006-02-01 03:05:50 -08002701static void kmem_flagcheck(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702{
Christoph Lameter4b51d662007-02-10 01:43:10 -08002703 if (CONFIG_ZONE_DMA_FLAG) {
2704 if (flags & GFP_DMA)
Glauber Costaa618e892012-06-14 16:17:21 +04002705 BUG_ON(!(cachep->allocflags & GFP_DMA));
Christoph Lameter4b51d662007-02-10 01:43:10 -08002706 else
Glauber Costaa618e892012-06-14 16:17:21 +04002707 BUG_ON(cachep->allocflags & GFP_DMA);
Christoph Lameter4b51d662007-02-10 01:43:10 -08002708 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709}
2710
Andrew Mortona737b3e2006-03-22 00:08:11 -08002711static void *slab_get_obj(struct kmem_cache *cachep, struct slab *slabp,
2712 int nodeid)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002713{
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002714 void *objp = index_to_obj(cachep, slabp, slabp->free);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002715 kmem_bufctl_t next;
2716
2717 slabp->inuse++;
2718 next = slab_bufctl(slabp)[slabp->free];
2719#if DEBUG
2720 slab_bufctl(slabp)[slabp->free] = BUFCTL_FREE;
2721 WARN_ON(slabp->nodeid != nodeid);
2722#endif
2723 slabp->free = next;
2724
2725 return objp;
2726}
2727
Andrew Mortona737b3e2006-03-22 00:08:11 -08002728static void slab_put_obj(struct kmem_cache *cachep, struct slab *slabp,
2729 void *objp, int nodeid)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002730{
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002731 unsigned int objnr = obj_to_index(cachep, slabp, objp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002732
2733#if DEBUG
2734 /* Verify that the slab belongs to the intended node */
2735 WARN_ON(slabp->nodeid != nodeid);
2736
Al Viro871751e2006-03-25 03:06:39 -08002737 if (slab_bufctl(slabp)[objnr] + 1 <= SLAB_LIMIT + 1) {
Matthew Dobson78d382d2006-02-01 03:05:47 -08002738 printk(KERN_ERR "slab: double free detected in cache "
Andrew Mortona737b3e2006-03-22 00:08:11 -08002739 "'%s', objp %p\n", cachep->name, objp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002740 BUG();
2741 }
2742#endif
2743 slab_bufctl(slabp)[objnr] = slabp->free;
2744 slabp->free = objnr;
2745 slabp->inuse--;
2746}
2747
Pekka Enberg47768742006-06-23 02:03:07 -07002748/*
2749 * Map pages beginning at addr to the given cache and slab. This is required
2750 * for the slab allocator to be able to lookup the cache and slab of a
Nick Pigginccd35fb2011-01-07 17:49:17 +11002751 * virtual address for kfree, ksize, and slab debugging.
Pekka Enberg47768742006-06-23 02:03:07 -07002752 */
2753static void slab_map_pages(struct kmem_cache *cache, struct slab *slab,
2754 void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755{
Pekka Enberg47768742006-06-23 02:03:07 -07002756 int nr_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002757 struct page *page;
2758
Pekka Enberg47768742006-06-23 02:03:07 -07002759 page = virt_to_page(addr);
Nick Piggin84097512006-03-22 00:08:34 -08002760
Pekka Enberg47768742006-06-23 02:03:07 -07002761 nr_pages = 1;
Nick Piggin84097512006-03-22 00:08:34 -08002762 if (likely(!PageCompound(page)))
Pekka Enberg47768742006-06-23 02:03:07 -07002763 nr_pages <<= cache->gfporder;
2764
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765 do {
Christoph Lameter35026082012-06-13 10:24:56 -05002766 page->slab_cache = cache;
2767 page->slab_page = slab;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002768 page++;
Pekka Enberg47768742006-06-23 02:03:07 -07002769 } while (--nr_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002770}
2771
2772/*
2773 * Grow (by 1) the number of slabs within a cache. This is called by
2774 * kmem_cache_alloc() when there are no active objs left in a cache.
2775 */
Christoph Lameter3c517a62006-12-06 20:33:29 -08002776static int cache_grow(struct kmem_cache *cachep,
2777 gfp_t flags, int nodeid, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002779 struct slab *slabp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002780 size_t offset;
2781 gfp_t local_flags;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002782 struct kmem_cache_node *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783
Andrew Mortona737b3e2006-03-22 00:08:11 -08002784 /*
2785 * Be lazy and only check for valid flags here, keeping it out of the
2786 * critical path in kmem_cache_alloc().
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 */
Christoph Lameter6cb06222007-10-16 01:25:41 -07002788 BUG_ON(flags & GFP_SLAB_BUG_MASK);
2789 local_flags = flags & (GFP_CONSTRAINT_MASK|GFP_RECLAIM_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002791 /* Take the node list lock to change the colour_next on this node */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002792 check_irq_off();
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002793 n = cachep->node[nodeid];
2794 spin_lock(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795
2796 /* Get colour for the slab, and cal the next value. */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002797 offset = n->colour_next;
2798 n->colour_next++;
2799 if (n->colour_next >= cachep->colour)
2800 n->colour_next = 0;
2801 spin_unlock(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002803 offset *= cachep->colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804
2805 if (local_flags & __GFP_WAIT)
2806 local_irq_enable();
2807
2808 /*
2809 * The test for missing atomic flag is performed here, rather than
2810 * the more obvious place, simply to reduce the critical path length
2811 * in kmem_cache_alloc(). If a caller is seriously mis-behaving they
2812 * will eventually be caught here (where it matters).
2813 */
2814 kmem_flagcheck(cachep, flags);
2815
Andrew Mortona737b3e2006-03-22 00:08:11 -08002816 /*
2817 * Get mem for the objs. Attempt to allocate a physical page from
2818 * 'nodeid'.
Christoph Lametere498be72005-09-09 13:03:32 -07002819 */
Christoph Lameter3c517a62006-12-06 20:33:29 -08002820 if (!objp)
Andrew Mortonb8c1c5d2007-07-24 12:02:40 -07002821 objp = kmem_getpages(cachep, local_flags, nodeid);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002822 if (!objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 goto failed;
2824
2825 /* Get slab management. */
Christoph Lameter3c517a62006-12-06 20:33:29 -08002826 slabp = alloc_slabmgmt(cachep, objp, offset,
Christoph Lameter6cb06222007-10-16 01:25:41 -07002827 local_flags & ~GFP_CONSTRAINT_MASK, nodeid);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002828 if (!slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002829 goto opps1;
2830
Pekka Enberg47768742006-06-23 02:03:07 -07002831 slab_map_pages(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832
Christoph Lametera35afb82007-05-16 22:10:57 -07002833 cache_init_objs(cachep, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002834
2835 if (local_flags & __GFP_WAIT)
2836 local_irq_disable();
2837 check_irq_off();
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002838 spin_lock(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002839
2840 /* Make slab active. */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002841 list_add_tail(&slabp->list, &(n->slabs_free));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842 STATS_INC_GROWN(cachep);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002843 n->free_objects += cachep->num;
2844 spin_unlock(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845 return 1;
Andrew Mortona737b3e2006-03-22 00:08:11 -08002846opps1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002847 kmem_freepages(cachep, objp);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002848failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002849 if (local_flags & __GFP_WAIT)
2850 local_irq_disable();
2851 return 0;
2852}
2853
2854#if DEBUG
2855
2856/*
2857 * Perform extra freeing checks:
2858 * - detect bad pointers.
2859 * - POISON/RED_ZONE checking
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860 */
2861static void kfree_debugcheck(const void *objp)
2862{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863 if (!virt_addr_valid(objp)) {
2864 printk(KERN_ERR "kfree_debugcheck: out of range ptr %lxh.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002865 (unsigned long)objp);
2866 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002867 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868}
2869
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002870static inline void verify_redzone_free(struct kmem_cache *cache, void *obj)
2871{
David Woodhouseb46b8f12007-05-08 00:22:59 -07002872 unsigned long long redzone1, redzone2;
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002873
2874 redzone1 = *dbg_redzone1(cache, obj);
2875 redzone2 = *dbg_redzone2(cache, obj);
2876
2877 /*
2878 * Redzone is ok.
2879 */
2880 if (redzone1 == RED_ACTIVE && redzone2 == RED_ACTIVE)
2881 return;
2882
2883 if (redzone1 == RED_INACTIVE && redzone2 == RED_INACTIVE)
2884 slab_error(cache, "double free detected");
2885 else
2886 slab_error(cache, "memory outside object was overwritten");
2887
David Woodhouseb46b8f12007-05-08 00:22:59 -07002888 printk(KERN_ERR "%p: redzone 1:0x%llx, redzone 2:0x%llx.\n",
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002889 obj, redzone1, redzone2);
2890}
2891
Pekka Enberg343e0d72006-02-01 03:05:50 -08002892static void *cache_free_debugcheck(struct kmem_cache *cachep, void *objp,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03002893 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894{
2895 struct page *page;
2896 unsigned int objnr;
2897 struct slab *slabp;
2898
Matthew Wilcox80cbd912007-11-29 12:05:13 -07002899 BUG_ON(virt_to_cache(objp) != cachep);
2900
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002901 objp -= obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902 kfree_debugcheck(objp);
Christoph Lameterb49af682007-05-06 14:49:41 -07002903 page = virt_to_head_page(objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904
Christoph Lameter35026082012-06-13 10:24:56 -05002905 slabp = page->slab_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906
2907 if (cachep->flags & SLAB_RED_ZONE) {
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002908 verify_redzone_free(cachep, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2910 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2911 }
2912 if (cachep->flags & SLAB_STORE_USER)
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03002913 *dbg_userword(cachep, objp) = (void *)caller;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002914
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002915 objnr = obj_to_index(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916
2917 BUG_ON(objnr >= cachep->num);
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002918 BUG_ON(objp != index_to_obj(cachep, slabp, objnr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919
Al Viro871751e2006-03-25 03:06:39 -08002920#ifdef CONFIG_DEBUG_SLAB_LEAK
2921 slab_bufctl(slabp)[objnr] = BUFCTL_FREE;
2922#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923 if (cachep->flags & SLAB_POISON) {
2924#ifdef CONFIG_DEBUG_PAGEALLOC
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002925 if ((cachep->size % PAGE_SIZE)==0 && OFF_SLAB(cachep)) {
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03002926 store_stackinfo(cachep, objp, caller);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002927 kernel_map_pages(virt_to_page(objp),
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002928 cachep->size / PAGE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002929 } else {
2930 poison_obj(cachep, objp, POISON_FREE);
2931 }
2932#else
2933 poison_obj(cachep, objp, POISON_FREE);
2934#endif
2935 }
2936 return objp;
2937}
2938
Pekka Enberg343e0d72006-02-01 03:05:50 -08002939static void check_slabp(struct kmem_cache *cachep, struct slab *slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940{
2941 kmem_bufctl_t i;
2942 int entries = 0;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002943
Linus Torvalds1da177e2005-04-16 15:20:36 -07002944 /* Check slab's freelist to see if this obj is there. */
2945 for (i = slabp->free; i != BUFCTL_END; i = slab_bufctl(slabp)[i]) {
2946 entries++;
2947 if (entries > cachep->num || i >= cachep->num)
2948 goto bad;
2949 }
2950 if (entries != cachep->num - slabp->inuse) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002951bad:
2952 printk(KERN_ERR "slab: Internal list corruption detected in "
Dave Jonesface37f2011-11-15 15:03:52 -08002953 "cache '%s'(%d), slabp %p(%d). Tainted(%s). Hexdump:\n",
2954 cachep->name, cachep->num, slabp, slabp->inuse,
2955 print_tainted());
Sebastian Andrzej Siewiorfdde6ab2011-07-29 18:22:13 +02002956 print_hex_dump(KERN_ERR, "", DUMP_PREFIX_OFFSET, 16, 1, slabp,
2957 sizeof(*slabp) + cachep->num * sizeof(kmem_bufctl_t),
2958 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002959 BUG();
2960 }
2961}
2962#else
2963#define kfree_debugcheck(x) do { } while(0)
2964#define cache_free_debugcheck(x,objp,z) (objp)
2965#define check_slabp(x,y) do { } while(0)
2966#endif
2967
Mel Gorman072bb0a2012-07-31 16:43:58 -07002968static void *cache_alloc_refill(struct kmem_cache *cachep, gfp_t flags,
2969 bool force_refill)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970{
2971 int batchcount;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002972 struct kmem_cache_node *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973 struct array_cache *ac;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07002974 int node;
2975
Joe Korty6d2144d2008-03-05 15:04:59 -08002976 check_irq_off();
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07002977 node = numa_mem_id();
Mel Gorman072bb0a2012-07-31 16:43:58 -07002978 if (unlikely(force_refill))
2979 goto force_grow;
2980retry:
Joe Korty6d2144d2008-03-05 15:04:59 -08002981 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982 batchcount = ac->batchcount;
2983 if (!ac->touched && batchcount > BATCHREFILL_LIMIT) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002984 /*
2985 * If there was little recent activity on this cache, then
2986 * perform only a partial refill. Otherwise we could generate
2987 * refill bouncing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988 */
2989 batchcount = BATCHREFILL_LIMIT;
2990 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002991 n = cachep->node[node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002993 BUG_ON(ac->avail > 0 || !n);
2994 spin_lock(&n->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07002995
Christoph Lameter3ded1752006-03-25 03:06:44 -08002996 /* See if we can refill from the shared array */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00002997 if (n->shared && transfer_objects(ac, n->shared, batchcount)) {
2998 n->shared->touched = 1;
Christoph Lameter3ded1752006-03-25 03:06:44 -08002999 goto alloc_done;
Nick Piggin44b57f12010-01-27 22:27:40 +11003000 }
Christoph Lameter3ded1752006-03-25 03:06:44 -08003001
Linus Torvalds1da177e2005-04-16 15:20:36 -07003002 while (batchcount > 0) {
3003 struct list_head *entry;
3004 struct slab *slabp;
3005 /* Get slab alloc is to come from. */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003006 entry = n->slabs_partial.next;
3007 if (entry == &n->slabs_partial) {
3008 n->free_touched = 1;
3009 entry = n->slabs_free.next;
3010 if (entry == &n->slabs_free)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011 goto must_grow;
3012 }
3013
3014 slabp = list_entry(entry, struct slab, list);
3015 check_slabp(cachep, slabp);
3016 check_spinlock_acquired(cachep);
Pekka Enberg714b81712007-05-06 14:49:03 -07003017
3018 /*
3019 * The slab was either on partial or free list so
3020 * there must be at least one object available for
3021 * allocation.
3022 */
roel kluin249b9f32008-10-29 17:18:07 -04003023 BUG_ON(slabp->inuse >= cachep->num);
Pekka Enberg714b81712007-05-06 14:49:03 -07003024
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025 while (slabp->inuse < cachep->num && batchcount--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026 STATS_INC_ALLOCED(cachep);
3027 STATS_INC_ACTIVE(cachep);
3028 STATS_SET_HIGH(cachep);
3029
Mel Gorman072bb0a2012-07-31 16:43:58 -07003030 ac_put_obj(cachep, ac, slab_get_obj(cachep, slabp,
3031 node));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032 }
3033 check_slabp(cachep, slabp);
3034
3035 /* move slabp to correct slabp list: */
3036 list_del(&slabp->list);
3037 if (slabp->free == BUFCTL_END)
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003038 list_add(&slabp->list, &n->slabs_full);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039 else
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003040 list_add(&slabp->list, &n->slabs_partial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003041 }
3042
Andrew Mortona737b3e2006-03-22 00:08:11 -08003043must_grow:
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003044 n->free_objects -= ac->avail;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003045alloc_done:
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003046 spin_unlock(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047
3048 if (unlikely(!ac->avail)) {
3049 int x;
Mel Gorman072bb0a2012-07-31 16:43:58 -07003050force_grow:
Christoph Lameter3c517a62006-12-06 20:33:29 -08003051 x = cache_grow(cachep, flags | GFP_THISNODE, node, NULL);
Christoph Lametere498be72005-09-09 13:03:32 -07003052
Andrew Mortona737b3e2006-03-22 00:08:11 -08003053 /* cache_grow can reenable interrupts, then ac could change. */
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003054 ac = cpu_cache_get(cachep);
David Rientjes51cd8e62012-08-28 19:57:21 -07003055 node = numa_mem_id();
Mel Gorman072bb0a2012-07-31 16:43:58 -07003056
3057 /* no objects in sight? abort */
3058 if (!x && (ac->avail == 0 || force_refill))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003059 return NULL;
3060
Andrew Mortona737b3e2006-03-22 00:08:11 -08003061 if (!ac->avail) /* objects refilled by interrupt? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062 goto retry;
3063 }
3064 ac->touched = 1;
Mel Gorman072bb0a2012-07-31 16:43:58 -07003065
3066 return ac_get_obj(cachep, ac, flags, force_refill);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067}
3068
Andrew Mortona737b3e2006-03-22 00:08:11 -08003069static inline void cache_alloc_debugcheck_before(struct kmem_cache *cachep,
3070 gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003071{
3072 might_sleep_if(flags & __GFP_WAIT);
3073#if DEBUG
3074 kmem_flagcheck(cachep, flags);
3075#endif
3076}
3077
3078#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08003079static void *cache_alloc_debugcheck_after(struct kmem_cache *cachep,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003080 gfp_t flags, void *objp, unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003081{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003082 if (!objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003083 return objp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003084 if (cachep->flags & SLAB_POISON) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085#ifdef CONFIG_DEBUG_PAGEALLOC
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003086 if ((cachep->size % PAGE_SIZE) == 0 && OFF_SLAB(cachep))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003087 kernel_map_pages(virt_to_page(objp),
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003088 cachep->size / PAGE_SIZE, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003089 else
3090 check_poison_obj(cachep, objp);
3091#else
3092 check_poison_obj(cachep, objp);
3093#endif
3094 poison_obj(cachep, objp, POISON_INUSE);
3095 }
3096 if (cachep->flags & SLAB_STORE_USER)
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003097 *dbg_userword(cachep, objp) = (void *)caller;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098
3099 if (cachep->flags & SLAB_RED_ZONE) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08003100 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE ||
3101 *dbg_redzone2(cachep, objp) != RED_INACTIVE) {
3102 slab_error(cachep, "double free, or memory outside"
3103 " object was overwritten");
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003104 printk(KERN_ERR
David Woodhouseb46b8f12007-05-08 00:22:59 -07003105 "%p: redzone 1:0x%llx, redzone 2:0x%llx\n",
Andrew Mortona737b3e2006-03-22 00:08:11 -08003106 objp, *dbg_redzone1(cachep, objp),
3107 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108 }
3109 *dbg_redzone1(cachep, objp) = RED_ACTIVE;
3110 *dbg_redzone2(cachep, objp) = RED_ACTIVE;
3111 }
Al Viro871751e2006-03-25 03:06:39 -08003112#ifdef CONFIG_DEBUG_SLAB_LEAK
3113 {
3114 struct slab *slabp;
3115 unsigned objnr;
3116
Christoph Lameter35026082012-06-13 10:24:56 -05003117 slabp = virt_to_head_page(objp)->slab_page;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003118 objnr = (unsigned)(objp - slabp->s_mem) / cachep->size;
Al Viro871751e2006-03-25 03:06:39 -08003119 slab_bufctl(slabp)[objnr] = BUFCTL_ACTIVE;
3120 }
3121#endif
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003122 objp += obj_offset(cachep);
Christoph Lameter4f104932007-05-06 14:50:17 -07003123 if (cachep->ctor && cachep->flags & SLAB_POISON)
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07003124 cachep->ctor(objp);
Tetsuo Handa7ea466f2011-07-21 09:42:45 +09003125 if (ARCH_SLAB_MINALIGN &&
3126 ((unsigned long)objp & (ARCH_SLAB_MINALIGN-1))) {
Kevin Hilmana44b56d2006-12-06 20:32:11 -08003127 printk(KERN_ERR "0x%p: not aligned to ARCH_SLAB_MINALIGN=%d\n",
Hugh Dickinsc2251502011-07-11 13:35:08 -07003128 objp, (int)ARCH_SLAB_MINALIGN);
Kevin Hilmana44b56d2006-12-06 20:32:11 -08003129 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130 return objp;
3131}
3132#else
3133#define cache_alloc_debugcheck_after(a,b,objp,d) (objp)
3134#endif
3135
Akinobu Mita773ff602008-12-23 19:37:01 +09003136static bool slab_should_failslab(struct kmem_cache *cachep, gfp_t flags)
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003137{
Christoph Lameter9b030cb2012-09-05 00:20:33 +00003138 if (cachep == kmem_cache)
Akinobu Mita773ff602008-12-23 19:37:01 +09003139 return false;
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003140
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003141 return should_failslab(cachep->object_size, flags, cachep->flags);
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003142}
3143
Pekka Enberg343e0d72006-02-01 03:05:50 -08003144static inline void *____cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003146 void *objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147 struct array_cache *ac;
Mel Gorman072bb0a2012-07-31 16:43:58 -07003148 bool force_refill = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003149
Alok N Kataria5c382302005-09-27 21:45:46 -07003150 check_irq_off();
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003151
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003152 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153 if (likely(ac->avail)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154 ac->touched = 1;
Mel Gorman072bb0a2012-07-31 16:43:58 -07003155 objp = ac_get_obj(cachep, ac, flags, false);
3156
J. R. Okajimaddbf2e82009-12-02 16:55:50 +09003157 /*
Mel Gorman072bb0a2012-07-31 16:43:58 -07003158 * Allow for the possibility all avail objects are not allowed
3159 * by the current flags
J. R. Okajimaddbf2e82009-12-02 16:55:50 +09003160 */
Mel Gorman072bb0a2012-07-31 16:43:58 -07003161 if (objp) {
3162 STATS_INC_ALLOCHIT(cachep);
3163 goto out;
3164 }
3165 force_refill = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166 }
Mel Gorman072bb0a2012-07-31 16:43:58 -07003167
3168 STATS_INC_ALLOCMISS(cachep);
3169 objp = cache_alloc_refill(cachep, flags, force_refill);
3170 /*
3171 * the 'ac' may be updated by cache_alloc_refill(),
3172 * and kmemleak_erase() requires its correct value.
3173 */
3174 ac = cpu_cache_get(cachep);
3175
3176out:
Catalin Marinasd5cff632009-06-11 13:22:40 +01003177 /*
3178 * To avoid a false negative, if an object that is in one of the
3179 * per-CPU caches is leaked, we need to make sure kmemleak doesn't
3180 * treat the array pointers as a reference to the object.
3181 */
J. R. Okajimaf3d8b532009-12-02 16:55:49 +09003182 if (objp)
3183 kmemleak_erase(&ac->entry[ac->avail]);
Alok N Kataria5c382302005-09-27 21:45:46 -07003184 return objp;
3185}
3186
Christoph Lametere498be72005-09-09 13:03:32 -07003187#ifdef CONFIG_NUMA
3188/*
Paul Jacksonb2455392006-03-24 03:16:12 -08003189 * Try allocating on another node if PF_SPREAD_SLAB|PF_MEMPOLICY.
Paul Jacksonc61afb12006-03-24 03:16:08 -08003190 *
3191 * If we are in_interrupt, then process context, including cpusets and
3192 * mempolicy, may not apply and should not be used for allocation policy.
3193 */
3194static void *alternate_node_alloc(struct kmem_cache *cachep, gfp_t flags)
3195{
3196 int nid_alloc, nid_here;
3197
Christoph Lameter765c4502006-09-27 01:50:08 -07003198 if (in_interrupt() || (flags & __GFP_THISNODE))
Paul Jacksonc61afb12006-03-24 03:16:08 -08003199 return NULL;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003200 nid_alloc = nid_here = numa_mem_id();
Paul Jacksonc61afb12006-03-24 03:16:08 -08003201 if (cpuset_do_slab_mem_spread() && (cachep->flags & SLAB_MEM_SPREAD))
Jack Steiner6adef3e2010-05-26 14:42:49 -07003202 nid_alloc = cpuset_slab_spread_node();
Paul Jacksonc61afb12006-03-24 03:16:08 -08003203 else if (current->mempolicy)
Andi Kleene7b691b2012-06-09 02:40:03 -07003204 nid_alloc = slab_node();
Paul Jacksonc61afb12006-03-24 03:16:08 -08003205 if (nid_alloc != nid_here)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003206 return ____cache_alloc_node(cachep, flags, nid_alloc);
Paul Jacksonc61afb12006-03-24 03:16:08 -08003207 return NULL;
3208}
3209
3210/*
Christoph Lameter765c4502006-09-27 01:50:08 -07003211 * Fallback function if there was no memory available and no objects on a
Christoph Lameter3c517a62006-12-06 20:33:29 -08003212 * certain node and fall back is permitted. First we scan all the
Christoph Lameter6a673682013-01-10 19:14:19 +00003213 * available node for available objects. If that fails then we
Christoph Lameter3c517a62006-12-06 20:33:29 -08003214 * perform an allocation without specifying a node. This allows the page
3215 * allocator to do its reclaim / fallback magic. We then insert the
3216 * slab into the proper nodelist and then allocate from it.
Christoph Lameter765c4502006-09-27 01:50:08 -07003217 */
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003218static void *fallback_alloc(struct kmem_cache *cache, gfp_t flags)
Christoph Lameter765c4502006-09-27 01:50:08 -07003219{
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003220 struct zonelist *zonelist;
3221 gfp_t local_flags;
Mel Gormandd1a2392008-04-28 02:12:17 -07003222 struct zoneref *z;
Mel Gorman54a6eb52008-04-28 02:12:16 -07003223 struct zone *zone;
3224 enum zone_type high_zoneidx = gfp_zone(flags);
Christoph Lameter765c4502006-09-27 01:50:08 -07003225 void *obj = NULL;
Christoph Lameter3c517a62006-12-06 20:33:29 -08003226 int nid;
Mel Gormancc9a6c82012-03-21 16:34:11 -07003227 unsigned int cpuset_mems_cookie;
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003228
3229 if (flags & __GFP_THISNODE)
3230 return NULL;
3231
Christoph Lameter6cb06222007-10-16 01:25:41 -07003232 local_flags = flags & (GFP_CONSTRAINT_MASK|GFP_RECLAIM_MASK);
Christoph Lameter765c4502006-09-27 01:50:08 -07003233
Mel Gormancc9a6c82012-03-21 16:34:11 -07003234retry_cpuset:
3235 cpuset_mems_cookie = get_mems_allowed();
Andi Kleene7b691b2012-06-09 02:40:03 -07003236 zonelist = node_zonelist(slab_node(), flags);
Mel Gormancc9a6c82012-03-21 16:34:11 -07003237
Christoph Lameter3c517a62006-12-06 20:33:29 -08003238retry:
3239 /*
3240 * Look through allowed nodes for objects available
3241 * from existing per node queues.
3242 */
Mel Gorman54a6eb52008-04-28 02:12:16 -07003243 for_each_zone_zonelist(zone, z, zonelist, high_zoneidx) {
3244 nid = zone_to_nid(zone);
Christoph Lameteraedb0eb2006-10-21 10:24:16 -07003245
Mel Gorman54a6eb52008-04-28 02:12:16 -07003246 if (cpuset_zone_allowed_hardwall(zone, flags) &&
Christoph Lameter6a673682013-01-10 19:14:19 +00003247 cache->node[nid] &&
3248 cache->node[nid]->free_objects) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003249 obj = ____cache_alloc_node(cache,
3250 flags | GFP_THISNODE, nid);
Christoph Lameter481c5342008-06-21 16:46:35 -07003251 if (obj)
3252 break;
3253 }
Christoph Lameter3c517a62006-12-06 20:33:29 -08003254 }
3255
Christoph Lametercfce6602007-05-06 14:50:17 -07003256 if (!obj) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003257 /*
3258 * This allocation will be performed within the constraints
3259 * of the current cpuset / memory policy requirements.
3260 * We may trigger various forms of reclaim on the allowed
3261 * set and go into memory reserves if necessary.
3262 */
Christoph Lameterdd47ea72006-12-13 00:34:11 -08003263 if (local_flags & __GFP_WAIT)
3264 local_irq_enable();
3265 kmem_flagcheck(cache, flags);
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003266 obj = kmem_getpages(cache, local_flags, numa_mem_id());
Christoph Lameterdd47ea72006-12-13 00:34:11 -08003267 if (local_flags & __GFP_WAIT)
3268 local_irq_disable();
Christoph Lameter3c517a62006-12-06 20:33:29 -08003269 if (obj) {
3270 /*
3271 * Insert into the appropriate per node queues
3272 */
3273 nid = page_to_nid(virt_to_page(obj));
3274 if (cache_grow(cache, flags, nid, obj)) {
3275 obj = ____cache_alloc_node(cache,
3276 flags | GFP_THISNODE, nid);
3277 if (!obj)
3278 /*
3279 * Another processor may allocate the
3280 * objects in the slab since we are
3281 * not holding any locks.
3282 */
3283 goto retry;
3284 } else {
Hugh Dickinsb6a60452007-01-05 16:36:36 -08003285 /* cache_grow already freed obj */
Christoph Lameter3c517a62006-12-06 20:33:29 -08003286 obj = NULL;
3287 }
3288 }
Christoph Lameteraedb0eb2006-10-21 10:24:16 -07003289 }
Mel Gormancc9a6c82012-03-21 16:34:11 -07003290
3291 if (unlikely(!put_mems_allowed(cpuset_mems_cookie) && !obj))
3292 goto retry_cpuset;
Christoph Lameter765c4502006-09-27 01:50:08 -07003293 return obj;
3294}
3295
3296/*
Christoph Lametere498be72005-09-09 13:03:32 -07003297 * A interface to enable slab creation on nodeid
Linus Torvalds1da177e2005-04-16 15:20:36 -07003298 */
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003299static void *____cache_alloc_node(struct kmem_cache *cachep, gfp_t flags,
Andrew Mortona737b3e2006-03-22 00:08:11 -08003300 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07003301{
3302 struct list_head *entry;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003303 struct slab *slabp;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003304 struct kmem_cache_node *n;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003305 void *obj;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003306 int x;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003308 n = cachep->node[nodeid];
3309 BUG_ON(!n);
Christoph Lametere498be72005-09-09 13:03:32 -07003310
Andrew Mortona737b3e2006-03-22 00:08:11 -08003311retry:
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08003312 check_irq_off();
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003313 spin_lock(&n->list_lock);
3314 entry = n->slabs_partial.next;
3315 if (entry == &n->slabs_partial) {
3316 n->free_touched = 1;
3317 entry = n->slabs_free.next;
3318 if (entry == &n->slabs_free)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003319 goto must_grow;
3320 }
Christoph Lametere498be72005-09-09 13:03:32 -07003321
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003322 slabp = list_entry(entry, struct slab, list);
3323 check_spinlock_acquired_node(cachep, nodeid);
3324 check_slabp(cachep, slabp);
Christoph Lametere498be72005-09-09 13:03:32 -07003325
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003326 STATS_INC_NODEALLOCS(cachep);
3327 STATS_INC_ACTIVE(cachep);
3328 STATS_SET_HIGH(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003329
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003330 BUG_ON(slabp->inuse == cachep->num);
Christoph Lametere498be72005-09-09 13:03:32 -07003331
Matthew Dobson78d382d2006-02-01 03:05:47 -08003332 obj = slab_get_obj(cachep, slabp, nodeid);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003333 check_slabp(cachep, slabp);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003334 n->free_objects--;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003335 /* move slabp to correct slabp list: */
3336 list_del(&slabp->list);
Christoph Lametere498be72005-09-09 13:03:32 -07003337
Andrew Mortona737b3e2006-03-22 00:08:11 -08003338 if (slabp->free == BUFCTL_END)
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003339 list_add(&slabp->list, &n->slabs_full);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003340 else
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003341 list_add(&slabp->list, &n->slabs_partial);
Christoph Lametere498be72005-09-09 13:03:32 -07003342
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003343 spin_unlock(&n->list_lock);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003344 goto done;
Christoph Lametere498be72005-09-09 13:03:32 -07003345
Andrew Mortona737b3e2006-03-22 00:08:11 -08003346must_grow:
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003347 spin_unlock(&n->list_lock);
Christoph Lameter3c517a62006-12-06 20:33:29 -08003348 x = cache_grow(cachep, flags | GFP_THISNODE, nodeid, NULL);
Christoph Lameter765c4502006-09-27 01:50:08 -07003349 if (x)
3350 goto retry;
Christoph Lametere498be72005-09-09 13:03:32 -07003351
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003352 return fallback_alloc(cachep, flags);
Christoph Lameter765c4502006-09-27 01:50:08 -07003353
Andrew Mortona737b3e2006-03-22 00:08:11 -08003354done:
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003355 return obj;
Christoph Lametere498be72005-09-09 13:03:32 -07003356}
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003357
3358/**
3359 * kmem_cache_alloc_node - Allocate an object on the specified node
3360 * @cachep: The cache to allocate from.
3361 * @flags: See kmalloc().
3362 * @nodeid: node number of the target node.
3363 * @caller: return address of caller, used for debug information
3364 *
3365 * Identical to kmem_cache_alloc but it will allocate memory on the given
3366 * node, which can improve the performance for cpu bound structures.
3367 *
3368 * Fallback to other node is possible if __GFP_THISNODE is not set.
3369 */
3370static __always_inline void *
Ezequiel Garcia48356302012-09-08 17:47:57 -03003371slab_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003372 unsigned long caller)
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003373{
3374 unsigned long save_flags;
3375 void *ptr;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003376 int slab_node = numa_mem_id();
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003377
Benjamin Herrenschmidtdcce2842009-06-18 13:24:12 +10003378 flags &= gfp_allowed_mask;
Pekka Enberg7e85ee02009-06-12 14:03:06 +03003379
Nick Piggincf40bd12009-01-21 08:12:39 +01003380 lockdep_trace_alloc(flags);
3381
Akinobu Mita773ff602008-12-23 19:37:01 +09003382 if (slab_should_failslab(cachep, flags))
Akinobu Mita824ebef2007-05-06 14:49:58 -07003383 return NULL;
3384
Glauber Costad79923f2012-12-18 14:22:48 -08003385 cachep = memcg_kmem_get_cache(cachep, flags);
3386
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003387 cache_alloc_debugcheck_before(cachep, flags);
3388 local_irq_save(save_flags);
3389
Andrew Mortoneacbbae2011-07-28 13:59:49 -07003390 if (nodeid == NUMA_NO_NODE)
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003391 nodeid = slab_node;
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003392
Christoph Lameter6a673682013-01-10 19:14:19 +00003393 if (unlikely(!cachep->node[nodeid])) {
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003394 /* Node not bootstrapped yet */
3395 ptr = fallback_alloc(cachep, flags);
3396 goto out;
3397 }
3398
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003399 if (nodeid == slab_node) {
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003400 /*
3401 * Use the locally cached objects if possible.
3402 * However ____cache_alloc does not allow fallback
3403 * to other nodes. It may fail while we still have
3404 * objects on other nodes available.
3405 */
3406 ptr = ____cache_alloc(cachep, flags);
3407 if (ptr)
3408 goto out;
3409 }
3410 /* ___cache_alloc_node can fall back to other nodes */
3411 ptr = ____cache_alloc_node(cachep, flags, nodeid);
3412 out:
3413 local_irq_restore(save_flags);
3414 ptr = cache_alloc_debugcheck_after(cachep, flags, ptr, caller);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003415 kmemleak_alloc_recursive(ptr, cachep->object_size, 1, cachep->flags,
Catalin Marinasd5cff632009-06-11 13:22:40 +01003416 flags);
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003417
Pekka Enbergc175eea2008-05-09 20:35:53 +02003418 if (likely(ptr))
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003419 kmemcheck_slab_alloc(cachep, flags, ptr, cachep->object_size);
Pekka Enbergc175eea2008-05-09 20:35:53 +02003420
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003421 if (unlikely((flags & __GFP_ZERO) && ptr))
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003422 memset(ptr, 0, cachep->object_size);
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003423
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003424 return ptr;
3425}
3426
3427static __always_inline void *
3428__do_cache_alloc(struct kmem_cache *cache, gfp_t flags)
3429{
3430 void *objp;
3431
3432 if (unlikely(current->flags & (PF_SPREAD_SLAB | PF_MEMPOLICY))) {
3433 objp = alternate_node_alloc(cache, flags);
3434 if (objp)
3435 goto out;
3436 }
3437 objp = ____cache_alloc(cache, flags);
3438
3439 /*
3440 * We may just have run out of memory on the local node.
3441 * ____cache_alloc_node() knows how to locate memory on other nodes
3442 */
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003443 if (!objp)
3444 objp = ____cache_alloc_node(cache, flags, numa_mem_id());
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003445
3446 out:
3447 return objp;
3448}
3449#else
3450
3451static __always_inline void *
3452__do_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
3453{
3454 return ____cache_alloc(cachep, flags);
3455}
3456
3457#endif /* CONFIG_NUMA */
3458
3459static __always_inline void *
Ezequiel Garcia48356302012-09-08 17:47:57 -03003460slab_alloc(struct kmem_cache *cachep, gfp_t flags, unsigned long caller)
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003461{
3462 unsigned long save_flags;
3463 void *objp;
3464
Benjamin Herrenschmidtdcce2842009-06-18 13:24:12 +10003465 flags &= gfp_allowed_mask;
Pekka Enberg7e85ee02009-06-12 14:03:06 +03003466
Nick Piggincf40bd12009-01-21 08:12:39 +01003467 lockdep_trace_alloc(flags);
3468
Akinobu Mita773ff602008-12-23 19:37:01 +09003469 if (slab_should_failslab(cachep, flags))
Akinobu Mita824ebef2007-05-06 14:49:58 -07003470 return NULL;
3471
Glauber Costad79923f2012-12-18 14:22:48 -08003472 cachep = memcg_kmem_get_cache(cachep, flags);
3473
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003474 cache_alloc_debugcheck_before(cachep, flags);
3475 local_irq_save(save_flags);
3476 objp = __do_cache_alloc(cachep, flags);
3477 local_irq_restore(save_flags);
3478 objp = cache_alloc_debugcheck_after(cachep, flags, objp, caller);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003479 kmemleak_alloc_recursive(objp, cachep->object_size, 1, cachep->flags,
Catalin Marinasd5cff632009-06-11 13:22:40 +01003480 flags);
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003481 prefetchw(objp);
3482
Pekka Enbergc175eea2008-05-09 20:35:53 +02003483 if (likely(objp))
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003484 kmemcheck_slab_alloc(cachep, flags, objp, cachep->object_size);
Pekka Enbergc175eea2008-05-09 20:35:53 +02003485
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003486 if (unlikely((flags & __GFP_ZERO) && objp))
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003487 memset(objp, 0, cachep->object_size);
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003488
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003489 return objp;
3490}
Christoph Lametere498be72005-09-09 13:03:32 -07003491
3492/*
3493 * Caller needs to acquire correct kmem_list's list_lock
3494 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003495static void free_block(struct kmem_cache *cachep, void **objpp, int nr_objects,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003496 int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003497{
3498 int i;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003499 struct kmem_cache_node *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500
3501 for (i = 0; i < nr_objects; i++) {
Mel Gorman072bb0a2012-07-31 16:43:58 -07003502 void *objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003503 struct slab *slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003504
Mel Gorman072bb0a2012-07-31 16:43:58 -07003505 clear_obj_pfmemalloc(&objpp[i]);
3506 objp = objpp[i];
3507
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -08003508 slabp = virt_to_slab(objp);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003509 n = cachep->node[node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003510 list_del(&slabp->list);
Christoph Lameterff694162005-09-22 21:44:02 -07003511 check_spinlock_acquired_node(cachep, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512 check_slabp(cachep, slabp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08003513 slab_put_obj(cachep, slabp, objp, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003514 STATS_DEC_ACTIVE(cachep);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003515 n->free_objects++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516 check_slabp(cachep, slabp);
3517
3518 /* fixup slab chains */
3519 if (slabp->inuse == 0) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003520 if (n->free_objects > n->free_limit) {
3521 n->free_objects -= cachep->num;
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07003522 /* No need to drop any previously held
3523 * lock here, even if we have a off-slab slab
3524 * descriptor it is guaranteed to come from
3525 * a different cache, refer to comments before
3526 * alloc_slabmgmt.
3527 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528 slab_destroy(cachep, slabp);
3529 } else {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003530 list_add(&slabp->list, &n->slabs_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531 }
3532 } else {
3533 /* Unconditionally move a slab to the end of the
3534 * partial list on free - maximum time for the
3535 * other objects to be freed, too.
3536 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003537 list_add_tail(&slabp->list, &n->slabs_partial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538 }
3539 }
3540}
3541
Pekka Enberg343e0d72006-02-01 03:05:50 -08003542static void cache_flusharray(struct kmem_cache *cachep, struct array_cache *ac)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003543{
3544 int batchcount;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003545 struct kmem_cache_node *n;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003546 int node = numa_mem_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003547
3548 batchcount = ac->batchcount;
3549#if DEBUG
3550 BUG_ON(!batchcount || batchcount > ac->avail);
3551#endif
3552 check_irq_off();
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003553 n = cachep->node[node];
3554 spin_lock(&n->list_lock);
3555 if (n->shared) {
3556 struct array_cache *shared_array = n->shared;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003557 int max = shared_array->limit - shared_array->avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003558 if (max) {
3559 if (batchcount > max)
3560 batchcount = max;
Christoph Lametere498be72005-09-09 13:03:32 -07003561 memcpy(&(shared_array->entry[shared_array->avail]),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003562 ac->entry, sizeof(void *) * batchcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003563 shared_array->avail += batchcount;
3564 goto free_done;
3565 }
3566 }
3567
Christoph Lameterff694162005-09-22 21:44:02 -07003568 free_block(cachep, ac->entry, batchcount, node);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003569free_done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003570#if STATS
3571 {
3572 int i = 0;
3573 struct list_head *p;
3574
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003575 p = n->slabs_free.next;
3576 while (p != &(n->slabs_free)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577 struct slab *slabp;
3578
3579 slabp = list_entry(p, struct slab, list);
3580 BUG_ON(slabp->inuse);
3581
3582 i++;
3583 p = p->next;
3584 }
3585 STATS_SET_FREEABLE(cachep, i);
3586 }
3587#endif
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003588 spin_unlock(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003589 ac->avail -= batchcount;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003590 memmove(ac->entry, &(ac->entry[batchcount]), sizeof(void *)*ac->avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003591}
3592
3593/*
Andrew Mortona737b3e2006-03-22 00:08:11 -08003594 * Release an obj back to its cache. If the obj has a constructed state, it must
3595 * be in this state _before_ it is released. Called with disabled ints.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003596 */
Suleiman Souhlala947eb92011-06-02 00:16:42 -07003597static inline void __cache_free(struct kmem_cache *cachep, void *objp,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003598 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003599{
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003600 struct array_cache *ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003601
3602 check_irq_off();
Catalin Marinasd5cff632009-06-11 13:22:40 +01003603 kmemleak_free_recursive(objp, cachep->flags);
Suleiman Souhlala947eb92011-06-02 00:16:42 -07003604 objp = cache_free_debugcheck(cachep, objp, caller);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003605
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003606 kmemcheck_slab_free(cachep, objp, cachep->object_size);
Pekka Enbergc175eea2008-05-09 20:35:53 +02003607
Siddha, Suresh B1807a1a2007-08-22 14:01:49 -07003608 /*
3609 * Skip calling cache_free_alien() when the platform is not numa.
3610 * This will avoid cache misses that happen while accessing slabp (which
3611 * is per page memory reference) to get nodeid. Instead use a global
3612 * variable to skip the call, which is mostly likely to be present in
3613 * the cache.
3614 */
Mel Gormanb6e68bc2009-06-16 15:32:16 -07003615 if (nr_online_nodes > 1 && cache_free_alien(cachep, objp))
Pekka Enberg729bd0b2006-06-23 02:03:05 -07003616 return;
Christoph Lametere498be72005-09-09 13:03:32 -07003617
Linus Torvalds1da177e2005-04-16 15:20:36 -07003618 if (likely(ac->avail < ac->limit)) {
3619 STATS_INC_FREEHIT(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003620 } else {
3621 STATS_INC_FREEMISS(cachep);
3622 cache_flusharray(cachep, ac);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003623 }
Zhao Jin42c8c992011-08-27 00:26:17 +08003624
Mel Gorman072bb0a2012-07-31 16:43:58 -07003625 ac_put_obj(cachep, ac, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003626}
3627
3628/**
3629 * kmem_cache_alloc - Allocate an object
3630 * @cachep: The cache to allocate from.
3631 * @flags: See kmalloc().
3632 *
3633 * Allocate an object from this cache. The flags are only relevant
3634 * if the cache has no available objects.
3635 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003636void *kmem_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637{
Ezequiel Garcia48356302012-09-08 17:47:57 -03003638 void *ret = slab_alloc(cachep, flags, _RET_IP_);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003639
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003640 trace_kmem_cache_alloc(_RET_IP_, ret,
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003641 cachep->object_size, cachep->size, flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003642
3643 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003644}
3645EXPORT_SYMBOL(kmem_cache_alloc);
3646
Li Zefan0f24f122009-12-11 15:45:30 +08003647#ifdef CONFIG_TRACING
Steven Rostedt85beb582010-11-24 16:23:34 -05003648void *
Ezequiel Garcia40521472012-09-08 17:47:56 -03003649kmem_cache_alloc_trace(struct kmem_cache *cachep, gfp_t flags, size_t size)
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003650{
Steven Rostedt85beb582010-11-24 16:23:34 -05003651 void *ret;
3652
Ezequiel Garcia48356302012-09-08 17:47:57 -03003653 ret = slab_alloc(cachep, flags, _RET_IP_);
Steven Rostedt85beb582010-11-24 16:23:34 -05003654
3655 trace_kmalloc(_RET_IP_, ret,
Ezequiel Garciaff4fcd02012-09-08 17:47:52 -03003656 size, cachep->size, flags);
Steven Rostedt85beb582010-11-24 16:23:34 -05003657 return ret;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003658}
Steven Rostedt85beb582010-11-24 16:23:34 -05003659EXPORT_SYMBOL(kmem_cache_alloc_trace);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003660#endif
3661
Linus Torvalds1da177e2005-04-16 15:20:36 -07003662#ifdef CONFIG_NUMA
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003663void *kmem_cache_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid)
3664{
Ezequiel Garcia48356302012-09-08 17:47:57 -03003665 void *ret = slab_alloc_node(cachep, flags, nodeid, _RET_IP_);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003666
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003667 trace_kmem_cache_alloc_node(_RET_IP_, ret,
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003668 cachep->object_size, cachep->size,
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003669 flags, nodeid);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003670
3671 return ret;
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003672}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003673EXPORT_SYMBOL(kmem_cache_alloc_node);
3674
Li Zefan0f24f122009-12-11 15:45:30 +08003675#ifdef CONFIG_TRACING
Ezequiel Garcia40521472012-09-08 17:47:56 -03003676void *kmem_cache_alloc_node_trace(struct kmem_cache *cachep,
Steven Rostedt85beb582010-11-24 16:23:34 -05003677 gfp_t flags,
Ezequiel Garcia40521472012-09-08 17:47:56 -03003678 int nodeid,
3679 size_t size)
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003680{
Steven Rostedt85beb582010-11-24 16:23:34 -05003681 void *ret;
3682
Ezequiel Garcia592f4142012-09-25 08:07:08 -03003683 ret = slab_alloc_node(cachep, flags, nodeid, _RET_IP_);
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003684
Steven Rostedt85beb582010-11-24 16:23:34 -05003685 trace_kmalloc_node(_RET_IP_, ret,
Ezequiel Garciaff4fcd02012-09-08 17:47:52 -03003686 size, cachep->size,
Steven Rostedt85beb582010-11-24 16:23:34 -05003687 flags, nodeid);
3688 return ret;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003689}
Steven Rostedt85beb582010-11-24 16:23:34 -05003690EXPORT_SYMBOL(kmem_cache_alloc_node_trace);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003691#endif
3692
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003693static __always_inline void *
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003694__do_kmalloc_node(size_t size, gfp_t flags, int node, unsigned long caller)
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003695{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003696 struct kmem_cache *cachep;
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003697
Christoph Lameter2c59dd62013-01-10 19:14:19 +00003698 cachep = kmalloc_slab(size, flags);
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003699 if (unlikely(ZERO_OR_NULL_PTR(cachep)))
3700 return cachep;
Ezequiel Garcia40521472012-09-08 17:47:56 -03003701 return kmem_cache_alloc_node_trace(cachep, flags, node, size);
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003702}
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003703
Li Zefan0bb38a52009-12-11 15:45:50 +08003704#if defined(CONFIG_DEBUG_SLAB) || defined(CONFIG_TRACING)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003705void *__kmalloc_node(size_t size, gfp_t flags, int node)
3706{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003707 return __do_kmalloc_node(size, flags, node, _RET_IP_);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003708}
Christoph Hellwigdbe5e692006-09-25 23:31:36 -07003709EXPORT_SYMBOL(__kmalloc_node);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003710
3711void *__kmalloc_node_track_caller(size_t size, gfp_t flags,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003712 int node, unsigned long caller)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003713{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003714 return __do_kmalloc_node(size, flags, node, caller);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003715}
3716EXPORT_SYMBOL(__kmalloc_node_track_caller);
3717#else
3718void *__kmalloc_node(size_t size, gfp_t flags, int node)
3719{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003720 return __do_kmalloc_node(size, flags, node, 0);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003721}
3722EXPORT_SYMBOL(__kmalloc_node);
Li Zefan0bb38a52009-12-11 15:45:50 +08003723#endif /* CONFIG_DEBUG_SLAB || CONFIG_TRACING */
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003724#endif /* CONFIG_NUMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003725
3726/**
Paul Drynoff800590f2006-06-23 02:03:48 -07003727 * __do_kmalloc - allocate memory
Linus Torvalds1da177e2005-04-16 15:20:36 -07003728 * @size: how many bytes of memory are required.
Paul Drynoff800590f2006-06-23 02:03:48 -07003729 * @flags: the type of memory to allocate (see kmalloc).
Randy Dunlap911851e2006-03-22 00:08:14 -08003730 * @caller: function caller for debug tracking of the caller
Linus Torvalds1da177e2005-04-16 15:20:36 -07003731 */
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003732static __always_inline void *__do_kmalloc(size_t size, gfp_t flags,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003733 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003734{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003735 struct kmem_cache *cachep;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003736 void *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003737
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003738 /* If you want to save a few bytes .text space: replace
3739 * __ with kmem_.
3740 * Then kmalloc uses the uninlined functions instead of the inline
3741 * functions.
3742 */
Christoph Lameter2c59dd62013-01-10 19:14:19 +00003743 cachep = kmalloc_slab(size, flags);
Linus Torvaldsa5c96d82007-07-19 13:17:15 -07003744 if (unlikely(ZERO_OR_NULL_PTR(cachep)))
3745 return cachep;
Ezequiel Garcia48356302012-09-08 17:47:57 -03003746 ret = slab_alloc(cachep, flags, caller);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003747
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003748 trace_kmalloc(caller, ret,
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003749 size, cachep->size, flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003750
3751 return ret;
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003752}
3753
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003754
Li Zefan0bb38a52009-12-11 15:45:50 +08003755#if defined(CONFIG_DEBUG_SLAB) || defined(CONFIG_TRACING)
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003756void *__kmalloc(size_t size, gfp_t flags)
3757{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003758 return __do_kmalloc(size, flags, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759}
3760EXPORT_SYMBOL(__kmalloc);
3761
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003762void *__kmalloc_track_caller(size_t size, gfp_t flags, unsigned long caller)
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003763{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003764 return __do_kmalloc(size, flags, caller);
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003765}
3766EXPORT_SYMBOL(__kmalloc_track_caller);
Christoph Hellwig1d2c8ee2006-10-04 02:15:25 -07003767
3768#else
3769void *__kmalloc(size_t size, gfp_t flags)
3770{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003771 return __do_kmalloc(size, flags, 0);
Christoph Hellwig1d2c8ee2006-10-04 02:15:25 -07003772}
3773EXPORT_SYMBOL(__kmalloc);
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003774#endif
3775
Linus Torvalds1da177e2005-04-16 15:20:36 -07003776/**
3777 * kmem_cache_free - Deallocate an object
3778 * @cachep: The cache the allocation was from.
3779 * @objp: The previously allocated object.
3780 *
3781 * Free an object which was previously allocated from this
3782 * cache.
3783 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003784void kmem_cache_free(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003785{
3786 unsigned long flags;
Glauber Costab9ce5ef2012-12-18 14:22:46 -08003787 cachep = cache_from_obj(cachep, objp);
3788 if (!cachep)
3789 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003790
3791 local_irq_save(flags);
Feng Tangd97d4762012-07-02 14:29:10 +08003792 debug_check_no_locks_freed(objp, cachep->object_size);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -07003793 if (!(cachep->flags & SLAB_DEBUG_OBJECTS))
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003794 debug_check_no_obj_freed(objp, cachep->object_size);
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003795 __cache_free(cachep, objp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003796 local_irq_restore(flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003797
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003798 trace_kmem_cache_free(_RET_IP_, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003799}
3800EXPORT_SYMBOL(kmem_cache_free);
3801
3802/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003803 * kfree - free previously allocated memory
3804 * @objp: pointer returned by kmalloc.
3805 *
Pekka Enberg80e93ef2005-09-09 13:10:16 -07003806 * If @objp is NULL, no operation is performed.
3807 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003808 * Don't free memory not originally allocated by kmalloc()
3809 * or you will run into trouble.
3810 */
3811void kfree(const void *objp)
3812{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003813 struct kmem_cache *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003814 unsigned long flags;
3815
Pekka Enberg2121db72009-03-25 11:05:57 +02003816 trace_kfree(_RET_IP_, objp);
3817
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003818 if (unlikely(ZERO_OR_NULL_PTR(objp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003819 return;
3820 local_irq_save(flags);
3821 kfree_debugcheck(objp);
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -08003822 c = virt_to_cache(objp);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003823 debug_check_no_locks_freed(objp, c->object_size);
3824
3825 debug_check_no_obj_freed(objp, c->object_size);
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003826 __cache_free(c, (void *)objp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003827 local_irq_restore(flags);
3828}
3829EXPORT_SYMBOL(kfree);
3830
Christoph Lametere498be72005-09-09 13:03:32 -07003831/*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003832 * This initializes kmem_cache_node or resizes various caches for all nodes.
Christoph Lametere498be72005-09-09 13:03:32 -07003833 */
Pekka Enberg83b519e2009-06-10 19:40:04 +03003834static int alloc_kmemlist(struct kmem_cache *cachep, gfp_t gfp)
Christoph Lametere498be72005-09-09 13:03:32 -07003835{
3836 int node;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003837 struct kmem_cache_node *n;
Christoph Lametercafeb022006-03-25 03:06:46 -08003838 struct array_cache *new_shared;
Paul Menage3395ee02006-12-06 20:32:16 -08003839 struct array_cache **new_alien = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07003840
Mel Gorman9c09a952008-01-24 05:49:54 -08003841 for_each_online_node(node) {
Christoph Lametercafeb022006-03-25 03:06:46 -08003842
Paul Menage3395ee02006-12-06 20:32:16 -08003843 if (use_alien_caches) {
Pekka Enberg83b519e2009-06-10 19:40:04 +03003844 new_alien = alloc_alien_cache(node, cachep->limit, gfp);
Paul Menage3395ee02006-12-06 20:32:16 -08003845 if (!new_alien)
3846 goto fail;
3847 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003848
Eric Dumazet63109842007-05-06 14:49:28 -07003849 new_shared = NULL;
3850 if (cachep->shared) {
3851 new_shared = alloc_arraycache(node,
Christoph Lameter0718dc22006-03-25 03:06:47 -08003852 cachep->shared*cachep->batchcount,
Pekka Enberg83b519e2009-06-10 19:40:04 +03003853 0xbaadf00d, gfp);
Eric Dumazet63109842007-05-06 14:49:28 -07003854 if (!new_shared) {
3855 free_alien_cache(new_alien);
3856 goto fail;
3857 }
Christoph Lameter0718dc22006-03-25 03:06:47 -08003858 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003859
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003860 n = cachep->node[node];
3861 if (n) {
3862 struct array_cache *shared = n->shared;
Christoph Lametercafeb022006-03-25 03:06:46 -08003863
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003864 spin_lock_irq(&n->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07003865
Christoph Lametercafeb022006-03-25 03:06:46 -08003866 if (shared)
Christoph Lameter0718dc22006-03-25 03:06:47 -08003867 free_block(cachep, shared->entry,
3868 shared->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -07003869
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003870 n->shared = new_shared;
3871 if (!n->alien) {
3872 n->alien = new_alien;
Christoph Lametere498be72005-09-09 13:03:32 -07003873 new_alien = NULL;
3874 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003875 n->free_limit = (1 + nr_cpus_node(node)) *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003876 cachep->batchcount + cachep->num;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003877 spin_unlock_irq(&n->list_lock);
Christoph Lametercafeb022006-03-25 03:06:46 -08003878 kfree(shared);
Christoph Lametere498be72005-09-09 13:03:32 -07003879 free_alien_cache(new_alien);
3880 continue;
3881 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003882 n = kmalloc_node(sizeof(struct kmem_cache_node), gfp, node);
3883 if (!n) {
Christoph Lameter0718dc22006-03-25 03:06:47 -08003884 free_alien_cache(new_alien);
3885 kfree(new_shared);
Christoph Lametere498be72005-09-09 13:03:32 -07003886 goto fail;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003887 }
Christoph Lametere498be72005-09-09 13:03:32 -07003888
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003889 kmem_cache_node_init(n);
3890 n->next_reap = jiffies + REAPTIMEOUT_LIST3 +
Andrew Mortona737b3e2006-03-22 00:08:11 -08003891 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003892 n->shared = new_shared;
3893 n->alien = new_alien;
3894 n->free_limit = (1 + nr_cpus_node(node)) *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003895 cachep->batchcount + cachep->num;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003896 cachep->node[node] = n;
Christoph Lametere498be72005-09-09 13:03:32 -07003897 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003898 return 0;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003899
Andrew Mortona737b3e2006-03-22 00:08:11 -08003900fail:
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003901 if (!cachep->list.next) {
Christoph Lameter0718dc22006-03-25 03:06:47 -08003902 /* Cache is not active yet. Roll back what we did */
3903 node--;
3904 while (node >= 0) {
Christoph Lameter6a673682013-01-10 19:14:19 +00003905 if (cachep->node[node]) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003906 n = cachep->node[node];
Christoph Lameter0718dc22006-03-25 03:06:47 -08003907
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00003908 kfree(n->shared);
3909 free_alien_cache(n->alien);
3910 kfree(n);
Christoph Lameter6a673682013-01-10 19:14:19 +00003911 cachep->node[node] = NULL;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003912 }
3913 node--;
3914 }
3915 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003916 return -ENOMEM;
Christoph Lametere498be72005-09-09 13:03:32 -07003917}
3918
Linus Torvalds1da177e2005-04-16 15:20:36 -07003919struct ccupdate_struct {
Pekka Enberg343e0d72006-02-01 03:05:50 -08003920 struct kmem_cache *cachep;
Eric Dumazetacfe7d72011-07-25 08:55:42 +02003921 struct array_cache *new[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922};
3923
3924static void do_ccupdate_local(void *info)
3925{
Andrew Mortona737b3e2006-03-22 00:08:11 -08003926 struct ccupdate_struct *new = info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003927 struct array_cache *old;
3928
3929 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003930 old = cpu_cache_get(new->cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003931
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932 new->cachep->array[smp_processor_id()] = new->new[smp_processor_id()];
3933 new->new[smp_processor_id()] = old;
3934}
3935
Christoph Lameter18004c52012-07-06 15:25:12 -05003936/* Always called with the slab_mutex held */
Glauber Costa943a4512012-12-18 14:23:03 -08003937static int __do_tune_cpucache(struct kmem_cache *cachep, int limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03003938 int batchcount, int shared, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003939{
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003940 struct ccupdate_struct *new;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07003941 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942
Eric Dumazetacfe7d72011-07-25 08:55:42 +02003943 new = kzalloc(sizeof(*new) + nr_cpu_ids * sizeof(struct array_cache *),
3944 gfp);
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003945 if (!new)
3946 return -ENOMEM;
3947
Christoph Lametere498be72005-09-09 13:03:32 -07003948 for_each_online_cpu(i) {
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003949 new->new[i] = alloc_arraycache(cpu_to_mem(i), limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03003950 batchcount, gfp);
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003951 if (!new->new[i]) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003952 for (i--; i >= 0; i--)
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003953 kfree(new->new[i]);
3954 kfree(new);
Christoph Lametere498be72005-09-09 13:03:32 -07003955 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956 }
3957 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003958 new->cachep = cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003959
Jens Axboe15c8b6c2008-05-09 09:39:44 +02003960 on_each_cpu(do_ccupdate_local, (void *)new, 1);
Christoph Lametere498be72005-09-09 13:03:32 -07003961
Linus Torvalds1da177e2005-04-16 15:20:36 -07003962 check_irq_on();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003963 cachep->batchcount = batchcount;
3964 cachep->limit = limit;
Christoph Lametere498be72005-09-09 13:03:32 -07003965 cachep->shared = shared;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003966
Christoph Lametere498be72005-09-09 13:03:32 -07003967 for_each_online_cpu(i) {
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003968 struct array_cache *ccold = new->new[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003969 if (!ccold)
3970 continue;
Christoph Lameter6a673682013-01-10 19:14:19 +00003971 spin_lock_irq(&cachep->node[cpu_to_mem(i)]->list_lock);
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003972 free_block(cachep, ccold->entry, ccold->avail, cpu_to_mem(i));
Christoph Lameter6a673682013-01-10 19:14:19 +00003973 spin_unlock_irq(&cachep->node[cpu_to_mem(i)]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003974 kfree(ccold);
3975 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003976 kfree(new);
Pekka Enberg83b519e2009-06-10 19:40:04 +03003977 return alloc_kmemlist(cachep, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003978}
3979
Glauber Costa943a4512012-12-18 14:23:03 -08003980static int do_tune_cpucache(struct kmem_cache *cachep, int limit,
3981 int batchcount, int shared, gfp_t gfp)
3982{
3983 int ret;
3984 struct kmem_cache *c = NULL;
3985 int i = 0;
3986
3987 ret = __do_tune_cpucache(cachep, limit, batchcount, shared, gfp);
3988
3989 if (slab_state < FULL)
3990 return ret;
3991
3992 if ((ret < 0) || !is_root_cache(cachep))
3993 return ret;
3994
Glauber Costaebe945c2012-12-18 14:23:10 -08003995 VM_BUG_ON(!mutex_is_locked(&slab_mutex));
Glauber Costa943a4512012-12-18 14:23:03 -08003996 for_each_memcg_cache_index(i) {
3997 c = cache_from_memcg(cachep, i);
3998 if (c)
3999 /* return value determined by the parent cache only */
4000 __do_tune_cpucache(c, limit, batchcount, shared, gfp);
4001 }
4002
4003 return ret;
4004}
4005
Christoph Lameter18004c52012-07-06 15:25:12 -05004006/* Called with slab_mutex held always */
Pekka Enberg83b519e2009-06-10 19:40:04 +03004007static int enable_cpucache(struct kmem_cache *cachep, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004008{
4009 int err;
Glauber Costa943a4512012-12-18 14:23:03 -08004010 int limit = 0;
4011 int shared = 0;
4012 int batchcount = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004013
Glauber Costa943a4512012-12-18 14:23:03 -08004014 if (!is_root_cache(cachep)) {
4015 struct kmem_cache *root = memcg_root_cache(cachep);
4016 limit = root->limit;
4017 shared = root->shared;
4018 batchcount = root->batchcount;
4019 }
4020
4021 if (limit && shared && batchcount)
4022 goto skip_setup;
Andrew Mortona737b3e2006-03-22 00:08:11 -08004023 /*
4024 * The head array serves three purposes:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004025 * - create a LIFO ordering, i.e. return objects that are cache-warm
4026 * - reduce the number of spinlock operations.
Andrew Mortona737b3e2006-03-22 00:08:11 -08004027 * - reduce the number of linked list operations on the slab and
Linus Torvalds1da177e2005-04-16 15:20:36 -07004028 * bufctl chains: array operations are cheaper.
4029 * The numbers are guessed, we should auto-tune as described by
4030 * Bonwick.
4031 */
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05004032 if (cachep->size > 131072)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004033 limit = 1;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05004034 else if (cachep->size > PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035 limit = 8;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05004036 else if (cachep->size > 1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004037 limit = 24;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05004038 else if (cachep->size > 256)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004039 limit = 54;
4040 else
4041 limit = 120;
4042
Andrew Mortona737b3e2006-03-22 00:08:11 -08004043 /*
4044 * CPU bound tasks (e.g. network routing) can exhibit cpu bound
Linus Torvalds1da177e2005-04-16 15:20:36 -07004045 * allocation behaviour: Most allocs on one cpu, most free operations
4046 * on another cpu. For these cases, an efficient object passing between
4047 * cpus is necessary. This is provided by a shared array. The array
4048 * replaces Bonwick's magazine layer.
4049 * On uniprocessor, it's functionally equivalent (but less efficient)
4050 * to a larger limit. Thus disabled by default.
4051 */
4052 shared = 0;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05004053 if (cachep->size <= PAGE_SIZE && num_possible_cpus() > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004054 shared = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004055
4056#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08004057 /*
4058 * With debugging enabled, large batchcount lead to excessively long
4059 * periods with disabled local interrupts. Limit the batchcount
Linus Torvalds1da177e2005-04-16 15:20:36 -07004060 */
4061 if (limit > 32)
4062 limit = 32;
4063#endif
Glauber Costa943a4512012-12-18 14:23:03 -08004064 batchcount = (limit + 1) / 2;
4065skip_setup:
4066 err = do_tune_cpucache(cachep, limit, batchcount, shared, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004067 if (err)
4068 printk(KERN_ERR "enable_cpucache failed for %s, error %d.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004069 cachep->name, -err);
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07004070 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004071}
4072
Christoph Lameter1b552532006-03-22 00:09:07 -08004073/*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004074 * Drain an array if it contains any elements taking the node lock only if
4075 * necessary. Note that the node listlock also protects the array_cache
Christoph Lameterb18e7e62006-03-22 00:09:07 -08004076 * if drain_array() is used on the shared array.
Christoph Lameter1b552532006-03-22 00:09:07 -08004077 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004078static void drain_array(struct kmem_cache *cachep, struct kmem_cache_node *n,
Christoph Lameter1b552532006-03-22 00:09:07 -08004079 struct array_cache *ac, int force, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004080{
4081 int tofree;
4082
Christoph Lameter1b552532006-03-22 00:09:07 -08004083 if (!ac || !ac->avail)
4084 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004085 if (ac->touched && !force) {
4086 ac->touched = 0;
Christoph Lameterb18e7e62006-03-22 00:09:07 -08004087 } else {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004088 spin_lock_irq(&n->list_lock);
Christoph Lameterb18e7e62006-03-22 00:09:07 -08004089 if (ac->avail) {
4090 tofree = force ? ac->avail : (ac->limit + 4) / 5;
4091 if (tofree > ac->avail)
4092 tofree = (ac->avail + 1) / 2;
4093 free_block(cachep, ac->entry, tofree, node);
4094 ac->avail -= tofree;
4095 memmove(ac->entry, &(ac->entry[tofree]),
4096 sizeof(void *) * ac->avail);
4097 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004098 spin_unlock_irq(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004099 }
4100}
4101
4102/**
4103 * cache_reap - Reclaim memory from caches.
Randy Dunlap05fb6bf2007-02-28 20:12:13 -08004104 * @w: work descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -07004105 *
4106 * Called from workqueue/eventd every few seconds.
4107 * Purpose:
4108 * - clear the per-cpu caches for this CPU.
4109 * - return freeable pages to the main free memory pool.
4110 *
Andrew Mortona737b3e2006-03-22 00:08:11 -08004111 * If we cannot acquire the cache chain mutex then just give up - we'll try
4112 * again on the next iteration.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004113 */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004114static void cache_reap(struct work_struct *w)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004115{
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004116 struct kmem_cache *searchp;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004117 struct kmem_cache_node *n;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07004118 int node = numa_mem_id();
Jean Delvarebf6aede2009-04-02 16:56:54 -07004119 struct delayed_work *work = to_delayed_work(w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004120
Christoph Lameter18004c52012-07-06 15:25:12 -05004121 if (!mutex_trylock(&slab_mutex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004122 /* Give up. Setup the next iteration. */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004123 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004124
Christoph Lameter18004c52012-07-06 15:25:12 -05004125 list_for_each_entry(searchp, &slab_caches, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004126 check_irq_on();
4127
Christoph Lameter35386e32006-03-22 00:09:05 -08004128 /*
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004129 * We only take the node lock if absolutely necessary and we
Christoph Lameter35386e32006-03-22 00:09:05 -08004130 * have established with reasonable certainty that
4131 * we can do some work if the lock was obtained.
4132 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004133 n = searchp->node[node];
Christoph Lameter35386e32006-03-22 00:09:05 -08004134
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004135 reap_alien(searchp, n);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004136
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004137 drain_array(searchp, n, cpu_cache_get(searchp), 0, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004138
Christoph Lameter35386e32006-03-22 00:09:05 -08004139 /*
4140 * These are racy checks but it does not matter
4141 * if we skip one check or scan twice.
4142 */
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004143 if (time_after(n->next_reap, jiffies))
Christoph Lameter35386e32006-03-22 00:09:05 -08004144 goto next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004145
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004146 n->next_reap = jiffies + REAPTIMEOUT_LIST3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004147
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004148 drain_array(searchp, n, n->shared, 0, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004149
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004150 if (n->free_touched)
4151 n->free_touched = 0;
Christoph Lametered11d9e2006-06-30 01:55:45 -07004152 else {
4153 int freed;
4154
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004155 freed = drain_freelist(searchp, n, (n->free_limit +
Christoph Lametered11d9e2006-06-30 01:55:45 -07004156 5 * searchp->num - 1) / (5 * searchp->num));
4157 STATS_ADD_REAPED(searchp, freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004158 }
Christoph Lameter35386e32006-03-22 00:09:05 -08004159next:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004160 cond_resched();
4161 }
4162 check_irq_on();
Christoph Lameter18004c52012-07-06 15:25:12 -05004163 mutex_unlock(&slab_mutex);
Christoph Lameter8fce4d82006-03-09 17:33:54 -08004164 next_reap_node();
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004165out:
Andrew Mortona737b3e2006-03-22 00:08:11 -08004166 /* Set up the next iteration */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004167 schedule_delayed_work(work, round_jiffies_relative(REAPTIMEOUT_CPUC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004168}
4169
Linus Torvalds158a9622008-01-02 13:04:48 -08004170#ifdef CONFIG_SLABINFO
Glauber Costa0d7561c2012-10-19 18:20:27 +04004171void get_slabinfo(struct kmem_cache *cachep, struct slabinfo *sinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004172{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004173 struct slab *slabp;
4174 unsigned long active_objs;
4175 unsigned long num_objs;
4176 unsigned long active_slabs = 0;
4177 unsigned long num_slabs, free_objects = 0, shared_avail = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07004178 const char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004179 char *error = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07004180 int node;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004181 struct kmem_cache_node *n;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004182
Linus Torvalds1da177e2005-04-16 15:20:36 -07004183 active_objs = 0;
4184 num_slabs = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07004185 for_each_online_node(node) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004186 n = cachep->node[node];
4187 if (!n)
Christoph Lametere498be72005-09-09 13:03:32 -07004188 continue;
4189
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08004190 check_irq_on();
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004191 spin_lock_irq(&n->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07004192
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004193 list_for_each_entry(slabp, &n->slabs_full, list) {
Christoph Lametere498be72005-09-09 13:03:32 -07004194 if (slabp->inuse != cachep->num && !error)
4195 error = "slabs_full accounting error";
4196 active_objs += cachep->num;
4197 active_slabs++;
4198 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004199 list_for_each_entry(slabp, &n->slabs_partial, list) {
Christoph Lametere498be72005-09-09 13:03:32 -07004200 if (slabp->inuse == cachep->num && !error)
4201 error = "slabs_partial inuse accounting error";
4202 if (!slabp->inuse && !error)
4203 error = "slabs_partial/inuse accounting error";
4204 active_objs += slabp->inuse;
4205 active_slabs++;
4206 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004207 list_for_each_entry(slabp, &n->slabs_free, list) {
Christoph Lametere498be72005-09-09 13:03:32 -07004208 if (slabp->inuse && !error)
4209 error = "slabs_free/inuse accounting error";
4210 num_slabs++;
4211 }
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004212 free_objects += n->free_objects;
4213 if (n->shared)
4214 shared_avail += n->shared->avail;
Christoph Lametere498be72005-09-09 13:03:32 -07004215
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004216 spin_unlock_irq(&n->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004217 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004218 num_slabs += active_slabs;
4219 num_objs = num_slabs * cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07004220 if (num_objs - active_objs != free_objects && !error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004221 error = "free_objects accounting error";
4222
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004223 name = cachep->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004224 if (error)
4225 printk(KERN_ERR "slab: cache %s error: %s\n", name, error);
4226
Glauber Costa0d7561c2012-10-19 18:20:27 +04004227 sinfo->active_objs = active_objs;
4228 sinfo->num_objs = num_objs;
4229 sinfo->active_slabs = active_slabs;
4230 sinfo->num_slabs = num_slabs;
4231 sinfo->shared_avail = shared_avail;
4232 sinfo->limit = cachep->limit;
4233 sinfo->batchcount = cachep->batchcount;
4234 sinfo->shared = cachep->shared;
4235 sinfo->objects_per_slab = cachep->num;
4236 sinfo->cache_order = cachep->gfporder;
4237}
4238
4239void slabinfo_show_stats(struct seq_file *m, struct kmem_cache *cachep)
4240{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004241#if STATS
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004242 { /* node stats */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004243 unsigned long high = cachep->high_mark;
4244 unsigned long allocs = cachep->num_allocations;
4245 unsigned long grown = cachep->grown;
4246 unsigned long reaped = cachep->reaped;
4247 unsigned long errors = cachep->errors;
4248 unsigned long max_freeable = cachep->max_freeable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004249 unsigned long node_allocs = cachep->node_allocs;
Christoph Lametere498be72005-09-09 13:03:32 -07004250 unsigned long node_frees = cachep->node_frees;
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -07004251 unsigned long overflows = cachep->node_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004252
Joe Perchese92dd4f2010-03-26 19:27:58 -07004253 seq_printf(m, " : globalstat %7lu %6lu %5lu %4lu "
4254 "%4lu %4lu %4lu %4lu %4lu",
4255 allocs, high, grown,
4256 reaped, errors, max_freeable, node_allocs,
4257 node_frees, overflows);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004258 }
4259 /* cpu stats */
4260 {
4261 unsigned long allochit = atomic_read(&cachep->allochit);
4262 unsigned long allocmiss = atomic_read(&cachep->allocmiss);
4263 unsigned long freehit = atomic_read(&cachep->freehit);
4264 unsigned long freemiss = atomic_read(&cachep->freemiss);
4265
4266 seq_printf(m, " : cpustat %6lu %6lu %6lu %6lu",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004267 allochit, allocmiss, freehit, freemiss);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004268 }
4269#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004270}
4271
Linus Torvalds1da177e2005-04-16 15:20:36 -07004272#define MAX_SLABINFO_WRITE 128
4273/**
4274 * slabinfo_write - Tuning for the slab allocator
4275 * @file: unused
4276 * @buffer: user buffer
4277 * @count: data length
4278 * @ppos: unused
4279 */
Glauber Costab7454ad2012-10-19 18:20:25 +04004280ssize_t slabinfo_write(struct file *file, const char __user *buffer,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004281 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004282{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004283 char kbuf[MAX_SLABINFO_WRITE + 1], *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004284 int limit, batchcount, shared, res;
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004285 struct kmem_cache *cachep;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004286
Linus Torvalds1da177e2005-04-16 15:20:36 -07004287 if (count > MAX_SLABINFO_WRITE)
4288 return -EINVAL;
4289 if (copy_from_user(&kbuf, buffer, count))
4290 return -EFAULT;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004291 kbuf[MAX_SLABINFO_WRITE] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07004292
4293 tmp = strchr(kbuf, ' ');
4294 if (!tmp)
4295 return -EINVAL;
4296 *tmp = '\0';
4297 tmp++;
4298 if (sscanf(tmp, " %d %d %d", &limit, &batchcount, &shared) != 3)
4299 return -EINVAL;
4300
4301 /* Find the cache in the chain of caches. */
Christoph Lameter18004c52012-07-06 15:25:12 -05004302 mutex_lock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004303 res = -EINVAL;
Christoph Lameter18004c52012-07-06 15:25:12 -05004304 list_for_each_entry(cachep, &slab_caches, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004305 if (!strcmp(cachep->name, kbuf)) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08004306 if (limit < 1 || batchcount < 1 ||
4307 batchcount > limit || shared < 0) {
Christoph Lametere498be72005-09-09 13:03:32 -07004308 res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004309 } else {
Christoph Lametere498be72005-09-09 13:03:32 -07004310 res = do_tune_cpucache(cachep, limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03004311 batchcount, shared,
4312 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004313 }
4314 break;
4315 }
4316 }
Christoph Lameter18004c52012-07-06 15:25:12 -05004317 mutex_unlock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004318 if (res >= 0)
4319 res = count;
4320 return res;
4321}
Al Viro871751e2006-03-25 03:06:39 -08004322
4323#ifdef CONFIG_DEBUG_SLAB_LEAK
4324
4325static void *leaks_start(struct seq_file *m, loff_t *pos)
4326{
Christoph Lameter18004c52012-07-06 15:25:12 -05004327 mutex_lock(&slab_mutex);
4328 return seq_list_start(&slab_caches, *pos);
Al Viro871751e2006-03-25 03:06:39 -08004329}
4330
4331static inline int add_caller(unsigned long *n, unsigned long v)
4332{
4333 unsigned long *p;
4334 int l;
4335 if (!v)
4336 return 1;
4337 l = n[1];
4338 p = n + 2;
4339 while (l) {
4340 int i = l/2;
4341 unsigned long *q = p + 2 * i;
4342 if (*q == v) {
4343 q[1]++;
4344 return 1;
4345 }
4346 if (*q > v) {
4347 l = i;
4348 } else {
4349 p = q + 2;
4350 l -= i + 1;
4351 }
4352 }
4353 if (++n[1] == n[0])
4354 return 0;
4355 memmove(p + 2, p, n[1] * 2 * sizeof(unsigned long) - ((void *)p - (void *)n));
4356 p[0] = v;
4357 p[1] = 1;
4358 return 1;
4359}
4360
4361static void handle_slab(unsigned long *n, struct kmem_cache *c, struct slab *s)
4362{
4363 void *p;
4364 int i;
4365 if (n[0] == n[1])
4366 return;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05004367 for (i = 0, p = s->s_mem; i < c->num; i++, p += c->size) {
Al Viro871751e2006-03-25 03:06:39 -08004368 if (slab_bufctl(s)[i] != BUFCTL_ACTIVE)
4369 continue;
4370 if (!add_caller(n, (unsigned long)*dbg_userword(c, p)))
4371 return;
4372 }
4373}
4374
4375static void show_symbol(struct seq_file *m, unsigned long address)
4376{
4377#ifdef CONFIG_KALLSYMS
Al Viro871751e2006-03-25 03:06:39 -08004378 unsigned long offset, size;
Tejun Heo9281ace2007-07-17 04:03:51 -07004379 char modname[MODULE_NAME_LEN], name[KSYM_NAME_LEN];
Al Viro871751e2006-03-25 03:06:39 -08004380
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004381 if (lookup_symbol_attrs(address, &size, &offset, modname, name) == 0) {
Al Viro871751e2006-03-25 03:06:39 -08004382 seq_printf(m, "%s+%#lx/%#lx", name, offset, size);
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004383 if (modname[0])
Al Viro871751e2006-03-25 03:06:39 -08004384 seq_printf(m, " [%s]", modname);
4385 return;
4386 }
4387#endif
4388 seq_printf(m, "%p", (void *)address);
4389}
4390
4391static int leaks_show(struct seq_file *m, void *p)
4392{
Thierry Reding0672aa72012-06-22 19:42:49 +02004393 struct kmem_cache *cachep = list_entry(p, struct kmem_cache, list);
Al Viro871751e2006-03-25 03:06:39 -08004394 struct slab *slabp;
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004395 struct kmem_cache_node *n;
Al Viro871751e2006-03-25 03:06:39 -08004396 const char *name;
4397 unsigned long *n = m->private;
4398 int node;
4399 int i;
4400
4401 if (!(cachep->flags & SLAB_STORE_USER))
4402 return 0;
4403 if (!(cachep->flags & SLAB_RED_ZONE))
4404 return 0;
4405
4406 /* OK, we can do it */
4407
4408 n[1] = 0;
4409
4410 for_each_online_node(node) {
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004411 n = cachep->node[node];
4412 if (!n)
Al Viro871751e2006-03-25 03:06:39 -08004413 continue;
4414
4415 check_irq_on();
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004416 spin_lock_irq(&n->list_lock);
Al Viro871751e2006-03-25 03:06:39 -08004417
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004418 list_for_each_entry(slabp, &n->slabs_full, list)
Al Viro871751e2006-03-25 03:06:39 -08004419 handle_slab(n, cachep, slabp);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004420 list_for_each_entry(slabp, &n->slabs_partial, list)
Al Viro871751e2006-03-25 03:06:39 -08004421 handle_slab(n, cachep, slabp);
Christoph Lameterce8eb6c2013-01-10 19:14:19 +00004422 spin_unlock_irq(&n->list_lock);
Al Viro871751e2006-03-25 03:06:39 -08004423 }
4424 name = cachep->name;
4425 if (n[0] == n[1]) {
4426 /* Increase the buffer size */
Christoph Lameter18004c52012-07-06 15:25:12 -05004427 mutex_unlock(&slab_mutex);
Al Viro871751e2006-03-25 03:06:39 -08004428 m->private = kzalloc(n[0] * 4 * sizeof(unsigned long), GFP_KERNEL);
4429 if (!m->private) {
4430 /* Too bad, we are really out */
4431 m->private = n;
Christoph Lameter18004c52012-07-06 15:25:12 -05004432 mutex_lock(&slab_mutex);
Al Viro871751e2006-03-25 03:06:39 -08004433 return -ENOMEM;
4434 }
4435 *(unsigned long *)m->private = n[0] * 2;
4436 kfree(n);
Christoph Lameter18004c52012-07-06 15:25:12 -05004437 mutex_lock(&slab_mutex);
Al Viro871751e2006-03-25 03:06:39 -08004438 /* Now make sure this entry will be retried */
4439 m->count = m->size;
4440 return 0;
4441 }
4442 for (i = 0; i < n[1]; i++) {
4443 seq_printf(m, "%s: %lu ", name, n[2*i+3]);
4444 show_symbol(m, n[2*i+2]);
4445 seq_putc(m, '\n');
4446 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004447
Al Viro871751e2006-03-25 03:06:39 -08004448 return 0;
4449}
4450
Glauber Costab7454ad2012-10-19 18:20:25 +04004451static void *s_next(struct seq_file *m, void *p, loff_t *pos)
4452{
4453 return seq_list_next(p, &slab_caches, pos);
4454}
4455
4456static void s_stop(struct seq_file *m, void *p)
4457{
4458 mutex_unlock(&slab_mutex);
4459}
4460
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004461static const struct seq_operations slabstats_op = {
Al Viro871751e2006-03-25 03:06:39 -08004462 .start = leaks_start,
4463 .next = s_next,
4464 .stop = s_stop,
4465 .show = leaks_show,
4466};
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004467
4468static int slabstats_open(struct inode *inode, struct file *file)
4469{
4470 unsigned long *n = kzalloc(PAGE_SIZE, GFP_KERNEL);
4471 int ret = -ENOMEM;
4472 if (n) {
4473 ret = seq_open(file, &slabstats_op);
4474 if (!ret) {
4475 struct seq_file *m = file->private_data;
4476 *n = PAGE_SIZE / (2 * sizeof(unsigned long));
4477 m->private = n;
4478 n = NULL;
4479 }
4480 kfree(n);
4481 }
4482 return ret;
4483}
4484
4485static const struct file_operations proc_slabstats_operations = {
4486 .open = slabstats_open,
4487 .read = seq_read,
4488 .llseek = seq_lseek,
4489 .release = seq_release_private,
4490};
Al Viro871751e2006-03-25 03:06:39 -08004491#endif
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004492
4493static int __init slab_proc_init(void)
4494{
4495#ifdef CONFIG_DEBUG_SLAB_LEAK
4496 proc_create("slab_allocators", 0, NULL, &proc_slabstats_operations);
4497#endif
4498 return 0;
4499}
4500module_init(slab_proc_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004501#endif
4502
Manfred Spraul00e145b2005-09-03 15:55:07 -07004503/**
4504 * ksize - get the actual amount of memory allocated for a given object
4505 * @objp: Pointer to the object
4506 *
4507 * kmalloc may internally round up allocations and return more memory
4508 * than requested. ksize() can be used to determine the actual amount of
4509 * memory allocated. The caller may use this additional memory, even though
4510 * a smaller amount of memory was initially specified with the kmalloc call.
4511 * The caller must guarantee that objp points to a valid object previously
4512 * allocated with either kmalloc() or kmem_cache_alloc(). The object
4513 * must not be freed during the duration of the call.
4514 */
Pekka Enbergfd76bab2007-05-06 14:48:40 -07004515size_t ksize(const void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004516{
Christoph Lameteref8b4522007-10-16 01:24:46 -07004517 BUG_ON(!objp);
4518 if (unlikely(objp == ZERO_SIZE_PTR))
Manfred Spraul00e145b2005-09-03 15:55:07 -07004519 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004520
Christoph Lameter8c138bc2012-06-13 10:24:58 -05004521 return virt_to_cache(objp)->object_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004522}
Kirill A. Shutemovb1aabec2009-02-10 15:21:44 +02004523EXPORT_SYMBOL(ksize);