blob: 6ebb9515a3e96b607d7a1863054882e8c994911a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/mm/slab.c
3 * Written by Mark Hemment, 1996/97.
4 * (markhe@nextd.demon.co.uk)
5 *
6 * kmem_cache_destroy() + some cleanup - 1999 Andrea Arcangeli
7 *
8 * Major cleanup, different bufctl logic, per-cpu arrays
9 * (c) 2000 Manfred Spraul
10 *
11 * Cleanup, make the head arrays unconditional, preparation for NUMA
12 * (c) 2002 Manfred Spraul
13 *
14 * An implementation of the Slab Allocator as described in outline in;
15 * UNIX Internals: The New Frontiers by Uresh Vahalia
16 * Pub: Prentice Hall ISBN 0-13-101908-2
17 * or with a little more detail in;
18 * The Slab Allocator: An Object-Caching Kernel Memory Allocator
19 * Jeff Bonwick (Sun Microsystems).
20 * Presented at: USENIX Summer 1994 Technical Conference
21 *
22 * The memory is organized in caches, one cache for each object type.
23 * (e.g. inode_cache, dentry_cache, buffer_head, vm_area_struct)
24 * Each cache consists out of many slabs (they are small (usually one
25 * page long) and always contiguous), and each slab contains multiple
26 * initialized objects.
27 *
28 * This means, that your constructor is used only for newly allocated
Simon Arlott183ff222007-10-20 01:27:18 +020029 * slabs and you must pass objects with the same initializations to
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 * kmem_cache_free.
31 *
32 * Each cache can only support one memory type (GFP_DMA, GFP_HIGHMEM,
33 * normal). If you need a special memory type, then must create a new
34 * cache for that memory type.
35 *
36 * In order to reduce fragmentation, the slabs are sorted in 3 groups:
37 * full slabs with 0 free objects
38 * partial slabs
39 * empty slabs with no allocated objects
40 *
41 * If partial slabs exist, then new allocations come from these slabs,
42 * otherwise from empty slabs or new slabs are allocated.
43 *
44 * kmem_cache_destroy() CAN CRASH if you try to allocate from the cache
45 * during kmem_cache_destroy(). The caller must prevent concurrent allocs.
46 *
47 * Each cache has a short per-cpu head array, most allocs
48 * and frees go into that array, and if that array overflows, then 1/2
49 * of the entries in the array are given back into the global cache.
50 * The head array is strictly LIFO and should improve the cache hit rates.
51 * On SMP, it additionally reduces the spinlock operations.
52 *
Andrew Mortona737b3e2006-03-22 00:08:11 -080053 * The c_cpuarray may not be read with enabled local interrupts -
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 * it's changed with a smp_call_function().
55 *
56 * SMP synchronization:
57 * constructors and destructors are called without any locking.
Pekka Enberg343e0d72006-02-01 03:05:50 -080058 * Several members in struct kmem_cache and struct slab never change, they
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 * are accessed without any locking.
60 * The per-cpu arrays are never accessed from the wrong cpu, no locking,
61 * and local interrupts are disabled so slab code is preempt-safe.
62 * The non-constant members are protected with a per-cache irq spinlock.
63 *
64 * Many thanks to Mark Hemment, who wrote another per-cpu slab patch
65 * in 2000 - many ideas in the current implementation are derived from
66 * his patch.
67 *
68 * Further notes from the original documentation:
69 *
70 * 11 April '97. Started multi-threading - markhe
Christoph Lameter18004c52012-07-06 15:25:12 -050071 * The global cache-chain is protected by the mutex 'slab_mutex'.
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 * The sem is only needed when accessing/extending the cache-chain, which
73 * can never happen inside an interrupt (kmem_cache_create(),
74 * kmem_cache_shrink() and kmem_cache_reap()).
75 *
76 * At present, each engine can be growing a cache. This should be blocked.
77 *
Christoph Lametere498be72005-09-09 13:03:32 -070078 * 15 March 2005. NUMA slab allocator.
79 * Shai Fultheim <shai@scalex86.org>.
80 * Shobhit Dayal <shobhit@calsoftinc.com>
81 * Alok N Kataria <alokk@calsoftinc.com>
82 * Christoph Lameter <christoph@lameter.com>
83 *
84 * Modified the slab allocator to be node aware on NUMA systems.
85 * Each node has its own list of partial, free and full slabs.
86 * All object allocations for a node occur from node specific slab lists.
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 */
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089#include <linux/slab.h>
Christoph Lameter97d06602012-07-06 15:25:11 -050090#include "slab.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070091#include <linux/mm.h>
Randy Dunlapc9cf5522006-06-27 02:53:52 -070092#include <linux/poison.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070093#include <linux/swap.h>
94#include <linux/cache.h>
95#include <linux/interrupt.h>
96#include <linux/init.h>
97#include <linux/compiler.h>
Paul Jackson101a5002006-03-24 03:16:07 -080098#include <linux/cpuset.h>
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +040099#include <linux/proc_fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100#include <linux/seq_file.h>
101#include <linux/notifier.h>
102#include <linux/kallsyms.h>
103#include <linux/cpu.h>
104#include <linux/sysctl.h>
105#include <linux/module.h>
106#include <linux/rcupdate.h>
Paulo Marques543537b2005-06-23 00:09:02 -0700107#include <linux/string.h>
Andrew Morton138ae662006-12-06 20:36:41 -0800108#include <linux/uaccess.h>
Christoph Lametere498be72005-09-09 13:03:32 -0700109#include <linux/nodemask.h>
Catalin Marinasd5cff632009-06-11 13:22:40 +0100110#include <linux/kmemleak.h>
Christoph Lameterdc85da12006-01-18 17:42:36 -0800111#include <linux/mempolicy.h>
Ingo Molnarfc0abb12006-01-18 17:42:33 -0800112#include <linux/mutex.h>
Akinobu Mita8a8b6502006-12-08 02:39:44 -0800113#include <linux/fault-inject.h>
Ingo Molnare7eebaf2006-06-27 02:54:55 -0700114#include <linux/rtmutex.h>
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800115#include <linux/reciprocal_div.h>
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700116#include <linux/debugobjects.h>
Pekka Enbergc175eea2008-05-09 20:35:53 +0200117#include <linux/kmemcheck.h>
David Rientjes8f9f8d92010-03-27 19:40:47 -0700118#include <linux/memory.h>
Linus Torvalds268bb0c2011-05-20 12:50:29 -0700119#include <linux/prefetch.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Mel Gorman381760e2012-07-31 16:44:30 -0700121#include <net/sock.h>
122
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123#include <asm/cacheflush.h>
124#include <asm/tlbflush.h>
125#include <asm/page.h>
126
Steven Rostedt4dee6b62012-01-09 17:15:42 -0500127#include <trace/events/kmem.h>
128
Mel Gorman072bb0a2012-07-31 16:43:58 -0700129#include "internal.h"
130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131/*
Christoph Lameter50953fe2007-05-06 14:50:16 -0700132 * DEBUG - 1 for kmem_cache_create() to honour; SLAB_RED_ZONE & SLAB_POISON.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 * 0 for faster, smaller code (especially in the critical paths).
134 *
135 * STATS - 1 to collect stats for /proc/slabinfo.
136 * 0 for faster, smaller code (especially in the critical paths).
137 *
138 * FORCED_DEBUG - 1 enables SLAB_RED_ZONE and SLAB_POISON (if possible)
139 */
140
141#ifdef CONFIG_DEBUG_SLAB
142#define DEBUG 1
143#define STATS 1
144#define FORCED_DEBUG 1
145#else
146#define DEBUG 0
147#define STATS 0
148#define FORCED_DEBUG 0
149#endif
150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151/* Shouldn't this be in a header file somewhere? */
152#define BYTES_PER_WORD sizeof(void *)
David Woodhouse87a927c2007-07-04 21:26:44 -0400153#define REDZONE_ALIGN max(BYTES_PER_WORD, __alignof__(unsigned long long))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155#ifndef ARCH_KMALLOC_FLAGS
156#define ARCH_KMALLOC_FLAGS SLAB_HWCACHE_ALIGN
157#endif
158
Mel Gorman072bb0a2012-07-31 16:43:58 -0700159/*
160 * true if a page was allocated from pfmemalloc reserves for network-based
161 * swap
162 */
163static bool pfmemalloc_active __read_mostly;
164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165/*
166 * kmem_bufctl_t:
167 *
168 * Bufctl's are used for linking objs within a slab
169 * linked offsets.
170 *
171 * This implementation relies on "struct page" for locating the cache &
172 * slab an object belongs to.
173 * This allows the bufctl structure to be small (one int), but limits
174 * the number of objects a slab (not a cache) can contain when off-slab
175 * bufctls are used. The limit is the size of the largest general cache
176 * that does not use off-slab slabs.
177 * For 32bit archs with 4 kB pages, is this 56.
178 * This is not serious, as it is only for large objects, when it is unwise
179 * to have too many per slab.
180 * Note: This limit can be raised by introducing a general cache whose size
181 * is less than 512 (PAGE_SIZE<<3), but greater than 256.
182 */
183
Kyle Moffettfa5b08d2005-09-03 15:55:03 -0700184typedef unsigned int kmem_bufctl_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185#define BUFCTL_END (((kmem_bufctl_t)(~0U))-0)
186#define BUFCTL_FREE (((kmem_bufctl_t)(~0U))-1)
Al Viro871751e2006-03-25 03:06:39 -0800187#define BUFCTL_ACTIVE (((kmem_bufctl_t)(~0U))-2)
188#define SLAB_LIMIT (((kmem_bufctl_t)(~0U))-3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 * struct slab_rcu
192 *
193 * slab_destroy on a SLAB_DESTROY_BY_RCU cache uses this structure to
194 * arrange for kmem_freepages to be called via RCU. This is useful if
195 * we need to approach a kernel structure obliquely, from its address
196 * obtained without the usual locking. We can lock the structure to
197 * stabilize it and check it's still at the given address, only if we
198 * can be sure that the memory has not been meanwhile reused for some
199 * other kind of object (which our subsystem's lock might corrupt).
200 *
201 * rcu_read_lock before reading the address, then rcu_read_unlock after
202 * taking the spinlock within the structure expected at that address.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 */
204struct slab_rcu {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800205 struct rcu_head head;
Pekka Enberg343e0d72006-02-01 03:05:50 -0800206 struct kmem_cache *cachep;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800207 void *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208};
209
210/*
Lai Jiangshan5bfe53a2011-03-10 15:22:24 +0800211 * struct slab
212 *
213 * Manages the objs in a slab. Placed either at the beginning of mem allocated
214 * for a slab, or allocated from an general cache.
215 * Slabs are chained into three list: fully used, partial, fully free slabs.
216 */
217struct slab {
218 union {
219 struct {
220 struct list_head list;
221 unsigned long colouroff;
222 void *s_mem; /* including colour offset */
223 unsigned int inuse; /* num of objs active in slab */
224 kmem_bufctl_t free;
225 unsigned short nodeid;
226 };
227 struct slab_rcu __slab_cover_slab_rcu;
228 };
229};
230
231/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 * struct array_cache
233 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 * Purpose:
235 * - LIFO ordering, to hand out cache-warm objects from _alloc
236 * - reduce the number of linked list operations
237 * - reduce spinlock operations
238 *
239 * The limit is stored in the per-cpu structure to reduce the data cache
240 * footprint.
241 *
242 */
243struct array_cache {
244 unsigned int avail;
245 unsigned int limit;
246 unsigned int batchcount;
247 unsigned int touched;
Christoph Lametere498be72005-09-09 13:03:32 -0700248 spinlock_t lock;
Robert P. J. Daybda5b652007-10-16 23:30:05 -0700249 void *entry[]; /*
Andrew Mortona737b3e2006-03-22 00:08:11 -0800250 * Must have this definition in here for the proper
251 * alignment of array_cache. Also simplifies accessing
252 * the entries.
Mel Gorman072bb0a2012-07-31 16:43:58 -0700253 *
254 * Entries should not be directly dereferenced as
255 * entries belonging to slabs marked pfmemalloc will
256 * have the lower bits set SLAB_OBJ_PFMEMALLOC
Andrew Mortona737b3e2006-03-22 00:08:11 -0800257 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258};
259
Mel Gorman072bb0a2012-07-31 16:43:58 -0700260#define SLAB_OBJ_PFMEMALLOC 1
261static inline bool is_obj_pfmemalloc(void *objp)
262{
263 return (unsigned long)objp & SLAB_OBJ_PFMEMALLOC;
264}
265
266static inline void set_obj_pfmemalloc(void **objp)
267{
268 *objp = (void *)((unsigned long)*objp | SLAB_OBJ_PFMEMALLOC);
269 return;
270}
271
272static inline void clear_obj_pfmemalloc(void **objp)
273{
274 *objp = (void *)((unsigned long)*objp & ~SLAB_OBJ_PFMEMALLOC);
275}
276
Andrew Mortona737b3e2006-03-22 00:08:11 -0800277/*
278 * bootstrap: The caches do not work without cpuarrays anymore, but the
279 * cpuarrays are allocated from the generic caches...
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 */
281#define BOOT_CPUCACHE_ENTRIES 1
282struct arraycache_init {
283 struct array_cache cache;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800284 void *entries[BOOT_CPUCACHE_ENTRIES];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285};
286
287/*
Christoph Lametere498be72005-09-09 13:03:32 -0700288 * The slab lists for all objects.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 */
290struct kmem_list3 {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800291 struct list_head slabs_partial; /* partial list first, better asm code */
292 struct list_head slabs_full;
293 struct list_head slabs_free;
294 unsigned long free_objects;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800295 unsigned int free_limit;
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -0800296 unsigned int colour_next; /* Per-node cache coloring */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800297 spinlock_t list_lock;
298 struct array_cache *shared; /* shared per node */
299 struct array_cache **alien; /* on other nodes */
Christoph Lameter35386e32006-03-22 00:09:05 -0800300 unsigned long next_reap; /* updated without locking */
301 int free_touched; /* updated without locking */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302};
303
Christoph Lametere498be72005-09-09 13:03:32 -0700304/*
305 * Need this for bootstrapping a per node allocator.
306 */
Pekka Enberg556a1692008-01-25 08:20:51 +0200307#define NUM_INIT_LISTS (3 * MAX_NUMNODES)
H Hartley Sweeten68a1b192011-01-11 17:49:32 -0600308static struct kmem_list3 __initdata initkmem_list3[NUM_INIT_LISTS];
Christoph Lametere498be72005-09-09 13:03:32 -0700309#define CACHE_CACHE 0
Pekka Enberg556a1692008-01-25 08:20:51 +0200310#define SIZE_AC MAX_NUMNODES
311#define SIZE_L3 (2 * MAX_NUMNODES)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312
Christoph Lametered11d9e2006-06-30 01:55:45 -0700313static int drain_freelist(struct kmem_cache *cache,
314 struct kmem_list3 *l3, int tofree);
315static void free_block(struct kmem_cache *cachep, void **objpp, int len,
316 int node);
Pekka Enberg83b519e2009-06-10 19:40:04 +0300317static int enable_cpucache(struct kmem_cache *cachep, gfp_t gfp);
David Howells65f27f32006-11-22 14:55:48 +0000318static void cache_reap(struct work_struct *unused);
Christoph Lametered11d9e2006-06-30 01:55:45 -0700319
Christoph Lametere498be72005-09-09 13:03:32 -0700320/*
Andrew Mortona737b3e2006-03-22 00:08:11 -0800321 * This function must be completely optimized away if a constant is passed to
322 * it. Mostly the same as what is in linux/slab.h except it returns an index.
Christoph Lametere498be72005-09-09 13:03:32 -0700323 */
Ivan Kokshaysky7243cc02005-09-22 21:43:58 -0700324static __always_inline int index_of(const size_t size)
Christoph Lametere498be72005-09-09 13:03:32 -0700325{
Steven Rostedt5ec8a842006-02-01 03:05:44 -0800326 extern void __bad_size(void);
327
Christoph Lametere498be72005-09-09 13:03:32 -0700328 if (__builtin_constant_p(size)) {
329 int i = 0;
330
331#define CACHE(x) \
332 if (size <=x) \
333 return i; \
334 else \
335 i++;
Joe Perches1c61fc42008-03-05 13:58:17 -0800336#include <linux/kmalloc_sizes.h>
Christoph Lametere498be72005-09-09 13:03:32 -0700337#undef CACHE
Steven Rostedt5ec8a842006-02-01 03:05:44 -0800338 __bad_size();
Ivan Kokshaysky7243cc02005-09-22 21:43:58 -0700339 } else
Steven Rostedt5ec8a842006-02-01 03:05:44 -0800340 __bad_size();
Christoph Lametere498be72005-09-09 13:03:32 -0700341 return 0;
342}
343
Ingo Molnare0a42722006-06-23 02:03:46 -0700344static int slab_early_init = 1;
345
Christoph Lametere498be72005-09-09 13:03:32 -0700346#define INDEX_AC index_of(sizeof(struct arraycache_init))
347#define INDEX_L3 index_of(sizeof(struct kmem_list3))
348
Pekka Enberg5295a742006-02-01 03:05:48 -0800349static void kmem_list3_init(struct kmem_list3 *parent)
Christoph Lametere498be72005-09-09 13:03:32 -0700350{
351 INIT_LIST_HEAD(&parent->slabs_full);
352 INIT_LIST_HEAD(&parent->slabs_partial);
353 INIT_LIST_HEAD(&parent->slabs_free);
354 parent->shared = NULL;
355 parent->alien = NULL;
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -0800356 parent->colour_next = 0;
Christoph Lametere498be72005-09-09 13:03:32 -0700357 spin_lock_init(&parent->list_lock);
358 parent->free_objects = 0;
359 parent->free_touched = 0;
360}
361
Andrew Mortona737b3e2006-03-22 00:08:11 -0800362#define MAKE_LIST(cachep, listp, slab, nodeid) \
363 do { \
364 INIT_LIST_HEAD(listp); \
365 list_splice(&(cachep->nodelists[nodeid]->slab), listp); \
Christoph Lametere498be72005-09-09 13:03:32 -0700366 } while (0)
367
Andrew Mortona737b3e2006-03-22 00:08:11 -0800368#define MAKE_ALL_LISTS(cachep, ptr, nodeid) \
369 do { \
Christoph Lametere498be72005-09-09 13:03:32 -0700370 MAKE_LIST((cachep), (&(ptr)->slabs_full), slabs_full, nodeid); \
371 MAKE_LIST((cachep), (&(ptr)->slabs_partial), slabs_partial, nodeid); \
372 MAKE_LIST((cachep), (&(ptr)->slabs_free), slabs_free, nodeid); \
373 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375#define CFLGS_OFF_SLAB (0x80000000UL)
376#define OFF_SLAB(x) ((x)->flags & CFLGS_OFF_SLAB)
377
378#define BATCHREFILL_LIMIT 16
Andrew Mortona737b3e2006-03-22 00:08:11 -0800379/*
380 * Optimization question: fewer reaps means less probability for unnessary
381 * cpucache drain/refill cycles.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 *
Adrian Bunkdc6f3f22005-11-08 16:44:08 +0100383 * OTOH the cpuarrays can contain lots of objects,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 * which could lock up otherwise freeable slabs.
385 */
386#define REAPTIMEOUT_CPUC (2*HZ)
387#define REAPTIMEOUT_LIST3 (4*HZ)
388
389#if STATS
390#define STATS_INC_ACTIVE(x) ((x)->num_active++)
391#define STATS_DEC_ACTIVE(x) ((x)->num_active--)
392#define STATS_INC_ALLOCED(x) ((x)->num_allocations++)
393#define STATS_INC_GROWN(x) ((x)->grown++)
Christoph Lametered11d9e2006-06-30 01:55:45 -0700394#define STATS_ADD_REAPED(x,y) ((x)->reaped += (y))
Andrew Mortona737b3e2006-03-22 00:08:11 -0800395#define STATS_SET_HIGH(x) \
396 do { \
397 if ((x)->num_active > (x)->high_mark) \
398 (x)->high_mark = (x)->num_active; \
399 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400#define STATS_INC_ERR(x) ((x)->errors++)
401#define STATS_INC_NODEALLOCS(x) ((x)->node_allocs++)
Christoph Lametere498be72005-09-09 13:03:32 -0700402#define STATS_INC_NODEFREES(x) ((x)->node_frees++)
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -0700403#define STATS_INC_ACOVERFLOW(x) ((x)->node_overflow++)
Andrew Mortona737b3e2006-03-22 00:08:11 -0800404#define STATS_SET_FREEABLE(x, i) \
405 do { \
406 if ((x)->max_freeable < i) \
407 (x)->max_freeable = i; \
408 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409#define STATS_INC_ALLOCHIT(x) atomic_inc(&(x)->allochit)
410#define STATS_INC_ALLOCMISS(x) atomic_inc(&(x)->allocmiss)
411#define STATS_INC_FREEHIT(x) atomic_inc(&(x)->freehit)
412#define STATS_INC_FREEMISS(x) atomic_inc(&(x)->freemiss)
413#else
414#define STATS_INC_ACTIVE(x) do { } while (0)
415#define STATS_DEC_ACTIVE(x) do { } while (0)
416#define STATS_INC_ALLOCED(x) do { } while (0)
417#define STATS_INC_GROWN(x) do { } while (0)
Andi Kleen4e60c862010-08-09 17:19:03 -0700418#define STATS_ADD_REAPED(x,y) do { (void)(y); } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419#define STATS_SET_HIGH(x) do { } while (0)
420#define STATS_INC_ERR(x) do { } while (0)
421#define STATS_INC_NODEALLOCS(x) do { } while (0)
Christoph Lametere498be72005-09-09 13:03:32 -0700422#define STATS_INC_NODEFREES(x) do { } while (0)
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -0700423#define STATS_INC_ACOVERFLOW(x) do { } while (0)
Andrew Mortona737b3e2006-03-22 00:08:11 -0800424#define STATS_SET_FREEABLE(x, i) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425#define STATS_INC_ALLOCHIT(x) do { } while (0)
426#define STATS_INC_ALLOCMISS(x) do { } while (0)
427#define STATS_INC_FREEHIT(x) do { } while (0)
428#define STATS_INC_FREEMISS(x) do { } while (0)
429#endif
430
431#if DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
Andrew Mortona737b3e2006-03-22 00:08:11 -0800433/*
434 * memory layout of objects:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435 * 0 : objp
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800436 * 0 .. cachep->obj_offset - BYTES_PER_WORD - 1: padding. This ensures that
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 * the end of an object is aligned with the end of the real
438 * allocation. Catches writes behind the end of the allocation.
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800439 * cachep->obj_offset - BYTES_PER_WORD .. cachep->obj_offset - 1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 * redzone word.
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800441 * cachep->obj_offset: The real object.
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500442 * cachep->size - 2* BYTES_PER_WORD: redzone word [BYTES_PER_WORD long]
443 * cachep->size - 1* BYTES_PER_WORD: last caller address
Andrew Mortona737b3e2006-03-22 00:08:11 -0800444 * [BYTES_PER_WORD long]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800446static int obj_offset(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447{
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800448 return cachep->obj_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449}
450
David Woodhouseb46b8f12007-05-08 00:22:59 -0700451static unsigned long long *dbg_redzone1(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452{
453 BUG_ON(!(cachep->flags & SLAB_RED_ZONE));
David Woodhouseb46b8f12007-05-08 00:22:59 -0700454 return (unsigned long long*) (objp + obj_offset(cachep) -
455 sizeof(unsigned long long));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456}
457
David Woodhouseb46b8f12007-05-08 00:22:59 -0700458static unsigned long long *dbg_redzone2(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459{
460 BUG_ON(!(cachep->flags & SLAB_RED_ZONE));
461 if (cachep->flags & SLAB_STORE_USER)
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500462 return (unsigned long long *)(objp + cachep->size -
David Woodhouseb46b8f12007-05-08 00:22:59 -0700463 sizeof(unsigned long long) -
David Woodhouse87a927c2007-07-04 21:26:44 -0400464 REDZONE_ALIGN);
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500465 return (unsigned long long *) (objp + cachep->size -
David Woodhouseb46b8f12007-05-08 00:22:59 -0700466 sizeof(unsigned long long));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467}
468
Pekka Enberg343e0d72006-02-01 03:05:50 -0800469static void **dbg_userword(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470{
471 BUG_ON(!(cachep->flags & SLAB_STORE_USER));
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500472 return (void **)(objp + cachep->size - BYTES_PER_WORD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473}
474
475#else
476
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800477#define obj_offset(x) 0
David Woodhouseb46b8f12007-05-08 00:22:59 -0700478#define dbg_redzone1(cachep, objp) ({BUG(); (unsigned long long *)NULL;})
479#define dbg_redzone2(cachep, objp) ({BUG(); (unsigned long long *)NULL;})
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480#define dbg_userword(cachep, objp) ({BUG(); (void **)NULL;})
481
482#endif
483
484/*
David Rientjes3df1ccc2011-10-18 22:09:28 -0700485 * Do not go above this order unless 0 objects fit into the slab or
486 * overridden on the command line.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 */
David Rientjes543585c2011-10-18 22:09:24 -0700488#define SLAB_MAX_ORDER_HI 1
489#define SLAB_MAX_ORDER_LO 0
490static int slab_max_order = SLAB_MAX_ORDER_LO;
David Rientjes3df1ccc2011-10-18 22:09:28 -0700491static bool slab_max_order_set __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
Pekka Enberg6ed5eb22006-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 Enberg6ed5eb22006-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 Enberg6ed5eb22006-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 */
Christoph Lameter9b030cb2012-09-05 00:20:33 +0000556static struct kmem_list3 *kmem_cache_nodelists[MAX_NUMNODES];
557static struct kmem_cache kmem_cache_boot = {
558 .nodelists = kmem_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
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200568#ifdef CONFIG_LOCKDEP
569
570/*
571 * Slab sometimes uses the kmalloc slabs to store the slab headers
572 * for other slabs "off slab".
573 * The locking for this is tricky in that it nests within the locks
574 * of all other slabs in a few places; to deal with this special
575 * locking we put on-slab caches into a separate lock-class.
576 *
577 * We set lock class for alien array caches which are up during init.
578 * The lock annotation will be lost if all cpus of a node goes down and
579 * then comes back up during hotplug
580 */
581static struct lock_class_key on_slab_l3_key;
582static struct lock_class_key on_slab_alc_key;
583
Peter Zijlstra83835b32011-07-22 15:26:05 +0200584static struct lock_class_key debugobj_l3_key;
585static struct lock_class_key debugobj_alc_key;
586
587static void slab_set_lock_classes(struct kmem_cache *cachep,
588 struct lock_class_key *l3_key, struct lock_class_key *alc_key,
589 int q)
590{
591 struct array_cache **alc;
592 struct kmem_list3 *l3;
593 int r;
594
595 l3 = cachep->nodelists[q];
596 if (!l3)
597 return;
598
599 lockdep_set_class(&l3->list_lock, l3_key);
600 alc = l3->alien;
601 /*
602 * FIXME: This check for BAD_ALIEN_MAGIC
603 * should go away when common slab code is taught to
604 * work even without alien caches.
605 * Currently, non NUMA code returns BAD_ALIEN_MAGIC
606 * for alloc_alien_cache,
607 */
608 if (!alc || (unsigned long)alc == BAD_ALIEN_MAGIC)
609 return;
610 for_each_node(r) {
611 if (alc[r])
612 lockdep_set_class(&alc[r]->lock, alc_key);
613 }
614}
615
616static void slab_set_debugobj_lock_classes_node(struct kmem_cache *cachep, int node)
617{
618 slab_set_lock_classes(cachep, &debugobj_l3_key, &debugobj_alc_key, node);
619}
620
621static void slab_set_debugobj_lock_classes(struct kmem_cache *cachep)
622{
623 int node;
624
625 for_each_online_node(node)
626 slab_set_debugobj_lock_classes_node(cachep, node);
627}
628
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200629static void init_node_lock_keys(int q)
630{
631 struct cache_sizes *s = malloc_sizes;
632
Christoph Lameter97d06602012-07-06 15:25:11 -0500633 if (slab_state < UP)
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200634 return;
635
636 for (s = malloc_sizes; s->cs_size != ULONG_MAX; s++) {
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200637 struct kmem_list3 *l3;
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200638
639 l3 = s->cs_cachep->nodelists[q];
640 if (!l3 || OFF_SLAB(s->cs_cachep))
Pekka Enberg00afa752009-12-27 14:33:14 +0200641 continue;
Peter Zijlstra83835b32011-07-22 15:26:05 +0200642
643 slab_set_lock_classes(s->cs_cachep, &on_slab_l3_key,
644 &on_slab_alc_key, q);
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200645 }
646}
647
648static inline void init_lock_keys(void)
649{
650 int node;
651
652 for_each_node(node)
653 init_node_lock_keys(node);
654}
655#else
656static void init_node_lock_keys(int q)
657{
658}
659
660static inline void init_lock_keys(void)
661{
662}
Peter Zijlstra83835b32011-07-22 15:26:05 +0200663
664static void slab_set_debugobj_lock_classes_node(struct kmem_cache *cachep, int node)
665{
666}
667
668static void slab_set_debugobj_lock_classes(struct kmem_cache *cachep)
669{
670}
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200671#endif
672
Tejun Heo1871e522009-10-29 22:34:13 +0900673static DEFINE_PER_CPU(struct delayed_work, slab_reap_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
Pekka Enberg343e0d72006-02-01 03:05:50 -0800675static inline struct array_cache *cpu_cache_get(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676{
677 return cachep->array[smp_processor_id()];
678}
679
Andrew Mortona737b3e2006-03-22 00:08:11 -0800680static inline struct kmem_cache *__find_general_cachep(size_t size,
681 gfp_t gfpflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682{
683 struct cache_sizes *csizep = malloc_sizes;
684
685#if DEBUG
686 /* This happens if someone tries to call
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800687 * kmem_cache_create(), or __kmalloc(), before
688 * the generic caches are initialized.
689 */
Alok Katariac7e43c72005-09-14 12:17:53 -0700690 BUG_ON(malloc_sizes[INDEX_AC].cs_cachep == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691#endif
Christoph Lameter6cb8f912007-07-17 04:03:22 -0700692 if (!size)
693 return ZERO_SIZE_PTR;
694
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695 while (size > csizep->cs_size)
696 csizep++;
697
698 /*
Martin Hicks0abf40c2005-09-03 15:54:54 -0700699 * Really subtle: The last entry with cs->cs_size==ULONG_MAX
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700 * has cs_{dma,}cachep==NULL. Thus no special case
701 * for large kmalloc calls required.
702 */
Christoph Lameter4b51d662007-02-10 01:43:10 -0800703#ifdef CONFIG_ZONE_DMA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 if (unlikely(gfpflags & GFP_DMA))
705 return csizep->cs_dmacachep;
Christoph Lameter4b51d662007-02-10 01:43:10 -0800706#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 return csizep->cs_cachep;
708}
709
Adrian Bunkb2213852006-09-25 23:31:02 -0700710static struct kmem_cache *kmem_find_general_cachep(size_t size, gfp_t gfpflags)
Manfred Spraul97e2bde2005-05-01 08:58:38 -0700711{
712 return __find_general_cachep(size, gfpflags);
713}
Manfred Spraul97e2bde2005-05-01 08:58:38 -0700714
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800715static size_t slab_mgmt_size(size_t nr_objs, size_t align)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716{
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800717 return ALIGN(sizeof(struct slab)+nr_objs*sizeof(kmem_bufctl_t), align);
718}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719
Andrew Mortona737b3e2006-03-22 00:08:11 -0800720/*
721 * Calculate the number of objects and left-over bytes for a given buffer size.
722 */
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800723static void cache_estimate(unsigned long gfporder, size_t buffer_size,
724 size_t align, int flags, size_t *left_over,
725 unsigned int *num)
726{
727 int nr_objs;
728 size_t mgmt_size;
729 size_t slab_size = PAGE_SIZE << gfporder;
730
731 /*
732 * The slab management structure can be either off the slab or
733 * on it. For the latter case, the memory allocated for a
734 * slab is used for:
735 *
736 * - The struct slab
737 * - One kmem_bufctl_t for each object
738 * - Padding to respect alignment of @align
739 * - @buffer_size bytes for each object
740 *
741 * If the slab management structure is off the slab, then the
742 * alignment will already be calculated into the size. Because
743 * the slabs are all pages aligned, the objects will be at the
744 * correct alignment when allocated.
745 */
746 if (flags & CFLGS_OFF_SLAB) {
747 mgmt_size = 0;
748 nr_objs = slab_size / buffer_size;
749
750 if (nr_objs > SLAB_LIMIT)
751 nr_objs = SLAB_LIMIT;
752 } else {
753 /*
754 * Ignore padding for the initial guess. The padding
755 * is at most @align-1 bytes, and @buffer_size is at
756 * least @align. In the worst case, this result will
757 * be one greater than the number of objects that fit
758 * into the memory allocation when taking the padding
759 * into account.
760 */
761 nr_objs = (slab_size - sizeof(struct slab)) /
762 (buffer_size + sizeof(kmem_bufctl_t));
763
764 /*
765 * This calculated number will be either the right
766 * amount, or one greater than what we want.
767 */
768 if (slab_mgmt_size(nr_objs, align) + nr_objs*buffer_size
769 > slab_size)
770 nr_objs--;
771
772 if (nr_objs > SLAB_LIMIT)
773 nr_objs = SLAB_LIMIT;
774
775 mgmt_size = slab_mgmt_size(nr_objs, align);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 }
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800777 *num = nr_objs;
778 *left_over = slab_size - nr_objs*buffer_size - mgmt_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779}
780
Christoph Lameterf28510d2012-09-11 19:49:38 +0000781#if DEBUG
Harvey Harrisond40cee22008-04-30 00:55:07 -0700782#define slab_error(cachep, msg) __slab_error(__func__, cachep, msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783
Andrew Mortona737b3e2006-03-22 00:08:11 -0800784static void __slab_error(const char *function, struct kmem_cache *cachep,
785 char *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786{
787 printk(KERN_ERR "slab error in %s(): cache `%s': %s\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800788 function, cachep->name, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 dump_stack();
Dave Jones645df232012-09-18 15:54:12 -0400790 add_taint(TAINT_BAD_PAGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791}
Christoph Lameterf28510d2012-09-11 19:49:38 +0000792#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
Paul Menage3395ee02006-12-06 20:32:16 -0800794/*
795 * By default on NUMA we use alien caches to stage the freeing of
796 * objects allocated from other nodes. This causes massive memory
797 * inefficiencies when using fake NUMA setup to split memory into a
798 * large number of small nodes, so it can be disabled on the command
799 * line
800 */
801
802static int use_alien_caches __read_mostly = 1;
803static int __init noaliencache_setup(char *s)
804{
805 use_alien_caches = 0;
806 return 1;
807}
808__setup("noaliencache", noaliencache_setup);
809
David Rientjes3df1ccc2011-10-18 22:09:28 -0700810static int __init slab_max_order_setup(char *str)
811{
812 get_option(&str, &slab_max_order);
813 slab_max_order = slab_max_order < 0 ? 0 :
814 min(slab_max_order, MAX_ORDER - 1);
815 slab_max_order_set = true;
816
817 return 1;
818}
819__setup("slab_max_order=", slab_max_order_setup);
820
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800821#ifdef CONFIG_NUMA
822/*
823 * Special reaping functions for NUMA systems called from cache_reap().
824 * These take care of doing round robin flushing of alien caches (containing
825 * objects freed on different nodes from which they were allocated) and the
826 * flushing of remote pcps by calling drain_node_pages.
827 */
Tejun Heo1871e522009-10-29 22:34:13 +0900828static DEFINE_PER_CPU(unsigned long, slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800829
830static void init_reap_node(int cpu)
831{
832 int node;
833
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -0700834 node = next_node(cpu_to_mem(cpu), node_online_map);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800835 if (node == MAX_NUMNODES)
Paul Jackson442295c2006-03-22 00:09:11 -0800836 node = first_node(node_online_map);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800837
Tejun Heo1871e522009-10-29 22:34:13 +0900838 per_cpu(slab_reap_node, cpu) = node;
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800839}
840
841static void next_reap_node(void)
842{
Christoph Lameter909ea962010-12-08 16:22:55 +0100843 int node = __this_cpu_read(slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800844
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800845 node = next_node(node, node_online_map);
846 if (unlikely(node >= MAX_NUMNODES))
847 node = first_node(node_online_map);
Christoph Lameter909ea962010-12-08 16:22:55 +0100848 __this_cpu_write(slab_reap_node, node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800849}
850
851#else
852#define init_reap_node(cpu) do { } while (0)
853#define next_reap_node(void) do { } while (0)
854#endif
855
Linus Torvalds1da177e2005-04-16 15:20:36 -0700856/*
857 * Initiate the reap timer running on the target CPU. We run at around 1 to 2Hz
858 * via the workqueue/eventd.
859 * Add the CPU number into the expiration time to minimize the possibility of
860 * the CPUs getting into lockstep and contending for the global cache chain
861 * lock.
862 */
Adrian Bunk897e6792007-07-15 23:38:20 -0700863static void __cpuinit start_cpu_timer(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864{
Tejun Heo1871e522009-10-29 22:34:13 +0900865 struct delayed_work *reap_work = &per_cpu(slab_reap_work, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866
867 /*
868 * When this gets called from do_initcalls via cpucache_init(),
869 * init_workqueues() has already run, so keventd will be setup
870 * at that time.
871 */
David Howells52bad642006-11-22 14:54:01 +0000872 if (keventd_up() && reap_work->work.func == NULL) {
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800873 init_reap_node(cpu);
Tejun Heo203b42f2012-08-21 13:18:23 -0700874 INIT_DEFERRABLE_WORK(reap_work, cache_reap);
Arjan van de Ven2b284212006-12-10 02:21:28 -0800875 schedule_delayed_work_on(cpu, reap_work,
876 __round_jiffies_relative(HZ, cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 }
878}
879
Christoph Lametere498be72005-09-09 13:03:32 -0700880static struct array_cache *alloc_arraycache(int node, int entries,
Pekka Enberg83b519e2009-06-10 19:40:04 +0300881 int batchcount, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882{
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800883 int memsize = sizeof(void *) * entries + sizeof(struct array_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 struct array_cache *nc = NULL;
885
Pekka Enberg83b519e2009-06-10 19:40:04 +0300886 nc = kmalloc_node(memsize, gfp, node);
Catalin Marinasd5cff632009-06-11 13:22:40 +0100887 /*
888 * The array_cache structures contain pointers to free object.
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300889 * However, when such objects are allocated or transferred to another
Catalin Marinasd5cff632009-06-11 13:22:40 +0100890 * cache the pointers are not cleared and they could be counted as
891 * valid references during a kmemleak scan. Therefore, kmemleak must
892 * not scan such objects.
893 */
894 kmemleak_no_scan(nc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895 if (nc) {
896 nc->avail = 0;
897 nc->limit = entries;
898 nc->batchcount = batchcount;
899 nc->touched = 0;
Christoph Lametere498be72005-09-09 13:03:32 -0700900 spin_lock_init(&nc->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 }
902 return nc;
903}
904
Mel Gorman072bb0a2012-07-31 16:43:58 -0700905static inline bool is_slab_pfmemalloc(struct slab *slabp)
906{
907 struct page *page = virt_to_page(slabp->s_mem);
908
909 return PageSlabPfmemalloc(page);
910}
911
912/* Clears pfmemalloc_active if no slabs have pfmalloc set */
913static void recheck_pfmemalloc_active(struct kmem_cache *cachep,
914 struct array_cache *ac)
915{
916 struct kmem_list3 *l3 = cachep->nodelists[numa_mem_id()];
917 struct slab *slabp;
918 unsigned long flags;
919
920 if (!pfmemalloc_active)
921 return;
922
923 spin_lock_irqsave(&l3->list_lock, flags);
924 list_for_each_entry(slabp, &l3->slabs_full, list)
925 if (is_slab_pfmemalloc(slabp))
926 goto out;
927
928 list_for_each_entry(slabp, &l3->slabs_partial, list)
929 if (is_slab_pfmemalloc(slabp))
930 goto out;
931
932 list_for_each_entry(slabp, &l3->slabs_free, list)
933 if (is_slab_pfmemalloc(slabp))
934 goto out;
935
936 pfmemalloc_active = false;
937out:
938 spin_unlock_irqrestore(&l3->list_lock, flags);
939}
940
Mel Gorman381760e2012-07-31 16:44:30 -0700941static void *__ac_get_obj(struct kmem_cache *cachep, struct array_cache *ac,
Mel Gorman072bb0a2012-07-31 16:43:58 -0700942 gfp_t flags, bool force_refill)
943{
944 int i;
945 void *objp = ac->entry[--ac->avail];
946
947 /* Ensure the caller is allowed to use objects from PFMEMALLOC slab */
948 if (unlikely(is_obj_pfmemalloc(objp))) {
949 struct kmem_list3 *l3;
950
951 if (gfp_pfmemalloc_allowed(flags)) {
952 clear_obj_pfmemalloc(&objp);
953 return objp;
954 }
955
956 /* The caller cannot use PFMEMALLOC objects, find another one */
Joonsoo Kimd014dc22012-09-17 14:09:06 -0700957 for (i = 0; i < ac->avail; i++) {
Mel Gorman072bb0a2012-07-31 16:43:58 -0700958 /* If a !PFMEMALLOC object is found, swap them */
959 if (!is_obj_pfmemalloc(ac->entry[i])) {
960 objp = ac->entry[i];
961 ac->entry[i] = ac->entry[ac->avail];
962 ac->entry[ac->avail] = objp;
963 return objp;
964 }
965 }
966
967 /*
968 * If there are empty slabs on the slabs_free list and we are
969 * being forced to refill the cache, mark this one !pfmemalloc.
970 */
971 l3 = cachep->nodelists[numa_mem_id()];
972 if (!list_empty(&l3->slabs_free) && force_refill) {
973 struct slab *slabp = virt_to_slab(objp);
Mel Gorman30c29be2012-09-17 14:09:03 -0700974 ClearPageSlabPfmemalloc(virt_to_head_page(slabp->s_mem));
Mel Gorman072bb0a2012-07-31 16:43:58 -0700975 clear_obj_pfmemalloc(&objp);
976 recheck_pfmemalloc_active(cachep, ac);
977 return objp;
978 }
979
980 /* No !PFMEMALLOC objects available */
981 ac->avail++;
982 objp = NULL;
983 }
984
985 return objp;
986}
987
Mel Gorman381760e2012-07-31 16:44:30 -0700988static inline void *ac_get_obj(struct kmem_cache *cachep,
989 struct array_cache *ac, gfp_t flags, bool force_refill)
990{
991 void *objp;
992
993 if (unlikely(sk_memalloc_socks()))
994 objp = __ac_get_obj(cachep, ac, flags, force_refill);
995 else
996 objp = ac->entry[--ac->avail];
997
998 return objp;
999}
1000
1001static void *__ac_put_obj(struct kmem_cache *cachep, struct array_cache *ac,
Mel Gorman072bb0a2012-07-31 16:43:58 -07001002 void *objp)
1003{
1004 if (unlikely(pfmemalloc_active)) {
1005 /* Some pfmemalloc slabs exist, check if this is one */
Mel Gorman30c29be2012-09-17 14:09:03 -07001006 struct page *page = virt_to_head_page(objp);
Mel Gorman072bb0a2012-07-31 16:43:58 -07001007 if (PageSlabPfmemalloc(page))
1008 set_obj_pfmemalloc(&objp);
1009 }
1010
Mel Gorman381760e2012-07-31 16:44:30 -07001011 return objp;
1012}
1013
1014static inline void ac_put_obj(struct kmem_cache *cachep, struct array_cache *ac,
1015 void *objp)
1016{
1017 if (unlikely(sk_memalloc_socks()))
1018 objp = __ac_put_obj(cachep, ac, objp);
1019
Mel Gorman072bb0a2012-07-31 16:43:58 -07001020 ac->entry[ac->avail++] = objp;
1021}
1022
Christoph Lameter3ded1752006-03-25 03:06:44 -08001023/*
1024 * Transfer objects in one arraycache to another.
1025 * Locking must be handled by the caller.
1026 *
1027 * Return the number of entries transferred.
1028 */
1029static int transfer_objects(struct array_cache *to,
1030 struct array_cache *from, unsigned int max)
1031{
1032 /* Figure out how many entries to transfer */
Hagen Paul Pfeifer732eacc2010-10-26 14:22:23 -07001033 int nr = min3(from->avail, max, to->limit - to->avail);
Christoph Lameter3ded1752006-03-25 03:06:44 -08001034
1035 if (!nr)
1036 return 0;
1037
1038 memcpy(to->entry + to->avail, from->entry + from->avail -nr,
1039 sizeof(void *) *nr);
1040
1041 from->avail -= nr;
1042 to->avail += nr;
Christoph Lameter3ded1752006-03-25 03:06:44 -08001043 return nr;
1044}
1045
Christoph Lameter765c4502006-09-27 01:50:08 -07001046#ifndef CONFIG_NUMA
1047
1048#define drain_alien_cache(cachep, alien) do { } while (0)
1049#define reap_alien(cachep, l3) do { } while (0)
1050
Pekka Enberg83b519e2009-06-10 19:40:04 +03001051static inline struct array_cache **alloc_alien_cache(int node, int limit, gfp_t gfp)
Christoph Lameter765c4502006-09-27 01:50:08 -07001052{
1053 return (struct array_cache **)BAD_ALIEN_MAGIC;
1054}
1055
1056static inline void free_alien_cache(struct array_cache **ac_ptr)
1057{
1058}
1059
1060static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
1061{
1062 return 0;
1063}
1064
1065static inline void *alternate_node_alloc(struct kmem_cache *cachep,
1066 gfp_t flags)
1067{
1068 return NULL;
1069}
1070
Christoph Hellwig8b98c162006-12-06 20:32:30 -08001071static inline void *____cache_alloc_node(struct kmem_cache *cachep,
Christoph Lameter765c4502006-09-27 01:50:08 -07001072 gfp_t flags, int nodeid)
1073{
1074 return NULL;
1075}
1076
1077#else /* CONFIG_NUMA */
1078
Christoph Hellwig8b98c162006-12-06 20:32:30 -08001079static void *____cache_alloc_node(struct kmem_cache *, gfp_t, int);
Paul Jacksonc61afb12006-03-24 03:16:08 -08001080static void *alternate_node_alloc(struct kmem_cache *, gfp_t);
Christoph Lameterdc85da12006-01-18 17:42:36 -08001081
Pekka Enberg83b519e2009-06-10 19:40:04 +03001082static struct array_cache **alloc_alien_cache(int node, int limit, gfp_t gfp)
Christoph Lametere498be72005-09-09 13:03:32 -07001083{
1084 struct array_cache **ac_ptr;
Christoph Lameter8ef82862007-02-20 13:57:52 -08001085 int memsize = sizeof(void *) * nr_node_ids;
Christoph Lametere498be72005-09-09 13:03:32 -07001086 int i;
1087
1088 if (limit > 1)
1089 limit = 12;
Haicheng Lif3186a92010-01-06 15:25:23 +08001090 ac_ptr = kzalloc_node(memsize, gfp, node);
Christoph Lametere498be72005-09-09 13:03:32 -07001091 if (ac_ptr) {
1092 for_each_node(i) {
Haicheng Lif3186a92010-01-06 15:25:23 +08001093 if (i == node || !node_online(i))
Christoph Lametere498be72005-09-09 13:03:32 -07001094 continue;
Pekka Enberg83b519e2009-06-10 19:40:04 +03001095 ac_ptr[i] = alloc_arraycache(node, limit, 0xbaadf00d, gfp);
Christoph Lametere498be72005-09-09 13:03:32 -07001096 if (!ac_ptr[i]) {
Akinobu Mitacc550de2007-11-14 16:58:35 -08001097 for (i--; i >= 0; i--)
Christoph Lametere498be72005-09-09 13:03:32 -07001098 kfree(ac_ptr[i]);
1099 kfree(ac_ptr);
1100 return NULL;
1101 }
1102 }
1103 }
1104 return ac_ptr;
1105}
1106
Pekka Enberg5295a742006-02-01 03:05:48 -08001107static void free_alien_cache(struct array_cache **ac_ptr)
Christoph Lametere498be72005-09-09 13:03:32 -07001108{
1109 int i;
1110
1111 if (!ac_ptr)
1112 return;
Christoph Lametere498be72005-09-09 13:03:32 -07001113 for_each_node(i)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001114 kfree(ac_ptr[i]);
Christoph Lametere498be72005-09-09 13:03:32 -07001115 kfree(ac_ptr);
1116}
1117
Pekka Enberg343e0d72006-02-01 03:05:50 -08001118static void __drain_alien_cache(struct kmem_cache *cachep,
Pekka Enberg5295a742006-02-01 03:05:48 -08001119 struct array_cache *ac, int node)
Christoph Lametere498be72005-09-09 13:03:32 -07001120{
1121 struct kmem_list3 *rl3 = cachep->nodelists[node];
1122
1123 if (ac->avail) {
1124 spin_lock(&rl3->list_lock);
Christoph Lametere00946f2006-03-25 03:06:45 -08001125 /*
1126 * Stuff objects into the remote nodes shared array first.
1127 * That way we could avoid the overhead of putting the objects
1128 * into the free lists and getting them back later.
1129 */
shin, jacob693f7d32006-04-28 10:54:37 -05001130 if (rl3->shared)
1131 transfer_objects(rl3->shared, ac, ac->limit);
Christoph Lametere00946f2006-03-25 03:06:45 -08001132
Christoph Lameterff694162005-09-22 21:44:02 -07001133 free_block(cachep, ac->entry, ac->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -07001134 ac->avail = 0;
1135 spin_unlock(&rl3->list_lock);
1136 }
1137}
1138
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001139/*
1140 * Called from cache_reap() to regularly drain alien caches round robin.
1141 */
1142static void reap_alien(struct kmem_cache *cachep, struct kmem_list3 *l3)
1143{
Christoph Lameter909ea962010-12-08 16:22:55 +01001144 int node = __this_cpu_read(slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001145
1146 if (l3->alien) {
1147 struct array_cache *ac = l3->alien[node];
Christoph Lametere00946f2006-03-25 03:06:45 -08001148
1149 if (ac && ac->avail && spin_trylock_irq(&ac->lock)) {
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001150 __drain_alien_cache(cachep, ac, node);
1151 spin_unlock_irq(&ac->lock);
1152 }
1153 }
1154}
1155
Andrew Mortona737b3e2006-03-22 00:08:11 -08001156static void drain_alien_cache(struct kmem_cache *cachep,
1157 struct array_cache **alien)
Christoph Lametere498be72005-09-09 13:03:32 -07001158{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001159 int i = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07001160 struct array_cache *ac;
1161 unsigned long flags;
1162
1163 for_each_online_node(i) {
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001164 ac = alien[i];
Christoph Lametere498be72005-09-09 13:03:32 -07001165 if (ac) {
1166 spin_lock_irqsave(&ac->lock, flags);
1167 __drain_alien_cache(cachep, ac, i);
1168 spin_unlock_irqrestore(&ac->lock, flags);
1169 }
1170 }
1171}
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001172
Ingo Molnar873623d2006-07-13 14:44:38 +02001173static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001174{
1175 struct slab *slabp = virt_to_slab(objp);
1176 int nodeid = slabp->nodeid;
1177 struct kmem_list3 *l3;
1178 struct array_cache *alien = NULL;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001179 int node;
1180
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07001181 node = numa_mem_id();
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001182
1183 /*
1184 * Make sure we are not freeing a object from another node to the array
1185 * cache on this cpu.
1186 */
Siddha, Suresh B62918a02007-05-02 19:27:18 +02001187 if (likely(slabp->nodeid == node))
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001188 return 0;
1189
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001190 l3 = cachep->nodelists[node];
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001191 STATS_INC_NODEFREES(cachep);
1192 if (l3->alien && l3->alien[nodeid]) {
1193 alien = l3->alien[nodeid];
Ingo Molnar873623d2006-07-13 14:44:38 +02001194 spin_lock(&alien->lock);
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001195 if (unlikely(alien->avail == alien->limit)) {
1196 STATS_INC_ACOVERFLOW(cachep);
1197 __drain_alien_cache(cachep, alien, nodeid);
1198 }
Mel Gorman072bb0a2012-07-31 16:43:58 -07001199 ac_put_obj(cachep, alien, objp);
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001200 spin_unlock(&alien->lock);
1201 } else {
1202 spin_lock(&(cachep->nodelists[nodeid])->list_lock);
1203 free_block(cachep, &objp, 1, nodeid);
1204 spin_unlock(&(cachep->nodelists[nodeid])->list_lock);
1205 }
1206 return 1;
1207}
Christoph Lametere498be72005-09-09 13:03:32 -07001208#endif
1209
David Rientjes8f9f8d92010-03-27 19:40:47 -07001210/*
1211 * Allocates and initializes nodelists for a node on each slab cache, used for
1212 * either memory or cpu hotplug. If memory is being hot-added, the kmem_list3
1213 * will be allocated off-node since memory is not yet online for the new node.
1214 * When hotplugging memory or a cpu, existing nodelists are not replaced if
1215 * already in use.
1216 *
Christoph Lameter18004c52012-07-06 15:25:12 -05001217 * Must hold slab_mutex.
David Rientjes8f9f8d92010-03-27 19:40:47 -07001218 */
1219static int init_cache_nodelists_node(int node)
1220{
1221 struct kmem_cache *cachep;
1222 struct kmem_list3 *l3;
1223 const int memsize = sizeof(struct kmem_list3);
1224
Christoph Lameter18004c52012-07-06 15:25:12 -05001225 list_for_each_entry(cachep, &slab_caches, list) {
David Rientjes8f9f8d92010-03-27 19:40:47 -07001226 /*
1227 * Set up the size64 kmemlist for cpu before we can
1228 * begin anything. Make sure some other cpu on this
1229 * node has not already allocated this
1230 */
1231 if (!cachep->nodelists[node]) {
1232 l3 = kmalloc_node(memsize, GFP_KERNEL, node);
1233 if (!l3)
1234 return -ENOMEM;
1235 kmem_list3_init(l3);
1236 l3->next_reap = jiffies + REAPTIMEOUT_LIST3 +
1237 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
1238
1239 /*
1240 * The l3s don't come and go as CPUs come and
Christoph Lameter18004c52012-07-06 15:25:12 -05001241 * go. slab_mutex is sufficient
David Rientjes8f9f8d92010-03-27 19:40:47 -07001242 * protection here.
1243 */
1244 cachep->nodelists[node] = l3;
1245 }
1246
1247 spin_lock_irq(&cachep->nodelists[node]->list_lock);
1248 cachep->nodelists[node]->free_limit =
1249 (1 + nr_cpus_node(node)) *
1250 cachep->batchcount + cachep->num;
1251 spin_unlock_irq(&cachep->nodelists[node]->list_lock);
1252 }
1253 return 0;
1254}
1255
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001256static void __cpuinit cpuup_canceled(long cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257{
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001258 struct kmem_cache *cachep;
1259 struct kmem_list3 *l3 = NULL;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07001260 int node = cpu_to_mem(cpu);
Rusty Russella70f7302009-03-13 14:49:46 +10301261 const struct cpumask *mask = cpumask_of_node(node);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001262
Christoph Lameter18004c52012-07-06 15:25:12 -05001263 list_for_each_entry(cachep, &slab_caches, list) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001264 struct array_cache *nc;
1265 struct array_cache *shared;
1266 struct array_cache **alien;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001267
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001268 /* cpu is dead; no one can alloc from it. */
1269 nc = cachep->array[cpu];
1270 cachep->array[cpu] = NULL;
1271 l3 = cachep->nodelists[node];
1272
1273 if (!l3)
1274 goto free_array_cache;
1275
1276 spin_lock_irq(&l3->list_lock);
1277
1278 /* Free limit for this kmem_list3 */
1279 l3->free_limit -= cachep->batchcount;
1280 if (nc)
1281 free_block(cachep, nc->entry, nc->avail, node);
1282
Rusty Russell58463c12009-12-17 11:43:12 -06001283 if (!cpumask_empty(mask)) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001284 spin_unlock_irq(&l3->list_lock);
1285 goto free_array_cache;
1286 }
1287
1288 shared = l3->shared;
1289 if (shared) {
1290 free_block(cachep, shared->entry,
1291 shared->avail, node);
1292 l3->shared = NULL;
1293 }
1294
1295 alien = l3->alien;
1296 l3->alien = NULL;
1297
1298 spin_unlock_irq(&l3->list_lock);
1299
1300 kfree(shared);
1301 if (alien) {
1302 drain_alien_cache(cachep, alien);
1303 free_alien_cache(alien);
1304 }
1305free_array_cache:
1306 kfree(nc);
1307 }
1308 /*
1309 * In the previous loop, all the objects were freed to
1310 * the respective cache's slabs, now we can go ahead and
1311 * shrink each nodelist to its limit.
1312 */
Christoph Lameter18004c52012-07-06 15:25:12 -05001313 list_for_each_entry(cachep, &slab_caches, list) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001314 l3 = cachep->nodelists[node];
1315 if (!l3)
1316 continue;
1317 drain_freelist(cachep, l3, l3->free_objects);
1318 }
1319}
1320
1321static int __cpuinit cpuup_prepare(long cpu)
1322{
Pekka Enberg343e0d72006-02-01 03:05:50 -08001323 struct kmem_cache *cachep;
Christoph Lametere498be72005-09-09 13:03:32 -07001324 struct kmem_list3 *l3 = NULL;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07001325 int node = cpu_to_mem(cpu);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001326 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001328 /*
1329 * We need to do this right in the beginning since
1330 * alloc_arraycache's are going to use this list.
1331 * kmalloc_node allows us to add the slab to the right
1332 * kmem_list3 and not this cpu's kmem_list3
1333 */
David Rientjes8f9f8d92010-03-27 19:40:47 -07001334 err = init_cache_nodelists_node(node);
1335 if (err < 0)
1336 goto bad;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001337
1338 /*
1339 * Now we can go ahead with allocating the shared arrays and
1340 * array caches
1341 */
Christoph Lameter18004c52012-07-06 15:25:12 -05001342 list_for_each_entry(cachep, &slab_caches, list) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001343 struct array_cache *nc;
1344 struct array_cache *shared = NULL;
1345 struct array_cache **alien = NULL;
1346
1347 nc = alloc_arraycache(node, cachep->limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03001348 cachep->batchcount, GFP_KERNEL);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001349 if (!nc)
1350 goto bad;
1351 if (cachep->shared) {
1352 shared = alloc_arraycache(node,
1353 cachep->shared * cachep->batchcount,
Pekka Enberg83b519e2009-06-10 19:40:04 +03001354 0xbaadf00d, GFP_KERNEL);
Akinobu Mita12d00f62007-10-18 03:05:11 -07001355 if (!shared) {
1356 kfree(nc);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001357 goto bad;
Akinobu Mita12d00f62007-10-18 03:05:11 -07001358 }
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001359 }
1360 if (use_alien_caches) {
Pekka Enberg83b519e2009-06-10 19:40:04 +03001361 alien = alloc_alien_cache(node, cachep->limit, GFP_KERNEL);
Akinobu Mita12d00f62007-10-18 03:05:11 -07001362 if (!alien) {
1363 kfree(shared);
1364 kfree(nc);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001365 goto bad;
Akinobu Mita12d00f62007-10-18 03:05:11 -07001366 }
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001367 }
1368 cachep->array[cpu] = nc;
1369 l3 = cachep->nodelists[node];
1370 BUG_ON(!l3);
1371
1372 spin_lock_irq(&l3->list_lock);
1373 if (!l3->shared) {
1374 /*
1375 * We are serialised from CPU_DEAD or
1376 * CPU_UP_CANCELLED by the cpucontrol lock
1377 */
1378 l3->shared = shared;
1379 shared = NULL;
1380 }
1381#ifdef CONFIG_NUMA
1382 if (!l3->alien) {
1383 l3->alien = alien;
1384 alien = NULL;
1385 }
1386#endif
1387 spin_unlock_irq(&l3->list_lock);
1388 kfree(shared);
1389 free_alien_cache(alien);
Peter Zijlstra83835b32011-07-22 15:26:05 +02001390 if (cachep->flags & SLAB_DEBUG_OBJECTS)
1391 slab_set_debugobj_lock_classes_node(cachep, node);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001392 }
Pekka Enbergce79ddc2009-11-23 22:01:15 +02001393 init_node_lock_keys(node);
1394
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001395 return 0;
1396bad:
Akinobu Mita12d00f62007-10-18 03:05:11 -07001397 cpuup_canceled(cpu);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001398 return -ENOMEM;
1399}
1400
1401static int __cpuinit cpuup_callback(struct notifier_block *nfb,
1402 unsigned long action, void *hcpu)
1403{
1404 long cpu = (long)hcpu;
1405 int err = 0;
1406
Linus Torvalds1da177e2005-04-16 15:20:36 -07001407 switch (action) {
Heiko Carstens38c3bd92007-05-09 02:34:05 -07001408 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001409 case CPU_UP_PREPARE_FROZEN:
Christoph Lameter18004c52012-07-06 15:25:12 -05001410 mutex_lock(&slab_mutex);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001411 err = cpuup_prepare(cpu);
Christoph Lameter18004c52012-07-06 15:25:12 -05001412 mutex_unlock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 break;
1414 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001415 case CPU_ONLINE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416 start_cpu_timer(cpu);
1417 break;
1418#ifdef CONFIG_HOTPLUG_CPU
Christoph Lameter5830c592007-05-09 02:34:22 -07001419 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001420 case CPU_DOWN_PREPARE_FROZEN:
Christoph Lameter5830c592007-05-09 02:34:22 -07001421 /*
Christoph Lameter18004c52012-07-06 15:25:12 -05001422 * Shutdown cache reaper. Note that the slab_mutex is
Christoph Lameter5830c592007-05-09 02:34:22 -07001423 * held so that if cache_reap() is invoked it cannot do
1424 * anything expensive but will only modify reap_work
1425 * and reschedule the timer.
1426 */
Tejun Heoafe2c512010-12-14 16:21:17 +01001427 cancel_delayed_work_sync(&per_cpu(slab_reap_work, cpu));
Christoph Lameter5830c592007-05-09 02:34:22 -07001428 /* Now the cache_reaper is guaranteed to be not running. */
Tejun Heo1871e522009-10-29 22:34:13 +09001429 per_cpu(slab_reap_work, cpu).work.func = NULL;
Christoph Lameter5830c592007-05-09 02:34:22 -07001430 break;
1431 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001432 case CPU_DOWN_FAILED_FROZEN:
Christoph Lameter5830c592007-05-09 02:34:22 -07001433 start_cpu_timer(cpu);
1434 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001435 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001436 case CPU_DEAD_FROZEN:
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001437 /*
1438 * Even if all the cpus of a node are down, we don't free the
1439 * kmem_list3 of any cache. This to avoid a race between
1440 * cpu_down, and a kmalloc allocation from another cpu for
1441 * memory from the node of the cpu going down. The list3
1442 * structure is usually allocated from kmem_cache_create() and
1443 * gets destroyed at kmem_cache_destroy().
1444 */
Simon Arlott183ff222007-10-20 01:27:18 +02001445 /* fall through */
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08001446#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001448 case CPU_UP_CANCELED_FROZEN:
Christoph Lameter18004c52012-07-06 15:25:12 -05001449 mutex_lock(&slab_mutex);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001450 cpuup_canceled(cpu);
Christoph Lameter18004c52012-07-06 15:25:12 -05001451 mutex_unlock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453 }
Akinobu Mitaeac40682010-05-26 14:43:32 -07001454 return notifier_from_errno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455}
1456
Chandra Seetharaman74b85f32006-06-27 02:54:09 -07001457static struct notifier_block __cpuinitdata cpucache_notifier = {
1458 &cpuup_callback, NULL, 0
1459};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460
David Rientjes8f9f8d92010-03-27 19:40:47 -07001461#if defined(CONFIG_NUMA) && defined(CONFIG_MEMORY_HOTPLUG)
1462/*
1463 * Drains freelist for a node on each slab cache, used for memory hot-remove.
1464 * Returns -EBUSY if all objects cannot be drained so that the node is not
1465 * removed.
1466 *
Christoph Lameter18004c52012-07-06 15:25:12 -05001467 * Must hold slab_mutex.
David Rientjes8f9f8d92010-03-27 19:40:47 -07001468 */
1469static int __meminit drain_cache_nodelists_node(int node)
1470{
1471 struct kmem_cache *cachep;
1472 int ret = 0;
1473
Christoph Lameter18004c52012-07-06 15:25:12 -05001474 list_for_each_entry(cachep, &slab_caches, list) {
David Rientjes8f9f8d92010-03-27 19:40:47 -07001475 struct kmem_list3 *l3;
1476
1477 l3 = cachep->nodelists[node];
1478 if (!l3)
1479 continue;
1480
1481 drain_freelist(cachep, l3, l3->free_objects);
1482
1483 if (!list_empty(&l3->slabs_full) ||
1484 !list_empty(&l3->slabs_partial)) {
1485 ret = -EBUSY;
1486 break;
1487 }
1488 }
1489 return ret;
1490}
1491
1492static int __meminit slab_memory_callback(struct notifier_block *self,
1493 unsigned long action, void *arg)
1494{
1495 struct memory_notify *mnb = arg;
1496 int ret = 0;
1497 int nid;
1498
1499 nid = mnb->status_change_nid;
1500 if (nid < 0)
1501 goto out;
1502
1503 switch (action) {
1504 case MEM_GOING_ONLINE:
Christoph Lameter18004c52012-07-06 15:25:12 -05001505 mutex_lock(&slab_mutex);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001506 ret = init_cache_nodelists_node(nid);
Christoph Lameter18004c52012-07-06 15:25:12 -05001507 mutex_unlock(&slab_mutex);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001508 break;
1509 case MEM_GOING_OFFLINE:
Christoph Lameter18004c52012-07-06 15:25:12 -05001510 mutex_lock(&slab_mutex);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001511 ret = drain_cache_nodelists_node(nid);
Christoph Lameter18004c52012-07-06 15:25:12 -05001512 mutex_unlock(&slab_mutex);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001513 break;
1514 case MEM_ONLINE:
1515 case MEM_OFFLINE:
1516 case MEM_CANCEL_ONLINE:
1517 case MEM_CANCEL_OFFLINE:
1518 break;
1519 }
1520out:
Prarit Bhargava5fda1bd2011-03-22 16:30:49 -07001521 return notifier_from_errno(ret);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001522}
1523#endif /* CONFIG_NUMA && CONFIG_MEMORY_HOTPLUG */
1524
Christoph Lametere498be72005-09-09 13:03:32 -07001525/*
1526 * swap the static kmem_list3 with kmalloced memory
1527 */
David Rientjes8f9f8d92010-03-27 19:40:47 -07001528static void __init init_list(struct kmem_cache *cachep, struct kmem_list3 *list,
1529 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07001530{
1531 struct kmem_list3 *ptr;
1532
Pekka Enberg83b519e2009-06-10 19:40:04 +03001533 ptr = kmalloc_node(sizeof(struct kmem_list3), GFP_NOWAIT, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07001534 BUG_ON(!ptr);
1535
Christoph Lametere498be72005-09-09 13:03:32 -07001536 memcpy(ptr, list, sizeof(struct kmem_list3));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001537 /*
1538 * Do not assume that spinlocks can be initialized via memcpy:
1539 */
1540 spin_lock_init(&ptr->list_lock);
1541
Christoph Lametere498be72005-09-09 13:03:32 -07001542 MAKE_ALL_LISTS(cachep, ptr, nodeid);
1543 cachep->nodelists[nodeid] = ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001544}
1545
Andrew Mortona737b3e2006-03-22 00:08:11 -08001546/*
Pekka Enberg556a1692008-01-25 08:20:51 +02001547 * For setting up all the kmem_list3s for cache whose buffer_size is same as
1548 * size of kmem_list3.
1549 */
1550static void __init set_up_list3s(struct kmem_cache *cachep, int index)
1551{
1552 int node;
1553
1554 for_each_online_node(node) {
1555 cachep->nodelists[node] = &initkmem_list3[index + node];
1556 cachep->nodelists[node]->next_reap = jiffies +
1557 REAPTIMEOUT_LIST3 +
1558 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
1559 }
1560}
1561
1562/*
Andrew Mortona737b3e2006-03-22 00:08:11 -08001563 * Initialisation. Called after the page allocator have been initialised and
1564 * before smp_init().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001565 */
1566void __init kmem_cache_init(void)
1567{
1568 size_t left_over;
1569 struct cache_sizes *sizes;
1570 struct cache_names *names;
Christoph Lametere498be72005-09-09 13:03:32 -07001571 int i;
Jack Steiner07ed76b2006-03-07 21:55:46 -08001572 int order;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001573 int node;
Christoph Lametere498be72005-09-09 13:03:32 -07001574
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001575 kmem_cache = &kmem_cache_boot;
1576
Mel Gormanb6e68bc2009-06-16 15:32:16 -07001577 if (num_possible_nodes() == 1)
Siddha, Suresh B62918a02007-05-02 19:27:18 +02001578 use_alien_caches = 0;
1579
Christoph Lametere498be72005-09-09 13:03:32 -07001580 for (i = 0; i < NUM_INIT_LISTS; i++) {
1581 kmem_list3_init(&initkmem_list3[i]);
1582 if (i < MAX_NUMNODES)
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001583 kmem_cache->nodelists[i] = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07001584 }
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001585 set_up_list3s(kmem_cache, CACHE_CACHE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586
1587 /*
1588 * Fragmentation resistance on low memory - only use bigger
David Rientjes3df1ccc2011-10-18 22:09:28 -07001589 * page orders on machines with more than 32MB of memory if
1590 * not overridden on the command line.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 */
David Rientjes3df1ccc2011-10-18 22:09:28 -07001592 if (!slab_max_order_set && totalram_pages > (32 << 20) >> PAGE_SHIFT)
David Rientjes543585c2011-10-18 22:09:24 -07001593 slab_max_order = SLAB_MAX_ORDER_HI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 /* Bootstrap is tricky, because several objects are allocated
1596 * from caches that do not exist yet:
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001597 * 1) initialize the kmem_cache cache: it contains the struct
1598 * kmem_cache structures of all caches, except kmem_cache itself:
1599 * kmem_cache is statically allocated.
Christoph Lametere498be72005-09-09 13:03:32 -07001600 * Initially an __init data area is used for the head array and the
1601 * kmem_list3 structures, it's replaced with a kmalloc allocated
1602 * array at the end of the bootstrap.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 * 2) Create the first kmalloc cache.
Pekka Enberg343e0d72006-02-01 03:05:50 -08001604 * The struct kmem_cache for the new cache is allocated normally.
Christoph Lametere498be72005-09-09 13:03:32 -07001605 * An __init data area is used for the head array.
1606 * 3) Create the remaining kmalloc caches, with minimally sized
1607 * head arrays.
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001608 * 4) Replace the __init data head arrays for kmem_cache and the first
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 * kmalloc cache with kmalloc allocated arrays.
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001610 * 5) Replace the __init data for kmem_list3 for kmem_cache and
Christoph Lametere498be72005-09-09 13:03:32 -07001611 * the other cache's with kmalloc allocated memory.
1612 * 6) Resize the head arrays of the kmalloc caches to their final sizes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 */
1614
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07001615 node = numa_mem_id();
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001616
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001617 /* 1) create the kmem_cache */
Christoph Lameter18004c52012-07-06 15:25:12 -05001618 INIT_LIST_HEAD(&slab_caches);
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001619 list_add(&kmem_cache->list, &slab_caches);
1620 kmem_cache->colour_off = cache_line_size();
1621 kmem_cache->array[smp_processor_id()] = &initarray_cache.cache;
1622 kmem_cache->nodelists[node] = &initkmem_list3[CACHE_CACHE + node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623
Eric Dumazet8da34302007-05-06 14:49:29 -07001624 /*
Eric Dumazetb56efcf2011-07-20 19:04:23 +02001625 * struct kmem_cache size depends on nr_node_ids & nr_cpu_ids
Eric Dumazet8da34302007-05-06 14:49:29 -07001626 */
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001627 kmem_cache->size = offsetof(struct kmem_cache, array[nr_cpu_ids]) +
Eric Dumazetb56efcf2011-07-20 19:04:23 +02001628 nr_node_ids * sizeof(struct kmem_list3 *);
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001629 kmem_cache->object_size = kmem_cache->size;
1630 kmem_cache->size = ALIGN(kmem_cache->object_size,
Andrew Mortona737b3e2006-03-22 00:08:11 -08001631 cache_line_size());
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001632 kmem_cache->reciprocal_buffer_size =
1633 reciprocal_value(kmem_cache->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634
Jack Steiner07ed76b2006-03-07 21:55:46 -08001635 for (order = 0; order < MAX_ORDER; order++) {
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001636 cache_estimate(order, kmem_cache->size,
1637 cache_line_size(), 0, &left_over, &kmem_cache->num);
1638 if (kmem_cache->num)
Jack Steiner07ed76b2006-03-07 21:55:46 -08001639 break;
1640 }
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001641 BUG_ON(!kmem_cache->num);
1642 kmem_cache->gfporder = order;
1643 kmem_cache->colour = left_over / kmem_cache->colour_off;
1644 kmem_cache->slab_size = ALIGN(kmem_cache->num * sizeof(kmem_bufctl_t) +
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001645 sizeof(struct slab), cache_line_size());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646
1647 /* 2+3) create the kmalloc caches */
1648 sizes = malloc_sizes;
1649 names = cache_names;
1650
Andrew Mortona737b3e2006-03-22 00:08:11 -08001651 /*
1652 * Initialize the caches that provide memory for the array cache and the
1653 * kmem_list3 structures first. Without this, further allocations will
1654 * bug.
Christoph Lametere498be72005-09-09 13:03:32 -07001655 */
1656
Christoph Lameter278b1bb2012-09-05 00:20:34 +00001657 sizes[INDEX_AC].cs_cachep = kmem_cache_zalloc(kmem_cache, GFP_NOWAIT);
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00001658 sizes[INDEX_AC].cs_cachep->name = names[INDEX_AC].name;
1659 sizes[INDEX_AC].cs_cachep->size = sizes[INDEX_AC].cs_size;
1660 sizes[INDEX_AC].cs_cachep->object_size = sizes[INDEX_AC].cs_size;
1661 sizes[INDEX_AC].cs_cachep->align = ARCH_KMALLOC_MINALIGN;
1662 __kmem_cache_create(sizes[INDEX_AC].cs_cachep, ARCH_KMALLOC_FLAGS|SLAB_PANIC);
Christoph Lameter7c9adf52012-09-04 23:38:33 +00001663 list_add(&sizes[INDEX_AC].cs_cachep->list, &slab_caches);
Christoph Lametere498be72005-09-09 13:03:32 -07001664
Andrew Mortona737b3e2006-03-22 00:08:11 -08001665 if (INDEX_AC != INDEX_L3) {
Christoph Lameter278b1bb2012-09-05 00:20:34 +00001666 sizes[INDEX_L3].cs_cachep = kmem_cache_zalloc(kmem_cache, GFP_NOWAIT);
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00001667 sizes[INDEX_L3].cs_cachep->name = names[INDEX_L3].name;
1668 sizes[INDEX_L3].cs_cachep->size = sizes[INDEX_L3].cs_size;
1669 sizes[INDEX_L3].cs_cachep->object_size = sizes[INDEX_L3].cs_size;
1670 sizes[INDEX_L3].cs_cachep->align = ARCH_KMALLOC_MINALIGN;
1671 __kmem_cache_create(sizes[INDEX_L3].cs_cachep, ARCH_KMALLOC_FLAGS|SLAB_PANIC);
Christoph Lameter7c9adf52012-09-04 23:38:33 +00001672 list_add(&sizes[INDEX_L3].cs_cachep->list, &slab_caches);
Andrew Mortona737b3e2006-03-22 00:08:11 -08001673 }
Christoph Lametere498be72005-09-09 13:03:32 -07001674
Ingo Molnare0a42722006-06-23 02:03:46 -07001675 slab_early_init = 0;
1676
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 while (sizes->cs_size != ULONG_MAX) {
Christoph Lametere498be72005-09-09 13:03:32 -07001678 /*
1679 * For performance, all the general caches are L1 aligned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 * This should be particularly beneficial on SMP boxes, as it
1681 * eliminates "false sharing".
1682 * Note for systems short on memory removing the alignment will
Christoph Lametere498be72005-09-09 13:03:32 -07001683 * allow tighter packing of the smaller caches.
1684 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08001685 if (!sizes->cs_cachep) {
Christoph Lameter278b1bb2012-09-05 00:20:34 +00001686 sizes->cs_cachep = kmem_cache_zalloc(kmem_cache, GFP_NOWAIT);
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00001687 sizes->cs_cachep->name = names->name;
1688 sizes->cs_cachep->size = sizes->cs_size;
1689 sizes->cs_cachep->object_size = sizes->cs_size;
1690 sizes->cs_cachep->align = ARCH_KMALLOC_MINALIGN;
1691 __kmem_cache_create(sizes->cs_cachep, ARCH_KMALLOC_FLAGS|SLAB_PANIC);
Christoph Lameter7c9adf52012-09-04 23:38:33 +00001692 list_add(&sizes->cs_cachep->list, &slab_caches);
Andrew Mortona737b3e2006-03-22 00:08:11 -08001693 }
Christoph Lameter4b51d662007-02-10 01:43:10 -08001694#ifdef CONFIG_ZONE_DMA
Christoph Lameter278b1bb2012-09-05 00:20:34 +00001695 sizes->cs_dmacachep = kmem_cache_zalloc(kmem_cache, GFP_NOWAIT);
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00001696 sizes->cs_dmacachep->name = names->name_dma;
1697 sizes->cs_dmacachep->size = sizes->cs_size;
1698 sizes->cs_dmacachep->object_size = sizes->cs_size;
1699 sizes->cs_dmacachep->align = ARCH_KMALLOC_MINALIGN;
Christoph Lameter278b1bb2012-09-05 00:20:34 +00001700 __kmem_cache_create(sizes->cs_dmacachep,
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00001701 ARCH_KMALLOC_FLAGS|SLAB_CACHE_DMA| SLAB_PANIC);
Christoph Lameter7c9adf52012-09-04 23:38:33 +00001702 list_add(&sizes->cs_dmacachep->list, &slab_caches);
Christoph Lameter4b51d662007-02-10 01:43:10 -08001703#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 sizes++;
1705 names++;
1706 }
1707 /* 4) Replace the bootstrap head arrays */
1708 {
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001709 struct array_cache *ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001710
Pekka Enberg83b519e2009-06-10 19:40:04 +03001711 ptr = kmalloc(sizeof(struct arraycache_init), GFP_NOWAIT);
Christoph Lametere498be72005-09-09 13:03:32 -07001712
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001713 BUG_ON(cpu_cache_get(kmem_cache) != &initarray_cache.cache);
1714 memcpy(ptr, cpu_cache_get(kmem_cache),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001715 sizeof(struct arraycache_init));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001716 /*
1717 * Do not assume that spinlocks can be initialized via memcpy:
1718 */
1719 spin_lock_init(&ptr->lock);
1720
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001721 kmem_cache->array[smp_processor_id()] = ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001722
Pekka Enberg83b519e2009-06-10 19:40:04 +03001723 ptr = kmalloc(sizeof(struct arraycache_init), GFP_NOWAIT);
Christoph Lametere498be72005-09-09 13:03:32 -07001724
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001725 BUG_ON(cpu_cache_get(malloc_sizes[INDEX_AC].cs_cachep)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001726 != &initarray_generic.cache);
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001727 memcpy(ptr, cpu_cache_get(malloc_sizes[INDEX_AC].cs_cachep),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001728 sizeof(struct arraycache_init));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001729 /*
1730 * Do not assume that spinlocks can be initialized via memcpy:
1731 */
1732 spin_lock_init(&ptr->lock);
1733
Christoph Lametere498be72005-09-09 13:03:32 -07001734 malloc_sizes[INDEX_AC].cs_cachep->array[smp_processor_id()] =
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001735 ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 }
Christoph Lametere498be72005-09-09 13:03:32 -07001737 /* 5) Replace the bootstrap kmem_list3's */
1738 {
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001739 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001740
Mel Gorman9c09a952008-01-24 05:49:54 -08001741 for_each_online_node(nid) {
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001742 init_list(kmem_cache, &initkmem_list3[CACHE_CACHE + nid], nid);
Pekka Enberg556a1692008-01-25 08:20:51 +02001743
Christoph Lametere498be72005-09-09 13:03:32 -07001744 init_list(malloc_sizes[INDEX_AC].cs_cachep,
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001745 &initkmem_list3[SIZE_AC + nid], nid);
Christoph Lametere498be72005-09-09 13:03:32 -07001746
1747 if (INDEX_AC != INDEX_L3) {
1748 init_list(malloc_sizes[INDEX_L3].cs_cachep,
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001749 &initkmem_list3[SIZE_L3 + nid], nid);
Christoph Lametere498be72005-09-09 13:03:32 -07001750 }
1751 }
1752 }
1753
Christoph Lameter97d06602012-07-06 15:25:11 -05001754 slab_state = UP;
Pekka Enberg8429db52009-06-12 15:58:59 +03001755}
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -07001756
Pekka Enberg8429db52009-06-12 15:58:59 +03001757void __init kmem_cache_init_late(void)
1758{
1759 struct kmem_cache *cachep;
1760
Christoph Lameter97d06602012-07-06 15:25:11 -05001761 slab_state = UP;
Peter Zijlstra52cef182011-11-28 21:12:40 +01001762
Pekka Enberg8429db52009-06-12 15:58:59 +03001763 /* 6) resize the head arrays to their final sizes */
Christoph Lameter18004c52012-07-06 15:25:12 -05001764 mutex_lock(&slab_mutex);
1765 list_for_each_entry(cachep, &slab_caches, list)
Pekka Enberg8429db52009-06-12 15:58:59 +03001766 if (enable_cpucache(cachep, GFP_NOWAIT))
1767 BUG();
Christoph Lameter18004c52012-07-06 15:25:12 -05001768 mutex_unlock(&slab_mutex);
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -07001769
Michael Wang947ca182012-09-05 10:33:18 +08001770 /* Annotate slab for lockdep -- annotate the malloc caches */
1771 init_lock_keys();
1772
Christoph Lameter97d06602012-07-06 15:25:11 -05001773 /* Done! */
1774 slab_state = FULL;
1775
Andrew Mortona737b3e2006-03-22 00:08:11 -08001776 /*
1777 * Register a cpu startup notifier callback that initializes
1778 * cpu_cache_get for all new cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779 */
1780 register_cpu_notifier(&cpucache_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001781
David Rientjes8f9f8d92010-03-27 19:40:47 -07001782#ifdef CONFIG_NUMA
1783 /*
1784 * Register a memory hotplug callback that initializes and frees
1785 * nodelists.
1786 */
1787 hotplug_memory_notifier(slab_memory_callback, SLAB_CALLBACK_PRI);
1788#endif
1789
Andrew Mortona737b3e2006-03-22 00:08:11 -08001790 /*
1791 * The reap timers are started later, with a module init call: That part
1792 * of the kernel is not yet operational.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001793 */
1794}
1795
1796static int __init cpucache_init(void)
1797{
1798 int cpu;
1799
Andrew Mortona737b3e2006-03-22 00:08:11 -08001800 /*
1801 * Register the timers that return unneeded pages to the page allocator
Linus Torvalds1da177e2005-04-16 15:20:36 -07001802 */
Christoph Lametere498be72005-09-09 13:03:32 -07001803 for_each_online_cpu(cpu)
Andrew Mortona737b3e2006-03-22 00:08:11 -08001804 start_cpu_timer(cpu);
Glauber Costaa164f8962012-06-21 00:59:18 +04001805
1806 /* Done! */
Christoph Lameter97d06602012-07-06 15:25:11 -05001807 slab_state = FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 return 0;
1809}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810__initcall(cpucache_init);
1811
Rafael Aquini8bdec192012-03-09 17:27:27 -03001812static noinline void
1813slab_out_of_memory(struct kmem_cache *cachep, gfp_t gfpflags, int nodeid)
1814{
1815 struct kmem_list3 *l3;
1816 struct slab *slabp;
1817 unsigned long flags;
1818 int node;
1819
1820 printk(KERN_WARNING
1821 "SLAB: Unable to allocate memory on node %d (gfp=0x%x)\n",
1822 nodeid, gfpflags);
1823 printk(KERN_WARNING " cache: %s, object size: %d, order: %d\n",
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05001824 cachep->name, cachep->size, cachep->gfporder);
Rafael Aquini8bdec192012-03-09 17:27:27 -03001825
1826 for_each_online_node(node) {
1827 unsigned long active_objs = 0, num_objs = 0, free_objects = 0;
1828 unsigned long active_slabs = 0, num_slabs = 0;
1829
1830 l3 = cachep->nodelists[node];
1831 if (!l3)
1832 continue;
1833
1834 spin_lock_irqsave(&l3->list_lock, flags);
1835 list_for_each_entry(slabp, &l3->slabs_full, list) {
1836 active_objs += cachep->num;
1837 active_slabs++;
1838 }
1839 list_for_each_entry(slabp, &l3->slabs_partial, list) {
1840 active_objs += slabp->inuse;
1841 active_slabs++;
1842 }
1843 list_for_each_entry(slabp, &l3->slabs_free, list)
1844 num_slabs++;
1845
1846 free_objects += l3->free_objects;
1847 spin_unlock_irqrestore(&l3->list_lock, flags);
1848
1849 num_slabs += active_slabs;
1850 num_objs = num_slabs * cachep->num;
1851 printk(KERN_WARNING
1852 " node %d: slabs: %ld/%ld, objs: %ld/%ld, free: %ld\n",
1853 node, active_slabs, num_slabs, active_objs, num_objs,
1854 free_objects);
1855 }
1856}
1857
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858/*
1859 * Interface to system's page allocator. No need to hold the cache-lock.
1860 *
1861 * If we requested dmaable memory, we will get it. Even if we
1862 * did not request dmaable memory, we might get it, but that
1863 * would be relatively rare and ignorable.
1864 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001865static void *kmem_getpages(struct kmem_cache *cachep, gfp_t flags, int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866{
1867 struct page *page;
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001868 int nr_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 int i;
1870
Luke Yangd6fef9d2006-04-10 22:52:56 -07001871#ifndef CONFIG_MMU
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001872 /*
1873 * Nommu uses slab's for process anonymous memory allocations, and thus
1874 * requires __GFP_COMP to properly refcount higher order allocations
Luke Yangd6fef9d2006-04-10 22:52:56 -07001875 */
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001876 flags |= __GFP_COMP;
Luke Yangd6fef9d2006-04-10 22:52:56 -07001877#endif
Christoph Lameter765c4502006-09-27 01:50:08 -07001878
Glauber Costaa618e892012-06-14 16:17:21 +04001879 flags |= cachep->allocflags;
Mel Gormane12ba742007-10-16 01:25:52 -07001880 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1881 flags |= __GFP_RECLAIMABLE;
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001882
Linus Torvalds517d0862009-06-16 19:50:13 -07001883 page = alloc_pages_exact_node(nodeid, flags | __GFP_NOTRACK, cachep->gfporder);
Rafael Aquini8bdec192012-03-09 17:27:27 -03001884 if (!page) {
1885 if (!(flags & __GFP_NOWARN) && printk_ratelimit())
1886 slab_out_of_memory(cachep, flags, nodeid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 return NULL;
Rafael Aquini8bdec192012-03-09 17:27:27 -03001888 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889
Mel Gormanb37f1dd2012-07-31 16:44:03 -07001890 /* Record if ALLOC_NO_WATERMARKS was set when allocating the slab */
Mel Gorman072bb0a2012-07-31 16:43:58 -07001891 if (unlikely(page->pfmemalloc))
1892 pfmemalloc_active = true;
1893
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001894 nr_pages = (1 << cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001895 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
Christoph Lameter972d1a72006-09-25 23:31:51 -07001896 add_zone_page_state(page_zone(page),
1897 NR_SLAB_RECLAIMABLE, nr_pages);
1898 else
1899 add_zone_page_state(page_zone(page),
1900 NR_SLAB_UNRECLAIMABLE, nr_pages);
Mel Gorman072bb0a2012-07-31 16:43:58 -07001901 for (i = 0; i < nr_pages; i++) {
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001902 __SetPageSlab(page + i);
Pekka Enbergc175eea2008-05-09 20:35:53 +02001903
Mel Gorman072bb0a2012-07-31 16:43:58 -07001904 if (page->pfmemalloc)
1905 SetPageSlabPfmemalloc(page + i);
1906 }
1907
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001908 if (kmemcheck_enabled && !(cachep->flags & SLAB_NOTRACK)) {
1909 kmemcheck_alloc_shadow(page, cachep->gfporder, flags, nodeid);
1910
1911 if (cachep->ctor)
1912 kmemcheck_mark_uninitialized_pages(page, nr_pages);
1913 else
1914 kmemcheck_mark_unallocated_pages(page, nr_pages);
1915 }
Pekka Enbergc175eea2008-05-09 20:35:53 +02001916
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001917 return page_address(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918}
1919
1920/*
1921 * Interface to system's page release.
1922 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001923static void kmem_freepages(struct kmem_cache *cachep, void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001924{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001925 unsigned long i = (1 << cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001926 struct page *page = virt_to_page(addr);
1927 const unsigned long nr_freed = i;
1928
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001929 kmemcheck_free_shadow(page, cachep->gfporder);
Pekka Enbergc175eea2008-05-09 20:35:53 +02001930
Christoph Lameter972d1a72006-09-25 23:31:51 -07001931 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1932 sub_zone_page_state(page_zone(page),
1933 NR_SLAB_RECLAIMABLE, nr_freed);
1934 else
1935 sub_zone_page_state(page_zone(page),
1936 NR_SLAB_UNRECLAIMABLE, nr_freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001937 while (i--) {
Nick Pigginf205b2f2006-03-22 00:08:02 -08001938 BUG_ON(!PageSlab(page));
Mel Gorman072bb0a2012-07-31 16:43:58 -07001939 __ClearPageSlabPfmemalloc(page);
Nick Pigginf205b2f2006-03-22 00:08:02 -08001940 __ClearPageSlab(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 page++;
1942 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 if (current->reclaim_state)
1944 current->reclaim_state->reclaimed_slab += nr_freed;
1945 free_pages((unsigned long)addr, cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946}
1947
1948static void kmem_rcu_free(struct rcu_head *head)
1949{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001950 struct slab_rcu *slab_rcu = (struct slab_rcu *)head;
Pekka Enberg343e0d72006-02-01 03:05:50 -08001951 struct kmem_cache *cachep = slab_rcu->cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952
1953 kmem_freepages(cachep, slab_rcu->addr);
1954 if (OFF_SLAB(cachep))
1955 kmem_cache_free(cachep->slabp_cache, slab_rcu);
1956}
1957
1958#if DEBUG
1959
1960#ifdef CONFIG_DEBUG_PAGEALLOC
Pekka Enberg343e0d72006-02-01 03:05:50 -08001961static void store_stackinfo(struct kmem_cache *cachep, unsigned long *addr,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001962 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963{
Christoph Lameter8c138bc2012-06-13 10:24:58 -05001964 int size = cachep->object_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001966 addr = (unsigned long *)&((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001968 if (size < 5 * sizeof(unsigned long))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001969 return;
1970
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001971 *addr++ = 0x12345678;
1972 *addr++ = caller;
1973 *addr++ = smp_processor_id();
1974 size -= 3 * sizeof(unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 {
1976 unsigned long *sptr = &caller;
1977 unsigned long svalue;
1978
1979 while (!kstack_end(sptr)) {
1980 svalue = *sptr++;
1981 if (kernel_text_address(svalue)) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001982 *addr++ = svalue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 size -= sizeof(unsigned long);
1984 if (size <= sizeof(unsigned long))
1985 break;
1986 }
1987 }
1988
1989 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001990 *addr++ = 0x87654321;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991}
1992#endif
1993
Pekka Enberg343e0d72006-02-01 03:05:50 -08001994static void poison_obj(struct kmem_cache *cachep, void *addr, unsigned char val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995{
Christoph Lameter8c138bc2012-06-13 10:24:58 -05001996 int size = cachep->object_size;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001997 addr = &((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998
1999 memset(addr, val, size);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002000 *(unsigned char *)(addr + size - 1) = POISON_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001}
2002
2003static void dump_line(char *data, int offset, int limit)
2004{
2005 int i;
Dave Jonesaa83aa42006-09-29 01:59:51 -07002006 unsigned char error = 0;
2007 int bad_count = 0;
2008
Sebastian Andrzej Siewiorfdde6ab2011-07-29 18:22:13 +02002009 printk(KERN_ERR "%03x: ", offset);
Dave Jonesaa83aa42006-09-29 01:59:51 -07002010 for (i = 0; i < limit; i++) {
2011 if (data[offset + i] != POISON_FREE) {
2012 error = data[offset + i];
2013 bad_count++;
2014 }
Dave Jonesaa83aa42006-09-29 01:59:51 -07002015 }
Sebastian Andrzej Siewiorfdde6ab2011-07-29 18:22:13 +02002016 print_hex_dump(KERN_CONT, "", 0, 16, 1,
2017 &data[offset], limit, 1);
Dave Jonesaa83aa42006-09-29 01:59:51 -07002018
2019 if (bad_count == 1) {
2020 error ^= POISON_FREE;
2021 if (!(error & (error - 1))) {
2022 printk(KERN_ERR "Single bit error detected. Probably "
2023 "bad RAM.\n");
2024#ifdef CONFIG_X86
2025 printk(KERN_ERR "Run memtest86+ or a similar memory "
2026 "test tool.\n");
2027#else
2028 printk(KERN_ERR "Run a memory test tool.\n");
2029#endif
2030 }
2031 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032}
2033#endif
2034
2035#if DEBUG
2036
Pekka Enberg343e0d72006-02-01 03:05:50 -08002037static void print_objinfo(struct kmem_cache *cachep, void *objp, int lines)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038{
2039 int i, size;
2040 char *realobj;
2041
2042 if (cachep->flags & SLAB_RED_ZONE) {
David Woodhouseb46b8f12007-05-08 00:22:59 -07002043 printk(KERN_ERR "Redzone: 0x%llx/0x%llx.\n",
Andrew Mortona737b3e2006-03-22 00:08:11 -08002044 *dbg_redzone1(cachep, objp),
2045 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 }
2047
2048 if (cachep->flags & SLAB_STORE_USER) {
2049 printk(KERN_ERR "Last user: [<%p>]",
Andrew Mortona737b3e2006-03-22 00:08:11 -08002050 *dbg_userword(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 print_symbol("(%s)",
Andrew Mortona737b3e2006-03-22 00:08:11 -08002052 (unsigned long)*dbg_userword(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 printk("\n");
2054 }
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002055 realobj = (char *)objp + obj_offset(cachep);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05002056 size = cachep->object_size;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002057 for (i = 0; i < size && lines; i += 16, lines--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 int limit;
2059 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002060 if (i + limit > size)
2061 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002062 dump_line(realobj, i, limit);
2063 }
2064}
2065
Pekka Enberg343e0d72006-02-01 03:05:50 -08002066static void check_poison_obj(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067{
2068 char *realobj;
2069 int size, i;
2070 int lines = 0;
2071
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002072 realobj = (char *)objp + obj_offset(cachep);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05002073 size = cachep->object_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002075 for (i = 0; i < size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076 char exp = POISON_FREE;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002077 if (i == size - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 exp = POISON_END;
2079 if (realobj[i] != exp) {
2080 int limit;
2081 /* Mismatch ! */
2082 /* Print header */
2083 if (lines == 0) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002084 printk(KERN_ERR
Dave Jonesface37f2011-11-15 15:03:52 -08002085 "Slab corruption (%s): %s start=%p, len=%d\n",
2086 print_tainted(), cachep->name, realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002087 print_objinfo(cachep, objp, 0);
2088 }
2089 /* Hexdump the affected line */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002090 i = (i / 16) * 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002092 if (i + limit > size)
2093 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002094 dump_line(realobj, i, limit);
2095 i += 16;
2096 lines++;
2097 /* Limit to 5 lines */
2098 if (lines > 5)
2099 break;
2100 }
2101 }
2102 if (lines != 0) {
2103 /* Print some data about the neighboring objects, if they
2104 * exist:
2105 */
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08002106 struct slab *slabp = virt_to_slab(objp);
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002107 unsigned int objnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002109 objnr = obj_to_index(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 if (objnr) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002111 objp = index_to_obj(cachep, slabp, objnr - 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002112 realobj = (char *)objp + obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 printk(KERN_ERR "Prev obj: start=%p, len=%d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002114 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 print_objinfo(cachep, objp, 2);
2116 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002117 if (objnr + 1 < cachep->num) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002118 objp = index_to_obj(cachep, slabp, objnr + 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002119 realobj = (char *)objp + obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 printk(KERN_ERR "Next obj: start=%p, len=%d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002121 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 print_objinfo(cachep, objp, 2);
2123 }
2124 }
2125}
2126#endif
2127
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128#if DEBUG
Rabin Vincente79aec22008-07-04 00:40:32 +05302129static void slab_destroy_debugcheck(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002130{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 int i;
2132 for (i = 0; i < cachep->num; i++) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002133 void *objp = index_to_obj(cachep, slabp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134
2135 if (cachep->flags & SLAB_POISON) {
2136#ifdef CONFIG_DEBUG_PAGEALLOC
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002137 if (cachep->size % PAGE_SIZE == 0 &&
Andrew Mortona737b3e2006-03-22 00:08:11 -08002138 OFF_SLAB(cachep))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002139 kernel_map_pages(virt_to_page(objp),
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002140 cachep->size / PAGE_SIZE, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 else
2142 check_poison_obj(cachep, objp);
2143#else
2144 check_poison_obj(cachep, objp);
2145#endif
2146 }
2147 if (cachep->flags & SLAB_RED_ZONE) {
2148 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
2149 slab_error(cachep, "start of a freed object "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002150 "was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
2152 slab_error(cachep, "end of a freed object "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002153 "was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 }
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002156}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157#else
Rabin Vincente79aec22008-07-04 00:40:32 +05302158static void slab_destroy_debugcheck(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002159{
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002160}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161#endif
2162
Randy Dunlap911851e2006-03-22 00:08:14 -08002163/**
2164 * slab_destroy - destroy and release all objects in a slab
2165 * @cachep: cache pointer being destroyed
2166 * @slabp: slab pointer being destroyed
2167 *
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002168 * Destroy all the objs in a slab, and release the mem back to the system.
Andrew Mortona737b3e2006-03-22 00:08:11 -08002169 * Before calling the slab must have been unlinked from the cache. The
2170 * cache-lock is not held/needed.
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002171 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002172static void slab_destroy(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002173{
2174 void *addr = slabp->s_mem - slabp->colouroff;
2175
Rabin Vincente79aec22008-07-04 00:40:32 +05302176 slab_destroy_debugcheck(cachep, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 if (unlikely(cachep->flags & SLAB_DESTROY_BY_RCU)) {
2178 struct slab_rcu *slab_rcu;
2179
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002180 slab_rcu = (struct slab_rcu *)slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 slab_rcu->cachep = cachep;
2182 slab_rcu->addr = addr;
2183 call_rcu(&slab_rcu->head, kmem_rcu_free);
2184 } else {
2185 kmem_freepages(cachep, addr);
Ingo Molnar873623d2006-07-13 14:44:38 +02002186 if (OFF_SLAB(cachep))
2187 kmem_cache_free(cachep->slabp_cache, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002188 }
2189}
2190
2191/**
Randy.Dunlapa70773d2006-02-01 03:05:52 -08002192 * calculate_slab_order - calculate size (page order) of slabs
2193 * @cachep: pointer to the cache that is being created
2194 * @size: size of objects to be created in this cache.
2195 * @align: required alignment for the objects.
2196 * @flags: slab allocation flags
2197 *
2198 * Also calculates the number of objects per slab.
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002199 *
2200 * This could be made much more intelligent. For now, try to avoid using
2201 * high order pages for slabs. When the gfp() functions are more friendly
2202 * towards high-order requests, this should be changed.
2203 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002204static size_t calculate_slab_order(struct kmem_cache *cachep,
Randy Dunlapee13d782006-02-01 03:05:53 -08002205 size_t size, size_t align, unsigned long flags)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002206{
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02002207 unsigned long offslab_limit;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002208 size_t left_over = 0;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002209 int gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002210
Christoph Lameter0aa817f2007-05-16 22:11:01 -07002211 for (gfporder = 0; gfporder <= KMALLOC_MAX_ORDER; gfporder++) {
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002212 unsigned int num;
2213 size_t remainder;
2214
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002215 cache_estimate(gfporder, size, align, flags, &remainder, &num);
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002216 if (!num)
2217 continue;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002218
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02002219 if (flags & CFLGS_OFF_SLAB) {
2220 /*
2221 * Max number of objs-per-slab for caches which
2222 * use off-slab slabs. Needed to avoid a possible
2223 * looping condition in cache_grow().
2224 */
2225 offslab_limit = size - sizeof(struct slab);
2226 offslab_limit /= sizeof(kmem_bufctl_t);
2227
2228 if (num > offslab_limit)
2229 break;
2230 }
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002231
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002232 /* Found something acceptable - save it away */
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002233 cachep->num = num;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002234 cachep->gfporder = gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002235 left_over = remainder;
2236
2237 /*
Linus Torvaldsf78bb8a2006-03-08 10:33:05 -08002238 * A VFS-reclaimable slab tends to have most allocations
2239 * as GFP_NOFS and we really don't want to have to be allocating
2240 * higher-order pages when we are unable to shrink dcache.
2241 */
2242 if (flags & SLAB_RECLAIM_ACCOUNT)
2243 break;
2244
2245 /*
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002246 * Large number of objects is good, but very large slabs are
2247 * currently bad for the gfp()s.
2248 */
David Rientjes543585c2011-10-18 22:09:24 -07002249 if (gfporder >= slab_max_order)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002250 break;
2251
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002252 /*
2253 * Acceptable internal fragmentation?
2254 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002255 if (left_over * 8 <= (PAGE_SIZE << gfporder))
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002256 break;
2257 }
2258 return left_over;
2259}
2260
Pekka Enberg83b519e2009-06-10 19:40:04 +03002261static int __init_refok setup_cpu_cache(struct kmem_cache *cachep, gfp_t gfp)
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002262{
Christoph Lameter97d06602012-07-06 15:25:11 -05002263 if (slab_state >= FULL)
Pekka Enberg83b519e2009-06-10 19:40:04 +03002264 return enable_cpucache(cachep, gfp);
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002265
Christoph Lameter97d06602012-07-06 15:25:11 -05002266 if (slab_state == DOWN) {
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002267 /*
2268 * Note: the first kmem_cache_create must create the cache
2269 * that's used by kmalloc(24), otherwise the creation of
2270 * further caches will BUG().
2271 */
2272 cachep->array[smp_processor_id()] = &initarray_generic.cache;
2273
2274 /*
2275 * If the cache that's used by kmalloc(sizeof(kmem_list3)) is
2276 * the first cache, then we need to set up all its list3s,
2277 * otherwise the creation of further caches will BUG().
2278 */
2279 set_up_list3s(cachep, SIZE_AC);
2280 if (INDEX_AC == INDEX_L3)
Christoph Lameter97d06602012-07-06 15:25:11 -05002281 slab_state = PARTIAL_L3;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002282 else
Christoph Lameter97d06602012-07-06 15:25:11 -05002283 slab_state = PARTIAL_ARRAYCACHE;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002284 } else {
2285 cachep->array[smp_processor_id()] =
Pekka Enberg83b519e2009-06-10 19:40:04 +03002286 kmalloc(sizeof(struct arraycache_init), gfp);
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002287
Christoph Lameter97d06602012-07-06 15:25:11 -05002288 if (slab_state == PARTIAL_ARRAYCACHE) {
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002289 set_up_list3s(cachep, SIZE_L3);
Christoph Lameter97d06602012-07-06 15:25:11 -05002290 slab_state = PARTIAL_L3;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002291 } else {
2292 int node;
Pekka Enberg556a1692008-01-25 08:20:51 +02002293 for_each_online_node(node) {
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002294 cachep->nodelists[node] =
2295 kmalloc_node(sizeof(struct kmem_list3),
Pekka Enbergeb91f1d2009-06-12 14:56:09 +03002296 gfp, node);
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002297 BUG_ON(!cachep->nodelists[node]);
2298 kmem_list3_init(cachep->nodelists[node]);
2299 }
2300 }
2301 }
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07002302 cachep->nodelists[numa_mem_id()]->next_reap =
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002303 jiffies + REAPTIMEOUT_LIST3 +
2304 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
2305
2306 cpu_cache_get(cachep)->avail = 0;
2307 cpu_cache_get(cachep)->limit = BOOT_CPUCACHE_ENTRIES;
2308 cpu_cache_get(cachep)->batchcount = 1;
2309 cpu_cache_get(cachep)->touched = 0;
2310 cachep->batchcount = 1;
2311 cachep->limit = BOOT_CPUCACHE_ENTRIES;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002312 return 0;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002313}
2314
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002315/**
Christoph Lameter039363f2012-07-06 15:25:10 -05002316 * __kmem_cache_create - Create a cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 * @name: A string which is used in /proc/slabinfo to identify this cache.
2318 * @size: The size of objects to be created in this cache.
2319 * @align: The required alignment for the objects.
2320 * @flags: SLAB flags
2321 * @ctor: A constructor for the objects.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 *
2323 * Returns a ptr to the cache on success, NULL on failure.
2324 * Cannot be called within a int, but can be interrupted.
Paul Mundt20c2df82007-07-20 10:11:58 +09002325 * The @ctor is run when new pages are allocated by the cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002327 * The flags are
2328 *
2329 * %SLAB_POISON - Poison the slab with a known test pattern (a5a5a5a5)
2330 * to catch references to uninitialised memory.
2331 *
2332 * %SLAB_RED_ZONE - Insert `Red' zones around the allocated memory to check
2333 * for buffer overruns.
2334 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 * %SLAB_HWCACHE_ALIGN - Align the objects in this cache to a hardware
2336 * cacheline. This can be beneficial if you're counting cycles as closely
2337 * as davem.
2338 */
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002339int
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002340__kmem_cache_create (struct kmem_cache *cachep, unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341{
2342 size_t left_over, slab_size, ralign;
Pekka Enberg83b519e2009-06-10 19:40:04 +03002343 gfp_t gfp;
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002344 int err;
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002345 size_t size = cachep->size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346
Linus Torvalds1da177e2005-04-16 15:20:36 -07002347#if DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348#if FORCED_DEBUG
2349 /*
2350 * Enable redzoning and last user accounting, except for caches with
2351 * large objects, if the increased size would increase the object size
2352 * above the next power of two: caches with object sizes just above a
2353 * power of two have a significant amount of internal fragmentation.
2354 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002355 if (size < 4096 || fls(size - 1) == fls(size-1 + REDZONE_ALIGN +
2356 2 * sizeof(unsigned long long)))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002357 flags |= SLAB_RED_ZONE | SLAB_STORE_USER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 if (!(flags & SLAB_DESTROY_BY_RCU))
2359 flags |= SLAB_POISON;
2360#endif
2361 if (flags & SLAB_DESTROY_BY_RCU)
2362 BUG_ON(flags & SLAB_POISON);
2363#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002364
Andrew Mortona737b3e2006-03-22 00:08:11 -08002365 /*
2366 * Check that size is in terms of words. This is needed to avoid
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367 * unaligned accesses for some archs when redzoning is used, and makes
2368 * sure any on-slab bufctl's are also correctly aligned.
2369 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002370 if (size & (BYTES_PER_WORD - 1)) {
2371 size += (BYTES_PER_WORD - 1);
2372 size &= ~(BYTES_PER_WORD - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002373 }
2374
Andrew Mortona737b3e2006-03-22 00:08:11 -08002375 /* calculate the final buffer alignment: */
2376
Linus Torvalds1da177e2005-04-16 15:20:36 -07002377 /* 1) arch recommendation: can be overridden for debug */
2378 if (flags & SLAB_HWCACHE_ALIGN) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002379 /*
2380 * Default alignment: as specified by the arch code. Except if
2381 * an object is really small, then squeeze multiple objects into
2382 * one cacheline.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002383 */
2384 ralign = cache_line_size();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002385 while (size <= ralign / 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002386 ralign /= 2;
2387 } else {
2388 ralign = BYTES_PER_WORD;
2389 }
Pekka Enbergca5f9702006-09-25 23:31:25 -07002390
2391 /*
David Woodhouse87a927c2007-07-04 21:26:44 -04002392 * Redzoning and user store require word alignment or possibly larger.
2393 * Note this will be overridden by architecture or caller mandated
2394 * alignment if either is greater than BYTES_PER_WORD.
Pekka Enbergca5f9702006-09-25 23:31:25 -07002395 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002396 if (flags & SLAB_STORE_USER)
2397 ralign = BYTES_PER_WORD;
2398
2399 if (flags & SLAB_RED_ZONE) {
2400 ralign = REDZONE_ALIGN;
2401 /* If redzoning, ensure that the second redzone is suitably
2402 * aligned, by adjusting the object size accordingly. */
2403 size += REDZONE_ALIGN - 1;
2404 size &= ~(REDZONE_ALIGN - 1);
2405 }
Pekka Enbergca5f9702006-09-25 23:31:25 -07002406
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002407 /* 2) arch mandated alignment */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 if (ralign < ARCH_SLAB_MINALIGN) {
2409 ralign = ARCH_SLAB_MINALIGN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410 }
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002411 /* 3) caller mandated alignment */
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002412 if (ralign < cachep->align) {
2413 ralign = cachep->align;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 }
Pekka Enberg3ff84a72011-02-14 17:46:21 +02002415 /* disable debug if necessary */
2416 if (ralign > __alignof__(unsigned long long))
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002417 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002418 /*
Pekka Enbergca5f9702006-09-25 23:31:25 -07002419 * 4) Store it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 */
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002421 cachep->align = ralign;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422
Pekka Enberg83b519e2009-06-10 19:40:04 +03002423 if (slab_is_available())
2424 gfp = GFP_KERNEL;
2425 else
2426 gfp = GFP_NOWAIT;
2427
Eric Dumazetb56efcf2011-07-20 19:04:23 +02002428 cachep->nodelists = (struct kmem_list3 **)&cachep->array[nr_cpu_ids];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429#if DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430
Pekka Enbergca5f9702006-09-25 23:31:25 -07002431 /*
2432 * Both debugging options require word-alignment which is calculated
2433 * into align above.
2434 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002435 if (flags & SLAB_RED_ZONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436 /* add space for red zone words */
Pekka Enberg3ff84a72011-02-14 17:46:21 +02002437 cachep->obj_offset += sizeof(unsigned long long);
2438 size += 2 * sizeof(unsigned long long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439 }
2440 if (flags & SLAB_STORE_USER) {
Pekka Enbergca5f9702006-09-25 23:31:25 -07002441 /* user store requires one word storage behind the end of
David Woodhouse87a927c2007-07-04 21:26:44 -04002442 * the real object. But if the second red zone needs to be
2443 * aligned to 64 bits, we must allow that much space.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002445 if (flags & SLAB_RED_ZONE)
2446 size += REDZONE_ALIGN;
2447 else
2448 size += BYTES_PER_WORD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449 }
2450#if FORCED_DEBUG && defined(CONFIG_DEBUG_PAGEALLOC)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002451 if (size >= malloc_sizes[INDEX_L3 + 1].cs_size
Tetsuo Handa608da7e2012-09-30 17:28:25 +09002452 && cachep->object_size > cache_line_size()
2453 && ALIGN(size, cachep->align) < PAGE_SIZE) {
2454 cachep->obj_offset += PAGE_SIZE - ALIGN(size, cachep->align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002455 size = PAGE_SIZE;
2456 }
2457#endif
2458#endif
2459
Ingo Molnare0a42722006-06-23 02:03:46 -07002460 /*
2461 * Determine if the slab management is 'on' or 'off' slab.
2462 * (bootstrapping cannot cope with offslab caches so don't do
Catalin Marinase7cb55b2009-10-28 13:33:08 +00002463 * it too early on. Always use on-slab management when
2464 * SLAB_NOLEAKTRACE to avoid recursive calls into kmemleak)
Ingo Molnare0a42722006-06-23 02:03:46 -07002465 */
Catalin Marinase7cb55b2009-10-28 13:33:08 +00002466 if ((size >= (PAGE_SIZE >> 3)) && !slab_early_init &&
2467 !(flags & SLAB_NOLEAKTRACE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 /*
2469 * Size is large, assume best to place the slab management obj
2470 * off-slab (should allow better packing of objs).
2471 */
2472 flags |= CFLGS_OFF_SLAB;
2473
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002474 size = ALIGN(size, cachep->align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002476 left_over = calculate_slab_order(cachep, size, cachep->align, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002478 if (!cachep->num)
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002479 return -E2BIG;
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002480
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002481 slab_size = ALIGN(cachep->num * sizeof(kmem_bufctl_t)
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002482 + sizeof(struct slab), cachep->align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002483
2484 /*
2485 * If the slab has been placed off-slab, and we have enough space then
2486 * move it on-slab. This is at the expense of any extra colouring.
2487 */
2488 if (flags & CFLGS_OFF_SLAB && left_over >= slab_size) {
2489 flags &= ~CFLGS_OFF_SLAB;
2490 left_over -= slab_size;
2491 }
2492
2493 if (flags & CFLGS_OFF_SLAB) {
2494 /* really off slab. No need for manual alignment */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002495 slab_size =
2496 cachep->num * sizeof(kmem_bufctl_t) + sizeof(struct slab);
Ron Lee67461362009-05-22 04:58:22 +09302497
2498#ifdef CONFIG_PAGE_POISONING
2499 /* If we're going to use the generic kernel_map_pages()
2500 * poisoning, then it's going to smash the contents of
2501 * the redzone and userword anyhow, so switch them off.
2502 */
2503 if (size % PAGE_SIZE == 0 && flags & SLAB_POISON)
2504 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
2505#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506 }
2507
2508 cachep->colour_off = cache_line_size();
2509 /* Offset must be a multiple of the alignment. */
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002510 if (cachep->colour_off < cachep->align)
2511 cachep->colour_off = cachep->align;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002512 cachep->colour = left_over / cachep->colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 cachep->slab_size = slab_size;
2514 cachep->flags = flags;
Glauber Costaa618e892012-06-14 16:17:21 +04002515 cachep->allocflags = 0;
Christoph Lameter4b51d662007-02-10 01:43:10 -08002516 if (CONFIG_ZONE_DMA_FLAG && (flags & SLAB_CACHE_DMA))
Glauber Costaa618e892012-06-14 16:17:21 +04002517 cachep->allocflags |= GFP_DMA;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002518 cachep->size = size;
Eric Dumazet6a2d7a92006-12-13 00:34:27 -08002519 cachep->reciprocal_buffer_size = reciprocal_value(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002521 if (flags & CFLGS_OFF_SLAB) {
Victor Fuscob2d55072005-09-10 00:26:36 -07002522 cachep->slabp_cache = kmem_find_general_cachep(slab_size, 0u);
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002523 /*
2524 * This is a possibility for one of the malloc_sizes caches.
2525 * But since we go off slab only for object size greater than
2526 * PAGE_SIZE/8, and malloc_sizes gets created in ascending order,
2527 * this should not happen at all.
2528 * But leave a BUG_ON for some lucky dude.
2529 */
Christoph Lameter6cb8f912007-07-17 04:03:22 -07002530 BUG_ON(ZERO_OR_NULL_PTR(cachep->slabp_cache));
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002531 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002532
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002533 err = setup_cpu_cache(cachep, gfp);
2534 if (err) {
Christoph Lameter12c36672012-09-04 23:38:33 +00002535 __kmem_cache_shutdown(cachep);
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002536 return err;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002537 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538
Peter Zijlstra83835b32011-07-22 15:26:05 +02002539 if (flags & SLAB_DEBUG_OBJECTS) {
2540 /*
2541 * Would deadlock through slab_destroy()->call_rcu()->
2542 * debug_object_activate()->kmem_cache_alloc().
2543 */
2544 WARN_ON_ONCE(flags & SLAB_DESTROY_BY_RCU);
2545
2546 slab_set_debugobj_lock_classes(cachep);
2547 }
2548
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002549 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551
2552#if DEBUG
2553static void check_irq_off(void)
2554{
2555 BUG_ON(!irqs_disabled());
2556}
2557
2558static void check_irq_on(void)
2559{
2560 BUG_ON(irqs_disabled());
2561}
2562
Pekka Enberg343e0d72006-02-01 03:05:50 -08002563static void check_spinlock_acquired(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564{
2565#ifdef CONFIG_SMP
2566 check_irq_off();
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07002567 assert_spin_locked(&cachep->nodelists[numa_mem_id()]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568#endif
2569}
Christoph Lametere498be72005-09-09 13:03:32 -07002570
Pekka Enberg343e0d72006-02-01 03:05:50 -08002571static void check_spinlock_acquired_node(struct kmem_cache *cachep, int node)
Christoph Lametere498be72005-09-09 13:03:32 -07002572{
2573#ifdef CONFIG_SMP
2574 check_irq_off();
2575 assert_spin_locked(&cachep->nodelists[node]->list_lock);
2576#endif
2577}
2578
Linus Torvalds1da177e2005-04-16 15:20:36 -07002579#else
2580#define check_irq_off() do { } while(0)
2581#define check_irq_on() do { } while(0)
2582#define check_spinlock_acquired(x) do { } while(0)
Christoph Lametere498be72005-09-09 13:03:32 -07002583#define check_spinlock_acquired_node(x, y) do { } while(0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584#endif
2585
Christoph Lameteraab22072006-03-22 00:09:06 -08002586static void drain_array(struct kmem_cache *cachep, struct kmem_list3 *l3,
2587 struct array_cache *ac,
2588 int force, int node);
2589
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590static void do_drain(void *arg)
2591{
Andrew Mortona737b3e2006-03-22 00:08:11 -08002592 struct kmem_cache *cachep = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 struct array_cache *ac;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07002594 int node = numa_mem_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595
2596 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002597 ac = cpu_cache_get(cachep);
Christoph Lameterff694162005-09-22 21:44:02 -07002598 spin_lock(&cachep->nodelists[node]->list_lock);
2599 free_block(cachep, ac->entry, ac->avail, node);
2600 spin_unlock(&cachep->nodelists[node]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 ac->avail = 0;
2602}
2603
Pekka Enberg343e0d72006-02-01 03:05:50 -08002604static void drain_cpu_caches(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002605{
Christoph Lametere498be72005-09-09 13:03:32 -07002606 struct kmem_list3 *l3;
2607 int node;
2608
Jens Axboe15c8b6c2008-05-09 09:39:44 +02002609 on_each_cpu(do_drain, cachep, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610 check_irq_on();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002611 for_each_online_node(node) {
Christoph Lametere498be72005-09-09 13:03:32 -07002612 l3 = cachep->nodelists[node];
Roland Dreiera4523a82006-05-15 11:41:00 -07002613 if (l3 && l3->alien)
2614 drain_alien_cache(cachep, l3->alien);
2615 }
2616
2617 for_each_online_node(node) {
2618 l3 = cachep->nodelists[node];
2619 if (l3)
Christoph Lameteraab22072006-03-22 00:09:06 -08002620 drain_array(cachep, l3, l3->shared, 1, node);
Christoph Lametere498be72005-09-09 13:03:32 -07002621 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622}
2623
Christoph Lametered11d9e2006-06-30 01:55:45 -07002624/*
2625 * Remove slabs from the list of free slabs.
2626 * Specify the number of slabs to drain in tofree.
2627 *
2628 * Returns the actual number of slabs released.
2629 */
2630static int drain_freelist(struct kmem_cache *cache,
2631 struct kmem_list3 *l3, int tofree)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632{
Christoph Lametered11d9e2006-06-30 01:55:45 -07002633 struct list_head *p;
2634 int nr_freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002635 struct slab *slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002636
Christoph Lametered11d9e2006-06-30 01:55:45 -07002637 nr_freed = 0;
2638 while (nr_freed < tofree && !list_empty(&l3->slabs_free)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639
Christoph Lametered11d9e2006-06-30 01:55:45 -07002640 spin_lock_irq(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07002641 p = l3->slabs_free.prev;
Christoph Lametered11d9e2006-06-30 01:55:45 -07002642 if (p == &l3->slabs_free) {
2643 spin_unlock_irq(&l3->list_lock);
2644 goto out;
2645 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646
Christoph Lametered11d9e2006-06-30 01:55:45 -07002647 slabp = list_entry(p, struct slab, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648#if DEBUG
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002649 BUG_ON(slabp->inuse);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650#endif
2651 list_del(&slabp->list);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002652 /*
2653 * Safe to drop the lock. The slab is no longer linked
2654 * to the cache.
2655 */
2656 l3->free_objects -= cache->num;
Christoph Lametere498be72005-09-09 13:03:32 -07002657 spin_unlock_irq(&l3->list_lock);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002658 slab_destroy(cache, slabp);
2659 nr_freed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 }
Christoph Lametered11d9e2006-06-30 01:55:45 -07002661out:
2662 return nr_freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663}
2664
Christoph Lameter18004c52012-07-06 15:25:12 -05002665/* Called with slab_mutex held to protect against cpu hotplug */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002666static int __cache_shrink(struct kmem_cache *cachep)
Christoph Lametere498be72005-09-09 13:03:32 -07002667{
2668 int ret = 0, i = 0;
2669 struct kmem_list3 *l3;
2670
2671 drain_cpu_caches(cachep);
2672
2673 check_irq_on();
2674 for_each_online_node(i) {
2675 l3 = cachep->nodelists[i];
Christoph Lametered11d9e2006-06-30 01:55:45 -07002676 if (!l3)
2677 continue;
2678
2679 drain_freelist(cachep, l3, l3->free_objects);
2680
2681 ret += !list_empty(&l3->slabs_full) ||
2682 !list_empty(&l3->slabs_partial);
Christoph Lametere498be72005-09-09 13:03:32 -07002683 }
2684 return (ret ? 1 : 0);
2685}
2686
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687/**
2688 * kmem_cache_shrink - Shrink a cache.
2689 * @cachep: The cache to shrink.
2690 *
2691 * Releases as many slabs as possible for a cache.
2692 * To help debugging, a zero exit status indicates all slabs were released.
2693 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002694int kmem_cache_shrink(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695{
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002696 int ret;
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002697 BUG_ON(!cachep || in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002699 get_online_cpus();
Christoph Lameter18004c52012-07-06 15:25:12 -05002700 mutex_lock(&slab_mutex);
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002701 ret = __cache_shrink(cachep);
Christoph Lameter18004c52012-07-06 15:25:12 -05002702 mutex_unlock(&slab_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002703 put_online_cpus();
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002704 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705}
2706EXPORT_SYMBOL(kmem_cache_shrink);
2707
Christoph Lameter945cf2b2012-09-04 23:18:33 +00002708int __kmem_cache_shutdown(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709{
Christoph Lameter12c36672012-09-04 23:38:33 +00002710 int i;
2711 struct kmem_list3 *l3;
2712 int rc = __cache_shrink(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002713
Christoph Lameter12c36672012-09-04 23:38:33 +00002714 if (rc)
2715 return rc;
2716
2717 for_each_online_cpu(i)
2718 kfree(cachep->array[i]);
2719
2720 /* NUMA: free the list3 structures */
2721 for_each_online_node(i) {
2722 l3 = cachep->nodelists[i];
2723 if (l3) {
2724 kfree(l3->shared);
2725 free_alien_cache(l3->alien);
2726 kfree(l3);
2727 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728 }
Christoph Lameter12c36672012-09-04 23:38:33 +00002729 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002731
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002732/*
2733 * Get the memory for a slab management obj.
2734 * For a slab cache when the slab descriptor is off-slab, slab descriptors
2735 * always come from malloc_sizes caches. The slab descriptor cannot
2736 * come from the same cache which is getting created because,
2737 * when we are searching for an appropriate cache for these
2738 * descriptors in kmem_cache_create, we search through the malloc_sizes array.
2739 * If we are creating a malloc_sizes cache here it would not be visible to
2740 * kmem_find_general_cachep till the initialization is complete.
2741 * Hence we cannot have slabp_cache same as the original cache.
2742 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002743static struct slab *alloc_slabmgmt(struct kmem_cache *cachep, void *objp,
Ravikiran G Thirumalai5b74ada2006-04-10 22:52:53 -07002744 int colour_off, gfp_t local_flags,
2745 int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746{
2747 struct slab *slabp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002748
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749 if (OFF_SLAB(cachep)) {
2750 /* Slab management obj is off-slab. */
Ravikiran G Thirumalai5b74ada2006-04-10 22:52:53 -07002751 slabp = kmem_cache_alloc_node(cachep->slabp_cache,
Pekka Enberg8759ec52008-11-26 10:01:31 +02002752 local_flags, nodeid);
Catalin Marinasd5cff632009-06-11 13:22:40 +01002753 /*
2754 * If the first object in the slab is leaked (it's allocated
2755 * but no one has a reference to it), we want to make sure
2756 * kmemleak does not treat the ->s_mem pointer as a reference
2757 * to the object. Otherwise we will not report the leak.
2758 */
Catalin Marinasc017b4b2009-10-28 13:33:09 +00002759 kmemleak_scan_area(&slabp->list, sizeof(struct list_head),
2760 local_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761 if (!slabp)
2762 return NULL;
2763 } else {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002764 slabp = objp + colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765 colour_off += cachep->slab_size;
2766 }
2767 slabp->inuse = 0;
2768 slabp->colouroff = colour_off;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002769 slabp->s_mem = objp + colour_off;
Ravikiran G Thirumalai5b74ada2006-04-10 22:52:53 -07002770 slabp->nodeid = nodeid;
Marcin Slusarze51bfd02008-02-10 11:21:54 +01002771 slabp->free = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002772 return slabp;
2773}
2774
2775static inline kmem_bufctl_t *slab_bufctl(struct slab *slabp)
2776{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002777 return (kmem_bufctl_t *) (slabp + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002778}
2779
Pekka Enberg343e0d72006-02-01 03:05:50 -08002780static void cache_init_objs(struct kmem_cache *cachep,
Christoph Lametera35afb82007-05-16 22:10:57 -07002781 struct slab *slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782{
2783 int i;
2784
2785 for (i = 0; i < cachep->num; i++) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002786 void *objp = index_to_obj(cachep, slabp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787#if DEBUG
2788 /* need to poison the objs? */
2789 if (cachep->flags & SLAB_POISON)
2790 poison_obj(cachep, objp, POISON_FREE);
2791 if (cachep->flags & SLAB_STORE_USER)
2792 *dbg_userword(cachep, objp) = NULL;
2793
2794 if (cachep->flags & SLAB_RED_ZONE) {
2795 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2796 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2797 }
2798 /*
Andrew Mortona737b3e2006-03-22 00:08:11 -08002799 * Constructors are not allowed to allocate memory from the same
2800 * cache which they are a constructor for. Otherwise, deadlock.
2801 * They must also be threaded.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802 */
2803 if (cachep->ctor && !(cachep->flags & SLAB_POISON))
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002804 cachep->ctor(objp + obj_offset(cachep));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805
2806 if (cachep->flags & SLAB_RED_ZONE) {
2807 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
2808 slab_error(cachep, "constructor overwrote the"
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002809 " end of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
2811 slab_error(cachep, "constructor overwrote the"
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002812 " start of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002813 }
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002814 if ((cachep->size % PAGE_SIZE) == 0 &&
Andrew Mortona737b3e2006-03-22 00:08:11 -08002815 OFF_SLAB(cachep) && cachep->flags & SLAB_POISON)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002816 kernel_map_pages(virt_to_page(objp),
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002817 cachep->size / PAGE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818#else
2819 if (cachep->ctor)
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002820 cachep->ctor(objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821#endif
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002822 slab_bufctl(slabp)[i] = i + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002824 slab_bufctl(slabp)[i - 1] = BUFCTL_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825}
2826
Pekka Enberg343e0d72006-02-01 03:05:50 -08002827static void kmem_flagcheck(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002828{
Christoph Lameter4b51d662007-02-10 01:43:10 -08002829 if (CONFIG_ZONE_DMA_FLAG) {
2830 if (flags & GFP_DMA)
Glauber Costaa618e892012-06-14 16:17:21 +04002831 BUG_ON(!(cachep->allocflags & GFP_DMA));
Christoph Lameter4b51d662007-02-10 01:43:10 -08002832 else
Glauber Costaa618e892012-06-14 16:17:21 +04002833 BUG_ON(cachep->allocflags & GFP_DMA);
Christoph Lameter4b51d662007-02-10 01:43:10 -08002834 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835}
2836
Andrew Mortona737b3e2006-03-22 00:08:11 -08002837static void *slab_get_obj(struct kmem_cache *cachep, struct slab *slabp,
2838 int nodeid)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002839{
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002840 void *objp = index_to_obj(cachep, slabp, slabp->free);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002841 kmem_bufctl_t next;
2842
2843 slabp->inuse++;
2844 next = slab_bufctl(slabp)[slabp->free];
2845#if DEBUG
2846 slab_bufctl(slabp)[slabp->free] = BUFCTL_FREE;
2847 WARN_ON(slabp->nodeid != nodeid);
2848#endif
2849 slabp->free = next;
2850
2851 return objp;
2852}
2853
Andrew Mortona737b3e2006-03-22 00:08:11 -08002854static void slab_put_obj(struct kmem_cache *cachep, struct slab *slabp,
2855 void *objp, int nodeid)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002856{
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002857 unsigned int objnr = obj_to_index(cachep, slabp, objp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002858
2859#if DEBUG
2860 /* Verify that the slab belongs to the intended node */
2861 WARN_ON(slabp->nodeid != nodeid);
2862
Al Viro871751e2006-03-25 03:06:39 -08002863 if (slab_bufctl(slabp)[objnr] + 1 <= SLAB_LIMIT + 1) {
Matthew Dobson78d382d2006-02-01 03:05:47 -08002864 printk(KERN_ERR "slab: double free detected in cache "
Andrew Mortona737b3e2006-03-22 00:08:11 -08002865 "'%s', objp %p\n", cachep->name, objp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002866 BUG();
2867 }
2868#endif
2869 slab_bufctl(slabp)[objnr] = slabp->free;
2870 slabp->free = objnr;
2871 slabp->inuse--;
2872}
2873
Pekka Enberg47768742006-06-23 02:03:07 -07002874/*
2875 * Map pages beginning at addr to the given cache and slab. This is required
2876 * for the slab allocator to be able to lookup the cache and slab of a
Nick Pigginccd35fb2011-01-07 17:49:17 +11002877 * virtual address for kfree, ksize, and slab debugging.
Pekka Enberg47768742006-06-23 02:03:07 -07002878 */
2879static void slab_map_pages(struct kmem_cache *cache, struct slab *slab,
2880 void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881{
Pekka Enberg47768742006-06-23 02:03:07 -07002882 int nr_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883 struct page *page;
2884
Pekka Enberg47768742006-06-23 02:03:07 -07002885 page = virt_to_page(addr);
Nick Piggin84097512006-03-22 00:08:34 -08002886
Pekka Enberg47768742006-06-23 02:03:07 -07002887 nr_pages = 1;
Nick Piggin84097512006-03-22 00:08:34 -08002888 if (likely(!PageCompound(page)))
Pekka Enberg47768742006-06-23 02:03:07 -07002889 nr_pages <<= cache->gfporder;
2890
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891 do {
Christoph Lameter35026082012-06-13 10:24:56 -05002892 page->slab_cache = cache;
2893 page->slab_page = slab;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894 page++;
Pekka Enberg47768742006-06-23 02:03:07 -07002895 } while (--nr_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896}
2897
2898/*
2899 * Grow (by 1) the number of slabs within a cache. This is called by
2900 * kmem_cache_alloc() when there are no active objs left in a cache.
2901 */
Christoph Lameter3c517a62006-12-06 20:33:29 -08002902static int cache_grow(struct kmem_cache *cachep,
2903 gfp_t flags, int nodeid, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002904{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002905 struct slab *slabp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002906 size_t offset;
2907 gfp_t local_flags;
Christoph Lametere498be72005-09-09 13:03:32 -07002908 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909
Andrew Mortona737b3e2006-03-22 00:08:11 -08002910 /*
2911 * Be lazy and only check for valid flags here, keeping it out of the
2912 * critical path in kmem_cache_alloc().
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913 */
Christoph Lameter6cb06222007-10-16 01:25:41 -07002914 BUG_ON(flags & GFP_SLAB_BUG_MASK);
2915 local_flags = flags & (GFP_CONSTRAINT_MASK|GFP_RECLAIM_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002917 /* Take the l3 list lock to change the colour_next on this node */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918 check_irq_off();
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002919 l3 = cachep->nodelists[nodeid];
2920 spin_lock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002921
2922 /* Get colour for the slab, and cal the next value. */
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002923 offset = l3->colour_next;
2924 l3->colour_next++;
2925 if (l3->colour_next >= cachep->colour)
2926 l3->colour_next = 0;
2927 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002928
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002929 offset *= cachep->colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930
2931 if (local_flags & __GFP_WAIT)
2932 local_irq_enable();
2933
2934 /*
2935 * The test for missing atomic flag is performed here, rather than
2936 * the more obvious place, simply to reduce the critical path length
2937 * in kmem_cache_alloc(). If a caller is seriously mis-behaving they
2938 * will eventually be caught here (where it matters).
2939 */
2940 kmem_flagcheck(cachep, flags);
2941
Andrew Mortona737b3e2006-03-22 00:08:11 -08002942 /*
2943 * Get mem for the objs. Attempt to allocate a physical page from
2944 * 'nodeid'.
Christoph Lametere498be72005-09-09 13:03:32 -07002945 */
Christoph Lameter3c517a62006-12-06 20:33:29 -08002946 if (!objp)
Andrew Mortonb8c1c5d2007-07-24 12:02:40 -07002947 objp = kmem_getpages(cachep, local_flags, nodeid);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002948 if (!objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949 goto failed;
2950
2951 /* Get slab management. */
Christoph Lameter3c517a62006-12-06 20:33:29 -08002952 slabp = alloc_slabmgmt(cachep, objp, offset,
Christoph Lameter6cb06222007-10-16 01:25:41 -07002953 local_flags & ~GFP_CONSTRAINT_MASK, nodeid);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002954 if (!slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955 goto opps1;
2956
Pekka Enberg47768742006-06-23 02:03:07 -07002957 slab_map_pages(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002958
Christoph Lametera35afb82007-05-16 22:10:57 -07002959 cache_init_objs(cachep, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960
2961 if (local_flags & __GFP_WAIT)
2962 local_irq_disable();
2963 check_irq_off();
Christoph Lametere498be72005-09-09 13:03:32 -07002964 spin_lock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002965
2966 /* Make slab active. */
Christoph Lametere498be72005-09-09 13:03:32 -07002967 list_add_tail(&slabp->list, &(l3->slabs_free));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002968 STATS_INC_GROWN(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07002969 l3->free_objects += cachep->num;
2970 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971 return 1;
Andrew Mortona737b3e2006-03-22 00:08:11 -08002972opps1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973 kmem_freepages(cachep, objp);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002974failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975 if (local_flags & __GFP_WAIT)
2976 local_irq_disable();
2977 return 0;
2978}
2979
2980#if DEBUG
2981
2982/*
2983 * Perform extra freeing checks:
2984 * - detect bad pointers.
2985 * - POISON/RED_ZONE checking
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986 */
2987static void kfree_debugcheck(const void *objp)
2988{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002989 if (!virt_addr_valid(objp)) {
2990 printk(KERN_ERR "kfree_debugcheck: out of range ptr %lxh.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002991 (unsigned long)objp);
2992 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002993 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994}
2995
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002996static inline void verify_redzone_free(struct kmem_cache *cache, void *obj)
2997{
David Woodhouseb46b8f12007-05-08 00:22:59 -07002998 unsigned long long redzone1, redzone2;
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002999
3000 redzone1 = *dbg_redzone1(cache, obj);
3001 redzone2 = *dbg_redzone2(cache, obj);
3002
3003 /*
3004 * Redzone is ok.
3005 */
3006 if (redzone1 == RED_ACTIVE && redzone2 == RED_ACTIVE)
3007 return;
3008
3009 if (redzone1 == RED_INACTIVE && redzone2 == RED_INACTIVE)
3010 slab_error(cache, "double free detected");
3011 else
3012 slab_error(cache, "memory outside object was overwritten");
3013
David Woodhouseb46b8f12007-05-08 00:22:59 -07003014 printk(KERN_ERR "%p: redzone 1:0x%llx, redzone 2:0x%llx.\n",
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07003015 obj, redzone1, redzone2);
3016}
3017
Pekka Enberg343e0d72006-02-01 03:05:50 -08003018static void *cache_free_debugcheck(struct kmem_cache *cachep, void *objp,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003019 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020{
3021 struct page *page;
3022 unsigned int objnr;
3023 struct slab *slabp;
3024
Matthew Wilcox80cbd912007-11-29 12:05:13 -07003025 BUG_ON(virt_to_cache(objp) != cachep);
3026
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003027 objp -= obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003028 kfree_debugcheck(objp);
Christoph Lameterb49af682007-05-06 14:49:41 -07003029 page = virt_to_head_page(objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030
Christoph Lameter35026082012-06-13 10:24:56 -05003031 slabp = page->slab_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032
3033 if (cachep->flags & SLAB_RED_ZONE) {
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07003034 verify_redzone_free(cachep, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
3036 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
3037 }
3038 if (cachep->flags & SLAB_STORE_USER)
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003039 *dbg_userword(cachep, objp) = (void *)caller;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003040
Pekka Enberg8fea4e92006-03-22 00:08:10 -08003041 objnr = obj_to_index(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042
3043 BUG_ON(objnr >= cachep->num);
Pekka Enberg8fea4e92006-03-22 00:08:10 -08003044 BUG_ON(objp != index_to_obj(cachep, slabp, objnr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003045
Al Viro871751e2006-03-25 03:06:39 -08003046#ifdef CONFIG_DEBUG_SLAB_LEAK
3047 slab_bufctl(slabp)[objnr] = BUFCTL_FREE;
3048#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003049 if (cachep->flags & SLAB_POISON) {
3050#ifdef CONFIG_DEBUG_PAGEALLOC
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003051 if ((cachep->size % PAGE_SIZE)==0 && OFF_SLAB(cachep)) {
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003052 store_stackinfo(cachep, objp, caller);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003053 kernel_map_pages(virt_to_page(objp),
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003054 cachep->size / PAGE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003055 } else {
3056 poison_obj(cachep, objp, POISON_FREE);
3057 }
3058#else
3059 poison_obj(cachep, objp, POISON_FREE);
3060#endif
3061 }
3062 return objp;
3063}
3064
Pekka Enberg343e0d72006-02-01 03:05:50 -08003065static void check_slabp(struct kmem_cache *cachep, struct slab *slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003066{
3067 kmem_bufctl_t i;
3068 int entries = 0;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003069
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070 /* Check slab's freelist to see if this obj is there. */
3071 for (i = slabp->free; i != BUFCTL_END; i = slab_bufctl(slabp)[i]) {
3072 entries++;
3073 if (entries > cachep->num || i >= cachep->num)
3074 goto bad;
3075 }
3076 if (entries != cachep->num - slabp->inuse) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08003077bad:
3078 printk(KERN_ERR "slab: Internal list corruption detected in "
Dave Jonesface37f2011-11-15 15:03:52 -08003079 "cache '%s'(%d), slabp %p(%d). Tainted(%s). Hexdump:\n",
3080 cachep->name, cachep->num, slabp, slabp->inuse,
3081 print_tainted());
Sebastian Andrzej Siewiorfdde6ab2011-07-29 18:22:13 +02003082 print_hex_dump(KERN_ERR, "", DUMP_PREFIX_OFFSET, 16, 1, slabp,
3083 sizeof(*slabp) + cachep->num * sizeof(kmem_bufctl_t),
3084 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085 BUG();
3086 }
3087}
3088#else
3089#define kfree_debugcheck(x) do { } while(0)
3090#define cache_free_debugcheck(x,objp,z) (objp)
3091#define check_slabp(x,y) do { } while(0)
3092#endif
3093
Mel Gorman072bb0a2012-07-31 16:43:58 -07003094static void *cache_alloc_refill(struct kmem_cache *cachep, gfp_t flags,
3095 bool force_refill)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096{
3097 int batchcount;
3098 struct kmem_list3 *l3;
3099 struct array_cache *ac;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07003100 int node;
3101
Joe Korty6d2144d2008-03-05 15:04:59 -08003102 check_irq_off();
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003103 node = numa_mem_id();
Mel Gorman072bb0a2012-07-31 16:43:58 -07003104 if (unlikely(force_refill))
3105 goto force_grow;
3106retry:
Joe Korty6d2144d2008-03-05 15:04:59 -08003107 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108 batchcount = ac->batchcount;
3109 if (!ac->touched && batchcount > BATCHREFILL_LIMIT) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08003110 /*
3111 * If there was little recent activity on this cache, then
3112 * perform only a partial refill. Otherwise we could generate
3113 * refill bouncing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003114 */
3115 batchcount = BATCHREFILL_LIMIT;
3116 }
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07003117 l3 = cachep->nodelists[node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118
Christoph Lametere498be72005-09-09 13:03:32 -07003119 BUG_ON(ac->avail > 0 || !l3);
3120 spin_lock(&l3->list_lock);
3121
Christoph Lameter3ded1752006-03-25 03:06:44 -08003122 /* See if we can refill from the shared array */
Nick Piggin44b57f12010-01-27 22:27:40 +11003123 if (l3->shared && transfer_objects(ac, l3->shared, batchcount)) {
3124 l3->shared->touched = 1;
Christoph Lameter3ded1752006-03-25 03:06:44 -08003125 goto alloc_done;
Nick Piggin44b57f12010-01-27 22:27:40 +11003126 }
Christoph Lameter3ded1752006-03-25 03:06:44 -08003127
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128 while (batchcount > 0) {
3129 struct list_head *entry;
3130 struct slab *slabp;
3131 /* Get slab alloc is to come from. */
3132 entry = l3->slabs_partial.next;
3133 if (entry == &l3->slabs_partial) {
3134 l3->free_touched = 1;
3135 entry = l3->slabs_free.next;
3136 if (entry == &l3->slabs_free)
3137 goto must_grow;
3138 }
3139
3140 slabp = list_entry(entry, struct slab, list);
3141 check_slabp(cachep, slabp);
3142 check_spinlock_acquired(cachep);
Pekka Enberg714b81712007-05-06 14:49:03 -07003143
3144 /*
3145 * The slab was either on partial or free list so
3146 * there must be at least one object available for
3147 * allocation.
3148 */
roel kluin249b9f32008-10-29 17:18:07 -04003149 BUG_ON(slabp->inuse >= cachep->num);
Pekka Enberg714b81712007-05-06 14:49:03 -07003150
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151 while (slabp->inuse < cachep->num && batchcount--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152 STATS_INC_ALLOCED(cachep);
3153 STATS_INC_ACTIVE(cachep);
3154 STATS_SET_HIGH(cachep);
3155
Mel Gorman072bb0a2012-07-31 16:43:58 -07003156 ac_put_obj(cachep, ac, slab_get_obj(cachep, slabp,
3157 node));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158 }
3159 check_slabp(cachep, slabp);
3160
3161 /* move slabp to correct slabp list: */
3162 list_del(&slabp->list);
3163 if (slabp->free == BUFCTL_END)
3164 list_add(&slabp->list, &l3->slabs_full);
3165 else
3166 list_add(&slabp->list, &l3->slabs_partial);
3167 }
3168
Andrew Mortona737b3e2006-03-22 00:08:11 -08003169must_grow:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170 l3->free_objects -= ac->avail;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003171alloc_done:
Christoph Lametere498be72005-09-09 13:03:32 -07003172 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173
3174 if (unlikely(!ac->avail)) {
3175 int x;
Mel Gorman072bb0a2012-07-31 16:43:58 -07003176force_grow:
Christoph Lameter3c517a62006-12-06 20:33:29 -08003177 x = cache_grow(cachep, flags | GFP_THISNODE, node, NULL);
Christoph Lametere498be72005-09-09 13:03:32 -07003178
Andrew Mortona737b3e2006-03-22 00:08:11 -08003179 /* cache_grow can reenable interrupts, then ac could change. */
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003180 ac = cpu_cache_get(cachep);
David Rientjes51cd8e62012-08-28 19:57:21 -07003181 node = numa_mem_id();
Mel Gorman072bb0a2012-07-31 16:43:58 -07003182
3183 /* no objects in sight? abort */
3184 if (!x && (ac->avail == 0 || force_refill))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003185 return NULL;
3186
Andrew Mortona737b3e2006-03-22 00:08:11 -08003187 if (!ac->avail) /* objects refilled by interrupt? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188 goto retry;
3189 }
3190 ac->touched = 1;
Mel Gorman072bb0a2012-07-31 16:43:58 -07003191
3192 return ac_get_obj(cachep, ac, flags, force_refill);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003193}
3194
Andrew Mortona737b3e2006-03-22 00:08:11 -08003195static inline void cache_alloc_debugcheck_before(struct kmem_cache *cachep,
3196 gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003197{
3198 might_sleep_if(flags & __GFP_WAIT);
3199#if DEBUG
3200 kmem_flagcheck(cachep, flags);
3201#endif
3202}
3203
3204#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08003205static void *cache_alloc_debugcheck_after(struct kmem_cache *cachep,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003206 gfp_t flags, void *objp, unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003207{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003208 if (!objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209 return objp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003210 if (cachep->flags & SLAB_POISON) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211#ifdef CONFIG_DEBUG_PAGEALLOC
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003212 if ((cachep->size % PAGE_SIZE) == 0 && OFF_SLAB(cachep))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003213 kernel_map_pages(virt_to_page(objp),
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003214 cachep->size / PAGE_SIZE, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003215 else
3216 check_poison_obj(cachep, objp);
3217#else
3218 check_poison_obj(cachep, objp);
3219#endif
3220 poison_obj(cachep, objp, POISON_INUSE);
3221 }
3222 if (cachep->flags & SLAB_STORE_USER)
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003223 *dbg_userword(cachep, objp) = (void *)caller;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003224
3225 if (cachep->flags & SLAB_RED_ZONE) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08003226 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE ||
3227 *dbg_redzone2(cachep, objp) != RED_INACTIVE) {
3228 slab_error(cachep, "double free, or memory outside"
3229 " object was overwritten");
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003230 printk(KERN_ERR
David Woodhouseb46b8f12007-05-08 00:22:59 -07003231 "%p: redzone 1:0x%llx, redzone 2:0x%llx\n",
Andrew Mortona737b3e2006-03-22 00:08:11 -08003232 objp, *dbg_redzone1(cachep, objp),
3233 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003234 }
3235 *dbg_redzone1(cachep, objp) = RED_ACTIVE;
3236 *dbg_redzone2(cachep, objp) = RED_ACTIVE;
3237 }
Al Viro871751e2006-03-25 03:06:39 -08003238#ifdef CONFIG_DEBUG_SLAB_LEAK
3239 {
3240 struct slab *slabp;
3241 unsigned objnr;
3242
Christoph Lameter35026082012-06-13 10:24:56 -05003243 slabp = virt_to_head_page(objp)->slab_page;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003244 objnr = (unsigned)(objp - slabp->s_mem) / cachep->size;
Al Viro871751e2006-03-25 03:06:39 -08003245 slab_bufctl(slabp)[objnr] = BUFCTL_ACTIVE;
3246 }
3247#endif
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003248 objp += obj_offset(cachep);
Christoph Lameter4f104932007-05-06 14:50:17 -07003249 if (cachep->ctor && cachep->flags & SLAB_POISON)
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07003250 cachep->ctor(objp);
Tetsuo Handa7ea466f2011-07-21 09:42:45 +09003251 if (ARCH_SLAB_MINALIGN &&
3252 ((unsigned long)objp & (ARCH_SLAB_MINALIGN-1))) {
Kevin Hilmana44b56d2006-12-06 20:32:11 -08003253 printk(KERN_ERR "0x%p: not aligned to ARCH_SLAB_MINALIGN=%d\n",
Hugh Dickinsc2251502011-07-11 13:35:08 -07003254 objp, (int)ARCH_SLAB_MINALIGN);
Kevin Hilmana44b56d2006-12-06 20:32:11 -08003255 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256 return objp;
3257}
3258#else
3259#define cache_alloc_debugcheck_after(a,b,objp,d) (objp)
3260#endif
3261
Akinobu Mita773ff602008-12-23 19:37:01 +09003262static bool slab_should_failslab(struct kmem_cache *cachep, gfp_t flags)
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003263{
Christoph Lameter9b030cb2012-09-05 00:20:33 +00003264 if (cachep == kmem_cache)
Akinobu Mita773ff602008-12-23 19:37:01 +09003265 return false;
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003266
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003267 return should_failslab(cachep->object_size, flags, cachep->flags);
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003268}
3269
Pekka Enberg343e0d72006-02-01 03:05:50 -08003270static inline void *____cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003271{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003272 void *objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273 struct array_cache *ac;
Mel Gorman072bb0a2012-07-31 16:43:58 -07003274 bool force_refill = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003275
Alok N Kataria5c382302005-09-27 21:45:46 -07003276 check_irq_off();
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003277
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003278 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003279 if (likely(ac->avail)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003280 ac->touched = 1;
Mel Gorman072bb0a2012-07-31 16:43:58 -07003281 objp = ac_get_obj(cachep, ac, flags, false);
3282
J. R. Okajimaddbf2e82009-12-02 16:55:50 +09003283 /*
Mel Gorman072bb0a2012-07-31 16:43:58 -07003284 * Allow for the possibility all avail objects are not allowed
3285 * by the current flags
J. R. Okajimaddbf2e82009-12-02 16:55:50 +09003286 */
Mel Gorman072bb0a2012-07-31 16:43:58 -07003287 if (objp) {
3288 STATS_INC_ALLOCHIT(cachep);
3289 goto out;
3290 }
3291 force_refill = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003292 }
Mel Gorman072bb0a2012-07-31 16:43:58 -07003293
3294 STATS_INC_ALLOCMISS(cachep);
3295 objp = cache_alloc_refill(cachep, flags, force_refill);
3296 /*
3297 * the 'ac' may be updated by cache_alloc_refill(),
3298 * and kmemleak_erase() requires its correct value.
3299 */
3300 ac = cpu_cache_get(cachep);
3301
3302out:
Catalin Marinasd5cff632009-06-11 13:22:40 +01003303 /*
3304 * To avoid a false negative, if an object that is in one of the
3305 * per-CPU caches is leaked, we need to make sure kmemleak doesn't
3306 * treat the array pointers as a reference to the object.
3307 */
J. R. Okajimaf3d8b532009-12-02 16:55:49 +09003308 if (objp)
3309 kmemleak_erase(&ac->entry[ac->avail]);
Alok N Kataria5c382302005-09-27 21:45:46 -07003310 return objp;
3311}
3312
Christoph Lametere498be72005-09-09 13:03:32 -07003313#ifdef CONFIG_NUMA
3314/*
Paul Jacksonb2455392006-03-24 03:16:12 -08003315 * Try allocating on another node if PF_SPREAD_SLAB|PF_MEMPOLICY.
Paul Jacksonc61afb12006-03-24 03:16:08 -08003316 *
3317 * If we are in_interrupt, then process context, including cpusets and
3318 * mempolicy, may not apply and should not be used for allocation policy.
3319 */
3320static void *alternate_node_alloc(struct kmem_cache *cachep, gfp_t flags)
3321{
3322 int nid_alloc, nid_here;
3323
Christoph Lameter765c4502006-09-27 01:50:08 -07003324 if (in_interrupt() || (flags & __GFP_THISNODE))
Paul Jacksonc61afb12006-03-24 03:16:08 -08003325 return NULL;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003326 nid_alloc = nid_here = numa_mem_id();
Paul Jacksonc61afb12006-03-24 03:16:08 -08003327 if (cpuset_do_slab_mem_spread() && (cachep->flags & SLAB_MEM_SPREAD))
Jack Steiner6adef3e2010-05-26 14:42:49 -07003328 nid_alloc = cpuset_slab_spread_node();
Paul Jacksonc61afb12006-03-24 03:16:08 -08003329 else if (current->mempolicy)
Andi Kleene7b691b2012-06-09 02:40:03 -07003330 nid_alloc = slab_node();
Paul Jacksonc61afb12006-03-24 03:16:08 -08003331 if (nid_alloc != nid_here)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003332 return ____cache_alloc_node(cachep, flags, nid_alloc);
Paul Jacksonc61afb12006-03-24 03:16:08 -08003333 return NULL;
3334}
3335
3336/*
Christoph Lameter765c4502006-09-27 01:50:08 -07003337 * Fallback function if there was no memory available and no objects on a
Christoph Lameter3c517a62006-12-06 20:33:29 -08003338 * certain node and fall back is permitted. First we scan all the
3339 * available nodelists for available objects. If that fails then we
3340 * perform an allocation without specifying a node. This allows the page
3341 * allocator to do its reclaim / fallback magic. We then insert the
3342 * slab into the proper nodelist and then allocate from it.
Christoph Lameter765c4502006-09-27 01:50:08 -07003343 */
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003344static void *fallback_alloc(struct kmem_cache *cache, gfp_t flags)
Christoph Lameter765c4502006-09-27 01:50:08 -07003345{
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003346 struct zonelist *zonelist;
3347 gfp_t local_flags;
Mel Gormandd1a2392008-04-28 02:12:17 -07003348 struct zoneref *z;
Mel Gorman54a6eb52008-04-28 02:12:16 -07003349 struct zone *zone;
3350 enum zone_type high_zoneidx = gfp_zone(flags);
Christoph Lameter765c4502006-09-27 01:50:08 -07003351 void *obj = NULL;
Christoph Lameter3c517a62006-12-06 20:33:29 -08003352 int nid;
Mel Gormancc9a6c82012-03-21 16:34:11 -07003353 unsigned int cpuset_mems_cookie;
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003354
3355 if (flags & __GFP_THISNODE)
3356 return NULL;
3357
Christoph Lameter6cb06222007-10-16 01:25:41 -07003358 local_flags = flags & (GFP_CONSTRAINT_MASK|GFP_RECLAIM_MASK);
Christoph Lameter765c4502006-09-27 01:50:08 -07003359
Mel Gormancc9a6c82012-03-21 16:34:11 -07003360retry_cpuset:
3361 cpuset_mems_cookie = get_mems_allowed();
Andi Kleene7b691b2012-06-09 02:40:03 -07003362 zonelist = node_zonelist(slab_node(), flags);
Mel Gormancc9a6c82012-03-21 16:34:11 -07003363
Christoph Lameter3c517a62006-12-06 20:33:29 -08003364retry:
3365 /*
3366 * Look through allowed nodes for objects available
3367 * from existing per node queues.
3368 */
Mel Gorman54a6eb52008-04-28 02:12:16 -07003369 for_each_zone_zonelist(zone, z, zonelist, high_zoneidx) {
3370 nid = zone_to_nid(zone);
Christoph Lameteraedb0eb2006-10-21 10:24:16 -07003371
Mel Gorman54a6eb52008-04-28 02:12:16 -07003372 if (cpuset_zone_allowed_hardwall(zone, flags) &&
Christoph Lameter3c517a62006-12-06 20:33:29 -08003373 cache->nodelists[nid] &&
Christoph Lameter481c5342008-06-21 16:46:35 -07003374 cache->nodelists[nid]->free_objects) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003375 obj = ____cache_alloc_node(cache,
3376 flags | GFP_THISNODE, nid);
Christoph Lameter481c5342008-06-21 16:46:35 -07003377 if (obj)
3378 break;
3379 }
Christoph Lameter3c517a62006-12-06 20:33:29 -08003380 }
3381
Christoph Lametercfce6602007-05-06 14:50:17 -07003382 if (!obj) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003383 /*
3384 * This allocation will be performed within the constraints
3385 * of the current cpuset / memory policy requirements.
3386 * We may trigger various forms of reclaim on the allowed
3387 * set and go into memory reserves if necessary.
3388 */
Christoph Lameterdd47ea72006-12-13 00:34:11 -08003389 if (local_flags & __GFP_WAIT)
3390 local_irq_enable();
3391 kmem_flagcheck(cache, flags);
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003392 obj = kmem_getpages(cache, local_flags, numa_mem_id());
Christoph Lameterdd47ea72006-12-13 00:34:11 -08003393 if (local_flags & __GFP_WAIT)
3394 local_irq_disable();
Christoph Lameter3c517a62006-12-06 20:33:29 -08003395 if (obj) {
3396 /*
3397 * Insert into the appropriate per node queues
3398 */
3399 nid = page_to_nid(virt_to_page(obj));
3400 if (cache_grow(cache, flags, nid, obj)) {
3401 obj = ____cache_alloc_node(cache,
3402 flags | GFP_THISNODE, nid);
3403 if (!obj)
3404 /*
3405 * Another processor may allocate the
3406 * objects in the slab since we are
3407 * not holding any locks.
3408 */
3409 goto retry;
3410 } else {
Hugh Dickinsb6a60452007-01-05 16:36:36 -08003411 /* cache_grow already freed obj */
Christoph Lameter3c517a62006-12-06 20:33:29 -08003412 obj = NULL;
3413 }
3414 }
Christoph Lameteraedb0eb2006-10-21 10:24:16 -07003415 }
Mel Gormancc9a6c82012-03-21 16:34:11 -07003416
3417 if (unlikely(!put_mems_allowed(cpuset_mems_cookie) && !obj))
3418 goto retry_cpuset;
Christoph Lameter765c4502006-09-27 01:50:08 -07003419 return obj;
3420}
3421
3422/*
Christoph Lametere498be72005-09-09 13:03:32 -07003423 * A interface to enable slab creation on nodeid
Linus Torvalds1da177e2005-04-16 15:20:36 -07003424 */
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003425static void *____cache_alloc_node(struct kmem_cache *cachep, gfp_t flags,
Andrew Mortona737b3e2006-03-22 00:08:11 -08003426 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07003427{
3428 struct list_head *entry;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003429 struct slab *slabp;
3430 struct kmem_list3 *l3;
3431 void *obj;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003432 int x;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003433
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003434 l3 = cachep->nodelists[nodeid];
3435 BUG_ON(!l3);
Christoph Lametere498be72005-09-09 13:03:32 -07003436
Andrew Mortona737b3e2006-03-22 00:08:11 -08003437retry:
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08003438 check_irq_off();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003439 spin_lock(&l3->list_lock);
3440 entry = l3->slabs_partial.next;
3441 if (entry == &l3->slabs_partial) {
3442 l3->free_touched = 1;
3443 entry = l3->slabs_free.next;
3444 if (entry == &l3->slabs_free)
3445 goto must_grow;
3446 }
Christoph Lametere498be72005-09-09 13:03:32 -07003447
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003448 slabp = list_entry(entry, struct slab, list);
3449 check_spinlock_acquired_node(cachep, nodeid);
3450 check_slabp(cachep, slabp);
Christoph Lametere498be72005-09-09 13:03:32 -07003451
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003452 STATS_INC_NODEALLOCS(cachep);
3453 STATS_INC_ACTIVE(cachep);
3454 STATS_SET_HIGH(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003455
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003456 BUG_ON(slabp->inuse == cachep->num);
Christoph Lametere498be72005-09-09 13:03:32 -07003457
Matthew Dobson78d382d2006-02-01 03:05:47 -08003458 obj = slab_get_obj(cachep, slabp, nodeid);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003459 check_slabp(cachep, slabp);
3460 l3->free_objects--;
3461 /* move slabp to correct slabp list: */
3462 list_del(&slabp->list);
Christoph Lametere498be72005-09-09 13:03:32 -07003463
Andrew Mortona737b3e2006-03-22 00:08:11 -08003464 if (slabp->free == BUFCTL_END)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003465 list_add(&slabp->list, &l3->slabs_full);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003466 else
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003467 list_add(&slabp->list, &l3->slabs_partial);
Christoph Lametere498be72005-09-09 13:03:32 -07003468
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003469 spin_unlock(&l3->list_lock);
3470 goto done;
Christoph Lametere498be72005-09-09 13:03:32 -07003471
Andrew Mortona737b3e2006-03-22 00:08:11 -08003472must_grow:
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003473 spin_unlock(&l3->list_lock);
Christoph Lameter3c517a62006-12-06 20:33:29 -08003474 x = cache_grow(cachep, flags | GFP_THISNODE, nodeid, NULL);
Christoph Lameter765c4502006-09-27 01:50:08 -07003475 if (x)
3476 goto retry;
Christoph Lametere498be72005-09-09 13:03:32 -07003477
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003478 return fallback_alloc(cachep, flags);
Christoph Lameter765c4502006-09-27 01:50:08 -07003479
Andrew Mortona737b3e2006-03-22 00:08:11 -08003480done:
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003481 return obj;
Christoph Lametere498be72005-09-09 13:03:32 -07003482}
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003483
3484/**
3485 * kmem_cache_alloc_node - Allocate an object on the specified node
3486 * @cachep: The cache to allocate from.
3487 * @flags: See kmalloc().
3488 * @nodeid: node number of the target node.
3489 * @caller: return address of caller, used for debug information
3490 *
3491 * Identical to kmem_cache_alloc but it will allocate memory on the given
3492 * node, which can improve the performance for cpu bound structures.
3493 *
3494 * Fallback to other node is possible if __GFP_THISNODE is not set.
3495 */
3496static __always_inline void *
Ezequiel Garcia48356302012-09-08 17:47:57 -03003497slab_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003498 unsigned long caller)
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003499{
3500 unsigned long save_flags;
3501 void *ptr;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003502 int slab_node = numa_mem_id();
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003503
Benjamin Herrenschmidtdcce2842009-06-18 13:24:12 +10003504 flags &= gfp_allowed_mask;
Pekka Enberg7e85ee02009-06-12 14:03:06 +03003505
Nick Piggincf40bd12009-01-21 08:12:39 +01003506 lockdep_trace_alloc(flags);
3507
Akinobu Mita773ff602008-12-23 19:37:01 +09003508 if (slab_should_failslab(cachep, flags))
Akinobu Mita824ebef2007-05-06 14:49:58 -07003509 return NULL;
3510
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003511 cache_alloc_debugcheck_before(cachep, flags);
3512 local_irq_save(save_flags);
3513
Andrew Mortoneacbbae2011-07-28 13:59:49 -07003514 if (nodeid == NUMA_NO_NODE)
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003515 nodeid = slab_node;
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003516
3517 if (unlikely(!cachep->nodelists[nodeid])) {
3518 /* Node not bootstrapped yet */
3519 ptr = fallback_alloc(cachep, flags);
3520 goto out;
3521 }
3522
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003523 if (nodeid == slab_node) {
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003524 /*
3525 * Use the locally cached objects if possible.
3526 * However ____cache_alloc does not allow fallback
3527 * to other nodes. It may fail while we still have
3528 * objects on other nodes available.
3529 */
3530 ptr = ____cache_alloc(cachep, flags);
3531 if (ptr)
3532 goto out;
3533 }
3534 /* ___cache_alloc_node can fall back to other nodes */
3535 ptr = ____cache_alloc_node(cachep, flags, nodeid);
3536 out:
3537 local_irq_restore(save_flags);
3538 ptr = cache_alloc_debugcheck_after(cachep, flags, ptr, caller);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003539 kmemleak_alloc_recursive(ptr, cachep->object_size, 1, cachep->flags,
Catalin Marinasd5cff632009-06-11 13:22:40 +01003540 flags);
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003541
Pekka Enbergc175eea2008-05-09 20:35:53 +02003542 if (likely(ptr))
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003543 kmemcheck_slab_alloc(cachep, flags, ptr, cachep->object_size);
Pekka Enbergc175eea2008-05-09 20:35:53 +02003544
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003545 if (unlikely((flags & __GFP_ZERO) && ptr))
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003546 memset(ptr, 0, cachep->object_size);
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003547
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003548 return ptr;
3549}
3550
3551static __always_inline void *
3552__do_cache_alloc(struct kmem_cache *cache, gfp_t flags)
3553{
3554 void *objp;
3555
3556 if (unlikely(current->flags & (PF_SPREAD_SLAB | PF_MEMPOLICY))) {
3557 objp = alternate_node_alloc(cache, flags);
3558 if (objp)
3559 goto out;
3560 }
3561 objp = ____cache_alloc(cache, flags);
3562
3563 /*
3564 * We may just have run out of memory on the local node.
3565 * ____cache_alloc_node() knows how to locate memory on other nodes
3566 */
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003567 if (!objp)
3568 objp = ____cache_alloc_node(cache, flags, numa_mem_id());
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003569
3570 out:
3571 return objp;
3572}
3573#else
3574
3575static __always_inline void *
3576__do_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
3577{
3578 return ____cache_alloc(cachep, flags);
3579}
3580
3581#endif /* CONFIG_NUMA */
3582
3583static __always_inline void *
Ezequiel Garcia48356302012-09-08 17:47:57 -03003584slab_alloc(struct kmem_cache *cachep, gfp_t flags, unsigned long caller)
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003585{
3586 unsigned long save_flags;
3587 void *objp;
3588
Benjamin Herrenschmidtdcce2842009-06-18 13:24:12 +10003589 flags &= gfp_allowed_mask;
Pekka Enberg7e85ee02009-06-12 14:03:06 +03003590
Nick Piggincf40bd12009-01-21 08:12:39 +01003591 lockdep_trace_alloc(flags);
3592
Akinobu Mita773ff602008-12-23 19:37:01 +09003593 if (slab_should_failslab(cachep, flags))
Akinobu Mita824ebef2007-05-06 14:49:58 -07003594 return NULL;
3595
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003596 cache_alloc_debugcheck_before(cachep, flags);
3597 local_irq_save(save_flags);
3598 objp = __do_cache_alloc(cachep, flags);
3599 local_irq_restore(save_flags);
3600 objp = cache_alloc_debugcheck_after(cachep, flags, objp, caller);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003601 kmemleak_alloc_recursive(objp, cachep->object_size, 1, cachep->flags,
Catalin Marinasd5cff632009-06-11 13:22:40 +01003602 flags);
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003603 prefetchw(objp);
3604
Pekka Enbergc175eea2008-05-09 20:35:53 +02003605 if (likely(objp))
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003606 kmemcheck_slab_alloc(cachep, flags, objp, cachep->object_size);
Pekka Enbergc175eea2008-05-09 20:35:53 +02003607
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003608 if (unlikely((flags & __GFP_ZERO) && objp))
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003609 memset(objp, 0, cachep->object_size);
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003610
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003611 return objp;
3612}
Christoph Lametere498be72005-09-09 13:03:32 -07003613
3614/*
3615 * Caller needs to acquire correct kmem_list's list_lock
3616 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003617static void free_block(struct kmem_cache *cachep, void **objpp, int nr_objects,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003618 int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003619{
3620 int i;
Christoph Lametere498be72005-09-09 13:03:32 -07003621 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003622
3623 for (i = 0; i < nr_objects; i++) {
Mel Gorman072bb0a2012-07-31 16:43:58 -07003624 void *objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625 struct slab *slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003626
Mel Gorman072bb0a2012-07-31 16:43:58 -07003627 clear_obj_pfmemalloc(&objpp[i]);
3628 objp = objpp[i];
3629
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08003630 slabp = virt_to_slab(objp);
Christoph Lameterff694162005-09-22 21:44:02 -07003631 l3 = cachep->nodelists[node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003632 list_del(&slabp->list);
Christoph Lameterff694162005-09-22 21:44:02 -07003633 check_spinlock_acquired_node(cachep, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003634 check_slabp(cachep, slabp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08003635 slab_put_obj(cachep, slabp, objp, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003636 STATS_DEC_ACTIVE(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003637 l3->free_objects++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003638 check_slabp(cachep, slabp);
3639
3640 /* fixup slab chains */
3641 if (slabp->inuse == 0) {
Christoph Lametere498be72005-09-09 13:03:32 -07003642 if (l3->free_objects > l3->free_limit) {
3643 l3->free_objects -= cachep->num;
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07003644 /* No need to drop any previously held
3645 * lock here, even if we have a off-slab slab
3646 * descriptor it is guaranteed to come from
3647 * a different cache, refer to comments before
3648 * alloc_slabmgmt.
3649 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003650 slab_destroy(cachep, slabp);
3651 } else {
Christoph Lametere498be72005-09-09 13:03:32 -07003652 list_add(&slabp->list, &l3->slabs_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003653 }
3654 } else {
3655 /* Unconditionally move a slab to the end of the
3656 * partial list on free - maximum time for the
3657 * other objects to be freed, too.
3658 */
Christoph Lametere498be72005-09-09 13:03:32 -07003659 list_add_tail(&slabp->list, &l3->slabs_partial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003660 }
3661 }
3662}
3663
Pekka Enberg343e0d72006-02-01 03:05:50 -08003664static void cache_flusharray(struct kmem_cache *cachep, struct array_cache *ac)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003665{
3666 int batchcount;
Christoph Lametere498be72005-09-09 13:03:32 -07003667 struct kmem_list3 *l3;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003668 int node = numa_mem_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003669
3670 batchcount = ac->batchcount;
3671#if DEBUG
3672 BUG_ON(!batchcount || batchcount > ac->avail);
3673#endif
3674 check_irq_off();
Christoph Lameterff694162005-09-22 21:44:02 -07003675 l3 = cachep->nodelists[node];
Ingo Molnar873623d2006-07-13 14:44:38 +02003676 spin_lock(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07003677 if (l3->shared) {
3678 struct array_cache *shared_array = l3->shared;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003679 int max = shared_array->limit - shared_array->avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003680 if (max) {
3681 if (batchcount > max)
3682 batchcount = max;
Christoph Lametere498be72005-09-09 13:03:32 -07003683 memcpy(&(shared_array->entry[shared_array->avail]),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003684 ac->entry, sizeof(void *) * batchcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685 shared_array->avail += batchcount;
3686 goto free_done;
3687 }
3688 }
3689
Christoph Lameterff694162005-09-22 21:44:02 -07003690 free_block(cachep, ac->entry, batchcount, node);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003691free_done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003692#if STATS
3693 {
3694 int i = 0;
3695 struct list_head *p;
3696
Christoph Lametere498be72005-09-09 13:03:32 -07003697 p = l3->slabs_free.next;
3698 while (p != &(l3->slabs_free)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003699 struct slab *slabp;
3700
3701 slabp = list_entry(p, struct slab, list);
3702 BUG_ON(slabp->inuse);
3703
3704 i++;
3705 p = p->next;
3706 }
3707 STATS_SET_FREEABLE(cachep, i);
3708 }
3709#endif
Christoph Lametere498be72005-09-09 13:03:32 -07003710 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003711 ac->avail -= batchcount;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003712 memmove(ac->entry, &(ac->entry[batchcount]), sizeof(void *)*ac->avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713}
3714
3715/*
Andrew Mortona737b3e2006-03-22 00:08:11 -08003716 * Release an obj back to its cache. If the obj has a constructed state, it must
3717 * be in this state _before_ it is released. Called with disabled ints.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003718 */
Suleiman Souhlala947eb92011-06-02 00:16:42 -07003719static inline void __cache_free(struct kmem_cache *cachep, void *objp,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003720 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003721{
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003722 struct array_cache *ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723
3724 check_irq_off();
Catalin Marinasd5cff632009-06-11 13:22:40 +01003725 kmemleak_free_recursive(objp, cachep->flags);
Suleiman Souhlala947eb92011-06-02 00:16:42 -07003726 objp = cache_free_debugcheck(cachep, objp, caller);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003727
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003728 kmemcheck_slab_free(cachep, objp, cachep->object_size);
Pekka Enbergc175eea2008-05-09 20:35:53 +02003729
Siddha, Suresh B1807a1a2007-08-22 14:01:49 -07003730 /*
3731 * Skip calling cache_free_alien() when the platform is not numa.
3732 * This will avoid cache misses that happen while accessing slabp (which
3733 * is per page memory reference) to get nodeid. Instead use a global
3734 * variable to skip the call, which is mostly likely to be present in
3735 * the cache.
3736 */
Mel Gormanb6e68bc2009-06-16 15:32:16 -07003737 if (nr_online_nodes > 1 && cache_free_alien(cachep, objp))
Pekka Enberg729bd0b2006-06-23 02:03:05 -07003738 return;
Christoph Lametere498be72005-09-09 13:03:32 -07003739
Linus Torvalds1da177e2005-04-16 15:20:36 -07003740 if (likely(ac->avail < ac->limit)) {
3741 STATS_INC_FREEHIT(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003742 } else {
3743 STATS_INC_FREEMISS(cachep);
3744 cache_flusharray(cachep, ac);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745 }
Zhao Jin42c8c992011-08-27 00:26:17 +08003746
Mel Gorman072bb0a2012-07-31 16:43:58 -07003747 ac_put_obj(cachep, ac, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003748}
3749
3750/**
3751 * kmem_cache_alloc - Allocate an object
3752 * @cachep: The cache to allocate from.
3753 * @flags: See kmalloc().
3754 *
3755 * Allocate an object from this cache. The flags are only relevant
3756 * if the cache has no available objects.
3757 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003758void *kmem_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003759{
Ezequiel Garcia48356302012-09-08 17:47:57 -03003760 void *ret = slab_alloc(cachep, flags, _RET_IP_);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003761
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003762 trace_kmem_cache_alloc(_RET_IP_, ret,
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003763 cachep->object_size, cachep->size, flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003764
3765 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003766}
3767EXPORT_SYMBOL(kmem_cache_alloc);
3768
Li Zefan0f24f122009-12-11 15:45:30 +08003769#ifdef CONFIG_TRACING
Steven Rostedt85beb582010-11-24 16:23:34 -05003770void *
Ezequiel Garcia40521472012-09-08 17:47:56 -03003771kmem_cache_alloc_trace(struct kmem_cache *cachep, gfp_t flags, size_t size)
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003772{
Steven Rostedt85beb582010-11-24 16:23:34 -05003773 void *ret;
3774
Ezequiel Garcia48356302012-09-08 17:47:57 -03003775 ret = slab_alloc(cachep, flags, _RET_IP_);
Steven Rostedt85beb582010-11-24 16:23:34 -05003776
3777 trace_kmalloc(_RET_IP_, ret,
Ezequiel Garciaff4fcd02012-09-08 17:47:52 -03003778 size, cachep->size, flags);
Steven Rostedt85beb582010-11-24 16:23:34 -05003779 return ret;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003780}
Steven Rostedt85beb582010-11-24 16:23:34 -05003781EXPORT_SYMBOL(kmem_cache_alloc_trace);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003782#endif
3783
Linus Torvalds1da177e2005-04-16 15:20:36 -07003784#ifdef CONFIG_NUMA
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003785void *kmem_cache_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid)
3786{
Ezequiel Garcia48356302012-09-08 17:47:57 -03003787 void *ret = slab_alloc_node(cachep, flags, nodeid, _RET_IP_);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003788
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003789 trace_kmem_cache_alloc_node(_RET_IP_, ret,
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003790 cachep->object_size, cachep->size,
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003791 flags, nodeid);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003792
3793 return ret;
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003794}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003795EXPORT_SYMBOL(kmem_cache_alloc_node);
3796
Li Zefan0f24f122009-12-11 15:45:30 +08003797#ifdef CONFIG_TRACING
Ezequiel Garcia40521472012-09-08 17:47:56 -03003798void *kmem_cache_alloc_node_trace(struct kmem_cache *cachep,
Steven Rostedt85beb582010-11-24 16:23:34 -05003799 gfp_t flags,
Ezequiel Garcia40521472012-09-08 17:47:56 -03003800 int nodeid,
3801 size_t size)
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003802{
Steven Rostedt85beb582010-11-24 16:23:34 -05003803 void *ret;
3804
Ezequiel Garcia592f4142012-09-25 08:07:08 -03003805 ret = slab_alloc_node(cachep, flags, nodeid, _RET_IP_);
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003806
Steven Rostedt85beb582010-11-24 16:23:34 -05003807 trace_kmalloc_node(_RET_IP_, ret,
Ezequiel Garciaff4fcd02012-09-08 17:47:52 -03003808 size, cachep->size,
Steven Rostedt85beb582010-11-24 16:23:34 -05003809 flags, nodeid);
3810 return ret;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003811}
Steven Rostedt85beb582010-11-24 16:23:34 -05003812EXPORT_SYMBOL(kmem_cache_alloc_node_trace);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003813#endif
3814
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003815static __always_inline void *
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003816__do_kmalloc_node(size_t size, gfp_t flags, int node, unsigned long caller)
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003817{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003818 struct kmem_cache *cachep;
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003819
3820 cachep = kmem_find_general_cachep(size, flags);
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003821 if (unlikely(ZERO_OR_NULL_PTR(cachep)))
3822 return cachep;
Ezequiel Garcia40521472012-09-08 17:47:56 -03003823 return kmem_cache_alloc_node_trace(cachep, flags, node, size);
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003824}
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003825
Li Zefan0bb38a52009-12-11 15:45:50 +08003826#if defined(CONFIG_DEBUG_SLAB) || defined(CONFIG_TRACING)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003827void *__kmalloc_node(size_t size, gfp_t flags, int node)
3828{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003829 return __do_kmalloc_node(size, flags, node, _RET_IP_);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003830}
Christoph Hellwigdbe5e692006-09-25 23:31:36 -07003831EXPORT_SYMBOL(__kmalloc_node);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003832
3833void *__kmalloc_node_track_caller(size_t size, gfp_t flags,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003834 int node, unsigned long caller)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003835{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003836 return __do_kmalloc_node(size, flags, node, caller);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003837}
3838EXPORT_SYMBOL(__kmalloc_node_track_caller);
3839#else
3840void *__kmalloc_node(size_t size, gfp_t flags, int node)
3841{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003842 return __do_kmalloc_node(size, flags, node, 0);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003843}
3844EXPORT_SYMBOL(__kmalloc_node);
Li Zefan0bb38a52009-12-11 15:45:50 +08003845#endif /* CONFIG_DEBUG_SLAB || CONFIG_TRACING */
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003846#endif /* CONFIG_NUMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003847
3848/**
Paul Drynoff800590f2006-06-23 02:03:48 -07003849 * __do_kmalloc - allocate memory
Linus Torvalds1da177e2005-04-16 15:20:36 -07003850 * @size: how many bytes of memory are required.
Paul Drynoff800590f2006-06-23 02:03:48 -07003851 * @flags: the type of memory to allocate (see kmalloc).
Randy Dunlap911851e2006-03-22 00:08:14 -08003852 * @caller: function caller for debug tracking of the caller
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853 */
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003854static __always_inline void *__do_kmalloc(size_t size, gfp_t flags,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003855 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003856{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003857 struct kmem_cache *cachep;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003858 void *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003859
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003860 /* If you want to save a few bytes .text space: replace
3861 * __ with kmem_.
3862 * Then kmalloc uses the uninlined functions instead of the inline
3863 * functions.
3864 */
3865 cachep = __find_general_cachep(size, flags);
Linus Torvaldsa5c96d82007-07-19 13:17:15 -07003866 if (unlikely(ZERO_OR_NULL_PTR(cachep)))
3867 return cachep;
Ezequiel Garcia48356302012-09-08 17:47:57 -03003868 ret = slab_alloc(cachep, flags, caller);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003869
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003870 trace_kmalloc(caller, ret,
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003871 size, cachep->size, flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003872
3873 return ret;
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003874}
3875
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003876
Li Zefan0bb38a52009-12-11 15:45:50 +08003877#if defined(CONFIG_DEBUG_SLAB) || defined(CONFIG_TRACING)
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003878void *__kmalloc(size_t size, gfp_t flags)
3879{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003880 return __do_kmalloc(size, flags, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003881}
3882EXPORT_SYMBOL(__kmalloc);
3883
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003884void *__kmalloc_track_caller(size_t size, gfp_t flags, unsigned long caller)
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003885{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003886 return __do_kmalloc(size, flags, caller);
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003887}
3888EXPORT_SYMBOL(__kmalloc_track_caller);
Christoph Hellwig1d2c8ee2006-10-04 02:15:25 -07003889
3890#else
3891void *__kmalloc(size_t size, gfp_t flags)
3892{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003893 return __do_kmalloc(size, flags, 0);
Christoph Hellwig1d2c8ee2006-10-04 02:15:25 -07003894}
3895EXPORT_SYMBOL(__kmalloc);
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003896#endif
3897
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898/**
3899 * kmem_cache_free - Deallocate an object
3900 * @cachep: The cache the allocation was from.
3901 * @objp: The previously allocated object.
3902 *
3903 * Free an object which was previously allocated from this
3904 * cache.
3905 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003906void kmem_cache_free(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907{
3908 unsigned long flags;
3909
3910 local_irq_save(flags);
Feng Tangd97d4762012-07-02 14:29:10 +08003911 debug_check_no_locks_freed(objp, cachep->object_size);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -07003912 if (!(cachep->flags & SLAB_DEBUG_OBJECTS))
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003913 debug_check_no_obj_freed(objp, cachep->object_size);
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003914 __cache_free(cachep, objp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915 local_irq_restore(flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003916
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003917 trace_kmem_cache_free(_RET_IP_, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918}
3919EXPORT_SYMBOL(kmem_cache_free);
3920
3921/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003922 * kfree - free previously allocated memory
3923 * @objp: pointer returned by kmalloc.
3924 *
Pekka Enberg80e93ef2005-09-09 13:10:16 -07003925 * If @objp is NULL, no operation is performed.
3926 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003927 * Don't free memory not originally allocated by kmalloc()
3928 * or you will run into trouble.
3929 */
3930void kfree(const void *objp)
3931{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003932 struct kmem_cache *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933 unsigned long flags;
3934
Pekka Enberg2121db72009-03-25 11:05:57 +02003935 trace_kfree(_RET_IP_, objp);
3936
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003937 if (unlikely(ZERO_OR_NULL_PTR(objp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003938 return;
3939 local_irq_save(flags);
3940 kfree_debugcheck(objp);
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08003941 c = virt_to_cache(objp);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003942 debug_check_no_locks_freed(objp, c->object_size);
3943
3944 debug_check_no_obj_freed(objp, c->object_size);
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003945 __cache_free(c, (void *)objp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003946 local_irq_restore(flags);
3947}
3948EXPORT_SYMBOL(kfree);
3949
Christoph Lametere498be72005-09-09 13:03:32 -07003950/*
Simon Arlott183ff222007-10-20 01:27:18 +02003951 * This initializes kmem_list3 or resizes various caches for all nodes.
Christoph Lametere498be72005-09-09 13:03:32 -07003952 */
Pekka Enberg83b519e2009-06-10 19:40:04 +03003953static int alloc_kmemlist(struct kmem_cache *cachep, gfp_t gfp)
Christoph Lametere498be72005-09-09 13:03:32 -07003954{
3955 int node;
3956 struct kmem_list3 *l3;
Christoph Lametercafeb022006-03-25 03:06:46 -08003957 struct array_cache *new_shared;
Paul Menage3395ee02006-12-06 20:32:16 -08003958 struct array_cache **new_alien = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07003959
Mel Gorman9c09a952008-01-24 05:49:54 -08003960 for_each_online_node(node) {
Christoph Lametercafeb022006-03-25 03:06:46 -08003961
Paul Menage3395ee02006-12-06 20:32:16 -08003962 if (use_alien_caches) {
Pekka Enberg83b519e2009-06-10 19:40:04 +03003963 new_alien = alloc_alien_cache(node, cachep->limit, gfp);
Paul Menage3395ee02006-12-06 20:32:16 -08003964 if (!new_alien)
3965 goto fail;
3966 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003967
Eric Dumazet63109842007-05-06 14:49:28 -07003968 new_shared = NULL;
3969 if (cachep->shared) {
3970 new_shared = alloc_arraycache(node,
Christoph Lameter0718dc22006-03-25 03:06:47 -08003971 cachep->shared*cachep->batchcount,
Pekka Enberg83b519e2009-06-10 19:40:04 +03003972 0xbaadf00d, gfp);
Eric Dumazet63109842007-05-06 14:49:28 -07003973 if (!new_shared) {
3974 free_alien_cache(new_alien);
3975 goto fail;
3976 }
Christoph Lameter0718dc22006-03-25 03:06:47 -08003977 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003978
Andrew Mortona737b3e2006-03-22 00:08:11 -08003979 l3 = cachep->nodelists[node];
3980 if (l3) {
Christoph Lametercafeb022006-03-25 03:06:46 -08003981 struct array_cache *shared = l3->shared;
3982
Christoph Lametere498be72005-09-09 13:03:32 -07003983 spin_lock_irq(&l3->list_lock);
3984
Christoph Lametercafeb022006-03-25 03:06:46 -08003985 if (shared)
Christoph Lameter0718dc22006-03-25 03:06:47 -08003986 free_block(cachep, shared->entry,
3987 shared->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -07003988
Christoph Lametercafeb022006-03-25 03:06:46 -08003989 l3->shared = new_shared;
3990 if (!l3->alien) {
Christoph Lametere498be72005-09-09 13:03:32 -07003991 l3->alien = new_alien;
3992 new_alien = NULL;
3993 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003994 l3->free_limit = (1 + nr_cpus_node(node)) *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003995 cachep->batchcount + cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07003996 spin_unlock_irq(&l3->list_lock);
Christoph Lametercafeb022006-03-25 03:06:46 -08003997 kfree(shared);
Christoph Lametere498be72005-09-09 13:03:32 -07003998 free_alien_cache(new_alien);
3999 continue;
4000 }
Pekka Enberg83b519e2009-06-10 19:40:04 +03004001 l3 = kmalloc_node(sizeof(struct kmem_list3), gfp, node);
Christoph Lameter0718dc22006-03-25 03:06:47 -08004002 if (!l3) {
4003 free_alien_cache(new_alien);
4004 kfree(new_shared);
Christoph Lametere498be72005-09-09 13:03:32 -07004005 goto fail;
Christoph Lameter0718dc22006-03-25 03:06:47 -08004006 }
Christoph Lametere498be72005-09-09 13:03:32 -07004007
4008 kmem_list3_init(l3);
4009 l3->next_reap = jiffies + REAPTIMEOUT_LIST3 +
Andrew Mortona737b3e2006-03-22 00:08:11 -08004010 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
Christoph Lametercafeb022006-03-25 03:06:46 -08004011 l3->shared = new_shared;
Christoph Lametere498be72005-09-09 13:03:32 -07004012 l3->alien = new_alien;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004013 l3->free_limit = (1 + nr_cpus_node(node)) *
Andrew Mortona737b3e2006-03-22 00:08:11 -08004014 cachep->batchcount + cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07004015 cachep->nodelists[node] = l3;
4016 }
Christoph Lametercafeb022006-03-25 03:06:46 -08004017 return 0;
Christoph Lameter0718dc22006-03-25 03:06:47 -08004018
Andrew Mortona737b3e2006-03-22 00:08:11 -08004019fail:
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05004020 if (!cachep->list.next) {
Christoph Lameter0718dc22006-03-25 03:06:47 -08004021 /* Cache is not active yet. Roll back what we did */
4022 node--;
4023 while (node >= 0) {
4024 if (cachep->nodelists[node]) {
4025 l3 = cachep->nodelists[node];
4026
4027 kfree(l3->shared);
4028 free_alien_cache(l3->alien);
4029 kfree(l3);
4030 cachep->nodelists[node] = NULL;
4031 }
4032 node--;
4033 }
4034 }
Christoph Lametercafeb022006-03-25 03:06:46 -08004035 return -ENOMEM;
Christoph Lametere498be72005-09-09 13:03:32 -07004036}
4037
Linus Torvalds1da177e2005-04-16 15:20:36 -07004038struct ccupdate_struct {
Pekka Enberg343e0d72006-02-01 03:05:50 -08004039 struct kmem_cache *cachep;
Eric Dumazetacfe7d72011-07-25 08:55:42 +02004040 struct array_cache *new[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041};
4042
4043static void do_ccupdate_local(void *info)
4044{
Andrew Mortona737b3e2006-03-22 00:08:11 -08004045 struct ccupdate_struct *new = info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004046 struct array_cache *old;
4047
4048 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08004049 old = cpu_cache_get(new->cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07004050
Linus Torvalds1da177e2005-04-16 15:20:36 -07004051 new->cachep->array[smp_processor_id()] = new->new[smp_processor_id()];
4052 new->new[smp_processor_id()] = old;
4053}
4054
Christoph Lameter18004c52012-07-06 15:25:12 -05004055/* Always called with the slab_mutex held */
Andrew Mortona737b3e2006-03-22 00:08:11 -08004056static int do_tune_cpucache(struct kmem_cache *cachep, int limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03004057 int batchcount, int shared, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004058{
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004059 struct ccupdate_struct *new;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07004060 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004061
Eric Dumazetacfe7d72011-07-25 08:55:42 +02004062 new = kzalloc(sizeof(*new) + nr_cpu_ids * sizeof(struct array_cache *),
4063 gfp);
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004064 if (!new)
4065 return -ENOMEM;
4066
Christoph Lametere498be72005-09-09 13:03:32 -07004067 for_each_online_cpu(i) {
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07004068 new->new[i] = alloc_arraycache(cpu_to_mem(i), limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03004069 batchcount, gfp);
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004070 if (!new->new[i]) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004071 for (i--; i >= 0; i--)
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004072 kfree(new->new[i]);
4073 kfree(new);
Christoph Lametere498be72005-09-09 13:03:32 -07004074 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004075 }
4076 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004077 new->cachep = cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078
Jens Axboe15c8b6c2008-05-09 09:39:44 +02004079 on_each_cpu(do_ccupdate_local, (void *)new, 1);
Christoph Lametere498be72005-09-09 13:03:32 -07004080
Linus Torvalds1da177e2005-04-16 15:20:36 -07004081 check_irq_on();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004082 cachep->batchcount = batchcount;
4083 cachep->limit = limit;
Christoph Lametere498be72005-09-09 13:03:32 -07004084 cachep->shared = shared;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004085
Christoph Lametere498be72005-09-09 13:03:32 -07004086 for_each_online_cpu(i) {
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004087 struct array_cache *ccold = new->new[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004088 if (!ccold)
4089 continue;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07004090 spin_lock_irq(&cachep->nodelists[cpu_to_mem(i)]->list_lock);
4091 free_block(cachep, ccold->entry, ccold->avail, cpu_to_mem(i));
4092 spin_unlock_irq(&cachep->nodelists[cpu_to_mem(i)]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004093 kfree(ccold);
4094 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004095 kfree(new);
Pekka Enberg83b519e2009-06-10 19:40:04 +03004096 return alloc_kmemlist(cachep, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004097}
4098
Christoph Lameter18004c52012-07-06 15:25:12 -05004099/* Called with slab_mutex held always */
Pekka Enberg83b519e2009-06-10 19:40:04 +03004100static int enable_cpucache(struct kmem_cache *cachep, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004101{
4102 int err;
4103 int limit, shared;
4104
Andrew Mortona737b3e2006-03-22 00:08:11 -08004105 /*
4106 * The head array serves three purposes:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004107 * - create a LIFO ordering, i.e. return objects that are cache-warm
4108 * - reduce the number of spinlock operations.
Andrew Mortona737b3e2006-03-22 00:08:11 -08004109 * - reduce the number of linked list operations on the slab and
Linus Torvalds1da177e2005-04-16 15:20:36 -07004110 * bufctl chains: array operations are cheaper.
4111 * The numbers are guessed, we should auto-tune as described by
4112 * Bonwick.
4113 */
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05004114 if (cachep->size > 131072)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004115 limit = 1;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05004116 else if (cachep->size > PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004117 limit = 8;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05004118 else if (cachep->size > 1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004119 limit = 24;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05004120 else if (cachep->size > 256)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004121 limit = 54;
4122 else
4123 limit = 120;
4124
Andrew Mortona737b3e2006-03-22 00:08:11 -08004125 /*
4126 * CPU bound tasks (e.g. network routing) can exhibit cpu bound
Linus Torvalds1da177e2005-04-16 15:20:36 -07004127 * allocation behaviour: Most allocs on one cpu, most free operations
4128 * on another cpu. For these cases, an efficient object passing between
4129 * cpus is necessary. This is provided by a shared array. The array
4130 * replaces Bonwick's magazine layer.
4131 * On uniprocessor, it's functionally equivalent (but less efficient)
4132 * to a larger limit. Thus disabled by default.
4133 */
4134 shared = 0;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05004135 if (cachep->size <= PAGE_SIZE && num_possible_cpus() > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004136 shared = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004137
4138#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08004139 /*
4140 * With debugging enabled, large batchcount lead to excessively long
4141 * periods with disabled local interrupts. Limit the batchcount
Linus Torvalds1da177e2005-04-16 15:20:36 -07004142 */
4143 if (limit > 32)
4144 limit = 32;
4145#endif
Pekka Enberg83b519e2009-06-10 19:40:04 +03004146 err = do_tune_cpucache(cachep, limit, (limit + 1) / 2, shared, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004147 if (err)
4148 printk(KERN_ERR "enable_cpucache failed for %s, error %d.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004149 cachep->name, -err);
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07004150 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004151}
4152
Christoph Lameter1b552532006-03-22 00:09:07 -08004153/*
4154 * Drain an array if it contains any elements taking the l3 lock only if
Christoph Lameterb18e7e62006-03-22 00:09:07 -08004155 * necessary. Note that the l3 listlock also protects the array_cache
4156 * if drain_array() is used on the shared array.
Christoph Lameter1b552532006-03-22 00:09:07 -08004157 */
H Hartley Sweeten68a1b192011-01-11 17:49:32 -06004158static void drain_array(struct kmem_cache *cachep, struct kmem_list3 *l3,
Christoph Lameter1b552532006-03-22 00:09:07 -08004159 struct array_cache *ac, int force, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004160{
4161 int tofree;
4162
Christoph Lameter1b552532006-03-22 00:09:07 -08004163 if (!ac || !ac->avail)
4164 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004165 if (ac->touched && !force) {
4166 ac->touched = 0;
Christoph Lameterb18e7e62006-03-22 00:09:07 -08004167 } else {
Christoph Lameter1b552532006-03-22 00:09:07 -08004168 spin_lock_irq(&l3->list_lock);
Christoph Lameterb18e7e62006-03-22 00:09:07 -08004169 if (ac->avail) {
4170 tofree = force ? ac->avail : (ac->limit + 4) / 5;
4171 if (tofree > ac->avail)
4172 tofree = (ac->avail + 1) / 2;
4173 free_block(cachep, ac->entry, tofree, node);
4174 ac->avail -= tofree;
4175 memmove(ac->entry, &(ac->entry[tofree]),
4176 sizeof(void *) * ac->avail);
4177 }
Christoph Lameter1b552532006-03-22 00:09:07 -08004178 spin_unlock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004179 }
4180}
4181
4182/**
4183 * cache_reap - Reclaim memory from caches.
Randy Dunlap05fb6bf2007-02-28 20:12:13 -08004184 * @w: work descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -07004185 *
4186 * Called from workqueue/eventd every few seconds.
4187 * Purpose:
4188 * - clear the per-cpu caches for this CPU.
4189 * - return freeable pages to the main free memory pool.
4190 *
Andrew Mortona737b3e2006-03-22 00:08:11 -08004191 * If we cannot acquire the cache chain mutex then just give up - we'll try
4192 * again on the next iteration.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004193 */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004194static void cache_reap(struct work_struct *w)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004195{
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004196 struct kmem_cache *searchp;
Christoph Lametere498be72005-09-09 13:03:32 -07004197 struct kmem_list3 *l3;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07004198 int node = numa_mem_id();
Jean Delvarebf6aede2009-04-02 16:56:54 -07004199 struct delayed_work *work = to_delayed_work(w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004200
Christoph Lameter18004c52012-07-06 15:25:12 -05004201 if (!mutex_trylock(&slab_mutex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004202 /* Give up. Setup the next iteration. */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004203 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004204
Christoph Lameter18004c52012-07-06 15:25:12 -05004205 list_for_each_entry(searchp, &slab_caches, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004206 check_irq_on();
4207
Christoph Lameter35386e32006-03-22 00:09:05 -08004208 /*
4209 * We only take the l3 lock if absolutely necessary and we
4210 * have established with reasonable certainty that
4211 * we can do some work if the lock was obtained.
4212 */
Christoph Lameteraab22072006-03-22 00:09:06 -08004213 l3 = searchp->nodelists[node];
Christoph Lameter35386e32006-03-22 00:09:05 -08004214
Christoph Lameter8fce4d82006-03-09 17:33:54 -08004215 reap_alien(searchp, l3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004216
Christoph Lameteraab22072006-03-22 00:09:06 -08004217 drain_array(searchp, l3, cpu_cache_get(searchp), 0, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004218
Christoph Lameter35386e32006-03-22 00:09:05 -08004219 /*
4220 * These are racy checks but it does not matter
4221 * if we skip one check or scan twice.
4222 */
Christoph Lametere498be72005-09-09 13:03:32 -07004223 if (time_after(l3->next_reap, jiffies))
Christoph Lameter35386e32006-03-22 00:09:05 -08004224 goto next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004225
Christoph Lametere498be72005-09-09 13:03:32 -07004226 l3->next_reap = jiffies + REAPTIMEOUT_LIST3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004227
Christoph Lameteraab22072006-03-22 00:09:06 -08004228 drain_array(searchp, l3, l3->shared, 0, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004229
Christoph Lametered11d9e2006-06-30 01:55:45 -07004230 if (l3->free_touched)
Christoph Lametere498be72005-09-09 13:03:32 -07004231 l3->free_touched = 0;
Christoph Lametered11d9e2006-06-30 01:55:45 -07004232 else {
4233 int freed;
4234
4235 freed = drain_freelist(searchp, l3, (l3->free_limit +
4236 5 * searchp->num - 1) / (5 * searchp->num));
4237 STATS_ADD_REAPED(searchp, freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004238 }
Christoph Lameter35386e32006-03-22 00:09:05 -08004239next:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004240 cond_resched();
4241 }
4242 check_irq_on();
Christoph Lameter18004c52012-07-06 15:25:12 -05004243 mutex_unlock(&slab_mutex);
Christoph Lameter8fce4d82006-03-09 17:33:54 -08004244 next_reap_node();
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004245out:
Andrew Mortona737b3e2006-03-22 00:08:11 -08004246 /* Set up the next iteration */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004247 schedule_delayed_work(work, round_jiffies_relative(REAPTIMEOUT_CPUC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004248}
4249
Linus Torvalds158a9622008-01-02 13:04:48 -08004250#ifdef CONFIG_SLABINFO
Glauber Costa0d7561c2012-10-19 18:20:27 +04004251void get_slabinfo(struct kmem_cache *cachep, struct slabinfo *sinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004252{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004253 struct slab *slabp;
4254 unsigned long active_objs;
4255 unsigned long num_objs;
4256 unsigned long active_slabs = 0;
4257 unsigned long num_slabs, free_objects = 0, shared_avail = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07004258 const char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004259 char *error = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07004260 int node;
4261 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004262
Linus Torvalds1da177e2005-04-16 15:20:36 -07004263 active_objs = 0;
4264 num_slabs = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07004265 for_each_online_node(node) {
4266 l3 = cachep->nodelists[node];
4267 if (!l3)
4268 continue;
4269
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08004270 check_irq_on();
4271 spin_lock_irq(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07004272
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004273 list_for_each_entry(slabp, &l3->slabs_full, list) {
Christoph Lametere498be72005-09-09 13:03:32 -07004274 if (slabp->inuse != cachep->num && !error)
4275 error = "slabs_full accounting error";
4276 active_objs += cachep->num;
4277 active_slabs++;
4278 }
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004279 list_for_each_entry(slabp, &l3->slabs_partial, list) {
Christoph Lametere498be72005-09-09 13:03:32 -07004280 if (slabp->inuse == cachep->num && !error)
4281 error = "slabs_partial inuse accounting error";
4282 if (!slabp->inuse && !error)
4283 error = "slabs_partial/inuse accounting error";
4284 active_objs += slabp->inuse;
4285 active_slabs++;
4286 }
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004287 list_for_each_entry(slabp, &l3->slabs_free, list) {
Christoph Lametere498be72005-09-09 13:03:32 -07004288 if (slabp->inuse && !error)
4289 error = "slabs_free/inuse accounting error";
4290 num_slabs++;
4291 }
4292 free_objects += l3->free_objects;
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08004293 if (l3->shared)
4294 shared_avail += l3->shared->avail;
Christoph Lametere498be72005-09-09 13:03:32 -07004295
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08004296 spin_unlock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004297 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004298 num_slabs += active_slabs;
4299 num_objs = num_slabs * cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07004300 if (num_objs - active_objs != free_objects && !error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004301 error = "free_objects accounting error";
4302
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004303 name = cachep->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004304 if (error)
4305 printk(KERN_ERR "slab: cache %s error: %s\n", name, error);
4306
Glauber Costa0d7561c2012-10-19 18:20:27 +04004307 sinfo->active_objs = active_objs;
4308 sinfo->num_objs = num_objs;
4309 sinfo->active_slabs = active_slabs;
4310 sinfo->num_slabs = num_slabs;
4311 sinfo->shared_avail = shared_avail;
4312 sinfo->limit = cachep->limit;
4313 sinfo->batchcount = cachep->batchcount;
4314 sinfo->shared = cachep->shared;
4315 sinfo->objects_per_slab = cachep->num;
4316 sinfo->cache_order = cachep->gfporder;
4317}
4318
4319void slabinfo_show_stats(struct seq_file *m, struct kmem_cache *cachep)
4320{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004321#if STATS
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004322 { /* list3 stats */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004323 unsigned long high = cachep->high_mark;
4324 unsigned long allocs = cachep->num_allocations;
4325 unsigned long grown = cachep->grown;
4326 unsigned long reaped = cachep->reaped;
4327 unsigned long errors = cachep->errors;
4328 unsigned long max_freeable = cachep->max_freeable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004329 unsigned long node_allocs = cachep->node_allocs;
Christoph Lametere498be72005-09-09 13:03:32 -07004330 unsigned long node_frees = cachep->node_frees;
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -07004331 unsigned long overflows = cachep->node_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004332
Joe Perchese92dd4f2010-03-26 19:27:58 -07004333 seq_printf(m, " : globalstat %7lu %6lu %5lu %4lu "
4334 "%4lu %4lu %4lu %4lu %4lu",
4335 allocs, high, grown,
4336 reaped, errors, max_freeable, node_allocs,
4337 node_frees, overflows);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004338 }
4339 /* cpu stats */
4340 {
4341 unsigned long allochit = atomic_read(&cachep->allochit);
4342 unsigned long allocmiss = atomic_read(&cachep->allocmiss);
4343 unsigned long freehit = atomic_read(&cachep->freehit);
4344 unsigned long freemiss = atomic_read(&cachep->freemiss);
4345
4346 seq_printf(m, " : cpustat %6lu %6lu %6lu %6lu",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004347 allochit, allocmiss, freehit, freemiss);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004348 }
4349#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004350}
4351
Linus Torvalds1da177e2005-04-16 15:20:36 -07004352#define MAX_SLABINFO_WRITE 128
4353/**
4354 * slabinfo_write - Tuning for the slab allocator
4355 * @file: unused
4356 * @buffer: user buffer
4357 * @count: data length
4358 * @ppos: unused
4359 */
Glauber Costab7454ad2012-10-19 18:20:25 +04004360ssize_t slabinfo_write(struct file *file, const char __user *buffer,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004361 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004362{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004363 char kbuf[MAX_SLABINFO_WRITE + 1], *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004364 int limit, batchcount, shared, res;
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004365 struct kmem_cache *cachep;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004366
Linus Torvalds1da177e2005-04-16 15:20:36 -07004367 if (count > MAX_SLABINFO_WRITE)
4368 return -EINVAL;
4369 if (copy_from_user(&kbuf, buffer, count))
4370 return -EFAULT;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004371 kbuf[MAX_SLABINFO_WRITE] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07004372
4373 tmp = strchr(kbuf, ' ');
4374 if (!tmp)
4375 return -EINVAL;
4376 *tmp = '\0';
4377 tmp++;
4378 if (sscanf(tmp, " %d %d %d", &limit, &batchcount, &shared) != 3)
4379 return -EINVAL;
4380
4381 /* Find the cache in the chain of caches. */
Christoph Lameter18004c52012-07-06 15:25:12 -05004382 mutex_lock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004383 res = -EINVAL;
Christoph Lameter18004c52012-07-06 15:25:12 -05004384 list_for_each_entry(cachep, &slab_caches, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004385 if (!strcmp(cachep->name, kbuf)) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08004386 if (limit < 1 || batchcount < 1 ||
4387 batchcount > limit || shared < 0) {
Christoph Lametere498be72005-09-09 13:03:32 -07004388 res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004389 } else {
Christoph Lametere498be72005-09-09 13:03:32 -07004390 res = do_tune_cpucache(cachep, limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03004391 batchcount, shared,
4392 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004393 }
4394 break;
4395 }
4396 }
Christoph Lameter18004c52012-07-06 15:25:12 -05004397 mutex_unlock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004398 if (res >= 0)
4399 res = count;
4400 return res;
4401}
Al Viro871751e2006-03-25 03:06:39 -08004402
4403#ifdef CONFIG_DEBUG_SLAB_LEAK
4404
4405static void *leaks_start(struct seq_file *m, loff_t *pos)
4406{
Christoph Lameter18004c52012-07-06 15:25:12 -05004407 mutex_lock(&slab_mutex);
4408 return seq_list_start(&slab_caches, *pos);
Al Viro871751e2006-03-25 03:06:39 -08004409}
4410
4411static inline int add_caller(unsigned long *n, unsigned long v)
4412{
4413 unsigned long *p;
4414 int l;
4415 if (!v)
4416 return 1;
4417 l = n[1];
4418 p = n + 2;
4419 while (l) {
4420 int i = l/2;
4421 unsigned long *q = p + 2 * i;
4422 if (*q == v) {
4423 q[1]++;
4424 return 1;
4425 }
4426 if (*q > v) {
4427 l = i;
4428 } else {
4429 p = q + 2;
4430 l -= i + 1;
4431 }
4432 }
4433 if (++n[1] == n[0])
4434 return 0;
4435 memmove(p + 2, p, n[1] * 2 * sizeof(unsigned long) - ((void *)p - (void *)n));
4436 p[0] = v;
4437 p[1] = 1;
4438 return 1;
4439}
4440
4441static void handle_slab(unsigned long *n, struct kmem_cache *c, struct slab *s)
4442{
4443 void *p;
4444 int i;
4445 if (n[0] == n[1])
4446 return;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05004447 for (i = 0, p = s->s_mem; i < c->num; i++, p += c->size) {
Al Viro871751e2006-03-25 03:06:39 -08004448 if (slab_bufctl(s)[i] != BUFCTL_ACTIVE)
4449 continue;
4450 if (!add_caller(n, (unsigned long)*dbg_userword(c, p)))
4451 return;
4452 }
4453}
4454
4455static void show_symbol(struct seq_file *m, unsigned long address)
4456{
4457#ifdef CONFIG_KALLSYMS
Al Viro871751e2006-03-25 03:06:39 -08004458 unsigned long offset, size;
Tejun Heo9281ace2007-07-17 04:03:51 -07004459 char modname[MODULE_NAME_LEN], name[KSYM_NAME_LEN];
Al Viro871751e2006-03-25 03:06:39 -08004460
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004461 if (lookup_symbol_attrs(address, &size, &offset, modname, name) == 0) {
Al Viro871751e2006-03-25 03:06:39 -08004462 seq_printf(m, "%s+%#lx/%#lx", name, offset, size);
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004463 if (modname[0])
Al Viro871751e2006-03-25 03:06:39 -08004464 seq_printf(m, " [%s]", modname);
4465 return;
4466 }
4467#endif
4468 seq_printf(m, "%p", (void *)address);
4469}
4470
4471static int leaks_show(struct seq_file *m, void *p)
4472{
Thierry Reding0672aa72012-06-22 19:42:49 +02004473 struct kmem_cache *cachep = list_entry(p, struct kmem_cache, list);
Al Viro871751e2006-03-25 03:06:39 -08004474 struct slab *slabp;
4475 struct kmem_list3 *l3;
4476 const char *name;
4477 unsigned long *n = m->private;
4478 int node;
4479 int i;
4480
4481 if (!(cachep->flags & SLAB_STORE_USER))
4482 return 0;
4483 if (!(cachep->flags & SLAB_RED_ZONE))
4484 return 0;
4485
4486 /* OK, we can do it */
4487
4488 n[1] = 0;
4489
4490 for_each_online_node(node) {
4491 l3 = cachep->nodelists[node];
4492 if (!l3)
4493 continue;
4494
4495 check_irq_on();
4496 spin_lock_irq(&l3->list_lock);
4497
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004498 list_for_each_entry(slabp, &l3->slabs_full, list)
Al Viro871751e2006-03-25 03:06:39 -08004499 handle_slab(n, cachep, slabp);
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004500 list_for_each_entry(slabp, &l3->slabs_partial, list)
Al Viro871751e2006-03-25 03:06:39 -08004501 handle_slab(n, cachep, slabp);
Al Viro871751e2006-03-25 03:06:39 -08004502 spin_unlock_irq(&l3->list_lock);
4503 }
4504 name = cachep->name;
4505 if (n[0] == n[1]) {
4506 /* Increase the buffer size */
Christoph Lameter18004c52012-07-06 15:25:12 -05004507 mutex_unlock(&slab_mutex);
Al Viro871751e2006-03-25 03:06:39 -08004508 m->private = kzalloc(n[0] * 4 * sizeof(unsigned long), GFP_KERNEL);
4509 if (!m->private) {
4510 /* Too bad, we are really out */
4511 m->private = n;
Christoph Lameter18004c52012-07-06 15:25:12 -05004512 mutex_lock(&slab_mutex);
Al Viro871751e2006-03-25 03:06:39 -08004513 return -ENOMEM;
4514 }
4515 *(unsigned long *)m->private = n[0] * 2;
4516 kfree(n);
Christoph Lameter18004c52012-07-06 15:25:12 -05004517 mutex_lock(&slab_mutex);
Al Viro871751e2006-03-25 03:06:39 -08004518 /* Now make sure this entry will be retried */
4519 m->count = m->size;
4520 return 0;
4521 }
4522 for (i = 0; i < n[1]; i++) {
4523 seq_printf(m, "%s: %lu ", name, n[2*i+3]);
4524 show_symbol(m, n[2*i+2]);
4525 seq_putc(m, '\n');
4526 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004527
Al Viro871751e2006-03-25 03:06:39 -08004528 return 0;
4529}
4530
Glauber Costab7454ad2012-10-19 18:20:25 +04004531static void *s_next(struct seq_file *m, void *p, loff_t *pos)
4532{
4533 return seq_list_next(p, &slab_caches, pos);
4534}
4535
4536static void s_stop(struct seq_file *m, void *p)
4537{
4538 mutex_unlock(&slab_mutex);
4539}
4540
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004541static const struct seq_operations slabstats_op = {
Al Viro871751e2006-03-25 03:06:39 -08004542 .start = leaks_start,
4543 .next = s_next,
4544 .stop = s_stop,
4545 .show = leaks_show,
4546};
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004547
4548static int slabstats_open(struct inode *inode, struct file *file)
4549{
4550 unsigned long *n = kzalloc(PAGE_SIZE, GFP_KERNEL);
4551 int ret = -ENOMEM;
4552 if (n) {
4553 ret = seq_open(file, &slabstats_op);
4554 if (!ret) {
4555 struct seq_file *m = file->private_data;
4556 *n = PAGE_SIZE / (2 * sizeof(unsigned long));
4557 m->private = n;
4558 n = NULL;
4559 }
4560 kfree(n);
4561 }
4562 return ret;
4563}
4564
4565static const struct file_operations proc_slabstats_operations = {
4566 .open = slabstats_open,
4567 .read = seq_read,
4568 .llseek = seq_lseek,
4569 .release = seq_release_private,
4570};
Al Viro871751e2006-03-25 03:06:39 -08004571#endif
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004572
4573static int __init slab_proc_init(void)
4574{
4575#ifdef CONFIG_DEBUG_SLAB_LEAK
4576 proc_create("slab_allocators", 0, NULL, &proc_slabstats_operations);
4577#endif
4578 return 0;
4579}
4580module_init(slab_proc_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004581#endif
4582
Manfred Spraul00e145b2005-09-03 15:55:07 -07004583/**
4584 * ksize - get the actual amount of memory allocated for a given object
4585 * @objp: Pointer to the object
4586 *
4587 * kmalloc may internally round up allocations and return more memory
4588 * than requested. ksize() can be used to determine the actual amount of
4589 * memory allocated. The caller may use this additional memory, even though
4590 * a smaller amount of memory was initially specified with the kmalloc call.
4591 * The caller must guarantee that objp points to a valid object previously
4592 * allocated with either kmalloc() or kmem_cache_alloc(). The object
4593 * must not be freed during the duration of the call.
4594 */
Pekka Enbergfd76bab2007-05-06 14:48:40 -07004595size_t ksize(const void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004596{
Christoph Lameteref8b4522007-10-16 01:24:46 -07004597 BUG_ON(!objp);
4598 if (unlikely(objp == ZERO_SIZE_PTR))
Manfred Spraul00e145b2005-09-03 15:55:07 -07004599 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004600
Christoph Lameter8c138bc2012-06-13 10:24:58 -05004601 return virt_to_cache(objp)->object_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004602}
Kirill A. Shutemovb1aabec2009-02-10 15:21:44 +02004603EXPORT_SYMBOL(ksize);