blob: 10c821e492bfc9b8a1da992da605c3c7830a8c2a [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
Ingo Molnarfc0abb12006-01-18 17:42:33 -080071 * The global cache-chain is protected by the mutex 'cache_chain_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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120#include <asm/cacheflush.h>
121#include <asm/tlbflush.h>
122#include <asm/page.h>
123
Steven Rostedt4dee6b62012-01-09 17:15:42 -0500124#include <trace/events/kmem.h>
125
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126/*
Christoph Lameter50953fe2007-05-06 14:50:16 -0700127 * DEBUG - 1 for kmem_cache_create() to honour; SLAB_RED_ZONE & SLAB_POISON.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128 * 0 for faster, smaller code (especially in the critical paths).
129 *
130 * STATS - 1 to collect stats for /proc/slabinfo.
131 * 0 for faster, smaller code (especially in the critical paths).
132 *
133 * FORCED_DEBUG - 1 enables SLAB_RED_ZONE and SLAB_POISON (if possible)
134 */
135
136#ifdef CONFIG_DEBUG_SLAB
137#define DEBUG 1
138#define STATS 1
139#define FORCED_DEBUG 1
140#else
141#define DEBUG 0
142#define STATS 0
143#define FORCED_DEBUG 0
144#endif
145
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146/* Shouldn't this be in a header file somewhere? */
147#define BYTES_PER_WORD sizeof(void *)
David Woodhouse87a927c2007-07-04 21:26:44 -0400148#define REDZONE_ALIGN max(BYTES_PER_WORD, __alignof__(unsigned long long))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150#ifndef ARCH_KMALLOC_FLAGS
151#define ARCH_KMALLOC_FLAGS SLAB_HWCACHE_ALIGN
152#endif
153
154/* Legal flag mask for kmem_cache_create(). */
155#if DEBUG
Christoph Lameter50953fe2007-05-06 14:50:16 -0700156# define CREATE_MASK (SLAB_RED_ZONE | \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 SLAB_POISON | SLAB_HWCACHE_ALIGN | \
Christoph Lameterac2b8982006-03-22 00:08:15 -0800158 SLAB_CACHE_DMA | \
Christoph Lameter5af60832007-05-06 14:49:56 -0700159 SLAB_STORE_USER | \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 SLAB_RECLAIM_ACCOUNT | SLAB_PANIC | \
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700161 SLAB_DESTROY_BY_RCU | SLAB_MEM_SPREAD | \
Pekka Enbergc175eea2008-05-09 20:35:53 +0200162 SLAB_DEBUG_OBJECTS | SLAB_NOLEAKTRACE | SLAB_NOTRACK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163#else
Christoph Lameterac2b8982006-03-22 00:08:15 -0800164# define CREATE_MASK (SLAB_HWCACHE_ALIGN | \
Christoph Lameter5af60832007-05-06 14:49:56 -0700165 SLAB_CACHE_DMA | \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 SLAB_RECLAIM_ACCOUNT | SLAB_PANIC | \
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700167 SLAB_DESTROY_BY_RCU | SLAB_MEM_SPREAD | \
Pekka Enbergc175eea2008-05-09 20:35:53 +0200168 SLAB_DEBUG_OBJECTS | SLAB_NOLEAKTRACE | SLAB_NOTRACK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169#endif
170
171/*
172 * kmem_bufctl_t:
173 *
174 * Bufctl's are used for linking objs within a slab
175 * linked offsets.
176 *
177 * This implementation relies on "struct page" for locating the cache &
178 * slab an object belongs to.
179 * This allows the bufctl structure to be small (one int), but limits
180 * the number of objects a slab (not a cache) can contain when off-slab
181 * bufctls are used. The limit is the size of the largest general cache
182 * that does not use off-slab slabs.
183 * For 32bit archs with 4 kB pages, is this 56.
184 * This is not serious, as it is only for large objects, when it is unwise
185 * to have too many per slab.
186 * Note: This limit can be raised by introducing a general cache whose size
187 * is less than 512 (PAGE_SIZE<<3), but greater than 256.
188 */
189
Kyle Moffettfa5b08d2005-09-03 15:55:03 -0700190typedef unsigned int kmem_bufctl_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191#define BUFCTL_END (((kmem_bufctl_t)(~0U))-0)
192#define BUFCTL_FREE (((kmem_bufctl_t)(~0U))-1)
Al Viro871751e2006-03-25 03:06:39 -0800193#define BUFCTL_ACTIVE (((kmem_bufctl_t)(~0U))-2)
194#define SLAB_LIMIT (((kmem_bufctl_t)(~0U))-3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 * struct slab_rcu
198 *
199 * slab_destroy on a SLAB_DESTROY_BY_RCU cache uses this structure to
200 * arrange for kmem_freepages to be called via RCU. This is useful if
201 * we need to approach a kernel structure obliquely, from its address
202 * obtained without the usual locking. We can lock the structure to
203 * stabilize it and check it's still at the given address, only if we
204 * can be sure that the memory has not been meanwhile reused for some
205 * other kind of object (which our subsystem's lock might corrupt).
206 *
207 * rcu_read_lock before reading the address, then rcu_read_unlock after
208 * taking the spinlock within the structure expected at that address.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 */
210struct slab_rcu {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800211 struct rcu_head head;
Pekka Enberg343e0d72006-02-01 03:05:50 -0800212 struct kmem_cache *cachep;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800213 void *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214};
215
216/*
Lai Jiangshan5bfe53a2011-03-10 15:22:24 +0800217 * struct slab
218 *
219 * Manages the objs in a slab. Placed either at the beginning of mem allocated
220 * for a slab, or allocated from an general cache.
221 * Slabs are chained into three list: fully used, partial, fully free slabs.
222 */
223struct slab {
224 union {
225 struct {
226 struct list_head list;
227 unsigned long colouroff;
228 void *s_mem; /* including colour offset */
229 unsigned int inuse; /* num of objs active in slab */
230 kmem_bufctl_t free;
231 unsigned short nodeid;
232 };
233 struct slab_rcu __slab_cover_slab_rcu;
234 };
235};
236
237/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 * struct array_cache
239 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 * Purpose:
241 * - LIFO ordering, to hand out cache-warm objects from _alloc
242 * - reduce the number of linked list operations
243 * - reduce spinlock operations
244 *
245 * The limit is stored in the per-cpu structure to reduce the data cache
246 * footprint.
247 *
248 */
249struct array_cache {
250 unsigned int avail;
251 unsigned int limit;
252 unsigned int batchcount;
253 unsigned int touched;
Christoph Lametere498be72005-09-09 13:03:32 -0700254 spinlock_t lock;
Robert P. J. Daybda5b652007-10-16 23:30:05 -0700255 void *entry[]; /*
Andrew Mortona737b3e2006-03-22 00:08:11 -0800256 * Must have this definition in here for the proper
257 * alignment of array_cache. Also simplifies accessing
258 * the entries.
Andrew Mortona737b3e2006-03-22 00:08:11 -0800259 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260};
261
Andrew Mortona737b3e2006-03-22 00:08:11 -0800262/*
263 * bootstrap: The caches do not work without cpuarrays anymore, but the
264 * cpuarrays are allocated from the generic caches...
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265 */
266#define BOOT_CPUCACHE_ENTRIES 1
267struct arraycache_init {
268 struct array_cache cache;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800269 void *entries[BOOT_CPUCACHE_ENTRIES];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270};
271
272/*
Christoph Lametere498be72005-09-09 13:03:32 -0700273 * The slab lists for all objects.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 */
275struct kmem_list3 {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800276 struct list_head slabs_partial; /* partial list first, better asm code */
277 struct list_head slabs_full;
278 struct list_head slabs_free;
279 unsigned long free_objects;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800280 unsigned int free_limit;
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -0800281 unsigned int colour_next; /* Per-node cache coloring */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800282 spinlock_t list_lock;
283 struct array_cache *shared; /* shared per node */
284 struct array_cache **alien; /* on other nodes */
Christoph Lameter35386e32006-03-22 00:09:05 -0800285 unsigned long next_reap; /* updated without locking */
286 int free_touched; /* updated without locking */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287};
288
Christoph Lametere498be72005-09-09 13:03:32 -0700289/*
290 * Need this for bootstrapping a per node allocator.
291 */
Pekka Enberg556a1692008-01-25 08:20:51 +0200292#define NUM_INIT_LISTS (3 * MAX_NUMNODES)
H Hartley Sweeten68a1b192011-01-11 17:49:32 -0600293static struct kmem_list3 __initdata initkmem_list3[NUM_INIT_LISTS];
Christoph Lametere498be72005-09-09 13:03:32 -0700294#define CACHE_CACHE 0
Pekka Enberg556a1692008-01-25 08:20:51 +0200295#define SIZE_AC MAX_NUMNODES
296#define SIZE_L3 (2 * MAX_NUMNODES)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297
Christoph Lametered11d9e2006-06-30 01:55:45 -0700298static int drain_freelist(struct kmem_cache *cache,
299 struct kmem_list3 *l3, int tofree);
300static void free_block(struct kmem_cache *cachep, void **objpp, int len,
301 int node);
Pekka Enberg83b519e2009-06-10 19:40:04 +0300302static int enable_cpucache(struct kmem_cache *cachep, gfp_t gfp);
David Howells65f27f32006-11-22 14:55:48 +0000303static void cache_reap(struct work_struct *unused);
Christoph Lametered11d9e2006-06-30 01:55:45 -0700304
Christoph Lametere498be72005-09-09 13:03:32 -0700305/*
Andrew Mortona737b3e2006-03-22 00:08:11 -0800306 * This function must be completely optimized away if a constant is passed to
307 * it. Mostly the same as what is in linux/slab.h except it returns an index.
Christoph Lametere498be72005-09-09 13:03:32 -0700308 */
Ivan Kokshaysky7243cc02005-09-22 21:43:58 -0700309static __always_inline int index_of(const size_t size)
Christoph Lametere498be72005-09-09 13:03:32 -0700310{
Steven Rostedt5ec8a842006-02-01 03:05:44 -0800311 extern void __bad_size(void);
312
Christoph Lametere498be72005-09-09 13:03:32 -0700313 if (__builtin_constant_p(size)) {
314 int i = 0;
315
316#define CACHE(x) \
317 if (size <=x) \
318 return i; \
319 else \
320 i++;
Joe Perches1c61fc42008-03-05 13:58:17 -0800321#include <linux/kmalloc_sizes.h>
Christoph Lametere498be72005-09-09 13:03:32 -0700322#undef CACHE
Steven Rostedt5ec8a842006-02-01 03:05:44 -0800323 __bad_size();
Ivan Kokshaysky7243cc02005-09-22 21:43:58 -0700324 } else
Steven Rostedt5ec8a842006-02-01 03:05:44 -0800325 __bad_size();
Christoph Lametere498be72005-09-09 13:03:32 -0700326 return 0;
327}
328
Ingo Molnare0a42722006-06-23 02:03:46 -0700329static int slab_early_init = 1;
330
Christoph Lametere498be72005-09-09 13:03:32 -0700331#define INDEX_AC index_of(sizeof(struct arraycache_init))
332#define INDEX_L3 index_of(sizeof(struct kmem_list3))
333
Pekka Enberg5295a742006-02-01 03:05:48 -0800334static void kmem_list3_init(struct kmem_list3 *parent)
Christoph Lametere498be72005-09-09 13:03:32 -0700335{
336 INIT_LIST_HEAD(&parent->slabs_full);
337 INIT_LIST_HEAD(&parent->slabs_partial);
338 INIT_LIST_HEAD(&parent->slabs_free);
339 parent->shared = NULL;
340 parent->alien = NULL;
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -0800341 parent->colour_next = 0;
Christoph Lametere498be72005-09-09 13:03:32 -0700342 spin_lock_init(&parent->list_lock);
343 parent->free_objects = 0;
344 parent->free_touched = 0;
345}
346
Andrew Mortona737b3e2006-03-22 00:08:11 -0800347#define MAKE_LIST(cachep, listp, slab, nodeid) \
348 do { \
349 INIT_LIST_HEAD(listp); \
350 list_splice(&(cachep->nodelists[nodeid]->slab), listp); \
Christoph Lametere498be72005-09-09 13:03:32 -0700351 } while (0)
352
Andrew Mortona737b3e2006-03-22 00:08:11 -0800353#define MAKE_ALL_LISTS(cachep, ptr, nodeid) \
354 do { \
Christoph Lametere498be72005-09-09 13:03:32 -0700355 MAKE_LIST((cachep), (&(ptr)->slabs_full), slabs_full, nodeid); \
356 MAKE_LIST((cachep), (&(ptr)->slabs_partial), slabs_partial, nodeid); \
357 MAKE_LIST((cachep), (&(ptr)->slabs_free), slabs_free, nodeid); \
358 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360#define CFLGS_OFF_SLAB (0x80000000UL)
361#define OFF_SLAB(x) ((x)->flags & CFLGS_OFF_SLAB)
362
363#define BATCHREFILL_LIMIT 16
Andrew Mortona737b3e2006-03-22 00:08:11 -0800364/*
365 * Optimization question: fewer reaps means less probability for unnessary
366 * cpucache drain/refill cycles.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 *
Adrian Bunkdc6f3f22005-11-08 16:44:08 +0100368 * OTOH the cpuarrays can contain lots of objects,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 * which could lock up otherwise freeable slabs.
370 */
371#define REAPTIMEOUT_CPUC (2*HZ)
372#define REAPTIMEOUT_LIST3 (4*HZ)
373
374#if STATS
375#define STATS_INC_ACTIVE(x) ((x)->num_active++)
376#define STATS_DEC_ACTIVE(x) ((x)->num_active--)
377#define STATS_INC_ALLOCED(x) ((x)->num_allocations++)
378#define STATS_INC_GROWN(x) ((x)->grown++)
Christoph Lametered11d9e2006-06-30 01:55:45 -0700379#define STATS_ADD_REAPED(x,y) ((x)->reaped += (y))
Andrew Mortona737b3e2006-03-22 00:08:11 -0800380#define STATS_SET_HIGH(x) \
381 do { \
382 if ((x)->num_active > (x)->high_mark) \
383 (x)->high_mark = (x)->num_active; \
384 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385#define STATS_INC_ERR(x) ((x)->errors++)
386#define STATS_INC_NODEALLOCS(x) ((x)->node_allocs++)
Christoph Lametere498be72005-09-09 13:03:32 -0700387#define STATS_INC_NODEFREES(x) ((x)->node_frees++)
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -0700388#define STATS_INC_ACOVERFLOW(x) ((x)->node_overflow++)
Andrew Mortona737b3e2006-03-22 00:08:11 -0800389#define STATS_SET_FREEABLE(x, i) \
390 do { \
391 if ((x)->max_freeable < i) \
392 (x)->max_freeable = i; \
393 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394#define STATS_INC_ALLOCHIT(x) atomic_inc(&(x)->allochit)
395#define STATS_INC_ALLOCMISS(x) atomic_inc(&(x)->allocmiss)
396#define STATS_INC_FREEHIT(x) atomic_inc(&(x)->freehit)
397#define STATS_INC_FREEMISS(x) atomic_inc(&(x)->freemiss)
398#else
399#define STATS_INC_ACTIVE(x) do { } while (0)
400#define STATS_DEC_ACTIVE(x) do { } while (0)
401#define STATS_INC_ALLOCED(x) do { } while (0)
402#define STATS_INC_GROWN(x) do { } while (0)
Andi Kleen4e60c862010-08-09 17:19:03 -0700403#define STATS_ADD_REAPED(x,y) do { (void)(y); } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404#define STATS_SET_HIGH(x) do { } while (0)
405#define STATS_INC_ERR(x) do { } while (0)
406#define STATS_INC_NODEALLOCS(x) do { } while (0)
Christoph Lametere498be72005-09-09 13:03:32 -0700407#define STATS_INC_NODEFREES(x) do { } while (0)
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -0700408#define STATS_INC_ACOVERFLOW(x) do { } while (0)
Andrew Mortona737b3e2006-03-22 00:08:11 -0800409#define STATS_SET_FREEABLE(x, i) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410#define STATS_INC_ALLOCHIT(x) do { } while (0)
411#define STATS_INC_ALLOCMISS(x) do { } while (0)
412#define STATS_INC_FREEHIT(x) do { } while (0)
413#define STATS_INC_FREEMISS(x) do { } while (0)
414#endif
415
416#if DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417
Andrew Mortona737b3e2006-03-22 00:08:11 -0800418/*
419 * memory layout of objects:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 * 0 : objp
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800421 * 0 .. cachep->obj_offset - BYTES_PER_WORD - 1: padding. This ensures that
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 * the end of an object is aligned with the end of the real
423 * allocation. Catches writes behind the end of the allocation.
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800424 * cachep->obj_offset - BYTES_PER_WORD .. cachep->obj_offset - 1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 * redzone word.
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800426 * cachep->obj_offset: The real object.
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500427 * cachep->size - 2* BYTES_PER_WORD: redzone word [BYTES_PER_WORD long]
428 * cachep->size - 1* BYTES_PER_WORD: last caller address
Andrew Mortona737b3e2006-03-22 00:08:11 -0800429 * [BYTES_PER_WORD long]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800431static int obj_offset(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432{
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800433 return cachep->obj_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434}
435
David Woodhouseb46b8f12007-05-08 00:22:59 -0700436static unsigned long long *dbg_redzone1(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437{
438 BUG_ON(!(cachep->flags & SLAB_RED_ZONE));
David Woodhouseb46b8f12007-05-08 00:22:59 -0700439 return (unsigned long long*) (objp + obj_offset(cachep) -
440 sizeof(unsigned long long));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441}
442
David Woodhouseb46b8f12007-05-08 00:22:59 -0700443static unsigned long long *dbg_redzone2(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444{
445 BUG_ON(!(cachep->flags & SLAB_RED_ZONE));
446 if (cachep->flags & SLAB_STORE_USER)
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500447 return (unsigned long long *)(objp + cachep->size -
David Woodhouseb46b8f12007-05-08 00:22:59 -0700448 sizeof(unsigned long long) -
David Woodhouse87a927c2007-07-04 21:26:44 -0400449 REDZONE_ALIGN);
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500450 return (unsigned long long *) (objp + cachep->size -
David Woodhouseb46b8f12007-05-08 00:22:59 -0700451 sizeof(unsigned long long));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452}
453
Pekka Enberg343e0d72006-02-01 03:05:50 -0800454static void **dbg_userword(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455{
456 BUG_ON(!(cachep->flags & SLAB_STORE_USER));
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500457 return (void **)(objp + cachep->size - BYTES_PER_WORD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458}
459
460#else
461
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800462#define obj_offset(x) 0
David Woodhouseb46b8f12007-05-08 00:22:59 -0700463#define dbg_redzone1(cachep, objp) ({BUG(); (unsigned long long *)NULL;})
464#define dbg_redzone2(cachep, objp) ({BUG(); (unsigned long long *)NULL;})
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465#define dbg_userword(cachep, objp) ({BUG(); (void **)NULL;})
466
467#endif
468
Li Zefan0f24f122009-12-11 15:45:30 +0800469#ifdef CONFIG_TRACING
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +0300470size_t slab_buffer_size(struct kmem_cache *cachep)
471{
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500472 return cachep->size;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +0300473}
474EXPORT_SYMBOL(slab_buffer_size);
475#endif
476
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477/*
David Rientjes3df1ccc2011-10-18 22:09:28 -0700478 * Do not go above this order unless 0 objects fit into the slab or
479 * overridden on the command line.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480 */
David Rientjes543585c2011-10-18 22:09:24 -0700481#define SLAB_MAX_ORDER_HI 1
482#define SLAB_MAX_ORDER_LO 0
483static int slab_max_order = SLAB_MAX_ORDER_LO;
David Rientjes3df1ccc2011-10-18 22:09:28 -0700484static bool slab_max_order_set __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
Pekka Enberg065d41c2005-11-13 16:06:46 -0800486static inline struct kmem_cache *page_get_cache(struct page *page)
487{
Christoph Lameterd85f3382007-05-06 14:49:39 -0700488 page = compound_head(page);
Pekka Enbergddc2e812006-06-23 02:03:40 -0700489 BUG_ON(!PageSlab(page));
Christoph Lametere571b0a2012-06-13 10:24:55 -0500490 return page->slab_cache;
Pekka Enberg065d41c2005-11-13 16:06:46 -0800491}
492
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -0800493static inline struct kmem_cache *virt_to_cache(const void *obj)
494{
Christoph Lameterb49af682007-05-06 14:49:41 -0700495 struct page *page = virt_to_head_page(obj);
Christoph Lameter35026082012-06-13 10:24:56 -0500496 return page->slab_cache;
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -0800497}
498
499static inline struct slab *virt_to_slab(const void *obj)
500{
Christoph Lameterb49af682007-05-06 14:49:41 -0700501 struct page *page = virt_to_head_page(obj);
Christoph Lameter35026082012-06-13 10:24:56 -0500502
503 VM_BUG_ON(!PageSlab(page));
504 return page->slab_page;
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -0800505}
506
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800507static inline void *index_to_obj(struct kmem_cache *cache, struct slab *slab,
508 unsigned int idx)
509{
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500510 return slab->s_mem + cache->size * idx;
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800511}
512
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800513/*
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500514 * We want to avoid an expensive divide : (offset / cache->size)
515 * Using the fact that size is a constant for a particular cache,
516 * we can replace (offset / cache->size) by
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800517 * reciprocal_divide(offset, cache->reciprocal_buffer_size)
518 */
519static inline unsigned int obj_to_index(const struct kmem_cache *cache,
520 const struct slab *slab, void *obj)
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800521{
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800522 u32 offset = (obj - slab->s_mem);
523 return reciprocal_divide(offset, cache->reciprocal_buffer_size);
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800524}
525
Andrew Mortona737b3e2006-03-22 00:08:11 -0800526/*
527 * These are the default caches for kmalloc. Custom caches can have other sizes.
528 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529struct cache_sizes malloc_sizes[] = {
530#define CACHE(x) { .cs_size = (x) },
531#include <linux/kmalloc_sizes.h>
532 CACHE(ULONG_MAX)
533#undef CACHE
534};
535EXPORT_SYMBOL(malloc_sizes);
536
537/* Must match cache_sizes above. Out of line to keep cache footprint low. */
538struct cache_names {
539 char *name;
540 char *name_dma;
541};
542
543static struct cache_names __initdata cache_names[] = {
544#define CACHE(x) { .name = "size-" #x, .name_dma = "size-" #x "(DMA)" },
545#include <linux/kmalloc_sizes.h>
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800546 {NULL,}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547#undef CACHE
548};
549
550static struct arraycache_init initarray_cache __initdata =
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800551 { {0, BOOT_CPUCACHE_ENTRIES, 1, 0} };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552static struct arraycache_init initarray_generic =
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800553 { {0, BOOT_CPUCACHE_ENTRIES, 1, 0} };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
555/* internal cache of cache description objs */
Eric Dumazetb56efcf2011-07-20 19:04:23 +0200556static struct kmem_list3 *cache_cache_nodelists[MAX_NUMNODES];
Pekka Enberg343e0d72006-02-01 03:05:50 -0800557static struct kmem_cache cache_cache = {
Eric Dumazetb56efcf2011-07-20 19:04:23 +0200558 .nodelists = cache_cache_nodelists,
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800559 .batchcount = 1,
560 .limit = BOOT_CPUCACHE_ENTRIES,
561 .shared = 1,
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500562 .size = sizeof(struct kmem_cache),
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800563 .name = "kmem_cache",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564};
565
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -0700566#define BAD_ALIEN_MAGIC 0x01020304ul
567
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 * chicken and egg problem: delay the per-cpu array allocation
570 * until the general caches are up.
571 */
572static enum {
573 NONE,
Christoph Lametere498be72005-09-09 13:03:32 -0700574 PARTIAL_AC,
575 PARTIAL_L3,
Pekka Enberg8429db52009-06-12 15:58:59 +0300576 EARLY,
Peter Zijlstra52cef182011-11-28 21:12:40 +0100577 LATE,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 FULL
579} g_cpucache_up;
580
Mike Kravetz39d24e62006-05-15 09:44:13 -0700581/*
582 * used by boot code to determine if it can use slab based allocator
583 */
584int slab_is_available(void)
585{
Pekka Enberg8429db52009-06-12 15:58:59 +0300586 return g_cpucache_up >= EARLY;
Mike Kravetz39d24e62006-05-15 09:44:13 -0700587}
588
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200589#ifdef CONFIG_LOCKDEP
590
591/*
592 * Slab sometimes uses the kmalloc slabs to store the slab headers
593 * for other slabs "off slab".
594 * The locking for this is tricky in that it nests within the locks
595 * of all other slabs in a few places; to deal with this special
596 * locking we put on-slab caches into a separate lock-class.
597 *
598 * We set lock class for alien array caches which are up during init.
599 * The lock annotation will be lost if all cpus of a node goes down and
600 * then comes back up during hotplug
601 */
602static struct lock_class_key on_slab_l3_key;
603static struct lock_class_key on_slab_alc_key;
604
Peter Zijlstra83835b32011-07-22 15:26:05 +0200605static struct lock_class_key debugobj_l3_key;
606static struct lock_class_key debugobj_alc_key;
607
608static void slab_set_lock_classes(struct kmem_cache *cachep,
609 struct lock_class_key *l3_key, struct lock_class_key *alc_key,
610 int q)
611{
612 struct array_cache **alc;
613 struct kmem_list3 *l3;
614 int r;
615
616 l3 = cachep->nodelists[q];
617 if (!l3)
618 return;
619
620 lockdep_set_class(&l3->list_lock, l3_key);
621 alc = l3->alien;
622 /*
623 * FIXME: This check for BAD_ALIEN_MAGIC
624 * should go away when common slab code is taught to
625 * work even without alien caches.
626 * Currently, non NUMA code returns BAD_ALIEN_MAGIC
627 * for alloc_alien_cache,
628 */
629 if (!alc || (unsigned long)alc == BAD_ALIEN_MAGIC)
630 return;
631 for_each_node(r) {
632 if (alc[r])
633 lockdep_set_class(&alc[r]->lock, alc_key);
634 }
635}
636
637static void slab_set_debugobj_lock_classes_node(struct kmem_cache *cachep, int node)
638{
639 slab_set_lock_classes(cachep, &debugobj_l3_key, &debugobj_alc_key, node);
640}
641
642static void slab_set_debugobj_lock_classes(struct kmem_cache *cachep)
643{
644 int node;
645
646 for_each_online_node(node)
647 slab_set_debugobj_lock_classes_node(cachep, node);
648}
649
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200650static void init_node_lock_keys(int q)
651{
652 struct cache_sizes *s = malloc_sizes;
653
Peter Zijlstra52cef182011-11-28 21:12:40 +0100654 if (g_cpucache_up < LATE)
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200655 return;
656
657 for (s = malloc_sizes; s->cs_size != ULONG_MAX; s++) {
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200658 struct kmem_list3 *l3;
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200659
660 l3 = s->cs_cachep->nodelists[q];
661 if (!l3 || OFF_SLAB(s->cs_cachep))
Pekka Enberg00afa752009-12-27 14:33:14 +0200662 continue;
Peter Zijlstra83835b32011-07-22 15:26:05 +0200663
664 slab_set_lock_classes(s->cs_cachep, &on_slab_l3_key,
665 &on_slab_alc_key, q);
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200666 }
667}
668
669static inline void init_lock_keys(void)
670{
671 int node;
672
673 for_each_node(node)
674 init_node_lock_keys(node);
675}
676#else
677static void init_node_lock_keys(int q)
678{
679}
680
681static inline void init_lock_keys(void)
682{
683}
Peter Zijlstra83835b32011-07-22 15:26:05 +0200684
685static void slab_set_debugobj_lock_classes_node(struct kmem_cache *cachep, int node)
686{
687}
688
689static void slab_set_debugobj_lock_classes(struct kmem_cache *cachep)
690{
691}
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200692#endif
693
694/*
695 * Guard access to the cache-chain.
696 */
697static DEFINE_MUTEX(cache_chain_mutex);
698static struct list_head cache_chain;
699
Tejun Heo1871e522009-10-29 22:34:13 +0900700static DEFINE_PER_CPU(struct delayed_work, slab_reap_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
Pekka Enberg343e0d72006-02-01 03:05:50 -0800702static inline struct array_cache *cpu_cache_get(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703{
704 return cachep->array[smp_processor_id()];
705}
706
Andrew Mortona737b3e2006-03-22 00:08:11 -0800707static inline struct kmem_cache *__find_general_cachep(size_t size,
708 gfp_t gfpflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709{
710 struct cache_sizes *csizep = malloc_sizes;
711
712#if DEBUG
713 /* This happens if someone tries to call
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800714 * kmem_cache_create(), or __kmalloc(), before
715 * the generic caches are initialized.
716 */
Alok Katariac7e43c72005-09-14 12:17:53 -0700717 BUG_ON(malloc_sizes[INDEX_AC].cs_cachep == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718#endif
Christoph Lameter6cb8f912007-07-17 04:03:22 -0700719 if (!size)
720 return ZERO_SIZE_PTR;
721
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722 while (size > csizep->cs_size)
723 csizep++;
724
725 /*
Martin Hicks0abf40c2005-09-03 15:54:54 -0700726 * Really subtle: The last entry with cs->cs_size==ULONG_MAX
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 * has cs_{dma,}cachep==NULL. Thus no special case
728 * for large kmalloc calls required.
729 */
Christoph Lameter4b51d662007-02-10 01:43:10 -0800730#ifdef CONFIG_ZONE_DMA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 if (unlikely(gfpflags & GFP_DMA))
732 return csizep->cs_dmacachep;
Christoph Lameter4b51d662007-02-10 01:43:10 -0800733#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 return csizep->cs_cachep;
735}
736
Adrian Bunkb2213852006-09-25 23:31:02 -0700737static struct kmem_cache *kmem_find_general_cachep(size_t size, gfp_t gfpflags)
Manfred Spraul97e2bde2005-05-01 08:58:38 -0700738{
739 return __find_general_cachep(size, gfpflags);
740}
Manfred Spraul97e2bde2005-05-01 08:58:38 -0700741
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800742static size_t slab_mgmt_size(size_t nr_objs, size_t align)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743{
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800744 return ALIGN(sizeof(struct slab)+nr_objs*sizeof(kmem_bufctl_t), align);
745}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746
Andrew Mortona737b3e2006-03-22 00:08:11 -0800747/*
748 * Calculate the number of objects and left-over bytes for a given buffer size.
749 */
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800750static void cache_estimate(unsigned long gfporder, size_t buffer_size,
751 size_t align, int flags, size_t *left_over,
752 unsigned int *num)
753{
754 int nr_objs;
755 size_t mgmt_size;
756 size_t slab_size = PAGE_SIZE << gfporder;
757
758 /*
759 * The slab management structure can be either off the slab or
760 * on it. For the latter case, the memory allocated for a
761 * slab is used for:
762 *
763 * - The struct slab
764 * - One kmem_bufctl_t for each object
765 * - Padding to respect alignment of @align
766 * - @buffer_size bytes for each object
767 *
768 * If the slab management structure is off the slab, then the
769 * alignment will already be calculated into the size. Because
770 * the slabs are all pages aligned, the objects will be at the
771 * correct alignment when allocated.
772 */
773 if (flags & CFLGS_OFF_SLAB) {
774 mgmt_size = 0;
775 nr_objs = slab_size / buffer_size;
776
777 if (nr_objs > SLAB_LIMIT)
778 nr_objs = SLAB_LIMIT;
779 } else {
780 /*
781 * Ignore padding for the initial guess. The padding
782 * is at most @align-1 bytes, and @buffer_size is at
783 * least @align. In the worst case, this result will
784 * be one greater than the number of objects that fit
785 * into the memory allocation when taking the padding
786 * into account.
787 */
788 nr_objs = (slab_size - sizeof(struct slab)) /
789 (buffer_size + sizeof(kmem_bufctl_t));
790
791 /*
792 * This calculated number will be either the right
793 * amount, or one greater than what we want.
794 */
795 if (slab_mgmt_size(nr_objs, align) + nr_objs*buffer_size
796 > slab_size)
797 nr_objs--;
798
799 if (nr_objs > SLAB_LIMIT)
800 nr_objs = SLAB_LIMIT;
801
802 mgmt_size = slab_mgmt_size(nr_objs, align);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803 }
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800804 *num = nr_objs;
805 *left_over = slab_size - nr_objs*buffer_size - mgmt_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806}
807
Harvey Harrisond40cee22008-04-30 00:55:07 -0700808#define slab_error(cachep, msg) __slab_error(__func__, cachep, msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809
Andrew Mortona737b3e2006-03-22 00:08:11 -0800810static void __slab_error(const char *function, struct kmem_cache *cachep,
811 char *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812{
813 printk(KERN_ERR "slab error in %s(): cache `%s': %s\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800814 function, cachep->name, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 dump_stack();
816}
817
Paul Menage3395ee02006-12-06 20:32:16 -0800818/*
819 * By default on NUMA we use alien caches to stage the freeing of
820 * objects allocated from other nodes. This causes massive memory
821 * inefficiencies when using fake NUMA setup to split memory into a
822 * large number of small nodes, so it can be disabled on the command
823 * line
824 */
825
826static int use_alien_caches __read_mostly = 1;
827static int __init noaliencache_setup(char *s)
828{
829 use_alien_caches = 0;
830 return 1;
831}
832__setup("noaliencache", noaliencache_setup);
833
David Rientjes3df1ccc2011-10-18 22:09:28 -0700834static int __init slab_max_order_setup(char *str)
835{
836 get_option(&str, &slab_max_order);
837 slab_max_order = slab_max_order < 0 ? 0 :
838 min(slab_max_order, MAX_ORDER - 1);
839 slab_max_order_set = true;
840
841 return 1;
842}
843__setup("slab_max_order=", slab_max_order_setup);
844
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800845#ifdef CONFIG_NUMA
846/*
847 * Special reaping functions for NUMA systems called from cache_reap().
848 * These take care of doing round robin flushing of alien caches (containing
849 * objects freed on different nodes from which they were allocated) and the
850 * flushing of remote pcps by calling drain_node_pages.
851 */
Tejun Heo1871e522009-10-29 22:34:13 +0900852static DEFINE_PER_CPU(unsigned long, slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800853
854static void init_reap_node(int cpu)
855{
856 int node;
857
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -0700858 node = next_node(cpu_to_mem(cpu), node_online_map);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800859 if (node == MAX_NUMNODES)
Paul Jackson442295c2006-03-22 00:09:11 -0800860 node = first_node(node_online_map);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800861
Tejun Heo1871e522009-10-29 22:34:13 +0900862 per_cpu(slab_reap_node, cpu) = node;
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800863}
864
865static void next_reap_node(void)
866{
Christoph Lameter909ea962010-12-08 16:22:55 +0100867 int node = __this_cpu_read(slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800868
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800869 node = next_node(node, node_online_map);
870 if (unlikely(node >= MAX_NUMNODES))
871 node = first_node(node_online_map);
Christoph Lameter909ea962010-12-08 16:22:55 +0100872 __this_cpu_write(slab_reap_node, node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800873}
874
875#else
876#define init_reap_node(cpu) do { } while (0)
877#define next_reap_node(void) do { } while (0)
878#endif
879
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880/*
881 * Initiate the reap timer running on the target CPU. We run at around 1 to 2Hz
882 * via the workqueue/eventd.
883 * Add the CPU number into the expiration time to minimize the possibility of
884 * the CPUs getting into lockstep and contending for the global cache chain
885 * lock.
886 */
Adrian Bunk897e6792007-07-15 23:38:20 -0700887static void __cpuinit start_cpu_timer(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888{
Tejun Heo1871e522009-10-29 22:34:13 +0900889 struct delayed_work *reap_work = &per_cpu(slab_reap_work, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
891 /*
892 * When this gets called from do_initcalls via cpucache_init(),
893 * init_workqueues() has already run, so keventd will be setup
894 * at that time.
895 */
David Howells52bad642006-11-22 14:54:01 +0000896 if (keventd_up() && reap_work->work.func == NULL) {
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800897 init_reap_node(cpu);
Arjan van de Ven78b43532010-07-19 10:59:42 -0700898 INIT_DELAYED_WORK_DEFERRABLE(reap_work, cache_reap);
Arjan van de Ven2b284212006-12-10 02:21:28 -0800899 schedule_delayed_work_on(cpu, reap_work,
900 __round_jiffies_relative(HZ, cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 }
902}
903
Christoph Lametere498be72005-09-09 13:03:32 -0700904static struct array_cache *alloc_arraycache(int node, int entries,
Pekka Enberg83b519e2009-06-10 19:40:04 +0300905 int batchcount, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906{
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800907 int memsize = sizeof(void *) * entries + sizeof(struct array_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 struct array_cache *nc = NULL;
909
Pekka Enberg83b519e2009-06-10 19:40:04 +0300910 nc = kmalloc_node(memsize, gfp, node);
Catalin Marinasd5cff632009-06-11 13:22:40 +0100911 /*
912 * The array_cache structures contain pointers to free object.
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300913 * However, when such objects are allocated or transferred to another
Catalin Marinasd5cff632009-06-11 13:22:40 +0100914 * cache the pointers are not cleared and they could be counted as
915 * valid references during a kmemleak scan. Therefore, kmemleak must
916 * not scan such objects.
917 */
918 kmemleak_no_scan(nc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 if (nc) {
920 nc->avail = 0;
921 nc->limit = entries;
922 nc->batchcount = batchcount;
923 nc->touched = 0;
Christoph Lametere498be72005-09-09 13:03:32 -0700924 spin_lock_init(&nc->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 }
926 return nc;
927}
928
Christoph Lameter3ded1752006-03-25 03:06:44 -0800929/*
930 * Transfer objects in one arraycache to another.
931 * Locking must be handled by the caller.
932 *
933 * Return the number of entries transferred.
934 */
935static int transfer_objects(struct array_cache *to,
936 struct array_cache *from, unsigned int max)
937{
938 /* Figure out how many entries to transfer */
Hagen Paul Pfeifer732eacc2010-10-26 14:22:23 -0700939 int nr = min3(from->avail, max, to->limit - to->avail);
Christoph Lameter3ded1752006-03-25 03:06:44 -0800940
941 if (!nr)
942 return 0;
943
944 memcpy(to->entry + to->avail, from->entry + from->avail -nr,
945 sizeof(void *) *nr);
946
947 from->avail -= nr;
948 to->avail += nr;
Christoph Lameter3ded1752006-03-25 03:06:44 -0800949 return nr;
950}
951
Christoph Lameter765c4502006-09-27 01:50:08 -0700952#ifndef CONFIG_NUMA
953
954#define drain_alien_cache(cachep, alien) do { } while (0)
955#define reap_alien(cachep, l3) do { } while (0)
956
Pekka Enberg83b519e2009-06-10 19:40:04 +0300957static inline struct array_cache **alloc_alien_cache(int node, int limit, gfp_t gfp)
Christoph Lameter765c4502006-09-27 01:50:08 -0700958{
959 return (struct array_cache **)BAD_ALIEN_MAGIC;
960}
961
962static inline void free_alien_cache(struct array_cache **ac_ptr)
963{
964}
965
966static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
967{
968 return 0;
969}
970
971static inline void *alternate_node_alloc(struct kmem_cache *cachep,
972 gfp_t flags)
973{
974 return NULL;
975}
976
Christoph Hellwig8b98c162006-12-06 20:32:30 -0800977static inline void *____cache_alloc_node(struct kmem_cache *cachep,
Christoph Lameter765c4502006-09-27 01:50:08 -0700978 gfp_t flags, int nodeid)
979{
980 return NULL;
981}
982
983#else /* CONFIG_NUMA */
984
Christoph Hellwig8b98c162006-12-06 20:32:30 -0800985static void *____cache_alloc_node(struct kmem_cache *, gfp_t, int);
Paul Jacksonc61afb12006-03-24 03:16:08 -0800986static void *alternate_node_alloc(struct kmem_cache *, gfp_t);
Christoph Lameterdc85da12006-01-18 17:42:36 -0800987
Pekka Enberg83b519e2009-06-10 19:40:04 +0300988static struct array_cache **alloc_alien_cache(int node, int limit, gfp_t gfp)
Christoph Lametere498be72005-09-09 13:03:32 -0700989{
990 struct array_cache **ac_ptr;
Christoph Lameter8ef82862007-02-20 13:57:52 -0800991 int memsize = sizeof(void *) * nr_node_ids;
Christoph Lametere498be72005-09-09 13:03:32 -0700992 int i;
993
994 if (limit > 1)
995 limit = 12;
Haicheng Lif3186a92010-01-06 15:25:23 +0800996 ac_ptr = kzalloc_node(memsize, gfp, node);
Christoph Lametere498be72005-09-09 13:03:32 -0700997 if (ac_ptr) {
998 for_each_node(i) {
Haicheng Lif3186a92010-01-06 15:25:23 +0800999 if (i == node || !node_online(i))
Christoph Lametere498be72005-09-09 13:03:32 -07001000 continue;
Pekka Enberg83b519e2009-06-10 19:40:04 +03001001 ac_ptr[i] = alloc_arraycache(node, limit, 0xbaadf00d, gfp);
Christoph Lametere498be72005-09-09 13:03:32 -07001002 if (!ac_ptr[i]) {
Akinobu Mitacc550de2007-11-14 16:58:35 -08001003 for (i--; i >= 0; i--)
Christoph Lametere498be72005-09-09 13:03:32 -07001004 kfree(ac_ptr[i]);
1005 kfree(ac_ptr);
1006 return NULL;
1007 }
1008 }
1009 }
1010 return ac_ptr;
1011}
1012
Pekka Enberg5295a742006-02-01 03:05:48 -08001013static void free_alien_cache(struct array_cache **ac_ptr)
Christoph Lametere498be72005-09-09 13:03:32 -07001014{
1015 int i;
1016
1017 if (!ac_ptr)
1018 return;
Christoph Lametere498be72005-09-09 13:03:32 -07001019 for_each_node(i)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001020 kfree(ac_ptr[i]);
Christoph Lametere498be72005-09-09 13:03:32 -07001021 kfree(ac_ptr);
1022}
1023
Pekka Enberg343e0d72006-02-01 03:05:50 -08001024static void __drain_alien_cache(struct kmem_cache *cachep,
Pekka Enberg5295a742006-02-01 03:05:48 -08001025 struct array_cache *ac, int node)
Christoph Lametere498be72005-09-09 13:03:32 -07001026{
1027 struct kmem_list3 *rl3 = cachep->nodelists[node];
1028
1029 if (ac->avail) {
1030 spin_lock(&rl3->list_lock);
Christoph Lametere00946f2006-03-25 03:06:45 -08001031 /*
1032 * Stuff objects into the remote nodes shared array first.
1033 * That way we could avoid the overhead of putting the objects
1034 * into the free lists and getting them back later.
1035 */
shin, jacob693f7d32006-04-28 10:54:37 -05001036 if (rl3->shared)
1037 transfer_objects(rl3->shared, ac, ac->limit);
Christoph Lametere00946f2006-03-25 03:06:45 -08001038
Christoph Lameterff694162005-09-22 21:44:02 -07001039 free_block(cachep, ac->entry, ac->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -07001040 ac->avail = 0;
1041 spin_unlock(&rl3->list_lock);
1042 }
1043}
1044
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001045/*
1046 * Called from cache_reap() to regularly drain alien caches round robin.
1047 */
1048static void reap_alien(struct kmem_cache *cachep, struct kmem_list3 *l3)
1049{
Christoph Lameter909ea962010-12-08 16:22:55 +01001050 int node = __this_cpu_read(slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001051
1052 if (l3->alien) {
1053 struct array_cache *ac = l3->alien[node];
Christoph Lametere00946f2006-03-25 03:06:45 -08001054
1055 if (ac && ac->avail && spin_trylock_irq(&ac->lock)) {
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001056 __drain_alien_cache(cachep, ac, node);
1057 spin_unlock_irq(&ac->lock);
1058 }
1059 }
1060}
1061
Andrew Mortona737b3e2006-03-22 00:08:11 -08001062static void drain_alien_cache(struct kmem_cache *cachep,
1063 struct array_cache **alien)
Christoph Lametere498be72005-09-09 13:03:32 -07001064{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001065 int i = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07001066 struct array_cache *ac;
1067 unsigned long flags;
1068
1069 for_each_online_node(i) {
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001070 ac = alien[i];
Christoph Lametere498be72005-09-09 13:03:32 -07001071 if (ac) {
1072 spin_lock_irqsave(&ac->lock, flags);
1073 __drain_alien_cache(cachep, ac, i);
1074 spin_unlock_irqrestore(&ac->lock, flags);
1075 }
1076 }
1077}
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001078
Ingo Molnar873623d2006-07-13 14:44:38 +02001079static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001080{
1081 struct slab *slabp = virt_to_slab(objp);
1082 int nodeid = slabp->nodeid;
1083 struct kmem_list3 *l3;
1084 struct array_cache *alien = NULL;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001085 int node;
1086
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07001087 node = numa_mem_id();
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001088
1089 /*
1090 * Make sure we are not freeing a object from another node to the array
1091 * cache on this cpu.
1092 */
Siddha, Suresh B62918a02007-05-02 19:27:18 +02001093 if (likely(slabp->nodeid == node))
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001094 return 0;
1095
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001096 l3 = cachep->nodelists[node];
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001097 STATS_INC_NODEFREES(cachep);
1098 if (l3->alien && l3->alien[nodeid]) {
1099 alien = l3->alien[nodeid];
Ingo Molnar873623d2006-07-13 14:44:38 +02001100 spin_lock(&alien->lock);
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001101 if (unlikely(alien->avail == alien->limit)) {
1102 STATS_INC_ACOVERFLOW(cachep);
1103 __drain_alien_cache(cachep, alien, nodeid);
1104 }
1105 alien->entry[alien->avail++] = objp;
1106 spin_unlock(&alien->lock);
1107 } else {
1108 spin_lock(&(cachep->nodelists[nodeid])->list_lock);
1109 free_block(cachep, &objp, 1, nodeid);
1110 spin_unlock(&(cachep->nodelists[nodeid])->list_lock);
1111 }
1112 return 1;
1113}
Christoph Lametere498be72005-09-09 13:03:32 -07001114#endif
1115
David Rientjes8f9f8d92010-03-27 19:40:47 -07001116/*
1117 * Allocates and initializes nodelists for a node on each slab cache, used for
1118 * either memory or cpu hotplug. If memory is being hot-added, the kmem_list3
1119 * will be allocated off-node since memory is not yet online for the new node.
1120 * When hotplugging memory or a cpu, existing nodelists are not replaced if
1121 * already in use.
1122 *
1123 * Must hold cache_chain_mutex.
1124 */
1125static int init_cache_nodelists_node(int node)
1126{
1127 struct kmem_cache *cachep;
1128 struct kmem_list3 *l3;
1129 const int memsize = sizeof(struct kmem_list3);
1130
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05001131 list_for_each_entry(cachep, &cache_chain, list) {
David Rientjes8f9f8d92010-03-27 19:40:47 -07001132 /*
1133 * Set up the size64 kmemlist for cpu before we can
1134 * begin anything. Make sure some other cpu on this
1135 * node has not already allocated this
1136 */
1137 if (!cachep->nodelists[node]) {
1138 l3 = kmalloc_node(memsize, GFP_KERNEL, node);
1139 if (!l3)
1140 return -ENOMEM;
1141 kmem_list3_init(l3);
1142 l3->next_reap = jiffies + REAPTIMEOUT_LIST3 +
1143 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
1144
1145 /*
1146 * The l3s don't come and go as CPUs come and
1147 * go. cache_chain_mutex is sufficient
1148 * protection here.
1149 */
1150 cachep->nodelists[node] = l3;
1151 }
1152
1153 spin_lock_irq(&cachep->nodelists[node]->list_lock);
1154 cachep->nodelists[node]->free_limit =
1155 (1 + nr_cpus_node(node)) *
1156 cachep->batchcount + cachep->num;
1157 spin_unlock_irq(&cachep->nodelists[node]->list_lock);
1158 }
1159 return 0;
1160}
1161
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001162static void __cpuinit cpuup_canceled(long cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001163{
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001164 struct kmem_cache *cachep;
1165 struct kmem_list3 *l3 = NULL;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07001166 int node = cpu_to_mem(cpu);
Rusty Russella70f7302009-03-13 14:49:46 +10301167 const struct cpumask *mask = cpumask_of_node(node);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001168
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05001169 list_for_each_entry(cachep, &cache_chain, list) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001170 struct array_cache *nc;
1171 struct array_cache *shared;
1172 struct array_cache **alien;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001173
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001174 /* cpu is dead; no one can alloc from it. */
1175 nc = cachep->array[cpu];
1176 cachep->array[cpu] = NULL;
1177 l3 = cachep->nodelists[node];
1178
1179 if (!l3)
1180 goto free_array_cache;
1181
1182 spin_lock_irq(&l3->list_lock);
1183
1184 /* Free limit for this kmem_list3 */
1185 l3->free_limit -= cachep->batchcount;
1186 if (nc)
1187 free_block(cachep, nc->entry, nc->avail, node);
1188
Rusty Russell58463c12009-12-17 11:43:12 -06001189 if (!cpumask_empty(mask)) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001190 spin_unlock_irq(&l3->list_lock);
1191 goto free_array_cache;
1192 }
1193
1194 shared = l3->shared;
1195 if (shared) {
1196 free_block(cachep, shared->entry,
1197 shared->avail, node);
1198 l3->shared = NULL;
1199 }
1200
1201 alien = l3->alien;
1202 l3->alien = NULL;
1203
1204 spin_unlock_irq(&l3->list_lock);
1205
1206 kfree(shared);
1207 if (alien) {
1208 drain_alien_cache(cachep, alien);
1209 free_alien_cache(alien);
1210 }
1211free_array_cache:
1212 kfree(nc);
1213 }
1214 /*
1215 * In the previous loop, all the objects were freed to
1216 * the respective cache's slabs, now we can go ahead and
1217 * shrink each nodelist to its limit.
1218 */
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05001219 list_for_each_entry(cachep, &cache_chain, list) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001220 l3 = cachep->nodelists[node];
1221 if (!l3)
1222 continue;
1223 drain_freelist(cachep, l3, l3->free_objects);
1224 }
1225}
1226
1227static int __cpuinit cpuup_prepare(long cpu)
1228{
Pekka Enberg343e0d72006-02-01 03:05:50 -08001229 struct kmem_cache *cachep;
Christoph Lametere498be72005-09-09 13:03:32 -07001230 struct kmem_list3 *l3 = NULL;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07001231 int node = cpu_to_mem(cpu);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001232 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001233
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001234 /*
1235 * We need to do this right in the beginning since
1236 * alloc_arraycache's are going to use this list.
1237 * kmalloc_node allows us to add the slab to the right
1238 * kmem_list3 and not this cpu's kmem_list3
1239 */
David Rientjes8f9f8d92010-03-27 19:40:47 -07001240 err = init_cache_nodelists_node(node);
1241 if (err < 0)
1242 goto bad;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001243
1244 /*
1245 * Now we can go ahead with allocating the shared arrays and
1246 * array caches
1247 */
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05001248 list_for_each_entry(cachep, &cache_chain, list) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001249 struct array_cache *nc;
1250 struct array_cache *shared = NULL;
1251 struct array_cache **alien = NULL;
1252
1253 nc = alloc_arraycache(node, cachep->limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03001254 cachep->batchcount, GFP_KERNEL);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001255 if (!nc)
1256 goto bad;
1257 if (cachep->shared) {
1258 shared = alloc_arraycache(node,
1259 cachep->shared * cachep->batchcount,
Pekka Enberg83b519e2009-06-10 19:40:04 +03001260 0xbaadf00d, GFP_KERNEL);
Akinobu Mita12d00f62007-10-18 03:05:11 -07001261 if (!shared) {
1262 kfree(nc);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001263 goto bad;
Akinobu Mita12d00f62007-10-18 03:05:11 -07001264 }
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001265 }
1266 if (use_alien_caches) {
Pekka Enberg83b519e2009-06-10 19:40:04 +03001267 alien = alloc_alien_cache(node, cachep->limit, GFP_KERNEL);
Akinobu Mita12d00f62007-10-18 03:05:11 -07001268 if (!alien) {
1269 kfree(shared);
1270 kfree(nc);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001271 goto bad;
Akinobu Mita12d00f62007-10-18 03:05:11 -07001272 }
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001273 }
1274 cachep->array[cpu] = nc;
1275 l3 = cachep->nodelists[node];
1276 BUG_ON(!l3);
1277
1278 spin_lock_irq(&l3->list_lock);
1279 if (!l3->shared) {
1280 /*
1281 * We are serialised from CPU_DEAD or
1282 * CPU_UP_CANCELLED by the cpucontrol lock
1283 */
1284 l3->shared = shared;
1285 shared = NULL;
1286 }
1287#ifdef CONFIG_NUMA
1288 if (!l3->alien) {
1289 l3->alien = alien;
1290 alien = NULL;
1291 }
1292#endif
1293 spin_unlock_irq(&l3->list_lock);
1294 kfree(shared);
1295 free_alien_cache(alien);
Peter Zijlstra83835b32011-07-22 15:26:05 +02001296 if (cachep->flags & SLAB_DEBUG_OBJECTS)
1297 slab_set_debugobj_lock_classes_node(cachep, node);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001298 }
Pekka Enbergce79ddc2009-11-23 22:01:15 +02001299 init_node_lock_keys(node);
1300
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001301 return 0;
1302bad:
Akinobu Mita12d00f62007-10-18 03:05:11 -07001303 cpuup_canceled(cpu);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001304 return -ENOMEM;
1305}
1306
1307static int __cpuinit cpuup_callback(struct notifier_block *nfb,
1308 unsigned long action, void *hcpu)
1309{
1310 long cpu = (long)hcpu;
1311 int err = 0;
1312
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 switch (action) {
Heiko Carstens38c3bd92007-05-09 02:34:05 -07001314 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001315 case CPU_UP_PREPARE_FROZEN:
Gautham R Shenoy95402b32008-01-25 21:08:02 +01001316 mutex_lock(&cache_chain_mutex);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001317 err = cpuup_prepare(cpu);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01001318 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 break;
1320 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001321 case CPU_ONLINE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 start_cpu_timer(cpu);
1323 break;
1324#ifdef CONFIG_HOTPLUG_CPU
Christoph Lameter5830c592007-05-09 02:34:22 -07001325 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001326 case CPU_DOWN_PREPARE_FROZEN:
Christoph Lameter5830c592007-05-09 02:34:22 -07001327 /*
1328 * Shutdown cache reaper. Note that the cache_chain_mutex is
1329 * held so that if cache_reap() is invoked it cannot do
1330 * anything expensive but will only modify reap_work
1331 * and reschedule the timer.
1332 */
Tejun Heoafe2c512010-12-14 16:21:17 +01001333 cancel_delayed_work_sync(&per_cpu(slab_reap_work, cpu));
Christoph Lameter5830c592007-05-09 02:34:22 -07001334 /* Now the cache_reaper is guaranteed to be not running. */
Tejun Heo1871e522009-10-29 22:34:13 +09001335 per_cpu(slab_reap_work, cpu).work.func = NULL;
Christoph Lameter5830c592007-05-09 02:34:22 -07001336 break;
1337 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001338 case CPU_DOWN_FAILED_FROZEN:
Christoph Lameter5830c592007-05-09 02:34:22 -07001339 start_cpu_timer(cpu);
1340 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001342 case CPU_DEAD_FROZEN:
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001343 /*
1344 * Even if all the cpus of a node are down, we don't free the
1345 * kmem_list3 of any cache. This to avoid a race between
1346 * cpu_down, and a kmalloc allocation from another cpu for
1347 * memory from the node of the cpu going down. The list3
1348 * structure is usually allocated from kmem_cache_create() and
1349 * gets destroyed at kmem_cache_destroy().
1350 */
Simon Arlott183ff222007-10-20 01:27:18 +02001351 /* fall through */
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08001352#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001354 case CPU_UP_CANCELED_FROZEN:
Gautham R Shenoy95402b32008-01-25 21:08:02 +01001355 mutex_lock(&cache_chain_mutex);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001356 cpuup_canceled(cpu);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001357 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001358 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 }
Akinobu Mitaeac40682010-05-26 14:43:32 -07001360 return notifier_from_errno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361}
1362
Chandra Seetharaman74b85f32006-06-27 02:54:09 -07001363static struct notifier_block __cpuinitdata cpucache_notifier = {
1364 &cpuup_callback, NULL, 0
1365};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001366
David Rientjes8f9f8d92010-03-27 19:40:47 -07001367#if defined(CONFIG_NUMA) && defined(CONFIG_MEMORY_HOTPLUG)
1368/*
1369 * Drains freelist for a node on each slab cache, used for memory hot-remove.
1370 * Returns -EBUSY if all objects cannot be drained so that the node is not
1371 * removed.
1372 *
1373 * Must hold cache_chain_mutex.
1374 */
1375static int __meminit drain_cache_nodelists_node(int node)
1376{
1377 struct kmem_cache *cachep;
1378 int ret = 0;
1379
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05001380 list_for_each_entry(cachep, &cache_chain, list) {
David Rientjes8f9f8d92010-03-27 19:40:47 -07001381 struct kmem_list3 *l3;
1382
1383 l3 = cachep->nodelists[node];
1384 if (!l3)
1385 continue;
1386
1387 drain_freelist(cachep, l3, l3->free_objects);
1388
1389 if (!list_empty(&l3->slabs_full) ||
1390 !list_empty(&l3->slabs_partial)) {
1391 ret = -EBUSY;
1392 break;
1393 }
1394 }
1395 return ret;
1396}
1397
1398static int __meminit slab_memory_callback(struct notifier_block *self,
1399 unsigned long action, void *arg)
1400{
1401 struct memory_notify *mnb = arg;
1402 int ret = 0;
1403 int nid;
1404
1405 nid = mnb->status_change_nid;
1406 if (nid < 0)
1407 goto out;
1408
1409 switch (action) {
1410 case MEM_GOING_ONLINE:
1411 mutex_lock(&cache_chain_mutex);
1412 ret = init_cache_nodelists_node(nid);
1413 mutex_unlock(&cache_chain_mutex);
1414 break;
1415 case MEM_GOING_OFFLINE:
1416 mutex_lock(&cache_chain_mutex);
1417 ret = drain_cache_nodelists_node(nid);
1418 mutex_unlock(&cache_chain_mutex);
1419 break;
1420 case MEM_ONLINE:
1421 case MEM_OFFLINE:
1422 case MEM_CANCEL_ONLINE:
1423 case MEM_CANCEL_OFFLINE:
1424 break;
1425 }
1426out:
Prarit Bhargava5fda1bd2011-03-22 16:30:49 -07001427 return notifier_from_errno(ret);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001428}
1429#endif /* CONFIG_NUMA && CONFIG_MEMORY_HOTPLUG */
1430
Christoph Lametere498be72005-09-09 13:03:32 -07001431/*
1432 * swap the static kmem_list3 with kmalloced memory
1433 */
David Rientjes8f9f8d92010-03-27 19:40:47 -07001434static void __init init_list(struct kmem_cache *cachep, struct kmem_list3 *list,
1435 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07001436{
1437 struct kmem_list3 *ptr;
1438
Pekka Enberg83b519e2009-06-10 19:40:04 +03001439 ptr = kmalloc_node(sizeof(struct kmem_list3), GFP_NOWAIT, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07001440 BUG_ON(!ptr);
1441
Christoph Lametere498be72005-09-09 13:03:32 -07001442 memcpy(ptr, list, sizeof(struct kmem_list3));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001443 /*
1444 * Do not assume that spinlocks can be initialized via memcpy:
1445 */
1446 spin_lock_init(&ptr->list_lock);
1447
Christoph Lametere498be72005-09-09 13:03:32 -07001448 MAKE_ALL_LISTS(cachep, ptr, nodeid);
1449 cachep->nodelists[nodeid] = ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001450}
1451
Andrew Mortona737b3e2006-03-22 00:08:11 -08001452/*
Pekka Enberg556a1692008-01-25 08:20:51 +02001453 * For setting up all the kmem_list3s for cache whose buffer_size is same as
1454 * size of kmem_list3.
1455 */
1456static void __init set_up_list3s(struct kmem_cache *cachep, int index)
1457{
1458 int node;
1459
1460 for_each_online_node(node) {
1461 cachep->nodelists[node] = &initkmem_list3[index + node];
1462 cachep->nodelists[node]->next_reap = jiffies +
1463 REAPTIMEOUT_LIST3 +
1464 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
1465 }
1466}
1467
1468/*
Andrew Mortona737b3e2006-03-22 00:08:11 -08001469 * Initialisation. Called after the page allocator have been initialised and
1470 * before smp_init().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 */
1472void __init kmem_cache_init(void)
1473{
1474 size_t left_over;
1475 struct cache_sizes *sizes;
1476 struct cache_names *names;
Christoph Lametere498be72005-09-09 13:03:32 -07001477 int i;
Jack Steiner07ed76b2006-03-07 21:55:46 -08001478 int order;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001479 int node;
Christoph Lametere498be72005-09-09 13:03:32 -07001480
Mel Gormanb6e68bc2009-06-16 15:32:16 -07001481 if (num_possible_nodes() == 1)
Siddha, Suresh B62918a02007-05-02 19:27:18 +02001482 use_alien_caches = 0;
1483
Christoph Lametere498be72005-09-09 13:03:32 -07001484 for (i = 0; i < NUM_INIT_LISTS; i++) {
1485 kmem_list3_init(&initkmem_list3[i]);
1486 if (i < MAX_NUMNODES)
1487 cache_cache.nodelists[i] = NULL;
1488 }
Pekka Enberg556a1692008-01-25 08:20:51 +02001489 set_up_list3s(&cache_cache, CACHE_CACHE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490
1491 /*
1492 * Fragmentation resistance on low memory - only use bigger
David Rientjes3df1ccc2011-10-18 22:09:28 -07001493 * page orders on machines with more than 32MB of memory if
1494 * not overridden on the command line.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001495 */
David Rientjes3df1ccc2011-10-18 22:09:28 -07001496 if (!slab_max_order_set && totalram_pages > (32 << 20) >> PAGE_SHIFT)
David Rientjes543585c2011-10-18 22:09:24 -07001497 slab_max_order = SLAB_MAX_ORDER_HI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 /* Bootstrap is tricky, because several objects are allocated
1500 * from caches that do not exist yet:
Andrew Mortona737b3e2006-03-22 00:08:11 -08001501 * 1) initialize the cache_cache cache: it contains the struct
1502 * kmem_cache structures of all caches, except cache_cache itself:
1503 * cache_cache is statically allocated.
Christoph Lametere498be72005-09-09 13:03:32 -07001504 * Initially an __init data area is used for the head array and the
1505 * kmem_list3 structures, it's replaced with a kmalloc allocated
1506 * array at the end of the bootstrap.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001507 * 2) Create the first kmalloc cache.
Pekka Enberg343e0d72006-02-01 03:05:50 -08001508 * The struct kmem_cache for the new cache is allocated normally.
Christoph Lametere498be72005-09-09 13:03:32 -07001509 * An __init data area is used for the head array.
1510 * 3) Create the remaining kmalloc caches, with minimally sized
1511 * head arrays.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 * 4) Replace the __init data head arrays for cache_cache and the first
1513 * kmalloc cache with kmalloc allocated arrays.
Christoph Lametere498be72005-09-09 13:03:32 -07001514 * 5) Replace the __init data for kmem_list3 for cache_cache and
1515 * the other cache's with kmalloc allocated memory.
1516 * 6) Resize the head arrays of the kmalloc caches to their final sizes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517 */
1518
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07001519 node = numa_mem_id();
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001520
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521 /* 1) create the cache_cache */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522 INIT_LIST_HEAD(&cache_chain);
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05001523 list_add(&cache_cache.list, &cache_chain);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 cache_cache.colour_off = cache_line_size();
1525 cache_cache.array[smp_processor_id()] = &initarray_cache.cache;
Daniel Yeisleyec1f5ee2008-03-25 23:59:08 +02001526 cache_cache.nodelists[node] = &initkmem_list3[CACHE_CACHE + node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527
Eric Dumazet8da34302007-05-06 14:49:29 -07001528 /*
Eric Dumazetb56efcf2011-07-20 19:04:23 +02001529 * struct kmem_cache size depends on nr_node_ids & nr_cpu_ids
Eric Dumazet8da34302007-05-06 14:49:29 -07001530 */
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05001531 cache_cache.size = offsetof(struct kmem_cache, array[nr_cpu_ids]) +
Eric Dumazetb56efcf2011-07-20 19:04:23 +02001532 nr_node_ids * sizeof(struct kmem_list3 *);
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05001533 cache_cache.object_size = cache_cache.size;
1534 cache_cache.size = ALIGN(cache_cache.size,
Andrew Mortona737b3e2006-03-22 00:08:11 -08001535 cache_line_size());
Eric Dumazet6a2d7a92006-12-13 00:34:27 -08001536 cache_cache.reciprocal_buffer_size =
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05001537 reciprocal_value(cache_cache.size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538
Jack Steiner07ed76b2006-03-07 21:55:46 -08001539 for (order = 0; order < MAX_ORDER; order++) {
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05001540 cache_estimate(order, cache_cache.size,
Jack Steiner07ed76b2006-03-07 21:55:46 -08001541 cache_line_size(), 0, &left_over, &cache_cache.num);
1542 if (cache_cache.num)
1543 break;
1544 }
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02001545 BUG_ON(!cache_cache.num);
Jack Steiner07ed76b2006-03-07 21:55:46 -08001546 cache_cache.gfporder = order;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001547 cache_cache.colour = left_over / cache_cache.colour_off;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001548 cache_cache.slab_size = ALIGN(cache_cache.num * sizeof(kmem_bufctl_t) +
1549 sizeof(struct slab), cache_line_size());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550
1551 /* 2+3) create the kmalloc caches */
1552 sizes = malloc_sizes;
1553 names = cache_names;
1554
Andrew Mortona737b3e2006-03-22 00:08:11 -08001555 /*
1556 * Initialize the caches that provide memory for the array cache and the
1557 * kmem_list3 structures first. Without this, further allocations will
1558 * bug.
Christoph Lametere498be72005-09-09 13:03:32 -07001559 */
1560
Christoph Lameter039363f2012-07-06 15:25:10 -05001561 sizes[INDEX_AC].cs_cachep = __kmem_cache_create(names[INDEX_AC].name,
Andrew Mortona737b3e2006-03-22 00:08:11 -08001562 sizes[INDEX_AC].cs_size,
1563 ARCH_KMALLOC_MINALIGN,
1564 ARCH_KMALLOC_FLAGS|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09001565 NULL);
Christoph Lametere498be72005-09-09 13:03:32 -07001566
Andrew Mortona737b3e2006-03-22 00:08:11 -08001567 if (INDEX_AC != INDEX_L3) {
Christoph Lametere498be72005-09-09 13:03:32 -07001568 sizes[INDEX_L3].cs_cachep =
Christoph Lameter039363f2012-07-06 15:25:10 -05001569 __kmem_cache_create(names[INDEX_L3].name,
Andrew Mortona737b3e2006-03-22 00:08:11 -08001570 sizes[INDEX_L3].cs_size,
1571 ARCH_KMALLOC_MINALIGN,
1572 ARCH_KMALLOC_FLAGS|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09001573 NULL);
Andrew Mortona737b3e2006-03-22 00:08:11 -08001574 }
Christoph Lametere498be72005-09-09 13:03:32 -07001575
Ingo Molnare0a42722006-06-23 02:03:46 -07001576 slab_early_init = 0;
1577
Linus Torvalds1da177e2005-04-16 15:20:36 -07001578 while (sizes->cs_size != ULONG_MAX) {
Christoph Lametere498be72005-09-09 13:03:32 -07001579 /*
1580 * For performance, all the general caches are L1 aligned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 * This should be particularly beneficial on SMP boxes, as it
1582 * eliminates "false sharing".
1583 * Note for systems short on memory removing the alignment will
Christoph Lametere498be72005-09-09 13:03:32 -07001584 * allow tighter packing of the smaller caches.
1585 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08001586 if (!sizes->cs_cachep) {
Christoph Lameter039363f2012-07-06 15:25:10 -05001587 sizes->cs_cachep = __kmem_cache_create(names->name,
Andrew Mortona737b3e2006-03-22 00:08:11 -08001588 sizes->cs_size,
1589 ARCH_KMALLOC_MINALIGN,
1590 ARCH_KMALLOC_FLAGS|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09001591 NULL);
Andrew Mortona737b3e2006-03-22 00:08:11 -08001592 }
Christoph Lameter4b51d662007-02-10 01:43:10 -08001593#ifdef CONFIG_ZONE_DMA
Christoph Lameter039363f2012-07-06 15:25:10 -05001594 sizes->cs_dmacachep = __kmem_cache_create(
Christoph Lameter4b51d662007-02-10 01:43:10 -08001595 names->name_dma,
Andrew Mortona737b3e2006-03-22 00:08:11 -08001596 sizes->cs_size,
1597 ARCH_KMALLOC_MINALIGN,
1598 ARCH_KMALLOC_FLAGS|SLAB_CACHE_DMA|
1599 SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09001600 NULL);
Christoph Lameter4b51d662007-02-10 01:43:10 -08001601#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 sizes++;
1603 names++;
1604 }
1605 /* 4) Replace the bootstrap head arrays */
1606 {
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001607 struct array_cache *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
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001611 BUG_ON(cpu_cache_get(&cache_cache) != &initarray_cache.cache);
1612 memcpy(ptr, cpu_cache_get(&cache_cache),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001613 sizeof(struct arraycache_init));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001614 /*
1615 * Do not assume that spinlocks can be initialized via memcpy:
1616 */
1617 spin_lock_init(&ptr->lock);
1618
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 cache_cache.array[smp_processor_id()] = ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001620
Pekka Enberg83b519e2009-06-10 19:40:04 +03001621 ptr = kmalloc(sizeof(struct arraycache_init), GFP_NOWAIT);
Christoph Lametere498be72005-09-09 13:03:32 -07001622
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001623 BUG_ON(cpu_cache_get(malloc_sizes[INDEX_AC].cs_cachep)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001624 != &initarray_generic.cache);
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001625 memcpy(ptr, cpu_cache_get(malloc_sizes[INDEX_AC].cs_cachep),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001626 sizeof(struct arraycache_init));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001627 /*
1628 * Do not assume that spinlocks can be initialized via memcpy:
1629 */
1630 spin_lock_init(&ptr->lock);
1631
Christoph Lametere498be72005-09-09 13:03:32 -07001632 malloc_sizes[INDEX_AC].cs_cachep->array[smp_processor_id()] =
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001633 ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 }
Christoph Lametere498be72005-09-09 13:03:32 -07001635 /* 5) Replace the bootstrap kmem_list3's */
1636 {
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001637 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001638
Mel Gorman9c09a952008-01-24 05:49:54 -08001639 for_each_online_node(nid) {
Daniel Yeisleyec1f5ee2008-03-25 23:59:08 +02001640 init_list(&cache_cache, &initkmem_list3[CACHE_CACHE + nid], nid);
Pekka Enberg556a1692008-01-25 08:20:51 +02001641
Christoph Lametere498be72005-09-09 13:03:32 -07001642 init_list(malloc_sizes[INDEX_AC].cs_cachep,
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001643 &initkmem_list3[SIZE_AC + nid], nid);
Christoph Lametere498be72005-09-09 13:03:32 -07001644
1645 if (INDEX_AC != INDEX_L3) {
1646 init_list(malloc_sizes[INDEX_L3].cs_cachep,
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001647 &initkmem_list3[SIZE_L3 + nid], nid);
Christoph Lametere498be72005-09-09 13:03:32 -07001648 }
1649 }
1650 }
1651
Pekka Enberg8429db52009-06-12 15:58:59 +03001652 g_cpucache_up = EARLY;
Pekka Enberg8429db52009-06-12 15:58:59 +03001653}
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -07001654
Pekka Enberg8429db52009-06-12 15:58:59 +03001655void __init kmem_cache_init_late(void)
1656{
1657 struct kmem_cache *cachep;
1658
Peter Zijlstra52cef182011-11-28 21:12:40 +01001659 g_cpucache_up = LATE;
1660
Peter Zijlstra30765b92011-07-28 23:22:56 +02001661 /* Annotate slab for lockdep -- annotate the malloc caches */
1662 init_lock_keys();
1663
Pekka Enberg8429db52009-06-12 15:58:59 +03001664 /* 6) resize the head arrays to their final sizes */
1665 mutex_lock(&cache_chain_mutex);
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05001666 list_for_each_entry(cachep, &cache_chain, list)
Pekka Enberg8429db52009-06-12 15:58:59 +03001667 if (enable_cpucache(cachep, GFP_NOWAIT))
1668 BUG();
1669 mutex_unlock(&cache_chain_mutex);
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -07001670
Andrew Mortona737b3e2006-03-22 00:08:11 -08001671 /*
1672 * Register a cpu startup notifier callback that initializes
1673 * cpu_cache_get for all new cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674 */
1675 register_cpu_notifier(&cpucache_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676
David Rientjes8f9f8d92010-03-27 19:40:47 -07001677#ifdef CONFIG_NUMA
1678 /*
1679 * Register a memory hotplug callback that initializes and frees
1680 * nodelists.
1681 */
1682 hotplug_memory_notifier(slab_memory_callback, SLAB_CALLBACK_PRI);
1683#endif
1684
Andrew Mortona737b3e2006-03-22 00:08:11 -08001685 /*
1686 * The reap timers are started later, with a module init call: That part
1687 * of the kernel is not yet operational.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688 */
1689}
1690
1691static int __init cpucache_init(void)
1692{
1693 int cpu;
1694
Andrew Mortona737b3e2006-03-22 00:08:11 -08001695 /*
1696 * Register the timers that return unneeded pages to the page allocator
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697 */
Christoph Lametere498be72005-09-09 13:03:32 -07001698 for_each_online_cpu(cpu)
Andrew Mortona737b3e2006-03-22 00:08:11 -08001699 start_cpu_timer(cpu);
Glauber Costaa164f8962012-06-21 00:59:18 +04001700
1701 /* Done! */
1702 g_cpucache_up = FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001703 return 0;
1704}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001705__initcall(cpucache_init);
1706
Rafael Aquini8bdec192012-03-09 17:27:27 -03001707static noinline void
1708slab_out_of_memory(struct kmem_cache *cachep, gfp_t gfpflags, int nodeid)
1709{
1710 struct kmem_list3 *l3;
1711 struct slab *slabp;
1712 unsigned long flags;
1713 int node;
1714
1715 printk(KERN_WARNING
1716 "SLAB: Unable to allocate memory on node %d (gfp=0x%x)\n",
1717 nodeid, gfpflags);
1718 printk(KERN_WARNING " cache: %s, object size: %d, order: %d\n",
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05001719 cachep->name, cachep->size, cachep->gfporder);
Rafael Aquini8bdec192012-03-09 17:27:27 -03001720
1721 for_each_online_node(node) {
1722 unsigned long active_objs = 0, num_objs = 0, free_objects = 0;
1723 unsigned long active_slabs = 0, num_slabs = 0;
1724
1725 l3 = cachep->nodelists[node];
1726 if (!l3)
1727 continue;
1728
1729 spin_lock_irqsave(&l3->list_lock, flags);
1730 list_for_each_entry(slabp, &l3->slabs_full, list) {
1731 active_objs += cachep->num;
1732 active_slabs++;
1733 }
1734 list_for_each_entry(slabp, &l3->slabs_partial, list) {
1735 active_objs += slabp->inuse;
1736 active_slabs++;
1737 }
1738 list_for_each_entry(slabp, &l3->slabs_free, list)
1739 num_slabs++;
1740
1741 free_objects += l3->free_objects;
1742 spin_unlock_irqrestore(&l3->list_lock, flags);
1743
1744 num_slabs += active_slabs;
1745 num_objs = num_slabs * cachep->num;
1746 printk(KERN_WARNING
1747 " node %d: slabs: %ld/%ld, objs: %ld/%ld, free: %ld\n",
1748 node, active_slabs, num_slabs, active_objs, num_objs,
1749 free_objects);
1750 }
1751}
1752
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753/*
1754 * Interface to system's page allocator. No need to hold the cache-lock.
1755 *
1756 * If we requested dmaable memory, we will get it. Even if we
1757 * did not request dmaable memory, we might get it, but that
1758 * would be relatively rare and ignorable.
1759 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001760static void *kmem_getpages(struct kmem_cache *cachep, gfp_t flags, int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001761{
1762 struct page *page;
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001763 int nr_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 int i;
1765
Luke Yangd6fef9d2006-04-10 22:52:56 -07001766#ifndef CONFIG_MMU
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001767 /*
1768 * Nommu uses slab's for process anonymous memory allocations, and thus
1769 * requires __GFP_COMP to properly refcount higher order allocations
Luke Yangd6fef9d2006-04-10 22:52:56 -07001770 */
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001771 flags |= __GFP_COMP;
Luke Yangd6fef9d2006-04-10 22:52:56 -07001772#endif
Christoph Lameter765c4502006-09-27 01:50:08 -07001773
Glauber Costaa618e892012-06-14 16:17:21 +04001774 flags |= cachep->allocflags;
Mel Gormane12ba742007-10-16 01:25:52 -07001775 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1776 flags |= __GFP_RECLAIMABLE;
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001777
Linus Torvalds517d0862009-06-16 19:50:13 -07001778 page = alloc_pages_exact_node(nodeid, flags | __GFP_NOTRACK, cachep->gfporder);
Rafael Aquini8bdec192012-03-09 17:27:27 -03001779 if (!page) {
1780 if (!(flags & __GFP_NOWARN) && printk_ratelimit())
1781 slab_out_of_memory(cachep, flags, nodeid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782 return NULL;
Rafael Aquini8bdec192012-03-09 17:27:27 -03001783 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001785 nr_pages = (1 << cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
Christoph Lameter972d1a72006-09-25 23:31:51 -07001787 add_zone_page_state(page_zone(page),
1788 NR_SLAB_RECLAIMABLE, nr_pages);
1789 else
1790 add_zone_page_state(page_zone(page),
1791 NR_SLAB_UNRECLAIMABLE, nr_pages);
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001792 for (i = 0; i < nr_pages; i++)
1793 __SetPageSlab(page + i);
Pekka Enbergc175eea2008-05-09 20:35:53 +02001794
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001795 if (kmemcheck_enabled && !(cachep->flags & SLAB_NOTRACK)) {
1796 kmemcheck_alloc_shadow(page, cachep->gfporder, flags, nodeid);
1797
1798 if (cachep->ctor)
1799 kmemcheck_mark_uninitialized_pages(page, nr_pages);
1800 else
1801 kmemcheck_mark_unallocated_pages(page, nr_pages);
1802 }
Pekka Enbergc175eea2008-05-09 20:35:53 +02001803
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001804 return page_address(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805}
1806
1807/*
1808 * Interface to system's page release.
1809 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001810static void kmem_freepages(struct kmem_cache *cachep, void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001812 unsigned long i = (1 << cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 struct page *page = virt_to_page(addr);
1814 const unsigned long nr_freed = i;
1815
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001816 kmemcheck_free_shadow(page, cachep->gfporder);
Pekka Enbergc175eea2008-05-09 20:35:53 +02001817
Christoph Lameter972d1a72006-09-25 23:31:51 -07001818 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1819 sub_zone_page_state(page_zone(page),
1820 NR_SLAB_RECLAIMABLE, nr_freed);
1821 else
1822 sub_zone_page_state(page_zone(page),
1823 NR_SLAB_UNRECLAIMABLE, nr_freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824 while (i--) {
Nick Pigginf205b2f2006-03-22 00:08:02 -08001825 BUG_ON(!PageSlab(page));
1826 __ClearPageSlab(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001827 page++;
1828 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829 if (current->reclaim_state)
1830 current->reclaim_state->reclaimed_slab += nr_freed;
1831 free_pages((unsigned long)addr, cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832}
1833
1834static void kmem_rcu_free(struct rcu_head *head)
1835{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001836 struct slab_rcu *slab_rcu = (struct slab_rcu *)head;
Pekka Enberg343e0d72006-02-01 03:05:50 -08001837 struct kmem_cache *cachep = slab_rcu->cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838
1839 kmem_freepages(cachep, slab_rcu->addr);
1840 if (OFF_SLAB(cachep))
1841 kmem_cache_free(cachep->slabp_cache, slab_rcu);
1842}
1843
1844#if DEBUG
1845
1846#ifdef CONFIG_DEBUG_PAGEALLOC
Pekka Enberg343e0d72006-02-01 03:05:50 -08001847static void store_stackinfo(struct kmem_cache *cachep, unsigned long *addr,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001848 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001849{
Christoph Lameter8c138bc2012-06-13 10:24:58 -05001850 int size = cachep->object_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001852 addr = (unsigned long *)&((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001854 if (size < 5 * sizeof(unsigned long))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 return;
1856
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001857 *addr++ = 0x12345678;
1858 *addr++ = caller;
1859 *addr++ = smp_processor_id();
1860 size -= 3 * sizeof(unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001861 {
1862 unsigned long *sptr = &caller;
1863 unsigned long svalue;
1864
1865 while (!kstack_end(sptr)) {
1866 svalue = *sptr++;
1867 if (kernel_text_address(svalue)) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001868 *addr++ = svalue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 size -= sizeof(unsigned long);
1870 if (size <= sizeof(unsigned long))
1871 break;
1872 }
1873 }
1874
1875 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001876 *addr++ = 0x87654321;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877}
1878#endif
1879
Pekka Enberg343e0d72006-02-01 03:05:50 -08001880static void poison_obj(struct kmem_cache *cachep, void *addr, unsigned char val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881{
Christoph Lameter8c138bc2012-06-13 10:24:58 -05001882 int size = cachep->object_size;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001883 addr = &((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884
1885 memset(addr, val, size);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001886 *(unsigned char *)(addr + size - 1) = POISON_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887}
1888
1889static void dump_line(char *data, int offset, int limit)
1890{
1891 int i;
Dave Jonesaa83aa42006-09-29 01:59:51 -07001892 unsigned char error = 0;
1893 int bad_count = 0;
1894
Sebastian Andrzej Siewiorfdde6ab2011-07-29 18:22:13 +02001895 printk(KERN_ERR "%03x: ", offset);
Dave Jonesaa83aa42006-09-29 01:59:51 -07001896 for (i = 0; i < limit; i++) {
1897 if (data[offset + i] != POISON_FREE) {
1898 error = data[offset + i];
1899 bad_count++;
1900 }
Dave Jonesaa83aa42006-09-29 01:59:51 -07001901 }
Sebastian Andrzej Siewiorfdde6ab2011-07-29 18:22:13 +02001902 print_hex_dump(KERN_CONT, "", 0, 16, 1,
1903 &data[offset], limit, 1);
Dave Jonesaa83aa42006-09-29 01:59:51 -07001904
1905 if (bad_count == 1) {
1906 error ^= POISON_FREE;
1907 if (!(error & (error - 1))) {
1908 printk(KERN_ERR "Single bit error detected. Probably "
1909 "bad RAM.\n");
1910#ifdef CONFIG_X86
1911 printk(KERN_ERR "Run memtest86+ or a similar memory "
1912 "test tool.\n");
1913#else
1914 printk(KERN_ERR "Run a memory test tool.\n");
1915#endif
1916 }
1917 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918}
1919#endif
1920
1921#if DEBUG
1922
Pekka Enberg343e0d72006-02-01 03:05:50 -08001923static void print_objinfo(struct kmem_cache *cachep, void *objp, int lines)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924{
1925 int i, size;
1926 char *realobj;
1927
1928 if (cachep->flags & SLAB_RED_ZONE) {
David Woodhouseb46b8f12007-05-08 00:22:59 -07001929 printk(KERN_ERR "Redzone: 0x%llx/0x%llx.\n",
Andrew Mortona737b3e2006-03-22 00:08:11 -08001930 *dbg_redzone1(cachep, objp),
1931 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 }
1933
1934 if (cachep->flags & SLAB_STORE_USER) {
1935 printk(KERN_ERR "Last user: [<%p>]",
Andrew Mortona737b3e2006-03-22 00:08:11 -08001936 *dbg_userword(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 print_symbol("(%s)",
Andrew Mortona737b3e2006-03-22 00:08:11 -08001938 (unsigned long)*dbg_userword(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001939 printk("\n");
1940 }
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001941 realobj = (char *)objp + obj_offset(cachep);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05001942 size = cachep->object_size;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001943 for (i = 0; i < size && lines; i += 16, lines--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944 int limit;
1945 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001946 if (i + limit > size)
1947 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 dump_line(realobj, i, limit);
1949 }
1950}
1951
Pekka Enberg343e0d72006-02-01 03:05:50 -08001952static void check_poison_obj(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953{
1954 char *realobj;
1955 int size, i;
1956 int lines = 0;
1957
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001958 realobj = (char *)objp + obj_offset(cachep);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05001959 size = cachep->object_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001961 for (i = 0; i < size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962 char exp = POISON_FREE;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001963 if (i == size - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964 exp = POISON_END;
1965 if (realobj[i] != exp) {
1966 int limit;
1967 /* Mismatch ! */
1968 /* Print header */
1969 if (lines == 0) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001970 printk(KERN_ERR
Dave Jonesface37f2011-11-15 15:03:52 -08001971 "Slab corruption (%s): %s start=%p, len=%d\n",
1972 print_tainted(), cachep->name, realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 print_objinfo(cachep, objp, 0);
1974 }
1975 /* Hexdump the affected line */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001976 i = (i / 16) * 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001978 if (i + limit > size)
1979 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 dump_line(realobj, i, limit);
1981 i += 16;
1982 lines++;
1983 /* Limit to 5 lines */
1984 if (lines > 5)
1985 break;
1986 }
1987 }
1988 if (lines != 0) {
1989 /* Print some data about the neighboring objects, if they
1990 * exist:
1991 */
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -08001992 struct slab *slabp = virt_to_slab(objp);
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001993 unsigned int objnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001995 objnr = obj_to_index(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996 if (objnr) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001997 objp = index_to_obj(cachep, slabp, objnr - 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001998 realobj = (char *)objp + obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 printk(KERN_ERR "Prev obj: start=%p, len=%d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002000 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 print_objinfo(cachep, objp, 2);
2002 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002003 if (objnr + 1 < cachep->num) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002004 objp = index_to_obj(cachep, slabp, objnr + 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002005 realobj = (char *)objp + obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006 printk(KERN_ERR "Next obj: start=%p, len=%d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002007 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 print_objinfo(cachep, objp, 2);
2009 }
2010 }
2011}
2012#endif
2013
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014#if DEBUG
Rabin Vincente79aec22008-07-04 00:40:32 +05302015static void slab_destroy_debugcheck(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002016{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017 int i;
2018 for (i = 0; i < cachep->num; i++) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002019 void *objp = index_to_obj(cachep, slabp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002020
2021 if (cachep->flags & SLAB_POISON) {
2022#ifdef CONFIG_DEBUG_PAGEALLOC
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002023 if (cachep->size % PAGE_SIZE == 0 &&
Andrew Mortona737b3e2006-03-22 00:08:11 -08002024 OFF_SLAB(cachep))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002025 kernel_map_pages(virt_to_page(objp),
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002026 cachep->size / PAGE_SIZE, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027 else
2028 check_poison_obj(cachep, objp);
2029#else
2030 check_poison_obj(cachep, objp);
2031#endif
2032 }
2033 if (cachep->flags & SLAB_RED_ZONE) {
2034 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
2035 slab_error(cachep, "start of a freed object "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002036 "was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
2038 slab_error(cachep, "end of a freed object "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002039 "was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002040 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 }
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002042}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043#else
Rabin Vincente79aec22008-07-04 00:40:32 +05302044static void slab_destroy_debugcheck(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002045{
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002046}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047#endif
2048
Randy Dunlap911851e2006-03-22 00:08:14 -08002049/**
2050 * slab_destroy - destroy and release all objects in a slab
2051 * @cachep: cache pointer being destroyed
2052 * @slabp: slab pointer being destroyed
2053 *
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002054 * Destroy all the objs in a slab, and release the mem back to the system.
Andrew Mortona737b3e2006-03-22 00:08:11 -08002055 * Before calling the slab must have been unlinked from the cache. The
2056 * cache-lock is not held/needed.
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002057 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002058static void slab_destroy(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002059{
2060 void *addr = slabp->s_mem - slabp->colouroff;
2061
Rabin Vincente79aec22008-07-04 00:40:32 +05302062 slab_destroy_debugcheck(cachep, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 if (unlikely(cachep->flags & SLAB_DESTROY_BY_RCU)) {
2064 struct slab_rcu *slab_rcu;
2065
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002066 slab_rcu = (struct slab_rcu *)slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 slab_rcu->cachep = cachep;
2068 slab_rcu->addr = addr;
2069 call_rcu(&slab_rcu->head, kmem_rcu_free);
2070 } else {
2071 kmem_freepages(cachep, addr);
Ingo Molnar873623d2006-07-13 14:44:38 +02002072 if (OFF_SLAB(cachep))
2073 kmem_cache_free(cachep->slabp_cache, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 }
2075}
2076
Christoph Lameter117f6eb2006-09-25 23:31:37 -07002077static void __kmem_cache_destroy(struct kmem_cache *cachep)
2078{
2079 int i;
2080 struct kmem_list3 *l3;
2081
2082 for_each_online_cpu(i)
2083 kfree(cachep->array[i]);
2084
2085 /* NUMA: free the list3 structures */
2086 for_each_online_node(i) {
2087 l3 = cachep->nodelists[i];
2088 if (l3) {
2089 kfree(l3->shared);
2090 free_alien_cache(l3->alien);
2091 kfree(l3);
2092 }
2093 }
2094 kmem_cache_free(&cache_cache, cachep);
2095}
2096
2097
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098/**
Randy.Dunlapa70773d2006-02-01 03:05:52 -08002099 * calculate_slab_order - calculate size (page order) of slabs
2100 * @cachep: pointer to the cache that is being created
2101 * @size: size of objects to be created in this cache.
2102 * @align: required alignment for the objects.
2103 * @flags: slab allocation flags
2104 *
2105 * Also calculates the number of objects per slab.
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002106 *
2107 * This could be made much more intelligent. For now, try to avoid using
2108 * high order pages for slabs. When the gfp() functions are more friendly
2109 * towards high-order requests, this should be changed.
2110 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002111static size_t calculate_slab_order(struct kmem_cache *cachep,
Randy Dunlapee13d782006-02-01 03:05:53 -08002112 size_t size, size_t align, unsigned long flags)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002113{
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02002114 unsigned long offslab_limit;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002115 size_t left_over = 0;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002116 int gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002117
Christoph Lameter0aa817f2007-05-16 22:11:01 -07002118 for (gfporder = 0; gfporder <= KMALLOC_MAX_ORDER; gfporder++) {
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002119 unsigned int num;
2120 size_t remainder;
2121
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002122 cache_estimate(gfporder, size, align, flags, &remainder, &num);
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002123 if (!num)
2124 continue;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002125
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02002126 if (flags & CFLGS_OFF_SLAB) {
2127 /*
2128 * Max number of objs-per-slab for caches which
2129 * use off-slab slabs. Needed to avoid a possible
2130 * looping condition in cache_grow().
2131 */
2132 offslab_limit = size - sizeof(struct slab);
2133 offslab_limit /= sizeof(kmem_bufctl_t);
2134
2135 if (num > offslab_limit)
2136 break;
2137 }
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002138
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002139 /* Found something acceptable - save it away */
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002140 cachep->num = num;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002141 cachep->gfporder = gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002142 left_over = remainder;
2143
2144 /*
Linus Torvaldsf78bb8a2006-03-08 10:33:05 -08002145 * A VFS-reclaimable slab tends to have most allocations
2146 * as GFP_NOFS and we really don't want to have to be allocating
2147 * higher-order pages when we are unable to shrink dcache.
2148 */
2149 if (flags & SLAB_RECLAIM_ACCOUNT)
2150 break;
2151
2152 /*
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002153 * Large number of objects is good, but very large slabs are
2154 * currently bad for the gfp()s.
2155 */
David Rientjes543585c2011-10-18 22:09:24 -07002156 if (gfporder >= slab_max_order)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002157 break;
2158
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002159 /*
2160 * Acceptable internal fragmentation?
2161 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002162 if (left_over * 8 <= (PAGE_SIZE << gfporder))
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002163 break;
2164 }
2165 return left_over;
2166}
2167
Pekka Enberg83b519e2009-06-10 19:40:04 +03002168static int __init_refok setup_cpu_cache(struct kmem_cache *cachep, gfp_t gfp)
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002169{
Glauber Costaa164f8962012-06-21 00:59:18 +04002170 if (g_cpucache_up >= LATE)
Pekka Enberg83b519e2009-06-10 19:40:04 +03002171 return enable_cpucache(cachep, gfp);
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002172
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002173 if (g_cpucache_up == NONE) {
2174 /*
2175 * Note: the first kmem_cache_create must create the cache
2176 * that's used by kmalloc(24), otherwise the creation of
2177 * further caches will BUG().
2178 */
2179 cachep->array[smp_processor_id()] = &initarray_generic.cache;
2180
2181 /*
2182 * If the cache that's used by kmalloc(sizeof(kmem_list3)) is
2183 * the first cache, then we need to set up all its list3s,
2184 * otherwise the creation of further caches will BUG().
2185 */
2186 set_up_list3s(cachep, SIZE_AC);
2187 if (INDEX_AC == INDEX_L3)
2188 g_cpucache_up = PARTIAL_L3;
2189 else
2190 g_cpucache_up = PARTIAL_AC;
2191 } else {
2192 cachep->array[smp_processor_id()] =
Pekka Enberg83b519e2009-06-10 19:40:04 +03002193 kmalloc(sizeof(struct arraycache_init), gfp);
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002194
2195 if (g_cpucache_up == PARTIAL_AC) {
2196 set_up_list3s(cachep, SIZE_L3);
2197 g_cpucache_up = PARTIAL_L3;
2198 } else {
2199 int node;
Pekka Enberg556a1692008-01-25 08:20:51 +02002200 for_each_online_node(node) {
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002201 cachep->nodelists[node] =
2202 kmalloc_node(sizeof(struct kmem_list3),
Pekka Enbergeb91f1d2009-06-12 14:56:09 +03002203 gfp, node);
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002204 BUG_ON(!cachep->nodelists[node]);
2205 kmem_list3_init(cachep->nodelists[node]);
2206 }
2207 }
2208 }
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07002209 cachep->nodelists[numa_mem_id()]->next_reap =
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002210 jiffies + REAPTIMEOUT_LIST3 +
2211 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
2212
2213 cpu_cache_get(cachep)->avail = 0;
2214 cpu_cache_get(cachep)->limit = BOOT_CPUCACHE_ENTRIES;
2215 cpu_cache_get(cachep)->batchcount = 1;
2216 cpu_cache_get(cachep)->touched = 0;
2217 cachep->batchcount = 1;
2218 cachep->limit = BOOT_CPUCACHE_ENTRIES;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002219 return 0;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002220}
2221
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002222/**
Christoph Lameter039363f2012-07-06 15:25:10 -05002223 * __kmem_cache_create - Create a cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002224 * @name: A string which is used in /proc/slabinfo to identify this cache.
2225 * @size: The size of objects to be created in this cache.
2226 * @align: The required alignment for the objects.
2227 * @flags: SLAB flags
2228 * @ctor: A constructor for the objects.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002229 *
2230 * Returns a ptr to the cache on success, NULL on failure.
2231 * Cannot be called within a int, but can be interrupted.
Paul Mundt20c2df82007-07-20 10:11:58 +09002232 * The @ctor is run when new pages are allocated by the cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 *
2234 * @name must be valid until the cache is destroyed. This implies that
Andrew Mortona737b3e2006-03-22 00:08:11 -08002235 * the module calling this has to destroy the cache before getting unloaded.
2236 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002237 * The flags are
2238 *
2239 * %SLAB_POISON - Poison the slab with a known test pattern (a5a5a5a5)
2240 * to catch references to uninitialised memory.
2241 *
2242 * %SLAB_RED_ZONE - Insert `Red' zones around the allocated memory to check
2243 * for buffer overruns.
2244 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002245 * %SLAB_HWCACHE_ALIGN - Align the objects in this cache to a hardware
2246 * cacheline. This can be beneficial if you're counting cycles as closely
2247 * as davem.
2248 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002249struct kmem_cache *
Christoph Lameter039363f2012-07-06 15:25:10 -05002250__kmem_cache_create (const char *name, size_t size, size_t align,
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002251 unsigned long flags, void (*ctor)(void *))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252{
2253 size_t left_over, slab_size, ralign;
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07002254 struct kmem_cache *cachep = NULL, *pc;
Pekka Enberg83b519e2009-06-10 19:40:04 +03002255 gfp_t gfp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002256
2257 /*
2258 * Sanity checks... these are all serious usage bugs.
2259 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002260 if (!name || in_interrupt() || (size < BYTES_PER_WORD) ||
Paul Mundt20c2df82007-07-20 10:11:58 +09002261 size > KMALLOC_MAX_SIZE) {
Harvey Harrisond40cee22008-04-30 00:55:07 -07002262 printk(KERN_ERR "%s: Early error in slab %s\n", __func__,
Andrew Mortona737b3e2006-03-22 00:08:11 -08002263 name);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002264 BUG();
2265 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266
Ravikiran G Thirumalaif0188f42006-02-10 01:51:13 -08002267 /*
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002268 * We use cache_chain_mutex to ensure a consistent view of
Rusty Russell174596a2009-01-01 10:12:29 +10302269 * cpu_online_mask as well. Please see cpuup_callback
Ravikiran G Thirumalaif0188f42006-02-10 01:51:13 -08002270 */
Pekka Enberg83b519e2009-06-10 19:40:04 +03002271 if (slab_is_available()) {
2272 get_online_cpus();
2273 mutex_lock(&cache_chain_mutex);
2274 }
Andrew Morton4f12bb42005-11-07 00:58:00 -08002275
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002276 list_for_each_entry(pc, &cache_chain, list) {
Andrew Morton4f12bb42005-11-07 00:58:00 -08002277 char tmp;
2278 int res;
2279
2280 /*
2281 * This happens when the module gets unloaded and doesn't
2282 * destroy its slab cache and no-one else reuses the vmalloc
2283 * area of the module. Print a warning.
2284 */
Andrew Morton138ae662006-12-06 20:36:41 -08002285 res = probe_kernel_address(pc->name, tmp);
Andrew Morton4f12bb42005-11-07 00:58:00 -08002286 if (res) {
matzeb4169522007-05-06 14:49:52 -07002287 printk(KERN_ERR
2288 "SLAB: cache with size %d has lost its name\n",
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002289 pc->size);
Andrew Morton4f12bb42005-11-07 00:58:00 -08002290 continue;
2291 }
2292
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002293 if (!strcmp(pc->name, name)) {
matzeb4169522007-05-06 14:49:52 -07002294 printk(KERN_ERR
2295 "kmem_cache_create: duplicate cache %s\n", name);
Andrew Morton4f12bb42005-11-07 00:58:00 -08002296 dump_stack();
2297 goto oops;
2298 }
2299 }
2300
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301#if DEBUG
2302 WARN_ON(strchr(name, ' ')); /* It confuses parsers */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303#if FORCED_DEBUG
2304 /*
2305 * Enable redzoning and last user accounting, except for caches with
2306 * large objects, if the increased size would increase the object size
2307 * above the next power of two: caches with object sizes just above a
2308 * power of two have a significant amount of internal fragmentation.
2309 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002310 if (size < 4096 || fls(size - 1) == fls(size-1 + REDZONE_ALIGN +
2311 2 * sizeof(unsigned long long)))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002312 flags |= SLAB_RED_ZONE | SLAB_STORE_USER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002313 if (!(flags & SLAB_DESTROY_BY_RCU))
2314 flags |= SLAB_POISON;
2315#endif
2316 if (flags & SLAB_DESTROY_BY_RCU)
2317 BUG_ON(flags & SLAB_POISON);
2318#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002319 /*
Andrew Mortona737b3e2006-03-22 00:08:11 -08002320 * Always checks flags, a caller might be expecting debug support which
2321 * isn't available.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 */
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002323 BUG_ON(flags & ~CREATE_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324
Andrew Mortona737b3e2006-03-22 00:08:11 -08002325 /*
2326 * Check that size is in terms of words. This is needed to avoid
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 * unaligned accesses for some archs when redzoning is used, and makes
2328 * sure any on-slab bufctl's are also correctly aligned.
2329 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002330 if (size & (BYTES_PER_WORD - 1)) {
2331 size += (BYTES_PER_WORD - 1);
2332 size &= ~(BYTES_PER_WORD - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 }
2334
Andrew Mortona737b3e2006-03-22 00:08:11 -08002335 /* calculate the final buffer alignment: */
2336
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 /* 1) arch recommendation: can be overridden for debug */
2338 if (flags & SLAB_HWCACHE_ALIGN) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002339 /*
2340 * Default alignment: as specified by the arch code. Except if
2341 * an object is really small, then squeeze multiple objects into
2342 * one cacheline.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343 */
2344 ralign = cache_line_size();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002345 while (size <= ralign / 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 ralign /= 2;
2347 } else {
2348 ralign = BYTES_PER_WORD;
2349 }
Pekka Enbergca5f9702006-09-25 23:31:25 -07002350
2351 /*
David Woodhouse87a927c2007-07-04 21:26:44 -04002352 * Redzoning and user store require word alignment or possibly larger.
2353 * Note this will be overridden by architecture or caller mandated
2354 * alignment if either is greater than BYTES_PER_WORD.
Pekka Enbergca5f9702006-09-25 23:31:25 -07002355 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002356 if (flags & SLAB_STORE_USER)
2357 ralign = BYTES_PER_WORD;
2358
2359 if (flags & SLAB_RED_ZONE) {
2360 ralign = REDZONE_ALIGN;
2361 /* If redzoning, ensure that the second redzone is suitably
2362 * aligned, by adjusting the object size accordingly. */
2363 size += REDZONE_ALIGN - 1;
2364 size &= ~(REDZONE_ALIGN - 1);
2365 }
Pekka Enbergca5f9702006-09-25 23:31:25 -07002366
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002367 /* 2) arch mandated alignment */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368 if (ralign < ARCH_SLAB_MINALIGN) {
2369 ralign = ARCH_SLAB_MINALIGN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002370 }
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002371 /* 3) caller mandated alignment */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372 if (ralign < align) {
2373 ralign = align;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002374 }
Pekka Enberg3ff84a72011-02-14 17:46:21 +02002375 /* disable debug if necessary */
2376 if (ralign > __alignof__(unsigned long long))
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002377 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002378 /*
Pekka Enbergca5f9702006-09-25 23:31:25 -07002379 * 4) Store it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002380 */
2381 align = ralign;
2382
Pekka Enberg83b519e2009-06-10 19:40:04 +03002383 if (slab_is_available())
2384 gfp = GFP_KERNEL;
2385 else
2386 gfp = GFP_NOWAIT;
2387
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 /* Get cache's description obj. */
Pekka Enberg83b519e2009-06-10 19:40:04 +03002389 cachep = kmem_cache_zalloc(&cache_cache, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 if (!cachep)
Christoph Lameter039363f2012-07-06 15:25:10 -05002391 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392
Eric Dumazetb56efcf2011-07-20 19:04:23 +02002393 cachep->nodelists = (struct kmem_list3 **)&cachep->array[nr_cpu_ids];
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002394 cachep->object_size = size;
2395 cachep->align = align;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396#if DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07002397
Pekka Enbergca5f9702006-09-25 23:31:25 -07002398 /*
2399 * Both debugging options require word-alignment which is calculated
2400 * into align above.
2401 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402 if (flags & SLAB_RED_ZONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 /* add space for red zone words */
Pekka Enberg3ff84a72011-02-14 17:46:21 +02002404 cachep->obj_offset += sizeof(unsigned long long);
2405 size += 2 * sizeof(unsigned long long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 }
2407 if (flags & SLAB_STORE_USER) {
Pekka Enbergca5f9702006-09-25 23:31:25 -07002408 /* user store requires one word storage behind the end of
David Woodhouse87a927c2007-07-04 21:26:44 -04002409 * the real object. But if the second red zone needs to be
2410 * aligned to 64 bits, we must allow that much space.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002412 if (flags & SLAB_RED_ZONE)
2413 size += REDZONE_ALIGN;
2414 else
2415 size += BYTES_PER_WORD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 }
2417#if FORCED_DEBUG && defined(CONFIG_DEBUG_PAGEALLOC)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002418 if (size >= malloc_sizes[INDEX_L3 + 1].cs_size
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002419 && cachep->object_size > cache_line_size() && ALIGN(size, align) < PAGE_SIZE) {
Carsten Otte1ab335d2010-08-06 18:19:22 +02002420 cachep->obj_offset += PAGE_SIZE - ALIGN(size, align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002421 size = PAGE_SIZE;
2422 }
2423#endif
2424#endif
2425
Ingo Molnare0a42722006-06-23 02:03:46 -07002426 /*
2427 * Determine if the slab management is 'on' or 'off' slab.
2428 * (bootstrapping cannot cope with offslab caches so don't do
Catalin Marinase7cb55b2009-10-28 13:33:08 +00002429 * it too early on. Always use on-slab management when
2430 * SLAB_NOLEAKTRACE to avoid recursive calls into kmemleak)
Ingo Molnare0a42722006-06-23 02:03:46 -07002431 */
Catalin Marinase7cb55b2009-10-28 13:33:08 +00002432 if ((size >= (PAGE_SIZE >> 3)) && !slab_early_init &&
2433 !(flags & SLAB_NOLEAKTRACE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434 /*
2435 * Size is large, assume best to place the slab management obj
2436 * off-slab (should allow better packing of objs).
2437 */
2438 flags |= CFLGS_OFF_SLAB;
2439
2440 size = ALIGN(size, align);
2441
Linus Torvaldsf78bb8a2006-03-08 10:33:05 -08002442 left_over = calculate_slab_order(cachep, size, align, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443
2444 if (!cachep->num) {
matzeb4169522007-05-06 14:49:52 -07002445 printk(KERN_ERR
2446 "kmem_cache_create: couldn't create cache %s.\n", name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447 kmem_cache_free(&cache_cache, cachep);
Christoph Lameter039363f2012-07-06 15:25:10 -05002448 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002450 slab_size = ALIGN(cachep->num * sizeof(kmem_bufctl_t)
2451 + sizeof(struct slab), align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002452
2453 /*
2454 * If the slab has been placed off-slab, and we have enough space then
2455 * move it on-slab. This is at the expense of any extra colouring.
2456 */
2457 if (flags & CFLGS_OFF_SLAB && left_over >= slab_size) {
2458 flags &= ~CFLGS_OFF_SLAB;
2459 left_over -= slab_size;
2460 }
2461
2462 if (flags & CFLGS_OFF_SLAB) {
2463 /* really off slab. No need for manual alignment */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002464 slab_size =
2465 cachep->num * sizeof(kmem_bufctl_t) + sizeof(struct slab);
Ron Lee67461362009-05-22 04:58:22 +09302466
2467#ifdef CONFIG_PAGE_POISONING
2468 /* If we're going to use the generic kernel_map_pages()
2469 * poisoning, then it's going to smash the contents of
2470 * the redzone and userword anyhow, so switch them off.
2471 */
2472 if (size % PAGE_SIZE == 0 && flags & SLAB_POISON)
2473 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
2474#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475 }
2476
2477 cachep->colour_off = cache_line_size();
2478 /* Offset must be a multiple of the alignment. */
2479 if (cachep->colour_off < align)
2480 cachep->colour_off = align;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002481 cachep->colour = left_over / cachep->colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482 cachep->slab_size = slab_size;
2483 cachep->flags = flags;
Glauber Costaa618e892012-06-14 16:17:21 +04002484 cachep->allocflags = 0;
Christoph Lameter4b51d662007-02-10 01:43:10 -08002485 if (CONFIG_ZONE_DMA_FLAG && (flags & SLAB_CACHE_DMA))
Glauber Costaa618e892012-06-14 16:17:21 +04002486 cachep->allocflags |= GFP_DMA;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002487 cachep->size = size;
Eric Dumazet6a2d7a92006-12-13 00:34:27 -08002488 cachep->reciprocal_buffer_size = reciprocal_value(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002490 if (flags & CFLGS_OFF_SLAB) {
Victor Fuscob2d55072005-09-10 00:26:36 -07002491 cachep->slabp_cache = kmem_find_general_cachep(slab_size, 0u);
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002492 /*
2493 * This is a possibility for one of the malloc_sizes caches.
2494 * But since we go off slab only for object size greater than
2495 * PAGE_SIZE/8, and malloc_sizes gets created in ascending order,
2496 * this should not happen at all.
2497 * But leave a BUG_ON for some lucky dude.
2498 */
Christoph Lameter6cb8f912007-07-17 04:03:22 -07002499 BUG_ON(ZERO_OR_NULL_PTR(cachep->slabp_cache));
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002500 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501 cachep->ctor = ctor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002502 cachep->name = name;
2503
Pekka Enberg83b519e2009-06-10 19:40:04 +03002504 if (setup_cpu_cache(cachep, gfp)) {
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002505 __kmem_cache_destroy(cachep);
Christoph Lameter039363f2012-07-06 15:25:10 -05002506 return NULL;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002507 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508
Peter Zijlstra83835b32011-07-22 15:26:05 +02002509 if (flags & SLAB_DEBUG_OBJECTS) {
2510 /*
2511 * Would deadlock through slab_destroy()->call_rcu()->
2512 * debug_object_activate()->kmem_cache_alloc().
2513 */
2514 WARN_ON_ONCE(flags & SLAB_DESTROY_BY_RCU);
2515
2516 slab_set_debugobj_lock_classes(cachep);
2517 }
2518
Linus Torvalds1da177e2005-04-16 15:20:36 -07002519 /* cache setup completed, link it into the list */
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002520 list_add(&cachep->list, &cache_chain);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002521oops:
Pekka Enberg83b519e2009-06-10 19:40:04 +03002522 if (slab_is_available()) {
2523 mutex_unlock(&cache_chain_mutex);
2524 put_online_cpus();
2525 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002526 return cachep;
2527}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528
2529#if DEBUG
2530static void check_irq_off(void)
2531{
2532 BUG_ON(!irqs_disabled());
2533}
2534
2535static void check_irq_on(void)
2536{
2537 BUG_ON(irqs_disabled());
2538}
2539
Pekka Enberg343e0d72006-02-01 03:05:50 -08002540static void check_spinlock_acquired(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541{
2542#ifdef CONFIG_SMP
2543 check_irq_off();
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07002544 assert_spin_locked(&cachep->nodelists[numa_mem_id()]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545#endif
2546}
Christoph Lametere498be72005-09-09 13:03:32 -07002547
Pekka Enberg343e0d72006-02-01 03:05:50 -08002548static void check_spinlock_acquired_node(struct kmem_cache *cachep, int node)
Christoph Lametere498be72005-09-09 13:03:32 -07002549{
2550#ifdef CONFIG_SMP
2551 check_irq_off();
2552 assert_spin_locked(&cachep->nodelists[node]->list_lock);
2553#endif
2554}
2555
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556#else
2557#define check_irq_off() do { } while(0)
2558#define check_irq_on() do { } while(0)
2559#define check_spinlock_acquired(x) do { } while(0)
Christoph Lametere498be72005-09-09 13:03:32 -07002560#define check_spinlock_acquired_node(x, y) do { } while(0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561#endif
2562
Christoph Lameteraab22072006-03-22 00:09:06 -08002563static void drain_array(struct kmem_cache *cachep, struct kmem_list3 *l3,
2564 struct array_cache *ac,
2565 int force, int node);
2566
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567static void do_drain(void *arg)
2568{
Andrew Mortona737b3e2006-03-22 00:08:11 -08002569 struct kmem_cache *cachep = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570 struct array_cache *ac;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07002571 int node = numa_mem_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572
2573 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002574 ac = cpu_cache_get(cachep);
Christoph Lameterff694162005-09-22 21:44:02 -07002575 spin_lock(&cachep->nodelists[node]->list_lock);
2576 free_block(cachep, ac->entry, ac->avail, node);
2577 spin_unlock(&cachep->nodelists[node]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578 ac->avail = 0;
2579}
2580
Pekka Enberg343e0d72006-02-01 03:05:50 -08002581static void drain_cpu_caches(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582{
Christoph Lametere498be72005-09-09 13:03:32 -07002583 struct kmem_list3 *l3;
2584 int node;
2585
Jens Axboe15c8b6c2008-05-09 09:39:44 +02002586 on_each_cpu(do_drain, cachep, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587 check_irq_on();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002588 for_each_online_node(node) {
Christoph Lametere498be72005-09-09 13:03:32 -07002589 l3 = cachep->nodelists[node];
Roland Dreiera4523a82006-05-15 11:41:00 -07002590 if (l3 && l3->alien)
2591 drain_alien_cache(cachep, l3->alien);
2592 }
2593
2594 for_each_online_node(node) {
2595 l3 = cachep->nodelists[node];
2596 if (l3)
Christoph Lameteraab22072006-03-22 00:09:06 -08002597 drain_array(cachep, l3, l3->shared, 1, node);
Christoph Lametere498be72005-09-09 13:03:32 -07002598 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599}
2600
Christoph Lametered11d9e2006-06-30 01:55:45 -07002601/*
2602 * Remove slabs from the list of free slabs.
2603 * Specify the number of slabs to drain in tofree.
2604 *
2605 * Returns the actual number of slabs released.
2606 */
2607static int drain_freelist(struct kmem_cache *cache,
2608 struct kmem_list3 *l3, int tofree)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609{
Christoph Lametered11d9e2006-06-30 01:55:45 -07002610 struct list_head *p;
2611 int nr_freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612 struct slab *slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613
Christoph Lametered11d9e2006-06-30 01:55:45 -07002614 nr_freed = 0;
2615 while (nr_freed < tofree && !list_empty(&l3->slabs_free)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616
Christoph Lametered11d9e2006-06-30 01:55:45 -07002617 spin_lock_irq(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07002618 p = l3->slabs_free.prev;
Christoph Lametered11d9e2006-06-30 01:55:45 -07002619 if (p == &l3->slabs_free) {
2620 spin_unlock_irq(&l3->list_lock);
2621 goto out;
2622 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623
Christoph Lametered11d9e2006-06-30 01:55:45 -07002624 slabp = list_entry(p, struct slab, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625#if DEBUG
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002626 BUG_ON(slabp->inuse);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627#endif
2628 list_del(&slabp->list);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002629 /*
2630 * Safe to drop the lock. The slab is no longer linked
2631 * to the cache.
2632 */
2633 l3->free_objects -= cache->num;
Christoph Lametere498be72005-09-09 13:03:32 -07002634 spin_unlock_irq(&l3->list_lock);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002635 slab_destroy(cache, slabp);
2636 nr_freed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637 }
Christoph Lametered11d9e2006-06-30 01:55:45 -07002638out:
2639 return nr_freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640}
2641
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002642/* Called with cache_chain_mutex held to protect against cpu hotplug */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002643static int __cache_shrink(struct kmem_cache *cachep)
Christoph Lametere498be72005-09-09 13:03:32 -07002644{
2645 int ret = 0, i = 0;
2646 struct kmem_list3 *l3;
2647
2648 drain_cpu_caches(cachep);
2649
2650 check_irq_on();
2651 for_each_online_node(i) {
2652 l3 = cachep->nodelists[i];
Christoph Lametered11d9e2006-06-30 01:55:45 -07002653 if (!l3)
2654 continue;
2655
2656 drain_freelist(cachep, l3, l3->free_objects);
2657
2658 ret += !list_empty(&l3->slabs_full) ||
2659 !list_empty(&l3->slabs_partial);
Christoph Lametere498be72005-09-09 13:03:32 -07002660 }
2661 return (ret ? 1 : 0);
2662}
2663
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664/**
2665 * kmem_cache_shrink - Shrink a cache.
2666 * @cachep: The cache to shrink.
2667 *
2668 * Releases as many slabs as possible for a cache.
2669 * To help debugging, a zero exit status indicates all slabs were released.
2670 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002671int kmem_cache_shrink(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672{
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002673 int ret;
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002674 BUG_ON(!cachep || in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002676 get_online_cpus();
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002677 mutex_lock(&cache_chain_mutex);
2678 ret = __cache_shrink(cachep);
2679 mutex_unlock(&cache_chain_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002680 put_online_cpus();
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002681 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682}
2683EXPORT_SYMBOL(kmem_cache_shrink);
2684
2685/**
2686 * kmem_cache_destroy - delete a cache
2687 * @cachep: the cache to destroy
2688 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08002689 * Remove a &struct kmem_cache object from the slab cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690 *
2691 * It is expected this function will be called by a module when it is
2692 * unloaded. This will remove the cache completely, and avoid a duplicate
2693 * cache being allocated each time a module is loaded and unloaded, if the
2694 * module doesn't have persistent in-kernel storage across loads and unloads.
2695 *
2696 * The cache must be empty before calling this function.
2697 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002698 * The caller must guarantee that no one will allocate memory from the cache
Linus Torvalds1da177e2005-04-16 15:20:36 -07002699 * during the kmem_cache_destroy().
2700 */
Alexey Dobriyan133d2052006-09-27 01:49:41 -07002701void kmem_cache_destroy(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702{
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002703 BUG_ON(!cachep || in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002704
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 /* Find the cache in the chain of caches. */
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002706 get_online_cpus();
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002707 mutex_lock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708 /*
2709 * the chain is never empty, cache_cache is never destroyed
2710 */
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002711 list_del(&cachep->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002712 if (__cache_shrink(cachep)) {
2713 slab_error(cachep, "Can't free all objects");
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002714 list_add(&cachep->list, &cache_chain);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002715 mutex_unlock(&cache_chain_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002716 put_online_cpus();
Alexey Dobriyan133d2052006-09-27 01:49:41 -07002717 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 }
2719
2720 if (unlikely(cachep->flags & SLAB_DESTROY_BY_RCU))
Paul E. McKenney7ed9f7e2009-06-25 12:31:37 -07002721 rcu_barrier();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722
Christoph Lameter117f6eb2006-09-25 23:31:37 -07002723 __kmem_cache_destroy(cachep);
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002724 mutex_unlock(&cache_chain_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002725 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726}
2727EXPORT_SYMBOL(kmem_cache_destroy);
2728
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002729/*
2730 * Get the memory for a slab management obj.
2731 * For a slab cache when the slab descriptor is off-slab, slab descriptors
2732 * always come from malloc_sizes caches. The slab descriptor cannot
2733 * come from the same cache which is getting created because,
2734 * when we are searching for an appropriate cache for these
2735 * descriptors in kmem_cache_create, we search through the malloc_sizes array.
2736 * If we are creating a malloc_sizes cache here it would not be visible to
2737 * kmem_find_general_cachep till the initialization is complete.
2738 * Hence we cannot have slabp_cache same as the original cache.
2739 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002740static struct slab *alloc_slabmgmt(struct kmem_cache *cachep, void *objp,
Ravikiran G Thirumalai5b74ada2006-04-10 22:52:53 -07002741 int colour_off, gfp_t local_flags,
2742 int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743{
2744 struct slab *slabp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002745
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746 if (OFF_SLAB(cachep)) {
2747 /* Slab management obj is off-slab. */
Ravikiran G Thirumalai5b74ada2006-04-10 22:52:53 -07002748 slabp = kmem_cache_alloc_node(cachep->slabp_cache,
Pekka Enberg8759ec52008-11-26 10:01:31 +02002749 local_flags, nodeid);
Catalin Marinasd5cff632009-06-11 13:22:40 +01002750 /*
2751 * If the first object in the slab is leaked (it's allocated
2752 * but no one has a reference to it), we want to make sure
2753 * kmemleak does not treat the ->s_mem pointer as a reference
2754 * to the object. Otherwise we will not report the leak.
2755 */
Catalin Marinasc017b4b2009-10-28 13:33:09 +00002756 kmemleak_scan_area(&slabp->list, sizeof(struct list_head),
2757 local_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758 if (!slabp)
2759 return NULL;
2760 } else {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002761 slabp = objp + colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002762 colour_off += cachep->slab_size;
2763 }
2764 slabp->inuse = 0;
2765 slabp->colouroff = colour_off;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002766 slabp->s_mem = objp + colour_off;
Ravikiran G Thirumalai5b74ada2006-04-10 22:52:53 -07002767 slabp->nodeid = nodeid;
Marcin Slusarze51bfd02008-02-10 11:21:54 +01002768 slabp->free = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769 return slabp;
2770}
2771
2772static inline kmem_bufctl_t *slab_bufctl(struct slab *slabp)
2773{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002774 return (kmem_bufctl_t *) (slabp + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002775}
2776
Pekka Enberg343e0d72006-02-01 03:05:50 -08002777static void cache_init_objs(struct kmem_cache *cachep,
Christoph Lametera35afb82007-05-16 22:10:57 -07002778 struct slab *slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779{
2780 int i;
2781
2782 for (i = 0; i < cachep->num; i++) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002783 void *objp = index_to_obj(cachep, slabp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784#if DEBUG
2785 /* need to poison the objs? */
2786 if (cachep->flags & SLAB_POISON)
2787 poison_obj(cachep, objp, POISON_FREE);
2788 if (cachep->flags & SLAB_STORE_USER)
2789 *dbg_userword(cachep, objp) = NULL;
2790
2791 if (cachep->flags & SLAB_RED_ZONE) {
2792 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2793 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2794 }
2795 /*
Andrew Mortona737b3e2006-03-22 00:08:11 -08002796 * Constructors are not allowed to allocate memory from the same
2797 * cache which they are a constructor for. Otherwise, deadlock.
2798 * They must also be threaded.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799 */
2800 if (cachep->ctor && !(cachep->flags & SLAB_POISON))
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002801 cachep->ctor(objp + obj_offset(cachep));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802
2803 if (cachep->flags & SLAB_RED_ZONE) {
2804 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
2805 slab_error(cachep, "constructor overwrote the"
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002806 " end of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
2808 slab_error(cachep, "constructor overwrote the"
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002809 " start of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810 }
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002811 if ((cachep->size % PAGE_SIZE) == 0 &&
Andrew Mortona737b3e2006-03-22 00:08:11 -08002812 OFF_SLAB(cachep) && cachep->flags & SLAB_POISON)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002813 kernel_map_pages(virt_to_page(objp),
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002814 cachep->size / PAGE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815#else
2816 if (cachep->ctor)
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002817 cachep->ctor(objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818#endif
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002819 slab_bufctl(slabp)[i] = i + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002821 slab_bufctl(slabp)[i - 1] = BUFCTL_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822}
2823
Pekka Enberg343e0d72006-02-01 03:05:50 -08002824static void kmem_flagcheck(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825{
Christoph Lameter4b51d662007-02-10 01:43:10 -08002826 if (CONFIG_ZONE_DMA_FLAG) {
2827 if (flags & GFP_DMA)
Glauber Costaa618e892012-06-14 16:17:21 +04002828 BUG_ON(!(cachep->allocflags & GFP_DMA));
Christoph Lameter4b51d662007-02-10 01:43:10 -08002829 else
Glauber Costaa618e892012-06-14 16:17:21 +04002830 BUG_ON(cachep->allocflags & GFP_DMA);
Christoph Lameter4b51d662007-02-10 01:43:10 -08002831 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832}
2833
Andrew Mortona737b3e2006-03-22 00:08:11 -08002834static void *slab_get_obj(struct kmem_cache *cachep, struct slab *slabp,
2835 int nodeid)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002836{
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002837 void *objp = index_to_obj(cachep, slabp, slabp->free);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002838 kmem_bufctl_t next;
2839
2840 slabp->inuse++;
2841 next = slab_bufctl(slabp)[slabp->free];
2842#if DEBUG
2843 slab_bufctl(slabp)[slabp->free] = BUFCTL_FREE;
2844 WARN_ON(slabp->nodeid != nodeid);
2845#endif
2846 slabp->free = next;
2847
2848 return objp;
2849}
2850
Andrew Mortona737b3e2006-03-22 00:08:11 -08002851static void slab_put_obj(struct kmem_cache *cachep, struct slab *slabp,
2852 void *objp, int nodeid)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002853{
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002854 unsigned int objnr = obj_to_index(cachep, slabp, objp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002855
2856#if DEBUG
2857 /* Verify that the slab belongs to the intended node */
2858 WARN_ON(slabp->nodeid != nodeid);
2859
Al Viro871751e2006-03-25 03:06:39 -08002860 if (slab_bufctl(slabp)[objnr] + 1 <= SLAB_LIMIT + 1) {
Matthew Dobson78d382d2006-02-01 03:05:47 -08002861 printk(KERN_ERR "slab: double free detected in cache "
Andrew Mortona737b3e2006-03-22 00:08:11 -08002862 "'%s', objp %p\n", cachep->name, objp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002863 BUG();
2864 }
2865#endif
2866 slab_bufctl(slabp)[objnr] = slabp->free;
2867 slabp->free = objnr;
2868 slabp->inuse--;
2869}
2870
Pekka Enberg47768742006-06-23 02:03:07 -07002871/*
2872 * Map pages beginning at addr to the given cache and slab. This is required
2873 * for the slab allocator to be able to lookup the cache and slab of a
Nick Pigginccd35fb2011-01-07 17:49:17 +11002874 * virtual address for kfree, ksize, and slab debugging.
Pekka Enberg47768742006-06-23 02:03:07 -07002875 */
2876static void slab_map_pages(struct kmem_cache *cache, struct slab *slab,
2877 void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878{
Pekka Enberg47768742006-06-23 02:03:07 -07002879 int nr_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880 struct page *page;
2881
Pekka Enberg47768742006-06-23 02:03:07 -07002882 page = virt_to_page(addr);
Nick Piggin84097512006-03-22 00:08:34 -08002883
Pekka Enberg47768742006-06-23 02:03:07 -07002884 nr_pages = 1;
Nick Piggin84097512006-03-22 00:08:34 -08002885 if (likely(!PageCompound(page)))
Pekka Enberg47768742006-06-23 02:03:07 -07002886 nr_pages <<= cache->gfporder;
2887
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888 do {
Christoph Lameter35026082012-06-13 10:24:56 -05002889 page->slab_cache = cache;
2890 page->slab_page = slab;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891 page++;
Pekka Enberg47768742006-06-23 02:03:07 -07002892 } while (--nr_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893}
2894
2895/*
2896 * Grow (by 1) the number of slabs within a cache. This is called by
2897 * kmem_cache_alloc() when there are no active objs left in a cache.
2898 */
Christoph Lameter3c517a62006-12-06 20:33:29 -08002899static int cache_grow(struct kmem_cache *cachep,
2900 gfp_t flags, int nodeid, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002901{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002902 struct slab *slabp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002903 size_t offset;
2904 gfp_t local_flags;
Christoph Lametere498be72005-09-09 13:03:32 -07002905 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906
Andrew Mortona737b3e2006-03-22 00:08:11 -08002907 /*
2908 * Be lazy and only check for valid flags here, keeping it out of the
2909 * critical path in kmem_cache_alloc().
Linus Torvalds1da177e2005-04-16 15:20:36 -07002910 */
Christoph Lameter6cb06222007-10-16 01:25:41 -07002911 BUG_ON(flags & GFP_SLAB_BUG_MASK);
2912 local_flags = flags & (GFP_CONSTRAINT_MASK|GFP_RECLAIM_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002914 /* Take the l3 list lock to change the colour_next on this node */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915 check_irq_off();
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002916 l3 = cachep->nodelists[nodeid];
2917 spin_lock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918
2919 /* Get colour for the slab, and cal the next value. */
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002920 offset = l3->colour_next;
2921 l3->colour_next++;
2922 if (l3->colour_next >= cachep->colour)
2923 l3->colour_next = 0;
2924 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002926 offset *= cachep->colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927
2928 if (local_flags & __GFP_WAIT)
2929 local_irq_enable();
2930
2931 /*
2932 * The test for missing atomic flag is performed here, rather than
2933 * the more obvious place, simply to reduce the critical path length
2934 * in kmem_cache_alloc(). If a caller is seriously mis-behaving they
2935 * will eventually be caught here (where it matters).
2936 */
2937 kmem_flagcheck(cachep, flags);
2938
Andrew Mortona737b3e2006-03-22 00:08:11 -08002939 /*
2940 * Get mem for the objs. Attempt to allocate a physical page from
2941 * 'nodeid'.
Christoph Lametere498be72005-09-09 13:03:32 -07002942 */
Christoph Lameter3c517a62006-12-06 20:33:29 -08002943 if (!objp)
Andrew Mortonb8c1c5d2007-07-24 12:02:40 -07002944 objp = kmem_getpages(cachep, local_flags, nodeid);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002945 if (!objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002946 goto failed;
2947
2948 /* Get slab management. */
Christoph Lameter3c517a62006-12-06 20:33:29 -08002949 slabp = alloc_slabmgmt(cachep, objp, offset,
Christoph Lameter6cb06222007-10-16 01:25:41 -07002950 local_flags & ~GFP_CONSTRAINT_MASK, nodeid);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002951 if (!slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952 goto opps1;
2953
Pekka Enberg47768742006-06-23 02:03:07 -07002954 slab_map_pages(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955
Christoph Lametera35afb82007-05-16 22:10:57 -07002956 cache_init_objs(cachep, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957
2958 if (local_flags & __GFP_WAIT)
2959 local_irq_disable();
2960 check_irq_off();
Christoph Lametere498be72005-09-09 13:03:32 -07002961 spin_lock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962
2963 /* Make slab active. */
Christoph Lametere498be72005-09-09 13:03:32 -07002964 list_add_tail(&slabp->list, &(l3->slabs_free));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965 STATS_INC_GROWN(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07002966 l3->free_objects += cachep->num;
2967 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 return 1;
Andrew Mortona737b3e2006-03-22 00:08:11 -08002969opps1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970 kmem_freepages(cachep, objp);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002971failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002972 if (local_flags & __GFP_WAIT)
2973 local_irq_disable();
2974 return 0;
2975}
2976
2977#if DEBUG
2978
2979/*
2980 * Perform extra freeing checks:
2981 * - detect bad pointers.
2982 * - POISON/RED_ZONE checking
Linus Torvalds1da177e2005-04-16 15:20:36 -07002983 */
2984static void kfree_debugcheck(const void *objp)
2985{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986 if (!virt_addr_valid(objp)) {
2987 printk(KERN_ERR "kfree_debugcheck: out of range ptr %lxh.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002988 (unsigned long)objp);
2989 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991}
2992
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002993static inline void verify_redzone_free(struct kmem_cache *cache, void *obj)
2994{
David Woodhouseb46b8f12007-05-08 00:22:59 -07002995 unsigned long long redzone1, redzone2;
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002996
2997 redzone1 = *dbg_redzone1(cache, obj);
2998 redzone2 = *dbg_redzone2(cache, obj);
2999
3000 /*
3001 * Redzone is ok.
3002 */
3003 if (redzone1 == RED_ACTIVE && redzone2 == RED_ACTIVE)
3004 return;
3005
3006 if (redzone1 == RED_INACTIVE && redzone2 == RED_INACTIVE)
3007 slab_error(cache, "double free detected");
3008 else
3009 slab_error(cache, "memory outside object was overwritten");
3010
David Woodhouseb46b8f12007-05-08 00:22:59 -07003011 printk(KERN_ERR "%p: redzone 1:0x%llx, redzone 2:0x%llx.\n",
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07003012 obj, redzone1, redzone2);
3013}
3014
Pekka Enberg343e0d72006-02-01 03:05:50 -08003015static void *cache_free_debugcheck(struct kmem_cache *cachep, void *objp,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003016 void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017{
3018 struct page *page;
3019 unsigned int objnr;
3020 struct slab *slabp;
3021
Matthew Wilcox80cbd912007-11-29 12:05:13 -07003022 BUG_ON(virt_to_cache(objp) != cachep);
3023
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003024 objp -= obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003025 kfree_debugcheck(objp);
Christoph Lameterb49af682007-05-06 14:49:41 -07003026 page = virt_to_head_page(objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003027
Christoph Lameter35026082012-06-13 10:24:56 -05003028 slabp = page->slab_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029
3030 if (cachep->flags & SLAB_RED_ZONE) {
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07003031 verify_redzone_free(cachep, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
3033 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
3034 }
3035 if (cachep->flags & SLAB_STORE_USER)
3036 *dbg_userword(cachep, objp) = caller;
3037
Pekka Enberg8fea4e92006-03-22 00:08:10 -08003038 objnr = obj_to_index(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039
3040 BUG_ON(objnr >= cachep->num);
Pekka Enberg8fea4e92006-03-22 00:08:10 -08003041 BUG_ON(objp != index_to_obj(cachep, slabp, objnr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042
Al Viro871751e2006-03-25 03:06:39 -08003043#ifdef CONFIG_DEBUG_SLAB_LEAK
3044 slab_bufctl(slabp)[objnr] = BUFCTL_FREE;
3045#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003046 if (cachep->flags & SLAB_POISON) {
3047#ifdef CONFIG_DEBUG_PAGEALLOC
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003048 if ((cachep->size % PAGE_SIZE)==0 && OFF_SLAB(cachep)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049 store_stackinfo(cachep, objp, (unsigned long)caller);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003050 kernel_map_pages(virt_to_page(objp),
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003051 cachep->size / PAGE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052 } else {
3053 poison_obj(cachep, objp, POISON_FREE);
3054 }
3055#else
3056 poison_obj(cachep, objp, POISON_FREE);
3057#endif
3058 }
3059 return objp;
3060}
3061
Pekka Enberg343e0d72006-02-01 03:05:50 -08003062static void check_slabp(struct kmem_cache *cachep, struct slab *slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003063{
3064 kmem_bufctl_t i;
3065 int entries = 0;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003066
Linus Torvalds1da177e2005-04-16 15:20:36 -07003067 /* Check slab's freelist to see if this obj is there. */
3068 for (i = slabp->free; i != BUFCTL_END; i = slab_bufctl(slabp)[i]) {
3069 entries++;
3070 if (entries > cachep->num || i >= cachep->num)
3071 goto bad;
3072 }
3073 if (entries != cachep->num - slabp->inuse) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08003074bad:
3075 printk(KERN_ERR "slab: Internal list corruption detected in "
Dave Jonesface37f2011-11-15 15:03:52 -08003076 "cache '%s'(%d), slabp %p(%d). Tainted(%s). Hexdump:\n",
3077 cachep->name, cachep->num, slabp, slabp->inuse,
3078 print_tainted());
Sebastian Andrzej Siewiorfdde6ab2011-07-29 18:22:13 +02003079 print_hex_dump(KERN_ERR, "", DUMP_PREFIX_OFFSET, 16, 1, slabp,
3080 sizeof(*slabp) + cachep->num * sizeof(kmem_bufctl_t),
3081 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003082 BUG();
3083 }
3084}
3085#else
3086#define kfree_debugcheck(x) do { } while(0)
3087#define cache_free_debugcheck(x,objp,z) (objp)
3088#define check_slabp(x,y) do { } while(0)
3089#endif
3090
Pekka Enberg343e0d72006-02-01 03:05:50 -08003091static void *cache_alloc_refill(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003092{
3093 int batchcount;
3094 struct kmem_list3 *l3;
3095 struct array_cache *ac;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07003096 int node;
3097
Andrew Mortona737b3e2006-03-22 00:08:11 -08003098retry:
Joe Korty6d2144d2008-03-05 15:04:59 -08003099 check_irq_off();
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003100 node = numa_mem_id();
Joe Korty6d2144d2008-03-05 15:04:59 -08003101 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003102 batchcount = ac->batchcount;
3103 if (!ac->touched && batchcount > BATCHREFILL_LIMIT) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08003104 /*
3105 * If there was little recent activity on this cache, then
3106 * perform only a partial refill. Otherwise we could generate
3107 * refill bouncing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108 */
3109 batchcount = BATCHREFILL_LIMIT;
3110 }
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07003111 l3 = cachep->nodelists[node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112
Christoph Lametere498be72005-09-09 13:03:32 -07003113 BUG_ON(ac->avail > 0 || !l3);
3114 spin_lock(&l3->list_lock);
3115
Christoph Lameter3ded1752006-03-25 03:06:44 -08003116 /* See if we can refill from the shared array */
Nick Piggin44b57f12010-01-27 22:27:40 +11003117 if (l3->shared && transfer_objects(ac, l3->shared, batchcount)) {
3118 l3->shared->touched = 1;
Christoph Lameter3ded1752006-03-25 03:06:44 -08003119 goto alloc_done;
Nick Piggin44b57f12010-01-27 22:27:40 +11003120 }
Christoph Lameter3ded1752006-03-25 03:06:44 -08003121
Linus Torvalds1da177e2005-04-16 15:20:36 -07003122 while (batchcount > 0) {
3123 struct list_head *entry;
3124 struct slab *slabp;
3125 /* Get slab alloc is to come from. */
3126 entry = l3->slabs_partial.next;
3127 if (entry == &l3->slabs_partial) {
3128 l3->free_touched = 1;
3129 entry = l3->slabs_free.next;
3130 if (entry == &l3->slabs_free)
3131 goto must_grow;
3132 }
3133
3134 slabp = list_entry(entry, struct slab, list);
3135 check_slabp(cachep, slabp);
3136 check_spinlock_acquired(cachep);
Pekka Enberg714b81712007-05-06 14:49:03 -07003137
3138 /*
3139 * The slab was either on partial or free list so
3140 * there must be at least one object available for
3141 * allocation.
3142 */
roel kluin249b9f32008-10-29 17:18:07 -04003143 BUG_ON(slabp->inuse >= cachep->num);
Pekka Enberg714b81712007-05-06 14:49:03 -07003144
Linus Torvalds1da177e2005-04-16 15:20:36 -07003145 while (slabp->inuse < cachep->num && batchcount--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146 STATS_INC_ALLOCED(cachep);
3147 STATS_INC_ACTIVE(cachep);
3148 STATS_SET_HIGH(cachep);
3149
Matthew Dobson78d382d2006-02-01 03:05:47 -08003150 ac->entry[ac->avail++] = slab_get_obj(cachep, slabp,
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07003151 node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152 }
3153 check_slabp(cachep, slabp);
3154
3155 /* move slabp to correct slabp list: */
3156 list_del(&slabp->list);
3157 if (slabp->free == BUFCTL_END)
3158 list_add(&slabp->list, &l3->slabs_full);
3159 else
3160 list_add(&slabp->list, &l3->slabs_partial);
3161 }
3162
Andrew Mortona737b3e2006-03-22 00:08:11 -08003163must_grow:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164 l3->free_objects -= ac->avail;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003165alloc_done:
Christoph Lametere498be72005-09-09 13:03:32 -07003166 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003167
3168 if (unlikely(!ac->avail)) {
3169 int x;
Christoph Lameter3c517a62006-12-06 20:33:29 -08003170 x = cache_grow(cachep, flags | GFP_THISNODE, node, NULL);
Christoph Lametere498be72005-09-09 13:03:32 -07003171
Andrew Mortona737b3e2006-03-22 00:08:11 -08003172 /* cache_grow can reenable interrupts, then ac could change. */
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003173 ac = cpu_cache_get(cachep);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003174 if (!x && ac->avail == 0) /* no objects in sight? abort */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175 return NULL;
3176
Andrew Mortona737b3e2006-03-22 00:08:11 -08003177 if (!ac->avail) /* objects refilled by interrupt? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003178 goto retry;
3179 }
3180 ac->touched = 1;
Christoph Lametere498be72005-09-09 13:03:32 -07003181 return ac->entry[--ac->avail];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182}
3183
Andrew Mortona737b3e2006-03-22 00:08:11 -08003184static inline void cache_alloc_debugcheck_before(struct kmem_cache *cachep,
3185 gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186{
3187 might_sleep_if(flags & __GFP_WAIT);
3188#if DEBUG
3189 kmem_flagcheck(cachep, flags);
3190#endif
3191}
3192
3193#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08003194static void *cache_alloc_debugcheck_after(struct kmem_cache *cachep,
3195 gfp_t flags, void *objp, void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003197 if (!objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003198 return objp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003199 if (cachep->flags & SLAB_POISON) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003200#ifdef CONFIG_DEBUG_PAGEALLOC
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003201 if ((cachep->size % PAGE_SIZE) == 0 && OFF_SLAB(cachep))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003202 kernel_map_pages(virt_to_page(objp),
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003203 cachep->size / PAGE_SIZE, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003204 else
3205 check_poison_obj(cachep, objp);
3206#else
3207 check_poison_obj(cachep, objp);
3208#endif
3209 poison_obj(cachep, objp, POISON_INUSE);
3210 }
3211 if (cachep->flags & SLAB_STORE_USER)
3212 *dbg_userword(cachep, objp) = caller;
3213
3214 if (cachep->flags & SLAB_RED_ZONE) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08003215 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE ||
3216 *dbg_redzone2(cachep, objp) != RED_INACTIVE) {
3217 slab_error(cachep, "double free, or memory outside"
3218 " object was overwritten");
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003219 printk(KERN_ERR
David Woodhouseb46b8f12007-05-08 00:22:59 -07003220 "%p: redzone 1:0x%llx, redzone 2:0x%llx\n",
Andrew Mortona737b3e2006-03-22 00:08:11 -08003221 objp, *dbg_redzone1(cachep, objp),
3222 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003223 }
3224 *dbg_redzone1(cachep, objp) = RED_ACTIVE;
3225 *dbg_redzone2(cachep, objp) = RED_ACTIVE;
3226 }
Al Viro871751e2006-03-25 03:06:39 -08003227#ifdef CONFIG_DEBUG_SLAB_LEAK
3228 {
3229 struct slab *slabp;
3230 unsigned objnr;
3231
Christoph Lameter35026082012-06-13 10:24:56 -05003232 slabp = virt_to_head_page(objp)->slab_page;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003233 objnr = (unsigned)(objp - slabp->s_mem) / cachep->size;
Al Viro871751e2006-03-25 03:06:39 -08003234 slab_bufctl(slabp)[objnr] = BUFCTL_ACTIVE;
3235 }
3236#endif
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003237 objp += obj_offset(cachep);
Christoph Lameter4f104932007-05-06 14:50:17 -07003238 if (cachep->ctor && cachep->flags & SLAB_POISON)
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07003239 cachep->ctor(objp);
Tetsuo Handa7ea466f2011-07-21 09:42:45 +09003240 if (ARCH_SLAB_MINALIGN &&
3241 ((unsigned long)objp & (ARCH_SLAB_MINALIGN-1))) {
Kevin Hilmana44b56d2006-12-06 20:32:11 -08003242 printk(KERN_ERR "0x%p: not aligned to ARCH_SLAB_MINALIGN=%d\n",
Hugh Dickinsc2251502011-07-11 13:35:08 -07003243 objp, (int)ARCH_SLAB_MINALIGN);
Kevin Hilmana44b56d2006-12-06 20:32:11 -08003244 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245 return objp;
3246}
3247#else
3248#define cache_alloc_debugcheck_after(a,b,objp,d) (objp)
3249#endif
3250
Akinobu Mita773ff602008-12-23 19:37:01 +09003251static bool slab_should_failslab(struct kmem_cache *cachep, gfp_t flags)
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003252{
3253 if (cachep == &cache_cache)
Akinobu Mita773ff602008-12-23 19:37:01 +09003254 return false;
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003255
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003256 return should_failslab(cachep->object_size, flags, cachep->flags);
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003257}
3258
Pekka Enberg343e0d72006-02-01 03:05:50 -08003259static inline void *____cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003260{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003261 void *objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003262 struct array_cache *ac;
3263
Alok N Kataria5c382302005-09-27 21:45:46 -07003264 check_irq_off();
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003265
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003266 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003267 if (likely(ac->avail)) {
3268 STATS_INC_ALLOCHIT(cachep);
3269 ac->touched = 1;
Christoph Lametere498be72005-09-09 13:03:32 -07003270 objp = ac->entry[--ac->avail];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271 } else {
3272 STATS_INC_ALLOCMISS(cachep);
3273 objp = cache_alloc_refill(cachep, flags);
J. R. Okajimaddbf2e82009-12-02 16:55:50 +09003274 /*
3275 * the 'ac' may be updated by cache_alloc_refill(),
3276 * and kmemleak_erase() requires its correct value.
3277 */
3278 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279 }
Catalin Marinasd5cff632009-06-11 13:22:40 +01003280 /*
3281 * To avoid a false negative, if an object that is in one of the
3282 * per-CPU caches is leaked, we need to make sure kmemleak doesn't
3283 * treat the array pointers as a reference to the object.
3284 */
J. R. Okajimaf3d8b532009-12-02 16:55:49 +09003285 if (objp)
3286 kmemleak_erase(&ac->entry[ac->avail]);
Alok N Kataria5c382302005-09-27 21:45:46 -07003287 return objp;
3288}
3289
Christoph Lametere498be72005-09-09 13:03:32 -07003290#ifdef CONFIG_NUMA
3291/*
Paul Jacksonb2455392006-03-24 03:16:12 -08003292 * Try allocating on another node if PF_SPREAD_SLAB|PF_MEMPOLICY.
Paul Jacksonc61afb12006-03-24 03:16:08 -08003293 *
3294 * If we are in_interrupt, then process context, including cpusets and
3295 * mempolicy, may not apply and should not be used for allocation policy.
3296 */
3297static void *alternate_node_alloc(struct kmem_cache *cachep, gfp_t flags)
3298{
3299 int nid_alloc, nid_here;
3300
Christoph Lameter765c4502006-09-27 01:50:08 -07003301 if (in_interrupt() || (flags & __GFP_THISNODE))
Paul Jacksonc61afb12006-03-24 03:16:08 -08003302 return NULL;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003303 nid_alloc = nid_here = numa_mem_id();
Paul Jacksonc61afb12006-03-24 03:16:08 -08003304 if (cpuset_do_slab_mem_spread() && (cachep->flags & SLAB_MEM_SPREAD))
Jack Steiner6adef3e2010-05-26 14:42:49 -07003305 nid_alloc = cpuset_slab_spread_node();
Paul Jacksonc61afb12006-03-24 03:16:08 -08003306 else if (current->mempolicy)
Andi Kleene7b691b2012-06-09 02:40:03 -07003307 nid_alloc = slab_node();
Paul Jacksonc61afb12006-03-24 03:16:08 -08003308 if (nid_alloc != nid_here)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003309 return ____cache_alloc_node(cachep, flags, nid_alloc);
Paul Jacksonc61afb12006-03-24 03:16:08 -08003310 return NULL;
3311}
3312
3313/*
Christoph Lameter765c4502006-09-27 01:50:08 -07003314 * Fallback function if there was no memory available and no objects on a
Christoph Lameter3c517a62006-12-06 20:33:29 -08003315 * certain node and fall back is permitted. First we scan all the
3316 * available nodelists for available objects. If that fails then we
3317 * perform an allocation without specifying a node. This allows the page
3318 * allocator to do its reclaim / fallback magic. We then insert the
3319 * slab into the proper nodelist and then allocate from it.
Christoph Lameter765c4502006-09-27 01:50:08 -07003320 */
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003321static void *fallback_alloc(struct kmem_cache *cache, gfp_t flags)
Christoph Lameter765c4502006-09-27 01:50:08 -07003322{
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003323 struct zonelist *zonelist;
3324 gfp_t local_flags;
Mel Gormandd1a2392008-04-28 02:12:17 -07003325 struct zoneref *z;
Mel Gorman54a6eb52008-04-28 02:12:16 -07003326 struct zone *zone;
3327 enum zone_type high_zoneidx = gfp_zone(flags);
Christoph Lameter765c4502006-09-27 01:50:08 -07003328 void *obj = NULL;
Christoph Lameter3c517a62006-12-06 20:33:29 -08003329 int nid;
Mel Gormancc9a6c82012-03-21 16:34:11 -07003330 unsigned int cpuset_mems_cookie;
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003331
3332 if (flags & __GFP_THISNODE)
3333 return NULL;
3334
Christoph Lameter6cb06222007-10-16 01:25:41 -07003335 local_flags = flags & (GFP_CONSTRAINT_MASK|GFP_RECLAIM_MASK);
Christoph Lameter765c4502006-09-27 01:50:08 -07003336
Mel Gormancc9a6c82012-03-21 16:34:11 -07003337retry_cpuset:
3338 cpuset_mems_cookie = get_mems_allowed();
Andi Kleene7b691b2012-06-09 02:40:03 -07003339 zonelist = node_zonelist(slab_node(), flags);
Mel Gormancc9a6c82012-03-21 16:34:11 -07003340
Christoph Lameter3c517a62006-12-06 20:33:29 -08003341retry:
3342 /*
3343 * Look through allowed nodes for objects available
3344 * from existing per node queues.
3345 */
Mel Gorman54a6eb52008-04-28 02:12:16 -07003346 for_each_zone_zonelist(zone, z, zonelist, high_zoneidx) {
3347 nid = zone_to_nid(zone);
Christoph Lameteraedb0eb2006-10-21 10:24:16 -07003348
Mel Gorman54a6eb52008-04-28 02:12:16 -07003349 if (cpuset_zone_allowed_hardwall(zone, flags) &&
Christoph Lameter3c517a62006-12-06 20:33:29 -08003350 cache->nodelists[nid] &&
Christoph Lameter481c5342008-06-21 16:46:35 -07003351 cache->nodelists[nid]->free_objects) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003352 obj = ____cache_alloc_node(cache,
3353 flags | GFP_THISNODE, nid);
Christoph Lameter481c5342008-06-21 16:46:35 -07003354 if (obj)
3355 break;
3356 }
Christoph Lameter3c517a62006-12-06 20:33:29 -08003357 }
3358
Christoph Lametercfce6602007-05-06 14:50:17 -07003359 if (!obj) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003360 /*
3361 * This allocation will be performed within the constraints
3362 * of the current cpuset / memory policy requirements.
3363 * We may trigger various forms of reclaim on the allowed
3364 * set and go into memory reserves if necessary.
3365 */
Christoph Lameterdd47ea72006-12-13 00:34:11 -08003366 if (local_flags & __GFP_WAIT)
3367 local_irq_enable();
3368 kmem_flagcheck(cache, flags);
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003369 obj = kmem_getpages(cache, local_flags, numa_mem_id());
Christoph Lameterdd47ea72006-12-13 00:34:11 -08003370 if (local_flags & __GFP_WAIT)
3371 local_irq_disable();
Christoph Lameter3c517a62006-12-06 20:33:29 -08003372 if (obj) {
3373 /*
3374 * Insert into the appropriate per node queues
3375 */
3376 nid = page_to_nid(virt_to_page(obj));
3377 if (cache_grow(cache, flags, nid, obj)) {
3378 obj = ____cache_alloc_node(cache,
3379 flags | GFP_THISNODE, nid);
3380 if (!obj)
3381 /*
3382 * Another processor may allocate the
3383 * objects in the slab since we are
3384 * not holding any locks.
3385 */
3386 goto retry;
3387 } else {
Hugh Dickinsb6a60452007-01-05 16:36:36 -08003388 /* cache_grow already freed obj */
Christoph Lameter3c517a62006-12-06 20:33:29 -08003389 obj = NULL;
3390 }
3391 }
Christoph Lameteraedb0eb2006-10-21 10:24:16 -07003392 }
Mel Gormancc9a6c82012-03-21 16:34:11 -07003393
3394 if (unlikely(!put_mems_allowed(cpuset_mems_cookie) && !obj))
3395 goto retry_cpuset;
Christoph Lameter765c4502006-09-27 01:50:08 -07003396 return obj;
3397}
3398
3399/*
Christoph Lametere498be72005-09-09 13:03:32 -07003400 * A interface to enable slab creation on nodeid
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401 */
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003402static void *____cache_alloc_node(struct kmem_cache *cachep, gfp_t flags,
Andrew Mortona737b3e2006-03-22 00:08:11 -08003403 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07003404{
3405 struct list_head *entry;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003406 struct slab *slabp;
3407 struct kmem_list3 *l3;
3408 void *obj;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003409 int x;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003411 l3 = cachep->nodelists[nodeid];
3412 BUG_ON(!l3);
Christoph Lametere498be72005-09-09 13:03:32 -07003413
Andrew Mortona737b3e2006-03-22 00:08:11 -08003414retry:
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08003415 check_irq_off();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003416 spin_lock(&l3->list_lock);
3417 entry = l3->slabs_partial.next;
3418 if (entry == &l3->slabs_partial) {
3419 l3->free_touched = 1;
3420 entry = l3->slabs_free.next;
3421 if (entry == &l3->slabs_free)
3422 goto must_grow;
3423 }
Christoph Lametere498be72005-09-09 13:03:32 -07003424
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003425 slabp = list_entry(entry, struct slab, list);
3426 check_spinlock_acquired_node(cachep, nodeid);
3427 check_slabp(cachep, slabp);
Christoph Lametere498be72005-09-09 13:03:32 -07003428
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003429 STATS_INC_NODEALLOCS(cachep);
3430 STATS_INC_ACTIVE(cachep);
3431 STATS_SET_HIGH(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003432
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003433 BUG_ON(slabp->inuse == cachep->num);
Christoph Lametere498be72005-09-09 13:03:32 -07003434
Matthew Dobson78d382d2006-02-01 03:05:47 -08003435 obj = slab_get_obj(cachep, slabp, nodeid);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003436 check_slabp(cachep, slabp);
3437 l3->free_objects--;
3438 /* move slabp to correct slabp list: */
3439 list_del(&slabp->list);
Christoph Lametere498be72005-09-09 13:03:32 -07003440
Andrew Mortona737b3e2006-03-22 00:08:11 -08003441 if (slabp->free == BUFCTL_END)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003442 list_add(&slabp->list, &l3->slabs_full);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003443 else
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003444 list_add(&slabp->list, &l3->slabs_partial);
Christoph Lametere498be72005-09-09 13:03:32 -07003445
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003446 spin_unlock(&l3->list_lock);
3447 goto done;
Christoph Lametere498be72005-09-09 13:03:32 -07003448
Andrew Mortona737b3e2006-03-22 00:08:11 -08003449must_grow:
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003450 spin_unlock(&l3->list_lock);
Christoph Lameter3c517a62006-12-06 20:33:29 -08003451 x = cache_grow(cachep, flags | GFP_THISNODE, nodeid, NULL);
Christoph Lameter765c4502006-09-27 01:50:08 -07003452 if (x)
3453 goto retry;
Christoph Lametere498be72005-09-09 13:03:32 -07003454
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003455 return fallback_alloc(cachep, flags);
Christoph Lameter765c4502006-09-27 01:50:08 -07003456
Andrew Mortona737b3e2006-03-22 00:08:11 -08003457done:
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003458 return obj;
Christoph Lametere498be72005-09-09 13:03:32 -07003459}
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003460
3461/**
3462 * kmem_cache_alloc_node - Allocate an object on the specified node
3463 * @cachep: The cache to allocate from.
3464 * @flags: See kmalloc().
3465 * @nodeid: node number of the target node.
3466 * @caller: return address of caller, used for debug information
3467 *
3468 * Identical to kmem_cache_alloc but it will allocate memory on the given
3469 * node, which can improve the performance for cpu bound structures.
3470 *
3471 * Fallback to other node is possible if __GFP_THISNODE is not set.
3472 */
3473static __always_inline void *
3474__cache_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid,
3475 void *caller)
3476{
3477 unsigned long save_flags;
3478 void *ptr;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003479 int slab_node = numa_mem_id();
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003480
Benjamin Herrenschmidtdcce2842009-06-18 13:24:12 +10003481 flags &= gfp_allowed_mask;
Pekka Enberg7e85ee02009-06-12 14:03:06 +03003482
Nick Piggincf40bd12009-01-21 08:12:39 +01003483 lockdep_trace_alloc(flags);
3484
Akinobu Mita773ff602008-12-23 19:37:01 +09003485 if (slab_should_failslab(cachep, flags))
Akinobu Mita824ebef2007-05-06 14:49:58 -07003486 return NULL;
3487
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003488 cache_alloc_debugcheck_before(cachep, flags);
3489 local_irq_save(save_flags);
3490
Andrew Mortoneacbbae2011-07-28 13:59:49 -07003491 if (nodeid == NUMA_NO_NODE)
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003492 nodeid = slab_node;
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003493
3494 if (unlikely(!cachep->nodelists[nodeid])) {
3495 /* Node not bootstrapped yet */
3496 ptr = fallback_alloc(cachep, flags);
3497 goto out;
3498 }
3499
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003500 if (nodeid == slab_node) {
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003501 /*
3502 * Use the locally cached objects if possible.
3503 * However ____cache_alloc does not allow fallback
3504 * to other nodes. It may fail while we still have
3505 * objects on other nodes available.
3506 */
3507 ptr = ____cache_alloc(cachep, flags);
3508 if (ptr)
3509 goto out;
3510 }
3511 /* ___cache_alloc_node can fall back to other nodes */
3512 ptr = ____cache_alloc_node(cachep, flags, nodeid);
3513 out:
3514 local_irq_restore(save_flags);
3515 ptr = cache_alloc_debugcheck_after(cachep, flags, ptr, caller);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003516 kmemleak_alloc_recursive(ptr, cachep->object_size, 1, cachep->flags,
Catalin Marinasd5cff632009-06-11 13:22:40 +01003517 flags);
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003518
Pekka Enbergc175eea2008-05-09 20:35:53 +02003519 if (likely(ptr))
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003520 kmemcheck_slab_alloc(cachep, flags, ptr, cachep->object_size);
Pekka Enbergc175eea2008-05-09 20:35:53 +02003521
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003522 if (unlikely((flags & __GFP_ZERO) && ptr))
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003523 memset(ptr, 0, cachep->object_size);
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003524
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003525 return ptr;
3526}
3527
3528static __always_inline void *
3529__do_cache_alloc(struct kmem_cache *cache, gfp_t flags)
3530{
3531 void *objp;
3532
3533 if (unlikely(current->flags & (PF_SPREAD_SLAB | PF_MEMPOLICY))) {
3534 objp = alternate_node_alloc(cache, flags);
3535 if (objp)
3536 goto out;
3537 }
3538 objp = ____cache_alloc(cache, flags);
3539
3540 /*
3541 * We may just have run out of memory on the local node.
3542 * ____cache_alloc_node() knows how to locate memory on other nodes
3543 */
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003544 if (!objp)
3545 objp = ____cache_alloc_node(cache, flags, numa_mem_id());
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003546
3547 out:
3548 return objp;
3549}
3550#else
3551
3552static __always_inline void *
3553__do_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
3554{
3555 return ____cache_alloc(cachep, flags);
3556}
3557
3558#endif /* CONFIG_NUMA */
3559
3560static __always_inline void *
3561__cache_alloc(struct kmem_cache *cachep, gfp_t flags, void *caller)
3562{
3563 unsigned long save_flags;
3564 void *objp;
3565
Benjamin Herrenschmidtdcce2842009-06-18 13:24:12 +10003566 flags &= gfp_allowed_mask;
Pekka Enberg7e85ee02009-06-12 14:03:06 +03003567
Nick Piggincf40bd12009-01-21 08:12:39 +01003568 lockdep_trace_alloc(flags);
3569
Akinobu Mita773ff602008-12-23 19:37:01 +09003570 if (slab_should_failslab(cachep, flags))
Akinobu Mita824ebef2007-05-06 14:49:58 -07003571 return NULL;
3572
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003573 cache_alloc_debugcheck_before(cachep, flags);
3574 local_irq_save(save_flags);
3575 objp = __do_cache_alloc(cachep, flags);
3576 local_irq_restore(save_flags);
3577 objp = cache_alloc_debugcheck_after(cachep, flags, objp, caller);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003578 kmemleak_alloc_recursive(objp, cachep->object_size, 1, cachep->flags,
Catalin Marinasd5cff632009-06-11 13:22:40 +01003579 flags);
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003580 prefetchw(objp);
3581
Pekka Enbergc175eea2008-05-09 20:35:53 +02003582 if (likely(objp))
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003583 kmemcheck_slab_alloc(cachep, flags, objp, cachep->object_size);
Pekka Enbergc175eea2008-05-09 20:35:53 +02003584
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003585 if (unlikely((flags & __GFP_ZERO) && objp))
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003586 memset(objp, 0, cachep->object_size);
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003587
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003588 return objp;
3589}
Christoph Lametere498be72005-09-09 13:03:32 -07003590
3591/*
3592 * Caller needs to acquire correct kmem_list's list_lock
3593 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003594static void free_block(struct kmem_cache *cachep, void **objpp, int nr_objects,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003595 int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003596{
3597 int i;
Christoph Lametere498be72005-09-09 13:03:32 -07003598 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003599
3600 for (i = 0; i < nr_objects; i++) {
3601 void *objp = objpp[i];
3602 struct slab *slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003603
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -08003604 slabp = virt_to_slab(objp);
Christoph Lameterff694162005-09-22 21:44:02 -07003605 l3 = cachep->nodelists[node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606 list_del(&slabp->list);
Christoph Lameterff694162005-09-22 21:44:02 -07003607 check_spinlock_acquired_node(cachep, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003608 check_slabp(cachep, slabp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08003609 slab_put_obj(cachep, slabp, objp, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003610 STATS_DEC_ACTIVE(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003611 l3->free_objects++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003612 check_slabp(cachep, slabp);
3613
3614 /* fixup slab chains */
3615 if (slabp->inuse == 0) {
Christoph Lametere498be72005-09-09 13:03:32 -07003616 if (l3->free_objects > l3->free_limit) {
3617 l3->free_objects -= cachep->num;
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07003618 /* No need to drop any previously held
3619 * lock here, even if we have a off-slab slab
3620 * descriptor it is guaranteed to come from
3621 * a different cache, refer to comments before
3622 * alloc_slabmgmt.
3623 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003624 slab_destroy(cachep, slabp);
3625 } else {
Christoph Lametere498be72005-09-09 13:03:32 -07003626 list_add(&slabp->list, &l3->slabs_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627 }
3628 } else {
3629 /* Unconditionally move a slab to the end of the
3630 * partial list on free - maximum time for the
3631 * other objects to be freed, too.
3632 */
Christoph Lametere498be72005-09-09 13:03:32 -07003633 list_add_tail(&slabp->list, &l3->slabs_partial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003634 }
3635 }
3636}
3637
Pekka Enberg343e0d72006-02-01 03:05:50 -08003638static void cache_flusharray(struct kmem_cache *cachep, struct array_cache *ac)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003639{
3640 int batchcount;
Christoph Lametere498be72005-09-09 13:03:32 -07003641 struct kmem_list3 *l3;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003642 int node = numa_mem_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003643
3644 batchcount = ac->batchcount;
3645#if DEBUG
3646 BUG_ON(!batchcount || batchcount > ac->avail);
3647#endif
3648 check_irq_off();
Christoph Lameterff694162005-09-22 21:44:02 -07003649 l3 = cachep->nodelists[node];
Ingo Molnar873623d2006-07-13 14:44:38 +02003650 spin_lock(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07003651 if (l3->shared) {
3652 struct array_cache *shared_array = l3->shared;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003653 int max = shared_array->limit - shared_array->avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003654 if (max) {
3655 if (batchcount > max)
3656 batchcount = max;
Christoph Lametere498be72005-09-09 13:03:32 -07003657 memcpy(&(shared_array->entry[shared_array->avail]),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003658 ac->entry, sizeof(void *) * batchcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003659 shared_array->avail += batchcount;
3660 goto free_done;
3661 }
3662 }
3663
Christoph Lameterff694162005-09-22 21:44:02 -07003664 free_block(cachep, ac->entry, batchcount, node);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003665free_done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003666#if STATS
3667 {
3668 int i = 0;
3669 struct list_head *p;
3670
Christoph Lametere498be72005-09-09 13:03:32 -07003671 p = l3->slabs_free.next;
3672 while (p != &(l3->slabs_free)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003673 struct slab *slabp;
3674
3675 slabp = list_entry(p, struct slab, list);
3676 BUG_ON(slabp->inuse);
3677
3678 i++;
3679 p = p->next;
3680 }
3681 STATS_SET_FREEABLE(cachep, i);
3682 }
3683#endif
Christoph Lametere498be72005-09-09 13:03:32 -07003684 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685 ac->avail -= batchcount;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003686 memmove(ac->entry, &(ac->entry[batchcount]), sizeof(void *)*ac->avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003687}
3688
3689/*
Andrew Mortona737b3e2006-03-22 00:08:11 -08003690 * Release an obj back to its cache. If the obj has a constructed state, it must
3691 * be in this state _before_ it is released. Called with disabled ints.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003692 */
Suleiman Souhlala947eb92011-06-02 00:16:42 -07003693static inline void __cache_free(struct kmem_cache *cachep, void *objp,
3694 void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003695{
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003696 struct array_cache *ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003697
3698 check_irq_off();
Catalin Marinasd5cff632009-06-11 13:22:40 +01003699 kmemleak_free_recursive(objp, cachep->flags);
Suleiman Souhlala947eb92011-06-02 00:16:42 -07003700 objp = cache_free_debugcheck(cachep, objp, caller);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003702 kmemcheck_slab_free(cachep, objp, cachep->object_size);
Pekka Enbergc175eea2008-05-09 20:35:53 +02003703
Siddha, Suresh B1807a1a2007-08-22 14:01:49 -07003704 /*
3705 * Skip calling cache_free_alien() when the platform is not numa.
3706 * This will avoid cache misses that happen while accessing slabp (which
3707 * is per page memory reference) to get nodeid. Instead use a global
3708 * variable to skip the call, which is mostly likely to be present in
3709 * the cache.
3710 */
Mel Gormanb6e68bc2009-06-16 15:32:16 -07003711 if (nr_online_nodes > 1 && cache_free_alien(cachep, objp))
Pekka Enberg729bd0b2006-06-23 02:03:05 -07003712 return;
Christoph Lametere498be72005-09-09 13:03:32 -07003713
Linus Torvalds1da177e2005-04-16 15:20:36 -07003714 if (likely(ac->avail < ac->limit)) {
3715 STATS_INC_FREEHIT(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003716 } else {
3717 STATS_INC_FREEMISS(cachep);
3718 cache_flusharray(cachep, ac);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003719 }
Zhao Jin42c8c992011-08-27 00:26:17 +08003720
3721 ac->entry[ac->avail++] = objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003722}
3723
3724/**
3725 * kmem_cache_alloc - Allocate an object
3726 * @cachep: The cache to allocate from.
3727 * @flags: See kmalloc().
3728 *
3729 * Allocate an object from this cache. The flags are only relevant
3730 * if the cache has no available objects.
3731 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003732void *kmem_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003733{
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003734 void *ret = __cache_alloc(cachep, flags, __builtin_return_address(0));
3735
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003736 trace_kmem_cache_alloc(_RET_IP_, ret,
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003737 cachep->object_size, cachep->size, flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003738
3739 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003740}
3741EXPORT_SYMBOL(kmem_cache_alloc);
3742
Li Zefan0f24f122009-12-11 15:45:30 +08003743#ifdef CONFIG_TRACING
Steven Rostedt85beb582010-11-24 16:23:34 -05003744void *
3745kmem_cache_alloc_trace(size_t size, struct kmem_cache *cachep, gfp_t flags)
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003746{
Steven Rostedt85beb582010-11-24 16:23:34 -05003747 void *ret;
3748
3749 ret = __cache_alloc(cachep, flags, __builtin_return_address(0));
3750
3751 trace_kmalloc(_RET_IP_, ret,
3752 size, slab_buffer_size(cachep), flags);
3753 return ret;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003754}
Steven Rostedt85beb582010-11-24 16:23:34 -05003755EXPORT_SYMBOL(kmem_cache_alloc_trace);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003756#endif
3757
Linus Torvalds1da177e2005-04-16 15:20:36 -07003758#ifdef CONFIG_NUMA
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003759void *kmem_cache_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid)
3760{
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003761 void *ret = __cache_alloc_node(cachep, flags, nodeid,
3762 __builtin_return_address(0));
3763
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003764 trace_kmem_cache_alloc_node(_RET_IP_, ret,
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003765 cachep->object_size, cachep->size,
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003766 flags, nodeid);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003767
3768 return ret;
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003769}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770EXPORT_SYMBOL(kmem_cache_alloc_node);
3771
Li Zefan0f24f122009-12-11 15:45:30 +08003772#ifdef CONFIG_TRACING
Steven Rostedt85beb582010-11-24 16:23:34 -05003773void *kmem_cache_alloc_node_trace(size_t size,
3774 struct kmem_cache *cachep,
3775 gfp_t flags,
3776 int nodeid)
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003777{
Steven Rostedt85beb582010-11-24 16:23:34 -05003778 void *ret;
3779
3780 ret = __cache_alloc_node(cachep, flags, nodeid,
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003781 __builtin_return_address(0));
Steven Rostedt85beb582010-11-24 16:23:34 -05003782 trace_kmalloc_node(_RET_IP_, ret,
3783 size, slab_buffer_size(cachep),
3784 flags, nodeid);
3785 return ret;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003786}
Steven Rostedt85beb582010-11-24 16:23:34 -05003787EXPORT_SYMBOL(kmem_cache_alloc_node_trace);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003788#endif
3789
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003790static __always_inline void *
3791__do_kmalloc_node(size_t size, gfp_t flags, int node, void *caller)
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003792{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003793 struct kmem_cache *cachep;
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003794
3795 cachep = kmem_find_general_cachep(size, flags);
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003796 if (unlikely(ZERO_OR_NULL_PTR(cachep)))
3797 return cachep;
Steven Rostedt85beb582010-11-24 16:23:34 -05003798 return kmem_cache_alloc_node_trace(size, cachep, flags, node);
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003799}
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003800
Li Zefan0bb38a52009-12-11 15:45:50 +08003801#if defined(CONFIG_DEBUG_SLAB) || defined(CONFIG_TRACING)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003802void *__kmalloc_node(size_t size, gfp_t flags, int node)
3803{
3804 return __do_kmalloc_node(size, flags, node,
3805 __builtin_return_address(0));
3806}
Christoph Hellwigdbe5e692006-09-25 23:31:36 -07003807EXPORT_SYMBOL(__kmalloc_node);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003808
3809void *__kmalloc_node_track_caller(size_t size, gfp_t flags,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003810 int node, unsigned long caller)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003811{
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003812 return __do_kmalloc_node(size, flags, node, (void *)caller);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003813}
3814EXPORT_SYMBOL(__kmalloc_node_track_caller);
3815#else
3816void *__kmalloc_node(size_t size, gfp_t flags, int node)
3817{
3818 return __do_kmalloc_node(size, flags, node, NULL);
3819}
3820EXPORT_SYMBOL(__kmalloc_node);
Li Zefan0bb38a52009-12-11 15:45:50 +08003821#endif /* CONFIG_DEBUG_SLAB || CONFIG_TRACING */
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003822#endif /* CONFIG_NUMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823
3824/**
Paul Drynoff800590f2006-06-23 02:03:48 -07003825 * __do_kmalloc - allocate memory
Linus Torvalds1da177e2005-04-16 15:20:36 -07003826 * @size: how many bytes of memory are required.
Paul Drynoff800590f2006-06-23 02:03:48 -07003827 * @flags: the type of memory to allocate (see kmalloc).
Randy Dunlap911851e2006-03-22 00:08:14 -08003828 * @caller: function caller for debug tracking of the caller
Linus Torvalds1da177e2005-04-16 15:20:36 -07003829 */
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003830static __always_inline void *__do_kmalloc(size_t size, gfp_t flags,
3831 void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003832{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003833 struct kmem_cache *cachep;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003834 void *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003835
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003836 /* If you want to save a few bytes .text space: replace
3837 * __ with kmem_.
3838 * Then kmalloc uses the uninlined functions instead of the inline
3839 * functions.
3840 */
3841 cachep = __find_general_cachep(size, flags);
Linus Torvaldsa5c96d82007-07-19 13:17:15 -07003842 if (unlikely(ZERO_OR_NULL_PTR(cachep)))
3843 return cachep;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003844 ret = __cache_alloc(cachep, flags, caller);
3845
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003846 trace_kmalloc((unsigned long) caller, ret,
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003847 size, cachep->size, flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003848
3849 return ret;
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003850}
3851
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003852
Li Zefan0bb38a52009-12-11 15:45:50 +08003853#if defined(CONFIG_DEBUG_SLAB) || defined(CONFIG_TRACING)
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003854void *__kmalloc(size_t size, gfp_t flags)
3855{
Al Viro871751e2006-03-25 03:06:39 -08003856 return __do_kmalloc(size, flags, __builtin_return_address(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003857}
3858EXPORT_SYMBOL(__kmalloc);
3859
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003860void *__kmalloc_track_caller(size_t size, gfp_t flags, unsigned long caller)
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003861{
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003862 return __do_kmalloc(size, flags, (void *)caller);
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003863}
3864EXPORT_SYMBOL(__kmalloc_track_caller);
Christoph Hellwig1d2c8ee2006-10-04 02:15:25 -07003865
3866#else
3867void *__kmalloc(size_t size, gfp_t flags)
3868{
3869 return __do_kmalloc(size, flags, NULL);
3870}
3871EXPORT_SYMBOL(__kmalloc);
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003872#endif
3873
Linus Torvalds1da177e2005-04-16 15:20:36 -07003874/**
3875 * kmem_cache_free - Deallocate an object
3876 * @cachep: The cache the allocation was from.
3877 * @objp: The previously allocated object.
3878 *
3879 * Free an object which was previously allocated from this
3880 * cache.
3881 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003882void kmem_cache_free(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003883{
3884 unsigned long flags;
3885
3886 local_irq_save(flags);
Feng Tangd97d4762012-07-02 14:29:10 +08003887 debug_check_no_locks_freed(objp, cachep->object_size);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -07003888 if (!(cachep->flags & SLAB_DEBUG_OBJECTS))
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003889 debug_check_no_obj_freed(objp, cachep->object_size);
Suleiman Souhlala947eb92011-06-02 00:16:42 -07003890 __cache_free(cachep, objp, __builtin_return_address(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891 local_irq_restore(flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003892
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003893 trace_kmem_cache_free(_RET_IP_, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003894}
3895EXPORT_SYMBOL(kmem_cache_free);
3896
3897/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898 * kfree - free previously allocated memory
3899 * @objp: pointer returned by kmalloc.
3900 *
Pekka Enberg80e93ef2005-09-09 13:10:16 -07003901 * If @objp is NULL, no operation is performed.
3902 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003903 * Don't free memory not originally allocated by kmalloc()
3904 * or you will run into trouble.
3905 */
3906void kfree(const void *objp)
3907{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003908 struct kmem_cache *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909 unsigned long flags;
3910
Pekka Enberg2121db72009-03-25 11:05:57 +02003911 trace_kfree(_RET_IP_, objp);
3912
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003913 if (unlikely(ZERO_OR_NULL_PTR(objp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003914 return;
3915 local_irq_save(flags);
3916 kfree_debugcheck(objp);
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -08003917 c = virt_to_cache(objp);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003918 debug_check_no_locks_freed(objp, c->object_size);
3919
3920 debug_check_no_obj_freed(objp, c->object_size);
Suleiman Souhlala947eb92011-06-02 00:16:42 -07003921 __cache_free(c, (void *)objp, __builtin_return_address(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922 local_irq_restore(flags);
3923}
3924EXPORT_SYMBOL(kfree);
3925
Pekka Enberg343e0d72006-02-01 03:05:50 -08003926unsigned int kmem_cache_size(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003927{
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003928 return cachep->object_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929}
3930EXPORT_SYMBOL(kmem_cache_size);
3931
Christoph Lametere498be72005-09-09 13:03:32 -07003932/*
Simon Arlott183ff222007-10-20 01:27:18 +02003933 * This initializes kmem_list3 or resizes various caches for all nodes.
Christoph Lametere498be72005-09-09 13:03:32 -07003934 */
Pekka Enberg83b519e2009-06-10 19:40:04 +03003935static int alloc_kmemlist(struct kmem_cache *cachep, gfp_t gfp)
Christoph Lametere498be72005-09-09 13:03:32 -07003936{
3937 int node;
3938 struct kmem_list3 *l3;
Christoph Lametercafeb022006-03-25 03:06:46 -08003939 struct array_cache *new_shared;
Paul Menage3395ee02006-12-06 20:32:16 -08003940 struct array_cache **new_alien = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07003941
Mel Gorman9c09a952008-01-24 05:49:54 -08003942 for_each_online_node(node) {
Christoph Lametercafeb022006-03-25 03:06:46 -08003943
Paul Menage3395ee02006-12-06 20:32:16 -08003944 if (use_alien_caches) {
Pekka Enberg83b519e2009-06-10 19:40:04 +03003945 new_alien = alloc_alien_cache(node, cachep->limit, gfp);
Paul Menage3395ee02006-12-06 20:32:16 -08003946 if (!new_alien)
3947 goto fail;
3948 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003949
Eric Dumazet63109842007-05-06 14:49:28 -07003950 new_shared = NULL;
3951 if (cachep->shared) {
3952 new_shared = alloc_arraycache(node,
Christoph Lameter0718dc22006-03-25 03:06:47 -08003953 cachep->shared*cachep->batchcount,
Pekka Enberg83b519e2009-06-10 19:40:04 +03003954 0xbaadf00d, gfp);
Eric Dumazet63109842007-05-06 14:49:28 -07003955 if (!new_shared) {
3956 free_alien_cache(new_alien);
3957 goto fail;
3958 }
Christoph Lameter0718dc22006-03-25 03:06:47 -08003959 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003960
Andrew Mortona737b3e2006-03-22 00:08:11 -08003961 l3 = cachep->nodelists[node];
3962 if (l3) {
Christoph Lametercafeb022006-03-25 03:06:46 -08003963 struct array_cache *shared = l3->shared;
3964
Christoph Lametere498be72005-09-09 13:03:32 -07003965 spin_lock_irq(&l3->list_lock);
3966
Christoph Lametercafeb022006-03-25 03:06:46 -08003967 if (shared)
Christoph Lameter0718dc22006-03-25 03:06:47 -08003968 free_block(cachep, shared->entry,
3969 shared->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -07003970
Christoph Lametercafeb022006-03-25 03:06:46 -08003971 l3->shared = new_shared;
3972 if (!l3->alien) {
Christoph Lametere498be72005-09-09 13:03:32 -07003973 l3->alien = new_alien;
3974 new_alien = NULL;
3975 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003976 l3->free_limit = (1 + nr_cpus_node(node)) *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003977 cachep->batchcount + cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07003978 spin_unlock_irq(&l3->list_lock);
Christoph Lametercafeb022006-03-25 03:06:46 -08003979 kfree(shared);
Christoph Lametere498be72005-09-09 13:03:32 -07003980 free_alien_cache(new_alien);
3981 continue;
3982 }
Pekka Enberg83b519e2009-06-10 19:40:04 +03003983 l3 = kmalloc_node(sizeof(struct kmem_list3), gfp, node);
Christoph Lameter0718dc22006-03-25 03:06:47 -08003984 if (!l3) {
3985 free_alien_cache(new_alien);
3986 kfree(new_shared);
Christoph Lametere498be72005-09-09 13:03:32 -07003987 goto fail;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003988 }
Christoph Lametere498be72005-09-09 13:03:32 -07003989
3990 kmem_list3_init(l3);
3991 l3->next_reap = jiffies + REAPTIMEOUT_LIST3 +
Andrew Mortona737b3e2006-03-22 00:08:11 -08003992 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
Christoph Lametercafeb022006-03-25 03:06:46 -08003993 l3->shared = new_shared;
Christoph Lametere498be72005-09-09 13:03:32 -07003994 l3->alien = new_alien;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003995 l3->free_limit = (1 + nr_cpus_node(node)) *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003996 cachep->batchcount + cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07003997 cachep->nodelists[node] = l3;
3998 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003999 return 0;
Christoph Lameter0718dc22006-03-25 03:06:47 -08004000
Andrew Mortona737b3e2006-03-22 00:08:11 -08004001fail:
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05004002 if (!cachep->list.next) {
Christoph Lameter0718dc22006-03-25 03:06:47 -08004003 /* Cache is not active yet. Roll back what we did */
4004 node--;
4005 while (node >= 0) {
4006 if (cachep->nodelists[node]) {
4007 l3 = cachep->nodelists[node];
4008
4009 kfree(l3->shared);
4010 free_alien_cache(l3->alien);
4011 kfree(l3);
4012 cachep->nodelists[node] = NULL;
4013 }
4014 node--;
4015 }
4016 }
Christoph Lametercafeb022006-03-25 03:06:46 -08004017 return -ENOMEM;
Christoph Lametere498be72005-09-09 13:03:32 -07004018}
4019
Linus Torvalds1da177e2005-04-16 15:20:36 -07004020struct ccupdate_struct {
Pekka Enberg343e0d72006-02-01 03:05:50 -08004021 struct kmem_cache *cachep;
Eric Dumazetacfe7d72011-07-25 08:55:42 +02004022 struct array_cache *new[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004023};
4024
4025static void do_ccupdate_local(void *info)
4026{
Andrew Mortona737b3e2006-03-22 00:08:11 -08004027 struct ccupdate_struct *new = info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004028 struct array_cache *old;
4029
4030 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08004031 old = cpu_cache_get(new->cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07004032
Linus Torvalds1da177e2005-04-16 15:20:36 -07004033 new->cachep->array[smp_processor_id()] = new->new[smp_processor_id()];
4034 new->new[smp_processor_id()] = old;
4035}
4036
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -08004037/* Always called with the cache_chain_mutex held */
Andrew Mortona737b3e2006-03-22 00:08:11 -08004038static int do_tune_cpucache(struct kmem_cache *cachep, int limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03004039 int batchcount, int shared, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004040{
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004041 struct ccupdate_struct *new;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07004042 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043
Eric Dumazetacfe7d72011-07-25 08:55:42 +02004044 new = kzalloc(sizeof(*new) + nr_cpu_ids * sizeof(struct array_cache *),
4045 gfp);
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004046 if (!new)
4047 return -ENOMEM;
4048
Christoph Lametere498be72005-09-09 13:03:32 -07004049 for_each_online_cpu(i) {
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07004050 new->new[i] = alloc_arraycache(cpu_to_mem(i), limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03004051 batchcount, gfp);
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004052 if (!new->new[i]) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004053 for (i--; i >= 0; i--)
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004054 kfree(new->new[i]);
4055 kfree(new);
Christoph Lametere498be72005-09-09 13:03:32 -07004056 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004057 }
4058 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004059 new->cachep = cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004060
Jens Axboe15c8b6c2008-05-09 09:39:44 +02004061 on_each_cpu(do_ccupdate_local, (void *)new, 1);
Christoph Lametere498be72005-09-09 13:03:32 -07004062
Linus Torvalds1da177e2005-04-16 15:20:36 -07004063 check_irq_on();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004064 cachep->batchcount = batchcount;
4065 cachep->limit = limit;
Christoph Lametere498be72005-09-09 13:03:32 -07004066 cachep->shared = shared;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004067
Christoph Lametere498be72005-09-09 13:03:32 -07004068 for_each_online_cpu(i) {
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004069 struct array_cache *ccold = new->new[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004070 if (!ccold)
4071 continue;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07004072 spin_lock_irq(&cachep->nodelists[cpu_to_mem(i)]->list_lock);
4073 free_block(cachep, ccold->entry, ccold->avail, cpu_to_mem(i));
4074 spin_unlock_irq(&cachep->nodelists[cpu_to_mem(i)]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004075 kfree(ccold);
4076 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004077 kfree(new);
Pekka Enberg83b519e2009-06-10 19:40:04 +03004078 return alloc_kmemlist(cachep, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004079}
4080
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -08004081/* Called with cache_chain_mutex held always */
Pekka Enberg83b519e2009-06-10 19:40:04 +03004082static int enable_cpucache(struct kmem_cache *cachep, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004083{
4084 int err;
4085 int limit, shared;
4086
Andrew Mortona737b3e2006-03-22 00:08:11 -08004087 /*
4088 * The head array serves three purposes:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004089 * - create a LIFO ordering, i.e. return objects that are cache-warm
4090 * - reduce the number of spinlock operations.
Andrew Mortona737b3e2006-03-22 00:08:11 -08004091 * - reduce the number of linked list operations on the slab and
Linus Torvalds1da177e2005-04-16 15:20:36 -07004092 * bufctl chains: array operations are cheaper.
4093 * The numbers are guessed, we should auto-tune as described by
4094 * Bonwick.
4095 */
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05004096 if (cachep->size > 131072)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004097 limit = 1;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05004098 else if (cachep->size > PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004099 limit = 8;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05004100 else if (cachep->size > 1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004101 limit = 24;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05004102 else if (cachep->size > 256)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004103 limit = 54;
4104 else
4105 limit = 120;
4106
Andrew Mortona737b3e2006-03-22 00:08:11 -08004107 /*
4108 * CPU bound tasks (e.g. network routing) can exhibit cpu bound
Linus Torvalds1da177e2005-04-16 15:20:36 -07004109 * allocation behaviour: Most allocs on one cpu, most free operations
4110 * on another cpu. For these cases, an efficient object passing between
4111 * cpus is necessary. This is provided by a shared array. The array
4112 * replaces Bonwick's magazine layer.
4113 * On uniprocessor, it's functionally equivalent (but less efficient)
4114 * to a larger limit. Thus disabled by default.
4115 */
4116 shared = 0;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05004117 if (cachep->size <= PAGE_SIZE && num_possible_cpus() > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004118 shared = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004119
4120#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08004121 /*
4122 * With debugging enabled, large batchcount lead to excessively long
4123 * periods with disabled local interrupts. Limit the batchcount
Linus Torvalds1da177e2005-04-16 15:20:36 -07004124 */
4125 if (limit > 32)
4126 limit = 32;
4127#endif
Pekka Enberg83b519e2009-06-10 19:40:04 +03004128 err = do_tune_cpucache(cachep, limit, (limit + 1) / 2, shared, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004129 if (err)
4130 printk(KERN_ERR "enable_cpucache failed for %s, error %d.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004131 cachep->name, -err);
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07004132 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004133}
4134
Christoph Lameter1b552532006-03-22 00:09:07 -08004135/*
4136 * Drain an array if it contains any elements taking the l3 lock only if
Christoph Lameterb18e7e62006-03-22 00:09:07 -08004137 * necessary. Note that the l3 listlock also protects the array_cache
4138 * if drain_array() is used on the shared array.
Christoph Lameter1b552532006-03-22 00:09:07 -08004139 */
H Hartley Sweeten68a1b192011-01-11 17:49:32 -06004140static void drain_array(struct kmem_cache *cachep, struct kmem_list3 *l3,
Christoph Lameter1b552532006-03-22 00:09:07 -08004141 struct array_cache *ac, int force, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004142{
4143 int tofree;
4144
Christoph Lameter1b552532006-03-22 00:09:07 -08004145 if (!ac || !ac->avail)
4146 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004147 if (ac->touched && !force) {
4148 ac->touched = 0;
Christoph Lameterb18e7e62006-03-22 00:09:07 -08004149 } else {
Christoph Lameter1b552532006-03-22 00:09:07 -08004150 spin_lock_irq(&l3->list_lock);
Christoph Lameterb18e7e62006-03-22 00:09:07 -08004151 if (ac->avail) {
4152 tofree = force ? ac->avail : (ac->limit + 4) / 5;
4153 if (tofree > ac->avail)
4154 tofree = (ac->avail + 1) / 2;
4155 free_block(cachep, ac->entry, tofree, node);
4156 ac->avail -= tofree;
4157 memmove(ac->entry, &(ac->entry[tofree]),
4158 sizeof(void *) * ac->avail);
4159 }
Christoph Lameter1b552532006-03-22 00:09:07 -08004160 spin_unlock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004161 }
4162}
4163
4164/**
4165 * cache_reap - Reclaim memory from caches.
Randy Dunlap05fb6bf2007-02-28 20:12:13 -08004166 * @w: work descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -07004167 *
4168 * Called from workqueue/eventd every few seconds.
4169 * Purpose:
4170 * - clear the per-cpu caches for this CPU.
4171 * - return freeable pages to the main free memory pool.
4172 *
Andrew Mortona737b3e2006-03-22 00:08:11 -08004173 * If we cannot acquire the cache chain mutex then just give up - we'll try
4174 * again on the next iteration.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004175 */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004176static void cache_reap(struct work_struct *w)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004177{
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004178 struct kmem_cache *searchp;
Christoph Lametere498be72005-09-09 13:03:32 -07004179 struct kmem_list3 *l3;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07004180 int node = numa_mem_id();
Jean Delvarebf6aede2009-04-02 16:56:54 -07004181 struct delayed_work *work = to_delayed_work(w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004182
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004183 if (!mutex_trylock(&cache_chain_mutex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004184 /* Give up. Setup the next iteration. */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004185 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004186
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05004187 list_for_each_entry(searchp, &cache_chain, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004188 check_irq_on();
4189
Christoph Lameter35386e32006-03-22 00:09:05 -08004190 /*
4191 * We only take the l3 lock if absolutely necessary and we
4192 * have established with reasonable certainty that
4193 * we can do some work if the lock was obtained.
4194 */
Christoph Lameteraab22072006-03-22 00:09:06 -08004195 l3 = searchp->nodelists[node];
Christoph Lameter35386e32006-03-22 00:09:05 -08004196
Christoph Lameter8fce4d82006-03-09 17:33:54 -08004197 reap_alien(searchp, l3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004198
Christoph Lameteraab22072006-03-22 00:09:06 -08004199 drain_array(searchp, l3, cpu_cache_get(searchp), 0, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004200
Christoph Lameter35386e32006-03-22 00:09:05 -08004201 /*
4202 * These are racy checks but it does not matter
4203 * if we skip one check or scan twice.
4204 */
Christoph Lametere498be72005-09-09 13:03:32 -07004205 if (time_after(l3->next_reap, jiffies))
Christoph Lameter35386e32006-03-22 00:09:05 -08004206 goto next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004207
Christoph Lametere498be72005-09-09 13:03:32 -07004208 l3->next_reap = jiffies + REAPTIMEOUT_LIST3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004209
Christoph Lameteraab22072006-03-22 00:09:06 -08004210 drain_array(searchp, l3, l3->shared, 0, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004211
Christoph Lametered11d9e2006-06-30 01:55:45 -07004212 if (l3->free_touched)
Christoph Lametere498be72005-09-09 13:03:32 -07004213 l3->free_touched = 0;
Christoph Lametered11d9e2006-06-30 01:55:45 -07004214 else {
4215 int freed;
4216
4217 freed = drain_freelist(searchp, l3, (l3->free_limit +
4218 5 * searchp->num - 1) / (5 * searchp->num));
4219 STATS_ADD_REAPED(searchp, freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004220 }
Christoph Lameter35386e32006-03-22 00:09:05 -08004221next:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004222 cond_resched();
4223 }
4224 check_irq_on();
Ingo Molnarfc0abb12006-01-18 17:42:33 -08004225 mutex_unlock(&cache_chain_mutex);
Christoph Lameter8fce4d82006-03-09 17:33:54 -08004226 next_reap_node();
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004227out:
Andrew Mortona737b3e2006-03-22 00:08:11 -08004228 /* Set up the next iteration */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004229 schedule_delayed_work(work, round_jiffies_relative(REAPTIMEOUT_CPUC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004230}
4231
Linus Torvalds158a9622008-01-02 13:04:48 -08004232#ifdef CONFIG_SLABINFO
Linus Torvalds1da177e2005-04-16 15:20:36 -07004233
Pekka Enberg85289f92006-01-08 01:00:36 -08004234static void print_slabinfo_header(struct seq_file *m)
4235{
4236 /*
4237 * Output format version, so at least we can change it
4238 * without _too_ many complaints.
4239 */
4240#if STATS
4241 seq_puts(m, "slabinfo - version: 2.1 (statistics)\n");
4242#else
4243 seq_puts(m, "slabinfo - version: 2.1\n");
4244#endif
4245 seq_puts(m, "# name <active_objs> <num_objs> <objsize> "
4246 "<objperslab> <pagesperslab>");
4247 seq_puts(m, " : tunables <limit> <batchcount> <sharedfactor>");
4248 seq_puts(m, " : slabdata <active_slabs> <num_slabs> <sharedavail>");
4249#if STATS
4250 seq_puts(m, " : globalstat <listallocs> <maxobjs> <grown> <reaped> "
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -07004251 "<error> <maxfreeable> <nodeallocs> <remotefrees> <alienoverflow>");
Pekka Enberg85289f92006-01-08 01:00:36 -08004252 seq_puts(m, " : cpustat <allochit> <allocmiss> <freehit> <freemiss>");
4253#endif
4254 seq_putc(m, '\n');
4255}
4256
Linus Torvalds1da177e2005-04-16 15:20:36 -07004257static void *s_start(struct seq_file *m, loff_t *pos)
4258{
4259 loff_t n = *pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004260
Ingo Molnarfc0abb12006-01-18 17:42:33 -08004261 mutex_lock(&cache_chain_mutex);
Pekka Enberg85289f92006-01-08 01:00:36 -08004262 if (!n)
4263 print_slabinfo_header(m);
Pavel Emelianovb92151b2007-07-15 23:38:04 -07004264
4265 return seq_list_start(&cache_chain, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004266}
4267
4268static void *s_next(struct seq_file *m, void *p, loff_t *pos)
4269{
Pavel Emelianovb92151b2007-07-15 23:38:04 -07004270 return seq_list_next(p, &cache_chain, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004271}
4272
4273static void s_stop(struct seq_file *m, void *p)
4274{
Ingo Molnarfc0abb12006-01-18 17:42:33 -08004275 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004276}
4277
4278static int s_show(struct seq_file *m, void *p)
4279{
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05004280 struct kmem_cache *cachep = list_entry(p, struct kmem_cache, list);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004281 struct slab *slabp;
4282 unsigned long active_objs;
4283 unsigned long num_objs;
4284 unsigned long active_slabs = 0;
4285 unsigned long num_slabs, free_objects = 0, shared_avail = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07004286 const char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004287 char *error = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07004288 int node;
4289 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004290
Linus Torvalds1da177e2005-04-16 15:20:36 -07004291 active_objs = 0;
4292 num_slabs = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07004293 for_each_online_node(node) {
4294 l3 = cachep->nodelists[node];
4295 if (!l3)
4296 continue;
4297
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08004298 check_irq_on();
4299 spin_lock_irq(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07004300
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004301 list_for_each_entry(slabp, &l3->slabs_full, list) {
Christoph Lametere498be72005-09-09 13:03:32 -07004302 if (slabp->inuse != cachep->num && !error)
4303 error = "slabs_full accounting error";
4304 active_objs += cachep->num;
4305 active_slabs++;
4306 }
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004307 list_for_each_entry(slabp, &l3->slabs_partial, list) {
Christoph Lametere498be72005-09-09 13:03:32 -07004308 if (slabp->inuse == cachep->num && !error)
4309 error = "slabs_partial inuse accounting error";
4310 if (!slabp->inuse && !error)
4311 error = "slabs_partial/inuse accounting error";
4312 active_objs += slabp->inuse;
4313 active_slabs++;
4314 }
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004315 list_for_each_entry(slabp, &l3->slabs_free, list) {
Christoph Lametere498be72005-09-09 13:03:32 -07004316 if (slabp->inuse && !error)
4317 error = "slabs_free/inuse accounting error";
4318 num_slabs++;
4319 }
4320 free_objects += l3->free_objects;
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08004321 if (l3->shared)
4322 shared_avail += l3->shared->avail;
Christoph Lametere498be72005-09-09 13:03:32 -07004323
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08004324 spin_unlock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004325 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004326 num_slabs += active_slabs;
4327 num_objs = num_slabs * cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07004328 if (num_objs - active_objs != free_objects && !error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004329 error = "free_objects accounting error";
4330
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004331 name = cachep->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004332 if (error)
4333 printk(KERN_ERR "slab: cache %s error: %s\n", name, error);
4334
4335 seq_printf(m, "%-17s %6lu %6lu %6u %4u %4d",
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05004336 name, active_objs, num_objs, cachep->size,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004337 cachep->num, (1 << cachep->gfporder));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004338 seq_printf(m, " : tunables %4u %4u %4u",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004339 cachep->limit, cachep->batchcount, cachep->shared);
Christoph Lametere498be72005-09-09 13:03:32 -07004340 seq_printf(m, " : slabdata %6lu %6lu %6lu",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004341 active_slabs, num_slabs, shared_avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004342#if STATS
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004343 { /* list3 stats */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004344 unsigned long high = cachep->high_mark;
4345 unsigned long allocs = cachep->num_allocations;
4346 unsigned long grown = cachep->grown;
4347 unsigned long reaped = cachep->reaped;
4348 unsigned long errors = cachep->errors;
4349 unsigned long max_freeable = cachep->max_freeable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004350 unsigned long node_allocs = cachep->node_allocs;
Christoph Lametere498be72005-09-09 13:03:32 -07004351 unsigned long node_frees = cachep->node_frees;
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -07004352 unsigned long overflows = cachep->node_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004353
Joe Perchese92dd4f2010-03-26 19:27:58 -07004354 seq_printf(m, " : globalstat %7lu %6lu %5lu %4lu "
4355 "%4lu %4lu %4lu %4lu %4lu",
4356 allocs, high, grown,
4357 reaped, errors, max_freeable, node_allocs,
4358 node_frees, overflows);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004359 }
4360 /* cpu stats */
4361 {
4362 unsigned long allochit = atomic_read(&cachep->allochit);
4363 unsigned long allocmiss = atomic_read(&cachep->allocmiss);
4364 unsigned long freehit = atomic_read(&cachep->freehit);
4365 unsigned long freemiss = atomic_read(&cachep->freemiss);
4366
4367 seq_printf(m, " : cpustat %6lu %6lu %6lu %6lu",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004368 allochit, allocmiss, freehit, freemiss);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004369 }
4370#endif
4371 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07004372 return 0;
4373}
4374
4375/*
4376 * slabinfo_op - iterator that generates /proc/slabinfo
4377 *
4378 * Output layout:
4379 * cache-name
4380 * num-active-objs
4381 * total-objs
4382 * object size
4383 * num-active-slabs
4384 * total-slabs
4385 * num-pages-per-slab
4386 * + further values on SMP and with statistics enabled
4387 */
4388
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04004389static const struct seq_operations slabinfo_op = {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004390 .start = s_start,
4391 .next = s_next,
4392 .stop = s_stop,
4393 .show = s_show,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004394};
4395
4396#define MAX_SLABINFO_WRITE 128
4397/**
4398 * slabinfo_write - Tuning for the slab allocator
4399 * @file: unused
4400 * @buffer: user buffer
4401 * @count: data length
4402 * @ppos: unused
4403 */
H Hartley Sweeten68a1b192011-01-11 17:49:32 -06004404static ssize_t slabinfo_write(struct file *file, const char __user *buffer,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004405 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004406{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004407 char kbuf[MAX_SLABINFO_WRITE + 1], *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004408 int limit, batchcount, shared, res;
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004409 struct kmem_cache *cachep;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004410
Linus Torvalds1da177e2005-04-16 15:20:36 -07004411 if (count > MAX_SLABINFO_WRITE)
4412 return -EINVAL;
4413 if (copy_from_user(&kbuf, buffer, count))
4414 return -EFAULT;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004415 kbuf[MAX_SLABINFO_WRITE] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07004416
4417 tmp = strchr(kbuf, ' ');
4418 if (!tmp)
4419 return -EINVAL;
4420 *tmp = '\0';
4421 tmp++;
4422 if (sscanf(tmp, " %d %d %d", &limit, &batchcount, &shared) != 3)
4423 return -EINVAL;
4424
4425 /* Find the cache in the chain of caches. */
Ingo Molnarfc0abb12006-01-18 17:42:33 -08004426 mutex_lock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004427 res = -EINVAL;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05004428 list_for_each_entry(cachep, &cache_chain, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004429 if (!strcmp(cachep->name, kbuf)) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08004430 if (limit < 1 || batchcount < 1 ||
4431 batchcount > limit || shared < 0) {
Christoph Lametere498be72005-09-09 13:03:32 -07004432 res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004433 } else {
Christoph Lametere498be72005-09-09 13:03:32 -07004434 res = do_tune_cpucache(cachep, limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03004435 batchcount, shared,
4436 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004437 }
4438 break;
4439 }
4440 }
Ingo Molnarfc0abb12006-01-18 17:42:33 -08004441 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004442 if (res >= 0)
4443 res = count;
4444 return res;
4445}
Al Viro871751e2006-03-25 03:06:39 -08004446
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04004447static int slabinfo_open(struct inode *inode, struct file *file)
4448{
4449 return seq_open(file, &slabinfo_op);
4450}
4451
4452static const struct file_operations proc_slabinfo_operations = {
4453 .open = slabinfo_open,
4454 .read = seq_read,
4455 .write = slabinfo_write,
4456 .llseek = seq_lseek,
4457 .release = seq_release,
4458};
4459
Al Viro871751e2006-03-25 03:06:39 -08004460#ifdef CONFIG_DEBUG_SLAB_LEAK
4461
4462static void *leaks_start(struct seq_file *m, loff_t *pos)
4463{
Al Viro871751e2006-03-25 03:06:39 -08004464 mutex_lock(&cache_chain_mutex);
Pavel Emelianovb92151b2007-07-15 23:38:04 -07004465 return seq_list_start(&cache_chain, *pos);
Al Viro871751e2006-03-25 03:06:39 -08004466}
4467
4468static inline int add_caller(unsigned long *n, unsigned long v)
4469{
4470 unsigned long *p;
4471 int l;
4472 if (!v)
4473 return 1;
4474 l = n[1];
4475 p = n + 2;
4476 while (l) {
4477 int i = l/2;
4478 unsigned long *q = p + 2 * i;
4479 if (*q == v) {
4480 q[1]++;
4481 return 1;
4482 }
4483 if (*q > v) {
4484 l = i;
4485 } else {
4486 p = q + 2;
4487 l -= i + 1;
4488 }
4489 }
4490 if (++n[1] == n[0])
4491 return 0;
4492 memmove(p + 2, p, n[1] * 2 * sizeof(unsigned long) - ((void *)p - (void *)n));
4493 p[0] = v;
4494 p[1] = 1;
4495 return 1;
4496}
4497
4498static void handle_slab(unsigned long *n, struct kmem_cache *c, struct slab *s)
4499{
4500 void *p;
4501 int i;
4502 if (n[0] == n[1])
4503 return;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05004504 for (i = 0, p = s->s_mem; i < c->num; i++, p += c->size) {
Al Viro871751e2006-03-25 03:06:39 -08004505 if (slab_bufctl(s)[i] != BUFCTL_ACTIVE)
4506 continue;
4507 if (!add_caller(n, (unsigned long)*dbg_userword(c, p)))
4508 return;
4509 }
4510}
4511
4512static void show_symbol(struct seq_file *m, unsigned long address)
4513{
4514#ifdef CONFIG_KALLSYMS
Al Viro871751e2006-03-25 03:06:39 -08004515 unsigned long offset, size;
Tejun Heo9281ace2007-07-17 04:03:51 -07004516 char modname[MODULE_NAME_LEN], name[KSYM_NAME_LEN];
Al Viro871751e2006-03-25 03:06:39 -08004517
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004518 if (lookup_symbol_attrs(address, &size, &offset, modname, name) == 0) {
Al Viro871751e2006-03-25 03:06:39 -08004519 seq_printf(m, "%s+%#lx/%#lx", name, offset, size);
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004520 if (modname[0])
Al Viro871751e2006-03-25 03:06:39 -08004521 seq_printf(m, " [%s]", modname);
4522 return;
4523 }
4524#endif
4525 seq_printf(m, "%p", (void *)address);
4526}
4527
4528static int leaks_show(struct seq_file *m, void *p)
4529{
Thierry Reding0672aa72012-06-22 19:42:49 +02004530 struct kmem_cache *cachep = list_entry(p, struct kmem_cache, list);
Al Viro871751e2006-03-25 03:06:39 -08004531 struct slab *slabp;
4532 struct kmem_list3 *l3;
4533 const char *name;
4534 unsigned long *n = m->private;
4535 int node;
4536 int i;
4537
4538 if (!(cachep->flags & SLAB_STORE_USER))
4539 return 0;
4540 if (!(cachep->flags & SLAB_RED_ZONE))
4541 return 0;
4542
4543 /* OK, we can do it */
4544
4545 n[1] = 0;
4546
4547 for_each_online_node(node) {
4548 l3 = cachep->nodelists[node];
4549 if (!l3)
4550 continue;
4551
4552 check_irq_on();
4553 spin_lock_irq(&l3->list_lock);
4554
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004555 list_for_each_entry(slabp, &l3->slabs_full, list)
Al Viro871751e2006-03-25 03:06:39 -08004556 handle_slab(n, cachep, slabp);
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004557 list_for_each_entry(slabp, &l3->slabs_partial, list)
Al Viro871751e2006-03-25 03:06:39 -08004558 handle_slab(n, cachep, slabp);
Al Viro871751e2006-03-25 03:06:39 -08004559 spin_unlock_irq(&l3->list_lock);
4560 }
4561 name = cachep->name;
4562 if (n[0] == n[1]) {
4563 /* Increase the buffer size */
4564 mutex_unlock(&cache_chain_mutex);
4565 m->private = kzalloc(n[0] * 4 * sizeof(unsigned long), GFP_KERNEL);
4566 if (!m->private) {
4567 /* Too bad, we are really out */
4568 m->private = n;
4569 mutex_lock(&cache_chain_mutex);
4570 return -ENOMEM;
4571 }
4572 *(unsigned long *)m->private = n[0] * 2;
4573 kfree(n);
4574 mutex_lock(&cache_chain_mutex);
4575 /* Now make sure this entry will be retried */
4576 m->count = m->size;
4577 return 0;
4578 }
4579 for (i = 0; i < n[1]; i++) {
4580 seq_printf(m, "%s: %lu ", name, n[2*i+3]);
4581 show_symbol(m, n[2*i+2]);
4582 seq_putc(m, '\n');
4583 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004584
Al Viro871751e2006-03-25 03:06:39 -08004585 return 0;
4586}
4587
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004588static const struct seq_operations slabstats_op = {
Al Viro871751e2006-03-25 03:06:39 -08004589 .start = leaks_start,
4590 .next = s_next,
4591 .stop = s_stop,
4592 .show = leaks_show,
4593};
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004594
4595static int slabstats_open(struct inode *inode, struct file *file)
4596{
4597 unsigned long *n = kzalloc(PAGE_SIZE, GFP_KERNEL);
4598 int ret = -ENOMEM;
4599 if (n) {
4600 ret = seq_open(file, &slabstats_op);
4601 if (!ret) {
4602 struct seq_file *m = file->private_data;
4603 *n = PAGE_SIZE / (2 * sizeof(unsigned long));
4604 m->private = n;
4605 n = NULL;
4606 }
4607 kfree(n);
4608 }
4609 return ret;
4610}
4611
4612static const struct file_operations proc_slabstats_operations = {
4613 .open = slabstats_open,
4614 .read = seq_read,
4615 .llseek = seq_lseek,
4616 .release = seq_release_private,
4617};
Al Viro871751e2006-03-25 03:06:39 -08004618#endif
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004619
4620static int __init slab_proc_init(void)
4621{
Vasiliy Kulikovab067e92011-09-27 21:54:53 +04004622 proc_create("slabinfo",S_IWUSR|S_IRUSR,NULL,&proc_slabinfo_operations);
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004623#ifdef CONFIG_DEBUG_SLAB_LEAK
4624 proc_create("slab_allocators", 0, NULL, &proc_slabstats_operations);
4625#endif
4626 return 0;
4627}
4628module_init(slab_proc_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004629#endif
4630
Manfred Spraul00e145b2005-09-03 15:55:07 -07004631/**
4632 * ksize - get the actual amount of memory allocated for a given object
4633 * @objp: Pointer to the object
4634 *
4635 * kmalloc may internally round up allocations and return more memory
4636 * than requested. ksize() can be used to determine the actual amount of
4637 * memory allocated. The caller may use this additional memory, even though
4638 * a smaller amount of memory was initially specified with the kmalloc call.
4639 * The caller must guarantee that objp points to a valid object previously
4640 * allocated with either kmalloc() or kmem_cache_alloc(). The object
4641 * must not be freed during the duration of the call.
4642 */
Pekka Enbergfd76bab2007-05-06 14:48:40 -07004643size_t ksize(const void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004644{
Christoph Lameteref8b4522007-10-16 01:24:46 -07004645 BUG_ON(!objp);
4646 if (unlikely(objp == ZERO_SIZE_PTR))
Manfred Spraul00e145b2005-09-03 15:55:07 -07004647 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004648
Christoph Lameter8c138bc2012-06-13 10:24:58 -05004649 return virt_to_cache(objp)->object_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004650}
Kirill A. Shutemovb1aabec2009-02-10 15:21:44 +02004651EXPORT_SYMBOL(ksize);