blob: c26ab9fbe1f58cb32bf9f3c7a39f427afdb02482 [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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550static struct arraycache_init initarray_generic =
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800551 { {0, BOOT_CPUCACHE_ENTRIES, 1, 0} };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552
553/* internal cache of cache description objs */
Christoph Lameter9b030cb2012-09-05 00:20:33 +0000554static struct kmem_cache kmem_cache_boot = {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800555 .batchcount = 1,
556 .limit = BOOT_CPUCACHE_ENTRIES,
557 .shared = 1,
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500558 .size = sizeof(struct kmem_cache),
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800559 .name = "kmem_cache",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560};
561
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -0700562#define BAD_ALIEN_MAGIC 0x01020304ul
563
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200564#ifdef CONFIG_LOCKDEP
565
566/*
567 * Slab sometimes uses the kmalloc slabs to store the slab headers
568 * for other slabs "off slab".
569 * The locking for this is tricky in that it nests within the locks
570 * of all other slabs in a few places; to deal with this special
571 * locking we put on-slab caches into a separate lock-class.
572 *
573 * We set lock class for alien array caches which are up during init.
574 * The lock annotation will be lost if all cpus of a node goes down and
575 * then comes back up during hotplug
576 */
577static struct lock_class_key on_slab_l3_key;
578static struct lock_class_key on_slab_alc_key;
579
Peter Zijlstra83835b32011-07-22 15:26:05 +0200580static struct lock_class_key debugobj_l3_key;
581static struct lock_class_key debugobj_alc_key;
582
583static void slab_set_lock_classes(struct kmem_cache *cachep,
584 struct lock_class_key *l3_key, struct lock_class_key *alc_key,
585 int q)
586{
587 struct array_cache **alc;
588 struct kmem_list3 *l3;
589 int r;
590
591 l3 = cachep->nodelists[q];
592 if (!l3)
593 return;
594
595 lockdep_set_class(&l3->list_lock, l3_key);
596 alc = l3->alien;
597 /*
598 * FIXME: This check for BAD_ALIEN_MAGIC
599 * should go away when common slab code is taught to
600 * work even without alien caches.
601 * Currently, non NUMA code returns BAD_ALIEN_MAGIC
602 * for alloc_alien_cache,
603 */
604 if (!alc || (unsigned long)alc == BAD_ALIEN_MAGIC)
605 return;
606 for_each_node(r) {
607 if (alc[r])
608 lockdep_set_class(&alc[r]->lock, alc_key);
609 }
610}
611
612static void slab_set_debugobj_lock_classes_node(struct kmem_cache *cachep, int node)
613{
614 slab_set_lock_classes(cachep, &debugobj_l3_key, &debugobj_alc_key, node);
615}
616
617static void slab_set_debugobj_lock_classes(struct kmem_cache *cachep)
618{
619 int node;
620
621 for_each_online_node(node)
622 slab_set_debugobj_lock_classes_node(cachep, node);
623}
624
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200625static void init_node_lock_keys(int q)
626{
627 struct cache_sizes *s = malloc_sizes;
628
Christoph Lameter97d06602012-07-06 15:25:11 -0500629 if (slab_state < UP)
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200630 return;
631
632 for (s = malloc_sizes; s->cs_size != ULONG_MAX; s++) {
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200633 struct kmem_list3 *l3;
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200634
635 l3 = s->cs_cachep->nodelists[q];
636 if (!l3 || OFF_SLAB(s->cs_cachep))
Pekka Enberg00afa752009-12-27 14:33:14 +0200637 continue;
Peter Zijlstra83835b32011-07-22 15:26:05 +0200638
639 slab_set_lock_classes(s->cs_cachep, &on_slab_l3_key,
640 &on_slab_alc_key, q);
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200641 }
642}
643
Glauber Costa6ccfb5b2012-12-18 14:22:31 -0800644static void on_slab_lock_classes_node(struct kmem_cache *cachep, int q)
645{
646 struct kmem_list3 *l3;
647 l3 = cachep->nodelists[q];
648 if (!l3)
649 return;
650
651 slab_set_lock_classes(cachep, &on_slab_l3_key,
652 &on_slab_alc_key, q);
653}
654
655static inline void on_slab_lock_classes(struct kmem_cache *cachep)
656{
657 int node;
658
659 VM_BUG_ON(OFF_SLAB(cachep));
660 for_each_node(node)
661 on_slab_lock_classes_node(cachep, node);
662}
663
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200664static inline void init_lock_keys(void)
665{
666 int node;
667
668 for_each_node(node)
669 init_node_lock_keys(node);
670}
671#else
672static void init_node_lock_keys(int q)
673{
674}
675
676static inline void init_lock_keys(void)
677{
678}
Peter Zijlstra83835b32011-07-22 15:26:05 +0200679
Glauber Costa6ccfb5b2012-12-18 14:22:31 -0800680static inline void on_slab_lock_classes(struct kmem_cache *cachep)
681{
682}
683
684static inline void on_slab_lock_classes_node(struct kmem_cache *cachep, int node)
685{
686}
687
Peter Zijlstra83835b32011-07-22 15:26:05 +0200688static void slab_set_debugobj_lock_classes_node(struct kmem_cache *cachep, int node)
689{
690}
691
692static void slab_set_debugobj_lock_classes(struct kmem_cache *cachep)
693{
694}
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200695#endif
696
Tejun Heo1871e522009-10-29 22:34:13 +0900697static DEFINE_PER_CPU(struct delayed_work, slab_reap_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698
Pekka Enberg343e0d72006-02-01 03:05:50 -0800699static inline struct array_cache *cpu_cache_get(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700{
701 return cachep->array[smp_processor_id()];
702}
703
Andrew Mortona737b3e2006-03-22 00:08:11 -0800704static inline struct kmem_cache *__find_general_cachep(size_t size,
705 gfp_t gfpflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706{
707 struct cache_sizes *csizep = malloc_sizes;
708
709#if DEBUG
710 /* This happens if someone tries to call
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800711 * kmem_cache_create(), or __kmalloc(), before
712 * the generic caches are initialized.
713 */
Alok Katariac7e43c72005-09-14 12:17:53 -0700714 BUG_ON(malloc_sizes[INDEX_AC].cs_cachep == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715#endif
Christoph Lameter6cb8f912007-07-17 04:03:22 -0700716 if (!size)
717 return ZERO_SIZE_PTR;
718
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719 while (size > csizep->cs_size)
720 csizep++;
721
722 /*
Martin Hicks0abf40c2005-09-03 15:54:54 -0700723 * Really subtle: The last entry with cs->cs_size==ULONG_MAX
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724 * has cs_{dma,}cachep==NULL. Thus no special case
725 * for large kmalloc calls required.
726 */
Christoph Lameter4b51d662007-02-10 01:43:10 -0800727#ifdef CONFIG_ZONE_DMA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 if (unlikely(gfpflags & GFP_DMA))
729 return csizep->cs_dmacachep;
Christoph Lameter4b51d662007-02-10 01:43:10 -0800730#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 return csizep->cs_cachep;
732}
733
Adrian Bunkb2213852006-09-25 23:31:02 -0700734static struct kmem_cache *kmem_find_general_cachep(size_t size, gfp_t gfpflags)
Manfred Spraul97e2bde2005-05-01 08:58:38 -0700735{
736 return __find_general_cachep(size, gfpflags);
737}
Manfred Spraul97e2bde2005-05-01 08:58:38 -0700738
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800739static size_t slab_mgmt_size(size_t nr_objs, size_t align)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740{
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800741 return ALIGN(sizeof(struct slab)+nr_objs*sizeof(kmem_bufctl_t), align);
742}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743
Andrew Mortona737b3e2006-03-22 00:08:11 -0800744/*
745 * Calculate the number of objects and left-over bytes for a given buffer size.
746 */
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800747static void cache_estimate(unsigned long gfporder, size_t buffer_size,
748 size_t align, int flags, size_t *left_over,
749 unsigned int *num)
750{
751 int nr_objs;
752 size_t mgmt_size;
753 size_t slab_size = PAGE_SIZE << gfporder;
754
755 /*
756 * The slab management structure can be either off the slab or
757 * on it. For the latter case, the memory allocated for a
758 * slab is used for:
759 *
760 * - The struct slab
761 * - One kmem_bufctl_t for each object
762 * - Padding to respect alignment of @align
763 * - @buffer_size bytes for each object
764 *
765 * If the slab management structure is off the slab, then the
766 * alignment will already be calculated into the size. Because
767 * the slabs are all pages aligned, the objects will be at the
768 * correct alignment when allocated.
769 */
770 if (flags & CFLGS_OFF_SLAB) {
771 mgmt_size = 0;
772 nr_objs = slab_size / buffer_size;
773
774 if (nr_objs > SLAB_LIMIT)
775 nr_objs = SLAB_LIMIT;
776 } else {
777 /*
778 * Ignore padding for the initial guess. The padding
779 * is at most @align-1 bytes, and @buffer_size is at
780 * least @align. In the worst case, this result will
781 * be one greater than the number of objects that fit
782 * into the memory allocation when taking the padding
783 * into account.
784 */
785 nr_objs = (slab_size - sizeof(struct slab)) /
786 (buffer_size + sizeof(kmem_bufctl_t));
787
788 /*
789 * This calculated number will be either the right
790 * amount, or one greater than what we want.
791 */
792 if (slab_mgmt_size(nr_objs, align) + nr_objs*buffer_size
793 > slab_size)
794 nr_objs--;
795
796 if (nr_objs > SLAB_LIMIT)
797 nr_objs = SLAB_LIMIT;
798
799 mgmt_size = slab_mgmt_size(nr_objs, align);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 }
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800801 *num = nr_objs;
802 *left_over = slab_size - nr_objs*buffer_size - mgmt_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803}
804
Christoph Lameterf28510d2012-09-11 19:49:38 +0000805#if DEBUG
Harvey Harrisond40cee22008-04-30 00:55:07 -0700806#define slab_error(cachep, msg) __slab_error(__func__, cachep, msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807
Andrew Mortona737b3e2006-03-22 00:08:11 -0800808static void __slab_error(const char *function, struct kmem_cache *cachep,
809 char *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810{
811 printk(KERN_ERR "slab error in %s(): cache `%s': %s\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800812 function, cachep->name, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 dump_stack();
Dave Jones645df232012-09-18 15:54:12 -0400814 add_taint(TAINT_BAD_PAGE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815}
Christoph Lameterf28510d2012-09-11 19:49:38 +0000816#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
Paul Menage3395ee02006-12-06 20:32:16 -0800818/*
819 * By default on NUMA we use alien caches to stage the freeing of
820 * objects allocated from other nodes. This causes massive memory
821 * inefficiencies when using fake NUMA setup to split memory into a
822 * large number of small nodes, so it can be disabled on the command
823 * line
824 */
825
826static int use_alien_caches __read_mostly = 1;
827static int __init noaliencache_setup(char *s)
828{
829 use_alien_caches = 0;
830 return 1;
831}
832__setup("noaliencache", noaliencache_setup);
833
David Rientjes3df1ccc2011-10-18 22:09:28 -0700834static int __init slab_max_order_setup(char *str)
835{
836 get_option(&str, &slab_max_order);
837 slab_max_order = slab_max_order < 0 ? 0 :
838 min(slab_max_order, MAX_ORDER - 1);
839 slab_max_order_set = true;
840
841 return 1;
842}
843__setup("slab_max_order=", slab_max_order_setup);
844
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800845#ifdef CONFIG_NUMA
846/*
847 * Special reaping functions for NUMA systems called from cache_reap().
848 * These take care of doing round robin flushing of alien caches (containing
849 * objects freed on different nodes from which they were allocated) and the
850 * flushing of remote pcps by calling drain_node_pages.
851 */
Tejun Heo1871e522009-10-29 22:34:13 +0900852static DEFINE_PER_CPU(unsigned long, slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800853
854static void init_reap_node(int cpu)
855{
856 int node;
857
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -0700858 node = next_node(cpu_to_mem(cpu), node_online_map);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800859 if (node == MAX_NUMNODES)
Paul Jackson442295c2006-03-22 00:09:11 -0800860 node = first_node(node_online_map);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800861
Tejun Heo1871e522009-10-29 22:34:13 +0900862 per_cpu(slab_reap_node, cpu) = node;
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800863}
864
865static void next_reap_node(void)
866{
Christoph Lameter909ea962010-12-08 16:22:55 +0100867 int node = __this_cpu_read(slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800868
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800869 node = next_node(node, node_online_map);
870 if (unlikely(node >= MAX_NUMNODES))
871 node = first_node(node_online_map);
Christoph Lameter909ea962010-12-08 16:22:55 +0100872 __this_cpu_write(slab_reap_node, node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800873}
874
875#else
876#define init_reap_node(cpu) do { } while (0)
877#define next_reap_node(void) do { } while (0)
878#endif
879
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880/*
881 * Initiate the reap timer running on the target CPU. We run at around 1 to 2Hz
882 * via the workqueue/eventd.
883 * Add the CPU number into the expiration time to minimize the possibility of
884 * the CPUs getting into lockstep and contending for the global cache chain
885 * lock.
886 */
Adrian Bunk897e6792007-07-15 23:38:20 -0700887static void __cpuinit start_cpu_timer(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888{
Tejun Heo1871e522009-10-29 22:34:13 +0900889 struct delayed_work *reap_work = &per_cpu(slab_reap_work, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
891 /*
892 * When this gets called from do_initcalls via cpucache_init(),
893 * init_workqueues() has already run, so keventd will be setup
894 * at that time.
895 */
David Howells52bad642006-11-22 14:54:01 +0000896 if (keventd_up() && reap_work->work.func == NULL) {
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800897 init_reap_node(cpu);
Tejun Heo203b42f2012-08-21 13:18:23 -0700898 INIT_DEFERRABLE_WORK(reap_work, cache_reap);
Arjan van de Ven2b284212006-12-10 02:21:28 -0800899 schedule_delayed_work_on(cpu, reap_work,
900 __round_jiffies_relative(HZ, cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700901 }
902}
903
Christoph Lametere498be72005-09-09 13:03:32 -0700904static struct array_cache *alloc_arraycache(int node, int entries,
Pekka Enberg83b519e2009-06-10 19:40:04 +0300905 int batchcount, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906{
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800907 int memsize = sizeof(void *) * entries + sizeof(struct array_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 struct array_cache *nc = NULL;
909
Pekka Enberg83b519e2009-06-10 19:40:04 +0300910 nc = kmalloc_node(memsize, gfp, node);
Catalin Marinasd5cff632009-06-11 13:22:40 +0100911 /*
912 * The array_cache structures contain pointers to free object.
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300913 * However, when such objects are allocated or transferred to another
Catalin Marinasd5cff632009-06-11 13:22:40 +0100914 * cache the pointers are not cleared and they could be counted as
915 * valid references during a kmemleak scan. Therefore, kmemleak must
916 * not scan such objects.
917 */
918 kmemleak_no_scan(nc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 if (nc) {
920 nc->avail = 0;
921 nc->limit = entries;
922 nc->batchcount = batchcount;
923 nc->touched = 0;
Christoph Lametere498be72005-09-09 13:03:32 -0700924 spin_lock_init(&nc->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 }
926 return nc;
927}
928
Mel Gorman072bb0a2012-07-31 16:43:58 -0700929static inline bool is_slab_pfmemalloc(struct slab *slabp)
930{
931 struct page *page = virt_to_page(slabp->s_mem);
932
933 return PageSlabPfmemalloc(page);
934}
935
936/* Clears pfmemalloc_active if no slabs have pfmalloc set */
937static void recheck_pfmemalloc_active(struct kmem_cache *cachep,
938 struct array_cache *ac)
939{
940 struct kmem_list3 *l3 = cachep->nodelists[numa_mem_id()];
941 struct slab *slabp;
942 unsigned long flags;
943
944 if (!pfmemalloc_active)
945 return;
946
947 spin_lock_irqsave(&l3->list_lock, flags);
948 list_for_each_entry(slabp, &l3->slabs_full, list)
949 if (is_slab_pfmemalloc(slabp))
950 goto out;
951
952 list_for_each_entry(slabp, &l3->slabs_partial, list)
953 if (is_slab_pfmemalloc(slabp))
954 goto out;
955
956 list_for_each_entry(slabp, &l3->slabs_free, list)
957 if (is_slab_pfmemalloc(slabp))
958 goto out;
959
960 pfmemalloc_active = false;
961out:
962 spin_unlock_irqrestore(&l3->list_lock, flags);
963}
964
Mel Gorman381760e2012-07-31 16:44:30 -0700965static void *__ac_get_obj(struct kmem_cache *cachep, struct array_cache *ac,
Mel Gorman072bb0a2012-07-31 16:43:58 -0700966 gfp_t flags, bool force_refill)
967{
968 int i;
969 void *objp = ac->entry[--ac->avail];
970
971 /* Ensure the caller is allowed to use objects from PFMEMALLOC slab */
972 if (unlikely(is_obj_pfmemalloc(objp))) {
973 struct kmem_list3 *l3;
974
975 if (gfp_pfmemalloc_allowed(flags)) {
976 clear_obj_pfmemalloc(&objp);
977 return objp;
978 }
979
980 /* The caller cannot use PFMEMALLOC objects, find another one */
Joonsoo Kimd014dc22012-09-17 14:09:06 -0700981 for (i = 0; i < ac->avail; i++) {
Mel Gorman072bb0a2012-07-31 16:43:58 -0700982 /* If a !PFMEMALLOC object is found, swap them */
983 if (!is_obj_pfmemalloc(ac->entry[i])) {
984 objp = ac->entry[i];
985 ac->entry[i] = ac->entry[ac->avail];
986 ac->entry[ac->avail] = objp;
987 return objp;
988 }
989 }
990
991 /*
992 * If there are empty slabs on the slabs_free list and we are
993 * being forced to refill the cache, mark this one !pfmemalloc.
994 */
995 l3 = cachep->nodelists[numa_mem_id()];
996 if (!list_empty(&l3->slabs_free) && force_refill) {
997 struct slab *slabp = virt_to_slab(objp);
Mel Gorman30c29be2012-09-17 14:09:03 -0700998 ClearPageSlabPfmemalloc(virt_to_head_page(slabp->s_mem));
Mel Gorman072bb0a2012-07-31 16:43:58 -0700999 clear_obj_pfmemalloc(&objp);
1000 recheck_pfmemalloc_active(cachep, ac);
1001 return objp;
1002 }
1003
1004 /* No !PFMEMALLOC objects available */
1005 ac->avail++;
1006 objp = NULL;
1007 }
1008
1009 return objp;
1010}
1011
Mel Gorman381760e2012-07-31 16:44:30 -07001012static inline void *ac_get_obj(struct kmem_cache *cachep,
1013 struct array_cache *ac, gfp_t flags, bool force_refill)
1014{
1015 void *objp;
1016
1017 if (unlikely(sk_memalloc_socks()))
1018 objp = __ac_get_obj(cachep, ac, flags, force_refill);
1019 else
1020 objp = ac->entry[--ac->avail];
1021
1022 return objp;
1023}
1024
1025static void *__ac_put_obj(struct kmem_cache *cachep, struct array_cache *ac,
Mel Gorman072bb0a2012-07-31 16:43:58 -07001026 void *objp)
1027{
1028 if (unlikely(pfmemalloc_active)) {
1029 /* Some pfmemalloc slabs exist, check if this is one */
Mel Gorman30c29be2012-09-17 14:09:03 -07001030 struct page *page = virt_to_head_page(objp);
Mel Gorman072bb0a2012-07-31 16:43:58 -07001031 if (PageSlabPfmemalloc(page))
1032 set_obj_pfmemalloc(&objp);
1033 }
1034
Mel Gorman381760e2012-07-31 16:44:30 -07001035 return objp;
1036}
1037
1038static inline void ac_put_obj(struct kmem_cache *cachep, struct array_cache *ac,
1039 void *objp)
1040{
1041 if (unlikely(sk_memalloc_socks()))
1042 objp = __ac_put_obj(cachep, ac, objp);
1043
Mel Gorman072bb0a2012-07-31 16:43:58 -07001044 ac->entry[ac->avail++] = objp;
1045}
1046
Christoph Lameter3ded1752006-03-25 03:06:44 -08001047/*
1048 * Transfer objects in one arraycache to another.
1049 * Locking must be handled by the caller.
1050 *
1051 * Return the number of entries transferred.
1052 */
1053static int transfer_objects(struct array_cache *to,
1054 struct array_cache *from, unsigned int max)
1055{
1056 /* Figure out how many entries to transfer */
Hagen Paul Pfeifer732eacc2010-10-26 14:22:23 -07001057 int nr = min3(from->avail, max, to->limit - to->avail);
Christoph Lameter3ded1752006-03-25 03:06:44 -08001058
1059 if (!nr)
1060 return 0;
1061
1062 memcpy(to->entry + to->avail, from->entry + from->avail -nr,
1063 sizeof(void *) *nr);
1064
1065 from->avail -= nr;
1066 to->avail += nr;
Christoph Lameter3ded1752006-03-25 03:06:44 -08001067 return nr;
1068}
1069
Christoph Lameter765c4502006-09-27 01:50:08 -07001070#ifndef CONFIG_NUMA
1071
1072#define drain_alien_cache(cachep, alien) do { } while (0)
1073#define reap_alien(cachep, l3) do { } while (0)
1074
Pekka Enberg83b519e2009-06-10 19:40:04 +03001075static inline struct array_cache **alloc_alien_cache(int node, int limit, gfp_t gfp)
Christoph Lameter765c4502006-09-27 01:50:08 -07001076{
1077 return (struct array_cache **)BAD_ALIEN_MAGIC;
1078}
1079
1080static inline void free_alien_cache(struct array_cache **ac_ptr)
1081{
1082}
1083
1084static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
1085{
1086 return 0;
1087}
1088
1089static inline void *alternate_node_alloc(struct kmem_cache *cachep,
1090 gfp_t flags)
1091{
1092 return NULL;
1093}
1094
Christoph Hellwig8b98c162006-12-06 20:32:30 -08001095static inline void *____cache_alloc_node(struct kmem_cache *cachep,
Christoph Lameter765c4502006-09-27 01:50:08 -07001096 gfp_t flags, int nodeid)
1097{
1098 return NULL;
1099}
1100
1101#else /* CONFIG_NUMA */
1102
Christoph Hellwig8b98c162006-12-06 20:32:30 -08001103static void *____cache_alloc_node(struct kmem_cache *, gfp_t, int);
Paul Jacksonc61afb12006-03-24 03:16:08 -08001104static void *alternate_node_alloc(struct kmem_cache *, gfp_t);
Christoph Lameterdc85da12006-01-18 17:42:36 -08001105
Pekka Enberg83b519e2009-06-10 19:40:04 +03001106static struct array_cache **alloc_alien_cache(int node, int limit, gfp_t gfp)
Christoph Lametere498be72005-09-09 13:03:32 -07001107{
1108 struct array_cache **ac_ptr;
Christoph Lameter8ef82862007-02-20 13:57:52 -08001109 int memsize = sizeof(void *) * nr_node_ids;
Christoph Lametere498be72005-09-09 13:03:32 -07001110 int i;
1111
1112 if (limit > 1)
1113 limit = 12;
Haicheng Lif3186a92010-01-06 15:25:23 +08001114 ac_ptr = kzalloc_node(memsize, gfp, node);
Christoph Lametere498be72005-09-09 13:03:32 -07001115 if (ac_ptr) {
1116 for_each_node(i) {
Haicheng Lif3186a92010-01-06 15:25:23 +08001117 if (i == node || !node_online(i))
Christoph Lametere498be72005-09-09 13:03:32 -07001118 continue;
Pekka Enberg83b519e2009-06-10 19:40:04 +03001119 ac_ptr[i] = alloc_arraycache(node, limit, 0xbaadf00d, gfp);
Christoph Lametere498be72005-09-09 13:03:32 -07001120 if (!ac_ptr[i]) {
Akinobu Mitacc550de2007-11-14 16:58:35 -08001121 for (i--; i >= 0; i--)
Christoph Lametere498be72005-09-09 13:03:32 -07001122 kfree(ac_ptr[i]);
1123 kfree(ac_ptr);
1124 return NULL;
1125 }
1126 }
1127 }
1128 return ac_ptr;
1129}
1130
Pekka Enberg5295a742006-02-01 03:05:48 -08001131static void free_alien_cache(struct array_cache **ac_ptr)
Christoph Lametere498be72005-09-09 13:03:32 -07001132{
1133 int i;
1134
1135 if (!ac_ptr)
1136 return;
Christoph Lametere498be72005-09-09 13:03:32 -07001137 for_each_node(i)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001138 kfree(ac_ptr[i]);
Christoph Lametere498be72005-09-09 13:03:32 -07001139 kfree(ac_ptr);
1140}
1141
Pekka Enberg343e0d72006-02-01 03:05:50 -08001142static void __drain_alien_cache(struct kmem_cache *cachep,
Pekka Enberg5295a742006-02-01 03:05:48 -08001143 struct array_cache *ac, int node)
Christoph Lametere498be72005-09-09 13:03:32 -07001144{
1145 struct kmem_list3 *rl3 = cachep->nodelists[node];
1146
1147 if (ac->avail) {
1148 spin_lock(&rl3->list_lock);
Christoph Lametere00946f2006-03-25 03:06:45 -08001149 /*
1150 * Stuff objects into the remote nodes shared array first.
1151 * That way we could avoid the overhead of putting the objects
1152 * into the free lists and getting them back later.
1153 */
shin, jacob693f7d32006-04-28 10:54:37 -05001154 if (rl3->shared)
1155 transfer_objects(rl3->shared, ac, ac->limit);
Christoph Lametere00946f2006-03-25 03:06:45 -08001156
Christoph Lameterff694162005-09-22 21:44:02 -07001157 free_block(cachep, ac->entry, ac->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -07001158 ac->avail = 0;
1159 spin_unlock(&rl3->list_lock);
1160 }
1161}
1162
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001163/*
1164 * Called from cache_reap() to regularly drain alien caches round robin.
1165 */
1166static void reap_alien(struct kmem_cache *cachep, struct kmem_list3 *l3)
1167{
Christoph Lameter909ea962010-12-08 16:22:55 +01001168 int node = __this_cpu_read(slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001169
1170 if (l3->alien) {
1171 struct array_cache *ac = l3->alien[node];
Christoph Lametere00946f2006-03-25 03:06:45 -08001172
1173 if (ac && ac->avail && spin_trylock_irq(&ac->lock)) {
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001174 __drain_alien_cache(cachep, ac, node);
1175 spin_unlock_irq(&ac->lock);
1176 }
1177 }
1178}
1179
Andrew Mortona737b3e2006-03-22 00:08:11 -08001180static void drain_alien_cache(struct kmem_cache *cachep,
1181 struct array_cache **alien)
Christoph Lametere498be72005-09-09 13:03:32 -07001182{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001183 int i = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07001184 struct array_cache *ac;
1185 unsigned long flags;
1186
1187 for_each_online_node(i) {
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001188 ac = alien[i];
Christoph Lametere498be72005-09-09 13:03:32 -07001189 if (ac) {
1190 spin_lock_irqsave(&ac->lock, flags);
1191 __drain_alien_cache(cachep, ac, i);
1192 spin_unlock_irqrestore(&ac->lock, flags);
1193 }
1194 }
1195}
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001196
Ingo Molnar873623d2006-07-13 14:44:38 +02001197static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001198{
1199 struct slab *slabp = virt_to_slab(objp);
1200 int nodeid = slabp->nodeid;
1201 struct kmem_list3 *l3;
1202 struct array_cache *alien = NULL;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001203 int node;
1204
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07001205 node = numa_mem_id();
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001206
1207 /*
1208 * Make sure we are not freeing a object from another node to the array
1209 * cache on this cpu.
1210 */
Siddha, Suresh B62918a02007-05-02 19:27:18 +02001211 if (likely(slabp->nodeid == node))
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001212 return 0;
1213
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001214 l3 = cachep->nodelists[node];
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001215 STATS_INC_NODEFREES(cachep);
1216 if (l3->alien && l3->alien[nodeid]) {
1217 alien = l3->alien[nodeid];
Ingo Molnar873623d2006-07-13 14:44:38 +02001218 spin_lock(&alien->lock);
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001219 if (unlikely(alien->avail == alien->limit)) {
1220 STATS_INC_ACOVERFLOW(cachep);
1221 __drain_alien_cache(cachep, alien, nodeid);
1222 }
Mel Gorman072bb0a2012-07-31 16:43:58 -07001223 ac_put_obj(cachep, alien, objp);
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001224 spin_unlock(&alien->lock);
1225 } else {
1226 spin_lock(&(cachep->nodelists[nodeid])->list_lock);
1227 free_block(cachep, &objp, 1, nodeid);
1228 spin_unlock(&(cachep->nodelists[nodeid])->list_lock);
1229 }
1230 return 1;
1231}
Christoph Lametere498be72005-09-09 13:03:32 -07001232#endif
1233
David Rientjes8f9f8d92010-03-27 19:40:47 -07001234/*
1235 * Allocates and initializes nodelists for a node on each slab cache, used for
1236 * either memory or cpu hotplug. If memory is being hot-added, the kmem_list3
1237 * will be allocated off-node since memory is not yet online for the new node.
1238 * When hotplugging memory or a cpu, existing nodelists are not replaced if
1239 * already in use.
1240 *
Christoph Lameter18004c52012-07-06 15:25:12 -05001241 * Must hold slab_mutex.
David Rientjes8f9f8d92010-03-27 19:40:47 -07001242 */
1243static int init_cache_nodelists_node(int node)
1244{
1245 struct kmem_cache *cachep;
1246 struct kmem_list3 *l3;
1247 const int memsize = sizeof(struct kmem_list3);
1248
Christoph Lameter18004c52012-07-06 15:25:12 -05001249 list_for_each_entry(cachep, &slab_caches, list) {
David Rientjes8f9f8d92010-03-27 19:40:47 -07001250 /*
1251 * Set up the size64 kmemlist for cpu before we can
1252 * begin anything. Make sure some other cpu on this
1253 * node has not already allocated this
1254 */
1255 if (!cachep->nodelists[node]) {
1256 l3 = kmalloc_node(memsize, GFP_KERNEL, node);
1257 if (!l3)
1258 return -ENOMEM;
1259 kmem_list3_init(l3);
1260 l3->next_reap = jiffies + REAPTIMEOUT_LIST3 +
1261 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
1262
1263 /*
1264 * The l3s don't come and go as CPUs come and
Christoph Lameter18004c52012-07-06 15:25:12 -05001265 * go. slab_mutex is sufficient
David Rientjes8f9f8d92010-03-27 19:40:47 -07001266 * protection here.
1267 */
1268 cachep->nodelists[node] = l3;
1269 }
1270
1271 spin_lock_irq(&cachep->nodelists[node]->list_lock);
1272 cachep->nodelists[node]->free_limit =
1273 (1 + nr_cpus_node(node)) *
1274 cachep->batchcount + cachep->num;
1275 spin_unlock_irq(&cachep->nodelists[node]->list_lock);
1276 }
1277 return 0;
1278}
1279
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001280static void __cpuinit cpuup_canceled(long cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281{
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001282 struct kmem_cache *cachep;
1283 struct kmem_list3 *l3 = NULL;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07001284 int node = cpu_to_mem(cpu);
Rusty Russella70f7302009-03-13 14:49:46 +10301285 const struct cpumask *mask = cpumask_of_node(node);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001286
Christoph Lameter18004c52012-07-06 15:25:12 -05001287 list_for_each_entry(cachep, &slab_caches, list) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001288 struct array_cache *nc;
1289 struct array_cache *shared;
1290 struct array_cache **alien;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001291
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001292 /* cpu is dead; no one can alloc from it. */
1293 nc = cachep->array[cpu];
1294 cachep->array[cpu] = NULL;
1295 l3 = cachep->nodelists[node];
1296
1297 if (!l3)
1298 goto free_array_cache;
1299
1300 spin_lock_irq(&l3->list_lock);
1301
1302 /* Free limit for this kmem_list3 */
1303 l3->free_limit -= cachep->batchcount;
1304 if (nc)
1305 free_block(cachep, nc->entry, nc->avail, node);
1306
Rusty Russell58463c12009-12-17 11:43:12 -06001307 if (!cpumask_empty(mask)) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001308 spin_unlock_irq(&l3->list_lock);
1309 goto free_array_cache;
1310 }
1311
1312 shared = l3->shared;
1313 if (shared) {
1314 free_block(cachep, shared->entry,
1315 shared->avail, node);
1316 l3->shared = NULL;
1317 }
1318
1319 alien = l3->alien;
1320 l3->alien = NULL;
1321
1322 spin_unlock_irq(&l3->list_lock);
1323
1324 kfree(shared);
1325 if (alien) {
1326 drain_alien_cache(cachep, alien);
1327 free_alien_cache(alien);
1328 }
1329free_array_cache:
1330 kfree(nc);
1331 }
1332 /*
1333 * In the previous loop, all the objects were freed to
1334 * the respective cache's slabs, now we can go ahead and
1335 * shrink each nodelist to its limit.
1336 */
Christoph Lameter18004c52012-07-06 15:25:12 -05001337 list_for_each_entry(cachep, &slab_caches, list) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001338 l3 = cachep->nodelists[node];
1339 if (!l3)
1340 continue;
1341 drain_freelist(cachep, l3, l3->free_objects);
1342 }
1343}
1344
1345static int __cpuinit cpuup_prepare(long cpu)
1346{
Pekka Enberg343e0d72006-02-01 03:05:50 -08001347 struct kmem_cache *cachep;
Christoph Lametere498be72005-09-09 13:03:32 -07001348 struct kmem_list3 *l3 = NULL;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07001349 int node = cpu_to_mem(cpu);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001350 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001352 /*
1353 * We need to do this right in the beginning since
1354 * alloc_arraycache's are going to use this list.
1355 * kmalloc_node allows us to add the slab to the right
1356 * kmem_list3 and not this cpu's kmem_list3
1357 */
David Rientjes8f9f8d92010-03-27 19:40:47 -07001358 err = init_cache_nodelists_node(node);
1359 if (err < 0)
1360 goto bad;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001361
1362 /*
1363 * Now we can go ahead with allocating the shared arrays and
1364 * array caches
1365 */
Christoph Lameter18004c52012-07-06 15:25:12 -05001366 list_for_each_entry(cachep, &slab_caches, list) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001367 struct array_cache *nc;
1368 struct array_cache *shared = NULL;
1369 struct array_cache **alien = NULL;
1370
1371 nc = alloc_arraycache(node, cachep->limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03001372 cachep->batchcount, GFP_KERNEL);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001373 if (!nc)
1374 goto bad;
1375 if (cachep->shared) {
1376 shared = alloc_arraycache(node,
1377 cachep->shared * cachep->batchcount,
Pekka Enberg83b519e2009-06-10 19:40:04 +03001378 0xbaadf00d, GFP_KERNEL);
Akinobu Mita12d00f62007-10-18 03:05:11 -07001379 if (!shared) {
1380 kfree(nc);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001381 goto bad;
Akinobu Mita12d00f62007-10-18 03:05:11 -07001382 }
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001383 }
1384 if (use_alien_caches) {
Pekka Enberg83b519e2009-06-10 19:40:04 +03001385 alien = alloc_alien_cache(node, cachep->limit, GFP_KERNEL);
Akinobu Mita12d00f62007-10-18 03:05:11 -07001386 if (!alien) {
1387 kfree(shared);
1388 kfree(nc);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001389 goto bad;
Akinobu Mita12d00f62007-10-18 03:05:11 -07001390 }
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001391 }
1392 cachep->array[cpu] = nc;
1393 l3 = cachep->nodelists[node];
1394 BUG_ON(!l3);
1395
1396 spin_lock_irq(&l3->list_lock);
1397 if (!l3->shared) {
1398 /*
1399 * We are serialised from CPU_DEAD or
1400 * CPU_UP_CANCELLED by the cpucontrol lock
1401 */
1402 l3->shared = shared;
1403 shared = NULL;
1404 }
1405#ifdef CONFIG_NUMA
1406 if (!l3->alien) {
1407 l3->alien = alien;
1408 alien = NULL;
1409 }
1410#endif
1411 spin_unlock_irq(&l3->list_lock);
1412 kfree(shared);
1413 free_alien_cache(alien);
Peter Zijlstra83835b32011-07-22 15:26:05 +02001414 if (cachep->flags & SLAB_DEBUG_OBJECTS)
1415 slab_set_debugobj_lock_classes_node(cachep, node);
Glauber Costa6ccfb5b2012-12-18 14:22:31 -08001416 else if (!OFF_SLAB(cachep) &&
1417 !(cachep->flags & SLAB_DESTROY_BY_RCU))
1418 on_slab_lock_classes_node(cachep, node);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001419 }
Pekka Enbergce79ddc2009-11-23 22:01:15 +02001420 init_node_lock_keys(node);
1421
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001422 return 0;
1423bad:
Akinobu Mita12d00f62007-10-18 03:05:11 -07001424 cpuup_canceled(cpu);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001425 return -ENOMEM;
1426}
1427
1428static int __cpuinit cpuup_callback(struct notifier_block *nfb,
1429 unsigned long action, void *hcpu)
1430{
1431 long cpu = (long)hcpu;
1432 int err = 0;
1433
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 switch (action) {
Heiko Carstens38c3bd92007-05-09 02:34:05 -07001435 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001436 case CPU_UP_PREPARE_FROZEN:
Christoph Lameter18004c52012-07-06 15:25:12 -05001437 mutex_lock(&slab_mutex);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001438 err = cpuup_prepare(cpu);
Christoph Lameter18004c52012-07-06 15:25:12 -05001439 mutex_unlock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 break;
1441 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001442 case CPU_ONLINE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001443 start_cpu_timer(cpu);
1444 break;
1445#ifdef CONFIG_HOTPLUG_CPU
Christoph Lameter5830c592007-05-09 02:34:22 -07001446 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001447 case CPU_DOWN_PREPARE_FROZEN:
Christoph Lameter5830c592007-05-09 02:34:22 -07001448 /*
Christoph Lameter18004c52012-07-06 15:25:12 -05001449 * Shutdown cache reaper. Note that the slab_mutex is
Christoph Lameter5830c592007-05-09 02:34:22 -07001450 * held so that if cache_reap() is invoked it cannot do
1451 * anything expensive but will only modify reap_work
1452 * and reschedule the timer.
1453 */
Tejun Heoafe2c512010-12-14 16:21:17 +01001454 cancel_delayed_work_sync(&per_cpu(slab_reap_work, cpu));
Christoph Lameter5830c592007-05-09 02:34:22 -07001455 /* Now the cache_reaper is guaranteed to be not running. */
Tejun Heo1871e522009-10-29 22:34:13 +09001456 per_cpu(slab_reap_work, cpu).work.func = NULL;
Christoph Lameter5830c592007-05-09 02:34:22 -07001457 break;
1458 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001459 case CPU_DOWN_FAILED_FROZEN:
Christoph Lameter5830c592007-05-09 02:34:22 -07001460 start_cpu_timer(cpu);
1461 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001463 case CPU_DEAD_FROZEN:
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001464 /*
1465 * Even if all the cpus of a node are down, we don't free the
1466 * kmem_list3 of any cache. This to avoid a race between
1467 * cpu_down, and a kmalloc allocation from another cpu for
1468 * memory from the node of the cpu going down. The list3
1469 * structure is usually allocated from kmem_cache_create() and
1470 * gets destroyed at kmem_cache_destroy().
1471 */
Simon Arlott183ff222007-10-20 01:27:18 +02001472 /* fall through */
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08001473#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001475 case CPU_UP_CANCELED_FROZEN:
Christoph Lameter18004c52012-07-06 15:25:12 -05001476 mutex_lock(&slab_mutex);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001477 cpuup_canceled(cpu);
Christoph Lameter18004c52012-07-06 15:25:12 -05001478 mutex_unlock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001480 }
Akinobu Mitaeac40682010-05-26 14:43:32 -07001481 return notifier_from_errno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482}
1483
Chandra Seetharaman74b85f32006-06-27 02:54:09 -07001484static struct notifier_block __cpuinitdata cpucache_notifier = {
1485 &cpuup_callback, NULL, 0
1486};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487
David Rientjes8f9f8d92010-03-27 19:40:47 -07001488#if defined(CONFIG_NUMA) && defined(CONFIG_MEMORY_HOTPLUG)
1489/*
1490 * Drains freelist for a node on each slab cache, used for memory hot-remove.
1491 * Returns -EBUSY if all objects cannot be drained so that the node is not
1492 * removed.
1493 *
Christoph Lameter18004c52012-07-06 15:25:12 -05001494 * Must hold slab_mutex.
David Rientjes8f9f8d92010-03-27 19:40:47 -07001495 */
1496static int __meminit drain_cache_nodelists_node(int node)
1497{
1498 struct kmem_cache *cachep;
1499 int ret = 0;
1500
Christoph Lameter18004c52012-07-06 15:25:12 -05001501 list_for_each_entry(cachep, &slab_caches, list) {
David Rientjes8f9f8d92010-03-27 19:40:47 -07001502 struct kmem_list3 *l3;
1503
1504 l3 = cachep->nodelists[node];
1505 if (!l3)
1506 continue;
1507
1508 drain_freelist(cachep, l3, l3->free_objects);
1509
1510 if (!list_empty(&l3->slabs_full) ||
1511 !list_empty(&l3->slabs_partial)) {
1512 ret = -EBUSY;
1513 break;
1514 }
1515 }
1516 return ret;
1517}
1518
1519static int __meminit slab_memory_callback(struct notifier_block *self,
1520 unsigned long action, void *arg)
1521{
1522 struct memory_notify *mnb = arg;
1523 int ret = 0;
1524 int nid;
1525
1526 nid = mnb->status_change_nid;
1527 if (nid < 0)
1528 goto out;
1529
1530 switch (action) {
1531 case MEM_GOING_ONLINE:
Christoph Lameter18004c52012-07-06 15:25:12 -05001532 mutex_lock(&slab_mutex);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001533 ret = init_cache_nodelists_node(nid);
Christoph Lameter18004c52012-07-06 15:25:12 -05001534 mutex_unlock(&slab_mutex);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001535 break;
1536 case MEM_GOING_OFFLINE:
Christoph Lameter18004c52012-07-06 15:25:12 -05001537 mutex_lock(&slab_mutex);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001538 ret = drain_cache_nodelists_node(nid);
Christoph Lameter18004c52012-07-06 15:25:12 -05001539 mutex_unlock(&slab_mutex);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001540 break;
1541 case MEM_ONLINE:
1542 case MEM_OFFLINE:
1543 case MEM_CANCEL_ONLINE:
1544 case MEM_CANCEL_OFFLINE:
1545 break;
1546 }
1547out:
Prarit Bhargava5fda1bd2011-03-22 16:30:49 -07001548 return notifier_from_errno(ret);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001549}
1550#endif /* CONFIG_NUMA && CONFIG_MEMORY_HOTPLUG */
1551
Christoph Lametere498be72005-09-09 13:03:32 -07001552/*
1553 * swap the static kmem_list3 with kmalloced memory
1554 */
David Rientjes8f9f8d92010-03-27 19:40:47 -07001555static void __init init_list(struct kmem_cache *cachep, struct kmem_list3 *list,
1556 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07001557{
1558 struct kmem_list3 *ptr;
1559
Pekka Enberg83b519e2009-06-10 19:40:04 +03001560 ptr = kmalloc_node(sizeof(struct kmem_list3), GFP_NOWAIT, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07001561 BUG_ON(!ptr);
1562
Christoph Lametere498be72005-09-09 13:03:32 -07001563 memcpy(ptr, list, sizeof(struct kmem_list3));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001564 /*
1565 * Do not assume that spinlocks can be initialized via memcpy:
1566 */
1567 spin_lock_init(&ptr->list_lock);
1568
Christoph Lametere498be72005-09-09 13:03:32 -07001569 MAKE_ALL_LISTS(cachep, ptr, nodeid);
1570 cachep->nodelists[nodeid] = ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001571}
1572
Andrew Mortona737b3e2006-03-22 00:08:11 -08001573/*
Pekka Enberg556a1692008-01-25 08:20:51 +02001574 * For setting up all the kmem_list3s for cache whose buffer_size is same as
1575 * size of kmem_list3.
1576 */
1577static void __init set_up_list3s(struct kmem_cache *cachep, int index)
1578{
1579 int node;
1580
1581 for_each_online_node(node) {
1582 cachep->nodelists[node] = &initkmem_list3[index + node];
1583 cachep->nodelists[node]->next_reap = jiffies +
1584 REAPTIMEOUT_LIST3 +
1585 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
1586 }
1587}
1588
1589/*
Christoph Lameter3c583462012-11-28 16:23:01 +00001590 * The memory after the last cpu cache pointer is used for the
1591 * the nodelists pointer.
1592 */
1593static void setup_nodelists_pointer(struct kmem_cache *cachep)
1594{
1595 cachep->nodelists = (struct kmem_list3 **)&cachep->array[nr_cpu_ids];
1596}
1597
1598/*
Andrew Mortona737b3e2006-03-22 00:08:11 -08001599 * Initialisation. Called after the page allocator have been initialised and
1600 * before smp_init().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 */
1602void __init kmem_cache_init(void)
1603{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 struct cache_sizes *sizes;
1605 struct cache_names *names;
Christoph Lametere498be72005-09-09 13:03:32 -07001606 int i;
1607
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001608 kmem_cache = &kmem_cache_boot;
Christoph Lameter3c583462012-11-28 16:23:01 +00001609 setup_nodelists_pointer(kmem_cache);
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001610
Mel Gormanb6e68bc2009-06-16 15:32:16 -07001611 if (num_possible_nodes() == 1)
Siddha, Suresh B62918a02007-05-02 19:27:18 +02001612 use_alien_caches = 0;
1613
Christoph Lameter3c583462012-11-28 16:23:01 +00001614 for (i = 0; i < NUM_INIT_LISTS; i++)
Christoph Lametere498be72005-09-09 13:03:32 -07001615 kmem_list3_init(&initkmem_list3[i]);
Christoph Lameter3c583462012-11-28 16:23:01 +00001616
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001617 set_up_list3s(kmem_cache, CACHE_CACHE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618
1619 /*
1620 * Fragmentation resistance on low memory - only use bigger
David Rientjes3df1ccc2011-10-18 22:09:28 -07001621 * page orders on machines with more than 32MB of memory if
1622 * not overridden on the command line.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 */
David Rientjes3df1ccc2011-10-18 22:09:28 -07001624 if (!slab_max_order_set && totalram_pages > (32 << 20) >> PAGE_SHIFT)
David Rientjes543585c2011-10-18 22:09:24 -07001625 slab_max_order = SLAB_MAX_ORDER_HI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 /* Bootstrap is tricky, because several objects are allocated
1628 * from caches that do not exist yet:
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001629 * 1) initialize the kmem_cache cache: it contains the struct
1630 * kmem_cache structures of all caches, except kmem_cache itself:
1631 * kmem_cache is statically allocated.
Christoph Lametere498be72005-09-09 13:03:32 -07001632 * Initially an __init data area is used for the head array and the
1633 * kmem_list3 structures, it's replaced with a kmalloc allocated
1634 * array at the end of the bootstrap.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 * 2) Create the first kmalloc cache.
Pekka Enberg343e0d72006-02-01 03:05:50 -08001636 * The struct kmem_cache for the new cache is allocated normally.
Christoph Lametere498be72005-09-09 13:03:32 -07001637 * An __init data area is used for the head array.
1638 * 3) Create the remaining kmalloc caches, with minimally sized
1639 * head arrays.
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001640 * 4) Replace the __init data head arrays for kmem_cache and the first
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 * kmalloc cache with kmalloc allocated arrays.
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001642 * 5) Replace the __init data for kmem_list3 for kmem_cache and
Christoph Lametere498be72005-09-09 13:03:32 -07001643 * the other cache's with kmalloc allocated memory.
1644 * 6) Resize the head arrays of the kmalloc caches to their final sizes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 */
1646
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001647 /* 1) create the kmem_cache */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648
Eric Dumazet8da34302007-05-06 14:49:29 -07001649 /*
Eric Dumazetb56efcf2011-07-20 19:04:23 +02001650 * struct kmem_cache size depends on nr_node_ids & nr_cpu_ids
Eric Dumazet8da34302007-05-06 14:49:29 -07001651 */
Christoph Lameter2f9baa92012-11-28 16:23:09 +00001652 create_boot_cache(kmem_cache, "kmem_cache",
1653 offsetof(struct kmem_cache, array[nr_cpu_ids]) +
1654 nr_node_ids * sizeof(struct kmem_list3 *),
1655 SLAB_HWCACHE_ALIGN);
1656 list_add(&kmem_cache->list, &slab_caches);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657
1658 /* 2+3) create the kmalloc caches */
1659 sizes = malloc_sizes;
1660 names = cache_names;
1661
Andrew Mortona737b3e2006-03-22 00:08:11 -08001662 /*
1663 * Initialize the caches that provide memory for the array cache and the
1664 * kmem_list3 structures first. Without this, further allocations will
1665 * bug.
Christoph Lametere498be72005-09-09 13:03:32 -07001666 */
1667
Christoph Lameter45530c42012-11-28 16:23:07 +00001668 sizes[INDEX_AC].cs_cachep = create_kmalloc_cache(names[INDEX_AC].name,
1669 sizes[INDEX_AC].cs_size, ARCH_KMALLOC_FLAGS);
Christoph Lametere498be72005-09-09 13:03:32 -07001670
Christoph Lameter45530c42012-11-28 16:23:07 +00001671 if (INDEX_AC != INDEX_L3)
1672 sizes[INDEX_L3].cs_cachep =
1673 create_kmalloc_cache(names[INDEX_L3].name,
1674 sizes[INDEX_L3].cs_size, ARCH_KMALLOC_FLAGS);
Christoph Lametere498be72005-09-09 13:03:32 -07001675
Ingo Molnare0a42722006-06-23 02:03:46 -07001676 slab_early_init = 0;
1677
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678 while (sizes->cs_size != ULONG_MAX) {
Christoph Lametere498be72005-09-09 13:03:32 -07001679 /*
1680 * For performance, all the general caches are L1 aligned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 * This should be particularly beneficial on SMP boxes, as it
1682 * eliminates "false sharing".
1683 * Note for systems short on memory removing the alignment will
Christoph Lametere498be72005-09-09 13:03:32 -07001684 * allow tighter packing of the smaller caches.
1685 */
Christoph Lameter45530c42012-11-28 16:23:07 +00001686 if (!sizes->cs_cachep)
1687 sizes->cs_cachep = create_kmalloc_cache(names->name,
1688 sizes->cs_size, ARCH_KMALLOC_FLAGS);
1689
Christoph Lameter4b51d662007-02-10 01:43:10 -08001690#ifdef CONFIG_ZONE_DMA
Christoph Lameter45530c42012-11-28 16:23:07 +00001691 sizes->cs_dmacachep = create_kmalloc_cache(
1692 names->name_dma, sizes->cs_size,
1693 SLAB_CACHE_DMA|ARCH_KMALLOC_FLAGS);
Christoph Lameter4b51d662007-02-10 01:43:10 -08001694#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695 sizes++;
1696 names++;
1697 }
1698 /* 4) Replace the bootstrap head arrays */
1699 {
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001700 struct array_cache *ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001701
Pekka Enberg83b519e2009-06-10 19:40:04 +03001702 ptr = kmalloc(sizeof(struct arraycache_init), GFP_NOWAIT);
Christoph Lametere498be72005-09-09 13:03:32 -07001703
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001704 memcpy(ptr, cpu_cache_get(kmem_cache),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001705 sizeof(struct arraycache_init));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001706 /*
1707 * Do not assume that spinlocks can be initialized via memcpy:
1708 */
1709 spin_lock_init(&ptr->lock);
1710
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001711 kmem_cache->array[smp_processor_id()] = ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001712
Pekka Enberg83b519e2009-06-10 19:40:04 +03001713 ptr = kmalloc(sizeof(struct arraycache_init), GFP_NOWAIT);
Christoph Lametere498be72005-09-09 13:03:32 -07001714
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001715 BUG_ON(cpu_cache_get(malloc_sizes[INDEX_AC].cs_cachep)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001716 != &initarray_generic.cache);
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001717 memcpy(ptr, cpu_cache_get(malloc_sizes[INDEX_AC].cs_cachep),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001718 sizeof(struct arraycache_init));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001719 /*
1720 * Do not assume that spinlocks can be initialized via memcpy:
1721 */
1722 spin_lock_init(&ptr->lock);
1723
Christoph Lametere498be72005-09-09 13:03:32 -07001724 malloc_sizes[INDEX_AC].cs_cachep->array[smp_processor_id()] =
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001725 ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001726 }
Christoph Lametere498be72005-09-09 13:03:32 -07001727 /* 5) Replace the bootstrap kmem_list3's */
1728 {
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001729 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730
Mel Gorman9c09a952008-01-24 05:49:54 -08001731 for_each_online_node(nid) {
Christoph Lameter9b030cb2012-09-05 00:20:33 +00001732 init_list(kmem_cache, &initkmem_list3[CACHE_CACHE + nid], nid);
Pekka Enberg556a1692008-01-25 08:20:51 +02001733
Christoph Lametere498be72005-09-09 13:03:32 -07001734 init_list(malloc_sizes[INDEX_AC].cs_cachep,
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001735 &initkmem_list3[SIZE_AC + nid], nid);
Christoph Lametere498be72005-09-09 13:03:32 -07001736
1737 if (INDEX_AC != INDEX_L3) {
1738 init_list(malloc_sizes[INDEX_L3].cs_cachep,
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001739 &initkmem_list3[SIZE_L3 + nid], nid);
Christoph Lametere498be72005-09-09 13:03:32 -07001740 }
1741 }
1742 }
1743
Christoph Lameter97d06602012-07-06 15:25:11 -05001744 slab_state = UP;
Pekka Enberg8429db52009-06-12 15:58:59 +03001745}
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -07001746
Pekka Enberg8429db52009-06-12 15:58:59 +03001747void __init kmem_cache_init_late(void)
1748{
1749 struct kmem_cache *cachep;
1750
Christoph Lameter97d06602012-07-06 15:25:11 -05001751 slab_state = UP;
Peter Zijlstra52cef182011-11-28 21:12:40 +01001752
Pekka Enberg8429db52009-06-12 15:58:59 +03001753 /* 6) resize the head arrays to their final sizes */
Christoph Lameter18004c52012-07-06 15:25:12 -05001754 mutex_lock(&slab_mutex);
1755 list_for_each_entry(cachep, &slab_caches, list)
Pekka Enberg8429db52009-06-12 15:58:59 +03001756 if (enable_cpucache(cachep, GFP_NOWAIT))
1757 BUG();
Christoph Lameter18004c52012-07-06 15:25:12 -05001758 mutex_unlock(&slab_mutex);
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -07001759
Michael Wang947ca182012-09-05 10:33:18 +08001760 /* Annotate slab for lockdep -- annotate the malloc caches */
1761 init_lock_keys();
1762
Christoph Lameter97d06602012-07-06 15:25:11 -05001763 /* Done! */
1764 slab_state = FULL;
1765
Andrew Mortona737b3e2006-03-22 00:08:11 -08001766 /*
1767 * Register a cpu startup notifier callback that initializes
1768 * cpu_cache_get for all new cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 */
1770 register_cpu_notifier(&cpucache_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771
David Rientjes8f9f8d92010-03-27 19:40:47 -07001772#ifdef CONFIG_NUMA
1773 /*
1774 * Register a memory hotplug callback that initializes and frees
1775 * nodelists.
1776 */
1777 hotplug_memory_notifier(slab_memory_callback, SLAB_CALLBACK_PRI);
1778#endif
1779
Andrew Mortona737b3e2006-03-22 00:08:11 -08001780 /*
1781 * The reap timers are started later, with a module init call: That part
1782 * of the kernel is not yet operational.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 */
1784}
1785
1786static int __init cpucache_init(void)
1787{
1788 int cpu;
1789
Andrew Mortona737b3e2006-03-22 00:08:11 -08001790 /*
1791 * Register the timers that return unneeded pages to the page allocator
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 */
Christoph Lametere498be72005-09-09 13:03:32 -07001793 for_each_online_cpu(cpu)
Andrew Mortona737b3e2006-03-22 00:08:11 -08001794 start_cpu_timer(cpu);
Glauber Costaa164f8962012-06-21 00:59:18 +04001795
1796 /* Done! */
Christoph Lameter97d06602012-07-06 15:25:11 -05001797 slab_state = FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 return 0;
1799}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001800__initcall(cpucache_init);
1801
Rafael Aquini8bdec192012-03-09 17:27:27 -03001802static noinline void
1803slab_out_of_memory(struct kmem_cache *cachep, gfp_t gfpflags, int nodeid)
1804{
1805 struct kmem_list3 *l3;
1806 struct slab *slabp;
1807 unsigned long flags;
1808 int node;
1809
1810 printk(KERN_WARNING
1811 "SLAB: Unable to allocate memory on node %d (gfp=0x%x)\n",
1812 nodeid, gfpflags);
1813 printk(KERN_WARNING " cache: %s, object size: %d, order: %d\n",
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05001814 cachep->name, cachep->size, cachep->gfporder);
Rafael Aquini8bdec192012-03-09 17:27:27 -03001815
1816 for_each_online_node(node) {
1817 unsigned long active_objs = 0, num_objs = 0, free_objects = 0;
1818 unsigned long active_slabs = 0, num_slabs = 0;
1819
1820 l3 = cachep->nodelists[node];
1821 if (!l3)
1822 continue;
1823
1824 spin_lock_irqsave(&l3->list_lock, flags);
1825 list_for_each_entry(slabp, &l3->slabs_full, list) {
1826 active_objs += cachep->num;
1827 active_slabs++;
1828 }
1829 list_for_each_entry(slabp, &l3->slabs_partial, list) {
1830 active_objs += slabp->inuse;
1831 active_slabs++;
1832 }
1833 list_for_each_entry(slabp, &l3->slabs_free, list)
1834 num_slabs++;
1835
1836 free_objects += l3->free_objects;
1837 spin_unlock_irqrestore(&l3->list_lock, flags);
1838
1839 num_slabs += active_slabs;
1840 num_objs = num_slabs * cachep->num;
1841 printk(KERN_WARNING
1842 " node %d: slabs: %ld/%ld, objs: %ld/%ld, free: %ld\n",
1843 node, active_slabs, num_slabs, active_objs, num_objs,
1844 free_objects);
1845 }
1846}
1847
Linus Torvalds1da177e2005-04-16 15:20:36 -07001848/*
1849 * Interface to system's page allocator. No need to hold the cache-lock.
1850 *
1851 * If we requested dmaable memory, we will get it. Even if we
1852 * did not request dmaable memory, we might get it, but that
1853 * would be relatively rare and ignorable.
1854 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001855static void *kmem_getpages(struct kmem_cache *cachep, gfp_t flags, int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856{
1857 struct page *page;
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001858 int nr_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001859 int i;
1860
Luke Yangd6fef9d2006-04-10 22:52:56 -07001861#ifndef CONFIG_MMU
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001862 /*
1863 * Nommu uses slab's for process anonymous memory allocations, and thus
1864 * requires __GFP_COMP to properly refcount higher order allocations
Luke Yangd6fef9d2006-04-10 22:52:56 -07001865 */
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001866 flags |= __GFP_COMP;
Luke Yangd6fef9d2006-04-10 22:52:56 -07001867#endif
Christoph Lameter765c4502006-09-27 01:50:08 -07001868
Glauber Costaa618e892012-06-14 16:17:21 +04001869 flags |= cachep->allocflags;
Mel Gormane12ba742007-10-16 01:25:52 -07001870 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1871 flags |= __GFP_RECLAIMABLE;
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001872
Linus Torvalds517d0862009-06-16 19:50:13 -07001873 page = alloc_pages_exact_node(nodeid, flags | __GFP_NOTRACK, cachep->gfporder);
Rafael Aquini8bdec192012-03-09 17:27:27 -03001874 if (!page) {
1875 if (!(flags & __GFP_NOWARN) && printk_ratelimit())
1876 slab_out_of_memory(cachep, flags, nodeid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 return NULL;
Rafael Aquini8bdec192012-03-09 17:27:27 -03001878 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879
Mel Gormanb37f1dd2012-07-31 16:44:03 -07001880 /* Record if ALLOC_NO_WATERMARKS was set when allocating the slab */
Mel Gorman072bb0a2012-07-31 16:43:58 -07001881 if (unlikely(page->pfmemalloc))
1882 pfmemalloc_active = true;
1883
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001884 nr_pages = (1 << cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
Christoph Lameter972d1a72006-09-25 23:31:51 -07001886 add_zone_page_state(page_zone(page),
1887 NR_SLAB_RECLAIMABLE, nr_pages);
1888 else
1889 add_zone_page_state(page_zone(page),
1890 NR_SLAB_UNRECLAIMABLE, nr_pages);
Mel Gorman072bb0a2012-07-31 16:43:58 -07001891 for (i = 0; i < nr_pages; i++) {
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001892 __SetPageSlab(page + i);
Pekka Enbergc175eea2008-05-09 20:35:53 +02001893
Mel Gorman072bb0a2012-07-31 16:43:58 -07001894 if (page->pfmemalloc)
1895 SetPageSlabPfmemalloc(page + i);
1896 }
1897
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001898 if (kmemcheck_enabled && !(cachep->flags & SLAB_NOTRACK)) {
1899 kmemcheck_alloc_shadow(page, cachep->gfporder, flags, nodeid);
1900
1901 if (cachep->ctor)
1902 kmemcheck_mark_uninitialized_pages(page, nr_pages);
1903 else
1904 kmemcheck_mark_unallocated_pages(page, nr_pages);
1905 }
Pekka Enbergc175eea2008-05-09 20:35:53 +02001906
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001907 return page_address(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908}
1909
1910/*
1911 * Interface to system's page release.
1912 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001913static void kmem_freepages(struct kmem_cache *cachep, void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001915 unsigned long i = (1 << cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916 struct page *page = virt_to_page(addr);
1917 const unsigned long nr_freed = i;
1918
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001919 kmemcheck_free_shadow(page, cachep->gfporder);
Pekka Enbergc175eea2008-05-09 20:35:53 +02001920
Christoph Lameter972d1a72006-09-25 23:31:51 -07001921 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1922 sub_zone_page_state(page_zone(page),
1923 NR_SLAB_RECLAIMABLE, nr_freed);
1924 else
1925 sub_zone_page_state(page_zone(page),
1926 NR_SLAB_UNRECLAIMABLE, nr_freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001927 while (i--) {
Nick Pigginf205b2f2006-03-22 00:08:02 -08001928 BUG_ON(!PageSlab(page));
Mel Gorman072bb0a2012-07-31 16:43:58 -07001929 __ClearPageSlabPfmemalloc(page);
Nick Pigginf205b2f2006-03-22 00:08:02 -08001930 __ClearPageSlab(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 page++;
1932 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 if (current->reclaim_state)
1934 current->reclaim_state->reclaimed_slab += nr_freed;
1935 free_pages((unsigned long)addr, cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936}
1937
1938static void kmem_rcu_free(struct rcu_head *head)
1939{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001940 struct slab_rcu *slab_rcu = (struct slab_rcu *)head;
Pekka Enberg343e0d72006-02-01 03:05:50 -08001941 struct kmem_cache *cachep = slab_rcu->cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001942
1943 kmem_freepages(cachep, slab_rcu->addr);
1944 if (OFF_SLAB(cachep))
1945 kmem_cache_free(cachep->slabp_cache, slab_rcu);
1946}
1947
1948#if DEBUG
1949
1950#ifdef CONFIG_DEBUG_PAGEALLOC
Pekka Enberg343e0d72006-02-01 03:05:50 -08001951static void store_stackinfo(struct kmem_cache *cachep, unsigned long *addr,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001952 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001953{
Christoph Lameter8c138bc2012-06-13 10:24:58 -05001954 int size = cachep->object_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001956 addr = (unsigned long *)&((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001958 if (size < 5 * sizeof(unsigned long))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 return;
1960
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001961 *addr++ = 0x12345678;
1962 *addr++ = caller;
1963 *addr++ = smp_processor_id();
1964 size -= 3 * sizeof(unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965 {
1966 unsigned long *sptr = &caller;
1967 unsigned long svalue;
1968
1969 while (!kstack_end(sptr)) {
1970 svalue = *sptr++;
1971 if (kernel_text_address(svalue)) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001972 *addr++ = svalue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001973 size -= sizeof(unsigned long);
1974 if (size <= sizeof(unsigned long))
1975 break;
1976 }
1977 }
1978
1979 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001980 *addr++ = 0x87654321;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981}
1982#endif
1983
Pekka Enberg343e0d72006-02-01 03:05:50 -08001984static void poison_obj(struct kmem_cache *cachep, void *addr, unsigned char val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001985{
Christoph Lameter8c138bc2012-06-13 10:24:58 -05001986 int size = cachep->object_size;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001987 addr = &((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988
1989 memset(addr, val, size);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001990 *(unsigned char *)(addr + size - 1) = POISON_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991}
1992
1993static void dump_line(char *data, int offset, int limit)
1994{
1995 int i;
Dave Jonesaa83aa42006-09-29 01:59:51 -07001996 unsigned char error = 0;
1997 int bad_count = 0;
1998
Sebastian Andrzej Siewiorfdde6ab2011-07-29 18:22:13 +02001999 printk(KERN_ERR "%03x: ", offset);
Dave Jonesaa83aa42006-09-29 01:59:51 -07002000 for (i = 0; i < limit; i++) {
2001 if (data[offset + i] != POISON_FREE) {
2002 error = data[offset + i];
2003 bad_count++;
2004 }
Dave Jonesaa83aa42006-09-29 01:59:51 -07002005 }
Sebastian Andrzej Siewiorfdde6ab2011-07-29 18:22:13 +02002006 print_hex_dump(KERN_CONT, "", 0, 16, 1,
2007 &data[offset], limit, 1);
Dave Jonesaa83aa42006-09-29 01:59:51 -07002008
2009 if (bad_count == 1) {
2010 error ^= POISON_FREE;
2011 if (!(error & (error - 1))) {
2012 printk(KERN_ERR "Single bit error detected. Probably "
2013 "bad RAM.\n");
2014#ifdef CONFIG_X86
2015 printk(KERN_ERR "Run memtest86+ or a similar memory "
2016 "test tool.\n");
2017#else
2018 printk(KERN_ERR "Run a memory test tool.\n");
2019#endif
2020 }
2021 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022}
2023#endif
2024
2025#if DEBUG
2026
Pekka Enberg343e0d72006-02-01 03:05:50 -08002027static void print_objinfo(struct kmem_cache *cachep, void *objp, int lines)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028{
2029 int i, size;
2030 char *realobj;
2031
2032 if (cachep->flags & SLAB_RED_ZONE) {
David Woodhouseb46b8f12007-05-08 00:22:59 -07002033 printk(KERN_ERR "Redzone: 0x%llx/0x%llx.\n",
Andrew Mortona737b3e2006-03-22 00:08:11 -08002034 *dbg_redzone1(cachep, objp),
2035 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036 }
2037
2038 if (cachep->flags & SLAB_STORE_USER) {
2039 printk(KERN_ERR "Last user: [<%p>]",
Andrew Mortona737b3e2006-03-22 00:08:11 -08002040 *dbg_userword(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041 print_symbol("(%s)",
Andrew Mortona737b3e2006-03-22 00:08:11 -08002042 (unsigned long)*dbg_userword(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 printk("\n");
2044 }
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002045 realobj = (char *)objp + obj_offset(cachep);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05002046 size = cachep->object_size;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002047 for (i = 0; i < size && lines; i += 16, lines--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 int limit;
2049 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002050 if (i + limit > size)
2051 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002052 dump_line(realobj, i, limit);
2053 }
2054}
2055
Pekka Enberg343e0d72006-02-01 03:05:50 -08002056static void check_poison_obj(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057{
2058 char *realobj;
2059 int size, i;
2060 int lines = 0;
2061
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002062 realobj = (char *)objp + obj_offset(cachep);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05002063 size = cachep->object_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002065 for (i = 0; i < size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 char exp = POISON_FREE;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002067 if (i == size - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 exp = POISON_END;
2069 if (realobj[i] != exp) {
2070 int limit;
2071 /* Mismatch ! */
2072 /* Print header */
2073 if (lines == 0) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002074 printk(KERN_ERR
Dave Jonesface37f2011-11-15 15:03:52 -08002075 "Slab corruption (%s): %s start=%p, len=%d\n",
2076 print_tainted(), cachep->name, realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002077 print_objinfo(cachep, objp, 0);
2078 }
2079 /* Hexdump the affected line */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002080 i = (i / 16) * 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002081 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002082 if (i + limit > size)
2083 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 dump_line(realobj, i, limit);
2085 i += 16;
2086 lines++;
2087 /* Limit to 5 lines */
2088 if (lines > 5)
2089 break;
2090 }
2091 }
2092 if (lines != 0) {
2093 /* Print some data about the neighboring objects, if they
2094 * exist:
2095 */
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -08002096 struct slab *slabp = virt_to_slab(objp);
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002097 unsigned int objnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002099 objnr = obj_to_index(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100 if (objnr) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002101 objp = index_to_obj(cachep, slabp, objnr - 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002102 realobj = (char *)objp + obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103 printk(KERN_ERR "Prev obj: start=%p, len=%d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002104 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 print_objinfo(cachep, objp, 2);
2106 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002107 if (objnr + 1 < cachep->num) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002108 objp = index_to_obj(cachep, slabp, objnr + 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002109 realobj = (char *)objp + obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 printk(KERN_ERR "Next obj: start=%p, len=%d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002111 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 print_objinfo(cachep, objp, 2);
2113 }
2114 }
2115}
2116#endif
2117
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118#if DEBUG
Rabin Vincente79aec22008-07-04 00:40:32 +05302119static void slab_destroy_debugcheck(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002120{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 int i;
2122 for (i = 0; i < cachep->num; i++) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002123 void *objp = index_to_obj(cachep, slabp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124
2125 if (cachep->flags & SLAB_POISON) {
2126#ifdef CONFIG_DEBUG_PAGEALLOC
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002127 if (cachep->size % PAGE_SIZE == 0 &&
Andrew Mortona737b3e2006-03-22 00:08:11 -08002128 OFF_SLAB(cachep))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002129 kernel_map_pages(virt_to_page(objp),
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002130 cachep->size / PAGE_SIZE, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131 else
2132 check_poison_obj(cachep, objp);
2133#else
2134 check_poison_obj(cachep, objp);
2135#endif
2136 }
2137 if (cachep->flags & SLAB_RED_ZONE) {
2138 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
2139 slab_error(cachep, "start of a freed object "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002140 "was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
2142 slab_error(cachep, "end of a freed object "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002143 "was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002144 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 }
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002146}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147#else
Rabin Vincente79aec22008-07-04 00:40:32 +05302148static void slab_destroy_debugcheck(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002149{
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002150}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151#endif
2152
Randy Dunlap911851e2006-03-22 00:08:14 -08002153/**
2154 * slab_destroy - destroy and release all objects in a slab
2155 * @cachep: cache pointer being destroyed
2156 * @slabp: slab pointer being destroyed
2157 *
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002158 * Destroy all the objs in a slab, and release the mem back to the system.
Andrew Mortona737b3e2006-03-22 00:08:11 -08002159 * Before calling the slab must have been unlinked from the cache. The
2160 * cache-lock is not held/needed.
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002161 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002162static void slab_destroy(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002163{
2164 void *addr = slabp->s_mem - slabp->colouroff;
2165
Rabin Vincente79aec22008-07-04 00:40:32 +05302166 slab_destroy_debugcheck(cachep, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 if (unlikely(cachep->flags & SLAB_DESTROY_BY_RCU)) {
2168 struct slab_rcu *slab_rcu;
2169
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002170 slab_rcu = (struct slab_rcu *)slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002171 slab_rcu->cachep = cachep;
2172 slab_rcu->addr = addr;
2173 call_rcu(&slab_rcu->head, kmem_rcu_free);
2174 } else {
2175 kmem_freepages(cachep, addr);
Ingo Molnar873623d2006-07-13 14:44:38 +02002176 if (OFF_SLAB(cachep))
2177 kmem_cache_free(cachep->slabp_cache, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 }
2179}
2180
2181/**
Randy.Dunlapa70773d2006-02-01 03:05:52 -08002182 * calculate_slab_order - calculate size (page order) of slabs
2183 * @cachep: pointer to the cache that is being created
2184 * @size: size of objects to be created in this cache.
2185 * @align: required alignment for the objects.
2186 * @flags: slab allocation flags
2187 *
2188 * Also calculates the number of objects per slab.
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002189 *
2190 * This could be made much more intelligent. For now, try to avoid using
2191 * high order pages for slabs. When the gfp() functions are more friendly
2192 * towards high-order requests, this should be changed.
2193 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002194static size_t calculate_slab_order(struct kmem_cache *cachep,
Randy Dunlapee13d782006-02-01 03:05:53 -08002195 size_t size, size_t align, unsigned long flags)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002196{
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02002197 unsigned long offslab_limit;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002198 size_t left_over = 0;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002199 int gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002200
Christoph Lameter0aa817f2007-05-16 22:11:01 -07002201 for (gfporder = 0; gfporder <= KMALLOC_MAX_ORDER; gfporder++) {
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002202 unsigned int num;
2203 size_t remainder;
2204
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002205 cache_estimate(gfporder, size, align, flags, &remainder, &num);
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002206 if (!num)
2207 continue;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002208
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02002209 if (flags & CFLGS_OFF_SLAB) {
2210 /*
2211 * Max number of objs-per-slab for caches which
2212 * use off-slab slabs. Needed to avoid a possible
2213 * looping condition in cache_grow().
2214 */
2215 offslab_limit = size - sizeof(struct slab);
2216 offslab_limit /= sizeof(kmem_bufctl_t);
2217
2218 if (num > offslab_limit)
2219 break;
2220 }
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002221
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002222 /* Found something acceptable - save it away */
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002223 cachep->num = num;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002224 cachep->gfporder = gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002225 left_over = remainder;
2226
2227 /*
Linus Torvaldsf78bb8a2006-03-08 10:33:05 -08002228 * A VFS-reclaimable slab tends to have most allocations
2229 * as GFP_NOFS and we really don't want to have to be allocating
2230 * higher-order pages when we are unable to shrink dcache.
2231 */
2232 if (flags & SLAB_RECLAIM_ACCOUNT)
2233 break;
2234
2235 /*
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002236 * Large number of objects is good, but very large slabs are
2237 * currently bad for the gfp()s.
2238 */
David Rientjes543585c2011-10-18 22:09:24 -07002239 if (gfporder >= slab_max_order)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002240 break;
2241
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002242 /*
2243 * Acceptable internal fragmentation?
2244 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002245 if (left_over * 8 <= (PAGE_SIZE << gfporder))
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002246 break;
2247 }
2248 return left_over;
2249}
2250
Pekka Enberg83b519e2009-06-10 19:40:04 +03002251static int __init_refok setup_cpu_cache(struct kmem_cache *cachep, gfp_t gfp)
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002252{
Christoph Lameter97d06602012-07-06 15:25:11 -05002253 if (slab_state >= FULL)
Pekka Enberg83b519e2009-06-10 19:40:04 +03002254 return enable_cpucache(cachep, gfp);
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002255
Christoph Lameter97d06602012-07-06 15:25:11 -05002256 if (slab_state == DOWN) {
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002257 /*
Christoph Lameter2f9baa92012-11-28 16:23:09 +00002258 * Note: Creation of first cache (kmem_cache).
2259 * The setup_list3s is taken care
2260 * of by the caller of __kmem_cache_create
2261 */
2262 cachep->array[smp_processor_id()] = &initarray_generic.cache;
2263 slab_state = PARTIAL;
2264 } else if (slab_state == PARTIAL) {
2265 /*
2266 * Note: the second kmem_cache_create must create the cache
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002267 * that's used by kmalloc(24), otherwise the creation of
2268 * further caches will BUG().
2269 */
2270 cachep->array[smp_processor_id()] = &initarray_generic.cache;
2271
2272 /*
2273 * If the cache that's used by kmalloc(sizeof(kmem_list3)) is
Christoph Lameter2f9baa92012-11-28 16:23:09 +00002274 * the second cache, then we need to set up all its list3s,
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002275 * otherwise the creation of further caches will BUG().
2276 */
2277 set_up_list3s(cachep, SIZE_AC);
2278 if (INDEX_AC == INDEX_L3)
Christoph Lameter97d06602012-07-06 15:25:11 -05002279 slab_state = PARTIAL_L3;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002280 else
Christoph Lameter97d06602012-07-06 15:25:11 -05002281 slab_state = PARTIAL_ARRAYCACHE;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002282 } else {
Christoph Lameter2f9baa92012-11-28 16:23:09 +00002283 /* Remaining boot caches */
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002284 cachep->array[smp_processor_id()] =
Pekka Enberg83b519e2009-06-10 19:40:04 +03002285 kmalloc(sizeof(struct arraycache_init), gfp);
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002286
Christoph Lameter97d06602012-07-06 15:25:11 -05002287 if (slab_state == PARTIAL_ARRAYCACHE) {
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002288 set_up_list3s(cachep, SIZE_L3);
Christoph Lameter97d06602012-07-06 15:25:11 -05002289 slab_state = PARTIAL_L3;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002290 } else {
2291 int node;
Pekka Enberg556a1692008-01-25 08:20:51 +02002292 for_each_online_node(node) {
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002293 cachep->nodelists[node] =
2294 kmalloc_node(sizeof(struct kmem_list3),
Pekka Enbergeb91f1d2009-06-12 14:56:09 +03002295 gfp, node);
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002296 BUG_ON(!cachep->nodelists[node]);
2297 kmem_list3_init(cachep->nodelists[node]);
2298 }
2299 }
2300 }
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07002301 cachep->nodelists[numa_mem_id()]->next_reap =
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002302 jiffies + REAPTIMEOUT_LIST3 +
2303 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
2304
2305 cpu_cache_get(cachep)->avail = 0;
2306 cpu_cache_get(cachep)->limit = BOOT_CPUCACHE_ENTRIES;
2307 cpu_cache_get(cachep)->batchcount = 1;
2308 cpu_cache_get(cachep)->touched = 0;
2309 cachep->batchcount = 1;
2310 cachep->limit = BOOT_CPUCACHE_ENTRIES;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002311 return 0;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002312}
2313
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002314/**
Christoph Lameter039363f2012-07-06 15:25:10 -05002315 * __kmem_cache_create - Create a cache.
Randy Dunlapa755b762012-11-06 17:10:10 -08002316 * @cachep: cache management descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -07002317 * @flags: SLAB flags
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 *
2319 * Returns a ptr to the cache on success, NULL on failure.
2320 * Cannot be called within a int, but can be interrupted.
Paul Mundt20c2df82007-07-20 10:11:58 +09002321 * The @ctor is run when new pages are allocated by the cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 * The flags are
2324 *
2325 * %SLAB_POISON - Poison the slab with a known test pattern (a5a5a5a5)
2326 * to catch references to uninitialised memory.
2327 *
2328 * %SLAB_RED_ZONE - Insert `Red' zones around the allocated memory to check
2329 * for buffer overruns.
2330 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002331 * %SLAB_HWCACHE_ALIGN - Align the objects in this cache to a hardware
2332 * cacheline. This can be beneficial if you're counting cycles as closely
2333 * as davem.
2334 */
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002335int
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002336__kmem_cache_create (struct kmem_cache *cachep, unsigned long flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337{
2338 size_t left_over, slab_size, ralign;
Pekka Enberg83b519e2009-06-10 19:40:04 +03002339 gfp_t gfp;
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002340 int err;
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002341 size_t size = cachep->size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343#if DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344#if FORCED_DEBUG
2345 /*
2346 * Enable redzoning and last user accounting, except for caches with
2347 * large objects, if the increased size would increase the object size
2348 * above the next power of two: caches with object sizes just above a
2349 * power of two have a significant amount of internal fragmentation.
2350 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002351 if (size < 4096 || fls(size - 1) == fls(size-1 + REDZONE_ALIGN +
2352 2 * sizeof(unsigned long long)))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002353 flags |= SLAB_RED_ZONE | SLAB_STORE_USER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002354 if (!(flags & SLAB_DESTROY_BY_RCU))
2355 flags |= SLAB_POISON;
2356#endif
2357 if (flags & SLAB_DESTROY_BY_RCU)
2358 BUG_ON(flags & SLAB_POISON);
2359#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002360
Andrew Mortona737b3e2006-03-22 00:08:11 -08002361 /*
2362 * Check that size is in terms of words. This is needed to avoid
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 * unaligned accesses for some archs when redzoning is used, and makes
2364 * sure any on-slab bufctl's are also correctly aligned.
2365 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002366 if (size & (BYTES_PER_WORD - 1)) {
2367 size += (BYTES_PER_WORD - 1);
2368 size &= ~(BYTES_PER_WORD - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 }
2370
Pekka Enbergca5f9702006-09-25 23:31:25 -07002371 /*
David Woodhouse87a927c2007-07-04 21:26:44 -04002372 * Redzoning and user store require word alignment or possibly larger.
2373 * Note this will be overridden by architecture or caller mandated
2374 * alignment if either is greater than BYTES_PER_WORD.
Pekka Enbergca5f9702006-09-25 23:31:25 -07002375 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002376 if (flags & SLAB_STORE_USER)
2377 ralign = BYTES_PER_WORD;
2378
2379 if (flags & SLAB_RED_ZONE) {
2380 ralign = REDZONE_ALIGN;
2381 /* If redzoning, ensure that the second redzone is suitably
2382 * aligned, by adjusting the object size accordingly. */
2383 size += REDZONE_ALIGN - 1;
2384 size &= ~(REDZONE_ALIGN - 1);
2385 }
Pekka Enbergca5f9702006-09-25 23:31:25 -07002386
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002387 /* 3) caller mandated alignment */
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002388 if (ralign < cachep->align) {
2389 ralign = cachep->align;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 }
Pekka Enberg3ff84a72011-02-14 17:46:21 +02002391 /* disable debug if necessary */
2392 if (ralign > __alignof__(unsigned long long))
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002393 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002394 /*
Pekka Enbergca5f9702006-09-25 23:31:25 -07002395 * 4) Store it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 */
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002397 cachep->align = ralign;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398
Pekka Enberg83b519e2009-06-10 19:40:04 +03002399 if (slab_is_available())
2400 gfp = GFP_KERNEL;
2401 else
2402 gfp = GFP_NOWAIT;
2403
Christoph Lameter3c583462012-11-28 16:23:01 +00002404 setup_nodelists_pointer(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405#if DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406
Pekka Enbergca5f9702006-09-25 23:31:25 -07002407 /*
2408 * Both debugging options require word-alignment which is calculated
2409 * into align above.
2410 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411 if (flags & SLAB_RED_ZONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 /* add space for red zone words */
Pekka Enberg3ff84a72011-02-14 17:46:21 +02002413 cachep->obj_offset += sizeof(unsigned long long);
2414 size += 2 * sizeof(unsigned long long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 }
2416 if (flags & SLAB_STORE_USER) {
Pekka Enbergca5f9702006-09-25 23:31:25 -07002417 /* user store requires one word storage behind the end of
David Woodhouse87a927c2007-07-04 21:26:44 -04002418 * the real object. But if the second red zone needs to be
2419 * aligned to 64 bits, we must allow that much space.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002421 if (flags & SLAB_RED_ZONE)
2422 size += REDZONE_ALIGN;
2423 else
2424 size += BYTES_PER_WORD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002425 }
2426#if FORCED_DEBUG && defined(CONFIG_DEBUG_PAGEALLOC)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002427 if (size >= malloc_sizes[INDEX_L3 + 1].cs_size
Tetsuo Handa608da7e2012-09-30 17:28:25 +09002428 && cachep->object_size > cache_line_size()
2429 && ALIGN(size, cachep->align) < PAGE_SIZE) {
2430 cachep->obj_offset += PAGE_SIZE - ALIGN(size, cachep->align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002431 size = PAGE_SIZE;
2432 }
2433#endif
2434#endif
2435
Ingo Molnare0a42722006-06-23 02:03:46 -07002436 /*
2437 * Determine if the slab management is 'on' or 'off' slab.
2438 * (bootstrapping cannot cope with offslab caches so don't do
Catalin Marinase7cb55b2009-10-28 13:33:08 +00002439 * it too early on. Always use on-slab management when
2440 * SLAB_NOLEAKTRACE to avoid recursive calls into kmemleak)
Ingo Molnare0a42722006-06-23 02:03:46 -07002441 */
Catalin Marinase7cb55b2009-10-28 13:33:08 +00002442 if ((size >= (PAGE_SIZE >> 3)) && !slab_early_init &&
2443 !(flags & SLAB_NOLEAKTRACE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444 /*
2445 * Size is large, assume best to place the slab management obj
2446 * off-slab (should allow better packing of objs).
2447 */
2448 flags |= CFLGS_OFF_SLAB;
2449
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002450 size = ALIGN(size, cachep->align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002451
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002452 left_over = calculate_slab_order(cachep, size, cachep->align, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002454 if (!cachep->num)
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002455 return -E2BIG;
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002456
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002457 slab_size = ALIGN(cachep->num * sizeof(kmem_bufctl_t)
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002458 + sizeof(struct slab), cachep->align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002459
2460 /*
2461 * If the slab has been placed off-slab, and we have enough space then
2462 * move it on-slab. This is at the expense of any extra colouring.
2463 */
2464 if (flags & CFLGS_OFF_SLAB && left_over >= slab_size) {
2465 flags &= ~CFLGS_OFF_SLAB;
2466 left_over -= slab_size;
2467 }
2468
2469 if (flags & CFLGS_OFF_SLAB) {
2470 /* really off slab. No need for manual alignment */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002471 slab_size =
2472 cachep->num * sizeof(kmem_bufctl_t) + sizeof(struct slab);
Ron Lee67461362009-05-22 04:58:22 +09302473
2474#ifdef CONFIG_PAGE_POISONING
2475 /* If we're going to use the generic kernel_map_pages()
2476 * poisoning, then it's going to smash the contents of
2477 * the redzone and userword anyhow, so switch them off.
2478 */
2479 if (size % PAGE_SIZE == 0 && flags & SLAB_POISON)
2480 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
2481#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482 }
2483
2484 cachep->colour_off = cache_line_size();
2485 /* Offset must be a multiple of the alignment. */
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00002486 if (cachep->colour_off < cachep->align)
2487 cachep->colour_off = cachep->align;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002488 cachep->colour = left_over / cachep->colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002489 cachep->slab_size = slab_size;
2490 cachep->flags = flags;
Glauber Costaa618e892012-06-14 16:17:21 +04002491 cachep->allocflags = 0;
Christoph Lameter4b51d662007-02-10 01:43:10 -08002492 if (CONFIG_ZONE_DMA_FLAG && (flags & SLAB_CACHE_DMA))
Glauber Costaa618e892012-06-14 16:17:21 +04002493 cachep->allocflags |= GFP_DMA;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002494 cachep->size = size;
Eric Dumazet6a2d7a92006-12-13 00:34:27 -08002495 cachep->reciprocal_buffer_size = reciprocal_value(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002496
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002497 if (flags & CFLGS_OFF_SLAB) {
Victor Fuscob2d55072005-09-10 00:26:36 -07002498 cachep->slabp_cache = kmem_find_general_cachep(slab_size, 0u);
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002499 /*
2500 * This is a possibility for one of the malloc_sizes caches.
2501 * But since we go off slab only for object size greater than
2502 * PAGE_SIZE/8, and malloc_sizes gets created in ascending order,
2503 * this should not happen at all.
2504 * But leave a BUG_ON for some lucky dude.
2505 */
Christoph Lameter6cb8f912007-07-17 04:03:22 -07002506 BUG_ON(ZERO_OR_NULL_PTR(cachep->slabp_cache));
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002507 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002508
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002509 err = setup_cpu_cache(cachep, gfp);
2510 if (err) {
Christoph Lameter12c36672012-09-04 23:38:33 +00002511 __kmem_cache_shutdown(cachep);
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002512 return err;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002513 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514
Peter Zijlstra83835b32011-07-22 15:26:05 +02002515 if (flags & SLAB_DEBUG_OBJECTS) {
2516 /*
2517 * Would deadlock through slab_destroy()->call_rcu()->
2518 * debug_object_activate()->kmem_cache_alloc().
2519 */
2520 WARN_ON_ONCE(flags & SLAB_DESTROY_BY_RCU);
2521
2522 slab_set_debugobj_lock_classes(cachep);
Glauber Costa6ccfb5b2012-12-18 14:22:31 -08002523 } else if (!OFF_SLAB(cachep) && !(flags & SLAB_DESTROY_BY_RCU))
2524 on_slab_lock_classes(cachep);
Peter Zijlstra83835b32011-07-22 15:26:05 +02002525
Christoph Lameter278b1bb2012-09-05 00:20:34 +00002526 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002527}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002528
2529#if DEBUG
2530static void check_irq_off(void)
2531{
2532 BUG_ON(!irqs_disabled());
2533}
2534
2535static void check_irq_on(void)
2536{
2537 BUG_ON(irqs_disabled());
2538}
2539
Pekka Enberg343e0d72006-02-01 03:05:50 -08002540static void check_spinlock_acquired(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541{
2542#ifdef CONFIG_SMP
2543 check_irq_off();
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07002544 assert_spin_locked(&cachep->nodelists[numa_mem_id()]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545#endif
2546}
Christoph Lametere498be72005-09-09 13:03:32 -07002547
Pekka Enberg343e0d72006-02-01 03:05:50 -08002548static void check_spinlock_acquired_node(struct kmem_cache *cachep, int node)
Christoph Lametere498be72005-09-09 13:03:32 -07002549{
2550#ifdef CONFIG_SMP
2551 check_irq_off();
2552 assert_spin_locked(&cachep->nodelists[node]->list_lock);
2553#endif
2554}
2555
Linus Torvalds1da177e2005-04-16 15:20:36 -07002556#else
2557#define check_irq_off() do { } while(0)
2558#define check_irq_on() do { } while(0)
2559#define check_spinlock_acquired(x) do { } while(0)
Christoph Lametere498be72005-09-09 13:03:32 -07002560#define check_spinlock_acquired_node(x, y) do { } while(0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002561#endif
2562
Christoph Lameteraab22072006-03-22 00:09:06 -08002563static void drain_array(struct kmem_cache *cachep, struct kmem_list3 *l3,
2564 struct array_cache *ac,
2565 int force, int node);
2566
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567static void do_drain(void *arg)
2568{
Andrew Mortona737b3e2006-03-22 00:08:11 -08002569 struct kmem_cache *cachep = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002570 struct array_cache *ac;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07002571 int node = numa_mem_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572
2573 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002574 ac = cpu_cache_get(cachep);
Christoph Lameterff694162005-09-22 21:44:02 -07002575 spin_lock(&cachep->nodelists[node]->list_lock);
2576 free_block(cachep, ac->entry, ac->avail, node);
2577 spin_unlock(&cachep->nodelists[node]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002578 ac->avail = 0;
2579}
2580
Pekka Enberg343e0d72006-02-01 03:05:50 -08002581static void drain_cpu_caches(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582{
Christoph Lametere498be72005-09-09 13:03:32 -07002583 struct kmem_list3 *l3;
2584 int node;
2585
Jens Axboe15c8b6c2008-05-09 09:39:44 +02002586 on_each_cpu(do_drain, cachep, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587 check_irq_on();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002588 for_each_online_node(node) {
Christoph Lametere498be72005-09-09 13:03:32 -07002589 l3 = cachep->nodelists[node];
Roland Dreiera4523a82006-05-15 11:41:00 -07002590 if (l3 && l3->alien)
2591 drain_alien_cache(cachep, l3->alien);
2592 }
2593
2594 for_each_online_node(node) {
2595 l3 = cachep->nodelists[node];
2596 if (l3)
Christoph Lameteraab22072006-03-22 00:09:06 -08002597 drain_array(cachep, l3, l3->shared, 1, node);
Christoph Lametere498be72005-09-09 13:03:32 -07002598 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599}
2600
Christoph Lametered11d9e2006-06-30 01:55:45 -07002601/*
2602 * Remove slabs from the list of free slabs.
2603 * Specify the number of slabs to drain in tofree.
2604 *
2605 * Returns the actual number of slabs released.
2606 */
2607static int drain_freelist(struct kmem_cache *cache,
2608 struct kmem_list3 *l3, int tofree)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002609{
Christoph Lametered11d9e2006-06-30 01:55:45 -07002610 struct list_head *p;
2611 int nr_freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612 struct slab *slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613
Christoph Lametered11d9e2006-06-30 01:55:45 -07002614 nr_freed = 0;
2615 while (nr_freed < tofree && !list_empty(&l3->slabs_free)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616
Christoph Lametered11d9e2006-06-30 01:55:45 -07002617 spin_lock_irq(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07002618 p = l3->slabs_free.prev;
Christoph Lametered11d9e2006-06-30 01:55:45 -07002619 if (p == &l3->slabs_free) {
2620 spin_unlock_irq(&l3->list_lock);
2621 goto out;
2622 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623
Christoph Lametered11d9e2006-06-30 01:55:45 -07002624 slabp = list_entry(p, struct slab, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625#if DEBUG
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002626 BUG_ON(slabp->inuse);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002627#endif
2628 list_del(&slabp->list);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002629 /*
2630 * Safe to drop the lock. The slab is no longer linked
2631 * to the cache.
2632 */
2633 l3->free_objects -= cache->num;
Christoph Lametere498be72005-09-09 13:03:32 -07002634 spin_unlock_irq(&l3->list_lock);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002635 slab_destroy(cache, slabp);
2636 nr_freed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002637 }
Christoph Lametered11d9e2006-06-30 01:55:45 -07002638out:
2639 return nr_freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640}
2641
Christoph Lameter18004c52012-07-06 15:25:12 -05002642/* Called with slab_mutex held to protect against cpu hotplug */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002643static int __cache_shrink(struct kmem_cache *cachep)
Christoph Lametere498be72005-09-09 13:03:32 -07002644{
2645 int ret = 0, i = 0;
2646 struct kmem_list3 *l3;
2647
2648 drain_cpu_caches(cachep);
2649
2650 check_irq_on();
2651 for_each_online_node(i) {
2652 l3 = cachep->nodelists[i];
Christoph Lametered11d9e2006-06-30 01:55:45 -07002653 if (!l3)
2654 continue;
2655
2656 drain_freelist(cachep, l3, l3->free_objects);
2657
2658 ret += !list_empty(&l3->slabs_full) ||
2659 !list_empty(&l3->slabs_partial);
Christoph Lametere498be72005-09-09 13:03:32 -07002660 }
2661 return (ret ? 1 : 0);
2662}
2663
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664/**
2665 * kmem_cache_shrink - Shrink a cache.
2666 * @cachep: The cache to shrink.
2667 *
2668 * Releases as many slabs as possible for a cache.
2669 * To help debugging, a zero exit status indicates all slabs were released.
2670 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002671int kmem_cache_shrink(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672{
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002673 int ret;
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002674 BUG_ON(!cachep || in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002676 get_online_cpus();
Christoph Lameter18004c52012-07-06 15:25:12 -05002677 mutex_lock(&slab_mutex);
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002678 ret = __cache_shrink(cachep);
Christoph Lameter18004c52012-07-06 15:25:12 -05002679 mutex_unlock(&slab_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002680 put_online_cpus();
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002681 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002682}
2683EXPORT_SYMBOL(kmem_cache_shrink);
2684
Christoph Lameter945cf2b2012-09-04 23:18:33 +00002685int __kmem_cache_shutdown(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686{
Christoph Lameter12c36672012-09-04 23:38:33 +00002687 int i;
2688 struct kmem_list3 *l3;
2689 int rc = __cache_shrink(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690
Christoph Lameter12c36672012-09-04 23:38:33 +00002691 if (rc)
2692 return rc;
2693
2694 for_each_online_cpu(i)
2695 kfree(cachep->array[i]);
2696
2697 /* NUMA: free the list3 structures */
2698 for_each_online_node(i) {
2699 l3 = cachep->nodelists[i];
2700 if (l3) {
2701 kfree(l3->shared);
2702 free_alien_cache(l3->alien);
2703 kfree(l3);
2704 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002705 }
Christoph Lameter12c36672012-09-04 23:38:33 +00002706 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002708
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002709/*
2710 * Get the memory for a slab management obj.
2711 * For a slab cache when the slab descriptor is off-slab, slab descriptors
2712 * always come from malloc_sizes caches. The slab descriptor cannot
2713 * come from the same cache which is getting created because,
2714 * when we are searching for an appropriate cache for these
2715 * descriptors in kmem_cache_create, we search through the malloc_sizes array.
2716 * If we are creating a malloc_sizes cache here it would not be visible to
2717 * kmem_find_general_cachep till the initialization is complete.
2718 * Hence we cannot have slabp_cache same as the original cache.
2719 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002720static struct slab *alloc_slabmgmt(struct kmem_cache *cachep, void *objp,
Ravikiran G Thirumalai5b74ada2006-04-10 22:52:53 -07002721 int colour_off, gfp_t local_flags,
2722 int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723{
2724 struct slab *slabp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002725
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726 if (OFF_SLAB(cachep)) {
2727 /* Slab management obj is off-slab. */
Ravikiran G Thirumalai5b74ada2006-04-10 22:52:53 -07002728 slabp = kmem_cache_alloc_node(cachep->slabp_cache,
Pekka Enberg8759ec52008-11-26 10:01:31 +02002729 local_flags, nodeid);
Catalin Marinasd5cff632009-06-11 13:22:40 +01002730 /*
2731 * If the first object in the slab is leaked (it's allocated
2732 * but no one has a reference to it), we want to make sure
2733 * kmemleak does not treat the ->s_mem pointer as a reference
2734 * to the object. Otherwise we will not report the leak.
2735 */
Catalin Marinasc017b4b2009-10-28 13:33:09 +00002736 kmemleak_scan_area(&slabp->list, sizeof(struct list_head),
2737 local_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002738 if (!slabp)
2739 return NULL;
2740 } else {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002741 slabp = objp + colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002742 colour_off += cachep->slab_size;
2743 }
2744 slabp->inuse = 0;
2745 slabp->colouroff = colour_off;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002746 slabp->s_mem = objp + colour_off;
Ravikiran G Thirumalai5b74ada2006-04-10 22:52:53 -07002747 slabp->nodeid = nodeid;
Marcin Slusarze51bfd02008-02-10 11:21:54 +01002748 slabp->free = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749 return slabp;
2750}
2751
2752static inline kmem_bufctl_t *slab_bufctl(struct slab *slabp)
2753{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002754 return (kmem_bufctl_t *) (slabp + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755}
2756
Pekka Enberg343e0d72006-02-01 03:05:50 -08002757static void cache_init_objs(struct kmem_cache *cachep,
Christoph Lametera35afb82007-05-16 22:10:57 -07002758 struct slab *slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759{
2760 int i;
2761
2762 for (i = 0; i < cachep->num; i++) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002763 void *objp = index_to_obj(cachep, slabp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002764#if DEBUG
2765 /* need to poison the objs? */
2766 if (cachep->flags & SLAB_POISON)
2767 poison_obj(cachep, objp, POISON_FREE);
2768 if (cachep->flags & SLAB_STORE_USER)
2769 *dbg_userword(cachep, objp) = NULL;
2770
2771 if (cachep->flags & SLAB_RED_ZONE) {
2772 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2773 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2774 }
2775 /*
Andrew Mortona737b3e2006-03-22 00:08:11 -08002776 * Constructors are not allowed to allocate memory from the same
2777 * cache which they are a constructor for. Otherwise, deadlock.
2778 * They must also be threaded.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779 */
2780 if (cachep->ctor && !(cachep->flags & SLAB_POISON))
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002781 cachep->ctor(objp + obj_offset(cachep));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002782
2783 if (cachep->flags & SLAB_RED_ZONE) {
2784 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
2785 slab_error(cachep, "constructor overwrote the"
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002786 " end of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
2788 slab_error(cachep, "constructor overwrote the"
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002789 " start of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002790 }
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002791 if ((cachep->size % PAGE_SIZE) == 0 &&
Andrew Mortona737b3e2006-03-22 00:08:11 -08002792 OFF_SLAB(cachep) && cachep->flags & SLAB_POISON)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002793 kernel_map_pages(virt_to_page(objp),
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002794 cachep->size / PAGE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795#else
2796 if (cachep->ctor)
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002797 cachep->ctor(objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002798#endif
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002799 slab_bufctl(slabp)[i] = i + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002800 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002801 slab_bufctl(slabp)[i - 1] = BUFCTL_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002802}
2803
Pekka Enberg343e0d72006-02-01 03:05:50 -08002804static void kmem_flagcheck(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805{
Christoph Lameter4b51d662007-02-10 01:43:10 -08002806 if (CONFIG_ZONE_DMA_FLAG) {
2807 if (flags & GFP_DMA)
Glauber Costaa618e892012-06-14 16:17:21 +04002808 BUG_ON(!(cachep->allocflags & GFP_DMA));
Christoph Lameter4b51d662007-02-10 01:43:10 -08002809 else
Glauber Costaa618e892012-06-14 16:17:21 +04002810 BUG_ON(cachep->allocflags & GFP_DMA);
Christoph Lameter4b51d662007-02-10 01:43:10 -08002811 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002812}
2813
Andrew Mortona737b3e2006-03-22 00:08:11 -08002814static void *slab_get_obj(struct kmem_cache *cachep, struct slab *slabp,
2815 int nodeid)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002816{
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002817 void *objp = index_to_obj(cachep, slabp, slabp->free);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002818 kmem_bufctl_t next;
2819
2820 slabp->inuse++;
2821 next = slab_bufctl(slabp)[slabp->free];
2822#if DEBUG
2823 slab_bufctl(slabp)[slabp->free] = BUFCTL_FREE;
2824 WARN_ON(slabp->nodeid != nodeid);
2825#endif
2826 slabp->free = next;
2827
2828 return objp;
2829}
2830
Andrew Mortona737b3e2006-03-22 00:08:11 -08002831static void slab_put_obj(struct kmem_cache *cachep, struct slab *slabp,
2832 void *objp, int nodeid)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002833{
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002834 unsigned int objnr = obj_to_index(cachep, slabp, objp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002835
2836#if DEBUG
2837 /* Verify that the slab belongs to the intended node */
2838 WARN_ON(slabp->nodeid != nodeid);
2839
Al Viro871751e2006-03-25 03:06:39 -08002840 if (slab_bufctl(slabp)[objnr] + 1 <= SLAB_LIMIT + 1) {
Matthew Dobson78d382d2006-02-01 03:05:47 -08002841 printk(KERN_ERR "slab: double free detected in cache "
Andrew Mortona737b3e2006-03-22 00:08:11 -08002842 "'%s', objp %p\n", cachep->name, objp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002843 BUG();
2844 }
2845#endif
2846 slab_bufctl(slabp)[objnr] = slabp->free;
2847 slabp->free = objnr;
2848 slabp->inuse--;
2849}
2850
Pekka Enberg47768742006-06-23 02:03:07 -07002851/*
2852 * Map pages beginning at addr to the given cache and slab. This is required
2853 * for the slab allocator to be able to lookup the cache and slab of a
Nick Pigginccd35fb2011-01-07 17:49:17 +11002854 * virtual address for kfree, ksize, and slab debugging.
Pekka Enberg47768742006-06-23 02:03:07 -07002855 */
2856static void slab_map_pages(struct kmem_cache *cache, struct slab *slab,
2857 void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858{
Pekka Enberg47768742006-06-23 02:03:07 -07002859 int nr_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860 struct page *page;
2861
Pekka Enberg47768742006-06-23 02:03:07 -07002862 page = virt_to_page(addr);
Nick Piggin84097512006-03-22 00:08:34 -08002863
Pekka Enberg47768742006-06-23 02:03:07 -07002864 nr_pages = 1;
Nick Piggin84097512006-03-22 00:08:34 -08002865 if (likely(!PageCompound(page)))
Pekka Enberg47768742006-06-23 02:03:07 -07002866 nr_pages <<= cache->gfporder;
2867
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868 do {
Christoph Lameter35026082012-06-13 10:24:56 -05002869 page->slab_cache = cache;
2870 page->slab_page = slab;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871 page++;
Pekka Enberg47768742006-06-23 02:03:07 -07002872 } while (--nr_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873}
2874
2875/*
2876 * Grow (by 1) the number of slabs within a cache. This is called by
2877 * kmem_cache_alloc() when there are no active objs left in a cache.
2878 */
Christoph Lameter3c517a62006-12-06 20:33:29 -08002879static int cache_grow(struct kmem_cache *cachep,
2880 gfp_t flags, int nodeid, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002882 struct slab *slabp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002883 size_t offset;
2884 gfp_t local_flags;
Christoph Lametere498be72005-09-09 13:03:32 -07002885 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886
Andrew Mortona737b3e2006-03-22 00:08:11 -08002887 /*
2888 * Be lazy and only check for valid flags here, keeping it out of the
2889 * critical path in kmem_cache_alloc().
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890 */
Christoph Lameter6cb06222007-10-16 01:25:41 -07002891 BUG_ON(flags & GFP_SLAB_BUG_MASK);
2892 local_flags = flags & (GFP_CONSTRAINT_MASK|GFP_RECLAIM_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002894 /* Take the l3 list lock to change the colour_next on this node */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895 check_irq_off();
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002896 l3 = cachep->nodelists[nodeid];
2897 spin_lock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898
2899 /* Get colour for the slab, and cal the next value. */
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002900 offset = l3->colour_next;
2901 l3->colour_next++;
2902 if (l3->colour_next >= cachep->colour)
2903 l3->colour_next = 0;
2904 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002906 offset *= cachep->colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002907
2908 if (local_flags & __GFP_WAIT)
2909 local_irq_enable();
2910
2911 /*
2912 * The test for missing atomic flag is performed here, rather than
2913 * the more obvious place, simply to reduce the critical path length
2914 * in kmem_cache_alloc(). If a caller is seriously mis-behaving they
2915 * will eventually be caught here (where it matters).
2916 */
2917 kmem_flagcheck(cachep, flags);
2918
Andrew Mortona737b3e2006-03-22 00:08:11 -08002919 /*
2920 * Get mem for the objs. Attempt to allocate a physical page from
2921 * 'nodeid'.
Christoph Lametere498be72005-09-09 13:03:32 -07002922 */
Christoph Lameter3c517a62006-12-06 20:33:29 -08002923 if (!objp)
Andrew Mortonb8c1c5d2007-07-24 12:02:40 -07002924 objp = kmem_getpages(cachep, local_flags, nodeid);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002925 if (!objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002926 goto failed;
2927
2928 /* Get slab management. */
Christoph Lameter3c517a62006-12-06 20:33:29 -08002929 slabp = alloc_slabmgmt(cachep, objp, offset,
Christoph Lameter6cb06222007-10-16 01:25:41 -07002930 local_flags & ~GFP_CONSTRAINT_MASK, nodeid);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002931 if (!slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002932 goto opps1;
2933
Pekka Enberg47768742006-06-23 02:03:07 -07002934 slab_map_pages(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935
Christoph Lametera35afb82007-05-16 22:10:57 -07002936 cache_init_objs(cachep, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937
2938 if (local_flags & __GFP_WAIT)
2939 local_irq_disable();
2940 check_irq_off();
Christoph Lametere498be72005-09-09 13:03:32 -07002941 spin_lock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002942
2943 /* Make slab active. */
Christoph Lametere498be72005-09-09 13:03:32 -07002944 list_add_tail(&slabp->list, &(l3->slabs_free));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002945 STATS_INC_GROWN(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07002946 l3->free_objects += cachep->num;
2947 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002948 return 1;
Andrew Mortona737b3e2006-03-22 00:08:11 -08002949opps1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950 kmem_freepages(cachep, objp);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002951failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952 if (local_flags & __GFP_WAIT)
2953 local_irq_disable();
2954 return 0;
2955}
2956
2957#if DEBUG
2958
2959/*
2960 * Perform extra freeing checks:
2961 * - detect bad pointers.
2962 * - POISON/RED_ZONE checking
Linus Torvalds1da177e2005-04-16 15:20:36 -07002963 */
2964static void kfree_debugcheck(const void *objp)
2965{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966 if (!virt_addr_valid(objp)) {
2967 printk(KERN_ERR "kfree_debugcheck: out of range ptr %lxh.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002968 (unsigned long)objp);
2969 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002970 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971}
2972
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002973static inline void verify_redzone_free(struct kmem_cache *cache, void *obj)
2974{
David Woodhouseb46b8f12007-05-08 00:22:59 -07002975 unsigned long long redzone1, redzone2;
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002976
2977 redzone1 = *dbg_redzone1(cache, obj);
2978 redzone2 = *dbg_redzone2(cache, obj);
2979
2980 /*
2981 * Redzone is ok.
2982 */
2983 if (redzone1 == RED_ACTIVE && redzone2 == RED_ACTIVE)
2984 return;
2985
2986 if (redzone1 == RED_INACTIVE && redzone2 == RED_INACTIVE)
2987 slab_error(cache, "double free detected");
2988 else
2989 slab_error(cache, "memory outside object was overwritten");
2990
David Woodhouseb46b8f12007-05-08 00:22:59 -07002991 printk(KERN_ERR "%p: redzone 1:0x%llx, redzone 2:0x%llx.\n",
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002992 obj, redzone1, redzone2);
2993}
2994
Pekka Enberg343e0d72006-02-01 03:05:50 -08002995static void *cache_free_debugcheck(struct kmem_cache *cachep, void *objp,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03002996 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997{
2998 struct page *page;
2999 unsigned int objnr;
3000 struct slab *slabp;
3001
Matthew Wilcox80cbd912007-11-29 12:05:13 -07003002 BUG_ON(virt_to_cache(objp) != cachep);
3003
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003004 objp -= obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003005 kfree_debugcheck(objp);
Christoph Lameterb49af682007-05-06 14:49:41 -07003006 page = virt_to_head_page(objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007
Christoph Lameter35026082012-06-13 10:24:56 -05003008 slabp = page->slab_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003009
3010 if (cachep->flags & SLAB_RED_ZONE) {
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07003011 verify_redzone_free(cachep, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003012 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
3013 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
3014 }
3015 if (cachep->flags & SLAB_STORE_USER)
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003016 *dbg_userword(cachep, objp) = (void *)caller;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017
Pekka Enberg8fea4e92006-03-22 00:08:10 -08003018 objnr = obj_to_index(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019
3020 BUG_ON(objnr >= cachep->num);
Pekka Enberg8fea4e92006-03-22 00:08:10 -08003021 BUG_ON(objp != index_to_obj(cachep, slabp, objnr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003022
Al Viro871751e2006-03-25 03:06:39 -08003023#ifdef CONFIG_DEBUG_SLAB_LEAK
3024 slab_bufctl(slabp)[objnr] = BUFCTL_FREE;
3025#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026 if (cachep->flags & SLAB_POISON) {
3027#ifdef CONFIG_DEBUG_PAGEALLOC
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003028 if ((cachep->size % PAGE_SIZE)==0 && OFF_SLAB(cachep)) {
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003029 store_stackinfo(cachep, objp, caller);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003030 kernel_map_pages(virt_to_page(objp),
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003031 cachep->size / PAGE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003032 } else {
3033 poison_obj(cachep, objp, POISON_FREE);
3034 }
3035#else
3036 poison_obj(cachep, objp, POISON_FREE);
3037#endif
3038 }
3039 return objp;
3040}
3041
Pekka Enberg343e0d72006-02-01 03:05:50 -08003042static void check_slabp(struct kmem_cache *cachep, struct slab *slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003043{
3044 kmem_bufctl_t i;
3045 int entries = 0;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003046
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047 /* Check slab's freelist to see if this obj is there. */
3048 for (i = slabp->free; i != BUFCTL_END; i = slab_bufctl(slabp)[i]) {
3049 entries++;
3050 if (entries > cachep->num || i >= cachep->num)
3051 goto bad;
3052 }
3053 if (entries != cachep->num - slabp->inuse) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08003054bad:
3055 printk(KERN_ERR "slab: Internal list corruption detected in "
Dave Jonesface37f2011-11-15 15:03:52 -08003056 "cache '%s'(%d), slabp %p(%d). Tainted(%s). Hexdump:\n",
3057 cachep->name, cachep->num, slabp, slabp->inuse,
3058 print_tainted());
Sebastian Andrzej Siewiorfdde6ab2011-07-29 18:22:13 +02003059 print_hex_dump(KERN_ERR, "", DUMP_PREFIX_OFFSET, 16, 1, slabp,
3060 sizeof(*slabp) + cachep->num * sizeof(kmem_bufctl_t),
3061 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003062 BUG();
3063 }
3064}
3065#else
3066#define kfree_debugcheck(x) do { } while(0)
3067#define cache_free_debugcheck(x,objp,z) (objp)
3068#define check_slabp(x,y) do { } while(0)
3069#endif
3070
Mel Gorman072bb0a2012-07-31 16:43:58 -07003071static void *cache_alloc_refill(struct kmem_cache *cachep, gfp_t flags,
3072 bool force_refill)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003073{
3074 int batchcount;
3075 struct kmem_list3 *l3;
3076 struct array_cache *ac;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07003077 int node;
3078
Joe Korty6d2144d2008-03-05 15:04:59 -08003079 check_irq_off();
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003080 node = numa_mem_id();
Mel Gorman072bb0a2012-07-31 16:43:58 -07003081 if (unlikely(force_refill))
3082 goto force_grow;
3083retry:
Joe Korty6d2144d2008-03-05 15:04:59 -08003084 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003085 batchcount = ac->batchcount;
3086 if (!ac->touched && batchcount > BATCHREFILL_LIMIT) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08003087 /*
3088 * If there was little recent activity on this cache, then
3089 * perform only a partial refill. Otherwise we could generate
3090 * refill bouncing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003091 */
3092 batchcount = BATCHREFILL_LIMIT;
3093 }
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07003094 l3 = cachep->nodelists[node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095
Christoph Lametere498be72005-09-09 13:03:32 -07003096 BUG_ON(ac->avail > 0 || !l3);
3097 spin_lock(&l3->list_lock);
3098
Christoph Lameter3ded1752006-03-25 03:06:44 -08003099 /* See if we can refill from the shared array */
Nick Piggin44b57f12010-01-27 22:27:40 +11003100 if (l3->shared && transfer_objects(ac, l3->shared, batchcount)) {
3101 l3->shared->touched = 1;
Christoph Lameter3ded1752006-03-25 03:06:44 -08003102 goto alloc_done;
Nick Piggin44b57f12010-01-27 22:27:40 +11003103 }
Christoph Lameter3ded1752006-03-25 03:06:44 -08003104
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 while (batchcount > 0) {
3106 struct list_head *entry;
3107 struct slab *slabp;
3108 /* Get slab alloc is to come from. */
3109 entry = l3->slabs_partial.next;
3110 if (entry == &l3->slabs_partial) {
3111 l3->free_touched = 1;
3112 entry = l3->slabs_free.next;
3113 if (entry == &l3->slabs_free)
3114 goto must_grow;
3115 }
3116
3117 slabp = list_entry(entry, struct slab, list);
3118 check_slabp(cachep, slabp);
3119 check_spinlock_acquired(cachep);
Pekka Enberg714b81712007-05-06 14:49:03 -07003120
3121 /*
3122 * The slab was either on partial or free list so
3123 * there must be at least one object available for
3124 * allocation.
3125 */
roel kluin249b9f32008-10-29 17:18:07 -04003126 BUG_ON(slabp->inuse >= cachep->num);
Pekka Enberg714b81712007-05-06 14:49:03 -07003127
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128 while (slabp->inuse < cachep->num && batchcount--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003129 STATS_INC_ALLOCED(cachep);
3130 STATS_INC_ACTIVE(cachep);
3131 STATS_SET_HIGH(cachep);
3132
Mel Gorman072bb0a2012-07-31 16:43:58 -07003133 ac_put_obj(cachep, ac, slab_get_obj(cachep, slabp,
3134 node));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135 }
3136 check_slabp(cachep, slabp);
3137
3138 /* move slabp to correct slabp list: */
3139 list_del(&slabp->list);
3140 if (slabp->free == BUFCTL_END)
3141 list_add(&slabp->list, &l3->slabs_full);
3142 else
3143 list_add(&slabp->list, &l3->slabs_partial);
3144 }
3145
Andrew Mortona737b3e2006-03-22 00:08:11 -08003146must_grow:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003147 l3->free_objects -= ac->avail;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003148alloc_done:
Christoph Lametere498be72005-09-09 13:03:32 -07003149 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150
3151 if (unlikely(!ac->avail)) {
3152 int x;
Mel Gorman072bb0a2012-07-31 16:43:58 -07003153force_grow:
Christoph Lameter3c517a62006-12-06 20:33:29 -08003154 x = cache_grow(cachep, flags | GFP_THISNODE, node, NULL);
Christoph Lametere498be72005-09-09 13:03:32 -07003155
Andrew Mortona737b3e2006-03-22 00:08:11 -08003156 /* cache_grow can reenable interrupts, then ac could change. */
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003157 ac = cpu_cache_get(cachep);
David Rientjes51cd8e62012-08-28 19:57:21 -07003158 node = numa_mem_id();
Mel Gorman072bb0a2012-07-31 16:43:58 -07003159
3160 /* no objects in sight? abort */
3161 if (!x && (ac->avail == 0 || force_refill))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003162 return NULL;
3163
Andrew Mortona737b3e2006-03-22 00:08:11 -08003164 if (!ac->avail) /* objects refilled by interrupt? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165 goto retry;
3166 }
3167 ac->touched = 1;
Mel Gorman072bb0a2012-07-31 16:43:58 -07003168
3169 return ac_get_obj(cachep, ac, flags, force_refill);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003170}
3171
Andrew Mortona737b3e2006-03-22 00:08:11 -08003172static inline void cache_alloc_debugcheck_before(struct kmem_cache *cachep,
3173 gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003174{
3175 might_sleep_if(flags & __GFP_WAIT);
3176#if DEBUG
3177 kmem_flagcheck(cachep, flags);
3178#endif
3179}
3180
3181#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08003182static void *cache_alloc_debugcheck_after(struct kmem_cache *cachep,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003183 gfp_t flags, void *objp, unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003185 if (!objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186 return objp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003187 if (cachep->flags & SLAB_POISON) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003188#ifdef CONFIG_DEBUG_PAGEALLOC
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003189 if ((cachep->size % PAGE_SIZE) == 0 && OFF_SLAB(cachep))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003190 kernel_map_pages(virt_to_page(objp),
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003191 cachep->size / PAGE_SIZE, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192 else
3193 check_poison_obj(cachep, objp);
3194#else
3195 check_poison_obj(cachep, objp);
3196#endif
3197 poison_obj(cachep, objp, POISON_INUSE);
3198 }
3199 if (cachep->flags & SLAB_STORE_USER)
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003200 *dbg_userword(cachep, objp) = (void *)caller;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003201
3202 if (cachep->flags & SLAB_RED_ZONE) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08003203 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE ||
3204 *dbg_redzone2(cachep, objp) != RED_INACTIVE) {
3205 slab_error(cachep, "double free, or memory outside"
3206 " object was overwritten");
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003207 printk(KERN_ERR
David Woodhouseb46b8f12007-05-08 00:22:59 -07003208 "%p: redzone 1:0x%llx, redzone 2:0x%llx\n",
Andrew Mortona737b3e2006-03-22 00:08:11 -08003209 objp, *dbg_redzone1(cachep, objp),
3210 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003211 }
3212 *dbg_redzone1(cachep, objp) = RED_ACTIVE;
3213 *dbg_redzone2(cachep, objp) = RED_ACTIVE;
3214 }
Al Viro871751e2006-03-25 03:06:39 -08003215#ifdef CONFIG_DEBUG_SLAB_LEAK
3216 {
3217 struct slab *slabp;
3218 unsigned objnr;
3219
Christoph Lameter35026082012-06-13 10:24:56 -05003220 slabp = virt_to_head_page(objp)->slab_page;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003221 objnr = (unsigned)(objp - slabp->s_mem) / cachep->size;
Al Viro871751e2006-03-25 03:06:39 -08003222 slab_bufctl(slabp)[objnr] = BUFCTL_ACTIVE;
3223 }
3224#endif
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003225 objp += obj_offset(cachep);
Christoph Lameter4f104932007-05-06 14:50:17 -07003226 if (cachep->ctor && cachep->flags & SLAB_POISON)
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07003227 cachep->ctor(objp);
Tetsuo Handa7ea466f2011-07-21 09:42:45 +09003228 if (ARCH_SLAB_MINALIGN &&
3229 ((unsigned long)objp & (ARCH_SLAB_MINALIGN-1))) {
Kevin Hilmana44b56d2006-12-06 20:32:11 -08003230 printk(KERN_ERR "0x%p: not aligned to ARCH_SLAB_MINALIGN=%d\n",
Hugh Dickinsc2251502011-07-11 13:35:08 -07003231 objp, (int)ARCH_SLAB_MINALIGN);
Kevin Hilmana44b56d2006-12-06 20:32:11 -08003232 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003233 return objp;
3234}
3235#else
3236#define cache_alloc_debugcheck_after(a,b,objp,d) (objp)
3237#endif
3238
Akinobu Mita773ff602008-12-23 19:37:01 +09003239static bool slab_should_failslab(struct kmem_cache *cachep, gfp_t flags)
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003240{
Christoph Lameter9b030cb2012-09-05 00:20:33 +00003241 if (cachep == kmem_cache)
Akinobu Mita773ff602008-12-23 19:37:01 +09003242 return false;
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003243
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003244 return should_failslab(cachep->object_size, flags, cachep->flags);
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003245}
3246
Pekka Enberg343e0d72006-02-01 03:05:50 -08003247static inline void *____cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003248{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003249 void *objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250 struct array_cache *ac;
Mel Gorman072bb0a2012-07-31 16:43:58 -07003251 bool force_refill = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252
Alok N Kataria5c382302005-09-27 21:45:46 -07003253 check_irq_off();
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003254
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003255 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256 if (likely(ac->avail)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003257 ac->touched = 1;
Mel Gorman072bb0a2012-07-31 16:43:58 -07003258 objp = ac_get_obj(cachep, ac, flags, false);
3259
J. R. Okajimaddbf2e82009-12-02 16:55:50 +09003260 /*
Mel Gorman072bb0a2012-07-31 16:43:58 -07003261 * Allow for the possibility all avail objects are not allowed
3262 * by the current flags
J. R. Okajimaddbf2e82009-12-02 16:55:50 +09003263 */
Mel Gorman072bb0a2012-07-31 16:43:58 -07003264 if (objp) {
3265 STATS_INC_ALLOCHIT(cachep);
3266 goto out;
3267 }
3268 force_refill = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003269 }
Mel Gorman072bb0a2012-07-31 16:43:58 -07003270
3271 STATS_INC_ALLOCMISS(cachep);
3272 objp = cache_alloc_refill(cachep, flags, force_refill);
3273 /*
3274 * the 'ac' may be updated by cache_alloc_refill(),
3275 * and kmemleak_erase() requires its correct value.
3276 */
3277 ac = cpu_cache_get(cachep);
3278
3279out:
Catalin Marinasd5cff632009-06-11 13:22:40 +01003280 /*
3281 * To avoid a false negative, if an object that is in one of the
3282 * per-CPU caches is leaked, we need to make sure kmemleak doesn't
3283 * treat the array pointers as a reference to the object.
3284 */
J. R. Okajimaf3d8b532009-12-02 16:55:49 +09003285 if (objp)
3286 kmemleak_erase(&ac->entry[ac->avail]);
Alok N Kataria5c382302005-09-27 21:45:46 -07003287 return objp;
3288}
3289
Christoph Lametere498be72005-09-09 13:03:32 -07003290#ifdef CONFIG_NUMA
3291/*
Paul Jacksonb2455392006-03-24 03:16:12 -08003292 * Try allocating on another node if PF_SPREAD_SLAB|PF_MEMPOLICY.
Paul Jacksonc61afb12006-03-24 03:16:08 -08003293 *
3294 * If we are in_interrupt, then process context, including cpusets and
3295 * mempolicy, may not apply and should not be used for allocation policy.
3296 */
3297static void *alternate_node_alloc(struct kmem_cache *cachep, gfp_t flags)
3298{
3299 int nid_alloc, nid_here;
3300
Christoph Lameter765c4502006-09-27 01:50:08 -07003301 if (in_interrupt() || (flags & __GFP_THISNODE))
Paul Jacksonc61afb12006-03-24 03:16:08 -08003302 return NULL;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003303 nid_alloc = nid_here = numa_mem_id();
Paul Jacksonc61afb12006-03-24 03:16:08 -08003304 if (cpuset_do_slab_mem_spread() && (cachep->flags & SLAB_MEM_SPREAD))
Jack Steiner6adef3e2010-05-26 14:42:49 -07003305 nid_alloc = cpuset_slab_spread_node();
Paul Jacksonc61afb12006-03-24 03:16:08 -08003306 else if (current->mempolicy)
Andi Kleene7b691b2012-06-09 02:40:03 -07003307 nid_alloc = slab_node();
Paul Jacksonc61afb12006-03-24 03:16:08 -08003308 if (nid_alloc != nid_here)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003309 return ____cache_alloc_node(cachep, flags, nid_alloc);
Paul Jacksonc61afb12006-03-24 03:16:08 -08003310 return NULL;
3311}
3312
3313/*
Christoph Lameter765c4502006-09-27 01:50:08 -07003314 * Fallback function if there was no memory available and no objects on a
Christoph Lameter3c517a62006-12-06 20:33:29 -08003315 * certain node and fall back is permitted. First we scan all the
3316 * available nodelists for available objects. If that fails then we
3317 * perform an allocation without specifying a node. This allows the page
3318 * allocator to do its reclaim / fallback magic. We then insert the
3319 * slab into the proper nodelist and then allocate from it.
Christoph Lameter765c4502006-09-27 01:50:08 -07003320 */
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003321static void *fallback_alloc(struct kmem_cache *cache, gfp_t flags)
Christoph Lameter765c4502006-09-27 01:50:08 -07003322{
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003323 struct zonelist *zonelist;
3324 gfp_t local_flags;
Mel Gormandd1a2392008-04-28 02:12:17 -07003325 struct zoneref *z;
Mel Gorman54a6eb52008-04-28 02:12:16 -07003326 struct zone *zone;
3327 enum zone_type high_zoneidx = gfp_zone(flags);
Christoph Lameter765c4502006-09-27 01:50:08 -07003328 void *obj = NULL;
Christoph Lameter3c517a62006-12-06 20:33:29 -08003329 int nid;
Mel Gormancc9a6c82012-03-21 16:34:11 -07003330 unsigned int cpuset_mems_cookie;
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003331
3332 if (flags & __GFP_THISNODE)
3333 return NULL;
3334
Christoph Lameter6cb06222007-10-16 01:25:41 -07003335 local_flags = flags & (GFP_CONSTRAINT_MASK|GFP_RECLAIM_MASK);
Christoph Lameter765c4502006-09-27 01:50:08 -07003336
Mel Gormancc9a6c82012-03-21 16:34:11 -07003337retry_cpuset:
3338 cpuset_mems_cookie = get_mems_allowed();
Andi Kleene7b691b2012-06-09 02:40:03 -07003339 zonelist = node_zonelist(slab_node(), flags);
Mel Gormancc9a6c82012-03-21 16:34:11 -07003340
Christoph Lameter3c517a62006-12-06 20:33:29 -08003341retry:
3342 /*
3343 * Look through allowed nodes for objects available
3344 * from existing per node queues.
3345 */
Mel Gorman54a6eb52008-04-28 02:12:16 -07003346 for_each_zone_zonelist(zone, z, zonelist, high_zoneidx) {
3347 nid = zone_to_nid(zone);
Christoph Lameteraedb0eb2006-10-21 10:24:16 -07003348
Mel Gorman54a6eb52008-04-28 02:12:16 -07003349 if (cpuset_zone_allowed_hardwall(zone, flags) &&
Christoph Lameter3c517a62006-12-06 20:33:29 -08003350 cache->nodelists[nid] &&
Christoph Lameter481c5342008-06-21 16:46:35 -07003351 cache->nodelists[nid]->free_objects) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003352 obj = ____cache_alloc_node(cache,
3353 flags | GFP_THISNODE, nid);
Christoph Lameter481c5342008-06-21 16:46:35 -07003354 if (obj)
3355 break;
3356 }
Christoph Lameter3c517a62006-12-06 20:33:29 -08003357 }
3358
Christoph Lametercfce6602007-05-06 14:50:17 -07003359 if (!obj) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003360 /*
3361 * This allocation will be performed within the constraints
3362 * of the current cpuset / memory policy requirements.
3363 * We may trigger various forms of reclaim on the allowed
3364 * set and go into memory reserves if necessary.
3365 */
Christoph Lameterdd47ea72006-12-13 00:34:11 -08003366 if (local_flags & __GFP_WAIT)
3367 local_irq_enable();
3368 kmem_flagcheck(cache, flags);
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003369 obj = kmem_getpages(cache, local_flags, numa_mem_id());
Christoph Lameterdd47ea72006-12-13 00:34:11 -08003370 if (local_flags & __GFP_WAIT)
3371 local_irq_disable();
Christoph Lameter3c517a62006-12-06 20:33:29 -08003372 if (obj) {
3373 /*
3374 * Insert into the appropriate per node queues
3375 */
3376 nid = page_to_nid(virt_to_page(obj));
3377 if (cache_grow(cache, flags, nid, obj)) {
3378 obj = ____cache_alloc_node(cache,
3379 flags | GFP_THISNODE, nid);
3380 if (!obj)
3381 /*
3382 * Another processor may allocate the
3383 * objects in the slab since we are
3384 * not holding any locks.
3385 */
3386 goto retry;
3387 } else {
Hugh Dickinsb6a60452007-01-05 16:36:36 -08003388 /* cache_grow already freed obj */
Christoph Lameter3c517a62006-12-06 20:33:29 -08003389 obj = NULL;
3390 }
3391 }
Christoph Lameteraedb0eb2006-10-21 10:24:16 -07003392 }
Mel Gormancc9a6c82012-03-21 16:34:11 -07003393
3394 if (unlikely(!put_mems_allowed(cpuset_mems_cookie) && !obj))
3395 goto retry_cpuset;
Christoph Lameter765c4502006-09-27 01:50:08 -07003396 return obj;
3397}
3398
3399/*
Christoph Lametere498be72005-09-09 13:03:32 -07003400 * A interface to enable slab creation on nodeid
Linus Torvalds1da177e2005-04-16 15:20:36 -07003401 */
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003402static void *____cache_alloc_node(struct kmem_cache *cachep, gfp_t flags,
Andrew Mortona737b3e2006-03-22 00:08:11 -08003403 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07003404{
3405 struct list_head *entry;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003406 struct slab *slabp;
3407 struct kmem_list3 *l3;
3408 void *obj;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003409 int x;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003410
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003411 l3 = cachep->nodelists[nodeid];
3412 BUG_ON(!l3);
Christoph Lametere498be72005-09-09 13:03:32 -07003413
Andrew Mortona737b3e2006-03-22 00:08:11 -08003414retry:
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08003415 check_irq_off();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003416 spin_lock(&l3->list_lock);
3417 entry = l3->slabs_partial.next;
3418 if (entry == &l3->slabs_partial) {
3419 l3->free_touched = 1;
3420 entry = l3->slabs_free.next;
3421 if (entry == &l3->slabs_free)
3422 goto must_grow;
3423 }
Christoph Lametere498be72005-09-09 13:03:32 -07003424
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003425 slabp = list_entry(entry, struct slab, list);
3426 check_spinlock_acquired_node(cachep, nodeid);
3427 check_slabp(cachep, slabp);
Christoph Lametere498be72005-09-09 13:03:32 -07003428
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003429 STATS_INC_NODEALLOCS(cachep);
3430 STATS_INC_ACTIVE(cachep);
3431 STATS_SET_HIGH(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003432
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003433 BUG_ON(slabp->inuse == cachep->num);
Christoph Lametere498be72005-09-09 13:03:32 -07003434
Matthew Dobson78d382d2006-02-01 03:05:47 -08003435 obj = slab_get_obj(cachep, slabp, nodeid);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003436 check_slabp(cachep, slabp);
3437 l3->free_objects--;
3438 /* move slabp to correct slabp list: */
3439 list_del(&slabp->list);
Christoph Lametere498be72005-09-09 13:03:32 -07003440
Andrew Mortona737b3e2006-03-22 00:08:11 -08003441 if (slabp->free == BUFCTL_END)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003442 list_add(&slabp->list, &l3->slabs_full);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003443 else
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003444 list_add(&slabp->list, &l3->slabs_partial);
Christoph Lametere498be72005-09-09 13:03:32 -07003445
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003446 spin_unlock(&l3->list_lock);
3447 goto done;
Christoph Lametere498be72005-09-09 13:03:32 -07003448
Andrew Mortona737b3e2006-03-22 00:08:11 -08003449must_grow:
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003450 spin_unlock(&l3->list_lock);
Christoph Lameter3c517a62006-12-06 20:33:29 -08003451 x = cache_grow(cachep, flags | GFP_THISNODE, nodeid, NULL);
Christoph Lameter765c4502006-09-27 01:50:08 -07003452 if (x)
3453 goto retry;
Christoph Lametere498be72005-09-09 13:03:32 -07003454
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003455 return fallback_alloc(cachep, flags);
Christoph Lameter765c4502006-09-27 01:50:08 -07003456
Andrew Mortona737b3e2006-03-22 00:08:11 -08003457done:
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003458 return obj;
Christoph Lametere498be72005-09-09 13:03:32 -07003459}
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003460
3461/**
3462 * kmem_cache_alloc_node - Allocate an object on the specified node
3463 * @cachep: The cache to allocate from.
3464 * @flags: See kmalloc().
3465 * @nodeid: node number of the target node.
3466 * @caller: return address of caller, used for debug information
3467 *
3468 * Identical to kmem_cache_alloc but it will allocate memory on the given
3469 * node, which can improve the performance for cpu bound structures.
3470 *
3471 * Fallback to other node is possible if __GFP_THISNODE is not set.
3472 */
3473static __always_inline void *
Ezequiel Garcia48356302012-09-08 17:47:57 -03003474slab_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003475 unsigned long caller)
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003476{
3477 unsigned long save_flags;
3478 void *ptr;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003479 int slab_node = numa_mem_id();
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003480
Benjamin Herrenschmidtdcce2842009-06-18 13:24:12 +10003481 flags &= gfp_allowed_mask;
Pekka Enberg7e85ee02009-06-12 14:03:06 +03003482
Nick Piggincf40bd12009-01-21 08:12:39 +01003483 lockdep_trace_alloc(flags);
3484
Akinobu Mita773ff602008-12-23 19:37:01 +09003485 if (slab_should_failslab(cachep, flags))
Akinobu Mita824ebef2007-05-06 14:49:58 -07003486 return NULL;
3487
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003488 cache_alloc_debugcheck_before(cachep, flags);
3489 local_irq_save(save_flags);
3490
Andrew Mortoneacbbae2011-07-28 13:59:49 -07003491 if (nodeid == NUMA_NO_NODE)
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003492 nodeid = slab_node;
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003493
3494 if (unlikely(!cachep->nodelists[nodeid])) {
3495 /* Node not bootstrapped yet */
3496 ptr = fallback_alloc(cachep, flags);
3497 goto out;
3498 }
3499
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003500 if (nodeid == slab_node) {
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003501 /*
3502 * Use the locally cached objects if possible.
3503 * However ____cache_alloc does not allow fallback
3504 * to other nodes. It may fail while we still have
3505 * objects on other nodes available.
3506 */
3507 ptr = ____cache_alloc(cachep, flags);
3508 if (ptr)
3509 goto out;
3510 }
3511 /* ___cache_alloc_node can fall back to other nodes */
3512 ptr = ____cache_alloc_node(cachep, flags, nodeid);
3513 out:
3514 local_irq_restore(save_flags);
3515 ptr = cache_alloc_debugcheck_after(cachep, flags, ptr, caller);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003516 kmemleak_alloc_recursive(ptr, cachep->object_size, 1, cachep->flags,
Catalin Marinasd5cff632009-06-11 13:22:40 +01003517 flags);
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003518
Pekka Enbergc175eea2008-05-09 20:35:53 +02003519 if (likely(ptr))
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003520 kmemcheck_slab_alloc(cachep, flags, ptr, cachep->object_size);
Pekka Enbergc175eea2008-05-09 20:35:53 +02003521
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003522 if (unlikely((flags & __GFP_ZERO) && ptr))
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003523 memset(ptr, 0, cachep->object_size);
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003524
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003525 return ptr;
3526}
3527
3528static __always_inline void *
3529__do_cache_alloc(struct kmem_cache *cache, gfp_t flags)
3530{
3531 void *objp;
3532
3533 if (unlikely(current->flags & (PF_SPREAD_SLAB | PF_MEMPOLICY))) {
3534 objp = alternate_node_alloc(cache, flags);
3535 if (objp)
3536 goto out;
3537 }
3538 objp = ____cache_alloc(cache, flags);
3539
3540 /*
3541 * We may just have run out of memory on the local node.
3542 * ____cache_alloc_node() knows how to locate memory on other nodes
3543 */
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003544 if (!objp)
3545 objp = ____cache_alloc_node(cache, flags, numa_mem_id());
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003546
3547 out:
3548 return objp;
3549}
3550#else
3551
3552static __always_inline void *
3553__do_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
3554{
3555 return ____cache_alloc(cachep, flags);
3556}
3557
3558#endif /* CONFIG_NUMA */
3559
3560static __always_inline void *
Ezequiel Garcia48356302012-09-08 17:47:57 -03003561slab_alloc(struct kmem_cache *cachep, gfp_t flags, unsigned long caller)
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003562{
3563 unsigned long save_flags;
3564 void *objp;
3565
Benjamin Herrenschmidtdcce2842009-06-18 13:24:12 +10003566 flags &= gfp_allowed_mask;
Pekka Enberg7e85ee02009-06-12 14:03:06 +03003567
Nick Piggincf40bd12009-01-21 08:12:39 +01003568 lockdep_trace_alloc(flags);
3569
Akinobu Mita773ff602008-12-23 19:37:01 +09003570 if (slab_should_failslab(cachep, flags))
Akinobu Mita824ebef2007-05-06 14:49:58 -07003571 return NULL;
3572
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003573 cache_alloc_debugcheck_before(cachep, flags);
3574 local_irq_save(save_flags);
3575 objp = __do_cache_alloc(cachep, flags);
3576 local_irq_restore(save_flags);
3577 objp = cache_alloc_debugcheck_after(cachep, flags, objp, caller);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003578 kmemleak_alloc_recursive(objp, cachep->object_size, 1, cachep->flags,
Catalin Marinasd5cff632009-06-11 13:22:40 +01003579 flags);
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003580 prefetchw(objp);
3581
Pekka Enbergc175eea2008-05-09 20:35:53 +02003582 if (likely(objp))
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003583 kmemcheck_slab_alloc(cachep, flags, objp, cachep->object_size);
Pekka Enbergc175eea2008-05-09 20:35:53 +02003584
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003585 if (unlikely((flags & __GFP_ZERO) && objp))
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003586 memset(objp, 0, cachep->object_size);
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003587
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003588 return objp;
3589}
Christoph Lametere498be72005-09-09 13:03:32 -07003590
3591/*
3592 * Caller needs to acquire correct kmem_list's list_lock
3593 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003594static void free_block(struct kmem_cache *cachep, void **objpp, int nr_objects,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003595 int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003596{
3597 int i;
Christoph Lametere498be72005-09-09 13:03:32 -07003598 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003599
3600 for (i = 0; i < nr_objects; i++) {
Mel Gorman072bb0a2012-07-31 16:43:58 -07003601 void *objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003602 struct slab *slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003603
Mel Gorman072bb0a2012-07-31 16:43:58 -07003604 clear_obj_pfmemalloc(&objpp[i]);
3605 objp = objpp[i];
3606
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -08003607 slabp = virt_to_slab(objp);
Christoph Lameterff694162005-09-22 21:44:02 -07003608 l3 = cachep->nodelists[node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003609 list_del(&slabp->list);
Christoph Lameterff694162005-09-22 21:44:02 -07003610 check_spinlock_acquired_node(cachep, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003611 check_slabp(cachep, slabp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08003612 slab_put_obj(cachep, slabp, objp, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003613 STATS_DEC_ACTIVE(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003614 l3->free_objects++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003615 check_slabp(cachep, slabp);
3616
3617 /* fixup slab chains */
3618 if (slabp->inuse == 0) {
Christoph Lametere498be72005-09-09 13:03:32 -07003619 if (l3->free_objects > l3->free_limit) {
3620 l3->free_objects -= cachep->num;
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07003621 /* No need to drop any previously held
3622 * lock here, even if we have a off-slab slab
3623 * descriptor it is guaranteed to come from
3624 * a different cache, refer to comments before
3625 * alloc_slabmgmt.
3626 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003627 slab_destroy(cachep, slabp);
3628 } else {
Christoph Lametere498be72005-09-09 13:03:32 -07003629 list_add(&slabp->list, &l3->slabs_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003630 }
3631 } else {
3632 /* Unconditionally move a slab to the end of the
3633 * partial list on free - maximum time for the
3634 * other objects to be freed, too.
3635 */
Christoph Lametere498be72005-09-09 13:03:32 -07003636 list_add_tail(&slabp->list, &l3->slabs_partial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003637 }
3638 }
3639}
3640
Pekka Enberg343e0d72006-02-01 03:05:50 -08003641static void cache_flusharray(struct kmem_cache *cachep, struct array_cache *ac)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003642{
3643 int batchcount;
Christoph Lametere498be72005-09-09 13:03:32 -07003644 struct kmem_list3 *l3;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003645 int node = numa_mem_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003646
3647 batchcount = ac->batchcount;
3648#if DEBUG
3649 BUG_ON(!batchcount || batchcount > ac->avail);
3650#endif
3651 check_irq_off();
Christoph Lameterff694162005-09-22 21:44:02 -07003652 l3 = cachep->nodelists[node];
Ingo Molnar873623d2006-07-13 14:44:38 +02003653 spin_lock(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07003654 if (l3->shared) {
3655 struct array_cache *shared_array = l3->shared;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003656 int max = shared_array->limit - shared_array->avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003657 if (max) {
3658 if (batchcount > max)
3659 batchcount = max;
Christoph Lametere498be72005-09-09 13:03:32 -07003660 memcpy(&(shared_array->entry[shared_array->avail]),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003661 ac->entry, sizeof(void *) * batchcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003662 shared_array->avail += batchcount;
3663 goto free_done;
3664 }
3665 }
3666
Christoph Lameterff694162005-09-22 21:44:02 -07003667 free_block(cachep, ac->entry, batchcount, node);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003668free_done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003669#if STATS
3670 {
3671 int i = 0;
3672 struct list_head *p;
3673
Christoph Lametere498be72005-09-09 13:03:32 -07003674 p = l3->slabs_free.next;
3675 while (p != &(l3->slabs_free)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676 struct slab *slabp;
3677
3678 slabp = list_entry(p, struct slab, list);
3679 BUG_ON(slabp->inuse);
3680
3681 i++;
3682 p = p->next;
3683 }
3684 STATS_SET_FREEABLE(cachep, i);
3685 }
3686#endif
Christoph Lametere498be72005-09-09 13:03:32 -07003687 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688 ac->avail -= batchcount;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003689 memmove(ac->entry, &(ac->entry[batchcount]), sizeof(void *)*ac->avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003690}
3691
3692/*
Andrew Mortona737b3e2006-03-22 00:08:11 -08003693 * Release an obj back to its cache. If the obj has a constructed state, it must
3694 * be in this state _before_ it is released. Called with disabled ints.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003695 */
Suleiman Souhlala947eb92011-06-02 00:16:42 -07003696static inline void __cache_free(struct kmem_cache *cachep, void *objp,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003697 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003698{
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003699 struct array_cache *ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003700
3701 check_irq_off();
Catalin Marinasd5cff632009-06-11 13:22:40 +01003702 kmemleak_free_recursive(objp, cachep->flags);
Suleiman Souhlala947eb92011-06-02 00:16:42 -07003703 objp = cache_free_debugcheck(cachep, objp, caller);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003704
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003705 kmemcheck_slab_free(cachep, objp, cachep->object_size);
Pekka Enbergc175eea2008-05-09 20:35:53 +02003706
Siddha, Suresh B1807a1a2007-08-22 14:01:49 -07003707 /*
3708 * Skip calling cache_free_alien() when the platform is not numa.
3709 * This will avoid cache misses that happen while accessing slabp (which
3710 * is per page memory reference) to get nodeid. Instead use a global
3711 * variable to skip the call, which is mostly likely to be present in
3712 * the cache.
3713 */
Mel Gormanb6e68bc2009-06-16 15:32:16 -07003714 if (nr_online_nodes > 1 && cache_free_alien(cachep, objp))
Pekka Enberg729bd0b2006-06-23 02:03:05 -07003715 return;
Christoph Lametere498be72005-09-09 13:03:32 -07003716
Linus Torvalds1da177e2005-04-16 15:20:36 -07003717 if (likely(ac->avail < ac->limit)) {
3718 STATS_INC_FREEHIT(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003719 } else {
3720 STATS_INC_FREEMISS(cachep);
3721 cache_flusharray(cachep, ac);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003722 }
Zhao Jin42c8c992011-08-27 00:26:17 +08003723
Mel Gorman072bb0a2012-07-31 16:43:58 -07003724 ac_put_obj(cachep, ac, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003725}
3726
3727/**
3728 * kmem_cache_alloc - Allocate an object
3729 * @cachep: The cache to allocate from.
3730 * @flags: See kmalloc().
3731 *
3732 * Allocate an object from this cache. The flags are only relevant
3733 * if the cache has no available objects.
3734 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003735void *kmem_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003736{
Ezequiel Garcia48356302012-09-08 17:47:57 -03003737 void *ret = slab_alloc(cachep, flags, _RET_IP_);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003738
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003739 trace_kmem_cache_alloc(_RET_IP_, ret,
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003740 cachep->object_size, cachep->size, flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003741
3742 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003743}
3744EXPORT_SYMBOL(kmem_cache_alloc);
3745
Li Zefan0f24f122009-12-11 15:45:30 +08003746#ifdef CONFIG_TRACING
Steven Rostedt85beb582010-11-24 16:23:34 -05003747void *
Ezequiel Garcia40521472012-09-08 17:47:56 -03003748kmem_cache_alloc_trace(struct kmem_cache *cachep, gfp_t flags, size_t size)
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003749{
Steven Rostedt85beb582010-11-24 16:23:34 -05003750 void *ret;
3751
Ezequiel Garcia48356302012-09-08 17:47:57 -03003752 ret = slab_alloc(cachep, flags, _RET_IP_);
Steven Rostedt85beb582010-11-24 16:23:34 -05003753
3754 trace_kmalloc(_RET_IP_, ret,
Ezequiel Garciaff4fcd02012-09-08 17:47:52 -03003755 size, cachep->size, flags);
Steven Rostedt85beb582010-11-24 16:23:34 -05003756 return ret;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003757}
Steven Rostedt85beb582010-11-24 16:23:34 -05003758EXPORT_SYMBOL(kmem_cache_alloc_trace);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003759#endif
3760
Linus Torvalds1da177e2005-04-16 15:20:36 -07003761#ifdef CONFIG_NUMA
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003762void *kmem_cache_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid)
3763{
Ezequiel Garcia48356302012-09-08 17:47:57 -03003764 void *ret = slab_alloc_node(cachep, flags, nodeid, _RET_IP_);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003765
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003766 trace_kmem_cache_alloc_node(_RET_IP_, ret,
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003767 cachep->object_size, cachep->size,
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003768 flags, nodeid);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003769
3770 return ret;
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003771}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003772EXPORT_SYMBOL(kmem_cache_alloc_node);
3773
Li Zefan0f24f122009-12-11 15:45:30 +08003774#ifdef CONFIG_TRACING
Ezequiel Garcia40521472012-09-08 17:47:56 -03003775void *kmem_cache_alloc_node_trace(struct kmem_cache *cachep,
Steven Rostedt85beb582010-11-24 16:23:34 -05003776 gfp_t flags,
Ezequiel Garcia40521472012-09-08 17:47:56 -03003777 int nodeid,
3778 size_t size)
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003779{
Steven Rostedt85beb582010-11-24 16:23:34 -05003780 void *ret;
3781
Ezequiel Garcia592f4142012-09-25 08:07:08 -03003782 ret = slab_alloc_node(cachep, flags, nodeid, _RET_IP_);
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003783
Steven Rostedt85beb582010-11-24 16:23:34 -05003784 trace_kmalloc_node(_RET_IP_, ret,
Ezequiel Garciaff4fcd02012-09-08 17:47:52 -03003785 size, cachep->size,
Steven Rostedt85beb582010-11-24 16:23:34 -05003786 flags, nodeid);
3787 return ret;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003788}
Steven Rostedt85beb582010-11-24 16:23:34 -05003789EXPORT_SYMBOL(kmem_cache_alloc_node_trace);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003790#endif
3791
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003792static __always_inline void *
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003793__do_kmalloc_node(size_t size, gfp_t flags, int node, unsigned long caller)
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003794{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003795 struct kmem_cache *cachep;
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003796
3797 cachep = kmem_find_general_cachep(size, flags);
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003798 if (unlikely(ZERO_OR_NULL_PTR(cachep)))
3799 return cachep;
Ezequiel Garcia40521472012-09-08 17:47:56 -03003800 return kmem_cache_alloc_node_trace(cachep, flags, node, size);
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003801}
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003802
Li Zefan0bb38a52009-12-11 15:45:50 +08003803#if defined(CONFIG_DEBUG_SLAB) || defined(CONFIG_TRACING)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003804void *__kmalloc_node(size_t size, gfp_t flags, int node)
3805{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003806 return __do_kmalloc_node(size, flags, node, _RET_IP_);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003807}
Christoph Hellwigdbe5e692006-09-25 23:31:36 -07003808EXPORT_SYMBOL(__kmalloc_node);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003809
3810void *__kmalloc_node_track_caller(size_t size, gfp_t flags,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003811 int node, unsigned long caller)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003812{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003813 return __do_kmalloc_node(size, flags, node, caller);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003814}
3815EXPORT_SYMBOL(__kmalloc_node_track_caller);
3816#else
3817void *__kmalloc_node(size_t size, gfp_t flags, int node)
3818{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003819 return __do_kmalloc_node(size, flags, node, 0);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003820}
3821EXPORT_SYMBOL(__kmalloc_node);
Li Zefan0bb38a52009-12-11 15:45:50 +08003822#endif /* CONFIG_DEBUG_SLAB || CONFIG_TRACING */
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003823#endif /* CONFIG_NUMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824
3825/**
Paul Drynoff800590f2006-06-23 02:03:48 -07003826 * __do_kmalloc - allocate memory
Linus Torvalds1da177e2005-04-16 15:20:36 -07003827 * @size: how many bytes of memory are required.
Paul Drynoff800590f2006-06-23 02:03:48 -07003828 * @flags: the type of memory to allocate (see kmalloc).
Randy Dunlap911851e2006-03-22 00:08:14 -08003829 * @caller: function caller for debug tracking of the caller
Linus Torvalds1da177e2005-04-16 15:20:36 -07003830 */
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003831static __always_inline void *__do_kmalloc(size_t size, gfp_t flags,
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003832 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003833{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003834 struct kmem_cache *cachep;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003835 void *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003836
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003837 /* If you want to save a few bytes .text space: replace
3838 * __ with kmem_.
3839 * Then kmalloc uses the uninlined functions instead of the inline
3840 * functions.
3841 */
3842 cachep = __find_general_cachep(size, flags);
Linus Torvaldsa5c96d82007-07-19 13:17:15 -07003843 if (unlikely(ZERO_OR_NULL_PTR(cachep)))
3844 return cachep;
Ezequiel Garcia48356302012-09-08 17:47:57 -03003845 ret = slab_alloc(cachep, flags, caller);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003846
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003847 trace_kmalloc(caller, ret,
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003848 size, cachep->size, flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003849
3850 return ret;
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003851}
3852
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003853
Li Zefan0bb38a52009-12-11 15:45:50 +08003854#if defined(CONFIG_DEBUG_SLAB) || defined(CONFIG_TRACING)
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003855void *__kmalloc(size_t size, gfp_t flags)
3856{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003857 return __do_kmalloc(size, flags, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003858}
3859EXPORT_SYMBOL(__kmalloc);
3860
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003861void *__kmalloc_track_caller(size_t size, gfp_t flags, unsigned long caller)
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003862{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003863 return __do_kmalloc(size, flags, caller);
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003864}
3865EXPORT_SYMBOL(__kmalloc_track_caller);
Christoph Hellwig1d2c8ee2006-10-04 02:15:25 -07003866
3867#else
3868void *__kmalloc(size_t size, gfp_t flags)
3869{
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003870 return __do_kmalloc(size, flags, 0);
Christoph Hellwig1d2c8ee2006-10-04 02:15:25 -07003871}
3872EXPORT_SYMBOL(__kmalloc);
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003873#endif
3874
Linus Torvalds1da177e2005-04-16 15:20:36 -07003875/**
3876 * kmem_cache_free - Deallocate an object
3877 * @cachep: The cache the allocation was from.
3878 * @objp: The previously allocated object.
3879 *
3880 * Free an object which was previously allocated from this
3881 * cache.
3882 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003883void kmem_cache_free(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003884{
3885 unsigned long flags;
3886
3887 local_irq_save(flags);
Feng Tangd97d4762012-07-02 14:29:10 +08003888 debug_check_no_locks_freed(objp, cachep->object_size);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -07003889 if (!(cachep->flags & SLAB_DEBUG_OBJECTS))
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003890 debug_check_no_obj_freed(objp, cachep->object_size);
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003891 __cache_free(cachep, objp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003892 local_irq_restore(flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003893
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003894 trace_kmem_cache_free(_RET_IP_, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003895}
3896EXPORT_SYMBOL(kmem_cache_free);
3897
3898/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003899 * kfree - free previously allocated memory
3900 * @objp: pointer returned by kmalloc.
3901 *
Pekka Enberg80e93ef2005-09-09 13:10:16 -07003902 * If @objp is NULL, no operation is performed.
3903 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003904 * Don't free memory not originally allocated by kmalloc()
3905 * or you will run into trouble.
3906 */
3907void kfree(const void *objp)
3908{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003909 struct kmem_cache *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003910 unsigned long flags;
3911
Pekka Enberg2121db72009-03-25 11:05:57 +02003912 trace_kfree(_RET_IP_, objp);
3913
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003914 if (unlikely(ZERO_OR_NULL_PTR(objp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915 return;
3916 local_irq_save(flags);
3917 kfree_debugcheck(objp);
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -08003918 c = virt_to_cache(objp);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003919 debug_check_no_locks_freed(objp, c->object_size);
3920
3921 debug_check_no_obj_freed(objp, c->object_size);
Ezequiel Garcia7c0cb9c2012-09-08 17:47:55 -03003922 __cache_free(c, (void *)objp, _RET_IP_);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003923 local_irq_restore(flags);
3924}
3925EXPORT_SYMBOL(kfree);
3926
Christoph Lametere498be72005-09-09 13:03:32 -07003927/*
Simon Arlott183ff222007-10-20 01:27:18 +02003928 * This initializes kmem_list3 or resizes various caches for all nodes.
Christoph Lametere498be72005-09-09 13:03:32 -07003929 */
Pekka Enberg83b519e2009-06-10 19:40:04 +03003930static int alloc_kmemlist(struct kmem_cache *cachep, gfp_t gfp)
Christoph Lametere498be72005-09-09 13:03:32 -07003931{
3932 int node;
3933 struct kmem_list3 *l3;
Christoph Lametercafeb022006-03-25 03:06:46 -08003934 struct array_cache *new_shared;
Paul Menage3395ee02006-12-06 20:32:16 -08003935 struct array_cache **new_alien = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07003936
Mel Gorman9c09a952008-01-24 05:49:54 -08003937 for_each_online_node(node) {
Christoph Lametercafeb022006-03-25 03:06:46 -08003938
Paul Menage3395ee02006-12-06 20:32:16 -08003939 if (use_alien_caches) {
Pekka Enberg83b519e2009-06-10 19:40:04 +03003940 new_alien = alloc_alien_cache(node, cachep->limit, gfp);
Paul Menage3395ee02006-12-06 20:32:16 -08003941 if (!new_alien)
3942 goto fail;
3943 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003944
Eric Dumazet63109842007-05-06 14:49:28 -07003945 new_shared = NULL;
3946 if (cachep->shared) {
3947 new_shared = alloc_arraycache(node,
Christoph Lameter0718dc22006-03-25 03:06:47 -08003948 cachep->shared*cachep->batchcount,
Pekka Enberg83b519e2009-06-10 19:40:04 +03003949 0xbaadf00d, gfp);
Eric Dumazet63109842007-05-06 14:49:28 -07003950 if (!new_shared) {
3951 free_alien_cache(new_alien);
3952 goto fail;
3953 }
Christoph Lameter0718dc22006-03-25 03:06:47 -08003954 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003955
Andrew Mortona737b3e2006-03-22 00:08:11 -08003956 l3 = cachep->nodelists[node];
3957 if (l3) {
Christoph Lametercafeb022006-03-25 03:06:46 -08003958 struct array_cache *shared = l3->shared;
3959
Christoph Lametere498be72005-09-09 13:03:32 -07003960 spin_lock_irq(&l3->list_lock);
3961
Christoph Lametercafeb022006-03-25 03:06:46 -08003962 if (shared)
Christoph Lameter0718dc22006-03-25 03:06:47 -08003963 free_block(cachep, shared->entry,
3964 shared->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -07003965
Christoph Lametercafeb022006-03-25 03:06:46 -08003966 l3->shared = new_shared;
3967 if (!l3->alien) {
Christoph Lametere498be72005-09-09 13:03:32 -07003968 l3->alien = new_alien;
3969 new_alien = NULL;
3970 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003971 l3->free_limit = (1 + nr_cpus_node(node)) *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003972 cachep->batchcount + cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07003973 spin_unlock_irq(&l3->list_lock);
Christoph Lametercafeb022006-03-25 03:06:46 -08003974 kfree(shared);
Christoph Lametere498be72005-09-09 13:03:32 -07003975 free_alien_cache(new_alien);
3976 continue;
3977 }
Pekka Enberg83b519e2009-06-10 19:40:04 +03003978 l3 = kmalloc_node(sizeof(struct kmem_list3), gfp, node);
Christoph Lameter0718dc22006-03-25 03:06:47 -08003979 if (!l3) {
3980 free_alien_cache(new_alien);
3981 kfree(new_shared);
Christoph Lametere498be72005-09-09 13:03:32 -07003982 goto fail;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003983 }
Christoph Lametere498be72005-09-09 13:03:32 -07003984
3985 kmem_list3_init(l3);
3986 l3->next_reap = jiffies + REAPTIMEOUT_LIST3 +
Andrew Mortona737b3e2006-03-22 00:08:11 -08003987 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
Christoph Lametercafeb022006-03-25 03:06:46 -08003988 l3->shared = new_shared;
Christoph Lametere498be72005-09-09 13:03:32 -07003989 l3->alien = new_alien;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003990 l3->free_limit = (1 + nr_cpus_node(node)) *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003991 cachep->batchcount + cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07003992 cachep->nodelists[node] = l3;
3993 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003994 return 0;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003995
Andrew Mortona737b3e2006-03-22 00:08:11 -08003996fail:
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003997 if (!cachep->list.next) {
Christoph Lameter0718dc22006-03-25 03:06:47 -08003998 /* Cache is not active yet. Roll back what we did */
3999 node--;
4000 while (node >= 0) {
4001 if (cachep->nodelists[node]) {
4002 l3 = cachep->nodelists[node];
4003
4004 kfree(l3->shared);
4005 free_alien_cache(l3->alien);
4006 kfree(l3);
4007 cachep->nodelists[node] = NULL;
4008 }
4009 node--;
4010 }
4011 }
Christoph Lametercafeb022006-03-25 03:06:46 -08004012 return -ENOMEM;
Christoph Lametere498be72005-09-09 13:03:32 -07004013}
4014
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015struct ccupdate_struct {
Pekka Enberg343e0d72006-02-01 03:05:50 -08004016 struct kmem_cache *cachep;
Eric Dumazetacfe7d72011-07-25 08:55:42 +02004017 struct array_cache *new[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004018};
4019
4020static void do_ccupdate_local(void *info)
4021{
Andrew Mortona737b3e2006-03-22 00:08:11 -08004022 struct ccupdate_struct *new = info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004023 struct array_cache *old;
4024
4025 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08004026 old = cpu_cache_get(new->cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07004027
Linus Torvalds1da177e2005-04-16 15:20:36 -07004028 new->cachep->array[smp_processor_id()] = new->new[smp_processor_id()];
4029 new->new[smp_processor_id()] = old;
4030}
4031
Christoph Lameter18004c52012-07-06 15:25:12 -05004032/* Always called with the slab_mutex held */
Andrew Mortona737b3e2006-03-22 00:08:11 -08004033static int do_tune_cpucache(struct kmem_cache *cachep, int limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03004034 int batchcount, int shared, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004035{
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004036 struct ccupdate_struct *new;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07004037 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004038
Eric Dumazetacfe7d72011-07-25 08:55:42 +02004039 new = kzalloc(sizeof(*new) + nr_cpu_ids * sizeof(struct array_cache *),
4040 gfp);
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004041 if (!new)
4042 return -ENOMEM;
4043
Christoph Lametere498be72005-09-09 13:03:32 -07004044 for_each_online_cpu(i) {
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07004045 new->new[i] = alloc_arraycache(cpu_to_mem(i), limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03004046 batchcount, gfp);
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004047 if (!new->new[i]) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004048 for (i--; i >= 0; i--)
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004049 kfree(new->new[i]);
4050 kfree(new);
Christoph Lametere498be72005-09-09 13:03:32 -07004051 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004052 }
4053 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004054 new->cachep = cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004055
Jens Axboe15c8b6c2008-05-09 09:39:44 +02004056 on_each_cpu(do_ccupdate_local, (void *)new, 1);
Christoph Lametere498be72005-09-09 13:03:32 -07004057
Linus Torvalds1da177e2005-04-16 15:20:36 -07004058 check_irq_on();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004059 cachep->batchcount = batchcount;
4060 cachep->limit = limit;
Christoph Lametere498be72005-09-09 13:03:32 -07004061 cachep->shared = shared;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004062
Christoph Lametere498be72005-09-09 13:03:32 -07004063 for_each_online_cpu(i) {
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004064 struct array_cache *ccold = new->new[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004065 if (!ccold)
4066 continue;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07004067 spin_lock_irq(&cachep->nodelists[cpu_to_mem(i)]->list_lock);
4068 free_block(cachep, ccold->entry, ccold->avail, cpu_to_mem(i));
4069 spin_unlock_irq(&cachep->nodelists[cpu_to_mem(i)]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004070 kfree(ccold);
4071 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004072 kfree(new);
Pekka Enberg83b519e2009-06-10 19:40:04 +03004073 return alloc_kmemlist(cachep, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004074}
4075
Christoph Lameter18004c52012-07-06 15:25:12 -05004076/* Called with slab_mutex held always */
Pekka Enberg83b519e2009-06-10 19:40:04 +03004077static int enable_cpucache(struct kmem_cache *cachep, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004078{
4079 int err;
4080 int limit, shared;
4081
Andrew Mortona737b3e2006-03-22 00:08:11 -08004082 /*
4083 * The head array serves three purposes:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004084 * - create a LIFO ordering, i.e. return objects that are cache-warm
4085 * - reduce the number of spinlock operations.
Andrew Mortona737b3e2006-03-22 00:08:11 -08004086 * - reduce the number of linked list operations on the slab and
Linus Torvalds1da177e2005-04-16 15:20:36 -07004087 * bufctl chains: array operations are cheaper.
4088 * The numbers are guessed, we should auto-tune as described by
4089 * Bonwick.
4090 */
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05004091 if (cachep->size > 131072)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004092 limit = 1;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05004093 else if (cachep->size > PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004094 limit = 8;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05004095 else if (cachep->size > 1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004096 limit = 24;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05004097 else if (cachep->size > 256)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004098 limit = 54;
4099 else
4100 limit = 120;
4101
Andrew Mortona737b3e2006-03-22 00:08:11 -08004102 /*
4103 * CPU bound tasks (e.g. network routing) can exhibit cpu bound
Linus Torvalds1da177e2005-04-16 15:20:36 -07004104 * allocation behaviour: Most allocs on one cpu, most free operations
4105 * on another cpu. For these cases, an efficient object passing between
4106 * cpus is necessary. This is provided by a shared array. The array
4107 * replaces Bonwick's magazine layer.
4108 * On uniprocessor, it's functionally equivalent (but less efficient)
4109 * to a larger limit. Thus disabled by default.
4110 */
4111 shared = 0;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05004112 if (cachep->size <= PAGE_SIZE && num_possible_cpus() > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004113 shared = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004114
4115#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08004116 /*
4117 * With debugging enabled, large batchcount lead to excessively long
4118 * periods with disabled local interrupts. Limit the batchcount
Linus Torvalds1da177e2005-04-16 15:20:36 -07004119 */
4120 if (limit > 32)
4121 limit = 32;
4122#endif
Pekka Enberg83b519e2009-06-10 19:40:04 +03004123 err = do_tune_cpucache(cachep, limit, (limit + 1) / 2, shared, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004124 if (err)
4125 printk(KERN_ERR "enable_cpucache failed for %s, error %d.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004126 cachep->name, -err);
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07004127 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128}
4129
Christoph Lameter1b552532006-03-22 00:09:07 -08004130/*
4131 * Drain an array if it contains any elements taking the l3 lock only if
Christoph Lameterb18e7e62006-03-22 00:09:07 -08004132 * necessary. Note that the l3 listlock also protects the array_cache
4133 * if drain_array() is used on the shared array.
Christoph Lameter1b552532006-03-22 00:09:07 -08004134 */
H Hartley Sweeten68a1b192011-01-11 17:49:32 -06004135static void drain_array(struct kmem_cache *cachep, struct kmem_list3 *l3,
Christoph Lameter1b552532006-03-22 00:09:07 -08004136 struct array_cache *ac, int force, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004137{
4138 int tofree;
4139
Christoph Lameter1b552532006-03-22 00:09:07 -08004140 if (!ac || !ac->avail)
4141 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004142 if (ac->touched && !force) {
4143 ac->touched = 0;
Christoph Lameterb18e7e62006-03-22 00:09:07 -08004144 } else {
Christoph Lameter1b552532006-03-22 00:09:07 -08004145 spin_lock_irq(&l3->list_lock);
Christoph Lameterb18e7e62006-03-22 00:09:07 -08004146 if (ac->avail) {
4147 tofree = force ? ac->avail : (ac->limit + 4) / 5;
4148 if (tofree > ac->avail)
4149 tofree = (ac->avail + 1) / 2;
4150 free_block(cachep, ac->entry, tofree, node);
4151 ac->avail -= tofree;
4152 memmove(ac->entry, &(ac->entry[tofree]),
4153 sizeof(void *) * ac->avail);
4154 }
Christoph Lameter1b552532006-03-22 00:09:07 -08004155 spin_unlock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004156 }
4157}
4158
4159/**
4160 * cache_reap - Reclaim memory from caches.
Randy Dunlap05fb6bf2007-02-28 20:12:13 -08004161 * @w: work descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -07004162 *
4163 * Called from workqueue/eventd every few seconds.
4164 * Purpose:
4165 * - clear the per-cpu caches for this CPU.
4166 * - return freeable pages to the main free memory pool.
4167 *
Andrew Mortona737b3e2006-03-22 00:08:11 -08004168 * If we cannot acquire the cache chain mutex then just give up - we'll try
4169 * again on the next iteration.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004170 */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004171static void cache_reap(struct work_struct *w)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004172{
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004173 struct kmem_cache *searchp;
Christoph Lametere498be72005-09-09 13:03:32 -07004174 struct kmem_list3 *l3;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07004175 int node = numa_mem_id();
Jean Delvarebf6aede2009-04-02 16:56:54 -07004176 struct delayed_work *work = to_delayed_work(w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004177
Christoph Lameter18004c52012-07-06 15:25:12 -05004178 if (!mutex_trylock(&slab_mutex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004179 /* Give up. Setup the next iteration. */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004180 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004181
Christoph Lameter18004c52012-07-06 15:25:12 -05004182 list_for_each_entry(searchp, &slab_caches, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004183 check_irq_on();
4184
Christoph Lameter35386e32006-03-22 00:09:05 -08004185 /*
4186 * We only take the l3 lock if absolutely necessary and we
4187 * have established with reasonable certainty that
4188 * we can do some work if the lock was obtained.
4189 */
Christoph Lameteraab22072006-03-22 00:09:06 -08004190 l3 = searchp->nodelists[node];
Christoph Lameter35386e32006-03-22 00:09:05 -08004191
Christoph Lameter8fce4d82006-03-09 17:33:54 -08004192 reap_alien(searchp, l3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004193
Christoph Lameteraab22072006-03-22 00:09:06 -08004194 drain_array(searchp, l3, cpu_cache_get(searchp), 0, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004195
Christoph Lameter35386e32006-03-22 00:09:05 -08004196 /*
4197 * These are racy checks but it does not matter
4198 * if we skip one check or scan twice.
4199 */
Christoph Lametere498be72005-09-09 13:03:32 -07004200 if (time_after(l3->next_reap, jiffies))
Christoph Lameter35386e32006-03-22 00:09:05 -08004201 goto next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004202
Christoph Lametere498be72005-09-09 13:03:32 -07004203 l3->next_reap = jiffies + REAPTIMEOUT_LIST3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004204
Christoph Lameteraab22072006-03-22 00:09:06 -08004205 drain_array(searchp, l3, l3->shared, 0, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004206
Christoph Lametered11d9e2006-06-30 01:55:45 -07004207 if (l3->free_touched)
Christoph Lametere498be72005-09-09 13:03:32 -07004208 l3->free_touched = 0;
Christoph Lametered11d9e2006-06-30 01:55:45 -07004209 else {
4210 int freed;
4211
4212 freed = drain_freelist(searchp, l3, (l3->free_limit +
4213 5 * searchp->num - 1) / (5 * searchp->num));
4214 STATS_ADD_REAPED(searchp, freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004215 }
Christoph Lameter35386e32006-03-22 00:09:05 -08004216next:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004217 cond_resched();
4218 }
4219 check_irq_on();
Christoph Lameter18004c52012-07-06 15:25:12 -05004220 mutex_unlock(&slab_mutex);
Christoph Lameter8fce4d82006-03-09 17:33:54 -08004221 next_reap_node();
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004222out:
Andrew Mortona737b3e2006-03-22 00:08:11 -08004223 /* Set up the next iteration */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004224 schedule_delayed_work(work, round_jiffies_relative(REAPTIMEOUT_CPUC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004225}
4226
Linus Torvalds158a9622008-01-02 13:04:48 -08004227#ifdef CONFIG_SLABINFO
Glauber Costa0d7561c2012-10-19 18:20:27 +04004228void get_slabinfo(struct kmem_cache *cachep, struct slabinfo *sinfo)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004229{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004230 struct slab *slabp;
4231 unsigned long active_objs;
4232 unsigned long num_objs;
4233 unsigned long active_slabs = 0;
4234 unsigned long num_slabs, free_objects = 0, shared_avail = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07004235 const char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004236 char *error = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07004237 int node;
4238 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004239
Linus Torvalds1da177e2005-04-16 15:20:36 -07004240 active_objs = 0;
4241 num_slabs = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07004242 for_each_online_node(node) {
4243 l3 = cachep->nodelists[node];
4244 if (!l3)
4245 continue;
4246
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08004247 check_irq_on();
4248 spin_lock_irq(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07004249
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004250 list_for_each_entry(slabp, &l3->slabs_full, list) {
Christoph Lametere498be72005-09-09 13:03:32 -07004251 if (slabp->inuse != cachep->num && !error)
4252 error = "slabs_full accounting error";
4253 active_objs += cachep->num;
4254 active_slabs++;
4255 }
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004256 list_for_each_entry(slabp, &l3->slabs_partial, list) {
Christoph Lametere498be72005-09-09 13:03:32 -07004257 if (slabp->inuse == cachep->num && !error)
4258 error = "slabs_partial inuse accounting error";
4259 if (!slabp->inuse && !error)
4260 error = "slabs_partial/inuse accounting error";
4261 active_objs += slabp->inuse;
4262 active_slabs++;
4263 }
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004264 list_for_each_entry(slabp, &l3->slabs_free, list) {
Christoph Lametere498be72005-09-09 13:03:32 -07004265 if (slabp->inuse && !error)
4266 error = "slabs_free/inuse accounting error";
4267 num_slabs++;
4268 }
4269 free_objects += l3->free_objects;
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08004270 if (l3->shared)
4271 shared_avail += l3->shared->avail;
Christoph Lametere498be72005-09-09 13:03:32 -07004272
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08004273 spin_unlock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004274 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004275 num_slabs += active_slabs;
4276 num_objs = num_slabs * cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07004277 if (num_objs - active_objs != free_objects && !error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004278 error = "free_objects accounting error";
4279
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004280 name = cachep->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004281 if (error)
4282 printk(KERN_ERR "slab: cache %s error: %s\n", name, error);
4283
Glauber Costa0d7561c2012-10-19 18:20:27 +04004284 sinfo->active_objs = active_objs;
4285 sinfo->num_objs = num_objs;
4286 sinfo->active_slabs = active_slabs;
4287 sinfo->num_slabs = num_slabs;
4288 sinfo->shared_avail = shared_avail;
4289 sinfo->limit = cachep->limit;
4290 sinfo->batchcount = cachep->batchcount;
4291 sinfo->shared = cachep->shared;
4292 sinfo->objects_per_slab = cachep->num;
4293 sinfo->cache_order = cachep->gfporder;
4294}
4295
4296void slabinfo_show_stats(struct seq_file *m, struct kmem_cache *cachep)
4297{
Linus Torvalds1da177e2005-04-16 15:20:36 -07004298#if STATS
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004299 { /* list3 stats */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004300 unsigned long high = cachep->high_mark;
4301 unsigned long allocs = cachep->num_allocations;
4302 unsigned long grown = cachep->grown;
4303 unsigned long reaped = cachep->reaped;
4304 unsigned long errors = cachep->errors;
4305 unsigned long max_freeable = cachep->max_freeable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004306 unsigned long node_allocs = cachep->node_allocs;
Christoph Lametere498be72005-09-09 13:03:32 -07004307 unsigned long node_frees = cachep->node_frees;
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -07004308 unsigned long overflows = cachep->node_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004309
Joe Perchese92dd4f2010-03-26 19:27:58 -07004310 seq_printf(m, " : globalstat %7lu %6lu %5lu %4lu "
4311 "%4lu %4lu %4lu %4lu %4lu",
4312 allocs, high, grown,
4313 reaped, errors, max_freeable, node_allocs,
4314 node_frees, overflows);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004315 }
4316 /* cpu stats */
4317 {
4318 unsigned long allochit = atomic_read(&cachep->allochit);
4319 unsigned long allocmiss = atomic_read(&cachep->allocmiss);
4320 unsigned long freehit = atomic_read(&cachep->freehit);
4321 unsigned long freemiss = atomic_read(&cachep->freemiss);
4322
4323 seq_printf(m, " : cpustat %6lu %6lu %6lu %6lu",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004324 allochit, allocmiss, freehit, freemiss);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004325 }
4326#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07004327}
4328
Linus Torvalds1da177e2005-04-16 15:20:36 -07004329#define MAX_SLABINFO_WRITE 128
4330/**
4331 * slabinfo_write - Tuning for the slab allocator
4332 * @file: unused
4333 * @buffer: user buffer
4334 * @count: data length
4335 * @ppos: unused
4336 */
Glauber Costab7454ad2012-10-19 18:20:25 +04004337ssize_t slabinfo_write(struct file *file, const char __user *buffer,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004338 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004339{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004340 char kbuf[MAX_SLABINFO_WRITE + 1], *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004341 int limit, batchcount, shared, res;
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004342 struct kmem_cache *cachep;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004343
Linus Torvalds1da177e2005-04-16 15:20:36 -07004344 if (count > MAX_SLABINFO_WRITE)
4345 return -EINVAL;
4346 if (copy_from_user(&kbuf, buffer, count))
4347 return -EFAULT;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004348 kbuf[MAX_SLABINFO_WRITE] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07004349
4350 tmp = strchr(kbuf, ' ');
4351 if (!tmp)
4352 return -EINVAL;
4353 *tmp = '\0';
4354 tmp++;
4355 if (sscanf(tmp, " %d %d %d", &limit, &batchcount, &shared) != 3)
4356 return -EINVAL;
4357
4358 /* Find the cache in the chain of caches. */
Christoph Lameter18004c52012-07-06 15:25:12 -05004359 mutex_lock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004360 res = -EINVAL;
Christoph Lameter18004c52012-07-06 15:25:12 -05004361 list_for_each_entry(cachep, &slab_caches, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004362 if (!strcmp(cachep->name, kbuf)) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08004363 if (limit < 1 || batchcount < 1 ||
4364 batchcount > limit || shared < 0) {
Christoph Lametere498be72005-09-09 13:03:32 -07004365 res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004366 } else {
Christoph Lametere498be72005-09-09 13:03:32 -07004367 res = do_tune_cpucache(cachep, limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03004368 batchcount, shared,
4369 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004370 }
4371 break;
4372 }
4373 }
Christoph Lameter18004c52012-07-06 15:25:12 -05004374 mutex_unlock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004375 if (res >= 0)
4376 res = count;
4377 return res;
4378}
Al Viro871751e2006-03-25 03:06:39 -08004379
4380#ifdef CONFIG_DEBUG_SLAB_LEAK
4381
4382static void *leaks_start(struct seq_file *m, loff_t *pos)
4383{
Christoph Lameter18004c52012-07-06 15:25:12 -05004384 mutex_lock(&slab_mutex);
4385 return seq_list_start(&slab_caches, *pos);
Al Viro871751e2006-03-25 03:06:39 -08004386}
4387
4388static inline int add_caller(unsigned long *n, unsigned long v)
4389{
4390 unsigned long *p;
4391 int l;
4392 if (!v)
4393 return 1;
4394 l = n[1];
4395 p = n + 2;
4396 while (l) {
4397 int i = l/2;
4398 unsigned long *q = p + 2 * i;
4399 if (*q == v) {
4400 q[1]++;
4401 return 1;
4402 }
4403 if (*q > v) {
4404 l = i;
4405 } else {
4406 p = q + 2;
4407 l -= i + 1;
4408 }
4409 }
4410 if (++n[1] == n[0])
4411 return 0;
4412 memmove(p + 2, p, n[1] * 2 * sizeof(unsigned long) - ((void *)p - (void *)n));
4413 p[0] = v;
4414 p[1] = 1;
4415 return 1;
4416}
4417
4418static void handle_slab(unsigned long *n, struct kmem_cache *c, struct slab *s)
4419{
4420 void *p;
4421 int i;
4422 if (n[0] == n[1])
4423 return;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05004424 for (i = 0, p = s->s_mem; i < c->num; i++, p += c->size) {
Al Viro871751e2006-03-25 03:06:39 -08004425 if (slab_bufctl(s)[i] != BUFCTL_ACTIVE)
4426 continue;
4427 if (!add_caller(n, (unsigned long)*dbg_userword(c, p)))
4428 return;
4429 }
4430}
4431
4432static void show_symbol(struct seq_file *m, unsigned long address)
4433{
4434#ifdef CONFIG_KALLSYMS
Al Viro871751e2006-03-25 03:06:39 -08004435 unsigned long offset, size;
Tejun Heo9281ace2007-07-17 04:03:51 -07004436 char modname[MODULE_NAME_LEN], name[KSYM_NAME_LEN];
Al Viro871751e2006-03-25 03:06:39 -08004437
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004438 if (lookup_symbol_attrs(address, &size, &offset, modname, name) == 0) {
Al Viro871751e2006-03-25 03:06:39 -08004439 seq_printf(m, "%s+%#lx/%#lx", name, offset, size);
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004440 if (modname[0])
Al Viro871751e2006-03-25 03:06:39 -08004441 seq_printf(m, " [%s]", modname);
4442 return;
4443 }
4444#endif
4445 seq_printf(m, "%p", (void *)address);
4446}
4447
4448static int leaks_show(struct seq_file *m, void *p)
4449{
Thierry Reding0672aa72012-06-22 19:42:49 +02004450 struct kmem_cache *cachep = list_entry(p, struct kmem_cache, list);
Al Viro871751e2006-03-25 03:06:39 -08004451 struct slab *slabp;
4452 struct kmem_list3 *l3;
4453 const char *name;
4454 unsigned long *n = m->private;
4455 int node;
4456 int i;
4457
4458 if (!(cachep->flags & SLAB_STORE_USER))
4459 return 0;
4460 if (!(cachep->flags & SLAB_RED_ZONE))
4461 return 0;
4462
4463 /* OK, we can do it */
4464
4465 n[1] = 0;
4466
4467 for_each_online_node(node) {
4468 l3 = cachep->nodelists[node];
4469 if (!l3)
4470 continue;
4471
4472 check_irq_on();
4473 spin_lock_irq(&l3->list_lock);
4474
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004475 list_for_each_entry(slabp, &l3->slabs_full, list)
Al Viro871751e2006-03-25 03:06:39 -08004476 handle_slab(n, cachep, slabp);
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004477 list_for_each_entry(slabp, &l3->slabs_partial, list)
Al Viro871751e2006-03-25 03:06:39 -08004478 handle_slab(n, cachep, slabp);
Al Viro871751e2006-03-25 03:06:39 -08004479 spin_unlock_irq(&l3->list_lock);
4480 }
4481 name = cachep->name;
4482 if (n[0] == n[1]) {
4483 /* Increase the buffer size */
Christoph Lameter18004c52012-07-06 15:25:12 -05004484 mutex_unlock(&slab_mutex);
Al Viro871751e2006-03-25 03:06:39 -08004485 m->private = kzalloc(n[0] * 4 * sizeof(unsigned long), GFP_KERNEL);
4486 if (!m->private) {
4487 /* Too bad, we are really out */
4488 m->private = n;
Christoph Lameter18004c52012-07-06 15:25:12 -05004489 mutex_lock(&slab_mutex);
Al Viro871751e2006-03-25 03:06:39 -08004490 return -ENOMEM;
4491 }
4492 *(unsigned long *)m->private = n[0] * 2;
4493 kfree(n);
Christoph Lameter18004c52012-07-06 15:25:12 -05004494 mutex_lock(&slab_mutex);
Al Viro871751e2006-03-25 03:06:39 -08004495 /* Now make sure this entry will be retried */
4496 m->count = m->size;
4497 return 0;
4498 }
4499 for (i = 0; i < n[1]; i++) {
4500 seq_printf(m, "%s: %lu ", name, n[2*i+3]);
4501 show_symbol(m, n[2*i+2]);
4502 seq_putc(m, '\n');
4503 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004504
Al Viro871751e2006-03-25 03:06:39 -08004505 return 0;
4506}
4507
Glauber Costab7454ad2012-10-19 18:20:25 +04004508static void *s_next(struct seq_file *m, void *p, loff_t *pos)
4509{
4510 return seq_list_next(p, &slab_caches, pos);
4511}
4512
4513static void s_stop(struct seq_file *m, void *p)
4514{
4515 mutex_unlock(&slab_mutex);
4516}
4517
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004518static const struct seq_operations slabstats_op = {
Al Viro871751e2006-03-25 03:06:39 -08004519 .start = leaks_start,
4520 .next = s_next,
4521 .stop = s_stop,
4522 .show = leaks_show,
4523};
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004524
4525static int slabstats_open(struct inode *inode, struct file *file)
4526{
4527 unsigned long *n = kzalloc(PAGE_SIZE, GFP_KERNEL);
4528 int ret = -ENOMEM;
4529 if (n) {
4530 ret = seq_open(file, &slabstats_op);
4531 if (!ret) {
4532 struct seq_file *m = file->private_data;
4533 *n = PAGE_SIZE / (2 * sizeof(unsigned long));
4534 m->private = n;
4535 n = NULL;
4536 }
4537 kfree(n);
4538 }
4539 return ret;
4540}
4541
4542static const struct file_operations proc_slabstats_operations = {
4543 .open = slabstats_open,
4544 .read = seq_read,
4545 .llseek = seq_lseek,
4546 .release = seq_release_private,
4547};
Al Viro871751e2006-03-25 03:06:39 -08004548#endif
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004549
4550static int __init slab_proc_init(void)
4551{
4552#ifdef CONFIG_DEBUG_SLAB_LEAK
4553 proc_create("slab_allocators", 0, NULL, &proc_slabstats_operations);
4554#endif
4555 return 0;
4556}
4557module_init(slab_proc_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004558#endif
4559
Manfred Spraul00e145b2005-09-03 15:55:07 -07004560/**
4561 * ksize - get the actual amount of memory allocated for a given object
4562 * @objp: Pointer to the object
4563 *
4564 * kmalloc may internally round up allocations and return more memory
4565 * than requested. ksize() can be used to determine the actual amount of
4566 * memory allocated. The caller may use this additional memory, even though
4567 * a smaller amount of memory was initially specified with the kmalloc call.
4568 * The caller must guarantee that objp points to a valid object previously
4569 * allocated with either kmalloc() or kmem_cache_alloc(). The object
4570 * must not be freed during the duration of the call.
4571 */
Pekka Enbergfd76bab2007-05-06 14:48:40 -07004572size_t ksize(const void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004573{
Christoph Lameteref8b4522007-10-16 01:24:46 -07004574 BUG_ON(!objp);
4575 if (unlikely(objp == ZERO_SIZE_PTR))
Manfred Spraul00e145b2005-09-03 15:55:07 -07004576 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004577
Christoph Lameter8c138bc2012-06-13 10:24:58 -05004578 return virt_to_cache(objp)->object_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004579}
Kirill A. Shutemovb1aabec2009-02-10 15:21:44 +02004580EXPORT_SYMBOL(ksize);