blob: 4bab2d1a8291eac4966c73129985b348b33a1c50 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/mm/slab.c
3 * Written by Mark Hemment, 1996/97.
4 * (markhe@nextd.demon.co.uk)
5 *
6 * kmem_cache_destroy() + some cleanup - 1999 Andrea Arcangeli
7 *
8 * Major cleanup, different bufctl logic, per-cpu arrays
9 * (c) 2000 Manfred Spraul
10 *
11 * Cleanup, make the head arrays unconditional, preparation for NUMA
12 * (c) 2002 Manfred Spraul
13 *
14 * An implementation of the Slab Allocator as described in outline in;
15 * UNIX Internals: The New Frontiers by Uresh Vahalia
16 * Pub: Prentice Hall ISBN 0-13-101908-2
17 * or with a little more detail in;
18 * The Slab Allocator: An Object-Caching Kernel Memory Allocator
19 * Jeff Bonwick (Sun Microsystems).
20 * Presented at: USENIX Summer 1994 Technical Conference
21 *
22 * The memory is organized in caches, one cache for each object type.
23 * (e.g. inode_cache, dentry_cache, buffer_head, vm_area_struct)
24 * Each cache consists out of many slabs (they are small (usually one
25 * page long) and always contiguous), and each slab contains multiple
26 * initialized objects.
27 *
28 * This means, that your constructor is used only for newly allocated
Simon Arlott183ff222007-10-20 01:27:18 +020029 * slabs and you must pass objects with the same initializations to
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 * kmem_cache_free.
31 *
32 * Each cache can only support one memory type (GFP_DMA, GFP_HIGHMEM,
33 * normal). If you need a special memory type, then must create a new
34 * cache for that memory type.
35 *
36 * In order to reduce fragmentation, the slabs are sorted in 3 groups:
37 * full slabs with 0 free objects
38 * partial slabs
39 * empty slabs with no allocated objects
40 *
41 * If partial slabs exist, then new allocations come from these slabs,
42 * otherwise from empty slabs or new slabs are allocated.
43 *
44 * kmem_cache_destroy() CAN CRASH if you try to allocate from the cache
45 * during kmem_cache_destroy(). The caller must prevent concurrent allocs.
46 *
47 * Each cache has a short per-cpu head array, most allocs
48 * and frees go into that array, and if that array overflows, then 1/2
49 * of the entries in the array are given back into the global cache.
50 * The head array is strictly LIFO and should improve the cache hit rates.
51 * On SMP, it additionally reduces the spinlock operations.
52 *
Andrew Mortona737b3e2006-03-22 00:08:11 -080053 * The c_cpuarray may not be read with enabled local interrupts -
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 * it's changed with a smp_call_function().
55 *
56 * SMP synchronization:
57 * constructors and destructors are called without any locking.
Pekka Enberg343e0d72006-02-01 03:05:50 -080058 * Several members in struct kmem_cache and struct slab never change, they
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 * are accessed without any locking.
60 * The per-cpu arrays are never accessed from the wrong cpu, no locking,
61 * and local interrupts are disabled so slab code is preempt-safe.
62 * The non-constant members are protected with a per-cache irq spinlock.
63 *
64 * Many thanks to Mark Hemment, who wrote another per-cpu slab patch
65 * in 2000 - many ideas in the current implementation are derived from
66 * his patch.
67 *
68 * Further notes from the original documentation:
69 *
70 * 11 April '97. Started multi-threading - markhe
Ingo Molnarfc0abb12006-01-18 17:42:33 -080071 * The global cache-chain is protected by the mutex 'cache_chain_mutex'.
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 * The sem is only needed when accessing/extending the cache-chain, which
73 * can never happen inside an interrupt (kmem_cache_create(),
74 * kmem_cache_shrink() and kmem_cache_reap()).
75 *
76 * At present, each engine can be growing a cache. This should be blocked.
77 *
Christoph Lametere498be72005-09-09 13:03:32 -070078 * 15 March 2005. NUMA slab allocator.
79 * Shai Fultheim <shai@scalex86.org>.
80 * Shobhit Dayal <shobhit@calsoftinc.com>
81 * Alok N Kataria <alokk@calsoftinc.com>
82 * Christoph Lameter <christoph@lameter.com>
83 *
84 * Modified the slab allocator to be node aware on NUMA systems.
85 * Each node has its own list of partial, free and full slabs.
86 * All object allocations for a node occur from node specific slab lists.
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 */
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089#include <linux/slab.h>
90#include <linux/mm.h>
Randy Dunlapc9cf5522006-06-27 02:53:52 -070091#include <linux/poison.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070092#include <linux/swap.h>
93#include <linux/cache.h>
94#include <linux/interrupt.h>
95#include <linux/init.h>
96#include <linux/compiler.h>
Paul Jackson101a5002006-03-24 03:16:07 -080097#include <linux/cpuset.h>
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +040098#include <linux/proc_fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070099#include <linux/seq_file.h>
100#include <linux/notifier.h>
101#include <linux/kallsyms.h>
102#include <linux/cpu.h>
103#include <linux/sysctl.h>
104#include <linux/module.h>
105#include <linux/rcupdate.h>
Paulo Marques543537b2005-06-23 00:09:02 -0700106#include <linux/string.h>
Andrew Morton138ae662006-12-06 20:36:41 -0800107#include <linux/uaccess.h>
Christoph Lametere498be72005-09-09 13:03:32 -0700108#include <linux/nodemask.h>
Catalin Marinasd5cff632009-06-11 13:22:40 +0100109#include <linux/kmemleak.h>
Christoph Lameterdc85da12006-01-18 17:42:36 -0800110#include <linux/mempolicy.h>
Ingo Molnarfc0abb12006-01-18 17:42:33 -0800111#include <linux/mutex.h>
Akinobu Mita8a8b6502006-12-08 02:39:44 -0800112#include <linux/fault-inject.h>
Ingo Molnare7eebaf2006-06-27 02:54:55 -0700113#include <linux/rtmutex.h>
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800114#include <linux/reciprocal_div.h>
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700115#include <linux/debugobjects.h>
Pekka Enbergc175eea2008-05-09 20:35:53 +0200116#include <linux/kmemcheck.h>
David Rientjes8f9f8d92010-03-27 19:40:47 -0700117#include <linux/memory.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119#include <asm/cacheflush.h>
120#include <asm/tlbflush.h>
121#include <asm/page.h>
122
123/*
Christoph Lameter50953fe2007-05-06 14:50:16 -0700124 * DEBUG - 1 for kmem_cache_create() to honour; SLAB_RED_ZONE & SLAB_POISON.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 * 0 for faster, smaller code (especially in the critical paths).
126 *
127 * STATS - 1 to collect stats for /proc/slabinfo.
128 * 0 for faster, smaller code (especially in the critical paths).
129 *
130 * FORCED_DEBUG - 1 enables SLAB_RED_ZONE and SLAB_POISON (if possible)
131 */
132
133#ifdef CONFIG_DEBUG_SLAB
134#define DEBUG 1
135#define STATS 1
136#define FORCED_DEBUG 1
137#else
138#define DEBUG 0
139#define STATS 0
140#define FORCED_DEBUG 0
141#endif
142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143/* Shouldn't this be in a header file somewhere? */
144#define BYTES_PER_WORD sizeof(void *)
David Woodhouse87a927c2007-07-04 21:26:44 -0400145#define REDZONE_ALIGN max(BYTES_PER_WORD, __alignof__(unsigned long long))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147#ifndef ARCH_KMALLOC_FLAGS
148#define ARCH_KMALLOC_FLAGS SLAB_HWCACHE_ALIGN
149#endif
150
151/* Legal flag mask for kmem_cache_create(). */
152#if DEBUG
Christoph Lameter50953fe2007-05-06 14:50:16 -0700153# define CREATE_MASK (SLAB_RED_ZONE | \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 SLAB_POISON | SLAB_HWCACHE_ALIGN | \
Christoph Lameterac2b8982006-03-22 00:08:15 -0800155 SLAB_CACHE_DMA | \
Christoph Lameter5af60832007-05-06 14:49:56 -0700156 SLAB_STORE_USER | \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 SLAB_RECLAIM_ACCOUNT | SLAB_PANIC | \
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700158 SLAB_DESTROY_BY_RCU | SLAB_MEM_SPREAD | \
Pekka Enbergc175eea2008-05-09 20:35:53 +0200159 SLAB_DEBUG_OBJECTS | SLAB_NOLEAKTRACE | SLAB_NOTRACK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160#else
Christoph Lameterac2b8982006-03-22 00:08:15 -0800161# define CREATE_MASK (SLAB_HWCACHE_ALIGN | \
Christoph Lameter5af60832007-05-06 14:49:56 -0700162 SLAB_CACHE_DMA | \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 SLAB_RECLAIM_ACCOUNT | SLAB_PANIC | \
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700164 SLAB_DESTROY_BY_RCU | SLAB_MEM_SPREAD | \
Pekka Enbergc175eea2008-05-09 20:35:53 +0200165 SLAB_DEBUG_OBJECTS | SLAB_NOLEAKTRACE | SLAB_NOTRACK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166#endif
167
168/*
169 * kmem_bufctl_t:
170 *
171 * Bufctl's are used for linking objs within a slab
172 * linked offsets.
173 *
174 * This implementation relies on "struct page" for locating the cache &
175 * slab an object belongs to.
176 * This allows the bufctl structure to be small (one int), but limits
177 * the number of objects a slab (not a cache) can contain when off-slab
178 * bufctls are used. The limit is the size of the largest general cache
179 * that does not use off-slab slabs.
180 * For 32bit archs with 4 kB pages, is this 56.
181 * This is not serious, as it is only for large objects, when it is unwise
182 * to have too many per slab.
183 * Note: This limit can be raised by introducing a general cache whose size
184 * is less than 512 (PAGE_SIZE<<3), but greater than 256.
185 */
186
Kyle Moffettfa5b08d2005-09-03 15:55:03 -0700187typedef unsigned int kmem_bufctl_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188#define BUFCTL_END (((kmem_bufctl_t)(~0U))-0)
189#define BUFCTL_FREE (((kmem_bufctl_t)(~0U))-1)
Al Viro871751e2006-03-25 03:06:39 -0800190#define BUFCTL_ACTIVE (((kmem_bufctl_t)(~0U))-2)
191#define SLAB_LIMIT (((kmem_bufctl_t)(~0U))-3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193/*
194 * struct slab
195 *
196 * Manages the objs in a slab. Placed either at the beginning of mem allocated
197 * for a slab, or allocated from an general cache.
198 * Slabs are chained into three list: fully used, partial, fully free slabs.
199 */
200struct slab {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800201 struct list_head list;
202 unsigned long colouroff;
203 void *s_mem; /* including colour offset */
204 unsigned int inuse; /* num of objs active in slab */
205 kmem_bufctl_t free;
206 unsigned short nodeid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207};
208
209/*
210 * struct slab_rcu
211 *
212 * slab_destroy on a SLAB_DESTROY_BY_RCU cache uses this structure to
213 * arrange for kmem_freepages to be called via RCU. This is useful if
214 * we need to approach a kernel structure obliquely, from its address
215 * obtained without the usual locking. We can lock the structure to
216 * stabilize it and check it's still at the given address, only if we
217 * can be sure that the memory has not been meanwhile reused for some
218 * other kind of object (which our subsystem's lock might corrupt).
219 *
220 * rcu_read_lock before reading the address, then rcu_read_unlock after
221 * taking the spinlock within the structure expected at that address.
222 *
223 * We assume struct slab_rcu can overlay struct slab when destroying.
224 */
225struct slab_rcu {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800226 struct rcu_head head;
Pekka Enberg343e0d72006-02-01 03:05:50 -0800227 struct kmem_cache *cachep;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800228 void *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229};
230
231/*
232 * 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.
Andrew Mortona737b3e2006-03-22 00:08:11 -0800253 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254};
255
Andrew Mortona737b3e2006-03-22 00:08:11 -0800256/*
257 * bootstrap: The caches do not work without cpuarrays anymore, but the
258 * cpuarrays are allocated from the generic caches...
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 */
260#define BOOT_CPUCACHE_ENTRIES 1
261struct arraycache_init {
262 struct array_cache cache;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800263 void *entries[BOOT_CPUCACHE_ENTRIES];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264};
265
266/*
Christoph Lametere498be72005-09-09 13:03:32 -0700267 * The slab lists for all objects.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 */
269struct kmem_list3 {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800270 struct list_head slabs_partial; /* partial list first, better asm code */
271 struct list_head slabs_full;
272 struct list_head slabs_free;
273 unsigned long free_objects;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800274 unsigned int free_limit;
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -0800275 unsigned int colour_next; /* Per-node cache coloring */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800276 spinlock_t list_lock;
277 struct array_cache *shared; /* shared per node */
278 struct array_cache **alien; /* on other nodes */
Christoph Lameter35386e32006-03-22 00:09:05 -0800279 unsigned long next_reap; /* updated without locking */
280 int free_touched; /* updated without locking */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281};
282
Christoph Lametere498be72005-09-09 13:03:32 -0700283/*
284 * Need this for bootstrapping a per node allocator.
285 */
Pekka Enberg556a1692008-01-25 08:20:51 +0200286#define NUM_INIT_LISTS (3 * MAX_NUMNODES)
H Hartley Sweeten68a1b192011-01-11 17:49:32 -0600287static struct kmem_list3 __initdata initkmem_list3[NUM_INIT_LISTS];
Christoph Lametere498be72005-09-09 13:03:32 -0700288#define CACHE_CACHE 0
Pekka Enberg556a1692008-01-25 08:20:51 +0200289#define SIZE_AC MAX_NUMNODES
290#define SIZE_L3 (2 * MAX_NUMNODES)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
Christoph Lametered11d9e2006-06-30 01:55:45 -0700292static int drain_freelist(struct kmem_cache *cache,
293 struct kmem_list3 *l3, int tofree);
294static void free_block(struct kmem_cache *cachep, void **objpp, int len,
295 int node);
Pekka Enberg83b519e2009-06-10 19:40:04 +0300296static int enable_cpucache(struct kmem_cache *cachep, gfp_t gfp);
David Howells65f27f32006-11-22 14:55:48 +0000297static void cache_reap(struct work_struct *unused);
Christoph Lametered11d9e2006-06-30 01:55:45 -0700298
Christoph Lametere498be72005-09-09 13:03:32 -0700299/*
Andrew Mortona737b3e2006-03-22 00:08:11 -0800300 * This function must be completely optimized away if a constant is passed to
301 * it. Mostly the same as what is in linux/slab.h except it returns an index.
Christoph Lametere498be72005-09-09 13:03:32 -0700302 */
Ivan Kokshaysky7243cc02005-09-22 21:43:58 -0700303static __always_inline int index_of(const size_t size)
Christoph Lametere498be72005-09-09 13:03:32 -0700304{
Steven Rostedt5ec8a842006-02-01 03:05:44 -0800305 extern void __bad_size(void);
306
Christoph Lametere498be72005-09-09 13:03:32 -0700307 if (__builtin_constant_p(size)) {
308 int i = 0;
309
310#define CACHE(x) \
311 if (size <=x) \
312 return i; \
313 else \
314 i++;
Joe Perches1c61fc42008-03-05 13:58:17 -0800315#include <linux/kmalloc_sizes.h>
Christoph Lametere498be72005-09-09 13:03:32 -0700316#undef CACHE
Steven Rostedt5ec8a842006-02-01 03:05:44 -0800317 __bad_size();
Ivan Kokshaysky7243cc02005-09-22 21:43:58 -0700318 } else
Steven Rostedt5ec8a842006-02-01 03:05:44 -0800319 __bad_size();
Christoph Lametere498be72005-09-09 13:03:32 -0700320 return 0;
321}
322
Ingo Molnare0a42722006-06-23 02:03:46 -0700323static int slab_early_init = 1;
324
Christoph Lametere498be72005-09-09 13:03:32 -0700325#define INDEX_AC index_of(sizeof(struct arraycache_init))
326#define INDEX_L3 index_of(sizeof(struct kmem_list3))
327
Pekka Enberg5295a742006-02-01 03:05:48 -0800328static void kmem_list3_init(struct kmem_list3 *parent)
Christoph Lametere498be72005-09-09 13:03:32 -0700329{
330 INIT_LIST_HEAD(&parent->slabs_full);
331 INIT_LIST_HEAD(&parent->slabs_partial);
332 INIT_LIST_HEAD(&parent->slabs_free);
333 parent->shared = NULL;
334 parent->alien = NULL;
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -0800335 parent->colour_next = 0;
Christoph Lametere498be72005-09-09 13:03:32 -0700336 spin_lock_init(&parent->list_lock);
337 parent->free_objects = 0;
338 parent->free_touched = 0;
339}
340
Andrew Mortona737b3e2006-03-22 00:08:11 -0800341#define MAKE_LIST(cachep, listp, slab, nodeid) \
342 do { \
343 INIT_LIST_HEAD(listp); \
344 list_splice(&(cachep->nodelists[nodeid]->slab), listp); \
Christoph Lametere498be72005-09-09 13:03:32 -0700345 } while (0)
346
Andrew Mortona737b3e2006-03-22 00:08:11 -0800347#define MAKE_ALL_LISTS(cachep, ptr, nodeid) \
348 do { \
Christoph Lametere498be72005-09-09 13:03:32 -0700349 MAKE_LIST((cachep), (&(ptr)->slabs_full), slabs_full, nodeid); \
350 MAKE_LIST((cachep), (&(ptr)->slabs_partial), slabs_partial, nodeid); \
351 MAKE_LIST((cachep), (&(ptr)->slabs_free), slabs_free, nodeid); \
352 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354#define CFLGS_OFF_SLAB (0x80000000UL)
355#define OFF_SLAB(x) ((x)->flags & CFLGS_OFF_SLAB)
356
357#define BATCHREFILL_LIMIT 16
Andrew Mortona737b3e2006-03-22 00:08:11 -0800358/*
359 * Optimization question: fewer reaps means less probability for unnessary
360 * cpucache drain/refill cycles.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 *
Adrian Bunkdc6f3f22005-11-08 16:44:08 +0100362 * OTOH the cpuarrays can contain lots of objects,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 * which could lock up otherwise freeable slabs.
364 */
365#define REAPTIMEOUT_CPUC (2*HZ)
366#define REAPTIMEOUT_LIST3 (4*HZ)
367
368#if STATS
369#define STATS_INC_ACTIVE(x) ((x)->num_active++)
370#define STATS_DEC_ACTIVE(x) ((x)->num_active--)
371#define STATS_INC_ALLOCED(x) ((x)->num_allocations++)
372#define STATS_INC_GROWN(x) ((x)->grown++)
Christoph Lametered11d9e2006-06-30 01:55:45 -0700373#define STATS_ADD_REAPED(x,y) ((x)->reaped += (y))
Andrew Mortona737b3e2006-03-22 00:08:11 -0800374#define STATS_SET_HIGH(x) \
375 do { \
376 if ((x)->num_active > (x)->high_mark) \
377 (x)->high_mark = (x)->num_active; \
378 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379#define STATS_INC_ERR(x) ((x)->errors++)
380#define STATS_INC_NODEALLOCS(x) ((x)->node_allocs++)
Christoph Lametere498be72005-09-09 13:03:32 -0700381#define STATS_INC_NODEFREES(x) ((x)->node_frees++)
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -0700382#define STATS_INC_ACOVERFLOW(x) ((x)->node_overflow++)
Andrew Mortona737b3e2006-03-22 00:08:11 -0800383#define STATS_SET_FREEABLE(x, i) \
384 do { \
385 if ((x)->max_freeable < i) \
386 (x)->max_freeable = i; \
387 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388#define STATS_INC_ALLOCHIT(x) atomic_inc(&(x)->allochit)
389#define STATS_INC_ALLOCMISS(x) atomic_inc(&(x)->allocmiss)
390#define STATS_INC_FREEHIT(x) atomic_inc(&(x)->freehit)
391#define STATS_INC_FREEMISS(x) atomic_inc(&(x)->freemiss)
392#else
393#define STATS_INC_ACTIVE(x) do { } while (0)
394#define STATS_DEC_ACTIVE(x) do { } while (0)
395#define STATS_INC_ALLOCED(x) do { } while (0)
396#define STATS_INC_GROWN(x) do { } while (0)
Andi Kleen4e60c862010-08-09 17:19:03 -0700397#define STATS_ADD_REAPED(x,y) do { (void)(y); } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398#define STATS_SET_HIGH(x) do { } while (0)
399#define STATS_INC_ERR(x) do { } while (0)
400#define STATS_INC_NODEALLOCS(x) do { } while (0)
Christoph Lametere498be72005-09-09 13:03:32 -0700401#define STATS_INC_NODEFREES(x) do { } while (0)
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -0700402#define STATS_INC_ACOVERFLOW(x) do { } while (0)
Andrew Mortona737b3e2006-03-22 00:08:11 -0800403#define STATS_SET_FREEABLE(x, i) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404#define STATS_INC_ALLOCHIT(x) do { } while (0)
405#define STATS_INC_ALLOCMISS(x) do { } while (0)
406#define STATS_INC_FREEHIT(x) do { } while (0)
407#define STATS_INC_FREEMISS(x) do { } while (0)
408#endif
409
410#if DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Andrew Mortona737b3e2006-03-22 00:08:11 -0800412/*
413 * memory layout of objects:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 * 0 : objp
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800415 * 0 .. cachep->obj_offset - BYTES_PER_WORD - 1: padding. This ensures that
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 * the end of an object is aligned with the end of the real
417 * allocation. Catches writes behind the end of the allocation.
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800418 * cachep->obj_offset - BYTES_PER_WORD .. cachep->obj_offset - 1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419 * redzone word.
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800420 * cachep->obj_offset: The real object.
421 * cachep->buffer_size - 2* BYTES_PER_WORD: redzone word [BYTES_PER_WORD long]
Andrew Mortona737b3e2006-03-22 00:08:11 -0800422 * cachep->buffer_size - 1* BYTES_PER_WORD: last caller address
423 * [BYTES_PER_WORD long]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424 */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800425static int obj_offset(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426{
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800427 return cachep->obj_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428}
429
Pekka Enberg343e0d72006-02-01 03:05:50 -0800430static int obj_size(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431{
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800432 return cachep->obj_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433}
434
David Woodhouseb46b8f12007-05-08 00:22:59 -0700435static unsigned long long *dbg_redzone1(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436{
437 BUG_ON(!(cachep->flags & SLAB_RED_ZONE));
David Woodhouseb46b8f12007-05-08 00:22:59 -0700438 return (unsigned long long*) (objp + obj_offset(cachep) -
439 sizeof(unsigned long long));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440}
441
David Woodhouseb46b8f12007-05-08 00:22:59 -0700442static unsigned long long *dbg_redzone2(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443{
444 BUG_ON(!(cachep->flags & SLAB_RED_ZONE));
445 if (cachep->flags & SLAB_STORE_USER)
David Woodhouseb46b8f12007-05-08 00:22:59 -0700446 return (unsigned long long *)(objp + cachep->buffer_size -
447 sizeof(unsigned long long) -
David Woodhouse87a927c2007-07-04 21:26:44 -0400448 REDZONE_ALIGN);
David Woodhouseb46b8f12007-05-08 00:22:59 -0700449 return (unsigned long long *) (objp + cachep->buffer_size -
450 sizeof(unsigned long long));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451}
452
Pekka Enberg343e0d72006-02-01 03:05:50 -0800453static void **dbg_userword(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454{
455 BUG_ON(!(cachep->flags & SLAB_STORE_USER));
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800456 return (void **)(objp + cachep->buffer_size - BYTES_PER_WORD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457}
458
459#else
460
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800461#define obj_offset(x) 0
462#define obj_size(cachep) (cachep->buffer_size)
David Woodhouseb46b8f12007-05-08 00:22:59 -0700463#define dbg_redzone1(cachep, objp) ({BUG(); (unsigned long long *)NULL;})
464#define dbg_redzone2(cachep, objp) ({BUG(); (unsigned long long *)NULL;})
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465#define dbg_userword(cachep, objp) ({BUG(); (void **)NULL;})
466
467#endif
468
Li Zefan0f24f122009-12-11 15:45:30 +0800469#ifdef CONFIG_TRACING
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +0300470size_t slab_buffer_size(struct kmem_cache *cachep)
471{
472 return cachep->buffer_size;
473}
474EXPORT_SYMBOL(slab_buffer_size);
475#endif
476
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 * Do not go above this order unless 0 objects fit into the slab.
479 */
480#define BREAK_GFP_ORDER_HI 1
481#define BREAK_GFP_ORDER_LO 0
482static int slab_break_gfp_order = BREAK_GFP_ORDER_LO;
483
Andrew Mortona737b3e2006-03-22 00:08:11 -0800484/*
485 * Functions for storing/retrieving the cachep and or slab from the page
486 * allocator. These are used to find the slab an obj belongs to. With kfree(),
487 * these are used to find the cache which an obj belongs to.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 */
Pekka Enberg065d41c2005-11-13 16:06:46 -0800489static inline void page_set_cache(struct page *page, struct kmem_cache *cache)
490{
491 page->lru.next = (struct list_head *)cache;
492}
493
494static inline struct kmem_cache *page_get_cache(struct page *page)
495{
Christoph Lameterd85f3382007-05-06 14:49:39 -0700496 page = compound_head(page);
Pekka Enbergddc2e812006-06-23 02:03:40 -0700497 BUG_ON(!PageSlab(page));
Pekka Enberg065d41c2005-11-13 16:06:46 -0800498 return (struct kmem_cache *)page->lru.next;
499}
500
501static inline void page_set_slab(struct page *page, struct slab *slab)
502{
503 page->lru.prev = (struct list_head *)slab;
504}
505
506static inline struct slab *page_get_slab(struct page *page)
507{
Pekka Enbergddc2e812006-06-23 02:03:40 -0700508 BUG_ON(!PageSlab(page));
Pekka Enberg065d41c2005-11-13 16:06:46 -0800509 return (struct slab *)page->lru.prev;
510}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511
Pekka Enberg6ed5eb22006-02-01 03:05:49 -0800512static inline struct kmem_cache *virt_to_cache(const void *obj)
513{
Christoph Lameterb49af682007-05-06 14:49:41 -0700514 struct page *page = virt_to_head_page(obj);
Pekka Enberg6ed5eb22006-02-01 03:05:49 -0800515 return page_get_cache(page);
516}
517
518static inline struct slab *virt_to_slab(const void *obj)
519{
Christoph Lameterb49af682007-05-06 14:49:41 -0700520 struct page *page = virt_to_head_page(obj);
Pekka Enberg6ed5eb22006-02-01 03:05:49 -0800521 return page_get_slab(page);
522}
523
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800524static inline void *index_to_obj(struct kmem_cache *cache, struct slab *slab,
525 unsigned int idx)
526{
527 return slab->s_mem + cache->buffer_size * idx;
528}
529
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800530/*
531 * We want to avoid an expensive divide : (offset / cache->buffer_size)
532 * Using the fact that buffer_size is a constant for a particular cache,
533 * we can replace (offset / cache->buffer_size) by
534 * reciprocal_divide(offset, cache->reciprocal_buffer_size)
535 */
536static inline unsigned int obj_to_index(const struct kmem_cache *cache,
537 const struct slab *slab, void *obj)
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800538{
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800539 u32 offset = (obj - slab->s_mem);
540 return reciprocal_divide(offset, cache->reciprocal_buffer_size);
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800541}
542
Andrew Mortona737b3e2006-03-22 00:08:11 -0800543/*
544 * These are the default caches for kmalloc. Custom caches can have other sizes.
545 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546struct cache_sizes malloc_sizes[] = {
547#define CACHE(x) { .cs_size = (x) },
548#include <linux/kmalloc_sizes.h>
549 CACHE(ULONG_MAX)
550#undef CACHE
551};
552EXPORT_SYMBOL(malloc_sizes);
553
554/* Must match cache_sizes above. Out of line to keep cache footprint low. */
555struct cache_names {
556 char *name;
557 char *name_dma;
558};
559
560static struct cache_names __initdata cache_names[] = {
561#define CACHE(x) { .name = "size-" #x, .name_dma = "size-" #x "(DMA)" },
562#include <linux/kmalloc_sizes.h>
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800563 {NULL,}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564#undef CACHE
565};
566
567static struct arraycache_init initarray_cache __initdata =
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800568 { {0, BOOT_CPUCACHE_ENTRIES, 1, 0} };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569static struct arraycache_init initarray_generic =
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800570 { {0, BOOT_CPUCACHE_ENTRIES, 1, 0} };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571
572/* internal cache of cache description objs */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800573static struct kmem_cache cache_cache = {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800574 .batchcount = 1,
575 .limit = BOOT_CPUCACHE_ENTRIES,
576 .shared = 1,
Pekka Enberg343e0d72006-02-01 03:05:50 -0800577 .buffer_size = sizeof(struct kmem_cache),
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800578 .name = "kmem_cache",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579};
580
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -0700581#define BAD_ALIEN_MAGIC 0x01020304ul
582
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 * chicken and egg problem: delay the per-cpu array allocation
585 * until the general caches are up.
586 */
587static enum {
588 NONE,
Christoph Lametere498be72005-09-09 13:03:32 -0700589 PARTIAL_AC,
590 PARTIAL_L3,
Pekka Enberg8429db52009-06-12 15:58:59 +0300591 EARLY,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 FULL
593} g_cpucache_up;
594
Mike Kravetz39d24e62006-05-15 09:44:13 -0700595/*
596 * used by boot code to determine if it can use slab based allocator
597 */
598int slab_is_available(void)
599{
Pekka Enberg8429db52009-06-12 15:58:59 +0300600 return g_cpucache_up >= EARLY;
Mike Kravetz39d24e62006-05-15 09:44:13 -0700601}
602
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200603#ifdef CONFIG_LOCKDEP
604
605/*
606 * Slab sometimes uses the kmalloc slabs to store the slab headers
607 * for other slabs "off slab".
608 * The locking for this is tricky in that it nests within the locks
609 * of all other slabs in a few places; to deal with this special
610 * locking we put on-slab caches into a separate lock-class.
611 *
612 * We set lock class for alien array caches which are up during init.
613 * The lock annotation will be lost if all cpus of a node goes down and
614 * then comes back up during hotplug
615 */
616static struct lock_class_key on_slab_l3_key;
617static struct lock_class_key on_slab_alc_key;
618
619static void init_node_lock_keys(int q)
620{
621 struct cache_sizes *s = malloc_sizes;
622
623 if (g_cpucache_up != FULL)
624 return;
625
626 for (s = malloc_sizes; s->cs_size != ULONG_MAX; s++) {
627 struct array_cache **alc;
628 struct kmem_list3 *l3;
629 int r;
630
631 l3 = s->cs_cachep->nodelists[q];
632 if (!l3 || OFF_SLAB(s->cs_cachep))
Pekka Enberg00afa752009-12-27 14:33:14 +0200633 continue;
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200634 lockdep_set_class(&l3->list_lock, &on_slab_l3_key);
635 alc = l3->alien;
636 /*
637 * FIXME: This check for BAD_ALIEN_MAGIC
638 * should go away when common slab code is taught to
639 * work even without alien caches.
640 * Currently, non NUMA code returns BAD_ALIEN_MAGIC
641 * for alloc_alien_cache,
642 */
643 if (!alc || (unsigned long)alc == BAD_ALIEN_MAGIC)
Pekka Enberg00afa752009-12-27 14:33:14 +0200644 continue;
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200645 for_each_node(r) {
646 if (alc[r])
647 lockdep_set_class(&alc[r]->lock,
648 &on_slab_alc_key);
649 }
650 }
651}
652
653static inline void init_lock_keys(void)
654{
655 int node;
656
657 for_each_node(node)
658 init_node_lock_keys(node);
659}
660#else
661static void init_node_lock_keys(int q)
662{
663}
664
665static inline void init_lock_keys(void)
666{
667}
668#endif
669
670/*
671 * Guard access to the cache-chain.
672 */
673static DEFINE_MUTEX(cache_chain_mutex);
674static struct list_head cache_chain;
675
Tejun Heo1871e522009-10-29 22:34:13 +0900676static DEFINE_PER_CPU(struct delayed_work, slab_reap_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
Pekka Enberg343e0d72006-02-01 03:05:50 -0800678static inline struct array_cache *cpu_cache_get(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679{
680 return cachep->array[smp_processor_id()];
681}
682
Andrew Mortona737b3e2006-03-22 00:08:11 -0800683static inline struct kmem_cache *__find_general_cachep(size_t size,
684 gfp_t gfpflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685{
686 struct cache_sizes *csizep = malloc_sizes;
687
688#if DEBUG
689 /* This happens if someone tries to call
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800690 * kmem_cache_create(), or __kmalloc(), before
691 * the generic caches are initialized.
692 */
Alok Katariac7e43c72005-09-14 12:17:53 -0700693 BUG_ON(malloc_sizes[INDEX_AC].cs_cachep == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694#endif
Christoph Lameter6cb8f912007-07-17 04:03:22 -0700695 if (!size)
696 return ZERO_SIZE_PTR;
697
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698 while (size > csizep->cs_size)
699 csizep++;
700
701 /*
Martin Hicks0abf40c2005-09-03 15:54:54 -0700702 * Really subtle: The last entry with cs->cs_size==ULONG_MAX
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703 * has cs_{dma,}cachep==NULL. Thus no special case
704 * for large kmalloc calls required.
705 */
Christoph Lameter4b51d662007-02-10 01:43:10 -0800706#ifdef CONFIG_ZONE_DMA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 if (unlikely(gfpflags & GFP_DMA))
708 return csizep->cs_dmacachep;
Christoph Lameter4b51d662007-02-10 01:43:10 -0800709#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 return csizep->cs_cachep;
711}
712
Adrian Bunkb2213852006-09-25 23:31:02 -0700713static struct kmem_cache *kmem_find_general_cachep(size_t size, gfp_t gfpflags)
Manfred Spraul97e2bde2005-05-01 08:58:38 -0700714{
715 return __find_general_cachep(size, gfpflags);
716}
Manfred Spraul97e2bde2005-05-01 08:58:38 -0700717
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800718static size_t slab_mgmt_size(size_t nr_objs, size_t align)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719{
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800720 return ALIGN(sizeof(struct slab)+nr_objs*sizeof(kmem_bufctl_t), align);
721}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
Andrew Mortona737b3e2006-03-22 00:08:11 -0800723/*
724 * Calculate the number of objects and left-over bytes for a given buffer size.
725 */
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800726static void cache_estimate(unsigned long gfporder, size_t buffer_size,
727 size_t align, int flags, size_t *left_over,
728 unsigned int *num)
729{
730 int nr_objs;
731 size_t mgmt_size;
732 size_t slab_size = PAGE_SIZE << gfporder;
733
734 /*
735 * The slab management structure can be either off the slab or
736 * on it. For the latter case, the memory allocated for a
737 * slab is used for:
738 *
739 * - The struct slab
740 * - One kmem_bufctl_t for each object
741 * - Padding to respect alignment of @align
742 * - @buffer_size bytes for each object
743 *
744 * If the slab management structure is off the slab, then the
745 * alignment will already be calculated into the size. Because
746 * the slabs are all pages aligned, the objects will be at the
747 * correct alignment when allocated.
748 */
749 if (flags & CFLGS_OFF_SLAB) {
750 mgmt_size = 0;
751 nr_objs = slab_size / buffer_size;
752
753 if (nr_objs > SLAB_LIMIT)
754 nr_objs = SLAB_LIMIT;
755 } else {
756 /*
757 * Ignore padding for the initial guess. The padding
758 * is at most @align-1 bytes, and @buffer_size is at
759 * least @align. In the worst case, this result will
760 * be one greater than the number of objects that fit
761 * into the memory allocation when taking the padding
762 * into account.
763 */
764 nr_objs = (slab_size - sizeof(struct slab)) /
765 (buffer_size + sizeof(kmem_bufctl_t));
766
767 /*
768 * This calculated number will be either the right
769 * amount, or one greater than what we want.
770 */
771 if (slab_mgmt_size(nr_objs, align) + nr_objs*buffer_size
772 > slab_size)
773 nr_objs--;
774
775 if (nr_objs > SLAB_LIMIT)
776 nr_objs = SLAB_LIMIT;
777
778 mgmt_size = slab_mgmt_size(nr_objs, align);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779 }
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800780 *num = nr_objs;
781 *left_over = slab_size - nr_objs*buffer_size - mgmt_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782}
783
Harvey Harrisond40cee22008-04-30 00:55:07 -0700784#define slab_error(cachep, msg) __slab_error(__func__, cachep, msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700785
Andrew Mortona737b3e2006-03-22 00:08:11 -0800786static void __slab_error(const char *function, struct kmem_cache *cachep,
787 char *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788{
789 printk(KERN_ERR "slab error in %s(): cache `%s': %s\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800790 function, cachep->name, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700791 dump_stack();
792}
793
Paul Menage3395ee02006-12-06 20:32:16 -0800794/*
795 * By default on NUMA we use alien caches to stage the freeing of
796 * objects allocated from other nodes. This causes massive memory
797 * inefficiencies when using fake NUMA setup to split memory into a
798 * large number of small nodes, so it can be disabled on the command
799 * line
800 */
801
802static int use_alien_caches __read_mostly = 1;
803static int __init noaliencache_setup(char *s)
804{
805 use_alien_caches = 0;
806 return 1;
807}
808__setup("noaliencache", noaliencache_setup);
809
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800810#ifdef CONFIG_NUMA
811/*
812 * Special reaping functions for NUMA systems called from cache_reap().
813 * These take care of doing round robin flushing of alien caches (containing
814 * objects freed on different nodes from which they were allocated) and the
815 * flushing of remote pcps by calling drain_node_pages.
816 */
Tejun Heo1871e522009-10-29 22:34:13 +0900817static DEFINE_PER_CPU(unsigned long, slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800818
819static void init_reap_node(int cpu)
820{
821 int node;
822
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -0700823 node = next_node(cpu_to_mem(cpu), node_online_map);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800824 if (node == MAX_NUMNODES)
Paul Jackson442295c2006-03-22 00:09:11 -0800825 node = first_node(node_online_map);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800826
Tejun Heo1871e522009-10-29 22:34:13 +0900827 per_cpu(slab_reap_node, cpu) = node;
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800828}
829
830static void next_reap_node(void)
831{
Christoph Lameter909ea962010-12-08 16:22:55 +0100832 int node = __this_cpu_read(slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800833
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800834 node = next_node(node, node_online_map);
835 if (unlikely(node >= MAX_NUMNODES))
836 node = first_node(node_online_map);
Christoph Lameter909ea962010-12-08 16:22:55 +0100837 __this_cpu_write(slab_reap_node, node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800838}
839
840#else
841#define init_reap_node(cpu) do { } while (0)
842#define next_reap_node(void) do { } while (0)
843#endif
844
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845/*
846 * Initiate the reap timer running on the target CPU. We run at around 1 to 2Hz
847 * via the workqueue/eventd.
848 * Add the CPU number into the expiration time to minimize the possibility of
849 * the CPUs getting into lockstep and contending for the global cache chain
850 * lock.
851 */
Adrian Bunk897e6792007-07-15 23:38:20 -0700852static void __cpuinit start_cpu_timer(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853{
Tejun Heo1871e522009-10-29 22:34:13 +0900854 struct delayed_work *reap_work = &per_cpu(slab_reap_work, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
856 /*
857 * When this gets called from do_initcalls via cpucache_init(),
858 * init_workqueues() has already run, so keventd will be setup
859 * at that time.
860 */
David Howells52bad642006-11-22 14:54:01 +0000861 if (keventd_up() && reap_work->work.func == NULL) {
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800862 init_reap_node(cpu);
Arjan van de Ven78b43532010-07-19 10:59:42 -0700863 INIT_DELAYED_WORK_DEFERRABLE(reap_work, cache_reap);
Arjan van de Ven2b284212006-12-10 02:21:28 -0800864 schedule_delayed_work_on(cpu, reap_work,
865 __round_jiffies_relative(HZ, cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866 }
867}
868
Christoph Lametere498be72005-09-09 13:03:32 -0700869static struct array_cache *alloc_arraycache(int node, int entries,
Pekka Enberg83b519e2009-06-10 19:40:04 +0300870 int batchcount, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871{
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800872 int memsize = sizeof(void *) * entries + sizeof(struct array_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873 struct array_cache *nc = NULL;
874
Pekka Enberg83b519e2009-06-10 19:40:04 +0300875 nc = kmalloc_node(memsize, gfp, node);
Catalin Marinasd5cff632009-06-11 13:22:40 +0100876 /*
877 * The array_cache structures contain pointers to free object.
878 * However, when such objects are allocated or transfered to another
879 * cache the pointers are not cleared and they could be counted as
880 * valid references during a kmemleak scan. Therefore, kmemleak must
881 * not scan such objects.
882 */
883 kmemleak_no_scan(nc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 if (nc) {
885 nc->avail = 0;
886 nc->limit = entries;
887 nc->batchcount = batchcount;
888 nc->touched = 0;
Christoph Lametere498be72005-09-09 13:03:32 -0700889 spin_lock_init(&nc->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 }
891 return nc;
892}
893
Christoph Lameter3ded1752006-03-25 03:06:44 -0800894/*
895 * Transfer objects in one arraycache to another.
896 * Locking must be handled by the caller.
897 *
898 * Return the number of entries transferred.
899 */
900static int transfer_objects(struct array_cache *to,
901 struct array_cache *from, unsigned int max)
902{
903 /* Figure out how many entries to transfer */
Hagen Paul Pfeifer732eacc2010-10-26 14:22:23 -0700904 int nr = min3(from->avail, max, to->limit - to->avail);
Christoph Lameter3ded1752006-03-25 03:06:44 -0800905
906 if (!nr)
907 return 0;
908
909 memcpy(to->entry + to->avail, from->entry + from->avail -nr,
910 sizeof(void *) *nr);
911
912 from->avail -= nr;
913 to->avail += nr;
Christoph Lameter3ded1752006-03-25 03:06:44 -0800914 return nr;
915}
916
Christoph Lameter765c4502006-09-27 01:50:08 -0700917#ifndef CONFIG_NUMA
918
919#define drain_alien_cache(cachep, alien) do { } while (0)
920#define reap_alien(cachep, l3) do { } while (0)
921
Pekka Enberg83b519e2009-06-10 19:40:04 +0300922static inline struct array_cache **alloc_alien_cache(int node, int limit, gfp_t gfp)
Christoph Lameter765c4502006-09-27 01:50:08 -0700923{
924 return (struct array_cache **)BAD_ALIEN_MAGIC;
925}
926
927static inline void free_alien_cache(struct array_cache **ac_ptr)
928{
929}
930
931static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
932{
933 return 0;
934}
935
936static inline void *alternate_node_alloc(struct kmem_cache *cachep,
937 gfp_t flags)
938{
939 return NULL;
940}
941
Christoph Hellwig8b98c162006-12-06 20:32:30 -0800942static inline void *____cache_alloc_node(struct kmem_cache *cachep,
Christoph Lameter765c4502006-09-27 01:50:08 -0700943 gfp_t flags, int nodeid)
944{
945 return NULL;
946}
947
948#else /* CONFIG_NUMA */
949
Christoph Hellwig8b98c162006-12-06 20:32:30 -0800950static void *____cache_alloc_node(struct kmem_cache *, gfp_t, int);
Paul Jacksonc61afb12006-03-24 03:16:08 -0800951static void *alternate_node_alloc(struct kmem_cache *, gfp_t);
Christoph Lameterdc85da12006-01-18 17:42:36 -0800952
Pekka Enberg83b519e2009-06-10 19:40:04 +0300953static struct array_cache **alloc_alien_cache(int node, int limit, gfp_t gfp)
Christoph Lametere498be72005-09-09 13:03:32 -0700954{
955 struct array_cache **ac_ptr;
Christoph Lameter8ef82862007-02-20 13:57:52 -0800956 int memsize = sizeof(void *) * nr_node_ids;
Christoph Lametere498be72005-09-09 13:03:32 -0700957 int i;
958
959 if (limit > 1)
960 limit = 12;
Haicheng Lif3186a92010-01-06 15:25:23 +0800961 ac_ptr = kzalloc_node(memsize, gfp, node);
Christoph Lametere498be72005-09-09 13:03:32 -0700962 if (ac_ptr) {
963 for_each_node(i) {
Haicheng Lif3186a92010-01-06 15:25:23 +0800964 if (i == node || !node_online(i))
Christoph Lametere498be72005-09-09 13:03:32 -0700965 continue;
Pekka Enberg83b519e2009-06-10 19:40:04 +0300966 ac_ptr[i] = alloc_arraycache(node, limit, 0xbaadf00d, gfp);
Christoph Lametere498be72005-09-09 13:03:32 -0700967 if (!ac_ptr[i]) {
Akinobu Mitacc550de2007-11-14 16:58:35 -0800968 for (i--; i >= 0; i--)
Christoph Lametere498be72005-09-09 13:03:32 -0700969 kfree(ac_ptr[i]);
970 kfree(ac_ptr);
971 return NULL;
972 }
973 }
974 }
975 return ac_ptr;
976}
977
Pekka Enberg5295a742006-02-01 03:05:48 -0800978static void free_alien_cache(struct array_cache **ac_ptr)
Christoph Lametere498be72005-09-09 13:03:32 -0700979{
980 int i;
981
982 if (!ac_ptr)
983 return;
Christoph Lametere498be72005-09-09 13:03:32 -0700984 for_each_node(i)
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800985 kfree(ac_ptr[i]);
Christoph Lametere498be72005-09-09 13:03:32 -0700986 kfree(ac_ptr);
987}
988
Pekka Enberg343e0d72006-02-01 03:05:50 -0800989static void __drain_alien_cache(struct kmem_cache *cachep,
Pekka Enberg5295a742006-02-01 03:05:48 -0800990 struct array_cache *ac, int node)
Christoph Lametere498be72005-09-09 13:03:32 -0700991{
992 struct kmem_list3 *rl3 = cachep->nodelists[node];
993
994 if (ac->avail) {
995 spin_lock(&rl3->list_lock);
Christoph Lametere00946f2006-03-25 03:06:45 -0800996 /*
997 * Stuff objects into the remote nodes shared array first.
998 * That way we could avoid the overhead of putting the objects
999 * into the free lists and getting them back later.
1000 */
shin, jacob693f7d32006-04-28 10:54:37 -05001001 if (rl3->shared)
1002 transfer_objects(rl3->shared, ac, ac->limit);
Christoph Lametere00946f2006-03-25 03:06:45 -08001003
Christoph Lameterff694162005-09-22 21:44:02 -07001004 free_block(cachep, ac->entry, ac->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -07001005 ac->avail = 0;
1006 spin_unlock(&rl3->list_lock);
1007 }
1008}
1009
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001010/*
1011 * Called from cache_reap() to regularly drain alien caches round robin.
1012 */
1013static void reap_alien(struct kmem_cache *cachep, struct kmem_list3 *l3)
1014{
Christoph Lameter909ea962010-12-08 16:22:55 +01001015 int node = __this_cpu_read(slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001016
1017 if (l3->alien) {
1018 struct array_cache *ac = l3->alien[node];
Christoph Lametere00946f2006-03-25 03:06:45 -08001019
1020 if (ac && ac->avail && spin_trylock_irq(&ac->lock)) {
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001021 __drain_alien_cache(cachep, ac, node);
1022 spin_unlock_irq(&ac->lock);
1023 }
1024 }
1025}
1026
Andrew Mortona737b3e2006-03-22 00:08:11 -08001027static void drain_alien_cache(struct kmem_cache *cachep,
1028 struct array_cache **alien)
Christoph Lametere498be72005-09-09 13:03:32 -07001029{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001030 int i = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07001031 struct array_cache *ac;
1032 unsigned long flags;
1033
1034 for_each_online_node(i) {
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001035 ac = alien[i];
Christoph Lametere498be72005-09-09 13:03:32 -07001036 if (ac) {
1037 spin_lock_irqsave(&ac->lock, flags);
1038 __drain_alien_cache(cachep, ac, i);
1039 spin_unlock_irqrestore(&ac->lock, flags);
1040 }
1041 }
1042}
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001043
Ingo Molnar873623d2006-07-13 14:44:38 +02001044static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001045{
1046 struct slab *slabp = virt_to_slab(objp);
1047 int nodeid = slabp->nodeid;
1048 struct kmem_list3 *l3;
1049 struct array_cache *alien = NULL;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001050 int node;
1051
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07001052 node = numa_mem_id();
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001053
1054 /*
1055 * Make sure we are not freeing a object from another node to the array
1056 * cache on this cpu.
1057 */
Siddha, Suresh B62918a02007-05-02 19:27:18 +02001058 if (likely(slabp->nodeid == node))
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001059 return 0;
1060
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001061 l3 = cachep->nodelists[node];
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001062 STATS_INC_NODEFREES(cachep);
1063 if (l3->alien && l3->alien[nodeid]) {
1064 alien = l3->alien[nodeid];
Ingo Molnar873623d2006-07-13 14:44:38 +02001065 spin_lock(&alien->lock);
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001066 if (unlikely(alien->avail == alien->limit)) {
1067 STATS_INC_ACOVERFLOW(cachep);
1068 __drain_alien_cache(cachep, alien, nodeid);
1069 }
1070 alien->entry[alien->avail++] = objp;
1071 spin_unlock(&alien->lock);
1072 } else {
1073 spin_lock(&(cachep->nodelists[nodeid])->list_lock);
1074 free_block(cachep, &objp, 1, nodeid);
1075 spin_unlock(&(cachep->nodelists[nodeid])->list_lock);
1076 }
1077 return 1;
1078}
Christoph Lametere498be72005-09-09 13:03:32 -07001079#endif
1080
David Rientjes8f9f8d92010-03-27 19:40:47 -07001081/*
1082 * Allocates and initializes nodelists for a node on each slab cache, used for
1083 * either memory or cpu hotplug. If memory is being hot-added, the kmem_list3
1084 * will be allocated off-node since memory is not yet online for the new node.
1085 * When hotplugging memory or a cpu, existing nodelists are not replaced if
1086 * already in use.
1087 *
1088 * Must hold cache_chain_mutex.
1089 */
1090static int init_cache_nodelists_node(int node)
1091{
1092 struct kmem_cache *cachep;
1093 struct kmem_list3 *l3;
1094 const int memsize = sizeof(struct kmem_list3);
1095
1096 list_for_each_entry(cachep, &cache_chain, next) {
1097 /*
1098 * Set up the size64 kmemlist for cpu before we can
1099 * begin anything. Make sure some other cpu on this
1100 * node has not already allocated this
1101 */
1102 if (!cachep->nodelists[node]) {
1103 l3 = kmalloc_node(memsize, GFP_KERNEL, node);
1104 if (!l3)
1105 return -ENOMEM;
1106 kmem_list3_init(l3);
1107 l3->next_reap = jiffies + REAPTIMEOUT_LIST3 +
1108 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
1109
1110 /*
1111 * The l3s don't come and go as CPUs come and
1112 * go. cache_chain_mutex is sufficient
1113 * protection here.
1114 */
1115 cachep->nodelists[node] = l3;
1116 }
1117
1118 spin_lock_irq(&cachep->nodelists[node]->list_lock);
1119 cachep->nodelists[node]->free_limit =
1120 (1 + nr_cpus_node(node)) *
1121 cachep->batchcount + cachep->num;
1122 spin_unlock_irq(&cachep->nodelists[node]->list_lock);
1123 }
1124 return 0;
1125}
1126
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001127static void __cpuinit cpuup_canceled(long cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128{
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001129 struct kmem_cache *cachep;
1130 struct kmem_list3 *l3 = NULL;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07001131 int node = cpu_to_mem(cpu);
Rusty Russella70f7302009-03-13 14:49:46 +10301132 const struct cpumask *mask = cpumask_of_node(node);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001133
1134 list_for_each_entry(cachep, &cache_chain, next) {
1135 struct array_cache *nc;
1136 struct array_cache *shared;
1137 struct array_cache **alien;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001138
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001139 /* cpu is dead; no one can alloc from it. */
1140 nc = cachep->array[cpu];
1141 cachep->array[cpu] = NULL;
1142 l3 = cachep->nodelists[node];
1143
1144 if (!l3)
1145 goto free_array_cache;
1146
1147 spin_lock_irq(&l3->list_lock);
1148
1149 /* Free limit for this kmem_list3 */
1150 l3->free_limit -= cachep->batchcount;
1151 if (nc)
1152 free_block(cachep, nc->entry, nc->avail, node);
1153
Rusty Russell58463c12009-12-17 11:43:12 -06001154 if (!cpumask_empty(mask)) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001155 spin_unlock_irq(&l3->list_lock);
1156 goto free_array_cache;
1157 }
1158
1159 shared = l3->shared;
1160 if (shared) {
1161 free_block(cachep, shared->entry,
1162 shared->avail, node);
1163 l3->shared = NULL;
1164 }
1165
1166 alien = l3->alien;
1167 l3->alien = NULL;
1168
1169 spin_unlock_irq(&l3->list_lock);
1170
1171 kfree(shared);
1172 if (alien) {
1173 drain_alien_cache(cachep, alien);
1174 free_alien_cache(alien);
1175 }
1176free_array_cache:
1177 kfree(nc);
1178 }
1179 /*
1180 * In the previous loop, all the objects were freed to
1181 * the respective cache's slabs, now we can go ahead and
1182 * shrink each nodelist to its limit.
1183 */
1184 list_for_each_entry(cachep, &cache_chain, next) {
1185 l3 = cachep->nodelists[node];
1186 if (!l3)
1187 continue;
1188 drain_freelist(cachep, l3, l3->free_objects);
1189 }
1190}
1191
1192static int __cpuinit cpuup_prepare(long cpu)
1193{
Pekka Enberg343e0d72006-02-01 03:05:50 -08001194 struct kmem_cache *cachep;
Christoph Lametere498be72005-09-09 13:03:32 -07001195 struct kmem_list3 *l3 = NULL;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07001196 int node = cpu_to_mem(cpu);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001197 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001199 /*
1200 * We need to do this right in the beginning since
1201 * alloc_arraycache's are going to use this list.
1202 * kmalloc_node allows us to add the slab to the right
1203 * kmem_list3 and not this cpu's kmem_list3
1204 */
David Rientjes8f9f8d92010-03-27 19:40:47 -07001205 err = init_cache_nodelists_node(node);
1206 if (err < 0)
1207 goto bad;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001208
1209 /*
1210 * Now we can go ahead with allocating the shared arrays and
1211 * array caches
1212 */
1213 list_for_each_entry(cachep, &cache_chain, next) {
1214 struct array_cache *nc;
1215 struct array_cache *shared = NULL;
1216 struct array_cache **alien = NULL;
1217
1218 nc = alloc_arraycache(node, cachep->limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03001219 cachep->batchcount, GFP_KERNEL);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001220 if (!nc)
1221 goto bad;
1222 if (cachep->shared) {
1223 shared = alloc_arraycache(node,
1224 cachep->shared * cachep->batchcount,
Pekka Enberg83b519e2009-06-10 19:40:04 +03001225 0xbaadf00d, GFP_KERNEL);
Akinobu Mita12d00f62007-10-18 03:05:11 -07001226 if (!shared) {
1227 kfree(nc);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001228 goto bad;
Akinobu Mita12d00f62007-10-18 03:05:11 -07001229 }
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001230 }
1231 if (use_alien_caches) {
Pekka Enberg83b519e2009-06-10 19:40:04 +03001232 alien = alloc_alien_cache(node, cachep->limit, GFP_KERNEL);
Akinobu Mita12d00f62007-10-18 03:05:11 -07001233 if (!alien) {
1234 kfree(shared);
1235 kfree(nc);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001236 goto bad;
Akinobu Mita12d00f62007-10-18 03:05:11 -07001237 }
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001238 }
1239 cachep->array[cpu] = nc;
1240 l3 = cachep->nodelists[node];
1241 BUG_ON(!l3);
1242
1243 spin_lock_irq(&l3->list_lock);
1244 if (!l3->shared) {
1245 /*
1246 * We are serialised from CPU_DEAD or
1247 * CPU_UP_CANCELLED by the cpucontrol lock
1248 */
1249 l3->shared = shared;
1250 shared = NULL;
1251 }
1252#ifdef CONFIG_NUMA
1253 if (!l3->alien) {
1254 l3->alien = alien;
1255 alien = NULL;
1256 }
1257#endif
1258 spin_unlock_irq(&l3->list_lock);
1259 kfree(shared);
1260 free_alien_cache(alien);
1261 }
Pekka Enbergce79ddc2009-11-23 22:01:15 +02001262 init_node_lock_keys(node);
1263
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001264 return 0;
1265bad:
Akinobu Mita12d00f62007-10-18 03:05:11 -07001266 cpuup_canceled(cpu);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001267 return -ENOMEM;
1268}
1269
1270static int __cpuinit cpuup_callback(struct notifier_block *nfb,
1271 unsigned long action, void *hcpu)
1272{
1273 long cpu = (long)hcpu;
1274 int err = 0;
1275
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 switch (action) {
Heiko Carstens38c3bd92007-05-09 02:34:05 -07001277 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001278 case CPU_UP_PREPARE_FROZEN:
Gautham R Shenoy95402b32008-01-25 21:08:02 +01001279 mutex_lock(&cache_chain_mutex);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001280 err = cpuup_prepare(cpu);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01001281 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282 break;
1283 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001284 case CPU_ONLINE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001285 start_cpu_timer(cpu);
1286 break;
1287#ifdef CONFIG_HOTPLUG_CPU
Christoph Lameter5830c592007-05-09 02:34:22 -07001288 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001289 case CPU_DOWN_PREPARE_FROZEN:
Christoph Lameter5830c592007-05-09 02:34:22 -07001290 /*
1291 * Shutdown cache reaper. Note that the cache_chain_mutex is
1292 * held so that if cache_reap() is invoked it cannot do
1293 * anything expensive but will only modify reap_work
1294 * and reschedule the timer.
1295 */
Tejun Heoafe2c512010-12-14 16:21:17 +01001296 cancel_delayed_work_sync(&per_cpu(slab_reap_work, cpu));
Christoph Lameter5830c592007-05-09 02:34:22 -07001297 /* Now the cache_reaper is guaranteed to be not running. */
Tejun Heo1871e522009-10-29 22:34:13 +09001298 per_cpu(slab_reap_work, cpu).work.func = NULL;
Christoph Lameter5830c592007-05-09 02:34:22 -07001299 break;
1300 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001301 case CPU_DOWN_FAILED_FROZEN:
Christoph Lameter5830c592007-05-09 02:34:22 -07001302 start_cpu_timer(cpu);
1303 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001305 case CPU_DEAD_FROZEN:
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001306 /*
1307 * Even if all the cpus of a node are down, we don't free the
1308 * kmem_list3 of any cache. This to avoid a race between
1309 * cpu_down, and a kmalloc allocation from another cpu for
1310 * memory from the node of the cpu going down. The list3
1311 * structure is usually allocated from kmem_cache_create() and
1312 * gets destroyed at kmem_cache_destroy().
1313 */
Simon Arlott183ff222007-10-20 01:27:18 +02001314 /* fall through */
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08001315#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001317 case CPU_UP_CANCELED_FROZEN:
Gautham R Shenoy95402b32008-01-25 21:08:02 +01001318 mutex_lock(&cache_chain_mutex);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001319 cpuup_canceled(cpu);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001320 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322 }
Akinobu Mitaeac40682010-05-26 14:43:32 -07001323 return notifier_from_errno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324}
1325
Chandra Seetharaman74b85f32006-06-27 02:54:09 -07001326static struct notifier_block __cpuinitdata cpucache_notifier = {
1327 &cpuup_callback, NULL, 0
1328};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329
David Rientjes8f9f8d92010-03-27 19:40:47 -07001330#if defined(CONFIG_NUMA) && defined(CONFIG_MEMORY_HOTPLUG)
1331/*
1332 * Drains freelist for a node on each slab cache, used for memory hot-remove.
1333 * Returns -EBUSY if all objects cannot be drained so that the node is not
1334 * removed.
1335 *
1336 * Must hold cache_chain_mutex.
1337 */
1338static int __meminit drain_cache_nodelists_node(int node)
1339{
1340 struct kmem_cache *cachep;
1341 int ret = 0;
1342
1343 list_for_each_entry(cachep, &cache_chain, next) {
1344 struct kmem_list3 *l3;
1345
1346 l3 = cachep->nodelists[node];
1347 if (!l3)
1348 continue;
1349
1350 drain_freelist(cachep, l3, l3->free_objects);
1351
1352 if (!list_empty(&l3->slabs_full) ||
1353 !list_empty(&l3->slabs_partial)) {
1354 ret = -EBUSY;
1355 break;
1356 }
1357 }
1358 return ret;
1359}
1360
1361static int __meminit slab_memory_callback(struct notifier_block *self,
1362 unsigned long action, void *arg)
1363{
1364 struct memory_notify *mnb = arg;
1365 int ret = 0;
1366 int nid;
1367
1368 nid = mnb->status_change_nid;
1369 if (nid < 0)
1370 goto out;
1371
1372 switch (action) {
1373 case MEM_GOING_ONLINE:
1374 mutex_lock(&cache_chain_mutex);
1375 ret = init_cache_nodelists_node(nid);
1376 mutex_unlock(&cache_chain_mutex);
1377 break;
1378 case MEM_GOING_OFFLINE:
1379 mutex_lock(&cache_chain_mutex);
1380 ret = drain_cache_nodelists_node(nid);
1381 mutex_unlock(&cache_chain_mutex);
1382 break;
1383 case MEM_ONLINE:
1384 case MEM_OFFLINE:
1385 case MEM_CANCEL_ONLINE:
1386 case MEM_CANCEL_OFFLINE:
1387 break;
1388 }
1389out:
1390 return ret ? notifier_from_errno(ret) : NOTIFY_OK;
1391}
1392#endif /* CONFIG_NUMA && CONFIG_MEMORY_HOTPLUG */
1393
Christoph Lametere498be72005-09-09 13:03:32 -07001394/*
1395 * swap the static kmem_list3 with kmalloced memory
1396 */
David Rientjes8f9f8d92010-03-27 19:40:47 -07001397static void __init init_list(struct kmem_cache *cachep, struct kmem_list3 *list,
1398 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07001399{
1400 struct kmem_list3 *ptr;
1401
Pekka Enberg83b519e2009-06-10 19:40:04 +03001402 ptr = kmalloc_node(sizeof(struct kmem_list3), GFP_NOWAIT, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07001403 BUG_ON(!ptr);
1404
Christoph Lametere498be72005-09-09 13:03:32 -07001405 memcpy(ptr, list, sizeof(struct kmem_list3));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001406 /*
1407 * Do not assume that spinlocks can be initialized via memcpy:
1408 */
1409 spin_lock_init(&ptr->list_lock);
1410
Christoph Lametere498be72005-09-09 13:03:32 -07001411 MAKE_ALL_LISTS(cachep, ptr, nodeid);
1412 cachep->nodelists[nodeid] = ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001413}
1414
Andrew Mortona737b3e2006-03-22 00:08:11 -08001415/*
Pekka Enberg556a1692008-01-25 08:20:51 +02001416 * For setting up all the kmem_list3s for cache whose buffer_size is same as
1417 * size of kmem_list3.
1418 */
1419static void __init set_up_list3s(struct kmem_cache *cachep, int index)
1420{
1421 int node;
1422
1423 for_each_online_node(node) {
1424 cachep->nodelists[node] = &initkmem_list3[index + node];
1425 cachep->nodelists[node]->next_reap = jiffies +
1426 REAPTIMEOUT_LIST3 +
1427 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
1428 }
1429}
1430
1431/*
Andrew Mortona737b3e2006-03-22 00:08:11 -08001432 * Initialisation. Called after the page allocator have been initialised and
1433 * before smp_init().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 */
1435void __init kmem_cache_init(void)
1436{
1437 size_t left_over;
1438 struct cache_sizes *sizes;
1439 struct cache_names *names;
Christoph Lametere498be72005-09-09 13:03:32 -07001440 int i;
Jack Steiner07ed76b2006-03-07 21:55:46 -08001441 int order;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001442 int node;
Christoph Lametere498be72005-09-09 13:03:32 -07001443
Mel Gormanb6e68bc2009-06-16 15:32:16 -07001444 if (num_possible_nodes() == 1)
Siddha, Suresh B62918a02007-05-02 19:27:18 +02001445 use_alien_caches = 0;
1446
Christoph Lametere498be72005-09-09 13:03:32 -07001447 for (i = 0; i < NUM_INIT_LISTS; i++) {
1448 kmem_list3_init(&initkmem_list3[i]);
1449 if (i < MAX_NUMNODES)
1450 cache_cache.nodelists[i] = NULL;
1451 }
Pekka Enberg556a1692008-01-25 08:20:51 +02001452 set_up_list3s(&cache_cache, CACHE_CACHE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001453
1454 /*
1455 * Fragmentation resistance on low memory - only use bigger
1456 * page orders on machines with more than 32MB of memory.
1457 */
Jan Beulich44813742009-09-21 17:03:05 -07001458 if (totalram_pages > (32 << 20) >> PAGE_SHIFT)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 slab_break_gfp_order = BREAK_GFP_ORDER_HI;
1460
Linus Torvalds1da177e2005-04-16 15:20:36 -07001461 /* Bootstrap is tricky, because several objects are allocated
1462 * from caches that do not exist yet:
Andrew Mortona737b3e2006-03-22 00:08:11 -08001463 * 1) initialize the cache_cache cache: it contains the struct
1464 * kmem_cache structures of all caches, except cache_cache itself:
1465 * cache_cache is statically allocated.
Christoph Lametere498be72005-09-09 13:03:32 -07001466 * Initially an __init data area is used for the head array and the
1467 * kmem_list3 structures, it's replaced with a kmalloc allocated
1468 * array at the end of the bootstrap.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 * 2) Create the first kmalloc cache.
Pekka Enberg343e0d72006-02-01 03:05:50 -08001470 * The struct kmem_cache for the new cache is allocated normally.
Christoph Lametere498be72005-09-09 13:03:32 -07001471 * An __init data area is used for the head array.
1472 * 3) Create the remaining kmalloc caches, with minimally sized
1473 * head arrays.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 * 4) Replace the __init data head arrays for cache_cache and the first
1475 * kmalloc cache with kmalloc allocated arrays.
Christoph Lametere498be72005-09-09 13:03:32 -07001476 * 5) Replace the __init data for kmem_list3 for cache_cache and
1477 * the other cache's with kmalloc allocated memory.
1478 * 6) Resize the head arrays of the kmalloc caches to their final sizes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001479 */
1480
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07001481 node = numa_mem_id();
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001482
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 /* 1) create the cache_cache */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 INIT_LIST_HEAD(&cache_chain);
1485 list_add(&cache_cache.next, &cache_chain);
1486 cache_cache.colour_off = cache_line_size();
1487 cache_cache.array[smp_processor_id()] = &initarray_cache.cache;
Daniel Yeisleyec1f5ee2008-03-25 23:59:08 +02001488 cache_cache.nodelists[node] = &initkmem_list3[CACHE_CACHE + node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489
Eric Dumazet8da34302007-05-06 14:49:29 -07001490 /*
1491 * struct kmem_cache size depends on nr_node_ids, which
1492 * can be less than MAX_NUMNODES.
1493 */
1494 cache_cache.buffer_size = offsetof(struct kmem_cache, nodelists) +
1495 nr_node_ids * sizeof(struct kmem_list3 *);
1496#if DEBUG
1497 cache_cache.obj_size = cache_cache.buffer_size;
1498#endif
Andrew Mortona737b3e2006-03-22 00:08:11 -08001499 cache_cache.buffer_size = ALIGN(cache_cache.buffer_size,
1500 cache_line_size());
Eric Dumazet6a2d7a92006-12-13 00:34:27 -08001501 cache_cache.reciprocal_buffer_size =
1502 reciprocal_value(cache_cache.buffer_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
Jack Steiner07ed76b2006-03-07 21:55:46 -08001504 for (order = 0; order < MAX_ORDER; order++) {
1505 cache_estimate(order, cache_cache.buffer_size,
1506 cache_line_size(), 0, &left_over, &cache_cache.num);
1507 if (cache_cache.num)
1508 break;
1509 }
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02001510 BUG_ON(!cache_cache.num);
Jack Steiner07ed76b2006-03-07 21:55:46 -08001511 cache_cache.gfporder = order;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001512 cache_cache.colour = left_over / cache_cache.colour_off;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001513 cache_cache.slab_size = ALIGN(cache_cache.num * sizeof(kmem_bufctl_t) +
1514 sizeof(struct slab), cache_line_size());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515
1516 /* 2+3) create the kmalloc caches */
1517 sizes = malloc_sizes;
1518 names = cache_names;
1519
Andrew Mortona737b3e2006-03-22 00:08:11 -08001520 /*
1521 * Initialize the caches that provide memory for the array cache and the
1522 * kmem_list3 structures first. Without this, further allocations will
1523 * bug.
Christoph Lametere498be72005-09-09 13:03:32 -07001524 */
1525
1526 sizes[INDEX_AC].cs_cachep = kmem_cache_create(names[INDEX_AC].name,
Andrew Mortona737b3e2006-03-22 00:08:11 -08001527 sizes[INDEX_AC].cs_size,
1528 ARCH_KMALLOC_MINALIGN,
1529 ARCH_KMALLOC_FLAGS|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09001530 NULL);
Christoph Lametere498be72005-09-09 13:03:32 -07001531
Andrew Mortona737b3e2006-03-22 00:08:11 -08001532 if (INDEX_AC != INDEX_L3) {
Christoph Lametere498be72005-09-09 13:03:32 -07001533 sizes[INDEX_L3].cs_cachep =
Andrew Mortona737b3e2006-03-22 00:08:11 -08001534 kmem_cache_create(names[INDEX_L3].name,
1535 sizes[INDEX_L3].cs_size,
1536 ARCH_KMALLOC_MINALIGN,
1537 ARCH_KMALLOC_FLAGS|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09001538 NULL);
Andrew Mortona737b3e2006-03-22 00:08:11 -08001539 }
Christoph Lametere498be72005-09-09 13:03:32 -07001540
Ingo Molnare0a42722006-06-23 02:03:46 -07001541 slab_early_init = 0;
1542
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 while (sizes->cs_size != ULONG_MAX) {
Christoph Lametere498be72005-09-09 13:03:32 -07001544 /*
1545 * For performance, all the general caches are L1 aligned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 * This should be particularly beneficial on SMP boxes, as it
1547 * eliminates "false sharing".
1548 * Note for systems short on memory removing the alignment will
Christoph Lametere498be72005-09-09 13:03:32 -07001549 * allow tighter packing of the smaller caches.
1550 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08001551 if (!sizes->cs_cachep) {
Christoph Lametere498be72005-09-09 13:03:32 -07001552 sizes->cs_cachep = kmem_cache_create(names->name,
Andrew Mortona737b3e2006-03-22 00:08:11 -08001553 sizes->cs_size,
1554 ARCH_KMALLOC_MINALIGN,
1555 ARCH_KMALLOC_FLAGS|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09001556 NULL);
Andrew Mortona737b3e2006-03-22 00:08:11 -08001557 }
Christoph Lameter4b51d662007-02-10 01:43:10 -08001558#ifdef CONFIG_ZONE_DMA
1559 sizes->cs_dmacachep = kmem_cache_create(
1560 names->name_dma,
Andrew Mortona737b3e2006-03-22 00:08:11 -08001561 sizes->cs_size,
1562 ARCH_KMALLOC_MINALIGN,
1563 ARCH_KMALLOC_FLAGS|SLAB_CACHE_DMA|
1564 SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09001565 NULL);
Christoph Lameter4b51d662007-02-10 01:43:10 -08001566#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567 sizes++;
1568 names++;
1569 }
1570 /* 4) Replace the bootstrap head arrays */
1571 {
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001572 struct array_cache *ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001573
Pekka Enberg83b519e2009-06-10 19:40:04 +03001574 ptr = kmalloc(sizeof(struct arraycache_init), GFP_NOWAIT);
Christoph Lametere498be72005-09-09 13:03:32 -07001575
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001576 BUG_ON(cpu_cache_get(&cache_cache) != &initarray_cache.cache);
1577 memcpy(ptr, cpu_cache_get(&cache_cache),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001578 sizeof(struct arraycache_init));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001579 /*
1580 * Do not assume that spinlocks can be initialized via memcpy:
1581 */
1582 spin_lock_init(&ptr->lock);
1583
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 cache_cache.array[smp_processor_id()] = ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001585
Pekka Enberg83b519e2009-06-10 19:40:04 +03001586 ptr = kmalloc(sizeof(struct arraycache_init), GFP_NOWAIT);
Christoph Lametere498be72005-09-09 13:03:32 -07001587
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001588 BUG_ON(cpu_cache_get(malloc_sizes[INDEX_AC].cs_cachep)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001589 != &initarray_generic.cache);
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001590 memcpy(ptr, cpu_cache_get(malloc_sizes[INDEX_AC].cs_cachep),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001591 sizeof(struct arraycache_init));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001592 /*
1593 * Do not assume that spinlocks can be initialized via memcpy:
1594 */
1595 spin_lock_init(&ptr->lock);
1596
Christoph Lametere498be72005-09-09 13:03:32 -07001597 malloc_sizes[INDEX_AC].cs_cachep->array[smp_processor_id()] =
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001598 ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001599 }
Christoph Lametere498be72005-09-09 13:03:32 -07001600 /* 5) Replace the bootstrap kmem_list3's */
1601 {
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001602 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603
Mel Gorman9c09a952008-01-24 05:49:54 -08001604 for_each_online_node(nid) {
Daniel Yeisleyec1f5ee2008-03-25 23:59:08 +02001605 init_list(&cache_cache, &initkmem_list3[CACHE_CACHE + nid], nid);
Pekka Enberg556a1692008-01-25 08:20:51 +02001606
Christoph Lametere498be72005-09-09 13:03:32 -07001607 init_list(malloc_sizes[INDEX_AC].cs_cachep,
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001608 &initkmem_list3[SIZE_AC + nid], nid);
Christoph Lametere498be72005-09-09 13:03:32 -07001609
1610 if (INDEX_AC != INDEX_L3) {
1611 init_list(malloc_sizes[INDEX_L3].cs_cachep,
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001612 &initkmem_list3[SIZE_L3 + nid], nid);
Christoph Lametere498be72005-09-09 13:03:32 -07001613 }
1614 }
1615 }
1616
Pekka Enberg8429db52009-06-12 15:58:59 +03001617 g_cpucache_up = EARLY;
Pekka Enberg8429db52009-06-12 15:58:59 +03001618}
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -07001619
Pekka Enberg8429db52009-06-12 15:58:59 +03001620void __init kmem_cache_init_late(void)
1621{
1622 struct kmem_cache *cachep;
1623
Pekka Enberg8429db52009-06-12 15:58:59 +03001624 /* 6) resize the head arrays to their final sizes */
1625 mutex_lock(&cache_chain_mutex);
1626 list_for_each_entry(cachep, &cache_chain, next)
1627 if (enable_cpucache(cachep, GFP_NOWAIT))
1628 BUG();
1629 mutex_unlock(&cache_chain_mutex);
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -07001630
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631 /* Done! */
1632 g_cpucache_up = FULL;
1633
Pekka Enbergec5a36f2009-06-29 09:57:10 +03001634 /* Annotate slab for lockdep -- annotate the malloc caches */
1635 init_lock_keys();
1636
Andrew Mortona737b3e2006-03-22 00:08:11 -08001637 /*
1638 * Register a cpu startup notifier callback that initializes
1639 * cpu_cache_get for all new cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07001640 */
1641 register_cpu_notifier(&cpucache_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642
David Rientjes8f9f8d92010-03-27 19:40:47 -07001643#ifdef CONFIG_NUMA
1644 /*
1645 * Register a memory hotplug callback that initializes and frees
1646 * nodelists.
1647 */
1648 hotplug_memory_notifier(slab_memory_callback, SLAB_CALLBACK_PRI);
1649#endif
1650
Andrew Mortona737b3e2006-03-22 00:08:11 -08001651 /*
1652 * The reap timers are started later, with a module init call: That part
1653 * of the kernel is not yet operational.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 */
1655}
1656
1657static int __init cpucache_init(void)
1658{
1659 int cpu;
1660
Andrew Mortona737b3e2006-03-22 00:08:11 -08001661 /*
1662 * Register the timers that return unneeded pages to the page allocator
Linus Torvalds1da177e2005-04-16 15:20:36 -07001663 */
Christoph Lametere498be72005-09-09 13:03:32 -07001664 for_each_online_cpu(cpu)
Andrew Mortona737b3e2006-03-22 00:08:11 -08001665 start_cpu_timer(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001666 return 0;
1667}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001668__initcall(cpucache_init);
1669
1670/*
1671 * Interface to system's page allocator. No need to hold the cache-lock.
1672 *
1673 * If we requested dmaable memory, we will get it. Even if we
1674 * did not request dmaable memory, we might get it, but that
1675 * would be relatively rare and ignorable.
1676 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001677static void *kmem_getpages(struct kmem_cache *cachep, gfp_t flags, int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678{
1679 struct page *page;
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001680 int nr_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001681 int i;
1682
Luke Yangd6fef9d2006-04-10 22:52:56 -07001683#ifndef CONFIG_MMU
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001684 /*
1685 * Nommu uses slab's for process anonymous memory allocations, and thus
1686 * requires __GFP_COMP to properly refcount higher order allocations
Luke Yangd6fef9d2006-04-10 22:52:56 -07001687 */
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001688 flags |= __GFP_COMP;
Luke Yangd6fef9d2006-04-10 22:52:56 -07001689#endif
Christoph Lameter765c4502006-09-27 01:50:08 -07001690
Christoph Lameter3c517a62006-12-06 20:33:29 -08001691 flags |= cachep->gfpflags;
Mel Gormane12ba742007-10-16 01:25:52 -07001692 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1693 flags |= __GFP_RECLAIMABLE;
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001694
Linus Torvalds517d0862009-06-16 19:50:13 -07001695 page = alloc_pages_exact_node(nodeid, flags | __GFP_NOTRACK, cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 if (!page)
1697 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001699 nr_pages = (1 << cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
Christoph Lameter972d1a72006-09-25 23:31:51 -07001701 add_zone_page_state(page_zone(page),
1702 NR_SLAB_RECLAIMABLE, nr_pages);
1703 else
1704 add_zone_page_state(page_zone(page),
1705 NR_SLAB_UNRECLAIMABLE, nr_pages);
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001706 for (i = 0; i < nr_pages; i++)
1707 __SetPageSlab(page + i);
Pekka Enbergc175eea2008-05-09 20:35:53 +02001708
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001709 if (kmemcheck_enabled && !(cachep->flags & SLAB_NOTRACK)) {
1710 kmemcheck_alloc_shadow(page, cachep->gfporder, flags, nodeid);
1711
1712 if (cachep->ctor)
1713 kmemcheck_mark_uninitialized_pages(page, nr_pages);
1714 else
1715 kmemcheck_mark_unallocated_pages(page, nr_pages);
1716 }
Pekka Enbergc175eea2008-05-09 20:35:53 +02001717
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001718 return page_address(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001719}
1720
1721/*
1722 * Interface to system's page release.
1723 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001724static void kmem_freepages(struct kmem_cache *cachep, void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001726 unsigned long i = (1 << cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 struct page *page = virt_to_page(addr);
1728 const unsigned long nr_freed = i;
1729
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001730 kmemcheck_free_shadow(page, cachep->gfporder);
Pekka Enbergc175eea2008-05-09 20:35:53 +02001731
Christoph Lameter972d1a72006-09-25 23:31:51 -07001732 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1733 sub_zone_page_state(page_zone(page),
1734 NR_SLAB_RECLAIMABLE, nr_freed);
1735 else
1736 sub_zone_page_state(page_zone(page),
1737 NR_SLAB_UNRECLAIMABLE, nr_freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001738 while (i--) {
Nick Pigginf205b2f2006-03-22 00:08:02 -08001739 BUG_ON(!PageSlab(page));
1740 __ClearPageSlab(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 page++;
1742 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001743 if (current->reclaim_state)
1744 current->reclaim_state->reclaimed_slab += nr_freed;
1745 free_pages((unsigned long)addr, cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746}
1747
1748static void kmem_rcu_free(struct rcu_head *head)
1749{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001750 struct slab_rcu *slab_rcu = (struct slab_rcu *)head;
Pekka Enberg343e0d72006-02-01 03:05:50 -08001751 struct kmem_cache *cachep = slab_rcu->cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752
1753 kmem_freepages(cachep, slab_rcu->addr);
1754 if (OFF_SLAB(cachep))
1755 kmem_cache_free(cachep->slabp_cache, slab_rcu);
1756}
1757
1758#if DEBUG
1759
1760#ifdef CONFIG_DEBUG_PAGEALLOC
Pekka Enberg343e0d72006-02-01 03:05:50 -08001761static void store_stackinfo(struct kmem_cache *cachep, unsigned long *addr,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001762 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001763{
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001764 int size = obj_size(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001766 addr = (unsigned long *)&((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001768 if (size < 5 * sizeof(unsigned long))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001769 return;
1770
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001771 *addr++ = 0x12345678;
1772 *addr++ = caller;
1773 *addr++ = smp_processor_id();
1774 size -= 3 * sizeof(unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001775 {
1776 unsigned long *sptr = &caller;
1777 unsigned long svalue;
1778
1779 while (!kstack_end(sptr)) {
1780 svalue = *sptr++;
1781 if (kernel_text_address(svalue)) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001782 *addr++ = svalue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 size -= sizeof(unsigned long);
1784 if (size <= sizeof(unsigned long))
1785 break;
1786 }
1787 }
1788
1789 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001790 *addr++ = 0x87654321;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791}
1792#endif
1793
Pekka Enberg343e0d72006-02-01 03:05:50 -08001794static void poison_obj(struct kmem_cache *cachep, void *addr, unsigned char val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795{
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001796 int size = obj_size(cachep);
1797 addr = &((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798
1799 memset(addr, val, size);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001800 *(unsigned char *)(addr + size - 1) = POISON_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801}
1802
1803static void dump_line(char *data, int offset, int limit)
1804{
1805 int i;
Dave Jonesaa83aa42006-09-29 01:59:51 -07001806 unsigned char error = 0;
1807 int bad_count = 0;
1808
Linus Torvalds1da177e2005-04-16 15:20:36 -07001809 printk(KERN_ERR "%03x:", offset);
Dave Jonesaa83aa42006-09-29 01:59:51 -07001810 for (i = 0; i < limit; i++) {
1811 if (data[offset + i] != POISON_FREE) {
1812 error = data[offset + i];
1813 bad_count++;
1814 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001815 printk(" %02x", (unsigned char)data[offset + i]);
Dave Jonesaa83aa42006-09-29 01:59:51 -07001816 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 printk("\n");
Dave Jonesaa83aa42006-09-29 01:59:51 -07001818
1819 if (bad_count == 1) {
1820 error ^= POISON_FREE;
1821 if (!(error & (error - 1))) {
1822 printk(KERN_ERR "Single bit error detected. Probably "
1823 "bad RAM.\n");
1824#ifdef CONFIG_X86
1825 printk(KERN_ERR "Run memtest86+ or a similar memory "
1826 "test tool.\n");
1827#else
1828 printk(KERN_ERR "Run a memory test tool.\n");
1829#endif
1830 }
1831 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832}
1833#endif
1834
1835#if DEBUG
1836
Pekka Enberg343e0d72006-02-01 03:05:50 -08001837static void print_objinfo(struct kmem_cache *cachep, void *objp, int lines)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001838{
1839 int i, size;
1840 char *realobj;
1841
1842 if (cachep->flags & SLAB_RED_ZONE) {
David Woodhouseb46b8f12007-05-08 00:22:59 -07001843 printk(KERN_ERR "Redzone: 0x%llx/0x%llx.\n",
Andrew Mortona737b3e2006-03-22 00:08:11 -08001844 *dbg_redzone1(cachep, objp),
1845 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846 }
1847
1848 if (cachep->flags & SLAB_STORE_USER) {
1849 printk(KERN_ERR "Last user: [<%p>]",
Andrew Mortona737b3e2006-03-22 00:08:11 -08001850 *dbg_userword(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851 print_symbol("(%s)",
Andrew Mortona737b3e2006-03-22 00:08:11 -08001852 (unsigned long)*dbg_userword(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 printk("\n");
1854 }
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001855 realobj = (char *)objp + obj_offset(cachep);
1856 size = obj_size(cachep);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001857 for (i = 0; i < size && lines; i += 16, lines--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001858 int limit;
1859 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001860 if (i + limit > size)
1861 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 dump_line(realobj, i, limit);
1863 }
1864}
1865
Pekka Enberg343e0d72006-02-01 03:05:50 -08001866static void check_poison_obj(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867{
1868 char *realobj;
1869 int size, i;
1870 int lines = 0;
1871
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001872 realobj = (char *)objp + obj_offset(cachep);
1873 size = obj_size(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001874
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001875 for (i = 0; i < size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876 char exp = POISON_FREE;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001877 if (i == size - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001878 exp = POISON_END;
1879 if (realobj[i] != exp) {
1880 int limit;
1881 /* Mismatch ! */
1882 /* Print header */
1883 if (lines == 0) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001884 printk(KERN_ERR
David Howellse94a40c2007-04-02 23:46:28 +01001885 "Slab corruption: %s start=%p, len=%d\n",
1886 cachep->name, realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 print_objinfo(cachep, objp, 0);
1888 }
1889 /* Hexdump the affected line */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001890 i = (i / 16) * 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001892 if (i + limit > size)
1893 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 dump_line(realobj, i, limit);
1895 i += 16;
1896 lines++;
1897 /* Limit to 5 lines */
1898 if (lines > 5)
1899 break;
1900 }
1901 }
1902 if (lines != 0) {
1903 /* Print some data about the neighboring objects, if they
1904 * exist:
1905 */
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08001906 struct slab *slabp = virt_to_slab(objp);
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001907 unsigned int objnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001909 objnr = obj_to_index(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 if (objnr) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001911 objp = index_to_obj(cachep, slabp, objnr - 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001912 realobj = (char *)objp + obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 printk(KERN_ERR "Prev obj: start=%p, len=%d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001914 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 print_objinfo(cachep, objp, 2);
1916 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001917 if (objnr + 1 < cachep->num) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001918 objp = index_to_obj(cachep, slabp, objnr + 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001919 realobj = (char *)objp + obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 printk(KERN_ERR "Next obj: start=%p, len=%d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001921 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 print_objinfo(cachep, objp, 2);
1923 }
1924 }
1925}
1926#endif
1927
Linus Torvalds1da177e2005-04-16 15:20:36 -07001928#if DEBUG
Rabin Vincente79aec22008-07-04 00:40:32 +05301929static void slab_destroy_debugcheck(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001930{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 int i;
1932 for (i = 0; i < cachep->num; i++) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001933 void *objp = index_to_obj(cachep, slabp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934
1935 if (cachep->flags & SLAB_POISON) {
1936#ifdef CONFIG_DEBUG_PAGEALLOC
Andrew Mortona737b3e2006-03-22 00:08:11 -08001937 if (cachep->buffer_size % PAGE_SIZE == 0 &&
1938 OFF_SLAB(cachep))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001939 kernel_map_pages(virt_to_page(objp),
Andrew Mortona737b3e2006-03-22 00:08:11 -08001940 cachep->buffer_size / PAGE_SIZE, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 else
1942 check_poison_obj(cachep, objp);
1943#else
1944 check_poison_obj(cachep, objp);
1945#endif
1946 }
1947 if (cachep->flags & SLAB_RED_ZONE) {
1948 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
1949 slab_error(cachep, "start of a freed object "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001950 "was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
1952 slab_error(cachep, "end of a freed object "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001953 "was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 }
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001956}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957#else
Rabin Vincente79aec22008-07-04 00:40:32 +05301958static void slab_destroy_debugcheck(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001959{
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001960}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961#endif
1962
Randy Dunlap911851e2006-03-22 00:08:14 -08001963/**
1964 * slab_destroy - destroy and release all objects in a slab
1965 * @cachep: cache pointer being destroyed
1966 * @slabp: slab pointer being destroyed
1967 *
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001968 * Destroy all the objs in a slab, and release the mem back to the system.
Andrew Mortona737b3e2006-03-22 00:08:11 -08001969 * Before calling the slab must have been unlinked from the cache. The
1970 * cache-lock is not held/needed.
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001971 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001972static void slab_destroy(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001973{
1974 void *addr = slabp->s_mem - slabp->colouroff;
1975
Rabin Vincente79aec22008-07-04 00:40:32 +05301976 slab_destroy_debugcheck(cachep, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001977 if (unlikely(cachep->flags & SLAB_DESTROY_BY_RCU)) {
1978 struct slab_rcu *slab_rcu;
1979
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001980 slab_rcu = (struct slab_rcu *)slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 slab_rcu->cachep = cachep;
1982 slab_rcu->addr = addr;
1983 call_rcu(&slab_rcu->head, kmem_rcu_free);
1984 } else {
1985 kmem_freepages(cachep, addr);
Ingo Molnar873623d2006-07-13 14:44:38 +02001986 if (OFF_SLAB(cachep))
1987 kmem_cache_free(cachep->slabp_cache, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988 }
1989}
1990
Christoph Lameter117f6eb2006-09-25 23:31:37 -07001991static void __kmem_cache_destroy(struct kmem_cache *cachep)
1992{
1993 int i;
1994 struct kmem_list3 *l3;
1995
1996 for_each_online_cpu(i)
1997 kfree(cachep->array[i]);
1998
1999 /* NUMA: free the list3 structures */
2000 for_each_online_node(i) {
2001 l3 = cachep->nodelists[i];
2002 if (l3) {
2003 kfree(l3->shared);
2004 free_alien_cache(l3->alien);
2005 kfree(l3);
2006 }
2007 }
2008 kmem_cache_free(&cache_cache, cachep);
2009}
2010
2011
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012/**
Randy.Dunlapa70773d2006-02-01 03:05:52 -08002013 * calculate_slab_order - calculate size (page order) of slabs
2014 * @cachep: pointer to the cache that is being created
2015 * @size: size of objects to be created in this cache.
2016 * @align: required alignment for the objects.
2017 * @flags: slab allocation flags
2018 *
2019 * Also calculates the number of objects per slab.
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002020 *
2021 * This could be made much more intelligent. For now, try to avoid using
2022 * high order pages for slabs. When the gfp() functions are more friendly
2023 * towards high-order requests, this should be changed.
2024 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002025static size_t calculate_slab_order(struct kmem_cache *cachep,
Randy Dunlapee13d782006-02-01 03:05:53 -08002026 size_t size, size_t align, unsigned long flags)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002027{
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02002028 unsigned long offslab_limit;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002029 size_t left_over = 0;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002030 int gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002031
Christoph Lameter0aa817f2007-05-16 22:11:01 -07002032 for (gfporder = 0; gfporder <= KMALLOC_MAX_ORDER; gfporder++) {
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002033 unsigned int num;
2034 size_t remainder;
2035
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002036 cache_estimate(gfporder, size, align, flags, &remainder, &num);
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002037 if (!num)
2038 continue;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002039
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02002040 if (flags & CFLGS_OFF_SLAB) {
2041 /*
2042 * Max number of objs-per-slab for caches which
2043 * use off-slab slabs. Needed to avoid a possible
2044 * looping condition in cache_grow().
2045 */
2046 offslab_limit = size - sizeof(struct slab);
2047 offslab_limit /= sizeof(kmem_bufctl_t);
2048
2049 if (num > offslab_limit)
2050 break;
2051 }
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002052
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002053 /* Found something acceptable - save it away */
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002054 cachep->num = num;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002055 cachep->gfporder = gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002056 left_over = remainder;
2057
2058 /*
Linus Torvaldsf78bb8a2006-03-08 10:33:05 -08002059 * A VFS-reclaimable slab tends to have most allocations
2060 * as GFP_NOFS and we really don't want to have to be allocating
2061 * higher-order pages when we are unable to shrink dcache.
2062 */
2063 if (flags & SLAB_RECLAIM_ACCOUNT)
2064 break;
2065
2066 /*
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002067 * Large number of objects is good, but very large slabs are
2068 * currently bad for the gfp()s.
2069 */
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002070 if (gfporder >= slab_break_gfp_order)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002071 break;
2072
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002073 /*
2074 * Acceptable internal fragmentation?
2075 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002076 if (left_over * 8 <= (PAGE_SIZE << gfporder))
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002077 break;
2078 }
2079 return left_over;
2080}
2081
Pekka Enberg83b519e2009-06-10 19:40:04 +03002082static int __init_refok setup_cpu_cache(struct kmem_cache *cachep, gfp_t gfp)
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002083{
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002084 if (g_cpucache_up == FULL)
Pekka Enberg83b519e2009-06-10 19:40:04 +03002085 return enable_cpucache(cachep, gfp);
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002086
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002087 if (g_cpucache_up == NONE) {
2088 /*
2089 * Note: the first kmem_cache_create must create the cache
2090 * that's used by kmalloc(24), otherwise the creation of
2091 * further caches will BUG().
2092 */
2093 cachep->array[smp_processor_id()] = &initarray_generic.cache;
2094
2095 /*
2096 * If the cache that's used by kmalloc(sizeof(kmem_list3)) is
2097 * the first cache, then we need to set up all its list3s,
2098 * otherwise the creation of further caches will BUG().
2099 */
2100 set_up_list3s(cachep, SIZE_AC);
2101 if (INDEX_AC == INDEX_L3)
2102 g_cpucache_up = PARTIAL_L3;
2103 else
2104 g_cpucache_up = PARTIAL_AC;
2105 } else {
2106 cachep->array[smp_processor_id()] =
Pekka Enberg83b519e2009-06-10 19:40:04 +03002107 kmalloc(sizeof(struct arraycache_init), gfp);
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002108
2109 if (g_cpucache_up == PARTIAL_AC) {
2110 set_up_list3s(cachep, SIZE_L3);
2111 g_cpucache_up = PARTIAL_L3;
2112 } else {
2113 int node;
Pekka Enberg556a1692008-01-25 08:20:51 +02002114 for_each_online_node(node) {
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002115 cachep->nodelists[node] =
2116 kmalloc_node(sizeof(struct kmem_list3),
Pekka Enbergeb91f1d2009-06-12 14:56:09 +03002117 gfp, node);
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002118 BUG_ON(!cachep->nodelists[node]);
2119 kmem_list3_init(cachep->nodelists[node]);
2120 }
2121 }
2122 }
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07002123 cachep->nodelists[numa_mem_id()]->next_reap =
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002124 jiffies + REAPTIMEOUT_LIST3 +
2125 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
2126
2127 cpu_cache_get(cachep)->avail = 0;
2128 cpu_cache_get(cachep)->limit = BOOT_CPUCACHE_ENTRIES;
2129 cpu_cache_get(cachep)->batchcount = 1;
2130 cpu_cache_get(cachep)->touched = 0;
2131 cachep->batchcount = 1;
2132 cachep->limit = BOOT_CPUCACHE_ENTRIES;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002133 return 0;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002134}
2135
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002136/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002137 * kmem_cache_create - Create a cache.
2138 * @name: A string which is used in /proc/slabinfo to identify this cache.
2139 * @size: The size of objects to be created in this cache.
2140 * @align: The required alignment for the objects.
2141 * @flags: SLAB flags
2142 * @ctor: A constructor for the objects.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143 *
2144 * Returns a ptr to the cache on success, NULL on failure.
2145 * Cannot be called within a int, but can be interrupted.
Paul Mundt20c2df82007-07-20 10:11:58 +09002146 * The @ctor is run when new pages are allocated by the cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 *
2148 * @name must be valid until the cache is destroyed. This implies that
Andrew Mortona737b3e2006-03-22 00:08:11 -08002149 * the module calling this has to destroy the cache before getting unloaded.
2150 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 * The flags are
2152 *
2153 * %SLAB_POISON - Poison the slab with a known test pattern (a5a5a5a5)
2154 * to catch references to uninitialised memory.
2155 *
2156 * %SLAB_RED_ZONE - Insert `Red' zones around the allocated memory to check
2157 * for buffer overruns.
2158 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 * %SLAB_HWCACHE_ALIGN - Align the objects in this cache to a hardware
2160 * cacheline. This can be beneficial if you're counting cycles as closely
2161 * as davem.
2162 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002163struct kmem_cache *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002164kmem_cache_create (const char *name, size_t size, size_t align,
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002165 unsigned long flags, void (*ctor)(void *))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002166{
2167 size_t left_over, slab_size, ralign;
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07002168 struct kmem_cache *cachep = NULL, *pc;
Pekka Enberg83b519e2009-06-10 19:40:04 +03002169 gfp_t gfp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170
2171 /*
2172 * Sanity checks... these are all serious usage bugs.
2173 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002174 if (!name || in_interrupt() || (size < BYTES_PER_WORD) ||
Paul Mundt20c2df82007-07-20 10:11:58 +09002175 size > KMALLOC_MAX_SIZE) {
Harvey Harrisond40cee22008-04-30 00:55:07 -07002176 printk(KERN_ERR "%s: Early error in slab %s\n", __func__,
Andrew Mortona737b3e2006-03-22 00:08:11 -08002177 name);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002178 BUG();
2179 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002180
Ravikiran G Thirumalaif0188f42006-02-10 01:51:13 -08002181 /*
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002182 * We use cache_chain_mutex to ensure a consistent view of
Rusty Russell174596a2009-01-01 10:12:29 +10302183 * cpu_online_mask as well. Please see cpuup_callback
Ravikiran G Thirumalaif0188f42006-02-10 01:51:13 -08002184 */
Pekka Enberg83b519e2009-06-10 19:40:04 +03002185 if (slab_is_available()) {
2186 get_online_cpus();
2187 mutex_lock(&cache_chain_mutex);
2188 }
Andrew Morton4f12bb42005-11-07 00:58:00 -08002189
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07002190 list_for_each_entry(pc, &cache_chain, next) {
Andrew Morton4f12bb42005-11-07 00:58:00 -08002191 char tmp;
2192 int res;
2193
2194 /*
2195 * This happens when the module gets unloaded and doesn't
2196 * destroy its slab cache and no-one else reuses the vmalloc
2197 * area of the module. Print a warning.
2198 */
Andrew Morton138ae662006-12-06 20:36:41 -08002199 res = probe_kernel_address(pc->name, tmp);
Andrew Morton4f12bb42005-11-07 00:58:00 -08002200 if (res) {
matzeb4169522007-05-06 14:49:52 -07002201 printk(KERN_ERR
2202 "SLAB: cache with size %d has lost its name\n",
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002203 pc->buffer_size);
Andrew Morton4f12bb42005-11-07 00:58:00 -08002204 continue;
2205 }
2206
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002207 if (!strcmp(pc->name, name)) {
matzeb4169522007-05-06 14:49:52 -07002208 printk(KERN_ERR
2209 "kmem_cache_create: duplicate cache %s\n", name);
Andrew Morton4f12bb42005-11-07 00:58:00 -08002210 dump_stack();
2211 goto oops;
2212 }
2213 }
2214
Linus Torvalds1da177e2005-04-16 15:20:36 -07002215#if DEBUG
2216 WARN_ON(strchr(name, ' ')); /* It confuses parsers */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217#if FORCED_DEBUG
2218 /*
2219 * Enable redzoning and last user accounting, except for caches with
2220 * large objects, if the increased size would increase the object size
2221 * above the next power of two: caches with object sizes just above a
2222 * power of two have a significant amount of internal fragmentation.
2223 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002224 if (size < 4096 || fls(size - 1) == fls(size-1 + REDZONE_ALIGN +
2225 2 * sizeof(unsigned long long)))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002226 flags |= SLAB_RED_ZONE | SLAB_STORE_USER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002227 if (!(flags & SLAB_DESTROY_BY_RCU))
2228 flags |= SLAB_POISON;
2229#endif
2230 if (flags & SLAB_DESTROY_BY_RCU)
2231 BUG_ON(flags & SLAB_POISON);
2232#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 /*
Andrew Mortona737b3e2006-03-22 00:08:11 -08002234 * Always checks flags, a caller might be expecting debug support which
2235 * isn't available.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 */
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002237 BUG_ON(flags & ~CREATE_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238
Andrew Mortona737b3e2006-03-22 00:08:11 -08002239 /*
2240 * Check that size is in terms of words. This is needed to avoid
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 * unaligned accesses for some archs when redzoning is used, and makes
2242 * sure any on-slab bufctl's are also correctly aligned.
2243 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002244 if (size & (BYTES_PER_WORD - 1)) {
2245 size += (BYTES_PER_WORD - 1);
2246 size &= ~(BYTES_PER_WORD - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247 }
2248
Andrew Mortona737b3e2006-03-22 00:08:11 -08002249 /* calculate the final buffer alignment: */
2250
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251 /* 1) arch recommendation: can be overridden for debug */
2252 if (flags & SLAB_HWCACHE_ALIGN) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002253 /*
2254 * Default alignment: as specified by the arch code. Except if
2255 * an object is really small, then squeeze multiple objects into
2256 * one cacheline.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 */
2258 ralign = cache_line_size();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002259 while (size <= ralign / 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002260 ralign /= 2;
2261 } else {
2262 ralign = BYTES_PER_WORD;
2263 }
Pekka Enbergca5f9702006-09-25 23:31:25 -07002264
2265 /*
David Woodhouse87a927c2007-07-04 21:26:44 -04002266 * Redzoning and user store require word alignment or possibly larger.
2267 * Note this will be overridden by architecture or caller mandated
2268 * alignment if either is greater than BYTES_PER_WORD.
Pekka Enbergca5f9702006-09-25 23:31:25 -07002269 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002270 if (flags & SLAB_STORE_USER)
2271 ralign = BYTES_PER_WORD;
2272
2273 if (flags & SLAB_RED_ZONE) {
2274 ralign = REDZONE_ALIGN;
2275 /* If redzoning, ensure that the second redzone is suitably
2276 * aligned, by adjusting the object size accordingly. */
2277 size += REDZONE_ALIGN - 1;
2278 size &= ~(REDZONE_ALIGN - 1);
2279 }
Pekka Enbergca5f9702006-09-25 23:31:25 -07002280
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002281 /* 2) arch mandated alignment */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002282 if (ralign < ARCH_SLAB_MINALIGN) {
2283 ralign = ARCH_SLAB_MINALIGN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002284 }
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002285 /* 3) caller mandated alignment */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002286 if (ralign < align) {
2287 ralign = align;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002288 }
Shiyong Li5c5e3b32010-04-12 13:48:21 +08002289 /* disable debug if not aligning with REDZONE_ALIGN */
2290 if (ralign & (__alignof__(unsigned long long) - 1))
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002291 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002292 /*
Pekka Enbergca5f9702006-09-25 23:31:25 -07002293 * 4) Store it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 */
2295 align = ralign;
2296
Pekka Enberg83b519e2009-06-10 19:40:04 +03002297 if (slab_is_available())
2298 gfp = GFP_KERNEL;
2299 else
2300 gfp = GFP_NOWAIT;
2301
Linus Torvalds1da177e2005-04-16 15:20:36 -07002302 /* Get cache's description obj. */
Pekka Enberg83b519e2009-06-10 19:40:04 +03002303 cachep = kmem_cache_zalloc(&cache_cache, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 if (!cachep)
Andrew Morton4f12bb42005-11-07 00:58:00 -08002305 goto oops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306
2307#if DEBUG
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002308 cachep->obj_size = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309
Pekka Enbergca5f9702006-09-25 23:31:25 -07002310 /*
2311 * Both debugging options require word-alignment which is calculated
2312 * into align above.
2313 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 if (flags & SLAB_RED_ZONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002315 /* add space for red zone words */
Shiyong Li5c5e3b32010-04-12 13:48:21 +08002316 cachep->obj_offset += align;
2317 size += align + sizeof(unsigned long long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 }
2319 if (flags & SLAB_STORE_USER) {
Pekka Enbergca5f9702006-09-25 23:31:25 -07002320 /* user store requires one word storage behind the end of
David Woodhouse87a927c2007-07-04 21:26:44 -04002321 * the real object. But if the second red zone needs to be
2322 * aligned to 64 bits, we must allow that much space.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002324 if (flags & SLAB_RED_ZONE)
2325 size += REDZONE_ALIGN;
2326 else
2327 size += BYTES_PER_WORD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 }
2329#if FORCED_DEBUG && defined(CONFIG_DEBUG_PAGEALLOC)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002330 if (size >= malloc_sizes[INDEX_L3 + 1].cs_size
Carsten Otte1ab335d2010-08-06 18:19:22 +02002331 && cachep->obj_size > cache_line_size() && ALIGN(size, align) < PAGE_SIZE) {
2332 cachep->obj_offset += PAGE_SIZE - ALIGN(size, align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002333 size = PAGE_SIZE;
2334 }
2335#endif
2336#endif
2337
Ingo Molnare0a42722006-06-23 02:03:46 -07002338 /*
2339 * Determine if the slab management is 'on' or 'off' slab.
2340 * (bootstrapping cannot cope with offslab caches so don't do
Catalin Marinase7cb55b2009-10-28 13:33:08 +00002341 * it too early on. Always use on-slab management when
2342 * SLAB_NOLEAKTRACE to avoid recursive calls into kmemleak)
Ingo Molnare0a42722006-06-23 02:03:46 -07002343 */
Catalin Marinase7cb55b2009-10-28 13:33:08 +00002344 if ((size >= (PAGE_SIZE >> 3)) && !slab_early_init &&
2345 !(flags & SLAB_NOLEAKTRACE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 /*
2347 * Size is large, assume best to place the slab management obj
2348 * off-slab (should allow better packing of objs).
2349 */
2350 flags |= CFLGS_OFF_SLAB;
2351
2352 size = ALIGN(size, align);
2353
Linus Torvaldsf78bb8a2006-03-08 10:33:05 -08002354 left_over = calculate_slab_order(cachep, size, align, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002355
2356 if (!cachep->num) {
matzeb4169522007-05-06 14:49:52 -07002357 printk(KERN_ERR
2358 "kmem_cache_create: couldn't create cache %s.\n", name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359 kmem_cache_free(&cache_cache, cachep);
2360 cachep = NULL;
Andrew Morton4f12bb42005-11-07 00:58:00 -08002361 goto oops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002362 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002363 slab_size = ALIGN(cachep->num * sizeof(kmem_bufctl_t)
2364 + sizeof(struct slab), align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365
2366 /*
2367 * If the slab has been placed off-slab, and we have enough space then
2368 * move it on-slab. This is at the expense of any extra colouring.
2369 */
2370 if (flags & CFLGS_OFF_SLAB && left_over >= slab_size) {
2371 flags &= ~CFLGS_OFF_SLAB;
2372 left_over -= slab_size;
2373 }
2374
2375 if (flags & CFLGS_OFF_SLAB) {
2376 /* really off slab. No need for manual alignment */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002377 slab_size =
2378 cachep->num * sizeof(kmem_bufctl_t) + sizeof(struct slab);
Ron Lee67461362009-05-22 04:58:22 +09302379
2380#ifdef CONFIG_PAGE_POISONING
2381 /* If we're going to use the generic kernel_map_pages()
2382 * poisoning, then it's going to smash the contents of
2383 * the redzone and userword anyhow, so switch them off.
2384 */
2385 if (size % PAGE_SIZE == 0 && flags & SLAB_POISON)
2386 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
2387#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 }
2389
2390 cachep->colour_off = cache_line_size();
2391 /* Offset must be a multiple of the alignment. */
2392 if (cachep->colour_off < align)
2393 cachep->colour_off = align;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002394 cachep->colour = left_over / cachep->colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 cachep->slab_size = slab_size;
2396 cachep->flags = flags;
2397 cachep->gfpflags = 0;
Christoph Lameter4b51d662007-02-10 01:43:10 -08002398 if (CONFIG_ZONE_DMA_FLAG && (flags & SLAB_CACHE_DMA))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 cachep->gfpflags |= GFP_DMA;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002400 cachep->buffer_size = size;
Eric Dumazet6a2d7a92006-12-13 00:34:27 -08002401 cachep->reciprocal_buffer_size = reciprocal_value(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002403 if (flags & CFLGS_OFF_SLAB) {
Victor Fuscob2d55072005-09-10 00:26:36 -07002404 cachep->slabp_cache = kmem_find_general_cachep(slab_size, 0u);
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002405 /*
2406 * This is a possibility for one of the malloc_sizes caches.
2407 * But since we go off slab only for object size greater than
2408 * PAGE_SIZE/8, and malloc_sizes gets created in ascending order,
2409 * this should not happen at all.
2410 * But leave a BUG_ON for some lucky dude.
2411 */
Christoph Lameter6cb8f912007-07-17 04:03:22 -07002412 BUG_ON(ZERO_OR_NULL_PTR(cachep->slabp_cache));
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002413 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 cachep->ctor = ctor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002415 cachep->name = name;
2416
Pekka Enberg83b519e2009-06-10 19:40:04 +03002417 if (setup_cpu_cache(cachep, gfp)) {
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002418 __kmem_cache_destroy(cachep);
2419 cachep = NULL;
2420 goto oops;
2421 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423 /* cache setup completed, link it into the list */
2424 list_add(&cachep->next, &cache_chain);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002425oops:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426 if (!cachep && (flags & SLAB_PANIC))
2427 panic("kmem_cache_create(): failed to create slab `%s'\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002428 name);
Pekka Enberg83b519e2009-06-10 19:40:04 +03002429 if (slab_is_available()) {
2430 mutex_unlock(&cache_chain_mutex);
2431 put_online_cpus();
2432 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002433 return cachep;
2434}
2435EXPORT_SYMBOL(kmem_cache_create);
2436
2437#if DEBUG
2438static void check_irq_off(void)
2439{
2440 BUG_ON(!irqs_disabled());
2441}
2442
2443static void check_irq_on(void)
2444{
2445 BUG_ON(irqs_disabled());
2446}
2447
Pekka Enberg343e0d72006-02-01 03:05:50 -08002448static void check_spinlock_acquired(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002449{
2450#ifdef CONFIG_SMP
2451 check_irq_off();
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07002452 assert_spin_locked(&cachep->nodelists[numa_mem_id()]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002453#endif
2454}
Christoph Lametere498be72005-09-09 13:03:32 -07002455
Pekka Enberg343e0d72006-02-01 03:05:50 -08002456static void check_spinlock_acquired_node(struct kmem_cache *cachep, int node)
Christoph Lametere498be72005-09-09 13:03:32 -07002457{
2458#ifdef CONFIG_SMP
2459 check_irq_off();
2460 assert_spin_locked(&cachep->nodelists[node]->list_lock);
2461#endif
2462}
2463
Linus Torvalds1da177e2005-04-16 15:20:36 -07002464#else
2465#define check_irq_off() do { } while(0)
2466#define check_irq_on() do { } while(0)
2467#define check_spinlock_acquired(x) do { } while(0)
Christoph Lametere498be72005-09-09 13:03:32 -07002468#define check_spinlock_acquired_node(x, y) do { } while(0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469#endif
2470
Christoph Lameteraab22072006-03-22 00:09:06 -08002471static void drain_array(struct kmem_cache *cachep, struct kmem_list3 *l3,
2472 struct array_cache *ac,
2473 int force, int node);
2474
Linus Torvalds1da177e2005-04-16 15:20:36 -07002475static void do_drain(void *arg)
2476{
Andrew Mortona737b3e2006-03-22 00:08:11 -08002477 struct kmem_cache *cachep = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002478 struct array_cache *ac;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07002479 int node = numa_mem_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002480
2481 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002482 ac = cpu_cache_get(cachep);
Christoph Lameterff694162005-09-22 21:44:02 -07002483 spin_lock(&cachep->nodelists[node]->list_lock);
2484 free_block(cachep, ac->entry, ac->avail, node);
2485 spin_unlock(&cachep->nodelists[node]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002486 ac->avail = 0;
2487}
2488
Pekka Enberg343e0d72006-02-01 03:05:50 -08002489static void drain_cpu_caches(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490{
Christoph Lametere498be72005-09-09 13:03:32 -07002491 struct kmem_list3 *l3;
2492 int node;
2493
Jens Axboe15c8b6c2008-05-09 09:39:44 +02002494 on_each_cpu(do_drain, cachep, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495 check_irq_on();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002496 for_each_online_node(node) {
Christoph Lametere498be72005-09-09 13:03:32 -07002497 l3 = cachep->nodelists[node];
Roland Dreiera4523a82006-05-15 11:41:00 -07002498 if (l3 && l3->alien)
2499 drain_alien_cache(cachep, l3->alien);
2500 }
2501
2502 for_each_online_node(node) {
2503 l3 = cachep->nodelists[node];
2504 if (l3)
Christoph Lameteraab22072006-03-22 00:09:06 -08002505 drain_array(cachep, l3, l3->shared, 1, node);
Christoph Lametere498be72005-09-09 13:03:32 -07002506 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002507}
2508
Christoph Lametered11d9e2006-06-30 01:55:45 -07002509/*
2510 * Remove slabs from the list of free slabs.
2511 * Specify the number of slabs to drain in tofree.
2512 *
2513 * Returns the actual number of slabs released.
2514 */
2515static int drain_freelist(struct kmem_cache *cache,
2516 struct kmem_list3 *l3, int tofree)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517{
Christoph Lametered11d9e2006-06-30 01:55:45 -07002518 struct list_head *p;
2519 int nr_freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520 struct slab *slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521
Christoph Lametered11d9e2006-06-30 01:55:45 -07002522 nr_freed = 0;
2523 while (nr_freed < tofree && !list_empty(&l3->slabs_free)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002524
Christoph Lametered11d9e2006-06-30 01:55:45 -07002525 spin_lock_irq(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07002526 p = l3->slabs_free.prev;
Christoph Lametered11d9e2006-06-30 01:55:45 -07002527 if (p == &l3->slabs_free) {
2528 spin_unlock_irq(&l3->list_lock);
2529 goto out;
2530 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002531
Christoph Lametered11d9e2006-06-30 01:55:45 -07002532 slabp = list_entry(p, struct slab, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533#if DEBUG
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002534 BUG_ON(slabp->inuse);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535#endif
2536 list_del(&slabp->list);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002537 /*
2538 * Safe to drop the lock. The slab is no longer linked
2539 * to the cache.
2540 */
2541 l3->free_objects -= cache->num;
Christoph Lametere498be72005-09-09 13:03:32 -07002542 spin_unlock_irq(&l3->list_lock);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002543 slab_destroy(cache, slabp);
2544 nr_freed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 }
Christoph Lametered11d9e2006-06-30 01:55:45 -07002546out:
2547 return nr_freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548}
2549
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002550/* Called with cache_chain_mutex held to protect against cpu hotplug */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002551static int __cache_shrink(struct kmem_cache *cachep)
Christoph Lametere498be72005-09-09 13:03:32 -07002552{
2553 int ret = 0, i = 0;
2554 struct kmem_list3 *l3;
2555
2556 drain_cpu_caches(cachep);
2557
2558 check_irq_on();
2559 for_each_online_node(i) {
2560 l3 = cachep->nodelists[i];
Christoph Lametered11d9e2006-06-30 01:55:45 -07002561 if (!l3)
2562 continue;
2563
2564 drain_freelist(cachep, l3, l3->free_objects);
2565
2566 ret += !list_empty(&l3->slabs_full) ||
2567 !list_empty(&l3->slabs_partial);
Christoph Lametere498be72005-09-09 13:03:32 -07002568 }
2569 return (ret ? 1 : 0);
2570}
2571
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572/**
2573 * kmem_cache_shrink - Shrink a cache.
2574 * @cachep: The cache to shrink.
2575 *
2576 * Releases as many slabs as possible for a cache.
2577 * To help debugging, a zero exit status indicates all slabs were released.
2578 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002579int kmem_cache_shrink(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580{
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002581 int ret;
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002582 BUG_ON(!cachep || in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002584 get_online_cpus();
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002585 mutex_lock(&cache_chain_mutex);
2586 ret = __cache_shrink(cachep);
2587 mutex_unlock(&cache_chain_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002588 put_online_cpus();
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002589 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590}
2591EXPORT_SYMBOL(kmem_cache_shrink);
2592
2593/**
2594 * kmem_cache_destroy - delete a cache
2595 * @cachep: the cache to destroy
2596 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08002597 * Remove a &struct kmem_cache object from the slab cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002598 *
2599 * It is expected this function will be called by a module when it is
2600 * unloaded. This will remove the cache completely, and avoid a duplicate
2601 * cache being allocated each time a module is loaded and unloaded, if the
2602 * module doesn't have persistent in-kernel storage across loads and unloads.
2603 *
2604 * The cache must be empty before calling this function.
2605 *
2606 * The caller must guarantee that noone will allocate memory from the cache
2607 * during the kmem_cache_destroy().
2608 */
Alexey Dobriyan133d2052006-09-27 01:49:41 -07002609void kmem_cache_destroy(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610{
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002611 BUG_ON(!cachep || in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002612
Linus Torvalds1da177e2005-04-16 15:20:36 -07002613 /* Find the cache in the chain of caches. */
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002614 get_online_cpus();
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002615 mutex_lock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616 /*
2617 * the chain is never empty, cache_cache is never destroyed
2618 */
2619 list_del(&cachep->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 if (__cache_shrink(cachep)) {
2621 slab_error(cachep, "Can't free all objects");
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002622 list_add(&cachep->next, &cache_chain);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002623 mutex_unlock(&cache_chain_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002624 put_online_cpus();
Alexey Dobriyan133d2052006-09-27 01:49:41 -07002625 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002626 }
2627
2628 if (unlikely(cachep->flags & SLAB_DESTROY_BY_RCU))
Paul E. McKenney7ed9f7e2009-06-25 12:31:37 -07002629 rcu_barrier();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630
Christoph Lameter117f6eb2006-09-25 23:31:37 -07002631 __kmem_cache_destroy(cachep);
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002632 mutex_unlock(&cache_chain_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002633 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634}
2635EXPORT_SYMBOL(kmem_cache_destroy);
2636
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002637/*
2638 * Get the memory for a slab management obj.
2639 * For a slab cache when the slab descriptor is off-slab, slab descriptors
2640 * always come from malloc_sizes caches. The slab descriptor cannot
2641 * come from the same cache which is getting created because,
2642 * when we are searching for an appropriate cache for these
2643 * descriptors in kmem_cache_create, we search through the malloc_sizes array.
2644 * If we are creating a malloc_sizes cache here it would not be visible to
2645 * kmem_find_general_cachep till the initialization is complete.
2646 * Hence we cannot have slabp_cache same as the original cache.
2647 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002648static struct slab *alloc_slabmgmt(struct kmem_cache *cachep, void *objp,
Ravikiran G Thirumalai5b74ada2006-04-10 22:52:53 -07002649 int colour_off, gfp_t local_flags,
2650 int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651{
2652 struct slab *slabp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002653
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654 if (OFF_SLAB(cachep)) {
2655 /* Slab management obj is off-slab. */
Ravikiran G Thirumalai5b74ada2006-04-10 22:52:53 -07002656 slabp = kmem_cache_alloc_node(cachep->slabp_cache,
Pekka Enberg8759ec52008-11-26 10:01:31 +02002657 local_flags, nodeid);
Catalin Marinasd5cff632009-06-11 13:22:40 +01002658 /*
2659 * If the first object in the slab is leaked (it's allocated
2660 * but no one has a reference to it), we want to make sure
2661 * kmemleak does not treat the ->s_mem pointer as a reference
2662 * to the object. Otherwise we will not report the leak.
2663 */
Catalin Marinasc017b4b2009-10-28 13:33:09 +00002664 kmemleak_scan_area(&slabp->list, sizeof(struct list_head),
2665 local_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002666 if (!slabp)
2667 return NULL;
2668 } else {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002669 slabp = objp + colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670 colour_off += cachep->slab_size;
2671 }
2672 slabp->inuse = 0;
2673 slabp->colouroff = colour_off;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002674 slabp->s_mem = objp + colour_off;
Ravikiran G Thirumalai5b74ada2006-04-10 22:52:53 -07002675 slabp->nodeid = nodeid;
Marcin Slusarze51bfd02008-02-10 11:21:54 +01002676 slabp->free = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677 return slabp;
2678}
2679
2680static inline kmem_bufctl_t *slab_bufctl(struct slab *slabp)
2681{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002682 return (kmem_bufctl_t *) (slabp + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683}
2684
Pekka Enberg343e0d72006-02-01 03:05:50 -08002685static void cache_init_objs(struct kmem_cache *cachep,
Christoph Lametera35afb82007-05-16 22:10:57 -07002686 struct slab *slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002687{
2688 int i;
2689
2690 for (i = 0; i < cachep->num; i++) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002691 void *objp = index_to_obj(cachep, slabp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692#if DEBUG
2693 /* need to poison the objs? */
2694 if (cachep->flags & SLAB_POISON)
2695 poison_obj(cachep, objp, POISON_FREE);
2696 if (cachep->flags & SLAB_STORE_USER)
2697 *dbg_userword(cachep, objp) = NULL;
2698
2699 if (cachep->flags & SLAB_RED_ZONE) {
2700 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2701 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2702 }
2703 /*
Andrew Mortona737b3e2006-03-22 00:08:11 -08002704 * Constructors are not allowed to allocate memory from the same
2705 * cache which they are a constructor for. Otherwise, deadlock.
2706 * They must also be threaded.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002707 */
2708 if (cachep->ctor && !(cachep->flags & SLAB_POISON))
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002709 cachep->ctor(objp + obj_offset(cachep));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002710
2711 if (cachep->flags & SLAB_RED_ZONE) {
2712 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
2713 slab_error(cachep, "constructor overwrote the"
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002714 " end of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002715 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
2716 slab_error(cachep, "constructor overwrote the"
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002717 " start of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002718 }
Andrew Mortona737b3e2006-03-22 00:08:11 -08002719 if ((cachep->buffer_size % PAGE_SIZE) == 0 &&
2720 OFF_SLAB(cachep) && cachep->flags & SLAB_POISON)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002721 kernel_map_pages(virt_to_page(objp),
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002722 cachep->buffer_size / PAGE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002723#else
2724 if (cachep->ctor)
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002725 cachep->ctor(objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726#endif
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002727 slab_bufctl(slabp)[i] = i + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002728 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002729 slab_bufctl(slabp)[i - 1] = BUFCTL_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002730}
2731
Pekka Enberg343e0d72006-02-01 03:05:50 -08002732static void kmem_flagcheck(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733{
Christoph Lameter4b51d662007-02-10 01:43:10 -08002734 if (CONFIG_ZONE_DMA_FLAG) {
2735 if (flags & GFP_DMA)
2736 BUG_ON(!(cachep->gfpflags & GFP_DMA));
2737 else
2738 BUG_ON(cachep->gfpflags & GFP_DMA);
2739 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002740}
2741
Andrew Mortona737b3e2006-03-22 00:08:11 -08002742static void *slab_get_obj(struct kmem_cache *cachep, struct slab *slabp,
2743 int nodeid)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002744{
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002745 void *objp = index_to_obj(cachep, slabp, slabp->free);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002746 kmem_bufctl_t next;
2747
2748 slabp->inuse++;
2749 next = slab_bufctl(slabp)[slabp->free];
2750#if DEBUG
2751 slab_bufctl(slabp)[slabp->free] = BUFCTL_FREE;
2752 WARN_ON(slabp->nodeid != nodeid);
2753#endif
2754 slabp->free = next;
2755
2756 return objp;
2757}
2758
Andrew Mortona737b3e2006-03-22 00:08:11 -08002759static void slab_put_obj(struct kmem_cache *cachep, struct slab *slabp,
2760 void *objp, int nodeid)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002761{
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002762 unsigned int objnr = obj_to_index(cachep, slabp, objp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002763
2764#if DEBUG
2765 /* Verify that the slab belongs to the intended node */
2766 WARN_ON(slabp->nodeid != nodeid);
2767
Al Viro871751e2006-03-25 03:06:39 -08002768 if (slab_bufctl(slabp)[objnr] + 1 <= SLAB_LIMIT + 1) {
Matthew Dobson78d382d2006-02-01 03:05:47 -08002769 printk(KERN_ERR "slab: double free detected in cache "
Andrew Mortona737b3e2006-03-22 00:08:11 -08002770 "'%s', objp %p\n", cachep->name, objp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002771 BUG();
2772 }
2773#endif
2774 slab_bufctl(slabp)[objnr] = slabp->free;
2775 slabp->free = objnr;
2776 slabp->inuse--;
2777}
2778
Pekka Enberg47768742006-06-23 02:03:07 -07002779/*
2780 * Map pages beginning at addr to the given cache and slab. This is required
2781 * for the slab allocator to be able to lookup the cache and slab of a
Nick Pigginccd35fb2011-01-07 17:49:17 +11002782 * virtual address for kfree, ksize, and slab debugging.
Pekka Enberg47768742006-06-23 02:03:07 -07002783 */
2784static void slab_map_pages(struct kmem_cache *cache, struct slab *slab,
2785 void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786{
Pekka Enberg47768742006-06-23 02:03:07 -07002787 int nr_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788 struct page *page;
2789
Pekka Enberg47768742006-06-23 02:03:07 -07002790 page = virt_to_page(addr);
Nick Piggin84097512006-03-22 00:08:34 -08002791
Pekka Enberg47768742006-06-23 02:03:07 -07002792 nr_pages = 1;
Nick Piggin84097512006-03-22 00:08:34 -08002793 if (likely(!PageCompound(page)))
Pekka Enberg47768742006-06-23 02:03:07 -07002794 nr_pages <<= cache->gfporder;
2795
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796 do {
Pekka Enberg47768742006-06-23 02:03:07 -07002797 page_set_cache(page, cache);
2798 page_set_slab(page, slab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799 page++;
Pekka Enberg47768742006-06-23 02:03:07 -07002800 } while (--nr_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801}
2802
2803/*
2804 * Grow (by 1) the number of slabs within a cache. This is called by
2805 * kmem_cache_alloc() when there are no active objs left in a cache.
2806 */
Christoph Lameter3c517a62006-12-06 20:33:29 -08002807static int cache_grow(struct kmem_cache *cachep,
2808 gfp_t flags, int nodeid, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002809{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002810 struct slab *slabp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002811 size_t offset;
2812 gfp_t local_flags;
Christoph Lametere498be72005-09-09 13:03:32 -07002813 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814
Andrew Mortona737b3e2006-03-22 00:08:11 -08002815 /*
2816 * Be lazy and only check for valid flags here, keeping it out of the
2817 * critical path in kmem_cache_alloc().
Linus Torvalds1da177e2005-04-16 15:20:36 -07002818 */
Christoph Lameter6cb06222007-10-16 01:25:41 -07002819 BUG_ON(flags & GFP_SLAB_BUG_MASK);
2820 local_flags = flags & (GFP_CONSTRAINT_MASK|GFP_RECLAIM_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002822 /* Take the l3 list lock to change the colour_next on this node */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 check_irq_off();
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002824 l3 = cachep->nodelists[nodeid];
2825 spin_lock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002826
2827 /* Get colour for the slab, and cal the next value. */
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002828 offset = l3->colour_next;
2829 l3->colour_next++;
2830 if (l3->colour_next >= cachep->colour)
2831 l3->colour_next = 0;
2832 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002834 offset *= cachep->colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835
2836 if (local_flags & __GFP_WAIT)
2837 local_irq_enable();
2838
2839 /*
2840 * The test for missing atomic flag is performed here, rather than
2841 * the more obvious place, simply to reduce the critical path length
2842 * in kmem_cache_alloc(). If a caller is seriously mis-behaving they
2843 * will eventually be caught here (where it matters).
2844 */
2845 kmem_flagcheck(cachep, flags);
2846
Andrew Mortona737b3e2006-03-22 00:08:11 -08002847 /*
2848 * Get mem for the objs. Attempt to allocate a physical page from
2849 * 'nodeid'.
Christoph Lametere498be72005-09-09 13:03:32 -07002850 */
Christoph Lameter3c517a62006-12-06 20:33:29 -08002851 if (!objp)
Andrew Mortonb8c1c5d2007-07-24 12:02:40 -07002852 objp = kmem_getpages(cachep, local_flags, nodeid);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002853 if (!objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002854 goto failed;
2855
2856 /* Get slab management. */
Christoph Lameter3c517a62006-12-06 20:33:29 -08002857 slabp = alloc_slabmgmt(cachep, objp, offset,
Christoph Lameter6cb06222007-10-16 01:25:41 -07002858 local_flags & ~GFP_CONSTRAINT_MASK, nodeid);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002859 if (!slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860 goto opps1;
2861
Pekka Enberg47768742006-06-23 02:03:07 -07002862 slab_map_pages(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863
Christoph Lametera35afb82007-05-16 22:10:57 -07002864 cache_init_objs(cachep, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002865
2866 if (local_flags & __GFP_WAIT)
2867 local_irq_disable();
2868 check_irq_off();
Christoph Lametere498be72005-09-09 13:03:32 -07002869 spin_lock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870
2871 /* Make slab active. */
Christoph Lametere498be72005-09-09 13:03:32 -07002872 list_add_tail(&slabp->list, &(l3->slabs_free));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873 STATS_INC_GROWN(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07002874 l3->free_objects += cachep->num;
2875 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876 return 1;
Andrew Mortona737b3e2006-03-22 00:08:11 -08002877opps1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002878 kmem_freepages(cachep, objp);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002879failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880 if (local_flags & __GFP_WAIT)
2881 local_irq_disable();
2882 return 0;
2883}
2884
2885#if DEBUG
2886
2887/*
2888 * Perform extra freeing checks:
2889 * - detect bad pointers.
2890 * - POISON/RED_ZONE checking
Linus Torvalds1da177e2005-04-16 15:20:36 -07002891 */
2892static void kfree_debugcheck(const void *objp)
2893{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894 if (!virt_addr_valid(objp)) {
2895 printk(KERN_ERR "kfree_debugcheck: out of range ptr %lxh.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002896 (unsigned long)objp);
2897 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899}
2900
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002901static inline void verify_redzone_free(struct kmem_cache *cache, void *obj)
2902{
David Woodhouseb46b8f12007-05-08 00:22:59 -07002903 unsigned long long redzone1, redzone2;
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002904
2905 redzone1 = *dbg_redzone1(cache, obj);
2906 redzone2 = *dbg_redzone2(cache, obj);
2907
2908 /*
2909 * Redzone is ok.
2910 */
2911 if (redzone1 == RED_ACTIVE && redzone2 == RED_ACTIVE)
2912 return;
2913
2914 if (redzone1 == RED_INACTIVE && redzone2 == RED_INACTIVE)
2915 slab_error(cache, "double free detected");
2916 else
2917 slab_error(cache, "memory outside object was overwritten");
2918
David Woodhouseb46b8f12007-05-08 00:22:59 -07002919 printk(KERN_ERR "%p: redzone 1:0x%llx, redzone 2:0x%llx.\n",
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002920 obj, redzone1, redzone2);
2921}
2922
Pekka Enberg343e0d72006-02-01 03:05:50 -08002923static void *cache_free_debugcheck(struct kmem_cache *cachep, void *objp,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002924 void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002925{
2926 struct page *page;
2927 unsigned int objnr;
2928 struct slab *slabp;
2929
Matthew Wilcox80cbd912007-11-29 12:05:13 -07002930 BUG_ON(virt_to_cache(objp) != cachep);
2931
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002932 objp -= obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933 kfree_debugcheck(objp);
Christoph Lameterb49af682007-05-06 14:49:41 -07002934 page = virt_to_head_page(objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002935
Pekka Enberg065d41c2005-11-13 16:06:46 -08002936 slabp = page_get_slab(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937
2938 if (cachep->flags & SLAB_RED_ZONE) {
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002939 verify_redzone_free(cachep, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002940 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2941 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2942 }
2943 if (cachep->flags & SLAB_STORE_USER)
2944 *dbg_userword(cachep, objp) = caller;
2945
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002946 objnr = obj_to_index(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947
2948 BUG_ON(objnr >= cachep->num);
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002949 BUG_ON(objp != index_to_obj(cachep, slabp, objnr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002950
Al Viro871751e2006-03-25 03:06:39 -08002951#ifdef CONFIG_DEBUG_SLAB_LEAK
2952 slab_bufctl(slabp)[objnr] = BUFCTL_FREE;
2953#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954 if (cachep->flags & SLAB_POISON) {
2955#ifdef CONFIG_DEBUG_PAGEALLOC
Andrew Mortona737b3e2006-03-22 00:08:11 -08002956 if ((cachep->buffer_size % PAGE_SIZE)==0 && OFF_SLAB(cachep)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002957 store_stackinfo(cachep, objp, (unsigned long)caller);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002958 kernel_map_pages(virt_to_page(objp),
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002959 cachep->buffer_size / PAGE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002960 } else {
2961 poison_obj(cachep, objp, POISON_FREE);
2962 }
2963#else
2964 poison_obj(cachep, objp, POISON_FREE);
2965#endif
2966 }
2967 return objp;
2968}
2969
Pekka Enberg343e0d72006-02-01 03:05:50 -08002970static void check_slabp(struct kmem_cache *cachep, struct slab *slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971{
2972 kmem_bufctl_t i;
2973 int entries = 0;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002974
Linus Torvalds1da177e2005-04-16 15:20:36 -07002975 /* Check slab's freelist to see if this obj is there. */
2976 for (i = slabp->free; i != BUFCTL_END; i = slab_bufctl(slabp)[i]) {
2977 entries++;
2978 if (entries > cachep->num || i >= cachep->num)
2979 goto bad;
2980 }
2981 if (entries != cachep->num - slabp->inuse) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002982bad:
2983 printk(KERN_ERR "slab: Internal list corruption detected in "
2984 "cache '%s'(%d), slabp %p(%d). Hexdump:\n",
2985 cachep->name, cachep->num, slabp, slabp->inuse);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002986 for (i = 0;
Linus Torvalds264132b2006-03-06 12:10:07 -08002987 i < sizeof(*slabp) + cachep->num * sizeof(kmem_bufctl_t);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002988 i++) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002989 if (i % 16 == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002990 printk("\n%03x:", i);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002991 printk(" %02x", ((unsigned char *)slabp)[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002992 }
2993 printk("\n");
2994 BUG();
2995 }
2996}
2997#else
2998#define kfree_debugcheck(x) do { } while(0)
2999#define cache_free_debugcheck(x,objp,z) (objp)
3000#define check_slabp(x,y) do { } while(0)
3001#endif
3002
Pekka Enberg343e0d72006-02-01 03:05:50 -08003003static void *cache_alloc_refill(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003004{
3005 int batchcount;
3006 struct kmem_list3 *l3;
3007 struct array_cache *ac;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07003008 int node;
3009
Andrew Mortona737b3e2006-03-22 00:08:11 -08003010retry:
Joe Korty6d2144d2008-03-05 15:04:59 -08003011 check_irq_off();
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003012 node = numa_mem_id();
Joe Korty6d2144d2008-03-05 15:04:59 -08003013 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003014 batchcount = ac->batchcount;
3015 if (!ac->touched && batchcount > BATCHREFILL_LIMIT) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08003016 /*
3017 * If there was little recent activity on this cache, then
3018 * perform only a partial refill. Otherwise we could generate
3019 * refill bouncing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003020 */
3021 batchcount = BATCHREFILL_LIMIT;
3022 }
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07003023 l3 = cachep->nodelists[node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024
Christoph Lametere498be72005-09-09 13:03:32 -07003025 BUG_ON(ac->avail > 0 || !l3);
3026 spin_lock(&l3->list_lock);
3027
Christoph Lameter3ded1752006-03-25 03:06:44 -08003028 /* See if we can refill from the shared array */
Nick Piggin44b57f12010-01-27 22:27:40 +11003029 if (l3->shared && transfer_objects(ac, l3->shared, batchcount)) {
3030 l3->shared->touched = 1;
Christoph Lameter3ded1752006-03-25 03:06:44 -08003031 goto alloc_done;
Nick Piggin44b57f12010-01-27 22:27:40 +11003032 }
Christoph Lameter3ded1752006-03-25 03:06:44 -08003033
Linus Torvalds1da177e2005-04-16 15:20:36 -07003034 while (batchcount > 0) {
3035 struct list_head *entry;
3036 struct slab *slabp;
3037 /* Get slab alloc is to come from. */
3038 entry = l3->slabs_partial.next;
3039 if (entry == &l3->slabs_partial) {
3040 l3->free_touched = 1;
3041 entry = l3->slabs_free.next;
3042 if (entry == &l3->slabs_free)
3043 goto must_grow;
3044 }
3045
3046 slabp = list_entry(entry, struct slab, list);
3047 check_slabp(cachep, slabp);
3048 check_spinlock_acquired(cachep);
Pekka Enberg714b8172007-05-06 14:49:03 -07003049
3050 /*
3051 * The slab was either on partial or free list so
3052 * there must be at least one object available for
3053 * allocation.
3054 */
roel kluin249b9f32008-10-29 17:18:07 -04003055 BUG_ON(slabp->inuse >= cachep->num);
Pekka Enberg714b8172007-05-06 14:49:03 -07003056
Linus Torvalds1da177e2005-04-16 15:20:36 -07003057 while (slabp->inuse < cachep->num && batchcount--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058 STATS_INC_ALLOCED(cachep);
3059 STATS_INC_ACTIVE(cachep);
3060 STATS_SET_HIGH(cachep);
3061
Matthew Dobson78d382d2006-02-01 03:05:47 -08003062 ac->entry[ac->avail++] = slab_get_obj(cachep, slabp,
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07003063 node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003064 }
3065 check_slabp(cachep, slabp);
3066
3067 /* move slabp to correct slabp list: */
3068 list_del(&slabp->list);
3069 if (slabp->free == BUFCTL_END)
3070 list_add(&slabp->list, &l3->slabs_full);
3071 else
3072 list_add(&slabp->list, &l3->slabs_partial);
3073 }
3074
Andrew Mortona737b3e2006-03-22 00:08:11 -08003075must_grow:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076 l3->free_objects -= ac->avail;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003077alloc_done:
Christoph Lametere498be72005-09-09 13:03:32 -07003078 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079
3080 if (unlikely(!ac->avail)) {
3081 int x;
Christoph Lameter3c517a62006-12-06 20:33:29 -08003082 x = cache_grow(cachep, flags | GFP_THISNODE, node, NULL);
Christoph Lametere498be72005-09-09 13:03:32 -07003083
Andrew Mortona737b3e2006-03-22 00:08:11 -08003084 /* cache_grow can reenable interrupts, then ac could change. */
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003085 ac = cpu_cache_get(cachep);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003086 if (!x && ac->avail == 0) /* no objects in sight? abort */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003087 return NULL;
3088
Andrew Mortona737b3e2006-03-22 00:08:11 -08003089 if (!ac->avail) /* objects refilled by interrupt? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090 goto retry;
3091 }
3092 ac->touched = 1;
Christoph Lametere498be72005-09-09 13:03:32 -07003093 return ac->entry[--ac->avail];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094}
3095
Andrew Mortona737b3e2006-03-22 00:08:11 -08003096static inline void cache_alloc_debugcheck_before(struct kmem_cache *cachep,
3097 gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003098{
3099 might_sleep_if(flags & __GFP_WAIT);
3100#if DEBUG
3101 kmem_flagcheck(cachep, flags);
3102#endif
3103}
3104
3105#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08003106static void *cache_alloc_debugcheck_after(struct kmem_cache *cachep,
3107 gfp_t flags, void *objp, void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003108{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003109 if (!objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110 return objp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003111 if (cachep->flags & SLAB_POISON) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003112#ifdef CONFIG_DEBUG_PAGEALLOC
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003113 if ((cachep->buffer_size % PAGE_SIZE) == 0 && OFF_SLAB(cachep))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003114 kernel_map_pages(virt_to_page(objp),
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003115 cachep->buffer_size / PAGE_SIZE, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003116 else
3117 check_poison_obj(cachep, objp);
3118#else
3119 check_poison_obj(cachep, objp);
3120#endif
3121 poison_obj(cachep, objp, POISON_INUSE);
3122 }
3123 if (cachep->flags & SLAB_STORE_USER)
3124 *dbg_userword(cachep, objp) = caller;
3125
3126 if (cachep->flags & SLAB_RED_ZONE) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08003127 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE ||
3128 *dbg_redzone2(cachep, objp) != RED_INACTIVE) {
3129 slab_error(cachep, "double free, or memory outside"
3130 " object was overwritten");
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003131 printk(KERN_ERR
David Woodhouseb46b8f12007-05-08 00:22:59 -07003132 "%p: redzone 1:0x%llx, redzone 2:0x%llx\n",
Andrew Mortona737b3e2006-03-22 00:08:11 -08003133 objp, *dbg_redzone1(cachep, objp),
3134 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135 }
3136 *dbg_redzone1(cachep, objp) = RED_ACTIVE;
3137 *dbg_redzone2(cachep, objp) = RED_ACTIVE;
3138 }
Al Viro871751e2006-03-25 03:06:39 -08003139#ifdef CONFIG_DEBUG_SLAB_LEAK
3140 {
3141 struct slab *slabp;
3142 unsigned objnr;
3143
Christoph Lameterb49af682007-05-06 14:49:41 -07003144 slabp = page_get_slab(virt_to_head_page(objp));
Al Viro871751e2006-03-25 03:06:39 -08003145 objnr = (unsigned)(objp - slabp->s_mem) / cachep->buffer_size;
3146 slab_bufctl(slabp)[objnr] = BUFCTL_ACTIVE;
3147 }
3148#endif
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003149 objp += obj_offset(cachep);
Christoph Lameter4f104932007-05-06 14:50:17 -07003150 if (cachep->ctor && cachep->flags & SLAB_POISON)
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07003151 cachep->ctor(objp);
Kevin Hilmana44b56d2006-12-06 20:32:11 -08003152#if ARCH_SLAB_MINALIGN
3153 if ((u32)objp & (ARCH_SLAB_MINALIGN-1)) {
3154 printk(KERN_ERR "0x%p: not aligned to ARCH_SLAB_MINALIGN=%d\n",
3155 objp, ARCH_SLAB_MINALIGN);
3156 }
3157#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003158 return objp;
3159}
3160#else
3161#define cache_alloc_debugcheck_after(a,b,objp,d) (objp)
3162#endif
3163
Akinobu Mita773ff602008-12-23 19:37:01 +09003164static bool slab_should_failslab(struct kmem_cache *cachep, gfp_t flags)
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003165{
3166 if (cachep == &cache_cache)
Akinobu Mita773ff602008-12-23 19:37:01 +09003167 return false;
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003168
Dmitry Monakhov4c13dd32010-02-26 09:36:12 +03003169 return should_failslab(obj_size(cachep), flags, cachep->flags);
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003170}
3171
Pekka Enberg343e0d72006-02-01 03:05:50 -08003172static inline void *____cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003173{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003174 void *objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003175 struct array_cache *ac;
3176
Alok N Kataria5c382302005-09-27 21:45:46 -07003177 check_irq_off();
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003178
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003179 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003180 if (likely(ac->avail)) {
3181 STATS_INC_ALLOCHIT(cachep);
3182 ac->touched = 1;
Christoph Lametere498be72005-09-09 13:03:32 -07003183 objp = ac->entry[--ac->avail];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003184 } else {
3185 STATS_INC_ALLOCMISS(cachep);
3186 objp = cache_alloc_refill(cachep, flags);
J. R. Okajimaddbf2e82009-12-02 16:55:50 +09003187 /*
3188 * the 'ac' may be updated by cache_alloc_refill(),
3189 * and kmemleak_erase() requires its correct value.
3190 */
3191 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192 }
Catalin Marinasd5cff632009-06-11 13:22:40 +01003193 /*
3194 * To avoid a false negative, if an object that is in one of the
3195 * per-CPU caches is leaked, we need to make sure kmemleak doesn't
3196 * treat the array pointers as a reference to the object.
3197 */
J. R. Okajimaf3d8b532009-12-02 16:55:49 +09003198 if (objp)
3199 kmemleak_erase(&ac->entry[ac->avail]);
Alok N Kataria5c382302005-09-27 21:45:46 -07003200 return objp;
3201}
3202
Christoph Lametere498be72005-09-09 13:03:32 -07003203#ifdef CONFIG_NUMA
3204/*
Paul Jacksonb2455392006-03-24 03:16:12 -08003205 * Try allocating on another node if PF_SPREAD_SLAB|PF_MEMPOLICY.
Paul Jacksonc61afb12006-03-24 03:16:08 -08003206 *
3207 * If we are in_interrupt, then process context, including cpusets and
3208 * mempolicy, may not apply and should not be used for allocation policy.
3209 */
3210static void *alternate_node_alloc(struct kmem_cache *cachep, gfp_t flags)
3211{
3212 int nid_alloc, nid_here;
3213
Christoph Lameter765c4502006-09-27 01:50:08 -07003214 if (in_interrupt() || (flags & __GFP_THISNODE))
Paul Jacksonc61afb12006-03-24 03:16:08 -08003215 return NULL;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003216 nid_alloc = nid_here = numa_mem_id();
Miao Xiec0ff7452010-05-24 14:32:08 -07003217 get_mems_allowed();
Paul Jacksonc61afb12006-03-24 03:16:08 -08003218 if (cpuset_do_slab_mem_spread() && (cachep->flags & SLAB_MEM_SPREAD))
Jack Steiner6adef3e2010-05-26 14:42:49 -07003219 nid_alloc = cpuset_slab_spread_node();
Paul Jacksonc61afb12006-03-24 03:16:08 -08003220 else if (current->mempolicy)
3221 nid_alloc = slab_node(current->mempolicy);
Miao Xiec0ff7452010-05-24 14:32:08 -07003222 put_mems_allowed();
Paul Jacksonc61afb12006-03-24 03:16:08 -08003223 if (nid_alloc != nid_here)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003224 return ____cache_alloc_node(cachep, flags, nid_alloc);
Paul Jacksonc61afb12006-03-24 03:16:08 -08003225 return NULL;
3226}
3227
3228/*
Christoph Lameter765c4502006-09-27 01:50:08 -07003229 * Fallback function if there was no memory available and no objects on a
Christoph Lameter3c517a62006-12-06 20:33:29 -08003230 * certain node and fall back is permitted. First we scan all the
3231 * available nodelists for available objects. If that fails then we
3232 * perform an allocation without specifying a node. This allows the page
3233 * allocator to do its reclaim / fallback magic. We then insert the
3234 * slab into the proper nodelist and then allocate from it.
Christoph Lameter765c4502006-09-27 01:50:08 -07003235 */
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003236static void *fallback_alloc(struct kmem_cache *cache, gfp_t flags)
Christoph Lameter765c4502006-09-27 01:50:08 -07003237{
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003238 struct zonelist *zonelist;
3239 gfp_t local_flags;
Mel Gormandd1a2392008-04-28 02:12:17 -07003240 struct zoneref *z;
Mel Gorman54a6eb52008-04-28 02:12:16 -07003241 struct zone *zone;
3242 enum zone_type high_zoneidx = gfp_zone(flags);
Christoph Lameter765c4502006-09-27 01:50:08 -07003243 void *obj = NULL;
Christoph Lameter3c517a62006-12-06 20:33:29 -08003244 int nid;
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003245
3246 if (flags & __GFP_THISNODE)
3247 return NULL;
3248
Miao Xiec0ff7452010-05-24 14:32:08 -07003249 get_mems_allowed();
Mel Gorman0e884602008-04-28 02:12:14 -07003250 zonelist = node_zonelist(slab_node(current->mempolicy), flags);
Christoph Lameter6cb06222007-10-16 01:25:41 -07003251 local_flags = flags & (GFP_CONSTRAINT_MASK|GFP_RECLAIM_MASK);
Christoph Lameter765c4502006-09-27 01:50:08 -07003252
Christoph Lameter3c517a62006-12-06 20:33:29 -08003253retry:
3254 /*
3255 * Look through allowed nodes for objects available
3256 * from existing per node queues.
3257 */
Mel Gorman54a6eb52008-04-28 02:12:16 -07003258 for_each_zone_zonelist(zone, z, zonelist, high_zoneidx) {
3259 nid = zone_to_nid(zone);
Christoph Lameteraedb0eb2006-10-21 10:24:16 -07003260
Mel Gorman54a6eb52008-04-28 02:12:16 -07003261 if (cpuset_zone_allowed_hardwall(zone, flags) &&
Christoph Lameter3c517a62006-12-06 20:33:29 -08003262 cache->nodelists[nid] &&
Christoph Lameter481c5342008-06-21 16:46:35 -07003263 cache->nodelists[nid]->free_objects) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003264 obj = ____cache_alloc_node(cache,
3265 flags | GFP_THISNODE, nid);
Christoph Lameter481c5342008-06-21 16:46:35 -07003266 if (obj)
3267 break;
3268 }
Christoph Lameter3c517a62006-12-06 20:33:29 -08003269 }
3270
Christoph Lametercfce6602007-05-06 14:50:17 -07003271 if (!obj) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003272 /*
3273 * This allocation will be performed within the constraints
3274 * of the current cpuset / memory policy requirements.
3275 * We may trigger various forms of reclaim on the allowed
3276 * set and go into memory reserves if necessary.
3277 */
Christoph Lameterdd47ea72006-12-13 00:34:11 -08003278 if (local_flags & __GFP_WAIT)
3279 local_irq_enable();
3280 kmem_flagcheck(cache, flags);
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003281 obj = kmem_getpages(cache, local_flags, numa_mem_id());
Christoph Lameterdd47ea72006-12-13 00:34:11 -08003282 if (local_flags & __GFP_WAIT)
3283 local_irq_disable();
Christoph Lameter3c517a62006-12-06 20:33:29 -08003284 if (obj) {
3285 /*
3286 * Insert into the appropriate per node queues
3287 */
3288 nid = page_to_nid(virt_to_page(obj));
3289 if (cache_grow(cache, flags, nid, obj)) {
3290 obj = ____cache_alloc_node(cache,
3291 flags | GFP_THISNODE, nid);
3292 if (!obj)
3293 /*
3294 * Another processor may allocate the
3295 * objects in the slab since we are
3296 * not holding any locks.
3297 */
3298 goto retry;
3299 } else {
Hugh Dickinsb6a60452007-01-05 16:36:36 -08003300 /* cache_grow already freed obj */
Christoph Lameter3c517a62006-12-06 20:33:29 -08003301 obj = NULL;
3302 }
3303 }
Christoph Lameteraedb0eb2006-10-21 10:24:16 -07003304 }
Miao Xiec0ff7452010-05-24 14:32:08 -07003305 put_mems_allowed();
Christoph Lameter765c4502006-09-27 01:50:08 -07003306 return obj;
3307}
3308
3309/*
Christoph Lametere498be72005-09-09 13:03:32 -07003310 * A interface to enable slab creation on nodeid
Linus Torvalds1da177e2005-04-16 15:20:36 -07003311 */
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003312static void *____cache_alloc_node(struct kmem_cache *cachep, gfp_t flags,
Andrew Mortona737b3e2006-03-22 00:08:11 -08003313 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07003314{
3315 struct list_head *entry;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003316 struct slab *slabp;
3317 struct kmem_list3 *l3;
3318 void *obj;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003319 int x;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003320
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003321 l3 = cachep->nodelists[nodeid];
3322 BUG_ON(!l3);
Christoph Lametere498be72005-09-09 13:03:32 -07003323
Andrew Mortona737b3e2006-03-22 00:08:11 -08003324retry:
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08003325 check_irq_off();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003326 spin_lock(&l3->list_lock);
3327 entry = l3->slabs_partial.next;
3328 if (entry == &l3->slabs_partial) {
3329 l3->free_touched = 1;
3330 entry = l3->slabs_free.next;
3331 if (entry == &l3->slabs_free)
3332 goto must_grow;
3333 }
Christoph Lametere498be72005-09-09 13:03:32 -07003334
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003335 slabp = list_entry(entry, struct slab, list);
3336 check_spinlock_acquired_node(cachep, nodeid);
3337 check_slabp(cachep, slabp);
Christoph Lametere498be72005-09-09 13:03:32 -07003338
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003339 STATS_INC_NODEALLOCS(cachep);
3340 STATS_INC_ACTIVE(cachep);
3341 STATS_SET_HIGH(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003342
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003343 BUG_ON(slabp->inuse == cachep->num);
Christoph Lametere498be72005-09-09 13:03:32 -07003344
Matthew Dobson78d382d2006-02-01 03:05:47 -08003345 obj = slab_get_obj(cachep, slabp, nodeid);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003346 check_slabp(cachep, slabp);
3347 l3->free_objects--;
3348 /* move slabp to correct slabp list: */
3349 list_del(&slabp->list);
Christoph Lametere498be72005-09-09 13:03:32 -07003350
Andrew Mortona737b3e2006-03-22 00:08:11 -08003351 if (slabp->free == BUFCTL_END)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003352 list_add(&slabp->list, &l3->slabs_full);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003353 else
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003354 list_add(&slabp->list, &l3->slabs_partial);
Christoph Lametere498be72005-09-09 13:03:32 -07003355
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003356 spin_unlock(&l3->list_lock);
3357 goto done;
Christoph Lametere498be72005-09-09 13:03:32 -07003358
Andrew Mortona737b3e2006-03-22 00:08:11 -08003359must_grow:
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003360 spin_unlock(&l3->list_lock);
Christoph Lameter3c517a62006-12-06 20:33:29 -08003361 x = cache_grow(cachep, flags | GFP_THISNODE, nodeid, NULL);
Christoph Lameter765c4502006-09-27 01:50:08 -07003362 if (x)
3363 goto retry;
Christoph Lametere498be72005-09-09 13:03:32 -07003364
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003365 return fallback_alloc(cachep, flags);
Christoph Lameter765c4502006-09-27 01:50:08 -07003366
Andrew Mortona737b3e2006-03-22 00:08:11 -08003367done:
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003368 return obj;
Christoph Lametere498be72005-09-09 13:03:32 -07003369}
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003370
3371/**
3372 * kmem_cache_alloc_node - Allocate an object on the specified node
3373 * @cachep: The cache to allocate from.
3374 * @flags: See kmalloc().
3375 * @nodeid: node number of the target node.
3376 * @caller: return address of caller, used for debug information
3377 *
3378 * Identical to kmem_cache_alloc but it will allocate memory on the given
3379 * node, which can improve the performance for cpu bound structures.
3380 *
3381 * Fallback to other node is possible if __GFP_THISNODE is not set.
3382 */
3383static __always_inline void *
3384__cache_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid,
3385 void *caller)
3386{
3387 unsigned long save_flags;
3388 void *ptr;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003389 int slab_node = numa_mem_id();
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003390
Benjamin Herrenschmidtdcce2842009-06-18 13:24:12 +10003391 flags &= gfp_allowed_mask;
Pekka Enberg7e85ee02009-06-12 14:03:06 +03003392
Nick Piggincf40bd12009-01-21 08:12:39 +01003393 lockdep_trace_alloc(flags);
3394
Akinobu Mita773ff602008-12-23 19:37:01 +09003395 if (slab_should_failslab(cachep, flags))
Akinobu Mita824ebef2007-05-06 14:49:58 -07003396 return NULL;
3397
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003398 cache_alloc_debugcheck_before(cachep, flags);
3399 local_irq_save(save_flags);
3400
Tim Blechmann8e15b792009-11-30 18:59:34 +01003401 if (nodeid == -1)
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003402 nodeid = slab_node;
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003403
3404 if (unlikely(!cachep->nodelists[nodeid])) {
3405 /* Node not bootstrapped yet */
3406 ptr = fallback_alloc(cachep, flags);
3407 goto out;
3408 }
3409
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003410 if (nodeid == slab_node) {
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003411 /*
3412 * Use the locally cached objects if possible.
3413 * However ____cache_alloc does not allow fallback
3414 * to other nodes. It may fail while we still have
3415 * objects on other nodes available.
3416 */
3417 ptr = ____cache_alloc(cachep, flags);
3418 if (ptr)
3419 goto out;
3420 }
3421 /* ___cache_alloc_node can fall back to other nodes */
3422 ptr = ____cache_alloc_node(cachep, flags, nodeid);
3423 out:
3424 local_irq_restore(save_flags);
3425 ptr = cache_alloc_debugcheck_after(cachep, flags, ptr, caller);
Catalin Marinasd5cff632009-06-11 13:22:40 +01003426 kmemleak_alloc_recursive(ptr, obj_size(cachep), 1, cachep->flags,
3427 flags);
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003428
Pekka Enbergc175eea2008-05-09 20:35:53 +02003429 if (likely(ptr))
3430 kmemcheck_slab_alloc(cachep, flags, ptr, obj_size(cachep));
3431
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003432 if (unlikely((flags & __GFP_ZERO) && ptr))
3433 memset(ptr, 0, obj_size(cachep));
3434
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003435 return ptr;
3436}
3437
3438static __always_inline void *
3439__do_cache_alloc(struct kmem_cache *cache, gfp_t flags)
3440{
3441 void *objp;
3442
3443 if (unlikely(current->flags & (PF_SPREAD_SLAB | PF_MEMPOLICY))) {
3444 objp = alternate_node_alloc(cache, flags);
3445 if (objp)
3446 goto out;
3447 }
3448 objp = ____cache_alloc(cache, flags);
3449
3450 /*
3451 * We may just have run out of memory on the local node.
3452 * ____cache_alloc_node() knows how to locate memory on other nodes
3453 */
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003454 if (!objp)
3455 objp = ____cache_alloc_node(cache, flags, numa_mem_id());
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003456
3457 out:
3458 return objp;
3459}
3460#else
3461
3462static __always_inline void *
3463__do_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
3464{
3465 return ____cache_alloc(cachep, flags);
3466}
3467
3468#endif /* CONFIG_NUMA */
3469
3470static __always_inline void *
3471__cache_alloc(struct kmem_cache *cachep, gfp_t flags, void *caller)
3472{
3473 unsigned long save_flags;
3474 void *objp;
3475
Benjamin Herrenschmidtdcce2842009-06-18 13:24:12 +10003476 flags &= gfp_allowed_mask;
Pekka Enberg7e85ee02009-06-12 14:03:06 +03003477
Nick Piggincf40bd12009-01-21 08:12:39 +01003478 lockdep_trace_alloc(flags);
3479
Akinobu Mita773ff602008-12-23 19:37:01 +09003480 if (slab_should_failslab(cachep, flags))
Akinobu Mita824ebef2007-05-06 14:49:58 -07003481 return NULL;
3482
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003483 cache_alloc_debugcheck_before(cachep, flags);
3484 local_irq_save(save_flags);
3485 objp = __do_cache_alloc(cachep, flags);
3486 local_irq_restore(save_flags);
3487 objp = cache_alloc_debugcheck_after(cachep, flags, objp, caller);
Catalin Marinasd5cff632009-06-11 13:22:40 +01003488 kmemleak_alloc_recursive(objp, obj_size(cachep), 1, cachep->flags,
3489 flags);
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003490 prefetchw(objp);
3491
Pekka Enbergc175eea2008-05-09 20:35:53 +02003492 if (likely(objp))
3493 kmemcheck_slab_alloc(cachep, flags, objp, obj_size(cachep));
3494
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003495 if (unlikely((flags & __GFP_ZERO) && objp))
3496 memset(objp, 0, obj_size(cachep));
3497
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003498 return objp;
3499}
Christoph Lametere498be72005-09-09 13:03:32 -07003500
3501/*
3502 * Caller needs to acquire correct kmem_list's list_lock
3503 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003504static void free_block(struct kmem_cache *cachep, void **objpp, int nr_objects,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003505 int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003506{
3507 int i;
Christoph Lametere498be72005-09-09 13:03:32 -07003508 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003509
3510 for (i = 0; i < nr_objects; i++) {
3511 void *objp = objpp[i];
3512 struct slab *slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003513
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08003514 slabp = virt_to_slab(objp);
Christoph Lameterff694162005-09-22 21:44:02 -07003515 l3 = cachep->nodelists[node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516 list_del(&slabp->list);
Christoph Lameterff694162005-09-22 21:44:02 -07003517 check_spinlock_acquired_node(cachep, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003518 check_slabp(cachep, slabp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08003519 slab_put_obj(cachep, slabp, objp, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003520 STATS_DEC_ACTIVE(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003521 l3->free_objects++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003522 check_slabp(cachep, slabp);
3523
3524 /* fixup slab chains */
3525 if (slabp->inuse == 0) {
Christoph Lametere498be72005-09-09 13:03:32 -07003526 if (l3->free_objects > l3->free_limit) {
3527 l3->free_objects -= cachep->num;
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07003528 /* No need to drop any previously held
3529 * lock here, even if we have a off-slab slab
3530 * descriptor it is guaranteed to come from
3531 * a different cache, refer to comments before
3532 * alloc_slabmgmt.
3533 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003534 slab_destroy(cachep, slabp);
3535 } else {
Christoph Lametere498be72005-09-09 13:03:32 -07003536 list_add(&slabp->list, &l3->slabs_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003537 }
3538 } else {
3539 /* Unconditionally move a slab to the end of the
3540 * partial list on free - maximum time for the
3541 * other objects to be freed, too.
3542 */
Christoph Lametere498be72005-09-09 13:03:32 -07003543 list_add_tail(&slabp->list, &l3->slabs_partial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003544 }
3545 }
3546}
3547
Pekka Enberg343e0d72006-02-01 03:05:50 -08003548static void cache_flusharray(struct kmem_cache *cachep, struct array_cache *ac)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003549{
3550 int batchcount;
Christoph Lametere498be72005-09-09 13:03:32 -07003551 struct kmem_list3 *l3;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003552 int node = numa_mem_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553
3554 batchcount = ac->batchcount;
3555#if DEBUG
3556 BUG_ON(!batchcount || batchcount > ac->avail);
3557#endif
3558 check_irq_off();
Christoph Lameterff694162005-09-22 21:44:02 -07003559 l3 = cachep->nodelists[node];
Ingo Molnar873623d2006-07-13 14:44:38 +02003560 spin_lock(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07003561 if (l3->shared) {
3562 struct array_cache *shared_array = l3->shared;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003563 int max = shared_array->limit - shared_array->avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003564 if (max) {
3565 if (batchcount > max)
3566 batchcount = max;
Christoph Lametere498be72005-09-09 13:03:32 -07003567 memcpy(&(shared_array->entry[shared_array->avail]),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003568 ac->entry, sizeof(void *) * batchcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003569 shared_array->avail += batchcount;
3570 goto free_done;
3571 }
3572 }
3573
Christoph Lameterff694162005-09-22 21:44:02 -07003574 free_block(cachep, ac->entry, batchcount, node);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003575free_done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003576#if STATS
3577 {
3578 int i = 0;
3579 struct list_head *p;
3580
Christoph Lametere498be72005-09-09 13:03:32 -07003581 p = l3->slabs_free.next;
3582 while (p != &(l3->slabs_free)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003583 struct slab *slabp;
3584
3585 slabp = list_entry(p, struct slab, list);
3586 BUG_ON(slabp->inuse);
3587
3588 i++;
3589 p = p->next;
3590 }
3591 STATS_SET_FREEABLE(cachep, i);
3592 }
3593#endif
Christoph Lametere498be72005-09-09 13:03:32 -07003594 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003595 ac->avail -= batchcount;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003596 memmove(ac->entry, &(ac->entry[batchcount]), sizeof(void *)*ac->avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003597}
3598
3599/*
Andrew Mortona737b3e2006-03-22 00:08:11 -08003600 * Release an obj back to its cache. If the obj has a constructed state, it must
3601 * be in this state _before_ it is released. Called with disabled ints.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003602 */
Ingo Molnar873623d2006-07-13 14:44:38 +02003603static inline void __cache_free(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003604{
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003605 struct array_cache *ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606
3607 check_irq_off();
Catalin Marinasd5cff632009-06-11 13:22:40 +01003608 kmemleak_free_recursive(objp, cachep->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003609 objp = cache_free_debugcheck(cachep, objp, __builtin_return_address(0));
3610
Pekka Enbergc175eea2008-05-09 20:35:53 +02003611 kmemcheck_slab_free(cachep, objp, obj_size(cachep));
3612
Siddha, Suresh B1807a1a2007-08-22 14:01:49 -07003613 /*
3614 * Skip calling cache_free_alien() when the platform is not numa.
3615 * This will avoid cache misses that happen while accessing slabp (which
3616 * is per page memory reference) to get nodeid. Instead use a global
3617 * variable to skip the call, which is mostly likely to be present in
3618 * the cache.
3619 */
Mel Gormanb6e68bc2009-06-16 15:32:16 -07003620 if (nr_online_nodes > 1 && cache_free_alien(cachep, objp))
Pekka Enberg729bd0b2006-06-23 02:03:05 -07003621 return;
Christoph Lametere498be72005-09-09 13:03:32 -07003622
Linus Torvalds1da177e2005-04-16 15:20:36 -07003623 if (likely(ac->avail < ac->limit)) {
3624 STATS_INC_FREEHIT(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003625 ac->entry[ac->avail++] = objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003626 return;
3627 } else {
3628 STATS_INC_FREEMISS(cachep);
3629 cache_flusharray(cachep, ac);
Christoph Lametere498be72005-09-09 13:03:32 -07003630 ac->entry[ac->avail++] = objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003631 }
3632}
3633
3634/**
3635 * kmem_cache_alloc - Allocate an object
3636 * @cachep: The cache to allocate from.
3637 * @flags: See kmalloc().
3638 *
3639 * Allocate an object from this cache. The flags are only relevant
3640 * if the cache has no available objects.
3641 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003642void *kmem_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003643{
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003644 void *ret = __cache_alloc(cachep, flags, __builtin_return_address(0));
3645
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003646 trace_kmem_cache_alloc(_RET_IP_, ret,
3647 obj_size(cachep), cachep->buffer_size, flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003648
3649 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003650}
3651EXPORT_SYMBOL(kmem_cache_alloc);
3652
Li Zefan0f24f122009-12-11 15:45:30 +08003653#ifdef CONFIG_TRACING
Steven Rostedt85beb582010-11-24 16:23:34 -05003654void *
3655kmem_cache_alloc_trace(size_t size, struct kmem_cache *cachep, gfp_t flags)
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003656{
Steven Rostedt85beb582010-11-24 16:23:34 -05003657 void *ret;
3658
3659 ret = __cache_alloc(cachep, flags, __builtin_return_address(0));
3660
3661 trace_kmalloc(_RET_IP_, ret,
3662 size, slab_buffer_size(cachep), flags);
3663 return ret;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003664}
Steven Rostedt85beb582010-11-24 16:23:34 -05003665EXPORT_SYMBOL(kmem_cache_alloc_trace);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003666#endif
3667
Linus Torvalds1da177e2005-04-16 15:20:36 -07003668#ifdef CONFIG_NUMA
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003669void *kmem_cache_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid)
3670{
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003671 void *ret = __cache_alloc_node(cachep, flags, nodeid,
3672 __builtin_return_address(0));
3673
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003674 trace_kmem_cache_alloc_node(_RET_IP_, ret,
3675 obj_size(cachep), cachep->buffer_size,
3676 flags, nodeid);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003677
3678 return ret;
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003679}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003680EXPORT_SYMBOL(kmem_cache_alloc_node);
3681
Li Zefan0f24f122009-12-11 15:45:30 +08003682#ifdef CONFIG_TRACING
Steven Rostedt85beb582010-11-24 16:23:34 -05003683void *kmem_cache_alloc_node_trace(size_t size,
3684 struct kmem_cache *cachep,
3685 gfp_t flags,
3686 int nodeid)
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003687{
Steven Rostedt85beb582010-11-24 16:23:34 -05003688 void *ret;
3689
3690 ret = __cache_alloc_node(cachep, flags, nodeid,
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003691 __builtin_return_address(0));
Steven Rostedt85beb582010-11-24 16:23:34 -05003692 trace_kmalloc_node(_RET_IP_, ret,
3693 size, slab_buffer_size(cachep),
3694 flags, nodeid);
3695 return ret;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003696}
Steven Rostedt85beb582010-11-24 16:23:34 -05003697EXPORT_SYMBOL(kmem_cache_alloc_node_trace);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003698#endif
3699
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003700static __always_inline void *
3701__do_kmalloc_node(size_t size, gfp_t flags, int node, void *caller)
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003702{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003703 struct kmem_cache *cachep;
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003704
3705 cachep = kmem_find_general_cachep(size, flags);
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003706 if (unlikely(ZERO_OR_NULL_PTR(cachep)))
3707 return cachep;
Steven Rostedt85beb582010-11-24 16:23:34 -05003708 return kmem_cache_alloc_node_trace(size, cachep, flags, node);
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003709}
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003710
Li Zefan0bb38a52009-12-11 15:45:50 +08003711#if defined(CONFIG_DEBUG_SLAB) || defined(CONFIG_TRACING)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003712void *__kmalloc_node(size_t size, gfp_t flags, int node)
3713{
3714 return __do_kmalloc_node(size, flags, node,
3715 __builtin_return_address(0));
3716}
Christoph Hellwigdbe5e692006-09-25 23:31:36 -07003717EXPORT_SYMBOL(__kmalloc_node);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003718
3719void *__kmalloc_node_track_caller(size_t size, gfp_t flags,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003720 int node, unsigned long caller)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003721{
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003722 return __do_kmalloc_node(size, flags, node, (void *)caller);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003723}
3724EXPORT_SYMBOL(__kmalloc_node_track_caller);
3725#else
3726void *__kmalloc_node(size_t size, gfp_t flags, int node)
3727{
3728 return __do_kmalloc_node(size, flags, node, NULL);
3729}
3730EXPORT_SYMBOL(__kmalloc_node);
Li Zefan0bb38a52009-12-11 15:45:50 +08003731#endif /* CONFIG_DEBUG_SLAB || CONFIG_TRACING */
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003732#endif /* CONFIG_NUMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003733
3734/**
Paul Drynoff800590f2006-06-23 02:03:48 -07003735 * __do_kmalloc - allocate memory
Linus Torvalds1da177e2005-04-16 15:20:36 -07003736 * @size: how many bytes of memory are required.
Paul Drynoff800590f2006-06-23 02:03:48 -07003737 * @flags: the type of memory to allocate (see kmalloc).
Randy Dunlap911851e2006-03-22 00:08:14 -08003738 * @caller: function caller for debug tracking of the caller
Linus Torvalds1da177e2005-04-16 15:20:36 -07003739 */
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003740static __always_inline void *__do_kmalloc(size_t size, gfp_t flags,
3741 void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003742{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003743 struct kmem_cache *cachep;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003744 void *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003745
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003746 /* If you want to save a few bytes .text space: replace
3747 * __ with kmem_.
3748 * Then kmalloc uses the uninlined functions instead of the inline
3749 * functions.
3750 */
3751 cachep = __find_general_cachep(size, flags);
Linus Torvaldsa5c96d82007-07-19 13:17:15 -07003752 if (unlikely(ZERO_OR_NULL_PTR(cachep)))
3753 return cachep;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003754 ret = __cache_alloc(cachep, flags, caller);
3755
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003756 trace_kmalloc((unsigned long) caller, ret,
3757 size, cachep->buffer_size, flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003758
3759 return ret;
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003760}
3761
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003762
Li Zefan0bb38a52009-12-11 15:45:50 +08003763#if defined(CONFIG_DEBUG_SLAB) || defined(CONFIG_TRACING)
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003764void *__kmalloc(size_t size, gfp_t flags)
3765{
Al Viro871751e2006-03-25 03:06:39 -08003766 return __do_kmalloc(size, flags, __builtin_return_address(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003767}
3768EXPORT_SYMBOL(__kmalloc);
3769
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003770void *__kmalloc_track_caller(size_t size, gfp_t flags, unsigned long caller)
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003771{
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003772 return __do_kmalloc(size, flags, (void *)caller);
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003773}
3774EXPORT_SYMBOL(__kmalloc_track_caller);
Christoph Hellwig1d2c8ee2006-10-04 02:15:25 -07003775
3776#else
3777void *__kmalloc(size_t size, gfp_t flags)
3778{
3779 return __do_kmalloc(size, flags, NULL);
3780}
3781EXPORT_SYMBOL(__kmalloc);
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003782#endif
3783
Linus Torvalds1da177e2005-04-16 15:20:36 -07003784/**
3785 * kmem_cache_free - Deallocate an object
3786 * @cachep: The cache the allocation was from.
3787 * @objp: The previously allocated object.
3788 *
3789 * Free an object which was previously allocated from this
3790 * cache.
3791 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003792void kmem_cache_free(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003793{
3794 unsigned long flags;
3795
3796 local_irq_save(flags);
Ingo Molnar898552c2007-02-10 01:44:57 -08003797 debug_check_no_locks_freed(objp, obj_size(cachep));
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -07003798 if (!(cachep->flags & SLAB_DEBUG_OBJECTS))
3799 debug_check_no_obj_freed(objp, obj_size(cachep));
Ingo Molnar873623d2006-07-13 14:44:38 +02003800 __cache_free(cachep, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003801 local_irq_restore(flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003802
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003803 trace_kmem_cache_free(_RET_IP_, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003804}
3805EXPORT_SYMBOL(kmem_cache_free);
3806
3807/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003808 * kfree - free previously allocated memory
3809 * @objp: pointer returned by kmalloc.
3810 *
Pekka Enberg80e93ef2005-09-09 13:10:16 -07003811 * If @objp is NULL, no operation is performed.
3812 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003813 * Don't free memory not originally allocated by kmalloc()
3814 * or you will run into trouble.
3815 */
3816void kfree(const void *objp)
3817{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003818 struct kmem_cache *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003819 unsigned long flags;
3820
Pekka Enberg2121db72009-03-25 11:05:57 +02003821 trace_kfree(_RET_IP_, objp);
3822
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003823 if (unlikely(ZERO_OR_NULL_PTR(objp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824 return;
3825 local_irq_save(flags);
3826 kfree_debugcheck(objp);
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08003827 c = virt_to_cache(objp);
Ingo Molnarf9b84042006-06-27 02:54:49 -07003828 debug_check_no_locks_freed(objp, obj_size(c));
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -07003829 debug_check_no_obj_freed(objp, obj_size(c));
Ingo Molnar873623d2006-07-13 14:44:38 +02003830 __cache_free(c, (void *)objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003831 local_irq_restore(flags);
3832}
3833EXPORT_SYMBOL(kfree);
3834
Pekka Enberg343e0d72006-02-01 03:05:50 -08003835unsigned int kmem_cache_size(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003836{
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003837 return obj_size(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003838}
3839EXPORT_SYMBOL(kmem_cache_size);
3840
Christoph Lametere498be72005-09-09 13:03:32 -07003841/*
Simon Arlott183ff222007-10-20 01:27:18 +02003842 * This initializes kmem_list3 or resizes various caches for all nodes.
Christoph Lametere498be72005-09-09 13:03:32 -07003843 */
Pekka Enberg83b519e2009-06-10 19:40:04 +03003844static int alloc_kmemlist(struct kmem_cache *cachep, gfp_t gfp)
Christoph Lametere498be72005-09-09 13:03:32 -07003845{
3846 int node;
3847 struct kmem_list3 *l3;
Christoph Lametercafeb022006-03-25 03:06:46 -08003848 struct array_cache *new_shared;
Paul Menage3395ee02006-12-06 20:32:16 -08003849 struct array_cache **new_alien = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07003850
Mel Gorman9c09a952008-01-24 05:49:54 -08003851 for_each_online_node(node) {
Christoph Lametercafeb022006-03-25 03:06:46 -08003852
Paul Menage3395ee02006-12-06 20:32:16 -08003853 if (use_alien_caches) {
Pekka Enberg83b519e2009-06-10 19:40:04 +03003854 new_alien = alloc_alien_cache(node, cachep->limit, gfp);
Paul Menage3395ee02006-12-06 20:32:16 -08003855 if (!new_alien)
3856 goto fail;
3857 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003858
Eric Dumazet63109842007-05-06 14:49:28 -07003859 new_shared = NULL;
3860 if (cachep->shared) {
3861 new_shared = alloc_arraycache(node,
Christoph Lameter0718dc22006-03-25 03:06:47 -08003862 cachep->shared*cachep->batchcount,
Pekka Enberg83b519e2009-06-10 19:40:04 +03003863 0xbaadf00d, gfp);
Eric Dumazet63109842007-05-06 14:49:28 -07003864 if (!new_shared) {
3865 free_alien_cache(new_alien);
3866 goto fail;
3867 }
Christoph Lameter0718dc22006-03-25 03:06:47 -08003868 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003869
Andrew Mortona737b3e2006-03-22 00:08:11 -08003870 l3 = cachep->nodelists[node];
3871 if (l3) {
Christoph Lametercafeb022006-03-25 03:06:46 -08003872 struct array_cache *shared = l3->shared;
3873
Christoph Lametere498be72005-09-09 13:03:32 -07003874 spin_lock_irq(&l3->list_lock);
3875
Christoph Lametercafeb022006-03-25 03:06:46 -08003876 if (shared)
Christoph Lameter0718dc22006-03-25 03:06:47 -08003877 free_block(cachep, shared->entry,
3878 shared->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -07003879
Christoph Lametercafeb022006-03-25 03:06:46 -08003880 l3->shared = new_shared;
3881 if (!l3->alien) {
Christoph Lametere498be72005-09-09 13:03:32 -07003882 l3->alien = new_alien;
3883 new_alien = NULL;
3884 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003885 l3->free_limit = (1 + nr_cpus_node(node)) *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003886 cachep->batchcount + cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07003887 spin_unlock_irq(&l3->list_lock);
Christoph Lametercafeb022006-03-25 03:06:46 -08003888 kfree(shared);
Christoph Lametere498be72005-09-09 13:03:32 -07003889 free_alien_cache(new_alien);
3890 continue;
3891 }
Pekka Enberg83b519e2009-06-10 19:40:04 +03003892 l3 = kmalloc_node(sizeof(struct kmem_list3), gfp, node);
Christoph Lameter0718dc22006-03-25 03:06:47 -08003893 if (!l3) {
3894 free_alien_cache(new_alien);
3895 kfree(new_shared);
Christoph Lametere498be72005-09-09 13:03:32 -07003896 goto fail;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003897 }
Christoph Lametere498be72005-09-09 13:03:32 -07003898
3899 kmem_list3_init(l3);
3900 l3->next_reap = jiffies + REAPTIMEOUT_LIST3 +
Andrew Mortona737b3e2006-03-22 00:08:11 -08003901 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
Christoph Lametercafeb022006-03-25 03:06:46 -08003902 l3->shared = new_shared;
Christoph Lametere498be72005-09-09 13:03:32 -07003903 l3->alien = new_alien;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003904 l3->free_limit = (1 + nr_cpus_node(node)) *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003905 cachep->batchcount + cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07003906 cachep->nodelists[node] = l3;
3907 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003908 return 0;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003909
Andrew Mortona737b3e2006-03-22 00:08:11 -08003910fail:
Christoph Lameter0718dc22006-03-25 03:06:47 -08003911 if (!cachep->next.next) {
3912 /* Cache is not active yet. Roll back what we did */
3913 node--;
3914 while (node >= 0) {
3915 if (cachep->nodelists[node]) {
3916 l3 = cachep->nodelists[node];
3917
3918 kfree(l3->shared);
3919 free_alien_cache(l3->alien);
3920 kfree(l3);
3921 cachep->nodelists[node] = NULL;
3922 }
3923 node--;
3924 }
3925 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003926 return -ENOMEM;
Christoph Lametere498be72005-09-09 13:03:32 -07003927}
3928
Linus Torvalds1da177e2005-04-16 15:20:36 -07003929struct ccupdate_struct {
Pekka Enberg343e0d72006-02-01 03:05:50 -08003930 struct kmem_cache *cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003931 struct array_cache *new[NR_CPUS];
3932};
3933
3934static void do_ccupdate_local(void *info)
3935{
Andrew Mortona737b3e2006-03-22 00:08:11 -08003936 struct ccupdate_struct *new = info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003937 struct array_cache *old;
3938
3939 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003940 old = cpu_cache_get(new->cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003941
Linus Torvalds1da177e2005-04-16 15:20:36 -07003942 new->cachep->array[smp_processor_id()] = new->new[smp_processor_id()];
3943 new->new[smp_processor_id()] = old;
3944}
3945
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -08003946/* Always called with the cache_chain_mutex held */
Andrew Mortona737b3e2006-03-22 00:08:11 -08003947static int do_tune_cpucache(struct kmem_cache *cachep, int limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03003948 int batchcount, int shared, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003949{
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003950 struct ccupdate_struct *new;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07003951 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003952
Pekka Enberg83b519e2009-06-10 19:40:04 +03003953 new = kzalloc(sizeof(*new), gfp);
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003954 if (!new)
3955 return -ENOMEM;
3956
Christoph Lametere498be72005-09-09 13:03:32 -07003957 for_each_online_cpu(i) {
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003958 new->new[i] = alloc_arraycache(cpu_to_mem(i), limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03003959 batchcount, gfp);
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003960 if (!new->new[i]) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003961 for (i--; i >= 0; i--)
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003962 kfree(new->new[i]);
3963 kfree(new);
Christoph Lametere498be72005-09-09 13:03:32 -07003964 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965 }
3966 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003967 new->cachep = cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003968
Jens Axboe15c8b6c2008-05-09 09:39:44 +02003969 on_each_cpu(do_ccupdate_local, (void *)new, 1);
Christoph Lametere498be72005-09-09 13:03:32 -07003970
Linus Torvalds1da177e2005-04-16 15:20:36 -07003971 check_irq_on();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003972 cachep->batchcount = batchcount;
3973 cachep->limit = limit;
Christoph Lametere498be72005-09-09 13:03:32 -07003974 cachep->shared = shared;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003975
Christoph Lametere498be72005-09-09 13:03:32 -07003976 for_each_online_cpu(i) {
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003977 struct array_cache *ccold = new->new[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003978 if (!ccold)
3979 continue;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003980 spin_lock_irq(&cachep->nodelists[cpu_to_mem(i)]->list_lock);
3981 free_block(cachep, ccold->entry, ccold->avail, cpu_to_mem(i));
3982 spin_unlock_irq(&cachep->nodelists[cpu_to_mem(i)]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003983 kfree(ccold);
3984 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003985 kfree(new);
Pekka Enberg83b519e2009-06-10 19:40:04 +03003986 return alloc_kmemlist(cachep, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003987}
3988
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -08003989/* Called with cache_chain_mutex held always */
Pekka Enberg83b519e2009-06-10 19:40:04 +03003990static int enable_cpucache(struct kmem_cache *cachep, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003991{
3992 int err;
3993 int limit, shared;
3994
Andrew Mortona737b3e2006-03-22 00:08:11 -08003995 /*
3996 * The head array serves three purposes:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003997 * - create a LIFO ordering, i.e. return objects that are cache-warm
3998 * - reduce the number of spinlock operations.
Andrew Mortona737b3e2006-03-22 00:08:11 -08003999 * - reduce the number of linked list operations on the slab and
Linus Torvalds1da177e2005-04-16 15:20:36 -07004000 * bufctl chains: array operations are cheaper.
4001 * The numbers are guessed, we should auto-tune as described by
4002 * Bonwick.
4003 */
Manfred Spraul3dafccf2006-02-01 03:05:42 -08004004 if (cachep->buffer_size > 131072)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004005 limit = 1;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08004006 else if (cachep->buffer_size > PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004007 limit = 8;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08004008 else if (cachep->buffer_size > 1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004009 limit = 24;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08004010 else if (cachep->buffer_size > 256)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004011 limit = 54;
4012 else
4013 limit = 120;
4014
Andrew Mortona737b3e2006-03-22 00:08:11 -08004015 /*
4016 * CPU bound tasks (e.g. network routing) can exhibit cpu bound
Linus Torvalds1da177e2005-04-16 15:20:36 -07004017 * allocation behaviour: Most allocs on one cpu, most free operations
4018 * on another cpu. For these cases, an efficient object passing between
4019 * cpus is necessary. This is provided by a shared array. The array
4020 * replaces Bonwick's magazine layer.
4021 * On uniprocessor, it's functionally equivalent (but less efficient)
4022 * to a larger limit. Thus disabled by default.
4023 */
4024 shared = 0;
Eric Dumazet364fbb22007-05-06 14:49:27 -07004025 if (cachep->buffer_size <= PAGE_SIZE && num_possible_cpus() > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004026 shared = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004027
4028#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08004029 /*
4030 * With debugging enabled, large batchcount lead to excessively long
4031 * periods with disabled local interrupts. Limit the batchcount
Linus Torvalds1da177e2005-04-16 15:20:36 -07004032 */
4033 if (limit > 32)
4034 limit = 32;
4035#endif
Pekka Enberg83b519e2009-06-10 19:40:04 +03004036 err = do_tune_cpucache(cachep, limit, (limit + 1) / 2, shared, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004037 if (err)
4038 printk(KERN_ERR "enable_cpucache failed for %s, error %d.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004039 cachep->name, -err);
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07004040 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041}
4042
Christoph Lameter1b552532006-03-22 00:09:07 -08004043/*
4044 * Drain an array if it contains any elements taking the l3 lock only if
Christoph Lameterb18e7e62006-03-22 00:09:07 -08004045 * necessary. Note that the l3 listlock also protects the array_cache
4046 * if drain_array() is used on the shared array.
Christoph Lameter1b552532006-03-22 00:09:07 -08004047 */
H Hartley Sweeten68a1b192011-01-11 17:49:32 -06004048static void drain_array(struct kmem_cache *cachep, struct kmem_list3 *l3,
Christoph Lameter1b552532006-03-22 00:09:07 -08004049 struct array_cache *ac, int force, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004050{
4051 int tofree;
4052
Christoph Lameter1b552532006-03-22 00:09:07 -08004053 if (!ac || !ac->avail)
4054 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004055 if (ac->touched && !force) {
4056 ac->touched = 0;
Christoph Lameterb18e7e62006-03-22 00:09:07 -08004057 } else {
Christoph Lameter1b552532006-03-22 00:09:07 -08004058 spin_lock_irq(&l3->list_lock);
Christoph Lameterb18e7e62006-03-22 00:09:07 -08004059 if (ac->avail) {
4060 tofree = force ? ac->avail : (ac->limit + 4) / 5;
4061 if (tofree > ac->avail)
4062 tofree = (ac->avail + 1) / 2;
4063 free_block(cachep, ac->entry, tofree, node);
4064 ac->avail -= tofree;
4065 memmove(ac->entry, &(ac->entry[tofree]),
4066 sizeof(void *) * ac->avail);
4067 }
Christoph Lameter1b552532006-03-22 00:09:07 -08004068 spin_unlock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004069 }
4070}
4071
4072/**
4073 * cache_reap - Reclaim memory from caches.
Randy Dunlap05fb6bf2007-02-28 20:12:13 -08004074 * @w: work descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -07004075 *
4076 * Called from workqueue/eventd every few seconds.
4077 * Purpose:
4078 * - clear the per-cpu caches for this CPU.
4079 * - return freeable pages to the main free memory pool.
4080 *
Andrew Mortona737b3e2006-03-22 00:08:11 -08004081 * If we cannot acquire the cache chain mutex then just give up - we'll try
4082 * again on the next iteration.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004083 */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004084static void cache_reap(struct work_struct *w)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004085{
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004086 struct kmem_cache *searchp;
Christoph Lametere498be72005-09-09 13:03:32 -07004087 struct kmem_list3 *l3;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07004088 int node = numa_mem_id();
Jean Delvarebf6aede2009-04-02 16:56:54 -07004089 struct delayed_work *work = to_delayed_work(w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004090
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004091 if (!mutex_trylock(&cache_chain_mutex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004092 /* Give up. Setup the next iteration. */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004093 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004094
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004095 list_for_each_entry(searchp, &cache_chain, next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004096 check_irq_on();
4097
Christoph Lameter35386e32006-03-22 00:09:05 -08004098 /*
4099 * We only take the l3 lock if absolutely necessary and we
4100 * have established with reasonable certainty that
4101 * we can do some work if the lock was obtained.
4102 */
Christoph Lameteraab22072006-03-22 00:09:06 -08004103 l3 = searchp->nodelists[node];
Christoph Lameter35386e32006-03-22 00:09:05 -08004104
Christoph Lameter8fce4d82006-03-09 17:33:54 -08004105 reap_alien(searchp, l3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004106
Christoph Lameteraab22072006-03-22 00:09:06 -08004107 drain_array(searchp, l3, cpu_cache_get(searchp), 0, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004108
Christoph Lameter35386e32006-03-22 00:09:05 -08004109 /*
4110 * These are racy checks but it does not matter
4111 * if we skip one check or scan twice.
4112 */
Christoph Lametere498be72005-09-09 13:03:32 -07004113 if (time_after(l3->next_reap, jiffies))
Christoph Lameter35386e32006-03-22 00:09:05 -08004114 goto next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004115
Christoph Lametere498be72005-09-09 13:03:32 -07004116 l3->next_reap = jiffies + REAPTIMEOUT_LIST3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004117
Christoph Lameteraab22072006-03-22 00:09:06 -08004118 drain_array(searchp, l3, l3->shared, 0, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004119
Christoph Lametered11d9e2006-06-30 01:55:45 -07004120 if (l3->free_touched)
Christoph Lametere498be72005-09-09 13:03:32 -07004121 l3->free_touched = 0;
Christoph Lametered11d9e2006-06-30 01:55:45 -07004122 else {
4123 int freed;
4124
4125 freed = drain_freelist(searchp, l3, (l3->free_limit +
4126 5 * searchp->num - 1) / (5 * searchp->num));
4127 STATS_ADD_REAPED(searchp, freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128 }
Christoph Lameter35386e32006-03-22 00:09:05 -08004129next:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004130 cond_resched();
4131 }
4132 check_irq_on();
Ingo Molnarfc0abb12006-01-18 17:42:33 -08004133 mutex_unlock(&cache_chain_mutex);
Christoph Lameter8fce4d82006-03-09 17:33:54 -08004134 next_reap_node();
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004135out:
Andrew Mortona737b3e2006-03-22 00:08:11 -08004136 /* Set up the next iteration */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004137 schedule_delayed_work(work, round_jiffies_relative(REAPTIMEOUT_CPUC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004138}
4139
Linus Torvalds158a9622008-01-02 13:04:48 -08004140#ifdef CONFIG_SLABINFO
Linus Torvalds1da177e2005-04-16 15:20:36 -07004141
Pekka Enberg85289f92006-01-08 01:00:36 -08004142static void print_slabinfo_header(struct seq_file *m)
4143{
4144 /*
4145 * Output format version, so at least we can change it
4146 * without _too_ many complaints.
4147 */
4148#if STATS
4149 seq_puts(m, "slabinfo - version: 2.1 (statistics)\n");
4150#else
4151 seq_puts(m, "slabinfo - version: 2.1\n");
4152#endif
4153 seq_puts(m, "# name <active_objs> <num_objs> <objsize> "
4154 "<objperslab> <pagesperslab>");
4155 seq_puts(m, " : tunables <limit> <batchcount> <sharedfactor>");
4156 seq_puts(m, " : slabdata <active_slabs> <num_slabs> <sharedavail>");
4157#if STATS
4158 seq_puts(m, " : globalstat <listallocs> <maxobjs> <grown> <reaped> "
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -07004159 "<error> <maxfreeable> <nodeallocs> <remotefrees> <alienoverflow>");
Pekka Enberg85289f92006-01-08 01:00:36 -08004160 seq_puts(m, " : cpustat <allochit> <allocmiss> <freehit> <freemiss>");
4161#endif
4162 seq_putc(m, '\n');
4163}
4164
Linus Torvalds1da177e2005-04-16 15:20:36 -07004165static void *s_start(struct seq_file *m, loff_t *pos)
4166{
4167 loff_t n = *pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004168
Ingo Molnarfc0abb12006-01-18 17:42:33 -08004169 mutex_lock(&cache_chain_mutex);
Pekka Enberg85289f92006-01-08 01:00:36 -08004170 if (!n)
4171 print_slabinfo_header(m);
Pavel Emelianovb92151b2007-07-15 23:38:04 -07004172
4173 return seq_list_start(&cache_chain, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004174}
4175
4176static void *s_next(struct seq_file *m, void *p, loff_t *pos)
4177{
Pavel Emelianovb92151b2007-07-15 23:38:04 -07004178 return seq_list_next(p, &cache_chain, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004179}
4180
4181static void s_stop(struct seq_file *m, void *p)
4182{
Ingo Molnarfc0abb12006-01-18 17:42:33 -08004183 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004184}
4185
4186static int s_show(struct seq_file *m, void *p)
4187{
Pavel Emelianovb92151b2007-07-15 23:38:04 -07004188 struct kmem_cache *cachep = list_entry(p, struct kmem_cache, next);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004189 struct slab *slabp;
4190 unsigned long active_objs;
4191 unsigned long num_objs;
4192 unsigned long active_slabs = 0;
4193 unsigned long num_slabs, free_objects = 0, shared_avail = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07004194 const char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004195 char *error = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07004196 int node;
4197 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004198
Linus Torvalds1da177e2005-04-16 15:20:36 -07004199 active_objs = 0;
4200 num_slabs = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07004201 for_each_online_node(node) {
4202 l3 = cachep->nodelists[node];
4203 if (!l3)
4204 continue;
4205
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08004206 check_irq_on();
4207 spin_lock_irq(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07004208
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004209 list_for_each_entry(slabp, &l3->slabs_full, list) {
Christoph Lametere498be72005-09-09 13:03:32 -07004210 if (slabp->inuse != cachep->num && !error)
4211 error = "slabs_full accounting error";
4212 active_objs += cachep->num;
4213 active_slabs++;
4214 }
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004215 list_for_each_entry(slabp, &l3->slabs_partial, list) {
Christoph Lametere498be72005-09-09 13:03:32 -07004216 if (slabp->inuse == cachep->num && !error)
4217 error = "slabs_partial inuse accounting error";
4218 if (!slabp->inuse && !error)
4219 error = "slabs_partial/inuse accounting error";
4220 active_objs += slabp->inuse;
4221 active_slabs++;
4222 }
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004223 list_for_each_entry(slabp, &l3->slabs_free, list) {
Christoph Lametere498be72005-09-09 13:03:32 -07004224 if (slabp->inuse && !error)
4225 error = "slabs_free/inuse accounting error";
4226 num_slabs++;
4227 }
4228 free_objects += l3->free_objects;
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08004229 if (l3->shared)
4230 shared_avail += l3->shared->avail;
Christoph Lametere498be72005-09-09 13:03:32 -07004231
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08004232 spin_unlock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004233 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004234 num_slabs += active_slabs;
4235 num_objs = num_slabs * cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07004236 if (num_objs - active_objs != free_objects && !error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004237 error = "free_objects accounting error";
4238
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004239 name = cachep->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004240 if (error)
4241 printk(KERN_ERR "slab: cache %s error: %s\n", name, error);
4242
4243 seq_printf(m, "%-17s %6lu %6lu %6u %4u %4d",
Manfred Spraul3dafccf2006-02-01 03:05:42 -08004244 name, active_objs, num_objs, cachep->buffer_size,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004245 cachep->num, (1 << cachep->gfporder));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004246 seq_printf(m, " : tunables %4u %4u %4u",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004247 cachep->limit, cachep->batchcount, cachep->shared);
Christoph Lametere498be72005-09-09 13:03:32 -07004248 seq_printf(m, " : slabdata %6lu %6lu %6lu",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004249 active_slabs, num_slabs, shared_avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004250#if STATS
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004251 { /* list3 stats */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004252 unsigned long high = cachep->high_mark;
4253 unsigned long allocs = cachep->num_allocations;
4254 unsigned long grown = cachep->grown;
4255 unsigned long reaped = cachep->reaped;
4256 unsigned long errors = cachep->errors;
4257 unsigned long max_freeable = cachep->max_freeable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004258 unsigned long node_allocs = cachep->node_allocs;
Christoph Lametere498be72005-09-09 13:03:32 -07004259 unsigned long node_frees = cachep->node_frees;
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -07004260 unsigned long overflows = cachep->node_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004261
Joe Perchese92dd4f2010-03-26 19:27:58 -07004262 seq_printf(m, " : globalstat %7lu %6lu %5lu %4lu "
4263 "%4lu %4lu %4lu %4lu %4lu",
4264 allocs, high, grown,
4265 reaped, errors, max_freeable, node_allocs,
4266 node_frees, overflows);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004267 }
4268 /* cpu stats */
4269 {
4270 unsigned long allochit = atomic_read(&cachep->allochit);
4271 unsigned long allocmiss = atomic_read(&cachep->allocmiss);
4272 unsigned long freehit = atomic_read(&cachep->freehit);
4273 unsigned long freemiss = atomic_read(&cachep->freemiss);
4274
4275 seq_printf(m, " : cpustat %6lu %6lu %6lu %6lu",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004276 allochit, allocmiss, freehit, freemiss);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004277 }
4278#endif
4279 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07004280 return 0;
4281}
4282
4283/*
4284 * slabinfo_op - iterator that generates /proc/slabinfo
4285 *
4286 * Output layout:
4287 * cache-name
4288 * num-active-objs
4289 * total-objs
4290 * object size
4291 * num-active-slabs
4292 * total-slabs
4293 * num-pages-per-slab
4294 * + further values on SMP and with statistics enabled
4295 */
4296
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04004297static const struct seq_operations slabinfo_op = {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004298 .start = s_start,
4299 .next = s_next,
4300 .stop = s_stop,
4301 .show = s_show,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004302};
4303
4304#define MAX_SLABINFO_WRITE 128
4305/**
4306 * slabinfo_write - Tuning for the slab allocator
4307 * @file: unused
4308 * @buffer: user buffer
4309 * @count: data length
4310 * @ppos: unused
4311 */
H Hartley Sweeten68a1b192011-01-11 17:49:32 -06004312static ssize_t slabinfo_write(struct file *file, const char __user *buffer,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004313 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004314{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004315 char kbuf[MAX_SLABINFO_WRITE + 1], *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004316 int limit, batchcount, shared, res;
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004317 struct kmem_cache *cachep;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004318
Linus Torvalds1da177e2005-04-16 15:20:36 -07004319 if (count > MAX_SLABINFO_WRITE)
4320 return -EINVAL;
4321 if (copy_from_user(&kbuf, buffer, count))
4322 return -EFAULT;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004323 kbuf[MAX_SLABINFO_WRITE] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07004324
4325 tmp = strchr(kbuf, ' ');
4326 if (!tmp)
4327 return -EINVAL;
4328 *tmp = '\0';
4329 tmp++;
4330 if (sscanf(tmp, " %d %d %d", &limit, &batchcount, &shared) != 3)
4331 return -EINVAL;
4332
4333 /* Find the cache in the chain of caches. */
Ingo Molnarfc0abb12006-01-18 17:42:33 -08004334 mutex_lock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004335 res = -EINVAL;
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004336 list_for_each_entry(cachep, &cache_chain, next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004337 if (!strcmp(cachep->name, kbuf)) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08004338 if (limit < 1 || batchcount < 1 ||
4339 batchcount > limit || shared < 0) {
Christoph Lametere498be72005-09-09 13:03:32 -07004340 res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004341 } else {
Christoph Lametere498be72005-09-09 13:03:32 -07004342 res = do_tune_cpucache(cachep, limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03004343 batchcount, shared,
4344 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004345 }
4346 break;
4347 }
4348 }
Ingo Molnarfc0abb12006-01-18 17:42:33 -08004349 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004350 if (res >= 0)
4351 res = count;
4352 return res;
4353}
Al Viro871751e2006-03-25 03:06:39 -08004354
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04004355static int slabinfo_open(struct inode *inode, struct file *file)
4356{
4357 return seq_open(file, &slabinfo_op);
4358}
4359
4360static const struct file_operations proc_slabinfo_operations = {
4361 .open = slabinfo_open,
4362 .read = seq_read,
4363 .write = slabinfo_write,
4364 .llseek = seq_lseek,
4365 .release = seq_release,
4366};
4367
Al Viro871751e2006-03-25 03:06:39 -08004368#ifdef CONFIG_DEBUG_SLAB_LEAK
4369
4370static void *leaks_start(struct seq_file *m, loff_t *pos)
4371{
Al Viro871751e2006-03-25 03:06:39 -08004372 mutex_lock(&cache_chain_mutex);
Pavel Emelianovb92151b2007-07-15 23:38:04 -07004373 return seq_list_start(&cache_chain, *pos);
Al Viro871751e2006-03-25 03:06:39 -08004374}
4375
4376static inline int add_caller(unsigned long *n, unsigned long v)
4377{
4378 unsigned long *p;
4379 int l;
4380 if (!v)
4381 return 1;
4382 l = n[1];
4383 p = n + 2;
4384 while (l) {
4385 int i = l/2;
4386 unsigned long *q = p + 2 * i;
4387 if (*q == v) {
4388 q[1]++;
4389 return 1;
4390 }
4391 if (*q > v) {
4392 l = i;
4393 } else {
4394 p = q + 2;
4395 l -= i + 1;
4396 }
4397 }
4398 if (++n[1] == n[0])
4399 return 0;
4400 memmove(p + 2, p, n[1] * 2 * sizeof(unsigned long) - ((void *)p - (void *)n));
4401 p[0] = v;
4402 p[1] = 1;
4403 return 1;
4404}
4405
4406static void handle_slab(unsigned long *n, struct kmem_cache *c, struct slab *s)
4407{
4408 void *p;
4409 int i;
4410 if (n[0] == n[1])
4411 return;
4412 for (i = 0, p = s->s_mem; i < c->num; i++, p += c->buffer_size) {
4413 if (slab_bufctl(s)[i] != BUFCTL_ACTIVE)
4414 continue;
4415 if (!add_caller(n, (unsigned long)*dbg_userword(c, p)))
4416 return;
4417 }
4418}
4419
4420static void show_symbol(struct seq_file *m, unsigned long address)
4421{
4422#ifdef CONFIG_KALLSYMS
Al Viro871751e2006-03-25 03:06:39 -08004423 unsigned long offset, size;
Tejun Heo9281ace2007-07-17 04:03:51 -07004424 char modname[MODULE_NAME_LEN], name[KSYM_NAME_LEN];
Al Viro871751e2006-03-25 03:06:39 -08004425
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004426 if (lookup_symbol_attrs(address, &size, &offset, modname, name) == 0) {
Al Viro871751e2006-03-25 03:06:39 -08004427 seq_printf(m, "%s+%#lx/%#lx", name, offset, size);
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004428 if (modname[0])
Al Viro871751e2006-03-25 03:06:39 -08004429 seq_printf(m, " [%s]", modname);
4430 return;
4431 }
4432#endif
4433 seq_printf(m, "%p", (void *)address);
4434}
4435
4436static int leaks_show(struct seq_file *m, void *p)
4437{
Pavel Emelianovb92151b2007-07-15 23:38:04 -07004438 struct kmem_cache *cachep = list_entry(p, struct kmem_cache, next);
Al Viro871751e2006-03-25 03:06:39 -08004439 struct slab *slabp;
4440 struct kmem_list3 *l3;
4441 const char *name;
4442 unsigned long *n = m->private;
4443 int node;
4444 int i;
4445
4446 if (!(cachep->flags & SLAB_STORE_USER))
4447 return 0;
4448 if (!(cachep->flags & SLAB_RED_ZONE))
4449 return 0;
4450
4451 /* OK, we can do it */
4452
4453 n[1] = 0;
4454
4455 for_each_online_node(node) {
4456 l3 = cachep->nodelists[node];
4457 if (!l3)
4458 continue;
4459
4460 check_irq_on();
4461 spin_lock_irq(&l3->list_lock);
4462
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004463 list_for_each_entry(slabp, &l3->slabs_full, list)
Al Viro871751e2006-03-25 03:06:39 -08004464 handle_slab(n, cachep, slabp);
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004465 list_for_each_entry(slabp, &l3->slabs_partial, list)
Al Viro871751e2006-03-25 03:06:39 -08004466 handle_slab(n, cachep, slabp);
Al Viro871751e2006-03-25 03:06:39 -08004467 spin_unlock_irq(&l3->list_lock);
4468 }
4469 name = cachep->name;
4470 if (n[0] == n[1]) {
4471 /* Increase the buffer size */
4472 mutex_unlock(&cache_chain_mutex);
4473 m->private = kzalloc(n[0] * 4 * sizeof(unsigned long), GFP_KERNEL);
4474 if (!m->private) {
4475 /* Too bad, we are really out */
4476 m->private = n;
4477 mutex_lock(&cache_chain_mutex);
4478 return -ENOMEM;
4479 }
4480 *(unsigned long *)m->private = n[0] * 2;
4481 kfree(n);
4482 mutex_lock(&cache_chain_mutex);
4483 /* Now make sure this entry will be retried */
4484 m->count = m->size;
4485 return 0;
4486 }
4487 for (i = 0; i < n[1]; i++) {
4488 seq_printf(m, "%s: %lu ", name, n[2*i+3]);
4489 show_symbol(m, n[2*i+2]);
4490 seq_putc(m, '\n');
4491 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004492
Al Viro871751e2006-03-25 03:06:39 -08004493 return 0;
4494}
4495
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004496static const struct seq_operations slabstats_op = {
Al Viro871751e2006-03-25 03:06:39 -08004497 .start = leaks_start,
4498 .next = s_next,
4499 .stop = s_stop,
4500 .show = leaks_show,
4501};
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004502
4503static int slabstats_open(struct inode *inode, struct file *file)
4504{
4505 unsigned long *n = kzalloc(PAGE_SIZE, GFP_KERNEL);
4506 int ret = -ENOMEM;
4507 if (n) {
4508 ret = seq_open(file, &slabstats_op);
4509 if (!ret) {
4510 struct seq_file *m = file->private_data;
4511 *n = PAGE_SIZE / (2 * sizeof(unsigned long));
4512 m->private = n;
4513 n = NULL;
4514 }
4515 kfree(n);
4516 }
4517 return ret;
4518}
4519
4520static const struct file_operations proc_slabstats_operations = {
4521 .open = slabstats_open,
4522 .read = seq_read,
4523 .llseek = seq_lseek,
4524 .release = seq_release_private,
4525};
Al Viro871751e2006-03-25 03:06:39 -08004526#endif
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004527
4528static int __init slab_proc_init(void)
4529{
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04004530 proc_create("slabinfo",S_IWUSR|S_IRUGO,NULL,&proc_slabinfo_operations);
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004531#ifdef CONFIG_DEBUG_SLAB_LEAK
4532 proc_create("slab_allocators", 0, NULL, &proc_slabstats_operations);
4533#endif
4534 return 0;
4535}
4536module_init(slab_proc_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004537#endif
4538
Manfred Spraul00e145b2005-09-03 15:55:07 -07004539/**
4540 * ksize - get the actual amount of memory allocated for a given object
4541 * @objp: Pointer to the object
4542 *
4543 * kmalloc may internally round up allocations and return more memory
4544 * than requested. ksize() can be used to determine the actual amount of
4545 * memory allocated. The caller may use this additional memory, even though
4546 * a smaller amount of memory was initially specified with the kmalloc call.
4547 * The caller must guarantee that objp points to a valid object previously
4548 * allocated with either kmalloc() or kmem_cache_alloc(). The object
4549 * must not be freed during the duration of the call.
4550 */
Pekka Enbergfd76bab2007-05-06 14:48:40 -07004551size_t ksize(const void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004552{
Christoph Lameteref8b4522007-10-16 01:24:46 -07004553 BUG_ON(!objp);
4554 if (unlikely(objp == ZERO_SIZE_PTR))
Manfred Spraul00e145b2005-09-03 15:55:07 -07004555 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004556
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08004557 return obj_size(virt_to_cache(objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004558}
Kirill A. Shutemovb1aabec2009-02-10 15:21:44 +02004559EXPORT_SYMBOL(ksize);