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