blob: 2bd611fa87bf582dae5f66337b01cd1d8d81c82b [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>
Christoph Lameterdc85da12006-01-18 17:42:36 -0800110#include <linux/mempolicy.h>
Ingo Molnarfc0abb12006-01-18 17:42:33 -0800111#include <linux/mutex.h>
Akinobu Mita8a8b6502006-12-08 02:39:44 -0800112#include <linux/fault-inject.h>
Ingo Molnare7eebaf2006-06-27 02:54:55 -0700113#include <linux/rtmutex.h>
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800114#include <linux/reciprocal_div.h>
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700115#include <linux/debugobjects.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117#include <asm/cacheflush.h>
118#include <asm/tlbflush.h>
119#include <asm/page.h>
120
121/*
Christoph Lameter50953fe2007-05-06 14:50:16 -0700122 * DEBUG - 1 for kmem_cache_create() to honour; SLAB_RED_ZONE & SLAB_POISON.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 * 0 for faster, smaller code (especially in the critical paths).
124 *
125 * STATS - 1 to collect stats for /proc/slabinfo.
126 * 0 for faster, smaller code (especially in the critical paths).
127 *
128 * FORCED_DEBUG - 1 enables SLAB_RED_ZONE and SLAB_POISON (if possible)
129 */
130
131#ifdef CONFIG_DEBUG_SLAB
132#define DEBUG 1
133#define STATS 1
134#define FORCED_DEBUG 1
135#else
136#define DEBUG 0
137#define STATS 0
138#define FORCED_DEBUG 0
139#endif
140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141/* Shouldn't this be in a header file somewhere? */
142#define BYTES_PER_WORD sizeof(void *)
David Woodhouse87a927c2007-07-04 21:26:44 -0400143#define REDZONE_ALIGN max(BYTES_PER_WORD, __alignof__(unsigned long long))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145#ifndef ARCH_KMALLOC_MINALIGN
146/*
147 * Enforce a minimum alignment for the kmalloc caches.
148 * Usually, the kmalloc caches are cache_line_size() aligned, except when
149 * DEBUG and FORCED_DEBUG are enabled, then they are BYTES_PER_WORD aligned.
150 * Some archs want to perform DMA into kmalloc caches and need a guaranteed
David Woodhouseb46b8f12007-05-08 00:22:59 -0700151 * alignment larger than the alignment of a 64-bit integer.
152 * ARCH_KMALLOC_MINALIGN allows that.
153 * Note that increasing this value may disable some debug features.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 */
David Woodhouseb46b8f12007-05-08 00:22:59 -0700155#define ARCH_KMALLOC_MINALIGN __alignof__(unsigned long long)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156#endif
157
158#ifndef ARCH_SLAB_MINALIGN
159/*
160 * Enforce a minimum alignment for all caches.
161 * Intended for archs that get misalignment faults even for BYTES_PER_WORD
162 * aligned buffers. Includes ARCH_KMALLOC_MINALIGN.
163 * If possible: Do not enable this flag for CONFIG_DEBUG_SLAB, it disables
164 * some debug features.
165 */
166#define ARCH_SLAB_MINALIGN 0
167#endif
168
169#ifndef ARCH_KMALLOC_FLAGS
170#define ARCH_KMALLOC_FLAGS SLAB_HWCACHE_ALIGN
171#endif
172
173/* Legal flag mask for kmem_cache_create(). */
174#if DEBUG
Christoph Lameter50953fe2007-05-06 14:50:16 -0700175# define CREATE_MASK (SLAB_RED_ZONE | \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 SLAB_POISON | SLAB_HWCACHE_ALIGN | \
Christoph Lameterac2b8982006-03-22 00:08:15 -0800177 SLAB_CACHE_DMA | \
Christoph Lameter5af60832007-05-06 14:49:56 -0700178 SLAB_STORE_USER | \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 SLAB_RECLAIM_ACCOUNT | SLAB_PANIC | \
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700180 SLAB_DESTROY_BY_RCU | SLAB_MEM_SPREAD | \
181 SLAB_DEBUG_OBJECTS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182#else
Christoph Lameterac2b8982006-03-22 00:08:15 -0800183# define CREATE_MASK (SLAB_HWCACHE_ALIGN | \
Christoph Lameter5af60832007-05-06 14:49:56 -0700184 SLAB_CACHE_DMA | \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 SLAB_RECLAIM_ACCOUNT | SLAB_PANIC | \
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700186 SLAB_DESTROY_BY_RCU | SLAB_MEM_SPREAD | \
187 SLAB_DEBUG_OBJECTS)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188#endif
189
190/*
191 * kmem_bufctl_t:
192 *
193 * Bufctl's are used for linking objs within a slab
194 * linked offsets.
195 *
196 * This implementation relies on "struct page" for locating the cache &
197 * slab an object belongs to.
198 * This allows the bufctl structure to be small (one int), but limits
199 * the number of objects a slab (not a cache) can contain when off-slab
200 * bufctls are used. The limit is the size of the largest general cache
201 * that does not use off-slab slabs.
202 * For 32bit archs with 4 kB pages, is this 56.
203 * This is not serious, as it is only for large objects, when it is unwise
204 * to have too many per slab.
205 * Note: This limit can be raised by introducing a general cache whose size
206 * is less than 512 (PAGE_SIZE<<3), but greater than 256.
207 */
208
Kyle Moffettfa5b08d2005-09-03 15:55:03 -0700209typedef unsigned int kmem_bufctl_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210#define BUFCTL_END (((kmem_bufctl_t)(~0U))-0)
211#define BUFCTL_FREE (((kmem_bufctl_t)(~0U))-1)
Al Viro871751e2006-03-25 03:06:39 -0800212#define BUFCTL_ACTIVE (((kmem_bufctl_t)(~0U))-2)
213#define SLAB_LIMIT (((kmem_bufctl_t)(~0U))-3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215/*
216 * struct slab
217 *
218 * Manages the objs in a slab. Placed either at the beginning of mem allocated
219 * for a slab, or allocated from an general cache.
220 * Slabs are chained into three list: fully used, partial, fully free slabs.
221 */
222struct slab {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800223 struct list_head list;
224 unsigned long colouroff;
225 void *s_mem; /* including colour offset */
226 unsigned int inuse; /* num of objs active in slab */
227 kmem_bufctl_t free;
228 unsigned short nodeid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229};
230
231/*
232 * struct slab_rcu
233 *
234 * slab_destroy on a SLAB_DESTROY_BY_RCU cache uses this structure to
235 * arrange for kmem_freepages to be called via RCU. This is useful if
236 * we need to approach a kernel structure obliquely, from its address
237 * obtained without the usual locking. We can lock the structure to
238 * stabilize it and check it's still at the given address, only if we
239 * can be sure that the memory has not been meanwhile reused for some
240 * other kind of object (which our subsystem's lock might corrupt).
241 *
242 * rcu_read_lock before reading the address, then rcu_read_unlock after
243 * taking the spinlock within the structure expected at that address.
244 *
245 * We assume struct slab_rcu can overlay struct slab when destroying.
246 */
247struct slab_rcu {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800248 struct rcu_head head;
Pekka Enberg343e0d72006-02-01 03:05:50 -0800249 struct kmem_cache *cachep;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800250 void *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251};
252
253/*
254 * struct array_cache
255 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 * Purpose:
257 * - LIFO ordering, to hand out cache-warm objects from _alloc
258 * - reduce the number of linked list operations
259 * - reduce spinlock operations
260 *
261 * The limit is stored in the per-cpu structure to reduce the data cache
262 * footprint.
263 *
264 */
265struct array_cache {
266 unsigned int avail;
267 unsigned int limit;
268 unsigned int batchcount;
269 unsigned int touched;
Christoph Lametere498be72005-09-09 13:03:32 -0700270 spinlock_t lock;
Robert P. J. Daybda5b652007-10-16 23:30:05 -0700271 void *entry[]; /*
Andrew Mortona737b3e2006-03-22 00:08:11 -0800272 * Must have this definition in here for the proper
273 * alignment of array_cache. Also simplifies accessing
274 * the entries.
Andrew Mortona737b3e2006-03-22 00:08:11 -0800275 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276};
277
Andrew Mortona737b3e2006-03-22 00:08:11 -0800278/*
279 * bootstrap: The caches do not work without cpuarrays anymore, but the
280 * cpuarrays are allocated from the generic caches...
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 */
282#define BOOT_CPUCACHE_ENTRIES 1
283struct arraycache_init {
284 struct array_cache cache;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800285 void *entries[BOOT_CPUCACHE_ENTRIES];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286};
287
288/*
Christoph Lametere498be72005-09-09 13:03:32 -0700289 * The slab lists for all objects.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 */
291struct kmem_list3 {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800292 struct list_head slabs_partial; /* partial list first, better asm code */
293 struct list_head slabs_full;
294 struct list_head slabs_free;
295 unsigned long free_objects;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800296 unsigned int free_limit;
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -0800297 unsigned int colour_next; /* Per-node cache coloring */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800298 spinlock_t list_lock;
299 struct array_cache *shared; /* shared per node */
300 struct array_cache **alien; /* on other nodes */
Christoph Lameter35386e32006-03-22 00:09:05 -0800301 unsigned long next_reap; /* updated without locking */
302 int free_touched; /* updated without locking */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303};
304
Christoph Lametere498be72005-09-09 13:03:32 -0700305/*
306 * Need this for bootstrapping a per node allocator.
307 */
Pekka Enberg556a1692008-01-25 08:20:51 +0200308#define NUM_INIT_LISTS (3 * MAX_NUMNODES)
Christoph Lametere498be72005-09-09 13:03:32 -0700309struct kmem_list3 __initdata initkmem_list3[NUM_INIT_LISTS];
310#define CACHE_CACHE 0
Pekka Enberg556a1692008-01-25 08:20:51 +0200311#define SIZE_AC MAX_NUMNODES
312#define SIZE_L3 (2 * MAX_NUMNODES)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
Christoph Lametered11d9e2006-06-30 01:55:45 -0700314static int drain_freelist(struct kmem_cache *cache,
315 struct kmem_list3 *l3, int tofree);
316static void free_block(struct kmem_cache *cachep, void **objpp, int len,
317 int node);
Pekka Enberg83b519e2009-06-10 19:40:04 +0300318static int enable_cpucache(struct kmem_cache *cachep, gfp_t gfp);
David Howells65f27f32006-11-22 14:55:48 +0000319static void cache_reap(struct work_struct *unused);
Christoph Lametered11d9e2006-06-30 01:55:45 -0700320
Christoph Lametere498be72005-09-09 13:03:32 -0700321/*
Andrew Mortona737b3e2006-03-22 00:08:11 -0800322 * This function must be completely optimized away if a constant is passed to
323 * it. Mostly the same as what is in linux/slab.h except it returns an index.
Christoph Lametere498be72005-09-09 13:03:32 -0700324 */
Ivan Kokshaysky7243cc02005-09-22 21:43:58 -0700325static __always_inline int index_of(const size_t size)
Christoph Lametere498be72005-09-09 13:03:32 -0700326{
Steven Rostedt5ec8a842006-02-01 03:05:44 -0800327 extern void __bad_size(void);
328
Christoph Lametere498be72005-09-09 13:03:32 -0700329 if (__builtin_constant_p(size)) {
330 int i = 0;
331
332#define CACHE(x) \
333 if (size <=x) \
334 return i; \
335 else \
336 i++;
Joe Perches1c61fc42008-03-05 13:58:17 -0800337#include <linux/kmalloc_sizes.h>
Christoph Lametere498be72005-09-09 13:03:32 -0700338#undef CACHE
Steven Rostedt5ec8a842006-02-01 03:05:44 -0800339 __bad_size();
Ivan Kokshaysky7243cc02005-09-22 21:43:58 -0700340 } else
Steven Rostedt5ec8a842006-02-01 03:05:44 -0800341 __bad_size();
Christoph Lametere498be72005-09-09 13:03:32 -0700342 return 0;
343}
344
Ingo Molnare0a42722006-06-23 02:03:46 -0700345static int slab_early_init = 1;
346
Christoph Lametere498be72005-09-09 13:03:32 -0700347#define INDEX_AC index_of(sizeof(struct arraycache_init))
348#define INDEX_L3 index_of(sizeof(struct kmem_list3))
349
Pekka Enberg5295a742006-02-01 03:05:48 -0800350static void kmem_list3_init(struct kmem_list3 *parent)
Christoph Lametere498be72005-09-09 13:03:32 -0700351{
352 INIT_LIST_HEAD(&parent->slabs_full);
353 INIT_LIST_HEAD(&parent->slabs_partial);
354 INIT_LIST_HEAD(&parent->slabs_free);
355 parent->shared = NULL;
356 parent->alien = NULL;
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -0800357 parent->colour_next = 0;
Christoph Lametere498be72005-09-09 13:03:32 -0700358 spin_lock_init(&parent->list_lock);
359 parent->free_objects = 0;
360 parent->free_touched = 0;
361}
362
Andrew Mortona737b3e2006-03-22 00:08:11 -0800363#define MAKE_LIST(cachep, listp, slab, nodeid) \
364 do { \
365 INIT_LIST_HEAD(listp); \
366 list_splice(&(cachep->nodelists[nodeid]->slab), listp); \
Christoph Lametere498be72005-09-09 13:03:32 -0700367 } while (0)
368
Andrew Mortona737b3e2006-03-22 00:08:11 -0800369#define MAKE_ALL_LISTS(cachep, ptr, nodeid) \
370 do { \
Christoph Lametere498be72005-09-09 13:03:32 -0700371 MAKE_LIST((cachep), (&(ptr)->slabs_full), slabs_full, nodeid); \
372 MAKE_LIST((cachep), (&(ptr)->slabs_partial), slabs_partial, nodeid); \
373 MAKE_LIST((cachep), (&(ptr)->slabs_free), slabs_free, nodeid); \
374 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
376/*
Pekka Enberg343e0d72006-02-01 03:05:50 -0800377 * struct kmem_cache
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 *
379 * manages a cache.
380 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800381
Pekka J Enberg2109a2d2005-11-07 00:58:01 -0800382struct kmem_cache {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383/* 1) per-cpu data, touched during every alloc/free */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800384 struct array_cache *array[NR_CPUS];
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -0800385/* 2) Cache tunables. Protected by cache_chain_mutex */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800386 unsigned int batchcount;
387 unsigned int limit;
388 unsigned int shared;
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -0800389
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800390 unsigned int buffer_size;
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800391 u32 reciprocal_buffer_size;
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -0800392/* 3) touched by every alloc & free from the backend */
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -0800393
Andrew Mortona737b3e2006-03-22 00:08:11 -0800394 unsigned int flags; /* constant flags */
395 unsigned int num; /* # of objs per slab */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -0800397/* 4) cache_grow/shrink */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 /* order of pgs per slab (2^n) */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800399 unsigned int gfporder;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400
401 /* force GFP flags, e.g. GFP_DMA */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800402 gfp_t gfpflags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403
Andrew Mortona737b3e2006-03-22 00:08:11 -0800404 size_t colour; /* cache colouring range */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800405 unsigned int colour_off; /* colour offset */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800406 struct kmem_cache *slabp_cache;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800407 unsigned int slab_size;
Andrew Mortona737b3e2006-03-22 00:08:11 -0800408 unsigned int dflags; /* dynamic flags */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
410 /* constructor func */
Alexey Dobriyan51cc5062008-07-25 19:45:34 -0700411 void (*ctor)(void *obj);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -0800413/* 5) cache creation/removal */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800414 const char *name;
415 struct list_head next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -0800417/* 6) statistics */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418#if STATS
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800419 unsigned long num_active;
420 unsigned long num_allocations;
421 unsigned long high_mark;
422 unsigned long grown;
423 unsigned long reaped;
424 unsigned long errors;
425 unsigned long max_freeable;
426 unsigned long node_allocs;
427 unsigned long node_frees;
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -0700428 unsigned long node_overflow;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800429 atomic_t allochit;
430 atomic_t allocmiss;
431 atomic_t freehit;
432 atomic_t freemiss;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433#endif
434#if DEBUG
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800435 /*
436 * If debugging is enabled, then the allocator can add additional
437 * fields and/or padding to every object. buffer_size contains the total
438 * object size including these internal fields, the following two
439 * variables contain the offset to the user object and its size.
440 */
441 int obj_offset;
442 int obj_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443#endif
Eric Dumazet8da34302007-05-06 14:49:29 -0700444 /*
445 * We put nodelists[] at the end of kmem_cache, because we want to size
446 * this array to nr_node_ids slots instead of MAX_NUMNODES
447 * (see kmem_cache_init())
448 * We still use [MAX_NUMNODES] and not [1] or [0] because cache_cache
449 * is statically defined, so we reserve the max number of nodes.
450 */
451 struct kmem_list3 *nodelists[MAX_NUMNODES];
452 /*
453 * Do not add fields after nodelists[]
454 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455};
456
457#define CFLGS_OFF_SLAB (0x80000000UL)
458#define OFF_SLAB(x) ((x)->flags & CFLGS_OFF_SLAB)
459
460#define BATCHREFILL_LIMIT 16
Andrew Mortona737b3e2006-03-22 00:08:11 -0800461/*
462 * Optimization question: fewer reaps means less probability for unnessary
463 * cpucache drain/refill cycles.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464 *
Adrian Bunkdc6f3f22005-11-08 16:44:08 +0100465 * OTOH the cpuarrays can contain lots of objects,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 * which could lock up otherwise freeable slabs.
467 */
468#define REAPTIMEOUT_CPUC (2*HZ)
469#define REAPTIMEOUT_LIST3 (4*HZ)
470
471#if STATS
472#define STATS_INC_ACTIVE(x) ((x)->num_active++)
473#define STATS_DEC_ACTIVE(x) ((x)->num_active--)
474#define STATS_INC_ALLOCED(x) ((x)->num_allocations++)
475#define STATS_INC_GROWN(x) ((x)->grown++)
Christoph Lametered11d9e2006-06-30 01:55:45 -0700476#define STATS_ADD_REAPED(x,y) ((x)->reaped += (y))
Andrew Mortona737b3e2006-03-22 00:08:11 -0800477#define STATS_SET_HIGH(x) \
478 do { \
479 if ((x)->num_active > (x)->high_mark) \
480 (x)->high_mark = (x)->num_active; \
481 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482#define STATS_INC_ERR(x) ((x)->errors++)
483#define STATS_INC_NODEALLOCS(x) ((x)->node_allocs++)
Christoph Lametere498be72005-09-09 13:03:32 -0700484#define STATS_INC_NODEFREES(x) ((x)->node_frees++)
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -0700485#define STATS_INC_ACOVERFLOW(x) ((x)->node_overflow++)
Andrew Mortona737b3e2006-03-22 00:08:11 -0800486#define STATS_SET_FREEABLE(x, i) \
487 do { \
488 if ((x)->max_freeable < i) \
489 (x)->max_freeable = i; \
490 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491#define STATS_INC_ALLOCHIT(x) atomic_inc(&(x)->allochit)
492#define STATS_INC_ALLOCMISS(x) atomic_inc(&(x)->allocmiss)
493#define STATS_INC_FREEHIT(x) atomic_inc(&(x)->freehit)
494#define STATS_INC_FREEMISS(x) atomic_inc(&(x)->freemiss)
495#else
496#define STATS_INC_ACTIVE(x) do { } while (0)
497#define STATS_DEC_ACTIVE(x) do { } while (0)
498#define STATS_INC_ALLOCED(x) do { } while (0)
499#define STATS_INC_GROWN(x) do { } while (0)
Christoph Lametered11d9e2006-06-30 01:55:45 -0700500#define STATS_ADD_REAPED(x,y) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501#define STATS_SET_HIGH(x) do { } while (0)
502#define STATS_INC_ERR(x) do { } while (0)
503#define STATS_INC_NODEALLOCS(x) do { } while (0)
Christoph Lametere498be72005-09-09 13:03:32 -0700504#define STATS_INC_NODEFREES(x) do { } while (0)
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -0700505#define STATS_INC_ACOVERFLOW(x) do { } while (0)
Andrew Mortona737b3e2006-03-22 00:08:11 -0800506#define STATS_SET_FREEABLE(x, i) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507#define STATS_INC_ALLOCHIT(x) do { } while (0)
508#define STATS_INC_ALLOCMISS(x) do { } while (0)
509#define STATS_INC_FREEHIT(x) do { } while (0)
510#define STATS_INC_FREEMISS(x) do { } while (0)
511#endif
512
513#if DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514
Andrew Mortona737b3e2006-03-22 00:08:11 -0800515/*
516 * memory layout of objects:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517 * 0 : objp
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800518 * 0 .. cachep->obj_offset - BYTES_PER_WORD - 1: padding. This ensures that
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 * the end of an object is aligned with the end of the real
520 * allocation. Catches writes behind the end of the allocation.
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800521 * cachep->obj_offset - BYTES_PER_WORD .. cachep->obj_offset - 1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 * redzone word.
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800523 * cachep->obj_offset: The real object.
524 * cachep->buffer_size - 2* BYTES_PER_WORD: redzone word [BYTES_PER_WORD long]
Andrew Mortona737b3e2006-03-22 00:08:11 -0800525 * cachep->buffer_size - 1* BYTES_PER_WORD: last caller address
526 * [BYTES_PER_WORD long]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800528static int obj_offset(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529{
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800530 return cachep->obj_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531}
532
Pekka Enberg343e0d72006-02-01 03:05:50 -0800533static int obj_size(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534{
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800535 return cachep->obj_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536}
537
David Woodhouseb46b8f12007-05-08 00:22:59 -0700538static unsigned long long *dbg_redzone1(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539{
540 BUG_ON(!(cachep->flags & SLAB_RED_ZONE));
David Woodhouseb46b8f12007-05-08 00:22:59 -0700541 return (unsigned long long*) (objp + obj_offset(cachep) -
542 sizeof(unsigned long long));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543}
544
David Woodhouseb46b8f12007-05-08 00:22:59 -0700545static unsigned long long *dbg_redzone2(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546{
547 BUG_ON(!(cachep->flags & SLAB_RED_ZONE));
548 if (cachep->flags & SLAB_STORE_USER)
David Woodhouseb46b8f12007-05-08 00:22:59 -0700549 return (unsigned long long *)(objp + cachep->buffer_size -
550 sizeof(unsigned long long) -
David Woodhouse87a927c2007-07-04 21:26:44 -0400551 REDZONE_ALIGN);
David Woodhouseb46b8f12007-05-08 00:22:59 -0700552 return (unsigned long long *) (objp + cachep->buffer_size -
553 sizeof(unsigned long long));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554}
555
Pekka Enberg343e0d72006-02-01 03:05:50 -0800556static void **dbg_userword(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557{
558 BUG_ON(!(cachep->flags & SLAB_STORE_USER));
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800559 return (void **)(objp + cachep->buffer_size - BYTES_PER_WORD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560}
561
562#else
563
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800564#define obj_offset(x) 0
565#define obj_size(cachep) (cachep->buffer_size)
David Woodhouseb46b8f12007-05-08 00:22:59 -0700566#define dbg_redzone1(cachep, objp) ({BUG(); (unsigned long long *)NULL;})
567#define dbg_redzone2(cachep, objp) ({BUG(); (unsigned long long *)NULL;})
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568#define dbg_userword(cachep, objp) ({BUG(); (void **)NULL;})
569
570#endif
571
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +0300572#ifdef CONFIG_KMEMTRACE
573size_t slab_buffer_size(struct kmem_cache *cachep)
574{
575 return cachep->buffer_size;
576}
577EXPORT_SYMBOL(slab_buffer_size);
578#endif
579
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 * Do not go above this order unless 0 objects fit into the slab.
582 */
583#define BREAK_GFP_ORDER_HI 1
584#define BREAK_GFP_ORDER_LO 0
585static int slab_break_gfp_order = BREAK_GFP_ORDER_LO;
586
Andrew Mortona737b3e2006-03-22 00:08:11 -0800587/*
588 * Functions for storing/retrieving the cachep and or slab from the page
589 * allocator. These are used to find the slab an obj belongs to. With kfree(),
590 * these are used to find the cache which an obj belongs to.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 */
Pekka Enberg065d41c2005-11-13 16:06:46 -0800592static inline void page_set_cache(struct page *page, struct kmem_cache *cache)
593{
594 page->lru.next = (struct list_head *)cache;
595}
596
597static inline struct kmem_cache *page_get_cache(struct page *page)
598{
Christoph Lameterd85f3382007-05-06 14:49:39 -0700599 page = compound_head(page);
Pekka Enbergddc2e812006-06-23 02:03:40 -0700600 BUG_ON(!PageSlab(page));
Pekka Enberg065d41c2005-11-13 16:06:46 -0800601 return (struct kmem_cache *)page->lru.next;
602}
603
604static inline void page_set_slab(struct page *page, struct slab *slab)
605{
606 page->lru.prev = (struct list_head *)slab;
607}
608
609static inline struct slab *page_get_slab(struct page *page)
610{
Pekka Enbergddc2e812006-06-23 02:03:40 -0700611 BUG_ON(!PageSlab(page));
Pekka Enberg065d41c2005-11-13 16:06:46 -0800612 return (struct slab *)page->lru.prev;
613}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614
Pekka Enberg6ed5eb22006-02-01 03:05:49 -0800615static inline struct kmem_cache *virt_to_cache(const void *obj)
616{
Christoph Lameterb49af682007-05-06 14:49:41 -0700617 struct page *page = virt_to_head_page(obj);
Pekka Enberg6ed5eb22006-02-01 03:05:49 -0800618 return page_get_cache(page);
619}
620
621static inline struct slab *virt_to_slab(const void *obj)
622{
Christoph Lameterb49af682007-05-06 14:49:41 -0700623 struct page *page = virt_to_head_page(obj);
Pekka Enberg6ed5eb22006-02-01 03:05:49 -0800624 return page_get_slab(page);
625}
626
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800627static inline void *index_to_obj(struct kmem_cache *cache, struct slab *slab,
628 unsigned int idx)
629{
630 return slab->s_mem + cache->buffer_size * idx;
631}
632
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800633/*
634 * We want to avoid an expensive divide : (offset / cache->buffer_size)
635 * Using the fact that buffer_size is a constant for a particular cache,
636 * we can replace (offset / cache->buffer_size) by
637 * reciprocal_divide(offset, cache->reciprocal_buffer_size)
638 */
639static inline unsigned int obj_to_index(const struct kmem_cache *cache,
640 const struct slab *slab, void *obj)
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800641{
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800642 u32 offset = (obj - slab->s_mem);
643 return reciprocal_divide(offset, cache->reciprocal_buffer_size);
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800644}
645
Andrew Mortona737b3e2006-03-22 00:08:11 -0800646/*
647 * These are the default caches for kmalloc. Custom caches can have other sizes.
648 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649struct cache_sizes malloc_sizes[] = {
650#define CACHE(x) { .cs_size = (x) },
651#include <linux/kmalloc_sizes.h>
652 CACHE(ULONG_MAX)
653#undef CACHE
654};
655EXPORT_SYMBOL(malloc_sizes);
656
657/* Must match cache_sizes above. Out of line to keep cache footprint low. */
658struct cache_names {
659 char *name;
660 char *name_dma;
661};
662
663static struct cache_names __initdata cache_names[] = {
664#define CACHE(x) { .name = "size-" #x, .name_dma = "size-" #x "(DMA)" },
665#include <linux/kmalloc_sizes.h>
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800666 {NULL,}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667#undef CACHE
668};
669
670static struct arraycache_init initarray_cache __initdata =
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800671 { {0, BOOT_CPUCACHE_ENTRIES, 1, 0} };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672static struct arraycache_init initarray_generic =
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800673 { {0, BOOT_CPUCACHE_ENTRIES, 1, 0} };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674
675/* internal cache of cache description objs */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800676static struct kmem_cache cache_cache = {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800677 .batchcount = 1,
678 .limit = BOOT_CPUCACHE_ENTRIES,
679 .shared = 1,
Pekka Enberg343e0d72006-02-01 03:05:50 -0800680 .buffer_size = sizeof(struct kmem_cache),
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800681 .name = "kmem_cache",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682};
683
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -0700684#define BAD_ALIEN_MAGIC 0x01020304ul
685
Arjan van de Venf1aaee52006-07-13 14:46:03 +0200686#ifdef CONFIG_LOCKDEP
687
688/*
689 * Slab sometimes uses the kmalloc slabs to store the slab headers
690 * for other slabs "off slab".
691 * The locking for this is tricky in that it nests within the locks
692 * of all other slabs in a few places; to deal with this special
693 * locking we put on-slab caches into a separate lock-class.
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -0700694 *
695 * We set lock class for alien array caches which are up during init.
696 * The lock annotation will be lost if all cpus of a node goes down and
697 * then comes back up during hotplug
Arjan van de Venf1aaee52006-07-13 14:46:03 +0200698 */
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -0700699static struct lock_class_key on_slab_l3_key;
700static struct lock_class_key on_slab_alc_key;
Arjan van de Venf1aaee52006-07-13 14:46:03 +0200701
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -0700702static inline void init_lock_keys(void)
703
Arjan van de Venf1aaee52006-07-13 14:46:03 +0200704{
705 int q;
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -0700706 struct cache_sizes *s = malloc_sizes;
Arjan van de Venf1aaee52006-07-13 14:46:03 +0200707
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -0700708 while (s->cs_size != ULONG_MAX) {
709 for_each_node(q) {
710 struct array_cache **alc;
711 int r;
712 struct kmem_list3 *l3 = s->cs_cachep->nodelists[q];
713 if (!l3 || OFF_SLAB(s->cs_cachep))
714 continue;
715 lockdep_set_class(&l3->list_lock, &on_slab_l3_key);
716 alc = l3->alien;
717 /*
718 * FIXME: This check for BAD_ALIEN_MAGIC
719 * should go away when common slab code is taught to
720 * work even without alien caches.
721 * Currently, non NUMA code returns BAD_ALIEN_MAGIC
722 * for alloc_alien_cache,
723 */
724 if (!alc || (unsigned long)alc == BAD_ALIEN_MAGIC)
725 continue;
726 for_each_node(r) {
727 if (alc[r])
728 lockdep_set_class(&alc[r]->lock,
729 &on_slab_alc_key);
730 }
731 }
732 s++;
Arjan van de Venf1aaee52006-07-13 14:46:03 +0200733 }
734}
Arjan van de Venf1aaee52006-07-13 14:46:03 +0200735#else
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -0700736static inline void init_lock_keys(void)
Arjan van de Venf1aaee52006-07-13 14:46:03 +0200737{
738}
739#endif
740
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -0800741/*
Gautham R Shenoy95402b32008-01-25 21:08:02 +0100742 * Guard access to the cache-chain.
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -0800743 */
Ingo Molnarfc0abb12006-01-18 17:42:33 -0800744static DEFINE_MUTEX(cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745static struct list_head cache_chain;
746
747/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 * chicken and egg problem: delay the per-cpu array allocation
749 * until the general caches are up.
750 */
751static enum {
752 NONE,
Christoph Lametere498be72005-09-09 13:03:32 -0700753 PARTIAL_AC,
754 PARTIAL_L3,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 FULL
756} g_cpucache_up;
757
Mike Kravetz39d24e62006-05-15 09:44:13 -0700758/*
759 * used by boot code to determine if it can use slab based allocator
760 */
761int slab_is_available(void)
762{
763 return g_cpucache_up == FULL;
764}
765
David Howells52bad642006-11-22 14:54:01 +0000766static DEFINE_PER_CPU(struct delayed_work, reap_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
Pekka Enberg343e0d72006-02-01 03:05:50 -0800768static inline struct array_cache *cpu_cache_get(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769{
770 return cachep->array[smp_processor_id()];
771}
772
Andrew Mortona737b3e2006-03-22 00:08:11 -0800773static inline struct kmem_cache *__find_general_cachep(size_t size,
774 gfp_t gfpflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775{
776 struct cache_sizes *csizep = malloc_sizes;
777
778#if DEBUG
779 /* This happens if someone tries to call
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800780 * kmem_cache_create(), or __kmalloc(), before
781 * the generic caches are initialized.
782 */
Alok Katariac7e43c72005-09-14 12:17:53 -0700783 BUG_ON(malloc_sizes[INDEX_AC].cs_cachep == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784#endif
Christoph Lameter6cb8f912007-07-17 04:03:22 -0700785 if (!size)
786 return ZERO_SIZE_PTR;
787
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788 while (size > csizep->cs_size)
789 csizep++;
790
791 /*
Martin Hicks0abf40c2005-09-03 15:54:54 -0700792 * Really subtle: The last entry with cs->cs_size==ULONG_MAX
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793 * has cs_{dma,}cachep==NULL. Thus no special case
794 * for large kmalloc calls required.
795 */
Christoph Lameter4b51d662007-02-10 01:43:10 -0800796#ifdef CONFIG_ZONE_DMA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 if (unlikely(gfpflags & GFP_DMA))
798 return csizep->cs_dmacachep;
Christoph Lameter4b51d662007-02-10 01:43:10 -0800799#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 return csizep->cs_cachep;
801}
802
Adrian Bunkb2213852006-09-25 23:31:02 -0700803static struct kmem_cache *kmem_find_general_cachep(size_t size, gfp_t gfpflags)
Manfred Spraul97e2bde2005-05-01 08:58:38 -0700804{
805 return __find_general_cachep(size, gfpflags);
806}
Manfred Spraul97e2bde2005-05-01 08:58:38 -0700807
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800808static size_t slab_mgmt_size(size_t nr_objs, size_t align)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809{
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800810 return ALIGN(sizeof(struct slab)+nr_objs*sizeof(kmem_bufctl_t), align);
811}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
Andrew Mortona737b3e2006-03-22 00:08:11 -0800813/*
814 * Calculate the number of objects and left-over bytes for a given buffer size.
815 */
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800816static void cache_estimate(unsigned long gfporder, size_t buffer_size,
817 size_t align, int flags, size_t *left_over,
818 unsigned int *num)
819{
820 int nr_objs;
821 size_t mgmt_size;
822 size_t slab_size = PAGE_SIZE << gfporder;
823
824 /*
825 * The slab management structure can be either off the slab or
826 * on it. For the latter case, the memory allocated for a
827 * slab is used for:
828 *
829 * - The struct slab
830 * - One kmem_bufctl_t for each object
831 * - Padding to respect alignment of @align
832 * - @buffer_size bytes for each object
833 *
834 * If the slab management structure is off the slab, then the
835 * alignment will already be calculated into the size. Because
836 * the slabs are all pages aligned, the objects will be at the
837 * correct alignment when allocated.
838 */
839 if (flags & CFLGS_OFF_SLAB) {
840 mgmt_size = 0;
841 nr_objs = slab_size / buffer_size;
842
843 if (nr_objs > SLAB_LIMIT)
844 nr_objs = SLAB_LIMIT;
845 } else {
846 /*
847 * Ignore padding for the initial guess. The padding
848 * is at most @align-1 bytes, and @buffer_size is at
849 * least @align. In the worst case, this result will
850 * be one greater than the number of objects that fit
851 * into the memory allocation when taking the padding
852 * into account.
853 */
854 nr_objs = (slab_size - sizeof(struct slab)) /
855 (buffer_size + sizeof(kmem_bufctl_t));
856
857 /*
858 * This calculated number will be either the right
859 * amount, or one greater than what we want.
860 */
861 if (slab_mgmt_size(nr_objs, align) + nr_objs*buffer_size
862 > slab_size)
863 nr_objs--;
864
865 if (nr_objs > SLAB_LIMIT)
866 nr_objs = SLAB_LIMIT;
867
868 mgmt_size = slab_mgmt_size(nr_objs, align);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 }
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800870 *num = nr_objs;
871 *left_over = slab_size - nr_objs*buffer_size - mgmt_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872}
873
Harvey Harrisond40cee22008-04-30 00:55:07 -0700874#define slab_error(cachep, msg) __slab_error(__func__, cachep, msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
Andrew Mortona737b3e2006-03-22 00:08:11 -0800876static void __slab_error(const char *function, struct kmem_cache *cachep,
877 char *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878{
879 printk(KERN_ERR "slab error in %s(): cache `%s': %s\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800880 function, cachep->name, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 dump_stack();
882}
883
Paul Menage3395ee02006-12-06 20:32:16 -0800884/*
885 * By default on NUMA we use alien caches to stage the freeing of
886 * objects allocated from other nodes. This causes massive memory
887 * inefficiencies when using fake NUMA setup to split memory into a
888 * large number of small nodes, so it can be disabled on the command
889 * line
890 */
891
892static int use_alien_caches __read_mostly = 1;
Siddha, Suresh B1807a1a2007-08-22 14:01:49 -0700893static int numa_platform __read_mostly = 1;
Paul Menage3395ee02006-12-06 20:32:16 -0800894static int __init noaliencache_setup(char *s)
895{
896 use_alien_caches = 0;
897 return 1;
898}
899__setup("noaliencache", noaliencache_setup);
900
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800901#ifdef CONFIG_NUMA
902/*
903 * Special reaping functions for NUMA systems called from cache_reap().
904 * These take care of doing round robin flushing of alien caches (containing
905 * objects freed on different nodes from which they were allocated) and the
906 * flushing of remote pcps by calling drain_node_pages.
907 */
908static DEFINE_PER_CPU(unsigned long, reap_node);
909
910static void init_reap_node(int cpu)
911{
912 int node;
913
914 node = next_node(cpu_to_node(cpu), node_online_map);
915 if (node == MAX_NUMNODES)
Paul Jackson442295c2006-03-22 00:09:11 -0800916 node = first_node(node_online_map);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800917
Daniel Yeisley7f6b8872006-11-02 22:07:14 -0800918 per_cpu(reap_node, cpu) = node;
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800919}
920
921static void next_reap_node(void)
922{
923 int node = __get_cpu_var(reap_node);
924
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800925 node = next_node(node, node_online_map);
926 if (unlikely(node >= MAX_NUMNODES))
927 node = first_node(node_online_map);
928 __get_cpu_var(reap_node) = node;
929}
930
931#else
932#define init_reap_node(cpu) do { } while (0)
933#define next_reap_node(void) do { } while (0)
934#endif
935
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936/*
937 * Initiate the reap timer running on the target CPU. We run at around 1 to 2Hz
938 * via the workqueue/eventd.
939 * Add the CPU number into the expiration time to minimize the possibility of
940 * the CPUs getting into lockstep and contending for the global cache chain
941 * lock.
942 */
Adrian Bunk897e6792007-07-15 23:38:20 -0700943static void __cpuinit start_cpu_timer(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944{
David Howells52bad642006-11-22 14:54:01 +0000945 struct delayed_work *reap_work = &per_cpu(reap_work, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946
947 /*
948 * When this gets called from do_initcalls via cpucache_init(),
949 * init_workqueues() has already run, so keventd will be setup
950 * at that time.
951 */
David Howells52bad642006-11-22 14:54:01 +0000952 if (keventd_up() && reap_work->work.func == NULL) {
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800953 init_reap_node(cpu);
David Howells65f27f32006-11-22 14:55:48 +0000954 INIT_DELAYED_WORK(reap_work, cache_reap);
Arjan van de Ven2b284212006-12-10 02:21:28 -0800955 schedule_delayed_work_on(cpu, reap_work,
956 __round_jiffies_relative(HZ, cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 }
958}
959
Christoph Lametere498be72005-09-09 13:03:32 -0700960static struct array_cache *alloc_arraycache(int node, int entries,
Pekka Enberg83b519e2009-06-10 19:40:04 +0300961 int batchcount, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962{
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800963 int memsize = sizeof(void *) * entries + sizeof(struct array_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964 struct array_cache *nc = NULL;
965
Pekka Enberg83b519e2009-06-10 19:40:04 +0300966 nc = kmalloc_node(memsize, gfp, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 if (nc) {
968 nc->avail = 0;
969 nc->limit = entries;
970 nc->batchcount = batchcount;
971 nc->touched = 0;
Christoph Lametere498be72005-09-09 13:03:32 -0700972 spin_lock_init(&nc->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973 }
974 return nc;
975}
976
Christoph Lameter3ded1752006-03-25 03:06:44 -0800977/*
978 * Transfer objects in one arraycache to another.
979 * Locking must be handled by the caller.
980 *
981 * Return the number of entries transferred.
982 */
983static int transfer_objects(struct array_cache *to,
984 struct array_cache *from, unsigned int max)
985{
986 /* Figure out how many entries to transfer */
987 int nr = min(min(from->avail, max), to->limit - to->avail);
988
989 if (!nr)
990 return 0;
991
992 memcpy(to->entry + to->avail, from->entry + from->avail -nr,
993 sizeof(void *) *nr);
994
995 from->avail -= nr;
996 to->avail += nr;
997 to->touched = 1;
998 return nr;
999}
1000
Christoph Lameter765c4502006-09-27 01:50:08 -07001001#ifndef CONFIG_NUMA
1002
1003#define drain_alien_cache(cachep, alien) do { } while (0)
1004#define reap_alien(cachep, l3) do { } while (0)
1005
Pekka Enberg83b519e2009-06-10 19:40:04 +03001006static inline struct array_cache **alloc_alien_cache(int node, int limit, gfp_t gfp)
Christoph Lameter765c4502006-09-27 01:50:08 -07001007{
1008 return (struct array_cache **)BAD_ALIEN_MAGIC;
1009}
1010
1011static inline void free_alien_cache(struct array_cache **ac_ptr)
1012{
1013}
1014
1015static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
1016{
1017 return 0;
1018}
1019
1020static inline void *alternate_node_alloc(struct kmem_cache *cachep,
1021 gfp_t flags)
1022{
1023 return NULL;
1024}
1025
Christoph Hellwig8b98c162006-12-06 20:32:30 -08001026static inline void *____cache_alloc_node(struct kmem_cache *cachep,
Christoph Lameter765c4502006-09-27 01:50:08 -07001027 gfp_t flags, int nodeid)
1028{
1029 return NULL;
1030}
1031
1032#else /* CONFIG_NUMA */
1033
Christoph Hellwig8b98c162006-12-06 20:32:30 -08001034static void *____cache_alloc_node(struct kmem_cache *, gfp_t, int);
Paul Jacksonc61afb12006-03-24 03:16:08 -08001035static void *alternate_node_alloc(struct kmem_cache *, gfp_t);
Christoph Lameterdc85da12006-01-18 17:42:36 -08001036
Pekka Enberg83b519e2009-06-10 19:40:04 +03001037static struct array_cache **alloc_alien_cache(int node, int limit, gfp_t gfp)
Christoph Lametere498be72005-09-09 13:03:32 -07001038{
1039 struct array_cache **ac_ptr;
Christoph Lameter8ef82862007-02-20 13:57:52 -08001040 int memsize = sizeof(void *) * nr_node_ids;
Christoph Lametere498be72005-09-09 13:03:32 -07001041 int i;
1042
1043 if (limit > 1)
1044 limit = 12;
Pekka Enberg83b519e2009-06-10 19:40:04 +03001045 ac_ptr = kmalloc_node(memsize, gfp, node);
Christoph Lametere498be72005-09-09 13:03:32 -07001046 if (ac_ptr) {
1047 for_each_node(i) {
1048 if (i == node || !node_online(i)) {
1049 ac_ptr[i] = NULL;
1050 continue;
1051 }
Pekka Enberg83b519e2009-06-10 19:40:04 +03001052 ac_ptr[i] = alloc_arraycache(node, limit, 0xbaadf00d, gfp);
Christoph Lametere498be72005-09-09 13:03:32 -07001053 if (!ac_ptr[i]) {
Akinobu Mitacc550de2007-11-14 16:58:35 -08001054 for (i--; i >= 0; i--)
Christoph Lametere498be72005-09-09 13:03:32 -07001055 kfree(ac_ptr[i]);
1056 kfree(ac_ptr);
1057 return NULL;
1058 }
1059 }
1060 }
1061 return ac_ptr;
1062}
1063
Pekka Enberg5295a742006-02-01 03:05:48 -08001064static void free_alien_cache(struct array_cache **ac_ptr)
Christoph Lametere498be72005-09-09 13:03:32 -07001065{
1066 int i;
1067
1068 if (!ac_ptr)
1069 return;
Christoph Lametere498be72005-09-09 13:03:32 -07001070 for_each_node(i)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001071 kfree(ac_ptr[i]);
Christoph Lametere498be72005-09-09 13:03:32 -07001072 kfree(ac_ptr);
1073}
1074
Pekka Enberg343e0d72006-02-01 03:05:50 -08001075static void __drain_alien_cache(struct kmem_cache *cachep,
Pekka Enberg5295a742006-02-01 03:05:48 -08001076 struct array_cache *ac, int node)
Christoph Lametere498be72005-09-09 13:03:32 -07001077{
1078 struct kmem_list3 *rl3 = cachep->nodelists[node];
1079
1080 if (ac->avail) {
1081 spin_lock(&rl3->list_lock);
Christoph Lametere00946f2006-03-25 03:06:45 -08001082 /*
1083 * Stuff objects into the remote nodes shared array first.
1084 * That way we could avoid the overhead of putting the objects
1085 * into the free lists and getting them back later.
1086 */
shin, jacob693f7d32006-04-28 10:54:37 -05001087 if (rl3->shared)
1088 transfer_objects(rl3->shared, ac, ac->limit);
Christoph Lametere00946f2006-03-25 03:06:45 -08001089
Christoph Lameterff694162005-09-22 21:44:02 -07001090 free_block(cachep, ac->entry, ac->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -07001091 ac->avail = 0;
1092 spin_unlock(&rl3->list_lock);
1093 }
1094}
1095
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001096/*
1097 * Called from cache_reap() to regularly drain alien caches round robin.
1098 */
1099static void reap_alien(struct kmem_cache *cachep, struct kmem_list3 *l3)
1100{
1101 int node = __get_cpu_var(reap_node);
1102
1103 if (l3->alien) {
1104 struct array_cache *ac = l3->alien[node];
Christoph Lametere00946f2006-03-25 03:06:45 -08001105
1106 if (ac && ac->avail && spin_trylock_irq(&ac->lock)) {
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001107 __drain_alien_cache(cachep, ac, node);
1108 spin_unlock_irq(&ac->lock);
1109 }
1110 }
1111}
1112
Andrew Mortona737b3e2006-03-22 00:08:11 -08001113static void drain_alien_cache(struct kmem_cache *cachep,
1114 struct array_cache **alien)
Christoph Lametere498be72005-09-09 13:03:32 -07001115{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001116 int i = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07001117 struct array_cache *ac;
1118 unsigned long flags;
1119
1120 for_each_online_node(i) {
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001121 ac = alien[i];
Christoph Lametere498be72005-09-09 13:03:32 -07001122 if (ac) {
1123 spin_lock_irqsave(&ac->lock, flags);
1124 __drain_alien_cache(cachep, ac, i);
1125 spin_unlock_irqrestore(&ac->lock, flags);
1126 }
1127 }
1128}
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001129
Ingo Molnar873623d2006-07-13 14:44:38 +02001130static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001131{
1132 struct slab *slabp = virt_to_slab(objp);
1133 int nodeid = slabp->nodeid;
1134 struct kmem_list3 *l3;
1135 struct array_cache *alien = NULL;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001136 int node;
1137
1138 node = numa_node_id();
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001139
1140 /*
1141 * Make sure we are not freeing a object from another node to the array
1142 * cache on this cpu.
1143 */
Siddha, Suresh B62918a02007-05-02 19:27:18 +02001144 if (likely(slabp->nodeid == node))
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001145 return 0;
1146
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001147 l3 = cachep->nodelists[node];
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001148 STATS_INC_NODEFREES(cachep);
1149 if (l3->alien && l3->alien[nodeid]) {
1150 alien = l3->alien[nodeid];
Ingo Molnar873623d2006-07-13 14:44:38 +02001151 spin_lock(&alien->lock);
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001152 if (unlikely(alien->avail == alien->limit)) {
1153 STATS_INC_ACOVERFLOW(cachep);
1154 __drain_alien_cache(cachep, alien, nodeid);
1155 }
1156 alien->entry[alien->avail++] = objp;
1157 spin_unlock(&alien->lock);
1158 } else {
1159 spin_lock(&(cachep->nodelists[nodeid])->list_lock);
1160 free_block(cachep, &objp, 1, nodeid);
1161 spin_unlock(&(cachep->nodelists[nodeid])->list_lock);
1162 }
1163 return 1;
1164}
Christoph Lametere498be72005-09-09 13:03:32 -07001165#endif
1166
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001167static void __cpuinit cpuup_canceled(long cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001168{
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001169 struct kmem_cache *cachep;
1170 struct kmem_list3 *l3 = NULL;
1171 int node = cpu_to_node(cpu);
Rusty Russella70f7302009-03-13 14:49:46 +10301172 const struct cpumask *mask = cpumask_of_node(node);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001173
1174 list_for_each_entry(cachep, &cache_chain, next) {
1175 struct array_cache *nc;
1176 struct array_cache *shared;
1177 struct array_cache **alien;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001178
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001179 /* cpu is dead; no one can alloc from it. */
1180 nc = cachep->array[cpu];
1181 cachep->array[cpu] = NULL;
1182 l3 = cachep->nodelists[node];
1183
1184 if (!l3)
1185 goto free_array_cache;
1186
1187 spin_lock_irq(&l3->list_lock);
1188
1189 /* Free limit for this kmem_list3 */
1190 l3->free_limit -= cachep->batchcount;
1191 if (nc)
1192 free_block(cachep, nc->entry, nc->avail, node);
1193
Mike Travisc5f59f02008-04-04 18:11:10 -07001194 if (!cpus_empty(*mask)) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001195 spin_unlock_irq(&l3->list_lock);
1196 goto free_array_cache;
1197 }
1198
1199 shared = l3->shared;
1200 if (shared) {
1201 free_block(cachep, shared->entry,
1202 shared->avail, node);
1203 l3->shared = NULL;
1204 }
1205
1206 alien = l3->alien;
1207 l3->alien = NULL;
1208
1209 spin_unlock_irq(&l3->list_lock);
1210
1211 kfree(shared);
1212 if (alien) {
1213 drain_alien_cache(cachep, alien);
1214 free_alien_cache(alien);
1215 }
1216free_array_cache:
1217 kfree(nc);
1218 }
1219 /*
1220 * In the previous loop, all the objects were freed to
1221 * the respective cache's slabs, now we can go ahead and
1222 * shrink each nodelist to its limit.
1223 */
1224 list_for_each_entry(cachep, &cache_chain, next) {
1225 l3 = cachep->nodelists[node];
1226 if (!l3)
1227 continue;
1228 drain_freelist(cachep, l3, l3->free_objects);
1229 }
1230}
1231
1232static int __cpuinit cpuup_prepare(long cpu)
1233{
Pekka Enberg343e0d72006-02-01 03:05:50 -08001234 struct kmem_cache *cachep;
Christoph Lametere498be72005-09-09 13:03:32 -07001235 struct kmem_list3 *l3 = NULL;
1236 int node = cpu_to_node(cpu);
David Howellsea02e3d2007-07-19 01:49:09 -07001237 const int memsize = sizeof(struct kmem_list3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001238
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001239 /*
1240 * We need to do this right in the beginning since
1241 * alloc_arraycache's are going to use this list.
1242 * kmalloc_node allows us to add the slab to the right
1243 * kmem_list3 and not this cpu's kmem_list3
1244 */
1245
1246 list_for_each_entry(cachep, &cache_chain, next) {
1247 /*
1248 * Set up the size64 kmemlist for cpu before we can
1249 * begin anything. Make sure some other cpu on this
1250 * node has not already allocated this
1251 */
1252 if (!cachep->nodelists[node]) {
1253 l3 = kmalloc_node(memsize, GFP_KERNEL, node);
1254 if (!l3)
1255 goto bad;
1256 kmem_list3_init(l3);
1257 l3->next_reap = jiffies + REAPTIMEOUT_LIST3 +
1258 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
1259
1260 /*
1261 * The l3s don't come and go as CPUs come and
1262 * go. cache_chain_mutex is sufficient
1263 * protection here.
1264 */
1265 cachep->nodelists[node] = l3;
1266 }
1267
1268 spin_lock_irq(&cachep->nodelists[node]->list_lock);
1269 cachep->nodelists[node]->free_limit =
1270 (1 + nr_cpus_node(node)) *
1271 cachep->batchcount + cachep->num;
1272 spin_unlock_irq(&cachep->nodelists[node]->list_lock);
1273 }
1274
1275 /*
1276 * Now we can go ahead with allocating the shared arrays and
1277 * array caches
1278 */
1279 list_for_each_entry(cachep, &cache_chain, next) {
1280 struct array_cache *nc;
1281 struct array_cache *shared = NULL;
1282 struct array_cache **alien = NULL;
1283
1284 nc = alloc_arraycache(node, cachep->limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03001285 cachep->batchcount, GFP_KERNEL);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001286 if (!nc)
1287 goto bad;
1288 if (cachep->shared) {
1289 shared = alloc_arraycache(node,
1290 cachep->shared * cachep->batchcount,
Pekka Enberg83b519e2009-06-10 19:40:04 +03001291 0xbaadf00d, GFP_KERNEL);
Akinobu Mita12d00f62007-10-18 03:05:11 -07001292 if (!shared) {
1293 kfree(nc);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001294 goto bad;
Akinobu Mita12d00f62007-10-18 03:05:11 -07001295 }
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001296 }
1297 if (use_alien_caches) {
Pekka Enberg83b519e2009-06-10 19:40:04 +03001298 alien = alloc_alien_cache(node, cachep->limit, GFP_KERNEL);
Akinobu Mita12d00f62007-10-18 03:05:11 -07001299 if (!alien) {
1300 kfree(shared);
1301 kfree(nc);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001302 goto bad;
Akinobu Mita12d00f62007-10-18 03:05:11 -07001303 }
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001304 }
1305 cachep->array[cpu] = nc;
1306 l3 = cachep->nodelists[node];
1307 BUG_ON(!l3);
1308
1309 spin_lock_irq(&l3->list_lock);
1310 if (!l3->shared) {
1311 /*
1312 * We are serialised from CPU_DEAD or
1313 * CPU_UP_CANCELLED by the cpucontrol lock
1314 */
1315 l3->shared = shared;
1316 shared = NULL;
1317 }
1318#ifdef CONFIG_NUMA
1319 if (!l3->alien) {
1320 l3->alien = alien;
1321 alien = NULL;
1322 }
1323#endif
1324 spin_unlock_irq(&l3->list_lock);
1325 kfree(shared);
1326 free_alien_cache(alien);
1327 }
1328 return 0;
1329bad:
Akinobu Mita12d00f62007-10-18 03:05:11 -07001330 cpuup_canceled(cpu);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001331 return -ENOMEM;
1332}
1333
1334static int __cpuinit cpuup_callback(struct notifier_block *nfb,
1335 unsigned long action, void *hcpu)
1336{
1337 long cpu = (long)hcpu;
1338 int err = 0;
1339
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340 switch (action) {
Heiko Carstens38c3bd92007-05-09 02:34:05 -07001341 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001342 case CPU_UP_PREPARE_FROZEN:
Gautham R Shenoy95402b32008-01-25 21:08:02 +01001343 mutex_lock(&cache_chain_mutex);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001344 err = cpuup_prepare(cpu);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01001345 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001346 break;
1347 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001348 case CPU_ONLINE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 start_cpu_timer(cpu);
1350 break;
1351#ifdef CONFIG_HOTPLUG_CPU
Christoph Lameter5830c592007-05-09 02:34:22 -07001352 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001353 case CPU_DOWN_PREPARE_FROZEN:
Christoph Lameter5830c592007-05-09 02:34:22 -07001354 /*
1355 * Shutdown cache reaper. Note that the cache_chain_mutex is
1356 * held so that if cache_reap() is invoked it cannot do
1357 * anything expensive but will only modify reap_work
1358 * and reschedule the timer.
1359 */
1360 cancel_rearming_delayed_work(&per_cpu(reap_work, cpu));
1361 /* Now the cache_reaper is guaranteed to be not running. */
1362 per_cpu(reap_work, cpu).work.func = NULL;
1363 break;
1364 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001365 case CPU_DOWN_FAILED_FROZEN:
Christoph Lameter5830c592007-05-09 02:34:22 -07001366 start_cpu_timer(cpu);
1367 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001369 case CPU_DEAD_FROZEN:
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001370 /*
1371 * Even if all the cpus of a node are down, we don't free the
1372 * kmem_list3 of any cache. This to avoid a race between
1373 * cpu_down, and a kmalloc allocation from another cpu for
1374 * memory from the node of the cpu going down. The list3
1375 * structure is usually allocated from kmem_cache_create() and
1376 * gets destroyed at kmem_cache_destroy().
1377 */
Simon Arlott183ff222007-10-20 01:27:18 +02001378 /* fall through */
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08001379#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001381 case CPU_UP_CANCELED_FROZEN:
Gautham R Shenoy95402b32008-01-25 21:08:02 +01001382 mutex_lock(&cache_chain_mutex);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001383 cpuup_canceled(cpu);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001384 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 }
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001387 return err ? NOTIFY_BAD : NOTIFY_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388}
1389
Chandra Seetharaman74b85f32006-06-27 02:54:09 -07001390static struct notifier_block __cpuinitdata cpucache_notifier = {
1391 &cpuup_callback, NULL, 0
1392};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393
Christoph Lametere498be72005-09-09 13:03:32 -07001394/*
1395 * swap the static kmem_list3 with kmalloced memory
1396 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08001397static void init_list(struct kmem_cache *cachep, struct kmem_list3 *list,
1398 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07001399{
1400 struct kmem_list3 *ptr;
1401
Pekka Enberg83b519e2009-06-10 19:40:04 +03001402 ptr = kmalloc_node(sizeof(struct kmem_list3), GFP_NOWAIT, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07001403 BUG_ON(!ptr);
1404
Christoph Lametere498be72005-09-09 13:03:32 -07001405 memcpy(ptr, list, sizeof(struct kmem_list3));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001406 /*
1407 * Do not assume that spinlocks can be initialized via memcpy:
1408 */
1409 spin_lock_init(&ptr->list_lock);
1410
Christoph Lametere498be72005-09-09 13:03:32 -07001411 MAKE_ALL_LISTS(cachep, ptr, nodeid);
1412 cachep->nodelists[nodeid] = ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001413}
1414
Andrew Mortona737b3e2006-03-22 00:08:11 -08001415/*
Pekka Enberg556a1692008-01-25 08:20:51 +02001416 * For setting up all the kmem_list3s for cache whose buffer_size is same as
1417 * size of kmem_list3.
1418 */
1419static void __init set_up_list3s(struct kmem_cache *cachep, int index)
1420{
1421 int node;
1422
1423 for_each_online_node(node) {
1424 cachep->nodelists[node] = &initkmem_list3[index + node];
1425 cachep->nodelists[node]->next_reap = jiffies +
1426 REAPTIMEOUT_LIST3 +
1427 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
1428 }
1429}
1430
1431/*
Andrew Mortona737b3e2006-03-22 00:08:11 -08001432 * Initialisation. Called after the page allocator have been initialised and
1433 * before smp_init().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434 */
1435void __init kmem_cache_init(void)
1436{
1437 size_t left_over;
1438 struct cache_sizes *sizes;
1439 struct cache_names *names;
Christoph Lametere498be72005-09-09 13:03:32 -07001440 int i;
Jack Steiner07ed76b2006-03-07 21:55:46 -08001441 int order;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001442 int node;
Christoph Lametere498be72005-09-09 13:03:32 -07001443
Siddha, Suresh B1807a1a2007-08-22 14:01:49 -07001444 if (num_possible_nodes() == 1) {
Siddha, Suresh B62918a02007-05-02 19:27:18 +02001445 use_alien_caches = 0;
Siddha, Suresh B1807a1a2007-08-22 14:01:49 -07001446 numa_platform = 0;
1447 }
Siddha, Suresh B62918a02007-05-02 19:27:18 +02001448
Christoph Lametere498be72005-09-09 13:03:32 -07001449 for (i = 0; i < NUM_INIT_LISTS; i++) {
1450 kmem_list3_init(&initkmem_list3[i]);
1451 if (i < MAX_NUMNODES)
1452 cache_cache.nodelists[i] = NULL;
1453 }
Pekka Enberg556a1692008-01-25 08:20:51 +02001454 set_up_list3s(&cache_cache, CACHE_CACHE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001455
1456 /*
1457 * Fragmentation resistance on low memory - only use bigger
1458 * page orders on machines with more than 32MB of memory.
1459 */
1460 if (num_physpages > (32 << 20) >> PAGE_SHIFT)
1461 slab_break_gfp_order = BREAK_GFP_ORDER_HI;
1462
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463 /* Bootstrap is tricky, because several objects are allocated
1464 * from caches that do not exist yet:
Andrew Mortona737b3e2006-03-22 00:08:11 -08001465 * 1) initialize the cache_cache cache: it contains the struct
1466 * kmem_cache structures of all caches, except cache_cache itself:
1467 * cache_cache is statically allocated.
Christoph Lametere498be72005-09-09 13:03:32 -07001468 * Initially an __init data area is used for the head array and the
1469 * kmem_list3 structures, it's replaced with a kmalloc allocated
1470 * array at the end of the bootstrap.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471 * 2) Create the first kmalloc cache.
Pekka Enberg343e0d72006-02-01 03:05:50 -08001472 * The struct kmem_cache for the new cache is allocated normally.
Christoph Lametere498be72005-09-09 13:03:32 -07001473 * An __init data area is used for the head array.
1474 * 3) Create the remaining kmalloc caches, with minimally sized
1475 * head arrays.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001476 * 4) Replace the __init data head arrays for cache_cache and the first
1477 * kmalloc cache with kmalloc allocated arrays.
Christoph Lametere498be72005-09-09 13:03:32 -07001478 * 5) Replace the __init data for kmem_list3 for cache_cache and
1479 * the other cache's with kmalloc allocated memory.
1480 * 6) Resize the head arrays of the kmalloc caches to their final sizes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 */
1482
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001483 node = numa_node_id();
1484
Linus Torvalds1da177e2005-04-16 15:20:36 -07001485 /* 1) create the cache_cache */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 INIT_LIST_HEAD(&cache_chain);
1487 list_add(&cache_cache.next, &cache_chain);
1488 cache_cache.colour_off = cache_line_size();
1489 cache_cache.array[smp_processor_id()] = &initarray_cache.cache;
Daniel Yeisleyec1f5ee2008-03-25 23:59:08 +02001490 cache_cache.nodelists[node] = &initkmem_list3[CACHE_CACHE + node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491
Eric Dumazet8da34302007-05-06 14:49:29 -07001492 /*
1493 * struct kmem_cache size depends on nr_node_ids, which
1494 * can be less than MAX_NUMNODES.
1495 */
1496 cache_cache.buffer_size = offsetof(struct kmem_cache, nodelists) +
1497 nr_node_ids * sizeof(struct kmem_list3 *);
1498#if DEBUG
1499 cache_cache.obj_size = cache_cache.buffer_size;
1500#endif
Andrew Mortona737b3e2006-03-22 00:08:11 -08001501 cache_cache.buffer_size = ALIGN(cache_cache.buffer_size,
1502 cache_line_size());
Eric Dumazet6a2d7a92006-12-13 00:34:27 -08001503 cache_cache.reciprocal_buffer_size =
1504 reciprocal_value(cache_cache.buffer_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505
Jack Steiner07ed76b2006-03-07 21:55:46 -08001506 for (order = 0; order < MAX_ORDER; order++) {
1507 cache_estimate(order, cache_cache.buffer_size,
1508 cache_line_size(), 0, &left_over, &cache_cache.num);
1509 if (cache_cache.num)
1510 break;
1511 }
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02001512 BUG_ON(!cache_cache.num);
Jack Steiner07ed76b2006-03-07 21:55:46 -08001513 cache_cache.gfporder = order;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001514 cache_cache.colour = left_over / cache_cache.colour_off;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001515 cache_cache.slab_size = ALIGN(cache_cache.num * sizeof(kmem_bufctl_t) +
1516 sizeof(struct slab), cache_line_size());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001517
1518 /* 2+3) create the kmalloc caches */
1519 sizes = malloc_sizes;
1520 names = cache_names;
1521
Andrew Mortona737b3e2006-03-22 00:08:11 -08001522 /*
1523 * Initialize the caches that provide memory for the array cache and the
1524 * kmem_list3 structures first. Without this, further allocations will
1525 * bug.
Christoph Lametere498be72005-09-09 13:03:32 -07001526 */
1527
1528 sizes[INDEX_AC].cs_cachep = kmem_cache_create(names[INDEX_AC].name,
Andrew Mortona737b3e2006-03-22 00:08:11 -08001529 sizes[INDEX_AC].cs_size,
1530 ARCH_KMALLOC_MINALIGN,
1531 ARCH_KMALLOC_FLAGS|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09001532 NULL);
Christoph Lametere498be72005-09-09 13:03:32 -07001533
Andrew Mortona737b3e2006-03-22 00:08:11 -08001534 if (INDEX_AC != INDEX_L3) {
Christoph Lametere498be72005-09-09 13:03:32 -07001535 sizes[INDEX_L3].cs_cachep =
Andrew Mortona737b3e2006-03-22 00:08:11 -08001536 kmem_cache_create(names[INDEX_L3].name,
1537 sizes[INDEX_L3].cs_size,
1538 ARCH_KMALLOC_MINALIGN,
1539 ARCH_KMALLOC_FLAGS|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09001540 NULL);
Andrew Mortona737b3e2006-03-22 00:08:11 -08001541 }
Christoph Lametere498be72005-09-09 13:03:32 -07001542
Ingo Molnare0a42722006-06-23 02:03:46 -07001543 slab_early_init = 0;
1544
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 while (sizes->cs_size != ULONG_MAX) {
Christoph Lametere498be72005-09-09 13:03:32 -07001546 /*
1547 * For performance, all the general caches are L1 aligned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 * This should be particularly beneficial on SMP boxes, as it
1549 * eliminates "false sharing".
1550 * Note for systems short on memory removing the alignment will
Christoph Lametere498be72005-09-09 13:03:32 -07001551 * allow tighter packing of the smaller caches.
1552 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08001553 if (!sizes->cs_cachep) {
Christoph Lametere498be72005-09-09 13:03:32 -07001554 sizes->cs_cachep = kmem_cache_create(names->name,
Andrew Mortona737b3e2006-03-22 00:08:11 -08001555 sizes->cs_size,
1556 ARCH_KMALLOC_MINALIGN,
1557 ARCH_KMALLOC_FLAGS|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09001558 NULL);
Andrew Mortona737b3e2006-03-22 00:08:11 -08001559 }
Christoph Lameter4b51d662007-02-10 01:43:10 -08001560#ifdef CONFIG_ZONE_DMA
1561 sizes->cs_dmacachep = kmem_cache_create(
1562 names->name_dma,
Andrew Mortona737b3e2006-03-22 00:08:11 -08001563 sizes->cs_size,
1564 ARCH_KMALLOC_MINALIGN,
1565 ARCH_KMALLOC_FLAGS|SLAB_CACHE_DMA|
1566 SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09001567 NULL);
Christoph Lameter4b51d662007-02-10 01:43:10 -08001568#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001569 sizes++;
1570 names++;
1571 }
1572 /* 4) Replace the bootstrap head arrays */
1573 {
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001574 struct array_cache *ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001575
Pekka Enberg83b519e2009-06-10 19:40:04 +03001576 ptr = kmalloc(sizeof(struct arraycache_init), GFP_NOWAIT);
Christoph Lametere498be72005-09-09 13:03:32 -07001577
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001578 BUG_ON(cpu_cache_get(&cache_cache) != &initarray_cache.cache);
1579 memcpy(ptr, cpu_cache_get(&cache_cache),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001580 sizeof(struct arraycache_init));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001581 /*
1582 * Do not assume that spinlocks can be initialized via memcpy:
1583 */
1584 spin_lock_init(&ptr->lock);
1585
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 cache_cache.array[smp_processor_id()] = ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001587
Pekka Enberg83b519e2009-06-10 19:40:04 +03001588 ptr = kmalloc(sizeof(struct arraycache_init), GFP_NOWAIT);
Christoph Lametere498be72005-09-09 13:03:32 -07001589
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001590 BUG_ON(cpu_cache_get(malloc_sizes[INDEX_AC].cs_cachep)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001591 != &initarray_generic.cache);
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001592 memcpy(ptr, cpu_cache_get(malloc_sizes[INDEX_AC].cs_cachep),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001593 sizeof(struct arraycache_init));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001594 /*
1595 * Do not assume that spinlocks can be initialized via memcpy:
1596 */
1597 spin_lock_init(&ptr->lock);
1598
Christoph Lametere498be72005-09-09 13:03:32 -07001599 malloc_sizes[INDEX_AC].cs_cachep->array[smp_processor_id()] =
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001600 ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 }
Christoph Lametere498be72005-09-09 13:03:32 -07001602 /* 5) Replace the bootstrap kmem_list3's */
1603 {
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001604 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605
Mel Gorman9c09a952008-01-24 05:49:54 -08001606 for_each_online_node(nid) {
Daniel Yeisleyec1f5ee2008-03-25 23:59:08 +02001607 init_list(&cache_cache, &initkmem_list3[CACHE_CACHE + nid], nid);
Pekka Enberg556a1692008-01-25 08:20:51 +02001608
Christoph Lametere498be72005-09-09 13:03:32 -07001609 init_list(malloc_sizes[INDEX_AC].cs_cachep,
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001610 &initkmem_list3[SIZE_AC + nid], nid);
Christoph Lametere498be72005-09-09 13:03:32 -07001611
1612 if (INDEX_AC != INDEX_L3) {
1613 init_list(malloc_sizes[INDEX_L3].cs_cachep,
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001614 &initkmem_list3[SIZE_L3 + nid], nid);
Christoph Lametere498be72005-09-09 13:03:32 -07001615 }
1616 }
1617 }
1618
1619 /* 6) resize the head arrays to their final sizes */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 {
Pekka Enberg343e0d72006-02-01 03:05:50 -08001621 struct kmem_cache *cachep;
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001622 mutex_lock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 list_for_each_entry(cachep, &cache_chain, next)
Pekka Enberg83b519e2009-06-10 19:40:04 +03001624 if (enable_cpucache(cachep, GFP_NOWAIT))
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07001625 BUG();
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001626 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 }
1628
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -07001629 /* Annotate slab for lockdep -- annotate the malloc caches */
1630 init_lock_keys();
1631
1632
Linus Torvalds1da177e2005-04-16 15:20:36 -07001633 /* Done! */
1634 g_cpucache_up = FULL;
1635
Andrew Mortona737b3e2006-03-22 00:08:11 -08001636 /*
1637 * Register a cpu startup notifier callback that initializes
1638 * cpu_cache_get for all new cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 */
1640 register_cpu_notifier(&cpucache_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641
Andrew Mortona737b3e2006-03-22 00:08:11 -08001642 /*
1643 * The reap timers are started later, with a module init call: That part
1644 * of the kernel is not yet operational.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 */
1646}
1647
1648static int __init cpucache_init(void)
1649{
1650 int cpu;
1651
Andrew Mortona737b3e2006-03-22 00:08:11 -08001652 /*
1653 * Register the timers that return unneeded pages to the page allocator
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 */
Christoph Lametere498be72005-09-09 13:03:32 -07001655 for_each_online_cpu(cpu)
Andrew Mortona737b3e2006-03-22 00:08:11 -08001656 start_cpu_timer(cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657 return 0;
1658}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001659__initcall(cpucache_init);
1660
1661/*
1662 * Interface to system's page allocator. No need to hold the cache-lock.
1663 *
1664 * If we requested dmaable memory, we will get it. Even if we
1665 * did not request dmaable memory, we might get it, but that
1666 * would be relatively rare and ignorable.
1667 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001668static void *kmem_getpages(struct kmem_cache *cachep, gfp_t flags, int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669{
1670 struct page *page;
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001671 int nr_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 int i;
1673
Luke Yangd6fef9d2006-04-10 22:52:56 -07001674#ifndef CONFIG_MMU
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001675 /*
1676 * Nommu uses slab's for process anonymous memory allocations, and thus
1677 * requires __GFP_COMP to properly refcount higher order allocations
Luke Yangd6fef9d2006-04-10 22:52:56 -07001678 */
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001679 flags |= __GFP_COMP;
Luke Yangd6fef9d2006-04-10 22:52:56 -07001680#endif
Christoph Lameter765c4502006-09-27 01:50:08 -07001681
Christoph Lameter3c517a62006-12-06 20:33:29 -08001682 flags |= cachep->gfpflags;
Mel Gormane12ba742007-10-16 01:25:52 -07001683 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1684 flags |= __GFP_RECLAIMABLE;
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001685
1686 page = alloc_pages_node(nodeid, flags, cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001687 if (!page)
1688 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001690 nr_pages = (1 << cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
Christoph Lameter972d1a72006-09-25 23:31:51 -07001692 add_zone_page_state(page_zone(page),
1693 NR_SLAB_RECLAIMABLE, nr_pages);
1694 else
1695 add_zone_page_state(page_zone(page),
1696 NR_SLAB_UNRECLAIMABLE, nr_pages);
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001697 for (i = 0; i < nr_pages; i++)
1698 __SetPageSlab(page + i);
1699 return page_address(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001700}
1701
1702/*
1703 * Interface to system's page release.
1704 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001705static void kmem_freepages(struct kmem_cache *cachep, void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001706{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001707 unsigned long i = (1 << cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001708 struct page *page = virt_to_page(addr);
1709 const unsigned long nr_freed = i;
1710
Christoph Lameter972d1a72006-09-25 23:31:51 -07001711 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1712 sub_zone_page_state(page_zone(page),
1713 NR_SLAB_RECLAIMABLE, nr_freed);
1714 else
1715 sub_zone_page_state(page_zone(page),
1716 NR_SLAB_UNRECLAIMABLE, nr_freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717 while (i--) {
Nick Pigginf205b2f2006-03-22 00:08:02 -08001718 BUG_ON(!PageSlab(page));
1719 __ClearPageSlab(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 page++;
1721 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 if (current->reclaim_state)
1723 current->reclaim_state->reclaimed_slab += nr_freed;
1724 free_pages((unsigned long)addr, cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725}
1726
1727static void kmem_rcu_free(struct rcu_head *head)
1728{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001729 struct slab_rcu *slab_rcu = (struct slab_rcu *)head;
Pekka Enberg343e0d72006-02-01 03:05:50 -08001730 struct kmem_cache *cachep = slab_rcu->cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001731
1732 kmem_freepages(cachep, slab_rcu->addr);
1733 if (OFF_SLAB(cachep))
1734 kmem_cache_free(cachep->slabp_cache, slab_rcu);
1735}
1736
1737#if DEBUG
1738
1739#ifdef CONFIG_DEBUG_PAGEALLOC
Pekka Enberg343e0d72006-02-01 03:05:50 -08001740static void store_stackinfo(struct kmem_cache *cachep, unsigned long *addr,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001741 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742{
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001743 int size = obj_size(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001745 addr = (unsigned long *)&((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001746
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001747 if (size < 5 * sizeof(unsigned long))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001748 return;
1749
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001750 *addr++ = 0x12345678;
1751 *addr++ = caller;
1752 *addr++ = smp_processor_id();
1753 size -= 3 * sizeof(unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 {
1755 unsigned long *sptr = &caller;
1756 unsigned long svalue;
1757
1758 while (!kstack_end(sptr)) {
1759 svalue = *sptr++;
1760 if (kernel_text_address(svalue)) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001761 *addr++ = svalue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 size -= sizeof(unsigned long);
1763 if (size <= sizeof(unsigned long))
1764 break;
1765 }
1766 }
1767
1768 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001769 *addr++ = 0x87654321;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001770}
1771#endif
1772
Pekka Enberg343e0d72006-02-01 03:05:50 -08001773static void poison_obj(struct kmem_cache *cachep, void *addr, unsigned char val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774{
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001775 int size = obj_size(cachep);
1776 addr = &((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001777
1778 memset(addr, val, size);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001779 *(unsigned char *)(addr + size - 1) = POISON_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001780}
1781
1782static void dump_line(char *data, int offset, int limit)
1783{
1784 int i;
Dave Jonesaa83aa42006-09-29 01:59:51 -07001785 unsigned char error = 0;
1786 int bad_count = 0;
1787
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 printk(KERN_ERR "%03x:", offset);
Dave Jonesaa83aa42006-09-29 01:59:51 -07001789 for (i = 0; i < limit; i++) {
1790 if (data[offset + i] != POISON_FREE) {
1791 error = data[offset + i];
1792 bad_count++;
1793 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001794 printk(" %02x", (unsigned char)data[offset + i]);
Dave Jonesaa83aa42006-09-29 01:59:51 -07001795 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001796 printk("\n");
Dave Jonesaa83aa42006-09-29 01:59:51 -07001797
1798 if (bad_count == 1) {
1799 error ^= POISON_FREE;
1800 if (!(error & (error - 1))) {
1801 printk(KERN_ERR "Single bit error detected. Probably "
1802 "bad RAM.\n");
1803#ifdef CONFIG_X86
1804 printk(KERN_ERR "Run memtest86+ or a similar memory "
1805 "test tool.\n");
1806#else
1807 printk(KERN_ERR "Run a memory test tool.\n");
1808#endif
1809 }
1810 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811}
1812#endif
1813
1814#if DEBUG
1815
Pekka Enberg343e0d72006-02-01 03:05:50 -08001816static void print_objinfo(struct kmem_cache *cachep, void *objp, int lines)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817{
1818 int i, size;
1819 char *realobj;
1820
1821 if (cachep->flags & SLAB_RED_ZONE) {
David Woodhouseb46b8f12007-05-08 00:22:59 -07001822 printk(KERN_ERR "Redzone: 0x%llx/0x%llx.\n",
Andrew Mortona737b3e2006-03-22 00:08:11 -08001823 *dbg_redzone1(cachep, objp),
1824 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 }
1826
1827 if (cachep->flags & SLAB_STORE_USER) {
1828 printk(KERN_ERR "Last user: [<%p>]",
Andrew Mortona737b3e2006-03-22 00:08:11 -08001829 *dbg_userword(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001830 print_symbol("(%s)",
Andrew Mortona737b3e2006-03-22 00:08:11 -08001831 (unsigned long)*dbg_userword(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 printk("\n");
1833 }
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001834 realobj = (char *)objp + obj_offset(cachep);
1835 size = obj_size(cachep);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001836 for (i = 0; i < size && lines; i += 16, lines--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001837 int limit;
1838 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001839 if (i + limit > size)
1840 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001841 dump_line(realobj, i, limit);
1842 }
1843}
1844
Pekka Enberg343e0d72006-02-01 03:05:50 -08001845static void check_poison_obj(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846{
1847 char *realobj;
1848 int size, i;
1849 int lines = 0;
1850
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001851 realobj = (char *)objp + obj_offset(cachep);
1852 size = obj_size(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001854 for (i = 0; i < size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855 char exp = POISON_FREE;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001856 if (i == size - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001857 exp = POISON_END;
1858 if (realobj[i] != exp) {
1859 int limit;
1860 /* Mismatch ! */
1861 /* Print header */
1862 if (lines == 0) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001863 printk(KERN_ERR
David Howellse94a40c2007-04-02 23:46:28 +01001864 "Slab corruption: %s start=%p, len=%d\n",
1865 cachep->name, realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 print_objinfo(cachep, objp, 0);
1867 }
1868 /* Hexdump the affected line */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001869 i = (i / 16) * 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001870 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001871 if (i + limit > size)
1872 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873 dump_line(realobj, i, limit);
1874 i += 16;
1875 lines++;
1876 /* Limit to 5 lines */
1877 if (lines > 5)
1878 break;
1879 }
1880 }
1881 if (lines != 0) {
1882 /* Print some data about the neighboring objects, if they
1883 * exist:
1884 */
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08001885 struct slab *slabp = virt_to_slab(objp);
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001886 unsigned int objnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001888 objnr = obj_to_index(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889 if (objnr) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001890 objp = index_to_obj(cachep, slabp, objnr - 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001891 realobj = (char *)objp + obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 printk(KERN_ERR "Prev obj: start=%p, len=%d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001893 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894 print_objinfo(cachep, objp, 2);
1895 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001896 if (objnr + 1 < cachep->num) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001897 objp = index_to_obj(cachep, slabp, objnr + 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001898 realobj = (char *)objp + obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899 printk(KERN_ERR "Next obj: start=%p, len=%d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001900 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 print_objinfo(cachep, objp, 2);
1902 }
1903 }
1904}
1905#endif
1906
Linus Torvalds1da177e2005-04-16 15:20:36 -07001907#if DEBUG
Rabin Vincente79aec22008-07-04 00:40:32 +05301908static void slab_destroy_debugcheck(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001909{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910 int i;
1911 for (i = 0; i < cachep->num; i++) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08001912 void *objp = index_to_obj(cachep, slabp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913
1914 if (cachep->flags & SLAB_POISON) {
1915#ifdef CONFIG_DEBUG_PAGEALLOC
Andrew Mortona737b3e2006-03-22 00:08:11 -08001916 if (cachep->buffer_size % PAGE_SIZE == 0 &&
1917 OFF_SLAB(cachep))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001918 kernel_map_pages(virt_to_page(objp),
Andrew Mortona737b3e2006-03-22 00:08:11 -08001919 cachep->buffer_size / PAGE_SIZE, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 else
1921 check_poison_obj(cachep, objp);
1922#else
1923 check_poison_obj(cachep, objp);
1924#endif
1925 }
1926 if (cachep->flags & SLAB_RED_ZONE) {
1927 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
1928 slab_error(cachep, "start of a freed object "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001929 "was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
1931 slab_error(cachep, "end of a freed object "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001932 "was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001933 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 }
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001935}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936#else
Rabin Vincente79aec22008-07-04 00:40:32 +05301937static void slab_destroy_debugcheck(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001938{
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001939}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940#endif
1941
Randy Dunlap911851e2006-03-22 00:08:14 -08001942/**
1943 * slab_destroy - destroy and release all objects in a slab
1944 * @cachep: cache pointer being destroyed
1945 * @slabp: slab pointer being destroyed
1946 *
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001947 * Destroy all the objs in a slab, and release the mem back to the system.
Andrew Mortona737b3e2006-03-22 00:08:11 -08001948 * Before calling the slab must have been unlinked from the cache. The
1949 * cache-lock is not held/needed.
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001950 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001951static void slab_destroy(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08001952{
1953 void *addr = slabp->s_mem - slabp->colouroff;
1954
Rabin Vincente79aec22008-07-04 00:40:32 +05301955 slab_destroy_debugcheck(cachep, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 if (unlikely(cachep->flags & SLAB_DESTROY_BY_RCU)) {
1957 struct slab_rcu *slab_rcu;
1958
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001959 slab_rcu = (struct slab_rcu *)slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 slab_rcu->cachep = cachep;
1961 slab_rcu->addr = addr;
1962 call_rcu(&slab_rcu->head, kmem_rcu_free);
1963 } else {
1964 kmem_freepages(cachep, addr);
Ingo Molnar873623d2006-07-13 14:44:38 +02001965 if (OFF_SLAB(cachep))
1966 kmem_cache_free(cachep->slabp_cache, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967 }
1968}
1969
Christoph Lameter117f6eb2006-09-25 23:31:37 -07001970static void __kmem_cache_destroy(struct kmem_cache *cachep)
1971{
1972 int i;
1973 struct kmem_list3 *l3;
1974
1975 for_each_online_cpu(i)
1976 kfree(cachep->array[i]);
1977
1978 /* NUMA: free the list3 structures */
1979 for_each_online_node(i) {
1980 l3 = cachep->nodelists[i];
1981 if (l3) {
1982 kfree(l3->shared);
1983 free_alien_cache(l3->alien);
1984 kfree(l3);
1985 }
1986 }
1987 kmem_cache_free(&cache_cache, cachep);
1988}
1989
1990
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991/**
Randy.Dunlapa70773d2006-02-01 03:05:52 -08001992 * calculate_slab_order - calculate size (page order) of slabs
1993 * @cachep: pointer to the cache that is being created
1994 * @size: size of objects to be created in this cache.
1995 * @align: required alignment for the objects.
1996 * @flags: slab allocation flags
1997 *
1998 * Also calculates the number of objects per slab.
Pekka Enberg4d268eb2006-01-08 01:00:36 -08001999 *
2000 * This could be made much more intelligent. For now, try to avoid using
2001 * high order pages for slabs. When the gfp() functions are more friendly
2002 * towards high-order requests, this should be changed.
2003 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002004static size_t calculate_slab_order(struct kmem_cache *cachep,
Randy Dunlapee13d782006-02-01 03:05:53 -08002005 size_t size, size_t align, unsigned long flags)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002006{
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02002007 unsigned long offslab_limit;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002008 size_t left_over = 0;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002009 int gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002010
Christoph Lameter0aa817f2007-05-16 22:11:01 -07002011 for (gfporder = 0; gfporder <= KMALLOC_MAX_ORDER; gfporder++) {
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002012 unsigned int num;
2013 size_t remainder;
2014
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002015 cache_estimate(gfporder, size, align, flags, &remainder, &num);
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002016 if (!num)
2017 continue;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002018
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02002019 if (flags & CFLGS_OFF_SLAB) {
2020 /*
2021 * Max number of objs-per-slab for caches which
2022 * use off-slab slabs. Needed to avoid a possible
2023 * looping condition in cache_grow().
2024 */
2025 offslab_limit = size - sizeof(struct slab);
2026 offslab_limit /= sizeof(kmem_bufctl_t);
2027
2028 if (num > offslab_limit)
2029 break;
2030 }
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002031
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002032 /* Found something acceptable - save it away */
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002033 cachep->num = num;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002034 cachep->gfporder = gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002035 left_over = remainder;
2036
2037 /*
Linus Torvaldsf78bb8a2006-03-08 10:33:05 -08002038 * A VFS-reclaimable slab tends to have most allocations
2039 * as GFP_NOFS and we really don't want to have to be allocating
2040 * higher-order pages when we are unable to shrink dcache.
2041 */
2042 if (flags & SLAB_RECLAIM_ACCOUNT)
2043 break;
2044
2045 /*
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002046 * Large number of objects is good, but very large slabs are
2047 * currently bad for the gfp()s.
2048 */
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002049 if (gfporder >= slab_break_gfp_order)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002050 break;
2051
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002052 /*
2053 * Acceptable internal fragmentation?
2054 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002055 if (left_over * 8 <= (PAGE_SIZE << gfporder))
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002056 break;
2057 }
2058 return left_over;
2059}
2060
Pekka Enberg83b519e2009-06-10 19:40:04 +03002061static int __init_refok setup_cpu_cache(struct kmem_cache *cachep, gfp_t gfp)
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002062{
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002063 if (g_cpucache_up == FULL)
Pekka Enberg83b519e2009-06-10 19:40:04 +03002064 return enable_cpucache(cachep, gfp);
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002065
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002066 if (g_cpucache_up == NONE) {
2067 /*
2068 * Note: the first kmem_cache_create must create the cache
2069 * that's used by kmalloc(24), otherwise the creation of
2070 * further caches will BUG().
2071 */
2072 cachep->array[smp_processor_id()] = &initarray_generic.cache;
2073
2074 /*
2075 * If the cache that's used by kmalloc(sizeof(kmem_list3)) is
2076 * the first cache, then we need to set up all its list3s,
2077 * otherwise the creation of further caches will BUG().
2078 */
2079 set_up_list3s(cachep, SIZE_AC);
2080 if (INDEX_AC == INDEX_L3)
2081 g_cpucache_up = PARTIAL_L3;
2082 else
2083 g_cpucache_up = PARTIAL_AC;
2084 } else {
2085 cachep->array[smp_processor_id()] =
Pekka Enberg83b519e2009-06-10 19:40:04 +03002086 kmalloc(sizeof(struct arraycache_init), gfp);
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002087
2088 if (g_cpucache_up == PARTIAL_AC) {
2089 set_up_list3s(cachep, SIZE_L3);
2090 g_cpucache_up = PARTIAL_L3;
2091 } else {
2092 int node;
Pekka Enberg556a1692008-01-25 08:20:51 +02002093 for_each_online_node(node) {
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002094 cachep->nodelists[node] =
2095 kmalloc_node(sizeof(struct kmem_list3),
2096 GFP_KERNEL, node);
2097 BUG_ON(!cachep->nodelists[node]);
2098 kmem_list3_init(cachep->nodelists[node]);
2099 }
2100 }
2101 }
2102 cachep->nodelists[numa_node_id()]->next_reap =
2103 jiffies + REAPTIMEOUT_LIST3 +
2104 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
2105
2106 cpu_cache_get(cachep)->avail = 0;
2107 cpu_cache_get(cachep)->limit = BOOT_CPUCACHE_ENTRIES;
2108 cpu_cache_get(cachep)->batchcount = 1;
2109 cpu_cache_get(cachep)->touched = 0;
2110 cachep->batchcount = 1;
2111 cachep->limit = BOOT_CPUCACHE_ENTRIES;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002112 return 0;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002113}
2114
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002115/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 * kmem_cache_create - Create a cache.
2117 * @name: A string which is used in /proc/slabinfo to identify this cache.
2118 * @size: The size of objects to be created in this cache.
2119 * @align: The required alignment for the objects.
2120 * @flags: SLAB flags
2121 * @ctor: A constructor for the objects.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 *
2123 * Returns a ptr to the cache on success, NULL on failure.
2124 * Cannot be called within a int, but can be interrupted.
Paul Mundt20c2df82007-07-20 10:11:58 +09002125 * The @ctor is run when new pages are allocated by the cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 *
2127 * @name must be valid until the cache is destroyed. This implies that
Andrew Mortona737b3e2006-03-22 00:08:11 -08002128 * the module calling this has to destroy the cache before getting unloaded.
Catalin Marinas249da162008-11-21 12:56:22 +00002129 * Note that kmem_cache_name() is not guaranteed to return the same pointer,
2130 * therefore applications must manage it themselves.
Andrew Mortona737b3e2006-03-22 00:08:11 -08002131 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 * The flags are
2133 *
2134 * %SLAB_POISON - Poison the slab with a known test pattern (a5a5a5a5)
2135 * to catch references to uninitialised memory.
2136 *
2137 * %SLAB_RED_ZONE - Insert `Red' zones around the allocated memory to check
2138 * for buffer overruns.
2139 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 * %SLAB_HWCACHE_ALIGN - Align the objects in this cache to a hardware
2141 * cacheline. This can be beneficial if you're counting cycles as closely
2142 * as davem.
2143 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002144struct kmem_cache *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145kmem_cache_create (const char *name, size_t size, size_t align,
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002146 unsigned long flags, void (*ctor)(void *))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147{
2148 size_t left_over, slab_size, ralign;
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07002149 struct kmem_cache *cachep = NULL, *pc;
Pekka Enberg83b519e2009-06-10 19:40:04 +03002150 gfp_t gfp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151
2152 /*
2153 * Sanity checks... these are all serious usage bugs.
2154 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002155 if (!name || in_interrupt() || (size < BYTES_PER_WORD) ||
Paul Mundt20c2df82007-07-20 10:11:58 +09002156 size > KMALLOC_MAX_SIZE) {
Harvey Harrisond40cee22008-04-30 00:55:07 -07002157 printk(KERN_ERR "%s: Early error in slab %s\n", __func__,
Andrew Mortona737b3e2006-03-22 00:08:11 -08002158 name);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002159 BUG();
2160 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002161
Ravikiran G Thirumalaif0188f42006-02-10 01:51:13 -08002162 /*
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002163 * We use cache_chain_mutex to ensure a consistent view of
Rusty Russell174596a2009-01-01 10:12:29 +10302164 * cpu_online_mask as well. Please see cpuup_callback
Ravikiran G Thirumalaif0188f42006-02-10 01:51:13 -08002165 */
Pekka Enberg83b519e2009-06-10 19:40:04 +03002166 if (slab_is_available()) {
2167 get_online_cpus();
2168 mutex_lock(&cache_chain_mutex);
2169 }
Andrew Morton4f12bb42005-11-07 00:58:00 -08002170
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07002171 list_for_each_entry(pc, &cache_chain, next) {
Andrew Morton4f12bb42005-11-07 00:58:00 -08002172 char tmp;
2173 int res;
2174
2175 /*
2176 * This happens when the module gets unloaded and doesn't
2177 * destroy its slab cache and no-one else reuses the vmalloc
2178 * area of the module. Print a warning.
2179 */
Andrew Morton138ae662006-12-06 20:36:41 -08002180 res = probe_kernel_address(pc->name, tmp);
Andrew Morton4f12bb42005-11-07 00:58:00 -08002181 if (res) {
matzeb4169522007-05-06 14:49:52 -07002182 printk(KERN_ERR
2183 "SLAB: cache with size %d has lost its name\n",
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002184 pc->buffer_size);
Andrew Morton4f12bb42005-11-07 00:58:00 -08002185 continue;
2186 }
2187
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002188 if (!strcmp(pc->name, name)) {
matzeb4169522007-05-06 14:49:52 -07002189 printk(KERN_ERR
2190 "kmem_cache_create: duplicate cache %s\n", name);
Andrew Morton4f12bb42005-11-07 00:58:00 -08002191 dump_stack();
2192 goto oops;
2193 }
2194 }
2195
Linus Torvalds1da177e2005-04-16 15:20:36 -07002196#if DEBUG
2197 WARN_ON(strchr(name, ' ')); /* It confuses parsers */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198#if FORCED_DEBUG
2199 /*
2200 * Enable redzoning and last user accounting, except for caches with
2201 * large objects, if the increased size would increase the object size
2202 * above the next power of two: caches with object sizes just above a
2203 * power of two have a significant amount of internal fragmentation.
2204 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002205 if (size < 4096 || fls(size - 1) == fls(size-1 + REDZONE_ALIGN +
2206 2 * sizeof(unsigned long long)))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002207 flags |= SLAB_RED_ZONE | SLAB_STORE_USER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002208 if (!(flags & SLAB_DESTROY_BY_RCU))
2209 flags |= SLAB_POISON;
2210#endif
2211 if (flags & SLAB_DESTROY_BY_RCU)
2212 BUG_ON(flags & SLAB_POISON);
2213#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214 /*
Andrew Mortona737b3e2006-03-22 00:08:11 -08002215 * Always checks flags, a caller might be expecting debug support which
2216 * isn't available.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002217 */
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002218 BUG_ON(flags & ~CREATE_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219
Andrew Mortona737b3e2006-03-22 00:08:11 -08002220 /*
2221 * Check that size is in terms of words. This is needed to avoid
Linus Torvalds1da177e2005-04-16 15:20:36 -07002222 * unaligned accesses for some archs when redzoning is used, and makes
2223 * sure any on-slab bufctl's are also correctly aligned.
2224 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002225 if (size & (BYTES_PER_WORD - 1)) {
2226 size += (BYTES_PER_WORD - 1);
2227 size &= ~(BYTES_PER_WORD - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 }
2229
Andrew Mortona737b3e2006-03-22 00:08:11 -08002230 /* calculate the final buffer alignment: */
2231
Linus Torvalds1da177e2005-04-16 15:20:36 -07002232 /* 1) arch recommendation: can be overridden for debug */
2233 if (flags & SLAB_HWCACHE_ALIGN) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002234 /*
2235 * Default alignment: as specified by the arch code. Except if
2236 * an object is really small, then squeeze multiple objects into
2237 * one cacheline.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238 */
2239 ralign = cache_line_size();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002240 while (size <= ralign / 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002241 ralign /= 2;
2242 } else {
2243 ralign = BYTES_PER_WORD;
2244 }
Pekka Enbergca5f9702006-09-25 23:31:25 -07002245
2246 /*
David Woodhouse87a927c2007-07-04 21:26:44 -04002247 * Redzoning and user store require word alignment or possibly larger.
2248 * Note this will be overridden by architecture or caller mandated
2249 * alignment if either is greater than BYTES_PER_WORD.
Pekka Enbergca5f9702006-09-25 23:31:25 -07002250 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002251 if (flags & SLAB_STORE_USER)
2252 ralign = BYTES_PER_WORD;
2253
2254 if (flags & SLAB_RED_ZONE) {
2255 ralign = REDZONE_ALIGN;
2256 /* If redzoning, ensure that the second redzone is suitably
2257 * aligned, by adjusting the object size accordingly. */
2258 size += REDZONE_ALIGN - 1;
2259 size &= ~(REDZONE_ALIGN - 1);
2260 }
Pekka Enbergca5f9702006-09-25 23:31:25 -07002261
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002262 /* 2) arch mandated alignment */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002263 if (ralign < ARCH_SLAB_MINALIGN) {
2264 ralign = ARCH_SLAB_MINALIGN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002265 }
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002266 /* 3) caller mandated alignment */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002267 if (ralign < align) {
2268 ralign = align;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002269 }
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002270 /* disable debug if necessary */
David Woodhouseb46b8f12007-05-08 00:22:59 -07002271 if (ralign > __alignof__(unsigned long long))
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002272 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002273 /*
Pekka Enbergca5f9702006-09-25 23:31:25 -07002274 * 4) Store it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002275 */
2276 align = ralign;
2277
Pekka Enberg83b519e2009-06-10 19:40:04 +03002278 if (slab_is_available())
2279 gfp = GFP_KERNEL;
2280 else
2281 gfp = GFP_NOWAIT;
2282
Linus Torvalds1da177e2005-04-16 15:20:36 -07002283 /* Get cache's description obj. */
Pekka Enberg83b519e2009-06-10 19:40:04 +03002284 cachep = kmem_cache_zalloc(&cache_cache, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 if (!cachep)
Andrew Morton4f12bb42005-11-07 00:58:00 -08002286 goto oops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002287
2288#if DEBUG
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002289 cachep->obj_size = size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290
Pekka Enbergca5f9702006-09-25 23:31:25 -07002291 /*
2292 * Both debugging options require word-alignment which is calculated
2293 * into align above.
2294 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 if (flags & SLAB_RED_ZONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002296 /* add space for red zone words */
David Woodhouseb46b8f12007-05-08 00:22:59 -07002297 cachep->obj_offset += sizeof(unsigned long long);
2298 size += 2 * sizeof(unsigned long long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 }
2300 if (flags & SLAB_STORE_USER) {
Pekka Enbergca5f9702006-09-25 23:31:25 -07002301 /* user store requires one word storage behind the end of
David Woodhouse87a927c2007-07-04 21:26:44 -04002302 * the real object. But if the second red zone needs to be
2303 * aligned to 64 bits, we must allow that much space.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002305 if (flags & SLAB_RED_ZONE)
2306 size += REDZONE_ALIGN;
2307 else
2308 size += BYTES_PER_WORD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 }
2310#if FORCED_DEBUG && defined(CONFIG_DEBUG_PAGEALLOC)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002311 if (size >= malloc_sizes[INDEX_L3 + 1].cs_size
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002312 && cachep->obj_size > cache_line_size() && size < PAGE_SIZE) {
2313 cachep->obj_offset += PAGE_SIZE - size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314 size = PAGE_SIZE;
2315 }
2316#endif
2317#endif
2318
Ingo Molnare0a42722006-06-23 02:03:46 -07002319 /*
2320 * Determine if the slab management is 'on' or 'off' slab.
2321 * (bootstrapping cannot cope with offslab caches so don't do
2322 * it too early on.)
2323 */
2324 if ((size >= (PAGE_SIZE >> 3)) && !slab_early_init)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 /*
2326 * Size is large, assume best to place the slab management obj
2327 * off-slab (should allow better packing of objs).
2328 */
2329 flags |= CFLGS_OFF_SLAB;
2330
2331 size = ALIGN(size, align);
2332
Linus Torvaldsf78bb8a2006-03-08 10:33:05 -08002333 left_over = calculate_slab_order(cachep, size, align, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002334
2335 if (!cachep->num) {
matzeb4169522007-05-06 14:49:52 -07002336 printk(KERN_ERR
2337 "kmem_cache_create: couldn't create cache %s.\n", name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 kmem_cache_free(&cache_cache, cachep);
2339 cachep = NULL;
Andrew Morton4f12bb42005-11-07 00:58:00 -08002340 goto oops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002341 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002342 slab_size = ALIGN(cachep->num * sizeof(kmem_bufctl_t)
2343 + sizeof(struct slab), align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344
2345 /*
2346 * If the slab has been placed off-slab, and we have enough space then
2347 * move it on-slab. This is at the expense of any extra colouring.
2348 */
2349 if (flags & CFLGS_OFF_SLAB && left_over >= slab_size) {
2350 flags &= ~CFLGS_OFF_SLAB;
2351 left_over -= slab_size;
2352 }
2353
2354 if (flags & CFLGS_OFF_SLAB) {
2355 /* really off slab. No need for manual alignment */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002356 slab_size =
2357 cachep->num * sizeof(kmem_bufctl_t) + sizeof(struct slab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 }
2359
2360 cachep->colour_off = cache_line_size();
2361 /* Offset must be a multiple of the alignment. */
2362 if (cachep->colour_off < align)
2363 cachep->colour_off = align;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002364 cachep->colour = left_over / cachep->colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002365 cachep->slab_size = slab_size;
2366 cachep->flags = flags;
2367 cachep->gfpflags = 0;
Christoph Lameter4b51d662007-02-10 01:43:10 -08002368 if (CONFIG_ZONE_DMA_FLAG && (flags & SLAB_CACHE_DMA))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369 cachep->gfpflags |= GFP_DMA;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002370 cachep->buffer_size = size;
Eric Dumazet6a2d7a92006-12-13 00:34:27 -08002371 cachep->reciprocal_buffer_size = reciprocal_value(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002372
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002373 if (flags & CFLGS_OFF_SLAB) {
Victor Fuscob2d55072005-09-10 00:26:36 -07002374 cachep->slabp_cache = kmem_find_general_cachep(slab_size, 0u);
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002375 /*
2376 * This is a possibility for one of the malloc_sizes caches.
2377 * But since we go off slab only for object size greater than
2378 * PAGE_SIZE/8, and malloc_sizes gets created in ascending order,
2379 * this should not happen at all.
2380 * But leave a BUG_ON for some lucky dude.
2381 */
Christoph Lameter6cb8f912007-07-17 04:03:22 -07002382 BUG_ON(ZERO_OR_NULL_PTR(cachep->slabp_cache));
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002383 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002384 cachep->ctor = ctor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 cachep->name = name;
2386
Pekka Enberg83b519e2009-06-10 19:40:04 +03002387 if (setup_cpu_cache(cachep, gfp)) {
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002388 __kmem_cache_destroy(cachep);
2389 cachep = NULL;
2390 goto oops;
2391 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002392
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 /* cache setup completed, link it into the list */
2394 list_add(&cachep->next, &cache_chain);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002395oops:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002396 if (!cachep && (flags & SLAB_PANIC))
2397 panic("kmem_cache_create(): failed to create slab `%s'\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002398 name);
Pekka Enberg83b519e2009-06-10 19:40:04 +03002399 if (slab_is_available()) {
2400 mutex_unlock(&cache_chain_mutex);
2401 put_online_cpus();
2402 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 return cachep;
2404}
2405EXPORT_SYMBOL(kmem_cache_create);
2406
2407#if DEBUG
2408static void check_irq_off(void)
2409{
2410 BUG_ON(!irqs_disabled());
2411}
2412
2413static void check_irq_on(void)
2414{
2415 BUG_ON(irqs_disabled());
2416}
2417
Pekka Enberg343e0d72006-02-01 03:05:50 -08002418static void check_spinlock_acquired(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002419{
2420#ifdef CONFIG_SMP
2421 check_irq_off();
Christoph Lametere498be72005-09-09 13:03:32 -07002422 assert_spin_locked(&cachep->nodelists[numa_node_id()]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002423#endif
2424}
Christoph Lametere498be72005-09-09 13:03:32 -07002425
Pekka Enberg343e0d72006-02-01 03:05:50 -08002426static void check_spinlock_acquired_node(struct kmem_cache *cachep, int node)
Christoph Lametere498be72005-09-09 13:03:32 -07002427{
2428#ifdef CONFIG_SMP
2429 check_irq_off();
2430 assert_spin_locked(&cachep->nodelists[node]->list_lock);
2431#endif
2432}
2433
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434#else
2435#define check_irq_off() do { } while(0)
2436#define check_irq_on() do { } while(0)
2437#define check_spinlock_acquired(x) do { } while(0)
Christoph Lametere498be72005-09-09 13:03:32 -07002438#define check_spinlock_acquired_node(x, y) do { } while(0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002439#endif
2440
Christoph Lameteraab22072006-03-22 00:09:06 -08002441static void drain_array(struct kmem_cache *cachep, struct kmem_list3 *l3,
2442 struct array_cache *ac,
2443 int force, int node);
2444
Linus Torvalds1da177e2005-04-16 15:20:36 -07002445static void do_drain(void *arg)
2446{
Andrew Mortona737b3e2006-03-22 00:08:11 -08002447 struct kmem_cache *cachep = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002448 struct array_cache *ac;
Christoph Lameterff694162005-09-22 21:44:02 -07002449 int node = numa_node_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002450
2451 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002452 ac = cpu_cache_get(cachep);
Christoph Lameterff694162005-09-22 21:44:02 -07002453 spin_lock(&cachep->nodelists[node]->list_lock);
2454 free_block(cachep, ac->entry, ac->avail, node);
2455 spin_unlock(&cachep->nodelists[node]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 ac->avail = 0;
2457}
2458
Pekka Enberg343e0d72006-02-01 03:05:50 -08002459static void drain_cpu_caches(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002460{
Christoph Lametere498be72005-09-09 13:03:32 -07002461 struct kmem_list3 *l3;
2462 int node;
2463
Jens Axboe15c8b6c2008-05-09 09:39:44 +02002464 on_each_cpu(do_drain, cachep, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002465 check_irq_on();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002466 for_each_online_node(node) {
Christoph Lametere498be72005-09-09 13:03:32 -07002467 l3 = cachep->nodelists[node];
Roland Dreiera4523a82006-05-15 11:41:00 -07002468 if (l3 && l3->alien)
2469 drain_alien_cache(cachep, l3->alien);
2470 }
2471
2472 for_each_online_node(node) {
2473 l3 = cachep->nodelists[node];
2474 if (l3)
Christoph Lameteraab22072006-03-22 00:09:06 -08002475 drain_array(cachep, l3, l3->shared, 1, node);
Christoph Lametere498be72005-09-09 13:03:32 -07002476 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477}
2478
Christoph Lametered11d9e2006-06-30 01:55:45 -07002479/*
2480 * Remove slabs from the list of free slabs.
2481 * Specify the number of slabs to drain in tofree.
2482 *
2483 * Returns the actual number of slabs released.
2484 */
2485static int drain_freelist(struct kmem_cache *cache,
2486 struct kmem_list3 *l3, int tofree)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487{
Christoph Lametered11d9e2006-06-30 01:55:45 -07002488 struct list_head *p;
2489 int nr_freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002490 struct slab *slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491
Christoph Lametered11d9e2006-06-30 01:55:45 -07002492 nr_freed = 0;
2493 while (nr_freed < tofree && !list_empty(&l3->slabs_free)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494
Christoph Lametered11d9e2006-06-30 01:55:45 -07002495 spin_lock_irq(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07002496 p = l3->slabs_free.prev;
Christoph Lametered11d9e2006-06-30 01:55:45 -07002497 if (p == &l3->slabs_free) {
2498 spin_unlock_irq(&l3->list_lock);
2499 goto out;
2500 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002501
Christoph Lametered11d9e2006-06-30 01:55:45 -07002502 slabp = list_entry(p, struct slab, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002503#if DEBUG
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002504 BUG_ON(slabp->inuse);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002505#endif
2506 list_del(&slabp->list);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002507 /*
2508 * Safe to drop the lock. The slab is no longer linked
2509 * to the cache.
2510 */
2511 l3->free_objects -= cache->num;
Christoph Lametere498be72005-09-09 13:03:32 -07002512 spin_unlock_irq(&l3->list_lock);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002513 slab_destroy(cache, slabp);
2514 nr_freed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 }
Christoph Lametered11d9e2006-06-30 01:55:45 -07002516out:
2517 return nr_freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518}
2519
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002520/* Called with cache_chain_mutex held to protect against cpu hotplug */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002521static int __cache_shrink(struct kmem_cache *cachep)
Christoph Lametere498be72005-09-09 13:03:32 -07002522{
2523 int ret = 0, i = 0;
2524 struct kmem_list3 *l3;
2525
2526 drain_cpu_caches(cachep);
2527
2528 check_irq_on();
2529 for_each_online_node(i) {
2530 l3 = cachep->nodelists[i];
Christoph Lametered11d9e2006-06-30 01:55:45 -07002531 if (!l3)
2532 continue;
2533
2534 drain_freelist(cachep, l3, l3->free_objects);
2535
2536 ret += !list_empty(&l3->slabs_full) ||
2537 !list_empty(&l3->slabs_partial);
Christoph Lametere498be72005-09-09 13:03:32 -07002538 }
2539 return (ret ? 1 : 0);
2540}
2541
Linus Torvalds1da177e2005-04-16 15:20:36 -07002542/**
2543 * kmem_cache_shrink - Shrink a cache.
2544 * @cachep: The cache to shrink.
2545 *
2546 * Releases as many slabs as possible for a cache.
2547 * To help debugging, a zero exit status indicates all slabs were released.
2548 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002549int kmem_cache_shrink(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550{
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002551 int ret;
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002552 BUG_ON(!cachep || in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002554 get_online_cpus();
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002555 mutex_lock(&cache_chain_mutex);
2556 ret = __cache_shrink(cachep);
2557 mutex_unlock(&cache_chain_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002558 put_online_cpus();
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002559 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560}
2561EXPORT_SYMBOL(kmem_cache_shrink);
2562
2563/**
2564 * kmem_cache_destroy - delete a cache
2565 * @cachep: the cache to destroy
2566 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08002567 * Remove a &struct kmem_cache object from the slab cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 *
2569 * It is expected this function will be called by a module when it is
2570 * unloaded. This will remove the cache completely, and avoid a duplicate
2571 * cache being allocated each time a module is loaded and unloaded, if the
2572 * module doesn't have persistent in-kernel storage across loads and unloads.
2573 *
2574 * The cache must be empty before calling this function.
2575 *
2576 * The caller must guarantee that noone will allocate memory from the cache
2577 * during the kmem_cache_destroy().
2578 */
Alexey Dobriyan133d2052006-09-27 01:49:41 -07002579void kmem_cache_destroy(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002580{
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002581 BUG_ON(!cachep || in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002582
Linus Torvalds1da177e2005-04-16 15:20:36 -07002583 /* Find the cache in the chain of caches. */
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002584 get_online_cpus();
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002585 mutex_lock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002586 /*
2587 * the chain is never empty, cache_cache is never destroyed
2588 */
2589 list_del(&cachep->next);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002590 if (__cache_shrink(cachep)) {
2591 slab_error(cachep, "Can't free all objects");
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002592 list_add(&cachep->next, &cache_chain);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002593 mutex_unlock(&cache_chain_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002594 put_online_cpus();
Alexey Dobriyan133d2052006-09-27 01:49:41 -07002595 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 }
2597
2598 if (unlikely(cachep->flags & SLAB_DESTROY_BY_RCU))
Paul E. McKenneyfbd568a3e2005-05-01 08:59:04 -07002599 synchronize_rcu();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002600
Christoph Lameter117f6eb2006-09-25 23:31:37 -07002601 __kmem_cache_destroy(cachep);
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002602 mutex_unlock(&cache_chain_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002603 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002604}
2605EXPORT_SYMBOL(kmem_cache_destroy);
2606
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002607/*
2608 * Get the memory for a slab management obj.
2609 * For a slab cache when the slab descriptor is off-slab, slab descriptors
2610 * always come from malloc_sizes caches. The slab descriptor cannot
2611 * come from the same cache which is getting created because,
2612 * when we are searching for an appropriate cache for these
2613 * descriptors in kmem_cache_create, we search through the malloc_sizes array.
2614 * If we are creating a malloc_sizes cache here it would not be visible to
2615 * kmem_find_general_cachep till the initialization is complete.
2616 * Hence we cannot have slabp_cache same as the original cache.
2617 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002618static struct slab *alloc_slabmgmt(struct kmem_cache *cachep, void *objp,
Ravikiran G Thirumalai5b74ada2006-04-10 22:52:53 -07002619 int colour_off, gfp_t local_flags,
2620 int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621{
2622 struct slab *slabp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002623
Linus Torvalds1da177e2005-04-16 15:20:36 -07002624 if (OFF_SLAB(cachep)) {
2625 /* Slab management obj is off-slab. */
Ravikiran G Thirumalai5b74ada2006-04-10 22:52:53 -07002626 slabp = kmem_cache_alloc_node(cachep->slabp_cache,
Pekka Enberg8759ec52008-11-26 10:01:31 +02002627 local_flags, nodeid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 if (!slabp)
2629 return NULL;
2630 } else {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002631 slabp = objp + colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632 colour_off += cachep->slab_size;
2633 }
2634 slabp->inuse = 0;
2635 slabp->colouroff = colour_off;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002636 slabp->s_mem = objp + colour_off;
Ravikiran G Thirumalai5b74ada2006-04-10 22:52:53 -07002637 slabp->nodeid = nodeid;
Marcin Slusarze51bfd02008-02-10 11:21:54 +01002638 slabp->free = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639 return slabp;
2640}
2641
2642static inline kmem_bufctl_t *slab_bufctl(struct slab *slabp)
2643{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002644 return (kmem_bufctl_t *) (slabp + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002645}
2646
Pekka Enberg343e0d72006-02-01 03:05:50 -08002647static void cache_init_objs(struct kmem_cache *cachep,
Christoph Lametera35afb82007-05-16 22:10:57 -07002648 struct slab *slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649{
2650 int i;
2651
2652 for (i = 0; i < cachep->num; i++) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002653 void *objp = index_to_obj(cachep, slabp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002654#if DEBUG
2655 /* need to poison the objs? */
2656 if (cachep->flags & SLAB_POISON)
2657 poison_obj(cachep, objp, POISON_FREE);
2658 if (cachep->flags & SLAB_STORE_USER)
2659 *dbg_userword(cachep, objp) = NULL;
2660
2661 if (cachep->flags & SLAB_RED_ZONE) {
2662 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2663 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2664 }
2665 /*
Andrew Mortona737b3e2006-03-22 00:08:11 -08002666 * Constructors are not allowed to allocate memory from the same
2667 * cache which they are a constructor for. Otherwise, deadlock.
2668 * They must also be threaded.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002669 */
2670 if (cachep->ctor && !(cachep->flags & SLAB_POISON))
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002671 cachep->ctor(objp + obj_offset(cachep));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672
2673 if (cachep->flags & SLAB_RED_ZONE) {
2674 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
2675 slab_error(cachep, "constructor overwrote the"
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002676 " end of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
2678 slab_error(cachep, "constructor overwrote the"
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002679 " start of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680 }
Andrew Mortona737b3e2006-03-22 00:08:11 -08002681 if ((cachep->buffer_size % PAGE_SIZE) == 0 &&
2682 OFF_SLAB(cachep) && cachep->flags & SLAB_POISON)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002683 kernel_map_pages(virt_to_page(objp),
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002684 cachep->buffer_size / PAGE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002685#else
2686 if (cachep->ctor)
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002687 cachep->ctor(objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688#endif
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002689 slab_bufctl(slabp)[i] = i + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002690 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002691 slab_bufctl(slabp)[i - 1] = BUFCTL_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002692}
2693
Pekka Enberg343e0d72006-02-01 03:05:50 -08002694static void kmem_flagcheck(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002695{
Christoph Lameter4b51d662007-02-10 01:43:10 -08002696 if (CONFIG_ZONE_DMA_FLAG) {
2697 if (flags & GFP_DMA)
2698 BUG_ON(!(cachep->gfpflags & GFP_DMA));
2699 else
2700 BUG_ON(cachep->gfpflags & GFP_DMA);
2701 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002702}
2703
Andrew Mortona737b3e2006-03-22 00:08:11 -08002704static void *slab_get_obj(struct kmem_cache *cachep, struct slab *slabp,
2705 int nodeid)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002706{
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002707 void *objp = index_to_obj(cachep, slabp, slabp->free);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002708 kmem_bufctl_t next;
2709
2710 slabp->inuse++;
2711 next = slab_bufctl(slabp)[slabp->free];
2712#if DEBUG
2713 slab_bufctl(slabp)[slabp->free] = BUFCTL_FREE;
2714 WARN_ON(slabp->nodeid != nodeid);
2715#endif
2716 slabp->free = next;
2717
2718 return objp;
2719}
2720
Andrew Mortona737b3e2006-03-22 00:08:11 -08002721static void slab_put_obj(struct kmem_cache *cachep, struct slab *slabp,
2722 void *objp, int nodeid)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002723{
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002724 unsigned int objnr = obj_to_index(cachep, slabp, objp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002725
2726#if DEBUG
2727 /* Verify that the slab belongs to the intended node */
2728 WARN_ON(slabp->nodeid != nodeid);
2729
Al Viro871751e2006-03-25 03:06:39 -08002730 if (slab_bufctl(slabp)[objnr] + 1 <= SLAB_LIMIT + 1) {
Matthew Dobson78d382d2006-02-01 03:05:47 -08002731 printk(KERN_ERR "slab: double free detected in cache "
Andrew Mortona737b3e2006-03-22 00:08:11 -08002732 "'%s', objp %p\n", cachep->name, objp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002733 BUG();
2734 }
2735#endif
2736 slab_bufctl(slabp)[objnr] = slabp->free;
2737 slabp->free = objnr;
2738 slabp->inuse--;
2739}
2740
Pekka Enberg47768742006-06-23 02:03:07 -07002741/*
2742 * Map pages beginning at addr to the given cache and slab. This is required
2743 * for the slab allocator to be able to lookup the cache and slab of a
2744 * virtual address for kfree, ksize, kmem_ptr_validate, and slab debugging.
2745 */
2746static void slab_map_pages(struct kmem_cache *cache, struct slab *slab,
2747 void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002748{
Pekka Enberg47768742006-06-23 02:03:07 -07002749 int nr_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002750 struct page *page;
2751
Pekka Enberg47768742006-06-23 02:03:07 -07002752 page = virt_to_page(addr);
Nick Piggin84097512006-03-22 00:08:34 -08002753
Pekka Enberg47768742006-06-23 02:03:07 -07002754 nr_pages = 1;
Nick Piggin84097512006-03-22 00:08:34 -08002755 if (likely(!PageCompound(page)))
Pekka Enberg47768742006-06-23 02:03:07 -07002756 nr_pages <<= cache->gfporder;
2757
Linus Torvalds1da177e2005-04-16 15:20:36 -07002758 do {
Pekka Enberg47768742006-06-23 02:03:07 -07002759 page_set_cache(page, cache);
2760 page_set_slab(page, slab);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002761 page++;
Pekka Enberg47768742006-06-23 02:03:07 -07002762 } while (--nr_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763}
2764
2765/*
2766 * Grow (by 1) the number of slabs within a cache. This is called by
2767 * kmem_cache_alloc() when there are no active objs left in a cache.
2768 */
Christoph Lameter3c517a62006-12-06 20:33:29 -08002769static int cache_grow(struct kmem_cache *cachep,
2770 gfp_t flags, int nodeid, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002771{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002772 struct slab *slabp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002773 size_t offset;
2774 gfp_t local_flags;
Christoph Lametere498be72005-09-09 13:03:32 -07002775 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002776
Andrew Mortona737b3e2006-03-22 00:08:11 -08002777 /*
2778 * Be lazy and only check for valid flags here, keeping it out of the
2779 * critical path in kmem_cache_alloc().
Linus Torvalds1da177e2005-04-16 15:20:36 -07002780 */
Christoph Lameter6cb06222007-10-16 01:25:41 -07002781 BUG_ON(flags & GFP_SLAB_BUG_MASK);
2782 local_flags = flags & (GFP_CONSTRAINT_MASK|GFP_RECLAIM_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002784 /* Take the l3 list lock to change the colour_next on this node */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002785 check_irq_off();
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002786 l3 = cachep->nodelists[nodeid];
2787 spin_lock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788
2789 /* Get colour for the slab, and cal the next value. */
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002790 offset = l3->colour_next;
2791 l3->colour_next++;
2792 if (l3->colour_next >= cachep->colour)
2793 l3->colour_next = 0;
2794 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002795
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002796 offset *= cachep->colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797
2798 if (local_flags & __GFP_WAIT)
2799 local_irq_enable();
2800
2801 /*
2802 * The test for missing atomic flag is performed here, rather than
2803 * the more obvious place, simply to reduce the critical path length
2804 * in kmem_cache_alloc(). If a caller is seriously mis-behaving they
2805 * will eventually be caught here (where it matters).
2806 */
2807 kmem_flagcheck(cachep, flags);
2808
Andrew Mortona737b3e2006-03-22 00:08:11 -08002809 /*
2810 * Get mem for the objs. Attempt to allocate a physical page from
2811 * 'nodeid'.
Christoph Lametere498be72005-09-09 13:03:32 -07002812 */
Christoph Lameter3c517a62006-12-06 20:33:29 -08002813 if (!objp)
Andrew Mortonb8c1c5d2007-07-24 12:02:40 -07002814 objp = kmem_getpages(cachep, local_flags, nodeid);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002815 if (!objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816 goto failed;
2817
2818 /* Get slab management. */
Christoph Lameter3c517a62006-12-06 20:33:29 -08002819 slabp = alloc_slabmgmt(cachep, objp, offset,
Christoph Lameter6cb06222007-10-16 01:25:41 -07002820 local_flags & ~GFP_CONSTRAINT_MASK, nodeid);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002821 if (!slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002822 goto opps1;
2823
Pekka Enberg47768742006-06-23 02:03:07 -07002824 slab_map_pages(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825
Christoph Lametera35afb82007-05-16 22:10:57 -07002826 cache_init_objs(cachep, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002827
2828 if (local_flags & __GFP_WAIT)
2829 local_irq_disable();
2830 check_irq_off();
Christoph Lametere498be72005-09-09 13:03:32 -07002831 spin_lock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002832
2833 /* Make slab active. */
Christoph Lametere498be72005-09-09 13:03:32 -07002834 list_add_tail(&slabp->list, &(l3->slabs_free));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835 STATS_INC_GROWN(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07002836 l3->free_objects += cachep->num;
2837 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002838 return 1;
Andrew Mortona737b3e2006-03-22 00:08:11 -08002839opps1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 kmem_freepages(cachep, objp);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002841failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842 if (local_flags & __GFP_WAIT)
2843 local_irq_disable();
2844 return 0;
2845}
2846
2847#if DEBUG
2848
2849/*
2850 * Perform extra freeing checks:
2851 * - detect bad pointers.
2852 * - POISON/RED_ZONE checking
Linus Torvalds1da177e2005-04-16 15:20:36 -07002853 */
2854static void kfree_debugcheck(const void *objp)
2855{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002856 if (!virt_addr_valid(objp)) {
2857 printk(KERN_ERR "kfree_debugcheck: out of range ptr %lxh.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002858 (unsigned long)objp);
2859 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002861}
2862
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002863static inline void verify_redzone_free(struct kmem_cache *cache, void *obj)
2864{
David Woodhouseb46b8f12007-05-08 00:22:59 -07002865 unsigned long long redzone1, redzone2;
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002866
2867 redzone1 = *dbg_redzone1(cache, obj);
2868 redzone2 = *dbg_redzone2(cache, obj);
2869
2870 /*
2871 * Redzone is ok.
2872 */
2873 if (redzone1 == RED_ACTIVE && redzone2 == RED_ACTIVE)
2874 return;
2875
2876 if (redzone1 == RED_INACTIVE && redzone2 == RED_INACTIVE)
2877 slab_error(cache, "double free detected");
2878 else
2879 slab_error(cache, "memory outside object was overwritten");
2880
David Woodhouseb46b8f12007-05-08 00:22:59 -07002881 printk(KERN_ERR "%p: redzone 1:0x%llx, redzone 2:0x%llx.\n",
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002882 obj, redzone1, redzone2);
2883}
2884
Pekka Enberg343e0d72006-02-01 03:05:50 -08002885static void *cache_free_debugcheck(struct kmem_cache *cachep, void *objp,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002886 void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002887{
2888 struct page *page;
2889 unsigned int objnr;
2890 struct slab *slabp;
2891
Matthew Wilcox80cbd912007-11-29 12:05:13 -07002892 BUG_ON(virt_to_cache(objp) != cachep);
2893
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002894 objp -= obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002895 kfree_debugcheck(objp);
Christoph Lameterb49af682007-05-06 14:49:41 -07002896 page = virt_to_head_page(objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002897
Pekka Enberg065d41c2005-11-13 16:06:46 -08002898 slabp = page_get_slab(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002899
2900 if (cachep->flags & SLAB_RED_ZONE) {
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07002901 verify_redzone_free(cachep, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002902 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2903 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2904 }
2905 if (cachep->flags & SLAB_STORE_USER)
2906 *dbg_userword(cachep, objp) = caller;
2907
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002908 objnr = obj_to_index(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002909
2910 BUG_ON(objnr >= cachep->num);
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002911 BUG_ON(objp != index_to_obj(cachep, slabp, objnr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002912
Al Viro871751e2006-03-25 03:06:39 -08002913#ifdef CONFIG_DEBUG_SLAB_LEAK
2914 slab_bufctl(slabp)[objnr] = BUFCTL_FREE;
2915#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002916 if (cachep->flags & SLAB_POISON) {
2917#ifdef CONFIG_DEBUG_PAGEALLOC
Andrew Mortona737b3e2006-03-22 00:08:11 -08002918 if ((cachep->buffer_size % PAGE_SIZE)==0 && OFF_SLAB(cachep)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002919 store_stackinfo(cachep, objp, (unsigned long)caller);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002920 kernel_map_pages(virt_to_page(objp),
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002921 cachep->buffer_size / PAGE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002922 } else {
2923 poison_obj(cachep, objp, POISON_FREE);
2924 }
2925#else
2926 poison_obj(cachep, objp, POISON_FREE);
2927#endif
2928 }
2929 return objp;
2930}
2931
Pekka Enberg343e0d72006-02-01 03:05:50 -08002932static void check_slabp(struct kmem_cache *cachep, struct slab *slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002933{
2934 kmem_bufctl_t i;
2935 int entries = 0;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002936
Linus Torvalds1da177e2005-04-16 15:20:36 -07002937 /* Check slab's freelist to see if this obj is there. */
2938 for (i = slabp->free; i != BUFCTL_END; i = slab_bufctl(slabp)[i]) {
2939 entries++;
2940 if (entries > cachep->num || i >= cachep->num)
2941 goto bad;
2942 }
2943 if (entries != cachep->num - slabp->inuse) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002944bad:
2945 printk(KERN_ERR "slab: Internal list corruption detected in "
2946 "cache '%s'(%d), slabp %p(%d). Hexdump:\n",
2947 cachep->name, cachep->num, slabp, slabp->inuse);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002948 for (i = 0;
Linus Torvalds264132b2006-03-06 12:10:07 -08002949 i < sizeof(*slabp) + cachep->num * sizeof(kmem_bufctl_t);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002950 i++) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002951 if (i % 16 == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952 printk("\n%03x:", i);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002953 printk(" %02x", ((unsigned char *)slabp)[i]);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954 }
2955 printk("\n");
2956 BUG();
2957 }
2958}
2959#else
2960#define kfree_debugcheck(x) do { } while(0)
2961#define cache_free_debugcheck(x,objp,z) (objp)
2962#define check_slabp(x,y) do { } while(0)
2963#endif
2964
Pekka Enberg343e0d72006-02-01 03:05:50 -08002965static void *cache_alloc_refill(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002966{
2967 int batchcount;
2968 struct kmem_list3 *l3;
2969 struct array_cache *ac;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07002970 int node;
2971
Andrew Mortona737b3e2006-03-22 00:08:11 -08002972retry:
Joe Korty6d2144d2008-03-05 15:04:59 -08002973 check_irq_off();
2974 node = numa_node_id();
2975 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976 batchcount = ac->batchcount;
2977 if (!ac->touched && batchcount > BATCHREFILL_LIMIT) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002978 /*
2979 * If there was little recent activity on this cache, then
2980 * perform only a partial refill. Otherwise we could generate
2981 * refill bouncing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002982 */
2983 batchcount = BATCHREFILL_LIMIT;
2984 }
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07002985 l3 = cachep->nodelists[node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986
Christoph Lametere498be72005-09-09 13:03:32 -07002987 BUG_ON(ac->avail > 0 || !l3);
2988 spin_lock(&l3->list_lock);
2989
Christoph Lameter3ded1752006-03-25 03:06:44 -08002990 /* See if we can refill from the shared array */
2991 if (l3->shared && transfer_objects(ac, l3->shared, batchcount))
2992 goto alloc_done;
2993
Linus Torvalds1da177e2005-04-16 15:20:36 -07002994 while (batchcount > 0) {
2995 struct list_head *entry;
2996 struct slab *slabp;
2997 /* Get slab alloc is to come from. */
2998 entry = l3->slabs_partial.next;
2999 if (entry == &l3->slabs_partial) {
3000 l3->free_touched = 1;
3001 entry = l3->slabs_free.next;
3002 if (entry == &l3->slabs_free)
3003 goto must_grow;
3004 }
3005
3006 slabp = list_entry(entry, struct slab, list);
3007 check_slabp(cachep, slabp);
3008 check_spinlock_acquired(cachep);
Pekka Enberg714b8172007-05-06 14:49:03 -07003009
3010 /*
3011 * The slab was either on partial or free list so
3012 * there must be at least one object available for
3013 * allocation.
3014 */
roel kluin249b9f32008-10-29 17:18:07 -04003015 BUG_ON(slabp->inuse >= cachep->num);
Pekka Enberg714b8172007-05-06 14:49:03 -07003016
Linus Torvalds1da177e2005-04-16 15:20:36 -07003017 while (slabp->inuse < cachep->num && batchcount--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018 STATS_INC_ALLOCED(cachep);
3019 STATS_INC_ACTIVE(cachep);
3020 STATS_SET_HIGH(cachep);
3021
Matthew Dobson78d382d2006-02-01 03:05:47 -08003022 ac->entry[ac->avail++] = slab_get_obj(cachep, slabp,
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07003023 node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003024 }
3025 check_slabp(cachep, slabp);
3026
3027 /* move slabp to correct slabp list: */
3028 list_del(&slabp->list);
3029 if (slabp->free == BUFCTL_END)
3030 list_add(&slabp->list, &l3->slabs_full);
3031 else
3032 list_add(&slabp->list, &l3->slabs_partial);
3033 }
3034
Andrew Mortona737b3e2006-03-22 00:08:11 -08003035must_grow:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003036 l3->free_objects -= ac->avail;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003037alloc_done:
Christoph Lametere498be72005-09-09 13:03:32 -07003038 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003039
3040 if (unlikely(!ac->avail)) {
3041 int x;
Christoph Lameter3c517a62006-12-06 20:33:29 -08003042 x = cache_grow(cachep, flags | GFP_THISNODE, node, NULL);
Christoph Lametere498be72005-09-09 13:03:32 -07003043
Andrew Mortona737b3e2006-03-22 00:08:11 -08003044 /* cache_grow can reenable interrupts, then ac could change. */
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003045 ac = cpu_cache_get(cachep);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003046 if (!x && ac->avail == 0) /* no objects in sight? abort */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047 return NULL;
3048
Andrew Mortona737b3e2006-03-22 00:08:11 -08003049 if (!ac->avail) /* objects refilled by interrupt? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003050 goto retry;
3051 }
3052 ac->touched = 1;
Christoph Lametere498be72005-09-09 13:03:32 -07003053 return ac->entry[--ac->avail];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003054}
3055
Andrew Mortona737b3e2006-03-22 00:08:11 -08003056static inline void cache_alloc_debugcheck_before(struct kmem_cache *cachep,
3057 gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003058{
3059 might_sleep_if(flags & __GFP_WAIT);
3060#if DEBUG
3061 kmem_flagcheck(cachep, flags);
3062#endif
3063}
3064
3065#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08003066static void *cache_alloc_debugcheck_after(struct kmem_cache *cachep,
3067 gfp_t flags, void *objp, void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003068{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003069 if (!objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003070 return objp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003071 if (cachep->flags & SLAB_POISON) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072#ifdef CONFIG_DEBUG_PAGEALLOC
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003073 if ((cachep->buffer_size % PAGE_SIZE) == 0 && OFF_SLAB(cachep))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003074 kernel_map_pages(virt_to_page(objp),
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003075 cachep->buffer_size / PAGE_SIZE, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003076 else
3077 check_poison_obj(cachep, objp);
3078#else
3079 check_poison_obj(cachep, objp);
3080#endif
3081 poison_obj(cachep, objp, POISON_INUSE);
3082 }
3083 if (cachep->flags & SLAB_STORE_USER)
3084 *dbg_userword(cachep, objp) = caller;
3085
3086 if (cachep->flags & SLAB_RED_ZONE) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08003087 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE ||
3088 *dbg_redzone2(cachep, objp) != RED_INACTIVE) {
3089 slab_error(cachep, "double free, or memory outside"
3090 " object was overwritten");
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003091 printk(KERN_ERR
David Woodhouseb46b8f12007-05-08 00:22:59 -07003092 "%p: redzone 1:0x%llx, redzone 2:0x%llx\n",
Andrew Mortona737b3e2006-03-22 00:08:11 -08003093 objp, *dbg_redzone1(cachep, objp),
3094 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003095 }
3096 *dbg_redzone1(cachep, objp) = RED_ACTIVE;
3097 *dbg_redzone2(cachep, objp) = RED_ACTIVE;
3098 }
Al Viro871751e2006-03-25 03:06:39 -08003099#ifdef CONFIG_DEBUG_SLAB_LEAK
3100 {
3101 struct slab *slabp;
3102 unsigned objnr;
3103
Christoph Lameterb49af682007-05-06 14:49:41 -07003104 slabp = page_get_slab(virt_to_head_page(objp));
Al Viro871751e2006-03-25 03:06:39 -08003105 objnr = (unsigned)(objp - slabp->s_mem) / cachep->buffer_size;
3106 slab_bufctl(slabp)[objnr] = BUFCTL_ACTIVE;
3107 }
3108#endif
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003109 objp += obj_offset(cachep);
Christoph Lameter4f104932007-05-06 14:50:17 -07003110 if (cachep->ctor && cachep->flags & SLAB_POISON)
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07003111 cachep->ctor(objp);
Kevin Hilmana44b56d2006-12-06 20:32:11 -08003112#if ARCH_SLAB_MINALIGN
3113 if ((u32)objp & (ARCH_SLAB_MINALIGN-1)) {
3114 printk(KERN_ERR "0x%p: not aligned to ARCH_SLAB_MINALIGN=%d\n",
3115 objp, ARCH_SLAB_MINALIGN);
3116 }
3117#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003118 return objp;
3119}
3120#else
3121#define cache_alloc_debugcheck_after(a,b,objp,d) (objp)
3122#endif
3123
Akinobu Mita773ff602008-12-23 19:37:01 +09003124static bool slab_should_failslab(struct kmem_cache *cachep, gfp_t flags)
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003125{
3126 if (cachep == &cache_cache)
Akinobu Mita773ff602008-12-23 19:37:01 +09003127 return false;
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003128
Akinobu Mita773ff602008-12-23 19:37:01 +09003129 return should_failslab(obj_size(cachep), flags);
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003130}
3131
Pekka Enberg343e0d72006-02-01 03:05:50 -08003132static inline void *____cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003134 void *objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135 struct array_cache *ac;
3136
Alok N Kataria5c382302005-09-27 21:45:46 -07003137 check_irq_off();
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003138
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003139 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003140 if (likely(ac->avail)) {
3141 STATS_INC_ALLOCHIT(cachep);
3142 ac->touched = 1;
Christoph Lametere498be72005-09-09 13:03:32 -07003143 objp = ac->entry[--ac->avail];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144 } else {
3145 STATS_INC_ALLOCMISS(cachep);
3146 objp = cache_alloc_refill(cachep, flags);
3147 }
Alok N Kataria5c382302005-09-27 21:45:46 -07003148 return objp;
3149}
3150
Christoph Lametere498be72005-09-09 13:03:32 -07003151#ifdef CONFIG_NUMA
3152/*
Paul Jacksonb2455392006-03-24 03:16:12 -08003153 * Try allocating on another node if PF_SPREAD_SLAB|PF_MEMPOLICY.
Paul Jacksonc61afb12006-03-24 03:16:08 -08003154 *
3155 * If we are in_interrupt, then process context, including cpusets and
3156 * mempolicy, may not apply and should not be used for allocation policy.
3157 */
3158static void *alternate_node_alloc(struct kmem_cache *cachep, gfp_t flags)
3159{
3160 int nid_alloc, nid_here;
3161
Christoph Lameter765c4502006-09-27 01:50:08 -07003162 if (in_interrupt() || (flags & __GFP_THISNODE))
Paul Jacksonc61afb12006-03-24 03:16:08 -08003163 return NULL;
3164 nid_alloc = nid_here = numa_node_id();
3165 if (cpuset_do_slab_mem_spread() && (cachep->flags & SLAB_MEM_SPREAD))
3166 nid_alloc = cpuset_mem_spread_node();
3167 else if (current->mempolicy)
3168 nid_alloc = slab_node(current->mempolicy);
3169 if (nid_alloc != nid_here)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003170 return ____cache_alloc_node(cachep, flags, nid_alloc);
Paul Jacksonc61afb12006-03-24 03:16:08 -08003171 return NULL;
3172}
3173
3174/*
Christoph Lameter765c4502006-09-27 01:50:08 -07003175 * Fallback function if there was no memory available and no objects on a
Christoph Lameter3c517a62006-12-06 20:33:29 -08003176 * certain node and fall back is permitted. First we scan all the
3177 * available nodelists for available objects. If that fails then we
3178 * perform an allocation without specifying a node. This allows the page
3179 * allocator to do its reclaim / fallback magic. We then insert the
3180 * slab into the proper nodelist and then allocate from it.
Christoph Lameter765c4502006-09-27 01:50:08 -07003181 */
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003182static void *fallback_alloc(struct kmem_cache *cache, gfp_t flags)
Christoph Lameter765c4502006-09-27 01:50:08 -07003183{
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003184 struct zonelist *zonelist;
3185 gfp_t local_flags;
Mel Gormandd1a2392008-04-28 02:12:17 -07003186 struct zoneref *z;
Mel Gorman54a6eb52008-04-28 02:12:16 -07003187 struct zone *zone;
3188 enum zone_type high_zoneidx = gfp_zone(flags);
Christoph Lameter765c4502006-09-27 01:50:08 -07003189 void *obj = NULL;
Christoph Lameter3c517a62006-12-06 20:33:29 -08003190 int nid;
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003191
3192 if (flags & __GFP_THISNODE)
3193 return NULL;
3194
Mel Gorman0e884602008-04-28 02:12:14 -07003195 zonelist = node_zonelist(slab_node(current->mempolicy), flags);
Christoph Lameter6cb06222007-10-16 01:25:41 -07003196 local_flags = flags & (GFP_CONSTRAINT_MASK|GFP_RECLAIM_MASK);
Christoph Lameter765c4502006-09-27 01:50:08 -07003197
Christoph Lameter3c517a62006-12-06 20:33:29 -08003198retry:
3199 /*
3200 * Look through allowed nodes for objects available
3201 * from existing per node queues.
3202 */
Mel Gorman54a6eb52008-04-28 02:12:16 -07003203 for_each_zone_zonelist(zone, z, zonelist, high_zoneidx) {
3204 nid = zone_to_nid(zone);
Christoph Lameteraedb0eb2006-10-21 10:24:16 -07003205
Mel Gorman54a6eb52008-04-28 02:12:16 -07003206 if (cpuset_zone_allowed_hardwall(zone, flags) &&
Christoph Lameter3c517a62006-12-06 20:33:29 -08003207 cache->nodelists[nid] &&
Christoph Lameter481c5342008-06-21 16:46:35 -07003208 cache->nodelists[nid]->free_objects) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003209 obj = ____cache_alloc_node(cache,
3210 flags | GFP_THISNODE, nid);
Christoph Lameter481c5342008-06-21 16:46:35 -07003211 if (obj)
3212 break;
3213 }
Christoph Lameter3c517a62006-12-06 20:33:29 -08003214 }
3215
Christoph Lametercfce6602007-05-06 14:50:17 -07003216 if (!obj) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003217 /*
3218 * This allocation will be performed within the constraints
3219 * of the current cpuset / memory policy requirements.
3220 * We may trigger various forms of reclaim on the allowed
3221 * set and go into memory reserves if necessary.
3222 */
Christoph Lameterdd47ea72006-12-13 00:34:11 -08003223 if (local_flags & __GFP_WAIT)
3224 local_irq_enable();
3225 kmem_flagcheck(cache, flags);
Christoph Lameter9ac33b22008-03-04 12:24:22 -08003226 obj = kmem_getpages(cache, local_flags, -1);
Christoph Lameterdd47ea72006-12-13 00:34:11 -08003227 if (local_flags & __GFP_WAIT)
3228 local_irq_disable();
Christoph Lameter3c517a62006-12-06 20:33:29 -08003229 if (obj) {
3230 /*
3231 * Insert into the appropriate per node queues
3232 */
3233 nid = page_to_nid(virt_to_page(obj));
3234 if (cache_grow(cache, flags, nid, obj)) {
3235 obj = ____cache_alloc_node(cache,
3236 flags | GFP_THISNODE, nid);
3237 if (!obj)
3238 /*
3239 * Another processor may allocate the
3240 * objects in the slab since we are
3241 * not holding any locks.
3242 */
3243 goto retry;
3244 } else {
Hugh Dickinsb6a60452007-01-05 16:36:36 -08003245 /* cache_grow already freed obj */
Christoph Lameter3c517a62006-12-06 20:33:29 -08003246 obj = NULL;
3247 }
3248 }
Christoph Lameteraedb0eb2006-10-21 10:24:16 -07003249 }
Christoph Lameter765c4502006-09-27 01:50:08 -07003250 return obj;
3251}
3252
3253/*
Christoph Lametere498be72005-09-09 13:03:32 -07003254 * A interface to enable slab creation on nodeid
Linus Torvalds1da177e2005-04-16 15:20:36 -07003255 */
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003256static void *____cache_alloc_node(struct kmem_cache *cachep, gfp_t flags,
Andrew Mortona737b3e2006-03-22 00:08:11 -08003257 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07003258{
3259 struct list_head *entry;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003260 struct slab *slabp;
3261 struct kmem_list3 *l3;
3262 void *obj;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003263 int x;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003265 l3 = cachep->nodelists[nodeid];
3266 BUG_ON(!l3);
Christoph Lametere498be72005-09-09 13:03:32 -07003267
Andrew Mortona737b3e2006-03-22 00:08:11 -08003268retry:
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08003269 check_irq_off();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003270 spin_lock(&l3->list_lock);
3271 entry = l3->slabs_partial.next;
3272 if (entry == &l3->slabs_partial) {
3273 l3->free_touched = 1;
3274 entry = l3->slabs_free.next;
3275 if (entry == &l3->slabs_free)
3276 goto must_grow;
3277 }
Christoph Lametere498be72005-09-09 13:03:32 -07003278
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003279 slabp = list_entry(entry, struct slab, list);
3280 check_spinlock_acquired_node(cachep, nodeid);
3281 check_slabp(cachep, slabp);
Christoph Lametere498be72005-09-09 13:03:32 -07003282
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003283 STATS_INC_NODEALLOCS(cachep);
3284 STATS_INC_ACTIVE(cachep);
3285 STATS_SET_HIGH(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003286
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003287 BUG_ON(slabp->inuse == cachep->num);
Christoph Lametere498be72005-09-09 13:03:32 -07003288
Matthew Dobson78d382d2006-02-01 03:05:47 -08003289 obj = slab_get_obj(cachep, slabp, nodeid);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003290 check_slabp(cachep, slabp);
3291 l3->free_objects--;
3292 /* move slabp to correct slabp list: */
3293 list_del(&slabp->list);
Christoph Lametere498be72005-09-09 13:03:32 -07003294
Andrew Mortona737b3e2006-03-22 00:08:11 -08003295 if (slabp->free == BUFCTL_END)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003296 list_add(&slabp->list, &l3->slabs_full);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003297 else
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003298 list_add(&slabp->list, &l3->slabs_partial);
Christoph Lametere498be72005-09-09 13:03:32 -07003299
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003300 spin_unlock(&l3->list_lock);
3301 goto done;
Christoph Lametere498be72005-09-09 13:03:32 -07003302
Andrew Mortona737b3e2006-03-22 00:08:11 -08003303must_grow:
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003304 spin_unlock(&l3->list_lock);
Christoph Lameter3c517a62006-12-06 20:33:29 -08003305 x = cache_grow(cachep, flags | GFP_THISNODE, nodeid, NULL);
Christoph Lameter765c4502006-09-27 01:50:08 -07003306 if (x)
3307 goto retry;
Christoph Lametere498be72005-09-09 13:03:32 -07003308
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003309 return fallback_alloc(cachep, flags);
Christoph Lameter765c4502006-09-27 01:50:08 -07003310
Andrew Mortona737b3e2006-03-22 00:08:11 -08003311done:
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003312 return obj;
Christoph Lametere498be72005-09-09 13:03:32 -07003313}
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003314
3315/**
3316 * kmem_cache_alloc_node - Allocate an object on the specified node
3317 * @cachep: The cache to allocate from.
3318 * @flags: See kmalloc().
3319 * @nodeid: node number of the target node.
3320 * @caller: return address of caller, used for debug information
3321 *
3322 * Identical to kmem_cache_alloc but it will allocate memory on the given
3323 * node, which can improve the performance for cpu bound structures.
3324 *
3325 * Fallback to other node is possible if __GFP_THISNODE is not set.
3326 */
3327static __always_inline void *
3328__cache_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid,
3329 void *caller)
3330{
3331 unsigned long save_flags;
3332 void *ptr;
3333
Nick Piggincf40bd12009-01-21 08:12:39 +01003334 lockdep_trace_alloc(flags);
3335
Akinobu Mita773ff602008-12-23 19:37:01 +09003336 if (slab_should_failslab(cachep, flags))
Akinobu Mita824ebef2007-05-06 14:49:58 -07003337 return NULL;
3338
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003339 cache_alloc_debugcheck_before(cachep, flags);
3340 local_irq_save(save_flags);
3341
3342 if (unlikely(nodeid == -1))
3343 nodeid = numa_node_id();
3344
3345 if (unlikely(!cachep->nodelists[nodeid])) {
3346 /* Node not bootstrapped yet */
3347 ptr = fallback_alloc(cachep, flags);
3348 goto out;
3349 }
3350
3351 if (nodeid == numa_node_id()) {
3352 /*
3353 * Use the locally cached objects if possible.
3354 * However ____cache_alloc does not allow fallback
3355 * to other nodes. It may fail while we still have
3356 * objects on other nodes available.
3357 */
3358 ptr = ____cache_alloc(cachep, flags);
3359 if (ptr)
3360 goto out;
3361 }
3362 /* ___cache_alloc_node can fall back to other nodes */
3363 ptr = ____cache_alloc_node(cachep, flags, nodeid);
3364 out:
3365 local_irq_restore(save_flags);
3366 ptr = cache_alloc_debugcheck_after(cachep, flags, ptr, caller);
3367
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003368 if (unlikely((flags & __GFP_ZERO) && ptr))
3369 memset(ptr, 0, obj_size(cachep));
3370
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003371 return ptr;
3372}
3373
3374static __always_inline void *
3375__do_cache_alloc(struct kmem_cache *cache, gfp_t flags)
3376{
3377 void *objp;
3378
3379 if (unlikely(current->flags & (PF_SPREAD_SLAB | PF_MEMPOLICY))) {
3380 objp = alternate_node_alloc(cache, flags);
3381 if (objp)
3382 goto out;
3383 }
3384 objp = ____cache_alloc(cache, flags);
3385
3386 /*
3387 * We may just have run out of memory on the local node.
3388 * ____cache_alloc_node() knows how to locate memory on other nodes
3389 */
3390 if (!objp)
3391 objp = ____cache_alloc_node(cache, flags, numa_node_id());
3392
3393 out:
3394 return objp;
3395}
3396#else
3397
3398static __always_inline void *
3399__do_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
3400{
3401 return ____cache_alloc(cachep, flags);
3402}
3403
3404#endif /* CONFIG_NUMA */
3405
3406static __always_inline void *
3407__cache_alloc(struct kmem_cache *cachep, gfp_t flags, void *caller)
3408{
3409 unsigned long save_flags;
3410 void *objp;
3411
Nick Piggincf40bd12009-01-21 08:12:39 +01003412 lockdep_trace_alloc(flags);
3413
Akinobu Mita773ff602008-12-23 19:37:01 +09003414 if (slab_should_failslab(cachep, flags))
Akinobu Mita824ebef2007-05-06 14:49:58 -07003415 return NULL;
3416
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003417 cache_alloc_debugcheck_before(cachep, flags);
3418 local_irq_save(save_flags);
3419 objp = __do_cache_alloc(cachep, flags);
3420 local_irq_restore(save_flags);
3421 objp = cache_alloc_debugcheck_after(cachep, flags, objp, caller);
3422 prefetchw(objp);
3423
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003424 if (unlikely((flags & __GFP_ZERO) && objp))
3425 memset(objp, 0, obj_size(cachep));
3426
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003427 return objp;
3428}
Christoph Lametere498be72005-09-09 13:03:32 -07003429
3430/*
3431 * Caller needs to acquire correct kmem_list's list_lock
3432 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003433static void free_block(struct kmem_cache *cachep, void **objpp, int nr_objects,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003434 int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003435{
3436 int i;
Christoph Lametere498be72005-09-09 13:03:32 -07003437 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003438
3439 for (i = 0; i < nr_objects; i++) {
3440 void *objp = objpp[i];
3441 struct slab *slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003442
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08003443 slabp = virt_to_slab(objp);
Christoph Lameterff694162005-09-22 21:44:02 -07003444 l3 = cachep->nodelists[node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445 list_del(&slabp->list);
Christoph Lameterff694162005-09-22 21:44:02 -07003446 check_spinlock_acquired_node(cachep, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003447 check_slabp(cachep, slabp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08003448 slab_put_obj(cachep, slabp, objp, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003449 STATS_DEC_ACTIVE(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003450 l3->free_objects++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451 check_slabp(cachep, slabp);
3452
3453 /* fixup slab chains */
3454 if (slabp->inuse == 0) {
Christoph Lametere498be72005-09-09 13:03:32 -07003455 if (l3->free_objects > l3->free_limit) {
3456 l3->free_objects -= cachep->num;
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07003457 /* No need to drop any previously held
3458 * lock here, even if we have a off-slab slab
3459 * descriptor it is guaranteed to come from
3460 * a different cache, refer to comments before
3461 * alloc_slabmgmt.
3462 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003463 slab_destroy(cachep, slabp);
3464 } else {
Christoph Lametere498be72005-09-09 13:03:32 -07003465 list_add(&slabp->list, &l3->slabs_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003466 }
3467 } else {
3468 /* Unconditionally move a slab to the end of the
3469 * partial list on free - maximum time for the
3470 * other objects to be freed, too.
3471 */
Christoph Lametere498be72005-09-09 13:03:32 -07003472 list_add_tail(&slabp->list, &l3->slabs_partial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003473 }
3474 }
3475}
3476
Pekka Enberg343e0d72006-02-01 03:05:50 -08003477static void cache_flusharray(struct kmem_cache *cachep, struct array_cache *ac)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003478{
3479 int batchcount;
Christoph Lametere498be72005-09-09 13:03:32 -07003480 struct kmem_list3 *l3;
Christoph Lameterff694162005-09-22 21:44:02 -07003481 int node = numa_node_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003482
3483 batchcount = ac->batchcount;
3484#if DEBUG
3485 BUG_ON(!batchcount || batchcount > ac->avail);
3486#endif
3487 check_irq_off();
Christoph Lameterff694162005-09-22 21:44:02 -07003488 l3 = cachep->nodelists[node];
Ingo Molnar873623d2006-07-13 14:44:38 +02003489 spin_lock(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07003490 if (l3->shared) {
3491 struct array_cache *shared_array = l3->shared;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003492 int max = shared_array->limit - shared_array->avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493 if (max) {
3494 if (batchcount > max)
3495 batchcount = max;
Christoph Lametere498be72005-09-09 13:03:32 -07003496 memcpy(&(shared_array->entry[shared_array->avail]),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003497 ac->entry, sizeof(void *) * batchcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003498 shared_array->avail += batchcount;
3499 goto free_done;
3500 }
3501 }
3502
Christoph Lameterff694162005-09-22 21:44:02 -07003503 free_block(cachep, ac->entry, batchcount, node);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003504free_done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505#if STATS
3506 {
3507 int i = 0;
3508 struct list_head *p;
3509
Christoph Lametere498be72005-09-09 13:03:32 -07003510 p = l3->slabs_free.next;
3511 while (p != &(l3->slabs_free)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512 struct slab *slabp;
3513
3514 slabp = list_entry(p, struct slab, list);
3515 BUG_ON(slabp->inuse);
3516
3517 i++;
3518 p = p->next;
3519 }
3520 STATS_SET_FREEABLE(cachep, i);
3521 }
3522#endif
Christoph Lametere498be72005-09-09 13:03:32 -07003523 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003524 ac->avail -= batchcount;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003525 memmove(ac->entry, &(ac->entry[batchcount]), sizeof(void *)*ac->avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003526}
3527
3528/*
Andrew Mortona737b3e2006-03-22 00:08:11 -08003529 * Release an obj back to its cache. If the obj has a constructed state, it must
3530 * be in this state _before_ it is released. Called with disabled ints.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531 */
Ingo Molnar873623d2006-07-13 14:44:38 +02003532static inline void __cache_free(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003533{
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003534 struct array_cache *ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003535
3536 check_irq_off();
3537 objp = cache_free_debugcheck(cachep, objp, __builtin_return_address(0));
3538
Siddha, Suresh B1807a1a2007-08-22 14:01:49 -07003539 /*
3540 * Skip calling cache_free_alien() when the platform is not numa.
3541 * This will avoid cache misses that happen while accessing slabp (which
3542 * is per page memory reference) to get nodeid. Instead use a global
3543 * variable to skip the call, which is mostly likely to be present in
3544 * the cache.
3545 */
3546 if (numa_platform && cache_free_alien(cachep, objp))
Pekka Enberg729bd0b2006-06-23 02:03:05 -07003547 return;
Christoph Lametere498be72005-09-09 13:03:32 -07003548
Linus Torvalds1da177e2005-04-16 15:20:36 -07003549 if (likely(ac->avail < ac->limit)) {
3550 STATS_INC_FREEHIT(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003551 ac->entry[ac->avail++] = objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003552 return;
3553 } else {
3554 STATS_INC_FREEMISS(cachep);
3555 cache_flusharray(cachep, ac);
Christoph Lametere498be72005-09-09 13:03:32 -07003556 ac->entry[ac->avail++] = objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003557 }
3558}
3559
3560/**
3561 * kmem_cache_alloc - Allocate an object
3562 * @cachep: The cache to allocate from.
3563 * @flags: See kmalloc().
3564 *
3565 * Allocate an object from this cache. The flags are only relevant
3566 * if the cache has no available objects.
3567 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003568void *kmem_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003569{
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003570 void *ret = __cache_alloc(cachep, flags, __builtin_return_address(0));
3571
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003572 trace_kmem_cache_alloc(_RET_IP_, ret,
3573 obj_size(cachep), cachep->buffer_size, flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003574
3575 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003576}
3577EXPORT_SYMBOL(kmem_cache_alloc);
3578
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003579#ifdef CONFIG_KMEMTRACE
3580void *kmem_cache_alloc_notrace(struct kmem_cache *cachep, gfp_t flags)
3581{
3582 return __cache_alloc(cachep, flags, __builtin_return_address(0));
3583}
3584EXPORT_SYMBOL(kmem_cache_alloc_notrace);
3585#endif
3586
Linus Torvalds1da177e2005-04-16 15:20:36 -07003587/**
Randy Dunlap76824862008-03-19 17:00:40 -07003588 * kmem_ptr_validate - check if an untrusted pointer might be a slab entry.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003589 * @cachep: the cache we're checking against
3590 * @ptr: pointer to validate
3591 *
Randy Dunlap76824862008-03-19 17:00:40 -07003592 * This verifies that the untrusted pointer looks sane;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003593 * it is _not_ a guarantee that the pointer is actually
3594 * part of the slab cache in question, but it at least
3595 * validates that the pointer can be dereferenced and
3596 * looks half-way sane.
3597 *
3598 * Currently only used for dentry validation.
3599 */
Christoph Lameterb7f869a2006-12-22 01:06:44 -08003600int kmem_ptr_validate(struct kmem_cache *cachep, const void *ptr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003601{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003602 unsigned long addr = (unsigned long)ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003603 unsigned long min_addr = PAGE_OFFSET;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003604 unsigned long align_mask = BYTES_PER_WORD - 1;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003605 unsigned long size = cachep->buffer_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606 struct page *page;
3607
3608 if (unlikely(addr < min_addr))
3609 goto out;
3610 if (unlikely(addr > (unsigned long)high_memory - size))
3611 goto out;
3612 if (unlikely(addr & align_mask))
3613 goto out;
3614 if (unlikely(!kern_addr_valid(addr)))
3615 goto out;
3616 if (unlikely(!kern_addr_valid(addr + size - 1)))
3617 goto out;
3618 page = virt_to_page(ptr);
3619 if (unlikely(!PageSlab(page)))
3620 goto out;
Pekka Enberg065d41c2005-11-13 16:06:46 -08003621 if (unlikely(page_get_cache(page) != cachep))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003622 goto out;
3623 return 1;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003624out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003625 return 0;
3626}
3627
3628#ifdef CONFIG_NUMA
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003629void *kmem_cache_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid)
3630{
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003631 void *ret = __cache_alloc_node(cachep, flags, nodeid,
3632 __builtin_return_address(0));
3633
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003634 trace_kmem_cache_alloc_node(_RET_IP_, ret,
3635 obj_size(cachep), cachep->buffer_size,
3636 flags, nodeid);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003637
3638 return ret;
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003639}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003640EXPORT_SYMBOL(kmem_cache_alloc_node);
3641
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003642#ifdef CONFIG_KMEMTRACE
3643void *kmem_cache_alloc_node_notrace(struct kmem_cache *cachep,
3644 gfp_t flags,
3645 int nodeid)
3646{
3647 return __cache_alloc_node(cachep, flags, nodeid,
3648 __builtin_return_address(0));
3649}
3650EXPORT_SYMBOL(kmem_cache_alloc_node_notrace);
3651#endif
3652
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003653static __always_inline void *
3654__do_kmalloc_node(size_t size, gfp_t flags, int node, void *caller)
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003655{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003656 struct kmem_cache *cachep;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003657 void *ret;
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003658
3659 cachep = kmem_find_general_cachep(size, flags);
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003660 if (unlikely(ZERO_OR_NULL_PTR(cachep)))
3661 return cachep;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003662 ret = kmem_cache_alloc_node_notrace(cachep, flags, node);
3663
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003664 trace_kmalloc_node((unsigned long) caller, ret,
3665 size, cachep->buffer_size, flags, node);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003666
3667 return ret;
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003668}
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003669
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003670#if defined(CONFIG_DEBUG_SLAB) || defined(CONFIG_KMEMTRACE)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003671void *__kmalloc_node(size_t size, gfp_t flags, int node)
3672{
3673 return __do_kmalloc_node(size, flags, node,
3674 __builtin_return_address(0));
3675}
Christoph Hellwigdbe5e692006-09-25 23:31:36 -07003676EXPORT_SYMBOL(__kmalloc_node);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003677
3678void *__kmalloc_node_track_caller(size_t size, gfp_t flags,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003679 int node, unsigned long caller)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003680{
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003681 return __do_kmalloc_node(size, flags, node, (void *)caller);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003682}
3683EXPORT_SYMBOL(__kmalloc_node_track_caller);
3684#else
3685void *__kmalloc_node(size_t size, gfp_t flags, int node)
3686{
3687 return __do_kmalloc_node(size, flags, node, NULL);
3688}
3689EXPORT_SYMBOL(__kmalloc_node);
3690#endif /* CONFIG_DEBUG_SLAB */
3691#endif /* CONFIG_NUMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003692
3693/**
Paul Drynoff800590f2006-06-23 02:03:48 -07003694 * __do_kmalloc - allocate memory
Linus Torvalds1da177e2005-04-16 15:20:36 -07003695 * @size: how many bytes of memory are required.
Paul Drynoff800590f2006-06-23 02:03:48 -07003696 * @flags: the type of memory to allocate (see kmalloc).
Randy Dunlap911851e2006-03-22 00:08:14 -08003697 * @caller: function caller for debug tracking of the caller
Linus Torvalds1da177e2005-04-16 15:20:36 -07003698 */
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003699static __always_inline void *__do_kmalloc(size_t size, gfp_t flags,
3700 void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003701{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003702 struct kmem_cache *cachep;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003703 void *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003704
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003705 /* If you want to save a few bytes .text space: replace
3706 * __ with kmem_.
3707 * Then kmalloc uses the uninlined functions instead of the inline
3708 * functions.
3709 */
3710 cachep = __find_general_cachep(size, flags);
Linus Torvaldsa5c96d82007-07-19 13:17:15 -07003711 if (unlikely(ZERO_OR_NULL_PTR(cachep)))
3712 return cachep;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003713 ret = __cache_alloc(cachep, flags, caller);
3714
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003715 trace_kmalloc((unsigned long) caller, ret,
3716 size, cachep->buffer_size, flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003717
3718 return ret;
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003719}
3720
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003721
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003722#if defined(CONFIG_DEBUG_SLAB) || defined(CONFIG_KMEMTRACE)
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003723void *__kmalloc(size_t size, gfp_t flags)
3724{
Al Viro871751e2006-03-25 03:06:39 -08003725 return __do_kmalloc(size, flags, __builtin_return_address(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003726}
3727EXPORT_SYMBOL(__kmalloc);
3728
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003729void *__kmalloc_track_caller(size_t size, gfp_t flags, unsigned long caller)
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003730{
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003731 return __do_kmalloc(size, flags, (void *)caller);
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003732}
3733EXPORT_SYMBOL(__kmalloc_track_caller);
Christoph Hellwig1d2c8ee2006-10-04 02:15:25 -07003734
3735#else
3736void *__kmalloc(size_t size, gfp_t flags)
3737{
3738 return __do_kmalloc(size, flags, NULL);
3739}
3740EXPORT_SYMBOL(__kmalloc);
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003741#endif
3742
Linus Torvalds1da177e2005-04-16 15:20:36 -07003743/**
3744 * kmem_cache_free - Deallocate an object
3745 * @cachep: The cache the allocation was from.
3746 * @objp: The previously allocated object.
3747 *
3748 * Free an object which was previously allocated from this
3749 * cache.
3750 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003751void kmem_cache_free(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003752{
3753 unsigned long flags;
3754
3755 local_irq_save(flags);
Ingo Molnar898552c2007-02-10 01:44:57 -08003756 debug_check_no_locks_freed(objp, obj_size(cachep));
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -07003757 if (!(cachep->flags & SLAB_DEBUG_OBJECTS))
3758 debug_check_no_obj_freed(objp, obj_size(cachep));
Ingo Molnar873623d2006-07-13 14:44:38 +02003759 __cache_free(cachep, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003760 local_irq_restore(flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003761
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003762 trace_kmem_cache_free(_RET_IP_, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003763}
3764EXPORT_SYMBOL(kmem_cache_free);
3765
3766/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003767 * kfree - free previously allocated memory
3768 * @objp: pointer returned by kmalloc.
3769 *
Pekka Enberg80e93ef2005-09-09 13:10:16 -07003770 * If @objp is NULL, no operation is performed.
3771 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003772 * Don't free memory not originally allocated by kmalloc()
3773 * or you will run into trouble.
3774 */
3775void kfree(const void *objp)
3776{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003777 struct kmem_cache *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003778 unsigned long flags;
3779
Pekka Enberg2121db72009-03-25 11:05:57 +02003780 trace_kfree(_RET_IP_, objp);
3781
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003782 if (unlikely(ZERO_OR_NULL_PTR(objp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003783 return;
3784 local_irq_save(flags);
3785 kfree_debugcheck(objp);
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08003786 c = virt_to_cache(objp);
Ingo Molnarf9b84042006-06-27 02:54:49 -07003787 debug_check_no_locks_freed(objp, obj_size(c));
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -07003788 debug_check_no_obj_freed(objp, obj_size(c));
Ingo Molnar873623d2006-07-13 14:44:38 +02003789 __cache_free(c, (void *)objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003790 local_irq_restore(flags);
3791}
3792EXPORT_SYMBOL(kfree);
3793
Pekka Enberg343e0d72006-02-01 03:05:50 -08003794unsigned int kmem_cache_size(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003795{
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003796 return obj_size(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797}
3798EXPORT_SYMBOL(kmem_cache_size);
3799
Pekka Enberg343e0d72006-02-01 03:05:50 -08003800const char *kmem_cache_name(struct kmem_cache *cachep)
Arnaldo Carvalho de Melo19449722005-06-18 22:46:19 -07003801{
3802 return cachep->name;
3803}
3804EXPORT_SYMBOL_GPL(kmem_cache_name);
3805
Christoph Lametere498be72005-09-09 13:03:32 -07003806/*
Simon Arlott183ff222007-10-20 01:27:18 +02003807 * This initializes kmem_list3 or resizes various caches for all nodes.
Christoph Lametere498be72005-09-09 13:03:32 -07003808 */
Pekka Enberg83b519e2009-06-10 19:40:04 +03003809static int alloc_kmemlist(struct kmem_cache *cachep, gfp_t gfp)
Christoph Lametere498be72005-09-09 13:03:32 -07003810{
3811 int node;
3812 struct kmem_list3 *l3;
Christoph Lametercafeb022006-03-25 03:06:46 -08003813 struct array_cache *new_shared;
Paul Menage3395ee02006-12-06 20:32:16 -08003814 struct array_cache **new_alien = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07003815
Mel Gorman9c09a952008-01-24 05:49:54 -08003816 for_each_online_node(node) {
Christoph Lametercafeb022006-03-25 03:06:46 -08003817
Paul Menage3395ee02006-12-06 20:32:16 -08003818 if (use_alien_caches) {
Pekka Enberg83b519e2009-06-10 19:40:04 +03003819 new_alien = alloc_alien_cache(node, cachep->limit, gfp);
Paul Menage3395ee02006-12-06 20:32:16 -08003820 if (!new_alien)
3821 goto fail;
3822 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003823
Eric Dumazet63109842007-05-06 14:49:28 -07003824 new_shared = NULL;
3825 if (cachep->shared) {
3826 new_shared = alloc_arraycache(node,
Christoph Lameter0718dc22006-03-25 03:06:47 -08003827 cachep->shared*cachep->batchcount,
Pekka Enberg83b519e2009-06-10 19:40:04 +03003828 0xbaadf00d, gfp);
Eric Dumazet63109842007-05-06 14:49:28 -07003829 if (!new_shared) {
3830 free_alien_cache(new_alien);
3831 goto fail;
3832 }
Christoph Lameter0718dc22006-03-25 03:06:47 -08003833 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003834
Andrew Mortona737b3e2006-03-22 00:08:11 -08003835 l3 = cachep->nodelists[node];
3836 if (l3) {
Christoph Lametercafeb022006-03-25 03:06:46 -08003837 struct array_cache *shared = l3->shared;
3838
Christoph Lametere498be72005-09-09 13:03:32 -07003839 spin_lock_irq(&l3->list_lock);
3840
Christoph Lametercafeb022006-03-25 03:06:46 -08003841 if (shared)
Christoph Lameter0718dc22006-03-25 03:06:47 -08003842 free_block(cachep, shared->entry,
3843 shared->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -07003844
Christoph Lametercafeb022006-03-25 03:06:46 -08003845 l3->shared = new_shared;
3846 if (!l3->alien) {
Christoph Lametere498be72005-09-09 13:03:32 -07003847 l3->alien = new_alien;
3848 new_alien = NULL;
3849 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003850 l3->free_limit = (1 + nr_cpus_node(node)) *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003851 cachep->batchcount + cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07003852 spin_unlock_irq(&l3->list_lock);
Christoph Lametercafeb022006-03-25 03:06:46 -08003853 kfree(shared);
Christoph Lametere498be72005-09-09 13:03:32 -07003854 free_alien_cache(new_alien);
3855 continue;
3856 }
Pekka Enberg83b519e2009-06-10 19:40:04 +03003857 l3 = kmalloc_node(sizeof(struct kmem_list3), gfp, node);
Christoph Lameter0718dc22006-03-25 03:06:47 -08003858 if (!l3) {
3859 free_alien_cache(new_alien);
3860 kfree(new_shared);
Christoph Lametere498be72005-09-09 13:03:32 -07003861 goto fail;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003862 }
Christoph Lametere498be72005-09-09 13:03:32 -07003863
3864 kmem_list3_init(l3);
3865 l3->next_reap = jiffies + REAPTIMEOUT_LIST3 +
Andrew Mortona737b3e2006-03-22 00:08:11 -08003866 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
Christoph Lametercafeb022006-03-25 03:06:46 -08003867 l3->shared = new_shared;
Christoph Lametere498be72005-09-09 13:03:32 -07003868 l3->alien = new_alien;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003869 l3->free_limit = (1 + nr_cpus_node(node)) *
Andrew Mortona737b3e2006-03-22 00:08:11 -08003870 cachep->batchcount + cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07003871 cachep->nodelists[node] = l3;
3872 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003873 return 0;
Christoph Lameter0718dc22006-03-25 03:06:47 -08003874
Andrew Mortona737b3e2006-03-22 00:08:11 -08003875fail:
Christoph Lameter0718dc22006-03-25 03:06:47 -08003876 if (!cachep->next.next) {
3877 /* Cache is not active yet. Roll back what we did */
3878 node--;
3879 while (node >= 0) {
3880 if (cachep->nodelists[node]) {
3881 l3 = cachep->nodelists[node];
3882
3883 kfree(l3->shared);
3884 free_alien_cache(l3->alien);
3885 kfree(l3);
3886 cachep->nodelists[node] = NULL;
3887 }
3888 node--;
3889 }
3890 }
Christoph Lametercafeb022006-03-25 03:06:46 -08003891 return -ENOMEM;
Christoph Lametere498be72005-09-09 13:03:32 -07003892}
3893
Linus Torvalds1da177e2005-04-16 15:20:36 -07003894struct ccupdate_struct {
Pekka Enberg343e0d72006-02-01 03:05:50 -08003895 struct kmem_cache *cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003896 struct array_cache *new[NR_CPUS];
3897};
3898
3899static void do_ccupdate_local(void *info)
3900{
Andrew Mortona737b3e2006-03-22 00:08:11 -08003901 struct ccupdate_struct *new = info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003902 struct array_cache *old;
3903
3904 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003905 old = cpu_cache_get(new->cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003906
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907 new->cachep->array[smp_processor_id()] = new->new[smp_processor_id()];
3908 new->new[smp_processor_id()] = old;
3909}
3910
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -08003911/* Always called with the cache_chain_mutex held */
Andrew Mortona737b3e2006-03-22 00:08:11 -08003912static int do_tune_cpucache(struct kmem_cache *cachep, int limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03003913 int batchcount, int shared, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003914{
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003915 struct ccupdate_struct *new;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07003916 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003917
Pekka Enberg83b519e2009-06-10 19:40:04 +03003918 new = kzalloc(sizeof(*new), gfp);
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003919 if (!new)
3920 return -ENOMEM;
3921
Christoph Lametere498be72005-09-09 13:03:32 -07003922 for_each_online_cpu(i) {
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003923 new->new[i] = alloc_arraycache(cpu_to_node(i), limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03003924 batchcount, gfp);
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003925 if (!new->new[i]) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003926 for (i--; i >= 0; i--)
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003927 kfree(new->new[i]);
3928 kfree(new);
Christoph Lametere498be72005-09-09 13:03:32 -07003929 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003930 }
3931 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003932 new->cachep = cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003933
Jens Axboe15c8b6c2008-05-09 09:39:44 +02003934 on_each_cpu(do_ccupdate_local, (void *)new, 1);
Christoph Lametere498be72005-09-09 13:03:32 -07003935
Linus Torvalds1da177e2005-04-16 15:20:36 -07003936 check_irq_on();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003937 cachep->batchcount = batchcount;
3938 cachep->limit = limit;
Christoph Lametere498be72005-09-09 13:03:32 -07003939 cachep->shared = shared;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940
Christoph Lametere498be72005-09-09 13:03:32 -07003941 for_each_online_cpu(i) {
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003942 struct array_cache *ccold = new->new[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003943 if (!ccold)
3944 continue;
Christoph Lametere498be72005-09-09 13:03:32 -07003945 spin_lock_irq(&cachep->nodelists[cpu_to_node(i)]->list_lock);
Christoph Lameterff694162005-09-22 21:44:02 -07003946 free_block(cachep, ccold->entry, ccold->avail, cpu_to_node(i));
Christoph Lametere498be72005-09-09 13:03:32 -07003947 spin_unlock_irq(&cachep->nodelists[cpu_to_node(i)]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003948 kfree(ccold);
3949 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07003950 kfree(new);
Pekka Enberg83b519e2009-06-10 19:40:04 +03003951 return alloc_kmemlist(cachep, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003952}
3953
Ravikiran G Thirumalaib5d8ca72006-03-22 00:08:12 -08003954/* Called with cache_chain_mutex held always */
Pekka Enberg83b519e2009-06-10 19:40:04 +03003955static int enable_cpucache(struct kmem_cache *cachep, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003956{
3957 int err;
3958 int limit, shared;
3959
Andrew Mortona737b3e2006-03-22 00:08:11 -08003960 /*
3961 * The head array serves three purposes:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003962 * - create a LIFO ordering, i.e. return objects that are cache-warm
3963 * - reduce the number of spinlock operations.
Andrew Mortona737b3e2006-03-22 00:08:11 -08003964 * - reduce the number of linked list operations on the slab and
Linus Torvalds1da177e2005-04-16 15:20:36 -07003965 * bufctl chains: array operations are cheaper.
3966 * The numbers are guessed, we should auto-tune as described by
3967 * Bonwick.
3968 */
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003969 if (cachep->buffer_size > 131072)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003970 limit = 1;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003971 else if (cachep->buffer_size > PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003972 limit = 8;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003973 else if (cachep->buffer_size > 1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003974 limit = 24;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003975 else if (cachep->buffer_size > 256)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003976 limit = 54;
3977 else
3978 limit = 120;
3979
Andrew Mortona737b3e2006-03-22 00:08:11 -08003980 /*
3981 * CPU bound tasks (e.g. network routing) can exhibit cpu bound
Linus Torvalds1da177e2005-04-16 15:20:36 -07003982 * allocation behaviour: Most allocs on one cpu, most free operations
3983 * on another cpu. For these cases, an efficient object passing between
3984 * cpus is necessary. This is provided by a shared array. The array
3985 * replaces Bonwick's magazine layer.
3986 * On uniprocessor, it's functionally equivalent (but less efficient)
3987 * to a larger limit. Thus disabled by default.
3988 */
3989 shared = 0;
Eric Dumazet364fbb22007-05-06 14:49:27 -07003990 if (cachep->buffer_size <= PAGE_SIZE && num_possible_cpus() > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003991 shared = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003992
3993#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08003994 /*
3995 * With debugging enabled, large batchcount lead to excessively long
3996 * periods with disabled local interrupts. Limit the batchcount
Linus Torvalds1da177e2005-04-16 15:20:36 -07003997 */
3998 if (limit > 32)
3999 limit = 32;
4000#endif
Pekka Enberg83b519e2009-06-10 19:40:04 +03004001 err = do_tune_cpucache(cachep, limit, (limit + 1) / 2, shared, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004002 if (err)
4003 printk(KERN_ERR "enable_cpucache failed for %s, error %d.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004004 cachep->name, -err);
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07004005 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004006}
4007
Christoph Lameter1b552532006-03-22 00:09:07 -08004008/*
4009 * Drain an array if it contains any elements taking the l3 lock only if
Christoph Lameterb18e7e62006-03-22 00:09:07 -08004010 * necessary. Note that the l3 listlock also protects the array_cache
4011 * if drain_array() is used on the shared array.
Christoph Lameter1b552532006-03-22 00:09:07 -08004012 */
4013void drain_array(struct kmem_cache *cachep, struct kmem_list3 *l3,
4014 struct array_cache *ac, int force, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004015{
4016 int tofree;
4017
Christoph Lameter1b552532006-03-22 00:09:07 -08004018 if (!ac || !ac->avail)
4019 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004020 if (ac->touched && !force) {
4021 ac->touched = 0;
Christoph Lameterb18e7e62006-03-22 00:09:07 -08004022 } else {
Christoph Lameter1b552532006-03-22 00:09:07 -08004023 spin_lock_irq(&l3->list_lock);
Christoph Lameterb18e7e62006-03-22 00:09:07 -08004024 if (ac->avail) {
4025 tofree = force ? ac->avail : (ac->limit + 4) / 5;
4026 if (tofree > ac->avail)
4027 tofree = (ac->avail + 1) / 2;
4028 free_block(cachep, ac->entry, tofree, node);
4029 ac->avail -= tofree;
4030 memmove(ac->entry, &(ac->entry[tofree]),
4031 sizeof(void *) * ac->avail);
4032 }
Christoph Lameter1b552532006-03-22 00:09:07 -08004033 spin_unlock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004034 }
4035}
4036
4037/**
4038 * cache_reap - Reclaim memory from caches.
Randy Dunlap05fb6bf2007-02-28 20:12:13 -08004039 * @w: work descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -07004040 *
4041 * Called from workqueue/eventd every few seconds.
4042 * Purpose:
4043 * - clear the per-cpu caches for this CPU.
4044 * - return freeable pages to the main free memory pool.
4045 *
Andrew Mortona737b3e2006-03-22 00:08:11 -08004046 * If we cannot acquire the cache chain mutex then just give up - we'll try
4047 * again on the next iteration.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004048 */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004049static void cache_reap(struct work_struct *w)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004050{
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004051 struct kmem_cache *searchp;
Christoph Lametere498be72005-09-09 13:03:32 -07004052 struct kmem_list3 *l3;
Christoph Lameteraab22072006-03-22 00:09:06 -08004053 int node = numa_node_id();
Jean Delvarebf6aede2009-04-02 16:56:54 -07004054 struct delayed_work *work = to_delayed_work(w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004055
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004056 if (!mutex_trylock(&cache_chain_mutex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004057 /* Give up. Setup the next iteration. */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004058 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004059
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004060 list_for_each_entry(searchp, &cache_chain, next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004061 check_irq_on();
4062
Christoph Lameter35386e32006-03-22 00:09:05 -08004063 /*
4064 * We only take the l3 lock if absolutely necessary and we
4065 * have established with reasonable certainty that
4066 * we can do some work if the lock was obtained.
4067 */
Christoph Lameteraab22072006-03-22 00:09:06 -08004068 l3 = searchp->nodelists[node];
Christoph Lameter35386e32006-03-22 00:09:05 -08004069
Christoph Lameter8fce4d82006-03-09 17:33:54 -08004070 reap_alien(searchp, l3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004071
Christoph Lameteraab22072006-03-22 00:09:06 -08004072 drain_array(searchp, l3, cpu_cache_get(searchp), 0, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004073
Christoph Lameter35386e32006-03-22 00:09:05 -08004074 /*
4075 * These are racy checks but it does not matter
4076 * if we skip one check or scan twice.
4077 */
Christoph Lametere498be72005-09-09 13:03:32 -07004078 if (time_after(l3->next_reap, jiffies))
Christoph Lameter35386e32006-03-22 00:09:05 -08004079 goto next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004080
Christoph Lametere498be72005-09-09 13:03:32 -07004081 l3->next_reap = jiffies + REAPTIMEOUT_LIST3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004082
Christoph Lameteraab22072006-03-22 00:09:06 -08004083 drain_array(searchp, l3, l3->shared, 0, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004084
Christoph Lametered11d9e2006-06-30 01:55:45 -07004085 if (l3->free_touched)
Christoph Lametere498be72005-09-09 13:03:32 -07004086 l3->free_touched = 0;
Christoph Lametered11d9e2006-06-30 01:55:45 -07004087 else {
4088 int freed;
4089
4090 freed = drain_freelist(searchp, l3, (l3->free_limit +
4091 5 * searchp->num - 1) / (5 * searchp->num));
4092 STATS_ADD_REAPED(searchp, freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004093 }
Christoph Lameter35386e32006-03-22 00:09:05 -08004094next:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004095 cond_resched();
4096 }
4097 check_irq_on();
Ingo Molnarfc0abb12006-01-18 17:42:33 -08004098 mutex_unlock(&cache_chain_mutex);
Christoph Lameter8fce4d82006-03-09 17:33:54 -08004099 next_reap_node();
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004100out:
Andrew Mortona737b3e2006-03-22 00:08:11 -08004101 /* Set up the next iteration */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004102 schedule_delayed_work(work, round_jiffies_relative(REAPTIMEOUT_CPUC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004103}
4104
Linus Torvalds158a9622008-01-02 13:04:48 -08004105#ifdef CONFIG_SLABINFO
Linus Torvalds1da177e2005-04-16 15:20:36 -07004106
Pekka Enberg85289f92006-01-08 01:00:36 -08004107static void print_slabinfo_header(struct seq_file *m)
4108{
4109 /*
4110 * Output format version, so at least we can change it
4111 * without _too_ many complaints.
4112 */
4113#if STATS
4114 seq_puts(m, "slabinfo - version: 2.1 (statistics)\n");
4115#else
4116 seq_puts(m, "slabinfo - version: 2.1\n");
4117#endif
4118 seq_puts(m, "# name <active_objs> <num_objs> <objsize> "
4119 "<objperslab> <pagesperslab>");
4120 seq_puts(m, " : tunables <limit> <batchcount> <sharedfactor>");
4121 seq_puts(m, " : slabdata <active_slabs> <num_slabs> <sharedavail>");
4122#if STATS
4123 seq_puts(m, " : globalstat <listallocs> <maxobjs> <grown> <reaped> "
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -07004124 "<error> <maxfreeable> <nodeallocs> <remotefrees> <alienoverflow>");
Pekka Enberg85289f92006-01-08 01:00:36 -08004125 seq_puts(m, " : cpustat <allochit> <allocmiss> <freehit> <freemiss>");
4126#endif
4127 seq_putc(m, '\n');
4128}
4129
Linus Torvalds1da177e2005-04-16 15:20:36 -07004130static void *s_start(struct seq_file *m, loff_t *pos)
4131{
4132 loff_t n = *pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004133
Ingo Molnarfc0abb12006-01-18 17:42:33 -08004134 mutex_lock(&cache_chain_mutex);
Pekka Enberg85289f92006-01-08 01:00:36 -08004135 if (!n)
4136 print_slabinfo_header(m);
Pavel Emelianovb92151b2007-07-15 23:38:04 -07004137
4138 return seq_list_start(&cache_chain, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004139}
4140
4141static void *s_next(struct seq_file *m, void *p, loff_t *pos)
4142{
Pavel Emelianovb92151b2007-07-15 23:38:04 -07004143 return seq_list_next(p, &cache_chain, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004144}
4145
4146static void s_stop(struct seq_file *m, void *p)
4147{
Ingo Molnarfc0abb12006-01-18 17:42:33 -08004148 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004149}
4150
4151static int s_show(struct seq_file *m, void *p)
4152{
Pavel Emelianovb92151b2007-07-15 23:38:04 -07004153 struct kmem_cache *cachep = list_entry(p, struct kmem_cache, next);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004154 struct slab *slabp;
4155 unsigned long active_objs;
4156 unsigned long num_objs;
4157 unsigned long active_slabs = 0;
4158 unsigned long num_slabs, free_objects = 0, shared_avail = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07004159 const char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004160 char *error = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07004161 int node;
4162 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004163
Linus Torvalds1da177e2005-04-16 15:20:36 -07004164 active_objs = 0;
4165 num_slabs = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07004166 for_each_online_node(node) {
4167 l3 = cachep->nodelists[node];
4168 if (!l3)
4169 continue;
4170
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08004171 check_irq_on();
4172 spin_lock_irq(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07004173
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004174 list_for_each_entry(slabp, &l3->slabs_full, list) {
Christoph Lametere498be72005-09-09 13:03:32 -07004175 if (slabp->inuse != cachep->num && !error)
4176 error = "slabs_full accounting error";
4177 active_objs += cachep->num;
4178 active_slabs++;
4179 }
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004180 list_for_each_entry(slabp, &l3->slabs_partial, list) {
Christoph Lametere498be72005-09-09 13:03:32 -07004181 if (slabp->inuse == cachep->num && !error)
4182 error = "slabs_partial inuse accounting error";
4183 if (!slabp->inuse && !error)
4184 error = "slabs_partial/inuse accounting error";
4185 active_objs += slabp->inuse;
4186 active_slabs++;
4187 }
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004188 list_for_each_entry(slabp, &l3->slabs_free, list) {
Christoph Lametere498be72005-09-09 13:03:32 -07004189 if (slabp->inuse && !error)
4190 error = "slabs_free/inuse accounting error";
4191 num_slabs++;
4192 }
4193 free_objects += l3->free_objects;
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08004194 if (l3->shared)
4195 shared_avail += l3->shared->avail;
Christoph Lametere498be72005-09-09 13:03:32 -07004196
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08004197 spin_unlock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004198 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004199 num_slabs += active_slabs;
4200 num_objs = num_slabs * cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07004201 if (num_objs - active_objs != free_objects && !error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004202 error = "free_objects accounting error";
4203
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004204 name = cachep->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004205 if (error)
4206 printk(KERN_ERR "slab: cache %s error: %s\n", name, error);
4207
4208 seq_printf(m, "%-17s %6lu %6lu %6u %4u %4d",
Manfred Spraul3dafccf2006-02-01 03:05:42 -08004209 name, active_objs, num_objs, cachep->buffer_size,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004210 cachep->num, (1 << cachep->gfporder));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004211 seq_printf(m, " : tunables %4u %4u %4u",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004212 cachep->limit, cachep->batchcount, cachep->shared);
Christoph Lametere498be72005-09-09 13:03:32 -07004213 seq_printf(m, " : slabdata %6lu %6lu %6lu",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004214 active_slabs, num_slabs, shared_avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004215#if STATS
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004216 { /* list3 stats */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004217 unsigned long high = cachep->high_mark;
4218 unsigned long allocs = cachep->num_allocations;
4219 unsigned long grown = cachep->grown;
4220 unsigned long reaped = cachep->reaped;
4221 unsigned long errors = cachep->errors;
4222 unsigned long max_freeable = cachep->max_freeable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004223 unsigned long node_allocs = cachep->node_allocs;
Christoph Lametere498be72005-09-09 13:03:32 -07004224 unsigned long node_frees = cachep->node_frees;
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -07004225 unsigned long overflows = cachep->node_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004226
Christoph Lametere498be72005-09-09 13:03:32 -07004227 seq_printf(m, " : globalstat %7lu %6lu %5lu %4lu \
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -07004228 %4lu %4lu %4lu %4lu %4lu", allocs, high, grown,
Andrew Mortona737b3e2006-03-22 00:08:11 -08004229 reaped, errors, max_freeable, node_allocs,
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -07004230 node_frees, overflows);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004231 }
4232 /* cpu stats */
4233 {
4234 unsigned long allochit = atomic_read(&cachep->allochit);
4235 unsigned long allocmiss = atomic_read(&cachep->allocmiss);
4236 unsigned long freehit = atomic_read(&cachep->freehit);
4237 unsigned long freemiss = atomic_read(&cachep->freemiss);
4238
4239 seq_printf(m, " : cpustat %6lu %6lu %6lu %6lu",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004240 allochit, allocmiss, freehit, freemiss);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004241 }
4242#endif
4243 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07004244 return 0;
4245}
4246
4247/*
4248 * slabinfo_op - iterator that generates /proc/slabinfo
4249 *
4250 * Output layout:
4251 * cache-name
4252 * num-active-objs
4253 * total-objs
4254 * object size
4255 * num-active-slabs
4256 * total-slabs
4257 * num-pages-per-slab
4258 * + further values on SMP and with statistics enabled
4259 */
4260
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04004261static const struct seq_operations slabinfo_op = {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004262 .start = s_start,
4263 .next = s_next,
4264 .stop = s_stop,
4265 .show = s_show,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004266};
4267
4268#define MAX_SLABINFO_WRITE 128
4269/**
4270 * slabinfo_write - Tuning for the slab allocator
4271 * @file: unused
4272 * @buffer: user buffer
4273 * @count: data length
4274 * @ppos: unused
4275 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004276ssize_t slabinfo_write(struct file *file, const char __user * buffer,
4277 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004278{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004279 char kbuf[MAX_SLABINFO_WRITE + 1], *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004280 int limit, batchcount, shared, res;
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004281 struct kmem_cache *cachep;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004282
Linus Torvalds1da177e2005-04-16 15:20:36 -07004283 if (count > MAX_SLABINFO_WRITE)
4284 return -EINVAL;
4285 if (copy_from_user(&kbuf, buffer, count))
4286 return -EFAULT;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004287 kbuf[MAX_SLABINFO_WRITE] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07004288
4289 tmp = strchr(kbuf, ' ');
4290 if (!tmp)
4291 return -EINVAL;
4292 *tmp = '\0';
4293 tmp++;
4294 if (sscanf(tmp, " %d %d %d", &limit, &batchcount, &shared) != 3)
4295 return -EINVAL;
4296
4297 /* Find the cache in the chain of caches. */
Ingo Molnarfc0abb12006-01-18 17:42:33 -08004298 mutex_lock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004299 res = -EINVAL;
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004300 list_for_each_entry(cachep, &cache_chain, next) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004301 if (!strcmp(cachep->name, kbuf)) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08004302 if (limit < 1 || batchcount < 1 ||
4303 batchcount > limit || shared < 0) {
Christoph Lametere498be72005-09-09 13:03:32 -07004304 res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004305 } else {
Christoph Lametere498be72005-09-09 13:03:32 -07004306 res = do_tune_cpucache(cachep, limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03004307 batchcount, shared,
4308 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004309 }
4310 break;
4311 }
4312 }
Ingo Molnarfc0abb12006-01-18 17:42:33 -08004313 mutex_unlock(&cache_chain_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004314 if (res >= 0)
4315 res = count;
4316 return res;
4317}
Al Viro871751e2006-03-25 03:06:39 -08004318
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04004319static int slabinfo_open(struct inode *inode, struct file *file)
4320{
4321 return seq_open(file, &slabinfo_op);
4322}
4323
4324static const struct file_operations proc_slabinfo_operations = {
4325 .open = slabinfo_open,
4326 .read = seq_read,
4327 .write = slabinfo_write,
4328 .llseek = seq_lseek,
4329 .release = seq_release,
4330};
4331
Al Viro871751e2006-03-25 03:06:39 -08004332#ifdef CONFIG_DEBUG_SLAB_LEAK
4333
4334static void *leaks_start(struct seq_file *m, loff_t *pos)
4335{
Al Viro871751e2006-03-25 03:06:39 -08004336 mutex_lock(&cache_chain_mutex);
Pavel Emelianovb92151b2007-07-15 23:38:04 -07004337 return seq_list_start(&cache_chain, *pos);
Al Viro871751e2006-03-25 03:06:39 -08004338}
4339
4340static inline int add_caller(unsigned long *n, unsigned long v)
4341{
4342 unsigned long *p;
4343 int l;
4344 if (!v)
4345 return 1;
4346 l = n[1];
4347 p = n + 2;
4348 while (l) {
4349 int i = l/2;
4350 unsigned long *q = p + 2 * i;
4351 if (*q == v) {
4352 q[1]++;
4353 return 1;
4354 }
4355 if (*q > v) {
4356 l = i;
4357 } else {
4358 p = q + 2;
4359 l -= i + 1;
4360 }
4361 }
4362 if (++n[1] == n[0])
4363 return 0;
4364 memmove(p + 2, p, n[1] * 2 * sizeof(unsigned long) - ((void *)p - (void *)n));
4365 p[0] = v;
4366 p[1] = 1;
4367 return 1;
4368}
4369
4370static void handle_slab(unsigned long *n, struct kmem_cache *c, struct slab *s)
4371{
4372 void *p;
4373 int i;
4374 if (n[0] == n[1])
4375 return;
4376 for (i = 0, p = s->s_mem; i < c->num; i++, p += c->buffer_size) {
4377 if (slab_bufctl(s)[i] != BUFCTL_ACTIVE)
4378 continue;
4379 if (!add_caller(n, (unsigned long)*dbg_userword(c, p)))
4380 return;
4381 }
4382}
4383
4384static void show_symbol(struct seq_file *m, unsigned long address)
4385{
4386#ifdef CONFIG_KALLSYMS
Al Viro871751e2006-03-25 03:06:39 -08004387 unsigned long offset, size;
Tejun Heo9281ace2007-07-17 04:03:51 -07004388 char modname[MODULE_NAME_LEN], name[KSYM_NAME_LEN];
Al Viro871751e2006-03-25 03:06:39 -08004389
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004390 if (lookup_symbol_attrs(address, &size, &offset, modname, name) == 0) {
Al Viro871751e2006-03-25 03:06:39 -08004391 seq_printf(m, "%s+%#lx/%#lx", name, offset, size);
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004392 if (modname[0])
Al Viro871751e2006-03-25 03:06:39 -08004393 seq_printf(m, " [%s]", modname);
4394 return;
4395 }
4396#endif
4397 seq_printf(m, "%p", (void *)address);
4398}
4399
4400static int leaks_show(struct seq_file *m, void *p)
4401{
Pavel Emelianovb92151b2007-07-15 23:38:04 -07004402 struct kmem_cache *cachep = list_entry(p, struct kmem_cache, next);
Al Viro871751e2006-03-25 03:06:39 -08004403 struct slab *slabp;
4404 struct kmem_list3 *l3;
4405 const char *name;
4406 unsigned long *n = m->private;
4407 int node;
4408 int i;
4409
4410 if (!(cachep->flags & SLAB_STORE_USER))
4411 return 0;
4412 if (!(cachep->flags & SLAB_RED_ZONE))
4413 return 0;
4414
4415 /* OK, we can do it */
4416
4417 n[1] = 0;
4418
4419 for_each_online_node(node) {
4420 l3 = cachep->nodelists[node];
4421 if (!l3)
4422 continue;
4423
4424 check_irq_on();
4425 spin_lock_irq(&l3->list_lock);
4426
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004427 list_for_each_entry(slabp, &l3->slabs_full, list)
Al Viro871751e2006-03-25 03:06:39 -08004428 handle_slab(n, cachep, slabp);
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004429 list_for_each_entry(slabp, &l3->slabs_partial, list)
Al Viro871751e2006-03-25 03:06:39 -08004430 handle_slab(n, cachep, slabp);
Al Viro871751e2006-03-25 03:06:39 -08004431 spin_unlock_irq(&l3->list_lock);
4432 }
4433 name = cachep->name;
4434 if (n[0] == n[1]) {
4435 /* Increase the buffer size */
4436 mutex_unlock(&cache_chain_mutex);
4437 m->private = kzalloc(n[0] * 4 * sizeof(unsigned long), GFP_KERNEL);
4438 if (!m->private) {
4439 /* Too bad, we are really out */
4440 m->private = n;
4441 mutex_lock(&cache_chain_mutex);
4442 return -ENOMEM;
4443 }
4444 *(unsigned long *)m->private = n[0] * 2;
4445 kfree(n);
4446 mutex_lock(&cache_chain_mutex);
4447 /* Now make sure this entry will be retried */
4448 m->count = m->size;
4449 return 0;
4450 }
4451 for (i = 0; i < n[1]; i++) {
4452 seq_printf(m, "%s: %lu ", name, n[2*i+3]);
4453 show_symbol(m, n[2*i+2]);
4454 seq_putc(m, '\n');
4455 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004456
Al Viro871751e2006-03-25 03:06:39 -08004457 return 0;
4458}
4459
Alexey Dobriyana0ec95a82008-10-06 00:59:10 +04004460static const struct seq_operations slabstats_op = {
Al Viro871751e2006-03-25 03:06:39 -08004461 .start = leaks_start,
4462 .next = s_next,
4463 .stop = s_stop,
4464 .show = leaks_show,
4465};
Alexey Dobriyana0ec95a82008-10-06 00:59:10 +04004466
4467static int slabstats_open(struct inode *inode, struct file *file)
4468{
4469 unsigned long *n = kzalloc(PAGE_SIZE, GFP_KERNEL);
4470 int ret = -ENOMEM;
4471 if (n) {
4472 ret = seq_open(file, &slabstats_op);
4473 if (!ret) {
4474 struct seq_file *m = file->private_data;
4475 *n = PAGE_SIZE / (2 * sizeof(unsigned long));
4476 m->private = n;
4477 n = NULL;
4478 }
4479 kfree(n);
4480 }
4481 return ret;
4482}
4483
4484static const struct file_operations proc_slabstats_operations = {
4485 .open = slabstats_open,
4486 .read = seq_read,
4487 .llseek = seq_lseek,
4488 .release = seq_release_private,
4489};
Al Viro871751e2006-03-25 03:06:39 -08004490#endif
Alexey Dobriyana0ec95a82008-10-06 00:59:10 +04004491
4492static int __init slab_proc_init(void)
4493{
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04004494 proc_create("slabinfo",S_IWUSR|S_IRUGO,NULL,&proc_slabinfo_operations);
Alexey Dobriyana0ec95a82008-10-06 00:59:10 +04004495#ifdef CONFIG_DEBUG_SLAB_LEAK
4496 proc_create("slab_allocators", 0, NULL, &proc_slabstats_operations);
4497#endif
4498 return 0;
4499}
4500module_init(slab_proc_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004501#endif
4502
Manfred Spraul00e145b2005-09-03 15:55:07 -07004503/**
4504 * ksize - get the actual amount of memory allocated for a given object
4505 * @objp: Pointer to the object
4506 *
4507 * kmalloc may internally round up allocations and return more memory
4508 * than requested. ksize() can be used to determine the actual amount of
4509 * memory allocated. The caller may use this additional memory, even though
4510 * a smaller amount of memory was initially specified with the kmalloc call.
4511 * The caller must guarantee that objp points to a valid object previously
4512 * allocated with either kmalloc() or kmem_cache_alloc(). The object
4513 * must not be freed during the duration of the call.
4514 */
Pekka Enbergfd76bab2007-05-06 14:48:40 -07004515size_t ksize(const void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004516{
Christoph Lameteref8b4522007-10-16 01:24:46 -07004517 BUG_ON(!objp);
4518 if (unlikely(objp == ZERO_SIZE_PTR))
Manfred Spraul00e145b2005-09-03 15:55:07 -07004519 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004520
Pekka Enberg6ed5eb22006-02-01 03:05:49 -08004521 return obj_size(virt_to_cache(objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004522}
Kirill A. Shutemovb1aabec2009-02-10 15:21:44 +02004523EXPORT_SYMBOL(ksize);