mm/slob: use min_t() to compare ARCH_SLAB_MINALIGN
[linux-2.6-block.git] / mm / slab.c
CommitLineData
1da177e4
LT
1/*
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
183ff22b 29 * slabs and you must pass objects with the same initializations to
1da177e4
LT
30 * 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 *
a737b3e2 53 * The c_cpuarray may not be read with enabled local interrupts -
1da177e4
LT
54 * it's changed with a smp_call_function().
55 *
56 * SMP synchronization:
57 * constructors and destructors are called without any locking.
343e0d7a 58 * Several members in struct kmem_cache and struct slab never change, they
1da177e4
LT
59 * 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
18004c5d 71 * The global cache-chain is protected by the mutex 'slab_mutex'.
1da177e4
LT
72 * 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 *
e498be7d
CL
78 * 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.
1da177e4
LT
87 */
88
1da177e4 89#include <linux/slab.h>
97d06609 90#include "slab.h"
1da177e4 91#include <linux/mm.h>
c9cf5528 92#include <linux/poison.h>
1da177e4
LT
93#include <linux/swap.h>
94#include <linux/cache.h>
95#include <linux/interrupt.h>
96#include <linux/init.h>
97#include <linux/compiler.h>
101a5001 98#include <linux/cpuset.h>
a0ec95a8 99#include <linux/proc_fs.h>
1da177e4
LT
100#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>
543537bd 107#include <linux/string.h>
138ae663 108#include <linux/uaccess.h>
e498be7d 109#include <linux/nodemask.h>
d5cff635 110#include <linux/kmemleak.h>
dc85da15 111#include <linux/mempolicy.h>
fc0abb14 112#include <linux/mutex.h>
8a8b6502 113#include <linux/fault-inject.h>
e7eebaf6 114#include <linux/rtmutex.h>
6a2d7a95 115#include <linux/reciprocal_div.h>
3ac7fe5a 116#include <linux/debugobjects.h>
c175eea4 117#include <linux/kmemcheck.h>
8f9f8d9e 118#include <linux/memory.h>
268bb0ce 119#include <linux/prefetch.h>
1da177e4 120
381760ea
MG
121#include <net/sock.h>
122
1da177e4
LT
123#include <asm/cacheflush.h>
124#include <asm/tlbflush.h>
125#include <asm/page.h>
126
4dee6b64
SR
127#include <trace/events/kmem.h>
128
072bb0aa
MG
129#include "internal.h"
130
1da177e4 131/*
50953fe9 132 * DEBUG - 1 for kmem_cache_create() to honour; SLAB_RED_ZONE & SLAB_POISON.
1da177e4
LT
133 * 0 for faster, smaller code (especially in the critical paths).
134 *
135 * STATS - 1 to collect stats for /proc/slabinfo.
136 * 0 for faster, smaller code (especially in the critical paths).
137 *
138 * FORCED_DEBUG - 1 enables SLAB_RED_ZONE and SLAB_POISON (if possible)
139 */
140
141#ifdef CONFIG_DEBUG_SLAB
142#define DEBUG 1
143#define STATS 1
144#define FORCED_DEBUG 1
145#else
146#define DEBUG 0
147#define STATS 0
148#define FORCED_DEBUG 0
149#endif
150
1da177e4
LT
151/* Shouldn't this be in a header file somewhere? */
152#define BYTES_PER_WORD sizeof(void *)
87a927c7 153#define REDZONE_ALIGN max(BYTES_PER_WORD, __alignof__(unsigned long long))
1da177e4 154
1da177e4
LT
155#ifndef ARCH_KMALLOC_FLAGS
156#define ARCH_KMALLOC_FLAGS SLAB_HWCACHE_ALIGN
157#endif
158
072bb0aa
MG
159/*
160 * true if a page was allocated from pfmemalloc reserves for network-based
161 * swap
162 */
163static bool pfmemalloc_active __read_mostly;
164
1da177e4
LT
165/*
166 * kmem_bufctl_t:
167 *
168 * Bufctl's are used for linking objs within a slab
169 * linked offsets.
170 *
171 * This implementation relies on "struct page" for locating the cache &
172 * slab an object belongs to.
173 * This allows the bufctl structure to be small (one int), but limits
174 * the number of objects a slab (not a cache) can contain when off-slab
175 * bufctls are used. The limit is the size of the largest general cache
176 * that does not use off-slab slabs.
177 * For 32bit archs with 4 kB pages, is this 56.
178 * This is not serious, as it is only for large objects, when it is unwise
179 * to have too many per slab.
180 * Note: This limit can be raised by introducing a general cache whose size
181 * is less than 512 (PAGE_SIZE<<3), but greater than 256.
182 */
183
fa5b08d5 184typedef unsigned int kmem_bufctl_t;
1da177e4
LT
185#define BUFCTL_END (((kmem_bufctl_t)(~0U))-0)
186#define BUFCTL_FREE (((kmem_bufctl_t)(~0U))-1)
871751e2
AV
187#define BUFCTL_ACTIVE (((kmem_bufctl_t)(~0U))-2)
188#define SLAB_LIMIT (((kmem_bufctl_t)(~0U))-3)
1da177e4 189
1da177e4
LT
190/*
191 * struct slab_rcu
192 *
193 * slab_destroy on a SLAB_DESTROY_BY_RCU cache uses this structure to
194 * arrange for kmem_freepages to be called via RCU. This is useful if
195 * we need to approach a kernel structure obliquely, from its address
196 * obtained without the usual locking. We can lock the structure to
197 * stabilize it and check it's still at the given address, only if we
198 * can be sure that the memory has not been meanwhile reused for some
199 * other kind of object (which our subsystem's lock might corrupt).
200 *
201 * rcu_read_lock before reading the address, then rcu_read_unlock after
202 * taking the spinlock within the structure expected at that address.
1da177e4
LT
203 */
204struct slab_rcu {
b28a02de 205 struct rcu_head head;
343e0d7a 206 struct kmem_cache *cachep;
b28a02de 207 void *addr;
1da177e4
LT
208};
209
5bfe53a7
LJ
210/*
211 * struct slab
212 *
213 * Manages the objs in a slab. Placed either at the beginning of mem allocated
214 * for a slab, or allocated from an general cache.
215 * Slabs are chained into three list: fully used, partial, fully free slabs.
216 */
217struct slab {
218 union {
219 struct {
220 struct list_head list;
221 unsigned long colouroff;
222 void *s_mem; /* including colour offset */
223 unsigned int inuse; /* num of objs active in slab */
224 kmem_bufctl_t free;
225 unsigned short nodeid;
226 };
227 struct slab_rcu __slab_cover_slab_rcu;
228 };
229};
230
1da177e4
LT
231/*
232 * struct array_cache
233 *
1da177e4
LT
234 * Purpose:
235 * - LIFO ordering, to hand out cache-warm objects from _alloc
236 * - reduce the number of linked list operations
237 * - reduce spinlock operations
238 *
239 * The limit is stored in the per-cpu structure to reduce the data cache
240 * footprint.
241 *
242 */
243struct array_cache {
244 unsigned int avail;
245 unsigned int limit;
246 unsigned int batchcount;
247 unsigned int touched;
e498be7d 248 spinlock_t lock;
bda5b655 249 void *entry[]; /*
a737b3e2
AM
250 * Must have this definition in here for the proper
251 * alignment of array_cache. Also simplifies accessing
252 * the entries.
072bb0aa
MG
253 *
254 * Entries should not be directly dereferenced as
255 * entries belonging to slabs marked pfmemalloc will
256 * have the lower bits set SLAB_OBJ_PFMEMALLOC
a737b3e2 257 */
1da177e4
LT
258};
259
072bb0aa
MG
260#define SLAB_OBJ_PFMEMALLOC 1
261static inline bool is_obj_pfmemalloc(void *objp)
262{
263 return (unsigned long)objp & SLAB_OBJ_PFMEMALLOC;
264}
265
266static inline void set_obj_pfmemalloc(void **objp)
267{
268 *objp = (void *)((unsigned long)*objp | SLAB_OBJ_PFMEMALLOC);
269 return;
270}
271
272static inline void clear_obj_pfmemalloc(void **objp)
273{
274 *objp = (void *)((unsigned long)*objp & ~SLAB_OBJ_PFMEMALLOC);
275}
276
a737b3e2
AM
277/*
278 * bootstrap: The caches do not work without cpuarrays anymore, but the
279 * cpuarrays are allocated from the generic caches...
1da177e4
LT
280 */
281#define BOOT_CPUCACHE_ENTRIES 1
282struct arraycache_init {
283 struct array_cache cache;
b28a02de 284 void *entries[BOOT_CPUCACHE_ENTRIES];
1da177e4
LT
285};
286
287/*
e498be7d 288 * The slab lists for all objects.
1da177e4
LT
289 */
290struct kmem_list3 {
b28a02de
PE
291 struct list_head slabs_partial; /* partial list first, better asm code */
292 struct list_head slabs_full;
293 struct list_head slabs_free;
294 unsigned long free_objects;
b28a02de 295 unsigned int free_limit;
2e1217cf 296 unsigned int colour_next; /* Per-node cache coloring */
b28a02de
PE
297 spinlock_t list_lock;
298 struct array_cache *shared; /* shared per node */
299 struct array_cache **alien; /* on other nodes */
35386e3b
CL
300 unsigned long next_reap; /* updated without locking */
301 int free_touched; /* updated without locking */
1da177e4
LT
302};
303
e498be7d
CL
304/*
305 * Need this for bootstrapping a per node allocator.
306 */
556a169d 307#define NUM_INIT_LISTS (3 * MAX_NUMNODES)
68a1b195 308static struct kmem_list3 __initdata initkmem_list3[NUM_INIT_LISTS];
e498be7d 309#define CACHE_CACHE 0
556a169d
PE
310#define SIZE_AC MAX_NUMNODES
311#define SIZE_L3 (2 * MAX_NUMNODES)
e498be7d 312
ed11d9eb
CL
313static int drain_freelist(struct kmem_cache *cache,
314 struct kmem_list3 *l3, int tofree);
315static void free_block(struct kmem_cache *cachep, void **objpp, int len,
316 int node);
83b519e8 317static int enable_cpucache(struct kmem_cache *cachep, gfp_t gfp);
65f27f38 318static void cache_reap(struct work_struct *unused);
ed11d9eb 319
e498be7d 320/*
a737b3e2
AM
321 * This function must be completely optimized away if a constant is passed to
322 * it. Mostly the same as what is in linux/slab.h except it returns an index.
e498be7d 323 */
7243cc05 324static __always_inline int index_of(const size_t size)
e498be7d 325{
5ec8a847
SR
326 extern void __bad_size(void);
327
e498be7d
CL
328 if (__builtin_constant_p(size)) {
329 int i = 0;
330
331#define CACHE(x) \
332 if (size <=x) \
333 return i; \
334 else \
335 i++;
1c61fc40 336#include <linux/kmalloc_sizes.h>
e498be7d 337#undef CACHE
5ec8a847 338 __bad_size();
7243cc05 339 } else
5ec8a847 340 __bad_size();
e498be7d
CL
341 return 0;
342}
343
e0a42726
IM
344static int slab_early_init = 1;
345
e498be7d
CL
346#define INDEX_AC index_of(sizeof(struct arraycache_init))
347#define INDEX_L3 index_of(sizeof(struct kmem_list3))
1da177e4 348
5295a74c 349static void kmem_list3_init(struct kmem_list3 *parent)
e498be7d
CL
350{
351 INIT_LIST_HEAD(&parent->slabs_full);
352 INIT_LIST_HEAD(&parent->slabs_partial);
353 INIT_LIST_HEAD(&parent->slabs_free);
354 parent->shared = NULL;
355 parent->alien = NULL;
2e1217cf 356 parent->colour_next = 0;
e498be7d
CL
357 spin_lock_init(&parent->list_lock);
358 parent->free_objects = 0;
359 parent->free_touched = 0;
360}
361
a737b3e2
AM
362#define MAKE_LIST(cachep, listp, slab, nodeid) \
363 do { \
364 INIT_LIST_HEAD(listp); \
365 list_splice(&(cachep->nodelists[nodeid]->slab), listp); \
e498be7d
CL
366 } while (0)
367
a737b3e2
AM
368#define MAKE_ALL_LISTS(cachep, ptr, nodeid) \
369 do { \
e498be7d
CL
370 MAKE_LIST((cachep), (&(ptr)->slabs_full), slabs_full, nodeid); \
371 MAKE_LIST((cachep), (&(ptr)->slabs_partial), slabs_partial, nodeid); \
372 MAKE_LIST((cachep), (&(ptr)->slabs_free), slabs_free, nodeid); \
373 } while (0)
1da177e4 374
1da177e4
LT
375#define CFLGS_OFF_SLAB (0x80000000UL)
376#define OFF_SLAB(x) ((x)->flags & CFLGS_OFF_SLAB)
377
378#define BATCHREFILL_LIMIT 16
a737b3e2
AM
379/*
380 * Optimization question: fewer reaps means less probability for unnessary
381 * cpucache drain/refill cycles.
1da177e4 382 *
dc6f3f27 383 * OTOH the cpuarrays can contain lots of objects,
1da177e4
LT
384 * which could lock up otherwise freeable slabs.
385 */
386#define REAPTIMEOUT_CPUC (2*HZ)
387#define REAPTIMEOUT_LIST3 (4*HZ)
388
389#if STATS
390#define STATS_INC_ACTIVE(x) ((x)->num_active++)
391#define STATS_DEC_ACTIVE(x) ((x)->num_active--)
392#define STATS_INC_ALLOCED(x) ((x)->num_allocations++)
393#define STATS_INC_GROWN(x) ((x)->grown++)
ed11d9eb 394#define STATS_ADD_REAPED(x,y) ((x)->reaped += (y))
a737b3e2
AM
395#define STATS_SET_HIGH(x) \
396 do { \
397 if ((x)->num_active > (x)->high_mark) \
398 (x)->high_mark = (x)->num_active; \
399 } while (0)
1da177e4
LT
400#define STATS_INC_ERR(x) ((x)->errors++)
401#define STATS_INC_NODEALLOCS(x) ((x)->node_allocs++)
e498be7d 402#define STATS_INC_NODEFREES(x) ((x)->node_frees++)
fb7faf33 403#define STATS_INC_ACOVERFLOW(x) ((x)->node_overflow++)
a737b3e2
AM
404#define STATS_SET_FREEABLE(x, i) \
405 do { \
406 if ((x)->max_freeable < i) \
407 (x)->max_freeable = i; \
408 } while (0)
1da177e4
LT
409#define STATS_INC_ALLOCHIT(x) atomic_inc(&(x)->allochit)
410#define STATS_INC_ALLOCMISS(x) atomic_inc(&(x)->allocmiss)
411#define STATS_INC_FREEHIT(x) atomic_inc(&(x)->freehit)
412#define STATS_INC_FREEMISS(x) atomic_inc(&(x)->freemiss)
413#else
414#define STATS_INC_ACTIVE(x) do { } while (0)
415#define STATS_DEC_ACTIVE(x) do { } while (0)
416#define STATS_INC_ALLOCED(x) do { } while (0)
417#define STATS_INC_GROWN(x) do { } while (0)
4e60c86b 418#define STATS_ADD_REAPED(x,y) do { (void)(y); } while (0)
1da177e4
LT
419#define STATS_SET_HIGH(x) do { } while (0)
420#define STATS_INC_ERR(x) do { } while (0)
421#define STATS_INC_NODEALLOCS(x) do { } while (0)
e498be7d 422#define STATS_INC_NODEFREES(x) do { } while (0)
fb7faf33 423#define STATS_INC_ACOVERFLOW(x) do { } while (0)
a737b3e2 424#define STATS_SET_FREEABLE(x, i) do { } while (0)
1da177e4
LT
425#define STATS_INC_ALLOCHIT(x) do { } while (0)
426#define STATS_INC_ALLOCMISS(x) do { } while (0)
427#define STATS_INC_FREEHIT(x) do { } while (0)
428#define STATS_INC_FREEMISS(x) do { } while (0)
429#endif
430
431#if DEBUG
1da177e4 432
a737b3e2
AM
433/*
434 * memory layout of objects:
1da177e4 435 * 0 : objp
3dafccf2 436 * 0 .. cachep->obj_offset - BYTES_PER_WORD - 1: padding. This ensures that
1da177e4
LT
437 * the end of an object is aligned with the end of the real
438 * allocation. Catches writes behind the end of the allocation.
3dafccf2 439 * cachep->obj_offset - BYTES_PER_WORD .. cachep->obj_offset - 1:
1da177e4 440 * redzone word.
3dafccf2 441 * cachep->obj_offset: The real object.
3b0efdfa
CL
442 * cachep->size - 2* BYTES_PER_WORD: redzone word [BYTES_PER_WORD long]
443 * cachep->size - 1* BYTES_PER_WORD: last caller address
a737b3e2 444 * [BYTES_PER_WORD long]
1da177e4 445 */
343e0d7a 446static int obj_offset(struct kmem_cache *cachep)
1da177e4 447{
3dafccf2 448 return cachep->obj_offset;
1da177e4
LT
449}
450
b46b8f19 451static unsigned long long *dbg_redzone1(struct kmem_cache *cachep, void *objp)
1da177e4
LT
452{
453 BUG_ON(!(cachep->flags & SLAB_RED_ZONE));
b46b8f19
DW
454 return (unsigned long long*) (objp + obj_offset(cachep) -
455 sizeof(unsigned long long));
1da177e4
LT
456}
457
b46b8f19 458static unsigned long long *dbg_redzone2(struct kmem_cache *cachep, void *objp)
1da177e4
LT
459{
460 BUG_ON(!(cachep->flags & SLAB_RED_ZONE));
461 if (cachep->flags & SLAB_STORE_USER)
3b0efdfa 462 return (unsigned long long *)(objp + cachep->size -
b46b8f19 463 sizeof(unsigned long long) -
87a927c7 464 REDZONE_ALIGN);
3b0efdfa 465 return (unsigned long long *) (objp + cachep->size -
b46b8f19 466 sizeof(unsigned long long));
1da177e4
LT
467}
468
343e0d7a 469static void **dbg_userword(struct kmem_cache *cachep, void *objp)
1da177e4
LT
470{
471 BUG_ON(!(cachep->flags & SLAB_STORE_USER));
3b0efdfa 472 return (void **)(objp + cachep->size - BYTES_PER_WORD);
1da177e4
LT
473}
474
475#else
476
3dafccf2 477#define obj_offset(x) 0
b46b8f19
DW
478#define dbg_redzone1(cachep, objp) ({BUG(); (unsigned long long *)NULL;})
479#define dbg_redzone2(cachep, objp) ({BUG(); (unsigned long long *)NULL;})
1da177e4
LT
480#define dbg_userword(cachep, objp) ({BUG(); (void **)NULL;})
481
482#endif
483
1da177e4 484/*
3df1cccd
DR
485 * Do not go above this order unless 0 objects fit into the slab or
486 * overridden on the command line.
1da177e4 487 */
543585cc
DR
488#define SLAB_MAX_ORDER_HI 1
489#define SLAB_MAX_ORDER_LO 0
490static int slab_max_order = SLAB_MAX_ORDER_LO;
3df1cccd 491static bool slab_max_order_set __initdata;
1da177e4 492
6ed5eb22
PE
493static inline struct kmem_cache *virt_to_cache(const void *obj)
494{
b49af68f 495 struct page *page = virt_to_head_page(obj);
35026088 496 return page->slab_cache;
6ed5eb22
PE
497}
498
499static inline struct slab *virt_to_slab(const void *obj)
500{
b49af68f 501 struct page *page = virt_to_head_page(obj);
35026088
CL
502
503 VM_BUG_ON(!PageSlab(page));
504 return page->slab_page;
6ed5eb22
PE
505}
506
8fea4e96
PE
507static inline void *index_to_obj(struct kmem_cache *cache, struct slab *slab,
508 unsigned int idx)
509{
3b0efdfa 510 return slab->s_mem + cache->size * idx;
8fea4e96
PE
511}
512
6a2d7a95 513/*
3b0efdfa
CL
514 * We want to avoid an expensive divide : (offset / cache->size)
515 * Using the fact that size is a constant for a particular cache,
516 * we can replace (offset / cache->size) by
6a2d7a95
ED
517 * reciprocal_divide(offset, cache->reciprocal_buffer_size)
518 */
519static inline unsigned int obj_to_index(const struct kmem_cache *cache,
520 const struct slab *slab, void *obj)
8fea4e96 521{
6a2d7a95
ED
522 u32 offset = (obj - slab->s_mem);
523 return reciprocal_divide(offset, cache->reciprocal_buffer_size);
8fea4e96
PE
524}
525
a737b3e2
AM
526/*
527 * These are the default caches for kmalloc. Custom caches can have other sizes.
528 */
1da177e4
LT
529struct cache_sizes malloc_sizes[] = {
530#define CACHE(x) { .cs_size = (x) },
531#include <linux/kmalloc_sizes.h>
532 CACHE(ULONG_MAX)
533#undef CACHE
534};
535EXPORT_SYMBOL(malloc_sizes);
536
537/* Must match cache_sizes above. Out of line to keep cache footprint low. */
538struct cache_names {
539 char *name;
540 char *name_dma;
541};
542
543static struct cache_names __initdata cache_names[] = {
544#define CACHE(x) { .name = "size-" #x, .name_dma = "size-" #x "(DMA)" },
545#include <linux/kmalloc_sizes.h>
b28a02de 546 {NULL,}
1da177e4
LT
547#undef CACHE
548};
549
550static struct arraycache_init initarray_cache __initdata =
b28a02de 551 { {0, BOOT_CPUCACHE_ENTRIES, 1, 0} };
1da177e4 552static struct arraycache_init initarray_generic =
b28a02de 553 { {0, BOOT_CPUCACHE_ENTRIES, 1, 0} };
1da177e4
LT
554
555/* internal cache of cache description objs */
9b030cb8
CL
556static struct kmem_list3 *kmem_cache_nodelists[MAX_NUMNODES];
557static struct kmem_cache kmem_cache_boot = {
558 .nodelists = kmem_cache_nodelists,
b28a02de
PE
559 .batchcount = 1,
560 .limit = BOOT_CPUCACHE_ENTRIES,
561 .shared = 1,
3b0efdfa 562 .size = sizeof(struct kmem_cache),
b28a02de 563 .name = "kmem_cache",
1da177e4
LT
564};
565
056c6241
RT
566#define BAD_ALIEN_MAGIC 0x01020304ul
567
f1aaee53
AV
568#ifdef CONFIG_LOCKDEP
569
570/*
571 * Slab sometimes uses the kmalloc slabs to store the slab headers
572 * for other slabs "off slab".
573 * The locking for this is tricky in that it nests within the locks
574 * of all other slabs in a few places; to deal with this special
575 * locking we put on-slab caches into a separate lock-class.
056c6241
RT
576 *
577 * We set lock class for alien array caches which are up during init.
578 * The lock annotation will be lost if all cpus of a node goes down and
579 * then comes back up during hotplug
f1aaee53 580 */
056c6241
RT
581static struct lock_class_key on_slab_l3_key;
582static struct lock_class_key on_slab_alc_key;
583
83835b3d
PZ
584static struct lock_class_key debugobj_l3_key;
585static struct lock_class_key debugobj_alc_key;
586
587static void slab_set_lock_classes(struct kmem_cache *cachep,
588 struct lock_class_key *l3_key, struct lock_class_key *alc_key,
589 int q)
590{
591 struct array_cache **alc;
592 struct kmem_list3 *l3;
593 int r;
594
595 l3 = cachep->nodelists[q];
596 if (!l3)
597 return;
598
599 lockdep_set_class(&l3->list_lock, l3_key);
600 alc = l3->alien;
601 /*
602 * FIXME: This check for BAD_ALIEN_MAGIC
603 * should go away when common slab code is taught to
604 * work even without alien caches.
605 * Currently, non NUMA code returns BAD_ALIEN_MAGIC
606 * for alloc_alien_cache,
607 */
608 if (!alc || (unsigned long)alc == BAD_ALIEN_MAGIC)
609 return;
610 for_each_node(r) {
611 if (alc[r])
612 lockdep_set_class(&alc[r]->lock, alc_key);
613 }
614}
615
616static void slab_set_debugobj_lock_classes_node(struct kmem_cache *cachep, int node)
617{
618 slab_set_lock_classes(cachep, &debugobj_l3_key, &debugobj_alc_key, node);
619}
620
621static void slab_set_debugobj_lock_classes(struct kmem_cache *cachep)
622{
623 int node;
624
625 for_each_online_node(node)
626 slab_set_debugobj_lock_classes_node(cachep, node);
627}
628
ce79ddc8 629static void init_node_lock_keys(int q)
f1aaee53 630{
056c6241
RT
631 struct cache_sizes *s = malloc_sizes;
632
97d06609 633 if (slab_state < UP)
ce79ddc8
PE
634 return;
635
636 for (s = malloc_sizes; s->cs_size != ULONG_MAX; s++) {
ce79ddc8 637 struct kmem_list3 *l3;
ce79ddc8
PE
638
639 l3 = s->cs_cachep->nodelists[q];
640 if (!l3 || OFF_SLAB(s->cs_cachep))
00afa758 641 continue;
83835b3d
PZ
642
643 slab_set_lock_classes(s->cs_cachep, &on_slab_l3_key,
644 &on_slab_alc_key, q);
f1aaee53
AV
645 }
646}
ce79ddc8
PE
647
648static inline void init_lock_keys(void)
649{
650 int node;
651
652 for_each_node(node)
653 init_node_lock_keys(node);
654}
f1aaee53 655#else
ce79ddc8
PE
656static void init_node_lock_keys(int q)
657{
658}
659
056c6241 660static inline void init_lock_keys(void)
f1aaee53
AV
661{
662}
83835b3d
PZ
663
664static void slab_set_debugobj_lock_classes_node(struct kmem_cache *cachep, int node)
665{
666}
667
668static void slab_set_debugobj_lock_classes(struct kmem_cache *cachep)
669{
670}
f1aaee53
AV
671#endif
672
1871e52c 673static DEFINE_PER_CPU(struct delayed_work, slab_reap_work);
1da177e4 674
343e0d7a 675static inline struct array_cache *cpu_cache_get(struct kmem_cache *cachep)
1da177e4
LT
676{
677 return cachep->array[smp_processor_id()];
678}
679
a737b3e2
AM
680static inline struct kmem_cache *__find_general_cachep(size_t size,
681 gfp_t gfpflags)
1da177e4
LT
682{
683 struct cache_sizes *csizep = malloc_sizes;
684
685#if DEBUG
686 /* This happens if someone tries to call
b28a02de
PE
687 * kmem_cache_create(), or __kmalloc(), before
688 * the generic caches are initialized.
689 */
c7e43c78 690 BUG_ON(malloc_sizes[INDEX_AC].cs_cachep == NULL);
1da177e4 691#endif
6cb8f913
CL
692 if (!size)
693 return ZERO_SIZE_PTR;
694
1da177e4
LT
695 while (size > csizep->cs_size)
696 csizep++;
697
698 /*
0abf40c1 699 * Really subtle: The last entry with cs->cs_size==ULONG_MAX
1da177e4
LT
700 * has cs_{dma,}cachep==NULL. Thus no special case
701 * for large kmalloc calls required.
702 */
4b51d669 703#ifdef CONFIG_ZONE_DMA
1da177e4
LT
704 if (unlikely(gfpflags & GFP_DMA))
705 return csizep->cs_dmacachep;
4b51d669 706#endif
1da177e4
LT
707 return csizep->cs_cachep;
708}
709
b221385b 710static struct kmem_cache *kmem_find_general_cachep(size_t size, gfp_t gfpflags)
97e2bde4
MS
711{
712 return __find_general_cachep(size, gfpflags);
713}
97e2bde4 714
fbaccacf 715static size_t slab_mgmt_size(size_t nr_objs, size_t align)
1da177e4 716{
fbaccacf
SR
717 return ALIGN(sizeof(struct slab)+nr_objs*sizeof(kmem_bufctl_t), align);
718}
1da177e4 719
a737b3e2
AM
720/*
721 * Calculate the number of objects and left-over bytes for a given buffer size.
722 */
fbaccacf
SR
723static void cache_estimate(unsigned long gfporder, size_t buffer_size,
724 size_t align, int flags, size_t *left_over,
725 unsigned int *num)
726{
727 int nr_objs;
728 size_t mgmt_size;
729 size_t slab_size = PAGE_SIZE << gfporder;
1da177e4 730
fbaccacf
SR
731 /*
732 * The slab management structure can be either off the slab or
733 * on it. For the latter case, the memory allocated for a
734 * slab is used for:
735 *
736 * - The struct slab
737 * - One kmem_bufctl_t for each object
738 * - Padding to respect alignment of @align
739 * - @buffer_size bytes for each object
740 *
741 * If the slab management structure is off the slab, then the
742 * alignment will already be calculated into the size. Because
743 * the slabs are all pages aligned, the objects will be at the
744 * correct alignment when allocated.
745 */
746 if (flags & CFLGS_OFF_SLAB) {
747 mgmt_size = 0;
748 nr_objs = slab_size / buffer_size;
749
750 if (nr_objs > SLAB_LIMIT)
751 nr_objs = SLAB_LIMIT;
752 } else {
753 /*
754 * Ignore padding for the initial guess. The padding
755 * is at most @align-1 bytes, and @buffer_size is at
756 * least @align. In the worst case, this result will
757 * be one greater than the number of objects that fit
758 * into the memory allocation when taking the padding
759 * into account.
760 */
761 nr_objs = (slab_size - sizeof(struct slab)) /
762 (buffer_size + sizeof(kmem_bufctl_t));
763
764 /*
765 * This calculated number will be either the right
766 * amount, or one greater than what we want.
767 */
768 if (slab_mgmt_size(nr_objs, align) + nr_objs*buffer_size
769 > slab_size)
770 nr_objs--;
771
772 if (nr_objs > SLAB_LIMIT)
773 nr_objs = SLAB_LIMIT;
774
775 mgmt_size = slab_mgmt_size(nr_objs, align);
776 }
777 *num = nr_objs;
778 *left_over = slab_size - nr_objs*buffer_size - mgmt_size;
1da177e4
LT
779}
780
f28510d3 781#if DEBUG
d40cee24 782#define slab_error(cachep, msg) __slab_error(__func__, cachep, msg)
1da177e4 783
a737b3e2
AM
784static void __slab_error(const char *function, struct kmem_cache *cachep,
785 char *msg)
1da177e4
LT
786{
787 printk(KERN_ERR "slab error in %s(): cache `%s': %s\n",
b28a02de 788 function, cachep->name, msg);
1da177e4 789 dump_stack();
645df230 790 add_taint(TAINT_BAD_PAGE);
1da177e4 791}
f28510d3 792#endif
1da177e4 793
3395ee05
PM
794/*
795 * By default on NUMA we use alien caches to stage the freeing of
796 * objects allocated from other nodes. This causes massive memory
797 * inefficiencies when using fake NUMA setup to split memory into a
798 * large number of small nodes, so it can be disabled on the command
799 * line
800 */
801
802static int use_alien_caches __read_mostly = 1;
803static int __init noaliencache_setup(char *s)
804{
805 use_alien_caches = 0;
806 return 1;
807}
808__setup("noaliencache", noaliencache_setup);
809
3df1cccd
DR
810static int __init slab_max_order_setup(char *str)
811{
812 get_option(&str, &slab_max_order);
813 slab_max_order = slab_max_order < 0 ? 0 :
814 min(slab_max_order, MAX_ORDER - 1);
815 slab_max_order_set = true;
816
817 return 1;
818}
819__setup("slab_max_order=", slab_max_order_setup);
820
8fce4d8e
CL
821#ifdef CONFIG_NUMA
822/*
823 * Special reaping functions for NUMA systems called from cache_reap().
824 * These take care of doing round robin flushing of alien caches (containing
825 * objects freed on different nodes from which they were allocated) and the
826 * flushing of remote pcps by calling drain_node_pages.
827 */
1871e52c 828static DEFINE_PER_CPU(unsigned long, slab_reap_node);
8fce4d8e
CL
829
830static void init_reap_node(int cpu)
831{
832 int node;
833
7d6e6d09 834 node = next_node(cpu_to_mem(cpu), node_online_map);
8fce4d8e 835 if (node == MAX_NUMNODES)
442295c9 836 node = first_node(node_online_map);
8fce4d8e 837
1871e52c 838 per_cpu(slab_reap_node, cpu) = node;
8fce4d8e
CL
839}
840
841static void next_reap_node(void)
842{
909ea964 843 int node = __this_cpu_read(slab_reap_node);
8fce4d8e 844
8fce4d8e
CL
845 node = next_node(node, node_online_map);
846 if (unlikely(node >= MAX_NUMNODES))
847 node = first_node(node_online_map);
909ea964 848 __this_cpu_write(slab_reap_node, node);
8fce4d8e
CL
849}
850
851#else
852#define init_reap_node(cpu) do { } while (0)
853#define next_reap_node(void) do { } while (0)
854#endif
855
1da177e4
LT
856/*
857 * Initiate the reap timer running on the target CPU. We run at around 1 to 2Hz
858 * via the workqueue/eventd.
859 * Add the CPU number into the expiration time to minimize the possibility of
860 * the CPUs getting into lockstep and contending for the global cache chain
861 * lock.
862 */
897e679b 863static void __cpuinit start_cpu_timer(int cpu)
1da177e4 864{
1871e52c 865 struct delayed_work *reap_work = &per_cpu(slab_reap_work, cpu);
1da177e4
LT
866
867 /*
868 * When this gets called from do_initcalls via cpucache_init(),
869 * init_workqueues() has already run, so keventd will be setup
870 * at that time.
871 */
52bad64d 872 if (keventd_up() && reap_work->work.func == NULL) {
8fce4d8e 873 init_reap_node(cpu);
203b42f7 874 INIT_DEFERRABLE_WORK(reap_work, cache_reap);
2b284214
AV
875 schedule_delayed_work_on(cpu, reap_work,
876 __round_jiffies_relative(HZ, cpu));
1da177e4
LT
877 }
878}
879
e498be7d 880static struct array_cache *alloc_arraycache(int node, int entries,
83b519e8 881 int batchcount, gfp_t gfp)
1da177e4 882{
b28a02de 883 int memsize = sizeof(void *) * entries + sizeof(struct array_cache);
1da177e4
LT
884 struct array_cache *nc = NULL;
885
83b519e8 886 nc = kmalloc_node(memsize, gfp, node);
d5cff635
CM
887 /*
888 * The array_cache structures contain pointers to free object.
25985edc 889 * However, when such objects are allocated or transferred to another
d5cff635
CM
890 * cache the pointers are not cleared and they could be counted as
891 * valid references during a kmemleak scan. Therefore, kmemleak must
892 * not scan such objects.
893 */
894 kmemleak_no_scan(nc);
1da177e4
LT
895 if (nc) {
896 nc->avail = 0;
897 nc->limit = entries;
898 nc->batchcount = batchcount;
899 nc->touched = 0;
e498be7d 900 spin_lock_init(&nc->lock);
1da177e4
LT
901 }
902 return nc;
903}
904
072bb0aa
MG
905static inline bool is_slab_pfmemalloc(struct slab *slabp)
906{
907 struct page *page = virt_to_page(slabp->s_mem);
908
909 return PageSlabPfmemalloc(page);
910}
911
912/* Clears pfmemalloc_active if no slabs have pfmalloc set */
913static void recheck_pfmemalloc_active(struct kmem_cache *cachep,
914 struct array_cache *ac)
915{
916 struct kmem_list3 *l3 = cachep->nodelists[numa_mem_id()];
917 struct slab *slabp;
918 unsigned long flags;
919
920 if (!pfmemalloc_active)
921 return;
922
923 spin_lock_irqsave(&l3->list_lock, flags);
924 list_for_each_entry(slabp, &l3->slabs_full, list)
925 if (is_slab_pfmemalloc(slabp))
926 goto out;
927
928 list_for_each_entry(slabp, &l3->slabs_partial, list)
929 if (is_slab_pfmemalloc(slabp))
930 goto out;
931
932 list_for_each_entry(slabp, &l3->slabs_free, list)
933 if (is_slab_pfmemalloc(slabp))
934 goto out;
935
936 pfmemalloc_active = false;
937out:
938 spin_unlock_irqrestore(&l3->list_lock, flags);
939}
940
381760ea 941static void *__ac_get_obj(struct kmem_cache *cachep, struct array_cache *ac,
072bb0aa
MG
942 gfp_t flags, bool force_refill)
943{
944 int i;
945 void *objp = ac->entry[--ac->avail];
946
947 /* Ensure the caller is allowed to use objects from PFMEMALLOC slab */
948 if (unlikely(is_obj_pfmemalloc(objp))) {
949 struct kmem_list3 *l3;
950
951 if (gfp_pfmemalloc_allowed(flags)) {
952 clear_obj_pfmemalloc(&objp);
953 return objp;
954 }
955
956 /* The caller cannot use PFMEMALLOC objects, find another one */
d014dc2e 957 for (i = 0; i < ac->avail; i++) {
072bb0aa
MG
958 /* If a !PFMEMALLOC object is found, swap them */
959 if (!is_obj_pfmemalloc(ac->entry[i])) {
960 objp = ac->entry[i];
961 ac->entry[i] = ac->entry[ac->avail];
962 ac->entry[ac->avail] = objp;
963 return objp;
964 }
965 }
966
967 /*
968 * If there are empty slabs on the slabs_free list and we are
969 * being forced to refill the cache, mark this one !pfmemalloc.
970 */
971 l3 = cachep->nodelists[numa_mem_id()];
972 if (!list_empty(&l3->slabs_free) && force_refill) {
973 struct slab *slabp = virt_to_slab(objp);
30c29bea 974 ClearPageSlabPfmemalloc(virt_to_head_page(slabp->s_mem));
072bb0aa
MG
975 clear_obj_pfmemalloc(&objp);
976 recheck_pfmemalloc_active(cachep, ac);
977 return objp;
978 }
979
980 /* No !PFMEMALLOC objects available */
981 ac->avail++;
982 objp = NULL;
983 }
984
985 return objp;
986}
987
381760ea
MG
988static inline void *ac_get_obj(struct kmem_cache *cachep,
989 struct array_cache *ac, gfp_t flags, bool force_refill)
990{
991 void *objp;
992
993 if (unlikely(sk_memalloc_socks()))
994 objp = __ac_get_obj(cachep, ac, flags, force_refill);
995 else
996 objp = ac->entry[--ac->avail];
997
998 return objp;
999}
1000
1001static void *__ac_put_obj(struct kmem_cache *cachep, struct array_cache *ac,
072bb0aa
MG
1002 void *objp)
1003{
1004 if (unlikely(pfmemalloc_active)) {
1005 /* Some pfmemalloc slabs exist, check if this is one */
30c29bea 1006 struct page *page = virt_to_head_page(objp);
072bb0aa
MG
1007 if (PageSlabPfmemalloc(page))
1008 set_obj_pfmemalloc(&objp);
1009 }
1010
381760ea
MG
1011 return objp;
1012}
1013
1014static inline void ac_put_obj(struct kmem_cache *cachep, struct array_cache *ac,
1015 void *objp)
1016{
1017 if (unlikely(sk_memalloc_socks()))
1018 objp = __ac_put_obj(cachep, ac, objp);
1019
072bb0aa
MG
1020 ac->entry[ac->avail++] = objp;
1021}
1022
3ded175a
CL
1023/*
1024 * Transfer objects in one arraycache to another.
1025 * Locking must be handled by the caller.
1026 *
1027 * Return the number of entries transferred.
1028 */
1029static int transfer_objects(struct array_cache *to,
1030 struct array_cache *from, unsigned int max)
1031{
1032 /* Figure out how many entries to transfer */
732eacc0 1033 int nr = min3(from->avail, max, to->limit - to->avail);
3ded175a
CL
1034
1035 if (!nr)
1036 return 0;
1037
1038 memcpy(to->entry + to->avail, from->entry + from->avail -nr,
1039 sizeof(void *) *nr);
1040
1041 from->avail -= nr;
1042 to->avail += nr;
3ded175a
CL
1043 return nr;
1044}
1045
765c4507
CL
1046#ifndef CONFIG_NUMA
1047
1048#define drain_alien_cache(cachep, alien) do { } while (0)
1049#define reap_alien(cachep, l3) do { } while (0)
1050
83b519e8 1051static inline struct array_cache **alloc_alien_cache(int node, int limit, gfp_t gfp)
765c4507
CL
1052{
1053 return (struct array_cache **)BAD_ALIEN_MAGIC;
1054}
1055
1056static inline void free_alien_cache(struct array_cache **ac_ptr)
1057{
1058}
1059
1060static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
1061{
1062 return 0;
1063}
1064
1065static inline void *alternate_node_alloc(struct kmem_cache *cachep,
1066 gfp_t flags)
1067{
1068 return NULL;
1069}
1070
8b98c169 1071static inline void *____cache_alloc_node(struct kmem_cache *cachep,
765c4507
CL
1072 gfp_t flags, int nodeid)
1073{
1074 return NULL;
1075}
1076
1077#else /* CONFIG_NUMA */
1078
8b98c169 1079static void *____cache_alloc_node(struct kmem_cache *, gfp_t, int);
c61afb18 1080static void *alternate_node_alloc(struct kmem_cache *, gfp_t);
dc85da15 1081
83b519e8 1082static struct array_cache **alloc_alien_cache(int node, int limit, gfp_t gfp)
e498be7d
CL
1083{
1084 struct array_cache **ac_ptr;
8ef82866 1085 int memsize = sizeof(void *) * nr_node_ids;
e498be7d
CL
1086 int i;
1087
1088 if (limit > 1)
1089 limit = 12;
f3186a9c 1090 ac_ptr = kzalloc_node(memsize, gfp, node);
e498be7d
CL
1091 if (ac_ptr) {
1092 for_each_node(i) {
f3186a9c 1093 if (i == node || !node_online(i))
e498be7d 1094 continue;
83b519e8 1095 ac_ptr[i] = alloc_arraycache(node, limit, 0xbaadf00d, gfp);
e498be7d 1096 if (!ac_ptr[i]) {
cc550def 1097 for (i--; i >= 0; i--)
e498be7d
CL
1098 kfree(ac_ptr[i]);
1099 kfree(ac_ptr);
1100 return NULL;
1101 }
1102 }
1103 }
1104 return ac_ptr;
1105}
1106
5295a74c 1107static void free_alien_cache(struct array_cache **ac_ptr)
e498be7d
CL
1108{
1109 int i;
1110
1111 if (!ac_ptr)
1112 return;
e498be7d 1113 for_each_node(i)
b28a02de 1114 kfree(ac_ptr[i]);
e498be7d
CL
1115 kfree(ac_ptr);
1116}
1117
343e0d7a 1118static void __drain_alien_cache(struct kmem_cache *cachep,
5295a74c 1119 struct array_cache *ac, int node)
e498be7d
CL
1120{
1121 struct kmem_list3 *rl3 = cachep->nodelists[node];
1122
1123 if (ac->avail) {
1124 spin_lock(&rl3->list_lock);
e00946fe
CL
1125 /*
1126 * Stuff objects into the remote nodes shared array first.
1127 * That way we could avoid the overhead of putting the objects
1128 * into the free lists and getting them back later.
1129 */
693f7d36 1130 if (rl3->shared)
1131 transfer_objects(rl3->shared, ac, ac->limit);
e00946fe 1132
ff69416e 1133 free_block(cachep, ac->entry, ac->avail, node);
e498be7d
CL
1134 ac->avail = 0;
1135 spin_unlock(&rl3->list_lock);
1136 }
1137}
1138
8fce4d8e
CL
1139/*
1140 * Called from cache_reap() to regularly drain alien caches round robin.
1141 */
1142static void reap_alien(struct kmem_cache *cachep, struct kmem_list3 *l3)
1143{
909ea964 1144 int node = __this_cpu_read(slab_reap_node);
8fce4d8e
CL
1145
1146 if (l3->alien) {
1147 struct array_cache *ac = l3->alien[node];
e00946fe
CL
1148
1149 if (ac && ac->avail && spin_trylock_irq(&ac->lock)) {
8fce4d8e
CL
1150 __drain_alien_cache(cachep, ac, node);
1151 spin_unlock_irq(&ac->lock);
1152 }
1153 }
1154}
1155
a737b3e2
AM
1156static void drain_alien_cache(struct kmem_cache *cachep,
1157 struct array_cache **alien)
e498be7d 1158{
b28a02de 1159 int i = 0;
e498be7d
CL
1160 struct array_cache *ac;
1161 unsigned long flags;
1162
1163 for_each_online_node(i) {
4484ebf1 1164 ac = alien[i];
e498be7d
CL
1165 if (ac) {
1166 spin_lock_irqsave(&ac->lock, flags);
1167 __drain_alien_cache(cachep, ac, i);
1168 spin_unlock_irqrestore(&ac->lock, flags);
1169 }
1170 }
1171}
729bd0b7 1172
873623df 1173static inline int cache_free_alien(struct kmem_cache *cachep, void *objp)
729bd0b7
PE
1174{
1175 struct slab *slabp = virt_to_slab(objp);
1176 int nodeid = slabp->nodeid;
1177 struct kmem_list3 *l3;
1178 struct array_cache *alien = NULL;
1ca4cb24
PE
1179 int node;
1180
7d6e6d09 1181 node = numa_mem_id();
729bd0b7
PE
1182
1183 /*
1184 * Make sure we are not freeing a object from another node to the array
1185 * cache on this cpu.
1186 */
62918a03 1187 if (likely(slabp->nodeid == node))
729bd0b7
PE
1188 return 0;
1189
1ca4cb24 1190 l3 = cachep->nodelists[node];
729bd0b7
PE
1191 STATS_INC_NODEFREES(cachep);
1192 if (l3->alien && l3->alien[nodeid]) {
1193 alien = l3->alien[nodeid];
873623df 1194 spin_lock(&alien->lock);
729bd0b7
PE
1195 if (unlikely(alien->avail == alien->limit)) {
1196 STATS_INC_ACOVERFLOW(cachep);
1197 __drain_alien_cache(cachep, alien, nodeid);
1198 }
072bb0aa 1199 ac_put_obj(cachep, alien, objp);
729bd0b7
PE
1200 spin_unlock(&alien->lock);
1201 } else {
1202 spin_lock(&(cachep->nodelists[nodeid])->list_lock);
1203 free_block(cachep, &objp, 1, nodeid);
1204 spin_unlock(&(cachep->nodelists[nodeid])->list_lock);
1205 }
1206 return 1;
1207}
e498be7d
CL
1208#endif
1209
8f9f8d9e
DR
1210/*
1211 * Allocates and initializes nodelists for a node on each slab cache, used for
1212 * either memory or cpu hotplug. If memory is being hot-added, the kmem_list3
1213 * will be allocated off-node since memory is not yet online for the new node.
1214 * When hotplugging memory or a cpu, existing nodelists are not replaced if
1215 * already in use.
1216 *
18004c5d 1217 * Must hold slab_mutex.
8f9f8d9e
DR
1218 */
1219static int init_cache_nodelists_node(int node)
1220{
1221 struct kmem_cache *cachep;
1222 struct kmem_list3 *l3;
1223 const int memsize = sizeof(struct kmem_list3);
1224
18004c5d 1225 list_for_each_entry(cachep, &slab_caches, list) {
8f9f8d9e
DR
1226 /*
1227 * Set up the size64 kmemlist for cpu before we can
1228 * begin anything. Make sure some other cpu on this
1229 * node has not already allocated this
1230 */
1231 if (!cachep->nodelists[node]) {
1232 l3 = kmalloc_node(memsize, GFP_KERNEL, node);
1233 if (!l3)
1234 return -ENOMEM;
1235 kmem_list3_init(l3);
1236 l3->next_reap = jiffies + REAPTIMEOUT_LIST3 +
1237 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
1238
1239 /*
1240 * The l3s don't come and go as CPUs come and
18004c5d 1241 * go. slab_mutex is sufficient
8f9f8d9e
DR
1242 * protection here.
1243 */
1244 cachep->nodelists[node] = l3;
1245 }
1246
1247 spin_lock_irq(&cachep->nodelists[node]->list_lock);
1248 cachep->nodelists[node]->free_limit =
1249 (1 + nr_cpus_node(node)) *
1250 cachep->batchcount + cachep->num;
1251 spin_unlock_irq(&cachep->nodelists[node]->list_lock);
1252 }
1253 return 0;
1254}
1255
fbf1e473
AM
1256static void __cpuinit cpuup_canceled(long cpu)
1257{
1258 struct kmem_cache *cachep;
1259 struct kmem_list3 *l3 = NULL;
7d6e6d09 1260 int node = cpu_to_mem(cpu);
a70f7302 1261 const struct cpumask *mask = cpumask_of_node(node);
fbf1e473 1262
18004c5d 1263 list_for_each_entry(cachep, &slab_caches, list) {
fbf1e473
AM
1264 struct array_cache *nc;
1265 struct array_cache *shared;
1266 struct array_cache **alien;
fbf1e473 1267
fbf1e473
AM
1268 /* cpu is dead; no one can alloc from it. */
1269 nc = cachep->array[cpu];
1270 cachep->array[cpu] = NULL;
1271 l3 = cachep->nodelists[node];
1272
1273 if (!l3)
1274 goto free_array_cache;
1275
1276 spin_lock_irq(&l3->list_lock);
1277
1278 /* Free limit for this kmem_list3 */
1279 l3->free_limit -= cachep->batchcount;
1280 if (nc)
1281 free_block(cachep, nc->entry, nc->avail, node);
1282
58463c1f 1283 if (!cpumask_empty(mask)) {
fbf1e473
AM
1284 spin_unlock_irq(&l3->list_lock);
1285 goto free_array_cache;
1286 }
1287
1288 shared = l3->shared;
1289 if (shared) {
1290 free_block(cachep, shared->entry,
1291 shared->avail, node);
1292 l3->shared = NULL;
1293 }
1294
1295 alien = l3->alien;
1296 l3->alien = NULL;
1297
1298 spin_unlock_irq(&l3->list_lock);
1299
1300 kfree(shared);
1301 if (alien) {
1302 drain_alien_cache(cachep, alien);
1303 free_alien_cache(alien);
1304 }
1305free_array_cache:
1306 kfree(nc);
1307 }
1308 /*
1309 * In the previous loop, all the objects were freed to
1310 * the respective cache's slabs, now we can go ahead and
1311 * shrink each nodelist to its limit.
1312 */
18004c5d 1313 list_for_each_entry(cachep, &slab_caches, list) {
fbf1e473
AM
1314 l3 = cachep->nodelists[node];
1315 if (!l3)
1316 continue;
1317 drain_freelist(cachep, l3, l3->free_objects);
1318 }
1319}
1320
1321static int __cpuinit cpuup_prepare(long cpu)
1da177e4 1322{
343e0d7a 1323 struct kmem_cache *cachep;
e498be7d 1324 struct kmem_list3 *l3 = NULL;
7d6e6d09 1325 int node = cpu_to_mem(cpu);
8f9f8d9e 1326 int err;
1da177e4 1327
fbf1e473
AM
1328 /*
1329 * We need to do this right in the beginning since
1330 * alloc_arraycache's are going to use this list.
1331 * kmalloc_node allows us to add the slab to the right
1332 * kmem_list3 and not this cpu's kmem_list3
1333 */
8f9f8d9e
DR
1334 err = init_cache_nodelists_node(node);
1335 if (err < 0)
1336 goto bad;
fbf1e473
AM
1337
1338 /*
1339 * Now we can go ahead with allocating the shared arrays and
1340 * array caches
1341 */
18004c5d 1342 list_for_each_entry(cachep, &slab_caches, list) {
fbf1e473
AM
1343 struct array_cache *nc;
1344 struct array_cache *shared = NULL;
1345 struct array_cache **alien = NULL;
1346
1347 nc = alloc_arraycache(node, cachep->limit,
83b519e8 1348 cachep->batchcount, GFP_KERNEL);
fbf1e473
AM
1349 if (!nc)
1350 goto bad;
1351 if (cachep->shared) {
1352 shared = alloc_arraycache(node,
1353 cachep->shared * cachep->batchcount,
83b519e8 1354 0xbaadf00d, GFP_KERNEL);
12d00f6a
AM
1355 if (!shared) {
1356 kfree(nc);
1da177e4 1357 goto bad;
12d00f6a 1358 }
fbf1e473
AM
1359 }
1360 if (use_alien_caches) {
83b519e8 1361 alien = alloc_alien_cache(node, cachep->limit, GFP_KERNEL);
12d00f6a
AM
1362 if (!alien) {
1363 kfree(shared);
1364 kfree(nc);
fbf1e473 1365 goto bad;
12d00f6a 1366 }
fbf1e473
AM
1367 }
1368 cachep->array[cpu] = nc;
1369 l3 = cachep->nodelists[node];
1370 BUG_ON(!l3);
1371
1372 spin_lock_irq(&l3->list_lock);
1373 if (!l3->shared) {
1374 /*
1375 * We are serialised from CPU_DEAD or
1376 * CPU_UP_CANCELLED by the cpucontrol lock
1377 */
1378 l3->shared = shared;
1379 shared = NULL;
1380 }
4484ebf1 1381#ifdef CONFIG_NUMA
fbf1e473
AM
1382 if (!l3->alien) {
1383 l3->alien = alien;
1384 alien = NULL;
1da177e4 1385 }
fbf1e473
AM
1386#endif
1387 spin_unlock_irq(&l3->list_lock);
1388 kfree(shared);
1389 free_alien_cache(alien);
83835b3d
PZ
1390 if (cachep->flags & SLAB_DEBUG_OBJECTS)
1391 slab_set_debugobj_lock_classes_node(cachep, node);
fbf1e473 1392 }
ce79ddc8
PE
1393 init_node_lock_keys(node);
1394
fbf1e473
AM
1395 return 0;
1396bad:
12d00f6a 1397 cpuup_canceled(cpu);
fbf1e473
AM
1398 return -ENOMEM;
1399}
1400
1401static int __cpuinit cpuup_callback(struct notifier_block *nfb,
1402 unsigned long action, void *hcpu)
1403{
1404 long cpu = (long)hcpu;
1405 int err = 0;
1406
1407 switch (action) {
fbf1e473
AM
1408 case CPU_UP_PREPARE:
1409 case CPU_UP_PREPARE_FROZEN:
18004c5d 1410 mutex_lock(&slab_mutex);
fbf1e473 1411 err = cpuup_prepare(cpu);
18004c5d 1412 mutex_unlock(&slab_mutex);
1da177e4
LT
1413 break;
1414 case CPU_ONLINE:
8bb78442 1415 case CPU_ONLINE_FROZEN:
1da177e4
LT
1416 start_cpu_timer(cpu);
1417 break;
1418#ifdef CONFIG_HOTPLUG_CPU
5830c590 1419 case CPU_DOWN_PREPARE:
8bb78442 1420 case CPU_DOWN_PREPARE_FROZEN:
5830c590 1421 /*
18004c5d 1422 * Shutdown cache reaper. Note that the slab_mutex is
5830c590
CL
1423 * held so that if cache_reap() is invoked it cannot do
1424 * anything expensive but will only modify reap_work
1425 * and reschedule the timer.
1426 */
afe2c511 1427 cancel_delayed_work_sync(&per_cpu(slab_reap_work, cpu));
5830c590 1428 /* Now the cache_reaper is guaranteed to be not running. */
1871e52c 1429 per_cpu(slab_reap_work, cpu).work.func = NULL;
5830c590
CL
1430 break;
1431 case CPU_DOWN_FAILED:
8bb78442 1432 case CPU_DOWN_FAILED_FROZEN:
5830c590
CL
1433 start_cpu_timer(cpu);
1434 break;
1da177e4 1435 case CPU_DEAD:
8bb78442 1436 case CPU_DEAD_FROZEN:
4484ebf1
RT
1437 /*
1438 * Even if all the cpus of a node are down, we don't free the
1439 * kmem_list3 of any cache. This to avoid a race between
1440 * cpu_down, and a kmalloc allocation from another cpu for
1441 * memory from the node of the cpu going down. The list3
1442 * structure is usually allocated from kmem_cache_create() and
1443 * gets destroyed at kmem_cache_destroy().
1444 */
183ff22b 1445 /* fall through */
8f5be20b 1446#endif
1da177e4 1447 case CPU_UP_CANCELED:
8bb78442 1448 case CPU_UP_CANCELED_FROZEN:
18004c5d 1449 mutex_lock(&slab_mutex);
fbf1e473 1450 cpuup_canceled(cpu);
18004c5d 1451 mutex_unlock(&slab_mutex);
1da177e4 1452 break;
1da177e4 1453 }
eac40680 1454 return notifier_from_errno(err);
1da177e4
LT
1455}
1456
74b85f37
CS
1457static struct notifier_block __cpuinitdata cpucache_notifier = {
1458 &cpuup_callback, NULL, 0
1459};
1da177e4 1460
8f9f8d9e
DR
1461#if defined(CONFIG_NUMA) && defined(CONFIG_MEMORY_HOTPLUG)
1462/*
1463 * Drains freelist for a node on each slab cache, used for memory hot-remove.
1464 * Returns -EBUSY if all objects cannot be drained so that the node is not
1465 * removed.
1466 *
18004c5d 1467 * Must hold slab_mutex.
8f9f8d9e
DR
1468 */
1469static int __meminit drain_cache_nodelists_node(int node)
1470{
1471 struct kmem_cache *cachep;
1472 int ret = 0;
1473
18004c5d 1474 list_for_each_entry(cachep, &slab_caches, list) {
8f9f8d9e
DR
1475 struct kmem_list3 *l3;
1476
1477 l3 = cachep->nodelists[node];
1478 if (!l3)
1479 continue;
1480
1481 drain_freelist(cachep, l3, l3->free_objects);
1482
1483 if (!list_empty(&l3->slabs_full) ||
1484 !list_empty(&l3->slabs_partial)) {
1485 ret = -EBUSY;
1486 break;
1487 }
1488 }
1489 return ret;
1490}
1491
1492static int __meminit slab_memory_callback(struct notifier_block *self,
1493 unsigned long action, void *arg)
1494{
1495 struct memory_notify *mnb = arg;
1496 int ret = 0;
1497 int nid;
1498
1499 nid = mnb->status_change_nid;
1500 if (nid < 0)
1501 goto out;
1502
1503 switch (action) {
1504 case MEM_GOING_ONLINE:
18004c5d 1505 mutex_lock(&slab_mutex);
8f9f8d9e 1506 ret = init_cache_nodelists_node(nid);
18004c5d 1507 mutex_unlock(&slab_mutex);
8f9f8d9e
DR
1508 break;
1509 case MEM_GOING_OFFLINE:
18004c5d 1510 mutex_lock(&slab_mutex);
8f9f8d9e 1511 ret = drain_cache_nodelists_node(nid);
18004c5d 1512 mutex_unlock(&slab_mutex);
8f9f8d9e
DR
1513 break;
1514 case MEM_ONLINE:
1515 case MEM_OFFLINE:
1516 case MEM_CANCEL_ONLINE:
1517 case MEM_CANCEL_OFFLINE:
1518 break;
1519 }
1520out:
5fda1bd5 1521 return notifier_from_errno(ret);
8f9f8d9e
DR
1522}
1523#endif /* CONFIG_NUMA && CONFIG_MEMORY_HOTPLUG */
1524
e498be7d
CL
1525/*
1526 * swap the static kmem_list3 with kmalloced memory
1527 */
8f9f8d9e
DR
1528static void __init init_list(struct kmem_cache *cachep, struct kmem_list3 *list,
1529 int nodeid)
e498be7d
CL
1530{
1531 struct kmem_list3 *ptr;
1532
83b519e8 1533 ptr = kmalloc_node(sizeof(struct kmem_list3), GFP_NOWAIT, nodeid);
e498be7d
CL
1534 BUG_ON(!ptr);
1535
e498be7d 1536 memcpy(ptr, list, sizeof(struct kmem_list3));
2b2d5493
IM
1537 /*
1538 * Do not assume that spinlocks can be initialized via memcpy:
1539 */
1540 spin_lock_init(&ptr->list_lock);
1541
e498be7d
CL
1542 MAKE_ALL_LISTS(cachep, ptr, nodeid);
1543 cachep->nodelists[nodeid] = ptr;
e498be7d
CL
1544}
1545
556a169d
PE
1546/*
1547 * For setting up all the kmem_list3s for cache whose buffer_size is same as
1548 * size of kmem_list3.
1549 */
1550static void __init set_up_list3s(struct kmem_cache *cachep, int index)
1551{
1552 int node;
1553
1554 for_each_online_node(node) {
1555 cachep->nodelists[node] = &initkmem_list3[index + node];
1556 cachep->nodelists[node]->next_reap = jiffies +
1557 REAPTIMEOUT_LIST3 +
1558 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
1559 }
1560}
1561
a737b3e2
AM
1562/*
1563 * Initialisation. Called after the page allocator have been initialised and
1564 * before smp_init().
1da177e4
LT
1565 */
1566void __init kmem_cache_init(void)
1567{
1568 size_t left_over;
1569 struct cache_sizes *sizes;
1570 struct cache_names *names;
e498be7d 1571 int i;
07ed76b2 1572 int order;
1ca4cb24 1573 int node;
e498be7d 1574
9b030cb8
CL
1575 kmem_cache = &kmem_cache_boot;
1576
b6e68bc1 1577 if (num_possible_nodes() == 1)
62918a03
SS
1578 use_alien_caches = 0;
1579
e498be7d
CL
1580 for (i = 0; i < NUM_INIT_LISTS; i++) {
1581 kmem_list3_init(&initkmem_list3[i]);
1582 if (i < MAX_NUMNODES)
9b030cb8 1583 kmem_cache->nodelists[i] = NULL;
e498be7d 1584 }
9b030cb8 1585 set_up_list3s(kmem_cache, CACHE_CACHE);
1da177e4
LT
1586
1587 /*
1588 * Fragmentation resistance on low memory - only use bigger
3df1cccd
DR
1589 * page orders on machines with more than 32MB of memory if
1590 * not overridden on the command line.
1da177e4 1591 */
3df1cccd 1592 if (!slab_max_order_set && totalram_pages > (32 << 20) >> PAGE_SHIFT)
543585cc 1593 slab_max_order = SLAB_MAX_ORDER_HI;
1da177e4 1594
1da177e4
LT
1595 /* Bootstrap is tricky, because several objects are allocated
1596 * from caches that do not exist yet:
9b030cb8
CL
1597 * 1) initialize the kmem_cache cache: it contains the struct
1598 * kmem_cache structures of all caches, except kmem_cache itself:
1599 * kmem_cache is statically allocated.
e498be7d
CL
1600 * Initially an __init data area is used for the head array and the
1601 * kmem_list3 structures, it's replaced with a kmalloc allocated
1602 * array at the end of the bootstrap.
1da177e4 1603 * 2) Create the first kmalloc cache.
343e0d7a 1604 * The struct kmem_cache for the new cache is allocated normally.
e498be7d
CL
1605 * An __init data area is used for the head array.
1606 * 3) Create the remaining kmalloc caches, with minimally sized
1607 * head arrays.
9b030cb8 1608 * 4) Replace the __init data head arrays for kmem_cache and the first
1da177e4 1609 * kmalloc cache with kmalloc allocated arrays.
9b030cb8 1610 * 5) Replace the __init data for kmem_list3 for kmem_cache and
e498be7d
CL
1611 * the other cache's with kmalloc allocated memory.
1612 * 6) Resize the head arrays of the kmalloc caches to their final sizes.
1da177e4
LT
1613 */
1614
7d6e6d09 1615 node = numa_mem_id();
1ca4cb24 1616
9b030cb8 1617 /* 1) create the kmem_cache */
18004c5d 1618 INIT_LIST_HEAD(&slab_caches);
9b030cb8
CL
1619 list_add(&kmem_cache->list, &slab_caches);
1620 kmem_cache->colour_off = cache_line_size();
1621 kmem_cache->array[smp_processor_id()] = &initarray_cache.cache;
1622 kmem_cache->nodelists[node] = &initkmem_list3[CACHE_CACHE + node];
1da177e4 1623
8da3430d 1624 /*
b56efcf0 1625 * struct kmem_cache size depends on nr_node_ids & nr_cpu_ids
8da3430d 1626 */
9b030cb8 1627 kmem_cache->size = offsetof(struct kmem_cache, array[nr_cpu_ids]) +
b56efcf0 1628 nr_node_ids * sizeof(struct kmem_list3 *);
9b030cb8
CL
1629 kmem_cache->object_size = kmem_cache->size;
1630 kmem_cache->size = ALIGN(kmem_cache->object_size,
a737b3e2 1631 cache_line_size());
9b030cb8
CL
1632 kmem_cache->reciprocal_buffer_size =
1633 reciprocal_value(kmem_cache->size);
1da177e4 1634
07ed76b2 1635 for (order = 0; order < MAX_ORDER; order++) {
9b030cb8
CL
1636 cache_estimate(order, kmem_cache->size,
1637 cache_line_size(), 0, &left_over, &kmem_cache->num);
1638 if (kmem_cache->num)
07ed76b2
JS
1639 break;
1640 }
9b030cb8
CL
1641 BUG_ON(!kmem_cache->num);
1642 kmem_cache->gfporder = order;
1643 kmem_cache->colour = left_over / kmem_cache->colour_off;
1644 kmem_cache->slab_size = ALIGN(kmem_cache->num * sizeof(kmem_bufctl_t) +
b28a02de 1645 sizeof(struct slab), cache_line_size());
1da177e4
LT
1646
1647 /* 2+3) create the kmalloc caches */
1648 sizes = malloc_sizes;
1649 names = cache_names;
1650
a737b3e2
AM
1651 /*
1652 * Initialize the caches that provide memory for the array cache and the
1653 * kmem_list3 structures first. Without this, further allocations will
1654 * bug.
e498be7d
CL
1655 */
1656
278b1bb1 1657 sizes[INDEX_AC].cs_cachep = kmem_cache_zalloc(kmem_cache, GFP_NOWAIT);
8a13a4cc
CL
1658 sizes[INDEX_AC].cs_cachep->name = names[INDEX_AC].name;
1659 sizes[INDEX_AC].cs_cachep->size = sizes[INDEX_AC].cs_size;
1660 sizes[INDEX_AC].cs_cachep->object_size = sizes[INDEX_AC].cs_size;
1661 sizes[INDEX_AC].cs_cachep->align = ARCH_KMALLOC_MINALIGN;
1662 __kmem_cache_create(sizes[INDEX_AC].cs_cachep, ARCH_KMALLOC_FLAGS|SLAB_PANIC);
7c9adf5a 1663 list_add(&sizes[INDEX_AC].cs_cachep->list, &slab_caches);
e498be7d 1664
a737b3e2 1665 if (INDEX_AC != INDEX_L3) {
278b1bb1 1666 sizes[INDEX_L3].cs_cachep = kmem_cache_zalloc(kmem_cache, GFP_NOWAIT);
8a13a4cc
CL
1667 sizes[INDEX_L3].cs_cachep->name = names[INDEX_L3].name;
1668 sizes[INDEX_L3].cs_cachep->size = sizes[INDEX_L3].cs_size;
1669 sizes[INDEX_L3].cs_cachep->object_size = sizes[INDEX_L3].cs_size;
1670 sizes[INDEX_L3].cs_cachep->align = ARCH_KMALLOC_MINALIGN;
1671 __kmem_cache_create(sizes[INDEX_L3].cs_cachep, ARCH_KMALLOC_FLAGS|SLAB_PANIC);
7c9adf5a 1672 list_add(&sizes[INDEX_L3].cs_cachep->list, &slab_caches);
a737b3e2 1673 }
e498be7d 1674
e0a42726
IM
1675 slab_early_init = 0;
1676
1da177e4 1677 while (sizes->cs_size != ULONG_MAX) {
e498be7d
CL
1678 /*
1679 * For performance, all the general caches are L1 aligned.
1da177e4
LT
1680 * 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
e498be7d
CL
1683 * allow tighter packing of the smaller caches.
1684 */
a737b3e2 1685 if (!sizes->cs_cachep) {
278b1bb1 1686 sizes->cs_cachep = kmem_cache_zalloc(kmem_cache, GFP_NOWAIT);
8a13a4cc
CL
1687 sizes->cs_cachep->name = names->name;
1688 sizes->cs_cachep->size = sizes->cs_size;
1689 sizes->cs_cachep->object_size = sizes->cs_size;
1690 sizes->cs_cachep->align = ARCH_KMALLOC_MINALIGN;
1691 __kmem_cache_create(sizes->cs_cachep, ARCH_KMALLOC_FLAGS|SLAB_PANIC);
7c9adf5a 1692 list_add(&sizes->cs_cachep->list, &slab_caches);
a737b3e2 1693 }
4b51d669 1694#ifdef CONFIG_ZONE_DMA
278b1bb1 1695 sizes->cs_dmacachep = kmem_cache_zalloc(kmem_cache, GFP_NOWAIT);
8a13a4cc
CL
1696 sizes->cs_dmacachep->name = names->name_dma;
1697 sizes->cs_dmacachep->size = sizes->cs_size;
1698 sizes->cs_dmacachep->object_size = sizes->cs_size;
1699 sizes->cs_dmacachep->align = ARCH_KMALLOC_MINALIGN;
278b1bb1 1700 __kmem_cache_create(sizes->cs_dmacachep,
8a13a4cc 1701 ARCH_KMALLOC_FLAGS|SLAB_CACHE_DMA| SLAB_PANIC);
7c9adf5a 1702 list_add(&sizes->cs_dmacachep->list, &slab_caches);
4b51d669 1703#endif
1da177e4
LT
1704 sizes++;
1705 names++;
1706 }
1707 /* 4) Replace the bootstrap head arrays */
1708 {
2b2d5493 1709 struct array_cache *ptr;
e498be7d 1710
83b519e8 1711 ptr = kmalloc(sizeof(struct arraycache_init), GFP_NOWAIT);
e498be7d 1712
9b030cb8
CL
1713 BUG_ON(cpu_cache_get(kmem_cache) != &initarray_cache.cache);
1714 memcpy(ptr, cpu_cache_get(kmem_cache),
b28a02de 1715 sizeof(struct arraycache_init));
2b2d5493
IM
1716 /*
1717 * Do not assume that spinlocks can be initialized via memcpy:
1718 */
1719 spin_lock_init(&ptr->lock);
1720
9b030cb8 1721 kmem_cache->array[smp_processor_id()] = ptr;
e498be7d 1722
83b519e8 1723 ptr = kmalloc(sizeof(struct arraycache_init), GFP_NOWAIT);
e498be7d 1724
9a2dba4b 1725 BUG_ON(cpu_cache_get(malloc_sizes[INDEX_AC].cs_cachep)
b28a02de 1726 != &initarray_generic.cache);
9a2dba4b 1727 memcpy(ptr, cpu_cache_get(malloc_sizes[INDEX_AC].cs_cachep),
b28a02de 1728 sizeof(struct arraycache_init));
2b2d5493
IM
1729 /*
1730 * Do not assume that spinlocks can be initialized via memcpy:
1731 */
1732 spin_lock_init(&ptr->lock);
1733
e498be7d 1734 malloc_sizes[INDEX_AC].cs_cachep->array[smp_processor_id()] =
b28a02de 1735 ptr;
1da177e4 1736 }
e498be7d
CL
1737 /* 5) Replace the bootstrap kmem_list3's */
1738 {
1ca4cb24
PE
1739 int nid;
1740
9c09a95c 1741 for_each_online_node(nid) {
9b030cb8 1742 init_list(kmem_cache, &initkmem_list3[CACHE_CACHE + nid], nid);
556a169d 1743
e498be7d 1744 init_list(malloc_sizes[INDEX_AC].cs_cachep,
1ca4cb24 1745 &initkmem_list3[SIZE_AC + nid], nid);
e498be7d
CL
1746
1747 if (INDEX_AC != INDEX_L3) {
1748 init_list(malloc_sizes[INDEX_L3].cs_cachep,
1ca4cb24 1749 &initkmem_list3[SIZE_L3 + nid], nid);
e498be7d
CL
1750 }
1751 }
1752 }
1da177e4 1753
97d06609 1754 slab_state = UP;
8429db5c
PE
1755}
1756
1757void __init kmem_cache_init_late(void)
1758{
1759 struct kmem_cache *cachep;
1760
97d06609 1761 slab_state = UP;
52cef189 1762
8429db5c 1763 /* 6) resize the head arrays to their final sizes */
18004c5d
CL
1764 mutex_lock(&slab_mutex);
1765 list_for_each_entry(cachep, &slab_caches, list)
8429db5c
PE
1766 if (enable_cpucache(cachep, GFP_NOWAIT))
1767 BUG();
18004c5d 1768 mutex_unlock(&slab_mutex);
056c6241 1769
947ca185
MW
1770 /* Annotate slab for lockdep -- annotate the malloc caches */
1771 init_lock_keys();
1772
97d06609
CL
1773 /* Done! */
1774 slab_state = FULL;
1775
a737b3e2
AM
1776 /*
1777 * Register a cpu startup notifier callback that initializes
1778 * cpu_cache_get for all new cpus
1da177e4
LT
1779 */
1780 register_cpu_notifier(&cpucache_notifier);
1da177e4 1781
8f9f8d9e
DR
1782#ifdef CONFIG_NUMA
1783 /*
1784 * Register a memory hotplug callback that initializes and frees
1785 * nodelists.
1786 */
1787 hotplug_memory_notifier(slab_memory_callback, SLAB_CALLBACK_PRI);
1788#endif
1789
a737b3e2
AM
1790 /*
1791 * The reap timers are started later, with a module init call: That part
1792 * of the kernel is not yet operational.
1da177e4
LT
1793 */
1794}
1795
1796static int __init cpucache_init(void)
1797{
1798 int cpu;
1799
a737b3e2
AM
1800 /*
1801 * Register the timers that return unneeded pages to the page allocator
1da177e4 1802 */
e498be7d 1803 for_each_online_cpu(cpu)
a737b3e2 1804 start_cpu_timer(cpu);
a164f896
GC
1805
1806 /* Done! */
97d06609 1807 slab_state = FULL;
1da177e4
LT
1808 return 0;
1809}
1da177e4
LT
1810__initcall(cpucache_init);
1811
8bdec192
RA
1812static noinline void
1813slab_out_of_memory(struct kmem_cache *cachep, gfp_t gfpflags, int nodeid)
1814{
1815 struct kmem_list3 *l3;
1816 struct slab *slabp;
1817 unsigned long flags;
1818 int node;
1819
1820 printk(KERN_WARNING
1821 "SLAB: Unable to allocate memory on node %d (gfp=0x%x)\n",
1822 nodeid, gfpflags);
1823 printk(KERN_WARNING " cache: %s, object size: %d, order: %d\n",
3b0efdfa 1824 cachep->name, cachep->size, cachep->gfporder);
8bdec192
RA
1825
1826 for_each_online_node(node) {
1827 unsigned long active_objs = 0, num_objs = 0, free_objects = 0;
1828 unsigned long active_slabs = 0, num_slabs = 0;
1829
1830 l3 = cachep->nodelists[node];
1831 if (!l3)
1832 continue;
1833
1834 spin_lock_irqsave(&l3->list_lock, flags);
1835 list_for_each_entry(slabp, &l3->slabs_full, list) {
1836 active_objs += cachep->num;
1837 active_slabs++;
1838 }
1839 list_for_each_entry(slabp, &l3->slabs_partial, list) {
1840 active_objs += slabp->inuse;
1841 active_slabs++;
1842 }
1843 list_for_each_entry(slabp, &l3->slabs_free, list)
1844 num_slabs++;
1845
1846 free_objects += l3->free_objects;
1847 spin_unlock_irqrestore(&l3->list_lock, flags);
1848
1849 num_slabs += active_slabs;
1850 num_objs = num_slabs * cachep->num;
1851 printk(KERN_WARNING
1852 " node %d: slabs: %ld/%ld, objs: %ld/%ld, free: %ld\n",
1853 node, active_slabs, num_slabs, active_objs, num_objs,
1854 free_objects);
1855 }
1856}
1857
1da177e4
LT
1858/*
1859 * Interface to system's page allocator. No need to hold the cache-lock.
1860 *
1861 * If we requested dmaable memory, we will get it. Even if we
1862 * did not request dmaable memory, we might get it, but that
1863 * would be relatively rare and ignorable.
1864 */
343e0d7a 1865static void *kmem_getpages(struct kmem_cache *cachep, gfp_t flags, int nodeid)
1da177e4
LT
1866{
1867 struct page *page;
e1b6aa6f 1868 int nr_pages;
1da177e4
LT
1869 int i;
1870
d6fef9da 1871#ifndef CONFIG_MMU
e1b6aa6f
CH
1872 /*
1873 * Nommu uses slab's for process anonymous memory allocations, and thus
1874 * requires __GFP_COMP to properly refcount higher order allocations
d6fef9da 1875 */
e1b6aa6f 1876 flags |= __GFP_COMP;
d6fef9da 1877#endif
765c4507 1878
a618e89f 1879 flags |= cachep->allocflags;
e12ba74d
MG
1880 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1881 flags |= __GFP_RECLAIMABLE;
e1b6aa6f 1882
517d0869 1883 page = alloc_pages_exact_node(nodeid, flags | __GFP_NOTRACK, cachep->gfporder);
8bdec192
RA
1884 if (!page) {
1885 if (!(flags & __GFP_NOWARN) && printk_ratelimit())
1886 slab_out_of_memory(cachep, flags, nodeid);
1da177e4 1887 return NULL;
8bdec192 1888 }
1da177e4 1889
b37f1dd0 1890 /* Record if ALLOC_NO_WATERMARKS was set when allocating the slab */
072bb0aa
MG
1891 if (unlikely(page->pfmemalloc))
1892 pfmemalloc_active = true;
1893
e1b6aa6f 1894 nr_pages = (1 << cachep->gfporder);
1da177e4 1895 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
972d1a7b
CL
1896 add_zone_page_state(page_zone(page),
1897 NR_SLAB_RECLAIMABLE, nr_pages);
1898 else
1899 add_zone_page_state(page_zone(page),
1900 NR_SLAB_UNRECLAIMABLE, nr_pages);
072bb0aa 1901 for (i = 0; i < nr_pages; i++) {
e1b6aa6f 1902 __SetPageSlab(page + i);
c175eea4 1903
072bb0aa
MG
1904 if (page->pfmemalloc)
1905 SetPageSlabPfmemalloc(page + i);
1906 }
1907
b1eeab67
VN
1908 if (kmemcheck_enabled && !(cachep->flags & SLAB_NOTRACK)) {
1909 kmemcheck_alloc_shadow(page, cachep->gfporder, flags, nodeid);
1910
1911 if (cachep->ctor)
1912 kmemcheck_mark_uninitialized_pages(page, nr_pages);
1913 else
1914 kmemcheck_mark_unallocated_pages(page, nr_pages);
1915 }
c175eea4 1916
e1b6aa6f 1917 return page_address(page);
1da177e4
LT
1918}
1919
1920/*
1921 * Interface to system's page release.
1922 */
343e0d7a 1923static void kmem_freepages(struct kmem_cache *cachep, void *addr)
1da177e4 1924{
b28a02de 1925 unsigned long i = (1 << cachep->gfporder);
1da177e4
LT
1926 struct page *page = virt_to_page(addr);
1927 const unsigned long nr_freed = i;
1928
b1eeab67 1929 kmemcheck_free_shadow(page, cachep->gfporder);
c175eea4 1930
972d1a7b
CL
1931 if (cachep->flags & SLAB_RECLAIM_ACCOUNT)
1932 sub_zone_page_state(page_zone(page),
1933 NR_SLAB_RECLAIMABLE, nr_freed);
1934 else
1935 sub_zone_page_state(page_zone(page),
1936 NR_SLAB_UNRECLAIMABLE, nr_freed);
1da177e4 1937 while (i--) {
f205b2fe 1938 BUG_ON(!PageSlab(page));
072bb0aa 1939 __ClearPageSlabPfmemalloc(page);
f205b2fe 1940 __ClearPageSlab(page);
1da177e4
LT
1941 page++;
1942 }
1da177e4
LT
1943 if (current->reclaim_state)
1944 current->reclaim_state->reclaimed_slab += nr_freed;
1945 free_pages((unsigned long)addr, cachep->gfporder);
1da177e4
LT
1946}
1947
1948static void kmem_rcu_free(struct rcu_head *head)
1949{
b28a02de 1950 struct slab_rcu *slab_rcu = (struct slab_rcu *)head;
343e0d7a 1951 struct kmem_cache *cachep = slab_rcu->cachep;
1da177e4
LT
1952
1953 kmem_freepages(cachep, slab_rcu->addr);
1954 if (OFF_SLAB(cachep))
1955 kmem_cache_free(cachep->slabp_cache, slab_rcu);
1956}
1957
1958#if DEBUG
1959
1960#ifdef CONFIG_DEBUG_PAGEALLOC
343e0d7a 1961static void store_stackinfo(struct kmem_cache *cachep, unsigned long *addr,
b28a02de 1962 unsigned long caller)
1da177e4 1963{
8c138bc0 1964 int size = cachep->object_size;
1da177e4 1965
3dafccf2 1966 addr = (unsigned long *)&((char *)addr)[obj_offset(cachep)];
1da177e4 1967
b28a02de 1968 if (size < 5 * sizeof(unsigned long))
1da177e4
LT
1969 return;
1970
b28a02de
PE
1971 *addr++ = 0x12345678;
1972 *addr++ = caller;
1973 *addr++ = smp_processor_id();
1974 size -= 3 * sizeof(unsigned long);
1da177e4
LT
1975 {
1976 unsigned long *sptr = &caller;
1977 unsigned long svalue;
1978
1979 while (!kstack_end(sptr)) {
1980 svalue = *sptr++;
1981 if (kernel_text_address(svalue)) {
b28a02de 1982 *addr++ = svalue;
1da177e4
LT
1983 size -= sizeof(unsigned long);
1984 if (size <= sizeof(unsigned long))
1985 break;
1986 }
1987 }
1988
1989 }
b28a02de 1990 *addr++ = 0x87654321;
1da177e4
LT
1991}
1992#endif
1993
343e0d7a 1994static void poison_obj(struct kmem_cache *cachep, void *addr, unsigned char val)
1da177e4 1995{
8c138bc0 1996 int size = cachep->object_size;
3dafccf2 1997 addr = &((char *)addr)[obj_offset(cachep)];
1da177e4
LT
1998
1999 memset(addr, val, size);
b28a02de 2000 *(unsigned char *)(addr + size - 1) = POISON_END;
1da177e4
LT
2001}
2002
2003static void dump_line(char *data, int offset, int limit)
2004{
2005 int i;
aa83aa40
DJ
2006 unsigned char error = 0;
2007 int bad_count = 0;
2008
fdde6abb 2009 printk(KERN_ERR "%03x: ", offset);
aa83aa40
DJ
2010 for (i = 0; i < limit; i++) {
2011 if (data[offset + i] != POISON_FREE) {
2012 error = data[offset + i];
2013 bad_count++;
2014 }
aa83aa40 2015 }
fdde6abb
SAS
2016 print_hex_dump(KERN_CONT, "", 0, 16, 1,
2017 &data[offset], limit, 1);
aa83aa40
DJ
2018
2019 if (bad_count == 1) {
2020 error ^= POISON_FREE;
2021 if (!(error & (error - 1))) {
2022 printk(KERN_ERR "Single bit error detected. Probably "
2023 "bad RAM.\n");
2024#ifdef CONFIG_X86
2025 printk(KERN_ERR "Run memtest86+ or a similar memory "
2026 "test tool.\n");
2027#else
2028 printk(KERN_ERR "Run a memory test tool.\n");
2029#endif
2030 }
2031 }
1da177e4
LT
2032}
2033#endif
2034
2035#if DEBUG
2036
343e0d7a 2037static void print_objinfo(struct kmem_cache *cachep, void *objp, int lines)
1da177e4
LT
2038{
2039 int i, size;
2040 char *realobj;
2041
2042 if (cachep->flags & SLAB_RED_ZONE) {
b46b8f19 2043 printk(KERN_ERR "Redzone: 0x%llx/0x%llx.\n",
a737b3e2
AM
2044 *dbg_redzone1(cachep, objp),
2045 *dbg_redzone2(cachep, objp));
1da177e4
LT
2046 }
2047
2048 if (cachep->flags & SLAB_STORE_USER) {
2049 printk(KERN_ERR "Last user: [<%p>]",
a737b3e2 2050 *dbg_userword(cachep, objp));
1da177e4 2051 print_symbol("(%s)",
a737b3e2 2052 (unsigned long)*dbg_userword(cachep, objp));
1da177e4
LT
2053 printk("\n");
2054 }
3dafccf2 2055 realobj = (char *)objp + obj_offset(cachep);
8c138bc0 2056 size = cachep->object_size;
b28a02de 2057 for (i = 0; i < size && lines; i += 16, lines--) {
1da177e4
LT
2058 int limit;
2059 limit = 16;
b28a02de
PE
2060 if (i + limit > size)
2061 limit = size - i;
1da177e4
LT
2062 dump_line(realobj, i, limit);
2063 }
2064}
2065
343e0d7a 2066static void check_poison_obj(struct kmem_cache *cachep, void *objp)
1da177e4
LT
2067{
2068 char *realobj;
2069 int size, i;
2070 int lines = 0;
2071
3dafccf2 2072 realobj = (char *)objp + obj_offset(cachep);
8c138bc0 2073 size = cachep->object_size;
1da177e4 2074
b28a02de 2075 for (i = 0; i < size; i++) {
1da177e4 2076 char exp = POISON_FREE;
b28a02de 2077 if (i == size - 1)
1da177e4
LT
2078 exp = POISON_END;
2079 if (realobj[i] != exp) {
2080 int limit;
2081 /* Mismatch ! */
2082 /* Print header */
2083 if (lines == 0) {
b28a02de 2084 printk(KERN_ERR
face37f5
DJ
2085 "Slab corruption (%s): %s start=%p, len=%d\n",
2086 print_tainted(), cachep->name, realobj, size);
1da177e4
LT
2087 print_objinfo(cachep, objp, 0);
2088 }
2089 /* Hexdump the affected line */
b28a02de 2090 i = (i / 16) * 16;
1da177e4 2091 limit = 16;
b28a02de
PE
2092 if (i + limit > size)
2093 limit = size - i;
1da177e4
LT
2094 dump_line(realobj, i, limit);
2095 i += 16;
2096 lines++;
2097 /* Limit to 5 lines */
2098 if (lines > 5)
2099 break;
2100 }
2101 }
2102 if (lines != 0) {
2103 /* Print some data about the neighboring objects, if they
2104 * exist:
2105 */
6ed5eb22 2106 struct slab *slabp = virt_to_slab(objp);
8fea4e96 2107 unsigned int objnr;
1da177e4 2108
8fea4e96 2109 objnr = obj_to_index(cachep, slabp, objp);
1da177e4 2110 if (objnr) {
8fea4e96 2111 objp = index_to_obj(cachep, slabp, objnr - 1);
3dafccf2 2112 realobj = (char *)objp + obj_offset(cachep);
1da177e4 2113 printk(KERN_ERR "Prev obj: start=%p, len=%d\n",
b28a02de 2114 realobj, size);
1da177e4
LT
2115 print_objinfo(cachep, objp, 2);
2116 }
b28a02de 2117 if (objnr + 1 < cachep->num) {
8fea4e96 2118 objp = index_to_obj(cachep, slabp, objnr + 1);
3dafccf2 2119 realobj = (char *)objp + obj_offset(cachep);
1da177e4 2120 printk(KERN_ERR "Next obj: start=%p, len=%d\n",
b28a02de 2121 realobj, size);
1da177e4
LT
2122 print_objinfo(cachep, objp, 2);
2123 }
2124 }
2125}
2126#endif
2127
12dd36fa 2128#if DEBUG
e79aec29 2129static void slab_destroy_debugcheck(struct kmem_cache *cachep, struct slab *slabp)
1da177e4 2130{
1da177e4
LT
2131 int i;
2132 for (i = 0; i < cachep->num; i++) {
8fea4e96 2133 void *objp = index_to_obj(cachep, slabp, i);
1da177e4
LT
2134
2135 if (cachep->flags & SLAB_POISON) {
2136#ifdef CONFIG_DEBUG_PAGEALLOC
3b0efdfa 2137 if (cachep->size % PAGE_SIZE == 0 &&
a737b3e2 2138 OFF_SLAB(cachep))
b28a02de 2139 kernel_map_pages(virt_to_page(objp),
3b0efdfa 2140 cachep->size / PAGE_SIZE, 1);
1da177e4
LT
2141 else
2142 check_poison_obj(cachep, objp);
2143#else
2144 check_poison_obj(cachep, objp);
2145#endif
2146 }
2147 if (cachep->flags & SLAB_RED_ZONE) {
2148 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
2149 slab_error(cachep, "start of a freed object "
b28a02de 2150 "was overwritten");
1da177e4
LT
2151 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
2152 slab_error(cachep, "end of a freed object "
b28a02de 2153 "was overwritten");
1da177e4 2154 }
1da177e4 2155 }
12dd36fa 2156}
1da177e4 2157#else
e79aec29 2158static void slab_destroy_debugcheck(struct kmem_cache *cachep, struct slab *slabp)
12dd36fa 2159{
12dd36fa 2160}
1da177e4
LT
2161#endif
2162
911851e6
RD
2163/**
2164 * slab_destroy - destroy and release all objects in a slab
2165 * @cachep: cache pointer being destroyed
2166 * @slabp: slab pointer being destroyed
2167 *
12dd36fa 2168 * Destroy all the objs in a slab, and release the mem back to the system.
a737b3e2
AM
2169 * Before calling the slab must have been unlinked from the cache. The
2170 * cache-lock is not held/needed.
12dd36fa 2171 */
343e0d7a 2172static void slab_destroy(struct kmem_cache *cachep, struct slab *slabp)
12dd36fa
MD
2173{
2174 void *addr = slabp->s_mem - slabp->colouroff;
2175
e79aec29 2176 slab_destroy_debugcheck(cachep, slabp);
1da177e4
LT
2177 if (unlikely(cachep->flags & SLAB_DESTROY_BY_RCU)) {
2178 struct slab_rcu *slab_rcu;
2179
b28a02de 2180 slab_rcu = (struct slab_rcu *)slabp;
1da177e4
LT
2181 slab_rcu->cachep = cachep;
2182 slab_rcu->addr = addr;
2183 call_rcu(&slab_rcu->head, kmem_rcu_free);
2184 } else {
2185 kmem_freepages(cachep, addr);
873623df
IM
2186 if (OFF_SLAB(cachep))
2187 kmem_cache_free(cachep->slabp_cache, slabp);
1da177e4
LT
2188 }
2189}
2190
4d268eba 2191/**
a70773dd
RD
2192 * calculate_slab_order - calculate size (page order) of slabs
2193 * @cachep: pointer to the cache that is being created
2194 * @size: size of objects to be created in this cache.
2195 * @align: required alignment for the objects.
2196 * @flags: slab allocation flags
2197 *
2198 * Also calculates the number of objects per slab.
4d268eba
PE
2199 *
2200 * This could be made much more intelligent. For now, try to avoid using
2201 * high order pages for slabs. When the gfp() functions are more friendly
2202 * towards high-order requests, this should be changed.
2203 */
a737b3e2 2204static size_t calculate_slab_order(struct kmem_cache *cachep,
ee13d785 2205 size_t size, size_t align, unsigned long flags)
4d268eba 2206{
b1ab41c4 2207 unsigned long offslab_limit;
4d268eba 2208 size_t left_over = 0;
9888e6fa 2209 int gfporder;
4d268eba 2210
0aa817f0 2211 for (gfporder = 0; gfporder <= KMALLOC_MAX_ORDER; gfporder++) {
4d268eba
PE
2212 unsigned int num;
2213 size_t remainder;
2214
9888e6fa 2215 cache_estimate(gfporder, size, align, flags, &remainder, &num);
4d268eba
PE
2216 if (!num)
2217 continue;
9888e6fa 2218
b1ab41c4
IM
2219 if (flags & CFLGS_OFF_SLAB) {
2220 /*
2221 * Max number of objs-per-slab for caches which
2222 * use off-slab slabs. Needed to avoid a possible
2223 * looping condition in cache_grow().
2224 */
2225 offslab_limit = size - sizeof(struct slab);
2226 offslab_limit /= sizeof(kmem_bufctl_t);
2227
2228 if (num > offslab_limit)
2229 break;
2230 }
4d268eba 2231
9888e6fa 2232 /* Found something acceptable - save it away */
4d268eba 2233 cachep->num = num;
9888e6fa 2234 cachep->gfporder = gfporder;
4d268eba
PE
2235 left_over = remainder;
2236
f78bb8ad
LT
2237 /*
2238 * A VFS-reclaimable slab tends to have most allocations
2239 * as GFP_NOFS and we really don't want to have to be allocating
2240 * higher-order pages when we are unable to shrink dcache.
2241 */
2242 if (flags & SLAB_RECLAIM_ACCOUNT)
2243 break;
2244
4d268eba
PE
2245 /*
2246 * Large number of objects is good, but very large slabs are
2247 * currently bad for the gfp()s.
2248 */
543585cc 2249 if (gfporder >= slab_max_order)
4d268eba
PE
2250 break;
2251
9888e6fa
LT
2252 /*
2253 * Acceptable internal fragmentation?
2254 */
a737b3e2 2255 if (left_over * 8 <= (PAGE_SIZE << gfporder))
4d268eba
PE
2256 break;
2257 }
2258 return left_over;
2259}
2260
83b519e8 2261static int __init_refok setup_cpu_cache(struct kmem_cache *cachep, gfp_t gfp)
f30cf7d1 2262{
97d06609 2263 if (slab_state >= FULL)
83b519e8 2264 return enable_cpucache(cachep, gfp);
2ed3a4ef 2265
97d06609 2266 if (slab_state == DOWN) {
f30cf7d1
PE
2267 /*
2268 * Note: the first kmem_cache_create must create the cache
2269 * that's used by kmalloc(24), otherwise the creation of
2270 * further caches will BUG().
2271 */
2272 cachep->array[smp_processor_id()] = &initarray_generic.cache;
2273
2274 /*
2275 * If the cache that's used by kmalloc(sizeof(kmem_list3)) is
2276 * the first cache, then we need to set up all its list3s,
2277 * otherwise the creation of further caches will BUG().
2278 */
2279 set_up_list3s(cachep, SIZE_AC);
2280 if (INDEX_AC == INDEX_L3)
97d06609 2281 slab_state = PARTIAL_L3;
f30cf7d1 2282 else
97d06609 2283 slab_state = PARTIAL_ARRAYCACHE;
f30cf7d1
PE
2284 } else {
2285 cachep->array[smp_processor_id()] =
83b519e8 2286 kmalloc(sizeof(struct arraycache_init), gfp);
f30cf7d1 2287
97d06609 2288 if (slab_state == PARTIAL_ARRAYCACHE) {
f30cf7d1 2289 set_up_list3s(cachep, SIZE_L3);
97d06609 2290 slab_state = PARTIAL_L3;
f30cf7d1
PE
2291 } else {
2292 int node;
556a169d 2293 for_each_online_node(node) {
f30cf7d1
PE
2294 cachep->nodelists[node] =
2295 kmalloc_node(sizeof(struct kmem_list3),
eb91f1d0 2296 gfp, node);
f30cf7d1
PE
2297 BUG_ON(!cachep->nodelists[node]);
2298 kmem_list3_init(cachep->nodelists[node]);
2299 }
2300 }
2301 }
7d6e6d09 2302 cachep->nodelists[numa_mem_id()]->next_reap =
f30cf7d1
PE
2303 jiffies + REAPTIMEOUT_LIST3 +
2304 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
2305
2306 cpu_cache_get(cachep)->avail = 0;
2307 cpu_cache_get(cachep)->limit = BOOT_CPUCACHE_ENTRIES;
2308 cpu_cache_get(cachep)->batchcount = 1;
2309 cpu_cache_get(cachep)->touched = 0;
2310 cachep->batchcount = 1;
2311 cachep->limit = BOOT_CPUCACHE_ENTRIES;
2ed3a4ef 2312 return 0;
f30cf7d1
PE
2313}
2314
1da177e4 2315/**
039363f3 2316 * __kmem_cache_create - Create a cache.
1da177e4
LT
2317 * @name: A string which is used in /proc/slabinfo to identify this cache.
2318 * @size: The size of objects to be created in this cache.
2319 * @align: The required alignment for the objects.
2320 * @flags: SLAB flags
2321 * @ctor: A constructor for the objects.
1da177e4
LT
2322 *
2323 * Returns a ptr to the cache on success, NULL on failure.
2324 * Cannot be called within a int, but can be interrupted.
20c2df83 2325 * The @ctor is run when new pages are allocated by the cache.
1da177e4 2326 *
1da177e4
LT
2327 * The flags are
2328 *
2329 * %SLAB_POISON - Poison the slab with a known test pattern (a5a5a5a5)
2330 * to catch references to uninitialised memory.
2331 *
2332 * %SLAB_RED_ZONE - Insert `Red' zones around the allocated memory to check
2333 * for buffer overruns.
2334 *
1da177e4
LT
2335 * %SLAB_HWCACHE_ALIGN - Align the objects in this cache to a hardware
2336 * cacheline. This can be beneficial if you're counting cycles as closely
2337 * as davem.
2338 */
278b1bb1 2339int
8a13a4cc 2340__kmem_cache_create (struct kmem_cache *cachep, unsigned long flags)
1da177e4
LT
2341{
2342 size_t left_over, slab_size, ralign;
83b519e8 2343 gfp_t gfp;
278b1bb1 2344 int err;
8a13a4cc 2345 size_t size = cachep->size;
1da177e4 2346
1da177e4 2347#if DEBUG
1da177e4
LT
2348#if FORCED_DEBUG
2349 /*
2350 * Enable redzoning and last user accounting, except for caches with
2351 * large objects, if the increased size would increase the object size
2352 * above the next power of two: caches with object sizes just above a
2353 * power of two have a significant amount of internal fragmentation.
2354 */
87a927c7
DW
2355 if (size < 4096 || fls(size - 1) == fls(size-1 + REDZONE_ALIGN +
2356 2 * sizeof(unsigned long long)))
b28a02de 2357 flags |= SLAB_RED_ZONE | SLAB_STORE_USER;
1da177e4
LT
2358 if (!(flags & SLAB_DESTROY_BY_RCU))
2359 flags |= SLAB_POISON;
2360#endif
2361 if (flags & SLAB_DESTROY_BY_RCU)
2362 BUG_ON(flags & SLAB_POISON);
2363#endif
1da177e4 2364
a737b3e2
AM
2365 /*
2366 * Check that size is in terms of words. This is needed to avoid
1da177e4
LT
2367 * unaligned accesses for some archs when redzoning is used, and makes
2368 * sure any on-slab bufctl's are also correctly aligned.
2369 */
b28a02de
PE
2370 if (size & (BYTES_PER_WORD - 1)) {
2371 size += (BYTES_PER_WORD - 1);
2372 size &= ~(BYTES_PER_WORD - 1);
1da177e4
LT
2373 }
2374
a737b3e2
AM
2375 /* calculate the final buffer alignment: */
2376
1da177e4
LT
2377 /* 1) arch recommendation: can be overridden for debug */
2378 if (flags & SLAB_HWCACHE_ALIGN) {
a737b3e2
AM
2379 /*
2380 * Default alignment: as specified by the arch code. Except if
2381 * an object is really small, then squeeze multiple objects into
2382 * one cacheline.
1da177e4
LT
2383 */
2384 ralign = cache_line_size();
b28a02de 2385 while (size <= ralign / 2)
1da177e4
LT
2386 ralign /= 2;
2387 } else {
2388 ralign = BYTES_PER_WORD;
2389 }
ca5f9703
PE
2390
2391 /*
87a927c7
DW
2392 * Redzoning and user store require word alignment or possibly larger.
2393 * Note this will be overridden by architecture or caller mandated
2394 * alignment if either is greater than BYTES_PER_WORD.
ca5f9703 2395 */
87a927c7
DW
2396 if (flags & SLAB_STORE_USER)
2397 ralign = BYTES_PER_WORD;
2398
2399 if (flags & SLAB_RED_ZONE) {
2400 ralign = REDZONE_ALIGN;
2401 /* If redzoning, ensure that the second redzone is suitably
2402 * aligned, by adjusting the object size accordingly. */
2403 size += REDZONE_ALIGN - 1;
2404 size &= ~(REDZONE_ALIGN - 1);
2405 }
ca5f9703 2406
a44b56d3 2407 /* 2) arch mandated alignment */
1da177e4
LT
2408 if (ralign < ARCH_SLAB_MINALIGN) {
2409 ralign = ARCH_SLAB_MINALIGN;
1da177e4 2410 }
a44b56d3 2411 /* 3) caller mandated alignment */
8a13a4cc
CL
2412 if (ralign < cachep->align) {
2413 ralign = cachep->align;
1da177e4 2414 }
3ff84a7f
PE
2415 /* disable debug if necessary */
2416 if (ralign > __alignof__(unsigned long long))
a44b56d3 2417 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
a737b3e2 2418 /*
ca5f9703 2419 * 4) Store it.
1da177e4 2420 */
8a13a4cc 2421 cachep->align = ralign;
1da177e4 2422
83b519e8
PE
2423 if (slab_is_available())
2424 gfp = GFP_KERNEL;
2425 else
2426 gfp = GFP_NOWAIT;
2427
b56efcf0 2428 cachep->nodelists = (struct kmem_list3 **)&cachep->array[nr_cpu_ids];
1da177e4 2429#if DEBUG
1da177e4 2430
ca5f9703
PE
2431 /*
2432 * Both debugging options require word-alignment which is calculated
2433 * into align above.
2434 */
1da177e4 2435 if (flags & SLAB_RED_ZONE) {
1da177e4 2436 /* add space for red zone words */
3ff84a7f
PE
2437 cachep->obj_offset += sizeof(unsigned long long);
2438 size += 2 * sizeof(unsigned long long);
1da177e4
LT
2439 }
2440 if (flags & SLAB_STORE_USER) {
ca5f9703 2441 /* user store requires one word storage behind the end of
87a927c7
DW
2442 * the real object. But if the second red zone needs to be
2443 * aligned to 64 bits, we must allow that much space.
1da177e4 2444 */
87a927c7
DW
2445 if (flags & SLAB_RED_ZONE)
2446 size += REDZONE_ALIGN;
2447 else
2448 size += BYTES_PER_WORD;
1da177e4
LT
2449 }
2450#if FORCED_DEBUG && defined(CONFIG_DEBUG_PAGEALLOC)
b28a02de 2451 if (size >= malloc_sizes[INDEX_L3 + 1].cs_size
608da7e3
TH
2452 && cachep->object_size > cache_line_size()
2453 && ALIGN(size, cachep->align) < PAGE_SIZE) {
2454 cachep->obj_offset += PAGE_SIZE - ALIGN(size, cachep->align);
1da177e4
LT
2455 size = PAGE_SIZE;
2456 }
2457#endif
2458#endif
2459
e0a42726
IM
2460 /*
2461 * Determine if the slab management is 'on' or 'off' slab.
2462 * (bootstrapping cannot cope with offslab caches so don't do
e7cb55b9
CM
2463 * it too early on. Always use on-slab management when
2464 * SLAB_NOLEAKTRACE to avoid recursive calls into kmemleak)
e0a42726 2465 */
e7cb55b9
CM
2466 if ((size >= (PAGE_SIZE >> 3)) && !slab_early_init &&
2467 !(flags & SLAB_NOLEAKTRACE))
1da177e4
LT
2468 /*
2469 * Size is large, assume best to place the slab management obj
2470 * off-slab (should allow better packing of objs).
2471 */
2472 flags |= CFLGS_OFF_SLAB;
2473
8a13a4cc 2474 size = ALIGN(size, cachep->align);
1da177e4 2475
8a13a4cc 2476 left_over = calculate_slab_order(cachep, size, cachep->align, flags);
1da177e4 2477
8a13a4cc 2478 if (!cachep->num)
278b1bb1 2479 return -E2BIG;
1da177e4 2480
b28a02de 2481 slab_size = ALIGN(cachep->num * sizeof(kmem_bufctl_t)
8a13a4cc 2482 + sizeof(struct slab), cachep->align);
1da177e4
LT
2483
2484 /*
2485 * If the slab has been placed off-slab, and we have enough space then
2486 * move it on-slab. This is at the expense of any extra colouring.
2487 */
2488 if (flags & CFLGS_OFF_SLAB && left_over >= slab_size) {
2489 flags &= ~CFLGS_OFF_SLAB;
2490 left_over -= slab_size;
2491 }
2492
2493 if (flags & CFLGS_OFF_SLAB) {
2494 /* really off slab. No need for manual alignment */
b28a02de
PE
2495 slab_size =
2496 cachep->num * sizeof(kmem_bufctl_t) + sizeof(struct slab);
67461365
RL
2497
2498#ifdef CONFIG_PAGE_POISONING
2499 /* If we're going to use the generic kernel_map_pages()
2500 * poisoning, then it's going to smash the contents of
2501 * the redzone and userword anyhow, so switch them off.
2502 */
2503 if (size % PAGE_SIZE == 0 && flags & SLAB_POISON)
2504 flags &= ~(SLAB_RED_ZONE | SLAB_STORE_USER);
2505#endif
1da177e4
LT
2506 }
2507
2508 cachep->colour_off = cache_line_size();
2509 /* Offset must be a multiple of the alignment. */
8a13a4cc
CL
2510 if (cachep->colour_off < cachep->align)
2511 cachep->colour_off = cachep->align;
b28a02de 2512 cachep->colour = left_over / cachep->colour_off;
1da177e4
LT
2513 cachep->slab_size = slab_size;
2514 cachep->flags = flags;
a618e89f 2515 cachep->allocflags = 0;
4b51d669 2516 if (CONFIG_ZONE_DMA_FLAG && (flags & SLAB_CACHE_DMA))
a618e89f 2517 cachep->allocflags |= GFP_DMA;
3b0efdfa 2518 cachep->size = size;
6a2d7a95 2519 cachep->reciprocal_buffer_size = reciprocal_value(size);
1da177e4 2520
e5ac9c5a 2521 if (flags & CFLGS_OFF_SLAB) {
b2d55073 2522 cachep->slabp_cache = kmem_find_general_cachep(slab_size, 0u);
e5ac9c5a
RT
2523 /*
2524 * This is a possibility for one of the malloc_sizes caches.
2525 * But since we go off slab only for object size greater than
2526 * PAGE_SIZE/8, and malloc_sizes gets created in ascending order,
2527 * this should not happen at all.
2528 * But leave a BUG_ON for some lucky dude.
2529 */
6cb8f913 2530 BUG_ON(ZERO_OR_NULL_PTR(cachep->slabp_cache));
e5ac9c5a 2531 }
1da177e4 2532
278b1bb1
CL
2533 err = setup_cpu_cache(cachep, gfp);
2534 if (err) {
12c3667f 2535 __kmem_cache_shutdown(cachep);
278b1bb1 2536 return err;
2ed3a4ef 2537 }
1da177e4 2538
83835b3d
PZ
2539 if (flags & SLAB_DEBUG_OBJECTS) {
2540 /*
2541 * Would deadlock through slab_destroy()->call_rcu()->
2542 * debug_object_activate()->kmem_cache_alloc().
2543 */
2544 WARN_ON_ONCE(flags & SLAB_DESTROY_BY_RCU);
2545
2546 slab_set_debugobj_lock_classes(cachep);
2547 }
2548
278b1bb1 2549 return 0;
1da177e4 2550}
1da177e4
LT
2551
2552#if DEBUG
2553static void check_irq_off(void)
2554{
2555 BUG_ON(!irqs_disabled());
2556}
2557
2558static void check_irq_on(void)
2559{
2560 BUG_ON(irqs_disabled());
2561}
2562
343e0d7a 2563static void check_spinlock_acquired(struct kmem_cache *cachep)
1da177e4
LT
2564{
2565#ifdef CONFIG_SMP
2566 check_irq_off();
7d6e6d09 2567 assert_spin_locked(&cachep->nodelists[numa_mem_id()]->list_lock);
1da177e4
LT
2568#endif
2569}
e498be7d 2570
343e0d7a 2571static void check_spinlock_acquired_node(struct kmem_cache *cachep, int node)
e498be7d
CL
2572{
2573#ifdef CONFIG_SMP
2574 check_irq_off();
2575 assert_spin_locked(&cachep->nodelists[node]->list_lock);
2576#endif
2577}
2578
1da177e4
LT
2579#else
2580#define check_irq_off() do { } while(0)
2581#define check_irq_on() do { } while(0)
2582#define check_spinlock_acquired(x) do { } while(0)
e498be7d 2583#define check_spinlock_acquired_node(x, y) do { } while(0)
1da177e4
LT
2584#endif
2585
aab2207c
CL
2586static void drain_array(struct kmem_cache *cachep, struct kmem_list3 *l3,
2587 struct array_cache *ac,
2588 int force, int node);
2589
1da177e4
LT
2590static void do_drain(void *arg)
2591{
a737b3e2 2592 struct kmem_cache *cachep = arg;
1da177e4 2593 struct array_cache *ac;
7d6e6d09 2594 int node = numa_mem_id();
1da177e4
LT
2595
2596 check_irq_off();
9a2dba4b 2597 ac = cpu_cache_get(cachep);
ff69416e
CL
2598 spin_lock(&cachep->nodelists[node]->list_lock);
2599 free_block(cachep, ac->entry, ac->avail, node);
2600 spin_unlock(&cachep->nodelists[node]->list_lock);
1da177e4
LT
2601 ac->avail = 0;
2602}
2603
343e0d7a 2604static void drain_cpu_caches(struct kmem_cache *cachep)
1da177e4 2605{
e498be7d
CL
2606 struct kmem_list3 *l3;
2607 int node;
2608
15c8b6c1 2609 on_each_cpu(do_drain, cachep, 1);
1da177e4 2610 check_irq_on();
b28a02de 2611 for_each_online_node(node) {
e498be7d 2612 l3 = cachep->nodelists[node];
a4523a8b
RD
2613 if (l3 && l3->alien)
2614 drain_alien_cache(cachep, l3->alien);
2615 }
2616
2617 for_each_online_node(node) {
2618 l3 = cachep->nodelists[node];
2619 if (l3)
aab2207c 2620 drain_array(cachep, l3, l3->shared, 1, node);
e498be7d 2621 }
1da177e4
LT
2622}
2623
ed11d9eb
CL
2624/*
2625 * Remove slabs from the list of free slabs.
2626 * Specify the number of slabs to drain in tofree.
2627 *
2628 * Returns the actual number of slabs released.
2629 */
2630static int drain_freelist(struct kmem_cache *cache,
2631 struct kmem_list3 *l3, int tofree)
1da177e4 2632{
ed11d9eb
CL
2633 struct list_head *p;
2634 int nr_freed;
1da177e4 2635 struct slab *slabp;
1da177e4 2636
ed11d9eb
CL
2637 nr_freed = 0;
2638 while (nr_freed < tofree && !list_empty(&l3->slabs_free)) {
1da177e4 2639
ed11d9eb 2640 spin_lock_irq(&l3->list_lock);
e498be7d 2641 p = l3->slabs_free.prev;
ed11d9eb
CL
2642 if (p == &l3->slabs_free) {
2643 spin_unlock_irq(&l3->list_lock);
2644 goto out;
2645 }
1da177e4 2646
ed11d9eb 2647 slabp = list_entry(p, struct slab, list);
1da177e4 2648#if DEBUG
40094fa6 2649 BUG_ON(slabp->inuse);
1da177e4
LT
2650#endif
2651 list_del(&slabp->list);
ed11d9eb
CL
2652 /*
2653 * Safe to drop the lock. The slab is no longer linked
2654 * to the cache.
2655 */
2656 l3->free_objects -= cache->num;
e498be7d 2657 spin_unlock_irq(&l3->list_lock);
ed11d9eb
CL
2658 slab_destroy(cache, slabp);
2659 nr_freed++;
1da177e4 2660 }
ed11d9eb
CL
2661out:
2662 return nr_freed;
1da177e4
LT
2663}
2664
18004c5d 2665/* Called with slab_mutex held to protect against cpu hotplug */
343e0d7a 2666static int __cache_shrink(struct kmem_cache *cachep)
e498be7d
CL
2667{
2668 int ret = 0, i = 0;
2669 struct kmem_list3 *l3;
2670
2671 drain_cpu_caches(cachep);
2672
2673 check_irq_on();
2674 for_each_online_node(i) {
2675 l3 = cachep->nodelists[i];
ed11d9eb
CL
2676 if (!l3)
2677 continue;
2678
2679 drain_freelist(cachep, l3, l3->free_objects);
2680
2681 ret += !list_empty(&l3->slabs_full) ||
2682 !list_empty(&l3->slabs_partial);
e498be7d
CL
2683 }
2684 return (ret ? 1 : 0);
2685}
2686
1da177e4
LT
2687/**
2688 * kmem_cache_shrink - Shrink a cache.
2689 * @cachep: The cache to shrink.
2690 *
2691 * Releases as many slabs as possible for a cache.
2692 * To help debugging, a zero exit status indicates all slabs were released.
2693 */
343e0d7a 2694int kmem_cache_shrink(struct kmem_cache *cachep)
1da177e4 2695{
8f5be20b 2696 int ret;
40094fa6 2697 BUG_ON(!cachep || in_interrupt());
1da177e4 2698
95402b38 2699 get_online_cpus();
18004c5d 2700 mutex_lock(&slab_mutex);
8f5be20b 2701 ret = __cache_shrink(cachep);
18004c5d 2702 mutex_unlock(&slab_mutex);
95402b38 2703 put_online_cpus();
8f5be20b 2704 return ret;
1da177e4
LT
2705}
2706EXPORT_SYMBOL(kmem_cache_shrink);
2707
945cf2b6 2708int __kmem_cache_shutdown(struct kmem_cache *cachep)
1da177e4 2709{
12c3667f
CL
2710 int i;
2711 struct kmem_list3 *l3;
2712 int rc = __cache_shrink(cachep);
1da177e4 2713
12c3667f
CL
2714 if (rc)
2715 return rc;
1da177e4 2716
12c3667f
CL
2717 for_each_online_cpu(i)
2718 kfree(cachep->array[i]);
1da177e4 2719
12c3667f
CL
2720 /* NUMA: free the list3 structures */
2721 for_each_online_node(i) {
2722 l3 = cachep->nodelists[i];
2723 if (l3) {
2724 kfree(l3->shared);
2725 free_alien_cache(l3->alien);
2726 kfree(l3);
2727 }
2728 }
2729 return 0;
1da177e4 2730}
1da177e4 2731
e5ac9c5a
RT
2732/*
2733 * Get the memory for a slab management obj.
2734 * For a slab cache when the slab descriptor is off-slab, slab descriptors
2735 * always come from malloc_sizes caches. The slab descriptor cannot
2736 * come from the same cache which is getting created because,
2737 * when we are searching for an appropriate cache for these
2738 * descriptors in kmem_cache_create, we search through the malloc_sizes array.
2739 * If we are creating a malloc_sizes cache here it would not be visible to
2740 * kmem_find_general_cachep till the initialization is complete.
2741 * Hence we cannot have slabp_cache same as the original cache.
2742 */
343e0d7a 2743static struct slab *alloc_slabmgmt(struct kmem_cache *cachep, void *objp,
5b74ada7
RT
2744 int colour_off, gfp_t local_flags,
2745 int nodeid)
1da177e4
LT
2746{
2747 struct slab *slabp;
b28a02de 2748
1da177e4
LT
2749 if (OFF_SLAB(cachep)) {
2750 /* Slab management obj is off-slab. */
5b74ada7 2751 slabp = kmem_cache_alloc_node(cachep->slabp_cache,
8759ec50 2752 local_flags, nodeid);
d5cff635
CM
2753 /*
2754 * If the first object in the slab is leaked (it's allocated
2755 * but no one has a reference to it), we want to make sure
2756 * kmemleak does not treat the ->s_mem pointer as a reference
2757 * to the object. Otherwise we will not report the leak.
2758 */
c017b4be
CM
2759 kmemleak_scan_area(&slabp->list, sizeof(struct list_head),
2760 local_flags);
1da177e4
LT
2761 if (!slabp)
2762 return NULL;
2763 } else {
b28a02de 2764 slabp = objp + colour_off;
1da177e4
LT
2765 colour_off += cachep->slab_size;
2766 }
2767 slabp->inuse = 0;
2768 slabp->colouroff = colour_off;
b28a02de 2769 slabp->s_mem = objp + colour_off;
5b74ada7 2770 slabp->nodeid = nodeid;
e51bfd0a 2771 slabp->free = 0;
1da177e4
LT
2772 return slabp;
2773}
2774
2775static inline kmem_bufctl_t *slab_bufctl(struct slab *slabp)
2776{
b28a02de 2777 return (kmem_bufctl_t *) (slabp + 1);
1da177e4
LT
2778}
2779
343e0d7a 2780static void cache_init_objs(struct kmem_cache *cachep,
a35afb83 2781 struct slab *slabp)
1da177e4
LT
2782{
2783 int i;
2784
2785 for (i = 0; i < cachep->num; i++) {
8fea4e96 2786 void *objp = index_to_obj(cachep, slabp, i);
1da177e4
LT
2787#if DEBUG
2788 /* need to poison the objs? */
2789 if (cachep->flags & SLAB_POISON)
2790 poison_obj(cachep, objp, POISON_FREE);
2791 if (cachep->flags & SLAB_STORE_USER)
2792 *dbg_userword(cachep, objp) = NULL;
2793
2794 if (cachep->flags & SLAB_RED_ZONE) {
2795 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
2796 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
2797 }
2798 /*
a737b3e2
AM
2799 * Constructors are not allowed to allocate memory from the same
2800 * cache which they are a constructor for. Otherwise, deadlock.
2801 * They must also be threaded.
1da177e4
LT
2802 */
2803 if (cachep->ctor && !(cachep->flags & SLAB_POISON))
51cc5068 2804 cachep->ctor(objp + obj_offset(cachep));
1da177e4
LT
2805
2806 if (cachep->flags & SLAB_RED_ZONE) {
2807 if (*dbg_redzone2(cachep, objp) != RED_INACTIVE)
2808 slab_error(cachep, "constructor overwrote the"
b28a02de 2809 " end of an object");
1da177e4
LT
2810 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE)
2811 slab_error(cachep, "constructor overwrote the"
b28a02de 2812 " start of an object");
1da177e4 2813 }
3b0efdfa 2814 if ((cachep->size % PAGE_SIZE) == 0 &&
a737b3e2 2815 OFF_SLAB(cachep) && cachep->flags & SLAB_POISON)
b28a02de 2816 kernel_map_pages(virt_to_page(objp),
3b0efdfa 2817 cachep->size / PAGE_SIZE, 0);
1da177e4
LT
2818#else
2819 if (cachep->ctor)
51cc5068 2820 cachep->ctor(objp);
1da177e4 2821#endif
b28a02de 2822 slab_bufctl(slabp)[i] = i + 1;
1da177e4 2823 }
b28a02de 2824 slab_bufctl(slabp)[i - 1] = BUFCTL_END;
1da177e4
LT
2825}
2826
343e0d7a 2827static void kmem_flagcheck(struct kmem_cache *cachep, gfp_t flags)
1da177e4 2828{
4b51d669
CL
2829 if (CONFIG_ZONE_DMA_FLAG) {
2830 if (flags & GFP_DMA)
a618e89f 2831 BUG_ON(!(cachep->allocflags & GFP_DMA));
4b51d669 2832 else
a618e89f 2833 BUG_ON(cachep->allocflags & GFP_DMA);
4b51d669 2834 }
1da177e4
LT
2835}
2836
a737b3e2
AM
2837static void *slab_get_obj(struct kmem_cache *cachep, struct slab *slabp,
2838 int nodeid)
78d382d7 2839{
8fea4e96 2840 void *objp = index_to_obj(cachep, slabp, slabp->free);
78d382d7
MD
2841 kmem_bufctl_t next;
2842
2843 slabp->inuse++;
2844 next = slab_bufctl(slabp)[slabp->free];
2845#if DEBUG
2846 slab_bufctl(slabp)[slabp->free] = BUFCTL_FREE;
2847 WARN_ON(slabp->nodeid != nodeid);
2848#endif
2849 slabp->free = next;
2850
2851 return objp;
2852}
2853
a737b3e2
AM
2854static void slab_put_obj(struct kmem_cache *cachep, struct slab *slabp,
2855 void *objp, int nodeid)
78d382d7 2856{
8fea4e96 2857 unsigned int objnr = obj_to_index(cachep, slabp, objp);
78d382d7
MD
2858
2859#if DEBUG
2860 /* Verify that the slab belongs to the intended node */
2861 WARN_ON(slabp->nodeid != nodeid);
2862
871751e2 2863 if (slab_bufctl(slabp)[objnr] + 1 <= SLAB_LIMIT + 1) {
78d382d7 2864 printk(KERN_ERR "slab: double free detected in cache "
a737b3e2 2865 "'%s', objp %p\n", cachep->name, objp);
78d382d7
MD
2866 BUG();
2867 }
2868#endif
2869 slab_bufctl(slabp)[objnr] = slabp->free;
2870 slabp->free = objnr;
2871 slabp->inuse--;
2872}
2873
4776874f
PE
2874/*
2875 * Map pages beginning at addr to the given cache and slab. This is required
2876 * for the slab allocator to be able to lookup the cache and slab of a
ccd35fb9 2877 * virtual address for kfree, ksize, and slab debugging.
4776874f
PE
2878 */
2879static void slab_map_pages(struct kmem_cache *cache, struct slab *slab,
2880 void *addr)
1da177e4 2881{
4776874f 2882 int nr_pages;
1da177e4
LT
2883 struct page *page;
2884
4776874f 2885 page = virt_to_page(addr);
84097518 2886
4776874f 2887 nr_pages = 1;
84097518 2888 if (likely(!PageCompound(page)))
4776874f
PE
2889 nr_pages <<= cache->gfporder;
2890
1da177e4 2891 do {
35026088
CL
2892 page->slab_cache = cache;
2893 page->slab_page = slab;
1da177e4 2894 page++;
4776874f 2895 } while (--nr_pages);
1da177e4
LT
2896}
2897
2898/*
2899 * Grow (by 1) the number of slabs within a cache. This is called by
2900 * kmem_cache_alloc() when there are no active objs left in a cache.
2901 */
3c517a61
CL
2902static int cache_grow(struct kmem_cache *cachep,
2903 gfp_t flags, int nodeid, void *objp)
1da177e4 2904{
b28a02de 2905 struct slab *slabp;
b28a02de
PE
2906 size_t offset;
2907 gfp_t local_flags;
e498be7d 2908 struct kmem_list3 *l3;
1da177e4 2909
a737b3e2
AM
2910 /*
2911 * Be lazy and only check for valid flags here, keeping it out of the
2912 * critical path in kmem_cache_alloc().
1da177e4 2913 */
6cb06229
CL
2914 BUG_ON(flags & GFP_SLAB_BUG_MASK);
2915 local_flags = flags & (GFP_CONSTRAINT_MASK|GFP_RECLAIM_MASK);
1da177e4 2916
2e1217cf 2917 /* Take the l3 list lock to change the colour_next on this node */
1da177e4 2918 check_irq_off();
2e1217cf
RT
2919 l3 = cachep->nodelists[nodeid];
2920 spin_lock(&l3->list_lock);
1da177e4
LT
2921
2922 /* Get colour for the slab, and cal the next value. */
2e1217cf
RT
2923 offset = l3->colour_next;
2924 l3->colour_next++;
2925 if (l3->colour_next >= cachep->colour)
2926 l3->colour_next = 0;
2927 spin_unlock(&l3->list_lock);
1da177e4 2928
2e1217cf 2929 offset *= cachep->colour_off;
1da177e4
LT
2930
2931 if (local_flags & __GFP_WAIT)
2932 local_irq_enable();
2933
2934 /*
2935 * The test for missing atomic flag is performed here, rather than
2936 * the more obvious place, simply to reduce the critical path length
2937 * in kmem_cache_alloc(). If a caller is seriously mis-behaving they
2938 * will eventually be caught here (where it matters).
2939 */
2940 kmem_flagcheck(cachep, flags);
2941
a737b3e2
AM
2942 /*
2943 * Get mem for the objs. Attempt to allocate a physical page from
2944 * 'nodeid'.
e498be7d 2945 */
3c517a61 2946 if (!objp)
b8c1c5da 2947 objp = kmem_getpages(cachep, local_flags, nodeid);
a737b3e2 2948 if (!objp)
1da177e4
LT
2949 goto failed;
2950
2951 /* Get slab management. */
3c517a61 2952 slabp = alloc_slabmgmt(cachep, objp, offset,
6cb06229 2953 local_flags & ~GFP_CONSTRAINT_MASK, nodeid);
a737b3e2 2954 if (!slabp)
1da177e4
LT
2955 goto opps1;
2956
4776874f 2957 slab_map_pages(cachep, slabp, objp);
1da177e4 2958
a35afb83 2959 cache_init_objs(cachep, slabp);
1da177e4
LT
2960
2961 if (local_flags & __GFP_WAIT)
2962 local_irq_disable();
2963 check_irq_off();
e498be7d 2964 spin_lock(&l3->list_lock);
1da177e4
LT
2965
2966 /* Make slab active. */
e498be7d 2967 list_add_tail(&slabp->list, &(l3->slabs_free));
1da177e4 2968 STATS_INC_GROWN(cachep);
e498be7d
CL
2969 l3->free_objects += cachep->num;
2970 spin_unlock(&l3->list_lock);
1da177e4 2971 return 1;
a737b3e2 2972opps1:
1da177e4 2973 kmem_freepages(cachep, objp);
a737b3e2 2974failed:
1da177e4
LT
2975 if (local_flags & __GFP_WAIT)
2976 local_irq_disable();
2977 return 0;
2978}
2979
2980#if DEBUG
2981
2982/*
2983 * Perform extra freeing checks:
2984 * - detect bad pointers.
2985 * - POISON/RED_ZONE checking
1da177e4
LT
2986 */
2987static void kfree_debugcheck(const void *objp)
2988{
1da177e4
LT
2989 if (!virt_addr_valid(objp)) {
2990 printk(KERN_ERR "kfree_debugcheck: out of range ptr %lxh.\n",
b28a02de
PE
2991 (unsigned long)objp);
2992 BUG();
1da177e4 2993 }
1da177e4
LT
2994}
2995
58ce1fd5
PE
2996static inline void verify_redzone_free(struct kmem_cache *cache, void *obj)
2997{
b46b8f19 2998 unsigned long long redzone1, redzone2;
58ce1fd5
PE
2999
3000 redzone1 = *dbg_redzone1(cache, obj);
3001 redzone2 = *dbg_redzone2(cache, obj);
3002
3003 /*
3004 * Redzone is ok.
3005 */
3006 if (redzone1 == RED_ACTIVE && redzone2 == RED_ACTIVE)
3007 return;
3008
3009 if (redzone1 == RED_INACTIVE && redzone2 == RED_INACTIVE)
3010 slab_error(cache, "double free detected");
3011 else
3012 slab_error(cache, "memory outside object was overwritten");
3013
b46b8f19 3014 printk(KERN_ERR "%p: redzone 1:0x%llx, redzone 2:0x%llx.\n",
58ce1fd5
PE
3015 obj, redzone1, redzone2);
3016}
3017
343e0d7a 3018static void *cache_free_debugcheck(struct kmem_cache *cachep, void *objp,
7c0cb9c6 3019 unsigned long caller)
1da177e4
LT
3020{
3021 struct page *page;
3022 unsigned int objnr;
3023 struct slab *slabp;
3024
80cbd911
MW
3025 BUG_ON(virt_to_cache(objp) != cachep);
3026
3dafccf2 3027 objp -= obj_offset(cachep);
1da177e4 3028 kfree_debugcheck(objp);
b49af68f 3029 page = virt_to_head_page(objp);
1da177e4 3030
35026088 3031 slabp = page->slab_page;
1da177e4
LT
3032
3033 if (cachep->flags & SLAB_RED_ZONE) {
58ce1fd5 3034 verify_redzone_free(cachep, objp);
1da177e4
LT
3035 *dbg_redzone1(cachep, objp) = RED_INACTIVE;
3036 *dbg_redzone2(cachep, objp) = RED_INACTIVE;
3037 }
3038 if (cachep->flags & SLAB_STORE_USER)
7c0cb9c6 3039 *dbg_userword(cachep, objp) = (void *)caller;
1da177e4 3040
8fea4e96 3041 objnr = obj_to_index(cachep, slabp, objp);
1da177e4
LT
3042
3043 BUG_ON(objnr >= cachep->num);
8fea4e96 3044 BUG_ON(objp != index_to_obj(cachep, slabp, objnr));
1da177e4 3045
871751e2
AV
3046#ifdef CONFIG_DEBUG_SLAB_LEAK
3047 slab_bufctl(slabp)[objnr] = BUFCTL_FREE;
3048#endif
1da177e4
LT
3049 if (cachep->flags & SLAB_POISON) {
3050#ifdef CONFIG_DEBUG_PAGEALLOC
3b0efdfa 3051 if ((cachep->size % PAGE_SIZE)==0 && OFF_SLAB(cachep)) {
7c0cb9c6 3052 store_stackinfo(cachep, objp, caller);
b28a02de 3053 kernel_map_pages(virt_to_page(objp),
3b0efdfa 3054 cachep->size / PAGE_SIZE, 0);
1da177e4
LT
3055 } else {
3056 poison_obj(cachep, objp, POISON_FREE);
3057 }
3058#else
3059 poison_obj(cachep, objp, POISON_FREE);
3060#endif
3061 }
3062 return objp;
3063}
3064
343e0d7a 3065static void check_slabp(struct kmem_cache *cachep, struct slab *slabp)
1da177e4
LT
3066{
3067 kmem_bufctl_t i;
3068 int entries = 0;
b28a02de 3069
1da177e4
LT
3070 /* Check slab's freelist to see if this obj is there. */
3071 for (i = slabp->free; i != BUFCTL_END; i = slab_bufctl(slabp)[i]) {
3072 entries++;
3073 if (entries > cachep->num || i >= cachep->num)
3074 goto bad;
3075 }
3076 if (entries != cachep->num - slabp->inuse) {
a737b3e2
AM
3077bad:
3078 printk(KERN_ERR "slab: Internal list corruption detected in "
face37f5
DJ
3079 "cache '%s'(%d), slabp %p(%d). Tainted(%s). Hexdump:\n",
3080 cachep->name, cachep->num, slabp, slabp->inuse,
3081 print_tainted());
fdde6abb
SAS
3082 print_hex_dump(KERN_ERR, "", DUMP_PREFIX_OFFSET, 16, 1, slabp,
3083 sizeof(*slabp) + cachep->num * sizeof(kmem_bufctl_t),
3084 1);
1da177e4
LT
3085 BUG();
3086 }
3087}
3088#else
3089#define kfree_debugcheck(x) do { } while(0)
3090#define cache_free_debugcheck(x,objp,z) (objp)
3091#define check_slabp(x,y) do { } while(0)
3092#endif
3093
072bb0aa
MG
3094static void *cache_alloc_refill(struct kmem_cache *cachep, gfp_t flags,
3095 bool force_refill)
1da177e4
LT
3096{
3097 int batchcount;
3098 struct kmem_list3 *l3;
3099 struct array_cache *ac;
1ca4cb24
PE
3100 int node;
3101
1da177e4 3102 check_irq_off();
7d6e6d09 3103 node = numa_mem_id();
072bb0aa
MG
3104 if (unlikely(force_refill))
3105 goto force_grow;
3106retry:
9a2dba4b 3107 ac = cpu_cache_get(cachep);
1da177e4
LT
3108 batchcount = ac->batchcount;
3109 if (!ac->touched && batchcount > BATCHREFILL_LIMIT) {
a737b3e2
AM
3110 /*
3111 * If there was little recent activity on this cache, then
3112 * perform only a partial refill. Otherwise we could generate
3113 * refill bouncing.
1da177e4
LT
3114 */
3115 batchcount = BATCHREFILL_LIMIT;
3116 }
1ca4cb24 3117 l3 = cachep->nodelists[node];
e498be7d
CL
3118
3119 BUG_ON(ac->avail > 0 || !l3);
3120 spin_lock(&l3->list_lock);
1da177e4 3121
3ded175a 3122 /* See if we can refill from the shared array */
44b57f1c
NP
3123 if (l3->shared && transfer_objects(ac, l3->shared, batchcount)) {
3124 l3->shared->touched = 1;
3ded175a 3125 goto alloc_done;
44b57f1c 3126 }
3ded175a 3127
1da177e4
LT
3128 while (batchcount > 0) {
3129 struct list_head *entry;
3130 struct slab *slabp;
3131 /* Get slab alloc is to come from. */
3132 entry = l3->slabs_partial.next;
3133 if (entry == &l3->slabs_partial) {
3134 l3->free_touched = 1;
3135 entry = l3->slabs_free.next;
3136 if (entry == &l3->slabs_free)
3137 goto must_grow;
3138 }
3139
3140 slabp = list_entry(entry, struct slab, list);
3141 check_slabp(cachep, slabp);
3142 check_spinlock_acquired(cachep);
714b8171
PE
3143
3144 /*
3145 * The slab was either on partial or free list so
3146 * there must be at least one object available for
3147 * allocation.
3148 */
249b9f33 3149 BUG_ON(slabp->inuse >= cachep->num);
714b8171 3150
1da177e4 3151 while (slabp->inuse < cachep->num && batchcount--) {
1da177e4
LT
3152 STATS_INC_ALLOCED(cachep);
3153 STATS_INC_ACTIVE(cachep);
3154 STATS_SET_HIGH(cachep);
3155
072bb0aa
MG
3156 ac_put_obj(cachep, ac, slab_get_obj(cachep, slabp,
3157 node));
1da177e4
LT
3158 }
3159 check_slabp(cachep, slabp);
3160
3161 /* move slabp to correct slabp list: */
3162 list_del(&slabp->list);
3163 if (slabp->free == BUFCTL_END)
3164 list_add(&slabp->list, &l3->slabs_full);
3165 else
3166 list_add(&slabp->list, &l3->slabs_partial);
3167 }
3168
a737b3e2 3169must_grow:
1da177e4 3170 l3->free_objects -= ac->avail;
a737b3e2 3171alloc_done:
e498be7d 3172 spin_unlock(&l3->list_lock);
1da177e4
LT
3173
3174 if (unlikely(!ac->avail)) {
3175 int x;
072bb0aa 3176force_grow:
3c517a61 3177 x = cache_grow(cachep, flags | GFP_THISNODE, node, NULL);
e498be7d 3178
a737b3e2 3179 /* cache_grow can reenable interrupts, then ac could change. */
9a2dba4b 3180 ac = cpu_cache_get(cachep);
51cd8e6f 3181 node = numa_mem_id();
072bb0aa
MG
3182
3183 /* no objects in sight? abort */
3184 if (!x && (ac->avail == 0 || force_refill))
1da177e4
LT
3185 return NULL;
3186
a737b3e2 3187 if (!ac->avail) /* objects refilled by interrupt? */
1da177e4
LT
3188 goto retry;
3189 }
3190 ac->touched = 1;
072bb0aa
MG
3191
3192 return ac_get_obj(cachep, ac, flags, force_refill);
1da177e4
LT
3193}
3194
a737b3e2
AM
3195static inline void cache_alloc_debugcheck_before(struct kmem_cache *cachep,
3196 gfp_t flags)
1da177e4
LT
3197{
3198 might_sleep_if(flags & __GFP_WAIT);
3199#if DEBUG
3200 kmem_flagcheck(cachep, flags);
3201#endif
3202}
3203
3204#if DEBUG
a737b3e2 3205static void *cache_alloc_debugcheck_after(struct kmem_cache *cachep,
7c0cb9c6 3206 gfp_t flags, void *objp, unsigned long caller)
1da177e4 3207{
b28a02de 3208 if (!objp)
1da177e4 3209 return objp;
b28a02de 3210 if (cachep->flags & SLAB_POISON) {
1da177e4 3211#ifdef CONFIG_DEBUG_PAGEALLOC
3b0efdfa 3212 if ((cachep->size % PAGE_SIZE) == 0 && OFF_SLAB(cachep))
b28a02de 3213 kernel_map_pages(virt_to_page(objp),
3b0efdfa 3214 cachep->size / PAGE_SIZE, 1);
1da177e4
LT
3215 else
3216 check_poison_obj(cachep, objp);
3217#else
3218 check_poison_obj(cachep, objp);
3219#endif
3220 poison_obj(cachep, objp, POISON_INUSE);
3221 }
3222 if (cachep->flags & SLAB_STORE_USER)
7c0cb9c6 3223 *dbg_userword(cachep, objp) = (void *)caller;
1da177e4
LT
3224
3225 if (cachep->flags & SLAB_RED_ZONE) {
a737b3e2
AM
3226 if (*dbg_redzone1(cachep, objp) != RED_INACTIVE ||
3227 *dbg_redzone2(cachep, objp) != RED_INACTIVE) {
3228 slab_error(cachep, "double free, or memory outside"
3229 " object was overwritten");
b28a02de 3230 printk(KERN_ERR
b46b8f19 3231 "%p: redzone 1:0x%llx, redzone 2:0x%llx\n",
a737b3e2
AM
3232 objp, *dbg_redzone1(cachep, objp),
3233 *dbg_redzone2(cachep, objp));
1da177e4
LT
3234 }
3235 *dbg_redzone1(cachep, objp) = RED_ACTIVE;
3236 *dbg_redzone2(cachep, objp) = RED_ACTIVE;
3237 }
871751e2
AV
3238#ifdef CONFIG_DEBUG_SLAB_LEAK
3239 {
3240 struct slab *slabp;
3241 unsigned objnr;
3242
35026088 3243 slabp = virt_to_head_page(objp)->slab_page;
3b0efdfa 3244 objnr = (unsigned)(objp - slabp->s_mem) / cachep->size;
871751e2
AV
3245 slab_bufctl(slabp)[objnr] = BUFCTL_ACTIVE;
3246 }
3247#endif
3dafccf2 3248 objp += obj_offset(cachep);
4f104934 3249 if (cachep->ctor && cachep->flags & SLAB_POISON)
51cc5068 3250 cachep->ctor(objp);
7ea466f2
TH
3251 if (ARCH_SLAB_MINALIGN &&
3252 ((unsigned long)objp & (ARCH_SLAB_MINALIGN-1))) {
a44b56d3 3253 printk(KERN_ERR "0x%p: not aligned to ARCH_SLAB_MINALIGN=%d\n",
c225150b 3254 objp, (int)ARCH_SLAB_MINALIGN);
a44b56d3 3255 }
1da177e4
LT
3256 return objp;
3257}
3258#else
3259#define cache_alloc_debugcheck_after(a,b,objp,d) (objp)
3260#endif
3261
773ff60e 3262static bool slab_should_failslab(struct kmem_cache *cachep, gfp_t flags)
8a8b6502 3263{
9b030cb8 3264 if (cachep == kmem_cache)
773ff60e 3265 return false;
8a8b6502 3266
8c138bc0 3267 return should_failslab(cachep->object_size, flags, cachep->flags);
8a8b6502
AM
3268}
3269
343e0d7a 3270static inline void *____cache_alloc(struct kmem_cache *cachep, gfp_t flags)
1da177e4 3271{
b28a02de 3272 void *objp;
1da177e4 3273 struct array_cache *ac;
072bb0aa 3274 bool force_refill = false;
1da177e4 3275
5c382300 3276 check_irq_off();
8a8b6502 3277
9a2dba4b 3278 ac = cpu_cache_get(cachep);
1da177e4 3279 if (likely(ac->avail)) {
1da177e4 3280 ac->touched = 1;
072bb0aa
MG
3281 objp = ac_get_obj(cachep, ac, flags, false);
3282
ddbf2e83 3283 /*
072bb0aa
MG
3284 * Allow for the possibility all avail objects are not allowed
3285 * by the current flags
ddbf2e83 3286 */
072bb0aa
MG
3287 if (objp) {
3288 STATS_INC_ALLOCHIT(cachep);
3289 goto out;
3290 }
3291 force_refill = true;
1da177e4 3292 }
072bb0aa
MG
3293
3294 STATS_INC_ALLOCMISS(cachep);
3295 objp = cache_alloc_refill(cachep, flags, force_refill);
3296 /*
3297 * the 'ac' may be updated by cache_alloc_refill(),
3298 * and kmemleak_erase() requires its correct value.
3299 */
3300 ac = cpu_cache_get(cachep);
3301
3302out:
d5cff635
CM
3303 /*
3304 * To avoid a false negative, if an object that is in one of the
3305 * per-CPU caches is leaked, we need to make sure kmemleak doesn't
3306 * treat the array pointers as a reference to the object.
3307 */
f3d8b53a
O
3308 if (objp)
3309 kmemleak_erase(&ac->entry[ac->avail]);
5c382300
AK
3310 return objp;
3311}
3312
e498be7d 3313#ifdef CONFIG_NUMA
c61afb18 3314/*
b2455396 3315 * Try allocating on another node if PF_SPREAD_SLAB|PF_MEMPOLICY.
c61afb18
PJ
3316 *
3317 * If we are in_interrupt, then process context, including cpusets and
3318 * mempolicy, may not apply and should not be used for allocation policy.
3319 */
3320static void *alternate_node_alloc(struct kmem_cache *cachep, gfp_t flags)
3321{
3322 int nid_alloc, nid_here;
3323
765c4507 3324 if (in_interrupt() || (flags & __GFP_THISNODE))
c61afb18 3325 return NULL;
7d6e6d09 3326 nid_alloc = nid_here = numa_mem_id();
c61afb18 3327 if (cpuset_do_slab_mem_spread() && (cachep->flags & SLAB_MEM_SPREAD))
6adef3eb 3328 nid_alloc = cpuset_slab_spread_node();
c61afb18 3329 else if (current->mempolicy)
e7b691b0 3330 nid_alloc = slab_node();
c61afb18 3331 if (nid_alloc != nid_here)
8b98c169 3332 return ____cache_alloc_node(cachep, flags, nid_alloc);
c61afb18
PJ
3333 return NULL;
3334}
3335
765c4507
CL
3336/*
3337 * Fallback function if there was no memory available and no objects on a
3c517a61
CL
3338 * certain node and fall back is permitted. First we scan all the
3339 * available nodelists for available objects. If that fails then we
3340 * perform an allocation without specifying a node. This allows the page
3341 * allocator to do its reclaim / fallback magic. We then insert the
3342 * slab into the proper nodelist and then allocate from it.
765c4507 3343 */
8c8cc2c1 3344static void *fallback_alloc(struct kmem_cache *cache, gfp_t flags)
765c4507 3345{
8c8cc2c1
PE
3346 struct zonelist *zonelist;
3347 gfp_t local_flags;
dd1a239f 3348 struct zoneref *z;
54a6eb5c
MG
3349 struct zone *zone;
3350 enum zone_type high_zoneidx = gfp_zone(flags);
765c4507 3351 void *obj = NULL;
3c517a61 3352 int nid;
cc9a6c87 3353 unsigned int cpuset_mems_cookie;
8c8cc2c1
PE
3354
3355 if (flags & __GFP_THISNODE)
3356 return NULL;
3357
6cb06229 3358 local_flags = flags & (GFP_CONSTRAINT_MASK|GFP_RECLAIM_MASK);
765c4507 3359
cc9a6c87
MG
3360retry_cpuset:
3361 cpuset_mems_cookie = get_mems_allowed();
e7b691b0 3362 zonelist = node_zonelist(slab_node(), flags);
cc9a6c87 3363
3c517a61
CL
3364retry:
3365 /*
3366 * Look through allowed nodes for objects available
3367 * from existing per node queues.
3368 */
54a6eb5c
MG
3369 for_each_zone_zonelist(zone, z, zonelist, high_zoneidx) {
3370 nid = zone_to_nid(zone);
aedb0eb1 3371
54a6eb5c 3372 if (cpuset_zone_allowed_hardwall(zone, flags) &&
3c517a61 3373 cache->nodelists[nid] &&
481c5346 3374 cache->nodelists[nid]->free_objects) {
3c517a61
CL
3375 obj = ____cache_alloc_node(cache,
3376 flags | GFP_THISNODE, nid);
481c5346
CL
3377 if (obj)
3378 break;
3379 }
3c517a61
CL
3380 }
3381
cfce6604 3382 if (!obj) {
3c517a61
CL
3383 /*
3384 * This allocation will be performed within the constraints
3385 * of the current cpuset / memory policy requirements.
3386 * We may trigger various forms of reclaim on the allowed
3387 * set and go into memory reserves if necessary.
3388 */
dd47ea75
CL
3389 if (local_flags & __GFP_WAIT)
3390 local_irq_enable();
3391 kmem_flagcheck(cache, flags);
7d6e6d09 3392 obj = kmem_getpages(cache, local_flags, numa_mem_id());
dd47ea75
CL
3393 if (local_flags & __GFP_WAIT)
3394 local_irq_disable();
3c517a61
CL
3395 if (obj) {
3396 /*
3397 * Insert into the appropriate per node queues
3398 */
3399 nid = page_to_nid(virt_to_page(obj));
3400 if (cache_grow(cache, flags, nid, obj)) {
3401 obj = ____cache_alloc_node(cache,
3402 flags | GFP_THISNODE, nid);
3403 if (!obj)
3404 /*
3405 * Another processor may allocate the
3406 * objects in the slab since we are
3407 * not holding any locks.
3408 */
3409 goto retry;
3410 } else {
b6a60451 3411 /* cache_grow already freed obj */
3c517a61
CL
3412 obj = NULL;
3413 }
3414 }
aedb0eb1 3415 }
cc9a6c87
MG
3416
3417 if (unlikely(!put_mems_allowed(cpuset_mems_cookie) && !obj))
3418 goto retry_cpuset;
765c4507
CL
3419 return obj;
3420}
3421
e498be7d
CL
3422/*
3423 * A interface to enable slab creation on nodeid
1da177e4 3424 */
8b98c169 3425static void *____cache_alloc_node(struct kmem_cache *cachep, gfp_t flags,
a737b3e2 3426 int nodeid)
e498be7d
CL
3427{
3428 struct list_head *entry;
b28a02de
PE
3429 struct slab *slabp;
3430 struct kmem_list3 *l3;
3431 void *obj;
b28a02de
PE
3432 int x;
3433
3434 l3 = cachep->nodelists[nodeid];
3435 BUG_ON(!l3);
3436
a737b3e2 3437retry:
ca3b9b91 3438 check_irq_off();
b28a02de
PE
3439 spin_lock(&l3->list_lock);
3440 entry = l3->slabs_partial.next;
3441 if (entry == &l3->slabs_partial) {
3442 l3->free_touched = 1;
3443 entry = l3->slabs_free.next;
3444 if (entry == &l3->slabs_free)
3445 goto must_grow;
3446 }
3447
3448 slabp = list_entry(entry, struct slab, list);
3449 check_spinlock_acquired_node(cachep, nodeid);
3450 check_slabp(cachep, slabp);
3451
3452 STATS_INC_NODEALLOCS(cachep);
3453 STATS_INC_ACTIVE(cachep);
3454 STATS_SET_HIGH(cachep);
3455
3456 BUG_ON(slabp->inuse == cachep->num);
3457
78d382d7 3458 obj = slab_get_obj(cachep, slabp, nodeid);
b28a02de
PE
3459 check_slabp(cachep, slabp);
3460 l3->free_objects--;
3461 /* move slabp to correct slabp list: */
3462 list_del(&slabp->list);
3463
a737b3e2 3464 if (slabp->free == BUFCTL_END)
b28a02de 3465 list_add(&slabp->list, &l3->slabs_full);
a737b3e2 3466 else
b28a02de 3467 list_add(&slabp->list, &l3->slabs_partial);
e498be7d 3468
b28a02de
PE
3469 spin_unlock(&l3->list_lock);
3470 goto done;
e498be7d 3471
a737b3e2 3472must_grow:
b28a02de 3473 spin_unlock(&l3->list_lock);
3c517a61 3474 x = cache_grow(cachep, flags | GFP_THISNODE, nodeid, NULL);
765c4507
CL
3475 if (x)
3476 goto retry;
1da177e4 3477
8c8cc2c1 3478 return fallback_alloc(cachep, flags);
e498be7d 3479
a737b3e2 3480done:
b28a02de 3481 return obj;
e498be7d 3482}
8c8cc2c1
PE
3483
3484/**
3485 * kmem_cache_alloc_node - Allocate an object on the specified node
3486 * @cachep: The cache to allocate from.
3487 * @flags: See kmalloc().
3488 * @nodeid: node number of the target node.
3489 * @caller: return address of caller, used for debug information
3490 *
3491 * Identical to kmem_cache_alloc but it will allocate memory on the given
3492 * node, which can improve the performance for cpu bound structures.
3493 *
3494 * Fallback to other node is possible if __GFP_THISNODE is not set.
3495 */
3496static __always_inline void *
48356303 3497slab_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid,
7c0cb9c6 3498 unsigned long caller)
8c8cc2c1
PE
3499{
3500 unsigned long save_flags;
3501 void *ptr;
7d6e6d09 3502 int slab_node = numa_mem_id();
8c8cc2c1 3503
dcce284a 3504 flags &= gfp_allowed_mask;
7e85ee0c 3505
cf40bd16
NP
3506 lockdep_trace_alloc(flags);
3507
773ff60e 3508 if (slab_should_failslab(cachep, flags))
824ebef1
AM
3509 return NULL;
3510
8c8cc2c1
PE
3511 cache_alloc_debugcheck_before(cachep, flags);
3512 local_irq_save(save_flags);
3513
eacbbae3 3514 if (nodeid == NUMA_NO_NODE)
7d6e6d09 3515 nodeid = slab_node;
8c8cc2c1
PE
3516
3517 if (unlikely(!cachep->nodelists[nodeid])) {
3518 /* Node not bootstrapped yet */
3519 ptr = fallback_alloc(cachep, flags);
3520 goto out;
3521 }
3522
7d6e6d09 3523 if (nodeid == slab_node) {
8c8cc2c1
PE
3524 /*
3525 * Use the locally cached objects if possible.
3526 * However ____cache_alloc does not allow fallback
3527 * to other nodes. It may fail while we still have
3528 * objects on other nodes available.
3529 */
3530 ptr = ____cache_alloc(cachep, flags);
3531 if (ptr)
3532 goto out;
3533 }
3534 /* ___cache_alloc_node can fall back to other nodes */
3535 ptr = ____cache_alloc_node(cachep, flags, nodeid);
3536 out:
3537 local_irq_restore(save_flags);
3538 ptr = cache_alloc_debugcheck_after(cachep, flags, ptr, caller);
8c138bc0 3539 kmemleak_alloc_recursive(ptr, cachep->object_size, 1, cachep->flags,
d5cff635 3540 flags);
8c8cc2c1 3541
c175eea4 3542 if (likely(ptr))
8c138bc0 3543 kmemcheck_slab_alloc(cachep, flags, ptr, cachep->object_size);
c175eea4 3544
d07dbea4 3545 if (unlikely((flags & __GFP_ZERO) && ptr))
8c138bc0 3546 memset(ptr, 0, cachep->object_size);
d07dbea4 3547
8c8cc2c1
PE
3548 return ptr;
3549}
3550
3551static __always_inline void *
3552__do_cache_alloc(struct kmem_cache *cache, gfp_t flags)
3553{
3554 void *objp;
3555
3556 if (unlikely(current->flags & (PF_SPREAD_SLAB | PF_MEMPOLICY))) {
3557 objp = alternate_node_alloc(cache, flags);
3558 if (objp)
3559 goto out;
3560 }
3561 objp = ____cache_alloc(cache, flags);
3562
3563 /*
3564 * We may just have run out of memory on the local node.
3565 * ____cache_alloc_node() knows how to locate memory on other nodes
3566 */
7d6e6d09
LS
3567 if (!objp)
3568 objp = ____cache_alloc_node(cache, flags, numa_mem_id());
8c8cc2c1
PE
3569
3570 out:
3571 return objp;
3572}
3573#else
3574
3575static __always_inline void *
3576__do_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
3577{
3578 return ____cache_alloc(cachep, flags);
3579}
3580
3581#endif /* CONFIG_NUMA */
3582
3583static __always_inline void *
48356303 3584slab_alloc(struct kmem_cache *cachep, gfp_t flags, unsigned long caller)
8c8cc2c1
PE
3585{
3586 unsigned long save_flags;
3587 void *objp;
3588
dcce284a 3589 flags &= gfp_allowed_mask;
7e85ee0c 3590
cf40bd16
NP
3591 lockdep_trace_alloc(flags);
3592
773ff60e 3593 if (slab_should_failslab(cachep, flags))
824ebef1
AM
3594 return NULL;
3595
8c8cc2c1
PE
3596 cache_alloc_debugcheck_before(cachep, flags);
3597 local_irq_save(save_flags);
3598 objp = __do_cache_alloc(cachep, flags);
3599 local_irq_restore(save_flags);
3600 objp = cache_alloc_debugcheck_after(cachep, flags, objp, caller);
8c138bc0 3601 kmemleak_alloc_recursive(objp, cachep->object_size, 1, cachep->flags,
d5cff635 3602 flags);
8c8cc2c1
PE
3603 prefetchw(objp);
3604
c175eea4 3605 if (likely(objp))
8c138bc0 3606 kmemcheck_slab_alloc(cachep, flags, objp, cachep->object_size);
c175eea4 3607
d07dbea4 3608 if (unlikely((flags & __GFP_ZERO) && objp))
8c138bc0 3609 memset(objp, 0, cachep->object_size);
d07dbea4 3610
8c8cc2c1
PE
3611 return objp;
3612}
e498be7d
CL
3613
3614/*
3615 * Caller needs to acquire correct kmem_list's list_lock
3616 */
343e0d7a 3617static void free_block(struct kmem_cache *cachep, void **objpp, int nr_objects,
b28a02de 3618 int node)
1da177e4
LT
3619{
3620 int i;
e498be7d 3621 struct kmem_list3 *l3;
1da177e4
LT
3622
3623 for (i = 0; i < nr_objects; i++) {
072bb0aa 3624 void *objp;
1da177e4 3625 struct slab *slabp;
1da177e4 3626
072bb0aa
MG
3627 clear_obj_pfmemalloc(&objpp[i]);
3628 objp = objpp[i];
3629
6ed5eb22 3630 slabp = virt_to_slab(objp);
ff69416e 3631 l3 = cachep->nodelists[node];
1da177e4 3632 list_del(&slabp->list);
ff69416e 3633 check_spinlock_acquired_node(cachep, node);
1da177e4 3634 check_slabp(cachep, slabp);
78d382d7 3635 slab_put_obj(cachep, slabp, objp, node);
1da177e4 3636 STATS_DEC_ACTIVE(cachep);
e498be7d 3637 l3->free_objects++;
1da177e4
LT
3638 check_slabp(cachep, slabp);
3639
3640 /* fixup slab chains */
3641 if (slabp->inuse == 0) {
e498be7d
CL
3642 if (l3->free_objects > l3->free_limit) {
3643 l3->free_objects -= cachep->num;
e5ac9c5a
RT
3644 /* No need to drop any previously held
3645 * lock here, even if we have a off-slab slab
3646 * descriptor it is guaranteed to come from
3647 * a different cache, refer to comments before
3648 * alloc_slabmgmt.
3649 */
1da177e4
LT
3650 slab_destroy(cachep, slabp);
3651 } else {
e498be7d 3652 list_add(&slabp->list, &l3->slabs_free);
1da177e4
LT
3653 }
3654 } else {
3655 /* Unconditionally move a slab to the end of the
3656 * partial list on free - maximum time for the
3657 * other objects to be freed, too.
3658 */
e498be7d 3659 list_add_tail(&slabp->list, &l3->slabs_partial);
1da177e4
LT
3660 }
3661 }
3662}
3663
343e0d7a 3664static void cache_flusharray(struct kmem_cache *cachep, struct array_cache *ac)
1da177e4
LT
3665{
3666 int batchcount;
e498be7d 3667 struct kmem_list3 *l3;
7d6e6d09 3668 int node = numa_mem_id();
1da177e4
LT
3669
3670 batchcount = ac->batchcount;
3671#if DEBUG
3672 BUG_ON(!batchcount || batchcount > ac->avail);
3673#endif
3674 check_irq_off();
ff69416e 3675 l3 = cachep->nodelists[node];
873623df 3676 spin_lock(&l3->list_lock);
e498be7d
CL
3677 if (l3->shared) {
3678 struct array_cache *shared_array = l3->shared;
b28a02de 3679 int max = shared_array->limit - shared_array->avail;
1da177e4
LT
3680 if (max) {
3681 if (batchcount > max)
3682 batchcount = max;
e498be7d 3683 memcpy(&(shared_array->entry[shared_array->avail]),
b28a02de 3684 ac->entry, sizeof(void *) * batchcount);
1da177e4
LT
3685 shared_array->avail += batchcount;
3686 goto free_done;
3687 }
3688 }
3689
ff69416e 3690 free_block(cachep, ac->entry, batchcount, node);
a737b3e2 3691free_done:
1da177e4
LT
3692#if STATS
3693 {
3694 int i = 0;
3695 struct list_head *p;
3696
e498be7d
CL
3697 p = l3->slabs_free.next;
3698 while (p != &(l3->slabs_free)) {
1da177e4
LT
3699 struct slab *slabp;
3700
3701 slabp = list_entry(p, struct slab, list);
3702 BUG_ON(slabp->inuse);
3703
3704 i++;
3705 p = p->next;
3706 }
3707 STATS_SET_FREEABLE(cachep, i);
3708 }
3709#endif
e498be7d 3710 spin_unlock(&l3->list_lock);
1da177e4 3711 ac->avail -= batchcount;
a737b3e2 3712 memmove(ac->entry, &(ac->entry[batchcount]), sizeof(void *)*ac->avail);
1da177e4
LT
3713}
3714
3715/*
a737b3e2
AM
3716 * Release an obj back to its cache. If the obj has a constructed state, it must
3717 * be in this state _before_ it is released. Called with disabled ints.
1da177e4 3718 */
a947eb95 3719static inline void __cache_free(struct kmem_cache *cachep, void *objp,
7c0cb9c6 3720 unsigned long caller)
1da177e4 3721{
9a2dba4b 3722 struct array_cache *ac = cpu_cache_get(cachep);
1da177e4
LT
3723
3724 check_irq_off();
d5cff635 3725 kmemleak_free_recursive(objp, cachep->flags);
a947eb95 3726 objp = cache_free_debugcheck(cachep, objp, caller);
1da177e4 3727
8c138bc0 3728 kmemcheck_slab_free(cachep, objp, cachep->object_size);
c175eea4 3729
1807a1aa
SS
3730 /*
3731 * Skip calling cache_free_alien() when the platform is not numa.
3732 * This will avoid cache misses that happen while accessing slabp (which
3733 * is per page memory reference) to get nodeid. Instead use a global
3734 * variable to skip the call, which is mostly likely to be present in
3735 * the cache.
3736 */
b6e68bc1 3737 if (nr_online_nodes > 1 && cache_free_alien(cachep, objp))
729bd0b7
PE
3738 return;
3739
1da177e4
LT
3740 if (likely(ac->avail < ac->limit)) {
3741 STATS_INC_FREEHIT(cachep);
1da177e4
LT
3742 } else {
3743 STATS_INC_FREEMISS(cachep);
3744 cache_flusharray(cachep, ac);
1da177e4 3745 }
42c8c99c 3746
072bb0aa 3747 ac_put_obj(cachep, ac, objp);
1da177e4
LT
3748}
3749
3750/**
3751 * kmem_cache_alloc - Allocate an object
3752 * @cachep: The cache to allocate from.
3753 * @flags: See kmalloc().
3754 *
3755 * Allocate an object from this cache. The flags are only relevant
3756 * if the cache has no available objects.
3757 */
343e0d7a 3758void *kmem_cache_alloc(struct kmem_cache *cachep, gfp_t flags)
1da177e4 3759{
48356303 3760 void *ret = slab_alloc(cachep, flags, _RET_IP_);
36555751 3761
ca2b84cb 3762 trace_kmem_cache_alloc(_RET_IP_, ret,
8c138bc0 3763 cachep->object_size, cachep->size, flags);
36555751
EGM
3764
3765 return ret;
1da177e4
LT
3766}
3767EXPORT_SYMBOL(kmem_cache_alloc);
3768
0f24f128 3769#ifdef CONFIG_TRACING
85beb586 3770void *
4052147c 3771kmem_cache_alloc_trace(struct kmem_cache *cachep, gfp_t flags, size_t size)
36555751 3772{
85beb586
SR
3773 void *ret;
3774
48356303 3775 ret = slab_alloc(cachep, flags, _RET_IP_);
85beb586
SR
3776
3777 trace_kmalloc(_RET_IP_, ret,
ff4fcd01 3778 size, cachep->size, flags);
85beb586 3779 return ret;
36555751 3780}
85beb586 3781EXPORT_SYMBOL(kmem_cache_alloc_trace);
36555751
EGM
3782#endif
3783
1da177e4 3784#ifdef CONFIG_NUMA
8b98c169
CH
3785void *kmem_cache_alloc_node(struct kmem_cache *cachep, gfp_t flags, int nodeid)
3786{
48356303 3787 void *ret = slab_alloc_node(cachep, flags, nodeid, _RET_IP_);
36555751 3788
ca2b84cb 3789 trace_kmem_cache_alloc_node(_RET_IP_, ret,
8c138bc0 3790 cachep->object_size, cachep->size,
ca2b84cb 3791 flags, nodeid);
36555751
EGM
3792
3793 return ret;
8b98c169 3794}
1da177e4
LT
3795EXPORT_SYMBOL(kmem_cache_alloc_node);
3796
0f24f128 3797#ifdef CONFIG_TRACING
4052147c 3798void *kmem_cache_alloc_node_trace(struct kmem_cache *cachep,
85beb586 3799 gfp_t flags,
4052147c
EG
3800 int nodeid,
3801 size_t size)
36555751 3802{
85beb586
SR
3803 void *ret;
3804
592f4145 3805 ret = slab_alloc_node(cachep, flags, nodeid, _RET_IP_);
7c0cb9c6 3806
85beb586 3807 trace_kmalloc_node(_RET_IP_, ret,
ff4fcd01 3808 size, cachep->size,
85beb586
SR
3809 flags, nodeid);
3810 return ret;
36555751 3811}
85beb586 3812EXPORT_SYMBOL(kmem_cache_alloc_node_trace);
36555751
EGM
3813#endif
3814
8b98c169 3815static __always_inline void *
7c0cb9c6 3816__do_kmalloc_node(size_t size, gfp_t flags, int node, unsigned long caller)
97e2bde4 3817{
343e0d7a 3818 struct kmem_cache *cachep;
97e2bde4
MS
3819
3820 cachep = kmem_find_general_cachep(size, flags);
6cb8f913
CL
3821 if (unlikely(ZERO_OR_NULL_PTR(cachep)))
3822 return cachep;
4052147c 3823 return kmem_cache_alloc_node_trace(cachep, flags, node, size);
97e2bde4 3824}
8b98c169 3825
0bb38a5c 3826#if defined(CONFIG_DEBUG_SLAB) || defined(CONFIG_TRACING)
8b98c169
CH
3827void *__kmalloc_node(size_t size, gfp_t flags, int node)
3828{
7c0cb9c6 3829 return __do_kmalloc_node(size, flags, node, _RET_IP_);
8b98c169 3830}
dbe5e69d 3831EXPORT_SYMBOL(__kmalloc_node);
8b98c169
CH
3832
3833void *__kmalloc_node_track_caller(size_t size, gfp_t flags,
ce71e27c 3834 int node, unsigned long caller)
8b98c169 3835{
7c0cb9c6 3836 return __do_kmalloc_node(size, flags, node, caller);
8b98c169
CH
3837}
3838EXPORT_SYMBOL(__kmalloc_node_track_caller);
3839#else
3840void *__kmalloc_node(size_t size, gfp_t flags, int node)
3841{
7c0cb9c6 3842 return __do_kmalloc_node(size, flags, node, 0);
8b98c169
CH
3843}
3844EXPORT_SYMBOL(__kmalloc_node);
0bb38a5c 3845#endif /* CONFIG_DEBUG_SLAB || CONFIG_TRACING */
8b98c169 3846#endif /* CONFIG_NUMA */
1da177e4
LT
3847
3848/**
800590f5 3849 * __do_kmalloc - allocate memory
1da177e4 3850 * @size: how many bytes of memory are required.
800590f5 3851 * @flags: the type of memory to allocate (see kmalloc).
911851e6 3852 * @caller: function caller for debug tracking of the caller
1da177e4 3853 */
7fd6b141 3854static __always_inline void *__do_kmalloc(size_t size, gfp_t flags,
7c0cb9c6 3855 unsigned long caller)
1da177e4 3856{
343e0d7a 3857 struct kmem_cache *cachep;
36555751 3858 void *ret;
1da177e4 3859
97e2bde4
MS
3860 /* If you want to save a few bytes .text space: replace
3861 * __ with kmem_.
3862 * Then kmalloc uses the uninlined functions instead of the inline
3863 * functions.
3864 */
3865 cachep = __find_general_cachep(size, flags);
a5c96d8a
LT
3866 if (unlikely(ZERO_OR_NULL_PTR(cachep)))
3867 return cachep;
48356303 3868 ret = slab_alloc(cachep, flags, caller);
36555751 3869
7c0cb9c6 3870 trace_kmalloc(caller, ret,
3b0efdfa 3871 size, cachep->size, flags);
36555751
EGM
3872
3873 return ret;
7fd6b141
PE
3874}
3875
7fd6b141 3876
0bb38a5c 3877#if defined(CONFIG_DEBUG_SLAB) || defined(CONFIG_TRACING)
7fd6b141
PE
3878void *__kmalloc(size_t size, gfp_t flags)
3879{
7c0cb9c6 3880 return __do_kmalloc(size, flags, _RET_IP_);
1da177e4
LT
3881}
3882EXPORT_SYMBOL(__kmalloc);
3883
ce71e27c 3884void *__kmalloc_track_caller(size_t size, gfp_t flags, unsigned long caller)
7fd6b141 3885{
7c0cb9c6 3886 return __do_kmalloc(size, flags, caller);
7fd6b141
PE
3887}
3888EXPORT_SYMBOL(__kmalloc_track_caller);
1d2c8eea
CH
3889
3890#else
3891void *__kmalloc(size_t size, gfp_t flags)
3892{
7c0cb9c6 3893 return __do_kmalloc(size, flags, 0);
1d2c8eea
CH
3894}
3895EXPORT_SYMBOL(__kmalloc);
7fd6b141
PE
3896#endif
3897
1da177e4
LT
3898/**
3899 * kmem_cache_free - Deallocate an object
3900 * @cachep: The cache the allocation was from.
3901 * @objp: The previously allocated object.
3902 *
3903 * Free an object which was previously allocated from this
3904 * cache.
3905 */
343e0d7a 3906void kmem_cache_free(struct kmem_cache *cachep, void *objp)
1da177e4
LT
3907{
3908 unsigned long flags;
3909
3910 local_irq_save(flags);
d97d476b 3911 debug_check_no_locks_freed(objp, cachep->object_size);
3ac7fe5a 3912 if (!(cachep->flags & SLAB_DEBUG_OBJECTS))
8c138bc0 3913 debug_check_no_obj_freed(objp, cachep->object_size);
7c0cb9c6 3914 __cache_free(cachep, objp, _RET_IP_);
1da177e4 3915 local_irq_restore(flags);
36555751 3916
ca2b84cb 3917 trace_kmem_cache_free(_RET_IP_, objp);
1da177e4
LT
3918}
3919EXPORT_SYMBOL(kmem_cache_free);
3920
1da177e4
LT
3921/**
3922 * kfree - free previously allocated memory
3923 * @objp: pointer returned by kmalloc.
3924 *
80e93eff
PE
3925 * If @objp is NULL, no operation is performed.
3926 *
1da177e4
LT
3927 * Don't free memory not originally allocated by kmalloc()
3928 * or you will run into trouble.
3929 */
3930void kfree(const void *objp)
3931{
343e0d7a 3932 struct kmem_cache *c;
1da177e4
LT
3933 unsigned long flags;
3934
2121db74
PE
3935 trace_kfree(_RET_IP_, objp);
3936
6cb8f913 3937 if (unlikely(ZERO_OR_NULL_PTR(objp)))
1da177e4
LT
3938 return;
3939 local_irq_save(flags);
3940 kfree_debugcheck(objp);
6ed5eb22 3941 c = virt_to_cache(objp);
8c138bc0
CL
3942 debug_check_no_locks_freed(objp, c->object_size);
3943
3944 debug_check_no_obj_freed(objp, c->object_size);
7c0cb9c6 3945 __cache_free(c, (void *)objp, _RET_IP_);
1da177e4
LT
3946 local_irq_restore(flags);
3947}
3948EXPORT_SYMBOL(kfree);
3949
e498be7d 3950/*
183ff22b 3951 * This initializes kmem_list3 or resizes various caches for all nodes.
e498be7d 3952 */
83b519e8 3953static int alloc_kmemlist(struct kmem_cache *cachep, gfp_t gfp)
e498be7d
CL
3954{
3955 int node;
3956 struct kmem_list3 *l3;
cafeb02e 3957 struct array_cache *new_shared;
3395ee05 3958 struct array_cache **new_alien = NULL;
e498be7d 3959
9c09a95c 3960 for_each_online_node(node) {
cafeb02e 3961
3395ee05 3962 if (use_alien_caches) {
83b519e8 3963 new_alien = alloc_alien_cache(node, cachep->limit, gfp);
3395ee05
PM
3964 if (!new_alien)
3965 goto fail;
3966 }
cafeb02e 3967
63109846
ED
3968 new_shared = NULL;
3969 if (cachep->shared) {
3970 new_shared = alloc_arraycache(node,
0718dc2a 3971 cachep->shared*cachep->batchcount,
83b519e8 3972 0xbaadf00d, gfp);
63109846
ED
3973 if (!new_shared) {
3974 free_alien_cache(new_alien);
3975 goto fail;
3976 }
0718dc2a 3977 }
cafeb02e 3978
a737b3e2
AM
3979 l3 = cachep->nodelists[node];
3980 if (l3) {
cafeb02e
CL
3981 struct array_cache *shared = l3->shared;
3982
e498be7d
CL
3983 spin_lock_irq(&l3->list_lock);
3984
cafeb02e 3985 if (shared)
0718dc2a
CL
3986 free_block(cachep, shared->entry,
3987 shared->avail, node);
e498be7d 3988
cafeb02e
CL
3989 l3->shared = new_shared;
3990 if (!l3->alien) {
e498be7d
CL
3991 l3->alien = new_alien;
3992 new_alien = NULL;
3993 }
b28a02de 3994 l3->free_limit = (1 + nr_cpus_node(node)) *
a737b3e2 3995 cachep->batchcount + cachep->num;
e498be7d 3996 spin_unlock_irq(&l3->list_lock);
cafeb02e 3997 kfree(shared);
e498be7d
CL
3998 free_alien_cache(new_alien);
3999 continue;
4000 }
83b519e8 4001 l3 = kmalloc_node(sizeof(struct kmem_list3), gfp, node);
0718dc2a
CL
4002 if (!l3) {
4003 free_alien_cache(new_alien);
4004 kfree(new_shared);
e498be7d 4005 goto fail;
0718dc2a 4006 }
e498be7d
CL
4007
4008 kmem_list3_init(l3);
4009 l3->next_reap = jiffies + REAPTIMEOUT_LIST3 +
a737b3e2 4010 ((unsigned long)cachep) % REAPTIMEOUT_LIST3;
cafeb02e 4011 l3->shared = new_shared;
e498be7d 4012 l3->alien = new_alien;
b28a02de 4013 l3->free_limit = (1 + nr_cpus_node(node)) *
a737b3e2 4014 cachep->batchcount + cachep->num;
e498be7d
CL
4015 cachep->nodelists[node] = l3;
4016 }
cafeb02e 4017 return 0;
0718dc2a 4018
a737b3e2 4019fail:
3b0efdfa 4020 if (!cachep->list.next) {
0718dc2a
CL
4021 /* Cache is not active yet. Roll back what we did */
4022 node--;
4023 while (node >= 0) {
4024 if (cachep->nodelists[node]) {
4025 l3 = cachep->nodelists[node];
4026
4027 kfree(l3->shared);
4028 free_alien_cache(l3->alien);
4029 kfree(l3);
4030 cachep->nodelists[node] = NULL;
4031 }
4032 node--;
4033 }
4034 }
cafeb02e 4035 return -ENOMEM;
e498be7d
CL
4036}
4037
1da177e4 4038struct ccupdate_struct {
343e0d7a 4039 struct kmem_cache *cachep;
acfe7d74 4040 struct array_cache *new[0];
1da177e4
LT
4041};
4042
4043static void do_ccupdate_local(void *info)
4044{
a737b3e2 4045 struct ccupdate_struct *new = info;
1da177e4
LT
4046 struct array_cache *old;
4047
4048 check_irq_off();
9a2dba4b 4049 old = cpu_cache_get(new->cachep);
e498be7d 4050
1da177e4
LT
4051 new->cachep->array[smp_processor_id()] = new->new[smp_processor_id()];
4052 new->new[smp_processor_id()] = old;
4053}
4054
18004c5d 4055/* Always called with the slab_mutex held */
a737b3e2 4056static int do_tune_cpucache(struct kmem_cache *cachep, int limit,
83b519e8 4057 int batchcount, int shared, gfp_t gfp)
1da177e4 4058{
d2e7b7d0 4059 struct ccupdate_struct *new;
2ed3a4ef 4060 int i;
1da177e4 4061
acfe7d74
ED
4062 new = kzalloc(sizeof(*new) + nr_cpu_ids * sizeof(struct array_cache *),
4063 gfp);
d2e7b7d0
SS
4064 if (!new)
4065 return -ENOMEM;
4066
e498be7d 4067 for_each_online_cpu(i) {
7d6e6d09 4068 new->new[i] = alloc_arraycache(cpu_to_mem(i), limit,
83b519e8 4069 batchcount, gfp);
d2e7b7d0 4070 if (!new->new[i]) {
b28a02de 4071 for (i--; i >= 0; i--)
d2e7b7d0
SS
4072 kfree(new->new[i]);
4073 kfree(new);
e498be7d 4074 return -ENOMEM;
1da177e4
LT
4075 }
4076 }
d2e7b7d0 4077 new->cachep = cachep;
1da177e4 4078
15c8b6c1 4079 on_each_cpu(do_ccupdate_local, (void *)new, 1);
e498be7d 4080
1da177e4 4081 check_irq_on();
1da177e4
LT
4082 cachep->batchcount = batchcount;
4083 cachep->limit = limit;
e498be7d 4084 cachep->shared = shared;
1da177e4 4085
e498be7d 4086 for_each_online_cpu(i) {
d2e7b7d0 4087 struct array_cache *ccold = new->new[i];
1da177e4
LT
4088 if (!ccold)
4089 continue;
7d6e6d09
LS
4090 spin_lock_irq(&cachep->nodelists[cpu_to_mem(i)]->list_lock);
4091 free_block(cachep, ccold->entry, ccold->avail, cpu_to_mem(i));
4092 spin_unlock_irq(&cachep->nodelists[cpu_to_mem(i)]->list_lock);
1da177e4
LT
4093 kfree(ccold);
4094 }
d2e7b7d0 4095 kfree(new);
83b519e8 4096 return alloc_kmemlist(cachep, gfp);
1da177e4
LT
4097}
4098
18004c5d 4099/* Called with slab_mutex held always */
83b519e8 4100static int enable_cpucache(struct kmem_cache *cachep, gfp_t gfp)
1da177e4
LT
4101{
4102 int err;
4103 int limit, shared;
4104
a737b3e2
AM
4105 /*
4106 * The head array serves three purposes:
1da177e4
LT
4107 * - create a LIFO ordering, i.e. return objects that are cache-warm
4108 * - reduce the number of spinlock operations.
a737b3e2 4109 * - reduce the number of linked list operations on the slab and
1da177e4
LT
4110 * bufctl chains: array operations are cheaper.
4111 * The numbers are guessed, we should auto-tune as described by
4112 * Bonwick.
4113 */
3b0efdfa 4114 if (cachep->size > 131072)
1da177e4 4115 limit = 1;
3b0efdfa 4116 else if (cachep->size > PAGE_SIZE)
1da177e4 4117 limit = 8;
3b0efdfa 4118 else if (cachep->size > 1024)
1da177e4 4119 limit = 24;
3b0efdfa 4120 else if (cachep->size > 256)
1da177e4
LT
4121 limit = 54;
4122 else
4123 limit = 120;
4124
a737b3e2
AM
4125 /*
4126 * CPU bound tasks (e.g. network routing) can exhibit cpu bound
1da177e4
LT
4127 * allocation behaviour: Most allocs on one cpu, most free operations
4128 * on another cpu. For these cases, an efficient object passing between
4129 * cpus is necessary. This is provided by a shared array. The array
4130 * replaces Bonwick's magazine layer.
4131 * On uniprocessor, it's functionally equivalent (but less efficient)
4132 * to a larger limit. Thus disabled by default.
4133 */
4134 shared = 0;
3b0efdfa 4135 if (cachep->size <= PAGE_SIZE && num_possible_cpus() > 1)
1da177e4 4136 shared = 8;
1da177e4
LT
4137
4138#if DEBUG
a737b3e2
AM
4139 /*
4140 * With debugging enabled, large batchcount lead to excessively long
4141 * periods with disabled local interrupts. Limit the batchcount
1da177e4
LT
4142 */
4143 if (limit > 32)
4144 limit = 32;
4145#endif
83b519e8 4146 err = do_tune_cpucache(cachep, limit, (limit + 1) / 2, shared, gfp);
1da177e4
LT
4147 if (err)
4148 printk(KERN_ERR "enable_cpucache failed for %s, error %d.\n",
b28a02de 4149 cachep->name, -err);
2ed3a4ef 4150 return err;
1da177e4
LT
4151}
4152
1b55253a
CL
4153/*
4154 * Drain an array if it contains any elements taking the l3 lock only if
b18e7e65
CL
4155 * necessary. Note that the l3 listlock also protects the array_cache
4156 * if drain_array() is used on the shared array.
1b55253a 4157 */
68a1b195 4158static void drain_array(struct kmem_cache *cachep, struct kmem_list3 *l3,
1b55253a 4159 struct array_cache *ac, int force, int node)
1da177e4
LT
4160{
4161 int tofree;
4162
1b55253a
CL
4163 if (!ac || !ac->avail)
4164 return;
1da177e4
LT
4165 if (ac->touched && !force) {
4166 ac->touched = 0;
b18e7e65 4167 } else {
1b55253a 4168 spin_lock_irq(&l3->list_lock);
b18e7e65
CL
4169 if (ac->avail) {
4170 tofree = force ? ac->avail : (ac->limit + 4) / 5;
4171 if (tofree > ac->avail)
4172 tofree = (ac->avail + 1) / 2;
4173 free_block(cachep, ac->entry, tofree, node);
4174 ac->avail -= tofree;
4175 memmove(ac->entry, &(ac->entry[tofree]),
4176 sizeof(void *) * ac->avail);
4177 }
1b55253a 4178 spin_unlock_irq(&l3->list_lock);
1da177e4
LT
4179 }
4180}
4181
4182/**
4183 * cache_reap - Reclaim memory from caches.
05fb6bf0 4184 * @w: work descriptor
1da177e4
LT
4185 *
4186 * Called from workqueue/eventd every few seconds.
4187 * Purpose:
4188 * - clear the per-cpu caches for this CPU.
4189 * - return freeable pages to the main free memory pool.
4190 *
a737b3e2
AM
4191 * If we cannot acquire the cache chain mutex then just give up - we'll try
4192 * again on the next iteration.
1da177e4 4193 */
7c5cae36 4194static void cache_reap(struct work_struct *w)
1da177e4 4195{
7a7c381d 4196 struct kmem_cache *searchp;
e498be7d 4197 struct kmem_list3 *l3;
7d6e6d09 4198 int node = numa_mem_id();
bf6aede7 4199 struct delayed_work *work = to_delayed_work(w);
1da177e4 4200
18004c5d 4201 if (!mutex_trylock(&slab_mutex))
1da177e4 4202 /* Give up. Setup the next iteration. */
7c5cae36 4203 goto out;
1da177e4 4204
18004c5d 4205 list_for_each_entry(searchp, &slab_caches, list) {
1da177e4
LT
4206 check_irq_on();
4207
35386e3b
CL
4208 /*
4209 * We only take the l3 lock if absolutely necessary and we
4210 * have established with reasonable certainty that
4211 * we can do some work if the lock was obtained.
4212 */
aab2207c 4213 l3 = searchp->nodelists[node];
35386e3b 4214
8fce4d8e 4215 reap_alien(searchp, l3);
1da177e4 4216
aab2207c 4217 drain_array(searchp, l3, cpu_cache_get(searchp), 0, node);
1da177e4 4218
35386e3b
CL
4219 /*
4220 * These are racy checks but it does not matter
4221 * if we skip one check or scan twice.
4222 */
e498be7d 4223 if (time_after(l3->next_reap, jiffies))
35386e3b 4224 goto next;
1da177e4 4225
e498be7d 4226 l3->next_reap = jiffies + REAPTIMEOUT_LIST3;
1da177e4 4227
aab2207c 4228 drain_array(searchp, l3, l3->shared, 0, node);
1da177e4 4229
ed11d9eb 4230 if (l3->free_touched)
e498be7d 4231 l3->free_touched = 0;
ed11d9eb
CL
4232 else {
4233 int freed;
1da177e4 4234
ed11d9eb
CL
4235 freed = drain_freelist(searchp, l3, (l3->free_limit +
4236 5 * searchp->num - 1) / (5 * searchp->num));
4237 STATS_ADD_REAPED(searchp, freed);
4238 }
35386e3b 4239next:
1da177e4
LT
4240 cond_resched();
4241 }
4242 check_irq_on();
18004c5d 4243 mutex_unlock(&slab_mutex);
8fce4d8e 4244 next_reap_node();
7c5cae36 4245out:
a737b3e2 4246 /* Set up the next iteration */
7c5cae36 4247 schedule_delayed_work(work, round_jiffies_relative(REAPTIMEOUT_CPUC));
1da177e4
LT
4248}
4249
158a9624 4250#ifdef CONFIG_SLABINFO
0d7561c6 4251void get_slabinfo(struct kmem_cache *cachep, struct slabinfo *sinfo)
1da177e4 4252{
b28a02de
PE
4253 struct slab *slabp;
4254 unsigned long active_objs;
4255 unsigned long num_objs;
4256 unsigned long active_slabs = 0;
4257 unsigned long num_slabs, free_objects = 0, shared_avail = 0;
e498be7d 4258 const char *name;
1da177e4 4259 char *error = NULL;
e498be7d
CL
4260 int node;
4261 struct kmem_list3 *l3;
1da177e4 4262
1da177e4
LT
4263 active_objs = 0;
4264 num_slabs = 0;
e498be7d
CL
4265 for_each_online_node(node) {
4266 l3 = cachep->nodelists[node];
4267 if (!l3)
4268 continue;
4269
ca3b9b91
RT
4270 check_irq_on();
4271 spin_lock_irq(&l3->list_lock);
e498be7d 4272
7a7c381d 4273 list_for_each_entry(slabp, &l3->slabs_full, list) {
e498be7d
CL
4274 if (slabp->inuse != cachep->num && !error)
4275 error = "slabs_full accounting error";
4276 active_objs += cachep->num;
4277 active_slabs++;
4278 }
7a7c381d 4279 list_for_each_entry(slabp, &l3->slabs_partial, list) {
e498be7d
CL
4280 if (slabp->inuse == cachep->num && !error)
4281 error = "slabs_partial inuse accounting error";
4282 if (!slabp->inuse && !error)
4283 error = "slabs_partial/inuse accounting error";
4284 active_objs += slabp->inuse;
4285 active_slabs++;
4286 }
7a7c381d 4287 list_for_each_entry(slabp, &l3->slabs_free, list) {
e498be7d
CL
4288 if (slabp->inuse && !error)
4289 error = "slabs_free/inuse accounting error";
4290 num_slabs++;
4291 }
4292 free_objects += l3->free_objects;
4484ebf1
RT
4293 if (l3->shared)
4294 shared_avail += l3->shared->avail;
e498be7d 4295
ca3b9b91 4296 spin_unlock_irq(&l3->list_lock);
1da177e4 4297 }
b28a02de
PE
4298 num_slabs += active_slabs;
4299 num_objs = num_slabs * cachep->num;
e498be7d 4300 if (num_objs - active_objs != free_objects && !error)
1da177e4
LT
4301 error = "free_objects accounting error";
4302
b28a02de 4303 name = cachep->name;
1da177e4
LT
4304 if (error)
4305 printk(KERN_ERR "slab: cache %s error: %s\n", name, error);
4306
0d7561c6
GC
4307 sinfo->active_objs = active_objs;
4308 sinfo->num_objs = num_objs;
4309 sinfo->active_slabs = active_slabs;
4310 sinfo->num_slabs = num_slabs;
4311 sinfo->shared_avail = shared_avail;
4312 sinfo->limit = cachep->limit;
4313 sinfo->batchcount = cachep->batchcount;
4314 sinfo->shared = cachep->shared;
4315 sinfo->objects_per_slab = cachep->num;
4316 sinfo->cache_order = cachep->gfporder;
4317}
4318
4319void slabinfo_show_stats(struct seq_file *m, struct kmem_cache *cachep)
4320{
1da177e4 4321#if STATS
b28a02de 4322 { /* list3 stats */
1da177e4
LT
4323 unsigned long high = cachep->high_mark;
4324 unsigned long allocs = cachep->num_allocations;
4325 unsigned long grown = cachep->grown;
4326 unsigned long reaped = cachep->reaped;
4327 unsigned long errors = cachep->errors;
4328 unsigned long max_freeable = cachep->max_freeable;
1da177e4 4329 unsigned long node_allocs = cachep->node_allocs;
e498be7d 4330 unsigned long node_frees = cachep->node_frees;
fb7faf33 4331 unsigned long overflows = cachep->node_overflow;
1da177e4 4332
e92dd4fd
JP
4333 seq_printf(m, " : globalstat %7lu %6lu %5lu %4lu "
4334 "%4lu %4lu %4lu %4lu %4lu",
4335 allocs, high, grown,
4336 reaped, errors, max_freeable, node_allocs,
4337 node_frees, overflows);
1da177e4
LT
4338 }
4339 /* cpu stats */
4340 {
4341 unsigned long allochit = atomic_read(&cachep->allochit);
4342 unsigned long allocmiss = atomic_read(&cachep->allocmiss);
4343 unsigned long freehit = atomic_read(&cachep->freehit);
4344 unsigned long freemiss = atomic_read(&cachep->freemiss);
4345
4346 seq_printf(m, " : cpustat %6lu %6lu %6lu %6lu",
b28a02de 4347 allochit, allocmiss, freehit, freemiss);
1da177e4
LT
4348 }
4349#endif
1da177e4
LT
4350}
4351
1da177e4
LT
4352#define MAX_SLABINFO_WRITE 128
4353/**
4354 * slabinfo_write - Tuning for the slab allocator
4355 * @file: unused
4356 * @buffer: user buffer
4357 * @count: data length
4358 * @ppos: unused
4359 */
b7454ad3 4360ssize_t slabinfo_write(struct file *file, const char __user *buffer,
b28a02de 4361 size_t count, loff_t *ppos)
1da177e4 4362{
b28a02de 4363 char kbuf[MAX_SLABINFO_WRITE + 1], *tmp;
1da177e4 4364 int limit, batchcount, shared, res;
7a7c381d 4365 struct kmem_cache *cachep;
b28a02de 4366
1da177e4
LT
4367 if (count > MAX_SLABINFO_WRITE)
4368 return -EINVAL;
4369 if (copy_from_user(&kbuf, buffer, count))
4370 return -EFAULT;
b28a02de 4371 kbuf[MAX_SLABINFO_WRITE] = '\0';
1da177e4
LT
4372
4373 tmp = strchr(kbuf, ' ');
4374 if (!tmp)
4375 return -EINVAL;
4376 *tmp = '\0';
4377 tmp++;
4378 if (sscanf(tmp, " %d %d %d", &limit, &batchcount, &shared) != 3)
4379 return -EINVAL;
4380
4381 /* Find the cache in the chain of caches. */
18004c5d 4382 mutex_lock(&slab_mutex);
1da177e4 4383 res = -EINVAL;
18004c5d 4384 list_for_each_entry(cachep, &slab_caches, list) {
1da177e4 4385 if (!strcmp(cachep->name, kbuf)) {
a737b3e2
AM
4386 if (limit < 1 || batchcount < 1 ||
4387 batchcount > limit || shared < 0) {
e498be7d 4388 res = 0;
1da177e4 4389 } else {
e498be7d 4390 res = do_tune_cpucache(cachep, limit,
83b519e8
PE
4391 batchcount, shared,
4392 GFP_KERNEL);
1da177e4
LT
4393 }
4394 break;
4395 }
4396 }
18004c5d 4397 mutex_unlock(&slab_mutex);
1da177e4
LT
4398 if (res >= 0)
4399 res = count;
4400 return res;
4401}
871751e2
AV
4402
4403#ifdef CONFIG_DEBUG_SLAB_LEAK
4404
4405static void *leaks_start(struct seq_file *m, loff_t *pos)
4406{
18004c5d
CL
4407 mutex_lock(&slab_mutex);
4408 return seq_list_start(&slab_caches, *pos);
871751e2
AV
4409}
4410
4411static inline int add_caller(unsigned long *n, unsigned long v)
4412{
4413 unsigned long *p;
4414 int l;
4415 if (!v)
4416 return 1;
4417 l = n[1];
4418 p = n + 2;
4419 while (l) {
4420 int i = l/2;
4421 unsigned long *q = p + 2 * i;
4422 if (*q == v) {
4423 q[1]++;
4424 return 1;
4425 }
4426 if (*q > v) {
4427 l = i;
4428 } else {
4429 p = q + 2;
4430 l -= i + 1;
4431 }
4432 }
4433 if (++n[1] == n[0])
4434 return 0;
4435 memmove(p + 2, p, n[1] * 2 * sizeof(unsigned long) - ((void *)p - (void *)n));
4436 p[0] = v;
4437 p[1] = 1;
4438 return 1;
4439}
4440
4441static void handle_slab(unsigned long *n, struct kmem_cache *c, struct slab *s)
4442{
4443 void *p;
4444 int i;
4445 if (n[0] == n[1])
4446 return;
3b0efdfa 4447 for (i = 0, p = s->s_mem; i < c->num; i++, p += c->size) {
871751e2
AV
4448 if (slab_bufctl(s)[i] != BUFCTL_ACTIVE)
4449 continue;
4450 if (!add_caller(n, (unsigned long)*dbg_userword(c, p)))
4451 return;
4452 }
4453}
4454
4455static void show_symbol(struct seq_file *m, unsigned long address)
4456{
4457#ifdef CONFIG_KALLSYMS
871751e2 4458 unsigned long offset, size;
9281acea 4459 char modname[MODULE_NAME_LEN], name[KSYM_NAME_LEN];
871751e2 4460
a5c43dae 4461 if (lookup_symbol_attrs(address, &size, &offset, modname, name) == 0) {
871751e2 4462 seq_printf(m, "%s+%#lx/%#lx", name, offset, size);
a5c43dae 4463 if (modname[0])
871751e2
AV
4464 seq_printf(m, " [%s]", modname);
4465 return;
4466 }
4467#endif
4468 seq_printf(m, "%p", (void *)address);
4469}
4470
4471static int leaks_show(struct seq_file *m, void *p)
4472{
0672aa7c 4473 struct kmem_cache *cachep = list_entry(p, struct kmem_cache, list);
871751e2
AV
4474 struct slab *slabp;
4475 struct kmem_list3 *l3;
4476 const char *name;
4477 unsigned long *n = m->private;
4478 int node;
4479 int i;
4480
4481 if (!(cachep->flags & SLAB_STORE_USER))
4482 return 0;
4483 if (!(cachep->flags & SLAB_RED_ZONE))
4484 return 0;
4485
4486 /* OK, we can do it */
4487
4488 n[1] = 0;
4489
4490 for_each_online_node(node) {
4491 l3 = cachep->nodelists[node];
4492 if (!l3)
4493 continue;
4494
4495 check_irq_on();
4496 spin_lock_irq(&l3->list_lock);
4497
7a7c381d 4498 list_for_each_entry(slabp, &l3->slabs_full, list)
871751e2 4499 handle_slab(n, cachep, slabp);
7a7c381d 4500 list_for_each_entry(slabp, &l3->slabs_partial, list)
871751e2 4501 handle_slab(n, cachep, slabp);
871751e2
AV
4502 spin_unlock_irq(&l3->list_lock);
4503 }
4504 name = cachep->name;
4505 if (n[0] == n[1]) {
4506 /* Increase the buffer size */
18004c5d 4507 mutex_unlock(&slab_mutex);
871751e2
AV
4508 m->private = kzalloc(n[0] * 4 * sizeof(unsigned long), GFP_KERNEL);
4509 if (!m->private) {
4510 /* Too bad, we are really out */
4511 m->private = n;
18004c5d 4512 mutex_lock(&slab_mutex);
871751e2
AV
4513 return -ENOMEM;
4514 }
4515 *(unsigned long *)m->private = n[0] * 2;
4516 kfree(n);
18004c5d 4517 mutex_lock(&slab_mutex);
871751e2
AV
4518 /* Now make sure this entry will be retried */
4519 m->count = m->size;
4520 return 0;
4521 }
4522 for (i = 0; i < n[1]; i++) {
4523 seq_printf(m, "%s: %lu ", name, n[2*i+3]);
4524 show_symbol(m, n[2*i+2]);
4525 seq_putc(m, '\n');
4526 }
d2e7b7d0 4527
871751e2
AV
4528 return 0;
4529}
4530
b7454ad3
GC
4531static void *s_next(struct seq_file *m, void *p, loff_t *pos)
4532{
4533 return seq_list_next(p, &slab_caches, pos);
4534}
4535
4536static void s_stop(struct seq_file *m, void *p)
4537{
4538 mutex_unlock(&slab_mutex);
4539}
4540
a0ec95a8 4541static const struct seq_operations slabstats_op = {
871751e2
AV
4542 .start = leaks_start,
4543 .next = s_next,
4544 .stop = s_stop,
4545 .show = leaks_show,
4546};
a0ec95a8
AD
4547
4548static int slabstats_open(struct inode *inode, struct file *file)
4549{
4550 unsigned long *n = kzalloc(PAGE_SIZE, GFP_KERNEL);
4551 int ret = -ENOMEM;
4552 if (n) {
4553 ret = seq_open(file, &slabstats_op);
4554 if (!ret) {
4555 struct seq_file *m = file->private_data;
4556 *n = PAGE_SIZE / (2 * sizeof(unsigned long));
4557 m->private = n;
4558 n = NULL;
4559 }
4560 kfree(n);
4561 }
4562 return ret;
4563}
4564
4565static const struct file_operations proc_slabstats_operations = {
4566 .open = slabstats_open,
4567 .read = seq_read,
4568 .llseek = seq_lseek,
4569 .release = seq_release_private,
4570};
4571#endif
4572
4573static int __init slab_proc_init(void)
4574{
4575#ifdef CONFIG_DEBUG_SLAB_LEAK
4576 proc_create("slab_allocators", 0, NULL, &proc_slabstats_operations);
871751e2 4577#endif
a0ec95a8
AD
4578 return 0;
4579}
4580module_init(slab_proc_init);
1da177e4
LT
4581#endif
4582
00e145b6
MS
4583/**
4584 * ksize - get the actual amount of memory allocated for a given object
4585 * @objp: Pointer to the object
4586 *
4587 * kmalloc may internally round up allocations and return more memory
4588 * than requested. ksize() can be used to determine the actual amount of
4589 * memory allocated. The caller may use this additional memory, even though
4590 * a smaller amount of memory was initially specified with the kmalloc call.
4591 * The caller must guarantee that objp points to a valid object previously
4592 * allocated with either kmalloc() or kmem_cache_alloc(). The object
4593 * must not be freed during the duration of the call.
4594 */
fd76bab2 4595size_t ksize(const void *objp)
1da177e4 4596{
ef8b4520
CL
4597 BUG_ON(!objp);
4598 if (unlikely(objp == ZERO_SIZE_PTR))
00e145b6 4599 return 0;
1da177e4 4600
8c138bc0 4601 return virt_to_cache(objp)->object_size;
1da177e4 4602}
b1aabecd 4603EXPORT_SYMBOL(ksize);