blob: c7ea5234c4e904c7384bf2bade161866f7f32699 [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 Enberg6ed5eb2212006-02-01 03:05:49 -0800493static inline struct kmem_cache *virt_to_cache(const void *obj)
494{
Christoph Lameterb49af682007-05-06 14:49:41 -0700495 struct page *page = virt_to_head_page(obj);
Christoph Lameter35026082012-06-13 10:24:56 -0500496 return page->slab_cache;
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -0800497}
498
499static inline struct slab *virt_to_slab(const void *obj)
500{
Christoph Lameterb49af682007-05-06 14:49:41 -0700501 struct page *page = virt_to_head_page(obj);
Christoph Lameter35026082012-06-13 10:24:56 -0500502
503 VM_BUG_ON(!PageSlab(page));
504 return page->slab_page;
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -0800505}
506
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800507static inline void *index_to_obj(struct kmem_cache *cache, struct slab *slab,
508 unsigned int idx)
509{
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500510 return slab->s_mem + cache->size * idx;
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800511}
512
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800513/*
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500514 * We want to avoid an expensive divide : (offset / cache->size)
515 * Using the fact that size is a constant for a particular cache,
516 * we can replace (offset / cache->size) by
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800517 * reciprocal_divide(offset, cache->reciprocal_buffer_size)
518 */
519static inline unsigned int obj_to_index(const struct kmem_cache *cache,
520 const struct slab *slab, void *obj)
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800521{
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800522 u32 offset = (obj - slab->s_mem);
523 return reciprocal_divide(offset, cache->reciprocal_buffer_size);
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800524}
525
Andrew Mortona737b3e2006-03-22 00:08:11 -0800526/*
527 * These are the default caches for kmalloc. Custom caches can have other sizes.
528 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529struct cache_sizes malloc_sizes[] = {
530#define CACHE(x) { .cs_size = (x) },
531#include <linux/kmalloc_sizes.h>
532 CACHE(ULONG_MAX)
533#undef CACHE
534};
535EXPORT_SYMBOL(malloc_sizes);
536
537/* Must match cache_sizes above. Out of line to keep cache footprint low. */
538struct cache_names {
539 char *name;
540 char *name_dma;
541};
542
543static struct cache_names __initdata cache_names[] = {
544#define CACHE(x) { .name = "size-" #x, .name_dma = "size-" #x "(DMA)" },
545#include <linux/kmalloc_sizes.h>
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800546 {NULL,}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547#undef CACHE
548};
549
550static struct arraycache_init initarray_cache __initdata =
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800551 { {0, BOOT_CPUCACHE_ENTRIES, 1, 0} };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552static struct arraycache_init initarray_generic =
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800553 { {0, BOOT_CPUCACHE_ENTRIES, 1, 0} };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
555/* internal cache of cache description objs */
Christoph Lameter9b030cb2012-09-05 00:20:33 +0000556static struct kmem_cache kmem_cache_boot = {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800557 .batchcount = 1,
558 .limit = BOOT_CPUCACHE_ENTRIES,
559 .shared = 1,
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500560 .size = sizeof(struct kmem_cache),
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800561 .name = "kmem_cache",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562};
563
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -0700564#define BAD_ALIEN_MAGIC 0x01020304ul
565
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200566#ifdef CONFIG_LOCKDEP
567
568/*
569 * Slab sometimes uses the kmalloc slabs to store the slab headers
570 * for other slabs "off slab".
571 * The locking for this is tricky in that it nests within the locks
572 * of all other slabs in a few places; to deal with this special
573 * locking we put on-slab caches into a separate lock-class.
574 *
575 * We set lock class for alien array caches which are up during init.
576 * The lock annotation will be lost if all cpus of a node goes down and
577 * then comes back up during hotplug
578 */
579static struct lock_class_key on_slab_l3_key;
580static struct lock_class_key on_slab_alc_key;
581
Peter Zijlstra83835b32011-07-22 15:26:05 +0200582static struct lock_class_key debugobj_l3_key;
583static struct lock_class_key debugobj_alc_key;
584
585static void slab_set_lock_classes(struct kmem_cache *cachep,
586 struct lock_class_key *l3_key, struct lock_class_key *alc_key,
587 int q)
588{
589 struct array_cache **alc;
590 struct kmem_list3 *l3;
591 int r;
592
593 l3 = cachep->nodelists[q];
594 if (!l3)
595 return;
596
597 lockdep_set_class(&l3->list_lock, l3_key);
598 alc = l3->alien;
599 /*
600 * FIXME: This check for BAD_ALIEN_MAGIC
601 * should go away when common slab code is taught to
602 * work even without alien caches.
603 * Currently, non NUMA code returns BAD_ALIEN_MAGIC
604 * for alloc_alien_cache,
605 */
606 if (!alc || (unsigned long)alc == BAD_ALIEN_MAGIC)
607 return;
608 for_each_node(r) {
609 if (alc[r])
610 lockdep_set_class(&alc[r]->lock, alc_key);
611 }
612}
613
614static void slab_set_debugobj_lock_classes_node(struct kmem_cache *cachep, int node)
615{
616 slab_set_lock_classes(cachep, &debugobj_l3_key, &debugobj_alc_key, node);
617}
618
619static void slab_set_debugobj_lock_classes(struct kmem_cache *cachep)
620{
621 int node;
622
623 for_each_online_node(node)
624 slab_set_debugobj_lock_classes_node(cachep, node);
625}
626
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200627static void init_node_lock_keys(int q)
628{
629 struct cache_sizes *s = malloc_sizes;
630
Christoph Lameter97d06602012-07-06 15:25:11 -0500631 if (slab_state < UP)
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200632 return;
633
634 for (s = malloc_sizes; s->cs_size != ULONG_MAX; s++) {
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200635 struct kmem_list3 *l3;
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200636
637 l3 = s->cs_cachep->nodelists[q];
638 if (!l3 || OFF_SLAB(s->cs_cachep))
Pekka Enberg00afa752009-12-27 14:33:14 +0200639 continue;
Peter Zijlstra83835b32011-07-22 15:26:05 +0200640
641 slab_set_lock_classes(s->cs_cachep, &on_slab_l3_key,
642 &on_slab_alc_key, q);
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200643 }
644}
645
646static inline void init_lock_keys(void)
647{
648 int node;
649
650 for_each_node(node)
651 init_node_lock_keys(node);
652}
653#else
654static void init_node_lock_keys(int q)
655{
656}
657
658static inline void init_lock_keys(void)
659{
660}
Peter Zijlstra83835b32011-07-22 15:26:05 +0200661
662static void slab_set_debugobj_lock_classes_node(struct kmem_cache *cachep, int node)
663{
664}
665
666static void slab_set_debugobj_lock_classes(struct kmem_cache *cachep)
667{
668}
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200669#endif
670
Tejun Heo1871e522009-10-29 22:34:13 +0900671static DEFINE_PER_CPU(struct delayed_work, slab_reap_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672
Pekka Enberg343e0d72006-02-01 03:05:50 -0800673static inline struct array_cache *cpu_cache_get(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674{
675 return cachep->array[smp_processor_id()];
676}
677
Andrew Mortona737b3e2006-03-22 00:08:11 -0800678static inline struct kmem_cache *__find_general_cachep(size_t size,
679 gfp_t gfpflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680{
681 struct cache_sizes *csizep = malloc_sizes;
682
683#if DEBUG
684 /* This happens if someone tries to call
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800685 * kmem_cache_create(), or __kmalloc(), before
686 * the generic caches are initialized.
687 */
Alok Katariac7e43c72005-09-14 12:17:53 -0700688 BUG_ON(malloc_sizes[INDEX_AC].cs_cachep == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689#endif
Christoph Lameter6cb8f912007-07-17 04:03:22 -0700690 if (!size)
691 return ZERO_SIZE_PTR;
692
Linus Torvalds1da177e2005-04-16 15:20:36 -0700693 while (size > csizep->cs_size)
694 csizep++;
695
696 /*
Martin Hicks0abf40c2005-09-03 15:54:54 -0700697 * Really subtle: The last entry with cs->cs_size==ULONG_MAX
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 * has cs_{dma,}cachep==NULL. Thus no special case
699 * for large kmalloc calls required.
700 */
Christoph Lameter4b51d662007-02-10 01:43:10 -0800701#ifdef CONFIG_ZONE_DMA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 if (unlikely(gfpflags & GFP_DMA))
703 return csizep->cs_dmacachep;
Christoph Lameter4b51d662007-02-10 01:43:10 -0800704#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 return csizep->cs_cachep;
706}
707
Adrian Bunkb2213852006-09-25 23:31:02 -0700708static struct kmem_cache *kmem_find_general_cachep(size_t size, gfp_t gfpflags)
Manfred Spraul97e2bde2005-05-01 08:58:38 -0700709{
710 return __find_general_cachep(size, gfpflags);
711}
Manfred Spraul97e2bde2005-05-01 08:58:38 -0700712
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800713static size_t slab_mgmt_size(size_t nr_objs, size_t align)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714{
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800715 return ALIGN(sizeof(struct slab)+nr_objs*sizeof(kmem_bufctl_t), align);
716}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
Andrew Mortona737b3e2006-03-22 00:08:11 -0800718/*
719 * Calculate the number of objects and left-over bytes for a given buffer size.
720 */
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800721static void cache_estimate(unsigned long gfporder, size_t buffer_size,
722 size_t align, int flags, size_t *left_over,
723 unsigned int *num)
724{
725 int nr_objs;
726 size_t mgmt_size;
727 size_t slab_size = PAGE_SIZE << gfporder;
728
729 /*
730 * The slab management structure can be either off the slab or
731 * on it. For the latter case, the memory allocated for a
732 * slab is used for:
733 *
734 * - The struct slab
735 * - One kmem_bufctl_t for each object
736 * - Padding to respect alignment of @align
737 * - @buffer_size bytes for each object
738 *
739 * If the slab management structure is off the slab, then the
740 * alignment will already be calculated into the size. Because
741 * the slabs are all pages aligned, the objects will be at the
742 * correct alignment when allocated.
743 */
744 if (flags & CFLGS_OFF_SLAB) {
745 mgmt_size = 0;
746 nr_objs = slab_size / buffer_size;
747
748 if (nr_objs > SLAB_LIMIT)
749 nr_objs = SLAB_LIMIT;
750 } else {
751 /*
752 * Ignore padding for the initial guess. The padding
753 * is at most @align-1 bytes, and @buffer_size is at
754 * least @align. In the worst case, this result will
755 * be one greater than the number of objects that fit
756 * into the memory allocation when taking the padding
757 * into account.
758 */
759 nr_objs = (slab_size - sizeof(struct slab)) /
760 (buffer_size + sizeof(kmem_bufctl_t));
761
762 /*
763 * This calculated number will be either the right
764 * amount, or one greater than what we want.
765 */
766 if (slab_mgmt_size(nr_objs, align) + nr_objs*buffer_size
767 > slab_size)
768 nr_objs--;
769
770 if (nr_objs > SLAB_LIMIT)
771 nr_objs = SLAB_LIMIT;
772
773 mgmt_size = slab_mgmt_size(nr_objs, align);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 }
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800775 *num = nr_objs;
776 *left_over = slab_size - nr_objs*buffer_size - mgmt_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777}
778
Christoph Lameterf28510d2012-09-11 19:49:38 +0000779#if DEBUG
Harvey Harrisond40cee22008-04-30 00:55:07 -0700780#define slab_error(cachep, msg) __slab_error(__func__, cachep, msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
Andrew Mortona737b3e2006-03-22 00:08:11 -0800782static void __slab_error(const char *function, struct kmem_cache *cachep,
783 char *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784{
785 printk(KERN_ERR "slab error in %s(): cache `%s': %s\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800786 function, cachep->name, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787 dump_stack();
Dave Jones645df232012-09-18 15:54:12 -0400788 add_taint(TAINT_BAD_PAGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789}
Christoph Lameterf28510d2012-09-11 19:49:38 +0000790#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791
Paul Menage3395ee02006-12-06 20:32:16 -0800792/*
793 * By default on NUMA we use alien caches to stage the freeing of
794 * objects allocated from other nodes. This causes massive memory
795 * inefficiencies when using fake NUMA setup to split memory into a
796 * large number of small nodes, so it can be disabled on the command
797 * line
798 */
799
800static int use_alien_caches __read_mostly = 1;
801static int __init noaliencache_setup(char *s)
802{
803 use_alien_caches = 0;
804 return 1;
805}
806__setup("noaliencache", noaliencache_setup);
807
David Rientjes3df1ccc2011-10-18 22:09:28 -0700808static int __init slab_max_order_setup(char *str)
809{
810 get_option(&str, &slab_max_order);
811 slab_max_order = slab_max_order < 0 ? 0 :
812 min(slab_max_order, MAX_ORDER - 1);
813 slab_max_order_set = true;
814
815 return 1;
816}
817__setup("slab_max_order=", slab_max_order_setup);
818
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800819#ifdef CONFIG_NUMA
820/*
821 * Special reaping functions for NUMA systems called from cache_reap().
822 * These take care of doing round robin flushing of alien caches (containing
823 * objects freed on different nodes from which they were allocated) and the
824 * flushing of remote pcps by calling drain_node_pages.
825 */
Tejun Heo1871e522009-10-29 22:34:13 +0900826static DEFINE_PER_CPU(unsigned long, slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800827
828static void init_reap_node(int cpu)
829{
830 int node;
831
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -0700832 node = next_node(cpu_to_mem(cpu), node_online_map);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800833 if (node == MAX_NUMNODES)
Paul Jackson442295c2006-03-22 00:09:11 -0800834 node = first_node(node_online_map);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800835
Tejun Heo1871e522009-10-29 22:34:13 +0900836 per_cpu(slab_reap_node, cpu) = node;
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800837}
838
839static void next_reap_node(void)
840{
Christoph Lameter909ea962010-12-08 16:22:55 +0100841 int node = __this_cpu_read(slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800842
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800843 node = next_node(node, node_online_map);
844 if (unlikely(node >= MAX_NUMNODES))
845 node = first_node(node_online_map);
Christoph Lameter909ea962010-12-08 16:22:55 +0100846 __this_cpu_write(slab_reap_node, node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800847}
848
849#else
850#define init_reap_node(cpu) do { } while (0)
851#define next_reap_node(void) do { } while (0)
852#endif
853
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854/*
855 * Initiate the reap timer running on the target CPU. We run at around 1 to 2Hz
856 * via the workqueue/eventd.
857 * Add the CPU number into the expiration time to minimize the possibility of
858 * the CPUs getting into lockstep and contending for the global cache chain
859 * lock.
860 */
Adrian Bunk897e6792007-07-15 23:38:20 -0700861static void __cpuinit start_cpu_timer(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862{
Tejun Heo1871e522009-10-29 22:34:13 +0900863 struct delayed_work *reap_work = &per_cpu(slab_reap_work, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
865 /*
866 * When this gets called from do_initcalls via cpucache_init(),
867 * init_workqueues() has already run, so keventd will be setup
868 * at that time.
869 */
David Howells52bad642006-11-22 14:54:01 +0000870 if (keventd_up() && reap_work->work.func == NULL) {
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800871 init_reap_node(cpu);
Tejun Heo203b42f2012-08-21 13:18:23 -0700872 INIT_DEFERRABLE_WORK(reap_work, cache_reap);
Arjan van de Ven2b284212006-12-10 02:21:28 -0800873 schedule_delayed_work_on(cpu, reap_work,
874 __round_jiffies_relative(HZ, cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 }
876}
877
Christoph Lametere498be72005-09-09 13:03:32 -0700878static struct array_cache *alloc_arraycache(int node, int entries,
Pekka Enberg83b519e2009-06-10 19:40:04 +0300879 int batchcount, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880{
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800881 int memsize = sizeof(void *) * entries + sizeof(struct array_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 struct array_cache *nc = NULL;
883
Pekka Enberg83b519e2009-06-10 19:40:04 +0300884 nc = kmalloc_node(memsize, gfp, node);
Catalin Marinasd5cff632009-06-11 13:22:40 +0100885 /*
886 * The array_cache structures contain pointers to free object.
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300887 * However, when such objects are allocated or transferred to another
Catalin Marinasd5cff632009-06-11 13:22:40 +0100888 * cache the pointers are not cleared and they could be counted as
889 * valid references during a kmemleak scan. Therefore, kmemleak must
890 * not scan such objects.
891 */
892 kmemleak_no_scan(nc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 if (nc) {
894 nc->avail = 0;
895 nc->limit = entries;
896 nc->batchcount = batchcount;
897 nc->touched = 0;
Christoph Lametere498be72005-09-09 13:03:32 -0700898 spin_lock_init(&nc->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 }
900 return nc;
901}
902
Mel Gorman072bb0a2012-07-31 16:43:58 -0700903static inline bool is_slab_pfmemalloc(struct slab *slabp)
904{
905 struct page *page = virt_to_page(slabp->s_mem);
906
907 return PageSlabPfmemalloc(page);
908}
909
910/* Clears pfmemalloc_active if no slabs have pfmalloc set */
911static void recheck_pfmemalloc_active(struct kmem_cache *cachep,
912 struct array_cache *ac)
913{
914 struct kmem_list3 *l3 = cachep->nodelists[numa_mem_id()];
915 struct slab *slabp;
916 unsigned long flags;
917
918 if (!pfmemalloc_active)
919 return;
920
921 spin_lock_irqsave(&l3->list_lock, flags);
922 list_for_each_entry(slabp, &l3->slabs_full, list)
923 if (is_slab_pfmemalloc(slabp))
924 goto out;
925
926 list_for_each_entry(slabp, &l3->slabs_partial, list)
927 if (is_slab_pfmemalloc(slabp))
928 goto out;
929
930 list_for_each_entry(slabp, &l3->slabs_free, list)
931 if (is_slab_pfmemalloc(slabp))
932 goto out;
933
934 pfmemalloc_active = false;
935out:
936 spin_unlock_irqrestore(&l3->list_lock, flags);
937}
938
Mel Gorman381760e2012-07-31 16:44:30 -0700939static void *__ac_get_obj(struct kmem_cache *cachep, struct array_cache *ac,
Mel Gorman072bb0a2012-07-31 16:43:58 -0700940 gfp_t flags, bool force_refill)
941{
942 int i;
943 void *objp = ac->entry[--ac->avail];
944
945 /* Ensure the caller is allowed to use objects from PFMEMALLOC slab */
946 if (unlikely(is_obj_pfmemalloc(objp))) {
947 struct kmem_list3 *l3;
948
949 if (gfp_pfmemalloc_allowed(flags)) {
950 clear_obj_pfmemalloc(&objp);
951 return objp;
952 }
953
954 /* The caller cannot use PFMEMALLOC objects, find another one */
Joonsoo Kimd014dc22012-09-17 14:09:06 -0700955 for (i = 0; i < ac->avail; i++) {
Mel Gorman072bb0a2012-07-31 16:43:58 -0700956 /* If a !PFMEMALLOC object is found, swap them */
957 if (!is_obj_pfmemalloc(ac->entry[i])) {
958 objp = ac->entry[i];
959 ac->entry[i] = ac->entry[ac->avail];
960 ac->entry[ac->avail] = objp;
961 return objp;
962 }
963 }
964
965 /*
966 * If there are empty slabs on the slabs_free list and we are
967 * being forced to refill the cache, mark this one !pfmemalloc.
968 */
969 l3 = cachep->nodelists[numa_mem_id()];
970 if (!list_empty(&l3->slabs_free) && force_refill) {
971 struct slab *slabp = virt_to_slab(objp);
Mel Gorman30c29be2012-09-17 14:09:03 -0700972 ClearPageSlabPfmemalloc(virt_to_head_page(slabp->s_mem));
Mel Gorman072bb0a2012-07-31 16:43:58 -0700973 clear_obj_pfmemalloc(&objp);
974 recheck_pfmemalloc_active(cachep, ac);
975 return objp;
976 }
977
978 /* No !PFMEMALLOC objects available */
979 ac->avail++;
980 objp = NULL;
981 }
982
983 return objp;
984}
985
Mel Gorman381760e2012-07-31 16:44:30 -0700986static inline void *ac_get_obj(struct kmem_cache *cachep,
987 struct array_cache *ac, gfp_t flags, bool force_refill)
988{
989 void *objp;
990
991 if (unlikely(sk_memalloc_socks()))
992 objp = __ac_get_obj(cachep, ac, flags, force_refill);
993 else
994 objp = ac->entry[--ac->avail];
995
996 return objp;
997}
998
999static void *__ac_put_obj(struct kmem_cache *cachep, struct array_cache *ac,
Mel Gorman072bb0a2012-07-31 16:43:58 -07001000 void *objp)
1001{
1002 if (unlikely(pfmemalloc_active)) {
1003 /* Some pfmemalloc slabs exist, check if this is one */
Mel Gorman30c29be2012-09-17 14:09:03 -07001004 struct page *page = virt_to_head_page(objp);
Mel Gorman072bb0a2012-07-31 16:43:58 -07001005 if (PageSlabPfmemalloc(page))
1006 set_obj_pfmemalloc(&objp);
1007 }
1008
Mel Gorman381760e2012-07-31 16:44:30 -07001009 return objp;
1010}
1011
1012static inline void ac_put_obj(struct kmem_cache *cachep, struct array_cache *ac,
1013 void *objp)
1014{
1015 if (unlikely(sk_memalloc_socks()))
1016 objp = __ac_put_obj(cachep, ac, objp);
1017
Mel Gorman072bb0a2012-07-31 16:43:58 -07001018 ac->entry[ac->avail++] = objp;
1019}
1020
Christoph Lameter3ded1752006-03-25 03:06:44 -08001021/*
1022 * Transfer objects in one arraycache to another.
1023 * Locking must be handled by the caller.
1024 *
1025 * Return the number of entries transferred.
1026 */
1027static int transfer_objects(struct array_cache *to,
1028 struct array_cache *from, unsigned int max)
1029{
1030 /* Figure out how many entries to transfer */
Hagen Paul Pfeifer732eacc2010-10-26 14:22:23 -07001031 int nr = min3(from->avail, max, to->limit - to->avail);
Christoph Lameter3ded1752006-03-25 03:06:44 -08001032
1033 if (!nr)
1034 return 0;
1035
1036 memcpy(to->entry + to->avail, from->entry + from->avail -nr,
1037 sizeof(void *) *nr);
1038
1039 from->avail -= nr;
1040 to->avail += nr;
Christoph Lameter3ded1752006-03-25 03:06:44 -08001041 return nr;
1042}
1043
Christoph Lameter765c4502006-09-27 01:50:08 -07001044#ifndef CONFIG_NUMA
1045
1046#define drain_alien_cache(cachep, alien) do { } while (0)
1047#define reap_alien(cachep, l3) do { } while (0)
1048
Pekka Enberg83b519e2009-06-10 19:40:04 +03001049static inline struct array_cache **alloc_alien_cache(int node, int limit, gfp_t gfp)
Christoph Lameter765c4502006-09-27 01:50:08 -07001050{
1051 return (struct array_cache **)BAD_ALIEN_MAGIC;
1052}
1053
1054static inline void free_alien_cache(struct array_cache **ac_ptr)
1055{
1056}
1057
1058static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
1059{
1060 return 0;
1061}
1062
1063static inline void *alternate_node_alloc(struct kmem_cache *cachep,
1064 gfp_t flags)
1065{
1066 return NULL;
1067}
1068
Christoph Hellwig8b98c162006-12-06 20:32:30 -08001069static inline void *____cache_alloc_node(struct kmem_cache *cachep,
Christoph Lameter765c4502006-09-27 01:50:08 -07001070 gfp_t flags, int nodeid)
1071{
1072 return NULL;
1073}
1074
1075#else /* CONFIG_NUMA */
1076
Christoph Hellwig8b98c162006-12-06 20:32:30 -08001077static void *____cache_alloc_node(struct kmem_cache *, gfp_t, int);
Paul Jacksonc61afb12006-03-24 03:16:08 -08001078static void *alternate_node_alloc(struct kmem_cache *, gfp_t);
Christoph Lameterdc85da12006-01-18 17:42:36 -08001079
Pekka Enberg83b519e2009-06-10 19:40:04 +03001080static struct array_cache **alloc_alien_cache(int node, int limit, gfp_t gfp)
Christoph Lametere498be72005-09-09 13:03:32 -07001081{
1082 struct array_cache **ac_ptr;
Christoph Lameter8ef82862007-02-20 13:57:52 -08001083 int memsize = sizeof(void *) * nr_node_ids;
Christoph Lametere498be72005-09-09 13:03:32 -07001084 int i;
1085
1086 if (limit > 1)
1087 limit = 12;
Haicheng Lif3186a92010-01-06 15:25:23 +08001088 ac_ptr = kzalloc_node(memsize, gfp, node);
Christoph Lametere498be72005-09-09 13:03:32 -07001089 if (ac_ptr) {
1090 for_each_node(i) {
Haicheng Lif3186a92010-01-06 15:25:23 +08001091 if (i == node || !node_online(i))
Christoph Lametere498be72005-09-09 13:03:32 -07001092 continue;
Pekka Enberg83b519e2009-06-10 19:40:04 +03001093 ac_ptr[i] = alloc_arraycache(node, limit, 0xbaadf00d, gfp);
Christoph Lametere498be72005-09-09 13:03:32 -07001094 if (!ac_ptr[i]) {
Akinobu Mitacc550de2007-11-14 16:58:35 -08001095 for (i--; i >= 0; i--)
Christoph Lametere498be72005-09-09 13:03:32 -07001096 kfree(ac_ptr[i]);
1097 kfree(ac_ptr);
1098 return NULL;
1099 }
1100 }
1101 }
1102 return ac_ptr;
1103}
1104
Pekka Enberg5295a742006-02-01 03:05:48 -08001105static void free_alien_cache(struct array_cache **ac_ptr)
Christoph Lametere498be72005-09-09 13:03:32 -07001106{
1107 int i;
1108
1109 if (!ac_ptr)
1110 return;
Christoph Lametere498be72005-09-09 13:03:32 -07001111 for_each_node(i)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001112 kfree(ac_ptr[i]);
Christoph Lametere498be72005-09-09 13:03:32 -07001113 kfree(ac_ptr);
1114}
1115
Pekka Enberg343e0d72006-02-01 03:05:50 -08001116static void __drain_alien_cache(struct kmem_cache *cachep,
Pekka Enberg5295a742006-02-01 03:05:48 -08001117 struct array_cache *ac, int node)
Christoph Lametere498be72005-09-09 13:03:32 -07001118{
1119 struct kmem_list3 *rl3 = cachep->nodelists[node];
1120
1121 if (ac->avail) {
1122 spin_lock(&rl3->list_lock);
Christoph Lametere00946f2006-03-25 03:06:45 -08001123 /*
1124 * Stuff objects into the remote nodes shared array first.
1125 * That way we could avoid the overhead of putting the objects
1126 * into the free lists and getting them back later.
1127 */
shin, jacob693f7d32006-04-28 10:54:37 -05001128 if (rl3->shared)
1129 transfer_objects(rl3->shared, ac, ac->limit);
Christoph Lametere00946f2006-03-25 03:06:45 -08001130
Christoph Lameterff694162005-09-22 21:44:02 -07001131 free_block(cachep, ac->entry, ac->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -07001132 ac->avail = 0;
1133 spin_unlock(&rl3->list_lock);
1134 }
1135}
1136
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001137/*
1138 * Called from cache_reap() to regularly drain alien caches round robin.
1139 */
1140static void reap_alien(struct kmem_cache *cachep, struct kmem_list3 *l3)
1141{
Christoph Lameter909ea962010-12-08 16:22:55 +01001142 int node = __this_cpu_read(slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001143
1144 if (l3->alien) {
1145 struct array_cache *ac = l3->alien[node];
Christoph Lametere00946f2006-03-25 03:06:45 -08001146
1147 if (ac && ac->avail && spin_trylock_irq(&ac->lock)) {
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001148 __drain_alien_cache(cachep, ac, node);
1149 spin_unlock_irq(&ac->lock);
1150 }
1151 }
1152}
1153
Andrew Mortona737b3e2006-03-22 00:08:11 -08001154static void drain_alien_cache(struct kmem_cache *cachep,
1155 struct array_cache **alien)
Christoph Lametere498be72005-09-09 13:03:32 -07001156{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001157 int i = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07001158 struct array_cache *ac;
1159 unsigned long flags;
1160
1161 for_each_online_node(i) {
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001162 ac = alien[i];
Christoph Lametere498be72005-09-09 13:03:32 -07001163 if (ac) {
1164 spin_lock_irqsave(&ac->lock, flags);
1165 __drain_alien_cache(cachep, ac, i);
1166 spin_unlock_irqrestore(&ac->lock, flags);
1167 }
1168 }
1169}
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001170
Ingo Molnar873623d2006-07-13 14:44:38 +02001171static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001172{
1173 struct slab *slabp = virt_to_slab(objp);
1174 int nodeid = slabp->nodeid;
1175 struct kmem_list3 *l3;
1176 struct array_cache *alien = NULL;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001177 int node;
1178
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07001179 node = numa_mem_id();
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001180
1181 /*
1182 * Make sure we are not freeing a object from another node to the array
1183 * cache on this cpu.
1184 */
Siddha, Suresh B62918a02007-05-02 19:27:18 +02001185 if (likely(slabp->nodeid == node))
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001186 return 0;
1187
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001188 l3 = cachep->nodelists[node];
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001189 STATS_INC_NODEFREES(cachep);
1190 if (l3->alien && l3->alien[nodeid]) {
1191 alien = l3->alien[nodeid];
Ingo Molnar873623d2006-07-13 14:44:38 +02001192 spin_lock(&alien->lock);
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001193 if (unlikely(alien->avail == alien->limit)) {
1194 STATS_INC_ACOVERFLOW(cachep);
1195 __drain_alien_cache(cachep, alien, nodeid);
1196 }
Mel Gorman072bb0a2012-07-31 16:43:58 -07001197 ac_put_obj(cachep, alien, objp);
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001198 spin_unlock(&alien->lock);
1199 } else {
1200 spin_lock(&(cachep->nodelists[nodeid])->list_lock);
1201 free_block(cachep, &objp, 1, nodeid);
1202 spin_unlock(&(cachep->nodelists[nodeid])->list_lock);
1203 }
1204 return 1;
1205}
Christoph Lametere498be72005-09-09 13:03:32 -07001206#endif
1207
David Rientjes8f9f8d92010-03-27 19:40:47 -07001208/*
1209 * Allocates and initializes nodelists for a node on each slab cache, used for
1210 * either memory or cpu hotplug. If memory is being hot-added, the kmem_list3
1211 * will be allocated off-node since memory is not yet online for the new node.
1212 * When hotplugging memory or a cpu, existing nodelists are not replaced if
1213 * already in use.
1214 *
Christoph Lameter18004c52012-07-06 15:25:12 -05001215 * Must hold slab_mutex.
David Rientjes8f9f8d92010-03-27 19:40:47 -07001216 */
1217static int init_cache_nodelists_node(int node)
1218{
1219 struct kmem_cache *cachep;
1220 struct kmem_list3 *l3;
1221 const int memsize = sizeof(struct kmem_list3);
1222
Christoph Lameter18004c52012-07-06 15:25:12 -05001223 list_for_each_entry(cachep, &slab_caches, list) {
David Rientjes8f9f8d92010-03-27 19:40:47 -07001224 /*
1225 * Set up the size64 kmemlist for cpu before we can
1226 * begin anything. Make sure some other cpu on this
1227 * node has not already allocated this
1228 */
1229 if (!cachep->nodelists[node]) {
1230 l3 = kmalloc_node(memsize, GFP_KERNEL, node);
1231 if (!l3)
1232 return -ENOMEM;
1233 kmem_list3_init(l3);
1234 l3->next_reap = jiffies + REAPTIMEOUT_LIST3 +
1235 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
1236
1237 /*
1238 * The l3s don't come and go as CPUs come and
Christoph Lameter18004c52012-07-06 15:25:12 -05001239 * go. slab_mutex is sufficient
David Rientjes8f9f8d92010-03-27 19:40:47 -07001240 * protection here.
1241 */
1242 cachep->nodelists[node] = l3;
1243 }
1244
1245 spin_lock_irq(&cachep->nodelists[node]->list_lock);
1246 cachep->nodelists[node]->free_limit =
1247 (1 + nr_cpus_node(node)) *
1248 cachep->batchcount + cachep->num;
1249 spin_unlock_irq(&cachep->nodelists[node]->list_lock);
1250 }
1251 return 0;
1252}
1253
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001254static void __cpuinit cpuup_canceled(long cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001255{
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001256 struct kmem_cache *cachep;
1257 struct kmem_list3 *l3 = NULL;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07001258 int node = cpu_to_mem(cpu);
Rusty Russella70f7302009-03-13 14:49:46 +10301259 const struct cpumask *mask = cpumask_of_node(node);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001260
Christoph Lameter18004c52012-07-06 15:25:12 -05001261 list_for_each_entry(cachep, &slab_caches, list) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001262 struct array_cache *nc;
1263 struct array_cache *shared;
1264 struct array_cache **alien;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001265
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001266 /* cpu is dead; no one can alloc from it. */
1267 nc = cachep->array[cpu];
1268 cachep->array[cpu] = NULL;
1269 l3 = cachep->nodelists[node];
1270
1271 if (!l3)
1272 goto free_array_cache;
1273
1274 spin_lock_irq(&l3->list_lock);
1275
1276 /* Free limit for this kmem_list3 */
1277 l3->free_limit -= cachep->batchcount;
1278 if (nc)
1279 free_block(cachep, nc->entry, nc->avail, node);
1280
Rusty Russell58463c12009-12-17 11:43:12 -06001281 if (!cpumask_empty(mask)) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001282 spin_unlock_irq(&l3->list_lock);
1283 goto free_array_cache;
1284 }
1285
1286 shared = l3->shared;
1287 if (shared) {
1288 free_block(cachep, shared->entry,
1289 shared->avail, node);
1290 l3->shared = NULL;
1291 }
1292
1293 alien = l3->alien;
1294 l3->alien = NULL;
1295
1296 spin_unlock_irq(&l3->list_lock);
1297
1298 kfree(shared);
1299 if (alien) {
1300 drain_alien_cache(cachep, alien);
1301 free_alien_cache(alien);
1302 }
1303free_array_cache:
1304 kfree(nc);
1305 }
1306 /*
1307 * In the previous loop, all the objects were freed to
1308 * the respective cache's slabs, now we can go ahead and
1309 * shrink each nodelist to its limit.
1310 */
Christoph Lameter18004c52012-07-06 15:25:12 -05001311 list_for_each_entry(cachep, &slab_caches, list) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001312 l3 = cachep->nodelists[node];
1313 if (!l3)
1314 continue;
1315 drain_freelist(cachep, l3, l3->free_objects);
1316 }
1317}
1318
1319static int __cpuinit cpuup_prepare(long cpu)
1320{
Pekka Enberg343e0d72006-02-01 03:05:50 -08001321 struct kmem_cache *cachep;
Christoph Lametere498be72005-09-09 13:03:32 -07001322 struct kmem_list3 *l3 = NULL;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07001323 int node = cpu_to_mem(cpu);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001324 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001325
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001326 /*
1327 * We need to do this right in the beginning since
1328 * alloc_arraycache's are going to use this list.
1329 * kmalloc_node allows us to add the slab to the right
1330 * kmem_list3 and not this cpu's kmem_list3
1331 */
David Rientjes8f9f8d92010-03-27 19:40:47 -07001332 err = init_cache_nodelists_node(node);
1333 if (err < 0)
1334 goto bad;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001335
1336 /*
1337 * Now we can go ahead with allocating the shared arrays and
1338 * array caches
1339 */
Christoph Lameter18004c52012-07-06 15:25:12 -05001340 list_for_each_entry(cachep, &slab_caches, list) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001341 struct array_cache *nc;
1342 struct array_cache *shared = NULL;
1343 struct array_cache **alien = NULL;
1344
1345 nc = alloc_arraycache(node, cachep->limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03001346 cachep->batchcount, GFP_KERNEL);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001347 if (!nc)
1348 goto bad;
1349 if (cachep->shared) {
1350 shared = alloc_arraycache(node,
1351 cachep->shared * cachep->batchcount,
Pekka Enberg83b519e2009-06-10 19:40:04 +03001352 0xbaadf00d, GFP_KERNEL);
Akinobu Mita12d00f62007-10-18 03:05:11 -07001353 if (!shared) {
1354 kfree(nc);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001355 goto bad;
Akinobu Mita12d00f62007-10-18 03:05:11 -07001356 }
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001357 }
1358 if (use_alien_caches) {
Pekka Enberg83b519e2009-06-10 19:40:04 +03001359 alien = alloc_alien_cache(node, cachep->limit, GFP_KERNEL);
Akinobu Mita12d00f62007-10-18 03:05:11 -07001360 if (!alien) {
1361 kfree(shared);
1362 kfree(nc);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001363 goto bad;
Akinobu Mita12d00f62007-10-18 03:05:11 -07001364 }
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001365 }
1366 cachep->array[cpu] = nc;
1367 l3 = cachep->nodelists[node];
1368 BUG_ON(!l3);
1369
1370 spin_lock_irq(&l3->list_lock);
1371 if (!l3->shared) {
1372 /*
1373 * We are serialised from CPU_DEAD or
1374 * CPU_UP_CANCELLED by the cpucontrol lock
1375 */
1376 l3->shared = shared;
1377 shared = NULL;
1378 }
1379#ifdef CONFIG_NUMA
1380 if (!l3->alien) {
1381 l3->alien = alien;
1382 alien = NULL;
1383 }
1384#endif
1385 spin_unlock_irq(&l3->list_lock);
1386 kfree(shared);
1387 free_alien_cache(alien);
Peter Zijlstra83835b32011-07-22 15:26:05 +02001388 if (cachep->flags & SLAB_DEBUG_OBJECTS)
1389 slab_set_debugobj_lock_classes_node(cachep, node);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001390 }
Pekka Enbergce79ddc2009-11-23 22:01:15 +02001391 init_node_lock_keys(node);
1392
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001393 return 0;
1394bad:
Akinobu Mita12d00f62007-10-18 03:05:11 -07001395 cpuup_canceled(cpu);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001396 return -ENOMEM;
1397}
1398
1399static int __cpuinit cpuup_callback(struct notifier_block *nfb,
1400 unsigned long action, void *hcpu)
1401{
1402 long cpu = (long)hcpu;
1403 int err = 0;
1404
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 switch (action) {
Heiko Carstens38c3bd92007-05-09 02:34:05 -07001406 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001407 case CPU_UP_PREPARE_FROZEN:
Christoph Lameter18004c52012-07-06 15:25:12 -05001408 mutex_lock(&slab_mutex);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001409 err = cpuup_prepare(cpu);
Christoph Lameter18004c52012-07-06 15:25:12 -05001410 mutex_unlock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 break;
1412 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001413 case CPU_ONLINE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 start_cpu_timer(cpu);
1415 break;
1416#ifdef CONFIG_HOTPLUG_CPU
Christoph Lameter5830c592007-05-09 02:34:22 -07001417 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001418 case CPU_DOWN_PREPARE_FROZEN:
Christoph Lameter5830c592007-05-09 02:34:22 -07001419 /*
Christoph Lameter18004c52012-07-06 15:25:12 -05001420 * Shutdown cache reaper. Note that the slab_mutex is
Christoph Lameter5830c592007-05-09 02:34:22 -07001421 * held so that if cache_reap() is invoked it cannot do
1422 * anything expensive but will only modify reap_work
1423 * and reschedule the timer.
1424 */
Tejun Heoafe2c512010-12-14 16:21:17 +01001425 cancel_delayed_work_sync(&per_cpu(slab_reap_work, cpu));
Christoph Lameter5830c592007-05-09 02:34:22 -07001426 /* Now the cache_reaper is guaranteed to be not running. */
Tejun Heo1871e522009-10-29 22:34:13 +09001427 per_cpu(slab_reap_work, cpu).work.func = NULL;
Christoph Lameter5830c592007-05-09 02:34:22 -07001428 break;
1429 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001430 case CPU_DOWN_FAILED_FROZEN:
Christoph Lameter5830c592007-05-09 02:34:22 -07001431 start_cpu_timer(cpu);
1432 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001434 case CPU_DEAD_FROZEN:
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001435 /*
1436 * Even if all the cpus of a node are down, we don't free the
1437 * kmem_list3 of any cache. This to avoid a race between
1438 * cpu_down, and a kmalloc allocation from another cpu for
1439 * memory from the node of the cpu going down. The list3
1440 * structure is usually allocated from kmem_cache_create() and
1441 * gets destroyed at kmem_cache_destroy().
1442 */
Simon Arlott183ff222007-10-20 01:27:18 +02001443 /* fall through */
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08001444#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001446 case CPU_UP_CANCELED_FROZEN:
Christoph Lameter18004c52012-07-06 15:25:12 -05001447 mutex_lock(&slab_mutex);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001448 cpuup_canceled(cpu);
Christoph Lameter18004c52012-07-06 15:25:12 -05001449 mutex_unlock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 }
Akinobu Mitaeac40682010-05-26 14:43:32 -07001452 return notifier_from_errno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453}
1454
Chandra Seetharaman74b85f32006-06-27 02:54:09 -07001455static struct notifier_block __cpuinitdata cpucache_notifier = {
1456 &cpuup_callback, NULL, 0
1457};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458
David Rientjes8f9f8d92010-03-27 19:40:47 -07001459#if defined(CONFIG_NUMA) && defined(CONFIG_MEMORY_HOTPLUG)
1460/*
1461 * Drains freelist for a node on each slab cache, used for memory hot-remove.
1462 * Returns -EBUSY if all objects cannot be drained so that the node is not
1463 * removed.
1464 *
Christoph Lameter18004c52012-07-06 15:25:12 -05001465 * Must hold slab_mutex.
David Rientjes8f9f8d92010-03-27 19:40:47 -07001466 */
1467static int __meminit drain_cache_nodelists_node(int node)
1468{
1469 struct kmem_cache *cachep;
1470 int ret = 0;
1471
Christoph Lameter18004c52012-07-06 15:25:12 -05001472 list_for_each_entry(cachep, &slab_caches, list) {
David Rientjes8f9f8d92010-03-27 19:40:47 -07001473 struct kmem_list3 *l3;
1474
1475 l3 = cachep->nodelists[node];
1476 if (!l3)
1477 continue;
1478
1479 drain_freelist(cachep, l3, l3->free_objects);
1480
1481 if (!list_empty(&l3->slabs_full) ||
1482 !list_empty(&l3->slabs_partial)) {
1483 ret = -EBUSY;
1484 break;
1485 }
1486 }
1487 return ret;
1488}
1489
1490static int __meminit slab_memory_callback(struct notifier_block *self,
1491 unsigned long action, void *arg)
1492{
1493 struct memory_notify *mnb = arg;
1494 int ret = 0;
1495 int nid;
1496
1497 nid = mnb->status_change_nid;
1498 if (nid < 0)
1499 goto out;
1500
1501 switch (action) {
1502 case MEM_GOING_ONLINE:
Christoph Lameter18004c52012-07-06 15:25:12 -05001503 mutex_lock(&slab_mutex);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001504 ret = init_cache_nodelists_node(nid);
Christoph Lameter18004c52012-07-06 15:25:12 -05001505 mutex_unlock(&slab_mutex);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001506 break;
1507 case MEM_GOING_OFFLINE:
Christoph Lameter18004c52012-07-06 15:25:12 -05001508 mutex_lock(&slab_mutex);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001509 ret = drain_cache_nodelists_node(nid);
Christoph Lameter18004c52012-07-06 15:25:12 -05001510 mutex_unlock(&slab_mutex);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001511 break;
1512 case MEM_ONLINE:
1513 case MEM_OFFLINE:
1514 case MEM_CANCEL_ONLINE:
1515 case MEM_CANCEL_OFFLINE:
1516 break;
1517 }
1518out:
Prarit Bhargava5fda1bd2011-03-22 16:30:49 -07001519 return notifier_from_errno(ret);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001520}
1521#endif /* CONFIG_NUMA && CONFIG_MEMORY_HOTPLUG */
1522
Christoph Lametere498be72005-09-09 13:03:32 -07001523/*
1524 * swap the static kmem_list3 with kmalloced memory
1525 */
David Rientjes8f9f8d92010-03-27 19:40:47 -07001526static void __init init_list(struct kmem_cache *cachep, struct kmem_list3 *list,
1527 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07001528{
1529 struct kmem_list3 *ptr;
1530
Pekka Enberg83b519e2009-06-10 19:40:04 +03001531 ptr = kmalloc_node(sizeof(struct kmem_list3), GFP_NOWAIT, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07001532 BUG_ON(!ptr);
1533
Christoph Lametere498be72005-09-09 13:03:32 -07001534 memcpy(ptr, list, sizeof(struct kmem_list3));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001535 /*
1536 * Do not assume that spinlocks can be initialized via memcpy:
1537 */
1538 spin_lock_init(&ptr->list_lock);
1539
Christoph Lametere498be72005-09-09 13:03:32 -07001540 MAKE_ALL_LISTS(cachep, ptr, nodeid);
1541 cachep->nodelists[nodeid] = ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001542}
1543
Andrew Mortona737b3e2006-03-22 00:08:11 -08001544/*
Pekka Enberg556a1692008-01-25 08:20:51 +02001545 * For setting up all the kmem_list3s for cache whose buffer_size is same as
1546 * size of kmem_list3.
1547 */
1548static void __init set_up_list3s(struct kmem_cache *cachep, int index)
1549{
1550 int node;
1551
1552 for_each_online_node(node) {
1553 cachep->nodelists[node] = &initkmem_list3[index + node];
1554 cachep->nodelists[node]->next_reap = jiffies +
1555 REAPTIMEOUT_LIST3 +
1556 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
1557 }
1558}
1559
1560/*
Christoph Lameter3c583462012-11-28 16:23:01 +00001561 * The memory after the last cpu cache pointer is used for the
1562 * the nodelists pointer.
1563 */
1564static void setup_nodelists_pointer(struct kmem_cache *cachep)
1565{
1566 cachep->nodelists = (struct kmem_list3 **)&cachep->array[nr_cpu_ids];
1567}
1568
1569/*
Andrew Mortona737b3e2006-03-22 00:08:11 -08001570 * Initialisation. Called after the page allocator have been initialised and
1571 * before smp_init().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 */
1573void __init kmem_cache_init(void)
1574{
1575 size_t left_over;
1576 struct cache_sizes *sizes;
1577 struct cache_names *names;
Christoph Lametere498be72005-09-09 13:03:32 -07001578 int i;
Jack Steiner07ed76b2006-03-07 21:55:46 -08001579 int order;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001580 int node;
Christoph Lametere498be72005-09-09 13:03:32 -07001581
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001582 kmem_cache = &kmem_cache_boot;
Christoph Lameter3c583462012-11-28 16:23:01 +00001583 setup_nodelists_pointer(kmem_cache);
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001584
Mel Gormanb6e68bc2009-06-16 15:32:16 -07001585 if (num_possible_nodes() == 1)
Siddha, Suresh B62918a02007-05-02 19:27:18 +02001586 use_alien_caches = 0;
1587
Christoph Lameter3c583462012-11-28 16:23:01 +00001588 for (i = 0; i < NUM_INIT_LISTS; i++)
Christoph Lametere498be72005-09-09 13:03:32 -07001589 kmem_list3_init(&initkmem_list3[i]);
Christoph Lameter3c583462012-11-28 16:23:01 +00001590
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001591 set_up_list3s(kmem_cache, CACHE_CACHE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592
1593 /*
1594 * Fragmentation resistance on low memory - only use bigger
David Rientjes3df1ccc2011-10-18 22:09:28 -07001595 * page orders on machines with more than 32MB of memory if
1596 * not overridden on the command line.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 */
David Rientjes3df1ccc2011-10-18 22:09:28 -07001598 if (!slab_max_order_set && totalram_pages > (32 << 20) >> PAGE_SHIFT)
David Rientjes543585c2011-10-18 22:09:24 -07001599 slab_max_order = SLAB_MAX_ORDER_HI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 /* Bootstrap is tricky, because several objects are allocated
1602 * from caches that do not exist yet:
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001603 * 1) initialize the kmem_cache cache: it contains the struct
1604 * kmem_cache structures of all caches, except kmem_cache itself:
1605 * kmem_cache is statically allocated.
Christoph Lametere498be72005-09-09 13:03:32 -07001606 * Initially an __init data area is used for the head array and the
1607 * kmem_list3 structures, it's replaced with a kmalloc allocated
1608 * array at the end of the bootstrap.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609 * 2) Create the first kmalloc cache.
Pekka Enberg343e0d72006-02-01 03:05:50 -08001610 * The struct kmem_cache for the new cache is allocated normally.
Christoph Lametere498be72005-09-09 13:03:32 -07001611 * An __init data area is used for the head array.
1612 * 3) Create the remaining kmalloc caches, with minimally sized
1613 * head arrays.
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001614 * 4) Replace the __init data head arrays for kmem_cache and the first
Linus Torvalds1da177e2005-04-16 15:20:36 -07001615 * kmalloc cache with kmalloc allocated arrays.
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001616 * 5) Replace the __init data for kmem_list3 for kmem_cache and
Christoph Lametere498be72005-09-09 13:03:32 -07001617 * the other cache's with kmalloc allocated memory.
1618 * 6) Resize the head arrays of the kmalloc caches to their final sizes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619 */
1620
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07001621 node = numa_mem_id();
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001622
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001623 /* 1) create the kmem_cache */
Christoph Lameter18004c52012-07-06 15:25:12 -05001624 INIT_LIST_HEAD(&slab_caches);
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001625 list_add(&kmem_cache->list, &slab_caches);
1626 kmem_cache->colour_off = cache_line_size();
1627 kmem_cache->array[smp_processor_id()] = &initarray_cache.cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628
Eric Dumazet8da34302007-05-06 14:49:29 -07001629 /*
Eric Dumazetb56efcf2011-07-20 19:04:23 +02001630 * struct kmem_cache size depends on nr_node_ids & nr_cpu_ids
Eric Dumazet8da34302007-05-06 14:49:29 -07001631 */
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001632 kmem_cache->size = offsetof(struct kmem_cache, array[nr_cpu_ids]) +
Eric Dumazetb56efcf2011-07-20 19:04:23 +02001633 nr_node_ids * sizeof(struct kmem_list3 *);
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001634 kmem_cache->object_size = kmem_cache->size;
1635 kmem_cache->size = ALIGN(kmem_cache->object_size,
Andrew Mortona737b3e2006-03-22 00:08:11 -08001636 cache_line_size());
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001637 kmem_cache->reciprocal_buffer_size =
1638 reciprocal_value(kmem_cache->size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639
Jack Steiner07ed76b2006-03-07 21:55:46 -08001640 for (order = 0; order < MAX_ORDER; order++) {
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001641 cache_estimate(order, kmem_cache->size,
1642 cache_line_size(), 0, &left_over, &kmem_cache->num);
1643 if (kmem_cache->num)
Jack Steiner07ed76b2006-03-07 21:55:46 -08001644 break;
1645 }
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001646 BUG_ON(!kmem_cache->num);
1647 kmem_cache->gfporder = order;
1648 kmem_cache->colour = left_over / kmem_cache->colour_off;
1649 kmem_cache->slab_size = ALIGN(kmem_cache->num * sizeof(kmem_bufctl_t) +
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001650 sizeof(struct slab), cache_line_size());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651
1652 /* 2+3) create the kmalloc caches */
1653 sizes = malloc_sizes;
1654 names = cache_names;
1655
Andrew Mortona737b3e2006-03-22 00:08:11 -08001656 /*
1657 * Initialize the caches that provide memory for the array cache and the
1658 * kmem_list3 structures first. Without this, further allocations will
1659 * bug.
Christoph Lametere498be72005-09-09 13:03:32 -07001660 */
1661
Christoph Lameter278b1bb2012-09-05 00:20:34 +00001662 sizes[INDEX_AC].cs_cachep = kmem_cache_zalloc(kmem_cache, GFP_NOWAIT);
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00001663 sizes[INDEX_AC].cs_cachep->name = names[INDEX_AC].name;
1664 sizes[INDEX_AC].cs_cachep->size = sizes[INDEX_AC].cs_size;
1665 sizes[INDEX_AC].cs_cachep->object_size = sizes[INDEX_AC].cs_size;
1666 sizes[INDEX_AC].cs_cachep->align = ARCH_KMALLOC_MINALIGN;
1667 __kmem_cache_create(sizes[INDEX_AC].cs_cachep, ARCH_KMALLOC_FLAGS|SLAB_PANIC);
Christoph Lameter7c9adf52012-09-04 23:38:33 +00001668 list_add(&sizes[INDEX_AC].cs_cachep->list, &slab_caches);
Christoph Lametere498be72005-09-09 13:03:32 -07001669
Andrew Mortona737b3e2006-03-22 00:08:11 -08001670 if (INDEX_AC != INDEX_L3) {
Christoph Lameter278b1bb2012-09-05 00:20:34 +00001671 sizes[INDEX_L3].cs_cachep = kmem_cache_zalloc(kmem_cache, GFP_NOWAIT);
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00001672 sizes[INDEX_L3].cs_cachep->name = names[INDEX_L3].name;
1673 sizes[INDEX_L3].cs_cachep->size = sizes[INDEX_L3].cs_size;
1674 sizes[INDEX_L3].cs_cachep->object_size = sizes[INDEX_L3].cs_size;
1675 sizes[INDEX_L3].cs_cachep->align = ARCH_KMALLOC_MINALIGN;
1676 __kmem_cache_create(sizes[INDEX_L3].cs_cachep, ARCH_KMALLOC_FLAGS|SLAB_PANIC);
Christoph Lameter7c9adf52012-09-04 23:38:33 +00001677 list_add(&sizes[INDEX_L3].cs_cachep->list, &slab_caches);
Andrew Mortona737b3e2006-03-22 00:08:11 -08001678 }
Christoph Lametere498be72005-09-09 13:03:32 -07001679
Ingo Molnare0a42722006-06-23 02:03:46 -07001680 slab_early_init = 0;
1681
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 while (sizes->cs_size != ULONG_MAX) {
Christoph Lametere498be72005-09-09 13:03:32 -07001683 /*
1684 * For performance, all the general caches are L1 aligned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 * This should be particularly beneficial on SMP boxes, as it
1686 * eliminates "false sharing".
1687 * Note for systems short on memory removing the alignment will
Christoph Lametere498be72005-09-09 13:03:32 -07001688 * allow tighter packing of the smaller caches.
1689 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08001690 if (!sizes->cs_cachep) {
Christoph Lameter278b1bb2012-09-05 00:20:34 +00001691 sizes->cs_cachep = kmem_cache_zalloc(kmem_cache, GFP_NOWAIT);
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00001692 sizes->cs_cachep->name = names->name;
1693 sizes->cs_cachep->size = sizes->cs_size;
1694 sizes->cs_cachep->object_size = sizes->cs_size;
1695 sizes->cs_cachep->align = ARCH_KMALLOC_MINALIGN;
1696 __kmem_cache_create(sizes->cs_cachep, ARCH_KMALLOC_FLAGS|SLAB_PANIC);
Christoph Lameter7c9adf52012-09-04 23:38:33 +00001697 list_add(&sizes->cs_cachep->list, &slab_caches);
Andrew Mortona737b3e2006-03-22 00:08:11 -08001698 }
Christoph Lameter4b51d662007-02-10 01:43:10 -08001699#ifdef CONFIG_ZONE_DMA
Christoph Lameter278b1bb2012-09-05 00:20:34 +00001700 sizes->cs_dmacachep = kmem_cache_zalloc(kmem_cache, GFP_NOWAIT);
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00001701 sizes->cs_dmacachep->name = names->name_dma;
1702 sizes->cs_dmacachep->size = sizes->cs_size;
1703 sizes->cs_dmacachep->object_size = sizes->cs_size;
1704 sizes->cs_dmacachep->align = ARCH_KMALLOC_MINALIGN;
Christoph Lameter278b1bb2012-09-05 00:20:34 +00001705 __kmem_cache_create(sizes->cs_dmacachep,
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00001706 ARCH_KMALLOC_FLAGS|SLAB_CACHE_DMA| SLAB_PANIC);
Christoph Lameter7c9adf52012-09-04 23:38:33 +00001707 list_add(&sizes->cs_dmacachep->list, &slab_caches);
Christoph Lameter4b51d662007-02-10 01:43:10 -08001708#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709 sizes++;
1710 names++;
1711 }
1712 /* 4) Replace the bootstrap head arrays */
1713 {
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001714 struct array_cache *ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001715
Pekka Enberg83b519e2009-06-10 19:40:04 +03001716 ptr = kmalloc(sizeof(struct arraycache_init), GFP_NOWAIT);
Christoph Lametere498be72005-09-09 13:03:32 -07001717
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001718 BUG_ON(cpu_cache_get(kmem_cache) != &initarray_cache.cache);
1719 memcpy(ptr, cpu_cache_get(kmem_cache),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001720 sizeof(struct arraycache_init));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001721 /*
1722 * Do not assume that spinlocks can be initialized via memcpy:
1723 */
1724 spin_lock_init(&ptr->lock);
1725
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001726 kmem_cache->array[smp_processor_id()] = ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001727
Pekka Enberg83b519e2009-06-10 19:40:04 +03001728 ptr = kmalloc(sizeof(struct arraycache_init), GFP_NOWAIT);
Christoph Lametere498be72005-09-09 13:03:32 -07001729
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001730 BUG_ON(cpu_cache_get(malloc_sizes[INDEX_AC].cs_cachep)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001731 != &initarray_generic.cache);
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001732 memcpy(ptr, cpu_cache_get(malloc_sizes[INDEX_AC].cs_cachep),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001733 sizeof(struct arraycache_init));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001734 /*
1735 * Do not assume that spinlocks can be initialized via memcpy:
1736 */
1737 spin_lock_init(&ptr->lock);
1738
Christoph Lametere498be72005-09-09 13:03:32 -07001739 malloc_sizes[INDEX_AC].cs_cachep->array[smp_processor_id()] =
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001740 ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 }
Christoph Lametere498be72005-09-09 13:03:32 -07001742 /* 5) Replace the bootstrap kmem_list3's */
1743 {
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001744 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745
Mel Gorman9c09a952008-01-24 05:49:54 -08001746 for_each_online_node(nid) {
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001747 init_list(kmem_cache, &initkmem_list3[CACHE_CACHE + nid], nid);
Pekka Enberg556a1692008-01-25 08:20:51 +02001748
Christoph Lametere498be72005-09-09 13:03:32 -07001749 init_list(malloc_sizes[INDEX_AC].cs_cachep,
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001750 &initkmem_list3[SIZE_AC + nid], nid);
Christoph Lametere498be72005-09-09 13:03:32 -07001751
1752 if (INDEX_AC != INDEX_L3) {
1753 init_list(malloc_sizes[INDEX_L3].cs_cachep,
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001754 &initkmem_list3[SIZE_L3 + nid], nid);
Christoph Lametere498be72005-09-09 13:03:32 -07001755 }
1756 }
1757 }
1758
Christoph Lameter97d06602012-07-06 15:25:11 -05001759 slab_state = UP;
Pekka Enberg8429db52009-06-12 15:58:59 +03001760}
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -07001761
Pekka Enberg8429db52009-06-12 15:58:59 +03001762void __init kmem_cache_init_late(void)
1763{
1764 struct kmem_cache *cachep;
1765
Christoph Lameter97d06602012-07-06 15:25:11 -05001766 slab_state = UP;
Peter Zijlstra52cef182011-11-28 21:12:40 +01001767
Pekka Enberg8429db52009-06-12 15:58:59 +03001768 /* 6) resize the head arrays to their final sizes */
Christoph Lameter18004c52012-07-06 15:25:12 -05001769 mutex_lock(&slab_mutex);
1770 list_for_each_entry(cachep, &slab_caches, list)
Pekka Enberg8429db52009-06-12 15:58:59 +03001771 if (enable_cpucache(cachep, GFP_NOWAIT))
1772 BUG();
Christoph Lameter18004c52012-07-06 15:25:12 -05001773 mutex_unlock(&slab_mutex);
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -07001774
Michael Wang947ca182012-09-05 10:33:18 +08001775 /* Annotate slab for lockdep -- annotate the malloc caches */
1776 init_lock_keys();
1777
Christoph Lameter97d06602012-07-06 15:25:11 -05001778 /* Done! */
1779 slab_state = FULL;
1780
Andrew Mortona737b3e2006-03-22 00:08:11 -08001781 /*
1782 * Register a cpu startup notifier callback that initializes
1783 * cpu_cache_get for all new cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 */
1785 register_cpu_notifier(&cpucache_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786
David Rientjes8f9f8d92010-03-27 19:40:47 -07001787#ifdef CONFIG_NUMA
1788 /*
1789 * Register a memory hotplug callback that initializes and frees
1790 * nodelists.
1791 */
1792 hotplug_memory_notifier(slab_memory_callback, SLAB_CALLBACK_PRI);
1793#endif
1794
Andrew Mortona737b3e2006-03-22 00:08:11 -08001795 /*
1796 * The reap timers are started later, with a module init call: That part
1797 * of the kernel is not yet operational.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 */
1799}
1800
1801static int __init cpucache_init(void)
1802{
1803 int cpu;
1804
Andrew Mortona737b3e2006-03-22 00:08:11 -08001805 /*
1806 * Register the timers that return unneeded pages to the page allocator
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 */
Christoph Lametere498be72005-09-09 13:03:32 -07001808 for_each_online_cpu(cpu)
Andrew Mortona737b3e2006-03-22 00:08:11 -08001809 start_cpu_timer(cpu);
Glauber Costaa164f8962012-06-21 00:59:18 +04001810
1811 /* Done! */
Christoph Lameter97d06602012-07-06 15:25:11 -05001812 slab_state = FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001813 return 0;
1814}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001815__initcall(cpucache_init);
1816
Rafael Aquini8bdec192012-03-09 17:27:27 -03001817static noinline void
1818slab_out_of_memory(struct kmem_cache *cachep, gfp_t gfpflags, int nodeid)
1819{
1820 struct kmem_list3 *l3;
1821 struct slab *slabp;
1822 unsigned long flags;
1823 int node;
1824
1825 printk(KERN_WARNING
1826 "SLAB: Unable to allocate memory on node %d (gfp=0x%x)\n",
1827 nodeid, gfpflags);
1828 printk(KERN_WARNING " cache: %s, object size: %d, order: %d\n",
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05001829 cachep->name, cachep->size, cachep->gfporder);
Rafael Aquini8bdec192012-03-09 17:27:27 -03001830
1831 for_each_online_node(node) {
1832 unsigned long active_objs = 0, num_objs = 0, free_objects = 0;
1833 unsigned long active_slabs = 0, num_slabs = 0;
1834
1835 l3 = cachep->nodelists[node];
1836 if (!l3)
1837 continue;
1838
1839 spin_lock_irqsave(&l3->list_lock, flags);
1840 list_for_each_entry(slabp, &l3->slabs_full, list) {
1841 active_objs += cachep->num;
1842 active_slabs++;
1843 }
1844 list_for_each_entry(slabp, &l3->slabs_partial, list) {
1845 active_objs += slabp->inuse;
1846 active_slabs++;
1847 }
1848 list_for_each_entry(slabp, &l3->slabs_free, list)
1849 num_slabs++;
1850
1851 free_objects += l3->free_objects;
1852 spin_unlock_irqrestore(&l3->list_lock, flags);
1853
1854 num_slabs += active_slabs;
1855 num_objs = num_slabs * cachep->num;
1856 printk(KERN_WARNING
1857 " node %d: slabs: %ld/%ld, objs: %ld/%ld, free: %ld\n",
1858 node, active_slabs, num_slabs, active_objs, num_objs,
1859 free_objects);
1860 }
1861}
1862
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863/*
1864 * Interface to system's page allocator. No need to hold the cache-lock.
1865 *
1866 * If we requested dmaable memory, we will get it. Even if we
1867 * did not request dmaable memory, we might get it, but that
1868 * would be relatively rare and ignorable.
1869 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001870static void *kmem_getpages(struct kmem_cache *cachep, gfp_t flags, int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871{
1872 struct page *page;
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001873 int nr_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874 int i;
1875
Luke Yangd6fef9d2006-04-10 22:52:56 -07001876#ifndef CONFIG_MMU
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001877 /*
1878 * Nommu uses slab's for process anonymous memory allocations, and thus
1879 * requires __GFP_COMP to properly refcount higher order allocations
Luke Yangd6fef9d2006-04-10 22:52:56 -07001880 */
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001881 flags |= __GFP_COMP;
Luke Yangd6fef9d2006-04-10 22:52:56 -07001882#endif
Christoph Lameter765c4502006-09-27 01:50:08 -07001883
Glauber Costaa618e892012-06-14 16:17:21 +04001884 flags |= cachep->allocflags;
Mel Gormane12ba742007-10-16 01:25:52 -07001885 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1886 flags |= __GFP_RECLAIMABLE;
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001887
Linus Torvalds517d0862009-06-16 19:50:13 -07001888 page = alloc_pages_exact_node(nodeid, flags | __GFP_NOTRACK, cachep->gfporder);
Rafael Aquini8bdec192012-03-09 17:27:27 -03001889 if (!page) {
1890 if (!(flags & __GFP_NOWARN) && printk_ratelimit())
1891 slab_out_of_memory(cachep, flags, nodeid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 return NULL;
Rafael Aquini8bdec192012-03-09 17:27:27 -03001893 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894
Mel Gormanb37f1dd2012-07-31 16:44:03 -07001895 /* Record if ALLOC_NO_WATERMARKS was set when allocating the slab */
Mel Gorman072bb0a2012-07-31 16:43:58 -07001896 if (unlikely(page->pfmemalloc))
1897 pfmemalloc_active = true;
1898
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001899 nr_pages = (1 << cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001900 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
Christoph Lameter972d1a72006-09-25 23:31:51 -07001901 add_zone_page_state(page_zone(page),
1902 NR_SLAB_RECLAIMABLE, nr_pages);
1903 else
1904 add_zone_page_state(page_zone(page),
1905 NR_SLAB_UNRECLAIMABLE, nr_pages);
Mel Gorman072bb0a2012-07-31 16:43:58 -07001906 for (i = 0; i < nr_pages; i++) {
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001907 __SetPageSlab(page + i);
Pekka Enbergc175eea2008-05-09 20:35:53 +02001908
Mel Gorman072bb0a2012-07-31 16:43:58 -07001909 if (page->pfmemalloc)
1910 SetPageSlabPfmemalloc(page + i);
1911 }
1912
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001913 if (kmemcheck_enabled && !(cachep->flags & SLAB_NOTRACK)) {
1914 kmemcheck_alloc_shadow(page, cachep->gfporder, flags, nodeid);
1915
1916 if (cachep->ctor)
1917 kmemcheck_mark_uninitialized_pages(page, nr_pages);
1918 else
1919 kmemcheck_mark_unallocated_pages(page, nr_pages);
1920 }
Pekka Enbergc175eea2008-05-09 20:35:53 +02001921
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001922 return page_address(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923}
1924
1925/*
1926 * Interface to system's page release.
1927 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001928static void kmem_freepages(struct kmem_cache *cachep, void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001929{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001930 unsigned long i = (1 << cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 struct page *page = virt_to_page(addr);
1932 const unsigned long nr_freed = i;
1933
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001934 kmemcheck_free_shadow(page, cachep->gfporder);
Pekka Enbergc175eea2008-05-09 20:35:53 +02001935
Christoph Lameter972d1a72006-09-25 23:31:51 -07001936 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1937 sub_zone_page_state(page_zone(page),
1938 NR_SLAB_RECLAIMABLE, nr_freed);
1939 else
1940 sub_zone_page_state(page_zone(page),
1941 NR_SLAB_UNRECLAIMABLE, nr_freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942 while (i--) {
Nick Pigginf205b2f2006-03-22 00:08:02 -08001943 BUG_ON(!PageSlab(page));
Mel Gorman072bb0a2012-07-31 16:43:58 -07001944 __ClearPageSlabPfmemalloc(page);
Nick Pigginf205b2f2006-03-22 00:08:02 -08001945 __ClearPageSlab(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 page++;
1947 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001948 if (current->reclaim_state)
1949 current->reclaim_state->reclaimed_slab += nr_freed;
1950 free_pages((unsigned long)addr, cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951}
1952
1953static void kmem_rcu_free(struct rcu_head *head)
1954{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001955 struct slab_rcu *slab_rcu = (struct slab_rcu *)head;
Pekka Enberg343e0d72006-02-01 03:05:50 -08001956 struct kmem_cache *cachep = slab_rcu->cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957
1958 kmem_freepages(cachep, slab_rcu->addr);
1959 if (OFF_SLAB(cachep))
1960 kmem_cache_free(cachep->slabp_cache, slab_rcu);
1961}
1962
1963#if DEBUG
1964
1965#ifdef CONFIG_DEBUG_PAGEALLOC
Pekka Enberg343e0d72006-02-01 03:05:50 -08001966static void store_stackinfo(struct kmem_cache *cachep, unsigned long *addr,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001967 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968{
Christoph Lameter8c138bc2012-06-13 10:24:58 -05001969 int size = cachep->object_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001970
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001971 addr = (unsigned long *)&((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001973 if (size < 5 * sizeof(unsigned long))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001974 return;
1975
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001976 *addr++ = 0x12345678;
1977 *addr++ = caller;
1978 *addr++ = smp_processor_id();
1979 size -= 3 * sizeof(unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 {
1981 unsigned long *sptr = &caller;
1982 unsigned long svalue;
1983
1984 while (!kstack_end(sptr)) {
1985 svalue = *sptr++;
1986 if (kernel_text_address(svalue)) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001987 *addr++ = svalue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 size -= sizeof(unsigned long);
1989 if (size <= sizeof(unsigned long))
1990 break;
1991 }
1992 }
1993
1994 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001995 *addr++ = 0x87654321;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996}
1997#endif
1998
Pekka Enberg343e0d72006-02-01 03:05:50 -08001999static void poison_obj(struct kmem_cache *cachep, void *addr, unsigned char val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000{
Christoph Lameter8c138bc2012-06-13 10:24:58 -05002001 int size = cachep->object_size;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002002 addr = &((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003
2004 memset(addr, val, size);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002005 *(unsigned char *)(addr + size - 1) = POISON_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002006}
2007
2008static void dump_line(char *data, int offset, int limit)
2009{
2010 int i;
Dave Jonesaa83aa42006-09-29 01:59:51 -07002011 unsigned char error = 0;
2012 int bad_count = 0;
2013
Sebastian Andrzej Siewiorfdde6ab2011-07-29 18:22:13 +02002014 printk(KERN_ERR "%03x: ", offset);
Dave Jonesaa83aa42006-09-29 01:59:51 -07002015 for (i = 0; i < limit; i++) {
2016 if (data[offset + i] != POISON_FREE) {
2017 error = data[offset + i];
2018 bad_count++;
2019 }
Dave Jonesaa83aa42006-09-29 01:59:51 -07002020 }
Sebastian Andrzej Siewiorfdde6ab2011-07-29 18:22:13 +02002021 print_hex_dump(KERN_CONT, "", 0, 16, 1,
2022 &data[offset], limit, 1);
Dave Jonesaa83aa42006-09-29 01:59:51 -07002023
2024 if (bad_count == 1) {
2025 error ^= POISON_FREE;
2026 if (!(error & (error - 1))) {
2027 printk(KERN_ERR "Single bit error detected. Probably "
2028 "bad RAM.\n");
2029#ifdef CONFIG_X86
2030 printk(KERN_ERR "Run memtest86+ or a similar memory "
2031 "test tool.\n");
2032#else
2033 printk(KERN_ERR "Run a memory test tool.\n");
2034#endif
2035 }
2036 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037}
2038#endif
2039
2040#if DEBUG
2041
Pekka Enberg343e0d72006-02-01 03:05:50 -08002042static void print_objinfo(struct kmem_cache *cachep, void *objp, int lines)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043{
2044 int i, size;
2045 char *realobj;
2046
2047 if (cachep->flags & SLAB_RED_ZONE) {
David Woodhouseb46b8f12007-05-08 00:22:59 -07002048 printk(KERN_ERR "Redzone: 0x%llx/0x%llx.\n",
Andrew Mortona737b3e2006-03-22 00:08:11 -08002049 *dbg_redzone1(cachep, objp),
2050 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002051 }
2052
2053 if (cachep->flags & SLAB_STORE_USER) {
2054 printk(KERN_ERR "Last user: [<%p>]",
Andrew Mortona737b3e2006-03-22 00:08:11 -08002055 *dbg_userword(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 print_symbol("(%s)",
Andrew Mortona737b3e2006-03-22 00:08:11 -08002057 (unsigned long)*dbg_userword(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002058 printk("\n");
2059 }
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002060 realobj = (char *)objp + obj_offset(cachep);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05002061 size = cachep->object_size;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002062 for (i = 0; i < size && lines; i += 16, lines--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 int limit;
2064 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002065 if (i + limit > size)
2066 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 dump_line(realobj, i, limit);
2068 }
2069}
2070
Pekka Enberg343e0d72006-02-01 03:05:50 -08002071static void check_poison_obj(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072{
2073 char *realobj;
2074 int size, i;
2075 int lines = 0;
2076
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002077 realobj = (char *)objp + obj_offset(cachep);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05002078 size = cachep->object_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002080 for (i = 0; i < size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 char exp = POISON_FREE;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002082 if (i == size - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 exp = POISON_END;
2084 if (realobj[i] != exp) {
2085 int limit;
2086 /* Mismatch ! */
2087 /* Print header */
2088 if (lines == 0) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002089 printk(KERN_ERR
Dave Jonesface37f2011-11-15 15:03:52 -08002090 "Slab corruption (%s): %s start=%p, len=%d\n",
2091 print_tainted(), cachep->name, realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002092 print_objinfo(cachep, objp, 0);
2093 }
2094 /* Hexdump the affected line */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002095 i = (i / 16) * 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002097 if (i + limit > size)
2098 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 dump_line(realobj, i, limit);
2100 i += 16;
2101 lines++;
2102 /* Limit to 5 lines */
2103 if (lines > 5)
2104 break;
2105 }
2106 }
2107 if (lines != 0) {
2108 /* Print some data about the neighboring objects, if they
2109 * exist:
2110 */
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -08002111 struct slab *slabp = virt_to_slab(objp);
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002112 unsigned int objnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002114 objnr = obj_to_index(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002115 if (objnr) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002116 objp = index_to_obj(cachep, slabp, objnr - 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002117 realobj = (char *)objp + obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118 printk(KERN_ERR "Prev obj: start=%p, len=%d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002119 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002120 print_objinfo(cachep, objp, 2);
2121 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002122 if (objnr + 1 < cachep->num) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002123 objp = index_to_obj(cachep, slabp, objnr + 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002124 realobj = (char *)objp + obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125 printk(KERN_ERR "Next obj: start=%p, len=%d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002126 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002127 print_objinfo(cachep, objp, 2);
2128 }
2129 }
2130}
2131#endif
2132
Linus Torvalds1da177e2005-04-16 15:20:36 -07002133#if DEBUG
Rabin Vincente79aec22008-07-04 00:40:32 +05302134static void slab_destroy_debugcheck(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002135{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 int i;
2137 for (i = 0; i < cachep->num; i++) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002138 void *objp = index_to_obj(cachep, slabp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139
2140 if (cachep->flags & SLAB_POISON) {
2141#ifdef CONFIG_DEBUG_PAGEALLOC
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002142 if (cachep->size % PAGE_SIZE == 0 &&
Andrew Mortona737b3e2006-03-22 00:08:11 -08002143 OFF_SLAB(cachep))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002144 kernel_map_pages(virt_to_page(objp),
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002145 cachep->size / PAGE_SIZE, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 else
2147 check_poison_obj(cachep, objp);
2148#else
2149 check_poison_obj(cachep, objp);
2150#endif
2151 }
2152 if (cachep->flags & SLAB_RED_ZONE) {
2153 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
2154 slab_error(cachep, "start of a freed object "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002155 "was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002156 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
2157 slab_error(cachep, "end of a freed object "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002158 "was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002160 }
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002161}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162#else
Rabin Vincente79aec22008-07-04 00:40:32 +05302163static void slab_destroy_debugcheck(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002164{
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002165}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166#endif
2167
Randy Dunlap911851e2006-03-22 00:08:14 -08002168/**
2169 * slab_destroy - destroy and release all objects in a slab
2170 * @cachep: cache pointer being destroyed
2171 * @slabp: slab pointer being destroyed
2172 *
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002173 * Destroy all the objs in a slab, and release the mem back to the system.
Andrew Mortona737b3e2006-03-22 00:08:11 -08002174 * Before calling the slab must have been unlinked from the cache. The
2175 * cache-lock is not held/needed.
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002176 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002177static void slab_destroy(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002178{
2179 void *addr = slabp->s_mem - slabp->colouroff;
2180
Rabin Vincente79aec22008-07-04 00:40:32 +05302181 slab_destroy_debugcheck(cachep, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002182 if (unlikely(cachep->flags & SLAB_DESTROY_BY_RCU)) {
2183 struct slab_rcu *slab_rcu;
2184
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002185 slab_rcu = (struct slab_rcu *)slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002186 slab_rcu->cachep = cachep;
2187 slab_rcu->addr = addr;
2188 call_rcu(&slab_rcu->head, kmem_rcu_free);
2189 } else {
2190 kmem_freepages(cachep, addr);
Ingo Molnar873623d2006-07-13 14:44:38 +02002191 if (OFF_SLAB(cachep))
2192 kmem_cache_free(cachep->slabp_cache, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 }
2194}
2195
2196/**
Randy.Dunlapa70773d2006-02-01 03:05:52 -08002197 * calculate_slab_order - calculate size (page order) of slabs
2198 * @cachep: pointer to the cache that is being created
2199 * @size: size of objects to be created in this cache.
2200 * @align: required alignment for the objects.
2201 * @flags: slab allocation flags
2202 *
2203 * Also calculates the number of objects per slab.
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002204 *
2205 * This could be made much more intelligent. For now, try to avoid using
2206 * high order pages for slabs. When the gfp() functions are more friendly
2207 * towards high-order requests, this should be changed.
2208 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002209static size_t calculate_slab_order(struct kmem_cache *cachep,
Randy Dunlapee13d782006-02-01 03:05:53 -08002210 size_t size, size_t align, unsigned long flags)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002211{
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02002212 unsigned long offslab_limit;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002213 size_t left_over = 0;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002214 int gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002215
Christoph Lameter0aa817f2007-05-16 22:11:01 -07002216 for (gfporder = 0; gfporder <= KMALLOC_MAX_ORDER; gfporder++) {
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002217 unsigned int num;
2218 size_t remainder;
2219
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002220 cache_estimate(gfporder, size, align, flags, &remainder, &num);
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002221 if (!num)
2222 continue;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002223
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02002224 if (flags & CFLGS_OFF_SLAB) {
2225 /*
2226 * Max number of objs-per-slab for caches which
2227 * use off-slab slabs. Needed to avoid a possible
2228 * looping condition in cache_grow().
2229 */
2230 offslab_limit = size - sizeof(struct slab);
2231 offslab_limit /= sizeof(kmem_bufctl_t);
2232
2233 if (num > offslab_limit)
2234 break;
2235 }
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002236
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002237 /* Found something acceptable - save it away */
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002238 cachep->num = num;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002239 cachep->gfporder = gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002240 left_over = remainder;
2241
2242 /*
Linus Torvaldsf78bb8a2006-03-08 10:33:05 -08002243 * A VFS-reclaimable slab tends to have most allocations
2244 * as GFP_NOFS and we really don't want to have to be allocating
2245 * higher-order pages when we are unable to shrink dcache.
2246 */
2247 if (flags & SLAB_RECLAIM_ACCOUNT)
2248 break;
2249
2250 /*
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002251 * Large number of objects is good, but very large slabs are
2252 * currently bad for the gfp()s.
2253 */
David Rientjes543585c2011-10-18 22:09:24 -07002254 if (gfporder >= slab_max_order)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002255 break;
2256
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002257 /*
2258 * Acceptable internal fragmentation?
2259 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002260 if (left_over * 8 <= (PAGE_SIZE << gfporder))
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002261 break;
2262 }
2263 return left_over;
2264}
2265
Pekka Enberg83b519e2009-06-10 19:40:04 +03002266static int __init_refok setup_cpu_cache(struct kmem_cache *cachep, gfp_t gfp)
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002267{
Christoph Lameter97d06602012-07-06 15:25:11 -05002268 if (slab_state >= FULL)
Pekka Enberg83b519e2009-06-10 19:40:04 +03002269 return enable_cpucache(cachep, gfp);
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002270
Christoph Lameter97d06602012-07-06 15:25:11 -05002271 if (slab_state == DOWN) {
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002272 /*
2273 * Note: the first kmem_cache_create must create the cache
2274 * that's used by kmalloc(24), otherwise the creation of
2275 * further caches will BUG().
2276 */
2277 cachep->array[smp_processor_id()] = &initarray_generic.cache;
2278
2279 /*
2280 * If the cache that's used by kmalloc(sizeof(kmem_list3)) is
2281 * the first cache, then we need to set up all its list3s,
2282 * otherwise the creation of further caches will BUG().
2283 */
2284 set_up_list3s(cachep, SIZE_AC);
2285 if (INDEX_AC == INDEX_L3)
Christoph Lameter97d06602012-07-06 15:25:11 -05002286 slab_state = PARTIAL_L3;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002287 else
Christoph Lameter97d06602012-07-06 15:25:11 -05002288 slab_state = PARTIAL_ARRAYCACHE;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002289 } else {
2290 cachep->array[smp_processor_id()] =
Pekka Enberg83b519e2009-06-10 19:40:04 +03002291 kmalloc(sizeof(struct arraycache_init), gfp);
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002292
Christoph Lameter97d06602012-07-06 15:25:11 -05002293 if (slab_state == PARTIAL_ARRAYCACHE) {
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002294 set_up_list3s(cachep, SIZE_L3);
Christoph Lameter97d06602012-07-06 15:25:11 -05002295 slab_state = PARTIAL_L3;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002296 } else {
2297 int node;
Pekka Enberg556a1692008-01-25 08:20:51 +02002298 for_each_online_node(node) {
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002299 cachep->nodelists[node] =
2300 kmalloc_node(sizeof(struct kmem_list3),
Pekka Enbergeb91f1d2009-06-12 14:56:09 +03002301 gfp, node);
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002302 BUG_ON(!cachep->nodelists[node]);
2303 kmem_list3_init(cachep->nodelists[node]);
2304 }
2305 }
2306 }
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07002307 cachep->nodelists[numa_mem_id()]->next_reap =
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002308 jiffies + REAPTIMEOUT_LIST3 +
2309 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
2310
2311 cpu_cache_get(cachep)->avail = 0;
2312 cpu_cache_get(cachep)->limit = BOOT_CPUCACHE_ENTRIES;
2313 cpu_cache_get(cachep)->batchcount = 1;
2314 cpu_cache_get(cachep)->touched = 0;
2315 cachep->batchcount = 1;
2316 cachep->limit = BOOT_CPUCACHE_ENTRIES;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002317 return 0;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002318}
2319
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002320/**
Christoph Lameter039363f2012-07-06 15:25:10 -05002321 * __kmem_cache_create - Create a cache.
Randy Dunlapa755b762012-11-06 17:10:10 -08002322 * @cachep: cache management descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 * @flags: SLAB flags
Linus Torvalds1da177e2005-04-16 15:20:36 -07002324 *
2325 * Returns a ptr to the cache on success, NULL on failure.
2326 * Cannot be called within a int, but can be interrupted.
Paul Mundt20c2df82007-07-20 10:11:58 +09002327 * The @ctor is run when new pages are allocated by the cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002329 * The flags are
2330 *
2331 * %SLAB_POISON - Poison the slab with a known test pattern (a5a5a5a5)
2332 * to catch references to uninitialised memory.
2333 *
2334 * %SLAB_RED_ZONE - Insert `Red' zones around the allocated memory to check
2335 * for buffer overruns.
2336 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 * %SLAB_HWCACHE_ALIGN - Align the objects in this cache to a hardware
2338 * cacheline. This can be beneficial if you're counting cycles as closely
2339 * as davem.
2340 */
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002341int
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002342__kmem_cache_create (struct kmem_cache *cachep, unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343{
2344 size_t left_over, slab_size, ralign;
Pekka Enberg83b519e2009-06-10 19:40:04 +03002345 gfp_t gfp;
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002346 int err;
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002347 size_t size = cachep->size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349#if DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07002350#if FORCED_DEBUG
2351 /*
2352 * Enable redzoning and last user accounting, except for caches with
2353 * large objects, if the increased size would increase the object size
2354 * above the next power of two: caches with object sizes just above a
2355 * power of two have a significant amount of internal fragmentation.
2356 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002357 if (size < 4096 || fls(size - 1) == fls(size-1 + REDZONE_ALIGN +
2358 2 * sizeof(unsigned long long)))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002359 flags |= SLAB_RED_ZONE | SLAB_STORE_USER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360 if (!(flags & SLAB_DESTROY_BY_RCU))
2361 flags |= SLAB_POISON;
2362#endif
2363 if (flags & SLAB_DESTROY_BY_RCU)
2364 BUG_ON(flags & SLAB_POISON);
2365#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002366
Andrew Mortona737b3e2006-03-22 00:08:11 -08002367 /*
2368 * Check that size is in terms of words. This is needed to avoid
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 * unaligned accesses for some archs when redzoning is used, and makes
2370 * sure any on-slab bufctl's are also correctly aligned.
2371 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002372 if (size & (BYTES_PER_WORD - 1)) {
2373 size += (BYTES_PER_WORD - 1);
2374 size &= ~(BYTES_PER_WORD - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002375 }
2376
Andrew Mortona737b3e2006-03-22 00:08:11 -08002377 /* calculate the final buffer alignment: */
2378
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 /* 1) arch recommendation: can be overridden for debug */
2380 if (flags & SLAB_HWCACHE_ALIGN) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002381 /*
2382 * Default alignment: as specified by the arch code. Except if
2383 * an object is really small, then squeeze multiple objects into
2384 * one cacheline.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 */
2386 ralign = cache_line_size();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002387 while (size <= ralign / 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 ralign /= 2;
2389 } else {
2390 ralign = BYTES_PER_WORD;
2391 }
Pekka Enbergca5f9702006-09-25 23:31:25 -07002392
2393 /*
David Woodhouse87a927c2007-07-04 21:26:44 -04002394 * Redzoning and user store require word alignment or possibly larger.
2395 * Note this will be overridden by architecture or caller mandated
2396 * alignment if either is greater than BYTES_PER_WORD.
Pekka Enbergca5f9702006-09-25 23:31:25 -07002397 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002398 if (flags & SLAB_STORE_USER)
2399 ralign = BYTES_PER_WORD;
2400
2401 if (flags & SLAB_RED_ZONE) {
2402 ralign = REDZONE_ALIGN;
2403 /* If redzoning, ensure that the second redzone is suitably
2404 * aligned, by adjusting the object size accordingly. */
2405 size += REDZONE_ALIGN - 1;
2406 size &= ~(REDZONE_ALIGN - 1);
2407 }
Pekka Enbergca5f9702006-09-25 23:31:25 -07002408
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002409 /* 2) arch mandated alignment */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002410 if (ralign < ARCH_SLAB_MINALIGN) {
2411 ralign = ARCH_SLAB_MINALIGN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 }
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002413 /* 3) caller mandated alignment */
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002414 if (ralign < cachep->align) {
2415 ralign = cachep->align;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002416 }
Pekka Enberg3ff84a72011-02-14 17:46:21 +02002417 /* disable debug if necessary */
2418 if (ralign > __alignof__(unsigned long long))
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002419 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002420 /*
Pekka Enbergca5f9702006-09-25 23:31:25 -07002421 * 4) Store it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 */
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002423 cachep->align = ralign;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424
Pekka Enberg83b519e2009-06-10 19:40:04 +03002425 if (slab_is_available())
2426 gfp = GFP_KERNEL;
2427 else
2428 gfp = GFP_NOWAIT;
2429
Christoph Lameter3c583462012-11-28 16:23:01 +00002430 setup_nodelists_pointer(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431#if DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07002432
Pekka Enbergca5f9702006-09-25 23:31:25 -07002433 /*
2434 * Both debugging options require word-alignment which is calculated
2435 * into align above.
2436 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002437 if (flags & SLAB_RED_ZONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438 /* add space for red zone words */
Pekka Enberg3ff84a72011-02-14 17:46:21 +02002439 cachep->obj_offset += sizeof(unsigned long long);
2440 size += 2 * sizeof(unsigned long long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002441 }
2442 if (flags & SLAB_STORE_USER) {
Pekka Enbergca5f9702006-09-25 23:31:25 -07002443 /* user store requires one word storage behind the end of
David Woodhouse87a927c2007-07-04 21:26:44 -04002444 * the real object. But if the second red zone needs to be
2445 * aligned to 64 bits, we must allow that much space.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002447 if (flags & SLAB_RED_ZONE)
2448 size += REDZONE_ALIGN;
2449 else
2450 size += BYTES_PER_WORD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451 }
2452#if FORCED_DEBUG && defined(CONFIG_DEBUG_PAGEALLOC)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002453 if (size >= malloc_sizes[INDEX_L3 + 1].cs_size
Tetsuo Handa608da7e2012-09-30 17:28:25 +09002454 && cachep->object_size > cache_line_size()
2455 && ALIGN(size, cachep->align) < PAGE_SIZE) {
2456 cachep->obj_offset += PAGE_SIZE - ALIGN(size, cachep->align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002457 size = PAGE_SIZE;
2458 }
2459#endif
2460#endif
2461
Ingo Molnare0a42722006-06-23 02:03:46 -07002462 /*
2463 * Determine if the slab management is 'on' or 'off' slab.
2464 * (bootstrapping cannot cope with offslab caches so don't do
Catalin Marinase7cb55b2009-10-28 13:33:08 +00002465 * it too early on. Always use on-slab management when
2466 * SLAB_NOLEAKTRACE to avoid recursive calls into kmemleak)
Ingo Molnare0a42722006-06-23 02:03:46 -07002467 */
Catalin Marinase7cb55b2009-10-28 13:33:08 +00002468 if ((size >= (PAGE_SIZE >> 3)) && !slab_early_init &&
2469 !(flags & SLAB_NOLEAKTRACE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002470 /*
2471 * Size is large, assume best to place the slab management obj
2472 * off-slab (should allow better packing of objs).
2473 */
2474 flags |= CFLGS_OFF_SLAB;
2475
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002476 size = ALIGN(size, cachep->align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002478 left_over = calculate_slab_order(cachep, size, cachep->align, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002480 if (!cachep->num)
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002481 return -E2BIG;
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002482
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002483 slab_size = ALIGN(cachep->num * sizeof(kmem_bufctl_t)
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002484 + sizeof(struct slab), cachep->align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002485
2486 /*
2487 * If the slab has been placed off-slab, and we have enough space then
2488 * move it on-slab. This is at the expense of any extra colouring.
2489 */
2490 if (flags & CFLGS_OFF_SLAB && left_over >= slab_size) {
2491 flags &= ~CFLGS_OFF_SLAB;
2492 left_over -= slab_size;
2493 }
2494
2495 if (flags & CFLGS_OFF_SLAB) {
2496 /* really off slab. No need for manual alignment */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002497 slab_size =
2498 cachep->num * sizeof(kmem_bufctl_t) + sizeof(struct slab);
Ron Lee67461362009-05-22 04:58:22 +09302499
2500#ifdef CONFIG_PAGE_POISONING
2501 /* If we're going to use the generic kernel_map_pages()
2502 * poisoning, then it's going to smash the contents of
2503 * the redzone and userword anyhow, so switch them off.
2504 */
2505 if (size % PAGE_SIZE == 0 && flags & SLAB_POISON)
2506 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
2507#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508 }
2509
2510 cachep->colour_off = cache_line_size();
2511 /* Offset must be a multiple of the alignment. */
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002512 if (cachep->colour_off < cachep->align)
2513 cachep->colour_off = cachep->align;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002514 cachep->colour = left_over / cachep->colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 cachep->slab_size = slab_size;
2516 cachep->flags = flags;
Glauber Costaa618e892012-06-14 16:17:21 +04002517 cachep->allocflags = 0;
Christoph Lameter4b51d662007-02-10 01:43:10 -08002518 if (CONFIG_ZONE_DMA_FLAG && (flags & SLAB_CACHE_DMA))
Glauber Costaa618e892012-06-14 16:17:21 +04002519 cachep->allocflags |= GFP_DMA;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002520 cachep->size = size;
Eric Dumazet6a2d7a92006-12-13 00:34:27 -08002521 cachep->reciprocal_buffer_size = reciprocal_value(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002522
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002523 if (flags & CFLGS_OFF_SLAB) {
Victor Fuscob2d55072005-09-10 00:26:36 -07002524 cachep->slabp_cache = kmem_find_general_cachep(slab_size, 0u);
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002525 /*
2526 * This is a possibility for one of the malloc_sizes caches.
2527 * But since we go off slab only for object size greater than
2528 * PAGE_SIZE/8, and malloc_sizes gets created in ascending order,
2529 * this should not happen at all.
2530 * But leave a BUG_ON for some lucky dude.
2531 */
Christoph Lameter6cb8f912007-07-17 04:03:22 -07002532 BUG_ON(ZERO_OR_NULL_PTR(cachep->slabp_cache));
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002533 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002535 err = setup_cpu_cache(cachep, gfp);
2536 if (err) {
Christoph Lameter12c36672012-09-04 23:38:33 +00002537 __kmem_cache_shutdown(cachep);
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002538 return err;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002539 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540
Peter Zijlstra83835b32011-07-22 15:26:05 +02002541 if (flags & SLAB_DEBUG_OBJECTS) {
2542 /*
2543 * Would deadlock through slab_destroy()->call_rcu()->
2544 * debug_object_activate()->kmem_cache_alloc().
2545 */
2546 WARN_ON_ONCE(flags & SLAB_DESTROY_BY_RCU);
2547
2548 slab_set_debugobj_lock_classes(cachep);
2549 }
2550
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002551 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553
2554#if DEBUG
2555static void check_irq_off(void)
2556{
2557 BUG_ON(!irqs_disabled());
2558}
2559
2560static void check_irq_on(void)
2561{
2562 BUG_ON(irqs_disabled());
2563}
2564
Pekka Enberg343e0d72006-02-01 03:05:50 -08002565static void check_spinlock_acquired(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002566{
2567#ifdef CONFIG_SMP
2568 check_irq_off();
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07002569 assert_spin_locked(&cachep->nodelists[numa_mem_id()]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570#endif
2571}
Christoph Lametere498be72005-09-09 13:03:32 -07002572
Pekka Enberg343e0d72006-02-01 03:05:50 -08002573static void check_spinlock_acquired_node(struct kmem_cache *cachep, int node)
Christoph Lametere498be72005-09-09 13:03:32 -07002574{
2575#ifdef CONFIG_SMP
2576 check_irq_off();
2577 assert_spin_locked(&cachep->nodelists[node]->list_lock);
2578#endif
2579}
2580
Linus Torvalds1da177e2005-04-16 15:20:36 -07002581#else
2582#define check_irq_off() do { } while(0)
2583#define check_irq_on() do { } while(0)
2584#define check_spinlock_acquired(x) do { } while(0)
Christoph Lametere498be72005-09-09 13:03:32 -07002585#define check_spinlock_acquired_node(x, y) do { } while(0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586#endif
2587
Christoph Lameteraab22072006-03-22 00:09:06 -08002588static void drain_array(struct kmem_cache *cachep, struct kmem_list3 *l3,
2589 struct array_cache *ac,
2590 int force, int node);
2591
Linus Torvalds1da177e2005-04-16 15:20:36 -07002592static void do_drain(void *arg)
2593{
Andrew Mortona737b3e2006-03-22 00:08:11 -08002594 struct kmem_cache *cachep = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595 struct array_cache *ac;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07002596 int node = numa_mem_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002597
2598 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002599 ac = cpu_cache_get(cachep);
Christoph Lameterff694162005-09-22 21:44:02 -07002600 spin_lock(&cachep->nodelists[node]->list_lock);
2601 free_block(cachep, ac->entry, ac->avail, node);
2602 spin_unlock(&cachep->nodelists[node]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002603 ac->avail = 0;
2604}
2605
Pekka Enberg343e0d72006-02-01 03:05:50 -08002606static void drain_cpu_caches(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002607{
Christoph Lametere498be72005-09-09 13:03:32 -07002608 struct kmem_list3 *l3;
2609 int node;
2610
Jens Axboe15c8b6c2008-05-09 09:39:44 +02002611 on_each_cpu(do_drain, cachep, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612 check_irq_on();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002613 for_each_online_node(node) {
Christoph Lametere498be72005-09-09 13:03:32 -07002614 l3 = cachep->nodelists[node];
Roland Dreiera4523a82006-05-15 11:41:00 -07002615 if (l3 && l3->alien)
2616 drain_alien_cache(cachep, l3->alien);
2617 }
2618
2619 for_each_online_node(node) {
2620 l3 = cachep->nodelists[node];
2621 if (l3)
Christoph Lameteraab22072006-03-22 00:09:06 -08002622 drain_array(cachep, l3, l3->shared, 1, node);
Christoph Lametere498be72005-09-09 13:03:32 -07002623 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624}
2625
Christoph Lametered11d9e2006-06-30 01:55:45 -07002626/*
2627 * Remove slabs from the list of free slabs.
2628 * Specify the number of slabs to drain in tofree.
2629 *
2630 * Returns the actual number of slabs released.
2631 */
2632static int drain_freelist(struct kmem_cache *cache,
2633 struct kmem_list3 *l3, int tofree)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634{
Christoph Lametered11d9e2006-06-30 01:55:45 -07002635 struct list_head *p;
2636 int nr_freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637 struct slab *slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638
Christoph Lametered11d9e2006-06-30 01:55:45 -07002639 nr_freed = 0;
2640 while (nr_freed < tofree && !list_empty(&l3->slabs_free)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641
Christoph Lametered11d9e2006-06-30 01:55:45 -07002642 spin_lock_irq(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07002643 p = l3->slabs_free.prev;
Christoph Lametered11d9e2006-06-30 01:55:45 -07002644 if (p == &l3->slabs_free) {
2645 spin_unlock_irq(&l3->list_lock);
2646 goto out;
2647 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648
Christoph Lametered11d9e2006-06-30 01:55:45 -07002649 slabp = list_entry(p, struct slab, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002650#if DEBUG
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002651 BUG_ON(slabp->inuse);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652#endif
2653 list_del(&slabp->list);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002654 /*
2655 * Safe to drop the lock. The slab is no longer linked
2656 * to the cache.
2657 */
2658 l3->free_objects -= cache->num;
Christoph Lametere498be72005-09-09 13:03:32 -07002659 spin_unlock_irq(&l3->list_lock);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002660 slab_destroy(cache, slabp);
2661 nr_freed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002662 }
Christoph Lametered11d9e2006-06-30 01:55:45 -07002663out:
2664 return nr_freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002665}
2666
Christoph Lameter18004c52012-07-06 15:25:12 -05002667/* Called with slab_mutex held to protect against cpu hotplug */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002668static int __cache_shrink(struct kmem_cache *cachep)
Christoph Lametere498be72005-09-09 13:03:32 -07002669{
2670 int ret = 0, i = 0;
2671 struct kmem_list3 *l3;
2672
2673 drain_cpu_caches(cachep);
2674
2675 check_irq_on();
2676 for_each_online_node(i) {
2677 l3 = cachep->nodelists[i];
Christoph Lametered11d9e2006-06-30 01:55:45 -07002678 if (!l3)
2679 continue;
2680
2681 drain_freelist(cachep, l3, l3->free_objects);
2682
2683 ret += !list_empty(&l3->slabs_full) ||
2684 !list_empty(&l3->slabs_partial);
Christoph Lametere498be72005-09-09 13:03:32 -07002685 }
2686 return (ret ? 1 : 0);
2687}
2688
Linus Torvalds1da177e2005-04-16 15:20:36 -07002689/**
2690 * kmem_cache_shrink - Shrink a cache.
2691 * @cachep: The cache to shrink.
2692 *
2693 * Releases as many slabs as possible for a cache.
2694 * To help debugging, a zero exit status indicates all slabs were released.
2695 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002696int kmem_cache_shrink(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002697{
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002698 int ret;
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002699 BUG_ON(!cachep || in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002700
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002701 get_online_cpus();
Christoph Lameter18004c52012-07-06 15:25:12 -05002702 mutex_lock(&slab_mutex);
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002703 ret = __cache_shrink(cachep);
Christoph Lameter18004c52012-07-06 15:25:12 -05002704 mutex_unlock(&slab_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002705 put_online_cpus();
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002706 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707}
2708EXPORT_SYMBOL(kmem_cache_shrink);
2709
Christoph Lameter945cf2b2012-09-04 23:18:33 +00002710int __kmem_cache_shutdown(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711{
Christoph Lameter12c36672012-09-04 23:38:33 +00002712 int i;
2713 struct kmem_list3 *l3;
2714 int rc = __cache_shrink(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715
Christoph Lameter12c36672012-09-04 23:38:33 +00002716 if (rc)
2717 return rc;
2718
2719 for_each_online_cpu(i)
2720 kfree(cachep->array[i]);
2721
2722 /* NUMA: free the list3 structures */
2723 for_each_online_node(i) {
2724 l3 = cachep->nodelists[i];
2725 if (l3) {
2726 kfree(l3->shared);
2727 free_alien_cache(l3->alien);
2728 kfree(l3);
2729 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730 }
Christoph Lameter12c36672012-09-04 23:38:33 +00002731 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002734/*
2735 * Get the memory for a slab management obj.
2736 * For a slab cache when the slab descriptor is off-slab, slab descriptors
2737 * always come from malloc_sizes caches. The slab descriptor cannot
2738 * come from the same cache which is getting created because,
2739 * when we are searching for an appropriate cache for these
2740 * descriptors in kmem_cache_create, we search through the malloc_sizes array.
2741 * If we are creating a malloc_sizes cache here it would not be visible to
2742 * kmem_find_general_cachep till the initialization is complete.
2743 * Hence we cannot have slabp_cache same as the original cache.
2744 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002745static struct slab *alloc_slabmgmt(struct kmem_cache *cachep, void *objp,
Ravikiran G Thirumalai5b74ada2006-04-10 22:52:53 -07002746 int colour_off, gfp_t local_flags,
2747 int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748{
2749 struct slab *slabp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002750
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751 if (OFF_SLAB(cachep)) {
2752 /* Slab management obj is off-slab. */
Ravikiran G Thirumalai5b74ada2006-04-10 22:52:53 -07002753 slabp = kmem_cache_alloc_node(cachep->slabp_cache,
Pekka Enberg8759ec52008-11-26 10:01:31 +02002754 local_flags, nodeid);
Catalin Marinasd5cff632009-06-11 13:22:40 +01002755 /*
2756 * If the first object in the slab is leaked (it's allocated
2757 * but no one has a reference to it), we want to make sure
2758 * kmemleak does not treat the ->s_mem pointer as a reference
2759 * to the object. Otherwise we will not report the leak.
2760 */
Catalin Marinasc017b4b2009-10-28 13:33:09 +00002761 kmemleak_scan_area(&slabp->list, sizeof(struct list_head),
2762 local_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763 if (!slabp)
2764 return NULL;
2765 } else {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002766 slabp = objp + colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002767 colour_off += cachep->slab_size;
2768 }
2769 slabp->inuse = 0;
2770 slabp->colouroff = colour_off;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002771 slabp->s_mem = objp + colour_off;
Ravikiran G Thirumalai5b74ada2006-04-10 22:52:53 -07002772 slabp->nodeid = nodeid;
Marcin Slusarze51bfd02008-02-10 11:21:54 +01002773 slabp->free = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774 return slabp;
2775}
2776
2777static inline kmem_bufctl_t *slab_bufctl(struct slab *slabp)
2778{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002779 return (kmem_bufctl_t *) (slabp + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780}
2781
Pekka Enberg343e0d72006-02-01 03:05:50 -08002782static void cache_init_objs(struct kmem_cache *cachep,
Christoph Lametera35afb82007-05-16 22:10:57 -07002783 struct slab *slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784{
2785 int i;
2786
2787 for (i = 0; i < cachep->num; i++) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002788 void *objp = index_to_obj(cachep, slabp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002789#if DEBUG
2790 /* need to poison the objs? */
2791 if (cachep->flags & SLAB_POISON)
2792 poison_obj(cachep, objp, POISON_FREE);
2793 if (cachep->flags & SLAB_STORE_USER)
2794 *dbg_userword(cachep, objp) = NULL;
2795
2796 if (cachep->flags & SLAB_RED_ZONE) {
2797 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2798 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2799 }
2800 /*
Andrew Mortona737b3e2006-03-22 00:08:11 -08002801 * Constructors are not allowed to allocate memory from the same
2802 * cache which they are a constructor for. Otherwise, deadlock.
2803 * They must also be threaded.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804 */
2805 if (cachep->ctor && !(cachep->flags & SLAB_POISON))
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002806 cachep->ctor(objp + obj_offset(cachep));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807
2808 if (cachep->flags & SLAB_RED_ZONE) {
2809 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
2810 slab_error(cachep, "constructor overwrote the"
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002811 " end of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
2813 slab_error(cachep, "constructor overwrote the"
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002814 " start of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002815 }
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002816 if ((cachep->size % PAGE_SIZE) == 0 &&
Andrew Mortona737b3e2006-03-22 00:08:11 -08002817 OFF_SLAB(cachep) && cachep->flags & SLAB_POISON)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002818 kernel_map_pages(virt_to_page(objp),
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002819 cachep->size / PAGE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820#else
2821 if (cachep->ctor)
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002822 cachep->ctor(objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823#endif
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002824 slab_bufctl(slabp)[i] = i + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002826 slab_bufctl(slabp)[i - 1] = BUFCTL_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827}
2828
Pekka Enberg343e0d72006-02-01 03:05:50 -08002829static void kmem_flagcheck(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830{
Christoph Lameter4b51d662007-02-10 01:43:10 -08002831 if (CONFIG_ZONE_DMA_FLAG) {
2832 if (flags & GFP_DMA)
Glauber Costaa618e892012-06-14 16:17:21 +04002833 BUG_ON(!(cachep->allocflags & GFP_DMA));
Christoph Lameter4b51d662007-02-10 01:43:10 -08002834 else
Glauber Costaa618e892012-06-14 16:17:21 +04002835 BUG_ON(cachep->allocflags & GFP_DMA);
Christoph Lameter4b51d662007-02-10 01:43:10 -08002836 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837}
2838
Andrew Mortona737b3e2006-03-22 00:08:11 -08002839static void *slab_get_obj(struct kmem_cache *cachep, struct slab *slabp,
2840 int nodeid)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002841{
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002842 void *objp = index_to_obj(cachep, slabp, slabp->free);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002843 kmem_bufctl_t next;
2844
2845 slabp->inuse++;
2846 next = slab_bufctl(slabp)[slabp->free];
2847#if DEBUG
2848 slab_bufctl(slabp)[slabp->free] = BUFCTL_FREE;
2849 WARN_ON(slabp->nodeid != nodeid);
2850#endif
2851 slabp->free = next;
2852
2853 return objp;
2854}
2855
Andrew Mortona737b3e2006-03-22 00:08:11 -08002856static void slab_put_obj(struct kmem_cache *cachep, struct slab *slabp,
2857 void *objp, int nodeid)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002858{
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002859 unsigned int objnr = obj_to_index(cachep, slabp, objp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002860
2861#if DEBUG
2862 /* Verify that the slab belongs to the intended node */
2863 WARN_ON(slabp->nodeid != nodeid);
2864
Al Viro871751e2006-03-25 03:06:39 -08002865 if (slab_bufctl(slabp)[objnr] + 1 <= SLAB_LIMIT + 1) {
Matthew Dobson78d382d2006-02-01 03:05:47 -08002866 printk(KERN_ERR "slab: double free detected in cache "
Andrew Mortona737b3e2006-03-22 00:08:11 -08002867 "'%s', objp %p\n", cachep->name, objp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002868 BUG();
2869 }
2870#endif
2871 slab_bufctl(slabp)[objnr] = slabp->free;
2872 slabp->free = objnr;
2873 slabp->inuse--;
2874}
2875
Pekka Enberg47768742006-06-23 02:03:07 -07002876/*
2877 * Map pages beginning at addr to the given cache and slab. This is required
2878 * for the slab allocator to be able to lookup the cache and slab of a
Nick Pigginccd35fb2011-01-07 17:49:17 +11002879 * virtual address for kfree, ksize, and slab debugging.
Pekka Enberg47768742006-06-23 02:03:07 -07002880 */
2881static void slab_map_pages(struct kmem_cache *cache, struct slab *slab,
2882 void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883{
Pekka Enberg47768742006-06-23 02:03:07 -07002884 int nr_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002885 struct page *page;
2886
Pekka Enberg47768742006-06-23 02:03:07 -07002887 page = virt_to_page(addr);
Nick Piggin84097512006-03-22 00:08:34 -08002888
Pekka Enberg47768742006-06-23 02:03:07 -07002889 nr_pages = 1;
Nick Piggin84097512006-03-22 00:08:34 -08002890 if (likely(!PageCompound(page)))
Pekka Enberg47768742006-06-23 02:03:07 -07002891 nr_pages <<= cache->gfporder;
2892
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893 do {
Christoph Lameter35026082012-06-13 10:24:56 -05002894 page->slab_cache = cache;
2895 page->slab_page = slab;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002896 page++;
Pekka Enberg47768742006-06-23 02:03:07 -07002897 } while (--nr_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898}
2899
2900/*
2901 * Grow (by 1) the number of slabs within a cache. This is called by
2902 * kmem_cache_alloc() when there are no active objs left in a cache.
2903 */
Christoph Lameter3c517a62006-12-06 20:33:29 -08002904static int cache_grow(struct kmem_cache *cachep,
2905 gfp_t flags, int nodeid, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002907 struct slab *slabp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002908 size_t offset;
2909 gfp_t local_flags;
Christoph Lametere498be72005-09-09 13:03:32 -07002910 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002911
Andrew Mortona737b3e2006-03-22 00:08:11 -08002912 /*
2913 * Be lazy and only check for valid flags here, keeping it out of the
2914 * critical path in kmem_cache_alloc().
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915 */
Christoph Lameter6cb06222007-10-16 01:25:41 -07002916 BUG_ON(flags & GFP_SLAB_BUG_MASK);
2917 local_flags = flags & (GFP_CONSTRAINT_MASK|GFP_RECLAIM_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002918
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002919 /* Take the l3 list lock to change the colour_next on this node */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002920 check_irq_off();
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002921 l3 = cachep->nodelists[nodeid];
2922 spin_lock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002923
2924 /* Get colour for the slab, and cal the next value. */
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002925 offset = l3->colour_next;
2926 l3->colour_next++;
2927 if (l3->colour_next >= cachep->colour)
2928 l3->colour_next = 0;
2929 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002930
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002931 offset *= cachep->colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932
2933 if (local_flags & __GFP_WAIT)
2934 local_irq_enable();
2935
2936 /*
2937 * The test for missing atomic flag is performed here, rather than
2938 * the more obvious place, simply to reduce the critical path length
2939 * in kmem_cache_alloc(). If a caller is seriously mis-behaving they
2940 * will eventually be caught here (where it matters).
2941 */
2942 kmem_flagcheck(cachep, flags);
2943
Andrew Mortona737b3e2006-03-22 00:08:11 -08002944 /*
2945 * Get mem for the objs. Attempt to allocate a physical page from
2946 * 'nodeid'.
Christoph Lametere498be72005-09-09 13:03:32 -07002947 */
Christoph Lameter3c517a62006-12-06 20:33:29 -08002948 if (!objp)
Andrew Mortonb8c1c5d2007-07-24 12:02:40 -07002949 objp = kmem_getpages(cachep, local_flags, nodeid);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002950 if (!objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002951 goto failed;
2952
2953 /* Get slab management. */
Christoph Lameter3c517a62006-12-06 20:33:29 -08002954 slabp = alloc_slabmgmt(cachep, objp, offset,
Christoph Lameter6cb06222007-10-16 01:25:41 -07002955 local_flags & ~GFP_CONSTRAINT_MASK, nodeid);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002956 if (!slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957 goto opps1;
2958
Pekka Enberg47768742006-06-23 02:03:07 -07002959 slab_map_pages(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960
Christoph Lametera35afb82007-05-16 22:10:57 -07002961 cache_init_objs(cachep, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962
2963 if (local_flags & __GFP_WAIT)
2964 local_irq_disable();
2965 check_irq_off();
Christoph Lametere498be72005-09-09 13:03:32 -07002966 spin_lock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967
2968 /* Make slab active. */
Christoph Lametere498be72005-09-09 13:03:32 -07002969 list_add_tail(&slabp->list, &(l3->slabs_free));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970 STATS_INC_GROWN(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07002971 l3->free_objects += cachep->num;
2972 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002973 return 1;
Andrew Mortona737b3e2006-03-22 00:08:11 -08002974opps1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975 kmem_freepages(cachep, objp);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002976failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002977 if (local_flags & __GFP_WAIT)
2978 local_irq_disable();
2979 return 0;
2980}
2981
2982#if DEBUG
2983
2984/*
2985 * Perform extra freeing checks:
2986 * - detect bad pointers.
2987 * - POISON/RED_ZONE checking
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988 */
2989static void kfree_debugcheck(const void *objp)
2990{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002991 if (!virt_addr_valid(objp)) {
2992 printk(KERN_ERR "kfree_debugcheck: out of range ptr %lxh.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002993 (unsigned long)objp);
2994 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002996}
2997
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002998static inline void verify_redzone_free(struct kmem_cache *cache, void *obj)
2999{
David Woodhouseb46b8f12007-05-08 00:22:59 -07003000 unsigned long long redzone1, redzone2;
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07003001
3002 redzone1 = *dbg_redzone1(cache, obj);
3003 redzone2 = *dbg_redzone2(cache, obj);
3004
3005 /*
3006 * Redzone is ok.
3007 */
3008 if (redzone1 == RED_ACTIVE && redzone2 == RED_ACTIVE)
3009 return;
3010
3011 if (redzone1 == RED_INACTIVE && redzone2 == RED_INACTIVE)
3012 slab_error(cache, "double free detected");
3013 else
3014 slab_error(cache, "memory outside object was overwritten");
3015
David Woodhouseb46b8f12007-05-08 00:22:59 -07003016 printk(KERN_ERR "%p: redzone 1:0x%llx, redzone 2:0x%llx.\n",
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07003017 obj, redzone1, redzone2);
3018}
3019
Pekka Enberg343e0d72006-02-01 03:05:50 -08003020static void *cache_free_debugcheck(struct kmem_cache *cachep, void *objp,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003021 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022{
3023 struct page *page;
3024 unsigned int objnr;
3025 struct slab *slabp;
3026
Matthew Wilcox80cbd912007-11-29 12:05:13 -07003027 BUG_ON(virt_to_cache(objp) != cachep);
3028
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003029 objp -= obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003030 kfree_debugcheck(objp);
Christoph Lameterb49af682007-05-06 14:49:41 -07003031 page = virt_to_head_page(objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032
Christoph Lameter35026082012-06-13 10:24:56 -05003033 slabp = page->slab_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034
3035 if (cachep->flags & SLAB_RED_ZONE) {
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07003036 verify_redzone_free(cachep, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
3038 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
3039 }
3040 if (cachep->flags & SLAB_STORE_USER)
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003041 *dbg_userword(cachep, objp) = (void *)caller;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003042
Pekka Enberg8fea4e92006-03-22 00:08:10 -08003043 objnr = obj_to_index(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044
3045 BUG_ON(objnr >= cachep->num);
Pekka Enberg8fea4e92006-03-22 00:08:10 -08003046 BUG_ON(objp != index_to_obj(cachep, slabp, objnr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047
Al Viro871751e2006-03-25 03:06:39 -08003048#ifdef CONFIG_DEBUG_SLAB_LEAK
3049 slab_bufctl(slabp)[objnr] = BUFCTL_FREE;
3050#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051 if (cachep->flags & SLAB_POISON) {
3052#ifdef CONFIG_DEBUG_PAGEALLOC
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003053 if ((cachep->size % PAGE_SIZE)==0 && OFF_SLAB(cachep)) {
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003054 store_stackinfo(cachep, objp, caller);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003055 kernel_map_pages(virt_to_page(objp),
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003056 cachep->size / PAGE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057 } else {
3058 poison_obj(cachep, objp, POISON_FREE);
3059 }
3060#else
3061 poison_obj(cachep, objp, POISON_FREE);
3062#endif
3063 }
3064 return objp;
3065}
3066
Pekka Enberg343e0d72006-02-01 03:05:50 -08003067static void check_slabp(struct kmem_cache *cachep, struct slab *slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068{
3069 kmem_bufctl_t i;
3070 int entries = 0;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003071
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072 /* Check slab's freelist to see if this obj is there. */
3073 for (i = slabp->free; i != BUFCTL_END; i = slab_bufctl(slabp)[i]) {
3074 entries++;
3075 if (entries > cachep->num || i >= cachep->num)
3076 goto bad;
3077 }
3078 if (entries != cachep->num - slabp->inuse) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08003079bad:
3080 printk(KERN_ERR "slab: Internal list corruption detected in "
Dave Jonesface37f2011-11-15 15:03:52 -08003081 "cache '%s'(%d), slabp %p(%d). Tainted(%s). Hexdump:\n",
3082 cachep->name, cachep->num, slabp, slabp->inuse,
3083 print_tainted());
Sebastian Andrzej Siewiorfdde6ab2011-07-29 18:22:13 +02003084 print_hex_dump(KERN_ERR, "", DUMP_PREFIX_OFFSET, 16, 1, slabp,
3085 sizeof(*slabp) + cachep->num * sizeof(kmem_bufctl_t),
3086 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087 BUG();
3088 }
3089}
3090#else
3091#define kfree_debugcheck(x) do { } while(0)
3092#define cache_free_debugcheck(x,objp,z) (objp)
3093#define check_slabp(x,y) do { } while(0)
3094#endif
3095
Mel Gorman072bb0a2012-07-31 16:43:58 -07003096static void *cache_alloc_refill(struct kmem_cache *cachep, gfp_t flags,
3097 bool force_refill)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098{
3099 int batchcount;
3100 struct kmem_list3 *l3;
3101 struct array_cache *ac;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07003102 int node;
3103
Joe Korty6d2144d2008-03-05 15:04:59 -08003104 check_irq_off();
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003105 node = numa_mem_id();
Mel Gorman072bb0a2012-07-31 16:43:58 -07003106 if (unlikely(force_refill))
3107 goto force_grow;
3108retry:
Joe Korty6d2144d2008-03-05 15:04:59 -08003109 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110 batchcount = ac->batchcount;
3111 if (!ac->touched && batchcount > BATCHREFILL_LIMIT) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08003112 /*
3113 * If there was little recent activity on this cache, then
3114 * perform only a partial refill. Otherwise we could generate
3115 * refill bouncing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116 */
3117 batchcount = BATCHREFILL_LIMIT;
3118 }
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07003119 l3 = cachep->nodelists[node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003120
Christoph Lametere498be72005-09-09 13:03:32 -07003121 BUG_ON(ac->avail > 0 || !l3);
3122 spin_lock(&l3->list_lock);
3123
Christoph Lameter3ded1752006-03-25 03:06:44 -08003124 /* See if we can refill from the shared array */
Nick Piggin44b57f12010-01-27 22:27:40 +11003125 if (l3->shared && transfer_objects(ac, l3->shared, batchcount)) {
3126 l3->shared->touched = 1;
Christoph Lameter3ded1752006-03-25 03:06:44 -08003127 goto alloc_done;
Nick Piggin44b57f12010-01-27 22:27:40 +11003128 }
Christoph Lameter3ded1752006-03-25 03:06:44 -08003129
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130 while (batchcount > 0) {
3131 struct list_head *entry;
3132 struct slab *slabp;
3133 /* Get slab alloc is to come from. */
3134 entry = l3->slabs_partial.next;
3135 if (entry == &l3->slabs_partial) {
3136 l3->free_touched = 1;
3137 entry = l3->slabs_free.next;
3138 if (entry == &l3->slabs_free)
3139 goto must_grow;
3140 }
3141
3142 slabp = list_entry(entry, struct slab, list);
3143 check_slabp(cachep, slabp);
3144 check_spinlock_acquired(cachep);
Pekka Enberg714b81712007-05-06 14:49:03 -07003145
3146 /*
3147 * The slab was either on partial or free list so
3148 * there must be at least one object available for
3149 * allocation.
3150 */
roel kluin249b9f32008-10-29 17:18:07 -04003151 BUG_ON(slabp->inuse >= cachep->num);
Pekka Enberg714b81712007-05-06 14:49:03 -07003152
Linus Torvalds1da177e2005-04-16 15:20:36 -07003153 while (slabp->inuse < cachep->num && batchcount--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154 STATS_INC_ALLOCED(cachep);
3155 STATS_INC_ACTIVE(cachep);
3156 STATS_SET_HIGH(cachep);
3157
Mel Gorman072bb0a2012-07-31 16:43:58 -07003158 ac_put_obj(cachep, ac, slab_get_obj(cachep, slabp,
3159 node));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160 }
3161 check_slabp(cachep, slabp);
3162
3163 /* move slabp to correct slabp list: */
3164 list_del(&slabp->list);
3165 if (slabp->free == BUFCTL_END)
3166 list_add(&slabp->list, &l3->slabs_full);
3167 else
3168 list_add(&slabp->list, &l3->slabs_partial);
3169 }
3170
Andrew Mortona737b3e2006-03-22 00:08:11 -08003171must_grow:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172 l3->free_objects -= ac->avail;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003173alloc_done:
Christoph Lametere498be72005-09-09 13:03:32 -07003174 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175
3176 if (unlikely(!ac->avail)) {
3177 int x;
Mel Gorman072bb0a2012-07-31 16:43:58 -07003178force_grow:
Christoph Lameter3c517a62006-12-06 20:33:29 -08003179 x = cache_grow(cachep, flags | GFP_THISNODE, node, NULL);
Christoph Lametere498be72005-09-09 13:03:32 -07003180
Andrew Mortona737b3e2006-03-22 00:08:11 -08003181 /* cache_grow can reenable interrupts, then ac could change. */
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003182 ac = cpu_cache_get(cachep);
David Rientjes51cd8e62012-08-28 19:57:21 -07003183 node = numa_mem_id();
Mel Gorman072bb0a2012-07-31 16:43:58 -07003184
3185 /* no objects in sight? abort */
3186 if (!x && (ac->avail == 0 || force_refill))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003187 return NULL;
3188
Andrew Mortona737b3e2006-03-22 00:08:11 -08003189 if (!ac->avail) /* objects refilled by interrupt? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003190 goto retry;
3191 }
3192 ac->touched = 1;
Mel Gorman072bb0a2012-07-31 16:43:58 -07003193
3194 return ac_get_obj(cachep, ac, flags, force_refill);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003195}
3196
Andrew Mortona737b3e2006-03-22 00:08:11 -08003197static inline void cache_alloc_debugcheck_before(struct kmem_cache *cachep,
3198 gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003199{
3200 might_sleep_if(flags & __GFP_WAIT);
3201#if DEBUG
3202 kmem_flagcheck(cachep, flags);
3203#endif
3204}
3205
3206#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08003207static void *cache_alloc_debugcheck_after(struct kmem_cache *cachep,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003208 gfp_t flags, void *objp, unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003210 if (!objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211 return objp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003212 if (cachep->flags & SLAB_POISON) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003213#ifdef CONFIG_DEBUG_PAGEALLOC
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003214 if ((cachep->size % PAGE_SIZE) == 0 && OFF_SLAB(cachep))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003215 kernel_map_pages(virt_to_page(objp),
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003216 cachep->size / PAGE_SIZE, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003217 else
3218 check_poison_obj(cachep, objp);
3219#else
3220 check_poison_obj(cachep, objp);
3221#endif
3222 poison_obj(cachep, objp, POISON_INUSE);
3223 }
3224 if (cachep->flags & SLAB_STORE_USER)
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003225 *dbg_userword(cachep, objp) = (void *)caller;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226
3227 if (cachep->flags & SLAB_RED_ZONE) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08003228 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE ||
3229 *dbg_redzone2(cachep, objp) != RED_INACTIVE) {
3230 slab_error(cachep, "double free, or memory outside"
3231 " object was overwritten");
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003232 printk(KERN_ERR
David Woodhouseb46b8f12007-05-08 00:22:59 -07003233 "%p: redzone 1:0x%llx, redzone 2:0x%llx\n",
Andrew Mortona737b3e2006-03-22 00:08:11 -08003234 objp, *dbg_redzone1(cachep, objp),
3235 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003236 }
3237 *dbg_redzone1(cachep, objp) = RED_ACTIVE;
3238 *dbg_redzone2(cachep, objp) = RED_ACTIVE;
3239 }
Al Viro871751e2006-03-25 03:06:39 -08003240#ifdef CONFIG_DEBUG_SLAB_LEAK
3241 {
3242 struct slab *slabp;
3243 unsigned objnr;
3244
Christoph Lameter35026082012-06-13 10:24:56 -05003245 slabp = virt_to_head_page(objp)->slab_page;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003246 objnr = (unsigned)(objp - slabp->s_mem) / cachep->size;
Al Viro871751e2006-03-25 03:06:39 -08003247 slab_bufctl(slabp)[objnr] = BUFCTL_ACTIVE;
3248 }
3249#endif
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003250 objp += obj_offset(cachep);
Christoph Lameter4f104932007-05-06 14:50:17 -07003251 if (cachep->ctor && cachep->flags & SLAB_POISON)
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07003252 cachep->ctor(objp);
Tetsuo Handa7ea466f2011-07-21 09:42:45 +09003253 if (ARCH_SLAB_MINALIGN &&
3254 ((unsigned long)objp & (ARCH_SLAB_MINALIGN-1))) {
Kevin Hilmana44b56d2006-12-06 20:32:11 -08003255 printk(KERN_ERR "0x%p: not aligned to ARCH_SLAB_MINALIGN=%d\n",
Hugh Dickinsc2251502011-07-11 13:35:08 -07003256 objp, (int)ARCH_SLAB_MINALIGN);
Kevin Hilmana44b56d2006-12-06 20:32:11 -08003257 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258 return objp;
3259}
3260#else
3261#define cache_alloc_debugcheck_after(a,b,objp,d) (objp)
3262#endif
3263
Akinobu Mita773ff602008-12-23 19:37:01 +09003264static bool slab_should_failslab(struct kmem_cache *cachep, gfp_t flags)
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003265{
Christoph Lameter9b030cb2012-09-05 00:20:33 +00003266 if (cachep == kmem_cache)
Akinobu Mita773ff602008-12-23 19:37:01 +09003267 return false;
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003268
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003269 return should_failslab(cachep->object_size, flags, cachep->flags);
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003270}
3271
Pekka Enberg343e0d72006-02-01 03:05:50 -08003272static inline void *____cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003273{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003274 void *objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003275 struct array_cache *ac;
Mel Gorman072bb0a2012-07-31 16:43:58 -07003276 bool force_refill = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277
Alok N Kataria5c382302005-09-27 21:45:46 -07003278 check_irq_off();
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003279
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003280 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003281 if (likely(ac->avail)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003282 ac->touched = 1;
Mel Gorman072bb0a2012-07-31 16:43:58 -07003283 objp = ac_get_obj(cachep, ac, flags, false);
3284
J. R. Okajimaddbf2e82009-12-02 16:55:50 +09003285 /*
Mel Gorman072bb0a2012-07-31 16:43:58 -07003286 * Allow for the possibility all avail objects are not allowed
3287 * by the current flags
J. R. Okajimaddbf2e82009-12-02 16:55:50 +09003288 */
Mel Gorman072bb0a2012-07-31 16:43:58 -07003289 if (objp) {
3290 STATS_INC_ALLOCHIT(cachep);
3291 goto out;
3292 }
3293 force_refill = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003294 }
Mel Gorman072bb0a2012-07-31 16:43:58 -07003295
3296 STATS_INC_ALLOCMISS(cachep);
3297 objp = cache_alloc_refill(cachep, flags, force_refill);
3298 /*
3299 * the 'ac' may be updated by cache_alloc_refill(),
3300 * and kmemleak_erase() requires its correct value.
3301 */
3302 ac = cpu_cache_get(cachep);
3303
3304out:
Catalin Marinasd5cff632009-06-11 13:22:40 +01003305 /*
3306 * To avoid a false negative, if an object that is in one of the
3307 * per-CPU caches is leaked, we need to make sure kmemleak doesn't
3308 * treat the array pointers as a reference to the object.
3309 */
J. R. Okajimaf3d8b532009-12-02 16:55:49 +09003310 if (objp)
3311 kmemleak_erase(&ac->entry[ac->avail]);
Alok N Kataria5c382302005-09-27 21:45:46 -07003312 return objp;
3313}
3314
Christoph Lametere498be72005-09-09 13:03:32 -07003315#ifdef CONFIG_NUMA
3316/*
Paul Jacksonb2455392006-03-24 03:16:12 -08003317 * Try allocating on another node if PF_SPREAD_SLAB|PF_MEMPOLICY.
Paul Jacksonc61afb12006-03-24 03:16:08 -08003318 *
3319 * If we are in_interrupt, then process context, including cpusets and
3320 * mempolicy, may not apply and should not be used for allocation policy.
3321 */
3322static void *alternate_node_alloc(struct kmem_cache *cachep, gfp_t flags)
3323{
3324 int nid_alloc, nid_here;
3325
Christoph Lameter765c4502006-09-27 01:50:08 -07003326 if (in_interrupt() || (flags & __GFP_THISNODE))
Paul Jacksonc61afb12006-03-24 03:16:08 -08003327 return NULL;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003328 nid_alloc = nid_here = numa_mem_id();
Paul Jacksonc61afb12006-03-24 03:16:08 -08003329 if (cpuset_do_slab_mem_spread() && (cachep->flags & SLAB_MEM_SPREAD))
Jack Steiner6adef3e2010-05-26 14:42:49 -07003330 nid_alloc = cpuset_slab_spread_node();
Paul Jacksonc61afb12006-03-24 03:16:08 -08003331 else if (current->mempolicy)
Andi Kleene7b691b2012-06-09 02:40:03 -07003332 nid_alloc = slab_node();
Paul Jacksonc61afb12006-03-24 03:16:08 -08003333 if (nid_alloc != nid_here)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003334 return ____cache_alloc_node(cachep, flags, nid_alloc);
Paul Jacksonc61afb12006-03-24 03:16:08 -08003335 return NULL;
3336}
3337
3338/*
Christoph Lameter765c4502006-09-27 01:50:08 -07003339 * Fallback function if there was no memory available and no objects on a
Christoph Lameter3c517a62006-12-06 20:33:29 -08003340 * certain node and fall back is permitted. First we scan all the
3341 * available nodelists for available objects. If that fails then we
3342 * perform an allocation without specifying a node. This allows the page
3343 * allocator to do its reclaim / fallback magic. We then insert the
3344 * slab into the proper nodelist and then allocate from it.
Christoph Lameter765c4502006-09-27 01:50:08 -07003345 */
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003346static void *fallback_alloc(struct kmem_cache *cache, gfp_t flags)
Christoph Lameter765c4502006-09-27 01:50:08 -07003347{
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003348 struct zonelist *zonelist;
3349 gfp_t local_flags;
Mel Gormandd1a2392008-04-28 02:12:17 -07003350 struct zoneref *z;
Mel Gorman54a6eb52008-04-28 02:12:16 -07003351 struct zone *zone;
3352 enum zone_type high_zoneidx = gfp_zone(flags);
Christoph Lameter765c4502006-09-27 01:50:08 -07003353 void *obj = NULL;
Christoph Lameter3c517a62006-12-06 20:33:29 -08003354 int nid;
Mel Gormancc9a6c82012-03-21 16:34:11 -07003355 unsigned int cpuset_mems_cookie;
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003356
3357 if (flags & __GFP_THISNODE)
3358 return NULL;
3359
Christoph Lameter6cb06222007-10-16 01:25:41 -07003360 local_flags = flags & (GFP_CONSTRAINT_MASK|GFP_RECLAIM_MASK);
Christoph Lameter765c4502006-09-27 01:50:08 -07003361
Mel Gormancc9a6c82012-03-21 16:34:11 -07003362retry_cpuset:
3363 cpuset_mems_cookie = get_mems_allowed();
Andi Kleene7b691b2012-06-09 02:40:03 -07003364 zonelist = node_zonelist(slab_node(), flags);
Mel Gormancc9a6c82012-03-21 16:34:11 -07003365
Christoph Lameter3c517a62006-12-06 20:33:29 -08003366retry:
3367 /*
3368 * Look through allowed nodes for objects available
3369 * from existing per node queues.
3370 */
Mel Gorman54a6eb52008-04-28 02:12:16 -07003371 for_each_zone_zonelist(zone, z, zonelist, high_zoneidx) {
3372 nid = zone_to_nid(zone);
Christoph Lameteraedb0eb2006-10-21 10:24:16 -07003373
Mel Gorman54a6eb52008-04-28 02:12:16 -07003374 if (cpuset_zone_allowed_hardwall(zone, flags) &&
Christoph Lameter3c517a62006-12-06 20:33:29 -08003375 cache->nodelists[nid] &&
Christoph Lameter481c5342008-06-21 16:46:35 -07003376 cache->nodelists[nid]->free_objects) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003377 obj = ____cache_alloc_node(cache,
3378 flags | GFP_THISNODE, nid);
Christoph Lameter481c5342008-06-21 16:46:35 -07003379 if (obj)
3380 break;
3381 }
Christoph Lameter3c517a62006-12-06 20:33:29 -08003382 }
3383
Christoph Lametercfce6602007-05-06 14:50:17 -07003384 if (!obj) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003385 /*
3386 * This allocation will be performed within the constraints
3387 * of the current cpuset / memory policy requirements.
3388 * We may trigger various forms of reclaim on the allowed
3389 * set and go into memory reserves if necessary.
3390 */
Christoph Lameterdd47ea72006-12-13 00:34:11 -08003391 if (local_flags & __GFP_WAIT)
3392 local_irq_enable();
3393 kmem_flagcheck(cache, flags);
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003394 obj = kmem_getpages(cache, local_flags, numa_mem_id());
Christoph Lameterdd47ea72006-12-13 00:34:11 -08003395 if (local_flags & __GFP_WAIT)
3396 local_irq_disable();
Christoph Lameter3c517a62006-12-06 20:33:29 -08003397 if (obj) {
3398 /*
3399 * Insert into the appropriate per node queues
3400 */
3401 nid = page_to_nid(virt_to_page(obj));
3402 if (cache_grow(cache, flags, nid, obj)) {
3403 obj = ____cache_alloc_node(cache,
3404 flags | GFP_THISNODE, nid);
3405 if (!obj)
3406 /*
3407 * Another processor may allocate the
3408 * objects in the slab since we are
3409 * not holding any locks.
3410 */
3411 goto retry;
3412 } else {
Hugh Dickinsb6a60452007-01-05 16:36:36 -08003413 /* cache_grow already freed obj */
Christoph Lameter3c517a62006-12-06 20:33:29 -08003414 obj = NULL;
3415 }
3416 }
Christoph Lameteraedb0eb2006-10-21 10:24:16 -07003417 }
Mel Gormancc9a6c82012-03-21 16:34:11 -07003418
3419 if (unlikely(!put_mems_allowed(cpuset_mems_cookie) && !obj))
3420 goto retry_cpuset;
Christoph Lameter765c4502006-09-27 01:50:08 -07003421 return obj;
3422}
3423
3424/*
Christoph Lametere498be72005-09-09 13:03:32 -07003425 * A interface to enable slab creation on nodeid
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426 */
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003427static void *____cache_alloc_node(struct kmem_cache *cachep, gfp_t flags,
Andrew Mortona737b3e2006-03-22 00:08:11 -08003428 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07003429{
3430 struct list_head *entry;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003431 struct slab *slabp;
3432 struct kmem_list3 *l3;
3433 void *obj;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003434 int x;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003436 l3 = cachep->nodelists[nodeid];
3437 BUG_ON(!l3);
Christoph Lametere498be72005-09-09 13:03:32 -07003438
Andrew Mortona737b3e2006-03-22 00:08:11 -08003439retry:
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08003440 check_irq_off();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003441 spin_lock(&l3->list_lock);
3442 entry = l3->slabs_partial.next;
3443 if (entry == &l3->slabs_partial) {
3444 l3->free_touched = 1;
3445 entry = l3->slabs_free.next;
3446 if (entry == &l3->slabs_free)
3447 goto must_grow;
3448 }
Christoph Lametere498be72005-09-09 13:03:32 -07003449
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003450 slabp = list_entry(entry, struct slab, list);
3451 check_spinlock_acquired_node(cachep, nodeid);
3452 check_slabp(cachep, slabp);
Christoph Lametere498be72005-09-09 13:03:32 -07003453
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003454 STATS_INC_NODEALLOCS(cachep);
3455 STATS_INC_ACTIVE(cachep);
3456 STATS_SET_HIGH(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003457
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003458 BUG_ON(slabp->inuse == cachep->num);
Christoph Lametere498be72005-09-09 13:03:32 -07003459
Matthew Dobson78d382d2006-02-01 03:05:47 -08003460 obj = slab_get_obj(cachep, slabp, nodeid);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003461 check_slabp(cachep, slabp);
3462 l3->free_objects--;
3463 /* move slabp to correct slabp list: */
3464 list_del(&slabp->list);
Christoph Lametere498be72005-09-09 13:03:32 -07003465
Andrew Mortona737b3e2006-03-22 00:08:11 -08003466 if (slabp->free == BUFCTL_END)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003467 list_add(&slabp->list, &l3->slabs_full);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003468 else
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003469 list_add(&slabp->list, &l3->slabs_partial);
Christoph Lametere498be72005-09-09 13:03:32 -07003470
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003471 spin_unlock(&l3->list_lock);
3472 goto done;
Christoph Lametere498be72005-09-09 13:03:32 -07003473
Andrew Mortona737b3e2006-03-22 00:08:11 -08003474must_grow:
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003475 spin_unlock(&l3->list_lock);
Christoph Lameter3c517a62006-12-06 20:33:29 -08003476 x = cache_grow(cachep, flags | GFP_THISNODE, nodeid, NULL);
Christoph Lameter765c4502006-09-27 01:50:08 -07003477 if (x)
3478 goto retry;
Christoph Lametere498be72005-09-09 13:03:32 -07003479
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003480 return fallback_alloc(cachep, flags);
Christoph Lameter765c4502006-09-27 01:50:08 -07003481
Andrew Mortona737b3e2006-03-22 00:08:11 -08003482done:
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003483 return obj;
Christoph Lametere498be72005-09-09 13:03:32 -07003484}
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003485
3486/**
3487 * kmem_cache_alloc_node - Allocate an object on the specified node
3488 * @cachep: The cache to allocate from.
3489 * @flags: See kmalloc().
3490 * @nodeid: node number of the target node.
3491 * @caller: return address of caller, used for debug information
3492 *
3493 * Identical to kmem_cache_alloc but it will allocate memory on the given
3494 * node, which can improve the performance for cpu bound structures.
3495 *
3496 * Fallback to other node is possible if __GFP_THISNODE is not set.
3497 */
3498static __always_inline void *
Ezequiel Garcia48356302012-09-08 17:47:57 -03003499slab_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003500 unsigned long caller)
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003501{
3502 unsigned long save_flags;
3503 void *ptr;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003504 int slab_node = numa_mem_id();
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003505
Benjamin Herrenschmidtdcce2842009-06-18 13:24:12 +10003506 flags &= gfp_allowed_mask;
Pekka Enberg7e85ee02009-06-12 14:03:06 +03003507
Nick Piggincf40bd12009-01-21 08:12:39 +01003508 lockdep_trace_alloc(flags);
3509
Akinobu Mita773ff602008-12-23 19:37:01 +09003510 if (slab_should_failslab(cachep, flags))
Akinobu Mita824ebef2007-05-06 14:49:58 -07003511 return NULL;
3512
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003513 cache_alloc_debugcheck_before(cachep, flags);
3514 local_irq_save(save_flags);
3515
Andrew Mortoneacbbae2011-07-28 13:59:49 -07003516 if (nodeid == NUMA_NO_NODE)
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003517 nodeid = slab_node;
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003518
3519 if (unlikely(!cachep->nodelists[nodeid])) {
3520 /* Node not bootstrapped yet */
3521 ptr = fallback_alloc(cachep, flags);
3522 goto out;
3523 }
3524
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003525 if (nodeid == slab_node) {
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003526 /*
3527 * Use the locally cached objects if possible.
3528 * However ____cache_alloc does not allow fallback
3529 * to other nodes. It may fail while we still have
3530 * objects on other nodes available.
3531 */
3532 ptr = ____cache_alloc(cachep, flags);
3533 if (ptr)
3534 goto out;
3535 }
3536 /* ___cache_alloc_node can fall back to other nodes */
3537 ptr = ____cache_alloc_node(cachep, flags, nodeid);
3538 out:
3539 local_irq_restore(save_flags);
3540 ptr = cache_alloc_debugcheck_after(cachep, flags, ptr, caller);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003541 kmemleak_alloc_recursive(ptr, cachep->object_size, 1, cachep->flags,
Catalin Marinasd5cff632009-06-11 13:22:40 +01003542 flags);
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003543
Pekka Enbergc175eea2008-05-09 20:35:53 +02003544 if (likely(ptr))
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003545 kmemcheck_slab_alloc(cachep, flags, ptr, cachep->object_size);
Pekka Enbergc175eea2008-05-09 20:35:53 +02003546
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003547 if (unlikely((flags & __GFP_ZERO) && ptr))
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003548 memset(ptr, 0, cachep->object_size);
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003549
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003550 return ptr;
3551}
3552
3553static __always_inline void *
3554__do_cache_alloc(struct kmem_cache *cache, gfp_t flags)
3555{
3556 void *objp;
3557
3558 if (unlikely(current->flags & (PF_SPREAD_SLAB | PF_MEMPOLICY))) {
3559 objp = alternate_node_alloc(cache, flags);
3560 if (objp)
3561 goto out;
3562 }
3563 objp = ____cache_alloc(cache, flags);
3564
3565 /*
3566 * We may just have run out of memory on the local node.
3567 * ____cache_alloc_node() knows how to locate memory on other nodes
3568 */
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003569 if (!objp)
3570 objp = ____cache_alloc_node(cache, flags, numa_mem_id());
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003571
3572 out:
3573 return objp;
3574}
3575#else
3576
3577static __always_inline void *
3578__do_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
3579{
3580 return ____cache_alloc(cachep, flags);
3581}
3582
3583#endif /* CONFIG_NUMA */
3584
3585static __always_inline void *
Ezequiel Garcia48356302012-09-08 17:47:57 -03003586slab_alloc(struct kmem_cache *cachep, gfp_t flags, unsigned long caller)
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003587{
3588 unsigned long save_flags;
3589 void *objp;
3590
Benjamin Herrenschmidtdcce2842009-06-18 13:24:12 +10003591 flags &= gfp_allowed_mask;
Pekka Enberg7e85ee02009-06-12 14:03:06 +03003592
Nick Piggincf40bd12009-01-21 08:12:39 +01003593 lockdep_trace_alloc(flags);
3594
Akinobu Mita773ff602008-12-23 19:37:01 +09003595 if (slab_should_failslab(cachep, flags))
Akinobu Mita824ebef2007-05-06 14:49:58 -07003596 return NULL;
3597
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003598 cache_alloc_debugcheck_before(cachep, flags);
3599 local_irq_save(save_flags);
3600 objp = __do_cache_alloc(cachep, flags);
3601 local_irq_restore(save_flags);
3602 objp = cache_alloc_debugcheck_after(cachep, flags, objp, caller);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003603 kmemleak_alloc_recursive(objp, cachep->object_size, 1, cachep->flags,
Catalin Marinasd5cff632009-06-11 13:22:40 +01003604 flags);
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003605 prefetchw(objp);
3606
Pekka Enbergc175eea2008-05-09 20:35:53 +02003607 if (likely(objp))
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003608 kmemcheck_slab_alloc(cachep, flags, objp, cachep->object_size);
Pekka Enbergc175eea2008-05-09 20:35:53 +02003609
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003610 if (unlikely((flags & __GFP_ZERO) && objp))
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003611 memset(objp, 0, cachep->object_size);
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003612
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003613 return objp;
3614}
Christoph Lametere498be72005-09-09 13:03:32 -07003615
3616/*
3617 * Caller needs to acquire correct kmem_list's list_lock
3618 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003619static void free_block(struct kmem_cache *cachep, void **objpp, int nr_objects,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003620 int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003621{
3622 int i;
Christoph Lametere498be72005-09-09 13:03:32 -07003623 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003624
3625 for (i = 0; i < nr_objects; i++) {
Mel Gorman072bb0a2012-07-31 16:43:58 -07003626 void *objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627 struct slab *slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003628
Mel Gorman072bb0a2012-07-31 16:43:58 -07003629 clear_obj_pfmemalloc(&objpp[i]);
3630 objp = objpp[i];
3631
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -08003632 slabp = virt_to_slab(objp);
Christoph Lameterff694162005-09-22 21:44:02 -07003633 l3 = cachep->nodelists[node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003634 list_del(&slabp->list);
Christoph Lameterff694162005-09-22 21:44:02 -07003635 check_spinlock_acquired_node(cachep, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003636 check_slabp(cachep, slabp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08003637 slab_put_obj(cachep, slabp, objp, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003638 STATS_DEC_ACTIVE(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003639 l3->free_objects++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003640 check_slabp(cachep, slabp);
3641
3642 /* fixup slab chains */
3643 if (slabp->inuse == 0) {
Christoph Lametere498be72005-09-09 13:03:32 -07003644 if (l3->free_objects > l3->free_limit) {
3645 l3->free_objects -= cachep->num;
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07003646 /* No need to drop any previously held
3647 * lock here, even if we have a off-slab slab
3648 * descriptor it is guaranteed to come from
3649 * a different cache, refer to comments before
3650 * alloc_slabmgmt.
3651 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003652 slab_destroy(cachep, slabp);
3653 } else {
Christoph Lametere498be72005-09-09 13:03:32 -07003654 list_add(&slabp->list, &l3->slabs_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003655 }
3656 } else {
3657 /* Unconditionally move a slab to the end of the
3658 * partial list on free - maximum time for the
3659 * other objects to be freed, too.
3660 */
Christoph Lametere498be72005-09-09 13:03:32 -07003661 list_add_tail(&slabp->list, &l3->slabs_partial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003662 }
3663 }
3664}
3665
Pekka Enberg343e0d72006-02-01 03:05:50 -08003666static void cache_flusharray(struct kmem_cache *cachep, struct array_cache *ac)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003667{
3668 int batchcount;
Christoph Lametere498be72005-09-09 13:03:32 -07003669 struct kmem_list3 *l3;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003670 int node = numa_mem_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003671
3672 batchcount = ac->batchcount;
3673#if DEBUG
3674 BUG_ON(!batchcount || batchcount > ac->avail);
3675#endif
3676 check_irq_off();
Christoph Lameterff694162005-09-22 21:44:02 -07003677 l3 = cachep->nodelists[node];
Ingo Molnar873623d2006-07-13 14:44:38 +02003678 spin_lock(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07003679 if (l3->shared) {
3680 struct array_cache *shared_array = l3->shared;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003681 int max = shared_array->limit - shared_array->avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003682 if (max) {
3683 if (batchcount > max)
3684 batchcount = max;
Christoph Lametere498be72005-09-09 13:03:32 -07003685 memcpy(&(shared_array->entry[shared_array->avail]),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003686 ac->entry, sizeof(void *) * batchcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003687 shared_array->avail += batchcount;
3688 goto free_done;
3689 }
3690 }
3691
Christoph Lameterff694162005-09-22 21:44:02 -07003692 free_block(cachep, ac->entry, batchcount, node);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003693free_done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003694#if STATS
3695 {
3696 int i = 0;
3697 struct list_head *p;
3698
Christoph Lametere498be72005-09-09 13:03:32 -07003699 p = l3->slabs_free.next;
3700 while (p != &(l3->slabs_free)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701 struct slab *slabp;
3702
3703 slabp = list_entry(p, struct slab, list);
3704 BUG_ON(slabp->inuse);
3705
3706 i++;
3707 p = p->next;
3708 }
3709 STATS_SET_FREEABLE(cachep, i);
3710 }
3711#endif
Christoph Lametere498be72005-09-09 13:03:32 -07003712 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003713 ac->avail -= batchcount;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003714 memmove(ac->entry, &(ac->entry[batchcount]), sizeof(void *)*ac->avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003715}
3716
3717/*
Andrew Mortona737b3e2006-03-22 00:08:11 -08003718 * Release an obj back to its cache. If the obj has a constructed state, it must
3719 * be in this state _before_ it is released. Called with disabled ints.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003720 */
Suleiman Souhlala947eb92011-06-02 00:16:42 -07003721static inline void __cache_free(struct kmem_cache *cachep, void *objp,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003722 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003723{
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003724 struct array_cache *ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003725
3726 check_irq_off();
Catalin Marinasd5cff632009-06-11 13:22:40 +01003727 kmemleak_free_recursive(objp, cachep->flags);
Suleiman Souhlala947eb92011-06-02 00:16:42 -07003728 objp = cache_free_debugcheck(cachep, objp, caller);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003729
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003730 kmemcheck_slab_free(cachep, objp, cachep->object_size);
Pekka Enbergc175eea2008-05-09 20:35:53 +02003731
Siddha, Suresh B1807a1a2007-08-22 14:01:49 -07003732 /*
3733 * Skip calling cache_free_alien() when the platform is not numa.
3734 * This will avoid cache misses that happen while accessing slabp (which
3735 * is per page memory reference) to get nodeid. Instead use a global
3736 * variable to skip the call, which is mostly likely to be present in
3737 * the cache.
3738 */
Mel Gormanb6e68bc2009-06-16 15:32:16 -07003739 if (nr_online_nodes > 1 && cache_free_alien(cachep, objp))
Pekka Enberg729bd0b2006-06-23 02:03:05 -07003740 return;
Christoph Lametere498be72005-09-09 13:03:32 -07003741
Linus Torvalds1da177e2005-04-16 15:20:36 -07003742 if (likely(ac->avail < ac->limit)) {
3743 STATS_INC_FREEHIT(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003744 } else {
3745 STATS_INC_FREEMISS(cachep);
3746 cache_flusharray(cachep, ac);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747 }
Zhao Jin42c8c992011-08-27 00:26:17 +08003748
Mel Gorman072bb0a2012-07-31 16:43:58 -07003749 ac_put_obj(cachep, ac, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003750}
3751
3752/**
3753 * kmem_cache_alloc - Allocate an object
3754 * @cachep: The cache to allocate from.
3755 * @flags: See kmalloc().
3756 *
3757 * Allocate an object from this cache. The flags are only relevant
3758 * if the cache has no available objects.
3759 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003760void *kmem_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761{
Ezequiel Garcia48356302012-09-08 17:47:57 -03003762 void *ret = slab_alloc(cachep, flags, _RET_IP_);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003763
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003764 trace_kmem_cache_alloc(_RET_IP_, ret,
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003765 cachep->object_size, cachep->size, flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003766
3767 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768}
3769EXPORT_SYMBOL(kmem_cache_alloc);
3770
Li Zefan0f24f122009-12-11 15:45:30 +08003771#ifdef CONFIG_TRACING
Steven Rostedt85beb582010-11-24 16:23:34 -05003772void *
Ezequiel Garcia40521472012-09-08 17:47:56 -03003773kmem_cache_alloc_trace(struct kmem_cache *cachep, gfp_t flags, size_t size)
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003774{
Steven Rostedt85beb582010-11-24 16:23:34 -05003775 void *ret;
3776
Ezequiel Garcia48356302012-09-08 17:47:57 -03003777 ret = slab_alloc(cachep, flags, _RET_IP_);
Steven Rostedt85beb582010-11-24 16:23:34 -05003778
3779 trace_kmalloc(_RET_IP_, ret,
Ezequiel Garciaff4fcd02012-09-08 17:47:52 -03003780 size, cachep->size, flags);
Steven Rostedt85beb582010-11-24 16:23:34 -05003781 return ret;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003782}
Steven Rostedt85beb582010-11-24 16:23:34 -05003783EXPORT_SYMBOL(kmem_cache_alloc_trace);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003784#endif
3785
Linus Torvalds1da177e2005-04-16 15:20:36 -07003786#ifdef CONFIG_NUMA
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003787void *kmem_cache_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid)
3788{
Ezequiel Garcia48356302012-09-08 17:47:57 -03003789 void *ret = slab_alloc_node(cachep, flags, nodeid, _RET_IP_);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003790
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003791 trace_kmem_cache_alloc_node(_RET_IP_, ret,
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003792 cachep->object_size, cachep->size,
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003793 flags, nodeid);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003794
3795 return ret;
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003796}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797EXPORT_SYMBOL(kmem_cache_alloc_node);
3798
Li Zefan0f24f122009-12-11 15:45:30 +08003799#ifdef CONFIG_TRACING
Ezequiel Garcia40521472012-09-08 17:47:56 -03003800void *kmem_cache_alloc_node_trace(struct kmem_cache *cachep,
Steven Rostedt85beb582010-11-24 16:23:34 -05003801 gfp_t flags,
Ezequiel Garcia40521472012-09-08 17:47:56 -03003802 int nodeid,
3803 size_t size)
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003804{
Steven Rostedt85beb582010-11-24 16:23:34 -05003805 void *ret;
3806
Ezequiel Garcia592f4142012-09-25 08:07:08 -03003807 ret = slab_alloc_node(cachep, flags, nodeid, _RET_IP_);
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003808
Steven Rostedt85beb582010-11-24 16:23:34 -05003809 trace_kmalloc_node(_RET_IP_, ret,
Ezequiel Garciaff4fcd02012-09-08 17:47:52 -03003810 size, cachep->size,
Steven Rostedt85beb582010-11-24 16:23:34 -05003811 flags, nodeid);
3812 return ret;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003813}
Steven Rostedt85beb582010-11-24 16:23:34 -05003814EXPORT_SYMBOL(kmem_cache_alloc_node_trace);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003815#endif
3816
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003817static __always_inline void *
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003818__do_kmalloc_node(size_t size, gfp_t flags, int node, unsigned long caller)
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003819{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003820 struct kmem_cache *cachep;
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003821
3822 cachep = kmem_find_general_cachep(size, flags);
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003823 if (unlikely(ZERO_OR_NULL_PTR(cachep)))
3824 return cachep;
Ezequiel Garcia40521472012-09-08 17:47:56 -03003825 return kmem_cache_alloc_node_trace(cachep, flags, node, size);
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003826}
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003827
Li Zefan0bb38a52009-12-11 15:45:50 +08003828#if defined(CONFIG_DEBUG_SLAB) || defined(CONFIG_TRACING)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003829void *__kmalloc_node(size_t size, gfp_t flags, int node)
3830{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003831 return __do_kmalloc_node(size, flags, node, _RET_IP_);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003832}
Christoph Hellwigdbe5e692006-09-25 23:31:36 -07003833EXPORT_SYMBOL(__kmalloc_node);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003834
3835void *__kmalloc_node_track_caller(size_t size, gfp_t flags,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003836 int node, unsigned long caller)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003837{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003838 return __do_kmalloc_node(size, flags, node, caller);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003839}
3840EXPORT_SYMBOL(__kmalloc_node_track_caller);
3841#else
3842void *__kmalloc_node(size_t size, gfp_t flags, int node)
3843{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003844 return __do_kmalloc_node(size, flags, node, 0);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003845}
3846EXPORT_SYMBOL(__kmalloc_node);
Li Zefan0bb38a52009-12-11 15:45:50 +08003847#endif /* CONFIG_DEBUG_SLAB || CONFIG_TRACING */
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003848#endif /* CONFIG_NUMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003849
3850/**
Paul Drynoff800590f2006-06-23 02:03:48 -07003851 * __do_kmalloc - allocate memory
Linus Torvalds1da177e2005-04-16 15:20:36 -07003852 * @size: how many bytes of memory are required.
Paul Drynoff800590f2006-06-23 02:03:48 -07003853 * @flags: the type of memory to allocate (see kmalloc).
Randy Dunlap911851e2006-03-22 00:08:14 -08003854 * @caller: function caller for debug tracking of the caller
Linus Torvalds1da177e2005-04-16 15:20:36 -07003855 */
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003856static __always_inline void *__do_kmalloc(size_t size, gfp_t flags,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003857 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003858{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003859 struct kmem_cache *cachep;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003860 void *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003861
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003862 /* If you want to save a few bytes .text space: replace
3863 * __ with kmem_.
3864 * Then kmalloc uses the uninlined functions instead of the inline
3865 * functions.
3866 */
3867 cachep = __find_general_cachep(size, flags);
Linus Torvaldsa5c96d82007-07-19 13:17:15 -07003868 if (unlikely(ZERO_OR_NULL_PTR(cachep)))
3869 return cachep;
Ezequiel Garcia48356302012-09-08 17:47:57 -03003870 ret = slab_alloc(cachep, flags, caller);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003871
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003872 trace_kmalloc(caller, ret,
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003873 size, cachep->size, flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003874
3875 return ret;
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003876}
3877
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003878
Li Zefan0bb38a52009-12-11 15:45:50 +08003879#if defined(CONFIG_DEBUG_SLAB) || defined(CONFIG_TRACING)
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003880void *__kmalloc(size_t size, gfp_t flags)
3881{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003882 return __do_kmalloc(size, flags, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003883}
3884EXPORT_SYMBOL(__kmalloc);
3885
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003886void *__kmalloc_track_caller(size_t size, gfp_t flags, unsigned long caller)
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003887{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003888 return __do_kmalloc(size, flags, caller);
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003889}
3890EXPORT_SYMBOL(__kmalloc_track_caller);
Christoph Hellwig1d2c8ee2006-10-04 02:15:25 -07003891
3892#else
3893void *__kmalloc(size_t size, gfp_t flags)
3894{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003895 return __do_kmalloc(size, flags, 0);
Christoph Hellwig1d2c8ee2006-10-04 02:15:25 -07003896}
3897EXPORT_SYMBOL(__kmalloc);
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003898#endif
3899
Linus Torvalds1da177e2005-04-16 15:20:36 -07003900/**
3901 * kmem_cache_free - Deallocate an object
3902 * @cachep: The cache the allocation was from.
3903 * @objp: The previously allocated object.
3904 *
3905 * Free an object which was previously allocated from this
3906 * cache.
3907 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003908void kmem_cache_free(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909{
3910 unsigned long flags;
3911
3912 local_irq_save(flags);
Feng Tangd97d4762012-07-02 14:29:10 +08003913 debug_check_no_locks_freed(objp, cachep->object_size);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -07003914 if (!(cachep->flags & SLAB_DEBUG_OBJECTS))
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003915 debug_check_no_obj_freed(objp, cachep->object_size);
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003916 __cache_free(cachep, objp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003917 local_irq_restore(flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003918
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003919 trace_kmem_cache_free(_RET_IP_, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003920}
3921EXPORT_SYMBOL(kmem_cache_free);
3922
3923/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003924 * kfree - free previously allocated memory
3925 * @objp: pointer returned by kmalloc.
3926 *
Pekka Enberg80e93ef2005-09-09 13:10:16 -07003927 * If @objp is NULL, no operation is performed.
3928 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929 * Don't free memory not originally allocated by kmalloc()
3930 * or you will run into trouble.
3931 */
3932void kfree(const void *objp)
3933{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003934 struct kmem_cache *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003935 unsigned long flags;
3936
Pekka Enberg2121db72009-03-25 11:05:57 +02003937 trace_kfree(_RET_IP_, objp);
3938
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003939 if (unlikely(ZERO_OR_NULL_PTR(objp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940 return;
3941 local_irq_save(flags);
3942 kfree_debugcheck(objp);
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -08003943 c = virt_to_cache(objp);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003944 debug_check_no_locks_freed(objp, c->object_size);
3945
3946 debug_check_no_obj_freed(objp, c->object_size);
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003947 __cache_free(c, (void *)objp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948 local_irq_restore(flags);
3949}
3950EXPORT_SYMBOL(kfree);
3951
Christoph Lametere498be72005-09-09 13:03:32 -07003952/*
Simon Arlott183ff222007-10-20 01:27:18 +02003953 * This initializes kmem_list3 or resizes various caches for all nodes.
Christoph Lametere498be72005-09-09 13:03:32 -07003954 */
Pekka Enberg83b519e2009-06-10 19:40:04 +03003955static int alloc_kmemlist(struct kmem_cache *cachep, gfp_t gfp)
Christoph Lametere498be72005-09-09 13:03:32 -07003956{
3957 int node;
3958 struct kmem_list3 *l3;
Christoph Lametercafeb022006-03-25 03:06:46 -08003959 struct array_cache *new_shared;
Paul Menage3395ee02006-12-06 20:32:16 -08003960 struct array_cache **new_alien = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07003961
Mel Gorman9c09a952008-01-24 05:49:54 -08003962 for_each_online_node(node) {
Christoph Lametercafeb022006-03-25 03:06:46 -08003963
Paul Menage3395ee02006-12-06 20:32:16 -08003964 if (use_alien_caches) {
Pekka Enberg83b519e2009-06-10 19:40:04 +03003965 new_alien = alloc_alien_cache(node, cachep->limit, gfp);
Paul Menage3395ee02006-12-06 20:32:16 -08003966 if (!new_alien)
3967 goto fail;
3968 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003969
Eric Dumazet63109842007-05-06 14:49:28 -07003970 new_shared = NULL;
3971 if (cachep->shared) {
3972 new_shared = alloc_arraycache(node,
Christoph Lameter0718dc22006-03-25 03:06:47 -08003973 cachep->shared*cachep->batchcount,
Pekka Enberg83b519e2009-06-10 19:40:04 +03003974 0xbaadf00d, gfp);
Eric Dumazet63109842007-05-06 14:49:28 -07003975 if (!new_shared) {
3976 free_alien_cache(new_alien);
3977 goto fail;
3978 }
Christoph Lameter0718dc22006-03-25 03:06:47 -08003979 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003980
Andrew Mortona737b3e2006-03-22 00:08:11 -08003981 l3 = cachep->nodelists[node];
3982 if (l3) {
Christoph Lametercafeb022006-03-25 03:06:46 -08003983 struct array_cache *shared = l3->shared;
3984
Christoph Lametere498be72005-09-09 13:03:32 -07003985 spin_lock_irq(&l3->list_lock);
3986
Christoph Lametercafeb022006-03-25 03:06:46 -08003987 if (shared)
Christoph Lameter0718dc22006-03-25 03:06:47 -08003988 free_block(cachep, shared->entry,
3989 shared->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -07003990
Christoph Lametercafeb022006-03-25 03:06:46 -08003991 l3->shared = new_shared;
3992 if (!l3->alien) {
Christoph Lametere498be72005-09-09 13:03:32 -07003993 l3->alien = new_alien;
3994 new_alien = NULL;
3995 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003996 l3->free_limit = (1 + nr_cpus_node(node)) *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003997 cachep->batchcount + cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07003998 spin_unlock_irq(&l3->list_lock);
Christoph Lametercafeb022006-03-25 03:06:46 -08003999 kfree(shared);
Christoph Lametere498be72005-09-09 13:03:32 -07004000 free_alien_cache(new_alien);
4001 continue;
4002 }
Pekka Enberg83b519e2009-06-10 19:40:04 +03004003 l3 = kmalloc_node(sizeof(struct kmem_list3), gfp, node);
Christoph Lameter0718dc22006-03-25 03:06:47 -08004004 if (!l3) {
4005 free_alien_cache(new_alien);
4006 kfree(new_shared);
Christoph Lametere498be72005-09-09 13:03:32 -07004007 goto fail;
Christoph Lameter0718dc22006-03-25 03:06:47 -08004008 }
Christoph Lametere498be72005-09-09 13:03:32 -07004009
4010 kmem_list3_init(l3);
4011 l3->next_reap = jiffies + REAPTIMEOUT_LIST3 +
Andrew Mortona737b3e2006-03-22 00:08:11 -08004012 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
Christoph Lametercafeb022006-03-25 03:06:46 -08004013 l3->shared = new_shared;
Christoph Lametere498be72005-09-09 13:03:32 -07004014 l3->alien = new_alien;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004015 l3->free_limit = (1 + nr_cpus_node(node)) *
Andrew Mortona737b3e2006-03-22 00:08:11 -08004016 cachep->batchcount + cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07004017 cachep->nodelists[node] = l3;
4018 }
Christoph Lametercafeb022006-03-25 03:06:46 -08004019 return 0;
Christoph Lameter0718dc22006-03-25 03:06:47 -08004020
Andrew Mortona737b3e2006-03-22 00:08:11 -08004021fail:
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05004022 if (!cachep->list.next) {
Christoph Lameter0718dc22006-03-25 03:06:47 -08004023 /* Cache is not active yet. Roll back what we did */
4024 node--;
4025 while (node >= 0) {
4026 if (cachep->nodelists[node]) {
4027 l3 = cachep->nodelists[node];
4028
4029 kfree(l3->shared);
4030 free_alien_cache(l3->alien);
4031 kfree(l3);
4032 cachep->nodelists[node] = NULL;
4033 }
4034 node--;
4035 }
4036 }
Christoph Lametercafeb022006-03-25 03:06:46 -08004037 return -ENOMEM;
Christoph Lametere498be72005-09-09 13:03:32 -07004038}
4039
Linus Torvalds1da177e2005-04-16 15:20:36 -07004040struct ccupdate_struct {
Pekka Enberg343e0d72006-02-01 03:05:50 -08004041 struct kmem_cache *cachep;
Eric Dumazetacfe7d72011-07-25 08:55:42 +02004042 struct array_cache *new[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043};
4044
4045static void do_ccupdate_local(void *info)
4046{
Andrew Mortona737b3e2006-03-22 00:08:11 -08004047 struct ccupdate_struct *new = info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004048 struct array_cache *old;
4049
4050 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08004051 old = cpu_cache_get(new->cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07004052
Linus Torvalds1da177e2005-04-16 15:20:36 -07004053 new->cachep->array[smp_processor_id()] = new->new[smp_processor_id()];
4054 new->new[smp_processor_id()] = old;
4055}
4056
Christoph Lameter18004c52012-07-06 15:25:12 -05004057/* Always called with the slab_mutex held */
Andrew Mortona737b3e2006-03-22 00:08:11 -08004058static int do_tune_cpucache(struct kmem_cache *cachep, int limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03004059 int batchcount, int shared, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004060{
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004061 struct ccupdate_struct *new;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07004062 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004063
Eric Dumazetacfe7d72011-07-25 08:55:42 +02004064 new = kzalloc(sizeof(*new) + nr_cpu_ids * sizeof(struct array_cache *),
4065 gfp);
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004066 if (!new)
4067 return -ENOMEM;
4068
Christoph Lametere498be72005-09-09 13:03:32 -07004069 for_each_online_cpu(i) {
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07004070 new->new[i] = alloc_arraycache(cpu_to_mem(i), limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03004071 batchcount, gfp);
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004072 if (!new->new[i]) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004073 for (i--; i >= 0; i--)
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004074 kfree(new->new[i]);
4075 kfree(new);
Christoph Lametere498be72005-09-09 13:03:32 -07004076 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004077 }
4078 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004079 new->cachep = cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004080
Jens Axboe15c8b6c2008-05-09 09:39:44 +02004081 on_each_cpu(do_ccupdate_local, (void *)new, 1);
Christoph Lametere498be72005-09-09 13:03:32 -07004082
Linus Torvalds1da177e2005-04-16 15:20:36 -07004083 check_irq_on();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004084 cachep->batchcount = batchcount;
4085 cachep->limit = limit;
Christoph Lametere498be72005-09-09 13:03:32 -07004086 cachep->shared = shared;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004087
Christoph Lametere498be72005-09-09 13:03:32 -07004088 for_each_online_cpu(i) {
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004089 struct array_cache *ccold = new->new[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004090 if (!ccold)
4091 continue;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07004092 spin_lock_irq(&cachep->nodelists[cpu_to_mem(i)]->list_lock);
4093 free_block(cachep, ccold->entry, ccold->avail, cpu_to_mem(i));
4094 spin_unlock_irq(&cachep->nodelists[cpu_to_mem(i)]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004095 kfree(ccold);
4096 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004097 kfree(new);
Pekka Enberg83b519e2009-06-10 19:40:04 +03004098 return alloc_kmemlist(cachep, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004099}
4100
Christoph Lameter18004c52012-07-06 15:25:12 -05004101/* Called with slab_mutex held always */
Pekka Enberg83b519e2009-06-10 19:40:04 +03004102static int enable_cpucache(struct kmem_cache *cachep, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004103{
4104 int err;
4105 int limit, shared;
4106
Andrew Mortona737b3e2006-03-22 00:08:11 -08004107 /*
4108 * The head array serves three purposes:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004109 * - create a LIFO ordering, i.e. return objects that are cache-warm
4110 * - reduce the number of spinlock operations.
Andrew Mortona737b3e2006-03-22 00:08:11 -08004111 * - reduce the number of linked list operations on the slab and
Linus Torvalds1da177e2005-04-16 15:20:36 -07004112 * bufctl chains: array operations are cheaper.
4113 * The numbers are guessed, we should auto-tune as described by
4114 * Bonwick.
4115 */
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05004116 if (cachep->size > 131072)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004117 limit = 1;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05004118 else if (cachep->size > PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004119 limit = 8;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05004120 else if (cachep->size > 1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004121 limit = 24;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05004122 else if (cachep->size > 256)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004123 limit = 54;
4124 else
4125 limit = 120;
4126
Andrew Mortona737b3e2006-03-22 00:08:11 -08004127 /*
4128 * CPU bound tasks (e.g. network routing) can exhibit cpu bound
Linus Torvalds1da177e2005-04-16 15:20:36 -07004129 * allocation behaviour: Most allocs on one cpu, most free operations
4130 * on another cpu. For these cases, an efficient object passing between
4131 * cpus is necessary. This is provided by a shared array. The array
4132 * replaces Bonwick's magazine layer.
4133 * On uniprocessor, it's functionally equivalent (but less efficient)
4134 * to a larger limit. Thus disabled by default.
4135 */
4136 shared = 0;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05004137 if (cachep->size <= PAGE_SIZE && num_possible_cpus() > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004138 shared = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004139
4140#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08004141 /*
4142 * With debugging enabled, large batchcount lead to excessively long
4143 * periods with disabled local interrupts. Limit the batchcount
Linus Torvalds1da177e2005-04-16 15:20:36 -07004144 */
4145 if (limit > 32)
4146 limit = 32;
4147#endif
Pekka Enberg83b519e2009-06-10 19:40:04 +03004148 err = do_tune_cpucache(cachep, limit, (limit + 1) / 2, shared, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004149 if (err)
4150 printk(KERN_ERR "enable_cpucache failed for %s, error %d.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004151 cachep->name, -err);
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07004152 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004153}
4154
Christoph Lameter1b552532006-03-22 00:09:07 -08004155/*
4156 * Drain an array if it contains any elements taking the l3 lock only if
Christoph Lameterb18e7e62006-03-22 00:09:07 -08004157 * necessary. Note that the l3 listlock also protects the array_cache
4158 * if drain_array() is used on the shared array.
Christoph Lameter1b552532006-03-22 00:09:07 -08004159 */
H Hartley Sweeten68a1b192011-01-11 17:49:32 -06004160static void drain_array(struct kmem_cache *cachep, struct kmem_list3 *l3,
Christoph Lameter1b552532006-03-22 00:09:07 -08004161 struct array_cache *ac, int force, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004162{
4163 int tofree;
4164
Christoph Lameter1b552532006-03-22 00:09:07 -08004165 if (!ac || !ac->avail)
4166 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004167 if (ac->touched && !force) {
4168 ac->touched = 0;
Christoph Lameterb18e7e62006-03-22 00:09:07 -08004169 } else {
Christoph Lameter1b552532006-03-22 00:09:07 -08004170 spin_lock_irq(&l3->list_lock);
Christoph Lameterb18e7e62006-03-22 00:09:07 -08004171 if (ac->avail) {
4172 tofree = force ? ac->avail : (ac->limit + 4) / 5;
4173 if (tofree > ac->avail)
4174 tofree = (ac->avail + 1) / 2;
4175 free_block(cachep, ac->entry, tofree, node);
4176 ac->avail -= tofree;
4177 memmove(ac->entry, &(ac->entry[tofree]),
4178 sizeof(void *) * ac->avail);
4179 }
Christoph Lameter1b552532006-03-22 00:09:07 -08004180 spin_unlock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004181 }
4182}
4183
4184/**
4185 * cache_reap - Reclaim memory from caches.
Randy Dunlap05fb6bf2007-02-28 20:12:13 -08004186 * @w: work descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -07004187 *
4188 * Called from workqueue/eventd every few seconds.
4189 * Purpose:
4190 * - clear the per-cpu caches for this CPU.
4191 * - return freeable pages to the main free memory pool.
4192 *
Andrew Mortona737b3e2006-03-22 00:08:11 -08004193 * If we cannot acquire the cache chain mutex then just give up - we'll try
4194 * again on the next iteration.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004195 */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004196static void cache_reap(struct work_struct *w)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004197{
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004198 struct kmem_cache *searchp;
Christoph Lametere498be72005-09-09 13:03:32 -07004199 struct kmem_list3 *l3;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07004200 int node = numa_mem_id();
Jean Delvarebf6aede2009-04-02 16:56:54 -07004201 struct delayed_work *work = to_delayed_work(w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004202
Christoph Lameter18004c52012-07-06 15:25:12 -05004203 if (!mutex_trylock(&slab_mutex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004204 /* Give up. Setup the next iteration. */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004205 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004206
Christoph Lameter18004c52012-07-06 15:25:12 -05004207 list_for_each_entry(searchp, &slab_caches, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004208 check_irq_on();
4209
Christoph Lameter35386e32006-03-22 00:09:05 -08004210 /*
4211 * We only take the l3 lock if absolutely necessary and we
4212 * have established with reasonable certainty that
4213 * we can do some work if the lock was obtained.
4214 */
Christoph Lameteraab22072006-03-22 00:09:06 -08004215 l3 = searchp->nodelists[node];
Christoph Lameter35386e32006-03-22 00:09:05 -08004216
Christoph Lameter8fce4d82006-03-09 17:33:54 -08004217 reap_alien(searchp, l3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004218
Christoph Lameteraab22072006-03-22 00:09:06 -08004219 drain_array(searchp, l3, cpu_cache_get(searchp), 0, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004220
Christoph Lameter35386e32006-03-22 00:09:05 -08004221 /*
4222 * These are racy checks but it does not matter
4223 * if we skip one check or scan twice.
4224 */
Christoph Lametere498be72005-09-09 13:03:32 -07004225 if (time_after(l3->next_reap, jiffies))
Christoph Lameter35386e32006-03-22 00:09:05 -08004226 goto next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004227
Christoph Lametere498be72005-09-09 13:03:32 -07004228 l3->next_reap = jiffies + REAPTIMEOUT_LIST3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004229
Christoph Lameteraab22072006-03-22 00:09:06 -08004230 drain_array(searchp, l3, l3->shared, 0, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004231
Christoph Lametered11d9e2006-06-30 01:55:45 -07004232 if (l3->free_touched)
Christoph Lametere498be72005-09-09 13:03:32 -07004233 l3->free_touched = 0;
Christoph Lametered11d9e2006-06-30 01:55:45 -07004234 else {
4235 int freed;
4236
4237 freed = drain_freelist(searchp, l3, (l3->free_limit +
4238 5 * searchp->num - 1) / (5 * searchp->num));
4239 STATS_ADD_REAPED(searchp, freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004240 }
Christoph Lameter35386e32006-03-22 00:09:05 -08004241next:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004242 cond_resched();
4243 }
4244 check_irq_on();
Christoph Lameter18004c52012-07-06 15:25:12 -05004245 mutex_unlock(&slab_mutex);
Christoph Lameter8fce4d82006-03-09 17:33:54 -08004246 next_reap_node();
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004247out:
Andrew Mortona737b3e2006-03-22 00:08:11 -08004248 /* Set up the next iteration */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004249 schedule_delayed_work(work, round_jiffies_relative(REAPTIMEOUT_CPUC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004250}
4251
Linus Torvalds158a9622008-01-02 13:04:48 -08004252#ifdef CONFIG_SLABINFO
Glauber Costa0d7561c2012-10-19 18:20:27 +04004253void get_slabinfo(struct kmem_cache *cachep, struct slabinfo *sinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004254{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004255 struct slab *slabp;
4256 unsigned long active_objs;
4257 unsigned long num_objs;
4258 unsigned long active_slabs = 0;
4259 unsigned long num_slabs, free_objects = 0, shared_avail = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07004260 const char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004261 char *error = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07004262 int node;
4263 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004264
Linus Torvalds1da177e2005-04-16 15:20:36 -07004265 active_objs = 0;
4266 num_slabs = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07004267 for_each_online_node(node) {
4268 l3 = cachep->nodelists[node];
4269 if (!l3)
4270 continue;
4271
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08004272 check_irq_on();
4273 spin_lock_irq(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07004274
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004275 list_for_each_entry(slabp, &l3->slabs_full, list) {
Christoph Lametere498be72005-09-09 13:03:32 -07004276 if (slabp->inuse != cachep->num && !error)
4277 error = "slabs_full accounting error";
4278 active_objs += cachep->num;
4279 active_slabs++;
4280 }
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004281 list_for_each_entry(slabp, &l3->slabs_partial, list) {
Christoph Lametere498be72005-09-09 13:03:32 -07004282 if (slabp->inuse == cachep->num && !error)
4283 error = "slabs_partial inuse accounting error";
4284 if (!slabp->inuse && !error)
4285 error = "slabs_partial/inuse accounting error";
4286 active_objs += slabp->inuse;
4287 active_slabs++;
4288 }
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004289 list_for_each_entry(slabp, &l3->slabs_free, list) {
Christoph Lametere498be72005-09-09 13:03:32 -07004290 if (slabp->inuse && !error)
4291 error = "slabs_free/inuse accounting error";
4292 num_slabs++;
4293 }
4294 free_objects += l3->free_objects;
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08004295 if (l3->shared)
4296 shared_avail += l3->shared->avail;
Christoph Lametere498be72005-09-09 13:03:32 -07004297
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08004298 spin_unlock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004299 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004300 num_slabs += active_slabs;
4301 num_objs = num_slabs * cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07004302 if (num_objs - active_objs != free_objects && !error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004303 error = "free_objects accounting error";
4304
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004305 name = cachep->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004306 if (error)
4307 printk(KERN_ERR "slab: cache %s error: %s\n", name, error);
4308
Glauber Costa0d7561c2012-10-19 18:20:27 +04004309 sinfo->active_objs = active_objs;
4310 sinfo->num_objs = num_objs;
4311 sinfo->active_slabs = active_slabs;
4312 sinfo->num_slabs = num_slabs;
4313 sinfo->shared_avail = shared_avail;
4314 sinfo->limit = cachep->limit;
4315 sinfo->batchcount = cachep->batchcount;
4316 sinfo->shared = cachep->shared;
4317 sinfo->objects_per_slab = cachep->num;
4318 sinfo->cache_order = cachep->gfporder;
4319}
4320
4321void slabinfo_show_stats(struct seq_file *m, struct kmem_cache *cachep)
4322{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004323#if STATS
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004324 { /* list3 stats */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004325 unsigned long high = cachep->high_mark;
4326 unsigned long allocs = cachep->num_allocations;
4327 unsigned long grown = cachep->grown;
4328 unsigned long reaped = cachep->reaped;
4329 unsigned long errors = cachep->errors;
4330 unsigned long max_freeable = cachep->max_freeable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004331 unsigned long node_allocs = cachep->node_allocs;
Christoph Lametere498be72005-09-09 13:03:32 -07004332 unsigned long node_frees = cachep->node_frees;
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -07004333 unsigned long overflows = cachep->node_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004334
Joe Perchese92dd4f2010-03-26 19:27:58 -07004335 seq_printf(m, " : globalstat %7lu %6lu %5lu %4lu "
4336 "%4lu %4lu %4lu %4lu %4lu",
4337 allocs, high, grown,
4338 reaped, errors, max_freeable, node_allocs,
4339 node_frees, overflows);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004340 }
4341 /* cpu stats */
4342 {
4343 unsigned long allochit = atomic_read(&cachep->allochit);
4344 unsigned long allocmiss = atomic_read(&cachep->allocmiss);
4345 unsigned long freehit = atomic_read(&cachep->freehit);
4346 unsigned long freemiss = atomic_read(&cachep->freemiss);
4347
4348 seq_printf(m, " : cpustat %6lu %6lu %6lu %6lu",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004349 allochit, allocmiss, freehit, freemiss);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004350 }
4351#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004352}
4353
Linus Torvalds1da177e2005-04-16 15:20:36 -07004354#define MAX_SLABINFO_WRITE 128
4355/**
4356 * slabinfo_write - Tuning for the slab allocator
4357 * @file: unused
4358 * @buffer: user buffer
4359 * @count: data length
4360 * @ppos: unused
4361 */
Glauber Costab7454ad2012-10-19 18:20:25 +04004362ssize_t slabinfo_write(struct file *file, const char __user *buffer,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004363 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004364{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004365 char kbuf[MAX_SLABINFO_WRITE + 1], *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004366 int limit, batchcount, shared, res;
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004367 struct kmem_cache *cachep;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004368
Linus Torvalds1da177e2005-04-16 15:20:36 -07004369 if (count > MAX_SLABINFO_WRITE)
4370 return -EINVAL;
4371 if (copy_from_user(&kbuf, buffer, count))
4372 return -EFAULT;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004373 kbuf[MAX_SLABINFO_WRITE] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07004374
4375 tmp = strchr(kbuf, ' ');
4376 if (!tmp)
4377 return -EINVAL;
4378 *tmp = '\0';
4379 tmp++;
4380 if (sscanf(tmp, " %d %d %d", &limit, &batchcount, &shared) != 3)
4381 return -EINVAL;
4382
4383 /* Find the cache in the chain of caches. */
Christoph Lameter18004c52012-07-06 15:25:12 -05004384 mutex_lock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004385 res = -EINVAL;
Christoph Lameter18004c52012-07-06 15:25:12 -05004386 list_for_each_entry(cachep, &slab_caches, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004387 if (!strcmp(cachep->name, kbuf)) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08004388 if (limit < 1 || batchcount < 1 ||
4389 batchcount > limit || shared < 0) {
Christoph Lametere498be72005-09-09 13:03:32 -07004390 res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004391 } else {
Christoph Lametere498be72005-09-09 13:03:32 -07004392 res = do_tune_cpucache(cachep, limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03004393 batchcount, shared,
4394 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004395 }
4396 break;
4397 }
4398 }
Christoph Lameter18004c52012-07-06 15:25:12 -05004399 mutex_unlock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004400 if (res >= 0)
4401 res = count;
4402 return res;
4403}
Al Viro871751e2006-03-25 03:06:39 -08004404
4405#ifdef CONFIG_DEBUG_SLAB_LEAK
4406
4407static void *leaks_start(struct seq_file *m, loff_t *pos)
4408{
Christoph Lameter18004c52012-07-06 15:25:12 -05004409 mutex_lock(&slab_mutex);
4410 return seq_list_start(&slab_caches, *pos);
Al Viro871751e2006-03-25 03:06:39 -08004411}
4412
4413static inline int add_caller(unsigned long *n, unsigned long v)
4414{
4415 unsigned long *p;
4416 int l;
4417 if (!v)
4418 return 1;
4419 l = n[1];
4420 p = n + 2;
4421 while (l) {
4422 int i = l/2;
4423 unsigned long *q = p + 2 * i;
4424 if (*q == v) {
4425 q[1]++;
4426 return 1;
4427 }
4428 if (*q > v) {
4429 l = i;
4430 } else {
4431 p = q + 2;
4432 l -= i + 1;
4433 }
4434 }
4435 if (++n[1] == n[0])
4436 return 0;
4437 memmove(p + 2, p, n[1] * 2 * sizeof(unsigned long) - ((void *)p - (void *)n));
4438 p[0] = v;
4439 p[1] = 1;
4440 return 1;
4441}
4442
4443static void handle_slab(unsigned long *n, struct kmem_cache *c, struct slab *s)
4444{
4445 void *p;
4446 int i;
4447 if (n[0] == n[1])
4448 return;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05004449 for (i = 0, p = s->s_mem; i < c->num; i++, p += c->size) {
Al Viro871751e2006-03-25 03:06:39 -08004450 if (slab_bufctl(s)[i] != BUFCTL_ACTIVE)
4451 continue;
4452 if (!add_caller(n, (unsigned long)*dbg_userword(c, p)))
4453 return;
4454 }
4455}
4456
4457static void show_symbol(struct seq_file *m, unsigned long address)
4458{
4459#ifdef CONFIG_KALLSYMS
Al Viro871751e2006-03-25 03:06:39 -08004460 unsigned long offset, size;
Tejun Heo9281ace2007-07-17 04:03:51 -07004461 char modname[MODULE_NAME_LEN], name[KSYM_NAME_LEN];
Al Viro871751e2006-03-25 03:06:39 -08004462
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004463 if (lookup_symbol_attrs(address, &size, &offset, modname, name) == 0) {
Al Viro871751e2006-03-25 03:06:39 -08004464 seq_printf(m, "%s+%#lx/%#lx", name, offset, size);
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004465 if (modname[0])
Al Viro871751e2006-03-25 03:06:39 -08004466 seq_printf(m, " [%s]", modname);
4467 return;
4468 }
4469#endif
4470 seq_printf(m, "%p", (void *)address);
4471}
4472
4473static int leaks_show(struct seq_file *m, void *p)
4474{
Thierry Reding0672aa72012-06-22 19:42:49 +02004475 struct kmem_cache *cachep = list_entry(p, struct kmem_cache, list);
Al Viro871751e2006-03-25 03:06:39 -08004476 struct slab *slabp;
4477 struct kmem_list3 *l3;
4478 const char *name;
4479 unsigned long *n = m->private;
4480 int node;
4481 int i;
4482
4483 if (!(cachep->flags & SLAB_STORE_USER))
4484 return 0;
4485 if (!(cachep->flags & SLAB_RED_ZONE))
4486 return 0;
4487
4488 /* OK, we can do it */
4489
4490 n[1] = 0;
4491
4492 for_each_online_node(node) {
4493 l3 = cachep->nodelists[node];
4494 if (!l3)
4495 continue;
4496
4497 check_irq_on();
4498 spin_lock_irq(&l3->list_lock);
4499
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004500 list_for_each_entry(slabp, &l3->slabs_full, list)
Al Viro871751e2006-03-25 03:06:39 -08004501 handle_slab(n, cachep, slabp);
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004502 list_for_each_entry(slabp, &l3->slabs_partial, list)
Al Viro871751e2006-03-25 03:06:39 -08004503 handle_slab(n, cachep, slabp);
Al Viro871751e2006-03-25 03:06:39 -08004504 spin_unlock_irq(&l3->list_lock);
4505 }
4506 name = cachep->name;
4507 if (n[0] == n[1]) {
4508 /* Increase the buffer size */
Christoph Lameter18004c52012-07-06 15:25:12 -05004509 mutex_unlock(&slab_mutex);
Al Viro871751e2006-03-25 03:06:39 -08004510 m->private = kzalloc(n[0] * 4 * sizeof(unsigned long), GFP_KERNEL);
4511 if (!m->private) {
4512 /* Too bad, we are really out */
4513 m->private = n;
Christoph Lameter18004c52012-07-06 15:25:12 -05004514 mutex_lock(&slab_mutex);
Al Viro871751e2006-03-25 03:06:39 -08004515 return -ENOMEM;
4516 }
4517 *(unsigned long *)m->private = n[0] * 2;
4518 kfree(n);
Christoph Lameter18004c52012-07-06 15:25:12 -05004519 mutex_lock(&slab_mutex);
Al Viro871751e2006-03-25 03:06:39 -08004520 /* Now make sure this entry will be retried */
4521 m->count = m->size;
4522 return 0;
4523 }
4524 for (i = 0; i < n[1]; i++) {
4525 seq_printf(m, "%s: %lu ", name, n[2*i+3]);
4526 show_symbol(m, n[2*i+2]);
4527 seq_putc(m, '\n');
4528 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004529
Al Viro871751e2006-03-25 03:06:39 -08004530 return 0;
4531}
4532
Glauber Costab7454ad2012-10-19 18:20:25 +04004533static void *s_next(struct seq_file *m, void *p, loff_t *pos)
4534{
4535 return seq_list_next(p, &slab_caches, pos);
4536}
4537
4538static void s_stop(struct seq_file *m, void *p)
4539{
4540 mutex_unlock(&slab_mutex);
4541}
4542
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004543static const struct seq_operations slabstats_op = {
Al Viro871751e2006-03-25 03:06:39 -08004544 .start = leaks_start,
4545 .next = s_next,
4546 .stop = s_stop,
4547 .show = leaks_show,
4548};
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004549
4550static int slabstats_open(struct inode *inode, struct file *file)
4551{
4552 unsigned long *n = kzalloc(PAGE_SIZE, GFP_KERNEL);
4553 int ret = -ENOMEM;
4554 if (n) {
4555 ret = seq_open(file, &slabstats_op);
4556 if (!ret) {
4557 struct seq_file *m = file->private_data;
4558 *n = PAGE_SIZE / (2 * sizeof(unsigned long));
4559 m->private = n;
4560 n = NULL;
4561 }
4562 kfree(n);
4563 }
4564 return ret;
4565}
4566
4567static const struct file_operations proc_slabstats_operations = {
4568 .open = slabstats_open,
4569 .read = seq_read,
4570 .llseek = seq_lseek,
4571 .release = seq_release_private,
4572};
Al Viro871751e2006-03-25 03:06:39 -08004573#endif
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004574
4575static int __init slab_proc_init(void)
4576{
4577#ifdef CONFIG_DEBUG_SLAB_LEAK
4578 proc_create("slab_allocators", 0, NULL, &proc_slabstats_operations);
4579#endif
4580 return 0;
4581}
4582module_init(slab_proc_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004583#endif
4584
Manfred Spraul00e145b2005-09-03 15:55:07 -07004585/**
4586 * ksize - get the actual amount of memory allocated for a given object
4587 * @objp: Pointer to the object
4588 *
4589 * kmalloc may internally round up allocations and return more memory
4590 * than requested. ksize() can be used to determine the actual amount of
4591 * memory allocated. The caller may use this additional memory, even though
4592 * a smaller amount of memory was initially specified with the kmalloc call.
4593 * The caller must guarantee that objp points to a valid object previously
4594 * allocated with either kmalloc() or kmem_cache_alloc(). The object
4595 * must not be freed during the duration of the call.
4596 */
Pekka Enbergfd76bab2007-05-06 14:48:40 -07004597size_t ksize(const void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004598{
Christoph Lameteref8b4522007-10-16 01:24:46 -07004599 BUG_ON(!objp);
4600 if (unlikely(objp == ZERO_SIZE_PTR))
Manfred Spraul00e145b2005-09-03 15:55:07 -07004601 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004602
Christoph Lameter8c138bc2012-06-13 10:24:58 -05004603 return virt_to_cache(objp)->object_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004604}
Kirill A. Shutemovb1aabec2009-02-10 15:21:44 +02004605EXPORT_SYMBOL(ksize);