blob: 55d84a22ad961c01177a2b1dbb464f5c65a04254 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/mm/slab.c
3 * Written by Mark Hemment, 1996/97.
4 * (markhe@nextd.demon.co.uk)
5 *
6 * kmem_cache_destroy() + some cleanup - 1999 Andrea Arcangeli
7 *
8 * Major cleanup, different bufctl logic, per-cpu arrays
9 * (c) 2000 Manfred Spraul
10 *
11 * Cleanup, make the head arrays unconditional, preparation for NUMA
12 * (c) 2002 Manfred Spraul
13 *
14 * An implementation of the Slab Allocator as described in outline in;
15 * UNIX Internals: The New Frontiers by Uresh Vahalia
16 * Pub: Prentice Hall ISBN 0-13-101908-2
17 * or with a little more detail in;
18 * The Slab Allocator: An Object-Caching Kernel Memory Allocator
19 * Jeff Bonwick (Sun Microsystems).
20 * Presented at: USENIX Summer 1994 Technical Conference
21 *
22 * The memory is organized in caches, one cache for each object type.
23 * (e.g. inode_cache, dentry_cache, buffer_head, vm_area_struct)
24 * Each cache consists out of many slabs (they are small (usually one
25 * page long) and always contiguous), and each slab contains multiple
26 * initialized objects.
27 *
28 * This means, that your constructor is used only for newly allocated
Simon Arlott183ff222007-10-20 01:27:18 +020029 * slabs and you must pass objects with the same initializations to
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 * kmem_cache_free.
31 *
32 * Each cache can only support one memory type (GFP_DMA, GFP_HIGHMEM,
33 * normal). If you need a special memory type, then must create a new
34 * cache for that memory type.
35 *
36 * In order to reduce fragmentation, the slabs are sorted in 3 groups:
37 * full slabs with 0 free objects
38 * partial slabs
39 * empty slabs with no allocated objects
40 *
41 * If partial slabs exist, then new allocations come from these slabs,
42 * otherwise from empty slabs or new slabs are allocated.
43 *
44 * kmem_cache_destroy() CAN CRASH if you try to allocate from the cache
45 * during kmem_cache_destroy(). The caller must prevent concurrent allocs.
46 *
47 * Each cache has a short per-cpu head array, most allocs
48 * and frees go into that array, and if that array overflows, then 1/2
49 * of the entries in the array are given back into the global cache.
50 * The head array is strictly LIFO and should improve the cache hit rates.
51 * On SMP, it additionally reduces the spinlock operations.
52 *
Andrew Mortona737b3e2006-03-22 00:08:11 -080053 * The c_cpuarray may not be read with enabled local interrupts -
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 * it's changed with a smp_call_function().
55 *
56 * SMP synchronization:
57 * constructors and destructors are called without any locking.
Pekka Enberg343e0d72006-02-01 03:05:50 -080058 * Several members in struct kmem_cache and struct slab never change, they
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 * are accessed without any locking.
60 * The per-cpu arrays are never accessed from the wrong cpu, no locking,
61 * and local interrupts are disabled so slab code is preempt-safe.
62 * The non-constant members are protected with a per-cache irq spinlock.
63 *
64 * Many thanks to Mark Hemment, who wrote another per-cpu slab patch
65 * in 2000 - many ideas in the current implementation are derived from
66 * his patch.
67 *
68 * Further notes from the original documentation:
69 *
70 * 11 April '97. Started multi-threading - markhe
Christoph Lameter18004c52012-07-06 15:25:12 -050071 * The global cache-chain is protected by the mutex 'slab_mutex'.
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 * The sem is only needed when accessing/extending the cache-chain, which
73 * can never happen inside an interrupt (kmem_cache_create(),
74 * kmem_cache_shrink() and kmem_cache_reap()).
75 *
76 * At present, each engine can be growing a cache. This should be blocked.
77 *
Christoph Lametere498be72005-09-09 13:03:32 -070078 * 15 March 2005. NUMA slab allocator.
79 * Shai Fultheim <shai@scalex86.org>.
80 * Shobhit Dayal <shobhit@calsoftinc.com>
81 * Alok N Kataria <alokk@calsoftinc.com>
82 * Christoph Lameter <christoph@lameter.com>
83 *
84 * Modified the slab allocator to be node aware on NUMA systems.
85 * Each node has its own list of partial, free and full slabs.
86 * All object allocations for a node occur from node specific slab lists.
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 */
88
Linus Torvalds1da177e2005-04-16 15:20:36 -070089#include <linux/slab.h>
Christoph Lameter97d06602012-07-06 15:25:11 -050090#include "slab.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070091#include <linux/mm.h>
Randy Dunlapc9cf5522006-06-27 02:53:52 -070092#include <linux/poison.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070093#include <linux/swap.h>
94#include <linux/cache.h>
95#include <linux/interrupt.h>
96#include <linux/init.h>
97#include <linux/compiler.h>
Paul Jackson101a5002006-03-24 03:16:07 -080098#include <linux/cpuset.h>
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +040099#include <linux/proc_fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100#include <linux/seq_file.h>
101#include <linux/notifier.h>
102#include <linux/kallsyms.h>
103#include <linux/cpu.h>
104#include <linux/sysctl.h>
105#include <linux/module.h>
106#include <linux/rcupdate.h>
Paulo Marques543537b2005-06-23 00:09:02 -0700107#include <linux/string.h>
Andrew Morton138ae662006-12-06 20:36:41 -0800108#include <linux/uaccess.h>
Christoph Lametere498be72005-09-09 13:03:32 -0700109#include <linux/nodemask.h>
Catalin Marinasd5cff632009-06-11 13:22:40 +0100110#include <linux/kmemleak.h>
Christoph Lameterdc85da12006-01-18 17:42:36 -0800111#include <linux/mempolicy.h>
Ingo Molnarfc0abb12006-01-18 17:42:33 -0800112#include <linux/mutex.h>
Akinobu Mita8a8b6502006-12-08 02:39:44 -0800113#include <linux/fault-inject.h>
Ingo Molnare7eebaf2006-06-27 02:54:55 -0700114#include <linux/rtmutex.h>
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800115#include <linux/reciprocal_div.h>
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700116#include <linux/debugobjects.h>
Pekka Enbergc175eea2008-05-09 20:35:53 +0200117#include <linux/kmemcheck.h>
David Rientjes8f9f8d92010-03-27 19:40:47 -0700118#include <linux/memory.h>
Linus Torvalds268bb0c2011-05-20 12:50:29 -0700119#include <linux/prefetch.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121#include <asm/cacheflush.h>
122#include <asm/tlbflush.h>
123#include <asm/page.h>
124
Steven Rostedt4dee6b62012-01-09 17:15:42 -0500125#include <trace/events/kmem.h>
126
Mel Gorman072bb0a2012-07-31 16:43:58 -0700127#include "internal.h"
128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129/*
Christoph Lameter50953fe2007-05-06 14:50:16 -0700130 * DEBUG - 1 for kmem_cache_create() to honour; SLAB_RED_ZONE & SLAB_POISON.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 * 0 for faster, smaller code (especially in the critical paths).
132 *
133 * STATS - 1 to collect stats for /proc/slabinfo.
134 * 0 for faster, smaller code (especially in the critical paths).
135 *
136 * FORCED_DEBUG - 1 enables SLAB_RED_ZONE and SLAB_POISON (if possible)
137 */
138
139#ifdef CONFIG_DEBUG_SLAB
140#define DEBUG 1
141#define STATS 1
142#define FORCED_DEBUG 1
143#else
144#define DEBUG 0
145#define STATS 0
146#define FORCED_DEBUG 0
147#endif
148
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149/* Shouldn't this be in a header file somewhere? */
150#define BYTES_PER_WORD sizeof(void *)
David Woodhouse87a927c2007-07-04 21:26:44 -0400151#define REDZONE_ALIGN max(BYTES_PER_WORD, __alignof__(unsigned long long))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153#ifndef ARCH_KMALLOC_FLAGS
154#define ARCH_KMALLOC_FLAGS SLAB_HWCACHE_ALIGN
155#endif
156
Mel Gorman072bb0a2012-07-31 16:43:58 -0700157/*
158 * true if a page was allocated from pfmemalloc reserves for network-based
159 * swap
160 */
161static bool pfmemalloc_active __read_mostly;
162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163/* Legal flag mask for kmem_cache_create(). */
164#if DEBUG
Christoph Lameter50953fe2007-05-06 14:50:16 -0700165# define CREATE_MASK (SLAB_RED_ZONE | \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 SLAB_POISON | SLAB_HWCACHE_ALIGN | \
Christoph Lameterac2b8982006-03-22 00:08:15 -0800167 SLAB_CACHE_DMA | \
Christoph Lameter5af60832007-05-06 14:49:56 -0700168 SLAB_STORE_USER | \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 SLAB_RECLAIM_ACCOUNT | SLAB_PANIC | \
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700170 SLAB_DESTROY_BY_RCU | SLAB_MEM_SPREAD | \
Pekka Enbergc175eea2008-05-09 20:35:53 +0200171 SLAB_DEBUG_OBJECTS | SLAB_NOLEAKTRACE | SLAB_NOTRACK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172#else
Christoph Lameterac2b8982006-03-22 00:08:15 -0800173# define CREATE_MASK (SLAB_HWCACHE_ALIGN | \
Christoph Lameter5af60832007-05-06 14:49:56 -0700174 SLAB_CACHE_DMA | \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 SLAB_RECLAIM_ACCOUNT | SLAB_PANIC | \
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -0700176 SLAB_DESTROY_BY_RCU | SLAB_MEM_SPREAD | \
Pekka Enbergc175eea2008-05-09 20:35:53 +0200177 SLAB_DEBUG_OBJECTS | SLAB_NOLEAKTRACE | SLAB_NOTRACK)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178#endif
179
180/*
181 * kmem_bufctl_t:
182 *
183 * Bufctl's are used for linking objs within a slab
184 * linked offsets.
185 *
186 * This implementation relies on "struct page" for locating the cache &
187 * slab an object belongs to.
188 * This allows the bufctl structure to be small (one int), but limits
189 * the number of objects a slab (not a cache) can contain when off-slab
190 * bufctls are used. The limit is the size of the largest general cache
191 * that does not use off-slab slabs.
192 * For 32bit archs with 4 kB pages, is this 56.
193 * This is not serious, as it is only for large objects, when it is unwise
194 * to have too many per slab.
195 * Note: This limit can be raised by introducing a general cache whose size
196 * is less than 512 (PAGE_SIZE<<3), but greater than 256.
197 */
198
Kyle Moffettfa5b08d2005-09-03 15:55:03 -0700199typedef unsigned int kmem_bufctl_t;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200#define BUFCTL_END (((kmem_bufctl_t)(~0U))-0)
201#define BUFCTL_FREE (((kmem_bufctl_t)(~0U))-1)
Al Viro871751e2006-03-25 03:06:39 -0800202#define BUFCTL_ACTIVE (((kmem_bufctl_t)(~0U))-2)
203#define SLAB_LIMIT (((kmem_bufctl_t)(~0U))-3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 * struct slab_rcu
207 *
208 * slab_destroy on a SLAB_DESTROY_BY_RCU cache uses this structure to
209 * arrange for kmem_freepages to be called via RCU. This is useful if
210 * we need to approach a kernel structure obliquely, from its address
211 * obtained without the usual locking. We can lock the structure to
212 * stabilize it and check it's still at the given address, only if we
213 * can be sure that the memory has not been meanwhile reused for some
214 * other kind of object (which our subsystem's lock might corrupt).
215 *
216 * rcu_read_lock before reading the address, then rcu_read_unlock after
217 * taking the spinlock within the structure expected at that address.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 */
219struct slab_rcu {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800220 struct rcu_head head;
Pekka Enberg343e0d72006-02-01 03:05:50 -0800221 struct kmem_cache *cachep;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800222 void *addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223};
224
225/*
Lai Jiangshan5bfe53a2011-03-10 15:22:24 +0800226 * struct slab
227 *
228 * Manages the objs in a slab. Placed either at the beginning of mem allocated
229 * for a slab, or allocated from an general cache.
230 * Slabs are chained into three list: fully used, partial, fully free slabs.
231 */
232struct slab {
233 union {
234 struct {
235 struct list_head list;
236 unsigned long colouroff;
237 void *s_mem; /* including colour offset */
238 unsigned int inuse; /* num of objs active in slab */
239 kmem_bufctl_t free;
240 unsigned short nodeid;
241 };
242 struct slab_rcu __slab_cover_slab_rcu;
243 };
244};
245
246/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 * struct array_cache
248 *
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249 * Purpose:
250 * - LIFO ordering, to hand out cache-warm objects from _alloc
251 * - reduce the number of linked list operations
252 * - reduce spinlock operations
253 *
254 * The limit is stored in the per-cpu structure to reduce the data cache
255 * footprint.
256 *
257 */
258struct array_cache {
259 unsigned int avail;
260 unsigned int limit;
261 unsigned int batchcount;
262 unsigned int touched;
Christoph Lametere498be72005-09-09 13:03:32 -0700263 spinlock_t lock;
Robert P. J. Daybda5b652007-10-16 23:30:05 -0700264 void *entry[]; /*
Andrew Mortona737b3e2006-03-22 00:08:11 -0800265 * Must have this definition in here for the proper
266 * alignment of array_cache. Also simplifies accessing
267 * the entries.
Mel Gorman072bb0a2012-07-31 16:43:58 -0700268 *
269 * Entries should not be directly dereferenced as
270 * entries belonging to slabs marked pfmemalloc will
271 * have the lower bits set SLAB_OBJ_PFMEMALLOC
Andrew Mortona737b3e2006-03-22 00:08:11 -0800272 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273};
274
Mel Gorman072bb0a2012-07-31 16:43:58 -0700275#define SLAB_OBJ_PFMEMALLOC 1
276static inline bool is_obj_pfmemalloc(void *objp)
277{
278 return (unsigned long)objp & SLAB_OBJ_PFMEMALLOC;
279}
280
281static inline void set_obj_pfmemalloc(void **objp)
282{
283 *objp = (void *)((unsigned long)*objp | SLAB_OBJ_PFMEMALLOC);
284 return;
285}
286
287static inline void clear_obj_pfmemalloc(void **objp)
288{
289 *objp = (void *)((unsigned long)*objp & ~SLAB_OBJ_PFMEMALLOC);
290}
291
Andrew Mortona737b3e2006-03-22 00:08:11 -0800292/*
293 * bootstrap: The caches do not work without cpuarrays anymore, but the
294 * cpuarrays are allocated from the generic caches...
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 */
296#define BOOT_CPUCACHE_ENTRIES 1
297struct arraycache_init {
298 struct array_cache cache;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800299 void *entries[BOOT_CPUCACHE_ENTRIES];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300};
301
302/*
Christoph Lametere498be72005-09-09 13:03:32 -0700303 * The slab lists for all objects.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 */
305struct kmem_list3 {
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800306 struct list_head slabs_partial; /* partial list first, better asm code */
307 struct list_head slabs_full;
308 struct list_head slabs_free;
309 unsigned long free_objects;
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800310 unsigned int free_limit;
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -0800311 unsigned int colour_next; /* Per-node cache coloring */
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800312 spinlock_t list_lock;
313 struct array_cache *shared; /* shared per node */
314 struct array_cache **alien; /* on other nodes */
Christoph Lameter35386e32006-03-22 00:09:05 -0800315 unsigned long next_reap; /* updated without locking */
316 int free_touched; /* updated without locking */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317};
318
Christoph Lametere498be72005-09-09 13:03:32 -0700319/*
320 * Need this for bootstrapping a per node allocator.
321 */
Pekka Enberg556a1692008-01-25 08:20:51 +0200322#define NUM_INIT_LISTS (3 * MAX_NUMNODES)
H Hartley Sweeten68a1b192011-01-11 17:49:32 -0600323static struct kmem_list3 __initdata initkmem_list3[NUM_INIT_LISTS];
Christoph Lametere498be72005-09-09 13:03:32 -0700324#define CACHE_CACHE 0
Pekka Enberg556a1692008-01-25 08:20:51 +0200325#define SIZE_AC MAX_NUMNODES
326#define SIZE_L3 (2 * MAX_NUMNODES)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327
Christoph Lametered11d9e2006-06-30 01:55:45 -0700328static int drain_freelist(struct kmem_cache *cache,
329 struct kmem_list3 *l3, int tofree);
330static void free_block(struct kmem_cache *cachep, void **objpp, int len,
331 int node);
Pekka Enberg83b519e2009-06-10 19:40:04 +0300332static int enable_cpucache(struct kmem_cache *cachep, gfp_t gfp);
David Howells65f27f32006-11-22 14:55:48 +0000333static void cache_reap(struct work_struct *unused);
Christoph Lametered11d9e2006-06-30 01:55:45 -0700334
Christoph Lametere498be72005-09-09 13:03:32 -0700335/*
Andrew Mortona737b3e2006-03-22 00:08:11 -0800336 * This function must be completely optimized away if a constant is passed to
337 * it. Mostly the same as what is in linux/slab.h except it returns an index.
Christoph Lametere498be72005-09-09 13:03:32 -0700338 */
Ivan Kokshaysky7243cc02005-09-22 21:43:58 -0700339static __always_inline int index_of(const size_t size)
Christoph Lametere498be72005-09-09 13:03:32 -0700340{
Steven Rostedt5ec8a842006-02-01 03:05:44 -0800341 extern void __bad_size(void);
342
Christoph Lametere498be72005-09-09 13:03:32 -0700343 if (__builtin_constant_p(size)) {
344 int i = 0;
345
346#define CACHE(x) \
347 if (size <=x) \
348 return i; \
349 else \
350 i++;
Joe Perches1c61fc42008-03-05 13:58:17 -0800351#include <linux/kmalloc_sizes.h>
Christoph Lametere498be72005-09-09 13:03:32 -0700352#undef CACHE
Steven Rostedt5ec8a842006-02-01 03:05:44 -0800353 __bad_size();
Ivan Kokshaysky7243cc02005-09-22 21:43:58 -0700354 } else
Steven Rostedt5ec8a842006-02-01 03:05:44 -0800355 __bad_size();
Christoph Lametere498be72005-09-09 13:03:32 -0700356 return 0;
357}
358
Ingo Molnare0a42722006-06-23 02:03:46 -0700359static int slab_early_init = 1;
360
Christoph Lametere498be72005-09-09 13:03:32 -0700361#define INDEX_AC index_of(sizeof(struct arraycache_init))
362#define INDEX_L3 index_of(sizeof(struct kmem_list3))
363
Pekka Enberg5295a742006-02-01 03:05:48 -0800364static void kmem_list3_init(struct kmem_list3 *parent)
Christoph Lametere498be72005-09-09 13:03:32 -0700365{
366 INIT_LIST_HEAD(&parent->slabs_full);
367 INIT_LIST_HEAD(&parent->slabs_partial);
368 INIT_LIST_HEAD(&parent->slabs_free);
369 parent->shared = NULL;
370 parent->alien = NULL;
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -0800371 parent->colour_next = 0;
Christoph Lametere498be72005-09-09 13:03:32 -0700372 spin_lock_init(&parent->list_lock);
373 parent->free_objects = 0;
374 parent->free_touched = 0;
375}
376
Andrew Mortona737b3e2006-03-22 00:08:11 -0800377#define MAKE_LIST(cachep, listp, slab, nodeid) \
378 do { \
379 INIT_LIST_HEAD(listp); \
380 list_splice(&(cachep->nodelists[nodeid]->slab), listp); \
Christoph Lametere498be72005-09-09 13:03:32 -0700381 } while (0)
382
Andrew Mortona737b3e2006-03-22 00:08:11 -0800383#define MAKE_ALL_LISTS(cachep, ptr, nodeid) \
384 do { \
Christoph Lametere498be72005-09-09 13:03:32 -0700385 MAKE_LIST((cachep), (&(ptr)->slabs_full), slabs_full, nodeid); \
386 MAKE_LIST((cachep), (&(ptr)->slabs_partial), slabs_partial, nodeid); \
387 MAKE_LIST((cachep), (&(ptr)->slabs_free), slabs_free, nodeid); \
388 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390#define CFLGS_OFF_SLAB (0x80000000UL)
391#define OFF_SLAB(x) ((x)->flags & CFLGS_OFF_SLAB)
392
393#define BATCHREFILL_LIMIT 16
Andrew Mortona737b3e2006-03-22 00:08:11 -0800394/*
395 * Optimization question: fewer reaps means less probability for unnessary
396 * cpucache drain/refill cycles.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 *
Adrian Bunkdc6f3f22005-11-08 16:44:08 +0100398 * OTOH the cpuarrays can contain lots of objects,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 * which could lock up otherwise freeable slabs.
400 */
401#define REAPTIMEOUT_CPUC (2*HZ)
402#define REAPTIMEOUT_LIST3 (4*HZ)
403
404#if STATS
405#define STATS_INC_ACTIVE(x) ((x)->num_active++)
406#define STATS_DEC_ACTIVE(x) ((x)->num_active--)
407#define STATS_INC_ALLOCED(x) ((x)->num_allocations++)
408#define STATS_INC_GROWN(x) ((x)->grown++)
Christoph Lametered11d9e2006-06-30 01:55:45 -0700409#define STATS_ADD_REAPED(x,y) ((x)->reaped += (y))
Andrew Mortona737b3e2006-03-22 00:08:11 -0800410#define STATS_SET_HIGH(x) \
411 do { \
412 if ((x)->num_active > (x)->high_mark) \
413 (x)->high_mark = (x)->num_active; \
414 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415#define STATS_INC_ERR(x) ((x)->errors++)
416#define STATS_INC_NODEALLOCS(x) ((x)->node_allocs++)
Christoph Lametere498be72005-09-09 13:03:32 -0700417#define STATS_INC_NODEFREES(x) ((x)->node_frees++)
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -0700418#define STATS_INC_ACOVERFLOW(x) ((x)->node_overflow++)
Andrew Mortona737b3e2006-03-22 00:08:11 -0800419#define STATS_SET_FREEABLE(x, i) \
420 do { \
421 if ((x)->max_freeable < i) \
422 (x)->max_freeable = i; \
423 } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424#define STATS_INC_ALLOCHIT(x) atomic_inc(&(x)->allochit)
425#define STATS_INC_ALLOCMISS(x) atomic_inc(&(x)->allocmiss)
426#define STATS_INC_FREEHIT(x) atomic_inc(&(x)->freehit)
427#define STATS_INC_FREEMISS(x) atomic_inc(&(x)->freemiss)
428#else
429#define STATS_INC_ACTIVE(x) do { } while (0)
430#define STATS_DEC_ACTIVE(x) do { } while (0)
431#define STATS_INC_ALLOCED(x) do { } while (0)
432#define STATS_INC_GROWN(x) do { } while (0)
Andi Kleen4e60c862010-08-09 17:19:03 -0700433#define STATS_ADD_REAPED(x,y) do { (void)(y); } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434#define STATS_SET_HIGH(x) do { } while (0)
435#define STATS_INC_ERR(x) do { } while (0)
436#define STATS_INC_NODEALLOCS(x) do { } while (0)
Christoph Lametere498be72005-09-09 13:03:32 -0700437#define STATS_INC_NODEFREES(x) do { } while (0)
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -0700438#define STATS_INC_ACOVERFLOW(x) do { } while (0)
Andrew Mortona737b3e2006-03-22 00:08:11 -0800439#define STATS_SET_FREEABLE(x, i) do { } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440#define STATS_INC_ALLOCHIT(x) do { } while (0)
441#define STATS_INC_ALLOCMISS(x) do { } while (0)
442#define STATS_INC_FREEHIT(x) do { } while (0)
443#define STATS_INC_FREEMISS(x) do { } while (0)
444#endif
445
446#if DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447
Andrew Mortona737b3e2006-03-22 00:08:11 -0800448/*
449 * memory layout of objects:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 * 0 : objp
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800451 * 0 .. cachep->obj_offset - BYTES_PER_WORD - 1: padding. This ensures that
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 * the end of an object is aligned with the end of the real
453 * allocation. Catches writes behind the end of the allocation.
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800454 * cachep->obj_offset - BYTES_PER_WORD .. cachep->obj_offset - 1:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 * redzone word.
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800456 * cachep->obj_offset: The real object.
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500457 * cachep->size - 2* BYTES_PER_WORD: redzone word [BYTES_PER_WORD long]
458 * cachep->size - 1* BYTES_PER_WORD: last caller address
Andrew Mortona737b3e2006-03-22 00:08:11 -0800459 * [BYTES_PER_WORD long]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 */
Pekka Enberg343e0d72006-02-01 03:05:50 -0800461static int obj_offset(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462{
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800463 return cachep->obj_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464}
465
David Woodhouseb46b8f12007-05-08 00:22:59 -0700466static unsigned long long *dbg_redzone1(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467{
468 BUG_ON(!(cachep->flags & SLAB_RED_ZONE));
David Woodhouseb46b8f12007-05-08 00:22:59 -0700469 return (unsigned long long*) (objp + obj_offset(cachep) -
470 sizeof(unsigned long long));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471}
472
David Woodhouseb46b8f12007-05-08 00:22:59 -0700473static unsigned long long *dbg_redzone2(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474{
475 BUG_ON(!(cachep->flags & SLAB_RED_ZONE));
476 if (cachep->flags & SLAB_STORE_USER)
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500477 return (unsigned long long *)(objp + cachep->size -
David Woodhouseb46b8f12007-05-08 00:22:59 -0700478 sizeof(unsigned long long) -
David Woodhouse87a927c2007-07-04 21:26:44 -0400479 REDZONE_ALIGN);
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500480 return (unsigned long long *) (objp + cachep->size -
David Woodhouseb46b8f12007-05-08 00:22:59 -0700481 sizeof(unsigned long long));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482}
483
Pekka Enberg343e0d72006-02-01 03:05:50 -0800484static void **dbg_userword(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485{
486 BUG_ON(!(cachep->flags & SLAB_STORE_USER));
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500487 return (void **)(objp + cachep->size - BYTES_PER_WORD);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488}
489
490#else
491
Manfred Spraul3dafccf2006-02-01 03:05:42 -0800492#define obj_offset(x) 0
David Woodhouseb46b8f12007-05-08 00:22:59 -0700493#define dbg_redzone1(cachep, objp) ({BUG(); (unsigned long long *)NULL;})
494#define dbg_redzone2(cachep, objp) ({BUG(); (unsigned long long *)NULL;})
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495#define dbg_userword(cachep, objp) ({BUG(); (void **)NULL;})
496
497#endif
498
Li Zefan0f24f122009-12-11 15:45:30 +0800499#ifdef CONFIG_TRACING
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +0300500size_t slab_buffer_size(struct kmem_cache *cachep)
501{
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500502 return cachep->size;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +0300503}
504EXPORT_SYMBOL(slab_buffer_size);
505#endif
506
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507/*
David Rientjes3df1ccc2011-10-18 22:09:28 -0700508 * Do not go above this order unless 0 objects fit into the slab or
509 * overridden on the command line.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 */
David Rientjes543585c2011-10-18 22:09:24 -0700511#define SLAB_MAX_ORDER_HI 1
512#define SLAB_MAX_ORDER_LO 0
513static int slab_max_order = SLAB_MAX_ORDER_LO;
David Rientjes3df1ccc2011-10-18 22:09:28 -0700514static bool slab_max_order_set __initdata;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
Pekka Enberg065d41c2005-11-13 16:06:46 -0800516static inline struct kmem_cache *page_get_cache(struct page *page)
517{
Christoph Lameterd85f3382007-05-06 14:49:39 -0700518 page = compound_head(page);
Pekka Enbergddc2e812006-06-23 02:03:40 -0700519 BUG_ON(!PageSlab(page));
Christoph Lametere571b0a2012-06-13 10:24:55 -0500520 return page->slab_cache;
Pekka Enberg065d41c2005-11-13 16:06:46 -0800521}
522
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -0800523static inline struct kmem_cache *virt_to_cache(const void *obj)
524{
Christoph Lameterb49af682007-05-06 14:49:41 -0700525 struct page *page = virt_to_head_page(obj);
Christoph Lameter35026082012-06-13 10:24:56 -0500526 return page->slab_cache;
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -0800527}
528
529static inline struct slab *virt_to_slab(const void *obj)
530{
Christoph Lameterb49af682007-05-06 14:49:41 -0700531 struct page *page = virt_to_head_page(obj);
Christoph Lameter35026082012-06-13 10:24:56 -0500532
533 VM_BUG_ON(!PageSlab(page));
534 return page->slab_page;
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -0800535}
536
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800537static inline void *index_to_obj(struct kmem_cache *cache, struct slab *slab,
538 unsigned int idx)
539{
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500540 return slab->s_mem + cache->size * idx;
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800541}
542
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800543/*
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500544 * We want to avoid an expensive divide : (offset / cache->size)
545 * Using the fact that size is a constant for a particular cache,
546 * we can replace (offset / cache->size) by
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800547 * reciprocal_divide(offset, cache->reciprocal_buffer_size)
548 */
549static inline unsigned int obj_to_index(const struct kmem_cache *cache,
550 const struct slab *slab, void *obj)
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800551{
Eric Dumazet6a2d7a92006-12-13 00:34:27 -0800552 u32 offset = (obj - slab->s_mem);
553 return reciprocal_divide(offset, cache->reciprocal_buffer_size);
Pekka Enberg8fea4e92006-03-22 00:08:10 -0800554}
555
Andrew Mortona737b3e2006-03-22 00:08:11 -0800556/*
557 * These are the default caches for kmalloc. Custom caches can have other sizes.
558 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559struct cache_sizes malloc_sizes[] = {
560#define CACHE(x) { .cs_size = (x) },
561#include <linux/kmalloc_sizes.h>
562 CACHE(ULONG_MAX)
563#undef CACHE
564};
565EXPORT_SYMBOL(malloc_sizes);
566
567/* Must match cache_sizes above. Out of line to keep cache footprint low. */
568struct cache_names {
569 char *name;
570 char *name_dma;
571};
572
573static struct cache_names __initdata cache_names[] = {
574#define CACHE(x) { .name = "size-" #x, .name_dma = "size-" #x "(DMA)" },
575#include <linux/kmalloc_sizes.h>
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800576 {NULL,}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700577#undef CACHE
578};
579
580static struct arraycache_init initarray_cache __initdata =
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800581 { {0, BOOT_CPUCACHE_ENTRIES, 1, 0} };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582static struct arraycache_init initarray_generic =
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800583 { {0, BOOT_CPUCACHE_ENTRIES, 1, 0} };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584
585/* internal cache of cache description objs */
Eric Dumazetb56efcf2011-07-20 19:04:23 +0200586static struct kmem_list3 *cache_cache_nodelists[MAX_NUMNODES];
Pekka Enberg343e0d72006-02-01 03:05:50 -0800587static struct kmem_cache cache_cache = {
Eric Dumazetb56efcf2011-07-20 19:04:23 +0200588 .nodelists = cache_cache_nodelists,
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800589 .batchcount = 1,
590 .limit = BOOT_CPUCACHE_ENTRIES,
591 .shared = 1,
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500592 .size = sizeof(struct kmem_cache),
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800593 .name = "kmem_cache",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594};
595
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -0700596#define BAD_ALIEN_MAGIC 0x01020304ul
597
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200598#ifdef CONFIG_LOCKDEP
599
600/*
601 * Slab sometimes uses the kmalloc slabs to store the slab headers
602 * for other slabs "off slab".
603 * The locking for this is tricky in that it nests within the locks
604 * of all other slabs in a few places; to deal with this special
605 * locking we put on-slab caches into a separate lock-class.
606 *
607 * We set lock class for alien array caches which are up during init.
608 * The lock annotation will be lost if all cpus of a node goes down and
609 * then comes back up during hotplug
610 */
611static struct lock_class_key on_slab_l3_key;
612static struct lock_class_key on_slab_alc_key;
613
Peter Zijlstra83835b32011-07-22 15:26:05 +0200614static struct lock_class_key debugobj_l3_key;
615static struct lock_class_key debugobj_alc_key;
616
617static void slab_set_lock_classes(struct kmem_cache *cachep,
618 struct lock_class_key *l3_key, struct lock_class_key *alc_key,
619 int q)
620{
621 struct array_cache **alc;
622 struct kmem_list3 *l3;
623 int r;
624
625 l3 = cachep->nodelists[q];
626 if (!l3)
627 return;
628
629 lockdep_set_class(&l3->list_lock, l3_key);
630 alc = l3->alien;
631 /*
632 * FIXME: This check for BAD_ALIEN_MAGIC
633 * should go away when common slab code is taught to
634 * work even without alien caches.
635 * Currently, non NUMA code returns BAD_ALIEN_MAGIC
636 * for alloc_alien_cache,
637 */
638 if (!alc || (unsigned long)alc == BAD_ALIEN_MAGIC)
639 return;
640 for_each_node(r) {
641 if (alc[r])
642 lockdep_set_class(&alc[r]->lock, alc_key);
643 }
644}
645
646static void slab_set_debugobj_lock_classes_node(struct kmem_cache *cachep, int node)
647{
648 slab_set_lock_classes(cachep, &debugobj_l3_key, &debugobj_alc_key, node);
649}
650
651static void slab_set_debugobj_lock_classes(struct kmem_cache *cachep)
652{
653 int node;
654
655 for_each_online_node(node)
656 slab_set_debugobj_lock_classes_node(cachep, node);
657}
658
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200659static void init_node_lock_keys(int q)
660{
661 struct cache_sizes *s = malloc_sizes;
662
Christoph Lameter97d06602012-07-06 15:25:11 -0500663 if (slab_state < UP)
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200664 return;
665
666 for (s = malloc_sizes; s->cs_size != ULONG_MAX; s++) {
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200667 struct kmem_list3 *l3;
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200668
669 l3 = s->cs_cachep->nodelists[q];
670 if (!l3 || OFF_SLAB(s->cs_cachep))
Pekka Enberg00afa752009-12-27 14:33:14 +0200671 continue;
Peter Zijlstra83835b32011-07-22 15:26:05 +0200672
673 slab_set_lock_classes(s->cs_cachep, &on_slab_l3_key,
674 &on_slab_alc_key, q);
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200675 }
676}
677
678static inline void init_lock_keys(void)
679{
680 int node;
681
682 for_each_node(node)
683 init_node_lock_keys(node);
684}
685#else
686static void init_node_lock_keys(int q)
687{
688}
689
690static inline void init_lock_keys(void)
691{
692}
Peter Zijlstra83835b32011-07-22 15:26:05 +0200693
694static void slab_set_debugobj_lock_classes_node(struct kmem_cache *cachep, int node)
695{
696}
697
698static void slab_set_debugobj_lock_classes(struct kmem_cache *cachep)
699{
700}
Pekka Enbergce79ddc2009-11-23 22:01:15 +0200701#endif
702
Tejun Heo1871e522009-10-29 22:34:13 +0900703static DEFINE_PER_CPU(struct delayed_work, slab_reap_work);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704
Pekka Enberg343e0d72006-02-01 03:05:50 -0800705static inline struct array_cache *cpu_cache_get(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706{
707 return cachep->array[smp_processor_id()];
708}
709
Andrew Mortona737b3e2006-03-22 00:08:11 -0800710static inline struct kmem_cache *__find_general_cachep(size_t size,
711 gfp_t gfpflags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712{
713 struct cache_sizes *csizep = malloc_sizes;
714
715#if DEBUG
716 /* This happens if someone tries to call
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800717 * kmem_cache_create(), or __kmalloc(), before
718 * the generic caches are initialized.
719 */
Alok Katariac7e43c72005-09-14 12:17:53 -0700720 BUG_ON(malloc_sizes[INDEX_AC].cs_cachep == NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721#endif
Christoph Lameter6cb8f912007-07-17 04:03:22 -0700722 if (!size)
723 return ZERO_SIZE_PTR;
724
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 while (size > csizep->cs_size)
726 csizep++;
727
728 /*
Martin Hicks0abf40c2005-09-03 15:54:54 -0700729 * Really subtle: The last entry with cs->cs_size==ULONG_MAX
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 * has cs_{dma,}cachep==NULL. Thus no special case
731 * for large kmalloc calls required.
732 */
Christoph Lameter4b51d662007-02-10 01:43:10 -0800733#ifdef CONFIG_ZONE_DMA
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 if (unlikely(gfpflags & GFP_DMA))
735 return csizep->cs_dmacachep;
Christoph Lameter4b51d662007-02-10 01:43:10 -0800736#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737 return csizep->cs_cachep;
738}
739
Adrian Bunkb2213852006-09-25 23:31:02 -0700740static struct kmem_cache *kmem_find_general_cachep(size_t size, gfp_t gfpflags)
Manfred Spraul97e2bde2005-05-01 08:58:38 -0700741{
742 return __find_general_cachep(size, gfpflags);
743}
Manfred Spraul97e2bde2005-05-01 08:58:38 -0700744
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800745static size_t slab_mgmt_size(size_t nr_objs, size_t align)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746{
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800747 return ALIGN(sizeof(struct slab)+nr_objs*sizeof(kmem_bufctl_t), align);
748}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749
Andrew Mortona737b3e2006-03-22 00:08:11 -0800750/*
751 * Calculate the number of objects and left-over bytes for a given buffer size.
752 */
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800753static void cache_estimate(unsigned long gfporder, size_t buffer_size,
754 size_t align, int flags, size_t *left_over,
755 unsigned int *num)
756{
757 int nr_objs;
758 size_t mgmt_size;
759 size_t slab_size = PAGE_SIZE << gfporder;
760
761 /*
762 * The slab management structure can be either off the slab or
763 * on it. For the latter case, the memory allocated for a
764 * slab is used for:
765 *
766 * - The struct slab
767 * - One kmem_bufctl_t for each object
768 * - Padding to respect alignment of @align
769 * - @buffer_size bytes for each object
770 *
771 * If the slab management structure is off the slab, then the
772 * alignment will already be calculated into the size. Because
773 * the slabs are all pages aligned, the objects will be at the
774 * correct alignment when allocated.
775 */
776 if (flags & CFLGS_OFF_SLAB) {
777 mgmt_size = 0;
778 nr_objs = slab_size / buffer_size;
779
780 if (nr_objs > SLAB_LIMIT)
781 nr_objs = SLAB_LIMIT;
782 } else {
783 /*
784 * Ignore padding for the initial guess. The padding
785 * is at most @align-1 bytes, and @buffer_size is at
786 * least @align. In the worst case, this result will
787 * be one greater than the number of objects that fit
788 * into the memory allocation when taking the padding
789 * into account.
790 */
791 nr_objs = (slab_size - sizeof(struct slab)) /
792 (buffer_size + sizeof(kmem_bufctl_t));
793
794 /*
795 * This calculated number will be either the right
796 * amount, or one greater than what we want.
797 */
798 if (slab_mgmt_size(nr_objs, align) + nr_objs*buffer_size
799 > slab_size)
800 nr_objs--;
801
802 if (nr_objs > SLAB_LIMIT)
803 nr_objs = SLAB_LIMIT;
804
805 mgmt_size = slab_mgmt_size(nr_objs, align);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806 }
Steven Rostedtfbaccac2006-02-01 03:05:45 -0800807 *num = nr_objs;
808 *left_over = slab_size - nr_objs*buffer_size - mgmt_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809}
810
Harvey Harrisond40cee22008-04-30 00:55:07 -0700811#define slab_error(cachep, msg) __slab_error(__func__, cachep, msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
Andrew Mortona737b3e2006-03-22 00:08:11 -0800813static void __slab_error(const char *function, struct kmem_cache *cachep,
814 char *msg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815{
816 printk(KERN_ERR "slab error in %s(): cache `%s': %s\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800817 function, cachep->name, msg);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 dump_stack();
819}
820
Paul Menage3395ee02006-12-06 20:32:16 -0800821/*
822 * By default on NUMA we use alien caches to stage the freeing of
823 * objects allocated from other nodes. This causes massive memory
824 * inefficiencies when using fake NUMA setup to split memory into a
825 * large number of small nodes, so it can be disabled on the command
826 * line
827 */
828
829static int use_alien_caches __read_mostly = 1;
830static int __init noaliencache_setup(char *s)
831{
832 use_alien_caches = 0;
833 return 1;
834}
835__setup("noaliencache", noaliencache_setup);
836
David Rientjes3df1ccc2011-10-18 22:09:28 -0700837static int __init slab_max_order_setup(char *str)
838{
839 get_option(&str, &slab_max_order);
840 slab_max_order = slab_max_order < 0 ? 0 :
841 min(slab_max_order, MAX_ORDER - 1);
842 slab_max_order_set = true;
843
844 return 1;
845}
846__setup("slab_max_order=", slab_max_order_setup);
847
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800848#ifdef CONFIG_NUMA
849/*
850 * Special reaping functions for NUMA systems called from cache_reap().
851 * These take care of doing round robin flushing of alien caches (containing
852 * objects freed on different nodes from which they were allocated) and the
853 * flushing of remote pcps by calling drain_node_pages.
854 */
Tejun Heo1871e522009-10-29 22:34:13 +0900855static DEFINE_PER_CPU(unsigned long, slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800856
857static void init_reap_node(int cpu)
858{
859 int node;
860
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -0700861 node = next_node(cpu_to_mem(cpu), node_online_map);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800862 if (node == MAX_NUMNODES)
Paul Jackson442295c2006-03-22 00:09:11 -0800863 node = first_node(node_online_map);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800864
Tejun Heo1871e522009-10-29 22:34:13 +0900865 per_cpu(slab_reap_node, cpu) = node;
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800866}
867
868static void next_reap_node(void)
869{
Christoph Lameter909ea962010-12-08 16:22:55 +0100870 int node = __this_cpu_read(slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800871
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800872 node = next_node(node, node_online_map);
873 if (unlikely(node >= MAX_NUMNODES))
874 node = first_node(node_online_map);
Christoph Lameter909ea962010-12-08 16:22:55 +0100875 __this_cpu_write(slab_reap_node, node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800876}
877
878#else
879#define init_reap_node(cpu) do { } while (0)
880#define next_reap_node(void) do { } while (0)
881#endif
882
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883/*
884 * Initiate the reap timer running on the target CPU. We run at around 1 to 2Hz
885 * via the workqueue/eventd.
886 * Add the CPU number into the expiration time to minimize the possibility of
887 * the CPUs getting into lockstep and contending for the global cache chain
888 * lock.
889 */
Adrian Bunk897e6792007-07-15 23:38:20 -0700890static void __cpuinit start_cpu_timer(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891{
Tejun Heo1871e522009-10-29 22:34:13 +0900892 struct delayed_work *reap_work = &per_cpu(slab_reap_work, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893
894 /*
895 * When this gets called from do_initcalls via cpucache_init(),
896 * init_workqueues() has already run, so keventd will be setup
897 * at that time.
898 */
David Howells52bad642006-11-22 14:54:01 +0000899 if (keventd_up() && reap_work->work.func == NULL) {
Christoph Lameter8fce4d82006-03-09 17:33:54 -0800900 init_reap_node(cpu);
Arjan van de Ven78b43532010-07-19 10:59:42 -0700901 INIT_DELAYED_WORK_DEFERRABLE(reap_work, cache_reap);
Arjan van de Ven2b284212006-12-10 02:21:28 -0800902 schedule_delayed_work_on(cpu, reap_work,
903 __round_jiffies_relative(HZ, cpu));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700904 }
905}
906
Christoph Lametere498be72005-09-09 13:03:32 -0700907static struct array_cache *alloc_arraycache(int node, int entries,
Pekka Enberg83b519e2009-06-10 19:40:04 +0300908 int batchcount, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909{
Pekka Enbergb28a02d2006-01-08 01:00:37 -0800910 int memsize = sizeof(void *) * entries + sizeof(struct array_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911 struct array_cache *nc = NULL;
912
Pekka Enberg83b519e2009-06-10 19:40:04 +0300913 nc = kmalloc_node(memsize, gfp, node);
Catalin Marinasd5cff632009-06-11 13:22:40 +0100914 /*
915 * The array_cache structures contain pointers to free object.
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300916 * However, when such objects are allocated or transferred to another
Catalin Marinasd5cff632009-06-11 13:22:40 +0100917 * cache the pointers are not cleared and they could be counted as
918 * valid references during a kmemleak scan. Therefore, kmemleak must
919 * not scan such objects.
920 */
921 kmemleak_no_scan(nc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 if (nc) {
923 nc->avail = 0;
924 nc->limit = entries;
925 nc->batchcount = batchcount;
926 nc->touched = 0;
Christoph Lametere498be72005-09-09 13:03:32 -0700927 spin_lock_init(&nc->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928 }
929 return nc;
930}
931
Mel Gorman072bb0a2012-07-31 16:43:58 -0700932static inline bool is_slab_pfmemalloc(struct slab *slabp)
933{
934 struct page *page = virt_to_page(slabp->s_mem);
935
936 return PageSlabPfmemalloc(page);
937}
938
939/* Clears pfmemalloc_active if no slabs have pfmalloc set */
940static void recheck_pfmemalloc_active(struct kmem_cache *cachep,
941 struct array_cache *ac)
942{
943 struct kmem_list3 *l3 = cachep->nodelists[numa_mem_id()];
944 struct slab *slabp;
945 unsigned long flags;
946
947 if (!pfmemalloc_active)
948 return;
949
950 spin_lock_irqsave(&l3->list_lock, flags);
951 list_for_each_entry(slabp, &l3->slabs_full, list)
952 if (is_slab_pfmemalloc(slabp))
953 goto out;
954
955 list_for_each_entry(slabp, &l3->slabs_partial, list)
956 if (is_slab_pfmemalloc(slabp))
957 goto out;
958
959 list_for_each_entry(slabp, &l3->slabs_free, list)
960 if (is_slab_pfmemalloc(slabp))
961 goto out;
962
963 pfmemalloc_active = false;
964out:
965 spin_unlock_irqrestore(&l3->list_lock, flags);
966}
967
968static void *ac_get_obj(struct kmem_cache *cachep, struct array_cache *ac,
969 gfp_t flags, bool force_refill)
970{
971 int i;
972 void *objp = ac->entry[--ac->avail];
973
974 /* Ensure the caller is allowed to use objects from PFMEMALLOC slab */
975 if (unlikely(is_obj_pfmemalloc(objp))) {
976 struct kmem_list3 *l3;
977
978 if (gfp_pfmemalloc_allowed(flags)) {
979 clear_obj_pfmemalloc(&objp);
980 return objp;
981 }
982
983 /* The caller cannot use PFMEMALLOC objects, find another one */
984 for (i = 1; i < ac->avail; i++) {
985 /* If a !PFMEMALLOC object is found, swap them */
986 if (!is_obj_pfmemalloc(ac->entry[i])) {
987 objp = ac->entry[i];
988 ac->entry[i] = ac->entry[ac->avail];
989 ac->entry[ac->avail] = objp;
990 return objp;
991 }
992 }
993
994 /*
995 * If there are empty slabs on the slabs_free list and we are
996 * being forced to refill the cache, mark this one !pfmemalloc.
997 */
998 l3 = cachep->nodelists[numa_mem_id()];
999 if (!list_empty(&l3->slabs_free) && force_refill) {
1000 struct slab *slabp = virt_to_slab(objp);
1001 ClearPageSlabPfmemalloc(virt_to_page(slabp->s_mem));
1002 clear_obj_pfmemalloc(&objp);
1003 recheck_pfmemalloc_active(cachep, ac);
1004 return objp;
1005 }
1006
1007 /* No !PFMEMALLOC objects available */
1008 ac->avail++;
1009 objp = NULL;
1010 }
1011
1012 return objp;
1013}
1014
1015static void ac_put_obj(struct kmem_cache *cachep, struct array_cache *ac,
1016 void *objp)
1017{
1018 if (unlikely(pfmemalloc_active)) {
1019 /* Some pfmemalloc slabs exist, check if this is one */
1020 struct page *page = virt_to_page(objp);
1021 if (PageSlabPfmemalloc(page))
1022 set_obj_pfmemalloc(&objp);
1023 }
1024
1025 ac->entry[ac->avail++] = objp;
1026}
1027
Christoph Lameter3ded1752006-03-25 03:06:44 -08001028/*
1029 * Transfer objects in one arraycache to another.
1030 * Locking must be handled by the caller.
1031 *
1032 * Return the number of entries transferred.
1033 */
1034static int transfer_objects(struct array_cache *to,
1035 struct array_cache *from, unsigned int max)
1036{
1037 /* Figure out how many entries to transfer */
Hagen Paul Pfeifer732eacc2010-10-26 14:22:23 -07001038 int nr = min3(from->avail, max, to->limit - to->avail);
Christoph Lameter3ded1752006-03-25 03:06:44 -08001039
1040 if (!nr)
1041 return 0;
1042
1043 memcpy(to->entry + to->avail, from->entry + from->avail -nr,
1044 sizeof(void *) *nr);
1045
1046 from->avail -= nr;
1047 to->avail += nr;
Christoph Lameter3ded1752006-03-25 03:06:44 -08001048 return nr;
1049}
1050
Christoph Lameter765c4502006-09-27 01:50:08 -07001051#ifndef CONFIG_NUMA
1052
1053#define drain_alien_cache(cachep, alien) do { } while (0)
1054#define reap_alien(cachep, l3) do { } while (0)
1055
Pekka Enberg83b519e2009-06-10 19:40:04 +03001056static inline struct array_cache **alloc_alien_cache(int node, int limit, gfp_t gfp)
Christoph Lameter765c4502006-09-27 01:50:08 -07001057{
1058 return (struct array_cache **)BAD_ALIEN_MAGIC;
1059}
1060
1061static inline void free_alien_cache(struct array_cache **ac_ptr)
1062{
1063}
1064
1065static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
1066{
1067 return 0;
1068}
1069
1070static inline void *alternate_node_alloc(struct kmem_cache *cachep,
1071 gfp_t flags)
1072{
1073 return NULL;
1074}
1075
Christoph Hellwig8b98c162006-12-06 20:32:30 -08001076static inline void *____cache_alloc_node(struct kmem_cache *cachep,
Christoph Lameter765c4502006-09-27 01:50:08 -07001077 gfp_t flags, int nodeid)
1078{
1079 return NULL;
1080}
1081
1082#else /* CONFIG_NUMA */
1083
Christoph Hellwig8b98c162006-12-06 20:32:30 -08001084static void *____cache_alloc_node(struct kmem_cache *, gfp_t, int);
Paul Jacksonc61afb12006-03-24 03:16:08 -08001085static void *alternate_node_alloc(struct kmem_cache *, gfp_t);
Christoph Lameterdc85da12006-01-18 17:42:36 -08001086
Pekka Enberg83b519e2009-06-10 19:40:04 +03001087static struct array_cache **alloc_alien_cache(int node, int limit, gfp_t gfp)
Christoph Lametere498be72005-09-09 13:03:32 -07001088{
1089 struct array_cache **ac_ptr;
Christoph Lameter8ef82862007-02-20 13:57:52 -08001090 int memsize = sizeof(void *) * nr_node_ids;
Christoph Lametere498be72005-09-09 13:03:32 -07001091 int i;
1092
1093 if (limit > 1)
1094 limit = 12;
Haicheng Lif3186a92010-01-06 15:25:23 +08001095 ac_ptr = kzalloc_node(memsize, gfp, node);
Christoph Lametere498be72005-09-09 13:03:32 -07001096 if (ac_ptr) {
1097 for_each_node(i) {
Haicheng Lif3186a92010-01-06 15:25:23 +08001098 if (i == node || !node_online(i))
Christoph Lametere498be72005-09-09 13:03:32 -07001099 continue;
Pekka Enberg83b519e2009-06-10 19:40:04 +03001100 ac_ptr[i] = alloc_arraycache(node, limit, 0xbaadf00d, gfp);
Christoph Lametere498be72005-09-09 13:03:32 -07001101 if (!ac_ptr[i]) {
Akinobu Mitacc550de2007-11-14 16:58:35 -08001102 for (i--; i >= 0; i--)
Christoph Lametere498be72005-09-09 13:03:32 -07001103 kfree(ac_ptr[i]);
1104 kfree(ac_ptr);
1105 return NULL;
1106 }
1107 }
1108 }
1109 return ac_ptr;
1110}
1111
Pekka Enberg5295a742006-02-01 03:05:48 -08001112static void free_alien_cache(struct array_cache **ac_ptr)
Christoph Lametere498be72005-09-09 13:03:32 -07001113{
1114 int i;
1115
1116 if (!ac_ptr)
1117 return;
Christoph Lametere498be72005-09-09 13:03:32 -07001118 for_each_node(i)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001119 kfree(ac_ptr[i]);
Christoph Lametere498be72005-09-09 13:03:32 -07001120 kfree(ac_ptr);
1121}
1122
Pekka Enberg343e0d72006-02-01 03:05:50 -08001123static void __drain_alien_cache(struct kmem_cache *cachep,
Pekka Enberg5295a742006-02-01 03:05:48 -08001124 struct array_cache *ac, int node)
Christoph Lametere498be72005-09-09 13:03:32 -07001125{
1126 struct kmem_list3 *rl3 = cachep->nodelists[node];
1127
1128 if (ac->avail) {
1129 spin_lock(&rl3->list_lock);
Christoph Lametere00946f2006-03-25 03:06:45 -08001130 /*
1131 * Stuff objects into the remote nodes shared array first.
1132 * That way we could avoid the overhead of putting the objects
1133 * into the free lists and getting them back later.
1134 */
shin, jacob693f7d32006-04-28 10:54:37 -05001135 if (rl3->shared)
1136 transfer_objects(rl3->shared, ac, ac->limit);
Christoph Lametere00946f2006-03-25 03:06:45 -08001137
Christoph Lameterff694162005-09-22 21:44:02 -07001138 free_block(cachep, ac->entry, ac->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -07001139 ac->avail = 0;
1140 spin_unlock(&rl3->list_lock);
1141 }
1142}
1143
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001144/*
1145 * Called from cache_reap() to regularly drain alien caches round robin.
1146 */
1147static void reap_alien(struct kmem_cache *cachep, struct kmem_list3 *l3)
1148{
Christoph Lameter909ea962010-12-08 16:22:55 +01001149 int node = __this_cpu_read(slab_reap_node);
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001150
1151 if (l3->alien) {
1152 struct array_cache *ac = l3->alien[node];
Christoph Lametere00946f2006-03-25 03:06:45 -08001153
1154 if (ac && ac->avail && spin_trylock_irq(&ac->lock)) {
Christoph Lameter8fce4d82006-03-09 17:33:54 -08001155 __drain_alien_cache(cachep, ac, node);
1156 spin_unlock_irq(&ac->lock);
1157 }
1158 }
1159}
1160
Andrew Mortona737b3e2006-03-22 00:08:11 -08001161static void drain_alien_cache(struct kmem_cache *cachep,
1162 struct array_cache **alien)
Christoph Lametere498be72005-09-09 13:03:32 -07001163{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001164 int i = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07001165 struct array_cache *ac;
1166 unsigned long flags;
1167
1168 for_each_online_node(i) {
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001169 ac = alien[i];
Christoph Lametere498be72005-09-09 13:03:32 -07001170 if (ac) {
1171 spin_lock_irqsave(&ac->lock, flags);
1172 __drain_alien_cache(cachep, ac, i);
1173 spin_unlock_irqrestore(&ac->lock, flags);
1174 }
1175 }
1176}
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001177
Ingo Molnar873623d2006-07-13 14:44:38 +02001178static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001179{
1180 struct slab *slabp = virt_to_slab(objp);
1181 int nodeid = slabp->nodeid;
1182 struct kmem_list3 *l3;
1183 struct array_cache *alien = NULL;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001184 int node;
1185
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07001186 node = numa_mem_id();
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001187
1188 /*
1189 * Make sure we are not freeing a object from another node to the array
1190 * cache on this cpu.
1191 */
Siddha, Suresh B62918a02007-05-02 19:27:18 +02001192 if (likely(slabp->nodeid == node))
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001193 return 0;
1194
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001195 l3 = cachep->nodelists[node];
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001196 STATS_INC_NODEFREES(cachep);
1197 if (l3->alien && l3->alien[nodeid]) {
1198 alien = l3->alien[nodeid];
Ingo Molnar873623d2006-07-13 14:44:38 +02001199 spin_lock(&alien->lock);
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001200 if (unlikely(alien->avail == alien->limit)) {
1201 STATS_INC_ACOVERFLOW(cachep);
1202 __drain_alien_cache(cachep, alien, nodeid);
1203 }
Mel Gorman072bb0a2012-07-31 16:43:58 -07001204 ac_put_obj(cachep, alien, objp);
Pekka Enberg729bd0b2006-06-23 02:03:05 -07001205 spin_unlock(&alien->lock);
1206 } else {
1207 spin_lock(&(cachep->nodelists[nodeid])->list_lock);
1208 free_block(cachep, &objp, 1, nodeid);
1209 spin_unlock(&(cachep->nodelists[nodeid])->list_lock);
1210 }
1211 return 1;
1212}
Christoph Lametere498be72005-09-09 13:03:32 -07001213#endif
1214
David Rientjes8f9f8d92010-03-27 19:40:47 -07001215/*
1216 * Allocates and initializes nodelists for a node on each slab cache, used for
1217 * either memory or cpu hotplug. If memory is being hot-added, the kmem_list3
1218 * will be allocated off-node since memory is not yet online for the new node.
1219 * When hotplugging memory or a cpu, existing nodelists are not replaced if
1220 * already in use.
1221 *
Christoph Lameter18004c52012-07-06 15:25:12 -05001222 * Must hold slab_mutex.
David Rientjes8f9f8d92010-03-27 19:40:47 -07001223 */
1224static int init_cache_nodelists_node(int node)
1225{
1226 struct kmem_cache *cachep;
1227 struct kmem_list3 *l3;
1228 const int memsize = sizeof(struct kmem_list3);
1229
Christoph Lameter18004c52012-07-06 15:25:12 -05001230 list_for_each_entry(cachep, &slab_caches, list) {
David Rientjes8f9f8d92010-03-27 19:40:47 -07001231 /*
1232 * Set up the size64 kmemlist for cpu before we can
1233 * begin anything. Make sure some other cpu on this
1234 * node has not already allocated this
1235 */
1236 if (!cachep->nodelists[node]) {
1237 l3 = kmalloc_node(memsize, GFP_KERNEL, node);
1238 if (!l3)
1239 return -ENOMEM;
1240 kmem_list3_init(l3);
1241 l3->next_reap = jiffies + REAPTIMEOUT_LIST3 +
1242 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
1243
1244 /*
1245 * The l3s don't come and go as CPUs come and
Christoph Lameter18004c52012-07-06 15:25:12 -05001246 * go. slab_mutex is sufficient
David Rientjes8f9f8d92010-03-27 19:40:47 -07001247 * protection here.
1248 */
1249 cachep->nodelists[node] = l3;
1250 }
1251
1252 spin_lock_irq(&cachep->nodelists[node]->list_lock);
1253 cachep->nodelists[node]->free_limit =
1254 (1 + nr_cpus_node(node)) *
1255 cachep->batchcount + cachep->num;
1256 spin_unlock_irq(&cachep->nodelists[node]->list_lock);
1257 }
1258 return 0;
1259}
1260
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001261static void __cpuinit cpuup_canceled(long cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262{
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001263 struct kmem_cache *cachep;
1264 struct kmem_list3 *l3 = NULL;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07001265 int node = cpu_to_mem(cpu);
Rusty Russella70f7302009-03-13 14:49:46 +10301266 const struct cpumask *mask = cpumask_of_node(node);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001267
Christoph Lameter18004c52012-07-06 15:25:12 -05001268 list_for_each_entry(cachep, &slab_caches, list) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001269 struct array_cache *nc;
1270 struct array_cache *shared;
1271 struct array_cache **alien;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001272
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001273 /* cpu is dead; no one can alloc from it. */
1274 nc = cachep->array[cpu];
1275 cachep->array[cpu] = NULL;
1276 l3 = cachep->nodelists[node];
1277
1278 if (!l3)
1279 goto free_array_cache;
1280
1281 spin_lock_irq(&l3->list_lock);
1282
1283 /* Free limit for this kmem_list3 */
1284 l3->free_limit -= cachep->batchcount;
1285 if (nc)
1286 free_block(cachep, nc->entry, nc->avail, node);
1287
Rusty Russell58463c12009-12-17 11:43:12 -06001288 if (!cpumask_empty(mask)) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001289 spin_unlock_irq(&l3->list_lock);
1290 goto free_array_cache;
1291 }
1292
1293 shared = l3->shared;
1294 if (shared) {
1295 free_block(cachep, shared->entry,
1296 shared->avail, node);
1297 l3->shared = NULL;
1298 }
1299
1300 alien = l3->alien;
1301 l3->alien = NULL;
1302
1303 spin_unlock_irq(&l3->list_lock);
1304
1305 kfree(shared);
1306 if (alien) {
1307 drain_alien_cache(cachep, alien);
1308 free_alien_cache(alien);
1309 }
1310free_array_cache:
1311 kfree(nc);
1312 }
1313 /*
1314 * In the previous loop, all the objects were freed to
1315 * the respective cache's slabs, now we can go ahead and
1316 * shrink each nodelist to its limit.
1317 */
Christoph Lameter18004c52012-07-06 15:25:12 -05001318 list_for_each_entry(cachep, &slab_caches, list) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001319 l3 = cachep->nodelists[node];
1320 if (!l3)
1321 continue;
1322 drain_freelist(cachep, l3, l3->free_objects);
1323 }
1324}
1325
1326static int __cpuinit cpuup_prepare(long cpu)
1327{
Pekka Enberg343e0d72006-02-01 03:05:50 -08001328 struct kmem_cache *cachep;
Christoph Lametere498be72005-09-09 13:03:32 -07001329 struct kmem_list3 *l3 = NULL;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07001330 int node = cpu_to_mem(cpu);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001331 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001333 /*
1334 * We need to do this right in the beginning since
1335 * alloc_arraycache's are going to use this list.
1336 * kmalloc_node allows us to add the slab to the right
1337 * kmem_list3 and not this cpu's kmem_list3
1338 */
David Rientjes8f9f8d92010-03-27 19:40:47 -07001339 err = init_cache_nodelists_node(node);
1340 if (err < 0)
1341 goto bad;
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001342
1343 /*
1344 * Now we can go ahead with allocating the shared arrays and
1345 * array caches
1346 */
Christoph Lameter18004c52012-07-06 15:25:12 -05001347 list_for_each_entry(cachep, &slab_caches, list) {
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001348 struct array_cache *nc;
1349 struct array_cache *shared = NULL;
1350 struct array_cache **alien = NULL;
1351
1352 nc = alloc_arraycache(node, cachep->limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03001353 cachep->batchcount, GFP_KERNEL);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001354 if (!nc)
1355 goto bad;
1356 if (cachep->shared) {
1357 shared = alloc_arraycache(node,
1358 cachep->shared * cachep->batchcount,
Pekka Enberg83b519e2009-06-10 19:40:04 +03001359 0xbaadf00d, GFP_KERNEL);
Akinobu Mita12d00f62007-10-18 03:05:11 -07001360 if (!shared) {
1361 kfree(nc);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001362 goto bad;
Akinobu Mita12d00f62007-10-18 03:05:11 -07001363 }
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001364 }
1365 if (use_alien_caches) {
Pekka Enberg83b519e2009-06-10 19:40:04 +03001366 alien = alloc_alien_cache(node, cachep->limit, GFP_KERNEL);
Akinobu Mita12d00f62007-10-18 03:05:11 -07001367 if (!alien) {
1368 kfree(shared);
1369 kfree(nc);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001370 goto bad;
Akinobu Mita12d00f62007-10-18 03:05:11 -07001371 }
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001372 }
1373 cachep->array[cpu] = nc;
1374 l3 = cachep->nodelists[node];
1375 BUG_ON(!l3);
1376
1377 spin_lock_irq(&l3->list_lock);
1378 if (!l3->shared) {
1379 /*
1380 * We are serialised from CPU_DEAD or
1381 * CPU_UP_CANCELLED by the cpucontrol lock
1382 */
1383 l3->shared = shared;
1384 shared = NULL;
1385 }
1386#ifdef CONFIG_NUMA
1387 if (!l3->alien) {
1388 l3->alien = alien;
1389 alien = NULL;
1390 }
1391#endif
1392 spin_unlock_irq(&l3->list_lock);
1393 kfree(shared);
1394 free_alien_cache(alien);
Peter Zijlstra83835b32011-07-22 15:26:05 +02001395 if (cachep->flags & SLAB_DEBUG_OBJECTS)
1396 slab_set_debugobj_lock_classes_node(cachep, node);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001397 }
Pekka Enbergce79ddc2009-11-23 22:01:15 +02001398 init_node_lock_keys(node);
1399
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001400 return 0;
1401bad:
Akinobu Mita12d00f62007-10-18 03:05:11 -07001402 cpuup_canceled(cpu);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001403 return -ENOMEM;
1404}
1405
1406static int __cpuinit cpuup_callback(struct notifier_block *nfb,
1407 unsigned long action, void *hcpu)
1408{
1409 long cpu = (long)hcpu;
1410 int err = 0;
1411
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 switch (action) {
Heiko Carstens38c3bd92007-05-09 02:34:05 -07001413 case CPU_UP_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001414 case CPU_UP_PREPARE_FROZEN:
Christoph Lameter18004c52012-07-06 15:25:12 -05001415 mutex_lock(&slab_mutex);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001416 err = cpuup_prepare(cpu);
Christoph Lameter18004c52012-07-06 15:25:12 -05001417 mutex_unlock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 break;
1419 case CPU_ONLINE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001420 case CPU_ONLINE_FROZEN:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 start_cpu_timer(cpu);
1422 break;
1423#ifdef CONFIG_HOTPLUG_CPU
Christoph Lameter5830c592007-05-09 02:34:22 -07001424 case CPU_DOWN_PREPARE:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001425 case CPU_DOWN_PREPARE_FROZEN:
Christoph Lameter5830c592007-05-09 02:34:22 -07001426 /*
Christoph Lameter18004c52012-07-06 15:25:12 -05001427 * Shutdown cache reaper. Note that the slab_mutex is
Christoph Lameter5830c592007-05-09 02:34:22 -07001428 * held so that if cache_reap() is invoked it cannot do
1429 * anything expensive but will only modify reap_work
1430 * and reschedule the timer.
1431 */
Tejun Heoafe2c512010-12-14 16:21:17 +01001432 cancel_delayed_work_sync(&per_cpu(slab_reap_work, cpu));
Christoph Lameter5830c592007-05-09 02:34:22 -07001433 /* Now the cache_reaper is guaranteed to be not running. */
Tejun Heo1871e522009-10-29 22:34:13 +09001434 per_cpu(slab_reap_work, cpu).work.func = NULL;
Christoph Lameter5830c592007-05-09 02:34:22 -07001435 break;
1436 case CPU_DOWN_FAILED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001437 case CPU_DOWN_FAILED_FROZEN:
Christoph Lameter5830c592007-05-09 02:34:22 -07001438 start_cpu_timer(cpu);
1439 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001441 case CPU_DEAD_FROZEN:
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08001442 /*
1443 * Even if all the cpus of a node are down, we don't free the
1444 * kmem_list3 of any cache. This to avoid a race between
1445 * cpu_down, and a kmalloc allocation from another cpu for
1446 * memory from the node of the cpu going down. The list3
1447 * structure is usually allocated from kmem_cache_create() and
1448 * gets destroyed at kmem_cache_destroy().
1449 */
Simon Arlott183ff222007-10-20 01:27:18 +02001450 /* fall through */
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08001451#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07001453 case CPU_UP_CANCELED_FROZEN:
Christoph Lameter18004c52012-07-06 15:25:12 -05001454 mutex_lock(&slab_mutex);
Akinobu Mitafbf1e472007-10-18 03:05:09 -07001455 cpuup_canceled(cpu);
Christoph Lameter18004c52012-07-06 15:25:12 -05001456 mutex_unlock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 }
Akinobu Mitaeac40682010-05-26 14:43:32 -07001459 return notifier_from_errno(err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460}
1461
Chandra Seetharaman74b85f32006-06-27 02:54:09 -07001462static struct notifier_block __cpuinitdata cpucache_notifier = {
1463 &cpuup_callback, NULL, 0
1464};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465
David Rientjes8f9f8d92010-03-27 19:40:47 -07001466#if defined(CONFIG_NUMA) && defined(CONFIG_MEMORY_HOTPLUG)
1467/*
1468 * Drains freelist for a node on each slab cache, used for memory hot-remove.
1469 * Returns -EBUSY if all objects cannot be drained so that the node is not
1470 * removed.
1471 *
Christoph Lameter18004c52012-07-06 15:25:12 -05001472 * Must hold slab_mutex.
David Rientjes8f9f8d92010-03-27 19:40:47 -07001473 */
1474static int __meminit drain_cache_nodelists_node(int node)
1475{
1476 struct kmem_cache *cachep;
1477 int ret = 0;
1478
Christoph Lameter18004c52012-07-06 15:25:12 -05001479 list_for_each_entry(cachep, &slab_caches, list) {
David Rientjes8f9f8d92010-03-27 19:40:47 -07001480 struct kmem_list3 *l3;
1481
1482 l3 = cachep->nodelists[node];
1483 if (!l3)
1484 continue;
1485
1486 drain_freelist(cachep, l3, l3->free_objects);
1487
1488 if (!list_empty(&l3->slabs_full) ||
1489 !list_empty(&l3->slabs_partial)) {
1490 ret = -EBUSY;
1491 break;
1492 }
1493 }
1494 return ret;
1495}
1496
1497static int __meminit slab_memory_callback(struct notifier_block *self,
1498 unsigned long action, void *arg)
1499{
1500 struct memory_notify *mnb = arg;
1501 int ret = 0;
1502 int nid;
1503
1504 nid = mnb->status_change_nid;
1505 if (nid < 0)
1506 goto out;
1507
1508 switch (action) {
1509 case MEM_GOING_ONLINE:
Christoph Lameter18004c52012-07-06 15:25:12 -05001510 mutex_lock(&slab_mutex);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001511 ret = init_cache_nodelists_node(nid);
Christoph Lameter18004c52012-07-06 15:25:12 -05001512 mutex_unlock(&slab_mutex);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001513 break;
1514 case MEM_GOING_OFFLINE:
Christoph Lameter18004c52012-07-06 15:25:12 -05001515 mutex_lock(&slab_mutex);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001516 ret = drain_cache_nodelists_node(nid);
Christoph Lameter18004c52012-07-06 15:25:12 -05001517 mutex_unlock(&slab_mutex);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001518 break;
1519 case MEM_ONLINE:
1520 case MEM_OFFLINE:
1521 case MEM_CANCEL_ONLINE:
1522 case MEM_CANCEL_OFFLINE:
1523 break;
1524 }
1525out:
Prarit Bhargava5fda1bd2011-03-22 16:30:49 -07001526 return notifier_from_errno(ret);
David Rientjes8f9f8d92010-03-27 19:40:47 -07001527}
1528#endif /* CONFIG_NUMA && CONFIG_MEMORY_HOTPLUG */
1529
Christoph Lametere498be72005-09-09 13:03:32 -07001530/*
1531 * swap the static kmem_list3 with kmalloced memory
1532 */
David Rientjes8f9f8d92010-03-27 19:40:47 -07001533static void __init init_list(struct kmem_cache *cachep, struct kmem_list3 *list,
1534 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07001535{
1536 struct kmem_list3 *ptr;
1537
Pekka Enberg83b519e2009-06-10 19:40:04 +03001538 ptr = kmalloc_node(sizeof(struct kmem_list3), GFP_NOWAIT, nodeid);
Christoph Lametere498be72005-09-09 13:03:32 -07001539 BUG_ON(!ptr);
1540
Christoph Lametere498be72005-09-09 13:03:32 -07001541 memcpy(ptr, list, sizeof(struct kmem_list3));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001542 /*
1543 * Do not assume that spinlocks can be initialized via memcpy:
1544 */
1545 spin_lock_init(&ptr->list_lock);
1546
Christoph Lametere498be72005-09-09 13:03:32 -07001547 MAKE_ALL_LISTS(cachep, ptr, nodeid);
1548 cachep->nodelists[nodeid] = ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001549}
1550
Andrew Mortona737b3e2006-03-22 00:08:11 -08001551/*
Pekka Enberg556a1692008-01-25 08:20:51 +02001552 * For setting up all the kmem_list3s for cache whose buffer_size is same as
1553 * size of kmem_list3.
1554 */
1555static void __init set_up_list3s(struct kmem_cache *cachep, int index)
1556{
1557 int node;
1558
1559 for_each_online_node(node) {
1560 cachep->nodelists[node] = &initkmem_list3[index + node];
1561 cachep->nodelists[node]->next_reap = jiffies +
1562 REAPTIMEOUT_LIST3 +
1563 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
1564 }
1565}
1566
1567/*
Andrew Mortona737b3e2006-03-22 00:08:11 -08001568 * Initialisation. Called after the page allocator have been initialised and
1569 * before smp_init().
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 */
1571void __init kmem_cache_init(void)
1572{
1573 size_t left_over;
1574 struct cache_sizes *sizes;
1575 struct cache_names *names;
Christoph Lametere498be72005-09-09 13:03:32 -07001576 int i;
Jack Steiner07ed76b2006-03-07 21:55:46 -08001577 int order;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001578 int node;
Christoph Lametere498be72005-09-09 13:03:32 -07001579
Mel Gormanb6e68bc2009-06-16 15:32:16 -07001580 if (num_possible_nodes() == 1)
Siddha, Suresh B62918a02007-05-02 19:27:18 +02001581 use_alien_caches = 0;
1582
Christoph Lametere498be72005-09-09 13:03:32 -07001583 for (i = 0; i < NUM_INIT_LISTS; i++) {
1584 kmem_list3_init(&initkmem_list3[i]);
1585 if (i < MAX_NUMNODES)
1586 cache_cache.nodelists[i] = NULL;
1587 }
Pekka Enberg556a1692008-01-25 08:20:51 +02001588 set_up_list3s(&cache_cache, CACHE_CACHE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001589
1590 /*
1591 * Fragmentation resistance on low memory - only use bigger
David Rientjes3df1ccc2011-10-18 22:09:28 -07001592 * page orders on machines with more than 32MB of memory if
1593 * not overridden on the command line.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 */
David Rientjes3df1ccc2011-10-18 22:09:28 -07001595 if (!slab_max_order_set && totalram_pages > (32 << 20) >> PAGE_SHIFT)
David Rientjes543585c2011-10-18 22:09:24 -07001596 slab_max_order = SLAB_MAX_ORDER_HI;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 /* Bootstrap is tricky, because several objects are allocated
1599 * from caches that do not exist yet:
Andrew Mortona737b3e2006-03-22 00:08:11 -08001600 * 1) initialize the cache_cache cache: it contains the struct
1601 * kmem_cache structures of all caches, except cache_cache itself:
1602 * cache_cache is statically allocated.
Christoph Lametere498be72005-09-09 13:03:32 -07001603 * Initially an __init data area is used for the head array and the
1604 * kmem_list3 structures, it's replaced with a kmalloc allocated
1605 * array at the end of the bootstrap.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001606 * 2) Create the first kmalloc cache.
Pekka Enberg343e0d72006-02-01 03:05:50 -08001607 * The struct kmem_cache for the new cache is allocated normally.
Christoph Lametere498be72005-09-09 13:03:32 -07001608 * An __init data area is used for the head array.
1609 * 3) Create the remaining kmalloc caches, with minimally sized
1610 * head arrays.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611 * 4) Replace the __init data head arrays for cache_cache and the first
1612 * kmalloc cache with kmalloc allocated arrays.
Christoph Lametere498be72005-09-09 13:03:32 -07001613 * 5) Replace the __init data for kmem_list3 for cache_cache and
1614 * the other cache's with kmalloc allocated memory.
1615 * 6) Resize the head arrays of the kmalloc caches to their final sizes.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 */
1617
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07001618 node = numa_mem_id();
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001619
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 /* 1) create the cache_cache */
Christoph Lameter18004c52012-07-06 15:25:12 -05001621 INIT_LIST_HEAD(&slab_caches);
1622 list_add(&cache_cache.list, &slab_caches);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 cache_cache.colour_off = cache_line_size();
1624 cache_cache.array[smp_processor_id()] = &initarray_cache.cache;
Daniel Yeisleyec1f5ee2008-03-25 23:59:08 +02001625 cache_cache.nodelists[node] = &initkmem_list3[CACHE_CACHE + node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001626
Eric Dumazet8da34302007-05-06 14:49:29 -07001627 /*
Eric Dumazetb56efcf2011-07-20 19:04:23 +02001628 * struct kmem_cache size depends on nr_node_ids & nr_cpu_ids
Eric Dumazet8da34302007-05-06 14:49:29 -07001629 */
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05001630 cache_cache.size = offsetof(struct kmem_cache, array[nr_cpu_ids]) +
Eric Dumazetb56efcf2011-07-20 19:04:23 +02001631 nr_node_ids * sizeof(struct kmem_list3 *);
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05001632 cache_cache.object_size = cache_cache.size;
1633 cache_cache.size = ALIGN(cache_cache.size,
Andrew Mortona737b3e2006-03-22 00:08:11 -08001634 cache_line_size());
Eric Dumazet6a2d7a92006-12-13 00:34:27 -08001635 cache_cache.reciprocal_buffer_size =
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05001636 reciprocal_value(cache_cache.size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637
Jack Steiner07ed76b2006-03-07 21:55:46 -08001638 for (order = 0; order < MAX_ORDER; order++) {
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05001639 cache_estimate(order, cache_cache.size,
Jack Steiner07ed76b2006-03-07 21:55:46 -08001640 cache_line_size(), 0, &left_over, &cache_cache.num);
1641 if (cache_cache.num)
1642 break;
1643 }
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02001644 BUG_ON(!cache_cache.num);
Jack Steiner07ed76b2006-03-07 21:55:46 -08001645 cache_cache.gfporder = order;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001646 cache_cache.colour = left_over / cache_cache.colour_off;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001647 cache_cache.slab_size = ALIGN(cache_cache.num * sizeof(kmem_bufctl_t) +
1648 sizeof(struct slab), cache_line_size());
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649
1650 /* 2+3) create the kmalloc caches */
1651 sizes = malloc_sizes;
1652 names = cache_names;
1653
Andrew Mortona737b3e2006-03-22 00:08:11 -08001654 /*
1655 * Initialize the caches that provide memory for the array cache and the
1656 * kmem_list3 structures first. Without this, further allocations will
1657 * bug.
Christoph Lametere498be72005-09-09 13:03:32 -07001658 */
1659
Christoph Lameter039363f2012-07-06 15:25:10 -05001660 sizes[INDEX_AC].cs_cachep = __kmem_cache_create(names[INDEX_AC].name,
Andrew Mortona737b3e2006-03-22 00:08:11 -08001661 sizes[INDEX_AC].cs_size,
1662 ARCH_KMALLOC_MINALIGN,
1663 ARCH_KMALLOC_FLAGS|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09001664 NULL);
Christoph Lametere498be72005-09-09 13:03:32 -07001665
Andrew Mortona737b3e2006-03-22 00:08:11 -08001666 if (INDEX_AC != INDEX_L3) {
Christoph Lametere498be72005-09-09 13:03:32 -07001667 sizes[INDEX_L3].cs_cachep =
Christoph Lameter039363f2012-07-06 15:25:10 -05001668 __kmem_cache_create(names[INDEX_L3].name,
Andrew Mortona737b3e2006-03-22 00:08:11 -08001669 sizes[INDEX_L3].cs_size,
1670 ARCH_KMALLOC_MINALIGN,
1671 ARCH_KMALLOC_FLAGS|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09001672 NULL);
Andrew Mortona737b3e2006-03-22 00:08:11 -08001673 }
Christoph Lametere498be72005-09-09 13:03:32 -07001674
Ingo Molnare0a42722006-06-23 02:03:46 -07001675 slab_early_init = 0;
1676
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677 while (sizes->cs_size != ULONG_MAX) {
Christoph Lametere498be72005-09-09 13:03:32 -07001678 /*
1679 * For performance, all the general caches are L1 aligned.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001680 * This should be particularly beneficial on SMP boxes, as it
1681 * eliminates "false sharing".
1682 * Note for systems short on memory removing the alignment will
Christoph Lametere498be72005-09-09 13:03:32 -07001683 * allow tighter packing of the smaller caches.
1684 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08001685 if (!sizes->cs_cachep) {
Christoph Lameter039363f2012-07-06 15:25:10 -05001686 sizes->cs_cachep = __kmem_cache_create(names->name,
Andrew Mortona737b3e2006-03-22 00:08:11 -08001687 sizes->cs_size,
1688 ARCH_KMALLOC_MINALIGN,
1689 ARCH_KMALLOC_FLAGS|SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09001690 NULL);
Andrew Mortona737b3e2006-03-22 00:08:11 -08001691 }
Christoph Lameter4b51d662007-02-10 01:43:10 -08001692#ifdef CONFIG_ZONE_DMA
Christoph Lameter039363f2012-07-06 15:25:10 -05001693 sizes->cs_dmacachep = __kmem_cache_create(
Christoph Lameter4b51d662007-02-10 01:43:10 -08001694 names->name_dma,
Andrew Mortona737b3e2006-03-22 00:08:11 -08001695 sizes->cs_size,
1696 ARCH_KMALLOC_MINALIGN,
1697 ARCH_KMALLOC_FLAGS|SLAB_CACHE_DMA|
1698 SLAB_PANIC,
Paul Mundt20c2df82007-07-20 10:11:58 +09001699 NULL);
Christoph Lameter4b51d662007-02-10 01:43:10 -08001700#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001701 sizes++;
1702 names++;
1703 }
1704 /* 4) Replace the bootstrap head arrays */
1705 {
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001706 struct array_cache *ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001707
Pekka Enberg83b519e2009-06-10 19:40:04 +03001708 ptr = kmalloc(sizeof(struct arraycache_init), GFP_NOWAIT);
Christoph Lametere498be72005-09-09 13:03:32 -07001709
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001710 BUG_ON(cpu_cache_get(&cache_cache) != &initarray_cache.cache);
1711 memcpy(ptr, cpu_cache_get(&cache_cache),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001712 sizeof(struct arraycache_init));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001713 /*
1714 * Do not assume that spinlocks can be initialized via memcpy:
1715 */
1716 spin_lock_init(&ptr->lock);
1717
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 cache_cache.array[smp_processor_id()] = ptr;
Christoph Lametere498be72005-09-09 13:03:32 -07001719
Pekka Enberg83b519e2009-06-10 19:40:04 +03001720 ptr = kmalloc(sizeof(struct arraycache_init), GFP_NOWAIT);
Christoph Lametere498be72005-09-09 13:03:32 -07001721
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001722 BUG_ON(cpu_cache_get(malloc_sizes[INDEX_AC].cs_cachep)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001723 != &initarray_generic.cache);
Pekka Enberg9a2dba42006-02-01 03:05:49 -08001724 memcpy(ptr, cpu_cache_get(malloc_sizes[INDEX_AC].cs_cachep),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001725 sizeof(struct arraycache_init));
Ingo Molnar2b2d5492006-07-03 00:25:28 -07001726 /*
1727 * Do not assume that spinlocks can be initialized via memcpy:
1728 */
1729 spin_lock_init(&ptr->lock);
1730
Christoph Lametere498be72005-09-09 13:03:32 -07001731 malloc_sizes[INDEX_AC].cs_cachep->array[smp_processor_id()] =
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001732 ptr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 }
Christoph Lametere498be72005-09-09 13:03:32 -07001734 /* 5) Replace the bootstrap kmem_list3's */
1735 {
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001736 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737
Mel Gorman9c09a952008-01-24 05:49:54 -08001738 for_each_online_node(nid) {
Daniel Yeisleyec1f5ee2008-03-25 23:59:08 +02001739 init_list(&cache_cache, &initkmem_list3[CACHE_CACHE + nid], nid);
Pekka Enberg556a1692008-01-25 08:20:51 +02001740
Christoph Lametere498be72005-09-09 13:03:32 -07001741 init_list(malloc_sizes[INDEX_AC].cs_cachep,
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001742 &initkmem_list3[SIZE_AC + nid], nid);
Christoph Lametere498be72005-09-09 13:03:32 -07001743
1744 if (INDEX_AC != INDEX_L3) {
1745 init_list(malloc_sizes[INDEX_L3].cs_cachep,
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07001746 &initkmem_list3[SIZE_L3 + nid], nid);
Christoph Lametere498be72005-09-09 13:03:32 -07001747 }
1748 }
1749 }
1750
Christoph Lameter97d06602012-07-06 15:25:11 -05001751 slab_state = UP;
Pekka Enberg8429db52009-06-12 15:58:59 +03001752}
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -07001753
Pekka Enberg8429db52009-06-12 15:58:59 +03001754void __init kmem_cache_init_late(void)
1755{
1756 struct kmem_cache *cachep;
1757
Christoph Lameter97d06602012-07-06 15:25:11 -05001758 slab_state = UP;
Peter Zijlstra52cef182011-11-28 21:12:40 +01001759
Peter Zijlstra30765b92011-07-28 23:22:56 +02001760 /* Annotate slab for lockdep -- annotate the malloc caches */
1761 init_lock_keys();
1762
Pekka Enberg8429db52009-06-12 15:58:59 +03001763 /* 6) resize the head arrays to their final sizes */
Christoph Lameter18004c52012-07-06 15:25:12 -05001764 mutex_lock(&slab_mutex);
1765 list_for_each_entry(cachep, &slab_caches, list)
Pekka Enberg8429db52009-06-12 15:58:59 +03001766 if (enable_cpucache(cachep, GFP_NOWAIT))
1767 BUG();
Christoph Lameter18004c52012-07-06 15:25:12 -05001768 mutex_unlock(&slab_mutex);
Ravikiran G Thirumalai056c6242006-09-25 23:31:38 -07001769
Christoph Lameter97d06602012-07-06 15:25:11 -05001770 /* Done! */
1771 slab_state = FULL;
1772
Andrew Mortona737b3e2006-03-22 00:08:11 -08001773 /*
1774 * Register a cpu startup notifier callback that initializes
1775 * cpu_cache_get for all new cpus
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 */
1777 register_cpu_notifier(&cpucache_notifier);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778
David Rientjes8f9f8d92010-03-27 19:40:47 -07001779#ifdef CONFIG_NUMA
1780 /*
1781 * Register a memory hotplug callback that initializes and frees
1782 * nodelists.
1783 */
1784 hotplug_memory_notifier(slab_memory_callback, SLAB_CALLBACK_PRI);
1785#endif
1786
Andrew Mortona737b3e2006-03-22 00:08:11 -08001787 /*
1788 * The reap timers are started later, with a module init call: That part
1789 * of the kernel is not yet operational.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001790 */
1791}
1792
1793static int __init cpucache_init(void)
1794{
1795 int cpu;
1796
Andrew Mortona737b3e2006-03-22 00:08:11 -08001797 /*
1798 * Register the timers that return unneeded pages to the page allocator
Linus Torvalds1da177e2005-04-16 15:20:36 -07001799 */
Christoph Lametere498be72005-09-09 13:03:32 -07001800 for_each_online_cpu(cpu)
Andrew Mortona737b3e2006-03-22 00:08:11 -08001801 start_cpu_timer(cpu);
Glauber Costaa164f8962012-06-21 00:59:18 +04001802
1803 /* Done! */
Christoph Lameter97d06602012-07-06 15:25:11 -05001804 slab_state = FULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805 return 0;
1806}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807__initcall(cpucache_init);
1808
Rafael Aquini8bdec192012-03-09 17:27:27 -03001809static noinline void
1810slab_out_of_memory(struct kmem_cache *cachep, gfp_t gfpflags, int nodeid)
1811{
1812 struct kmem_list3 *l3;
1813 struct slab *slabp;
1814 unsigned long flags;
1815 int node;
1816
1817 printk(KERN_WARNING
1818 "SLAB: Unable to allocate memory on node %d (gfp=0x%x)\n",
1819 nodeid, gfpflags);
1820 printk(KERN_WARNING " cache: %s, object size: %d, order: %d\n",
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05001821 cachep->name, cachep->size, cachep->gfporder);
Rafael Aquini8bdec192012-03-09 17:27:27 -03001822
1823 for_each_online_node(node) {
1824 unsigned long active_objs = 0, num_objs = 0, free_objects = 0;
1825 unsigned long active_slabs = 0, num_slabs = 0;
1826
1827 l3 = cachep->nodelists[node];
1828 if (!l3)
1829 continue;
1830
1831 spin_lock_irqsave(&l3->list_lock, flags);
1832 list_for_each_entry(slabp, &l3->slabs_full, list) {
1833 active_objs += cachep->num;
1834 active_slabs++;
1835 }
1836 list_for_each_entry(slabp, &l3->slabs_partial, list) {
1837 active_objs += slabp->inuse;
1838 active_slabs++;
1839 }
1840 list_for_each_entry(slabp, &l3->slabs_free, list)
1841 num_slabs++;
1842
1843 free_objects += l3->free_objects;
1844 spin_unlock_irqrestore(&l3->list_lock, flags);
1845
1846 num_slabs += active_slabs;
1847 num_objs = num_slabs * cachep->num;
1848 printk(KERN_WARNING
1849 " node %d: slabs: %ld/%ld, objs: %ld/%ld, free: %ld\n",
1850 node, active_slabs, num_slabs, active_objs, num_objs,
1851 free_objects);
1852 }
1853}
1854
Linus Torvalds1da177e2005-04-16 15:20:36 -07001855/*
1856 * Interface to system's page allocator. No need to hold the cache-lock.
1857 *
1858 * If we requested dmaable memory, we will get it. Even if we
1859 * did not request dmaable memory, we might get it, but that
1860 * would be relatively rare and ignorable.
1861 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001862static void *kmem_getpages(struct kmem_cache *cachep, gfp_t flags, int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863{
1864 struct page *page;
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001865 int nr_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 int i;
1867
Luke Yangd6fef9d2006-04-10 22:52:56 -07001868#ifndef CONFIG_MMU
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001869 /*
1870 * Nommu uses slab's for process anonymous memory allocations, and thus
1871 * requires __GFP_COMP to properly refcount higher order allocations
Luke Yangd6fef9d2006-04-10 22:52:56 -07001872 */
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001873 flags |= __GFP_COMP;
Luke Yangd6fef9d2006-04-10 22:52:56 -07001874#endif
Christoph Lameter765c4502006-09-27 01:50:08 -07001875
Glauber Costaa618e892012-06-14 16:17:21 +04001876 flags |= cachep->allocflags;
Mel Gormane12ba742007-10-16 01:25:52 -07001877 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1878 flags |= __GFP_RECLAIMABLE;
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001879
Linus Torvalds517d0862009-06-16 19:50:13 -07001880 page = alloc_pages_exact_node(nodeid, flags | __GFP_NOTRACK, cachep->gfporder);
Rafael Aquini8bdec192012-03-09 17:27:27 -03001881 if (!page) {
1882 if (!(flags & __GFP_NOWARN) && printk_ratelimit())
1883 slab_out_of_memory(cachep, flags, nodeid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001884 return NULL;
Rafael Aquini8bdec192012-03-09 17:27:27 -03001885 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886
Mel Gorman072bb0a2012-07-31 16:43:58 -07001887 /* Record if ALLOC_PFMEMALLOC was set when allocating the slab */
1888 if (unlikely(page->pfmemalloc))
1889 pfmemalloc_active = true;
1890
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001891 nr_pages = (1 << cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
Christoph Lameter972d1a72006-09-25 23:31:51 -07001893 add_zone_page_state(page_zone(page),
1894 NR_SLAB_RECLAIMABLE, nr_pages);
1895 else
1896 add_zone_page_state(page_zone(page),
1897 NR_SLAB_UNRECLAIMABLE, nr_pages);
Mel Gorman072bb0a2012-07-31 16:43:58 -07001898 for (i = 0; i < nr_pages; i++) {
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001899 __SetPageSlab(page + i);
Pekka Enbergc175eea2008-05-09 20:35:53 +02001900
Mel Gorman072bb0a2012-07-31 16:43:58 -07001901 if (page->pfmemalloc)
1902 SetPageSlabPfmemalloc(page + i);
1903 }
1904
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001905 if (kmemcheck_enabled && !(cachep->flags & SLAB_NOTRACK)) {
1906 kmemcheck_alloc_shadow(page, cachep->gfporder, flags, nodeid);
1907
1908 if (cachep->ctor)
1909 kmemcheck_mark_uninitialized_pages(page, nr_pages);
1910 else
1911 kmemcheck_mark_unallocated_pages(page, nr_pages);
1912 }
Pekka Enbergc175eea2008-05-09 20:35:53 +02001913
Christoph Hellwige1b6aa62006-06-23 02:03:17 -07001914 return page_address(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915}
1916
1917/*
1918 * Interface to system's page release.
1919 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08001920static void kmem_freepages(struct kmem_cache *cachep, void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001922 unsigned long i = (1 << cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 struct page *page = virt_to_page(addr);
1924 const unsigned long nr_freed = i;
1925
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001926 kmemcheck_free_shadow(page, cachep->gfporder);
Pekka Enbergc175eea2008-05-09 20:35:53 +02001927
Christoph Lameter972d1a72006-09-25 23:31:51 -07001928 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1929 sub_zone_page_state(page_zone(page),
1930 NR_SLAB_RECLAIMABLE, nr_freed);
1931 else
1932 sub_zone_page_state(page_zone(page),
1933 NR_SLAB_UNRECLAIMABLE, nr_freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 while (i--) {
Nick Pigginf205b2f2006-03-22 00:08:02 -08001935 BUG_ON(!PageSlab(page));
Mel Gorman072bb0a2012-07-31 16:43:58 -07001936 __ClearPageSlabPfmemalloc(page);
Nick Pigginf205b2f2006-03-22 00:08:02 -08001937 __ClearPageSlab(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938 page++;
1939 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001940 if (current->reclaim_state)
1941 current->reclaim_state->reclaimed_slab += nr_freed;
1942 free_pages((unsigned long)addr, cachep->gfporder);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943}
1944
1945static void kmem_rcu_free(struct rcu_head *head)
1946{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001947 struct slab_rcu *slab_rcu = (struct slab_rcu *)head;
Pekka Enberg343e0d72006-02-01 03:05:50 -08001948 struct kmem_cache *cachep = slab_rcu->cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001949
1950 kmem_freepages(cachep, slab_rcu->addr);
1951 if (OFF_SLAB(cachep))
1952 kmem_cache_free(cachep->slabp_cache, slab_rcu);
1953}
1954
1955#if DEBUG
1956
1957#ifdef CONFIG_DEBUG_PAGEALLOC
Pekka Enberg343e0d72006-02-01 03:05:50 -08001958static void store_stackinfo(struct kmem_cache *cachep, unsigned long *addr,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001959 unsigned long caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960{
Christoph Lameter8c138bc2012-06-13 10:24:58 -05001961 int size = cachep->object_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001962
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001963 addr = (unsigned long *)&((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001965 if (size < 5 * sizeof(unsigned long))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966 return;
1967
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001968 *addr++ = 0x12345678;
1969 *addr++ = caller;
1970 *addr++ = smp_processor_id();
1971 size -= 3 * sizeof(unsigned long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972 {
1973 unsigned long *sptr = &caller;
1974 unsigned long svalue;
1975
1976 while (!kstack_end(sptr)) {
1977 svalue = *sptr++;
1978 if (kernel_text_address(svalue)) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001979 *addr++ = svalue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001980 size -= sizeof(unsigned long);
1981 if (size <= sizeof(unsigned long))
1982 break;
1983 }
1984 }
1985
1986 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001987 *addr++ = 0x87654321;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001988}
1989#endif
1990
Pekka Enberg343e0d72006-02-01 03:05:50 -08001991static void poison_obj(struct kmem_cache *cachep, void *addr, unsigned char val)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001992{
Christoph Lameter8c138bc2012-06-13 10:24:58 -05001993 int size = cachep->object_size;
Manfred Spraul3dafccf2006-02-01 03:05:42 -08001994 addr = &((char *)addr)[obj_offset(cachep)];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995
1996 memset(addr, val, size);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08001997 *(unsigned char *)(addr + size - 1) = POISON_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998}
1999
2000static void dump_line(char *data, int offset, int limit)
2001{
2002 int i;
Dave Jonesaa83aa42006-09-29 01:59:51 -07002003 unsigned char error = 0;
2004 int bad_count = 0;
2005
Sebastian Andrzej Siewiorfdde6ab2011-07-29 18:22:13 +02002006 printk(KERN_ERR "%03x: ", offset);
Dave Jonesaa83aa42006-09-29 01:59:51 -07002007 for (i = 0; i < limit; i++) {
2008 if (data[offset + i] != POISON_FREE) {
2009 error = data[offset + i];
2010 bad_count++;
2011 }
Dave Jonesaa83aa42006-09-29 01:59:51 -07002012 }
Sebastian Andrzej Siewiorfdde6ab2011-07-29 18:22:13 +02002013 print_hex_dump(KERN_CONT, "", 0, 16, 1,
2014 &data[offset], limit, 1);
Dave Jonesaa83aa42006-09-29 01:59:51 -07002015
2016 if (bad_count == 1) {
2017 error ^= POISON_FREE;
2018 if (!(error & (error - 1))) {
2019 printk(KERN_ERR "Single bit error detected. Probably "
2020 "bad RAM.\n");
2021#ifdef CONFIG_X86
2022 printk(KERN_ERR "Run memtest86+ or a similar memory "
2023 "test tool.\n");
2024#else
2025 printk(KERN_ERR "Run a memory test tool.\n");
2026#endif
2027 }
2028 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029}
2030#endif
2031
2032#if DEBUG
2033
Pekka Enberg343e0d72006-02-01 03:05:50 -08002034static void print_objinfo(struct kmem_cache *cachep, void *objp, int lines)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035{
2036 int i, size;
2037 char *realobj;
2038
2039 if (cachep->flags & SLAB_RED_ZONE) {
David Woodhouseb46b8f12007-05-08 00:22:59 -07002040 printk(KERN_ERR "Redzone: 0x%llx/0x%llx.\n",
Andrew Mortona737b3e2006-03-22 00:08:11 -08002041 *dbg_redzone1(cachep, objp),
2042 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002043 }
2044
2045 if (cachep->flags & SLAB_STORE_USER) {
2046 printk(KERN_ERR "Last user: [<%p>]",
Andrew Mortona737b3e2006-03-22 00:08:11 -08002047 *dbg_userword(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002048 print_symbol("(%s)",
Andrew Mortona737b3e2006-03-22 00:08:11 -08002049 (unsigned long)*dbg_userword(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002050 printk("\n");
2051 }
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002052 realobj = (char *)objp + obj_offset(cachep);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05002053 size = cachep->object_size;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002054 for (i = 0; i < size && lines; i += 16, lines--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 int limit;
2056 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002057 if (i + limit > size)
2058 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 dump_line(realobj, i, limit);
2060 }
2061}
2062
Pekka Enberg343e0d72006-02-01 03:05:50 -08002063static void check_poison_obj(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064{
2065 char *realobj;
2066 int size, i;
2067 int lines = 0;
2068
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002069 realobj = (char *)objp + obj_offset(cachep);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05002070 size = cachep->object_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002071
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002072 for (i = 0; i < size; i++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 char exp = POISON_FREE;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002074 if (i == size - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 exp = POISON_END;
2076 if (realobj[i] != exp) {
2077 int limit;
2078 /* Mismatch ! */
2079 /* Print header */
2080 if (lines == 0) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002081 printk(KERN_ERR
Dave Jonesface37f2011-11-15 15:03:52 -08002082 "Slab corruption (%s): %s start=%p, len=%d\n",
2083 print_tainted(), cachep->name, realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 print_objinfo(cachep, objp, 0);
2085 }
2086 /* Hexdump the affected line */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002087 i = (i / 16) * 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088 limit = 16;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002089 if (i + limit > size)
2090 limit = size - i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 dump_line(realobj, i, limit);
2092 i += 16;
2093 lines++;
2094 /* Limit to 5 lines */
2095 if (lines > 5)
2096 break;
2097 }
2098 }
2099 if (lines != 0) {
2100 /* Print some data about the neighboring objects, if they
2101 * exist:
2102 */
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -08002103 struct slab *slabp = virt_to_slab(objp);
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002104 unsigned int objnr;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002106 objnr = obj_to_index(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 if (objnr) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002108 objp = index_to_obj(cachep, slabp, objnr - 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002109 realobj = (char *)objp + obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002110 printk(KERN_ERR "Prev obj: start=%p, len=%d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002111 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 print_objinfo(cachep, objp, 2);
2113 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002114 if (objnr + 1 < cachep->num) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002115 objp = index_to_obj(cachep, slabp, objnr + 1);
Manfred Spraul3dafccf2006-02-01 03:05:42 -08002116 realobj = (char *)objp + obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002117 printk(KERN_ERR "Next obj: start=%p, len=%d\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002118 realobj, size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002119 print_objinfo(cachep, objp, 2);
2120 }
2121 }
2122}
2123#endif
2124
Linus Torvalds1da177e2005-04-16 15:20:36 -07002125#if DEBUG
Rabin Vincente79aec22008-07-04 00:40:32 +05302126static void slab_destroy_debugcheck(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002127{
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 int i;
2129 for (i = 0; i < cachep->num; i++) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002130 void *objp = index_to_obj(cachep, slabp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002131
2132 if (cachep->flags & SLAB_POISON) {
2133#ifdef CONFIG_DEBUG_PAGEALLOC
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002134 if (cachep->size % PAGE_SIZE == 0 &&
Andrew Mortona737b3e2006-03-22 00:08:11 -08002135 OFF_SLAB(cachep))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002136 kernel_map_pages(virt_to_page(objp),
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002137 cachep->size / PAGE_SIZE, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 else
2139 check_poison_obj(cachep, objp);
2140#else
2141 check_poison_obj(cachep, objp);
2142#endif
2143 }
2144 if (cachep->flags & SLAB_RED_ZONE) {
2145 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
2146 slab_error(cachep, "start of a freed object "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002147 "was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
2149 slab_error(cachep, "end of a freed object "
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002150 "was overwritten");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002151 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 }
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002153}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002154#else
Rabin Vincente79aec22008-07-04 00:40:32 +05302155static void slab_destroy_debugcheck(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002156{
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002157}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002158#endif
2159
Randy Dunlap911851e2006-03-22 00:08:14 -08002160/**
2161 * slab_destroy - destroy and release all objects in a slab
2162 * @cachep: cache pointer being destroyed
2163 * @slabp: slab pointer being destroyed
2164 *
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002165 * Destroy all the objs in a slab, and release the mem back to the system.
Andrew Mortona737b3e2006-03-22 00:08:11 -08002166 * Before calling the slab must have been unlinked from the cache. The
2167 * cache-lock is not held/needed.
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002168 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002169static void slab_destroy(struct kmem_cache *cachep, struct slab *slabp)
Matthew Dobson12dd36f2006-02-01 03:05:46 -08002170{
2171 void *addr = slabp->s_mem - slabp->colouroff;
2172
Rabin Vincente79aec22008-07-04 00:40:32 +05302173 slab_destroy_debugcheck(cachep, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 if (unlikely(cachep->flags & SLAB_DESTROY_BY_RCU)) {
2175 struct slab_rcu *slab_rcu;
2176
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002177 slab_rcu = (struct slab_rcu *)slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002178 slab_rcu->cachep = cachep;
2179 slab_rcu->addr = addr;
2180 call_rcu(&slab_rcu->head, kmem_rcu_free);
2181 } else {
2182 kmem_freepages(cachep, addr);
Ingo Molnar873623d2006-07-13 14:44:38 +02002183 if (OFF_SLAB(cachep))
2184 kmem_cache_free(cachep->slabp_cache, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002185 }
2186}
2187
Christoph Lameter117f6eb2006-09-25 23:31:37 -07002188static void __kmem_cache_destroy(struct kmem_cache *cachep)
2189{
2190 int i;
2191 struct kmem_list3 *l3;
2192
2193 for_each_online_cpu(i)
2194 kfree(cachep->array[i]);
2195
2196 /* NUMA: free the list3 structures */
2197 for_each_online_node(i) {
2198 l3 = cachep->nodelists[i];
2199 if (l3) {
2200 kfree(l3->shared);
2201 free_alien_cache(l3->alien);
2202 kfree(l3);
2203 }
2204 }
2205 kmem_cache_free(&cache_cache, cachep);
2206}
2207
2208
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209/**
Randy.Dunlapa70773d2006-02-01 03:05:52 -08002210 * calculate_slab_order - calculate size (page order) of slabs
2211 * @cachep: pointer to the cache that is being created
2212 * @size: size of objects to be created in this cache.
2213 * @align: required alignment for the objects.
2214 * @flags: slab allocation flags
2215 *
2216 * Also calculates the number of objects per slab.
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002217 *
2218 * This could be made much more intelligent. For now, try to avoid using
2219 * high order pages for slabs. When the gfp() functions are more friendly
2220 * towards high-order requests, this should be changed.
2221 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002222static size_t calculate_slab_order(struct kmem_cache *cachep,
Randy Dunlapee13d782006-02-01 03:05:53 -08002223 size_t size, size_t align, unsigned long flags)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002224{
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02002225 unsigned long offslab_limit;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002226 size_t left_over = 0;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002227 int gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002228
Christoph Lameter0aa817f2007-05-16 22:11:01 -07002229 for (gfporder = 0; gfporder <= KMALLOC_MAX_ORDER; gfporder++) {
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002230 unsigned int num;
2231 size_t remainder;
2232
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002233 cache_estimate(gfporder, size, align, flags, &remainder, &num);
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002234 if (!num)
2235 continue;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002236
Ingo Molnarb1ab41c2006-06-02 15:44:58 +02002237 if (flags & CFLGS_OFF_SLAB) {
2238 /*
2239 * Max number of objs-per-slab for caches which
2240 * use off-slab slabs. Needed to avoid a possible
2241 * looping condition in cache_grow().
2242 */
2243 offslab_limit = size - sizeof(struct slab);
2244 offslab_limit /= sizeof(kmem_bufctl_t);
2245
2246 if (num > offslab_limit)
2247 break;
2248 }
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002249
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002250 /* Found something acceptable - save it away */
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002251 cachep->num = num;
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002252 cachep->gfporder = gfporder;
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002253 left_over = remainder;
2254
2255 /*
Linus Torvaldsf78bb8a2006-03-08 10:33:05 -08002256 * A VFS-reclaimable slab tends to have most allocations
2257 * as GFP_NOFS and we really don't want to have to be allocating
2258 * higher-order pages when we are unable to shrink dcache.
2259 */
2260 if (flags & SLAB_RECLAIM_ACCOUNT)
2261 break;
2262
2263 /*
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002264 * Large number of objects is good, but very large slabs are
2265 * currently bad for the gfp()s.
2266 */
David Rientjes543585c2011-10-18 22:09:24 -07002267 if (gfporder >= slab_max_order)
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002268 break;
2269
Linus Torvalds9888e6f2006-03-06 17:44:43 -08002270 /*
2271 * Acceptable internal fragmentation?
2272 */
Andrew Mortona737b3e2006-03-22 00:08:11 -08002273 if (left_over * 8 <= (PAGE_SIZE << gfporder))
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002274 break;
2275 }
2276 return left_over;
2277}
2278
Pekka Enberg83b519e2009-06-10 19:40:04 +03002279static int __init_refok setup_cpu_cache(struct kmem_cache *cachep, gfp_t gfp)
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002280{
Christoph Lameter97d06602012-07-06 15:25:11 -05002281 if (slab_state >= FULL)
Pekka Enberg83b519e2009-06-10 19:40:04 +03002282 return enable_cpucache(cachep, gfp);
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002283
Christoph Lameter97d06602012-07-06 15:25:11 -05002284 if (slab_state == DOWN) {
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002285 /*
2286 * Note: the first kmem_cache_create must create the cache
2287 * that's used by kmalloc(24), otherwise the creation of
2288 * further caches will BUG().
2289 */
2290 cachep->array[smp_processor_id()] = &initarray_generic.cache;
2291
2292 /*
2293 * If the cache that's used by kmalloc(sizeof(kmem_list3)) is
2294 * the first cache, then we need to set up all its list3s,
2295 * otherwise the creation of further caches will BUG().
2296 */
2297 set_up_list3s(cachep, SIZE_AC);
2298 if (INDEX_AC == INDEX_L3)
Christoph Lameter97d06602012-07-06 15:25:11 -05002299 slab_state = PARTIAL_L3;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002300 else
Christoph Lameter97d06602012-07-06 15:25:11 -05002301 slab_state = PARTIAL_ARRAYCACHE;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002302 } else {
2303 cachep->array[smp_processor_id()] =
Pekka Enberg83b519e2009-06-10 19:40:04 +03002304 kmalloc(sizeof(struct arraycache_init), gfp);
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002305
Christoph Lameter97d06602012-07-06 15:25:11 -05002306 if (slab_state == PARTIAL_ARRAYCACHE) {
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002307 set_up_list3s(cachep, SIZE_L3);
Christoph Lameter97d06602012-07-06 15:25:11 -05002308 slab_state = PARTIAL_L3;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002309 } else {
2310 int node;
Pekka Enberg556a1692008-01-25 08:20:51 +02002311 for_each_online_node(node) {
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002312 cachep->nodelists[node] =
2313 kmalloc_node(sizeof(struct kmem_list3),
Pekka Enbergeb91f1d2009-06-12 14:56:09 +03002314 gfp, node);
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002315 BUG_ON(!cachep->nodelists[node]);
2316 kmem_list3_init(cachep->nodelists[node]);
2317 }
2318 }
2319 }
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07002320 cachep->nodelists[numa_mem_id()]->next_reap =
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002321 jiffies + REAPTIMEOUT_LIST3 +
2322 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
2323
2324 cpu_cache_get(cachep)->avail = 0;
2325 cpu_cache_get(cachep)->limit = BOOT_CPUCACHE_ENTRIES;
2326 cpu_cache_get(cachep)->batchcount = 1;
2327 cpu_cache_get(cachep)->touched = 0;
2328 cachep->batchcount = 1;
2329 cachep->limit = BOOT_CPUCACHE_ENTRIES;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002330 return 0;
Pekka Enbergf30cf7d2006-03-22 00:08:11 -08002331}
2332
Pekka Enberg4d268eb2006-01-08 01:00:36 -08002333/**
Christoph Lameter039363f2012-07-06 15:25:10 -05002334 * __kmem_cache_create - Create a cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002335 * @name: A string which is used in /proc/slabinfo to identify this cache.
2336 * @size: The size of objects to be created in this cache.
2337 * @align: The required alignment for the objects.
2338 * @flags: SLAB flags
2339 * @ctor: A constructor for the objects.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340 *
2341 * Returns a ptr to the cache on success, NULL on failure.
2342 * Cannot be called within a int, but can be interrupted.
Paul Mundt20c2df82007-07-20 10:11:58 +09002343 * The @ctor is run when new pages are allocated by the cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002344 *
2345 * @name must be valid until the cache is destroyed. This implies that
Andrew Mortona737b3e2006-03-22 00:08:11 -08002346 * the module calling this has to destroy the cache before getting unloaded.
2347 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002348 * The flags are
2349 *
2350 * %SLAB_POISON - Poison the slab with a known test pattern (a5a5a5a5)
2351 * to catch references to uninitialised memory.
2352 *
2353 * %SLAB_RED_ZONE - Insert `Red' zones around the allocated memory to check
2354 * for buffer overruns.
2355 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002356 * %SLAB_HWCACHE_ALIGN - Align the objects in this cache to a hardware
2357 * cacheline. This can be beneficial if you're counting cycles as closely
2358 * as davem.
2359 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002360struct kmem_cache *
Christoph Lameter039363f2012-07-06 15:25:10 -05002361__kmem_cache_create (const char *name, size_t size, size_t align,
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002362 unsigned long flags, void (*ctor)(void *))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363{
2364 size_t left_over, slab_size, ralign;
Christoph Lameter20cea962012-07-06 15:25:13 -05002365 struct kmem_cache *cachep = NULL;
Pekka Enberg83b519e2009-06-10 19:40:04 +03002366 gfp_t gfp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367
Linus Torvalds1da177e2005-04-16 15:20:36 -07002368#if DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07002369#if FORCED_DEBUG
2370 /*
2371 * Enable redzoning and last user accounting, except for caches with
2372 * large objects, if the increased size would increase the object size
2373 * above the next power of two: caches with object sizes just above a
2374 * power of two have a significant amount of internal fragmentation.
2375 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002376 if (size < 4096 || fls(size - 1) == fls(size-1 + REDZONE_ALIGN +
2377 2 * sizeof(unsigned long long)))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002378 flags |= SLAB_RED_ZONE | SLAB_STORE_USER;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002379 if (!(flags & SLAB_DESTROY_BY_RCU))
2380 flags |= SLAB_POISON;
2381#endif
2382 if (flags & SLAB_DESTROY_BY_RCU)
2383 BUG_ON(flags & SLAB_POISON);
2384#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002385 /*
Andrew Mortona737b3e2006-03-22 00:08:11 -08002386 * Always checks flags, a caller might be expecting debug support which
2387 * isn't available.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 */
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002389 BUG_ON(flags & ~CREATE_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390
Andrew Mortona737b3e2006-03-22 00:08:11 -08002391 /*
2392 * Check that size is in terms of words. This is needed to avoid
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 * unaligned accesses for some archs when redzoning is used, and makes
2394 * sure any on-slab bufctl's are also correctly aligned.
2395 */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002396 if (size & (BYTES_PER_WORD - 1)) {
2397 size += (BYTES_PER_WORD - 1);
2398 size &= ~(BYTES_PER_WORD - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002399 }
2400
Andrew Mortona737b3e2006-03-22 00:08:11 -08002401 /* calculate the final buffer alignment: */
2402
Linus Torvalds1da177e2005-04-16 15:20:36 -07002403 /* 1) arch recommendation: can be overridden for debug */
2404 if (flags & SLAB_HWCACHE_ALIGN) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08002405 /*
2406 * Default alignment: as specified by the arch code. Except if
2407 * an object is really small, then squeeze multiple objects into
2408 * one cacheline.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002409 */
2410 ralign = cache_line_size();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002411 while (size <= ralign / 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002412 ralign /= 2;
2413 } else {
2414 ralign = BYTES_PER_WORD;
2415 }
Pekka Enbergca5f9702006-09-25 23:31:25 -07002416
2417 /*
David Woodhouse87a927c2007-07-04 21:26:44 -04002418 * Redzoning and user store require word alignment or possibly larger.
2419 * Note this will be overridden by architecture or caller mandated
2420 * alignment if either is greater than BYTES_PER_WORD.
Pekka Enbergca5f9702006-09-25 23:31:25 -07002421 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002422 if (flags & SLAB_STORE_USER)
2423 ralign = BYTES_PER_WORD;
2424
2425 if (flags & SLAB_RED_ZONE) {
2426 ralign = REDZONE_ALIGN;
2427 /* If redzoning, ensure that the second redzone is suitably
2428 * aligned, by adjusting the object size accordingly. */
2429 size += REDZONE_ALIGN - 1;
2430 size &= ~(REDZONE_ALIGN - 1);
2431 }
Pekka Enbergca5f9702006-09-25 23:31:25 -07002432
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002433 /* 2) arch mandated alignment */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002434 if (ralign < ARCH_SLAB_MINALIGN) {
2435 ralign = ARCH_SLAB_MINALIGN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002436 }
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002437 /* 3) caller mandated alignment */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002438 if (ralign < align) {
2439 ralign = align;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002440 }
Pekka Enberg3ff84a72011-02-14 17:46:21 +02002441 /* disable debug if necessary */
2442 if (ralign > __alignof__(unsigned long long))
Kevin Hilmana44b56d2006-12-06 20:32:11 -08002443 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
Andrew Mortona737b3e2006-03-22 00:08:11 -08002444 /*
Pekka Enbergca5f9702006-09-25 23:31:25 -07002445 * 4) Store it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002446 */
2447 align = ralign;
2448
Pekka Enberg83b519e2009-06-10 19:40:04 +03002449 if (slab_is_available())
2450 gfp = GFP_KERNEL;
2451 else
2452 gfp = GFP_NOWAIT;
2453
Linus Torvalds1da177e2005-04-16 15:20:36 -07002454 /* Get cache's description obj. */
Pekka Enberg83b519e2009-06-10 19:40:04 +03002455 cachep = kmem_cache_zalloc(&cache_cache, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002456 if (!cachep)
Christoph Lameter039363f2012-07-06 15:25:10 -05002457 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002458
Eric Dumazetb56efcf2011-07-20 19:04:23 +02002459 cachep->nodelists = (struct kmem_list3 **)&cachep->array[nr_cpu_ids];
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002460 cachep->object_size = size;
2461 cachep->align = align;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002462#if DEBUG
Linus Torvalds1da177e2005-04-16 15:20:36 -07002463
Pekka Enbergca5f9702006-09-25 23:31:25 -07002464 /*
2465 * Both debugging options require word-alignment which is calculated
2466 * into align above.
2467 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002468 if (flags & SLAB_RED_ZONE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002469 /* add space for red zone words */
Pekka Enberg3ff84a72011-02-14 17:46:21 +02002470 cachep->obj_offset += sizeof(unsigned long long);
2471 size += 2 * sizeof(unsigned long long);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002472 }
2473 if (flags & SLAB_STORE_USER) {
Pekka Enbergca5f9702006-09-25 23:31:25 -07002474 /* user store requires one word storage behind the end of
David Woodhouse87a927c2007-07-04 21:26:44 -04002475 * the real object. But if the second red zone needs to be
2476 * aligned to 64 bits, we must allow that much space.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477 */
David Woodhouse87a927c2007-07-04 21:26:44 -04002478 if (flags & SLAB_RED_ZONE)
2479 size += REDZONE_ALIGN;
2480 else
2481 size += BYTES_PER_WORD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002482 }
2483#if FORCED_DEBUG && defined(CONFIG_DEBUG_PAGEALLOC)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002484 if (size >= malloc_sizes[INDEX_L3 + 1].cs_size
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002485 && cachep->object_size > cache_line_size() && ALIGN(size, align) < PAGE_SIZE) {
Carsten Otte1ab335d2010-08-06 18:19:22 +02002486 cachep->obj_offset += PAGE_SIZE - ALIGN(size, align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 size = PAGE_SIZE;
2488 }
2489#endif
2490#endif
2491
Ingo Molnare0a42722006-06-23 02:03:46 -07002492 /*
2493 * Determine if the slab management is 'on' or 'off' slab.
2494 * (bootstrapping cannot cope with offslab caches so don't do
Catalin Marinase7cb55b2009-10-28 13:33:08 +00002495 * it too early on. Always use on-slab management when
2496 * SLAB_NOLEAKTRACE to avoid recursive calls into kmemleak)
Ingo Molnare0a42722006-06-23 02:03:46 -07002497 */
Catalin Marinase7cb55b2009-10-28 13:33:08 +00002498 if ((size >= (PAGE_SIZE >> 3)) && !slab_early_init &&
2499 !(flags & SLAB_NOLEAKTRACE))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002500 /*
2501 * Size is large, assume best to place the slab management obj
2502 * off-slab (should allow better packing of objs).
2503 */
2504 flags |= CFLGS_OFF_SLAB;
2505
2506 size = ALIGN(size, align);
2507
Linus Torvaldsf78bb8a2006-03-08 10:33:05 -08002508 left_over = calculate_slab_order(cachep, size, align, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002509
2510 if (!cachep->num) {
matzeb4169522007-05-06 14:49:52 -07002511 printk(KERN_ERR
2512 "kmem_cache_create: couldn't create cache %s.\n", name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002513 kmem_cache_free(&cache_cache, cachep);
Christoph Lameter039363f2012-07-06 15:25:10 -05002514 return NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002515 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002516 slab_size = ALIGN(cachep->num * sizeof(kmem_bufctl_t)
2517 + sizeof(struct slab), align);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518
2519 /*
2520 * If the slab has been placed off-slab, and we have enough space then
2521 * move it on-slab. This is at the expense of any extra colouring.
2522 */
2523 if (flags & CFLGS_OFF_SLAB && left_over >= slab_size) {
2524 flags &= ~CFLGS_OFF_SLAB;
2525 left_over -= slab_size;
2526 }
2527
2528 if (flags & CFLGS_OFF_SLAB) {
2529 /* really off slab. No need for manual alignment */
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002530 slab_size =
2531 cachep->num * sizeof(kmem_bufctl_t) + sizeof(struct slab);
Ron Lee67461362009-05-22 04:58:22 +09302532
2533#ifdef CONFIG_PAGE_POISONING
2534 /* If we're going to use the generic kernel_map_pages()
2535 * poisoning, then it's going to smash the contents of
2536 * the redzone and userword anyhow, so switch them off.
2537 */
2538 if (size % PAGE_SIZE == 0 && flags & SLAB_POISON)
2539 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
2540#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 }
2542
2543 cachep->colour_off = cache_line_size();
2544 /* Offset must be a multiple of the alignment. */
2545 if (cachep->colour_off < align)
2546 cachep->colour_off = align;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002547 cachep->colour = left_over / cachep->colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002548 cachep->slab_size = slab_size;
2549 cachep->flags = flags;
Glauber Costaa618e892012-06-14 16:17:21 +04002550 cachep->allocflags = 0;
Christoph Lameter4b51d662007-02-10 01:43:10 -08002551 if (CONFIG_ZONE_DMA_FLAG && (flags & SLAB_CACHE_DMA))
Glauber Costaa618e892012-06-14 16:17:21 +04002552 cachep->allocflags |= GFP_DMA;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002553 cachep->size = size;
Eric Dumazet6a2d7a92006-12-13 00:34:27 -08002554 cachep->reciprocal_buffer_size = reciprocal_value(size);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002556 if (flags & CFLGS_OFF_SLAB) {
Victor Fuscob2d55072005-09-10 00:26:36 -07002557 cachep->slabp_cache = kmem_find_general_cachep(slab_size, 0u);
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002558 /*
2559 * This is a possibility for one of the malloc_sizes caches.
2560 * But since we go off slab only for object size greater than
2561 * PAGE_SIZE/8, and malloc_sizes gets created in ascending order,
2562 * this should not happen at all.
2563 * But leave a BUG_ON for some lucky dude.
2564 */
Christoph Lameter6cb8f912007-07-17 04:03:22 -07002565 BUG_ON(ZERO_OR_NULL_PTR(cachep->slabp_cache));
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002566 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002567 cachep->ctor = ctor;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002568 cachep->name = name;
2569
Pekka Enberg83b519e2009-06-10 19:40:04 +03002570 if (setup_cpu_cache(cachep, gfp)) {
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002571 __kmem_cache_destroy(cachep);
Christoph Lameter039363f2012-07-06 15:25:10 -05002572 return NULL;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07002573 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002574
Peter Zijlstra83835b32011-07-22 15:26:05 +02002575 if (flags & SLAB_DEBUG_OBJECTS) {
2576 /*
2577 * Would deadlock through slab_destroy()->call_rcu()->
2578 * debug_object_activate()->kmem_cache_alloc().
2579 */
2580 WARN_ON_ONCE(flags & SLAB_DESTROY_BY_RCU);
2581
2582 slab_set_debugobj_lock_classes(cachep);
2583 }
2584
Linus Torvalds1da177e2005-04-16 15:20:36 -07002585 /* cache setup completed, link it into the list */
Christoph Lameter18004c52012-07-06 15:25:12 -05002586 list_add(&cachep->list, &slab_caches);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002587 return cachep;
2588}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002589
2590#if DEBUG
2591static void check_irq_off(void)
2592{
2593 BUG_ON(!irqs_disabled());
2594}
2595
2596static void check_irq_on(void)
2597{
2598 BUG_ON(irqs_disabled());
2599}
2600
Pekka Enberg343e0d72006-02-01 03:05:50 -08002601static void check_spinlock_acquired(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002602{
2603#ifdef CONFIG_SMP
2604 check_irq_off();
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07002605 assert_spin_locked(&cachep->nodelists[numa_mem_id()]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002606#endif
2607}
Christoph Lametere498be72005-09-09 13:03:32 -07002608
Pekka Enberg343e0d72006-02-01 03:05:50 -08002609static void check_spinlock_acquired_node(struct kmem_cache *cachep, int node)
Christoph Lametere498be72005-09-09 13:03:32 -07002610{
2611#ifdef CONFIG_SMP
2612 check_irq_off();
2613 assert_spin_locked(&cachep->nodelists[node]->list_lock);
2614#endif
2615}
2616
Linus Torvalds1da177e2005-04-16 15:20:36 -07002617#else
2618#define check_irq_off() do { } while(0)
2619#define check_irq_on() do { } while(0)
2620#define check_spinlock_acquired(x) do { } while(0)
Christoph Lametere498be72005-09-09 13:03:32 -07002621#define check_spinlock_acquired_node(x, y) do { } while(0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002622#endif
2623
Christoph Lameteraab22072006-03-22 00:09:06 -08002624static void drain_array(struct kmem_cache *cachep, struct kmem_list3 *l3,
2625 struct array_cache *ac,
2626 int force, int node);
2627
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628static void do_drain(void *arg)
2629{
Andrew Mortona737b3e2006-03-22 00:08:11 -08002630 struct kmem_cache *cachep = arg;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002631 struct array_cache *ac;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07002632 int node = numa_mem_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002633
2634 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08002635 ac = cpu_cache_get(cachep);
Christoph Lameterff694162005-09-22 21:44:02 -07002636 spin_lock(&cachep->nodelists[node]->list_lock);
2637 free_block(cachep, ac->entry, ac->avail, node);
2638 spin_unlock(&cachep->nodelists[node]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002639 ac->avail = 0;
2640}
2641
Pekka Enberg343e0d72006-02-01 03:05:50 -08002642static void drain_cpu_caches(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002643{
Christoph Lametere498be72005-09-09 13:03:32 -07002644 struct kmem_list3 *l3;
2645 int node;
2646
Jens Axboe15c8b6c2008-05-09 09:39:44 +02002647 on_each_cpu(do_drain, cachep, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648 check_irq_on();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002649 for_each_online_node(node) {
Christoph Lametere498be72005-09-09 13:03:32 -07002650 l3 = cachep->nodelists[node];
Roland Dreiera4523a82006-05-15 11:41:00 -07002651 if (l3 && l3->alien)
2652 drain_alien_cache(cachep, l3->alien);
2653 }
2654
2655 for_each_online_node(node) {
2656 l3 = cachep->nodelists[node];
2657 if (l3)
Christoph Lameteraab22072006-03-22 00:09:06 -08002658 drain_array(cachep, l3, l3->shared, 1, node);
Christoph Lametere498be72005-09-09 13:03:32 -07002659 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660}
2661
Christoph Lametered11d9e2006-06-30 01:55:45 -07002662/*
2663 * Remove slabs from the list of free slabs.
2664 * Specify the number of slabs to drain in tofree.
2665 *
2666 * Returns the actual number of slabs released.
2667 */
2668static int drain_freelist(struct kmem_cache *cache,
2669 struct kmem_list3 *l3, int tofree)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002670{
Christoph Lametered11d9e2006-06-30 01:55:45 -07002671 struct list_head *p;
2672 int nr_freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002673 struct slab *slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674
Christoph Lametered11d9e2006-06-30 01:55:45 -07002675 nr_freed = 0;
2676 while (nr_freed < tofree && !list_empty(&l3->slabs_free)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002677
Christoph Lametered11d9e2006-06-30 01:55:45 -07002678 spin_lock_irq(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07002679 p = l3->slabs_free.prev;
Christoph Lametered11d9e2006-06-30 01:55:45 -07002680 if (p == &l3->slabs_free) {
2681 spin_unlock_irq(&l3->list_lock);
2682 goto out;
2683 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002684
Christoph Lametered11d9e2006-06-30 01:55:45 -07002685 slabp = list_entry(p, struct slab, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002686#if DEBUG
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002687 BUG_ON(slabp->inuse);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002688#endif
2689 list_del(&slabp->list);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002690 /*
2691 * Safe to drop the lock. The slab is no longer linked
2692 * to the cache.
2693 */
2694 l3->free_objects -= cache->num;
Christoph Lametere498be72005-09-09 13:03:32 -07002695 spin_unlock_irq(&l3->list_lock);
Christoph Lametered11d9e2006-06-30 01:55:45 -07002696 slab_destroy(cache, slabp);
2697 nr_freed++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698 }
Christoph Lametered11d9e2006-06-30 01:55:45 -07002699out:
2700 return nr_freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002701}
2702
Christoph Lameter18004c52012-07-06 15:25:12 -05002703/* Called with slab_mutex held to protect against cpu hotplug */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002704static int __cache_shrink(struct kmem_cache *cachep)
Christoph Lametere498be72005-09-09 13:03:32 -07002705{
2706 int ret = 0, i = 0;
2707 struct kmem_list3 *l3;
2708
2709 drain_cpu_caches(cachep);
2710
2711 check_irq_on();
2712 for_each_online_node(i) {
2713 l3 = cachep->nodelists[i];
Christoph Lametered11d9e2006-06-30 01:55:45 -07002714 if (!l3)
2715 continue;
2716
2717 drain_freelist(cachep, l3, l3->free_objects);
2718
2719 ret += !list_empty(&l3->slabs_full) ||
2720 !list_empty(&l3->slabs_partial);
Christoph Lametere498be72005-09-09 13:03:32 -07002721 }
2722 return (ret ? 1 : 0);
2723}
2724
Linus Torvalds1da177e2005-04-16 15:20:36 -07002725/**
2726 * kmem_cache_shrink - Shrink a cache.
2727 * @cachep: The cache to shrink.
2728 *
2729 * Releases as many slabs as possible for a cache.
2730 * To help debugging, a zero exit status indicates all slabs were released.
2731 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002732int kmem_cache_shrink(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002733{
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002734 int ret;
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002735 BUG_ON(!cachep || in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002737 get_online_cpus();
Christoph Lameter18004c52012-07-06 15:25:12 -05002738 mutex_lock(&slab_mutex);
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002739 ret = __cache_shrink(cachep);
Christoph Lameter18004c52012-07-06 15:25:12 -05002740 mutex_unlock(&slab_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002741 put_online_cpus();
Ravikiran G Thirumalai8f5be202006-12-06 20:32:14 -08002742 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743}
2744EXPORT_SYMBOL(kmem_cache_shrink);
2745
2746/**
2747 * kmem_cache_destroy - delete a cache
2748 * @cachep: the cache to destroy
2749 *
Robert P. J. Day72fd4a32007-02-10 01:45:59 -08002750 * Remove a &struct kmem_cache object from the slab cache.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002751 *
2752 * It is expected this function will be called by a module when it is
2753 * unloaded. This will remove the cache completely, and avoid a duplicate
2754 * cache being allocated each time a module is loaded and unloaded, if the
2755 * module doesn't have persistent in-kernel storage across loads and unloads.
2756 *
2757 * The cache must be empty before calling this function.
2758 *
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002759 * The caller must guarantee that no one will allocate memory from the cache
Linus Torvalds1da177e2005-04-16 15:20:36 -07002760 * during the kmem_cache_destroy().
2761 */
Alexey Dobriyan133d2052006-09-27 01:49:41 -07002762void kmem_cache_destroy(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002763{
Eric Sesterhenn40094fa2006-04-02 13:49:25 +02002764 BUG_ON(!cachep || in_interrupt());
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765
Linus Torvalds1da177e2005-04-16 15:20:36 -07002766 /* Find the cache in the chain of caches. */
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002767 get_online_cpus();
Christoph Lameter18004c52012-07-06 15:25:12 -05002768 mutex_lock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769 /*
2770 * the chain is never empty, cache_cache is never destroyed
2771 */
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002772 list_del(&cachep->list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773 if (__cache_shrink(cachep)) {
2774 slab_error(cachep, "Can't free all objects");
Christoph Lameter18004c52012-07-06 15:25:12 -05002775 list_add(&cachep->list, &slab_caches);
2776 mutex_unlock(&slab_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002777 put_online_cpus();
Alexey Dobriyan133d2052006-09-27 01:49:41 -07002778 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779 }
2780
2781 if (unlikely(cachep->flags & SLAB_DESTROY_BY_RCU))
Paul E. McKenney7ed9f7e2009-06-25 12:31:37 -07002782 rcu_barrier();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002783
Christoph Lameter117f6eb2006-09-25 23:31:37 -07002784 __kmem_cache_destroy(cachep);
Christoph Lameter18004c52012-07-06 15:25:12 -05002785 mutex_unlock(&slab_mutex);
Gautham R Shenoy95402b32008-01-25 21:08:02 +01002786 put_online_cpus();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002787}
2788EXPORT_SYMBOL(kmem_cache_destroy);
2789
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07002790/*
2791 * Get the memory for a slab management obj.
2792 * For a slab cache when the slab descriptor is off-slab, slab descriptors
2793 * always come from malloc_sizes caches. The slab descriptor cannot
2794 * come from the same cache which is getting created because,
2795 * when we are searching for an appropriate cache for these
2796 * descriptors in kmem_cache_create, we search through the malloc_sizes array.
2797 * If we are creating a malloc_sizes cache here it would not be visible to
2798 * kmem_find_general_cachep till the initialization is complete.
2799 * Hence we cannot have slabp_cache same as the original cache.
2800 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08002801static struct slab *alloc_slabmgmt(struct kmem_cache *cachep, void *objp,
Ravikiran G Thirumalai5b74ada2006-04-10 22:52:53 -07002802 int colour_off, gfp_t local_flags,
2803 int nodeid)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804{
2805 struct slab *slabp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002806
Linus Torvalds1da177e2005-04-16 15:20:36 -07002807 if (OFF_SLAB(cachep)) {
2808 /* Slab management obj is off-slab. */
Ravikiran G Thirumalai5b74ada2006-04-10 22:52:53 -07002809 slabp = kmem_cache_alloc_node(cachep->slabp_cache,
Pekka Enberg8759ec52008-11-26 10:01:31 +02002810 local_flags, nodeid);
Catalin Marinasd5cff632009-06-11 13:22:40 +01002811 /*
2812 * If the first object in the slab is leaked (it's allocated
2813 * but no one has a reference to it), we want to make sure
2814 * kmemleak does not treat the ->s_mem pointer as a reference
2815 * to the object. Otherwise we will not report the leak.
2816 */
Catalin Marinasc017b4b2009-10-28 13:33:09 +00002817 kmemleak_scan_area(&slabp->list, sizeof(struct list_head),
2818 local_flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819 if (!slabp)
2820 return NULL;
2821 } else {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002822 slabp = objp + colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002823 colour_off += cachep->slab_size;
2824 }
2825 slabp->inuse = 0;
2826 slabp->colouroff = colour_off;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002827 slabp->s_mem = objp + colour_off;
Ravikiran G Thirumalai5b74ada2006-04-10 22:52:53 -07002828 slabp->nodeid = nodeid;
Marcin Slusarze51bfd02008-02-10 11:21:54 +01002829 slabp->free = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002830 return slabp;
2831}
2832
2833static inline kmem_bufctl_t *slab_bufctl(struct slab *slabp)
2834{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002835 return (kmem_bufctl_t *) (slabp + 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002836}
2837
Pekka Enberg343e0d72006-02-01 03:05:50 -08002838static void cache_init_objs(struct kmem_cache *cachep,
Christoph Lametera35afb82007-05-16 22:10:57 -07002839 struct slab *slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840{
2841 int i;
2842
2843 for (i = 0; i < cachep->num; i++) {
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002844 void *objp = index_to_obj(cachep, slabp, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002845#if DEBUG
2846 /* need to poison the objs? */
2847 if (cachep->flags & SLAB_POISON)
2848 poison_obj(cachep, objp, POISON_FREE);
2849 if (cachep->flags & SLAB_STORE_USER)
2850 *dbg_userword(cachep, objp) = NULL;
2851
2852 if (cachep->flags & SLAB_RED_ZONE) {
2853 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2854 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2855 }
2856 /*
Andrew Mortona737b3e2006-03-22 00:08:11 -08002857 * Constructors are not allowed to allocate memory from the same
2858 * cache which they are a constructor for. Otherwise, deadlock.
2859 * They must also be threaded.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860 */
2861 if (cachep->ctor && !(cachep->flags & SLAB_POISON))
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002862 cachep->ctor(objp + obj_offset(cachep));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002863
2864 if (cachep->flags & SLAB_RED_ZONE) {
2865 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
2866 slab_error(cachep, "constructor overwrote the"
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002867 " end of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002868 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
2869 slab_error(cachep, "constructor overwrote the"
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002870 " start of an object");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002871 }
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002872 if ((cachep->size % PAGE_SIZE) == 0 &&
Andrew Mortona737b3e2006-03-22 00:08:11 -08002873 OFF_SLAB(cachep) && cachep->flags & SLAB_POISON)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002874 kernel_map_pages(virt_to_page(objp),
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002875 cachep->size / PAGE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002876#else
2877 if (cachep->ctor)
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002878 cachep->ctor(objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002879#endif
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002880 slab_bufctl(slabp)[i] = i + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002881 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002882 slab_bufctl(slabp)[i - 1] = BUFCTL_END;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883}
2884
Pekka Enberg343e0d72006-02-01 03:05:50 -08002885static void kmem_flagcheck(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002886{
Christoph Lameter4b51d662007-02-10 01:43:10 -08002887 if (CONFIG_ZONE_DMA_FLAG) {
2888 if (flags & GFP_DMA)
Glauber Costaa618e892012-06-14 16:17:21 +04002889 BUG_ON(!(cachep->allocflags & GFP_DMA));
Christoph Lameter4b51d662007-02-10 01:43:10 -08002890 else
Glauber Costaa618e892012-06-14 16:17:21 +04002891 BUG_ON(cachep->allocflags & GFP_DMA);
Christoph Lameter4b51d662007-02-10 01:43:10 -08002892 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002893}
2894
Andrew Mortona737b3e2006-03-22 00:08:11 -08002895static void *slab_get_obj(struct kmem_cache *cachep, struct slab *slabp,
2896 int nodeid)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002897{
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002898 void *objp = index_to_obj(cachep, slabp, slabp->free);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002899 kmem_bufctl_t next;
2900
2901 slabp->inuse++;
2902 next = slab_bufctl(slabp)[slabp->free];
2903#if DEBUG
2904 slab_bufctl(slabp)[slabp->free] = BUFCTL_FREE;
2905 WARN_ON(slabp->nodeid != nodeid);
2906#endif
2907 slabp->free = next;
2908
2909 return objp;
2910}
2911
Andrew Mortona737b3e2006-03-22 00:08:11 -08002912static void slab_put_obj(struct kmem_cache *cachep, struct slab *slabp,
2913 void *objp, int nodeid)
Matthew Dobson78d382d2006-02-01 03:05:47 -08002914{
Pekka Enberg8fea4e92006-03-22 00:08:10 -08002915 unsigned int objnr = obj_to_index(cachep, slabp, objp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002916
2917#if DEBUG
2918 /* Verify that the slab belongs to the intended node */
2919 WARN_ON(slabp->nodeid != nodeid);
2920
Al Viro871751e2006-03-25 03:06:39 -08002921 if (slab_bufctl(slabp)[objnr] + 1 <= SLAB_LIMIT + 1) {
Matthew Dobson78d382d2006-02-01 03:05:47 -08002922 printk(KERN_ERR "slab: double free detected in cache "
Andrew Mortona737b3e2006-03-22 00:08:11 -08002923 "'%s', objp %p\n", cachep->name, objp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08002924 BUG();
2925 }
2926#endif
2927 slab_bufctl(slabp)[objnr] = slabp->free;
2928 slabp->free = objnr;
2929 slabp->inuse--;
2930}
2931
Pekka Enberg47768742006-06-23 02:03:07 -07002932/*
2933 * Map pages beginning at addr to the given cache and slab. This is required
2934 * for the slab allocator to be able to lookup the cache and slab of a
Nick Pigginccd35fb2011-01-07 17:49:17 +11002935 * virtual address for kfree, ksize, and slab debugging.
Pekka Enberg47768742006-06-23 02:03:07 -07002936 */
2937static void slab_map_pages(struct kmem_cache *cache, struct slab *slab,
2938 void *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002939{
Pekka Enberg47768742006-06-23 02:03:07 -07002940 int nr_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002941 struct page *page;
2942
Pekka Enberg47768742006-06-23 02:03:07 -07002943 page = virt_to_page(addr);
Nick Piggin84097512006-03-22 00:08:34 -08002944
Pekka Enberg47768742006-06-23 02:03:07 -07002945 nr_pages = 1;
Nick Piggin84097512006-03-22 00:08:34 -08002946 if (likely(!PageCompound(page)))
Pekka Enberg47768742006-06-23 02:03:07 -07002947 nr_pages <<= cache->gfporder;
2948
Linus Torvalds1da177e2005-04-16 15:20:36 -07002949 do {
Christoph Lameter35026082012-06-13 10:24:56 -05002950 page->slab_cache = cache;
2951 page->slab_page = slab;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002952 page++;
Pekka Enberg47768742006-06-23 02:03:07 -07002953 } while (--nr_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002954}
2955
2956/*
2957 * Grow (by 1) the number of slabs within a cache. This is called by
2958 * kmem_cache_alloc() when there are no active objs left in a cache.
2959 */
Christoph Lameter3c517a62006-12-06 20:33:29 -08002960static int cache_grow(struct kmem_cache *cachep,
2961 gfp_t flags, int nodeid, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002962{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002963 struct slab *slabp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08002964 size_t offset;
2965 gfp_t local_flags;
Christoph Lametere498be72005-09-09 13:03:32 -07002966 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967
Andrew Mortona737b3e2006-03-22 00:08:11 -08002968 /*
2969 * Be lazy and only check for valid flags here, keeping it out of the
2970 * critical path in kmem_cache_alloc().
Linus Torvalds1da177e2005-04-16 15:20:36 -07002971 */
Christoph Lameter6cb06222007-10-16 01:25:41 -07002972 BUG_ON(flags & GFP_SLAB_BUG_MASK);
2973 local_flags = flags & (GFP_CONSTRAINT_MASK|GFP_RECLAIM_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002975 /* Take the l3 list lock to change the colour_next on this node */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002976 check_irq_off();
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002977 l3 = cachep->nodelists[nodeid];
2978 spin_lock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002979
2980 /* Get colour for the slab, and cal the next value. */
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002981 offset = l3->colour_next;
2982 l3->colour_next++;
2983 if (l3->colour_next >= cachep->colour)
2984 l3->colour_next = 0;
2985 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002986
Ravikiran G Thirumalai2e1217c2006-02-04 23:27:56 -08002987 offset *= cachep->colour_off;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002988
2989 if (local_flags & __GFP_WAIT)
2990 local_irq_enable();
2991
2992 /*
2993 * The test for missing atomic flag is performed here, rather than
2994 * the more obvious place, simply to reduce the critical path length
2995 * in kmem_cache_alloc(). If a caller is seriously mis-behaving they
2996 * will eventually be caught here (where it matters).
2997 */
2998 kmem_flagcheck(cachep, flags);
2999
Andrew Mortona737b3e2006-03-22 00:08:11 -08003000 /*
3001 * Get mem for the objs. Attempt to allocate a physical page from
3002 * 'nodeid'.
Christoph Lametere498be72005-09-09 13:03:32 -07003003 */
Christoph Lameter3c517a62006-12-06 20:33:29 -08003004 if (!objp)
Andrew Mortonb8c1c5d2007-07-24 12:02:40 -07003005 objp = kmem_getpages(cachep, local_flags, nodeid);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003006 if (!objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003007 goto failed;
3008
3009 /* Get slab management. */
Christoph Lameter3c517a62006-12-06 20:33:29 -08003010 slabp = alloc_slabmgmt(cachep, objp, offset,
Christoph Lameter6cb06222007-10-16 01:25:41 -07003011 local_flags & ~GFP_CONSTRAINT_MASK, nodeid);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003012 if (!slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013 goto opps1;
3014
Pekka Enberg47768742006-06-23 02:03:07 -07003015 slab_map_pages(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003016
Christoph Lametera35afb82007-05-16 22:10:57 -07003017 cache_init_objs(cachep, slabp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003018
3019 if (local_flags & __GFP_WAIT)
3020 local_irq_disable();
3021 check_irq_off();
Christoph Lametere498be72005-09-09 13:03:32 -07003022 spin_lock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023
3024 /* Make slab active. */
Christoph Lametere498be72005-09-09 13:03:32 -07003025 list_add_tail(&slabp->list, &(l3->slabs_free));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003026 STATS_INC_GROWN(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003027 l3->free_objects += cachep->num;
3028 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003029 return 1;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003030opps1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003031 kmem_freepages(cachep, objp);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003032failed:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003033 if (local_flags & __GFP_WAIT)
3034 local_irq_disable();
3035 return 0;
3036}
3037
3038#if DEBUG
3039
3040/*
3041 * Perform extra freeing checks:
3042 * - detect bad pointers.
3043 * - POISON/RED_ZONE checking
Linus Torvalds1da177e2005-04-16 15:20:36 -07003044 */
3045static void kfree_debugcheck(const void *objp)
3046{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003047 if (!virt_addr_valid(objp)) {
3048 printk(KERN_ERR "kfree_debugcheck: out of range ptr %lxh.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003049 (unsigned long)objp);
3050 BUG();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003051 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003052}
3053
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07003054static inline void verify_redzone_free(struct kmem_cache *cache, void *obj)
3055{
David Woodhouseb46b8f12007-05-08 00:22:59 -07003056 unsigned long long redzone1, redzone2;
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07003057
3058 redzone1 = *dbg_redzone1(cache, obj);
3059 redzone2 = *dbg_redzone2(cache, obj);
3060
3061 /*
3062 * Redzone is ok.
3063 */
3064 if (redzone1 == RED_ACTIVE && redzone2 == RED_ACTIVE)
3065 return;
3066
3067 if (redzone1 == RED_INACTIVE && redzone2 == RED_INACTIVE)
3068 slab_error(cache, "double free detected");
3069 else
3070 slab_error(cache, "memory outside object was overwritten");
3071
David Woodhouseb46b8f12007-05-08 00:22:59 -07003072 printk(KERN_ERR "%p: redzone 1:0x%llx, redzone 2:0x%llx.\n",
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07003073 obj, redzone1, redzone2);
3074}
3075
Pekka Enberg343e0d72006-02-01 03:05:50 -08003076static void *cache_free_debugcheck(struct kmem_cache *cachep, void *objp,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003077 void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003078{
3079 struct page *page;
3080 unsigned int objnr;
3081 struct slab *slabp;
3082
Matthew Wilcox80cbd912007-11-29 12:05:13 -07003083 BUG_ON(virt_to_cache(objp) != cachep);
3084
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003085 objp -= obj_offset(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003086 kfree_debugcheck(objp);
Christoph Lameterb49af682007-05-06 14:49:41 -07003087 page = virt_to_head_page(objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003088
Christoph Lameter35026082012-06-13 10:24:56 -05003089 slabp = page->slab_page;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003090
3091 if (cachep->flags & SLAB_RED_ZONE) {
Pekka Enberg58ce1fd2006-06-23 02:03:24 -07003092 verify_redzone_free(cachep, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003093 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
3094 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
3095 }
3096 if (cachep->flags & SLAB_STORE_USER)
3097 *dbg_userword(cachep, objp) = caller;
3098
Pekka Enberg8fea4e92006-03-22 00:08:10 -08003099 objnr = obj_to_index(cachep, slabp, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003100
3101 BUG_ON(objnr >= cachep->num);
Pekka Enberg8fea4e92006-03-22 00:08:10 -08003102 BUG_ON(objp != index_to_obj(cachep, slabp, objnr));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003103
Al Viro871751e2006-03-25 03:06:39 -08003104#ifdef CONFIG_DEBUG_SLAB_LEAK
3105 slab_bufctl(slabp)[objnr] = BUFCTL_FREE;
3106#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07003107 if (cachep->flags & SLAB_POISON) {
3108#ifdef CONFIG_DEBUG_PAGEALLOC
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003109 if ((cachep->size % PAGE_SIZE)==0 && OFF_SLAB(cachep)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003110 store_stackinfo(cachep, objp, (unsigned long)caller);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003111 kernel_map_pages(virt_to_page(objp),
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003112 cachep->size / PAGE_SIZE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003113 } else {
3114 poison_obj(cachep, objp, POISON_FREE);
3115 }
3116#else
3117 poison_obj(cachep, objp, POISON_FREE);
3118#endif
3119 }
3120 return objp;
3121}
3122
Pekka Enberg343e0d72006-02-01 03:05:50 -08003123static void check_slabp(struct kmem_cache *cachep, struct slab *slabp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003124{
3125 kmem_bufctl_t i;
3126 int entries = 0;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003127
Linus Torvalds1da177e2005-04-16 15:20:36 -07003128 /* Check slab's freelist to see if this obj is there. */
3129 for (i = slabp->free; i != BUFCTL_END; i = slab_bufctl(slabp)[i]) {
3130 entries++;
3131 if (entries > cachep->num || i >= cachep->num)
3132 goto bad;
3133 }
3134 if (entries != cachep->num - slabp->inuse) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08003135bad:
3136 printk(KERN_ERR "slab: Internal list corruption detected in "
Dave Jonesface37f2011-11-15 15:03:52 -08003137 "cache '%s'(%d), slabp %p(%d). Tainted(%s). Hexdump:\n",
3138 cachep->name, cachep->num, slabp, slabp->inuse,
3139 print_tainted());
Sebastian Andrzej Siewiorfdde6ab2011-07-29 18:22:13 +02003140 print_hex_dump(KERN_ERR, "", DUMP_PREFIX_OFFSET, 16, 1, slabp,
3141 sizeof(*slabp) + cachep->num * sizeof(kmem_bufctl_t),
3142 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003143 BUG();
3144 }
3145}
3146#else
3147#define kfree_debugcheck(x) do { } while(0)
3148#define cache_free_debugcheck(x,objp,z) (objp)
3149#define check_slabp(x,y) do { } while(0)
3150#endif
3151
Mel Gorman072bb0a2012-07-31 16:43:58 -07003152static void *cache_alloc_refill(struct kmem_cache *cachep, gfp_t flags,
3153 bool force_refill)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003154{
3155 int batchcount;
3156 struct kmem_list3 *l3;
3157 struct array_cache *ac;
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07003158 int node;
3159
Joe Korty6d2144d2008-03-05 15:04:59 -08003160 check_irq_off();
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003161 node = numa_mem_id();
Mel Gorman072bb0a2012-07-31 16:43:58 -07003162 if (unlikely(force_refill))
3163 goto force_grow;
3164retry:
Joe Korty6d2144d2008-03-05 15:04:59 -08003165 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003166 batchcount = ac->batchcount;
3167 if (!ac->touched && batchcount > BATCHREFILL_LIMIT) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08003168 /*
3169 * If there was little recent activity on this cache, then
3170 * perform only a partial refill. Otherwise we could generate
3171 * refill bouncing.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003172 */
3173 batchcount = BATCHREFILL_LIMIT;
3174 }
Pekka Enberg1ca4cb22006-10-06 00:43:52 -07003175 l3 = cachep->nodelists[node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003176
Christoph Lametere498be72005-09-09 13:03:32 -07003177 BUG_ON(ac->avail > 0 || !l3);
3178 spin_lock(&l3->list_lock);
3179
Christoph Lameter3ded1752006-03-25 03:06:44 -08003180 /* See if we can refill from the shared array */
Nick Piggin44b57f12010-01-27 22:27:40 +11003181 if (l3->shared && transfer_objects(ac, l3->shared, batchcount)) {
3182 l3->shared->touched = 1;
Christoph Lameter3ded1752006-03-25 03:06:44 -08003183 goto alloc_done;
Nick Piggin44b57f12010-01-27 22:27:40 +11003184 }
Christoph Lameter3ded1752006-03-25 03:06:44 -08003185
Linus Torvalds1da177e2005-04-16 15:20:36 -07003186 while (batchcount > 0) {
3187 struct list_head *entry;
3188 struct slab *slabp;
3189 /* Get slab alloc is to come from. */
3190 entry = l3->slabs_partial.next;
3191 if (entry == &l3->slabs_partial) {
3192 l3->free_touched = 1;
3193 entry = l3->slabs_free.next;
3194 if (entry == &l3->slabs_free)
3195 goto must_grow;
3196 }
3197
3198 slabp = list_entry(entry, struct slab, list);
3199 check_slabp(cachep, slabp);
3200 check_spinlock_acquired(cachep);
Pekka Enberg714b81712007-05-06 14:49:03 -07003201
3202 /*
3203 * The slab was either on partial or free list so
3204 * there must be at least one object available for
3205 * allocation.
3206 */
roel kluin249b9f32008-10-29 17:18:07 -04003207 BUG_ON(slabp->inuse >= cachep->num);
Pekka Enberg714b81712007-05-06 14:49:03 -07003208
Linus Torvalds1da177e2005-04-16 15:20:36 -07003209 while (slabp->inuse < cachep->num && batchcount--) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003210 STATS_INC_ALLOCED(cachep);
3211 STATS_INC_ACTIVE(cachep);
3212 STATS_SET_HIGH(cachep);
3213
Mel Gorman072bb0a2012-07-31 16:43:58 -07003214 ac_put_obj(cachep, ac, slab_get_obj(cachep, slabp,
3215 node));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003216 }
3217 check_slabp(cachep, slabp);
3218
3219 /* move slabp to correct slabp list: */
3220 list_del(&slabp->list);
3221 if (slabp->free == BUFCTL_END)
3222 list_add(&slabp->list, &l3->slabs_full);
3223 else
3224 list_add(&slabp->list, &l3->slabs_partial);
3225 }
3226
Andrew Mortona737b3e2006-03-22 00:08:11 -08003227must_grow:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003228 l3->free_objects -= ac->avail;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003229alloc_done:
Christoph Lametere498be72005-09-09 13:03:32 -07003230 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003231
3232 if (unlikely(!ac->avail)) {
3233 int x;
Mel Gorman072bb0a2012-07-31 16:43:58 -07003234force_grow:
Christoph Lameter3c517a62006-12-06 20:33:29 -08003235 x = cache_grow(cachep, flags | GFP_THISNODE, node, NULL);
Christoph Lametere498be72005-09-09 13:03:32 -07003236
Andrew Mortona737b3e2006-03-22 00:08:11 -08003237 /* cache_grow can reenable interrupts, then ac could change. */
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003238 ac = cpu_cache_get(cachep);
Mel Gorman072bb0a2012-07-31 16:43:58 -07003239
3240 /* no objects in sight? abort */
3241 if (!x && (ac->avail == 0 || force_refill))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003242 return NULL;
3243
Andrew Mortona737b3e2006-03-22 00:08:11 -08003244 if (!ac->avail) /* objects refilled by interrupt? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003245 goto retry;
3246 }
3247 ac->touched = 1;
Mel Gorman072bb0a2012-07-31 16:43:58 -07003248
3249 return ac_get_obj(cachep, ac, flags, force_refill);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003250}
3251
Andrew Mortona737b3e2006-03-22 00:08:11 -08003252static inline void cache_alloc_debugcheck_before(struct kmem_cache *cachep,
3253 gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003254{
3255 might_sleep_if(flags & __GFP_WAIT);
3256#if DEBUG
3257 kmem_flagcheck(cachep, flags);
3258#endif
3259}
3260
3261#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08003262static void *cache_alloc_debugcheck_after(struct kmem_cache *cachep,
3263 gfp_t flags, void *objp, void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003264{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003265 if (!objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003266 return objp;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003267 if (cachep->flags & SLAB_POISON) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003268#ifdef CONFIG_DEBUG_PAGEALLOC
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003269 if ((cachep->size % PAGE_SIZE) == 0 && OFF_SLAB(cachep))
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003270 kernel_map_pages(virt_to_page(objp),
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003271 cachep->size / PAGE_SIZE, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003272 else
3273 check_poison_obj(cachep, objp);
3274#else
3275 check_poison_obj(cachep, objp);
3276#endif
3277 poison_obj(cachep, objp, POISON_INUSE);
3278 }
3279 if (cachep->flags & SLAB_STORE_USER)
3280 *dbg_userword(cachep, objp) = caller;
3281
3282 if (cachep->flags & SLAB_RED_ZONE) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08003283 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE ||
3284 *dbg_redzone2(cachep, objp) != RED_INACTIVE) {
3285 slab_error(cachep, "double free, or memory outside"
3286 " object was overwritten");
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003287 printk(KERN_ERR
David Woodhouseb46b8f12007-05-08 00:22:59 -07003288 "%p: redzone 1:0x%llx, redzone 2:0x%llx\n",
Andrew Mortona737b3e2006-03-22 00:08:11 -08003289 objp, *dbg_redzone1(cachep, objp),
3290 *dbg_redzone2(cachep, objp));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003291 }
3292 *dbg_redzone1(cachep, objp) = RED_ACTIVE;
3293 *dbg_redzone2(cachep, objp) = RED_ACTIVE;
3294 }
Al Viro871751e2006-03-25 03:06:39 -08003295#ifdef CONFIG_DEBUG_SLAB_LEAK
3296 {
3297 struct slab *slabp;
3298 unsigned objnr;
3299
Christoph Lameter35026082012-06-13 10:24:56 -05003300 slabp = virt_to_head_page(objp)->slab_page;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003301 objnr = (unsigned)(objp - slabp->s_mem) / cachep->size;
Al Viro871751e2006-03-25 03:06:39 -08003302 slab_bufctl(slabp)[objnr] = BUFCTL_ACTIVE;
3303 }
3304#endif
Manfred Spraul3dafccf2006-02-01 03:05:42 -08003305 objp += obj_offset(cachep);
Christoph Lameter4f104932007-05-06 14:50:17 -07003306 if (cachep->ctor && cachep->flags & SLAB_POISON)
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07003307 cachep->ctor(objp);
Tetsuo Handa7ea466f2011-07-21 09:42:45 +09003308 if (ARCH_SLAB_MINALIGN &&
3309 ((unsigned long)objp & (ARCH_SLAB_MINALIGN-1))) {
Kevin Hilmana44b56d2006-12-06 20:32:11 -08003310 printk(KERN_ERR "0x%p: not aligned to ARCH_SLAB_MINALIGN=%d\n",
Hugh Dickinsc2251502011-07-11 13:35:08 -07003311 objp, (int)ARCH_SLAB_MINALIGN);
Kevin Hilmana44b56d2006-12-06 20:32:11 -08003312 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003313 return objp;
3314}
3315#else
3316#define cache_alloc_debugcheck_after(a,b,objp,d) (objp)
3317#endif
3318
Akinobu Mita773ff602008-12-23 19:37:01 +09003319static bool slab_should_failslab(struct kmem_cache *cachep, gfp_t flags)
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003320{
3321 if (cachep == &cache_cache)
Akinobu Mita773ff602008-12-23 19:37:01 +09003322 return false;
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003323
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003324 return should_failslab(cachep->object_size, flags, cachep->flags);
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003325}
3326
Pekka Enberg343e0d72006-02-01 03:05:50 -08003327static inline void *____cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003328{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003329 void *objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003330 struct array_cache *ac;
Mel Gorman072bb0a2012-07-31 16:43:58 -07003331 bool force_refill = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332
Alok N Kataria5c382302005-09-27 21:45:46 -07003333 check_irq_off();
Akinobu Mita8a8b6502006-12-08 02:39:44 -08003334
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003335 ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003336 if (likely(ac->avail)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003337 ac->touched = 1;
Mel Gorman072bb0a2012-07-31 16:43:58 -07003338 objp = ac_get_obj(cachep, ac, flags, false);
3339
J. R. Okajimaddbf2e82009-12-02 16:55:50 +09003340 /*
Mel Gorman072bb0a2012-07-31 16:43:58 -07003341 * Allow for the possibility all avail objects are not allowed
3342 * by the current flags
J. R. Okajimaddbf2e82009-12-02 16:55:50 +09003343 */
Mel Gorman072bb0a2012-07-31 16:43:58 -07003344 if (objp) {
3345 STATS_INC_ALLOCHIT(cachep);
3346 goto out;
3347 }
3348 force_refill = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003349 }
Mel Gorman072bb0a2012-07-31 16:43:58 -07003350
3351 STATS_INC_ALLOCMISS(cachep);
3352 objp = cache_alloc_refill(cachep, flags, force_refill);
3353 /*
3354 * the 'ac' may be updated by cache_alloc_refill(),
3355 * and kmemleak_erase() requires its correct value.
3356 */
3357 ac = cpu_cache_get(cachep);
3358
3359out:
Catalin Marinasd5cff632009-06-11 13:22:40 +01003360 /*
3361 * To avoid a false negative, if an object that is in one of the
3362 * per-CPU caches is leaked, we need to make sure kmemleak doesn't
3363 * treat the array pointers as a reference to the object.
3364 */
J. R. Okajimaf3d8b532009-12-02 16:55:49 +09003365 if (objp)
3366 kmemleak_erase(&ac->entry[ac->avail]);
Alok N Kataria5c382302005-09-27 21:45:46 -07003367 return objp;
3368}
3369
Christoph Lametere498be72005-09-09 13:03:32 -07003370#ifdef CONFIG_NUMA
3371/*
Paul Jacksonb2455392006-03-24 03:16:12 -08003372 * Try allocating on another node if PF_SPREAD_SLAB|PF_MEMPOLICY.
Paul Jacksonc61afb12006-03-24 03:16:08 -08003373 *
3374 * If we are in_interrupt, then process context, including cpusets and
3375 * mempolicy, may not apply and should not be used for allocation policy.
3376 */
3377static void *alternate_node_alloc(struct kmem_cache *cachep, gfp_t flags)
3378{
3379 int nid_alloc, nid_here;
3380
Christoph Lameter765c4502006-09-27 01:50:08 -07003381 if (in_interrupt() || (flags & __GFP_THISNODE))
Paul Jacksonc61afb12006-03-24 03:16:08 -08003382 return NULL;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003383 nid_alloc = nid_here = numa_mem_id();
Paul Jacksonc61afb12006-03-24 03:16:08 -08003384 if (cpuset_do_slab_mem_spread() && (cachep->flags & SLAB_MEM_SPREAD))
Jack Steiner6adef3e2010-05-26 14:42:49 -07003385 nid_alloc = cpuset_slab_spread_node();
Paul Jacksonc61afb12006-03-24 03:16:08 -08003386 else if (current->mempolicy)
Andi Kleene7b691b2012-06-09 02:40:03 -07003387 nid_alloc = slab_node();
Paul Jacksonc61afb12006-03-24 03:16:08 -08003388 if (nid_alloc != nid_here)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003389 return ____cache_alloc_node(cachep, flags, nid_alloc);
Paul Jacksonc61afb12006-03-24 03:16:08 -08003390 return NULL;
3391}
3392
3393/*
Christoph Lameter765c4502006-09-27 01:50:08 -07003394 * Fallback function if there was no memory available and no objects on a
Christoph Lameter3c517a62006-12-06 20:33:29 -08003395 * certain node and fall back is permitted. First we scan all the
3396 * available nodelists for available objects. If that fails then we
3397 * perform an allocation without specifying a node. This allows the page
3398 * allocator to do its reclaim / fallback magic. We then insert the
3399 * slab into the proper nodelist and then allocate from it.
Christoph Lameter765c4502006-09-27 01:50:08 -07003400 */
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003401static void *fallback_alloc(struct kmem_cache *cache, gfp_t flags)
Christoph Lameter765c4502006-09-27 01:50:08 -07003402{
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003403 struct zonelist *zonelist;
3404 gfp_t local_flags;
Mel Gormandd1a2392008-04-28 02:12:17 -07003405 struct zoneref *z;
Mel Gorman54a6eb52008-04-28 02:12:16 -07003406 struct zone *zone;
3407 enum zone_type high_zoneidx = gfp_zone(flags);
Christoph Lameter765c4502006-09-27 01:50:08 -07003408 void *obj = NULL;
Christoph Lameter3c517a62006-12-06 20:33:29 -08003409 int nid;
Mel Gormancc9a6c82012-03-21 16:34:11 -07003410 unsigned int cpuset_mems_cookie;
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003411
3412 if (flags & __GFP_THISNODE)
3413 return NULL;
3414
Christoph Lameter6cb06222007-10-16 01:25:41 -07003415 local_flags = flags & (GFP_CONSTRAINT_MASK|GFP_RECLAIM_MASK);
Christoph Lameter765c4502006-09-27 01:50:08 -07003416
Mel Gormancc9a6c82012-03-21 16:34:11 -07003417retry_cpuset:
3418 cpuset_mems_cookie = get_mems_allowed();
Andi Kleene7b691b2012-06-09 02:40:03 -07003419 zonelist = node_zonelist(slab_node(), flags);
Mel Gormancc9a6c82012-03-21 16:34:11 -07003420
Christoph Lameter3c517a62006-12-06 20:33:29 -08003421retry:
3422 /*
3423 * Look through allowed nodes for objects available
3424 * from existing per node queues.
3425 */
Mel Gorman54a6eb52008-04-28 02:12:16 -07003426 for_each_zone_zonelist(zone, z, zonelist, high_zoneidx) {
3427 nid = zone_to_nid(zone);
Christoph Lameteraedb0eb2006-10-21 10:24:16 -07003428
Mel Gorman54a6eb52008-04-28 02:12:16 -07003429 if (cpuset_zone_allowed_hardwall(zone, flags) &&
Christoph Lameter3c517a62006-12-06 20:33:29 -08003430 cache->nodelists[nid] &&
Christoph Lameter481c5342008-06-21 16:46:35 -07003431 cache->nodelists[nid]->free_objects) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003432 obj = ____cache_alloc_node(cache,
3433 flags | GFP_THISNODE, nid);
Christoph Lameter481c5342008-06-21 16:46:35 -07003434 if (obj)
3435 break;
3436 }
Christoph Lameter3c517a62006-12-06 20:33:29 -08003437 }
3438
Christoph Lametercfce6602007-05-06 14:50:17 -07003439 if (!obj) {
Christoph Lameter3c517a62006-12-06 20:33:29 -08003440 /*
3441 * This allocation will be performed within the constraints
3442 * of the current cpuset / memory policy requirements.
3443 * We may trigger various forms of reclaim on the allowed
3444 * set and go into memory reserves if necessary.
3445 */
Christoph Lameterdd47ea72006-12-13 00:34:11 -08003446 if (local_flags & __GFP_WAIT)
3447 local_irq_enable();
3448 kmem_flagcheck(cache, flags);
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003449 obj = kmem_getpages(cache, local_flags, numa_mem_id());
Christoph Lameterdd47ea72006-12-13 00:34:11 -08003450 if (local_flags & __GFP_WAIT)
3451 local_irq_disable();
Christoph Lameter3c517a62006-12-06 20:33:29 -08003452 if (obj) {
3453 /*
3454 * Insert into the appropriate per node queues
3455 */
3456 nid = page_to_nid(virt_to_page(obj));
3457 if (cache_grow(cache, flags, nid, obj)) {
3458 obj = ____cache_alloc_node(cache,
3459 flags | GFP_THISNODE, nid);
3460 if (!obj)
3461 /*
3462 * Another processor may allocate the
3463 * objects in the slab since we are
3464 * not holding any locks.
3465 */
3466 goto retry;
3467 } else {
Hugh Dickinsb6a60452007-01-05 16:36:36 -08003468 /* cache_grow already freed obj */
Christoph Lameter3c517a62006-12-06 20:33:29 -08003469 obj = NULL;
3470 }
3471 }
Christoph Lameteraedb0eb2006-10-21 10:24:16 -07003472 }
Mel Gormancc9a6c82012-03-21 16:34:11 -07003473
3474 if (unlikely(!put_mems_allowed(cpuset_mems_cookie) && !obj))
3475 goto retry_cpuset;
Christoph Lameter765c4502006-09-27 01:50:08 -07003476 return obj;
3477}
3478
3479/*
Christoph Lametere498be72005-09-09 13:03:32 -07003480 * A interface to enable slab creation on nodeid
Linus Torvalds1da177e2005-04-16 15:20:36 -07003481 */
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003482static void *____cache_alloc_node(struct kmem_cache *cachep, gfp_t flags,
Andrew Mortona737b3e2006-03-22 00:08:11 -08003483 int nodeid)
Christoph Lametere498be72005-09-09 13:03:32 -07003484{
3485 struct list_head *entry;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003486 struct slab *slabp;
3487 struct kmem_list3 *l3;
3488 void *obj;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003489 int x;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003490
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003491 l3 = cachep->nodelists[nodeid];
3492 BUG_ON(!l3);
Christoph Lametere498be72005-09-09 13:03:32 -07003493
Andrew Mortona737b3e2006-03-22 00:08:11 -08003494retry:
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08003495 check_irq_off();
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003496 spin_lock(&l3->list_lock);
3497 entry = l3->slabs_partial.next;
3498 if (entry == &l3->slabs_partial) {
3499 l3->free_touched = 1;
3500 entry = l3->slabs_free.next;
3501 if (entry == &l3->slabs_free)
3502 goto must_grow;
3503 }
Christoph Lametere498be72005-09-09 13:03:32 -07003504
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003505 slabp = list_entry(entry, struct slab, list);
3506 check_spinlock_acquired_node(cachep, nodeid);
3507 check_slabp(cachep, slabp);
Christoph Lametere498be72005-09-09 13:03:32 -07003508
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003509 STATS_INC_NODEALLOCS(cachep);
3510 STATS_INC_ACTIVE(cachep);
3511 STATS_SET_HIGH(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003512
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003513 BUG_ON(slabp->inuse == cachep->num);
Christoph Lametere498be72005-09-09 13:03:32 -07003514
Matthew Dobson78d382d2006-02-01 03:05:47 -08003515 obj = slab_get_obj(cachep, slabp, nodeid);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003516 check_slabp(cachep, slabp);
3517 l3->free_objects--;
3518 /* move slabp to correct slabp list: */
3519 list_del(&slabp->list);
Christoph Lametere498be72005-09-09 13:03:32 -07003520
Andrew Mortona737b3e2006-03-22 00:08:11 -08003521 if (slabp->free == BUFCTL_END)
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003522 list_add(&slabp->list, &l3->slabs_full);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003523 else
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003524 list_add(&slabp->list, &l3->slabs_partial);
Christoph Lametere498be72005-09-09 13:03:32 -07003525
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003526 spin_unlock(&l3->list_lock);
3527 goto done;
Christoph Lametere498be72005-09-09 13:03:32 -07003528
Andrew Mortona737b3e2006-03-22 00:08:11 -08003529must_grow:
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003530 spin_unlock(&l3->list_lock);
Christoph Lameter3c517a62006-12-06 20:33:29 -08003531 x = cache_grow(cachep, flags | GFP_THISNODE, nodeid, NULL);
Christoph Lameter765c4502006-09-27 01:50:08 -07003532 if (x)
3533 goto retry;
Christoph Lametere498be72005-09-09 13:03:32 -07003534
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003535 return fallback_alloc(cachep, flags);
Christoph Lameter765c4502006-09-27 01:50:08 -07003536
Andrew Mortona737b3e2006-03-22 00:08:11 -08003537done:
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003538 return obj;
Christoph Lametere498be72005-09-09 13:03:32 -07003539}
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003540
3541/**
3542 * kmem_cache_alloc_node - Allocate an object on the specified node
3543 * @cachep: The cache to allocate from.
3544 * @flags: See kmalloc().
3545 * @nodeid: node number of the target node.
3546 * @caller: return address of caller, used for debug information
3547 *
3548 * Identical to kmem_cache_alloc but it will allocate memory on the given
3549 * node, which can improve the performance for cpu bound structures.
3550 *
3551 * Fallback to other node is possible if __GFP_THISNODE is not set.
3552 */
3553static __always_inline void *
3554__cache_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid,
3555 void *caller)
3556{
3557 unsigned long save_flags;
3558 void *ptr;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003559 int slab_node = numa_mem_id();
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003560
Benjamin Herrenschmidtdcce2842009-06-18 13:24:12 +10003561 flags &= gfp_allowed_mask;
Pekka Enberg7e85ee02009-06-12 14:03:06 +03003562
Nick Piggincf40bd12009-01-21 08:12:39 +01003563 lockdep_trace_alloc(flags);
3564
Akinobu Mita773ff602008-12-23 19:37:01 +09003565 if (slab_should_failslab(cachep, flags))
Akinobu Mita824ebef2007-05-06 14:49:58 -07003566 return NULL;
3567
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003568 cache_alloc_debugcheck_before(cachep, flags);
3569 local_irq_save(save_flags);
3570
Andrew Mortoneacbbae2011-07-28 13:59:49 -07003571 if (nodeid == NUMA_NO_NODE)
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003572 nodeid = slab_node;
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003573
3574 if (unlikely(!cachep->nodelists[nodeid])) {
3575 /* Node not bootstrapped yet */
3576 ptr = fallback_alloc(cachep, flags);
3577 goto out;
3578 }
3579
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003580 if (nodeid == slab_node) {
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003581 /*
3582 * Use the locally cached objects if possible.
3583 * However ____cache_alloc does not allow fallback
3584 * to other nodes. It may fail while we still have
3585 * objects on other nodes available.
3586 */
3587 ptr = ____cache_alloc(cachep, flags);
3588 if (ptr)
3589 goto out;
3590 }
3591 /* ___cache_alloc_node can fall back to other nodes */
3592 ptr = ____cache_alloc_node(cachep, flags, nodeid);
3593 out:
3594 local_irq_restore(save_flags);
3595 ptr = cache_alloc_debugcheck_after(cachep, flags, ptr, caller);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003596 kmemleak_alloc_recursive(ptr, cachep->object_size, 1, cachep->flags,
Catalin Marinasd5cff632009-06-11 13:22:40 +01003597 flags);
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003598
Pekka Enbergc175eea2008-05-09 20:35:53 +02003599 if (likely(ptr))
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003600 kmemcheck_slab_alloc(cachep, flags, ptr, cachep->object_size);
Pekka Enbergc175eea2008-05-09 20:35:53 +02003601
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003602 if (unlikely((flags & __GFP_ZERO) && ptr))
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003603 memset(ptr, 0, cachep->object_size);
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003604
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003605 return ptr;
3606}
3607
3608static __always_inline void *
3609__do_cache_alloc(struct kmem_cache *cache, gfp_t flags)
3610{
3611 void *objp;
3612
3613 if (unlikely(current->flags & (PF_SPREAD_SLAB | PF_MEMPOLICY))) {
3614 objp = alternate_node_alloc(cache, flags);
3615 if (objp)
3616 goto out;
3617 }
3618 objp = ____cache_alloc(cache, flags);
3619
3620 /*
3621 * We may just have run out of memory on the local node.
3622 * ____cache_alloc_node() knows how to locate memory on other nodes
3623 */
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003624 if (!objp)
3625 objp = ____cache_alloc_node(cache, flags, numa_mem_id());
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003626
3627 out:
3628 return objp;
3629}
3630#else
3631
3632static __always_inline void *
3633__do_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
3634{
3635 return ____cache_alloc(cachep, flags);
3636}
3637
3638#endif /* CONFIG_NUMA */
3639
3640static __always_inline void *
3641__cache_alloc(struct kmem_cache *cachep, gfp_t flags, void *caller)
3642{
3643 unsigned long save_flags;
3644 void *objp;
3645
Benjamin Herrenschmidtdcce2842009-06-18 13:24:12 +10003646 flags &= gfp_allowed_mask;
Pekka Enberg7e85ee02009-06-12 14:03:06 +03003647
Nick Piggincf40bd12009-01-21 08:12:39 +01003648 lockdep_trace_alloc(flags);
3649
Akinobu Mita773ff602008-12-23 19:37:01 +09003650 if (slab_should_failslab(cachep, flags))
Akinobu Mita824ebef2007-05-06 14:49:58 -07003651 return NULL;
3652
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003653 cache_alloc_debugcheck_before(cachep, flags);
3654 local_irq_save(save_flags);
3655 objp = __do_cache_alloc(cachep, flags);
3656 local_irq_restore(save_flags);
3657 objp = cache_alloc_debugcheck_after(cachep, flags, objp, caller);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003658 kmemleak_alloc_recursive(objp, cachep->object_size, 1, cachep->flags,
Catalin Marinasd5cff632009-06-11 13:22:40 +01003659 flags);
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003660 prefetchw(objp);
3661
Pekka Enbergc175eea2008-05-09 20:35:53 +02003662 if (likely(objp))
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003663 kmemcheck_slab_alloc(cachep, flags, objp, cachep->object_size);
Pekka Enbergc175eea2008-05-09 20:35:53 +02003664
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003665 if (unlikely((flags & __GFP_ZERO) && objp))
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003666 memset(objp, 0, cachep->object_size);
Christoph Lameterd07dbea2007-07-17 04:03:23 -07003667
Pekka Enberg8c8cc2c2007-02-10 01:42:53 -08003668 return objp;
3669}
Christoph Lametere498be72005-09-09 13:03:32 -07003670
3671/*
3672 * Caller needs to acquire correct kmem_list's list_lock
3673 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003674static void free_block(struct kmem_cache *cachep, void **objpp, int nr_objects,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003675 int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003676{
3677 int i;
Christoph Lametere498be72005-09-09 13:03:32 -07003678 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003679
3680 for (i = 0; i < nr_objects; i++) {
Mel Gorman072bb0a2012-07-31 16:43:58 -07003681 void *objp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003682 struct slab *slabp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003683
Mel Gorman072bb0a2012-07-31 16:43:58 -07003684 clear_obj_pfmemalloc(&objpp[i]);
3685 objp = objpp[i];
3686
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -08003687 slabp = virt_to_slab(objp);
Christoph Lameterff694162005-09-22 21:44:02 -07003688 l3 = cachep->nodelists[node];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003689 list_del(&slabp->list);
Christoph Lameterff694162005-09-22 21:44:02 -07003690 check_spinlock_acquired_node(cachep, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003691 check_slabp(cachep, slabp);
Matthew Dobson78d382d2006-02-01 03:05:47 -08003692 slab_put_obj(cachep, slabp, objp, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003693 STATS_DEC_ACTIVE(cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07003694 l3->free_objects++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003695 check_slabp(cachep, slabp);
3696
3697 /* fixup slab chains */
3698 if (slabp->inuse == 0) {
Christoph Lametere498be72005-09-09 13:03:32 -07003699 if (l3->free_objects > l3->free_limit) {
3700 l3->free_objects -= cachep->num;
Ravikiran G Thirumalaie5ac9c52006-09-25 23:31:34 -07003701 /* No need to drop any previously held
3702 * lock here, even if we have a off-slab slab
3703 * descriptor it is guaranteed to come from
3704 * a different cache, refer to comments before
3705 * alloc_slabmgmt.
3706 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003707 slab_destroy(cachep, slabp);
3708 } else {
Christoph Lametere498be72005-09-09 13:03:32 -07003709 list_add(&slabp->list, &l3->slabs_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003710 }
3711 } else {
3712 /* Unconditionally move a slab to the end of the
3713 * partial list on free - maximum time for the
3714 * other objects to be freed, too.
3715 */
Christoph Lametere498be72005-09-09 13:03:32 -07003716 list_add_tail(&slabp->list, &l3->slabs_partial);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003717 }
3718 }
3719}
3720
Pekka Enberg343e0d72006-02-01 03:05:50 -08003721static void cache_flusharray(struct kmem_cache *cachep, struct array_cache *ac)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003722{
3723 int batchcount;
Christoph Lametere498be72005-09-09 13:03:32 -07003724 struct kmem_list3 *l3;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07003725 int node = numa_mem_id();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003726
3727 batchcount = ac->batchcount;
3728#if DEBUG
3729 BUG_ON(!batchcount || batchcount > ac->avail);
3730#endif
3731 check_irq_off();
Christoph Lameterff694162005-09-22 21:44:02 -07003732 l3 = cachep->nodelists[node];
Ingo Molnar873623d2006-07-13 14:44:38 +02003733 spin_lock(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07003734 if (l3->shared) {
3735 struct array_cache *shared_array = l3->shared;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003736 int max = shared_array->limit - shared_array->avail;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003737 if (max) {
3738 if (batchcount > max)
3739 batchcount = max;
Christoph Lametere498be72005-09-09 13:03:32 -07003740 memcpy(&(shared_array->entry[shared_array->avail]),
Pekka Enbergb28a02d2006-01-08 01:00:37 -08003741 ac->entry, sizeof(void *) * batchcount);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003742 shared_array->avail += batchcount;
3743 goto free_done;
3744 }
3745 }
3746
Christoph Lameterff694162005-09-22 21:44:02 -07003747 free_block(cachep, ac->entry, batchcount, node);
Andrew Mortona737b3e2006-03-22 00:08:11 -08003748free_done:
Linus Torvalds1da177e2005-04-16 15:20:36 -07003749#if STATS
3750 {
3751 int i = 0;
3752 struct list_head *p;
3753
Christoph Lametere498be72005-09-09 13:03:32 -07003754 p = l3->slabs_free.next;
3755 while (p != &(l3->slabs_free)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003756 struct slab *slabp;
3757
3758 slabp = list_entry(p, struct slab, list);
3759 BUG_ON(slabp->inuse);
3760
3761 i++;
3762 p = p->next;
3763 }
3764 STATS_SET_FREEABLE(cachep, i);
3765 }
3766#endif
Christoph Lametere498be72005-09-09 13:03:32 -07003767 spin_unlock(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003768 ac->avail -= batchcount;
Andrew Mortona737b3e2006-03-22 00:08:11 -08003769 memmove(ac->entry, &(ac->entry[batchcount]), sizeof(void *)*ac->avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003770}
3771
3772/*
Andrew Mortona737b3e2006-03-22 00:08:11 -08003773 * Release an obj back to its cache. If the obj has a constructed state, it must
3774 * be in this state _before_ it is released. Called with disabled ints.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003775 */
Suleiman Souhlala947eb92011-06-02 00:16:42 -07003776static inline void __cache_free(struct kmem_cache *cachep, void *objp,
3777 void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003778{
Pekka Enberg9a2dba42006-02-01 03:05:49 -08003779 struct array_cache *ac = cpu_cache_get(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003780
3781 check_irq_off();
Catalin Marinasd5cff632009-06-11 13:22:40 +01003782 kmemleak_free_recursive(objp, cachep->flags);
Suleiman Souhlala947eb92011-06-02 00:16:42 -07003783 objp = cache_free_debugcheck(cachep, objp, caller);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003784
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003785 kmemcheck_slab_free(cachep, objp, cachep->object_size);
Pekka Enbergc175eea2008-05-09 20:35:53 +02003786
Siddha, Suresh B1807a1a2007-08-22 14:01:49 -07003787 /*
3788 * Skip calling cache_free_alien() when the platform is not numa.
3789 * This will avoid cache misses that happen while accessing slabp (which
3790 * is per page memory reference) to get nodeid. Instead use a global
3791 * variable to skip the call, which is mostly likely to be present in
3792 * the cache.
3793 */
Mel Gormanb6e68bc2009-06-16 15:32:16 -07003794 if (nr_online_nodes > 1 && cache_free_alien(cachep, objp))
Pekka Enberg729bd0b2006-06-23 02:03:05 -07003795 return;
Christoph Lametere498be72005-09-09 13:03:32 -07003796
Linus Torvalds1da177e2005-04-16 15:20:36 -07003797 if (likely(ac->avail < ac->limit)) {
3798 STATS_INC_FREEHIT(cachep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003799 } else {
3800 STATS_INC_FREEMISS(cachep);
3801 cache_flusharray(cachep, ac);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003802 }
Zhao Jin42c8c992011-08-27 00:26:17 +08003803
Mel Gorman072bb0a2012-07-31 16:43:58 -07003804 ac_put_obj(cachep, ac, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003805}
3806
3807/**
3808 * kmem_cache_alloc - Allocate an object
3809 * @cachep: The cache to allocate from.
3810 * @flags: See kmalloc().
3811 *
3812 * Allocate an object from this cache. The flags are only relevant
3813 * if the cache has no available objects.
3814 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003815void *kmem_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003816{
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003817 void *ret = __cache_alloc(cachep, flags, __builtin_return_address(0));
3818
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003819 trace_kmem_cache_alloc(_RET_IP_, ret,
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003820 cachep->object_size, cachep->size, flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003821
3822 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003823}
3824EXPORT_SYMBOL(kmem_cache_alloc);
3825
Li Zefan0f24f122009-12-11 15:45:30 +08003826#ifdef CONFIG_TRACING
Steven Rostedt85beb582010-11-24 16:23:34 -05003827void *
3828kmem_cache_alloc_trace(size_t size, struct kmem_cache *cachep, gfp_t flags)
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003829{
Steven Rostedt85beb582010-11-24 16:23:34 -05003830 void *ret;
3831
3832 ret = __cache_alloc(cachep, flags, __builtin_return_address(0));
3833
3834 trace_kmalloc(_RET_IP_, ret,
3835 size, slab_buffer_size(cachep), flags);
3836 return ret;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003837}
Steven Rostedt85beb582010-11-24 16:23:34 -05003838EXPORT_SYMBOL(kmem_cache_alloc_trace);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003839#endif
3840
Linus Torvalds1da177e2005-04-16 15:20:36 -07003841#ifdef CONFIG_NUMA
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003842void *kmem_cache_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid)
3843{
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003844 void *ret = __cache_alloc_node(cachep, flags, nodeid,
3845 __builtin_return_address(0));
3846
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003847 trace_kmem_cache_alloc_node(_RET_IP_, ret,
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003848 cachep->object_size, cachep->size,
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003849 flags, nodeid);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003850
3851 return ret;
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003852}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003853EXPORT_SYMBOL(kmem_cache_alloc_node);
3854
Li Zefan0f24f122009-12-11 15:45:30 +08003855#ifdef CONFIG_TRACING
Steven Rostedt85beb582010-11-24 16:23:34 -05003856void *kmem_cache_alloc_node_trace(size_t size,
3857 struct kmem_cache *cachep,
3858 gfp_t flags,
3859 int nodeid)
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003860{
Steven Rostedt85beb582010-11-24 16:23:34 -05003861 void *ret;
3862
3863 ret = __cache_alloc_node(cachep, flags, nodeid,
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003864 __builtin_return_address(0));
Steven Rostedt85beb582010-11-24 16:23:34 -05003865 trace_kmalloc_node(_RET_IP_, ret,
3866 size, slab_buffer_size(cachep),
3867 flags, nodeid);
3868 return ret;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003869}
Steven Rostedt85beb582010-11-24 16:23:34 -05003870EXPORT_SYMBOL(kmem_cache_alloc_node_trace);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003871#endif
3872
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003873static __always_inline void *
3874__do_kmalloc_node(size_t size, gfp_t flags, int node, void *caller)
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003875{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003876 struct kmem_cache *cachep;
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003877
3878 cachep = kmem_find_general_cachep(size, flags);
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003879 if (unlikely(ZERO_OR_NULL_PTR(cachep)))
3880 return cachep;
Steven Rostedt85beb582010-11-24 16:23:34 -05003881 return kmem_cache_alloc_node_trace(size, cachep, flags, node);
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003882}
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003883
Li Zefan0bb38a52009-12-11 15:45:50 +08003884#if defined(CONFIG_DEBUG_SLAB) || defined(CONFIG_TRACING)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003885void *__kmalloc_node(size_t size, gfp_t flags, int node)
3886{
3887 return __do_kmalloc_node(size, flags, node,
3888 __builtin_return_address(0));
3889}
Christoph Hellwigdbe5e692006-09-25 23:31:36 -07003890EXPORT_SYMBOL(__kmalloc_node);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003891
3892void *__kmalloc_node_track_caller(size_t size, gfp_t flags,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003893 int node, unsigned long caller)
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003894{
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003895 return __do_kmalloc_node(size, flags, node, (void *)caller);
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003896}
3897EXPORT_SYMBOL(__kmalloc_node_track_caller);
3898#else
3899void *__kmalloc_node(size_t size, gfp_t flags, int node)
3900{
3901 return __do_kmalloc_node(size, flags, node, NULL);
3902}
3903EXPORT_SYMBOL(__kmalloc_node);
Li Zefan0bb38a52009-12-11 15:45:50 +08003904#endif /* CONFIG_DEBUG_SLAB || CONFIG_TRACING */
Christoph Hellwig8b98c162006-12-06 20:32:30 -08003905#endif /* CONFIG_NUMA */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003906
3907/**
Paul Drynoff800590f2006-06-23 02:03:48 -07003908 * __do_kmalloc - allocate memory
Linus Torvalds1da177e2005-04-16 15:20:36 -07003909 * @size: how many bytes of memory are required.
Paul Drynoff800590f2006-06-23 02:03:48 -07003910 * @flags: the type of memory to allocate (see kmalloc).
Randy Dunlap911851e2006-03-22 00:08:14 -08003911 * @caller: function caller for debug tracking of the caller
Linus Torvalds1da177e2005-04-16 15:20:36 -07003912 */
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003913static __always_inline void *__do_kmalloc(size_t size, gfp_t flags,
3914 void *caller)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003915{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003916 struct kmem_cache *cachep;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003917 void *ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003918
Manfred Spraul97e2bde2005-05-01 08:58:38 -07003919 /* If you want to save a few bytes .text space: replace
3920 * __ with kmem_.
3921 * Then kmalloc uses the uninlined functions instead of the inline
3922 * functions.
3923 */
3924 cachep = __find_general_cachep(size, flags);
Linus Torvaldsa5c96d82007-07-19 13:17:15 -07003925 if (unlikely(ZERO_OR_NULL_PTR(cachep)))
3926 return cachep;
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003927 ret = __cache_alloc(cachep, flags, caller);
3928
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003929 trace_kmalloc((unsigned long) caller, ret,
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003930 size, cachep->size, flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003931
3932 return ret;
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003933}
3934
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003935
Li Zefan0bb38a52009-12-11 15:45:50 +08003936#if defined(CONFIG_DEBUG_SLAB) || defined(CONFIG_TRACING)
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003937void *__kmalloc(size_t size, gfp_t flags)
3938{
Al Viro871751e2006-03-25 03:06:39 -08003939 return __do_kmalloc(size, flags, __builtin_return_address(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003940}
3941EXPORT_SYMBOL(__kmalloc);
3942
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003943void *__kmalloc_track_caller(size_t size, gfp_t flags, unsigned long caller)
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003944{
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003945 return __do_kmalloc(size, flags, (void *)caller);
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003946}
3947EXPORT_SYMBOL(__kmalloc_track_caller);
Christoph Hellwig1d2c8ee2006-10-04 02:15:25 -07003948
3949#else
3950void *__kmalloc(size_t size, gfp_t flags)
3951{
3952 return __do_kmalloc(size, flags, NULL);
3953}
3954EXPORT_SYMBOL(__kmalloc);
Pekka Enberg7fd6b142006-02-01 03:05:52 -08003955#endif
3956
Linus Torvalds1da177e2005-04-16 15:20:36 -07003957/**
3958 * kmem_cache_free - Deallocate an object
3959 * @cachep: The cache the allocation was from.
3960 * @objp: The previously allocated object.
3961 *
3962 * Free an object which was previously allocated from this
3963 * cache.
3964 */
Pekka Enberg343e0d72006-02-01 03:05:50 -08003965void kmem_cache_free(struct kmem_cache *cachep, void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003966{
3967 unsigned long flags;
3968
3969 local_irq_save(flags);
Feng Tangd97d4762012-07-02 14:29:10 +08003970 debug_check_no_locks_freed(objp, cachep->object_size);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -07003971 if (!(cachep->flags & SLAB_DEBUG_OBJECTS))
Christoph Lameter8c138bc2012-06-13 10:24:58 -05003972 debug_check_no_obj_freed(objp, cachep->object_size);
Suleiman Souhlala947eb92011-06-02 00:16:42 -07003973 __cache_free(cachep, objp, __builtin_return_address(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003974 local_irq_restore(flags);
Eduard - Gabriel Munteanu36555752008-08-10 20:14:05 +03003975
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003976 trace_kmem_cache_free(_RET_IP_, objp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003977}
3978EXPORT_SYMBOL(kmem_cache_free);
3979
3980/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07003981 * kfree - free previously allocated memory
3982 * @objp: pointer returned by kmalloc.
3983 *
Pekka Enberg80e93ef2005-09-09 13:10:16 -07003984 * If @objp is NULL, no operation is performed.
3985 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07003986 * Don't free memory not originally allocated by kmalloc()
3987 * or you will run into trouble.
3988 */
3989void kfree(const void *objp)
3990{
Pekka Enberg343e0d72006-02-01 03:05:50 -08003991 struct kmem_cache *c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003992 unsigned long flags;
3993
Pekka Enberg2121db72009-03-25 11:05:57 +02003994 trace_kfree(_RET_IP_, objp);
3995
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003996 if (unlikely(ZERO_OR_NULL_PTR(objp)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003997 return;
3998 local_irq_save(flags);
3999 kfree_debugcheck(objp);
Pekka Enberg6ed5eb2212006-02-01 03:05:49 -08004000 c = virt_to_cache(objp);
Christoph Lameter8c138bc2012-06-13 10:24:58 -05004001 debug_check_no_locks_freed(objp, c->object_size);
4002
4003 debug_check_no_obj_freed(objp, c->object_size);
Suleiman Souhlala947eb92011-06-02 00:16:42 -07004004 __cache_free(c, (void *)objp, __builtin_return_address(0));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004005 local_irq_restore(flags);
4006}
4007EXPORT_SYMBOL(kfree);
4008
Pekka Enberg343e0d72006-02-01 03:05:50 -08004009unsigned int kmem_cache_size(struct kmem_cache *cachep)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004010{
Christoph Lameter8c138bc2012-06-13 10:24:58 -05004011 return cachep->object_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004012}
4013EXPORT_SYMBOL(kmem_cache_size);
4014
Christoph Lametere498be72005-09-09 13:03:32 -07004015/*
Simon Arlott183ff222007-10-20 01:27:18 +02004016 * This initializes kmem_list3 or resizes various caches for all nodes.
Christoph Lametere498be72005-09-09 13:03:32 -07004017 */
Pekka Enberg83b519e2009-06-10 19:40:04 +03004018static int alloc_kmemlist(struct kmem_cache *cachep, gfp_t gfp)
Christoph Lametere498be72005-09-09 13:03:32 -07004019{
4020 int node;
4021 struct kmem_list3 *l3;
Christoph Lametercafeb022006-03-25 03:06:46 -08004022 struct array_cache *new_shared;
Paul Menage3395ee02006-12-06 20:32:16 -08004023 struct array_cache **new_alien = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07004024
Mel Gorman9c09a952008-01-24 05:49:54 -08004025 for_each_online_node(node) {
Christoph Lametercafeb022006-03-25 03:06:46 -08004026
Paul Menage3395ee02006-12-06 20:32:16 -08004027 if (use_alien_caches) {
Pekka Enberg83b519e2009-06-10 19:40:04 +03004028 new_alien = alloc_alien_cache(node, cachep->limit, gfp);
Paul Menage3395ee02006-12-06 20:32:16 -08004029 if (!new_alien)
4030 goto fail;
4031 }
Christoph Lametercafeb022006-03-25 03:06:46 -08004032
Eric Dumazet63109842007-05-06 14:49:28 -07004033 new_shared = NULL;
4034 if (cachep->shared) {
4035 new_shared = alloc_arraycache(node,
Christoph Lameter0718dc22006-03-25 03:06:47 -08004036 cachep->shared*cachep->batchcount,
Pekka Enberg83b519e2009-06-10 19:40:04 +03004037 0xbaadf00d, gfp);
Eric Dumazet63109842007-05-06 14:49:28 -07004038 if (!new_shared) {
4039 free_alien_cache(new_alien);
4040 goto fail;
4041 }
Christoph Lameter0718dc22006-03-25 03:06:47 -08004042 }
Christoph Lametercafeb022006-03-25 03:06:46 -08004043
Andrew Mortona737b3e2006-03-22 00:08:11 -08004044 l3 = cachep->nodelists[node];
4045 if (l3) {
Christoph Lametercafeb022006-03-25 03:06:46 -08004046 struct array_cache *shared = l3->shared;
4047
Christoph Lametere498be72005-09-09 13:03:32 -07004048 spin_lock_irq(&l3->list_lock);
4049
Christoph Lametercafeb022006-03-25 03:06:46 -08004050 if (shared)
Christoph Lameter0718dc22006-03-25 03:06:47 -08004051 free_block(cachep, shared->entry,
4052 shared->avail, node);
Christoph Lametere498be72005-09-09 13:03:32 -07004053
Christoph Lametercafeb022006-03-25 03:06:46 -08004054 l3->shared = new_shared;
4055 if (!l3->alien) {
Christoph Lametere498be72005-09-09 13:03:32 -07004056 l3->alien = new_alien;
4057 new_alien = NULL;
4058 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004059 l3->free_limit = (1 + nr_cpus_node(node)) *
Andrew Mortona737b3e2006-03-22 00:08:11 -08004060 cachep->batchcount + cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07004061 spin_unlock_irq(&l3->list_lock);
Christoph Lametercafeb022006-03-25 03:06:46 -08004062 kfree(shared);
Christoph Lametere498be72005-09-09 13:03:32 -07004063 free_alien_cache(new_alien);
4064 continue;
4065 }
Pekka Enberg83b519e2009-06-10 19:40:04 +03004066 l3 = kmalloc_node(sizeof(struct kmem_list3), gfp, node);
Christoph Lameter0718dc22006-03-25 03:06:47 -08004067 if (!l3) {
4068 free_alien_cache(new_alien);
4069 kfree(new_shared);
Christoph Lametere498be72005-09-09 13:03:32 -07004070 goto fail;
Christoph Lameter0718dc22006-03-25 03:06:47 -08004071 }
Christoph Lametere498be72005-09-09 13:03:32 -07004072
4073 kmem_list3_init(l3);
4074 l3->next_reap = jiffies + REAPTIMEOUT_LIST3 +
Andrew Mortona737b3e2006-03-22 00:08:11 -08004075 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
Christoph Lametercafeb022006-03-25 03:06:46 -08004076 l3->shared = new_shared;
Christoph Lametere498be72005-09-09 13:03:32 -07004077 l3->alien = new_alien;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004078 l3->free_limit = (1 + nr_cpus_node(node)) *
Andrew Mortona737b3e2006-03-22 00:08:11 -08004079 cachep->batchcount + cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07004080 cachep->nodelists[node] = l3;
4081 }
Christoph Lametercafeb022006-03-25 03:06:46 -08004082 return 0;
Christoph Lameter0718dc22006-03-25 03:06:47 -08004083
Andrew Mortona737b3e2006-03-22 00:08:11 -08004084fail:
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05004085 if (!cachep->list.next) {
Christoph Lameter0718dc22006-03-25 03:06:47 -08004086 /* Cache is not active yet. Roll back what we did */
4087 node--;
4088 while (node >= 0) {
4089 if (cachep->nodelists[node]) {
4090 l3 = cachep->nodelists[node];
4091
4092 kfree(l3->shared);
4093 free_alien_cache(l3->alien);
4094 kfree(l3);
4095 cachep->nodelists[node] = NULL;
4096 }
4097 node--;
4098 }
4099 }
Christoph Lametercafeb022006-03-25 03:06:46 -08004100 return -ENOMEM;
Christoph Lametere498be72005-09-09 13:03:32 -07004101}
4102
Linus Torvalds1da177e2005-04-16 15:20:36 -07004103struct ccupdate_struct {
Pekka Enberg343e0d72006-02-01 03:05:50 -08004104 struct kmem_cache *cachep;
Eric Dumazetacfe7d72011-07-25 08:55:42 +02004105 struct array_cache *new[0];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004106};
4107
4108static void do_ccupdate_local(void *info)
4109{
Andrew Mortona737b3e2006-03-22 00:08:11 -08004110 struct ccupdate_struct *new = info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004111 struct array_cache *old;
4112
4113 check_irq_off();
Pekka Enberg9a2dba42006-02-01 03:05:49 -08004114 old = cpu_cache_get(new->cachep);
Christoph Lametere498be72005-09-09 13:03:32 -07004115
Linus Torvalds1da177e2005-04-16 15:20:36 -07004116 new->cachep->array[smp_processor_id()] = new->new[smp_processor_id()];
4117 new->new[smp_processor_id()] = old;
4118}
4119
Christoph Lameter18004c52012-07-06 15:25:12 -05004120/* Always called with the slab_mutex held */
Andrew Mortona737b3e2006-03-22 00:08:11 -08004121static int do_tune_cpucache(struct kmem_cache *cachep, int limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03004122 int batchcount, int shared, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004123{
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004124 struct ccupdate_struct *new;
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07004125 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004126
Eric Dumazetacfe7d72011-07-25 08:55:42 +02004127 new = kzalloc(sizeof(*new) + nr_cpu_ids * sizeof(struct array_cache *),
4128 gfp);
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004129 if (!new)
4130 return -ENOMEM;
4131
Christoph Lametere498be72005-09-09 13:03:32 -07004132 for_each_online_cpu(i) {
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07004133 new->new[i] = alloc_arraycache(cpu_to_mem(i), limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03004134 batchcount, gfp);
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004135 if (!new->new[i]) {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004136 for (i--; i >= 0; i--)
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004137 kfree(new->new[i]);
4138 kfree(new);
Christoph Lametere498be72005-09-09 13:03:32 -07004139 return -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004140 }
4141 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004142 new->cachep = cachep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004143
Jens Axboe15c8b6c2008-05-09 09:39:44 +02004144 on_each_cpu(do_ccupdate_local, (void *)new, 1);
Christoph Lametere498be72005-09-09 13:03:32 -07004145
Linus Torvalds1da177e2005-04-16 15:20:36 -07004146 check_irq_on();
Linus Torvalds1da177e2005-04-16 15:20:36 -07004147 cachep->batchcount = batchcount;
4148 cachep->limit = limit;
Christoph Lametere498be72005-09-09 13:03:32 -07004149 cachep->shared = shared;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004150
Christoph Lametere498be72005-09-09 13:03:32 -07004151 for_each_online_cpu(i) {
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004152 struct array_cache *ccold = new->new[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07004153 if (!ccold)
4154 continue;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07004155 spin_lock_irq(&cachep->nodelists[cpu_to_mem(i)]->list_lock);
4156 free_block(cachep, ccold->entry, ccold->avail, cpu_to_mem(i));
4157 spin_unlock_irq(&cachep->nodelists[cpu_to_mem(i)]->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004158 kfree(ccold);
4159 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004160 kfree(new);
Pekka Enberg83b519e2009-06-10 19:40:04 +03004161 return alloc_kmemlist(cachep, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004162}
4163
Christoph Lameter18004c52012-07-06 15:25:12 -05004164/* Called with slab_mutex held always */
Pekka Enberg83b519e2009-06-10 19:40:04 +03004165static int enable_cpucache(struct kmem_cache *cachep, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004166{
4167 int err;
4168 int limit, shared;
4169
Andrew Mortona737b3e2006-03-22 00:08:11 -08004170 /*
4171 * The head array serves three purposes:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004172 * - create a LIFO ordering, i.e. return objects that are cache-warm
4173 * - reduce the number of spinlock operations.
Andrew Mortona737b3e2006-03-22 00:08:11 -08004174 * - reduce the number of linked list operations on the slab and
Linus Torvalds1da177e2005-04-16 15:20:36 -07004175 * bufctl chains: array operations are cheaper.
4176 * The numbers are guessed, we should auto-tune as described by
4177 * Bonwick.
4178 */
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05004179 if (cachep->size > 131072)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004180 limit = 1;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05004181 else if (cachep->size > PAGE_SIZE)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004182 limit = 8;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05004183 else if (cachep->size > 1024)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004184 limit = 24;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05004185 else if (cachep->size > 256)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004186 limit = 54;
4187 else
4188 limit = 120;
4189
Andrew Mortona737b3e2006-03-22 00:08:11 -08004190 /*
4191 * CPU bound tasks (e.g. network routing) can exhibit cpu bound
Linus Torvalds1da177e2005-04-16 15:20:36 -07004192 * allocation behaviour: Most allocs on one cpu, most free operations
4193 * on another cpu. For these cases, an efficient object passing between
4194 * cpus is necessary. This is provided by a shared array. The array
4195 * replaces Bonwick's magazine layer.
4196 * On uniprocessor, it's functionally equivalent (but less efficient)
4197 * to a larger limit. Thus disabled by default.
4198 */
4199 shared = 0;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05004200 if (cachep->size <= PAGE_SIZE && num_possible_cpus() > 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004201 shared = 8;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004202
4203#if DEBUG
Andrew Mortona737b3e2006-03-22 00:08:11 -08004204 /*
4205 * With debugging enabled, large batchcount lead to excessively long
4206 * periods with disabled local interrupts. Limit the batchcount
Linus Torvalds1da177e2005-04-16 15:20:36 -07004207 */
4208 if (limit > 32)
4209 limit = 32;
4210#endif
Pekka Enberg83b519e2009-06-10 19:40:04 +03004211 err = do_tune_cpucache(cachep, limit, (limit + 1) / 2, shared, gfp);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004212 if (err)
4213 printk(KERN_ERR "enable_cpucache failed for %s, error %d.\n",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004214 cachep->name, -err);
Christoph Lameter2ed3a4e2006-09-25 23:31:38 -07004215 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004216}
4217
Christoph Lameter1b552532006-03-22 00:09:07 -08004218/*
4219 * Drain an array if it contains any elements taking the l3 lock only if
Christoph Lameterb18e7e62006-03-22 00:09:07 -08004220 * necessary. Note that the l3 listlock also protects the array_cache
4221 * if drain_array() is used on the shared array.
Christoph Lameter1b552532006-03-22 00:09:07 -08004222 */
H Hartley Sweeten68a1b192011-01-11 17:49:32 -06004223static void drain_array(struct kmem_cache *cachep, struct kmem_list3 *l3,
Christoph Lameter1b552532006-03-22 00:09:07 -08004224 struct array_cache *ac, int force, int node)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004225{
4226 int tofree;
4227
Christoph Lameter1b552532006-03-22 00:09:07 -08004228 if (!ac || !ac->avail)
4229 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004230 if (ac->touched && !force) {
4231 ac->touched = 0;
Christoph Lameterb18e7e62006-03-22 00:09:07 -08004232 } else {
Christoph Lameter1b552532006-03-22 00:09:07 -08004233 spin_lock_irq(&l3->list_lock);
Christoph Lameterb18e7e62006-03-22 00:09:07 -08004234 if (ac->avail) {
4235 tofree = force ? ac->avail : (ac->limit + 4) / 5;
4236 if (tofree > ac->avail)
4237 tofree = (ac->avail + 1) / 2;
4238 free_block(cachep, ac->entry, tofree, node);
4239 ac->avail -= tofree;
4240 memmove(ac->entry, &(ac->entry[tofree]),
4241 sizeof(void *) * ac->avail);
4242 }
Christoph Lameter1b552532006-03-22 00:09:07 -08004243 spin_unlock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004244 }
4245}
4246
4247/**
4248 * cache_reap - Reclaim memory from caches.
Randy Dunlap05fb6bf2007-02-28 20:12:13 -08004249 * @w: work descriptor
Linus Torvalds1da177e2005-04-16 15:20:36 -07004250 *
4251 * Called from workqueue/eventd every few seconds.
4252 * Purpose:
4253 * - clear the per-cpu caches for this CPU.
4254 * - return freeable pages to the main free memory pool.
4255 *
Andrew Mortona737b3e2006-03-22 00:08:11 -08004256 * If we cannot acquire the cache chain mutex then just give up - we'll try
4257 * again on the next iteration.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004258 */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004259static void cache_reap(struct work_struct *w)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004260{
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004261 struct kmem_cache *searchp;
Christoph Lametere498be72005-09-09 13:03:32 -07004262 struct kmem_list3 *l3;
Lee Schermerhorn7d6e6d02010-05-26 14:45:03 -07004263 int node = numa_mem_id();
Jean Delvarebf6aede2009-04-02 16:56:54 -07004264 struct delayed_work *work = to_delayed_work(w);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004265
Christoph Lameter18004c52012-07-06 15:25:12 -05004266 if (!mutex_trylock(&slab_mutex))
Linus Torvalds1da177e2005-04-16 15:20:36 -07004267 /* Give up. Setup the next iteration. */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004268 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004269
Christoph Lameter18004c52012-07-06 15:25:12 -05004270 list_for_each_entry(searchp, &slab_caches, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004271 check_irq_on();
4272
Christoph Lameter35386e32006-03-22 00:09:05 -08004273 /*
4274 * We only take the l3 lock if absolutely necessary and we
4275 * have established with reasonable certainty that
4276 * we can do some work if the lock was obtained.
4277 */
Christoph Lameteraab22072006-03-22 00:09:06 -08004278 l3 = searchp->nodelists[node];
Christoph Lameter35386e32006-03-22 00:09:05 -08004279
Christoph Lameter8fce4d82006-03-09 17:33:54 -08004280 reap_alien(searchp, l3);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004281
Christoph Lameteraab22072006-03-22 00:09:06 -08004282 drain_array(searchp, l3, cpu_cache_get(searchp), 0, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004283
Christoph Lameter35386e32006-03-22 00:09:05 -08004284 /*
4285 * These are racy checks but it does not matter
4286 * if we skip one check or scan twice.
4287 */
Christoph Lametere498be72005-09-09 13:03:32 -07004288 if (time_after(l3->next_reap, jiffies))
Christoph Lameter35386e32006-03-22 00:09:05 -08004289 goto next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004290
Christoph Lametere498be72005-09-09 13:03:32 -07004291 l3->next_reap = jiffies + REAPTIMEOUT_LIST3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004292
Christoph Lameteraab22072006-03-22 00:09:06 -08004293 drain_array(searchp, l3, l3->shared, 0, node);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004294
Christoph Lametered11d9e2006-06-30 01:55:45 -07004295 if (l3->free_touched)
Christoph Lametere498be72005-09-09 13:03:32 -07004296 l3->free_touched = 0;
Christoph Lametered11d9e2006-06-30 01:55:45 -07004297 else {
4298 int freed;
4299
4300 freed = drain_freelist(searchp, l3, (l3->free_limit +
4301 5 * searchp->num - 1) / (5 * searchp->num));
4302 STATS_ADD_REAPED(searchp, freed);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004303 }
Christoph Lameter35386e32006-03-22 00:09:05 -08004304next:
Linus Torvalds1da177e2005-04-16 15:20:36 -07004305 cond_resched();
4306 }
4307 check_irq_on();
Christoph Lameter18004c52012-07-06 15:25:12 -05004308 mutex_unlock(&slab_mutex);
Christoph Lameter8fce4d82006-03-09 17:33:54 -08004309 next_reap_node();
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004310out:
Andrew Mortona737b3e2006-03-22 00:08:11 -08004311 /* Set up the next iteration */
Christoph Lameter7c5cae32007-02-10 01:42:55 -08004312 schedule_delayed_work(work, round_jiffies_relative(REAPTIMEOUT_CPUC));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004313}
4314
Linus Torvalds158a9622008-01-02 13:04:48 -08004315#ifdef CONFIG_SLABINFO
Linus Torvalds1da177e2005-04-16 15:20:36 -07004316
Pekka Enberg85289f92006-01-08 01:00:36 -08004317static void print_slabinfo_header(struct seq_file *m)
4318{
4319 /*
4320 * Output format version, so at least we can change it
4321 * without _too_ many complaints.
4322 */
4323#if STATS
4324 seq_puts(m, "slabinfo - version: 2.1 (statistics)\n");
4325#else
4326 seq_puts(m, "slabinfo - version: 2.1\n");
4327#endif
4328 seq_puts(m, "# name <active_objs> <num_objs> <objsize> "
4329 "<objperslab> <pagesperslab>");
4330 seq_puts(m, " : tunables <limit> <batchcount> <sharedfactor>");
4331 seq_puts(m, " : slabdata <active_slabs> <num_slabs> <sharedavail>");
4332#if STATS
4333 seq_puts(m, " : globalstat <listallocs> <maxobjs> <grown> <reaped> "
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -07004334 "<error> <maxfreeable> <nodeallocs> <remotefrees> <alienoverflow>");
Pekka Enberg85289f92006-01-08 01:00:36 -08004335 seq_puts(m, " : cpustat <allochit> <allocmiss> <freehit> <freemiss>");
4336#endif
4337 seq_putc(m, '\n');
4338}
4339
Linus Torvalds1da177e2005-04-16 15:20:36 -07004340static void *s_start(struct seq_file *m, loff_t *pos)
4341{
4342 loff_t n = *pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004343
Christoph Lameter18004c52012-07-06 15:25:12 -05004344 mutex_lock(&slab_mutex);
Pekka Enberg85289f92006-01-08 01:00:36 -08004345 if (!n)
4346 print_slabinfo_header(m);
Pavel Emelianovb92151b2007-07-15 23:38:04 -07004347
Christoph Lameter18004c52012-07-06 15:25:12 -05004348 return seq_list_start(&slab_caches, *pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004349}
4350
4351static void *s_next(struct seq_file *m, void *p, loff_t *pos)
4352{
Christoph Lameter18004c52012-07-06 15:25:12 -05004353 return seq_list_next(p, &slab_caches, pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004354}
4355
4356static void s_stop(struct seq_file *m, void *p)
4357{
Christoph Lameter18004c52012-07-06 15:25:12 -05004358 mutex_unlock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004359}
4360
4361static int s_show(struct seq_file *m, void *p)
4362{
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05004363 struct kmem_cache *cachep = list_entry(p, struct kmem_cache, list);
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004364 struct slab *slabp;
4365 unsigned long active_objs;
4366 unsigned long num_objs;
4367 unsigned long active_slabs = 0;
4368 unsigned long num_slabs, free_objects = 0, shared_avail = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07004369 const char *name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004370 char *error = NULL;
Christoph Lametere498be72005-09-09 13:03:32 -07004371 int node;
4372 struct kmem_list3 *l3;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004373
Linus Torvalds1da177e2005-04-16 15:20:36 -07004374 active_objs = 0;
4375 num_slabs = 0;
Christoph Lametere498be72005-09-09 13:03:32 -07004376 for_each_online_node(node) {
4377 l3 = cachep->nodelists[node];
4378 if (!l3)
4379 continue;
4380
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08004381 check_irq_on();
4382 spin_lock_irq(&l3->list_lock);
Christoph Lametere498be72005-09-09 13:03:32 -07004383
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004384 list_for_each_entry(slabp, &l3->slabs_full, list) {
Christoph Lametere498be72005-09-09 13:03:32 -07004385 if (slabp->inuse != cachep->num && !error)
4386 error = "slabs_full accounting error";
4387 active_objs += cachep->num;
4388 active_slabs++;
4389 }
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004390 list_for_each_entry(slabp, &l3->slabs_partial, list) {
Christoph Lametere498be72005-09-09 13:03:32 -07004391 if (slabp->inuse == cachep->num && !error)
4392 error = "slabs_partial inuse accounting error";
4393 if (!slabp->inuse && !error)
4394 error = "slabs_partial/inuse accounting error";
4395 active_objs += slabp->inuse;
4396 active_slabs++;
4397 }
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004398 list_for_each_entry(slabp, &l3->slabs_free, list) {
Christoph Lametere498be72005-09-09 13:03:32 -07004399 if (slabp->inuse && !error)
4400 error = "slabs_free/inuse accounting error";
4401 num_slabs++;
4402 }
4403 free_objects += l3->free_objects;
Ravikiran G Thirumalai4484ebf2006-02-04 23:27:59 -08004404 if (l3->shared)
4405 shared_avail += l3->shared->avail;
Christoph Lametere498be72005-09-09 13:03:32 -07004406
Ravikiran G Thirumalaica3b9b92006-02-04 23:27:58 -08004407 spin_unlock_irq(&l3->list_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004408 }
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004409 num_slabs += active_slabs;
4410 num_objs = num_slabs * cachep->num;
Christoph Lametere498be72005-09-09 13:03:32 -07004411 if (num_objs - active_objs != free_objects && !error)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004412 error = "free_objects accounting error";
4413
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004414 name = cachep->name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004415 if (error)
4416 printk(KERN_ERR "slab: cache %s error: %s\n", name, error);
4417
4418 seq_printf(m, "%-17s %6lu %6lu %6u %4u %4d",
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05004419 name, active_objs, num_objs, cachep->size,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004420 cachep->num, (1 << cachep->gfporder));
Linus Torvalds1da177e2005-04-16 15:20:36 -07004421 seq_printf(m, " : tunables %4u %4u %4u",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004422 cachep->limit, cachep->batchcount, cachep->shared);
Christoph Lametere498be72005-09-09 13:03:32 -07004423 seq_printf(m, " : slabdata %6lu %6lu %6lu",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004424 active_slabs, num_slabs, shared_avail);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004425#if STATS
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004426 { /* list3 stats */
Linus Torvalds1da177e2005-04-16 15:20:36 -07004427 unsigned long high = cachep->high_mark;
4428 unsigned long allocs = cachep->num_allocations;
4429 unsigned long grown = cachep->grown;
4430 unsigned long reaped = cachep->reaped;
4431 unsigned long errors = cachep->errors;
4432 unsigned long max_freeable = cachep->max_freeable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004433 unsigned long node_allocs = cachep->node_allocs;
Christoph Lametere498be72005-09-09 13:03:32 -07004434 unsigned long node_frees = cachep->node_frees;
Ravikiran G Thirumalaifb7faf32006-04-10 22:52:54 -07004435 unsigned long overflows = cachep->node_overflow;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004436
Joe Perchese92dd4f2010-03-26 19:27:58 -07004437 seq_printf(m, " : globalstat %7lu %6lu %5lu %4lu "
4438 "%4lu %4lu %4lu %4lu %4lu",
4439 allocs, high, grown,
4440 reaped, errors, max_freeable, node_allocs,
4441 node_frees, overflows);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004442 }
4443 /* cpu stats */
4444 {
4445 unsigned long allochit = atomic_read(&cachep->allochit);
4446 unsigned long allocmiss = atomic_read(&cachep->allocmiss);
4447 unsigned long freehit = atomic_read(&cachep->freehit);
4448 unsigned long freemiss = atomic_read(&cachep->freemiss);
4449
4450 seq_printf(m, " : cpustat %6lu %6lu %6lu %6lu",
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004451 allochit, allocmiss, freehit, freemiss);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004452 }
4453#endif
4454 seq_putc(m, '\n');
Linus Torvalds1da177e2005-04-16 15:20:36 -07004455 return 0;
4456}
4457
4458/*
4459 * slabinfo_op - iterator that generates /proc/slabinfo
4460 *
4461 * Output layout:
4462 * cache-name
4463 * num-active-objs
4464 * total-objs
4465 * object size
4466 * num-active-slabs
4467 * total-slabs
4468 * num-pages-per-slab
4469 * + further values on SMP and with statistics enabled
4470 */
4471
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04004472static const struct seq_operations slabinfo_op = {
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004473 .start = s_start,
4474 .next = s_next,
4475 .stop = s_stop,
4476 .show = s_show,
Linus Torvalds1da177e2005-04-16 15:20:36 -07004477};
4478
4479#define MAX_SLABINFO_WRITE 128
4480/**
4481 * slabinfo_write - Tuning for the slab allocator
4482 * @file: unused
4483 * @buffer: user buffer
4484 * @count: data length
4485 * @ppos: unused
4486 */
H Hartley Sweeten68a1b192011-01-11 17:49:32 -06004487static ssize_t slabinfo_write(struct file *file, const char __user *buffer,
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004488 size_t count, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004489{
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004490 char kbuf[MAX_SLABINFO_WRITE + 1], *tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004491 int limit, batchcount, shared, res;
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004492 struct kmem_cache *cachep;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004493
Linus Torvalds1da177e2005-04-16 15:20:36 -07004494 if (count > MAX_SLABINFO_WRITE)
4495 return -EINVAL;
4496 if (copy_from_user(&kbuf, buffer, count))
4497 return -EFAULT;
Pekka Enbergb28a02d2006-01-08 01:00:37 -08004498 kbuf[MAX_SLABINFO_WRITE] = '\0';
Linus Torvalds1da177e2005-04-16 15:20:36 -07004499
4500 tmp = strchr(kbuf, ' ');
4501 if (!tmp)
4502 return -EINVAL;
4503 *tmp = '\0';
4504 tmp++;
4505 if (sscanf(tmp, " %d %d %d", &limit, &batchcount, &shared) != 3)
4506 return -EINVAL;
4507
4508 /* Find the cache in the chain of caches. */
Christoph Lameter18004c52012-07-06 15:25:12 -05004509 mutex_lock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004510 res = -EINVAL;
Christoph Lameter18004c52012-07-06 15:25:12 -05004511 list_for_each_entry(cachep, &slab_caches, list) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07004512 if (!strcmp(cachep->name, kbuf)) {
Andrew Mortona737b3e2006-03-22 00:08:11 -08004513 if (limit < 1 || batchcount < 1 ||
4514 batchcount > limit || shared < 0) {
Christoph Lametere498be72005-09-09 13:03:32 -07004515 res = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004516 } else {
Christoph Lametere498be72005-09-09 13:03:32 -07004517 res = do_tune_cpucache(cachep, limit,
Pekka Enberg83b519e2009-06-10 19:40:04 +03004518 batchcount, shared,
4519 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004520 }
4521 break;
4522 }
4523 }
Christoph Lameter18004c52012-07-06 15:25:12 -05004524 mutex_unlock(&slab_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004525 if (res >= 0)
4526 res = count;
4527 return res;
4528}
Al Viro871751e2006-03-25 03:06:39 -08004529
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04004530static int slabinfo_open(struct inode *inode, struct file *file)
4531{
4532 return seq_open(file, &slabinfo_op);
4533}
4534
4535static const struct file_operations proc_slabinfo_operations = {
4536 .open = slabinfo_open,
4537 .read = seq_read,
4538 .write = slabinfo_write,
4539 .llseek = seq_lseek,
4540 .release = seq_release,
4541};
4542
Al Viro871751e2006-03-25 03:06:39 -08004543#ifdef CONFIG_DEBUG_SLAB_LEAK
4544
4545static void *leaks_start(struct seq_file *m, loff_t *pos)
4546{
Christoph Lameter18004c52012-07-06 15:25:12 -05004547 mutex_lock(&slab_mutex);
4548 return seq_list_start(&slab_caches, *pos);
Al Viro871751e2006-03-25 03:06:39 -08004549}
4550
4551static inline int add_caller(unsigned long *n, unsigned long v)
4552{
4553 unsigned long *p;
4554 int l;
4555 if (!v)
4556 return 1;
4557 l = n[1];
4558 p = n + 2;
4559 while (l) {
4560 int i = l/2;
4561 unsigned long *q = p + 2 * i;
4562 if (*q == v) {
4563 q[1]++;
4564 return 1;
4565 }
4566 if (*q > v) {
4567 l = i;
4568 } else {
4569 p = q + 2;
4570 l -= i + 1;
4571 }
4572 }
4573 if (++n[1] == n[0])
4574 return 0;
4575 memmove(p + 2, p, n[1] * 2 * sizeof(unsigned long) - ((void *)p - (void *)n));
4576 p[0] = v;
4577 p[1] = 1;
4578 return 1;
4579}
4580
4581static void handle_slab(unsigned long *n, struct kmem_cache *c, struct slab *s)
4582{
4583 void *p;
4584 int i;
4585 if (n[0] == n[1])
4586 return;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05004587 for (i = 0, p = s->s_mem; i < c->num; i++, p += c->size) {
Al Viro871751e2006-03-25 03:06:39 -08004588 if (slab_bufctl(s)[i] != BUFCTL_ACTIVE)
4589 continue;
4590 if (!add_caller(n, (unsigned long)*dbg_userword(c, p)))
4591 return;
4592 }
4593}
4594
4595static void show_symbol(struct seq_file *m, unsigned long address)
4596{
4597#ifdef CONFIG_KALLSYMS
Al Viro871751e2006-03-25 03:06:39 -08004598 unsigned long offset, size;
Tejun Heo9281ace2007-07-17 04:03:51 -07004599 char modname[MODULE_NAME_LEN], name[KSYM_NAME_LEN];
Al Viro871751e2006-03-25 03:06:39 -08004600
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004601 if (lookup_symbol_attrs(address, &size, &offset, modname, name) == 0) {
Al Viro871751e2006-03-25 03:06:39 -08004602 seq_printf(m, "%s+%#lx/%#lx", name, offset, size);
Alexey Dobriyana5c43da2007-05-08 00:28:47 -07004603 if (modname[0])
Al Viro871751e2006-03-25 03:06:39 -08004604 seq_printf(m, " [%s]", modname);
4605 return;
4606 }
4607#endif
4608 seq_printf(m, "%p", (void *)address);
4609}
4610
4611static int leaks_show(struct seq_file *m, void *p)
4612{
Thierry Reding0672aa72012-06-22 19:42:49 +02004613 struct kmem_cache *cachep = list_entry(p, struct kmem_cache, list);
Al Viro871751e2006-03-25 03:06:39 -08004614 struct slab *slabp;
4615 struct kmem_list3 *l3;
4616 const char *name;
4617 unsigned long *n = m->private;
4618 int node;
4619 int i;
4620
4621 if (!(cachep->flags & SLAB_STORE_USER))
4622 return 0;
4623 if (!(cachep->flags & SLAB_RED_ZONE))
4624 return 0;
4625
4626 /* OK, we can do it */
4627
4628 n[1] = 0;
4629
4630 for_each_online_node(node) {
4631 l3 = cachep->nodelists[node];
4632 if (!l3)
4633 continue;
4634
4635 check_irq_on();
4636 spin_lock_irq(&l3->list_lock);
4637
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004638 list_for_each_entry(slabp, &l3->slabs_full, list)
Al Viro871751e2006-03-25 03:06:39 -08004639 handle_slab(n, cachep, slabp);
Christoph Hellwig7a7c3812006-06-23 02:03:17 -07004640 list_for_each_entry(slabp, &l3->slabs_partial, list)
Al Viro871751e2006-03-25 03:06:39 -08004641 handle_slab(n, cachep, slabp);
Al Viro871751e2006-03-25 03:06:39 -08004642 spin_unlock_irq(&l3->list_lock);
4643 }
4644 name = cachep->name;
4645 if (n[0] == n[1]) {
4646 /* Increase the buffer size */
Christoph Lameter18004c52012-07-06 15:25:12 -05004647 mutex_unlock(&slab_mutex);
Al Viro871751e2006-03-25 03:06:39 -08004648 m->private = kzalloc(n[0] * 4 * sizeof(unsigned long), GFP_KERNEL);
4649 if (!m->private) {
4650 /* Too bad, we are really out */
4651 m->private = n;
Christoph Lameter18004c52012-07-06 15:25:12 -05004652 mutex_lock(&slab_mutex);
Al Viro871751e2006-03-25 03:06:39 -08004653 return -ENOMEM;
4654 }
4655 *(unsigned long *)m->private = n[0] * 2;
4656 kfree(n);
Christoph Lameter18004c52012-07-06 15:25:12 -05004657 mutex_lock(&slab_mutex);
Al Viro871751e2006-03-25 03:06:39 -08004658 /* Now make sure this entry will be retried */
4659 m->count = m->size;
4660 return 0;
4661 }
4662 for (i = 0; i < n[1]; i++) {
4663 seq_printf(m, "%s: %lu ", name, n[2*i+3]);
4664 show_symbol(m, n[2*i+2]);
4665 seq_putc(m, '\n');
4666 }
Siddha, Suresh Bd2e7b7d2006-09-25 23:31:47 -07004667
Al Viro871751e2006-03-25 03:06:39 -08004668 return 0;
4669}
4670
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004671static const struct seq_operations slabstats_op = {
Al Viro871751e2006-03-25 03:06:39 -08004672 .start = leaks_start,
4673 .next = s_next,
4674 .stop = s_stop,
4675 .show = leaks_show,
4676};
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004677
4678static int slabstats_open(struct inode *inode, struct file *file)
4679{
4680 unsigned long *n = kzalloc(PAGE_SIZE, GFP_KERNEL);
4681 int ret = -ENOMEM;
4682 if (n) {
4683 ret = seq_open(file, &slabstats_op);
4684 if (!ret) {
4685 struct seq_file *m = file->private_data;
4686 *n = PAGE_SIZE / (2 * sizeof(unsigned long));
4687 m->private = n;
4688 n = NULL;
4689 }
4690 kfree(n);
4691 }
4692 return ret;
4693}
4694
4695static const struct file_operations proc_slabstats_operations = {
4696 .open = slabstats_open,
4697 .read = seq_read,
4698 .llseek = seq_lseek,
4699 .release = seq_release_private,
4700};
Al Viro871751e2006-03-25 03:06:39 -08004701#endif
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004702
4703static int __init slab_proc_init(void)
4704{
Vasiliy Kulikovab067e92011-09-27 21:54:53 +04004705 proc_create("slabinfo",S_IWUSR|S_IRUSR,NULL,&proc_slabinfo_operations);
Alexey Dobriyana0ec95a2008-10-06 00:59:10 +04004706#ifdef CONFIG_DEBUG_SLAB_LEAK
4707 proc_create("slab_allocators", 0, NULL, &proc_slabstats_operations);
4708#endif
4709 return 0;
4710}
4711module_init(slab_proc_init);
Linus Torvalds1da177e2005-04-16 15:20:36 -07004712#endif
4713
Manfred Spraul00e145b2005-09-03 15:55:07 -07004714/**
4715 * ksize - get the actual amount of memory allocated for a given object
4716 * @objp: Pointer to the object
4717 *
4718 * kmalloc may internally round up allocations and return more memory
4719 * than requested. ksize() can be used to determine the actual amount of
4720 * memory allocated. The caller may use this additional memory, even though
4721 * a smaller amount of memory was initially specified with the kmalloc call.
4722 * The caller must guarantee that objp points to a valid object previously
4723 * allocated with either kmalloc() or kmem_cache_alloc(). The object
4724 * must not be freed during the duration of the call.
4725 */
Pekka Enbergfd76bab2007-05-06 14:48:40 -07004726size_t ksize(const void *objp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07004727{
Christoph Lameteref8b4522007-10-16 01:24:46 -07004728 BUG_ON(!objp);
4729 if (unlikely(objp == ZERO_SIZE_PTR))
Manfred Spraul00e145b2005-09-03 15:55:07 -07004730 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004731
Christoph Lameter8c138bc2012-06-13 10:24:58 -05004732 return virt_to_cache(objp)->object_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07004733}
Kirill A. Shutemovb1aabec2009-02-10 15:21:44 +02004734EXPORT_SYMBOL(ksize);