blob: f257d4dd474db5f3ee0ed42016b86dd3d5b02bc4 [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 Dobriyana0ec95a82008-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>
Zhaolei02af61b2009-04-10 14:26:18 +0800105#include <linux/kmemtrace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106#include <linux/rcupdate.h>
Paulo Marques543537b2005-06-23 00:09:02 -0700107#include <linux/string.h>
Andrew Morton138ae662006-12-06 20:36:41 -0800108#include <linux/uaccess.h>
Christoph Lametere498be72005-09-09 13:03:32 -0700109#include <linux/nodemask.h>
Catalin Marinasd5cff632009-06-11 13:22:40 +0100110#include <linux/kmemleak.h>
Christoph Lameterdc85da12006-01-18 17:42:36 -0800111#include <linux/mempolicy.h>
Ingo Molnarfc0abb12006-01-18 17:42:33 -0800112#include <linux/mutex.h>
Akinobu Mita8a8b6502006-12-08 02:39:44 -0800113#include <linux/fault-inject.h>
Ingo Molnare7eebaf2006-06-27 02:54:55 -0700114#include <linux/rtmutex.h>
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800115#include <linux/reciprocal_div.h>
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700116#include <linux/debugobjects.h>
Pekka Enbergc175eea2008-05-09 20:35:53 +0200117#include <linux/kmemcheck.h>
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_MINALIGN
148/*
149 * Enforce a minimum alignment for the kmalloc caches.
150 * Usually, the kmalloc caches are cache_line_size() aligned, except when
151 * DEBUG and FORCED_DEBUG are enabled, then they are BYTES_PER_WORD aligned.
152 * Some archs want to perform DMA into kmalloc caches and need a guaranteed
David Woodhouseb46b8f12007-05-08 00:22:59 -0700153 * alignment larger than the alignment of a 64-bit integer.
154 * ARCH_KMALLOC_MINALIGN allows that.
155 * Note that increasing this value may disable some debug features.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 */
David Woodhouseb46b8f12007-05-08 00:22:59 -0700157#define ARCH_KMALLOC_MINALIGN __alignof__(unsigned long long)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158#endif
159
160#ifndef ARCH_SLAB_MINALIGN
161/*
162 * Enforce a minimum alignment for all caches.
163 * Intended for archs that get misalignment faults even for BYTES_PER_WORD
164 * aligned buffers. Includes ARCH_KMALLOC_MINALIGN.
165 * If possible: Do not enable this flag for CONFIG_DEBUG_SLAB, it disables
166 * some debug features.
167 */
168#define ARCH_SLAB_MINALIGN 0
169#endif
170
171#ifndef ARCH_KMALLOC_FLAGS
172#define ARCH_KMALLOC_FLAGS SLAB_HWCACHE_ALIGN
173#endif
174
175/* Legal flag mask for kmem_cache_create(). */
176#if DEBUG
Christoph Lameter50953fe2007-05-06 14:50:16 -0700177# define CREATE_MASK (SLAB_RED_ZONE | \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178 SLAB_POISON | SLAB_HWCACHE_ALIGN | \
Christoph Lameterac2b8982006-03-22 00:08:15 -0800179 SLAB_CACHE_DMA | \
Christoph Lameter5af60832007-05-06 14:49:56 -0700180 SLAB_STORE_USER | \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700181 SLAB_RECLAIM_ACCOUNT | SLAB_PANIC | \
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700182 SLAB_DESTROY_BY_RCU | SLAB_MEM_SPREAD | \
Pekka Enbergc175eea2008-05-09 20:35:53 +0200183 SLAB_DEBUG_OBJECTS | SLAB_NOLEAKTRACE | SLAB_NOTRACK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184#else
Christoph Lameterac2b8982006-03-22 00:08:15 -0800185# define CREATE_MASK (SLAB_HWCACHE_ALIGN | \
Christoph Lameter5af60832007-05-06 14:49:56 -0700186 SLAB_CACHE_DMA | \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 SLAB_RECLAIM_ACCOUNT | SLAB_PANIC | \
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700188 SLAB_DESTROY_BY_RCU | SLAB_MEM_SPREAD | \
Pekka Enbergc175eea2008-05-09 20:35:53 +0200189 SLAB_DEBUG_OBJECTS | SLAB_NOLEAKTRACE | SLAB_NOTRACK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190#endif
191
192/*
193 * kmem_bufctl_t:
194 *
195 * Bufctl's are used for linking objs within a slab
196 * linked offsets.
197 *
198 * This implementation relies on "struct page" for locating the cache &
199 * slab an object belongs to.
200 * This allows the bufctl structure to be small (one int), but limits
201 * the number of objects a slab (not a cache) can contain when off-slab
202 * bufctls are used. The limit is the size of the largest general cache
203 * that does not use off-slab slabs.
204 * For 32bit archs with 4 kB pages, is this 56.
205 * This is not serious, as it is only for large objects, when it is unwise
206 * to have too many per slab.
207 * Note: This limit can be raised by introducing a general cache whose size
208 * is less than 512 (PAGE_SIZE<<3), but greater than 256.
209 */
210
Kyle Moffettfa5b08d2005-09-03 15:55:03 -0700211typedef unsigned int kmem_bufctl_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212#define BUFCTL_END (((kmem_bufctl_t)(~0U))-0)
213#define BUFCTL_FREE (((kmem_bufctl_t)(~0U))-1)
Al Viro871751e2006-03-25 03:06:39 -0800214#define BUFCTL_ACTIVE (((kmem_bufctl_t)(~0U))-2)
215#define SLAB_LIMIT (((kmem_bufctl_t)(~0U))-3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217/*
218 * struct slab
219 *
220 * Manages the objs in a slab. Placed either at the beginning of mem allocated
221 * for a slab, or allocated from an general cache.
222 * Slabs are chained into three list: fully used, partial, fully free slabs.
223 */
224struct slab {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800225 struct list_head list;
226 unsigned long colouroff;
227 void *s_mem; /* including colour offset */
228 unsigned int inuse; /* num of objs active in slab */
229 kmem_bufctl_t free;
230 unsigned short nodeid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231};
232
233/*
234 * struct slab_rcu
235 *
236 * slab_destroy on a SLAB_DESTROY_BY_RCU cache uses this structure to
237 * arrange for kmem_freepages to be called via RCU. This is useful if
238 * we need to approach a kernel structure obliquely, from its address
239 * obtained without the usual locking. We can lock the structure to
240 * stabilize it and check it's still at the given address, only if we
241 * can be sure that the memory has not been meanwhile reused for some
242 * other kind of object (which our subsystem's lock might corrupt).
243 *
244 * rcu_read_lock before reading the address, then rcu_read_unlock after
245 * taking the spinlock within the structure expected at that address.
246 *
247 * We assume struct slab_rcu can overlay struct slab when destroying.
248 */
249struct slab_rcu {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800250 struct rcu_head head;
Pekka Enberg343e0d72006-02-01 03:05:50 -0800251 struct kmem_cache *cachep;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800252 void *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253};
254
255/*
256 * struct array_cache
257 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 * Purpose:
259 * - LIFO ordering, to hand out cache-warm objects from _alloc
260 * - reduce the number of linked list operations
261 * - reduce spinlock operations
262 *
263 * The limit is stored in the per-cpu structure to reduce the data cache
264 * footprint.
265 *
266 */
267struct array_cache {
268 unsigned int avail;
269 unsigned int limit;
270 unsigned int batchcount;
271 unsigned int touched;
Christoph Lametere498be72005-09-09 13:03:32 -0700272 spinlock_t lock;
Robert P. J. Daybda5b652007-10-16 23:30:05 -0700273 void *entry[]; /*
Andrew Mortona737b3e2006-03-22 00:08:11 -0800274 * Must have this definition in here for the proper
275 * alignment of array_cache. Also simplifies accessing
276 * the entries.
Andrew Mortona737b3e2006-03-22 00:08:11 -0800277 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278};
279
Andrew Mortona737b3e2006-03-22 00:08:11 -0800280/*
281 * bootstrap: The caches do not work without cpuarrays anymore, but the
282 * cpuarrays are allocated from the generic caches...
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 */
284#define BOOT_CPUCACHE_ENTRIES 1
285struct arraycache_init {
286 struct array_cache cache;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800287 void *entries[BOOT_CPUCACHE_ENTRIES];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288};
289
290/*
Christoph Lametere498be72005-09-09 13:03:32 -0700291 * The slab lists for all objects.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 */
293struct kmem_list3 {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800294 struct list_head slabs_partial; /* partial list first, better asm code */
295 struct list_head slabs_full;
296 struct list_head slabs_free;
297 unsigned long free_objects;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800298 unsigned int free_limit;
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -0800299 unsigned int colour_next; /* Per-node cache coloring */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800300 spinlock_t list_lock;
301 struct array_cache *shared; /* shared per node */
302 struct array_cache **alien; /* on other nodes */
Christoph Lameter35386e32006-03-22 00:09:05 -0800303 unsigned long next_reap; /* updated without locking */
304 int free_touched; /* updated without locking */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305};
306
Christoph Lametere498be72005-09-09 13:03:32 -0700307/*
Pekka Enberg7e85ee02009-06-12 14:03:06 +0300308 * The slab allocator is initialized with interrupts disabled. Therefore, make
309 * sure early boot allocations don't accidentally enable interrupts.
310 */
311static gfp_t slab_gfp_mask __read_mostly = SLAB_GFP_BOOT_MASK;
312
313/*
Christoph Lametere498be72005-09-09 13:03:32 -0700314 * Need this for bootstrapping a per node allocator.
315 */
Pekka Enberg556a1692008-01-25 08:20:51 +0200316#define NUM_INIT_LISTS (3 * MAX_NUMNODES)
Christoph Lametere498be72005-09-09 13:03:32 -0700317struct kmem_list3 __initdata initkmem_list3[NUM_INIT_LISTS];
318#define CACHE_CACHE 0
Pekka Enberg556a1692008-01-25 08:20:51 +0200319#define SIZE_AC MAX_NUMNODES
320#define SIZE_L3 (2 * MAX_NUMNODES)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321
Christoph Lametered11d9e2006-06-30 01:55:45 -0700322static int drain_freelist(struct kmem_cache *cache,
323 struct kmem_list3 *l3, int tofree);
324static void free_block(struct kmem_cache *cachep, void **objpp, int len,
325 int node);
Pekka Enberg83b519e2009-06-10 19:40:04 +0300326static int enable_cpucache(struct kmem_cache *cachep, gfp_t gfp);
David Howells65f27f32006-11-22 14:55:48 +0000327static void cache_reap(struct work_struct *unused);
Christoph Lametered11d9e2006-06-30 01:55:45 -0700328
Christoph Lametere498be72005-09-09 13:03:32 -0700329/*
Andrew Mortona737b3e2006-03-22 00:08:11 -0800330 * This function must be completely optimized away if a constant is passed to
331 * it. Mostly the same as what is in linux/slab.h except it returns an index.
Christoph Lametere498be72005-09-09 13:03:32 -0700332 */
Ivan Kokshaysky7243cc02005-09-22 21:43:58 -0700333static __always_inline int index_of(const size_t size)
Christoph Lametere498be72005-09-09 13:03:32 -0700334{
Steven Rostedt5ec8a842006-02-01 03:05:44 -0800335 extern void __bad_size(void);
336
Christoph Lametere498be72005-09-09 13:03:32 -0700337 if (__builtin_constant_p(size)) {
338 int i = 0;
339
340#define CACHE(x) \
341 if (size <=x) \
342 return i; \
343 else \
344 i++;
Joe Perches1c61fc42008-03-05 13:58:17 -0800345#include <linux/kmalloc_sizes.h>
Christoph Lametere498be72005-09-09 13:03:32 -0700346#undef CACHE
Steven Rostedt5ec8a842006-02-01 03:05:44 -0800347 __bad_size();
Ivan Kokshaysky7243cc02005-09-22 21:43:58 -0700348 } else
Steven Rostedt5ec8a842006-02-01 03:05:44 -0800349 __bad_size();
Christoph Lametere498be72005-09-09 13:03:32 -0700350 return 0;
351}
352
Ingo Molnare0a42722006-06-23 02:03:46 -0700353static int slab_early_init = 1;
354
Christoph Lametere498be72005-09-09 13:03:32 -0700355#define INDEX_AC index_of(sizeof(struct arraycache_init))
356#define INDEX_L3 index_of(sizeof(struct kmem_list3))
357
Pekka Enberg5295a742006-02-01 03:05:48 -0800358static void kmem_list3_init(struct kmem_list3 *parent)
Christoph Lametere498be72005-09-09 13:03:32 -0700359{
360 INIT_LIST_HEAD(&parent->slabs_full);
361 INIT_LIST_HEAD(&parent->slabs_partial);
362 INIT_LIST_HEAD(&parent->slabs_free);
363 parent->shared = NULL;
364 parent->alien = NULL;
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -0800365 parent->colour_next = 0;
Christoph Lametere498be72005-09-09 13:03:32 -0700366 spin_lock_init(&parent->list_lock);
367 parent->free_objects = 0;
368 parent->free_touched = 0;
369}
370
Andrew Mortona737b3e2006-03-22 00:08:11 -0800371#define MAKE_LIST(cachep, listp, slab, nodeid) \
372 do { \
373 INIT_LIST_HEAD(listp); \
374 list_splice(&(cachep->nodelists[nodeid]->slab), listp); \
Christoph Lametere498be72005-09-09 13:03:32 -0700375 } while (0)
376
Andrew Mortona737b3e2006-03-22 00:08:11 -0800377#define MAKE_ALL_LISTS(cachep, ptr, nodeid) \
378 do { \
Christoph Lametere498be72005-09-09 13:03:32 -0700379 MAKE_LIST((cachep), (&(ptr)->slabs_full), slabs_full, nodeid); \
380 MAKE_LIST((cachep), (&(ptr)->slabs_partial), slabs_partial, nodeid); \
381 MAKE_LIST((cachep), (&(ptr)->slabs_free), slabs_free, nodeid); \
382 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384#define CFLGS_OFF_SLAB (0x80000000UL)
385#define OFF_SLAB(x) ((x)->flags & CFLGS_OFF_SLAB)
386
387#define BATCHREFILL_LIMIT 16
Andrew Mortona737b3e2006-03-22 00:08:11 -0800388/*
389 * Optimization question: fewer reaps means less probability for unnessary
390 * cpucache drain/refill cycles.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 *
Adrian Bunkdc6f3f22005-11-08 16:44:08 +0100392 * OTOH the cpuarrays can contain lots of objects,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 * which could lock up otherwise freeable slabs.
394 */
395#define REAPTIMEOUT_CPUC (2*HZ)
396#define REAPTIMEOUT_LIST3 (4*HZ)
397
398#if STATS
399#define STATS_INC_ACTIVE(x) ((x)->num_active++)
400#define STATS_DEC_ACTIVE(x) ((x)->num_active--)
401#define STATS_INC_ALLOCED(x) ((x)->num_allocations++)
402#define STATS_INC_GROWN(x) ((x)->grown++)
Christoph Lametered11d9e2006-06-30 01:55:45 -0700403#define STATS_ADD_REAPED(x,y) ((x)->reaped += (y))
Andrew Mortona737b3e2006-03-22 00:08:11 -0800404#define STATS_SET_HIGH(x) \
405 do { \
406 if ((x)->num_active > (x)->high_mark) \
407 (x)->high_mark = (x)->num_active; \
408 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409#define STATS_INC_ERR(x) ((x)->errors++)
410#define STATS_INC_NODEALLOCS(x) ((x)->node_allocs++)
Christoph Lametere498be72005-09-09 13:03:32 -0700411#define STATS_INC_NODEFREES(x) ((x)->node_frees++)
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -0700412#define STATS_INC_ACOVERFLOW(x) ((x)->node_overflow++)
Andrew Mortona737b3e2006-03-22 00:08:11 -0800413#define STATS_SET_FREEABLE(x, i) \
414 do { \
415 if ((x)->max_freeable < i) \
416 (x)->max_freeable = i; \
417 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418#define STATS_INC_ALLOCHIT(x) atomic_inc(&(x)->allochit)
419#define STATS_INC_ALLOCMISS(x) atomic_inc(&(x)->allocmiss)
420#define STATS_INC_FREEHIT(x) atomic_inc(&(x)->freehit)
421#define STATS_INC_FREEMISS(x) atomic_inc(&(x)->freemiss)
422#else
423#define STATS_INC_ACTIVE(x) do { } while (0)
424#define STATS_DEC_ACTIVE(x) do { } while (0)
425#define STATS_INC_ALLOCED(x) do { } while (0)
426#define STATS_INC_GROWN(x) do { } while (0)
Christoph Lametered11d9e2006-06-30 01:55:45 -0700427#define STATS_ADD_REAPED(x,y) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428#define STATS_SET_HIGH(x) do { } while (0)
429#define STATS_INC_ERR(x) do { } while (0)
430#define STATS_INC_NODEALLOCS(x) do { } while (0)
Christoph Lametere498be72005-09-09 13:03:32 -0700431#define STATS_INC_NODEFREES(x) do { } while (0)
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -0700432#define STATS_INC_ACOVERFLOW(x) do { } while (0)
Andrew Mortona737b3e2006-03-22 00:08:11 -0800433#define STATS_SET_FREEABLE(x, i) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434#define STATS_INC_ALLOCHIT(x) do { } while (0)
435#define STATS_INC_ALLOCMISS(x) do { } while (0)
436#define STATS_INC_FREEHIT(x) do { } while (0)
437#define STATS_INC_FREEMISS(x) do { } while (0)
438#endif
439
440#if DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441
Andrew Mortona737b3e2006-03-22 00:08:11 -0800442/*
443 * memory layout of objects:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 * 0 : objp
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800445 * 0 .. cachep->obj_offset - BYTES_PER_WORD - 1: padding. This ensures that
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 * the end of an object is aligned with the end of the real
447 * allocation. Catches writes behind the end of the allocation.
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800448 * cachep->obj_offset - BYTES_PER_WORD .. cachep->obj_offset - 1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 * redzone word.
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800450 * cachep->obj_offset: The real object.
451 * cachep->buffer_size - 2* BYTES_PER_WORD: redzone word [BYTES_PER_WORD long]
Andrew Mortona737b3e2006-03-22 00:08:11 -0800452 * cachep->buffer_size - 1* BYTES_PER_WORD: last caller address
453 * [BYTES_PER_WORD long]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800455static int obj_offset(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456{
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800457 return cachep->obj_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458}
459
Pekka Enberg343e0d72006-02-01 03:05:50 -0800460static int obj_size(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461{
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800462 return cachep->obj_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463}
464
David Woodhouseb46b8f12007-05-08 00:22:59 -0700465static unsigned long long *dbg_redzone1(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466{
467 BUG_ON(!(cachep->flags & SLAB_RED_ZONE));
David Woodhouseb46b8f12007-05-08 00:22:59 -0700468 return (unsigned long long*) (objp + obj_offset(cachep) -
469 sizeof(unsigned long long));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470}
471
David Woodhouseb46b8f12007-05-08 00:22:59 -0700472static unsigned long long *dbg_redzone2(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473{
474 BUG_ON(!(cachep->flags & SLAB_RED_ZONE));
475 if (cachep->flags & SLAB_STORE_USER)
David Woodhouseb46b8f12007-05-08 00:22:59 -0700476 return (unsigned long long *)(objp + cachep->buffer_size -
477 sizeof(unsigned long long) -
David Woodhouse87a927c2007-07-04 21:26:44 -0400478 REDZONE_ALIGN);
David Woodhouseb46b8f12007-05-08 00:22:59 -0700479 return (unsigned long long *) (objp + cachep->buffer_size -
480 sizeof(unsigned long long));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481}
482
Pekka Enberg343e0d72006-02-01 03:05:50 -0800483static void **dbg_userword(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484{
485 BUG_ON(!(cachep->flags & SLAB_STORE_USER));
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800486 return (void **)(objp + cachep->buffer_size - BYTES_PER_WORD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487}
488
489#else
490
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800491#define obj_offset(x) 0
492#define obj_size(cachep) (cachep->buffer_size)
David Woodhouseb46b8f12007-05-08 00:22:59 -0700493#define dbg_redzone1(cachep, objp) ({BUG(); (unsigned long long *)NULL;})
494#define dbg_redzone2(cachep, objp) ({BUG(); (unsigned long long *)NULL;})
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495#define dbg_userword(cachep, objp) ({BUG(); (void **)NULL;})
496
497#endif
498
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +0300499#ifdef CONFIG_KMEMTRACE
500size_t slab_buffer_size(struct kmem_cache *cachep)
501{
502 return cachep->buffer_size;
503}
504EXPORT_SYMBOL(slab_buffer_size);
505#endif
506
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 * Do not go above this order unless 0 objects fit into the slab.
509 */
510#define BREAK_GFP_ORDER_HI 1
511#define BREAK_GFP_ORDER_LO 0
512static int slab_break_gfp_order = BREAK_GFP_ORDER_LO;
513
Andrew Mortona737b3e2006-03-22 00:08:11 -0800514/*
515 * Functions for storing/retrieving the cachep and or slab from the page
516 * allocator. These are used to find the slab an obj belongs to. With kfree(),
517 * these are used to find the cache which an obj belongs to.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 */
Pekka Enberg065d41c2005-11-13 16:06:46 -0800519static inline void page_set_cache(struct page *page, struct kmem_cache *cache)
520{
521 page->lru.next = (struct list_head *)cache;
522}
523
524static inline struct kmem_cache *page_get_cache(struct page *page)
525{
Christoph Lameterd85f3382007-05-06 14:49:39 -0700526 page = compound_head(page);
Pekka Enbergddc2e812006-06-23 02:03:40 -0700527 BUG_ON(!PageSlab(page));
Pekka Enberg065d41c2005-11-13 16:06:46 -0800528 return (struct kmem_cache *)page->lru.next;
529}
530
531static inline void page_set_slab(struct page *page, struct slab *slab)
532{
533 page->lru.prev = (struct list_head *)slab;
534}
535
536static inline struct slab *page_get_slab(struct page *page)
537{
Pekka Enbergddc2e812006-06-23 02:03:40 -0700538 BUG_ON(!PageSlab(page));
Pekka Enberg065d41c2005-11-13 16:06:46 -0800539 return (struct slab *)page->lru.prev;
540}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Pekka Enberg6ed5eb22006-02-01 03:05:49 -0800542static inline struct kmem_cache *virt_to_cache(const void *obj)
543{
Christoph Lameterb49af682007-05-06 14:49:41 -0700544 struct page *page = virt_to_head_page(obj);
Pekka Enberg6ed5eb22006-02-01 03:05:49 -0800545 return page_get_cache(page);
546}
547
548static inline struct slab *virt_to_slab(const void *obj)
549{
Christoph Lameterb49af682007-05-06 14:49:41 -0700550 struct page *page = virt_to_head_page(obj);
Pekka Enberg6ed5eb22006-02-01 03:05:49 -0800551 return page_get_slab(page);
552}
553
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800554static inline void *index_to_obj(struct kmem_cache *cache, struct slab *slab,
555 unsigned int idx)
556{
557 return slab->s_mem + cache->buffer_size * idx;
558}
559
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800560/*
561 * We want to avoid an expensive divide : (offset / cache->buffer_size)
562 * Using the fact that buffer_size is a constant for a particular cache,
563 * we can replace (offset / cache->buffer_size) by
564 * reciprocal_divide(offset, cache->reciprocal_buffer_size)
565 */
566static inline unsigned int obj_to_index(const struct kmem_cache *cache,
567 const struct slab *slab, void *obj)
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800568{
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800569 u32 offset = (obj - slab->s_mem);
570 return reciprocal_divide(offset, cache->reciprocal_buffer_size);
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800571}
572
Andrew Mortona737b3e2006-03-22 00:08:11 -0800573/*
574 * These are the default caches for kmalloc. Custom caches can have other sizes.
575 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576struct cache_sizes malloc_sizes[] = {
577#define CACHE(x) { .cs_size = (x) },
578#include <linux/kmalloc_sizes.h>
579 CACHE(ULONG_MAX)
580#undef CACHE
581};
582EXPORT_SYMBOL(malloc_sizes);
583
584/* Must match cache_sizes above. Out of line to keep cache footprint low. */
585struct cache_names {
586 char *name;
587 char *name_dma;
588};
589
590static struct cache_names __initdata cache_names[] = {
591#define CACHE(x) { .name = "size-" #x, .name_dma = "size-" #x "(DMA)" },
592#include <linux/kmalloc_sizes.h>
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800593 {NULL,}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594#undef CACHE
595};
596
597static struct arraycache_init initarray_cache __initdata =
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800598 { {0, BOOT_CPUCACHE_ENTRIES, 1, 0} };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599static struct arraycache_init initarray_generic =
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800600 { {0, BOOT_CPUCACHE_ENTRIES, 1, 0} };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601
602/* internal cache of cache description objs */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800603static struct kmem_cache cache_cache = {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800604 .batchcount = 1,
605 .limit = BOOT_CPUCACHE_ENTRIES,
606 .shared = 1,
Pekka Enberg343e0d72006-02-01 03:05:50 -0800607 .buffer_size = sizeof(struct kmem_cache),
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800608 .name = "kmem_cache",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609};
610
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -0700611#define BAD_ALIEN_MAGIC 0x01020304ul
612
Arjan van de Venf1aaee52006-07-13 14:46:03 +0200613#ifdef CONFIG_LOCKDEP
614
615/*
616 * Slab sometimes uses the kmalloc slabs to store the slab headers
617 * for other slabs "off slab".
618 * The locking for this is tricky in that it nests within the locks
619 * of all other slabs in a few places; to deal with this special
620 * locking we put on-slab caches into a separate lock-class.
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -0700621 *
622 * We set lock class for alien array caches which are up during init.
623 * The lock annotation will be lost if all cpus of a node goes down and
624 * then comes back up during hotplug
Arjan van de Venf1aaee52006-07-13 14:46:03 +0200625 */
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -0700626static struct lock_class_key on_slab_l3_key;
627static struct lock_class_key on_slab_alc_key;
Arjan van de Venf1aaee52006-07-13 14:46:03 +0200628
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -0700629static inline void init_lock_keys(void)
630
Arjan van de Venf1aaee52006-07-13 14:46:03 +0200631{
632 int q;
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -0700633 struct cache_sizes *s = malloc_sizes;
Arjan van de Venf1aaee52006-07-13 14:46:03 +0200634
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -0700635 while (s->cs_size != ULONG_MAX) {
636 for_each_node(q) {
637 struct array_cache **alc;
638 int r;
639 struct kmem_list3 *l3 = s->cs_cachep->nodelists[q];
640 if (!l3 || OFF_SLAB(s->cs_cachep))
641 continue;
642 lockdep_set_class(&l3->list_lock, &on_slab_l3_key);
643 alc = l3->alien;
644 /*
645 * FIXME: This check for BAD_ALIEN_MAGIC
646 * should go away when common slab code is taught to
647 * work even without alien caches.
648 * Currently, non NUMA code returns BAD_ALIEN_MAGIC
649 * for alloc_alien_cache,
650 */
651 if (!alc || (unsigned long)alc == BAD_ALIEN_MAGIC)
652 continue;
653 for_each_node(r) {
654 if (alc[r])
655 lockdep_set_class(&alc[r]->lock,
656 &on_slab_alc_key);
657 }
658 }
659 s++;
Arjan van de Venf1aaee52006-07-13 14:46:03 +0200660 }
661}
Arjan van de Venf1aaee52006-07-13 14:46:03 +0200662#else
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -0700663static inline void init_lock_keys(void)
Arjan van de Venf1aaee52006-07-13 14:46:03 +0200664{
665}
666#endif
667
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -0800668/*
Gautham R Shenoy95402b32008-01-25 21:08:02 +0100669 * Guard access to the cache-chain.
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -0800670 */
Ingo Molnarfc0abb12006-01-18 17:42:33 -0800671static DEFINE_MUTEX(cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672static struct list_head cache_chain;
673
674/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700675 * chicken and egg problem: delay the per-cpu array allocation
676 * until the general caches are up.
677 */
678static enum {
679 NONE,
Christoph Lametere498be72005-09-09 13:03:32 -0700680 PARTIAL_AC,
681 PARTIAL_L3,
Pekka Enberg8429db52009-06-12 15:58:59 +0300682 EARLY,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683 FULL
684} g_cpucache_up;
685
Mike Kravetz39d24e62006-05-15 09:44:13 -0700686/*
687 * used by boot code to determine if it can use slab based allocator
688 */
689int slab_is_available(void)
690{
Pekka Enberg8429db52009-06-12 15:58:59 +0300691 return g_cpucache_up >= EARLY;
Mike Kravetz39d24e62006-05-15 09:44:13 -0700692}
693
David Howells52bad642006-11-22 14:54:01 +0000694static DEFINE_PER_CPU(struct delayed_work, reap_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695
Pekka Enberg343e0d72006-02-01 03:05:50 -0800696static inline struct array_cache *cpu_cache_get(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697{
698 return cachep->array[smp_processor_id()];
699}
700
Andrew Mortona737b3e2006-03-22 00:08:11 -0800701static inline struct kmem_cache *__find_general_cachep(size_t size,
702 gfp_t gfpflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703{
704 struct cache_sizes *csizep = malloc_sizes;
705
706#if DEBUG
707 /* This happens if someone tries to call
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800708 * kmem_cache_create(), or __kmalloc(), before
709 * the generic caches are initialized.
710 */
Alok Katariac7e43c72005-09-14 12:17:53 -0700711 BUG_ON(malloc_sizes[INDEX_AC].cs_cachep == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712#endif
Christoph Lameter6cb8f912007-07-17 04:03:22 -0700713 if (!size)
714 return ZERO_SIZE_PTR;
715
Linus Torvalds1da177e2005-04-16 15:20:36 -0700716 while (size > csizep->cs_size)
717 csizep++;
718
719 /*
Martin Hicks0abf40c2005-09-03 15:54:54 -0700720 * Really subtle: The last entry with cs->cs_size==ULONG_MAX
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 * has cs_{dma,}cachep==NULL. Thus no special case
722 * for large kmalloc calls required.
723 */
Christoph Lameter4b51d662007-02-10 01:43:10 -0800724#ifdef CONFIG_ZONE_DMA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 if (unlikely(gfpflags & GFP_DMA))
726 return csizep->cs_dmacachep;
Christoph Lameter4b51d662007-02-10 01:43:10 -0800727#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728 return csizep->cs_cachep;
729}
730
Adrian Bunkb2213852006-09-25 23:31:02 -0700731static struct kmem_cache *kmem_find_general_cachep(size_t size, gfp_t gfpflags)
Manfred Spraul97e2bde2005-05-01 08:58:38 -0700732{
733 return __find_general_cachep(size, gfpflags);
734}
Manfred Spraul97e2bde2005-05-01 08:58:38 -0700735
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800736static size_t slab_mgmt_size(size_t nr_objs, size_t align)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737{
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800738 return ALIGN(sizeof(struct slab)+nr_objs*sizeof(kmem_bufctl_t), align);
739}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
Andrew Mortona737b3e2006-03-22 00:08:11 -0800741/*
742 * Calculate the number of objects and left-over bytes for a given buffer size.
743 */
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800744static void cache_estimate(unsigned long gfporder, size_t buffer_size,
745 size_t align, int flags, size_t *left_over,
746 unsigned int *num)
747{
748 int nr_objs;
749 size_t mgmt_size;
750 size_t slab_size = PAGE_SIZE << gfporder;
751
752 /*
753 * The slab management structure can be either off the slab or
754 * on it. For the latter case, the memory allocated for a
755 * slab is used for:
756 *
757 * - The struct slab
758 * - One kmem_bufctl_t for each object
759 * - Padding to respect alignment of @align
760 * - @buffer_size bytes for each object
761 *
762 * If the slab management structure is off the slab, then the
763 * alignment will already be calculated into the size. Because
764 * the slabs are all pages aligned, the objects will be at the
765 * correct alignment when allocated.
766 */
767 if (flags & CFLGS_OFF_SLAB) {
768 mgmt_size = 0;
769 nr_objs = slab_size / buffer_size;
770
771 if (nr_objs > SLAB_LIMIT)
772 nr_objs = SLAB_LIMIT;
773 } else {
774 /*
775 * Ignore padding for the initial guess. The padding
776 * is at most @align-1 bytes, and @buffer_size is at
777 * least @align. In the worst case, this result will
778 * be one greater than the number of objects that fit
779 * into the memory allocation when taking the padding
780 * into account.
781 */
782 nr_objs = (slab_size - sizeof(struct slab)) /
783 (buffer_size + sizeof(kmem_bufctl_t));
784
785 /*
786 * This calculated number will be either the right
787 * amount, or one greater than what we want.
788 */
789 if (slab_mgmt_size(nr_objs, align) + nr_objs*buffer_size
790 > slab_size)
791 nr_objs--;
792
793 if (nr_objs > SLAB_LIMIT)
794 nr_objs = SLAB_LIMIT;
795
796 mgmt_size = slab_mgmt_size(nr_objs, align);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 }
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800798 *num = nr_objs;
799 *left_over = slab_size - nr_objs*buffer_size - mgmt_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800}
801
Harvey Harrisond40cee22008-04-30 00:55:07 -0700802#define slab_error(cachep, msg) __slab_error(__func__, cachep, msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
Andrew Mortona737b3e2006-03-22 00:08:11 -0800804static void __slab_error(const char *function, struct kmem_cache *cachep,
805 char *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806{
807 printk(KERN_ERR "slab error in %s(): cache `%s': %s\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800808 function, cachep->name, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 dump_stack();
810}
811
Paul Menage3395ee02006-12-06 20:32:16 -0800812/*
813 * By default on NUMA we use alien caches to stage the freeing of
814 * objects allocated from other nodes. This causes massive memory
815 * inefficiencies when using fake NUMA setup to split memory into a
816 * large number of small nodes, so it can be disabled on the command
817 * line
818 */
819
820static int use_alien_caches __read_mostly = 1;
821static int __init noaliencache_setup(char *s)
822{
823 use_alien_caches = 0;
824 return 1;
825}
826__setup("noaliencache", noaliencache_setup);
827
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800828#ifdef CONFIG_NUMA
829/*
830 * Special reaping functions for NUMA systems called from cache_reap().
831 * These take care of doing round robin flushing of alien caches (containing
832 * objects freed on different nodes from which they were allocated) and the
833 * flushing of remote pcps by calling drain_node_pages.
834 */
835static DEFINE_PER_CPU(unsigned long, reap_node);
836
837static void init_reap_node(int cpu)
838{
839 int node;
840
841 node = next_node(cpu_to_node(cpu), node_online_map);
842 if (node == MAX_NUMNODES)
Paul Jackson442295c2006-03-22 00:09:11 -0800843 node = first_node(node_online_map);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800844
Daniel Yeisley7f6b8872006-11-02 22:07:14 -0800845 per_cpu(reap_node, cpu) = node;
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800846}
847
848static void next_reap_node(void)
849{
850 int node = __get_cpu_var(reap_node);
851
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800852 node = next_node(node, node_online_map);
853 if (unlikely(node >= MAX_NUMNODES))
854 node = first_node(node_online_map);
855 __get_cpu_var(reap_node) = node;
856}
857
858#else
859#define init_reap_node(cpu) do { } while (0)
860#define next_reap_node(void) do { } while (0)
861#endif
862
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863/*
864 * Initiate the reap timer running on the target CPU. We run at around 1 to 2Hz
865 * via the workqueue/eventd.
866 * Add the CPU number into the expiration time to minimize the possibility of
867 * the CPUs getting into lockstep and contending for the global cache chain
868 * lock.
869 */
Adrian Bunk897e6792007-07-15 23:38:20 -0700870static void __cpuinit start_cpu_timer(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871{
David Howells52bad642006-11-22 14:54:01 +0000872 struct delayed_work *reap_work = &per_cpu(reap_work, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
874 /*
875 * When this gets called from do_initcalls via cpucache_init(),
876 * init_workqueues() has already run, so keventd will be setup
877 * at that time.
878 */
David Howells52bad642006-11-22 14:54:01 +0000879 if (keventd_up() && reap_work->work.func == NULL) {
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800880 init_reap_node(cpu);
David Howells65f27f32006-11-22 14:55:48 +0000881 INIT_DELAYED_WORK(reap_work, cache_reap);
Arjan van de Ven2b284212006-12-10 02:21:28 -0800882 schedule_delayed_work_on(cpu, reap_work,
883 __round_jiffies_relative(HZ, cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 }
885}
886
Christoph Lametere498be72005-09-09 13:03:32 -0700887static struct array_cache *alloc_arraycache(int node, int entries,
Pekka Enberg83b519e2009-06-10 19:40:04 +0300888 int batchcount, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889{
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800890 int memsize = sizeof(void *) * entries + sizeof(struct array_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 struct array_cache *nc = NULL;
892
Pekka Enberg83b519e2009-06-10 19:40:04 +0300893 nc = kmalloc_node(memsize, gfp, node);
Catalin Marinasd5cff632009-06-11 13:22:40 +0100894 /*
895 * The array_cache structures contain pointers to free object.
896 * However, when such objects are allocated or transfered to another
897 * cache the pointers are not cleared and they could be counted as
898 * valid references during a kmemleak scan. Therefore, kmemleak must
899 * not scan such objects.
900 */
901 kmemleak_no_scan(nc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 if (nc) {
903 nc->avail = 0;
904 nc->limit = entries;
905 nc->batchcount = batchcount;
906 nc->touched = 0;
Christoph Lametere498be72005-09-09 13:03:32 -0700907 spin_lock_init(&nc->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 }
909 return nc;
910}
911
Christoph Lameter3ded1752006-03-25 03:06:44 -0800912/*
913 * Transfer objects in one arraycache to another.
914 * Locking must be handled by the caller.
915 *
916 * Return the number of entries transferred.
917 */
918static int transfer_objects(struct array_cache *to,
919 struct array_cache *from, unsigned int max)
920{
921 /* Figure out how many entries to transfer */
922 int nr = min(min(from->avail, max), to->limit - to->avail);
923
924 if (!nr)
925 return 0;
926
927 memcpy(to->entry + to->avail, from->entry + from->avail -nr,
928 sizeof(void *) *nr);
929
930 from->avail -= nr;
931 to->avail += nr;
932 to->touched = 1;
933 return nr;
934}
935
Christoph Lameter765c4502006-09-27 01:50:08 -0700936#ifndef CONFIG_NUMA
937
938#define drain_alien_cache(cachep, alien) do { } while (0)
939#define reap_alien(cachep, l3) do { } while (0)
940
Pekka Enberg83b519e2009-06-10 19:40:04 +0300941static inline struct array_cache **alloc_alien_cache(int node, int limit, gfp_t gfp)
Christoph Lameter765c4502006-09-27 01:50:08 -0700942{
943 return (struct array_cache **)BAD_ALIEN_MAGIC;
944}
945
946static inline void free_alien_cache(struct array_cache **ac_ptr)
947{
948}
949
950static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
951{
952 return 0;
953}
954
955static inline void *alternate_node_alloc(struct kmem_cache *cachep,
956 gfp_t flags)
957{
958 return NULL;
959}
960
Christoph Hellwig8b98c162006-12-06 20:32:30 -0800961static inline void *____cache_alloc_node(struct kmem_cache *cachep,
Christoph Lameter765c4502006-09-27 01:50:08 -0700962 gfp_t flags, int nodeid)
963{
964 return NULL;
965}
966
967#else /* CONFIG_NUMA */
968
Christoph Hellwig8b98c162006-12-06 20:32:30 -0800969static void *____cache_alloc_node(struct kmem_cache *, gfp_t, int);
Paul Jacksonc61afb12006-03-24 03:16:08 -0800970static void *alternate_node_alloc(struct kmem_cache *, gfp_t);
Christoph Lameterdc85da12006-01-18 17:42:36 -0800971
Pekka Enberg83b519e2009-06-10 19:40:04 +0300972static struct array_cache **alloc_alien_cache(int node, int limit, gfp_t gfp)
Christoph Lametere498be72005-09-09 13:03:32 -0700973{
974 struct array_cache **ac_ptr;
Christoph Lameter8ef82862007-02-20 13:57:52 -0800975 int memsize = sizeof(void *) * nr_node_ids;
Christoph Lametere498be72005-09-09 13:03:32 -0700976 int i;
977
978 if (limit > 1)
979 limit = 12;
Pekka Enberg83b519e2009-06-10 19:40:04 +0300980 ac_ptr = kmalloc_node(memsize, gfp, node);
Christoph Lametere498be72005-09-09 13:03:32 -0700981 if (ac_ptr) {
982 for_each_node(i) {
983 if (i == node || !node_online(i)) {
984 ac_ptr[i] = NULL;
985 continue;
986 }
Pekka Enberg83b519e2009-06-10 19:40:04 +0300987 ac_ptr[i] = alloc_arraycache(node, limit, 0xbaadf00d, gfp);
Christoph Lametere498be72005-09-09 13:03:32 -0700988 if (!ac_ptr[i]) {
Akinobu Mitacc550de2007-11-14 16:58:35 -0800989 for (i--; i >= 0; i--)
Christoph Lametere498be72005-09-09 13:03:32 -0700990 kfree(ac_ptr[i]);
991 kfree(ac_ptr);
992 return NULL;
993 }
994 }
995 }
996 return ac_ptr;
997}
998
Pekka Enberg5295a742006-02-01 03:05:48 -0800999static void free_alien_cache(struct array_cache **ac_ptr)
Christoph Lametere498be72005-09-09 13:03:32 -07001000{
1001 int i;
1002
1003 if (!ac_ptr)
1004 return;
Christoph Lametere498be72005-09-09 13:03:32 -07001005 for_each_node(i)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001006 kfree(ac_ptr[i]);
Christoph Lametere498be72005-09-09 13:03:32 -07001007 kfree(ac_ptr);
1008}
1009
Pekka Enberg343e0d72006-02-01 03:05:50 -08001010static void __drain_alien_cache(struct kmem_cache *cachep,
Pekka Enberg5295a742006-02-01 03:05:48 -08001011 struct array_cache *ac, int node)
Christoph Lametere498be72005-09-09 13:03:32 -07001012{
1013 struct kmem_list3 *rl3 = cachep->nodelists[node];
1014
1015 if (ac->avail) {
1016 spin_lock(&rl3->list_lock);
Christoph Lametere00946f2006-03-25 03:06:45 -08001017 /*
1018 * Stuff objects into the remote nodes shared array first.
1019 * That way we could avoid the overhead of putting the objects
1020 * into the free lists and getting them back later.
1021 */
shin, jacob693f7d32006-04-28 10:54:37 -05001022 if (rl3->shared)
1023 transfer_objects(rl3->shared, ac, ac->limit);
Christoph Lametere00946f2006-03-25 03:06:45 -08001024
Christoph Lameterff694162005-09-22 21:44:02 -07001025 free_block(cachep, ac->entry, ac->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -07001026 ac->avail = 0;
1027 spin_unlock(&rl3->list_lock);
1028 }
1029}
1030
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001031/*
1032 * Called from cache_reap() to regularly drain alien caches round robin.
1033 */
1034static void reap_alien(struct kmem_cache *cachep, struct kmem_list3 *l3)
1035{
1036 int node = __get_cpu_var(reap_node);
1037
1038 if (l3->alien) {
1039 struct array_cache *ac = l3->alien[node];
Christoph Lametere00946f2006-03-25 03:06:45 -08001040
1041 if (ac && ac->avail && spin_trylock_irq(&ac->lock)) {
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001042 __drain_alien_cache(cachep, ac, node);
1043 spin_unlock_irq(&ac->lock);
1044 }
1045 }
1046}
1047
Andrew Mortona737b3e2006-03-22 00:08:11 -08001048static void drain_alien_cache(struct kmem_cache *cachep,
1049 struct array_cache **alien)
Christoph Lametere498be72005-09-09 13:03:32 -07001050{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001051 int i = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07001052 struct array_cache *ac;
1053 unsigned long flags;
1054
1055 for_each_online_node(i) {
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001056 ac = alien[i];
Christoph Lametere498be72005-09-09 13:03:32 -07001057 if (ac) {
1058 spin_lock_irqsave(&ac->lock, flags);
1059 __drain_alien_cache(cachep, ac, i);
1060 spin_unlock_irqrestore(&ac->lock, flags);
1061 }
1062 }
1063}
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001064
Ingo Molnar873623d2006-07-13 14:44:38 +02001065static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001066{
1067 struct slab *slabp = virt_to_slab(objp);
1068 int nodeid = slabp->nodeid;
1069 struct kmem_list3 *l3;
1070 struct array_cache *alien = NULL;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001071 int node;
1072
1073 node = numa_node_id();
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001074
1075 /*
1076 * Make sure we are not freeing a object from another node to the array
1077 * cache on this cpu.
1078 */
Siddha, Suresh B62918a02007-05-02 19:27:18 +02001079 if (likely(slabp->nodeid == node))
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001080 return 0;
1081
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001082 l3 = cachep->nodelists[node];
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001083 STATS_INC_NODEFREES(cachep);
1084 if (l3->alien && l3->alien[nodeid]) {
1085 alien = l3->alien[nodeid];
Ingo Molnar873623d2006-07-13 14:44:38 +02001086 spin_lock(&alien->lock);
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001087 if (unlikely(alien->avail == alien->limit)) {
1088 STATS_INC_ACOVERFLOW(cachep);
1089 __drain_alien_cache(cachep, alien, nodeid);
1090 }
1091 alien->entry[alien->avail++] = objp;
1092 spin_unlock(&alien->lock);
1093 } else {
1094 spin_lock(&(cachep->nodelists[nodeid])->list_lock);
1095 free_block(cachep, &objp, 1, nodeid);
1096 spin_unlock(&(cachep->nodelists[nodeid])->list_lock);
1097 }
1098 return 1;
1099}
Christoph Lametere498be72005-09-09 13:03:32 -07001100#endif
1101
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001102static void __cpuinit cpuup_canceled(long cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103{
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001104 struct kmem_cache *cachep;
1105 struct kmem_list3 *l3 = NULL;
1106 int node = cpu_to_node(cpu);
Rusty Russella70f7302009-03-13 14:49:46 +10301107 const struct cpumask *mask = cpumask_of_node(node);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001108
1109 list_for_each_entry(cachep, &cache_chain, next) {
1110 struct array_cache *nc;
1111 struct array_cache *shared;
1112 struct array_cache **alien;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001113
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001114 /* cpu is dead; no one can alloc from it. */
1115 nc = cachep->array[cpu];
1116 cachep->array[cpu] = NULL;
1117 l3 = cachep->nodelists[node];
1118
1119 if (!l3)
1120 goto free_array_cache;
1121
1122 spin_lock_irq(&l3->list_lock);
1123
1124 /* Free limit for this kmem_list3 */
1125 l3->free_limit -= cachep->batchcount;
1126 if (nc)
1127 free_block(cachep, nc->entry, nc->avail, node);
1128
Mike Travisc5f59f02008-04-04 18:11:10 -07001129 if (!cpus_empty(*mask)) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001130 spin_unlock_irq(&l3->list_lock);
1131 goto free_array_cache;
1132 }
1133
1134 shared = l3->shared;
1135 if (shared) {
1136 free_block(cachep, shared->entry,
1137 shared->avail, node);
1138 l3->shared = NULL;
1139 }
1140
1141 alien = l3->alien;
1142 l3->alien = NULL;
1143
1144 spin_unlock_irq(&l3->list_lock);
1145
1146 kfree(shared);
1147 if (alien) {
1148 drain_alien_cache(cachep, alien);
1149 free_alien_cache(alien);
1150 }
1151free_array_cache:
1152 kfree(nc);
1153 }
1154 /*
1155 * In the previous loop, all the objects were freed to
1156 * the respective cache's slabs, now we can go ahead and
1157 * shrink each nodelist to its limit.
1158 */
1159 list_for_each_entry(cachep, &cache_chain, next) {
1160 l3 = cachep->nodelists[node];
1161 if (!l3)
1162 continue;
1163 drain_freelist(cachep, l3, l3->free_objects);
1164 }
1165}
1166
1167static int __cpuinit cpuup_prepare(long cpu)
1168{
Pekka Enberg343e0d72006-02-01 03:05:50 -08001169 struct kmem_cache *cachep;
Christoph Lametere498be72005-09-09 13:03:32 -07001170 struct kmem_list3 *l3 = NULL;
1171 int node = cpu_to_node(cpu);
David Howellsea02e3d2007-07-19 01:49:09 -07001172 const int memsize = sizeof(struct kmem_list3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001174 /*
1175 * We need to do this right in the beginning since
1176 * alloc_arraycache's are going to use this list.
1177 * kmalloc_node allows us to add the slab to the right
1178 * kmem_list3 and not this cpu's kmem_list3
1179 */
1180
1181 list_for_each_entry(cachep, &cache_chain, next) {
1182 /*
1183 * Set up the size64 kmemlist for cpu before we can
1184 * begin anything. Make sure some other cpu on this
1185 * node has not already allocated this
1186 */
1187 if (!cachep->nodelists[node]) {
1188 l3 = kmalloc_node(memsize, GFP_KERNEL, node);
1189 if (!l3)
1190 goto bad;
1191 kmem_list3_init(l3);
1192 l3->next_reap = jiffies + REAPTIMEOUT_LIST3 +
1193 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
1194
1195 /*
1196 * The l3s don't come and go as CPUs come and
1197 * go. cache_chain_mutex is sufficient
1198 * protection here.
1199 */
1200 cachep->nodelists[node] = l3;
1201 }
1202
1203 spin_lock_irq(&cachep->nodelists[node]->list_lock);
1204 cachep->nodelists[node]->free_limit =
1205 (1 + nr_cpus_node(node)) *
1206 cachep->batchcount + cachep->num;
1207 spin_unlock_irq(&cachep->nodelists[node]->list_lock);
1208 }
1209
1210 /*
1211 * Now we can go ahead with allocating the shared arrays and
1212 * array caches
1213 */
1214 list_for_each_entry(cachep, &cache_chain, next) {
1215 struct array_cache *nc;
1216 struct array_cache *shared = NULL;
1217 struct array_cache **alien = NULL;
1218
1219 nc = alloc_arraycache(node, cachep->limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03001220 cachep->batchcount, GFP_KERNEL);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001221 if (!nc)
1222 goto bad;
1223 if (cachep->shared) {
1224 shared = alloc_arraycache(node,
1225 cachep->shared * cachep->batchcount,
Pekka Enberg83b519e2009-06-10 19:40:04 +03001226 0xbaadf00d, GFP_KERNEL);
Akinobu Mita12d00f62007-10-18 03:05:11 -07001227 if (!shared) {
1228 kfree(nc);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001229 goto bad;
Akinobu Mita12d00f62007-10-18 03:05:11 -07001230 }
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001231 }
1232 if (use_alien_caches) {
Pekka Enberg83b519e2009-06-10 19:40:04 +03001233 alien = alloc_alien_cache(node, cachep->limit, GFP_KERNEL);
Akinobu Mita12d00f62007-10-18 03:05:11 -07001234 if (!alien) {
1235 kfree(shared);
1236 kfree(nc);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001237 goto bad;
Akinobu Mita12d00f62007-10-18 03:05:11 -07001238 }
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001239 }
1240 cachep->array[cpu] = nc;
1241 l3 = cachep->nodelists[node];
1242 BUG_ON(!l3);
1243
1244 spin_lock_irq(&l3->list_lock);
1245 if (!l3->shared) {
1246 /*
1247 * We are serialised from CPU_DEAD or
1248 * CPU_UP_CANCELLED by the cpucontrol lock
1249 */
1250 l3->shared = shared;
1251 shared = NULL;
1252 }
1253#ifdef CONFIG_NUMA
1254 if (!l3->alien) {
1255 l3->alien = alien;
1256 alien = NULL;
1257 }
1258#endif
1259 spin_unlock_irq(&l3->list_lock);
1260 kfree(shared);
1261 free_alien_cache(alien);
1262 }
1263 return 0;
1264bad:
Akinobu Mita12d00f62007-10-18 03:05:11 -07001265 cpuup_canceled(cpu);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001266 return -ENOMEM;
1267}
1268
1269static int __cpuinit cpuup_callback(struct notifier_block *nfb,
1270 unsigned long action, void *hcpu)
1271{
1272 long cpu = (long)hcpu;
1273 int err = 0;
1274
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275 switch (action) {
Heiko Carstens38c3bd92007-05-09 02:34:05 -07001276 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001277 case CPU_UP_PREPARE_FROZEN:
Gautham R Shenoy95402b32008-01-25 21:08:02 +01001278 mutex_lock(&cache_chain_mutex);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001279 err = cpuup_prepare(cpu);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01001280 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001281 break;
1282 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001283 case CPU_ONLINE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001284 start_cpu_timer(cpu);
1285 break;
1286#ifdef CONFIG_HOTPLUG_CPU
Christoph Lameter5830c592007-05-09 02:34:22 -07001287 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001288 case CPU_DOWN_PREPARE_FROZEN:
Christoph Lameter5830c592007-05-09 02:34:22 -07001289 /*
1290 * Shutdown cache reaper. Note that the cache_chain_mutex is
1291 * held so that if cache_reap() is invoked it cannot do
1292 * anything expensive but will only modify reap_work
1293 * and reschedule the timer.
1294 */
1295 cancel_rearming_delayed_work(&per_cpu(reap_work, cpu));
1296 /* Now the cache_reaper is guaranteed to be not running. */
1297 per_cpu(reap_work, cpu).work.func = NULL;
1298 break;
1299 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001300 case CPU_DOWN_FAILED_FROZEN:
Christoph Lameter5830c592007-05-09 02:34:22 -07001301 start_cpu_timer(cpu);
1302 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001304 case CPU_DEAD_FROZEN:
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001305 /*
1306 * Even if all the cpus of a node are down, we don't free the
1307 * kmem_list3 of any cache. This to avoid a race between
1308 * cpu_down, and a kmalloc allocation from another cpu for
1309 * memory from the node of the cpu going down. The list3
1310 * structure is usually allocated from kmem_cache_create() and
1311 * gets destroyed at kmem_cache_destroy().
1312 */
Simon Arlott183ff222007-10-20 01:27:18 +02001313 /* fall through */
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08001314#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001315 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001316 case CPU_UP_CANCELED_FROZEN:
Gautham R Shenoy95402b32008-01-25 21:08:02 +01001317 mutex_lock(&cache_chain_mutex);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001318 cpuup_canceled(cpu);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001319 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321 }
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001322 return err ? NOTIFY_BAD : NOTIFY_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001323}
1324
Chandra Seetharaman74b85f32006-06-27 02:54:09 -07001325static struct notifier_block __cpuinitdata cpucache_notifier = {
1326 &cpuup_callback, NULL, 0
1327};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001328
Christoph Lametere498be72005-09-09 13:03:32 -07001329/*
1330 * swap the static kmem_list3 with kmalloced memory
1331 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08001332static void init_list(struct kmem_cache *cachep, struct kmem_list3 *list,
1333 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07001334{
1335 struct kmem_list3 *ptr;
1336
Pekka Enberg83b519e2009-06-10 19:40:04 +03001337 ptr = kmalloc_node(sizeof(struct kmem_list3), GFP_NOWAIT, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07001338 BUG_ON(!ptr);
1339
Christoph Lametere498be72005-09-09 13:03:32 -07001340 memcpy(ptr, list, sizeof(struct kmem_list3));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001341 /*
1342 * Do not assume that spinlocks can be initialized via memcpy:
1343 */
1344 spin_lock_init(&ptr->list_lock);
1345
Christoph Lametere498be72005-09-09 13:03:32 -07001346 MAKE_ALL_LISTS(cachep, ptr, nodeid);
1347 cachep->nodelists[nodeid] = ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001348}
1349
Andrew Mortona737b3e2006-03-22 00:08:11 -08001350/*
Pekka Enberg556a1692008-01-25 08:20:51 +02001351 * For setting up all the kmem_list3s for cache whose buffer_size is same as
1352 * size of kmem_list3.
1353 */
1354static void __init set_up_list3s(struct kmem_cache *cachep, int index)
1355{
1356 int node;
1357
1358 for_each_online_node(node) {
1359 cachep->nodelists[node] = &initkmem_list3[index + node];
1360 cachep->nodelists[node]->next_reap = jiffies +
1361 REAPTIMEOUT_LIST3 +
1362 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
1363 }
1364}
1365
1366/*
Andrew Mortona737b3e2006-03-22 00:08:11 -08001367 * Initialisation. Called after the page allocator have been initialised and
1368 * before smp_init().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 */
1370void __init kmem_cache_init(void)
1371{
1372 size_t left_over;
1373 struct cache_sizes *sizes;
1374 struct cache_names *names;
Christoph Lametere498be72005-09-09 13:03:32 -07001375 int i;
Jack Steiner07ed76b2006-03-07 21:55:46 -08001376 int order;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001377 int node;
Christoph Lametere498be72005-09-09 13:03:32 -07001378
Mel Gormanb6e68bc2009-06-16 15:32:16 -07001379 if (num_possible_nodes() == 1)
Siddha, Suresh B62918a02007-05-02 19:27:18 +02001380 use_alien_caches = 0;
1381
Christoph Lametere498be72005-09-09 13:03:32 -07001382 for (i = 0; i < NUM_INIT_LISTS; i++) {
1383 kmem_list3_init(&initkmem_list3[i]);
1384 if (i < MAX_NUMNODES)
1385 cache_cache.nodelists[i] = NULL;
1386 }
Pekka Enberg556a1692008-01-25 08:20:51 +02001387 set_up_list3s(&cache_cache, CACHE_CACHE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388
1389 /*
1390 * Fragmentation resistance on low memory - only use bigger
1391 * page orders on machines with more than 32MB of memory.
1392 */
1393 if (num_physpages > (32 << 20) >> PAGE_SHIFT)
1394 slab_break_gfp_order = BREAK_GFP_ORDER_HI;
1395
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396 /* Bootstrap is tricky, because several objects are allocated
1397 * from caches that do not exist yet:
Andrew Mortona737b3e2006-03-22 00:08:11 -08001398 * 1) initialize the cache_cache cache: it contains the struct
1399 * kmem_cache structures of all caches, except cache_cache itself:
1400 * cache_cache is statically allocated.
Christoph Lametere498be72005-09-09 13:03:32 -07001401 * Initially an __init data area is used for the head array and the
1402 * kmem_list3 structures, it's replaced with a kmalloc allocated
1403 * array at the end of the bootstrap.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 * 2) Create the first kmalloc cache.
Pekka Enberg343e0d72006-02-01 03:05:50 -08001405 * The struct kmem_cache for the new cache is allocated normally.
Christoph Lametere498be72005-09-09 13:03:32 -07001406 * An __init data area is used for the head array.
1407 * 3) Create the remaining kmalloc caches, with minimally sized
1408 * head arrays.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 * 4) Replace the __init data head arrays for cache_cache and the first
1410 * kmalloc cache with kmalloc allocated arrays.
Christoph Lametere498be72005-09-09 13:03:32 -07001411 * 5) Replace the __init data for kmem_list3 for cache_cache and
1412 * the other cache's with kmalloc allocated memory.
1413 * 6) Resize the head arrays of the kmalloc caches to their final sizes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 */
1415
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001416 node = numa_node_id();
1417
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 /* 1) create the cache_cache */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419 INIT_LIST_HEAD(&cache_chain);
1420 list_add(&cache_cache.next, &cache_chain);
1421 cache_cache.colour_off = cache_line_size();
1422 cache_cache.array[smp_processor_id()] = &initarray_cache.cache;
Daniel Yeisleyec1f5ee2008-03-25 23:59:08 +02001423 cache_cache.nodelists[node] = &initkmem_list3[CACHE_CACHE + node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424
Eric Dumazet8da34302007-05-06 14:49:29 -07001425 /*
1426 * struct kmem_cache size depends on nr_node_ids, which
1427 * can be less than MAX_NUMNODES.
1428 */
1429 cache_cache.buffer_size = offsetof(struct kmem_cache, nodelists) +
1430 nr_node_ids * sizeof(struct kmem_list3 *);
1431#if DEBUG
1432 cache_cache.obj_size = cache_cache.buffer_size;
1433#endif
Andrew Mortona737b3e2006-03-22 00:08:11 -08001434 cache_cache.buffer_size = ALIGN(cache_cache.buffer_size,
1435 cache_line_size());
Eric Dumazet6a2d7a92006-12-13 00:34:27 -08001436 cache_cache.reciprocal_buffer_size =
1437 reciprocal_value(cache_cache.buffer_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438
Jack Steiner07ed76b2006-03-07 21:55:46 -08001439 for (order = 0; order < MAX_ORDER; order++) {
1440 cache_estimate(order, cache_cache.buffer_size,
1441 cache_line_size(), 0, &left_over, &cache_cache.num);
1442 if (cache_cache.num)
1443 break;
1444 }
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02001445 BUG_ON(!cache_cache.num);
Jack Steiner07ed76b2006-03-07 21:55:46 -08001446 cache_cache.gfporder = order;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001447 cache_cache.colour = left_over / cache_cache.colour_off;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001448 cache_cache.slab_size = ALIGN(cache_cache.num * sizeof(kmem_bufctl_t) +
1449 sizeof(struct slab), cache_line_size());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001450
1451 /* 2+3) create the kmalloc caches */
1452 sizes = malloc_sizes;
1453 names = cache_names;
1454
Andrew Mortona737b3e2006-03-22 00:08:11 -08001455 /*
1456 * Initialize the caches that provide memory for the array cache and the
1457 * kmem_list3 structures first. Without this, further allocations will
1458 * bug.
Christoph Lametere498be72005-09-09 13:03:32 -07001459 */
1460
1461 sizes[INDEX_AC].cs_cachep = kmem_cache_create(names[INDEX_AC].name,
Andrew Mortona737b3e2006-03-22 00:08:11 -08001462 sizes[INDEX_AC].cs_size,
1463 ARCH_KMALLOC_MINALIGN,
1464 ARCH_KMALLOC_FLAGS|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09001465 NULL);
Christoph Lametere498be72005-09-09 13:03:32 -07001466
Andrew Mortona737b3e2006-03-22 00:08:11 -08001467 if (INDEX_AC != INDEX_L3) {
Christoph Lametere498be72005-09-09 13:03:32 -07001468 sizes[INDEX_L3].cs_cachep =
Andrew Mortona737b3e2006-03-22 00:08:11 -08001469 kmem_cache_create(names[INDEX_L3].name,
1470 sizes[INDEX_L3].cs_size,
1471 ARCH_KMALLOC_MINALIGN,
1472 ARCH_KMALLOC_FLAGS|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09001473 NULL);
Andrew Mortona737b3e2006-03-22 00:08:11 -08001474 }
Christoph Lametere498be72005-09-09 13:03:32 -07001475
Ingo Molnare0a42722006-06-23 02:03:46 -07001476 slab_early_init = 0;
1477
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 while (sizes->cs_size != ULONG_MAX) {
Christoph Lametere498be72005-09-09 13:03:32 -07001479 /*
1480 * For performance, all the general caches are L1 aligned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 * This should be particularly beneficial on SMP boxes, as it
1482 * eliminates "false sharing".
1483 * Note for systems short on memory removing the alignment will
Christoph Lametere498be72005-09-09 13:03:32 -07001484 * allow tighter packing of the smaller caches.
1485 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08001486 if (!sizes->cs_cachep) {
Christoph Lametere498be72005-09-09 13:03:32 -07001487 sizes->cs_cachep = kmem_cache_create(names->name,
Andrew Mortona737b3e2006-03-22 00:08:11 -08001488 sizes->cs_size,
1489 ARCH_KMALLOC_MINALIGN,
1490 ARCH_KMALLOC_FLAGS|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09001491 NULL);
Andrew Mortona737b3e2006-03-22 00:08:11 -08001492 }
Christoph Lameter4b51d662007-02-10 01:43:10 -08001493#ifdef CONFIG_ZONE_DMA
1494 sizes->cs_dmacachep = kmem_cache_create(
1495 names->name_dma,
Andrew Mortona737b3e2006-03-22 00:08:11 -08001496 sizes->cs_size,
1497 ARCH_KMALLOC_MINALIGN,
1498 ARCH_KMALLOC_FLAGS|SLAB_CACHE_DMA|
1499 SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09001500 NULL);
Christoph Lameter4b51d662007-02-10 01:43:10 -08001501#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 sizes++;
1503 names++;
1504 }
1505 /* 4) Replace the bootstrap head arrays */
1506 {
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001507 struct array_cache *ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001508
Pekka Enberg83b519e2009-06-10 19:40:04 +03001509 ptr = kmalloc(sizeof(struct arraycache_init), GFP_NOWAIT);
Christoph Lametere498be72005-09-09 13:03:32 -07001510
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001511 BUG_ON(cpu_cache_get(&cache_cache) != &initarray_cache.cache);
1512 memcpy(ptr, cpu_cache_get(&cache_cache),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001513 sizeof(struct arraycache_init));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001514 /*
1515 * Do not assume that spinlocks can be initialized via memcpy:
1516 */
1517 spin_lock_init(&ptr->lock);
1518
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 cache_cache.array[smp_processor_id()] = ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001520
Pekka Enberg83b519e2009-06-10 19:40:04 +03001521 ptr = kmalloc(sizeof(struct arraycache_init), GFP_NOWAIT);
Christoph Lametere498be72005-09-09 13:03:32 -07001522
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001523 BUG_ON(cpu_cache_get(malloc_sizes[INDEX_AC].cs_cachep)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001524 != &initarray_generic.cache);
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001525 memcpy(ptr, cpu_cache_get(malloc_sizes[INDEX_AC].cs_cachep),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001526 sizeof(struct arraycache_init));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001527 /*
1528 * Do not assume that spinlocks can be initialized via memcpy:
1529 */
1530 spin_lock_init(&ptr->lock);
1531
Christoph Lametere498be72005-09-09 13:03:32 -07001532 malloc_sizes[INDEX_AC].cs_cachep->array[smp_processor_id()] =
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001533 ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 }
Christoph Lametere498be72005-09-09 13:03:32 -07001535 /* 5) Replace the bootstrap kmem_list3's */
1536 {
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001537 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538
Mel Gorman9c09a952008-01-24 05:49:54 -08001539 for_each_online_node(nid) {
Daniel Yeisleyec1f5ee2008-03-25 23:59:08 +02001540 init_list(&cache_cache, &initkmem_list3[CACHE_CACHE + nid], nid);
Pekka Enberg556a1692008-01-25 08:20:51 +02001541
Christoph Lametere498be72005-09-09 13:03:32 -07001542 init_list(malloc_sizes[INDEX_AC].cs_cachep,
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001543 &initkmem_list3[SIZE_AC + nid], nid);
Christoph Lametere498be72005-09-09 13:03:32 -07001544
1545 if (INDEX_AC != INDEX_L3) {
1546 init_list(malloc_sizes[INDEX_L3].cs_cachep,
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001547 &initkmem_list3[SIZE_L3 + nid], nid);
Christoph Lametere498be72005-09-09 13:03:32 -07001548 }
1549 }
1550 }
1551
Pekka Enberg8429db52009-06-12 15:58:59 +03001552 g_cpucache_up = EARLY;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -07001554 /* Annotate slab for lockdep -- annotate the malloc caches */
1555 init_lock_keys();
Pekka Enberg8429db52009-06-12 15:58:59 +03001556}
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -07001557
Pekka Enberg8429db52009-06-12 15:58:59 +03001558void __init kmem_cache_init_late(void)
1559{
1560 struct kmem_cache *cachep;
1561
1562 /*
1563 * Interrupts are enabled now so all GFP allocations are safe.
1564 */
1565 slab_gfp_mask = __GFP_BITS_MASK;
1566
1567 /* 6) resize the head arrays to their final sizes */
1568 mutex_lock(&cache_chain_mutex);
1569 list_for_each_entry(cachep, &cache_chain, next)
1570 if (enable_cpucache(cachep, GFP_NOWAIT))
1571 BUG();
1572 mutex_unlock(&cache_chain_mutex);
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -07001573
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 /* Done! */
1575 g_cpucache_up = FULL;
1576
Andrew Mortona737b3e2006-03-22 00:08:11 -08001577 /*
1578 * Register a cpu startup notifier callback that initializes
1579 * cpu_cache_get for all new cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580 */
1581 register_cpu_notifier(&cpucache_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582
Andrew Mortona737b3e2006-03-22 00:08:11 -08001583 /*
1584 * The reap timers are started later, with a module init call: That part
1585 * of the kernel is not yet operational.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 */
1587}
1588
1589static int __init cpucache_init(void)
1590{
1591 int cpu;
1592
Andrew Mortona737b3e2006-03-22 00:08:11 -08001593 /*
1594 * Register the timers that return unneeded pages to the page allocator
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 */
Christoph Lametere498be72005-09-09 13:03:32 -07001596 for_each_online_cpu(cpu)
Andrew Mortona737b3e2006-03-22 00:08:11 -08001597 start_cpu_timer(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 return 0;
1599}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600__initcall(cpucache_init);
1601
1602/*
1603 * Interface to system's page allocator. No need to hold the cache-lock.
1604 *
1605 * If we requested dmaable memory, we will get it. Even if we
1606 * did not request dmaable memory, we might get it, but that
1607 * would be relatively rare and ignorable.
1608 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001609static void *kmem_getpages(struct kmem_cache *cachep, gfp_t flags, int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610{
1611 struct page *page;
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001612 int nr_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613 int i;
1614
Luke Yangd6fef9d2006-04-10 22:52:56 -07001615#ifndef CONFIG_MMU
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001616 /*
1617 * Nommu uses slab's for process anonymous memory allocations, and thus
1618 * requires __GFP_COMP to properly refcount higher order allocations
Luke Yangd6fef9d2006-04-10 22:52:56 -07001619 */
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001620 flags |= __GFP_COMP;
Luke Yangd6fef9d2006-04-10 22:52:56 -07001621#endif
Christoph Lameter765c4502006-09-27 01:50:08 -07001622
Christoph Lameter3c517a62006-12-06 20:33:29 -08001623 flags |= cachep->gfpflags;
Mel Gormane12ba742007-10-16 01:25:52 -07001624 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1625 flags |= __GFP_RECLAIMABLE;
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001626
Linus Torvalds517d0862009-06-16 19:50:13 -07001627 page = alloc_pages_exact_node(nodeid, flags | __GFP_NOTRACK, cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001628 if (!page)
1629 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001631 nr_pages = (1 << cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
Christoph Lameter972d1a72006-09-25 23:31:51 -07001633 add_zone_page_state(page_zone(page),
1634 NR_SLAB_RECLAIMABLE, nr_pages);
1635 else
1636 add_zone_page_state(page_zone(page),
1637 NR_SLAB_UNRECLAIMABLE, nr_pages);
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001638 for (i = 0; i < nr_pages; i++)
1639 __SetPageSlab(page + i);
Pekka Enbergc175eea2008-05-09 20:35:53 +02001640
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001641 if (kmemcheck_enabled && !(cachep->flags & SLAB_NOTRACK)) {
1642 kmemcheck_alloc_shadow(page, cachep->gfporder, flags, nodeid);
1643
1644 if (cachep->ctor)
1645 kmemcheck_mark_uninitialized_pages(page, nr_pages);
1646 else
1647 kmemcheck_mark_unallocated_pages(page, nr_pages);
1648 }
Pekka Enbergc175eea2008-05-09 20:35:53 +02001649
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001650 return page_address(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001651}
1652
1653/*
1654 * Interface to system's page release.
1655 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001656static void kmem_freepages(struct kmem_cache *cachep, void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001658 unsigned long i = (1 << cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659 struct page *page = virt_to_page(addr);
1660 const unsigned long nr_freed = i;
1661
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001662 kmemcheck_free_shadow(page, cachep->gfporder);
Pekka Enbergc175eea2008-05-09 20:35:53 +02001663
Christoph Lameter972d1a72006-09-25 23:31:51 -07001664 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1665 sub_zone_page_state(page_zone(page),
1666 NR_SLAB_RECLAIMABLE, nr_freed);
1667 else
1668 sub_zone_page_state(page_zone(page),
1669 NR_SLAB_UNRECLAIMABLE, nr_freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001670 while (i--) {
Nick Pigginf205b2f2006-03-22 00:08:02 -08001671 BUG_ON(!PageSlab(page));
1672 __ClearPageSlab(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673 page++;
1674 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675 if (current->reclaim_state)
1676 current->reclaim_state->reclaimed_slab += nr_freed;
1677 free_pages((unsigned long)addr, cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001678}
1679
1680static void kmem_rcu_free(struct rcu_head *head)
1681{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001682 struct slab_rcu *slab_rcu = (struct slab_rcu *)head;
Pekka Enberg343e0d72006-02-01 03:05:50 -08001683 struct kmem_cache *cachep = slab_rcu->cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001684
1685 kmem_freepages(cachep, slab_rcu->addr);
1686 if (OFF_SLAB(cachep))
1687 kmem_cache_free(cachep->slabp_cache, slab_rcu);
1688}
1689
1690#if DEBUG
1691
1692#ifdef CONFIG_DEBUG_PAGEALLOC
Pekka Enberg343e0d72006-02-01 03:05:50 -08001693static void store_stackinfo(struct kmem_cache *cachep, unsigned long *addr,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001694 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695{
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001696 int size = obj_size(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001697
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001698 addr = (unsigned long *)&((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001699
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001700 if (size < 5 * sizeof(unsigned long))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 return;
1702
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001703 *addr++ = 0x12345678;
1704 *addr++ = caller;
1705 *addr++ = smp_processor_id();
1706 size -= 3 * sizeof(unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 {
1708 unsigned long *sptr = &caller;
1709 unsigned long svalue;
1710
1711 while (!kstack_end(sptr)) {
1712 svalue = *sptr++;
1713 if (kernel_text_address(svalue)) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001714 *addr++ = svalue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715 size -= sizeof(unsigned long);
1716 if (size <= sizeof(unsigned long))
1717 break;
1718 }
1719 }
1720
1721 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001722 *addr++ = 0x87654321;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723}
1724#endif
1725
Pekka Enberg343e0d72006-02-01 03:05:50 -08001726static void poison_obj(struct kmem_cache *cachep, void *addr, unsigned char val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727{
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001728 int size = obj_size(cachep);
1729 addr = &((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001730
1731 memset(addr, val, size);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001732 *(unsigned char *)(addr + size - 1) = POISON_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733}
1734
1735static void dump_line(char *data, int offset, int limit)
1736{
1737 int i;
Dave Jonesaa83aa42006-09-29 01:59:51 -07001738 unsigned char error = 0;
1739 int bad_count = 0;
1740
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 printk(KERN_ERR "%03x:", offset);
Dave Jonesaa83aa42006-09-29 01:59:51 -07001742 for (i = 0; i < limit; i++) {
1743 if (data[offset + i] != POISON_FREE) {
1744 error = data[offset + i];
1745 bad_count++;
1746 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001747 printk(" %02x", (unsigned char)data[offset + i]);
Dave Jonesaa83aa42006-09-29 01:59:51 -07001748 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 printk("\n");
Dave Jonesaa83aa42006-09-29 01:59:51 -07001750
1751 if (bad_count == 1) {
1752 error ^= POISON_FREE;
1753 if (!(error & (error - 1))) {
1754 printk(KERN_ERR "Single bit error detected. Probably "
1755 "bad RAM.\n");
1756#ifdef CONFIG_X86
1757 printk(KERN_ERR "Run memtest86+ or a similar memory "
1758 "test tool.\n");
1759#else
1760 printk(KERN_ERR "Run a memory test tool.\n");
1761#endif
1762 }
1763 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764}
1765#endif
1766
1767#if DEBUG
1768
Pekka Enberg343e0d72006-02-01 03:05:50 -08001769static void print_objinfo(struct kmem_cache *cachep, void *objp, int lines)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770{
1771 int i, size;
1772 char *realobj;
1773
1774 if (cachep->flags & SLAB_RED_ZONE) {
David Woodhouseb46b8f12007-05-08 00:22:59 -07001775 printk(KERN_ERR "Redzone: 0x%llx/0x%llx.\n",
Andrew Mortona737b3e2006-03-22 00:08:11 -08001776 *dbg_redzone1(cachep, objp),
1777 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 }
1779
1780 if (cachep->flags & SLAB_STORE_USER) {
1781 printk(KERN_ERR "Last user: [<%p>]",
Andrew Mortona737b3e2006-03-22 00:08:11 -08001782 *dbg_userword(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001783 print_symbol("(%s)",
Andrew Mortona737b3e2006-03-22 00:08:11 -08001784 (unsigned long)*dbg_userword(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001785 printk("\n");
1786 }
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001787 realobj = (char *)objp + obj_offset(cachep);
1788 size = obj_size(cachep);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001789 for (i = 0; i < size && lines; i += 16, lines--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 int limit;
1791 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001792 if (i + limit > size)
1793 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001794 dump_line(realobj, i, limit);
1795 }
1796}
1797
Pekka Enberg343e0d72006-02-01 03:05:50 -08001798static void check_poison_obj(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799{
1800 char *realobj;
1801 int size, i;
1802 int lines = 0;
1803
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001804 realobj = (char *)objp + obj_offset(cachep);
1805 size = obj_size(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001807 for (i = 0; i < size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001808 char exp = POISON_FREE;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001809 if (i == size - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810 exp = POISON_END;
1811 if (realobj[i] != exp) {
1812 int limit;
1813 /* Mismatch ! */
1814 /* Print header */
1815 if (lines == 0) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001816 printk(KERN_ERR
David Howellse94a40c2007-04-02 23:46:28 +01001817 "Slab corruption: %s start=%p, len=%d\n",
1818 cachep->name, realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819 print_objinfo(cachep, objp, 0);
1820 }
1821 /* Hexdump the affected line */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001822 i = (i / 16) * 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001823 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001824 if (i + limit > size)
1825 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 dump_line(realobj, i, limit);
1827 i += 16;
1828 lines++;
1829 /* Limit to 5 lines */
1830 if (lines > 5)
1831 break;
1832 }
1833 }
1834 if (lines != 0) {
1835 /* Print some data about the neighboring objects, if they
1836 * exist:
1837 */
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08001838 struct slab *slabp = virt_to_slab(objp);
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001839 unsigned int objnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001841 objnr = obj_to_index(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 if (objnr) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001843 objp = index_to_obj(cachep, slabp, objnr - 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001844 realobj = (char *)objp + obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845 printk(KERN_ERR "Prev obj: start=%p, len=%d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001846 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847 print_objinfo(cachep, objp, 2);
1848 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001849 if (objnr + 1 < cachep->num) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001850 objp = index_to_obj(cachep, slabp, objnr + 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001851 realobj = (char *)objp + obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852 printk(KERN_ERR "Next obj: start=%p, len=%d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001853 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854 print_objinfo(cachep, objp, 2);
1855 }
1856 }
1857}
1858#endif
1859
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860#if DEBUG
Rabin Vincente79aec22008-07-04 00:40:32 +05301861static void slab_destroy_debugcheck(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001862{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863 int i;
1864 for (i = 0; i < cachep->num; i++) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001865 void *objp = index_to_obj(cachep, slabp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866
1867 if (cachep->flags & SLAB_POISON) {
1868#ifdef CONFIG_DEBUG_PAGEALLOC
Andrew Mortona737b3e2006-03-22 00:08:11 -08001869 if (cachep->buffer_size % PAGE_SIZE == 0 &&
1870 OFF_SLAB(cachep))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001871 kernel_map_pages(virt_to_page(objp),
Andrew Mortona737b3e2006-03-22 00:08:11 -08001872 cachep->buffer_size / PAGE_SIZE, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 else
1874 check_poison_obj(cachep, objp);
1875#else
1876 check_poison_obj(cachep, objp);
1877#endif
1878 }
1879 if (cachep->flags & SLAB_RED_ZONE) {
1880 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
1881 slab_error(cachep, "start of a freed object "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001882 "was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
1884 slab_error(cachep, "end of a freed object "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001885 "was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 }
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001888}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889#else
Rabin Vincente79aec22008-07-04 00:40:32 +05301890static void slab_destroy_debugcheck(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001891{
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001892}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001893#endif
1894
Randy Dunlap911851e2006-03-22 00:08:14 -08001895/**
1896 * slab_destroy - destroy and release all objects in a slab
1897 * @cachep: cache pointer being destroyed
1898 * @slabp: slab pointer being destroyed
1899 *
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001900 * Destroy all the objs in a slab, and release the mem back to the system.
Andrew Mortona737b3e2006-03-22 00:08:11 -08001901 * Before calling the slab must have been unlinked from the cache. The
1902 * cache-lock is not held/needed.
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001903 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001904static void slab_destroy(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001905{
1906 void *addr = slabp->s_mem - slabp->colouroff;
1907
Rabin Vincente79aec22008-07-04 00:40:32 +05301908 slab_destroy_debugcheck(cachep, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 if (unlikely(cachep->flags & SLAB_DESTROY_BY_RCU)) {
1910 struct slab_rcu *slab_rcu;
1911
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001912 slab_rcu = (struct slab_rcu *)slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913 slab_rcu->cachep = cachep;
1914 slab_rcu->addr = addr;
1915 call_rcu(&slab_rcu->head, kmem_rcu_free);
1916 } else {
1917 kmem_freepages(cachep, addr);
Ingo Molnar873623d2006-07-13 14:44:38 +02001918 if (OFF_SLAB(cachep))
1919 kmem_cache_free(cachep->slabp_cache, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 }
1921}
1922
Christoph Lameter117f6eb2006-09-25 23:31:37 -07001923static void __kmem_cache_destroy(struct kmem_cache *cachep)
1924{
1925 int i;
1926 struct kmem_list3 *l3;
1927
1928 for_each_online_cpu(i)
1929 kfree(cachep->array[i]);
1930
1931 /* NUMA: free the list3 structures */
1932 for_each_online_node(i) {
1933 l3 = cachep->nodelists[i];
1934 if (l3) {
1935 kfree(l3->shared);
1936 free_alien_cache(l3->alien);
1937 kfree(l3);
1938 }
1939 }
1940 kmem_cache_free(&cache_cache, cachep);
1941}
1942
1943
Linus Torvalds1da177e2005-04-16 15:20:36 -07001944/**
Randy.Dunlapa70773d2006-02-01 03:05:52 -08001945 * calculate_slab_order - calculate size (page order) of slabs
1946 * @cachep: pointer to the cache that is being created
1947 * @size: size of objects to be created in this cache.
1948 * @align: required alignment for the objects.
1949 * @flags: slab allocation flags
1950 *
1951 * Also calculates the number of objects per slab.
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001952 *
1953 * This could be made much more intelligent. For now, try to avoid using
1954 * high order pages for slabs. When the gfp() functions are more friendly
1955 * towards high-order requests, this should be changed.
1956 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08001957static size_t calculate_slab_order(struct kmem_cache *cachep,
Randy Dunlapee13d782006-02-01 03:05:53 -08001958 size_t size, size_t align, unsigned long flags)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001959{
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02001960 unsigned long offslab_limit;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001961 size_t left_over = 0;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001962 int gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001963
Christoph Lameter0aa817f2007-05-16 22:11:01 -07001964 for (gfporder = 0; gfporder <= KMALLOC_MAX_ORDER; gfporder++) {
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001965 unsigned int num;
1966 size_t remainder;
1967
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001968 cache_estimate(gfporder, size, align, flags, &remainder, &num);
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001969 if (!num)
1970 continue;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001971
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02001972 if (flags & CFLGS_OFF_SLAB) {
1973 /*
1974 * Max number of objs-per-slab for caches which
1975 * use off-slab slabs. Needed to avoid a possible
1976 * looping condition in cache_grow().
1977 */
1978 offslab_limit = size - sizeof(struct slab);
1979 offslab_limit /= sizeof(kmem_bufctl_t);
1980
1981 if (num > offslab_limit)
1982 break;
1983 }
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001984
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001985 /* Found something acceptable - save it away */
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001986 cachep->num = num;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08001987 cachep->gfporder = gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001988 left_over = remainder;
1989
1990 /*
Linus Torvaldsf78bb8a2006-03-08 10:33:05 -08001991 * A VFS-reclaimable slab tends to have most allocations
1992 * as GFP_NOFS and we really don't want to have to be allocating
1993 * higher-order pages when we are unable to shrink dcache.
1994 */
1995 if (flags & SLAB_RECLAIM_ACCOUNT)
1996 break;
1997
1998 /*
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001999 * Large number of objects is good, but very large slabs are
2000 * currently bad for the gfp()s.
2001 */
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002002 if (gfporder >= slab_break_gfp_order)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002003 break;
2004
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002005 /*
2006 * Acceptable internal fragmentation?
2007 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002008 if (left_over * 8 <= (PAGE_SIZE << gfporder))
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002009 break;
2010 }
2011 return left_over;
2012}
2013
Pekka Enberg83b519e2009-06-10 19:40:04 +03002014static int __init_refok setup_cpu_cache(struct kmem_cache *cachep, gfp_t gfp)
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002015{
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002016 if (g_cpucache_up == FULL)
Pekka Enberg83b519e2009-06-10 19:40:04 +03002017 return enable_cpucache(cachep, gfp);
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002018
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002019 if (g_cpucache_up == NONE) {
2020 /*
2021 * Note: the first kmem_cache_create must create the cache
2022 * that's used by kmalloc(24), otherwise the creation of
2023 * further caches will BUG().
2024 */
2025 cachep->array[smp_processor_id()] = &initarray_generic.cache;
2026
2027 /*
2028 * If the cache that's used by kmalloc(sizeof(kmem_list3)) is
2029 * the first cache, then we need to set up all its list3s,
2030 * otherwise the creation of further caches will BUG().
2031 */
2032 set_up_list3s(cachep, SIZE_AC);
2033 if (INDEX_AC == INDEX_L3)
2034 g_cpucache_up = PARTIAL_L3;
2035 else
2036 g_cpucache_up = PARTIAL_AC;
2037 } else {
2038 cachep->array[smp_processor_id()] =
Pekka Enberg83b519e2009-06-10 19:40:04 +03002039 kmalloc(sizeof(struct arraycache_init), gfp);
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002040
2041 if (g_cpucache_up == PARTIAL_AC) {
2042 set_up_list3s(cachep, SIZE_L3);
2043 g_cpucache_up = PARTIAL_L3;
2044 } else {
2045 int node;
Pekka Enberg556a1692008-01-25 08:20:51 +02002046 for_each_online_node(node) {
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002047 cachep->nodelists[node] =
2048 kmalloc_node(sizeof(struct kmem_list3),
Pekka Enbergeb91f1d2009-06-12 14:56:09 +03002049 gfp, node);
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002050 BUG_ON(!cachep->nodelists[node]);
2051 kmem_list3_init(cachep->nodelists[node]);
2052 }
2053 }
2054 }
2055 cachep->nodelists[numa_node_id()]->next_reap =
2056 jiffies + REAPTIMEOUT_LIST3 +
2057 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
2058
2059 cpu_cache_get(cachep)->avail = 0;
2060 cpu_cache_get(cachep)->limit = BOOT_CPUCACHE_ENTRIES;
2061 cpu_cache_get(cachep)->batchcount = 1;
2062 cpu_cache_get(cachep)->touched = 0;
2063 cachep->batchcount = 1;
2064 cachep->limit = BOOT_CPUCACHE_ENTRIES;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002065 return 0;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002066}
2067
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002068/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069 * kmem_cache_create - Create a cache.
2070 * @name: A string which is used in /proc/slabinfo to identify this cache.
2071 * @size: The size of objects to be created in this cache.
2072 * @align: The required alignment for the objects.
2073 * @flags: SLAB flags
2074 * @ctor: A constructor for the objects.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 *
2076 * Returns a ptr to the cache on success, NULL on failure.
2077 * Cannot be called within a int, but can be interrupted.
Paul Mundt20c2df82007-07-20 10:11:58 +09002078 * The @ctor is run when new pages are allocated by the cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079 *
2080 * @name must be valid until the cache is destroyed. This implies that
Andrew Mortona737b3e2006-03-22 00:08:11 -08002081 * the module calling this has to destroy the cache before getting unloaded.
Catalin Marinas249da162008-11-21 12:56:22 +00002082 * Note that kmem_cache_name() is not guaranteed to return the same pointer,
2083 * therefore applications must manage it themselves.
Andrew Mortona737b3e2006-03-22 00:08:11 -08002084 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 * The flags are
2086 *
2087 * %SLAB_POISON - Poison the slab with a known test pattern (a5a5a5a5)
2088 * to catch references to uninitialised memory.
2089 *
2090 * %SLAB_RED_ZONE - Insert `Red' zones around the allocated memory to check
2091 * for buffer overruns.
2092 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 * %SLAB_HWCACHE_ALIGN - Align the objects in this cache to a hardware
2094 * cacheline. This can be beneficial if you're counting cycles as closely
2095 * as davem.
2096 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002097struct kmem_cache *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002098kmem_cache_create (const char *name, size_t size, size_t align,
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002099 unsigned long flags, void (*ctor)(void *))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100{
2101 size_t left_over, slab_size, ralign;
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07002102 struct kmem_cache *cachep = NULL, *pc;
Pekka Enberg83b519e2009-06-10 19:40:04 +03002103 gfp_t gfp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002104
2105 /*
2106 * Sanity checks... these are all serious usage bugs.
2107 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002108 if (!name || in_interrupt() || (size < BYTES_PER_WORD) ||
Paul Mundt20c2df82007-07-20 10:11:58 +09002109 size > KMALLOC_MAX_SIZE) {
Harvey Harrisond40cee22008-04-30 00:55:07 -07002110 printk(KERN_ERR "%s: Early error in slab %s\n", __func__,
Andrew Mortona737b3e2006-03-22 00:08:11 -08002111 name);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002112 BUG();
2113 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114
Ravikiran G Thirumalaif0188f42006-02-10 01:51:13 -08002115 /*
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002116 * We use cache_chain_mutex to ensure a consistent view of
Rusty Russell174596a2009-01-01 10:12:29 +10302117 * cpu_online_mask as well. Please see cpuup_callback
Ravikiran G Thirumalaif0188f42006-02-10 01:51:13 -08002118 */
Pekka Enberg83b519e2009-06-10 19:40:04 +03002119 if (slab_is_available()) {
2120 get_online_cpus();
2121 mutex_lock(&cache_chain_mutex);
2122 }
Andrew Morton4f12bb42005-11-07 00:58:00 -08002123
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07002124 list_for_each_entry(pc, &cache_chain, next) {
Andrew Morton4f12bb42005-11-07 00:58:00 -08002125 char tmp;
2126 int res;
2127
2128 /*
2129 * This happens when the module gets unloaded and doesn't
2130 * destroy its slab cache and no-one else reuses the vmalloc
2131 * area of the module. Print a warning.
2132 */
Andrew Morton138ae662006-12-06 20:36:41 -08002133 res = probe_kernel_address(pc->name, tmp);
Andrew Morton4f12bb42005-11-07 00:58:00 -08002134 if (res) {
matzeb4169522007-05-06 14:49:52 -07002135 printk(KERN_ERR
2136 "SLAB: cache with size %d has lost its name\n",
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002137 pc->buffer_size);
Andrew Morton4f12bb42005-11-07 00:58:00 -08002138 continue;
2139 }
2140
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002141 if (!strcmp(pc->name, name)) {
matzeb4169522007-05-06 14:49:52 -07002142 printk(KERN_ERR
2143 "kmem_cache_create: duplicate cache %s\n", name);
Andrew Morton4f12bb42005-11-07 00:58:00 -08002144 dump_stack();
2145 goto oops;
2146 }
2147 }
2148
Linus Torvalds1da177e2005-04-16 15:20:36 -07002149#if DEBUG
2150 WARN_ON(strchr(name, ' ')); /* It confuses parsers */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151#if FORCED_DEBUG
2152 /*
2153 * Enable redzoning and last user accounting, except for caches with
2154 * large objects, if the increased size would increase the object size
2155 * above the next power of two: caches with object sizes just above a
2156 * power of two have a significant amount of internal fragmentation.
2157 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002158 if (size < 4096 || fls(size - 1) == fls(size-1 + REDZONE_ALIGN +
2159 2 * sizeof(unsigned long long)))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002160 flags |= SLAB_RED_ZONE | SLAB_STORE_USER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161 if (!(flags & SLAB_DESTROY_BY_RCU))
2162 flags |= SLAB_POISON;
2163#endif
2164 if (flags & SLAB_DESTROY_BY_RCU)
2165 BUG_ON(flags & SLAB_POISON);
2166#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002167 /*
Andrew Mortona737b3e2006-03-22 00:08:11 -08002168 * Always checks flags, a caller might be expecting debug support which
2169 * isn't available.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 */
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002171 BUG_ON(flags & ~CREATE_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002172
Andrew Mortona737b3e2006-03-22 00:08:11 -08002173 /*
2174 * Check that size is in terms of words. This is needed to avoid
Linus Torvalds1da177e2005-04-16 15:20:36 -07002175 * unaligned accesses for some archs when redzoning is used, and makes
2176 * sure any on-slab bufctl's are also correctly aligned.
2177 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002178 if (size & (BYTES_PER_WORD - 1)) {
2179 size += (BYTES_PER_WORD - 1);
2180 size &= ~(BYTES_PER_WORD - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181 }
2182
Andrew Mortona737b3e2006-03-22 00:08:11 -08002183 /* calculate the final buffer alignment: */
2184
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 /* 1) arch recommendation: can be overridden for debug */
2186 if (flags & SLAB_HWCACHE_ALIGN) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002187 /*
2188 * Default alignment: as specified by the arch code. Except if
2189 * an object is really small, then squeeze multiple objects into
2190 * one cacheline.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 */
2192 ralign = cache_line_size();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002193 while (size <= ralign / 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 ralign /= 2;
2195 } else {
2196 ralign = BYTES_PER_WORD;
2197 }
Pekka Enbergca5f9702006-09-25 23:31:25 -07002198
2199 /*
David Woodhouse87a927c2007-07-04 21:26:44 -04002200 * Redzoning and user store require word alignment or possibly larger.
2201 * Note this will be overridden by architecture or caller mandated
2202 * alignment if either is greater than BYTES_PER_WORD.
Pekka Enbergca5f9702006-09-25 23:31:25 -07002203 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002204 if (flags & SLAB_STORE_USER)
2205 ralign = BYTES_PER_WORD;
2206
2207 if (flags & SLAB_RED_ZONE) {
2208 ralign = REDZONE_ALIGN;
2209 /* If redzoning, ensure that the second redzone is suitably
2210 * aligned, by adjusting the object size accordingly. */
2211 size += REDZONE_ALIGN - 1;
2212 size &= ~(REDZONE_ALIGN - 1);
2213 }
Pekka Enbergca5f9702006-09-25 23:31:25 -07002214
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002215 /* 2) arch mandated alignment */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002216 if (ralign < ARCH_SLAB_MINALIGN) {
2217 ralign = ARCH_SLAB_MINALIGN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002218 }
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002219 /* 3) caller mandated alignment */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002220 if (ralign < align) {
2221 ralign = align;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 }
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002223 /* disable debug if necessary */
David Woodhouseb46b8f12007-05-08 00:22:59 -07002224 if (ralign > __alignof__(unsigned long long))
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002225 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002226 /*
Pekka Enbergca5f9702006-09-25 23:31:25 -07002227 * 4) Store it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 */
2229 align = ralign;
2230
Pekka Enberg83b519e2009-06-10 19:40:04 +03002231 if (slab_is_available())
2232 gfp = GFP_KERNEL;
2233 else
2234 gfp = GFP_NOWAIT;
2235
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 /* Get cache's description obj. */
Pekka Enberg83b519e2009-06-10 19:40:04 +03002237 cachep = kmem_cache_zalloc(&cache_cache, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 if (!cachep)
Andrew Morton4f12bb42005-11-07 00:58:00 -08002239 goto oops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002240
2241#if DEBUG
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002242 cachep->obj_size = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243
Pekka Enbergca5f9702006-09-25 23:31:25 -07002244 /*
2245 * Both debugging options require word-alignment which is calculated
2246 * into align above.
2247 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248 if (flags & SLAB_RED_ZONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 /* add space for red zone words */
David Woodhouseb46b8f12007-05-08 00:22:59 -07002250 cachep->obj_offset += sizeof(unsigned long long);
2251 size += 2 * sizeof(unsigned long long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 }
2253 if (flags & SLAB_STORE_USER) {
Pekka Enbergca5f9702006-09-25 23:31:25 -07002254 /* user store requires one word storage behind the end of
David Woodhouse87a927c2007-07-04 21:26:44 -04002255 * the real object. But if the second red zone needs to be
2256 * aligned to 64 bits, we must allow that much space.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002257 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002258 if (flags & SLAB_RED_ZONE)
2259 size += REDZONE_ALIGN;
2260 else
2261 size += BYTES_PER_WORD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002262 }
2263#if FORCED_DEBUG && defined(CONFIG_DEBUG_PAGEALLOC)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002264 if (size >= malloc_sizes[INDEX_L3 + 1].cs_size
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002265 && cachep->obj_size > cache_line_size() && size < PAGE_SIZE) {
2266 cachep->obj_offset += PAGE_SIZE - size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 size = PAGE_SIZE;
2268 }
2269#endif
2270#endif
2271
Ingo Molnare0a42722006-06-23 02:03:46 -07002272 /*
2273 * Determine if the slab management is 'on' or 'off' slab.
2274 * (bootstrapping cannot cope with offslab caches so don't do
2275 * it too early on.)
2276 */
2277 if ((size >= (PAGE_SIZE >> 3)) && !slab_early_init)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278 /*
2279 * Size is large, assume best to place the slab management obj
2280 * off-slab (should allow better packing of objs).
2281 */
2282 flags |= CFLGS_OFF_SLAB;
2283
2284 size = ALIGN(size, align);
2285
Linus Torvaldsf78bb8a2006-03-08 10:33:05 -08002286 left_over = calculate_slab_order(cachep, size, align, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287
2288 if (!cachep->num) {
matzeb4169522007-05-06 14:49:52 -07002289 printk(KERN_ERR
2290 "kmem_cache_create: couldn't create cache %s.\n", name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002291 kmem_cache_free(&cache_cache, cachep);
2292 cachep = NULL;
Andrew Morton4f12bb42005-11-07 00:58:00 -08002293 goto oops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002294 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002295 slab_size = ALIGN(cachep->num * sizeof(kmem_bufctl_t)
2296 + sizeof(struct slab), align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002297
2298 /*
2299 * If the slab has been placed off-slab, and we have enough space then
2300 * move it on-slab. This is at the expense of any extra colouring.
2301 */
2302 if (flags & CFLGS_OFF_SLAB && left_over >= slab_size) {
2303 flags &= ~CFLGS_OFF_SLAB;
2304 left_over -= slab_size;
2305 }
2306
2307 if (flags & CFLGS_OFF_SLAB) {
2308 /* really off slab. No need for manual alignment */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002309 slab_size =
2310 cachep->num * sizeof(kmem_bufctl_t) + sizeof(struct slab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002311 }
2312
2313 cachep->colour_off = cache_line_size();
2314 /* Offset must be a multiple of the alignment. */
2315 if (cachep->colour_off < align)
2316 cachep->colour_off = align;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002317 cachep->colour = left_over / cachep->colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002318 cachep->slab_size = slab_size;
2319 cachep->flags = flags;
2320 cachep->gfpflags = 0;
Christoph Lameter4b51d662007-02-10 01:43:10 -08002321 if (CONFIG_ZONE_DMA_FLAG && (flags & SLAB_CACHE_DMA))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002322 cachep->gfpflags |= GFP_DMA;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002323 cachep->buffer_size = size;
Eric Dumazet6a2d7a92006-12-13 00:34:27 -08002324 cachep->reciprocal_buffer_size = reciprocal_value(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002326 if (flags & CFLGS_OFF_SLAB) {
Victor Fuscob2d55072005-09-10 00:26:36 -07002327 cachep->slabp_cache = kmem_find_general_cachep(slab_size, 0u);
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002328 /*
2329 * This is a possibility for one of the malloc_sizes caches.
2330 * But since we go off slab only for object size greater than
2331 * PAGE_SIZE/8, and malloc_sizes gets created in ascending order,
2332 * this should not happen at all.
2333 * But leave a BUG_ON for some lucky dude.
2334 */
Christoph Lameter6cb8f912007-07-17 04:03:22 -07002335 BUG_ON(ZERO_OR_NULL_PTR(cachep->slabp_cache));
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002336 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337 cachep->ctor = ctor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 cachep->name = name;
2339
Pekka Enberg83b519e2009-06-10 19:40:04 +03002340 if (setup_cpu_cache(cachep, gfp)) {
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002341 __kmem_cache_destroy(cachep);
2342 cachep = NULL;
2343 goto oops;
2344 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002345
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 /* cache setup completed, link it into the list */
2347 list_add(&cachep->next, &cache_chain);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002348oops:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 if (!cachep && (flags & SLAB_PANIC))
2350 panic("kmem_cache_create(): failed to create slab `%s'\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002351 name);
Pekka Enberg83b519e2009-06-10 19:40:04 +03002352 if (slab_is_available()) {
2353 mutex_unlock(&cache_chain_mutex);
2354 put_online_cpus();
2355 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 return cachep;
2357}
2358EXPORT_SYMBOL(kmem_cache_create);
2359
2360#if DEBUG
2361static void check_irq_off(void)
2362{
2363 BUG_ON(!irqs_disabled());
2364}
2365
2366static void check_irq_on(void)
2367{
2368 BUG_ON(irqs_disabled());
2369}
2370
Pekka Enberg343e0d72006-02-01 03:05:50 -08002371static void check_spinlock_acquired(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372{
2373#ifdef CONFIG_SMP
2374 check_irq_off();
Christoph Lametere498be72005-09-09 13:03:32 -07002375 assert_spin_locked(&cachep->nodelists[numa_node_id()]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376#endif
2377}
Christoph Lametere498be72005-09-09 13:03:32 -07002378
Pekka Enberg343e0d72006-02-01 03:05:50 -08002379static void check_spinlock_acquired_node(struct kmem_cache *cachep, int node)
Christoph Lametere498be72005-09-09 13:03:32 -07002380{
2381#ifdef CONFIG_SMP
2382 check_irq_off();
2383 assert_spin_locked(&cachep->nodelists[node]->list_lock);
2384#endif
2385}
2386
Linus Torvalds1da177e2005-04-16 15:20:36 -07002387#else
2388#define check_irq_off() do { } while(0)
2389#define check_irq_on() do { } while(0)
2390#define check_spinlock_acquired(x) do { } while(0)
Christoph Lametere498be72005-09-09 13:03:32 -07002391#define check_spinlock_acquired_node(x, y) do { } while(0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392#endif
2393
Christoph Lameteraab22072006-03-22 00:09:06 -08002394static void drain_array(struct kmem_cache *cachep, struct kmem_list3 *l3,
2395 struct array_cache *ac,
2396 int force, int node);
2397
Linus Torvalds1da177e2005-04-16 15:20:36 -07002398static void do_drain(void *arg)
2399{
Andrew Mortona737b3e2006-03-22 00:08:11 -08002400 struct kmem_cache *cachep = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401 struct array_cache *ac;
Christoph Lameterff694162005-09-22 21:44:02 -07002402 int node = numa_node_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403
2404 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002405 ac = cpu_cache_get(cachep);
Christoph Lameterff694162005-09-22 21:44:02 -07002406 spin_lock(&cachep->nodelists[node]->list_lock);
2407 free_block(cachep, ac->entry, ac->avail, node);
2408 spin_unlock(&cachep->nodelists[node]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 ac->avail = 0;
2410}
2411
Pekka Enberg343e0d72006-02-01 03:05:50 -08002412static void drain_cpu_caches(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413{
Christoph Lametere498be72005-09-09 13:03:32 -07002414 struct kmem_list3 *l3;
2415 int node;
2416
Jens Axboe15c8b6c2008-05-09 09:39:44 +02002417 on_each_cpu(do_drain, cachep, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002418 check_irq_on();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002419 for_each_online_node(node) {
Christoph Lametere498be72005-09-09 13:03:32 -07002420 l3 = cachep->nodelists[node];
Roland Dreiera4523a82006-05-15 11:41:00 -07002421 if (l3 && l3->alien)
2422 drain_alien_cache(cachep, l3->alien);
2423 }
2424
2425 for_each_online_node(node) {
2426 l3 = cachep->nodelists[node];
2427 if (l3)
Christoph Lameteraab22072006-03-22 00:09:06 -08002428 drain_array(cachep, l3, l3->shared, 1, node);
Christoph Lametere498be72005-09-09 13:03:32 -07002429 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002430}
2431
Christoph Lametered11d9e2006-06-30 01:55:45 -07002432/*
2433 * Remove slabs from the list of free slabs.
2434 * Specify the number of slabs to drain in tofree.
2435 *
2436 * Returns the actual number of slabs released.
2437 */
2438static int drain_freelist(struct kmem_cache *cache,
2439 struct kmem_list3 *l3, int tofree)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440{
Christoph Lametered11d9e2006-06-30 01:55:45 -07002441 struct list_head *p;
2442 int nr_freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002443 struct slab *slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002444
Christoph Lametered11d9e2006-06-30 01:55:45 -07002445 nr_freed = 0;
2446 while (nr_freed < tofree && !list_empty(&l3->slabs_free)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002447
Christoph Lametered11d9e2006-06-30 01:55:45 -07002448 spin_lock_irq(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07002449 p = l3->slabs_free.prev;
Christoph Lametered11d9e2006-06-30 01:55:45 -07002450 if (p == &l3->slabs_free) {
2451 spin_unlock_irq(&l3->list_lock);
2452 goto out;
2453 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454
Christoph Lametered11d9e2006-06-30 01:55:45 -07002455 slabp = list_entry(p, struct slab, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456#if DEBUG
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002457 BUG_ON(slabp->inuse);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458#endif
2459 list_del(&slabp->list);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002460 /*
2461 * Safe to drop the lock. The slab is no longer linked
2462 * to the cache.
2463 */
2464 l3->free_objects -= cache->num;
Christoph Lametere498be72005-09-09 13:03:32 -07002465 spin_unlock_irq(&l3->list_lock);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002466 slab_destroy(cache, slabp);
2467 nr_freed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 }
Christoph Lametered11d9e2006-06-30 01:55:45 -07002469out:
2470 return nr_freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002471}
2472
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002473/* Called with cache_chain_mutex held to protect against cpu hotplug */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002474static int __cache_shrink(struct kmem_cache *cachep)
Christoph Lametere498be72005-09-09 13:03:32 -07002475{
2476 int ret = 0, i = 0;
2477 struct kmem_list3 *l3;
2478
2479 drain_cpu_caches(cachep);
2480
2481 check_irq_on();
2482 for_each_online_node(i) {
2483 l3 = cachep->nodelists[i];
Christoph Lametered11d9e2006-06-30 01:55:45 -07002484 if (!l3)
2485 continue;
2486
2487 drain_freelist(cachep, l3, l3->free_objects);
2488
2489 ret += !list_empty(&l3->slabs_full) ||
2490 !list_empty(&l3->slabs_partial);
Christoph Lametere498be72005-09-09 13:03:32 -07002491 }
2492 return (ret ? 1 : 0);
2493}
2494
Linus Torvalds1da177e2005-04-16 15:20:36 -07002495/**
2496 * kmem_cache_shrink - Shrink a cache.
2497 * @cachep: The cache to shrink.
2498 *
2499 * Releases as many slabs as possible for a cache.
2500 * To help debugging, a zero exit status indicates all slabs were released.
2501 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002502int kmem_cache_shrink(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503{
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002504 int ret;
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002505 BUG_ON(!cachep || in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002506
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002507 get_online_cpus();
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002508 mutex_lock(&cache_chain_mutex);
2509 ret = __cache_shrink(cachep);
2510 mutex_unlock(&cache_chain_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002511 put_online_cpus();
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002512 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513}
2514EXPORT_SYMBOL(kmem_cache_shrink);
2515
2516/**
2517 * kmem_cache_destroy - delete a cache
2518 * @cachep: the cache to destroy
2519 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08002520 * Remove a &struct kmem_cache object from the slab cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002521 *
2522 * It is expected this function will be called by a module when it is
2523 * unloaded. This will remove the cache completely, and avoid a duplicate
2524 * cache being allocated each time a module is loaded and unloaded, if the
2525 * module doesn't have persistent in-kernel storage across loads and unloads.
2526 *
2527 * The cache must be empty before calling this function.
2528 *
2529 * The caller must guarantee that noone will allocate memory from the cache
2530 * during the kmem_cache_destroy().
2531 */
Alexey Dobriyan133d2052006-09-27 01:49:41 -07002532void kmem_cache_destroy(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533{
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002534 BUG_ON(!cachep || in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 /* Find the cache in the chain of caches. */
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002537 get_online_cpus();
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002538 mutex_lock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002539 /*
2540 * the chain is never empty, cache_cache is never destroyed
2541 */
2542 list_del(&cachep->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002543 if (__cache_shrink(cachep)) {
2544 slab_error(cachep, "Can't free all objects");
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002545 list_add(&cachep->next, &cache_chain);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002546 mutex_unlock(&cache_chain_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002547 put_online_cpus();
Alexey Dobriyan133d2052006-09-27 01:49:41 -07002548 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002549 }
2550
2551 if (unlikely(cachep->flags & SLAB_DESTROY_BY_RCU))
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07002552 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553
Christoph Lameter117f6eb2006-09-25 23:31:37 -07002554 __kmem_cache_destroy(cachep);
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002555 mutex_unlock(&cache_chain_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002556 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557}
2558EXPORT_SYMBOL(kmem_cache_destroy);
2559
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002560/*
2561 * Get the memory for a slab management obj.
2562 * For a slab cache when the slab descriptor is off-slab, slab descriptors
2563 * always come from malloc_sizes caches. The slab descriptor cannot
2564 * come from the same cache which is getting created because,
2565 * when we are searching for an appropriate cache for these
2566 * descriptors in kmem_cache_create, we search through the malloc_sizes array.
2567 * If we are creating a malloc_sizes cache here it would not be visible to
2568 * kmem_find_general_cachep till the initialization is complete.
2569 * Hence we cannot have slabp_cache same as the original cache.
2570 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002571static struct slab *alloc_slabmgmt(struct kmem_cache *cachep, void *objp,
Ravikiran G Thirumalai5b74ada2006-04-10 22:52:53 -07002572 int colour_off, gfp_t local_flags,
2573 int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574{
2575 struct slab *slabp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002576
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577 if (OFF_SLAB(cachep)) {
2578 /* Slab management obj is off-slab. */
Ravikiran G Thirumalai5b74ada2006-04-10 22:52:53 -07002579 slabp = kmem_cache_alloc_node(cachep->slabp_cache,
Pekka Enberg8759ec52008-11-26 10:01:31 +02002580 local_flags, nodeid);
Catalin Marinasd5cff632009-06-11 13:22:40 +01002581 /*
2582 * If the first object in the slab is leaked (it's allocated
2583 * but no one has a reference to it), we want to make sure
2584 * kmemleak does not treat the ->s_mem pointer as a reference
2585 * to the object. Otherwise we will not report the leak.
2586 */
2587 kmemleak_scan_area(slabp, offsetof(struct slab, list),
2588 sizeof(struct list_head), local_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589 if (!slabp)
2590 return NULL;
2591 } else {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002592 slabp = objp + colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002593 colour_off += cachep->slab_size;
2594 }
2595 slabp->inuse = 0;
2596 slabp->colouroff = colour_off;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002597 slabp->s_mem = objp + colour_off;
Ravikiran G Thirumalai5b74ada2006-04-10 22:52:53 -07002598 slabp->nodeid = nodeid;
Marcin Slusarze51bfd02008-02-10 11:21:54 +01002599 slabp->free = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600 return slabp;
2601}
2602
2603static inline kmem_bufctl_t *slab_bufctl(struct slab *slabp)
2604{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002605 return (kmem_bufctl_t *) (slabp + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606}
2607
Pekka Enberg343e0d72006-02-01 03:05:50 -08002608static void cache_init_objs(struct kmem_cache *cachep,
Christoph Lametera35afb82007-05-16 22:10:57 -07002609 struct slab *slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610{
2611 int i;
2612
2613 for (i = 0; i < cachep->num; i++) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002614 void *objp = index_to_obj(cachep, slabp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002615#if DEBUG
2616 /* need to poison the objs? */
2617 if (cachep->flags & SLAB_POISON)
2618 poison_obj(cachep, objp, POISON_FREE);
2619 if (cachep->flags & SLAB_STORE_USER)
2620 *dbg_userword(cachep, objp) = NULL;
2621
2622 if (cachep->flags & SLAB_RED_ZONE) {
2623 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2624 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2625 }
2626 /*
Andrew Mortona737b3e2006-03-22 00:08:11 -08002627 * Constructors are not allowed to allocate memory from the same
2628 * cache which they are a constructor for. Otherwise, deadlock.
2629 * They must also be threaded.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630 */
2631 if (cachep->ctor && !(cachep->flags & SLAB_POISON))
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002632 cachep->ctor(objp + obj_offset(cachep));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633
2634 if (cachep->flags & SLAB_RED_ZONE) {
2635 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
2636 slab_error(cachep, "constructor overwrote the"
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002637 " end of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002638 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
2639 slab_error(cachep, "constructor overwrote the"
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002640 " start of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002641 }
Andrew Mortona737b3e2006-03-22 00:08:11 -08002642 if ((cachep->buffer_size % PAGE_SIZE) == 0 &&
2643 OFF_SLAB(cachep) && cachep->flags & SLAB_POISON)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002644 kernel_map_pages(virt_to_page(objp),
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002645 cachep->buffer_size / PAGE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646#else
2647 if (cachep->ctor)
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002648 cachep->ctor(objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649#endif
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002650 slab_bufctl(slabp)[i] = i + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002652 slab_bufctl(slabp)[i - 1] = BUFCTL_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002653}
2654
Pekka Enberg343e0d72006-02-01 03:05:50 -08002655static void kmem_flagcheck(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656{
Christoph Lameter4b51d662007-02-10 01:43:10 -08002657 if (CONFIG_ZONE_DMA_FLAG) {
2658 if (flags & GFP_DMA)
2659 BUG_ON(!(cachep->gfpflags & GFP_DMA));
2660 else
2661 BUG_ON(cachep->gfpflags & GFP_DMA);
2662 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663}
2664
Andrew Mortona737b3e2006-03-22 00:08:11 -08002665static void *slab_get_obj(struct kmem_cache *cachep, struct slab *slabp,
2666 int nodeid)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002667{
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002668 void *objp = index_to_obj(cachep, slabp, slabp->free);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002669 kmem_bufctl_t next;
2670
2671 slabp->inuse++;
2672 next = slab_bufctl(slabp)[slabp->free];
2673#if DEBUG
2674 slab_bufctl(slabp)[slabp->free] = BUFCTL_FREE;
2675 WARN_ON(slabp->nodeid != nodeid);
2676#endif
2677 slabp->free = next;
2678
2679 return objp;
2680}
2681
Andrew Mortona737b3e2006-03-22 00:08:11 -08002682static void slab_put_obj(struct kmem_cache *cachep, struct slab *slabp,
2683 void *objp, int nodeid)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002684{
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002685 unsigned int objnr = obj_to_index(cachep, slabp, objp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002686
2687#if DEBUG
2688 /* Verify that the slab belongs to the intended node */
2689 WARN_ON(slabp->nodeid != nodeid);
2690
Al Viro871751e2006-03-25 03:06:39 -08002691 if (slab_bufctl(slabp)[objnr] + 1 <= SLAB_LIMIT + 1) {
Matthew Dobson78d382d2006-02-01 03:05:47 -08002692 printk(KERN_ERR "slab: double free detected in cache "
Andrew Mortona737b3e2006-03-22 00:08:11 -08002693 "'%s', objp %p\n", cachep->name, objp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002694 BUG();
2695 }
2696#endif
2697 slab_bufctl(slabp)[objnr] = slabp->free;
2698 slabp->free = objnr;
2699 slabp->inuse--;
2700}
2701
Pekka Enberg47768742006-06-23 02:03:07 -07002702/*
2703 * Map pages beginning at addr to the given cache and slab. This is required
2704 * for the slab allocator to be able to lookup the cache and slab of a
2705 * virtual address for kfree, ksize, kmem_ptr_validate, and slab debugging.
2706 */
2707static void slab_map_pages(struct kmem_cache *cache, struct slab *slab,
2708 void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709{
Pekka Enberg47768742006-06-23 02:03:07 -07002710 int nr_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002711 struct page *page;
2712
Pekka Enberg47768742006-06-23 02:03:07 -07002713 page = virt_to_page(addr);
Nick Piggin84097512006-03-22 00:08:34 -08002714
Pekka Enberg47768742006-06-23 02:03:07 -07002715 nr_pages = 1;
Nick Piggin84097512006-03-22 00:08:34 -08002716 if (likely(!PageCompound(page)))
Pekka Enberg47768742006-06-23 02:03:07 -07002717 nr_pages <<= cache->gfporder;
2718
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719 do {
Pekka Enberg47768742006-06-23 02:03:07 -07002720 page_set_cache(page, cache);
2721 page_set_slab(page, slab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002722 page++;
Pekka Enberg47768742006-06-23 02:03:07 -07002723 } while (--nr_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724}
2725
2726/*
2727 * Grow (by 1) the number of slabs within a cache. This is called by
2728 * kmem_cache_alloc() when there are no active objs left in a cache.
2729 */
Christoph Lameter3c517a62006-12-06 20:33:29 -08002730static int cache_grow(struct kmem_cache *cachep,
2731 gfp_t flags, int nodeid, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002733 struct slab *slabp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002734 size_t offset;
2735 gfp_t local_flags;
Christoph Lametere498be72005-09-09 13:03:32 -07002736 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002737
Andrew Mortona737b3e2006-03-22 00:08:11 -08002738 /*
2739 * Be lazy and only check for valid flags here, keeping it out of the
2740 * critical path in kmem_cache_alloc().
Linus Torvalds1da177e2005-04-16 15:20:36 -07002741 */
Christoph Lameter6cb06222007-10-16 01:25:41 -07002742 BUG_ON(flags & GFP_SLAB_BUG_MASK);
2743 local_flags = flags & (GFP_CONSTRAINT_MASK|GFP_RECLAIM_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002744
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002745 /* Take the l3 list lock to change the colour_next on this node */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002746 check_irq_off();
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002747 l3 = cachep->nodelists[nodeid];
2748 spin_lock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749
2750 /* Get colour for the slab, and cal the next value. */
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002751 offset = l3->colour_next;
2752 l3->colour_next++;
2753 if (l3->colour_next >= cachep->colour)
2754 l3->colour_next = 0;
2755 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002756
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002757 offset *= cachep->colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758
2759 if (local_flags & __GFP_WAIT)
2760 local_irq_enable();
2761
2762 /*
2763 * The test for missing atomic flag is performed here, rather than
2764 * the more obvious place, simply to reduce the critical path length
2765 * in kmem_cache_alloc(). If a caller is seriously mis-behaving they
2766 * will eventually be caught here (where it matters).
2767 */
2768 kmem_flagcheck(cachep, flags);
2769
Andrew Mortona737b3e2006-03-22 00:08:11 -08002770 /*
2771 * Get mem for the objs. Attempt to allocate a physical page from
2772 * 'nodeid'.
Christoph Lametere498be72005-09-09 13:03:32 -07002773 */
Christoph Lameter3c517a62006-12-06 20:33:29 -08002774 if (!objp)
Andrew Mortonb8c1c5d2007-07-24 12:02:40 -07002775 objp = kmem_getpages(cachep, local_flags, nodeid);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002776 if (!objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777 goto failed;
2778
2779 /* Get slab management. */
Christoph Lameter3c517a62006-12-06 20:33:29 -08002780 slabp = alloc_slabmgmt(cachep, objp, offset,
Christoph Lameter6cb06222007-10-16 01:25:41 -07002781 local_flags & ~GFP_CONSTRAINT_MASK, nodeid);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002782 if (!slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783 goto opps1;
2784
Pekka Enberg47768742006-06-23 02:03:07 -07002785 slab_map_pages(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002786
Christoph Lametera35afb82007-05-16 22:10:57 -07002787 cache_init_objs(cachep, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788
2789 if (local_flags & __GFP_WAIT)
2790 local_irq_disable();
2791 check_irq_off();
Christoph Lametere498be72005-09-09 13:03:32 -07002792 spin_lock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002793
2794 /* Make slab active. */
Christoph Lametere498be72005-09-09 13:03:32 -07002795 list_add_tail(&slabp->list, &(l3->slabs_free));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002796 STATS_INC_GROWN(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07002797 l3->free_objects += cachep->num;
2798 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799 return 1;
Andrew Mortona737b3e2006-03-22 00:08:11 -08002800opps1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801 kmem_freepages(cachep, objp);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002802failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002803 if (local_flags & __GFP_WAIT)
2804 local_irq_disable();
2805 return 0;
2806}
2807
2808#if DEBUG
2809
2810/*
2811 * Perform extra freeing checks:
2812 * - detect bad pointers.
2813 * - POISON/RED_ZONE checking
Linus Torvalds1da177e2005-04-16 15:20:36 -07002814 */
2815static void kfree_debugcheck(const void *objp)
2816{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002817 if (!virt_addr_valid(objp)) {
2818 printk(KERN_ERR "kfree_debugcheck: out of range ptr %lxh.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002819 (unsigned long)objp);
2820 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822}
2823
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002824static inline void verify_redzone_free(struct kmem_cache *cache, void *obj)
2825{
David Woodhouseb46b8f12007-05-08 00:22:59 -07002826 unsigned long long redzone1, redzone2;
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002827
2828 redzone1 = *dbg_redzone1(cache, obj);
2829 redzone2 = *dbg_redzone2(cache, obj);
2830
2831 /*
2832 * Redzone is ok.
2833 */
2834 if (redzone1 == RED_ACTIVE && redzone2 == RED_ACTIVE)
2835 return;
2836
2837 if (redzone1 == RED_INACTIVE && redzone2 == RED_INACTIVE)
2838 slab_error(cache, "double free detected");
2839 else
2840 slab_error(cache, "memory outside object was overwritten");
2841
David Woodhouseb46b8f12007-05-08 00:22:59 -07002842 printk(KERN_ERR "%p: redzone 1:0x%llx, redzone 2:0x%llx.\n",
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002843 obj, redzone1, redzone2);
2844}
2845
Pekka Enberg343e0d72006-02-01 03:05:50 -08002846static void *cache_free_debugcheck(struct kmem_cache *cachep, void *objp,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002847 void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002848{
2849 struct page *page;
2850 unsigned int objnr;
2851 struct slab *slabp;
2852
Matthew Wilcox80cbd912007-11-29 12:05:13 -07002853 BUG_ON(virt_to_cache(objp) != cachep);
2854
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002855 objp -= obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856 kfree_debugcheck(objp);
Christoph Lameterb49af682007-05-06 14:49:41 -07002857 page = virt_to_head_page(objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002858
Pekka Enberg065d41c2005-11-13 16:06:46 -08002859 slabp = page_get_slab(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860
2861 if (cachep->flags & SLAB_RED_ZONE) {
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002862 verify_redzone_free(cachep, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2864 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2865 }
2866 if (cachep->flags & SLAB_STORE_USER)
2867 *dbg_userword(cachep, objp) = caller;
2868
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002869 objnr = obj_to_index(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002870
2871 BUG_ON(objnr >= cachep->num);
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002872 BUG_ON(objp != index_to_obj(cachep, slabp, objnr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002873
Al Viro871751e2006-03-25 03:06:39 -08002874#ifdef CONFIG_DEBUG_SLAB_LEAK
2875 slab_bufctl(slabp)[objnr] = BUFCTL_FREE;
2876#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002877 if (cachep->flags & SLAB_POISON) {
2878#ifdef CONFIG_DEBUG_PAGEALLOC
Andrew Mortona737b3e2006-03-22 00:08:11 -08002879 if ((cachep->buffer_size % PAGE_SIZE)==0 && OFF_SLAB(cachep)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002880 store_stackinfo(cachep, objp, (unsigned long)caller);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002881 kernel_map_pages(virt_to_page(objp),
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002882 cachep->buffer_size / PAGE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883 } else {
2884 poison_obj(cachep, objp, POISON_FREE);
2885 }
2886#else
2887 poison_obj(cachep, objp, POISON_FREE);
2888#endif
2889 }
2890 return objp;
2891}
2892
Pekka Enberg343e0d72006-02-01 03:05:50 -08002893static void check_slabp(struct kmem_cache *cachep, struct slab *slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002894{
2895 kmem_bufctl_t i;
2896 int entries = 0;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002897
Linus Torvalds1da177e2005-04-16 15:20:36 -07002898 /* Check slab's freelist to see if this obj is there. */
2899 for (i = slabp->free; i != BUFCTL_END; i = slab_bufctl(slabp)[i]) {
2900 entries++;
2901 if (entries > cachep->num || i >= cachep->num)
2902 goto bad;
2903 }
2904 if (entries != cachep->num - slabp->inuse) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002905bad:
2906 printk(KERN_ERR "slab: Internal list corruption detected in "
2907 "cache '%s'(%d), slabp %p(%d). Hexdump:\n",
2908 cachep->name, cachep->num, slabp, slabp->inuse);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002909 for (i = 0;
Linus Torvalds264132b2006-03-06 12:10:07 -08002910 i < sizeof(*slabp) + cachep->num * sizeof(kmem_bufctl_t);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002911 i++) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002912 if (i % 16 == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002913 printk("\n%03x:", i);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002914 printk(" %02x", ((unsigned char *)slabp)[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002915 }
2916 printk("\n");
2917 BUG();
2918 }
2919}
2920#else
2921#define kfree_debugcheck(x) do { } while(0)
2922#define cache_free_debugcheck(x,objp,z) (objp)
2923#define check_slabp(x,y) do { } while(0)
2924#endif
2925
Pekka Enberg343e0d72006-02-01 03:05:50 -08002926static void *cache_alloc_refill(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002927{
2928 int batchcount;
2929 struct kmem_list3 *l3;
2930 struct array_cache *ac;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07002931 int node;
2932
Andrew Mortona737b3e2006-03-22 00:08:11 -08002933retry:
Joe Korty6d2144d2008-03-05 15:04:59 -08002934 check_irq_off();
2935 node = numa_node_id();
2936 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937 batchcount = ac->batchcount;
2938 if (!ac->touched && batchcount > BATCHREFILL_LIMIT) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002939 /*
2940 * If there was little recent activity on this cache, then
2941 * perform only a partial refill. Otherwise we could generate
2942 * refill bouncing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002943 */
2944 batchcount = BATCHREFILL_LIMIT;
2945 }
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07002946 l3 = cachep->nodelists[node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002947
Christoph Lametere498be72005-09-09 13:03:32 -07002948 BUG_ON(ac->avail > 0 || !l3);
2949 spin_lock(&l3->list_lock);
2950
Christoph Lameter3ded1752006-03-25 03:06:44 -08002951 /* See if we can refill from the shared array */
2952 if (l3->shared && transfer_objects(ac, l3->shared, batchcount))
2953 goto alloc_done;
2954
Linus Torvalds1da177e2005-04-16 15:20:36 -07002955 while (batchcount > 0) {
2956 struct list_head *entry;
2957 struct slab *slabp;
2958 /* Get slab alloc is to come from. */
2959 entry = l3->slabs_partial.next;
2960 if (entry == &l3->slabs_partial) {
2961 l3->free_touched = 1;
2962 entry = l3->slabs_free.next;
2963 if (entry == &l3->slabs_free)
2964 goto must_grow;
2965 }
2966
2967 slabp = list_entry(entry, struct slab, list);
2968 check_slabp(cachep, slabp);
2969 check_spinlock_acquired(cachep);
Pekka Enberg714b8172007-05-06 14:49:03 -07002970
2971 /*
2972 * The slab was either on partial or free list so
2973 * there must be at least one object available for
2974 * allocation.
2975 */
roel kluin249b9f32008-10-29 17:18:07 -04002976 BUG_ON(slabp->inuse >= cachep->num);
Pekka Enberg714b8172007-05-06 14:49:03 -07002977
Linus Torvalds1da177e2005-04-16 15:20:36 -07002978 while (slabp->inuse < cachep->num && batchcount--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979 STATS_INC_ALLOCED(cachep);
2980 STATS_INC_ACTIVE(cachep);
2981 STATS_SET_HIGH(cachep);
2982
Matthew Dobson78d382d2006-02-01 03:05:47 -08002983 ac->entry[ac->avail++] = slab_get_obj(cachep, slabp,
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07002984 node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002985 }
2986 check_slabp(cachep, slabp);
2987
2988 /* move slabp to correct slabp list: */
2989 list_del(&slabp->list);
2990 if (slabp->free == BUFCTL_END)
2991 list_add(&slabp->list, &l3->slabs_full);
2992 else
2993 list_add(&slabp->list, &l3->slabs_partial);
2994 }
2995
Andrew Mortona737b3e2006-03-22 00:08:11 -08002996must_grow:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002997 l3->free_objects -= ac->avail;
Andrew Mortona737b3e2006-03-22 00:08:11 -08002998alloc_done:
Christoph Lametere498be72005-09-09 13:03:32 -07002999 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003000
3001 if (unlikely(!ac->avail)) {
3002 int x;
Christoph Lameter3c517a62006-12-06 20:33:29 -08003003 x = cache_grow(cachep, flags | GFP_THISNODE, node, NULL);
Christoph Lametere498be72005-09-09 13:03:32 -07003004
Andrew Mortona737b3e2006-03-22 00:08:11 -08003005 /* cache_grow can reenable interrupts, then ac could change. */
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003006 ac = cpu_cache_get(cachep);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003007 if (!x && ac->avail == 0) /* no objects in sight? abort */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003008 return NULL;
3009
Andrew Mortona737b3e2006-03-22 00:08:11 -08003010 if (!ac->avail) /* objects refilled by interrupt? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003011 goto retry;
3012 }
3013 ac->touched = 1;
Christoph Lametere498be72005-09-09 13:03:32 -07003014 return ac->entry[--ac->avail];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003015}
3016
Andrew Mortona737b3e2006-03-22 00:08:11 -08003017static inline void cache_alloc_debugcheck_before(struct kmem_cache *cachep,
3018 gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003019{
3020 might_sleep_if(flags & __GFP_WAIT);
3021#if DEBUG
3022 kmem_flagcheck(cachep, flags);
3023#endif
3024}
3025
3026#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08003027static void *cache_alloc_debugcheck_after(struct kmem_cache *cachep,
3028 gfp_t flags, void *objp, void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003030 if (!objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031 return objp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003032 if (cachep->flags & SLAB_POISON) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033#ifdef CONFIG_DEBUG_PAGEALLOC
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003034 if ((cachep->buffer_size % PAGE_SIZE) == 0 && OFF_SLAB(cachep))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003035 kernel_map_pages(virt_to_page(objp),
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003036 cachep->buffer_size / PAGE_SIZE, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003037 else
3038 check_poison_obj(cachep, objp);
3039#else
3040 check_poison_obj(cachep, objp);
3041#endif
3042 poison_obj(cachep, objp, POISON_INUSE);
3043 }
3044 if (cachep->flags & SLAB_STORE_USER)
3045 *dbg_userword(cachep, objp) = caller;
3046
3047 if (cachep->flags & SLAB_RED_ZONE) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08003048 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE ||
3049 *dbg_redzone2(cachep, objp) != RED_INACTIVE) {
3050 slab_error(cachep, "double free, or memory outside"
3051 " object was overwritten");
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003052 printk(KERN_ERR
David Woodhouseb46b8f12007-05-08 00:22:59 -07003053 "%p: redzone 1:0x%llx, redzone 2:0x%llx\n",
Andrew Mortona737b3e2006-03-22 00:08:11 -08003054 objp, *dbg_redzone1(cachep, objp),
3055 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003056 }
3057 *dbg_redzone1(cachep, objp) = RED_ACTIVE;
3058 *dbg_redzone2(cachep, objp) = RED_ACTIVE;
3059 }
Al Viro871751e2006-03-25 03:06:39 -08003060#ifdef CONFIG_DEBUG_SLAB_LEAK
3061 {
3062 struct slab *slabp;
3063 unsigned objnr;
3064
Christoph Lameterb49af682007-05-06 14:49:41 -07003065 slabp = page_get_slab(virt_to_head_page(objp));
Al Viro871751e2006-03-25 03:06:39 -08003066 objnr = (unsigned)(objp - slabp->s_mem) / cachep->buffer_size;
3067 slab_bufctl(slabp)[objnr] = BUFCTL_ACTIVE;
3068 }
3069#endif
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003070 objp += obj_offset(cachep);
Christoph Lameter4f104932007-05-06 14:50:17 -07003071 if (cachep->ctor && cachep->flags & SLAB_POISON)
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07003072 cachep->ctor(objp);
Kevin Hilmana44b56d2006-12-06 20:32:11 -08003073#if ARCH_SLAB_MINALIGN
3074 if ((u32)objp & (ARCH_SLAB_MINALIGN-1)) {
3075 printk(KERN_ERR "0x%p: not aligned to ARCH_SLAB_MINALIGN=%d\n",
3076 objp, ARCH_SLAB_MINALIGN);
3077 }
3078#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003079 return objp;
3080}
3081#else
3082#define cache_alloc_debugcheck_after(a,b,objp,d) (objp)
3083#endif
3084
Akinobu Mita773ff602008-12-23 19:37:01 +09003085static bool slab_should_failslab(struct kmem_cache *cachep, gfp_t flags)
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003086{
3087 if (cachep == &cache_cache)
Akinobu Mita773ff602008-12-23 19:37:01 +09003088 return false;
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003089
Akinobu Mita773ff602008-12-23 19:37:01 +09003090 return should_failslab(obj_size(cachep), flags);
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003091}
3092
Pekka Enberg343e0d72006-02-01 03:05:50 -08003093static inline void *____cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003094{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003095 void *objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003096 struct array_cache *ac;
3097
Alok N Kataria5c382302005-09-27 21:45:46 -07003098 check_irq_off();
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003099
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003100 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003101 if (likely(ac->avail)) {
3102 STATS_INC_ALLOCHIT(cachep);
3103 ac->touched = 1;
Christoph Lametere498be72005-09-09 13:03:32 -07003104 objp = ac->entry[--ac->avail];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003105 } else {
3106 STATS_INC_ALLOCMISS(cachep);
3107 objp = cache_alloc_refill(cachep, flags);
3108 }
Catalin Marinasd5cff632009-06-11 13:22:40 +01003109 /*
3110 * To avoid a false negative, if an object that is in one of the
3111 * per-CPU caches is leaked, we need to make sure kmemleak doesn't
3112 * treat the array pointers as a reference to the object.
3113 */
3114 kmemleak_erase(&ac->entry[ac->avail]);
Alok N Kataria5c382302005-09-27 21:45:46 -07003115 return objp;
3116}
3117
Christoph Lametere498be72005-09-09 13:03:32 -07003118#ifdef CONFIG_NUMA
3119/*
Paul Jacksonb2455392006-03-24 03:16:12 -08003120 * Try allocating on another node if PF_SPREAD_SLAB|PF_MEMPOLICY.
Paul Jacksonc61afb12006-03-24 03:16:08 -08003121 *
3122 * If we are in_interrupt, then process context, including cpusets and
3123 * mempolicy, may not apply and should not be used for allocation policy.
3124 */
3125static void *alternate_node_alloc(struct kmem_cache *cachep, gfp_t flags)
3126{
3127 int nid_alloc, nid_here;
3128
Christoph Lameter765c4502006-09-27 01:50:08 -07003129 if (in_interrupt() || (flags & __GFP_THISNODE))
Paul Jacksonc61afb12006-03-24 03:16:08 -08003130 return NULL;
3131 nid_alloc = nid_here = numa_node_id();
3132 if (cpuset_do_slab_mem_spread() && (cachep->flags & SLAB_MEM_SPREAD))
3133 nid_alloc = cpuset_mem_spread_node();
3134 else if (current->mempolicy)
3135 nid_alloc = slab_node(current->mempolicy);
3136 if (nid_alloc != nid_here)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003137 return ____cache_alloc_node(cachep, flags, nid_alloc);
Paul Jacksonc61afb12006-03-24 03:16:08 -08003138 return NULL;
3139}
3140
3141/*
Christoph Lameter765c4502006-09-27 01:50:08 -07003142 * Fallback function if there was no memory available and no objects on a
Christoph Lameter3c517a62006-12-06 20:33:29 -08003143 * certain node and fall back is permitted. First we scan all the
3144 * available nodelists for available objects. If that fails then we
3145 * perform an allocation without specifying a node. This allows the page
3146 * allocator to do its reclaim / fallback magic. We then insert the
3147 * slab into the proper nodelist and then allocate from it.
Christoph Lameter765c4502006-09-27 01:50:08 -07003148 */
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003149static void *fallback_alloc(struct kmem_cache *cache, gfp_t flags)
Christoph Lameter765c4502006-09-27 01:50:08 -07003150{
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003151 struct zonelist *zonelist;
3152 gfp_t local_flags;
Mel Gormandd1a2392008-04-28 02:12:17 -07003153 struct zoneref *z;
Mel Gorman54a6eb52008-04-28 02:12:16 -07003154 struct zone *zone;
3155 enum zone_type high_zoneidx = gfp_zone(flags);
Christoph Lameter765c4502006-09-27 01:50:08 -07003156 void *obj = NULL;
Christoph Lameter3c517a62006-12-06 20:33:29 -08003157 int nid;
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003158
3159 if (flags & __GFP_THISNODE)
3160 return NULL;
3161
Mel Gorman0e884602008-04-28 02:12:14 -07003162 zonelist = node_zonelist(slab_node(current->mempolicy), flags);
Christoph Lameter6cb06222007-10-16 01:25:41 -07003163 local_flags = flags & (GFP_CONSTRAINT_MASK|GFP_RECLAIM_MASK);
Christoph Lameter765c4502006-09-27 01:50:08 -07003164
Christoph Lameter3c517a62006-12-06 20:33:29 -08003165retry:
3166 /*
3167 * Look through allowed nodes for objects available
3168 * from existing per node queues.
3169 */
Mel Gorman54a6eb52008-04-28 02:12:16 -07003170 for_each_zone_zonelist(zone, z, zonelist, high_zoneidx) {
3171 nid = zone_to_nid(zone);
Christoph Lameteraedb0eb2006-10-21 10:24:16 -07003172
Mel Gorman54a6eb52008-04-28 02:12:16 -07003173 if (cpuset_zone_allowed_hardwall(zone, flags) &&
Christoph Lameter3c517a62006-12-06 20:33:29 -08003174 cache->nodelists[nid] &&
Christoph Lameter481c5342008-06-21 16:46:35 -07003175 cache->nodelists[nid]->free_objects) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003176 obj = ____cache_alloc_node(cache,
3177 flags | GFP_THISNODE, nid);
Christoph Lameter481c5342008-06-21 16:46:35 -07003178 if (obj)
3179 break;
3180 }
Christoph Lameter3c517a62006-12-06 20:33:29 -08003181 }
3182
Christoph Lametercfce6602007-05-06 14:50:17 -07003183 if (!obj) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003184 /*
3185 * This allocation will be performed within the constraints
3186 * of the current cpuset / memory policy requirements.
3187 * We may trigger various forms of reclaim on the allowed
3188 * set and go into memory reserves if necessary.
3189 */
Christoph Lameterdd47ea72006-12-13 00:34:11 -08003190 if (local_flags & __GFP_WAIT)
3191 local_irq_enable();
3192 kmem_flagcheck(cache, flags);
Mel Gorman6484eb32009-06-16 15:31:54 -07003193 obj = kmem_getpages(cache, local_flags, numa_node_id());
Christoph Lameterdd47ea72006-12-13 00:34:11 -08003194 if (local_flags & __GFP_WAIT)
3195 local_irq_disable();
Christoph Lameter3c517a62006-12-06 20:33:29 -08003196 if (obj) {
3197 /*
3198 * Insert into the appropriate per node queues
3199 */
3200 nid = page_to_nid(virt_to_page(obj));
3201 if (cache_grow(cache, flags, nid, obj)) {
3202 obj = ____cache_alloc_node(cache,
3203 flags | GFP_THISNODE, nid);
3204 if (!obj)
3205 /*
3206 * Another processor may allocate the
3207 * objects in the slab since we are
3208 * not holding any locks.
3209 */
3210 goto retry;
3211 } else {
Hugh Dickinsb6a60452007-01-05 16:36:36 -08003212 /* cache_grow already freed obj */
Christoph Lameter3c517a62006-12-06 20:33:29 -08003213 obj = NULL;
3214 }
3215 }
Christoph Lameteraedb0eb2006-10-21 10:24:16 -07003216 }
Christoph Lameter765c4502006-09-27 01:50:08 -07003217 return obj;
3218}
3219
3220/*
Christoph Lametere498be72005-09-09 13:03:32 -07003221 * A interface to enable slab creation on nodeid
Linus Torvalds1da177e2005-04-16 15:20:36 -07003222 */
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003223static void *____cache_alloc_node(struct kmem_cache *cachep, gfp_t flags,
Andrew Mortona737b3e2006-03-22 00:08:11 -08003224 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07003225{
3226 struct list_head *entry;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003227 struct slab *slabp;
3228 struct kmem_list3 *l3;
3229 void *obj;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003230 int x;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003232 l3 = cachep->nodelists[nodeid];
3233 BUG_ON(!l3);
Christoph Lametere498be72005-09-09 13:03:32 -07003234
Andrew Mortona737b3e2006-03-22 00:08:11 -08003235retry:
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08003236 check_irq_off();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003237 spin_lock(&l3->list_lock);
3238 entry = l3->slabs_partial.next;
3239 if (entry == &l3->slabs_partial) {
3240 l3->free_touched = 1;
3241 entry = l3->slabs_free.next;
3242 if (entry == &l3->slabs_free)
3243 goto must_grow;
3244 }
Christoph Lametere498be72005-09-09 13:03:32 -07003245
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003246 slabp = list_entry(entry, struct slab, list);
3247 check_spinlock_acquired_node(cachep, nodeid);
3248 check_slabp(cachep, slabp);
Christoph Lametere498be72005-09-09 13:03:32 -07003249
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003250 STATS_INC_NODEALLOCS(cachep);
3251 STATS_INC_ACTIVE(cachep);
3252 STATS_SET_HIGH(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003253
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003254 BUG_ON(slabp->inuse == cachep->num);
Christoph Lametere498be72005-09-09 13:03:32 -07003255
Matthew Dobson78d382d2006-02-01 03:05:47 -08003256 obj = slab_get_obj(cachep, slabp, nodeid);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003257 check_slabp(cachep, slabp);
3258 l3->free_objects--;
3259 /* move slabp to correct slabp list: */
3260 list_del(&slabp->list);
Christoph Lametere498be72005-09-09 13:03:32 -07003261
Andrew Mortona737b3e2006-03-22 00:08:11 -08003262 if (slabp->free == BUFCTL_END)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003263 list_add(&slabp->list, &l3->slabs_full);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003264 else
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003265 list_add(&slabp->list, &l3->slabs_partial);
Christoph Lametere498be72005-09-09 13:03:32 -07003266
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003267 spin_unlock(&l3->list_lock);
3268 goto done;
Christoph Lametere498be72005-09-09 13:03:32 -07003269
Andrew Mortona737b3e2006-03-22 00:08:11 -08003270must_grow:
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003271 spin_unlock(&l3->list_lock);
Christoph Lameter3c517a62006-12-06 20:33:29 -08003272 x = cache_grow(cachep, flags | GFP_THISNODE, nodeid, NULL);
Christoph Lameter765c4502006-09-27 01:50:08 -07003273 if (x)
3274 goto retry;
Christoph Lametere498be72005-09-09 13:03:32 -07003275
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003276 return fallback_alloc(cachep, flags);
Christoph Lameter765c4502006-09-27 01:50:08 -07003277
Andrew Mortona737b3e2006-03-22 00:08:11 -08003278done:
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003279 return obj;
Christoph Lametere498be72005-09-09 13:03:32 -07003280}
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003281
3282/**
3283 * kmem_cache_alloc_node - Allocate an object on the specified node
3284 * @cachep: The cache to allocate from.
3285 * @flags: See kmalloc().
3286 * @nodeid: node number of the target node.
3287 * @caller: return address of caller, used for debug information
3288 *
3289 * Identical to kmem_cache_alloc but it will allocate memory on the given
3290 * node, which can improve the performance for cpu bound structures.
3291 *
3292 * Fallback to other node is possible if __GFP_THISNODE is not set.
3293 */
3294static __always_inline void *
3295__cache_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid,
3296 void *caller)
3297{
3298 unsigned long save_flags;
3299 void *ptr;
3300
Pekka Enberg7e85ee02009-06-12 14:03:06 +03003301 flags &= slab_gfp_mask;
3302
Nick Piggincf40bd12009-01-21 08:12:39 +01003303 lockdep_trace_alloc(flags);
3304
Akinobu Mita773ff602008-12-23 19:37:01 +09003305 if (slab_should_failslab(cachep, flags))
Akinobu Mita824ebef2007-05-06 14:49:58 -07003306 return NULL;
3307
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003308 cache_alloc_debugcheck_before(cachep, flags);
3309 local_irq_save(save_flags);
3310
3311 if (unlikely(nodeid == -1))
3312 nodeid = numa_node_id();
3313
3314 if (unlikely(!cachep->nodelists[nodeid])) {
3315 /* Node not bootstrapped yet */
3316 ptr = fallback_alloc(cachep, flags);
3317 goto out;
3318 }
3319
3320 if (nodeid == numa_node_id()) {
3321 /*
3322 * Use the locally cached objects if possible.
3323 * However ____cache_alloc does not allow fallback
3324 * to other nodes. It may fail while we still have
3325 * objects on other nodes available.
3326 */
3327 ptr = ____cache_alloc(cachep, flags);
3328 if (ptr)
3329 goto out;
3330 }
3331 /* ___cache_alloc_node can fall back to other nodes */
3332 ptr = ____cache_alloc_node(cachep, flags, nodeid);
3333 out:
3334 local_irq_restore(save_flags);
3335 ptr = cache_alloc_debugcheck_after(cachep, flags, ptr, caller);
Catalin Marinasd5cff632009-06-11 13:22:40 +01003336 kmemleak_alloc_recursive(ptr, obj_size(cachep), 1, cachep->flags,
3337 flags);
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003338
Pekka Enbergc175eea2008-05-09 20:35:53 +02003339 if (likely(ptr))
3340 kmemcheck_slab_alloc(cachep, flags, ptr, obj_size(cachep));
3341
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003342 if (unlikely((flags & __GFP_ZERO) && ptr))
3343 memset(ptr, 0, obj_size(cachep));
3344
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003345 return ptr;
3346}
3347
3348static __always_inline void *
3349__do_cache_alloc(struct kmem_cache *cache, gfp_t flags)
3350{
3351 void *objp;
3352
3353 if (unlikely(current->flags & (PF_SPREAD_SLAB | PF_MEMPOLICY))) {
3354 objp = alternate_node_alloc(cache, flags);
3355 if (objp)
3356 goto out;
3357 }
3358 objp = ____cache_alloc(cache, flags);
3359
3360 /*
3361 * We may just have run out of memory on the local node.
3362 * ____cache_alloc_node() knows how to locate memory on other nodes
3363 */
3364 if (!objp)
3365 objp = ____cache_alloc_node(cache, flags, numa_node_id());
3366
3367 out:
3368 return objp;
3369}
3370#else
3371
3372static __always_inline void *
3373__do_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
3374{
3375 return ____cache_alloc(cachep, flags);
3376}
3377
3378#endif /* CONFIG_NUMA */
3379
3380static __always_inline void *
3381__cache_alloc(struct kmem_cache *cachep, gfp_t flags, void *caller)
3382{
3383 unsigned long save_flags;
3384 void *objp;
3385
Pekka Enberg7e85ee02009-06-12 14:03:06 +03003386 flags &= slab_gfp_mask;
3387
Nick Piggincf40bd12009-01-21 08:12:39 +01003388 lockdep_trace_alloc(flags);
3389
Akinobu Mita773ff602008-12-23 19:37:01 +09003390 if (slab_should_failslab(cachep, flags))
Akinobu Mita824ebef2007-05-06 14:49:58 -07003391 return NULL;
3392
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003393 cache_alloc_debugcheck_before(cachep, flags);
3394 local_irq_save(save_flags);
3395 objp = __do_cache_alloc(cachep, flags);
3396 local_irq_restore(save_flags);
3397 objp = cache_alloc_debugcheck_after(cachep, flags, objp, caller);
Catalin Marinasd5cff632009-06-11 13:22:40 +01003398 kmemleak_alloc_recursive(objp, obj_size(cachep), 1, cachep->flags,
3399 flags);
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003400 prefetchw(objp);
3401
Pekka Enbergc175eea2008-05-09 20:35:53 +02003402 if (likely(objp))
3403 kmemcheck_slab_alloc(cachep, flags, objp, obj_size(cachep));
3404
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003405 if (unlikely((flags & __GFP_ZERO) && objp))
3406 memset(objp, 0, obj_size(cachep));
3407
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003408 return objp;
3409}
Christoph Lametere498be72005-09-09 13:03:32 -07003410
3411/*
3412 * Caller needs to acquire correct kmem_list's list_lock
3413 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003414static void free_block(struct kmem_cache *cachep, void **objpp, int nr_objects,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003415 int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003416{
3417 int i;
Christoph Lametere498be72005-09-09 13:03:32 -07003418 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419
3420 for (i = 0; i < nr_objects; i++) {
3421 void *objp = objpp[i];
3422 struct slab *slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003423
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08003424 slabp = virt_to_slab(objp);
Christoph Lameterff694162005-09-22 21:44:02 -07003425 l3 = cachep->nodelists[node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003426 list_del(&slabp->list);
Christoph Lameterff694162005-09-22 21:44:02 -07003427 check_spinlock_acquired_node(cachep, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003428 check_slabp(cachep, slabp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08003429 slab_put_obj(cachep, slabp, objp, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003430 STATS_DEC_ACTIVE(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003431 l3->free_objects++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432 check_slabp(cachep, slabp);
3433
3434 /* fixup slab chains */
3435 if (slabp->inuse == 0) {
Christoph Lametere498be72005-09-09 13:03:32 -07003436 if (l3->free_objects > l3->free_limit) {
3437 l3->free_objects -= cachep->num;
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07003438 /* No need to drop any previously held
3439 * lock here, even if we have a off-slab slab
3440 * descriptor it is guaranteed to come from
3441 * a different cache, refer to comments before
3442 * alloc_slabmgmt.
3443 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003444 slab_destroy(cachep, slabp);
3445 } else {
Christoph Lametere498be72005-09-09 13:03:32 -07003446 list_add(&slabp->list, &l3->slabs_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447 }
3448 } else {
3449 /* Unconditionally move a slab to the end of the
3450 * partial list on free - maximum time for the
3451 * other objects to be freed, too.
3452 */
Christoph Lametere498be72005-09-09 13:03:32 -07003453 list_add_tail(&slabp->list, &l3->slabs_partial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003454 }
3455 }
3456}
3457
Pekka Enberg343e0d72006-02-01 03:05:50 -08003458static void cache_flusharray(struct kmem_cache *cachep, struct array_cache *ac)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459{
3460 int batchcount;
Christoph Lametere498be72005-09-09 13:03:32 -07003461 struct kmem_list3 *l3;
Christoph Lameterff694162005-09-22 21:44:02 -07003462 int node = numa_node_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463
3464 batchcount = ac->batchcount;
3465#if DEBUG
3466 BUG_ON(!batchcount || batchcount > ac->avail);
3467#endif
3468 check_irq_off();
Christoph Lameterff694162005-09-22 21:44:02 -07003469 l3 = cachep->nodelists[node];
Ingo Molnar873623d2006-07-13 14:44:38 +02003470 spin_lock(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07003471 if (l3->shared) {
3472 struct array_cache *shared_array = l3->shared;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003473 int max = shared_array->limit - shared_array->avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003474 if (max) {
3475 if (batchcount > max)
3476 batchcount = max;
Christoph Lametere498be72005-09-09 13:03:32 -07003477 memcpy(&(shared_array->entry[shared_array->avail]),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003478 ac->entry, sizeof(void *) * batchcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479 shared_array->avail += batchcount;
3480 goto free_done;
3481 }
3482 }
3483
Christoph Lameterff694162005-09-22 21:44:02 -07003484 free_block(cachep, ac->entry, batchcount, node);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003485free_done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486#if STATS
3487 {
3488 int i = 0;
3489 struct list_head *p;
3490
Christoph Lametere498be72005-09-09 13:03:32 -07003491 p = l3->slabs_free.next;
3492 while (p != &(l3->slabs_free)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493 struct slab *slabp;
3494
3495 slabp = list_entry(p, struct slab, list);
3496 BUG_ON(slabp->inuse);
3497
3498 i++;
3499 p = p->next;
3500 }
3501 STATS_SET_FREEABLE(cachep, i);
3502 }
3503#endif
Christoph Lametere498be72005-09-09 13:03:32 -07003504 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505 ac->avail -= batchcount;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003506 memmove(ac->entry, &(ac->entry[batchcount]), sizeof(void *)*ac->avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003507}
3508
3509/*
Andrew Mortona737b3e2006-03-22 00:08:11 -08003510 * Release an obj back to its cache. If the obj has a constructed state, it must
3511 * be in this state _before_ it is released. Called with disabled ints.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512 */
Ingo Molnar873623d2006-07-13 14:44:38 +02003513static inline void __cache_free(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003514{
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003515 struct array_cache *ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003516
3517 check_irq_off();
Catalin Marinasd5cff632009-06-11 13:22:40 +01003518 kmemleak_free_recursive(objp, cachep->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003519 objp = cache_free_debugcheck(cachep, objp, __builtin_return_address(0));
3520
Pekka Enbergc175eea2008-05-09 20:35:53 +02003521 kmemcheck_slab_free(cachep, objp, obj_size(cachep));
3522
Siddha, Suresh B1807a1a2007-08-22 14:01:49 -07003523 /*
3524 * Skip calling cache_free_alien() when the platform is not numa.
3525 * This will avoid cache misses that happen while accessing slabp (which
3526 * is per page memory reference) to get nodeid. Instead use a global
3527 * variable to skip the call, which is mostly likely to be present in
3528 * the cache.
3529 */
Mel Gormanb6e68bc2009-06-16 15:32:16 -07003530 if (nr_online_nodes > 1 && cache_free_alien(cachep, objp))
Pekka Enberg729bd0b2006-06-23 02:03:05 -07003531 return;
Christoph Lametere498be72005-09-09 13:03:32 -07003532
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533 if (likely(ac->avail < ac->limit)) {
3534 STATS_INC_FREEHIT(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003535 ac->entry[ac->avail++] = objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003536 return;
3537 } else {
3538 STATS_INC_FREEMISS(cachep);
3539 cache_flusharray(cachep, ac);
Christoph Lametere498be72005-09-09 13:03:32 -07003540 ac->entry[ac->avail++] = objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003541 }
3542}
3543
3544/**
3545 * kmem_cache_alloc - Allocate an object
3546 * @cachep: The cache to allocate from.
3547 * @flags: See kmalloc().
3548 *
3549 * Allocate an object from this cache. The flags are only relevant
3550 * if the cache has no available objects.
3551 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003552void *kmem_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003553{
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003554 void *ret = __cache_alloc(cachep, flags, __builtin_return_address(0));
3555
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003556 trace_kmem_cache_alloc(_RET_IP_, ret,
3557 obj_size(cachep), cachep->buffer_size, flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003558
3559 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560}
3561EXPORT_SYMBOL(kmem_cache_alloc);
3562
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003563#ifdef CONFIG_KMEMTRACE
3564void *kmem_cache_alloc_notrace(struct kmem_cache *cachep, gfp_t flags)
3565{
3566 return __cache_alloc(cachep, flags, __builtin_return_address(0));
3567}
3568EXPORT_SYMBOL(kmem_cache_alloc_notrace);
3569#endif
3570
Linus Torvalds1da177e2005-04-16 15:20:36 -07003571/**
Randy Dunlap76824862008-03-19 17:00:40 -07003572 * kmem_ptr_validate - check if an untrusted pointer might be a slab entry.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003573 * @cachep: the cache we're checking against
3574 * @ptr: pointer to validate
3575 *
Randy Dunlap76824862008-03-19 17:00:40 -07003576 * This verifies that the untrusted pointer looks sane;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003577 * it is _not_ a guarantee that the pointer is actually
3578 * part of the slab cache in question, but it at least
3579 * validates that the pointer can be dereferenced and
3580 * looks half-way sane.
3581 *
3582 * Currently only used for dentry validation.
3583 */
Christoph Lameterb7f869a2006-12-22 01:06:44 -08003584int kmem_ptr_validate(struct kmem_cache *cachep, const void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003585{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003586 unsigned long addr = (unsigned long)ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003587 unsigned long min_addr = PAGE_OFFSET;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003588 unsigned long align_mask = BYTES_PER_WORD - 1;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003589 unsigned long size = cachep->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003590 struct page *page;
3591
3592 if (unlikely(addr < min_addr))
3593 goto out;
3594 if (unlikely(addr > (unsigned long)high_memory - size))
3595 goto out;
3596 if (unlikely(addr & align_mask))
3597 goto out;
3598 if (unlikely(!kern_addr_valid(addr)))
3599 goto out;
3600 if (unlikely(!kern_addr_valid(addr + size - 1)))
3601 goto out;
3602 page = virt_to_page(ptr);
3603 if (unlikely(!PageSlab(page)))
3604 goto out;
Pekka Enberg065d41c2005-11-13 16:06:46 -08003605 if (unlikely(page_get_cache(page) != cachep))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606 goto out;
3607 return 1;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003608out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003609 return 0;
3610}
3611
3612#ifdef CONFIG_NUMA
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003613void *kmem_cache_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid)
3614{
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003615 void *ret = __cache_alloc_node(cachep, flags, nodeid,
3616 __builtin_return_address(0));
3617
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003618 trace_kmem_cache_alloc_node(_RET_IP_, ret,
3619 obj_size(cachep), cachep->buffer_size,
3620 flags, nodeid);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003621
3622 return ret;
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003623}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003624EXPORT_SYMBOL(kmem_cache_alloc_node);
3625
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003626#ifdef CONFIG_KMEMTRACE
3627void *kmem_cache_alloc_node_notrace(struct kmem_cache *cachep,
3628 gfp_t flags,
3629 int nodeid)
3630{
3631 return __cache_alloc_node(cachep, flags, nodeid,
3632 __builtin_return_address(0));
3633}
3634EXPORT_SYMBOL(kmem_cache_alloc_node_notrace);
3635#endif
3636
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003637static __always_inline void *
3638__do_kmalloc_node(size_t size, gfp_t flags, int node, void *caller)
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003639{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003640 struct kmem_cache *cachep;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003641 void *ret;
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003642
3643 cachep = kmem_find_general_cachep(size, flags);
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003644 if (unlikely(ZERO_OR_NULL_PTR(cachep)))
3645 return cachep;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003646 ret = kmem_cache_alloc_node_notrace(cachep, flags, node);
3647
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003648 trace_kmalloc_node((unsigned long) caller, ret,
3649 size, cachep->buffer_size, flags, node);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003650
3651 return ret;
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003652}
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003653
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003654#if defined(CONFIG_DEBUG_SLAB) || defined(CONFIG_KMEMTRACE)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003655void *__kmalloc_node(size_t size, gfp_t flags, int node)
3656{
3657 return __do_kmalloc_node(size, flags, node,
3658 __builtin_return_address(0));
3659}
Christoph Hellwigdbe5e692006-09-25 23:31:36 -07003660EXPORT_SYMBOL(__kmalloc_node);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003661
3662void *__kmalloc_node_track_caller(size_t size, gfp_t flags,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003663 int node, unsigned long caller)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003664{
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003665 return __do_kmalloc_node(size, flags, node, (void *)caller);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003666}
3667EXPORT_SYMBOL(__kmalloc_node_track_caller);
3668#else
3669void *__kmalloc_node(size_t size, gfp_t flags, int node)
3670{
3671 return __do_kmalloc_node(size, flags, node, NULL);
3672}
3673EXPORT_SYMBOL(__kmalloc_node);
3674#endif /* CONFIG_DEBUG_SLAB */
3675#endif /* CONFIG_NUMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676
3677/**
Paul Drynoff800590f2006-06-23 02:03:48 -07003678 * __do_kmalloc - allocate memory
Linus Torvalds1da177e2005-04-16 15:20:36 -07003679 * @size: how many bytes of memory are required.
Paul Drynoff800590f2006-06-23 02:03:48 -07003680 * @flags: the type of memory to allocate (see kmalloc).
Randy Dunlap911851e2006-03-22 00:08:14 -08003681 * @caller: function caller for debug tracking of the caller
Linus Torvalds1da177e2005-04-16 15:20:36 -07003682 */
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003683static __always_inline void *__do_kmalloc(size_t size, gfp_t flags,
3684 void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003685{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003686 struct kmem_cache *cachep;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003687 void *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003688
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003689 /* If you want to save a few bytes .text space: replace
3690 * __ with kmem_.
3691 * Then kmalloc uses the uninlined functions instead of the inline
3692 * functions.
3693 */
3694 cachep = __find_general_cachep(size, flags);
Linus Torvaldsa5c96d82007-07-19 13:17:15 -07003695 if (unlikely(ZERO_OR_NULL_PTR(cachep)))
3696 return cachep;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003697 ret = __cache_alloc(cachep, flags, caller);
3698
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003699 trace_kmalloc((unsigned long) caller, ret,
3700 size, cachep->buffer_size, flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003701
3702 return ret;
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003703}
3704
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003705
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003706#if defined(CONFIG_DEBUG_SLAB) || defined(CONFIG_KMEMTRACE)
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003707void *__kmalloc(size_t size, gfp_t flags)
3708{
Al Viro871751e2006-03-25 03:06:39 -08003709 return __do_kmalloc(size, flags, __builtin_return_address(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003710}
3711EXPORT_SYMBOL(__kmalloc);
3712
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003713void *__kmalloc_track_caller(size_t size, gfp_t flags, unsigned long caller)
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003714{
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003715 return __do_kmalloc(size, flags, (void *)caller);
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003716}
3717EXPORT_SYMBOL(__kmalloc_track_caller);
Christoph Hellwig1d2c8ee2006-10-04 02:15:25 -07003718
3719#else
3720void *__kmalloc(size_t size, gfp_t flags)
3721{
3722 return __do_kmalloc(size, flags, NULL);
3723}
3724EXPORT_SYMBOL(__kmalloc);
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003725#endif
3726
Linus Torvalds1da177e2005-04-16 15:20:36 -07003727/**
3728 * kmem_cache_free - Deallocate an object
3729 * @cachep: The cache the allocation was from.
3730 * @objp: The previously allocated object.
3731 *
3732 * Free an object which was previously allocated from this
3733 * cache.
3734 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003735void kmem_cache_free(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003736{
3737 unsigned long flags;
3738
3739 local_irq_save(flags);
Ingo Molnar898552c2007-02-10 01:44:57 -08003740 debug_check_no_locks_freed(objp, obj_size(cachep));
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -07003741 if (!(cachep->flags & SLAB_DEBUG_OBJECTS))
3742 debug_check_no_obj_freed(objp, obj_size(cachep));
Ingo Molnar873623d2006-07-13 14:44:38 +02003743 __cache_free(cachep, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003744 local_irq_restore(flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003745
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003746 trace_kmem_cache_free(_RET_IP_, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003747}
3748EXPORT_SYMBOL(kmem_cache_free);
3749
3750/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003751 * kfree - free previously allocated memory
3752 * @objp: pointer returned by kmalloc.
3753 *
Pekka Enberg80e93ef2005-09-09 13:10:16 -07003754 * If @objp is NULL, no operation is performed.
3755 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003756 * Don't free memory not originally allocated by kmalloc()
3757 * or you will run into trouble.
3758 */
3759void kfree(const void *objp)
3760{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003761 struct kmem_cache *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003762 unsigned long flags;
3763
Pekka Enberg2121db72009-03-25 11:05:57 +02003764 trace_kfree(_RET_IP_, objp);
3765
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003766 if (unlikely(ZERO_OR_NULL_PTR(objp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003767 return;
3768 local_irq_save(flags);
3769 kfree_debugcheck(objp);
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08003770 c = virt_to_cache(objp);
Ingo Molnarf9b84042006-06-27 02:54:49 -07003771 debug_check_no_locks_freed(objp, obj_size(c));
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -07003772 debug_check_no_obj_freed(objp, obj_size(c));
Ingo Molnar873623d2006-07-13 14:44:38 +02003773 __cache_free(c, (void *)objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003774 local_irq_restore(flags);
3775}
3776EXPORT_SYMBOL(kfree);
3777
Pekka Enberg343e0d72006-02-01 03:05:50 -08003778unsigned int kmem_cache_size(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003779{
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003780 return obj_size(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003781}
3782EXPORT_SYMBOL(kmem_cache_size);
3783
Pekka Enberg343e0d72006-02-01 03:05:50 -08003784const char *kmem_cache_name(struct kmem_cache *cachep)
Arnaldo Carvalho de Melo19449722005-06-18 22:46:19 -07003785{
3786 return cachep->name;
3787}
3788EXPORT_SYMBOL_GPL(kmem_cache_name);
3789
Christoph Lametere498be72005-09-09 13:03:32 -07003790/*
Simon Arlott183ff222007-10-20 01:27:18 +02003791 * This initializes kmem_list3 or resizes various caches for all nodes.
Christoph Lametere498be72005-09-09 13:03:32 -07003792 */
Pekka Enberg83b519e2009-06-10 19:40:04 +03003793static int alloc_kmemlist(struct kmem_cache *cachep, gfp_t gfp)
Christoph Lametere498be72005-09-09 13:03:32 -07003794{
3795 int node;
3796 struct kmem_list3 *l3;
Christoph Lametercafeb022006-03-25 03:06:46 -08003797 struct array_cache *new_shared;
Paul Menage3395ee02006-12-06 20:32:16 -08003798 struct array_cache **new_alien = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07003799
Mel Gorman9c09a952008-01-24 05:49:54 -08003800 for_each_online_node(node) {
Christoph Lametercafeb022006-03-25 03:06:46 -08003801
Paul Menage3395ee02006-12-06 20:32:16 -08003802 if (use_alien_caches) {
Pekka Enberg83b519e2009-06-10 19:40:04 +03003803 new_alien = alloc_alien_cache(node, cachep->limit, gfp);
Paul Menage3395ee02006-12-06 20:32:16 -08003804 if (!new_alien)
3805 goto fail;
3806 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003807
Eric Dumazet63109842007-05-06 14:49:28 -07003808 new_shared = NULL;
3809 if (cachep->shared) {
3810 new_shared = alloc_arraycache(node,
Christoph Lameter0718dc22006-03-25 03:06:47 -08003811 cachep->shared*cachep->batchcount,
Pekka Enberg83b519e2009-06-10 19:40:04 +03003812 0xbaadf00d, gfp);
Eric Dumazet63109842007-05-06 14:49:28 -07003813 if (!new_shared) {
3814 free_alien_cache(new_alien);
3815 goto fail;
3816 }
Christoph Lameter0718dc22006-03-25 03:06:47 -08003817 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003818
Andrew Mortona737b3e2006-03-22 00:08:11 -08003819 l3 = cachep->nodelists[node];
3820 if (l3) {
Christoph Lametercafeb022006-03-25 03:06:46 -08003821 struct array_cache *shared = l3->shared;
3822
Christoph Lametere498be72005-09-09 13:03:32 -07003823 spin_lock_irq(&l3->list_lock);
3824
Christoph Lametercafeb022006-03-25 03:06:46 -08003825 if (shared)
Christoph Lameter0718dc22006-03-25 03:06:47 -08003826 free_block(cachep, shared->entry,
3827 shared->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -07003828
Christoph Lametercafeb022006-03-25 03:06:46 -08003829 l3->shared = new_shared;
3830 if (!l3->alien) {
Christoph Lametere498be72005-09-09 13:03:32 -07003831 l3->alien = new_alien;
3832 new_alien = NULL;
3833 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003834 l3->free_limit = (1 + nr_cpus_node(node)) *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003835 cachep->batchcount + cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07003836 spin_unlock_irq(&l3->list_lock);
Christoph Lametercafeb022006-03-25 03:06:46 -08003837 kfree(shared);
Christoph Lametere498be72005-09-09 13:03:32 -07003838 free_alien_cache(new_alien);
3839 continue;
3840 }
Pekka Enberg83b519e2009-06-10 19:40:04 +03003841 l3 = kmalloc_node(sizeof(struct kmem_list3), gfp, node);
Christoph Lameter0718dc22006-03-25 03:06:47 -08003842 if (!l3) {
3843 free_alien_cache(new_alien);
3844 kfree(new_shared);
Christoph Lametere498be72005-09-09 13:03:32 -07003845 goto fail;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003846 }
Christoph Lametere498be72005-09-09 13:03:32 -07003847
3848 kmem_list3_init(l3);
3849 l3->next_reap = jiffies + REAPTIMEOUT_LIST3 +
Andrew Mortona737b3e2006-03-22 00:08:11 -08003850 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
Christoph Lametercafeb022006-03-25 03:06:46 -08003851 l3->shared = new_shared;
Christoph Lametere498be72005-09-09 13:03:32 -07003852 l3->alien = new_alien;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003853 l3->free_limit = (1 + nr_cpus_node(node)) *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003854 cachep->batchcount + cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07003855 cachep->nodelists[node] = l3;
3856 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003857 return 0;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003858
Andrew Mortona737b3e2006-03-22 00:08:11 -08003859fail:
Christoph Lameter0718dc22006-03-25 03:06:47 -08003860 if (!cachep->next.next) {
3861 /* Cache is not active yet. Roll back what we did */
3862 node--;
3863 while (node >= 0) {
3864 if (cachep->nodelists[node]) {
3865 l3 = cachep->nodelists[node];
3866
3867 kfree(l3->shared);
3868 free_alien_cache(l3->alien);
3869 kfree(l3);
3870 cachep->nodelists[node] = NULL;
3871 }
3872 node--;
3873 }
3874 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003875 return -ENOMEM;
Christoph Lametere498be72005-09-09 13:03:32 -07003876}
3877
Linus Torvalds1da177e2005-04-16 15:20:36 -07003878struct ccupdate_struct {
Pekka Enberg343e0d72006-02-01 03:05:50 -08003879 struct kmem_cache *cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003880 struct array_cache *new[NR_CPUS];
3881};
3882
3883static void do_ccupdate_local(void *info)
3884{
Andrew Mortona737b3e2006-03-22 00:08:11 -08003885 struct ccupdate_struct *new = info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003886 struct array_cache *old;
3887
3888 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003889 old = cpu_cache_get(new->cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003890
Linus Torvalds1da177e2005-04-16 15:20:36 -07003891 new->cachep->array[smp_processor_id()] = new->new[smp_processor_id()];
3892 new->new[smp_processor_id()] = old;
3893}
3894
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -08003895/* Always called with the cache_chain_mutex held */
Andrew Mortona737b3e2006-03-22 00:08:11 -08003896static int do_tune_cpucache(struct kmem_cache *cachep, int limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03003897 int batchcount, int shared, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003898{
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003899 struct ccupdate_struct *new;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07003900 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003901
Pekka Enberg83b519e2009-06-10 19:40:04 +03003902 new = kzalloc(sizeof(*new), gfp);
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003903 if (!new)
3904 return -ENOMEM;
3905
Christoph Lametere498be72005-09-09 13:03:32 -07003906 for_each_online_cpu(i) {
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003907 new->new[i] = alloc_arraycache(cpu_to_node(i), limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03003908 batchcount, gfp);
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003909 if (!new->new[i]) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003910 for (i--; i >= 0; i--)
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003911 kfree(new->new[i]);
3912 kfree(new);
Christoph Lametere498be72005-09-09 13:03:32 -07003913 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003914 }
3915 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003916 new->cachep = cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003917
Jens Axboe15c8b6c2008-05-09 09:39:44 +02003918 on_each_cpu(do_ccupdate_local, (void *)new, 1);
Christoph Lametere498be72005-09-09 13:03:32 -07003919
Linus Torvalds1da177e2005-04-16 15:20:36 -07003920 check_irq_on();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003921 cachep->batchcount = batchcount;
3922 cachep->limit = limit;
Christoph Lametere498be72005-09-09 13:03:32 -07003923 cachep->shared = shared;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003924
Christoph Lametere498be72005-09-09 13:03:32 -07003925 for_each_online_cpu(i) {
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003926 struct array_cache *ccold = new->new[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003927 if (!ccold)
3928 continue;
Christoph Lametere498be72005-09-09 13:03:32 -07003929 spin_lock_irq(&cachep->nodelists[cpu_to_node(i)]->list_lock);
Christoph Lameterff694162005-09-22 21:44:02 -07003930 free_block(cachep, ccold->entry, ccold->avail, cpu_to_node(i));
Christoph Lametere498be72005-09-09 13:03:32 -07003931 spin_unlock_irq(&cachep->nodelists[cpu_to_node(i)]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003932 kfree(ccold);
3933 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003934 kfree(new);
Pekka Enberg83b519e2009-06-10 19:40:04 +03003935 return alloc_kmemlist(cachep, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003936}
3937
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -08003938/* Called with cache_chain_mutex held always */
Pekka Enberg83b519e2009-06-10 19:40:04 +03003939static int enable_cpucache(struct kmem_cache *cachep, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940{
3941 int err;
3942 int limit, shared;
3943
Andrew Mortona737b3e2006-03-22 00:08:11 -08003944 /*
3945 * The head array serves three purposes:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003946 * - create a LIFO ordering, i.e. return objects that are cache-warm
3947 * - reduce the number of spinlock operations.
Andrew Mortona737b3e2006-03-22 00:08:11 -08003948 * - reduce the number of linked list operations on the slab and
Linus Torvalds1da177e2005-04-16 15:20:36 -07003949 * bufctl chains: array operations are cheaper.
3950 * The numbers are guessed, we should auto-tune as described by
3951 * Bonwick.
3952 */
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003953 if (cachep->buffer_size > 131072)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003954 limit = 1;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003955 else if (cachep->buffer_size > PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956 limit = 8;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003957 else if (cachep->buffer_size > 1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003958 limit = 24;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003959 else if (cachep->buffer_size > 256)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003960 limit = 54;
3961 else
3962 limit = 120;
3963
Andrew Mortona737b3e2006-03-22 00:08:11 -08003964 /*
3965 * CPU bound tasks (e.g. network routing) can exhibit cpu bound
Linus Torvalds1da177e2005-04-16 15:20:36 -07003966 * allocation behaviour: Most allocs on one cpu, most free operations
3967 * on another cpu. For these cases, an efficient object passing between
3968 * cpus is necessary. This is provided by a shared array. The array
3969 * replaces Bonwick's magazine layer.
3970 * On uniprocessor, it's functionally equivalent (but less efficient)
3971 * to a larger limit. Thus disabled by default.
3972 */
3973 shared = 0;
Eric Dumazet364fbb22007-05-06 14:49:27 -07003974 if (cachep->buffer_size <= PAGE_SIZE && num_possible_cpus() > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003975 shared = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003976
3977#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08003978 /*
3979 * With debugging enabled, large batchcount lead to excessively long
3980 * periods with disabled local interrupts. Limit the batchcount
Linus Torvalds1da177e2005-04-16 15:20:36 -07003981 */
3982 if (limit > 32)
3983 limit = 32;
3984#endif
Pekka Enberg83b519e2009-06-10 19:40:04 +03003985 err = do_tune_cpucache(cachep, limit, (limit + 1) / 2, shared, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003986 if (err)
3987 printk(KERN_ERR "enable_cpucache failed for %s, error %d.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003988 cachep->name, -err);
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07003989 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003990}
3991
Christoph Lameter1b552532006-03-22 00:09:07 -08003992/*
3993 * Drain an array if it contains any elements taking the l3 lock only if
Christoph Lameterb18e7e62006-03-22 00:09:07 -08003994 * necessary. Note that the l3 listlock also protects the array_cache
3995 * if drain_array() is used on the shared array.
Christoph Lameter1b552532006-03-22 00:09:07 -08003996 */
3997void drain_array(struct kmem_cache *cachep, struct kmem_list3 *l3,
3998 struct array_cache *ac, int force, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003999{
4000 int tofree;
4001
Christoph Lameter1b552532006-03-22 00:09:07 -08004002 if (!ac || !ac->avail)
4003 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004004 if (ac->touched && !force) {
4005 ac->touched = 0;
Christoph Lameterb18e7e62006-03-22 00:09:07 -08004006 } else {
Christoph Lameter1b552532006-03-22 00:09:07 -08004007 spin_lock_irq(&l3->list_lock);
Christoph Lameterb18e7e62006-03-22 00:09:07 -08004008 if (ac->avail) {
4009 tofree = force ? ac->avail : (ac->limit + 4) / 5;
4010 if (tofree > ac->avail)
4011 tofree = (ac->avail + 1) / 2;
4012 free_block(cachep, ac->entry, tofree, node);
4013 ac->avail -= tofree;
4014 memmove(ac->entry, &(ac->entry[tofree]),
4015 sizeof(void *) * ac->avail);
4016 }
Christoph Lameter1b552532006-03-22 00:09:07 -08004017 spin_unlock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004018 }
4019}
4020
4021/**
4022 * cache_reap - Reclaim memory from caches.
Randy Dunlap05fb6bf2007-02-28 20:12:13 -08004023 * @w: work descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -07004024 *
4025 * Called from workqueue/eventd every few seconds.
4026 * Purpose:
4027 * - clear the per-cpu caches for this CPU.
4028 * - return freeable pages to the main free memory pool.
4029 *
Andrew Mortona737b3e2006-03-22 00:08:11 -08004030 * If we cannot acquire the cache chain mutex then just give up - we'll try
4031 * again on the next iteration.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004032 */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004033static void cache_reap(struct work_struct *w)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004034{
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004035 struct kmem_cache *searchp;
Christoph Lametere498be72005-09-09 13:03:32 -07004036 struct kmem_list3 *l3;
Christoph Lameteraab22072006-03-22 00:09:06 -08004037 int node = numa_node_id();
Jean Delvarebf6aede2009-04-02 16:56:54 -07004038 struct delayed_work *work = to_delayed_work(w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004039
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004040 if (!mutex_trylock(&cache_chain_mutex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004041 /* Give up. Setup the next iteration. */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004042 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004043
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004044 list_for_each_entry(searchp, &cache_chain, next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004045 check_irq_on();
4046
Christoph Lameter35386e32006-03-22 00:09:05 -08004047 /*
4048 * We only take the l3 lock if absolutely necessary and we
4049 * have established with reasonable certainty that
4050 * we can do some work if the lock was obtained.
4051 */
Christoph Lameteraab22072006-03-22 00:09:06 -08004052 l3 = searchp->nodelists[node];
Christoph Lameter35386e32006-03-22 00:09:05 -08004053
Christoph Lameter8fce4d82006-03-09 17:33:54 -08004054 reap_alien(searchp, l3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004055
Christoph Lameteraab22072006-03-22 00:09:06 -08004056 drain_array(searchp, l3, cpu_cache_get(searchp), 0, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004057
Christoph Lameter35386e32006-03-22 00:09:05 -08004058 /*
4059 * These are racy checks but it does not matter
4060 * if we skip one check or scan twice.
4061 */
Christoph Lametere498be72005-09-09 13:03:32 -07004062 if (time_after(l3->next_reap, jiffies))
Christoph Lameter35386e32006-03-22 00:09:05 -08004063 goto next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004064
Christoph Lametere498be72005-09-09 13:03:32 -07004065 l3->next_reap = jiffies + REAPTIMEOUT_LIST3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004066
Christoph Lameteraab22072006-03-22 00:09:06 -08004067 drain_array(searchp, l3, l3->shared, 0, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004068
Christoph Lametered11d9e2006-06-30 01:55:45 -07004069 if (l3->free_touched)
Christoph Lametere498be72005-09-09 13:03:32 -07004070 l3->free_touched = 0;
Christoph Lametered11d9e2006-06-30 01:55:45 -07004071 else {
4072 int freed;
4073
4074 freed = drain_freelist(searchp, l3, (l3->free_limit +
4075 5 * searchp->num - 1) / (5 * searchp->num));
4076 STATS_ADD_REAPED(searchp, freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004077 }
Christoph Lameter35386e32006-03-22 00:09:05 -08004078next:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004079 cond_resched();
4080 }
4081 check_irq_on();
Ingo Molnarfc0abb12006-01-18 17:42:33 -08004082 mutex_unlock(&cache_chain_mutex);
Christoph Lameter8fce4d82006-03-09 17:33:54 -08004083 next_reap_node();
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004084out:
Andrew Mortona737b3e2006-03-22 00:08:11 -08004085 /* Set up the next iteration */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004086 schedule_delayed_work(work, round_jiffies_relative(REAPTIMEOUT_CPUC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004087}
4088
Linus Torvalds158a9622008-01-02 13:04:48 -08004089#ifdef CONFIG_SLABINFO
Linus Torvalds1da177e2005-04-16 15:20:36 -07004090
Pekka Enberg85289f92006-01-08 01:00:36 -08004091static void print_slabinfo_header(struct seq_file *m)
4092{
4093 /*
4094 * Output format version, so at least we can change it
4095 * without _too_ many complaints.
4096 */
4097#if STATS
4098 seq_puts(m, "slabinfo - version: 2.1 (statistics)\n");
4099#else
4100 seq_puts(m, "slabinfo - version: 2.1\n");
4101#endif
4102 seq_puts(m, "# name <active_objs> <num_objs> <objsize> "
4103 "<objperslab> <pagesperslab>");
4104 seq_puts(m, " : tunables <limit> <batchcount> <sharedfactor>");
4105 seq_puts(m, " : slabdata <active_slabs> <num_slabs> <sharedavail>");
4106#if STATS
4107 seq_puts(m, " : globalstat <listallocs> <maxobjs> <grown> <reaped> "
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -07004108 "<error> <maxfreeable> <nodeallocs> <remotefrees> <alienoverflow>");
Pekka Enberg85289f92006-01-08 01:00:36 -08004109 seq_puts(m, " : cpustat <allochit> <allocmiss> <freehit> <freemiss>");
4110#endif
4111 seq_putc(m, '\n');
4112}
4113
Linus Torvalds1da177e2005-04-16 15:20:36 -07004114static void *s_start(struct seq_file *m, loff_t *pos)
4115{
4116 loff_t n = *pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004117
Ingo Molnarfc0abb12006-01-18 17:42:33 -08004118 mutex_lock(&cache_chain_mutex);
Pekka Enberg85289f92006-01-08 01:00:36 -08004119 if (!n)
4120 print_slabinfo_header(m);
Pavel Emelianovb92151b2007-07-15 23:38:04 -07004121
4122 return seq_list_start(&cache_chain, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004123}
4124
4125static void *s_next(struct seq_file *m, void *p, loff_t *pos)
4126{
Pavel Emelianovb92151b2007-07-15 23:38:04 -07004127 return seq_list_next(p, &cache_chain, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004128}
4129
4130static void s_stop(struct seq_file *m, void *p)
4131{
Ingo Molnarfc0abb12006-01-18 17:42:33 -08004132 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004133}
4134
4135static int s_show(struct seq_file *m, void *p)
4136{
Pavel Emelianovb92151b2007-07-15 23:38:04 -07004137 struct kmem_cache *cachep = list_entry(p, struct kmem_cache, next);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004138 struct slab *slabp;
4139 unsigned long active_objs;
4140 unsigned long num_objs;
4141 unsigned long active_slabs = 0;
4142 unsigned long num_slabs, free_objects = 0, shared_avail = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07004143 const char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004144 char *error = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07004145 int node;
4146 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004147
Linus Torvalds1da177e2005-04-16 15:20:36 -07004148 active_objs = 0;
4149 num_slabs = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07004150 for_each_online_node(node) {
4151 l3 = cachep->nodelists[node];
4152 if (!l3)
4153 continue;
4154
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08004155 check_irq_on();
4156 spin_lock_irq(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07004157
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004158 list_for_each_entry(slabp, &l3->slabs_full, list) {
Christoph Lametere498be72005-09-09 13:03:32 -07004159 if (slabp->inuse != cachep->num && !error)
4160 error = "slabs_full accounting error";
4161 active_objs += cachep->num;
4162 active_slabs++;
4163 }
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004164 list_for_each_entry(slabp, &l3->slabs_partial, list) {
Christoph Lametere498be72005-09-09 13:03:32 -07004165 if (slabp->inuse == cachep->num && !error)
4166 error = "slabs_partial inuse accounting error";
4167 if (!slabp->inuse && !error)
4168 error = "slabs_partial/inuse accounting error";
4169 active_objs += slabp->inuse;
4170 active_slabs++;
4171 }
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004172 list_for_each_entry(slabp, &l3->slabs_free, list) {
Christoph Lametere498be72005-09-09 13:03:32 -07004173 if (slabp->inuse && !error)
4174 error = "slabs_free/inuse accounting error";
4175 num_slabs++;
4176 }
4177 free_objects += l3->free_objects;
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08004178 if (l3->shared)
4179 shared_avail += l3->shared->avail;
Christoph Lametere498be72005-09-09 13:03:32 -07004180
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08004181 spin_unlock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004182 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004183 num_slabs += active_slabs;
4184 num_objs = num_slabs * cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07004185 if (num_objs - active_objs != free_objects && !error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004186 error = "free_objects accounting error";
4187
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004188 name = cachep->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004189 if (error)
4190 printk(KERN_ERR "slab: cache %s error: %s\n", name, error);
4191
4192 seq_printf(m, "%-17s %6lu %6lu %6u %4u %4d",
Manfred Spraul3dafccf2006-02-01 03:05:42 -08004193 name, active_objs, num_objs, cachep->buffer_size,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004194 cachep->num, (1 << cachep->gfporder));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004195 seq_printf(m, " : tunables %4u %4u %4u",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004196 cachep->limit, cachep->batchcount, cachep->shared);
Christoph Lametere498be72005-09-09 13:03:32 -07004197 seq_printf(m, " : slabdata %6lu %6lu %6lu",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004198 active_slabs, num_slabs, shared_avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004199#if STATS
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004200 { /* list3 stats */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004201 unsigned long high = cachep->high_mark;
4202 unsigned long allocs = cachep->num_allocations;
4203 unsigned long grown = cachep->grown;
4204 unsigned long reaped = cachep->reaped;
4205 unsigned long errors = cachep->errors;
4206 unsigned long max_freeable = cachep->max_freeable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004207 unsigned long node_allocs = cachep->node_allocs;
Christoph Lametere498be72005-09-09 13:03:32 -07004208 unsigned long node_frees = cachep->node_frees;
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -07004209 unsigned long overflows = cachep->node_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004210
Christoph Lametere498be72005-09-09 13:03:32 -07004211 seq_printf(m, " : globalstat %7lu %6lu %5lu %4lu \
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -07004212 %4lu %4lu %4lu %4lu %4lu", allocs, high, grown,
Andrew Mortona737b3e2006-03-22 00:08:11 -08004213 reaped, errors, max_freeable, node_allocs,
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -07004214 node_frees, overflows);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004215 }
4216 /* cpu stats */
4217 {
4218 unsigned long allochit = atomic_read(&cachep->allochit);
4219 unsigned long allocmiss = atomic_read(&cachep->allocmiss);
4220 unsigned long freehit = atomic_read(&cachep->freehit);
4221 unsigned long freemiss = atomic_read(&cachep->freemiss);
4222
4223 seq_printf(m, " : cpustat %6lu %6lu %6lu %6lu",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004224 allochit, allocmiss, freehit, freemiss);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004225 }
4226#endif
4227 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07004228 return 0;
4229}
4230
4231/*
4232 * slabinfo_op - iterator that generates /proc/slabinfo
4233 *
4234 * Output layout:
4235 * cache-name
4236 * num-active-objs
4237 * total-objs
4238 * object size
4239 * num-active-slabs
4240 * total-slabs
4241 * num-pages-per-slab
4242 * + further values on SMP and with statistics enabled
4243 */
4244
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04004245static const struct seq_operations slabinfo_op = {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004246 .start = s_start,
4247 .next = s_next,
4248 .stop = s_stop,
4249 .show = s_show,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004250};
4251
4252#define MAX_SLABINFO_WRITE 128
4253/**
4254 * slabinfo_write - Tuning for the slab allocator
4255 * @file: unused
4256 * @buffer: user buffer
4257 * @count: data length
4258 * @ppos: unused
4259 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004260ssize_t slabinfo_write(struct file *file, const char __user * buffer,
4261 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004262{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004263 char kbuf[MAX_SLABINFO_WRITE + 1], *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004264 int limit, batchcount, shared, res;
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004265 struct kmem_cache *cachep;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004266
Linus Torvalds1da177e2005-04-16 15:20:36 -07004267 if (count > MAX_SLABINFO_WRITE)
4268 return -EINVAL;
4269 if (copy_from_user(&kbuf, buffer, count))
4270 return -EFAULT;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004271 kbuf[MAX_SLABINFO_WRITE] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07004272
4273 tmp = strchr(kbuf, ' ');
4274 if (!tmp)
4275 return -EINVAL;
4276 *tmp = '\0';
4277 tmp++;
4278 if (sscanf(tmp, " %d %d %d", &limit, &batchcount, &shared) != 3)
4279 return -EINVAL;
4280
4281 /* Find the cache in the chain of caches. */
Ingo Molnarfc0abb12006-01-18 17:42:33 -08004282 mutex_lock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004283 res = -EINVAL;
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004284 list_for_each_entry(cachep, &cache_chain, next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004285 if (!strcmp(cachep->name, kbuf)) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08004286 if (limit < 1 || batchcount < 1 ||
4287 batchcount > limit || shared < 0) {
Christoph Lametere498be72005-09-09 13:03:32 -07004288 res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004289 } else {
Christoph Lametere498be72005-09-09 13:03:32 -07004290 res = do_tune_cpucache(cachep, limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03004291 batchcount, shared,
4292 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004293 }
4294 break;
4295 }
4296 }
Ingo Molnarfc0abb12006-01-18 17:42:33 -08004297 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004298 if (res >= 0)
4299 res = count;
4300 return res;
4301}
Al Viro871751e2006-03-25 03:06:39 -08004302
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04004303static int slabinfo_open(struct inode *inode, struct file *file)
4304{
4305 return seq_open(file, &slabinfo_op);
4306}
4307
4308static const struct file_operations proc_slabinfo_operations = {
4309 .open = slabinfo_open,
4310 .read = seq_read,
4311 .write = slabinfo_write,
4312 .llseek = seq_lseek,
4313 .release = seq_release,
4314};
4315
Al Viro871751e2006-03-25 03:06:39 -08004316#ifdef CONFIG_DEBUG_SLAB_LEAK
4317
4318static void *leaks_start(struct seq_file *m, loff_t *pos)
4319{
Al Viro871751e2006-03-25 03:06:39 -08004320 mutex_lock(&cache_chain_mutex);
Pavel Emelianovb92151b2007-07-15 23:38:04 -07004321 return seq_list_start(&cache_chain, *pos);
Al Viro871751e2006-03-25 03:06:39 -08004322}
4323
4324static inline int add_caller(unsigned long *n, unsigned long v)
4325{
4326 unsigned long *p;
4327 int l;
4328 if (!v)
4329 return 1;
4330 l = n[1];
4331 p = n + 2;
4332 while (l) {
4333 int i = l/2;
4334 unsigned long *q = p + 2 * i;
4335 if (*q == v) {
4336 q[1]++;
4337 return 1;
4338 }
4339 if (*q > v) {
4340 l = i;
4341 } else {
4342 p = q + 2;
4343 l -= i + 1;
4344 }
4345 }
4346 if (++n[1] == n[0])
4347 return 0;
4348 memmove(p + 2, p, n[1] * 2 * sizeof(unsigned long) - ((void *)p - (void *)n));
4349 p[0] = v;
4350 p[1] = 1;
4351 return 1;
4352}
4353
4354static void handle_slab(unsigned long *n, struct kmem_cache *c, struct slab *s)
4355{
4356 void *p;
4357 int i;
4358 if (n[0] == n[1])
4359 return;
4360 for (i = 0, p = s->s_mem; i < c->num; i++, p += c->buffer_size) {
4361 if (slab_bufctl(s)[i] != BUFCTL_ACTIVE)
4362 continue;
4363 if (!add_caller(n, (unsigned long)*dbg_userword(c, p)))
4364 return;
4365 }
4366}
4367
4368static void show_symbol(struct seq_file *m, unsigned long address)
4369{
4370#ifdef CONFIG_KALLSYMS
Al Viro871751e2006-03-25 03:06:39 -08004371 unsigned long offset, size;
Tejun Heo9281ace2007-07-17 04:03:51 -07004372 char modname[MODULE_NAME_LEN], name[KSYM_NAME_LEN];
Al Viro871751e2006-03-25 03:06:39 -08004373
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004374 if (lookup_symbol_attrs(address, &size, &offset, modname, name) == 0) {
Al Viro871751e2006-03-25 03:06:39 -08004375 seq_printf(m, "%s+%#lx/%#lx", name, offset, size);
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004376 if (modname[0])
Al Viro871751e2006-03-25 03:06:39 -08004377 seq_printf(m, " [%s]", modname);
4378 return;
4379 }
4380#endif
4381 seq_printf(m, "%p", (void *)address);
4382}
4383
4384static int leaks_show(struct seq_file *m, void *p)
4385{
Pavel Emelianovb92151b2007-07-15 23:38:04 -07004386 struct kmem_cache *cachep = list_entry(p, struct kmem_cache, next);
Al Viro871751e2006-03-25 03:06:39 -08004387 struct slab *slabp;
4388 struct kmem_list3 *l3;
4389 const char *name;
4390 unsigned long *n = m->private;
4391 int node;
4392 int i;
4393
4394 if (!(cachep->flags & SLAB_STORE_USER))
4395 return 0;
4396 if (!(cachep->flags & SLAB_RED_ZONE))
4397 return 0;
4398
4399 /* OK, we can do it */
4400
4401 n[1] = 0;
4402
4403 for_each_online_node(node) {
4404 l3 = cachep->nodelists[node];
4405 if (!l3)
4406 continue;
4407
4408 check_irq_on();
4409 spin_lock_irq(&l3->list_lock);
4410
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004411 list_for_each_entry(slabp, &l3->slabs_full, list)
Al Viro871751e2006-03-25 03:06:39 -08004412 handle_slab(n, cachep, slabp);
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004413 list_for_each_entry(slabp, &l3->slabs_partial, list)
Al Viro871751e2006-03-25 03:06:39 -08004414 handle_slab(n, cachep, slabp);
Al Viro871751e2006-03-25 03:06:39 -08004415 spin_unlock_irq(&l3->list_lock);
4416 }
4417 name = cachep->name;
4418 if (n[0] == n[1]) {
4419 /* Increase the buffer size */
4420 mutex_unlock(&cache_chain_mutex);
4421 m->private = kzalloc(n[0] * 4 * sizeof(unsigned long), GFP_KERNEL);
4422 if (!m->private) {
4423 /* Too bad, we are really out */
4424 m->private = n;
4425 mutex_lock(&cache_chain_mutex);
4426 return -ENOMEM;
4427 }
4428 *(unsigned long *)m->private = n[0] * 2;
4429 kfree(n);
4430 mutex_lock(&cache_chain_mutex);
4431 /* Now make sure this entry will be retried */
4432 m->count = m->size;
4433 return 0;
4434 }
4435 for (i = 0; i < n[1]; i++) {
4436 seq_printf(m, "%s: %lu ", name, n[2*i+3]);
4437 show_symbol(m, n[2*i+2]);
4438 seq_putc(m, '\n');
4439 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004440
Al Viro871751e2006-03-25 03:06:39 -08004441 return 0;
4442}
4443
Alexey Dobriyana0ec95a82008-10-06 00:59:10 +04004444static const struct seq_operations slabstats_op = {
Al Viro871751e2006-03-25 03:06:39 -08004445 .start = leaks_start,
4446 .next = s_next,
4447 .stop = s_stop,
4448 .show = leaks_show,
4449};
Alexey Dobriyana0ec95a82008-10-06 00:59:10 +04004450
4451static int slabstats_open(struct inode *inode, struct file *file)
4452{
4453 unsigned long *n = kzalloc(PAGE_SIZE, GFP_KERNEL);
4454 int ret = -ENOMEM;
4455 if (n) {
4456 ret = seq_open(file, &slabstats_op);
4457 if (!ret) {
4458 struct seq_file *m = file->private_data;
4459 *n = PAGE_SIZE / (2 * sizeof(unsigned long));
4460 m->private = n;
4461 n = NULL;
4462 }
4463 kfree(n);
4464 }
4465 return ret;
4466}
4467
4468static const struct file_operations proc_slabstats_operations = {
4469 .open = slabstats_open,
4470 .read = seq_read,
4471 .llseek = seq_lseek,
4472 .release = seq_release_private,
4473};
Al Viro871751e2006-03-25 03:06:39 -08004474#endif
Alexey Dobriyana0ec95a82008-10-06 00:59:10 +04004475
4476static int __init slab_proc_init(void)
4477{
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04004478 proc_create("slabinfo",S_IWUSR|S_IRUGO,NULL,&proc_slabinfo_operations);
Alexey Dobriyana0ec95a82008-10-06 00:59:10 +04004479#ifdef CONFIG_DEBUG_SLAB_LEAK
4480 proc_create("slab_allocators", 0, NULL, &proc_slabstats_operations);
4481#endif
4482 return 0;
4483}
4484module_init(slab_proc_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004485#endif
4486
Manfred Spraul00e145b2005-09-03 15:55:07 -07004487/**
4488 * ksize - get the actual amount of memory allocated for a given object
4489 * @objp: Pointer to the object
4490 *
4491 * kmalloc may internally round up allocations and return more memory
4492 * than requested. ksize() can be used to determine the actual amount of
4493 * memory allocated. The caller may use this additional memory, even though
4494 * a smaller amount of memory was initially specified with the kmalloc call.
4495 * The caller must guarantee that objp points to a valid object previously
4496 * allocated with either kmalloc() or kmem_cache_alloc(). The object
4497 * must not be freed during the duration of the call.
4498 */
Pekka Enbergfd76bab2007-05-06 14:48:40 -07004499size_t ksize(const void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004500{
Christoph Lameteref8b4522007-10-16 01:24:46 -07004501 BUG_ON(!objp);
4502 if (unlikely(objp == ZERO_SIZE_PTR))
Manfred Spraul00e145b2005-09-03 15:55:07 -07004503 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004504
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08004505 return obj_size(virt_to_cache(objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004506}
Kirill A. Shutemovb1aabec2009-02-10 15:21:44 +02004507EXPORT_SYMBOL(ksize);