]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - mm/slub.c
kmemtrace: Better alternative to "kmemtrace: fix printk format warnings".
[mirror_ubuntu-artful-kernel.git] / mm / slub.c
CommitLineData
81819f0f
CL
1/*
2 * SLUB: A slab allocator that limits cache line use instead of queuing
3 * objects in per cpu and per node lists.
4 *
5 * The allocator synchronizes using per slab locks and only
6 * uses a centralized lock to manage a pool of partial slabs.
7 *
cde53535 8 * (C) 2007 SGI, Christoph Lameter
81819f0f
CL
9 */
10
11#include <linux/mm.h>
12#include <linux/module.h>
13#include <linux/bit_spinlock.h>
14#include <linux/interrupt.h>
15#include <linux/bitops.h>
16#include <linux/slab.h>
7b3c3a50 17#include <linux/proc_fs.h>
81819f0f
CL
18#include <linux/seq_file.h>
19#include <linux/cpu.h>
20#include <linux/cpuset.h>
21#include <linux/mempolicy.h>
22#include <linux/ctype.h>
3ac7fe5a 23#include <linux/debugobjects.h>
81819f0f 24#include <linux/kallsyms.h>
b9049e23 25#include <linux/memory.h>
f8bd2258 26#include <linux/math64.h>
5b882be4 27#include <linux/kmemtrace.h>
81819f0f
CL
28
29/*
30 * Lock order:
31 * 1. slab_lock(page)
32 * 2. slab->list_lock
33 *
34 * The slab_lock protects operations on the object of a particular
35 * slab and its metadata in the page struct. If the slab lock
36 * has been taken then no allocations nor frees can be performed
37 * on the objects in the slab nor can the slab be added or removed
38 * from the partial or full lists since this would mean modifying
39 * the page_struct of the slab.
40 *
41 * The list_lock protects the partial and full list on each node and
42 * the partial slab counter. If taken then no new slabs may be added or
43 * removed from the lists nor make the number of partial slabs be modified.
44 * (Note that the total number of slabs is an atomic value that may be
45 * modified without taking the list lock).
46 *
47 * The list_lock is a centralized lock and thus we avoid taking it as
48 * much as possible. As long as SLUB does not have to handle partial
49 * slabs, operations can continue without any centralized lock. F.e.
50 * allocating a long series of objects that fill up slabs does not require
51 * the list lock.
52 *
53 * The lock order is sometimes inverted when we are trying to get a slab
54 * off a list. We take the list_lock and then look for a page on the list
55 * to use. While we do that objects in the slabs may be freed. We can
56 * only operate on the slab if we have also taken the slab_lock. So we use
57 * a slab_trylock() on the slab. If trylock was successful then no frees
58 * can occur anymore and we can use the slab for allocations etc. If the
59 * slab_trylock() does not succeed then frees are in progress in the slab and
60 * we must stay away from it for a while since we may cause a bouncing
61 * cacheline if we try to acquire the lock. So go onto the next slab.
62 * If all pages are busy then we may allocate a new slab instead of reusing
63 * a partial slab. A new slab has noone operating on it and thus there is
64 * no danger of cacheline contention.
65 *
66 * Interrupts are disabled during allocation and deallocation in order to
67 * make the slab allocator safe to use in the context of an irq. In addition
68 * interrupts are disabled to ensure that the processor does not change
69 * while handling per_cpu slabs, due to kernel preemption.
70 *
71 * SLUB assigns one slab for allocation to each processor.
72 * Allocations only occur from these slabs called cpu slabs.
73 *
672bba3a
CL
74 * Slabs with free elements are kept on a partial list and during regular
75 * operations no list for full slabs is used. If an object in a full slab is
81819f0f 76 * freed then the slab will show up again on the partial lists.
672bba3a
CL
77 * We track full slabs for debugging purposes though because otherwise we
78 * cannot scan all objects.
81819f0f
CL
79 *
80 * Slabs are freed when they become empty. Teardown and setup is
81 * minimal so we rely on the page allocators per cpu caches for
82 * fast frees and allocs.
83 *
84 * Overloading of page flags that are otherwise used for LRU management.
85 *
4b6f0750
CL
86 * PageActive The slab is frozen and exempt from list processing.
87 * This means that the slab is dedicated to a purpose
88 * such as satisfying allocations for a specific
89 * processor. Objects may be freed in the slab while
90 * it is frozen but slab_free will then skip the usual
91 * list operations. It is up to the processor holding
92 * the slab to integrate the slab into the slab lists
93 * when the slab is no longer needed.
94 *
95 * One use of this flag is to mark slabs that are
96 * used for allocations. Then such a slab becomes a cpu
97 * slab. The cpu slab may be equipped with an additional
dfb4f096 98 * freelist that allows lockless access to
894b8788
CL
99 * free objects in addition to the regular freelist
100 * that requires the slab lock.
81819f0f
CL
101 *
102 * PageError Slab requires special handling due to debug
103 * options set. This moves slab handling out of
894b8788 104 * the fast path and disables lockless freelists.
81819f0f
CL
105 */
106
5577bd8a 107#ifdef CONFIG_SLUB_DEBUG
8a38082d 108#define SLABDEBUG 1
5577bd8a
CL
109#else
110#define SLABDEBUG 0
111#endif
112
81819f0f
CL
113/*
114 * Issues still to be resolved:
115 *
81819f0f
CL
116 * - Support PAGE_ALLOC_DEBUG. Should be easy to do.
117 *
81819f0f
CL
118 * - Variable sizing of the per node arrays
119 */
120
121/* Enable to test recovery from slab corruption on boot */
122#undef SLUB_RESILIENCY_TEST
123
2086d26a
CL
124/*
125 * Mininum number of partial slabs. These will be left on the partial
126 * lists even if they are empty. kmem_cache_shrink may reclaim them.
127 */
76be8950 128#define MIN_PARTIAL 5
e95eed57 129
2086d26a
CL
130/*
131 * Maximum number of desirable partial slabs.
132 * The existence of more partial slabs makes kmem_cache_shrink
133 * sort the partial list by the number of objects in the.
134 */
135#define MAX_PARTIAL 10
136
81819f0f
CL
137#define DEBUG_DEFAULT_FLAGS (SLAB_DEBUG_FREE | SLAB_RED_ZONE | \
138 SLAB_POISON | SLAB_STORE_USER)
672bba3a 139
81819f0f
CL
140/*
141 * Set of flags that will prevent slab merging
142 */
143#define SLUB_NEVER_MERGE (SLAB_RED_ZONE | SLAB_POISON | SLAB_STORE_USER | \
144 SLAB_TRACE | SLAB_DESTROY_BY_RCU)
145
146#define SLUB_MERGE_SAME (SLAB_DEBUG_FREE | SLAB_RECLAIM_ACCOUNT | \
147 SLAB_CACHE_DMA)
148
149#ifndef ARCH_KMALLOC_MINALIGN
47bfdc0d 150#define ARCH_KMALLOC_MINALIGN __alignof__(unsigned long long)
81819f0f
CL
151#endif
152
153#ifndef ARCH_SLAB_MINALIGN
47bfdc0d 154#define ARCH_SLAB_MINALIGN __alignof__(unsigned long long)
81819f0f
CL
155#endif
156
157/* Internal SLUB flags */
1ceef402
CL
158#define __OBJECT_POISON 0x80000000 /* Poison object */
159#define __SYSFS_ADD_DEFERRED 0x40000000 /* Not yet visible via sysfs */
81819f0f
CL
160
161static int kmem_size = sizeof(struct kmem_cache);
162
163#ifdef CONFIG_SMP
164static struct notifier_block slab_notifier;
165#endif
166
167static enum {
168 DOWN, /* No slab functionality available */
169 PARTIAL, /* kmem_cache_open() works but kmalloc does not */
672bba3a 170 UP, /* Everything works but does not show up in sysfs */
81819f0f
CL
171 SYSFS /* Sysfs up */
172} slab_state = DOWN;
173
174/* A list of all slab caches on the system */
175static DECLARE_RWSEM(slub_lock);
5af328a5 176static LIST_HEAD(slab_caches);
81819f0f 177
02cbc874
CL
178/*
179 * Tracking user of a slab.
180 */
181struct track {
35995a4d 182 unsigned long addr; /* Called from address */
02cbc874
CL
183 int cpu; /* Was running on cpu */
184 int pid; /* Pid context */
185 unsigned long when; /* When did the operation occur */
186};
187
188enum track_item { TRACK_ALLOC, TRACK_FREE };
189
f6acb635 190#ifdef CONFIG_SLUB_DEBUG
81819f0f
CL
191static int sysfs_slab_add(struct kmem_cache *);
192static int sysfs_slab_alias(struct kmem_cache *, const char *);
193static void sysfs_slab_remove(struct kmem_cache *);
8ff12cfc 194
81819f0f 195#else
0c710013
CL
196static inline int sysfs_slab_add(struct kmem_cache *s) { return 0; }
197static inline int sysfs_slab_alias(struct kmem_cache *s, const char *p)
198 { return 0; }
151c602f
CL
199static inline void sysfs_slab_remove(struct kmem_cache *s)
200{
201 kfree(s);
202}
8ff12cfc 203
81819f0f
CL
204#endif
205
8ff12cfc
CL
206static inline void stat(struct kmem_cache_cpu *c, enum stat_item si)
207{
208#ifdef CONFIG_SLUB_STATS
209 c->stat[si]++;
210#endif
211}
212
81819f0f
CL
213/********************************************************************
214 * Core slab cache functions
215 *******************************************************************/
216
217int slab_is_available(void)
218{
219 return slab_state >= UP;
220}
221
222static inline struct kmem_cache_node *get_node(struct kmem_cache *s, int node)
223{
224#ifdef CONFIG_NUMA
225 return s->node[node];
226#else
227 return &s->local_node;
228#endif
229}
230
dfb4f096
CL
231static inline struct kmem_cache_cpu *get_cpu_slab(struct kmem_cache *s, int cpu)
232{
4c93c355
CL
233#ifdef CONFIG_SMP
234 return s->cpu_slab[cpu];
235#else
236 return &s->cpu_slab;
237#endif
dfb4f096
CL
238}
239
6446faa2 240/* Verify that a pointer has an address that is valid within a slab page */
02cbc874
CL
241static inline int check_valid_pointer(struct kmem_cache *s,
242 struct page *page, const void *object)
243{
244 void *base;
245
a973e9dd 246 if (!object)
02cbc874
CL
247 return 1;
248
a973e9dd 249 base = page_address(page);
39b26464 250 if (object < base || object >= base + page->objects * s->size ||
02cbc874
CL
251 (object - base) % s->size) {
252 return 0;
253 }
254
255 return 1;
256}
257
7656c72b
CL
258/*
259 * Slow version of get and set free pointer.
260 *
261 * This version requires touching the cache lines of kmem_cache which
262 * we avoid to do in the fast alloc free paths. There we obtain the offset
263 * from the page struct.
264 */
265static inline void *get_freepointer(struct kmem_cache *s, void *object)
266{
267 return *(void **)(object + s->offset);
268}
269
270static inline void set_freepointer(struct kmem_cache *s, void *object, void *fp)
271{
272 *(void **)(object + s->offset) = fp;
273}
274
275/* Loop over all objects in a slab */
224a88be
CL
276#define for_each_object(__p, __s, __addr, __objects) \
277 for (__p = (__addr); __p < (__addr) + (__objects) * (__s)->size;\
7656c72b
CL
278 __p += (__s)->size)
279
280/* Scan freelist */
281#define for_each_free_object(__p, __s, __free) \
a973e9dd 282 for (__p = (__free); __p; __p = get_freepointer((__s), __p))
7656c72b
CL
283
284/* Determine object index from a given position */
285static inline int slab_index(void *p, struct kmem_cache *s, void *addr)
286{
287 return (p - addr) / s->size;
288}
289
834f3d11
CL
290static inline struct kmem_cache_order_objects oo_make(int order,
291 unsigned long size)
292{
293 struct kmem_cache_order_objects x = {
294 (order << 16) + (PAGE_SIZE << order) / size
295 };
296
297 return x;
298}
299
300static inline int oo_order(struct kmem_cache_order_objects x)
301{
302 return x.x >> 16;
303}
304
305static inline int oo_objects(struct kmem_cache_order_objects x)
306{
307 return x.x & ((1 << 16) - 1);
308}
309
41ecc55b
CL
310#ifdef CONFIG_SLUB_DEBUG
311/*
312 * Debug settings:
313 */
f0630fff
CL
314#ifdef CONFIG_SLUB_DEBUG_ON
315static int slub_debug = DEBUG_DEFAULT_FLAGS;
316#else
41ecc55b 317static int slub_debug;
f0630fff 318#endif
41ecc55b
CL
319
320static char *slub_debug_slabs;
321
81819f0f
CL
322/*
323 * Object debugging
324 */
325static void print_section(char *text, u8 *addr, unsigned int length)
326{
327 int i, offset;
328 int newline = 1;
329 char ascii[17];
330
331 ascii[16] = 0;
332
333 for (i = 0; i < length; i++) {
334 if (newline) {
24922684 335 printk(KERN_ERR "%8s 0x%p: ", text, addr + i);
81819f0f
CL
336 newline = 0;
337 }
06428780 338 printk(KERN_CONT " %02x", addr[i]);
81819f0f
CL
339 offset = i % 16;
340 ascii[offset] = isgraph(addr[i]) ? addr[i] : '.';
341 if (offset == 15) {
06428780 342 printk(KERN_CONT " %s\n", ascii);
81819f0f
CL
343 newline = 1;
344 }
345 }
346 if (!newline) {
347 i %= 16;
348 while (i < 16) {
06428780 349 printk(KERN_CONT " ");
81819f0f
CL
350 ascii[i] = ' ';
351 i++;
352 }
06428780 353 printk(KERN_CONT " %s\n", ascii);
81819f0f
CL
354 }
355}
356
81819f0f
CL
357static struct track *get_track(struct kmem_cache *s, void *object,
358 enum track_item alloc)
359{
360 struct track *p;
361
362 if (s->offset)
363 p = object + s->offset + sizeof(void *);
364 else
365 p = object + s->inuse;
366
367 return p + alloc;
368}
369
370static void set_track(struct kmem_cache *s, void *object,
35995a4d 371 enum track_item alloc, unsigned long addr)
81819f0f
CL
372{
373 struct track *p;
374
375 if (s->offset)
376 p = object + s->offset + sizeof(void *);
377 else
378 p = object + s->inuse;
379
380 p += alloc;
381 if (addr) {
382 p->addr = addr;
383 p->cpu = smp_processor_id();
88e4ccf2 384 p->pid = current->pid;
81819f0f
CL
385 p->when = jiffies;
386 } else
387 memset(p, 0, sizeof(struct track));
388}
389
81819f0f
CL
390static void init_tracking(struct kmem_cache *s, void *object)
391{
24922684
CL
392 if (!(s->flags & SLAB_STORE_USER))
393 return;
394
35995a4d
EGM
395 set_track(s, object, TRACK_FREE, 0UL);
396 set_track(s, object, TRACK_ALLOC, 0UL);
81819f0f
CL
397}
398
399static void print_track(const char *s, struct track *t)
400{
401 if (!t->addr)
402 return;
403
7daf705f 404 printk(KERN_ERR "INFO: %s in %pS age=%lu cpu=%u pid=%d\n",
35995a4d 405 s, (void *)t->addr, jiffies - t->when, t->cpu, t->pid);
24922684
CL
406}
407
408static void print_tracking(struct kmem_cache *s, void *object)
409{
410 if (!(s->flags & SLAB_STORE_USER))
411 return;
412
413 print_track("Allocated", get_track(s, object, TRACK_ALLOC));
414 print_track("Freed", get_track(s, object, TRACK_FREE));
415}
416
417static void print_page_info(struct page *page)
418{
39b26464
CL
419 printk(KERN_ERR "INFO: Slab 0x%p objects=%u used=%u fp=0x%p flags=0x%04lx\n",
420 page, page->objects, page->inuse, page->freelist, page->flags);
24922684
CL
421
422}
423
424static void slab_bug(struct kmem_cache *s, char *fmt, ...)
425{
426 va_list args;
427 char buf[100];
428
429 va_start(args, fmt);
430 vsnprintf(buf, sizeof(buf), fmt, args);
431 va_end(args);
432 printk(KERN_ERR "========================================"
433 "=====================================\n");
434 printk(KERN_ERR "BUG %s: %s\n", s->name, buf);
435 printk(KERN_ERR "----------------------------------------"
436 "-------------------------------------\n\n");
81819f0f
CL
437}
438
24922684
CL
439static void slab_fix(struct kmem_cache *s, char *fmt, ...)
440{
441 va_list args;
442 char buf[100];
443
444 va_start(args, fmt);
445 vsnprintf(buf, sizeof(buf), fmt, args);
446 va_end(args);
447 printk(KERN_ERR "FIX %s: %s\n", s->name, buf);
448}
449
450static void print_trailer(struct kmem_cache *s, struct page *page, u8 *p)
81819f0f
CL
451{
452 unsigned int off; /* Offset of last byte */
a973e9dd 453 u8 *addr = page_address(page);
24922684
CL
454
455 print_tracking(s, p);
456
457 print_page_info(page);
458
459 printk(KERN_ERR "INFO: Object 0x%p @offset=%tu fp=0x%p\n\n",
460 p, p - addr, get_freepointer(s, p));
461
462 if (p > addr + 16)
463 print_section("Bytes b4", p - 16, 16);
464
0ebd652b 465 print_section("Object", p, min_t(unsigned long, s->objsize, PAGE_SIZE));
81819f0f
CL
466
467 if (s->flags & SLAB_RED_ZONE)
468 print_section("Redzone", p + s->objsize,
469 s->inuse - s->objsize);
470
81819f0f
CL
471 if (s->offset)
472 off = s->offset + sizeof(void *);
473 else
474 off = s->inuse;
475
24922684 476 if (s->flags & SLAB_STORE_USER)
81819f0f 477 off += 2 * sizeof(struct track);
81819f0f
CL
478
479 if (off != s->size)
480 /* Beginning of the filler is the free pointer */
24922684
CL
481 print_section("Padding", p + off, s->size - off);
482
483 dump_stack();
81819f0f
CL
484}
485
486static void object_err(struct kmem_cache *s, struct page *page,
487 u8 *object, char *reason)
488{
3dc50637 489 slab_bug(s, "%s", reason);
24922684 490 print_trailer(s, page, object);
81819f0f
CL
491}
492
24922684 493static void slab_err(struct kmem_cache *s, struct page *page, char *fmt, ...)
81819f0f
CL
494{
495 va_list args;
496 char buf[100];
497
24922684
CL
498 va_start(args, fmt);
499 vsnprintf(buf, sizeof(buf), fmt, args);
81819f0f 500 va_end(args);
3dc50637 501 slab_bug(s, "%s", buf);
24922684 502 print_page_info(page);
81819f0f
CL
503 dump_stack();
504}
505
506static void init_object(struct kmem_cache *s, void *object, int active)
507{
508 u8 *p = object;
509
510 if (s->flags & __OBJECT_POISON) {
511 memset(p, POISON_FREE, s->objsize - 1);
06428780 512 p[s->objsize - 1] = POISON_END;
81819f0f
CL
513 }
514
515 if (s->flags & SLAB_RED_ZONE)
516 memset(p + s->objsize,
517 active ? SLUB_RED_ACTIVE : SLUB_RED_INACTIVE,
518 s->inuse - s->objsize);
519}
520
24922684 521static u8 *check_bytes(u8 *start, unsigned int value, unsigned int bytes)
81819f0f
CL
522{
523 while (bytes) {
524 if (*start != (u8)value)
24922684 525 return start;
81819f0f
CL
526 start++;
527 bytes--;
528 }
24922684
CL
529 return NULL;
530}
531
532static void restore_bytes(struct kmem_cache *s, char *message, u8 data,
533 void *from, void *to)
534{
535 slab_fix(s, "Restoring 0x%p-0x%p=0x%x\n", from, to - 1, data);
536 memset(from, data, to - from);
537}
538
539static int check_bytes_and_report(struct kmem_cache *s, struct page *page,
540 u8 *object, char *what,
06428780 541 u8 *start, unsigned int value, unsigned int bytes)
24922684
CL
542{
543 u8 *fault;
544 u8 *end;
545
546 fault = check_bytes(start, value, bytes);
547 if (!fault)
548 return 1;
549
550 end = start + bytes;
551 while (end > fault && end[-1] == value)
552 end--;
553
554 slab_bug(s, "%s overwritten", what);
555 printk(KERN_ERR "INFO: 0x%p-0x%p. First byte 0x%x instead of 0x%x\n",
556 fault, end - 1, fault[0], value);
557 print_trailer(s, page, object);
558
559 restore_bytes(s, what, value, fault, end);
560 return 0;
81819f0f
CL
561}
562
81819f0f
CL
563/*
564 * Object layout:
565 *
566 * object address
567 * Bytes of the object to be managed.
568 * If the freepointer may overlay the object then the free
569 * pointer is the first word of the object.
672bba3a 570 *
81819f0f
CL
571 * Poisoning uses 0x6b (POISON_FREE) and the last byte is
572 * 0xa5 (POISON_END)
573 *
574 * object + s->objsize
575 * Padding to reach word boundary. This is also used for Redzoning.
672bba3a
CL
576 * Padding is extended by another word if Redzoning is enabled and
577 * objsize == inuse.
578 *
81819f0f
CL
579 * We fill with 0xbb (RED_INACTIVE) for inactive objects and with
580 * 0xcc (RED_ACTIVE) for objects in use.
581 *
582 * object + s->inuse
672bba3a
CL
583 * Meta data starts here.
584 *
81819f0f
CL
585 * A. Free pointer (if we cannot overwrite object on free)
586 * B. Tracking data for SLAB_STORE_USER
672bba3a 587 * C. Padding to reach required alignment boundary or at mininum
6446faa2 588 * one word if debugging is on to be able to detect writes
672bba3a
CL
589 * before the word boundary.
590 *
591 * Padding is done using 0x5a (POISON_INUSE)
81819f0f
CL
592 *
593 * object + s->size
672bba3a 594 * Nothing is used beyond s->size.
81819f0f 595 *
672bba3a
CL
596 * If slabcaches are merged then the objsize and inuse boundaries are mostly
597 * ignored. And therefore no slab options that rely on these boundaries
81819f0f
CL
598 * may be used with merged slabcaches.
599 */
600
81819f0f
CL
601static int check_pad_bytes(struct kmem_cache *s, struct page *page, u8 *p)
602{
603 unsigned long off = s->inuse; /* The end of info */
604
605 if (s->offset)
606 /* Freepointer is placed after the object. */
607 off += sizeof(void *);
608
609 if (s->flags & SLAB_STORE_USER)
610 /* We also have user information there */
611 off += 2 * sizeof(struct track);
612
613 if (s->size == off)
614 return 1;
615
24922684
CL
616 return check_bytes_and_report(s, page, p, "Object padding",
617 p + off, POISON_INUSE, s->size - off);
81819f0f
CL
618}
619
39b26464 620/* Check the pad bytes at the end of a slab page */
81819f0f
CL
621static int slab_pad_check(struct kmem_cache *s, struct page *page)
622{
24922684
CL
623 u8 *start;
624 u8 *fault;
625 u8 *end;
626 int length;
627 int remainder;
81819f0f
CL
628
629 if (!(s->flags & SLAB_POISON))
630 return 1;
631
a973e9dd 632 start = page_address(page);
834f3d11 633 length = (PAGE_SIZE << compound_order(page));
39b26464
CL
634 end = start + length;
635 remainder = length % s->size;
81819f0f
CL
636 if (!remainder)
637 return 1;
638
39b26464 639 fault = check_bytes(end - remainder, POISON_INUSE, remainder);
24922684
CL
640 if (!fault)
641 return 1;
642 while (end > fault && end[-1] == POISON_INUSE)
643 end--;
644
645 slab_err(s, page, "Padding overwritten. 0x%p-0x%p", fault, end - 1);
39b26464 646 print_section("Padding", end - remainder, remainder);
24922684
CL
647
648 restore_bytes(s, "slab padding", POISON_INUSE, start, end);
649 return 0;
81819f0f
CL
650}
651
652static int check_object(struct kmem_cache *s, struct page *page,
653 void *object, int active)
654{
655 u8 *p = object;
656 u8 *endobject = object + s->objsize;
657
658 if (s->flags & SLAB_RED_ZONE) {
659 unsigned int red =
660 active ? SLUB_RED_ACTIVE : SLUB_RED_INACTIVE;
661
24922684
CL
662 if (!check_bytes_and_report(s, page, object, "Redzone",
663 endobject, red, s->inuse - s->objsize))
81819f0f 664 return 0;
81819f0f 665 } else {
3adbefee
IM
666 if ((s->flags & SLAB_POISON) && s->objsize < s->inuse) {
667 check_bytes_and_report(s, page, p, "Alignment padding",
668 endobject, POISON_INUSE, s->inuse - s->objsize);
669 }
81819f0f
CL
670 }
671
672 if (s->flags & SLAB_POISON) {
673 if (!active && (s->flags & __OBJECT_POISON) &&
24922684
CL
674 (!check_bytes_and_report(s, page, p, "Poison", p,
675 POISON_FREE, s->objsize - 1) ||
676 !check_bytes_and_report(s, page, p, "Poison",
06428780 677 p + s->objsize - 1, POISON_END, 1)))
81819f0f 678 return 0;
81819f0f
CL
679 /*
680 * check_pad_bytes cleans up on its own.
681 */
682 check_pad_bytes(s, page, p);
683 }
684
685 if (!s->offset && active)
686 /*
687 * Object and freepointer overlap. Cannot check
688 * freepointer while object is allocated.
689 */
690 return 1;
691
692 /* Check free pointer validity */
693 if (!check_valid_pointer(s, page, get_freepointer(s, p))) {
694 object_err(s, page, p, "Freepointer corrupt");
695 /*
696 * No choice but to zap it and thus loose the remainder
697 * of the free objects in this slab. May cause
672bba3a 698 * another error because the object count is now wrong.
81819f0f 699 */
a973e9dd 700 set_freepointer(s, p, NULL);
81819f0f
CL
701 return 0;
702 }
703 return 1;
704}
705
706static int check_slab(struct kmem_cache *s, struct page *page)
707{
39b26464
CL
708 int maxobj;
709
81819f0f
CL
710 VM_BUG_ON(!irqs_disabled());
711
712 if (!PageSlab(page)) {
24922684 713 slab_err(s, page, "Not a valid slab page");
81819f0f
CL
714 return 0;
715 }
39b26464
CL
716
717 maxobj = (PAGE_SIZE << compound_order(page)) / s->size;
718 if (page->objects > maxobj) {
719 slab_err(s, page, "objects %u > max %u",
720 s->name, page->objects, maxobj);
721 return 0;
722 }
723 if (page->inuse > page->objects) {
24922684 724 slab_err(s, page, "inuse %u > max %u",
39b26464 725 s->name, page->inuse, page->objects);
81819f0f
CL
726 return 0;
727 }
728 /* Slab_pad_check fixes things up after itself */
729 slab_pad_check(s, page);
730 return 1;
731}
732
733/*
672bba3a
CL
734 * Determine if a certain object on a page is on the freelist. Must hold the
735 * slab lock to guarantee that the chains are in a consistent state.
81819f0f
CL
736 */
737static int on_freelist(struct kmem_cache *s, struct page *page, void *search)
738{
739 int nr = 0;
740 void *fp = page->freelist;
741 void *object = NULL;
224a88be 742 unsigned long max_objects;
81819f0f 743
39b26464 744 while (fp && nr <= page->objects) {
81819f0f
CL
745 if (fp == search)
746 return 1;
747 if (!check_valid_pointer(s, page, fp)) {
748 if (object) {
749 object_err(s, page, object,
750 "Freechain corrupt");
a973e9dd 751 set_freepointer(s, object, NULL);
81819f0f
CL
752 break;
753 } else {
24922684 754 slab_err(s, page, "Freepointer corrupt");
a973e9dd 755 page->freelist = NULL;
39b26464 756 page->inuse = page->objects;
24922684 757 slab_fix(s, "Freelist cleared");
81819f0f
CL
758 return 0;
759 }
760 break;
761 }
762 object = fp;
763 fp = get_freepointer(s, object);
764 nr++;
765 }
766
224a88be
CL
767 max_objects = (PAGE_SIZE << compound_order(page)) / s->size;
768 if (max_objects > 65535)
769 max_objects = 65535;
770
771 if (page->objects != max_objects) {
772 slab_err(s, page, "Wrong number of objects. Found %d but "
773 "should be %d", page->objects, max_objects);
774 page->objects = max_objects;
775 slab_fix(s, "Number of objects adjusted.");
776 }
39b26464 777 if (page->inuse != page->objects - nr) {
70d71228 778 slab_err(s, page, "Wrong object count. Counter is %d but "
39b26464
CL
779 "counted were %d", page->inuse, page->objects - nr);
780 page->inuse = page->objects - nr;
24922684 781 slab_fix(s, "Object count adjusted.");
81819f0f
CL
782 }
783 return search == NULL;
784}
785
0121c619
CL
786static void trace(struct kmem_cache *s, struct page *page, void *object,
787 int alloc)
3ec09742
CL
788{
789 if (s->flags & SLAB_TRACE) {
790 printk(KERN_INFO "TRACE %s %s 0x%p inuse=%d fp=0x%p\n",
791 s->name,
792 alloc ? "alloc" : "free",
793 object, page->inuse,
794 page->freelist);
795
796 if (!alloc)
797 print_section("Object", (void *)object, s->objsize);
798
799 dump_stack();
800 }
801}
802
643b1138 803/*
672bba3a 804 * Tracking of fully allocated slabs for debugging purposes.
643b1138 805 */
e95eed57 806static void add_full(struct kmem_cache_node *n, struct page *page)
643b1138 807{
643b1138
CL
808 spin_lock(&n->list_lock);
809 list_add(&page->lru, &n->full);
810 spin_unlock(&n->list_lock);
811}
812
813static void remove_full(struct kmem_cache *s, struct page *page)
814{
815 struct kmem_cache_node *n;
816
817 if (!(s->flags & SLAB_STORE_USER))
818 return;
819
820 n = get_node(s, page_to_nid(page));
821
822 spin_lock(&n->list_lock);
823 list_del(&page->lru);
824 spin_unlock(&n->list_lock);
825}
826
0f389ec6
CL
827/* Tracking of the number of slabs for debugging purposes */
828static inline unsigned long slabs_node(struct kmem_cache *s, int node)
829{
830 struct kmem_cache_node *n = get_node(s, node);
831
832 return atomic_long_read(&n->nr_slabs);
833}
834
205ab99d 835static inline void inc_slabs_node(struct kmem_cache *s, int node, int objects)
0f389ec6
CL
836{
837 struct kmem_cache_node *n = get_node(s, node);
838
839 /*
840 * May be called early in order to allocate a slab for the
841 * kmem_cache_node structure. Solve the chicken-egg
842 * dilemma by deferring the increment of the count during
843 * bootstrap (see early_kmem_cache_node_alloc).
844 */
205ab99d 845 if (!NUMA_BUILD || n) {
0f389ec6 846 atomic_long_inc(&n->nr_slabs);
205ab99d
CL
847 atomic_long_add(objects, &n->total_objects);
848 }
0f389ec6 849}
205ab99d 850static inline void dec_slabs_node(struct kmem_cache *s, int node, int objects)
0f389ec6
CL
851{
852 struct kmem_cache_node *n = get_node(s, node);
853
854 atomic_long_dec(&n->nr_slabs);
205ab99d 855 atomic_long_sub(objects, &n->total_objects);
0f389ec6
CL
856}
857
858/* Object debug checks for alloc/free paths */
3ec09742
CL
859static void setup_object_debug(struct kmem_cache *s, struct page *page,
860 void *object)
861{
862 if (!(s->flags & (SLAB_STORE_USER|SLAB_RED_ZONE|__OBJECT_POISON)))
863 return;
864
865 init_object(s, object, 0);
866 init_tracking(s, object);
867}
868
869static int alloc_debug_processing(struct kmem_cache *s, struct page *page,
35995a4d 870 void *object, unsigned long addr)
81819f0f
CL
871{
872 if (!check_slab(s, page))
873 goto bad;
874
d692ef6d 875 if (!on_freelist(s, page, object)) {
24922684 876 object_err(s, page, object, "Object already allocated");
70d71228 877 goto bad;
81819f0f
CL
878 }
879
880 if (!check_valid_pointer(s, page, object)) {
881 object_err(s, page, object, "Freelist Pointer check fails");
70d71228 882 goto bad;
81819f0f
CL
883 }
884
d692ef6d 885 if (!check_object(s, page, object, 0))
81819f0f 886 goto bad;
81819f0f 887
3ec09742
CL
888 /* Success perform special debug activities for allocs */
889 if (s->flags & SLAB_STORE_USER)
890 set_track(s, object, TRACK_ALLOC, addr);
891 trace(s, page, object, 1);
892 init_object(s, object, 1);
81819f0f 893 return 1;
3ec09742 894
81819f0f
CL
895bad:
896 if (PageSlab(page)) {
897 /*
898 * If this is a slab page then lets do the best we can
899 * to avoid issues in the future. Marking all objects
672bba3a 900 * as used avoids touching the remaining objects.
81819f0f 901 */
24922684 902 slab_fix(s, "Marking all objects used");
39b26464 903 page->inuse = page->objects;
a973e9dd 904 page->freelist = NULL;
81819f0f
CL
905 }
906 return 0;
907}
908
3ec09742 909static int free_debug_processing(struct kmem_cache *s, struct page *page,
35995a4d 910 void *object, unsigned long addr)
81819f0f
CL
911{
912 if (!check_slab(s, page))
913 goto fail;
914
915 if (!check_valid_pointer(s, page, object)) {
70d71228 916 slab_err(s, page, "Invalid object pointer 0x%p", object);
81819f0f
CL
917 goto fail;
918 }
919
920 if (on_freelist(s, page, object)) {
24922684 921 object_err(s, page, object, "Object already free");
81819f0f
CL
922 goto fail;
923 }
924
925 if (!check_object(s, page, object, 1))
926 return 0;
927
928 if (unlikely(s != page->slab)) {
3adbefee 929 if (!PageSlab(page)) {
70d71228
CL
930 slab_err(s, page, "Attempt to free object(0x%p) "
931 "outside of slab", object);
3adbefee 932 } else if (!page->slab) {
81819f0f 933 printk(KERN_ERR
70d71228 934 "SLUB <none>: no slab for object 0x%p.\n",
81819f0f 935 object);
70d71228 936 dump_stack();
06428780 937 } else
24922684
CL
938 object_err(s, page, object,
939 "page slab pointer corrupt.");
81819f0f
CL
940 goto fail;
941 }
3ec09742
CL
942
943 /* Special debug activities for freeing objects */
8a38082d 944 if (!PageSlubFrozen(page) && !page->freelist)
3ec09742
CL
945 remove_full(s, page);
946 if (s->flags & SLAB_STORE_USER)
947 set_track(s, object, TRACK_FREE, addr);
948 trace(s, page, object, 0);
949 init_object(s, object, 0);
81819f0f 950 return 1;
3ec09742 951
81819f0f 952fail:
24922684 953 slab_fix(s, "Object at 0x%p not freed", object);
81819f0f
CL
954 return 0;
955}
956
41ecc55b
CL
957static int __init setup_slub_debug(char *str)
958{
f0630fff
CL
959 slub_debug = DEBUG_DEFAULT_FLAGS;
960 if (*str++ != '=' || !*str)
961 /*
962 * No options specified. Switch on full debugging.
963 */
964 goto out;
965
966 if (*str == ',')
967 /*
968 * No options but restriction on slabs. This means full
969 * debugging for slabs matching a pattern.
970 */
971 goto check_slabs;
972
973 slub_debug = 0;
974 if (*str == '-')
975 /*
976 * Switch off all debugging measures.
977 */
978 goto out;
979
980 /*
981 * Determine which debug features should be switched on
982 */
06428780 983 for (; *str && *str != ','; str++) {
f0630fff
CL
984 switch (tolower(*str)) {
985 case 'f':
986 slub_debug |= SLAB_DEBUG_FREE;
987 break;
988 case 'z':
989 slub_debug |= SLAB_RED_ZONE;
990 break;
991 case 'p':
992 slub_debug |= SLAB_POISON;
993 break;
994 case 'u':
995 slub_debug |= SLAB_STORE_USER;
996 break;
997 case 't':
998 slub_debug |= SLAB_TRACE;
999 break;
1000 default:
1001 printk(KERN_ERR "slub_debug option '%c' "
06428780 1002 "unknown. skipped\n", *str);
f0630fff 1003 }
41ecc55b
CL
1004 }
1005
f0630fff 1006check_slabs:
41ecc55b
CL
1007 if (*str == ',')
1008 slub_debug_slabs = str + 1;
f0630fff 1009out:
41ecc55b
CL
1010 return 1;
1011}
1012
1013__setup("slub_debug", setup_slub_debug);
1014
ba0268a8
CL
1015static unsigned long kmem_cache_flags(unsigned long objsize,
1016 unsigned long flags, const char *name,
51cc5068 1017 void (*ctor)(void *))
41ecc55b
CL
1018{
1019 /*
e153362a 1020 * Enable debugging if selected on the kernel commandline.
41ecc55b 1021 */
e153362a
CL
1022 if (slub_debug && (!slub_debug_slabs ||
1023 strncmp(slub_debug_slabs, name, strlen(slub_debug_slabs)) == 0))
1024 flags |= slub_debug;
ba0268a8
CL
1025
1026 return flags;
41ecc55b
CL
1027}
1028#else
3ec09742
CL
1029static inline void setup_object_debug(struct kmem_cache *s,
1030 struct page *page, void *object) {}
41ecc55b 1031
3ec09742 1032static inline int alloc_debug_processing(struct kmem_cache *s,
35995a4d 1033 struct page *page, void *object, unsigned long addr) { return 0; }
41ecc55b 1034
3ec09742 1035static inline int free_debug_processing(struct kmem_cache *s,
35995a4d 1036 struct page *page, void *object, unsigned long addr) { return 0; }
41ecc55b 1037
41ecc55b
CL
1038static inline int slab_pad_check(struct kmem_cache *s, struct page *page)
1039 { return 1; }
1040static inline int check_object(struct kmem_cache *s, struct page *page,
1041 void *object, int active) { return 1; }
3ec09742 1042static inline void add_full(struct kmem_cache_node *n, struct page *page) {}
ba0268a8
CL
1043static inline unsigned long kmem_cache_flags(unsigned long objsize,
1044 unsigned long flags, const char *name,
51cc5068 1045 void (*ctor)(void *))
ba0268a8
CL
1046{
1047 return flags;
1048}
41ecc55b 1049#define slub_debug 0
0f389ec6
CL
1050
1051static inline unsigned long slabs_node(struct kmem_cache *s, int node)
1052 { return 0; }
205ab99d
CL
1053static inline void inc_slabs_node(struct kmem_cache *s, int node,
1054 int objects) {}
1055static inline void dec_slabs_node(struct kmem_cache *s, int node,
1056 int objects) {}
41ecc55b 1057#endif
205ab99d 1058
81819f0f
CL
1059/*
1060 * Slab allocation and freeing
1061 */
65c3376a
CL
1062static inline struct page *alloc_slab_page(gfp_t flags, int node,
1063 struct kmem_cache_order_objects oo)
1064{
1065 int order = oo_order(oo);
1066
1067 if (node == -1)
1068 return alloc_pages(flags, order);
1069 else
1070 return alloc_pages_node(node, flags, order);
1071}
1072
81819f0f
CL
1073static struct page *allocate_slab(struct kmem_cache *s, gfp_t flags, int node)
1074{
06428780 1075 struct page *page;
834f3d11 1076 struct kmem_cache_order_objects oo = s->oo;
81819f0f 1077
b7a49f0d 1078 flags |= s->allocflags;
e12ba74d 1079
65c3376a
CL
1080 page = alloc_slab_page(flags | __GFP_NOWARN | __GFP_NORETRY, node,
1081 oo);
1082 if (unlikely(!page)) {
1083 oo = s->min;
1084 /*
1085 * Allocation may have failed due to fragmentation.
1086 * Try a lower order alloc if possible
1087 */
1088 page = alloc_slab_page(flags, node, oo);
1089 if (!page)
1090 return NULL;
81819f0f 1091
65c3376a
CL
1092 stat(get_cpu_slab(s, raw_smp_processor_id()), ORDER_FALLBACK);
1093 }
834f3d11 1094 page->objects = oo_objects(oo);
81819f0f
CL
1095 mod_zone_page_state(page_zone(page),
1096 (s->flags & SLAB_RECLAIM_ACCOUNT) ?
1097 NR_SLAB_RECLAIMABLE : NR_SLAB_UNRECLAIMABLE,
65c3376a 1098 1 << oo_order(oo));
81819f0f
CL
1099
1100 return page;
1101}
1102
1103static void setup_object(struct kmem_cache *s, struct page *page,
1104 void *object)
1105{
3ec09742 1106 setup_object_debug(s, page, object);
4f104934 1107 if (unlikely(s->ctor))
51cc5068 1108 s->ctor(object);
81819f0f
CL
1109}
1110
1111static struct page *new_slab(struct kmem_cache *s, gfp_t flags, int node)
1112{
1113 struct page *page;
81819f0f 1114 void *start;
81819f0f
CL
1115 void *last;
1116 void *p;
1117
6cb06229 1118 BUG_ON(flags & GFP_SLAB_BUG_MASK);
81819f0f 1119
6cb06229
CL
1120 page = allocate_slab(s,
1121 flags & (GFP_RECLAIM_MASK | GFP_CONSTRAINT_MASK), node);
81819f0f
CL
1122 if (!page)
1123 goto out;
1124
205ab99d 1125 inc_slabs_node(s, page_to_nid(page), page->objects);
81819f0f
CL
1126 page->slab = s;
1127 page->flags |= 1 << PG_slab;
1128 if (s->flags & (SLAB_DEBUG_FREE | SLAB_RED_ZONE | SLAB_POISON |
1129 SLAB_STORE_USER | SLAB_TRACE))
8a38082d 1130 __SetPageSlubDebug(page);
81819f0f
CL
1131
1132 start = page_address(page);
81819f0f
CL
1133
1134 if (unlikely(s->flags & SLAB_POISON))
834f3d11 1135 memset(start, POISON_INUSE, PAGE_SIZE << compound_order(page));
81819f0f
CL
1136
1137 last = start;
224a88be 1138 for_each_object(p, s, start, page->objects) {
81819f0f
CL
1139 setup_object(s, page, last);
1140 set_freepointer(s, last, p);
1141 last = p;
1142 }
1143 setup_object(s, page, last);
a973e9dd 1144 set_freepointer(s, last, NULL);
81819f0f
CL
1145
1146 page->freelist = start;
1147 page->inuse = 0;
1148out:
81819f0f
CL
1149 return page;
1150}
1151
1152static void __free_slab(struct kmem_cache *s, struct page *page)
1153{
834f3d11
CL
1154 int order = compound_order(page);
1155 int pages = 1 << order;
81819f0f 1156
8a38082d 1157 if (unlikely(SLABDEBUG && PageSlubDebug(page))) {
81819f0f
CL
1158 void *p;
1159
1160 slab_pad_check(s, page);
224a88be
CL
1161 for_each_object(p, s, page_address(page),
1162 page->objects)
81819f0f 1163 check_object(s, page, p, 0);
8a38082d 1164 __ClearPageSlubDebug(page);
81819f0f
CL
1165 }
1166
1167 mod_zone_page_state(page_zone(page),
1168 (s->flags & SLAB_RECLAIM_ACCOUNT) ?
1169 NR_SLAB_RECLAIMABLE : NR_SLAB_UNRECLAIMABLE,
06428780 1170 -pages);
81819f0f 1171
49bd5221
CL
1172 __ClearPageSlab(page);
1173 reset_page_mapcount(page);
834f3d11 1174 __free_pages(page, order);
81819f0f
CL
1175}
1176
1177static void rcu_free_slab(struct rcu_head *h)
1178{
1179 struct page *page;
1180
1181 page = container_of((struct list_head *)h, struct page, lru);
1182 __free_slab(page->slab, page);
1183}
1184
1185static void free_slab(struct kmem_cache *s, struct page *page)
1186{
1187 if (unlikely(s->flags & SLAB_DESTROY_BY_RCU)) {
1188 /*
1189 * RCU free overloads the RCU head over the LRU
1190 */
1191 struct rcu_head *head = (void *)&page->lru;
1192
1193 call_rcu(head, rcu_free_slab);
1194 } else
1195 __free_slab(s, page);
1196}
1197
1198static void discard_slab(struct kmem_cache *s, struct page *page)
1199{
205ab99d 1200 dec_slabs_node(s, page_to_nid(page), page->objects);
81819f0f
CL
1201 free_slab(s, page);
1202}
1203
1204/*
1205 * Per slab locking using the pagelock
1206 */
1207static __always_inline void slab_lock(struct page *page)
1208{
1209 bit_spin_lock(PG_locked, &page->flags);
1210}
1211
1212static __always_inline void slab_unlock(struct page *page)
1213{
a76d3546 1214 __bit_spin_unlock(PG_locked, &page->flags);
81819f0f
CL
1215}
1216
1217static __always_inline int slab_trylock(struct page *page)
1218{
1219 int rc = 1;
1220
1221 rc = bit_spin_trylock(PG_locked, &page->flags);
1222 return rc;
1223}
1224
1225/*
1226 * Management of partially allocated slabs
1227 */
7c2e132c
CL
1228static void add_partial(struct kmem_cache_node *n,
1229 struct page *page, int tail)
81819f0f 1230{
e95eed57
CL
1231 spin_lock(&n->list_lock);
1232 n->nr_partial++;
7c2e132c
CL
1233 if (tail)
1234 list_add_tail(&page->lru, &n->partial);
1235 else
1236 list_add(&page->lru, &n->partial);
81819f0f
CL
1237 spin_unlock(&n->list_lock);
1238}
1239
0121c619 1240static void remove_partial(struct kmem_cache *s, struct page *page)
81819f0f
CL
1241{
1242 struct kmem_cache_node *n = get_node(s, page_to_nid(page));
1243
1244 spin_lock(&n->list_lock);
1245 list_del(&page->lru);
1246 n->nr_partial--;
1247 spin_unlock(&n->list_lock);
1248}
1249
1250/*
672bba3a 1251 * Lock slab and remove from the partial list.
81819f0f 1252 *
672bba3a 1253 * Must hold list_lock.
81819f0f 1254 */
0121c619
CL
1255static inline int lock_and_freeze_slab(struct kmem_cache_node *n,
1256 struct page *page)
81819f0f
CL
1257{
1258 if (slab_trylock(page)) {
1259 list_del(&page->lru);
1260 n->nr_partial--;
8a38082d 1261 __SetPageSlubFrozen(page);
81819f0f
CL
1262 return 1;
1263 }
1264 return 0;
1265}
1266
1267/*
672bba3a 1268 * Try to allocate a partial slab from a specific node.
81819f0f
CL
1269 */
1270static struct page *get_partial_node(struct kmem_cache_node *n)
1271{
1272 struct page *page;
1273
1274 /*
1275 * Racy check. If we mistakenly see no partial slabs then we
1276 * just allocate an empty slab. If we mistakenly try to get a
672bba3a
CL
1277 * partial slab and there is none available then get_partials()
1278 * will return NULL.
81819f0f
CL
1279 */
1280 if (!n || !n->nr_partial)
1281 return NULL;
1282
1283 spin_lock(&n->list_lock);
1284 list_for_each_entry(page, &n->partial, lru)
4b6f0750 1285 if (lock_and_freeze_slab(n, page))
81819f0f
CL
1286 goto out;
1287 page = NULL;
1288out:
1289 spin_unlock(&n->list_lock);
1290 return page;
1291}
1292
1293/*
672bba3a 1294 * Get a page from somewhere. Search in increasing NUMA distances.
81819f0f
CL
1295 */
1296static struct page *get_any_partial(struct kmem_cache *s, gfp_t flags)
1297{
1298#ifdef CONFIG_NUMA
1299 struct zonelist *zonelist;
dd1a239f 1300 struct zoneref *z;
54a6eb5c
MG
1301 struct zone *zone;
1302 enum zone_type high_zoneidx = gfp_zone(flags);
81819f0f
CL
1303 struct page *page;
1304
1305 /*
672bba3a
CL
1306 * The defrag ratio allows a configuration of the tradeoffs between
1307 * inter node defragmentation and node local allocations. A lower
1308 * defrag_ratio increases the tendency to do local allocations
1309 * instead of attempting to obtain partial slabs from other nodes.
81819f0f 1310 *
672bba3a
CL
1311 * If the defrag_ratio is set to 0 then kmalloc() always
1312 * returns node local objects. If the ratio is higher then kmalloc()
1313 * may return off node objects because partial slabs are obtained
1314 * from other nodes and filled up.
81819f0f 1315 *
6446faa2 1316 * If /sys/kernel/slab/xx/defrag_ratio is set to 100 (which makes
672bba3a
CL
1317 * defrag_ratio = 1000) then every (well almost) allocation will
1318 * first attempt to defrag slab caches on other nodes. This means
1319 * scanning over all nodes to look for partial slabs which may be
1320 * expensive if we do it every time we are trying to find a slab
1321 * with available objects.
81819f0f 1322 */
9824601e
CL
1323 if (!s->remote_node_defrag_ratio ||
1324 get_cycles() % 1024 > s->remote_node_defrag_ratio)
81819f0f
CL
1325 return NULL;
1326
0e88460d 1327 zonelist = node_zonelist(slab_node(current->mempolicy), flags);
54a6eb5c 1328 for_each_zone_zonelist(zone, z, zonelist, high_zoneidx) {
81819f0f
CL
1329 struct kmem_cache_node *n;
1330
54a6eb5c 1331 n = get_node(s, zone_to_nid(zone));
81819f0f 1332
54a6eb5c 1333 if (n && cpuset_zone_allowed_hardwall(zone, flags) &&
5595cffc 1334 n->nr_partial > n->min_partial) {
81819f0f
CL
1335 page = get_partial_node(n);
1336 if (page)
1337 return page;
1338 }
1339 }
1340#endif
1341 return NULL;
1342}
1343
1344/*
1345 * Get a partial page, lock it and return it.
1346 */
1347static struct page *get_partial(struct kmem_cache *s, gfp_t flags, int node)
1348{
1349 struct page *page;
1350 int searchnode = (node == -1) ? numa_node_id() : node;
1351
1352 page = get_partial_node(get_node(s, searchnode));
1353 if (page || (flags & __GFP_THISNODE))
1354 return page;
1355
1356 return get_any_partial(s, flags);
1357}
1358
1359/*
1360 * Move a page back to the lists.
1361 *
1362 * Must be called with the slab lock held.
1363 *
1364 * On exit the slab lock will have been dropped.
1365 */
7c2e132c 1366static void unfreeze_slab(struct kmem_cache *s, struct page *page, int tail)
81819f0f 1367{
e95eed57 1368 struct kmem_cache_node *n = get_node(s, page_to_nid(page));
8ff12cfc 1369 struct kmem_cache_cpu *c = get_cpu_slab(s, smp_processor_id());
e95eed57 1370
8a38082d 1371 __ClearPageSlubFrozen(page);
81819f0f 1372 if (page->inuse) {
e95eed57 1373
a973e9dd 1374 if (page->freelist) {
7c2e132c 1375 add_partial(n, page, tail);
8ff12cfc
CL
1376 stat(c, tail ? DEACTIVATE_TO_TAIL : DEACTIVATE_TO_HEAD);
1377 } else {
1378 stat(c, DEACTIVATE_FULL);
8a38082d
AW
1379 if (SLABDEBUG && PageSlubDebug(page) &&
1380 (s->flags & SLAB_STORE_USER))
8ff12cfc
CL
1381 add_full(n, page);
1382 }
81819f0f
CL
1383 slab_unlock(page);
1384 } else {
8ff12cfc 1385 stat(c, DEACTIVATE_EMPTY);
5595cffc 1386 if (n->nr_partial < n->min_partial) {
e95eed57 1387 /*
672bba3a
CL
1388 * Adding an empty slab to the partial slabs in order
1389 * to avoid page allocator overhead. This slab needs
1390 * to come after the other slabs with objects in
6446faa2
CL
1391 * so that the others get filled first. That way the
1392 * size of the partial list stays small.
1393 *
0121c619
CL
1394 * kmem_cache_shrink can reclaim any empty slabs from
1395 * the partial list.
e95eed57 1396 */
7c2e132c 1397 add_partial(n, page, 1);
e95eed57
CL
1398 slab_unlock(page);
1399 } else {
1400 slab_unlock(page);
8ff12cfc 1401 stat(get_cpu_slab(s, raw_smp_processor_id()), FREE_SLAB);
e95eed57
CL
1402 discard_slab(s, page);
1403 }
81819f0f
CL
1404 }
1405}
1406
1407/*
1408 * Remove the cpu slab
1409 */
dfb4f096 1410static void deactivate_slab(struct kmem_cache *s, struct kmem_cache_cpu *c)
81819f0f 1411{
dfb4f096 1412 struct page *page = c->page;
7c2e132c 1413 int tail = 1;
8ff12cfc 1414
b773ad73 1415 if (page->freelist)
8ff12cfc 1416 stat(c, DEACTIVATE_REMOTE_FREES);
894b8788 1417 /*
6446faa2 1418 * Merge cpu freelist into slab freelist. Typically we get here
894b8788
CL
1419 * because both freelists are empty. So this is unlikely
1420 * to occur.
1421 */
a973e9dd 1422 while (unlikely(c->freelist)) {
894b8788
CL
1423 void **object;
1424
7c2e132c
CL
1425 tail = 0; /* Hot objects. Put the slab first */
1426
894b8788 1427 /* Retrieve object from cpu_freelist */
dfb4f096 1428 object = c->freelist;
b3fba8da 1429 c->freelist = c->freelist[c->offset];
894b8788
CL
1430
1431 /* And put onto the regular freelist */
b3fba8da 1432 object[c->offset] = page->freelist;
894b8788
CL
1433 page->freelist = object;
1434 page->inuse--;
1435 }
dfb4f096 1436 c->page = NULL;
7c2e132c 1437 unfreeze_slab(s, page, tail);
81819f0f
CL
1438}
1439
dfb4f096 1440static inline void flush_slab(struct kmem_cache *s, struct kmem_cache_cpu *c)
81819f0f 1441{
8ff12cfc 1442 stat(c, CPUSLAB_FLUSH);
dfb4f096
CL
1443 slab_lock(c->page);
1444 deactivate_slab(s, c);
81819f0f
CL
1445}
1446
1447/*
1448 * Flush cpu slab.
6446faa2 1449 *
81819f0f
CL
1450 * Called from IPI handler with interrupts disabled.
1451 */
0c710013 1452static inline void __flush_cpu_slab(struct kmem_cache *s, int cpu)
81819f0f 1453{
dfb4f096 1454 struct kmem_cache_cpu *c = get_cpu_slab(s, cpu);
81819f0f 1455
dfb4f096
CL
1456 if (likely(c && c->page))
1457 flush_slab(s, c);
81819f0f
CL
1458}
1459
1460static void flush_cpu_slab(void *d)
1461{
1462 struct kmem_cache *s = d;
81819f0f 1463
dfb4f096 1464 __flush_cpu_slab(s, smp_processor_id());
81819f0f
CL
1465}
1466
1467static void flush_all(struct kmem_cache *s)
1468{
15c8b6c1 1469 on_each_cpu(flush_cpu_slab, s, 1);
81819f0f
CL
1470}
1471
dfb4f096
CL
1472/*
1473 * Check if the objects in a per cpu structure fit numa
1474 * locality expectations.
1475 */
1476static inline int node_match(struct kmem_cache_cpu *c, int node)
1477{
1478#ifdef CONFIG_NUMA
1479 if (node != -1 && c->node != node)
1480 return 0;
1481#endif
1482 return 1;
1483}
1484
81819f0f 1485/*
894b8788
CL
1486 * Slow path. The lockless freelist is empty or we need to perform
1487 * debugging duties.
1488 *
1489 * Interrupts are disabled.
81819f0f 1490 *
894b8788
CL
1491 * Processing is still very fast if new objects have been freed to the
1492 * regular freelist. In that case we simply take over the regular freelist
1493 * as the lockless freelist and zap the regular freelist.
81819f0f 1494 *
894b8788
CL
1495 * If that is not working then we fall back to the partial lists. We take the
1496 * first element of the freelist as the object to allocate now and move the
1497 * rest of the freelist to the lockless freelist.
81819f0f 1498 *
894b8788 1499 * And if we were unable to get a new slab from the partial slab lists then
6446faa2
CL
1500 * we need to allocate a new slab. This is the slowest path since it involves
1501 * a call to the page allocator and the setup of a new slab.
81819f0f 1502 */
35995a4d
EGM
1503static void *__slab_alloc(struct kmem_cache *s, gfp_t gfpflags, int node,
1504 unsigned long addr, struct kmem_cache_cpu *c)
81819f0f 1505{
81819f0f 1506 void **object;
dfb4f096 1507 struct page *new;
81819f0f 1508
e72e9c23
LT
1509 /* We handle __GFP_ZERO in the caller */
1510 gfpflags &= ~__GFP_ZERO;
1511
dfb4f096 1512 if (!c->page)
81819f0f
CL
1513 goto new_slab;
1514
dfb4f096
CL
1515 slab_lock(c->page);
1516 if (unlikely(!node_match(c, node)))
81819f0f 1517 goto another_slab;
6446faa2 1518
8ff12cfc 1519 stat(c, ALLOC_REFILL);
6446faa2 1520
894b8788 1521load_freelist:
dfb4f096 1522 object = c->page->freelist;
a973e9dd 1523 if (unlikely(!object))
81819f0f 1524 goto another_slab;
8a38082d 1525 if (unlikely(SLABDEBUG && PageSlubDebug(c->page)))
81819f0f
CL
1526 goto debug;
1527
b3fba8da 1528 c->freelist = object[c->offset];
39b26464 1529 c->page->inuse = c->page->objects;
a973e9dd 1530 c->page->freelist = NULL;
dfb4f096 1531 c->node = page_to_nid(c->page);
1f84260c 1532unlock_out:
dfb4f096 1533 slab_unlock(c->page);
8ff12cfc 1534 stat(c, ALLOC_SLOWPATH);
81819f0f
CL
1535 return object;
1536
1537another_slab:
dfb4f096 1538 deactivate_slab(s, c);
81819f0f
CL
1539
1540new_slab:
dfb4f096
CL
1541 new = get_partial(s, gfpflags, node);
1542 if (new) {
1543 c->page = new;
8ff12cfc 1544 stat(c, ALLOC_FROM_PARTIAL);
894b8788 1545 goto load_freelist;
81819f0f
CL
1546 }
1547
b811c202
CL
1548 if (gfpflags & __GFP_WAIT)
1549 local_irq_enable();
1550
dfb4f096 1551 new = new_slab(s, gfpflags, node);
b811c202
CL
1552
1553 if (gfpflags & __GFP_WAIT)
1554 local_irq_disable();
1555
dfb4f096
CL
1556 if (new) {
1557 c = get_cpu_slab(s, smp_processor_id());
8ff12cfc 1558 stat(c, ALLOC_SLAB);
05aa3450 1559 if (c->page)
dfb4f096 1560 flush_slab(s, c);
dfb4f096 1561 slab_lock(new);
8a38082d 1562 __SetPageSlubFrozen(new);
dfb4f096 1563 c->page = new;
4b6f0750 1564 goto load_freelist;
81819f0f 1565 }
71c7a06f 1566 return NULL;
81819f0f 1567debug:
dfb4f096 1568 if (!alloc_debug_processing(s, c->page, object, addr))
81819f0f 1569 goto another_slab;
894b8788 1570
dfb4f096 1571 c->page->inuse++;
b3fba8da 1572 c->page->freelist = object[c->offset];
ee3c72a1 1573 c->node = -1;
1f84260c 1574 goto unlock_out;
894b8788
CL
1575}
1576
1577/*
1578 * Inlined fastpath so that allocation functions (kmalloc, kmem_cache_alloc)
1579 * have the fastpath folded into their functions. So no function call
1580 * overhead for requests that can be satisfied on the fastpath.
1581 *
1582 * The fastpath works by first checking if the lockless freelist can be used.
1583 * If not then __slab_alloc is called for slow processing.
1584 *
1585 * Otherwise we can simply pick the next object from the lockless free list.
1586 */
06428780 1587static __always_inline void *slab_alloc(struct kmem_cache *s,
35995a4d 1588 gfp_t gfpflags, int node, unsigned long addr)
894b8788 1589{
894b8788 1590 void **object;
dfb4f096 1591 struct kmem_cache_cpu *c;
1f84260c 1592 unsigned long flags;
bdb21928 1593 unsigned int objsize;
1f84260c 1594
894b8788 1595 local_irq_save(flags);
dfb4f096 1596 c = get_cpu_slab(s, smp_processor_id());
bdb21928 1597 objsize = c->objsize;
a973e9dd 1598 if (unlikely(!c->freelist || !node_match(c, node)))
894b8788 1599
dfb4f096 1600 object = __slab_alloc(s, gfpflags, node, addr, c);
894b8788
CL
1601
1602 else {
dfb4f096 1603 object = c->freelist;
b3fba8da 1604 c->freelist = object[c->offset];
8ff12cfc 1605 stat(c, ALLOC_FASTPATH);
894b8788
CL
1606 }
1607 local_irq_restore(flags);
d07dbea4
CL
1608
1609 if (unlikely((gfpflags & __GFP_ZERO) && object))
bdb21928 1610 memset(object, 0, objsize);
d07dbea4 1611
894b8788 1612 return object;
81819f0f
CL
1613}
1614
1615void *kmem_cache_alloc(struct kmem_cache *s, gfp_t gfpflags)
1616{
5b882be4
EGM
1617 void *ret = slab_alloc(s, gfpflags, -1, _RET_IP_);
1618
1619 kmemtrace_mark_alloc(KMEMTRACE_TYPE_CACHE, _RET_IP_, ret,
1620 s->objsize, s->size, gfpflags);
1621
1622 return ret;
81819f0f
CL
1623}
1624EXPORT_SYMBOL(kmem_cache_alloc);
1625
5b882be4
EGM
1626#ifdef CONFIG_KMEMTRACE
1627void *kmem_cache_alloc_notrace(struct kmem_cache *s, gfp_t gfpflags)
1628{
1629 return slab_alloc(s, gfpflags, -1, _RET_IP_);
1630}
1631EXPORT_SYMBOL(kmem_cache_alloc_notrace);
1632#endif
1633
81819f0f
CL
1634#ifdef CONFIG_NUMA
1635void *kmem_cache_alloc_node(struct kmem_cache *s, gfp_t gfpflags, int node)
1636{
5b882be4
EGM
1637 void *ret = slab_alloc(s, gfpflags, node, _RET_IP_);
1638
1639 kmemtrace_mark_alloc_node(KMEMTRACE_TYPE_CACHE, _RET_IP_, ret,
1640 s->objsize, s->size, gfpflags, node);
1641
1642 return ret;
81819f0f
CL
1643}
1644EXPORT_SYMBOL(kmem_cache_alloc_node);
1645#endif
1646
5b882be4
EGM
1647#ifdef CONFIG_KMEMTRACE
1648void *kmem_cache_alloc_node_notrace(struct kmem_cache *s,
1649 gfp_t gfpflags,
1650 int node)
1651{
1652 return slab_alloc(s, gfpflags, node, _RET_IP_);
1653}
1654EXPORT_SYMBOL(kmem_cache_alloc_node_notrace);
1655#endif
1656
81819f0f 1657/*
894b8788
CL
1658 * Slow patch handling. This may still be called frequently since objects
1659 * have a longer lifetime than the cpu slabs in most processing loads.
81819f0f 1660 *
894b8788
CL
1661 * So we still attempt to reduce cache line usage. Just take the slab
1662 * lock and free the item. If there is no additional partial page
1663 * handling required then we can return immediately.
81819f0f 1664 */
894b8788 1665static void __slab_free(struct kmem_cache *s, struct page *page,
35995a4d 1666 void *x, unsigned long addr, unsigned int offset)
81819f0f
CL
1667{
1668 void *prior;
1669 void **object = (void *)x;
8ff12cfc 1670 struct kmem_cache_cpu *c;
81819f0f 1671
8ff12cfc
CL
1672 c = get_cpu_slab(s, raw_smp_processor_id());
1673 stat(c, FREE_SLOWPATH);
81819f0f
CL
1674 slab_lock(page);
1675
8a38082d 1676 if (unlikely(SLABDEBUG && PageSlubDebug(page)))
81819f0f 1677 goto debug;
6446faa2 1678
81819f0f 1679checks_ok:
b3fba8da 1680 prior = object[offset] = page->freelist;
81819f0f
CL
1681 page->freelist = object;
1682 page->inuse--;
1683
8a38082d 1684 if (unlikely(PageSlubFrozen(page))) {
8ff12cfc 1685 stat(c, FREE_FROZEN);
81819f0f 1686 goto out_unlock;
8ff12cfc 1687 }
81819f0f
CL
1688
1689 if (unlikely(!page->inuse))
1690 goto slab_empty;
1691
1692 /*
6446faa2 1693 * Objects left in the slab. If it was not on the partial list before
81819f0f
CL
1694 * then add it.
1695 */
a973e9dd 1696 if (unlikely(!prior)) {
7c2e132c 1697 add_partial(get_node(s, page_to_nid(page)), page, 1);
8ff12cfc
CL
1698 stat(c, FREE_ADD_PARTIAL);
1699 }
81819f0f
CL
1700
1701out_unlock:
1702 slab_unlock(page);
81819f0f
CL
1703 return;
1704
1705slab_empty:
a973e9dd 1706 if (prior) {
81819f0f 1707 /*
672bba3a 1708 * Slab still on the partial list.
81819f0f
CL
1709 */
1710 remove_partial(s, page);
8ff12cfc
CL
1711 stat(c, FREE_REMOVE_PARTIAL);
1712 }
81819f0f 1713 slab_unlock(page);
8ff12cfc 1714 stat(c, FREE_SLAB);
81819f0f 1715 discard_slab(s, page);
81819f0f
CL
1716 return;
1717
1718debug:
3ec09742 1719 if (!free_debug_processing(s, page, x, addr))
77c5e2d0 1720 goto out_unlock;
77c5e2d0 1721 goto checks_ok;
81819f0f
CL
1722}
1723
894b8788
CL
1724/*
1725 * Fastpath with forced inlining to produce a kfree and kmem_cache_free that
1726 * can perform fastpath freeing without additional function calls.
1727 *
1728 * The fastpath is only possible if we are freeing to the current cpu slab
1729 * of this processor. This typically the case if we have just allocated
1730 * the item before.
1731 *
1732 * If fastpath is not possible then fall back to __slab_free where we deal
1733 * with all sorts of special processing.
1734 */
06428780 1735static __always_inline void slab_free(struct kmem_cache *s,
35995a4d 1736 struct page *page, void *x, unsigned long addr)
894b8788
CL
1737{
1738 void **object = (void *)x;
dfb4f096 1739 struct kmem_cache_cpu *c;
1f84260c
CL
1740 unsigned long flags;
1741
894b8788 1742 local_irq_save(flags);
dfb4f096 1743 c = get_cpu_slab(s, smp_processor_id());
27d9e4e9 1744 debug_check_no_locks_freed(object, c->objsize);
3ac7fe5a
TG
1745 if (!(s->flags & SLAB_DEBUG_OBJECTS))
1746 debug_check_no_obj_freed(object, s->objsize);
ee3c72a1 1747 if (likely(page == c->page && c->node >= 0)) {
b3fba8da 1748 object[c->offset] = c->freelist;
dfb4f096 1749 c->freelist = object;
8ff12cfc 1750 stat(c, FREE_FASTPATH);
894b8788 1751 } else
b3fba8da 1752 __slab_free(s, page, x, addr, c->offset);
894b8788
CL
1753
1754 local_irq_restore(flags);
1755}
1756
81819f0f
CL
1757void kmem_cache_free(struct kmem_cache *s, void *x)
1758{
77c5e2d0 1759 struct page *page;
81819f0f 1760
b49af68f 1761 page = virt_to_head_page(x);
81819f0f 1762
35995a4d 1763 slab_free(s, page, x, _RET_IP_);
5b882be4
EGM
1764
1765 kmemtrace_mark_free(KMEMTRACE_TYPE_CACHE, _RET_IP_, x);
81819f0f
CL
1766}
1767EXPORT_SYMBOL(kmem_cache_free);
1768
1769/* Figure out on which slab object the object resides */
1770static struct page *get_object_page(const void *x)
1771{
b49af68f 1772 struct page *page = virt_to_head_page(x);
81819f0f
CL
1773
1774 if (!PageSlab(page))
1775 return NULL;
1776
1777 return page;
1778}
1779
1780/*
672bba3a
CL
1781 * Object placement in a slab is made very easy because we always start at
1782 * offset 0. If we tune the size of the object to the alignment then we can
1783 * get the required alignment by putting one properly sized object after
1784 * another.
81819f0f
CL
1785 *
1786 * Notice that the allocation order determines the sizes of the per cpu
1787 * caches. Each processor has always one slab available for allocations.
1788 * Increasing the allocation order reduces the number of times that slabs
672bba3a 1789 * must be moved on and off the partial lists and is therefore a factor in
81819f0f 1790 * locking overhead.
81819f0f
CL
1791 */
1792
1793/*
1794 * Mininum / Maximum order of slab pages. This influences locking overhead
1795 * and slab fragmentation. A higher order reduces the number of partial slabs
1796 * and increases the number of allocations possible without having to
1797 * take the list_lock.
1798 */
1799static int slub_min_order;
114e9e89 1800static int slub_max_order = PAGE_ALLOC_COSTLY_ORDER;
9b2cd506 1801static int slub_min_objects;
81819f0f
CL
1802
1803/*
1804 * Merge control. If this is set then no merging of slab caches will occur.
672bba3a 1805 * (Could be removed. This was introduced to pacify the merge skeptics.)
81819f0f
CL
1806 */
1807static int slub_nomerge;
1808
81819f0f
CL
1809/*
1810 * Calculate the order of allocation given an slab object size.
1811 *
672bba3a
CL
1812 * The order of allocation has significant impact on performance and other
1813 * system components. Generally order 0 allocations should be preferred since
1814 * order 0 does not cause fragmentation in the page allocator. Larger objects
1815 * be problematic to put into order 0 slabs because there may be too much
c124f5b5 1816 * unused space left. We go to a higher order if more than 1/16th of the slab
672bba3a
CL
1817 * would be wasted.
1818 *
1819 * In order to reach satisfactory performance we must ensure that a minimum
1820 * number of objects is in one slab. Otherwise we may generate too much
1821 * activity on the partial lists which requires taking the list_lock. This is
1822 * less a concern for large slabs though which are rarely used.
81819f0f 1823 *
672bba3a
CL
1824 * slub_max_order specifies the order where we begin to stop considering the
1825 * number of objects in a slab as critical. If we reach slub_max_order then
1826 * we try to keep the page order as low as possible. So we accept more waste
1827 * of space in favor of a small page order.
81819f0f 1828 *
672bba3a
CL
1829 * Higher order allocations also allow the placement of more objects in a
1830 * slab and thereby reduce object handling overhead. If the user has
1831 * requested a higher mininum order then we start with that one instead of
1832 * the smallest order which will fit the object.
81819f0f 1833 */
5e6d444e
CL
1834static inline int slab_order(int size, int min_objects,
1835 int max_order, int fract_leftover)
81819f0f
CL
1836{
1837 int order;
1838 int rem;
6300ea75 1839 int min_order = slub_min_order;
81819f0f 1840
39b26464
CL
1841 if ((PAGE_SIZE << min_order) / size > 65535)
1842 return get_order(size * 65535) - 1;
1843
6300ea75 1844 for (order = max(min_order,
5e6d444e
CL
1845 fls(min_objects * size - 1) - PAGE_SHIFT);
1846 order <= max_order; order++) {
81819f0f 1847
5e6d444e 1848 unsigned long slab_size = PAGE_SIZE << order;
81819f0f 1849
5e6d444e 1850 if (slab_size < min_objects * size)
81819f0f
CL
1851 continue;
1852
1853 rem = slab_size % size;
1854
5e6d444e 1855 if (rem <= slab_size / fract_leftover)
81819f0f
CL
1856 break;
1857
1858 }
672bba3a 1859
81819f0f
CL
1860 return order;
1861}
1862
5e6d444e
CL
1863static inline int calculate_order(int size)
1864{
1865 int order;
1866 int min_objects;
1867 int fraction;
1868
1869 /*
1870 * Attempt to find best configuration for a slab. This
1871 * works by first attempting to generate a layout with
1872 * the best configuration and backing off gradually.
1873 *
1874 * First we reduce the acceptable waste in a slab. Then
1875 * we reduce the minimum objects required in a slab.
1876 */
1877 min_objects = slub_min_objects;
9b2cd506
CL
1878 if (!min_objects)
1879 min_objects = 4 * (fls(nr_cpu_ids) + 1);
5e6d444e 1880 while (min_objects > 1) {
c124f5b5 1881 fraction = 16;
5e6d444e
CL
1882 while (fraction >= 4) {
1883 order = slab_order(size, min_objects,
1884 slub_max_order, fraction);
1885 if (order <= slub_max_order)
1886 return order;
1887 fraction /= 2;
1888 }
1889 min_objects /= 2;
1890 }
1891
1892 /*
1893 * We were unable to place multiple objects in a slab. Now
1894 * lets see if we can place a single object there.
1895 */
1896 order = slab_order(size, 1, slub_max_order, 1);
1897 if (order <= slub_max_order)
1898 return order;
1899
1900 /*
1901 * Doh this slab cannot be placed using slub_max_order.
1902 */
1903 order = slab_order(size, 1, MAX_ORDER, 1);
1904 if (order <= MAX_ORDER)
1905 return order;
1906 return -ENOSYS;
1907}
1908
81819f0f 1909/*
672bba3a 1910 * Figure out what the alignment of the objects will be.
81819f0f
CL
1911 */
1912static unsigned long calculate_alignment(unsigned long flags,
1913 unsigned long align, unsigned long size)
1914{
1915 /*
6446faa2
CL
1916 * If the user wants hardware cache aligned objects then follow that
1917 * suggestion if the object is sufficiently large.
81819f0f 1918 *
6446faa2
CL
1919 * The hardware cache alignment cannot override the specified
1920 * alignment though. If that is greater then use it.
81819f0f 1921 */
b6210386
NP
1922 if (flags & SLAB_HWCACHE_ALIGN) {
1923 unsigned long ralign = cache_line_size();
1924 while (size <= ralign / 2)
1925 ralign /= 2;
1926 align = max(align, ralign);
1927 }
81819f0f
CL
1928
1929 if (align < ARCH_SLAB_MINALIGN)
b6210386 1930 align = ARCH_SLAB_MINALIGN;
81819f0f
CL
1931
1932 return ALIGN(align, sizeof(void *));
1933}
1934
dfb4f096
CL
1935static void init_kmem_cache_cpu(struct kmem_cache *s,
1936 struct kmem_cache_cpu *c)
1937{
1938 c->page = NULL;
a973e9dd 1939 c->freelist = NULL;
dfb4f096 1940 c->node = 0;
42a9fdbb
CL
1941 c->offset = s->offset / sizeof(void *);
1942 c->objsize = s->objsize;
62f75532
PE
1943#ifdef CONFIG_SLUB_STATS
1944 memset(c->stat, 0, NR_SLUB_STAT_ITEMS * sizeof(unsigned));
1945#endif
dfb4f096
CL
1946}
1947
5595cffc
PE
1948static void
1949init_kmem_cache_node(struct kmem_cache_node *n, struct kmem_cache *s)
81819f0f
CL
1950{
1951 n->nr_partial = 0;
5595cffc
PE
1952
1953 /*
1954 * The larger the object size is, the more pages we want on the partial
1955 * list to avoid pounding the page allocator excessively.
1956 */
1957 n->min_partial = ilog2(s->size);
1958 if (n->min_partial < MIN_PARTIAL)
1959 n->min_partial = MIN_PARTIAL;
1960 else if (n->min_partial > MAX_PARTIAL)
1961 n->min_partial = MAX_PARTIAL;
1962
81819f0f
CL
1963 spin_lock_init(&n->list_lock);
1964 INIT_LIST_HEAD(&n->partial);
8ab1372f 1965#ifdef CONFIG_SLUB_DEBUG
0f389ec6 1966 atomic_long_set(&n->nr_slabs, 0);
02b71b70 1967 atomic_long_set(&n->total_objects, 0);
643b1138 1968 INIT_LIST_HEAD(&n->full);
8ab1372f 1969#endif
81819f0f
CL
1970}
1971
4c93c355
CL
1972#ifdef CONFIG_SMP
1973/*
1974 * Per cpu array for per cpu structures.
1975 *
1976 * The per cpu array places all kmem_cache_cpu structures from one processor
1977 * close together meaning that it becomes possible that multiple per cpu
1978 * structures are contained in one cacheline. This may be particularly
1979 * beneficial for the kmalloc caches.
1980 *
1981 * A desktop system typically has around 60-80 slabs. With 100 here we are
1982 * likely able to get per cpu structures for all caches from the array defined
1983 * here. We must be able to cover all kmalloc caches during bootstrap.
1984 *
1985 * If the per cpu array is exhausted then fall back to kmalloc
1986 * of individual cachelines. No sharing is possible then.
1987 */
1988#define NR_KMEM_CACHE_CPU 100
1989
1990static DEFINE_PER_CPU(struct kmem_cache_cpu,
1991 kmem_cache_cpu)[NR_KMEM_CACHE_CPU];
1992
1993static DEFINE_PER_CPU(struct kmem_cache_cpu *, kmem_cache_cpu_free);
1994static cpumask_t kmem_cach_cpu_free_init_once = CPU_MASK_NONE;
1995
1996static struct kmem_cache_cpu *alloc_kmem_cache_cpu(struct kmem_cache *s,
1997 int cpu, gfp_t flags)
1998{
1999 struct kmem_cache_cpu *c = per_cpu(kmem_cache_cpu_free, cpu);
2000
2001 if (c)
2002 per_cpu(kmem_cache_cpu_free, cpu) =
2003 (void *)c->freelist;
2004 else {
2005 /* Table overflow: So allocate ourselves */
2006 c = kmalloc_node(
2007 ALIGN(sizeof(struct kmem_cache_cpu), cache_line_size()),
2008 flags, cpu_to_node(cpu));
2009 if (!c)
2010 return NULL;
2011 }
2012
2013 init_kmem_cache_cpu(s, c);
2014 return c;
2015}
2016
2017static void free_kmem_cache_cpu(struct kmem_cache_cpu *c, int cpu)
2018{
2019 if (c < per_cpu(kmem_cache_cpu, cpu) ||
2020 c > per_cpu(kmem_cache_cpu, cpu) + NR_KMEM_CACHE_CPU) {
2021 kfree(c);
2022 return;
2023 }
2024 c->freelist = (void *)per_cpu(kmem_cache_cpu_free, cpu);
2025 per_cpu(kmem_cache_cpu_free, cpu) = c;
2026}
2027
2028static void free_kmem_cache_cpus(struct kmem_cache *s)
2029{
2030 int cpu;
2031
2032 for_each_online_cpu(cpu) {
2033 struct kmem_cache_cpu *c = get_cpu_slab(s, cpu);
2034
2035 if (c) {
2036 s->cpu_slab[cpu] = NULL;
2037 free_kmem_cache_cpu(c, cpu);
2038 }
2039 }
2040}
2041
2042static int alloc_kmem_cache_cpus(struct kmem_cache *s, gfp_t flags)
2043{
2044 int cpu;
2045
2046 for_each_online_cpu(cpu) {
2047 struct kmem_cache_cpu *c = get_cpu_slab(s, cpu);
2048
2049 if (c)
2050 continue;
2051
2052 c = alloc_kmem_cache_cpu(s, cpu, flags);
2053 if (!c) {
2054 free_kmem_cache_cpus(s);
2055 return 0;
2056 }
2057 s->cpu_slab[cpu] = c;
2058 }
2059 return 1;
2060}
2061
2062/*
2063 * Initialize the per cpu array.
2064 */
2065static void init_alloc_cpu_cpu(int cpu)
2066{
2067 int i;
2068
2069 if (cpu_isset(cpu, kmem_cach_cpu_free_init_once))
2070 return;
2071
2072 for (i = NR_KMEM_CACHE_CPU - 1; i >= 0; i--)
2073 free_kmem_cache_cpu(&per_cpu(kmem_cache_cpu, cpu)[i], cpu);
2074
2075 cpu_set(cpu, kmem_cach_cpu_free_init_once);
2076}
2077
2078static void __init init_alloc_cpu(void)
2079{
2080 int cpu;
2081
2082 for_each_online_cpu(cpu)
2083 init_alloc_cpu_cpu(cpu);
2084 }
2085
2086#else
2087static inline void free_kmem_cache_cpus(struct kmem_cache *s) {}
2088static inline void init_alloc_cpu(void) {}
2089
2090static inline int alloc_kmem_cache_cpus(struct kmem_cache *s, gfp_t flags)
2091{
2092 init_kmem_cache_cpu(s, &s->cpu_slab);
2093 return 1;
2094}
2095#endif
2096
81819f0f
CL
2097#ifdef CONFIG_NUMA
2098/*
2099 * No kmalloc_node yet so do it by hand. We know that this is the first
2100 * slab on the node for this slabcache. There are no concurrent accesses
2101 * possible.
2102 *
2103 * Note that this function only works on the kmalloc_node_cache
4c93c355
CL
2104 * when allocating for the kmalloc_node_cache. This is used for bootstrapping
2105 * memory on a fresh node that has no slab structures yet.
81819f0f 2106 */
1cd7daa5
AB
2107static struct kmem_cache_node *early_kmem_cache_node_alloc(gfp_t gfpflags,
2108 int node)
81819f0f
CL
2109{
2110 struct page *page;
2111 struct kmem_cache_node *n;
ba84c73c 2112 unsigned long flags;
81819f0f
CL
2113
2114 BUG_ON(kmalloc_caches->size < sizeof(struct kmem_cache_node));
2115
a2f92ee7 2116 page = new_slab(kmalloc_caches, gfpflags, node);
81819f0f
CL
2117
2118 BUG_ON(!page);
a2f92ee7
CL
2119 if (page_to_nid(page) != node) {
2120 printk(KERN_ERR "SLUB: Unable to allocate memory from "
2121 "node %d\n", node);
2122 printk(KERN_ERR "SLUB: Allocating a useless per node structure "
2123 "in order to be able to continue\n");
2124 }
2125
81819f0f
CL
2126 n = page->freelist;
2127 BUG_ON(!n);
2128 page->freelist = get_freepointer(kmalloc_caches, n);
2129 page->inuse++;
2130 kmalloc_caches->node[node] = n;
8ab1372f 2131#ifdef CONFIG_SLUB_DEBUG
d45f39cb
CL
2132 init_object(kmalloc_caches, n, 1);
2133 init_tracking(kmalloc_caches, n);
8ab1372f 2134#endif
5595cffc 2135 init_kmem_cache_node(n, kmalloc_caches);
205ab99d 2136 inc_slabs_node(kmalloc_caches, node, page->objects);
6446faa2 2137
ba84c73c 2138 /*
2139 * lockdep requires consistent irq usage for each lock
2140 * so even though there cannot be a race this early in
2141 * the boot sequence, we still disable irqs.
2142 */
2143 local_irq_save(flags);
7c2e132c 2144 add_partial(n, page, 0);
ba84c73c 2145 local_irq_restore(flags);
81819f0f
CL
2146 return n;
2147}
2148
2149static void free_kmem_cache_nodes(struct kmem_cache *s)
2150{
2151 int node;
2152
f64dc58c 2153 for_each_node_state(node, N_NORMAL_MEMORY) {
81819f0f
CL
2154 struct kmem_cache_node *n = s->node[node];
2155 if (n && n != &s->local_node)
2156 kmem_cache_free(kmalloc_caches, n);
2157 s->node[node] = NULL;
2158 }
2159}
2160
2161static int init_kmem_cache_nodes(struct kmem_cache *s, gfp_t gfpflags)
2162{
2163 int node;
2164 int local_node;
2165
2166 if (slab_state >= UP)
2167 local_node = page_to_nid(virt_to_page(s));
2168 else
2169 local_node = 0;
2170
f64dc58c 2171 for_each_node_state(node, N_NORMAL_MEMORY) {
81819f0f
CL
2172 struct kmem_cache_node *n;
2173
2174 if (local_node == node)
2175 n = &s->local_node;
2176 else {
2177 if (slab_state == DOWN) {
2178 n = early_kmem_cache_node_alloc(gfpflags,
2179 node);
2180 continue;
2181 }
2182 n = kmem_cache_alloc_node(kmalloc_caches,
2183 gfpflags, node);
2184
2185 if (!n) {
2186 free_kmem_cache_nodes(s);
2187 return 0;
2188 }
2189
2190 }
2191 s->node[node] = n;
5595cffc 2192 init_kmem_cache_node(n, s);
81819f0f
CL
2193 }
2194 return 1;
2195}
2196#else
2197static void free_kmem_cache_nodes(struct kmem_cache *s)
2198{
2199}
2200
2201static int init_kmem_cache_nodes(struct kmem_cache *s, gfp_t gfpflags)
2202{
5595cffc 2203 init_kmem_cache_node(&s->local_node, s);
81819f0f
CL
2204 return 1;
2205}
2206#endif
2207
2208/*
2209 * calculate_sizes() determines the order and the distribution of data within
2210 * a slab object.
2211 */
06b285dc 2212static int calculate_sizes(struct kmem_cache *s, int forced_order)
81819f0f
CL
2213{
2214 unsigned long flags = s->flags;
2215 unsigned long size = s->objsize;
2216 unsigned long align = s->align;
834f3d11 2217 int order;
81819f0f 2218
d8b42bf5
CL
2219 /*
2220 * Round up object size to the next word boundary. We can only
2221 * place the free pointer at word boundaries and this determines
2222 * the possible location of the free pointer.
2223 */
2224 size = ALIGN(size, sizeof(void *));
2225
2226#ifdef CONFIG_SLUB_DEBUG
81819f0f
CL
2227 /*
2228 * Determine if we can poison the object itself. If the user of
2229 * the slab may touch the object after free or before allocation
2230 * then we should never poison the object itself.
2231 */
2232 if ((flags & SLAB_POISON) && !(flags & SLAB_DESTROY_BY_RCU) &&
c59def9f 2233 !s->ctor)
81819f0f
CL
2234 s->flags |= __OBJECT_POISON;
2235 else
2236 s->flags &= ~__OBJECT_POISON;
2237
81819f0f
CL
2238
2239 /*
672bba3a 2240 * If we are Redzoning then check if there is some space between the
81819f0f 2241 * end of the object and the free pointer. If not then add an
672bba3a 2242 * additional word to have some bytes to store Redzone information.
81819f0f
CL
2243 */
2244 if ((flags & SLAB_RED_ZONE) && size == s->objsize)
2245 size += sizeof(void *);
41ecc55b 2246#endif
81819f0f
CL
2247
2248 /*
672bba3a
CL
2249 * With that we have determined the number of bytes in actual use
2250 * by the object. This is the potential offset to the free pointer.
81819f0f
CL
2251 */
2252 s->inuse = size;
2253
2254 if (((flags & (SLAB_DESTROY_BY_RCU | SLAB_POISON)) ||
c59def9f 2255 s->ctor)) {
81819f0f
CL
2256 /*
2257 * Relocate free pointer after the object if it is not
2258 * permitted to overwrite the first word of the object on
2259 * kmem_cache_free.
2260 *
2261 * This is the case if we do RCU, have a constructor or
2262 * destructor or are poisoning the objects.
2263 */
2264 s->offset = size;
2265 size += sizeof(void *);
2266 }
2267
c12b3c62 2268#ifdef CONFIG_SLUB_DEBUG
81819f0f
CL
2269 if (flags & SLAB_STORE_USER)
2270 /*
2271 * Need to store information about allocs and frees after
2272 * the object.
2273 */
2274 size += 2 * sizeof(struct track);
2275
be7b3fbc 2276 if (flags & SLAB_RED_ZONE)
81819f0f
CL
2277 /*
2278 * Add some empty padding so that we can catch
2279 * overwrites from earlier objects rather than let
2280 * tracking information or the free pointer be
2281 * corrupted if an user writes before the start
2282 * of the object.
2283 */
2284 size += sizeof(void *);
41ecc55b 2285#endif
672bba3a 2286
81819f0f
CL
2287 /*
2288 * Determine the alignment based on various parameters that the
65c02d4c
CL
2289 * user specified and the dynamic determination of cache line size
2290 * on bootup.
81819f0f
CL
2291 */
2292 align = calculate_alignment(flags, align, s->objsize);
2293
2294 /*
2295 * SLUB stores one object immediately after another beginning from
2296 * offset 0. In order to align the objects we have to simply size
2297 * each object to conform to the alignment.
2298 */
2299 size = ALIGN(size, align);
2300 s->size = size;
06b285dc
CL
2301 if (forced_order >= 0)
2302 order = forced_order;
2303 else
2304 order = calculate_order(size);
81819f0f 2305
834f3d11 2306 if (order < 0)
81819f0f
CL
2307 return 0;
2308
b7a49f0d 2309 s->allocflags = 0;
834f3d11 2310 if (order)
b7a49f0d
CL
2311 s->allocflags |= __GFP_COMP;
2312
2313 if (s->flags & SLAB_CACHE_DMA)
2314 s->allocflags |= SLUB_DMA;
2315
2316 if (s->flags & SLAB_RECLAIM_ACCOUNT)
2317 s->allocflags |= __GFP_RECLAIMABLE;
2318
81819f0f
CL
2319 /*
2320 * Determine the number of objects per slab
2321 */
834f3d11 2322 s->oo = oo_make(order, size);
65c3376a 2323 s->min = oo_make(get_order(size), size);
205ab99d
CL
2324 if (oo_objects(s->oo) > oo_objects(s->max))
2325 s->max = s->oo;
81819f0f 2326
834f3d11 2327 return !!oo_objects(s->oo);
81819f0f
CL
2328
2329}
2330
81819f0f
CL
2331static int kmem_cache_open(struct kmem_cache *s, gfp_t gfpflags,
2332 const char *name, size_t size,
2333 size_t align, unsigned long flags,
51cc5068 2334 void (*ctor)(void *))
81819f0f
CL
2335{
2336 memset(s, 0, kmem_size);
2337 s->name = name;
2338 s->ctor = ctor;
81819f0f 2339 s->objsize = size;
81819f0f 2340 s->align = align;
ba0268a8 2341 s->flags = kmem_cache_flags(size, flags, name, ctor);
81819f0f 2342
06b285dc 2343 if (!calculate_sizes(s, -1))
81819f0f
CL
2344 goto error;
2345
2346 s->refcount = 1;
2347#ifdef CONFIG_NUMA
e2cb96b7 2348 s->remote_node_defrag_ratio = 1000;
81819f0f 2349#endif
dfb4f096
CL
2350 if (!init_kmem_cache_nodes(s, gfpflags & ~SLUB_DMA))
2351 goto error;
81819f0f 2352
dfb4f096 2353 if (alloc_kmem_cache_cpus(s, gfpflags & ~SLUB_DMA))
81819f0f 2354 return 1;
4c93c355 2355 free_kmem_cache_nodes(s);
81819f0f
CL
2356error:
2357 if (flags & SLAB_PANIC)
2358 panic("Cannot create slab %s size=%lu realsize=%u "
2359 "order=%u offset=%u flags=%lx\n",
834f3d11 2360 s->name, (unsigned long)size, s->size, oo_order(s->oo),
81819f0f
CL
2361 s->offset, flags);
2362 return 0;
2363}
81819f0f
CL
2364
2365/*
2366 * Check if a given pointer is valid
2367 */
2368int kmem_ptr_validate(struct kmem_cache *s, const void *object)
2369{
06428780 2370 struct page *page;
81819f0f
CL
2371
2372 page = get_object_page(object);
2373
2374 if (!page || s != page->slab)
2375 /* No slab or wrong slab */
2376 return 0;
2377
abcd08a6 2378 if (!check_valid_pointer(s, page, object))
81819f0f
CL
2379 return 0;
2380
2381 /*
2382 * We could also check if the object is on the slabs freelist.
2383 * But this would be too expensive and it seems that the main
6446faa2 2384 * purpose of kmem_ptr_valid() is to check if the object belongs
81819f0f
CL
2385 * to a certain slab.
2386 */
2387 return 1;
2388}
2389EXPORT_SYMBOL(kmem_ptr_validate);
2390
2391/*
2392 * Determine the size of a slab object
2393 */
2394unsigned int kmem_cache_size(struct kmem_cache *s)
2395{
2396 return s->objsize;
2397}
2398EXPORT_SYMBOL(kmem_cache_size);
2399
2400const char *kmem_cache_name(struct kmem_cache *s)
2401{
2402 return s->name;
2403}
2404EXPORT_SYMBOL(kmem_cache_name);
2405
33b12c38
CL
2406static void list_slab_objects(struct kmem_cache *s, struct page *page,
2407 const char *text)
2408{
2409#ifdef CONFIG_SLUB_DEBUG
2410 void *addr = page_address(page);
2411 void *p;
2412 DECLARE_BITMAP(map, page->objects);
2413
2414 bitmap_zero(map, page->objects);
2415 slab_err(s, page, "%s", text);
2416 slab_lock(page);
2417 for_each_free_object(p, s, page->freelist)
2418 set_bit(slab_index(p, s, addr), map);
2419
2420 for_each_object(p, s, addr, page->objects) {
2421
2422 if (!test_bit(slab_index(p, s, addr), map)) {
2423 printk(KERN_ERR "INFO: Object 0x%p @offset=%tu\n",
2424 p, p - addr);
2425 print_tracking(s, p);
2426 }
2427 }
2428 slab_unlock(page);
2429#endif
2430}
2431
81819f0f 2432/*
599870b1 2433 * Attempt to free all partial slabs on a node.
81819f0f 2434 */
599870b1 2435static void free_partial(struct kmem_cache *s, struct kmem_cache_node *n)
81819f0f 2436{
81819f0f
CL
2437 unsigned long flags;
2438 struct page *page, *h;
2439
2440 spin_lock_irqsave(&n->list_lock, flags);
33b12c38 2441 list_for_each_entry_safe(page, h, &n->partial, lru) {
81819f0f
CL
2442 if (!page->inuse) {
2443 list_del(&page->lru);
2444 discard_slab(s, page);
599870b1 2445 n->nr_partial--;
33b12c38
CL
2446 } else {
2447 list_slab_objects(s, page,
2448 "Objects remaining on kmem_cache_close()");
599870b1 2449 }
33b12c38 2450 }
81819f0f 2451 spin_unlock_irqrestore(&n->list_lock, flags);
81819f0f
CL
2452}
2453
2454/*
672bba3a 2455 * Release all resources used by a slab cache.
81819f0f 2456 */
0c710013 2457static inline int kmem_cache_close(struct kmem_cache *s)
81819f0f
CL
2458{
2459 int node;
2460
2461 flush_all(s);
2462
2463 /* Attempt to free all objects */
4c93c355 2464 free_kmem_cache_cpus(s);
f64dc58c 2465 for_each_node_state(node, N_NORMAL_MEMORY) {
81819f0f
CL
2466 struct kmem_cache_node *n = get_node(s, node);
2467
599870b1
CL
2468 free_partial(s, n);
2469 if (n->nr_partial || slabs_node(s, node))
81819f0f
CL
2470 return 1;
2471 }
2472 free_kmem_cache_nodes(s);
2473 return 0;
2474}
2475
2476/*
2477 * Close a cache and release the kmem_cache structure
2478 * (must be used for caches created using kmem_cache_create)
2479 */
2480void kmem_cache_destroy(struct kmem_cache *s)
2481{
2482 down_write(&slub_lock);
2483 s->refcount--;
2484 if (!s->refcount) {
2485 list_del(&s->list);
a0e1d1be 2486 up_write(&slub_lock);
d629d819
PE
2487 if (kmem_cache_close(s)) {
2488 printk(KERN_ERR "SLUB %s: %s called for cache that "
2489 "still has objects.\n", s->name, __func__);
2490 dump_stack();
2491 }
81819f0f 2492 sysfs_slab_remove(s);
a0e1d1be
CL
2493 } else
2494 up_write(&slub_lock);
81819f0f
CL
2495}
2496EXPORT_SYMBOL(kmem_cache_destroy);
2497
2498/********************************************************************
2499 * Kmalloc subsystem
2500 *******************************************************************/
2501
331dc558 2502struct kmem_cache kmalloc_caches[PAGE_SHIFT + 1] __cacheline_aligned;
81819f0f
CL
2503EXPORT_SYMBOL(kmalloc_caches);
2504
81819f0f
CL
2505static int __init setup_slub_min_order(char *str)
2506{
06428780 2507 get_option(&str, &slub_min_order);
81819f0f
CL
2508
2509 return 1;
2510}
2511
2512__setup("slub_min_order=", setup_slub_min_order);
2513
2514static int __init setup_slub_max_order(char *str)
2515{
06428780 2516 get_option(&str, &slub_max_order);
81819f0f
CL
2517
2518 return 1;
2519}
2520
2521__setup("slub_max_order=", setup_slub_max_order);
2522
2523static int __init setup_slub_min_objects(char *str)
2524{
06428780 2525 get_option(&str, &slub_min_objects);
81819f0f
CL
2526
2527 return 1;
2528}
2529
2530__setup("slub_min_objects=", setup_slub_min_objects);
2531
2532static int __init setup_slub_nomerge(char *str)
2533{
2534 slub_nomerge = 1;
2535 return 1;
2536}
2537
2538__setup("slub_nomerge", setup_slub_nomerge);
2539
81819f0f
CL
2540static struct kmem_cache *create_kmalloc_cache(struct kmem_cache *s,
2541 const char *name, int size, gfp_t gfp_flags)
2542{
2543 unsigned int flags = 0;
2544
2545 if (gfp_flags & SLUB_DMA)
2546 flags = SLAB_CACHE_DMA;
2547
2548 down_write(&slub_lock);
2549 if (!kmem_cache_open(s, gfp_flags, name, size, ARCH_KMALLOC_MINALIGN,
319d1e24 2550 flags, NULL))
81819f0f
CL
2551 goto panic;
2552
2553 list_add(&s->list, &slab_caches);
2554 up_write(&slub_lock);
2555 if (sysfs_slab_add(s))
2556 goto panic;
2557 return s;
2558
2559panic:
2560 panic("Creation of kmalloc slab %s size=%d failed.\n", name, size);
2561}
2562
2e443fd0 2563#ifdef CONFIG_ZONE_DMA
4097d601 2564static struct kmem_cache *kmalloc_caches_dma[PAGE_SHIFT + 1];
1ceef402
CL
2565
2566static void sysfs_add_func(struct work_struct *w)
2567{
2568 struct kmem_cache *s;
2569
2570 down_write(&slub_lock);
2571 list_for_each_entry(s, &slab_caches, list) {
2572 if (s->flags & __SYSFS_ADD_DEFERRED) {
2573 s->flags &= ~__SYSFS_ADD_DEFERRED;
2574 sysfs_slab_add(s);
2575 }
2576 }
2577 up_write(&slub_lock);
2578}
2579
2580static DECLARE_WORK(sysfs_add_work, sysfs_add_func);
2581
2e443fd0
CL
2582static noinline struct kmem_cache *dma_kmalloc_cache(int index, gfp_t flags)
2583{
2584 struct kmem_cache *s;
2e443fd0
CL
2585 char *text;
2586 size_t realsize;
2587
2588 s = kmalloc_caches_dma[index];
2589 if (s)
2590 return s;
2591
2592 /* Dynamically create dma cache */
1ceef402
CL
2593 if (flags & __GFP_WAIT)
2594 down_write(&slub_lock);
2595 else {
2596 if (!down_write_trylock(&slub_lock))
2597 goto out;
2598 }
2599
2600 if (kmalloc_caches_dma[index])
2601 goto unlock_out;
2e443fd0 2602
7b55f620 2603 realsize = kmalloc_caches[index].objsize;
3adbefee
IM
2604 text = kasprintf(flags & ~SLUB_DMA, "kmalloc_dma-%d",
2605 (unsigned int)realsize);
1ceef402
CL
2606 s = kmalloc(kmem_size, flags & ~SLUB_DMA);
2607
2608 if (!s || !text || !kmem_cache_open(s, flags, text,
2609 realsize, ARCH_KMALLOC_MINALIGN,
2610 SLAB_CACHE_DMA|__SYSFS_ADD_DEFERRED, NULL)) {
2611 kfree(s);
2612 kfree(text);
2613 goto unlock_out;
dfce8648 2614 }
1ceef402
CL
2615
2616 list_add(&s->list, &slab_caches);
2617 kmalloc_caches_dma[index] = s;
2618
2619 schedule_work(&sysfs_add_work);
2620
2621unlock_out:
dfce8648 2622 up_write(&slub_lock);
1ceef402 2623out:
dfce8648 2624 return kmalloc_caches_dma[index];
2e443fd0
CL
2625}
2626#endif
2627
f1b26339
CL
2628/*
2629 * Conversion table for small slabs sizes / 8 to the index in the
2630 * kmalloc array. This is necessary for slabs < 192 since we have non power
2631 * of two cache sizes there. The size of larger slabs can be determined using
2632 * fls.
2633 */
2634static s8 size_index[24] = {
2635 3, /* 8 */
2636 4, /* 16 */
2637 5, /* 24 */
2638 5, /* 32 */
2639 6, /* 40 */
2640 6, /* 48 */
2641 6, /* 56 */
2642 6, /* 64 */
2643 1, /* 72 */
2644 1, /* 80 */
2645 1, /* 88 */
2646 1, /* 96 */
2647 7, /* 104 */
2648 7, /* 112 */
2649 7, /* 120 */
2650 7, /* 128 */
2651 2, /* 136 */
2652 2, /* 144 */
2653 2, /* 152 */
2654 2, /* 160 */
2655 2, /* 168 */
2656 2, /* 176 */
2657 2, /* 184 */
2658 2 /* 192 */
2659};
2660
81819f0f
CL
2661static struct kmem_cache *get_slab(size_t size, gfp_t flags)
2662{
f1b26339 2663 int index;
81819f0f 2664
f1b26339
CL
2665 if (size <= 192) {
2666 if (!size)
2667 return ZERO_SIZE_PTR;
81819f0f 2668
f1b26339 2669 index = size_index[(size - 1) / 8];
aadb4bc4 2670 } else
f1b26339 2671 index = fls(size - 1);
81819f0f
CL
2672
2673#ifdef CONFIG_ZONE_DMA
f1b26339 2674 if (unlikely((flags & SLUB_DMA)))
2e443fd0 2675 return dma_kmalloc_cache(index, flags);
f1b26339 2676
81819f0f
CL
2677#endif
2678 return &kmalloc_caches[index];
2679}
2680
2681void *__kmalloc(size_t size, gfp_t flags)
2682{
aadb4bc4 2683 struct kmem_cache *s;
5b882be4 2684 void *ret;
81819f0f 2685
331dc558 2686 if (unlikely(size > PAGE_SIZE))
eada35ef 2687 return kmalloc_large(size, flags);
aadb4bc4
CL
2688
2689 s = get_slab(size, flags);
2690
2691 if (unlikely(ZERO_OR_NULL_PTR(s)))
6cb8f913
CL
2692 return s;
2693
5b882be4
EGM
2694 ret = slab_alloc(s, flags, -1, _RET_IP_);
2695
2696 kmemtrace_mark_alloc(KMEMTRACE_TYPE_KMALLOC, _RET_IP_, ret,
2697 size, s->size, flags);
2698
2699 return ret;
81819f0f
CL
2700}
2701EXPORT_SYMBOL(__kmalloc);
2702
f619cfe1
CL
2703static void *kmalloc_large_node(size_t size, gfp_t flags, int node)
2704{
2705 struct page *page = alloc_pages_node(node, flags | __GFP_COMP,
2706 get_order(size));
2707
2708 if (page)
2709 return page_address(page);
2710 else
2711 return NULL;
2712}
2713
81819f0f
CL
2714#ifdef CONFIG_NUMA
2715void *__kmalloc_node(size_t size, gfp_t flags, int node)
2716{
aadb4bc4 2717 struct kmem_cache *s;
5b882be4 2718 void *ret;
81819f0f 2719
5b882be4
EGM
2720 if (unlikely(size > PAGE_SIZE)) {
2721 ret = kmalloc_large_node(size, flags, node);
2722
2723 kmemtrace_mark_alloc_node(KMEMTRACE_TYPE_KMALLOC,
2724 _RET_IP_, ret,
2725 size, PAGE_SIZE << get_order(size),
2726 flags, node);
2727
2728 return ret;
2729 }
aadb4bc4
CL
2730
2731 s = get_slab(size, flags);
2732
2733 if (unlikely(ZERO_OR_NULL_PTR(s)))
6cb8f913
CL
2734 return s;
2735
5b882be4
EGM
2736 ret = slab_alloc(s, flags, node, _RET_IP_);
2737
2738 kmemtrace_mark_alloc_node(KMEMTRACE_TYPE_KMALLOC, _RET_IP_, ret,
2739 size, s->size, flags, node);
2740
2741 return ret;
81819f0f
CL
2742}
2743EXPORT_SYMBOL(__kmalloc_node);
2744#endif
2745
2746size_t ksize(const void *object)
2747{
272c1d21 2748 struct page *page;
81819f0f
CL
2749 struct kmem_cache *s;
2750
ef8b4520 2751 if (unlikely(object == ZERO_SIZE_PTR))
272c1d21
CL
2752 return 0;
2753
294a80a8 2754 page = virt_to_head_page(object);
294a80a8 2755
76994412
PE
2756 if (unlikely(!PageSlab(page))) {
2757 WARN_ON(!PageCompound(page));
294a80a8 2758 return PAGE_SIZE << compound_order(page);
76994412 2759 }
81819f0f 2760 s = page->slab;
81819f0f 2761
ae20bfda 2762#ifdef CONFIG_SLUB_DEBUG
81819f0f
CL
2763 /*
2764 * Debugging requires use of the padding between object
2765 * and whatever may come after it.
2766 */
2767 if (s->flags & (SLAB_RED_ZONE | SLAB_POISON))
2768 return s->objsize;
2769
ae20bfda 2770#endif
81819f0f
CL
2771 /*
2772 * If we have the need to store the freelist pointer
2773 * back there or track user information then we can
2774 * only use the space before that information.
2775 */
2776 if (s->flags & (SLAB_DESTROY_BY_RCU | SLAB_STORE_USER))
2777 return s->inuse;
81819f0f
CL
2778 /*
2779 * Else we can use all the padding etc for the allocation
2780 */
2781 return s->size;
2782}
81819f0f
CL
2783
2784void kfree(const void *x)
2785{
81819f0f 2786 struct page *page;
5bb983b0 2787 void *object = (void *)x;
81819f0f 2788
2408c550 2789 if (unlikely(ZERO_OR_NULL_PTR(x)))
81819f0f
CL
2790 return;
2791
b49af68f 2792 page = virt_to_head_page(x);
aadb4bc4 2793 if (unlikely(!PageSlab(page))) {
0937502a 2794 BUG_ON(!PageCompound(page));
aadb4bc4
CL
2795 put_page(page);
2796 return;
2797 }
35995a4d 2798 slab_free(page->slab, page, object, _RET_IP_);
5b882be4
EGM
2799
2800 kmemtrace_mark_free(KMEMTRACE_TYPE_KMALLOC, _RET_IP_, x);
81819f0f
CL
2801}
2802EXPORT_SYMBOL(kfree);
2803
2086d26a 2804/*
672bba3a
CL
2805 * kmem_cache_shrink removes empty slabs from the partial lists and sorts
2806 * the remaining slabs by the number of items in use. The slabs with the
2807 * most items in use come first. New allocations will then fill those up
2808 * and thus they can be removed from the partial lists.
2809 *
2810 * The slabs with the least items are placed last. This results in them
2811 * being allocated from last increasing the chance that the last objects
2812 * are freed in them.
2086d26a
CL
2813 */
2814int kmem_cache_shrink(struct kmem_cache *s)
2815{
2816 int node;
2817 int i;
2818 struct kmem_cache_node *n;
2819 struct page *page;
2820 struct page *t;
205ab99d 2821 int objects = oo_objects(s->max);
2086d26a 2822 struct list_head *slabs_by_inuse =
834f3d11 2823 kmalloc(sizeof(struct list_head) * objects, GFP_KERNEL);
2086d26a
CL
2824 unsigned long flags;
2825
2826 if (!slabs_by_inuse)
2827 return -ENOMEM;
2828
2829 flush_all(s);
f64dc58c 2830 for_each_node_state(node, N_NORMAL_MEMORY) {
2086d26a
CL
2831 n = get_node(s, node);
2832
2833 if (!n->nr_partial)
2834 continue;
2835
834f3d11 2836 for (i = 0; i < objects; i++)
2086d26a
CL
2837 INIT_LIST_HEAD(slabs_by_inuse + i);
2838
2839 spin_lock_irqsave(&n->list_lock, flags);
2840
2841 /*
672bba3a 2842 * Build lists indexed by the items in use in each slab.
2086d26a 2843 *
672bba3a
CL
2844 * Note that concurrent frees may occur while we hold the
2845 * list_lock. page->inuse here is the upper limit.
2086d26a
CL
2846 */
2847 list_for_each_entry_safe(page, t, &n->partial, lru) {
2848 if (!page->inuse && slab_trylock(page)) {
2849 /*
2850 * Must hold slab lock here because slab_free
2851 * may have freed the last object and be
2852 * waiting to release the slab.
2853 */
2854 list_del(&page->lru);
2855 n->nr_partial--;
2856 slab_unlock(page);
2857 discard_slab(s, page);
2858 } else {
fcda3d89
CL
2859 list_move(&page->lru,
2860 slabs_by_inuse + page->inuse);
2086d26a
CL
2861 }
2862 }
2863
2086d26a 2864 /*
672bba3a
CL
2865 * Rebuild the partial list with the slabs filled up most
2866 * first and the least used slabs at the end.
2086d26a 2867 */
834f3d11 2868 for (i = objects - 1; i >= 0; i--)
2086d26a
CL
2869 list_splice(slabs_by_inuse + i, n->partial.prev);
2870
2086d26a
CL
2871 spin_unlock_irqrestore(&n->list_lock, flags);
2872 }
2873
2874 kfree(slabs_by_inuse);
2875 return 0;
2876}
2877EXPORT_SYMBOL(kmem_cache_shrink);
2878
b9049e23
YG
2879#if defined(CONFIG_NUMA) && defined(CONFIG_MEMORY_HOTPLUG)
2880static int slab_mem_going_offline_callback(void *arg)
2881{
2882 struct kmem_cache *s;
2883
2884 down_read(&slub_lock);
2885 list_for_each_entry(s, &slab_caches, list)
2886 kmem_cache_shrink(s);
2887 up_read(&slub_lock);
2888
2889 return 0;
2890}
2891
2892static void slab_mem_offline_callback(void *arg)
2893{
2894 struct kmem_cache_node *n;
2895 struct kmem_cache *s;
2896 struct memory_notify *marg = arg;
2897 int offline_node;
2898
2899 offline_node = marg->status_change_nid;
2900
2901 /*
2902 * If the node still has available memory. we need kmem_cache_node
2903 * for it yet.
2904 */
2905 if (offline_node < 0)
2906 return;
2907
2908 down_read(&slub_lock);
2909 list_for_each_entry(s, &slab_caches, list) {
2910 n = get_node(s, offline_node);
2911 if (n) {
2912 /*
2913 * if n->nr_slabs > 0, slabs still exist on the node
2914 * that is going down. We were unable to free them,
2915 * and offline_pages() function shoudn't call this
2916 * callback. So, we must fail.
2917 */
0f389ec6 2918 BUG_ON(slabs_node(s, offline_node));
b9049e23
YG
2919
2920 s->node[offline_node] = NULL;
2921 kmem_cache_free(kmalloc_caches, n);
2922 }
2923 }
2924 up_read(&slub_lock);
2925}
2926
2927static int slab_mem_going_online_callback(void *arg)
2928{
2929 struct kmem_cache_node *n;
2930 struct kmem_cache *s;
2931 struct memory_notify *marg = arg;
2932 int nid = marg->status_change_nid;
2933 int ret = 0;
2934
2935 /*
2936 * If the node's memory is already available, then kmem_cache_node is
2937 * already created. Nothing to do.
2938 */
2939 if (nid < 0)
2940 return 0;
2941
2942 /*
0121c619 2943 * We are bringing a node online. No memory is available yet. We must
b9049e23
YG
2944 * allocate a kmem_cache_node structure in order to bring the node
2945 * online.
2946 */
2947 down_read(&slub_lock);
2948 list_for_each_entry(s, &slab_caches, list) {
2949 /*
2950 * XXX: kmem_cache_alloc_node will fallback to other nodes
2951 * since memory is not yet available from the node that
2952 * is brought up.
2953 */
2954 n = kmem_cache_alloc(kmalloc_caches, GFP_KERNEL);
2955 if (!n) {
2956 ret = -ENOMEM;
2957 goto out;
2958 }
5595cffc 2959 init_kmem_cache_node(n, s);
b9049e23
YG
2960 s->node[nid] = n;
2961 }
2962out:
2963 up_read(&slub_lock);
2964 return ret;
2965}
2966
2967static int slab_memory_callback(struct notifier_block *self,
2968 unsigned long action, void *arg)
2969{
2970 int ret = 0;
2971
2972 switch (action) {
2973 case MEM_GOING_ONLINE:
2974 ret = slab_mem_going_online_callback(arg);
2975 break;
2976 case MEM_GOING_OFFLINE:
2977 ret = slab_mem_going_offline_callback(arg);
2978 break;
2979 case MEM_OFFLINE:
2980 case MEM_CANCEL_ONLINE:
2981 slab_mem_offline_callback(arg);
2982 break;
2983 case MEM_ONLINE:
2984 case MEM_CANCEL_OFFLINE:
2985 break;
2986 }
2987
2988 ret = notifier_from_errno(ret);
2989 return ret;
2990}
2991
2992#endif /* CONFIG_MEMORY_HOTPLUG */
2993
81819f0f
CL
2994/********************************************************************
2995 * Basic setup of slabs
2996 *******************************************************************/
2997
2998void __init kmem_cache_init(void)
2999{
3000 int i;
4b356be0 3001 int caches = 0;
81819f0f 3002
4c93c355
CL
3003 init_alloc_cpu();
3004
81819f0f
CL
3005#ifdef CONFIG_NUMA
3006 /*
3007 * Must first have the slab cache available for the allocations of the
672bba3a 3008 * struct kmem_cache_node's. There is special bootstrap code in
81819f0f
CL
3009 * kmem_cache_open for slab_state == DOWN.
3010 */
3011 create_kmalloc_cache(&kmalloc_caches[0], "kmem_cache_node",
3012 sizeof(struct kmem_cache_node), GFP_KERNEL);
8ffa6875 3013 kmalloc_caches[0].refcount = -1;
4b356be0 3014 caches++;
b9049e23 3015
0c40ba4f 3016 hotplug_memory_notifier(slab_memory_callback, SLAB_CALLBACK_PRI);
81819f0f
CL
3017#endif
3018
3019 /* Able to allocate the per node structures */
3020 slab_state = PARTIAL;
3021
3022 /* Caches that are not of the two-to-the-power-of size */
4b356be0
CL
3023 if (KMALLOC_MIN_SIZE <= 64) {
3024 create_kmalloc_cache(&kmalloc_caches[1],
81819f0f 3025 "kmalloc-96", 96, GFP_KERNEL);
4b356be0 3026 caches++;
4b356be0 3027 create_kmalloc_cache(&kmalloc_caches[2],
81819f0f 3028 "kmalloc-192", 192, GFP_KERNEL);
4b356be0
CL
3029 caches++;
3030 }
81819f0f 3031
331dc558 3032 for (i = KMALLOC_SHIFT_LOW; i <= PAGE_SHIFT; i++) {
81819f0f
CL
3033 create_kmalloc_cache(&kmalloc_caches[i],
3034 "kmalloc", 1 << i, GFP_KERNEL);
4b356be0
CL
3035 caches++;
3036 }
81819f0f 3037
f1b26339
CL
3038
3039 /*
3040 * Patch up the size_index table if we have strange large alignment
3041 * requirements for the kmalloc array. This is only the case for
6446faa2 3042 * MIPS it seems. The standard arches will not generate any code here.
f1b26339
CL
3043 *
3044 * Largest permitted alignment is 256 bytes due to the way we
3045 * handle the index determination for the smaller caches.
3046 *
3047 * Make sure that nothing crazy happens if someone starts tinkering
3048 * around with ARCH_KMALLOC_MINALIGN
3049 */
3050 BUILD_BUG_ON(KMALLOC_MIN_SIZE > 256 ||
3051 (KMALLOC_MIN_SIZE & (KMALLOC_MIN_SIZE - 1)));
3052
12ad6843 3053 for (i = 8; i < KMALLOC_MIN_SIZE; i += 8)
f1b26339
CL
3054 size_index[(i - 1) / 8] = KMALLOC_SHIFT_LOW;
3055
41d54d3b
CL
3056 if (KMALLOC_MIN_SIZE == 128) {
3057 /*
3058 * The 192 byte sized cache is not used if the alignment
3059 * is 128 byte. Redirect kmalloc to use the 256 byte cache
3060 * instead.
3061 */
3062 for (i = 128 + 8; i <= 192; i += 8)
3063 size_index[(i - 1) / 8] = 8;
3064 }
3065
81819f0f
CL
3066 slab_state = UP;
3067
3068 /* Provide the correct kmalloc names now that the caches are up */
331dc558 3069 for (i = KMALLOC_SHIFT_LOW; i <= PAGE_SHIFT; i++)
81819f0f
CL
3070 kmalloc_caches[i]. name =
3071 kasprintf(GFP_KERNEL, "kmalloc-%d", 1 << i);
3072
3073#ifdef CONFIG_SMP
3074 register_cpu_notifier(&slab_notifier);
4c93c355
CL
3075 kmem_size = offsetof(struct kmem_cache, cpu_slab) +
3076 nr_cpu_ids * sizeof(struct kmem_cache_cpu *);
3077#else
3078 kmem_size = sizeof(struct kmem_cache);
81819f0f
CL
3079#endif
3080
3adbefee
IM
3081 printk(KERN_INFO
3082 "SLUB: Genslabs=%d, HWalign=%d, Order=%d-%d, MinObjects=%d,"
4b356be0
CL
3083 " CPUs=%d, Nodes=%d\n",
3084 caches, cache_line_size(),
81819f0f
CL
3085 slub_min_order, slub_max_order, slub_min_objects,
3086 nr_cpu_ids, nr_node_ids);
3087}
3088
3089/*
3090 * Find a mergeable slab cache
3091 */
3092static int slab_unmergeable(struct kmem_cache *s)
3093{
3094 if (slub_nomerge || (s->flags & SLUB_NEVER_MERGE))
3095 return 1;
3096
c59def9f 3097 if (s->ctor)
81819f0f
CL
3098 return 1;
3099
8ffa6875
CL
3100 /*
3101 * We may have set a slab to be unmergeable during bootstrap.
3102 */
3103 if (s->refcount < 0)
3104 return 1;
3105
81819f0f
CL
3106 return 0;
3107}
3108
3109static struct kmem_cache *find_mergeable(size_t size,
ba0268a8 3110 size_t align, unsigned long flags, const char *name,
51cc5068 3111 void (*ctor)(void *))
81819f0f 3112{
5b95a4ac 3113 struct kmem_cache *s;
81819f0f
CL
3114
3115 if (slub_nomerge || (flags & SLUB_NEVER_MERGE))
3116 return NULL;
3117
c59def9f 3118 if (ctor)
81819f0f
CL
3119 return NULL;
3120
3121 size = ALIGN(size, sizeof(void *));
3122 align = calculate_alignment(flags, align, size);
3123 size = ALIGN(size, align);
ba0268a8 3124 flags = kmem_cache_flags(size, flags, name, NULL);
81819f0f 3125
5b95a4ac 3126 list_for_each_entry(s, &slab_caches, list) {
81819f0f
CL
3127 if (slab_unmergeable(s))
3128 continue;
3129
3130 if (size > s->size)
3131 continue;
3132
ba0268a8 3133 if ((flags & SLUB_MERGE_SAME) != (s->flags & SLUB_MERGE_SAME))
81819f0f
CL
3134 continue;
3135 /*
3136 * Check if alignment is compatible.
3137 * Courtesy of Adrian Drzewiecki
3138 */
06428780 3139 if ((s->size & ~(align - 1)) != s->size)
81819f0f
CL
3140 continue;
3141
3142 if (s->size - size >= sizeof(void *))
3143 continue;
3144
3145 return s;
3146 }
3147 return NULL;
3148}
3149
3150struct kmem_cache *kmem_cache_create(const char *name, size_t size,
51cc5068 3151 size_t align, unsigned long flags, void (*ctor)(void *))
81819f0f
CL
3152{
3153 struct kmem_cache *s;
3154
3155 down_write(&slub_lock);
ba0268a8 3156 s = find_mergeable(size, align, flags, name, ctor);
81819f0f 3157 if (s) {
42a9fdbb
CL
3158 int cpu;
3159
81819f0f
CL
3160 s->refcount++;
3161 /*
3162 * Adjust the object sizes so that we clear
3163 * the complete object on kzalloc.
3164 */
3165 s->objsize = max(s->objsize, (int)size);
42a9fdbb
CL
3166
3167 /*
3168 * And then we need to update the object size in the
3169 * per cpu structures
3170 */
3171 for_each_online_cpu(cpu)
3172 get_cpu_slab(s, cpu)->objsize = s->objsize;
6446faa2 3173
81819f0f 3174 s->inuse = max_t(int, s->inuse, ALIGN(size, sizeof(void *)));
a0e1d1be 3175 up_write(&slub_lock);
6446faa2 3176
81819f0f
CL
3177 if (sysfs_slab_alias(s, name))
3178 goto err;
a0e1d1be
CL
3179 return s;
3180 }
6446faa2 3181
a0e1d1be
CL
3182 s = kmalloc(kmem_size, GFP_KERNEL);
3183 if (s) {
3184 if (kmem_cache_open(s, GFP_KERNEL, name,
c59def9f 3185 size, align, flags, ctor)) {
81819f0f 3186 list_add(&s->list, &slab_caches);
a0e1d1be
CL
3187 up_write(&slub_lock);
3188 if (sysfs_slab_add(s))
3189 goto err;
3190 return s;
3191 }
3192 kfree(s);
81819f0f
CL
3193 }
3194 up_write(&slub_lock);
81819f0f
CL
3195
3196err:
81819f0f
CL
3197 if (flags & SLAB_PANIC)
3198 panic("Cannot create slabcache %s\n", name);
3199 else
3200 s = NULL;
3201 return s;
3202}
3203EXPORT_SYMBOL(kmem_cache_create);
3204
81819f0f 3205#ifdef CONFIG_SMP
81819f0f 3206/*
672bba3a
CL
3207 * Use the cpu notifier to insure that the cpu slabs are flushed when
3208 * necessary.
81819f0f
CL
3209 */
3210static int __cpuinit slab_cpuup_callback(struct notifier_block *nfb,
3211 unsigned long action, void *hcpu)
3212{
3213 long cpu = (long)hcpu;
5b95a4ac
CL
3214 struct kmem_cache *s;
3215 unsigned long flags;
81819f0f
CL
3216
3217 switch (action) {
4c93c355
CL
3218 case CPU_UP_PREPARE:
3219 case CPU_UP_PREPARE_FROZEN:
3220 init_alloc_cpu_cpu(cpu);
3221 down_read(&slub_lock);
3222 list_for_each_entry(s, &slab_caches, list)
3223 s->cpu_slab[cpu] = alloc_kmem_cache_cpu(s, cpu,
3224 GFP_KERNEL);
3225 up_read(&slub_lock);
3226 break;
3227
81819f0f 3228 case CPU_UP_CANCELED:
8bb78442 3229 case CPU_UP_CANCELED_FROZEN:
81819f0f 3230 case CPU_DEAD:
8bb78442 3231 case CPU_DEAD_FROZEN:
5b95a4ac
CL
3232 down_read(&slub_lock);
3233 list_for_each_entry(s, &slab_caches, list) {
4c93c355
CL
3234 struct kmem_cache_cpu *c = get_cpu_slab(s, cpu);
3235
5b95a4ac
CL
3236 local_irq_save(flags);
3237 __flush_cpu_slab(s, cpu);
3238 local_irq_restore(flags);
4c93c355
CL
3239 free_kmem_cache_cpu(c, cpu);
3240 s->cpu_slab[cpu] = NULL;
5b95a4ac
CL
3241 }
3242 up_read(&slub_lock);
81819f0f
CL
3243 break;
3244 default:
3245 break;
3246 }
3247 return NOTIFY_OK;
3248}
3249
06428780 3250static struct notifier_block __cpuinitdata slab_notifier = {
3adbefee 3251 .notifier_call = slab_cpuup_callback
06428780 3252};
81819f0f
CL
3253
3254#endif
3255
35995a4d 3256void *__kmalloc_track_caller(size_t size, gfp_t gfpflags, unsigned long caller)
81819f0f 3257{
aadb4bc4
CL
3258 struct kmem_cache *s;
3259
331dc558 3260 if (unlikely(size > PAGE_SIZE))
eada35ef
PE
3261 return kmalloc_large(size, gfpflags);
3262
aadb4bc4 3263 s = get_slab(size, gfpflags);
81819f0f 3264
2408c550 3265 if (unlikely(ZERO_OR_NULL_PTR(s)))
6cb8f913 3266 return s;
81819f0f 3267
ce15fea8 3268 return slab_alloc(s, gfpflags, -1, caller);
81819f0f
CL
3269}
3270
3271void *__kmalloc_node_track_caller(size_t size, gfp_t gfpflags,
35995a4d 3272 int node, unsigned long caller)
81819f0f 3273{
aadb4bc4
CL
3274 struct kmem_cache *s;
3275
331dc558 3276 if (unlikely(size > PAGE_SIZE))
f619cfe1 3277 return kmalloc_large_node(size, gfpflags, node);
eada35ef 3278
aadb4bc4 3279 s = get_slab(size, gfpflags);
81819f0f 3280
2408c550 3281 if (unlikely(ZERO_OR_NULL_PTR(s)))
6cb8f913 3282 return s;
81819f0f 3283
ce15fea8 3284 return slab_alloc(s, gfpflags, node, caller);
81819f0f
CL
3285}
3286
f6acb635 3287#ifdef CONFIG_SLUB_DEBUG
205ab99d
CL
3288static unsigned long count_partial(struct kmem_cache_node *n,
3289 int (*get_count)(struct page *))
5b06c853
CL
3290{
3291 unsigned long flags;
3292 unsigned long x = 0;
3293 struct page *page;
3294
3295 spin_lock_irqsave(&n->list_lock, flags);
3296 list_for_each_entry(page, &n->partial, lru)
205ab99d 3297 x += get_count(page);
5b06c853
CL
3298 spin_unlock_irqrestore(&n->list_lock, flags);
3299 return x;
3300}
205ab99d
CL
3301
3302static int count_inuse(struct page *page)
3303{
3304 return page->inuse;
3305}
3306
3307static int count_total(struct page *page)
3308{
3309 return page->objects;
3310}
3311
3312static int count_free(struct page *page)
3313{
3314 return page->objects - page->inuse;
3315}
5b06c853 3316
434e245d
CL
3317static int validate_slab(struct kmem_cache *s, struct page *page,
3318 unsigned long *map)
53e15af0
CL
3319{
3320 void *p;
a973e9dd 3321 void *addr = page_address(page);
53e15af0
CL
3322
3323 if (!check_slab(s, page) ||
3324 !on_freelist(s, page, NULL))
3325 return 0;
3326
3327 /* Now we know that a valid freelist exists */
39b26464 3328 bitmap_zero(map, page->objects);
53e15af0 3329
7656c72b
CL
3330 for_each_free_object(p, s, page->freelist) {
3331 set_bit(slab_index(p, s, addr), map);
53e15af0
CL
3332 if (!check_object(s, page, p, 0))
3333 return 0;
3334 }
3335
224a88be 3336 for_each_object(p, s, addr, page->objects)
7656c72b 3337 if (!test_bit(slab_index(p, s, addr), map))
53e15af0
CL
3338 if (!check_object(s, page, p, 1))
3339 return 0;
3340 return 1;
3341}
3342
434e245d
CL
3343static void validate_slab_slab(struct kmem_cache *s, struct page *page,
3344 unsigned long *map)
53e15af0
CL
3345{
3346 if (slab_trylock(page)) {
434e245d 3347 validate_slab(s, page, map);
53e15af0
CL
3348 slab_unlock(page);
3349 } else
3350 printk(KERN_INFO "SLUB %s: Skipped busy slab 0x%p\n",
3351 s->name, page);
3352
3353 if (s->flags & DEBUG_DEFAULT_FLAGS) {
8a38082d
AW
3354 if (!PageSlubDebug(page))
3355 printk(KERN_ERR "SLUB %s: SlubDebug not set "
53e15af0
CL
3356 "on slab 0x%p\n", s->name, page);
3357 } else {
8a38082d
AW
3358 if (PageSlubDebug(page))
3359 printk(KERN_ERR "SLUB %s: SlubDebug set on "
53e15af0
CL
3360 "slab 0x%p\n", s->name, page);
3361 }
3362}
3363
434e245d
CL
3364static int validate_slab_node(struct kmem_cache *s,
3365 struct kmem_cache_node *n, unsigned long *map)
53e15af0
CL
3366{
3367 unsigned long count = 0;
3368 struct page *page;
3369 unsigned long flags;
3370
3371 spin_lock_irqsave(&n->list_lock, flags);
3372
3373 list_for_each_entry(page, &n->partial, lru) {
434e245d 3374 validate_slab_slab(s, page, map);
53e15af0
CL
3375 count++;
3376 }
3377 if (count != n->nr_partial)
3378 printk(KERN_ERR "SLUB %s: %ld partial slabs counted but "
3379 "counter=%ld\n", s->name, count, n->nr_partial);
3380
3381 if (!(s->flags & SLAB_STORE_USER))
3382 goto out;
3383
3384 list_for_each_entry(page, &n->full, lru) {
434e245d 3385 validate_slab_slab(s, page, map);
53e15af0
CL
3386 count++;
3387 }
3388 if (count != atomic_long_read(&n->nr_slabs))
3389 printk(KERN_ERR "SLUB: %s %ld slabs counted but "
3390 "counter=%ld\n", s->name, count,
3391 atomic_long_read(&n->nr_slabs));
3392
3393out:
3394 spin_unlock_irqrestore(&n->list_lock, flags);
3395 return count;
3396}
3397
434e245d 3398static long validate_slab_cache(struct kmem_cache *s)
53e15af0
CL
3399{
3400 int node;
3401 unsigned long count = 0;
205ab99d 3402 unsigned long *map = kmalloc(BITS_TO_LONGS(oo_objects(s->max)) *
434e245d
CL
3403 sizeof(unsigned long), GFP_KERNEL);
3404
3405 if (!map)
3406 return -ENOMEM;
53e15af0
CL
3407
3408 flush_all(s);
f64dc58c 3409 for_each_node_state(node, N_NORMAL_MEMORY) {
53e15af0
CL
3410 struct kmem_cache_node *n = get_node(s, node);
3411
434e245d 3412 count += validate_slab_node(s, n, map);
53e15af0 3413 }
434e245d 3414 kfree(map);
53e15af0
CL
3415 return count;
3416}
3417
b3459709
CL
3418#ifdef SLUB_RESILIENCY_TEST
3419static void resiliency_test(void)
3420{
3421 u8 *p;
3422
3423 printk(KERN_ERR "SLUB resiliency testing\n");
3424 printk(KERN_ERR "-----------------------\n");
3425 printk(KERN_ERR "A. Corruption after allocation\n");
3426
3427 p = kzalloc(16, GFP_KERNEL);
3428 p[16] = 0x12;
3429 printk(KERN_ERR "\n1. kmalloc-16: Clobber Redzone/next pointer"
3430 " 0x12->0x%p\n\n", p + 16);
3431
3432 validate_slab_cache(kmalloc_caches + 4);
3433
3434 /* Hmmm... The next two are dangerous */
3435 p = kzalloc(32, GFP_KERNEL);
3436 p[32 + sizeof(void *)] = 0x34;
3437 printk(KERN_ERR "\n2. kmalloc-32: Clobber next pointer/next slab"
3adbefee
IM
3438 " 0x34 -> -0x%p\n", p);
3439 printk(KERN_ERR
3440 "If allocated object is overwritten then not detectable\n\n");
b3459709
CL
3441
3442 validate_slab_cache(kmalloc_caches + 5);
3443 p = kzalloc(64, GFP_KERNEL);
3444 p += 64 + (get_cycles() & 0xff) * sizeof(void *);
3445 *p = 0x56;
3446 printk(KERN_ERR "\n3. kmalloc-64: corrupting random byte 0x56->0x%p\n",
3447 p);
3adbefee
IM
3448 printk(KERN_ERR
3449 "If allocated object is overwritten then not detectable\n\n");
b3459709
CL
3450 validate_slab_cache(kmalloc_caches + 6);
3451
3452 printk(KERN_ERR "\nB. Corruption after free\n");
3453 p = kzalloc(128, GFP_KERNEL);
3454 kfree(p);
3455 *p = 0x78;
3456 printk(KERN_ERR "1. kmalloc-128: Clobber first word 0x78->0x%p\n\n", p);
3457 validate_slab_cache(kmalloc_caches + 7);
3458
3459 p = kzalloc(256, GFP_KERNEL);
3460 kfree(p);
3461 p[50] = 0x9a;
3adbefee
IM
3462 printk(KERN_ERR "\n2. kmalloc-256: Clobber 50th byte 0x9a->0x%p\n\n",
3463 p);
b3459709
CL
3464 validate_slab_cache(kmalloc_caches + 8);
3465
3466 p = kzalloc(512, GFP_KERNEL);
3467 kfree(p);
3468 p[512] = 0xab;
3469 printk(KERN_ERR "\n3. kmalloc-512: Clobber redzone 0xab->0x%p\n\n", p);
3470 validate_slab_cache(kmalloc_caches + 9);
3471}
3472#else
3473static void resiliency_test(void) {};
3474#endif
3475
88a420e4 3476/*
672bba3a 3477 * Generate lists of code addresses where slabcache objects are allocated
88a420e4
CL
3478 * and freed.
3479 */
3480
3481struct location {
3482 unsigned long count;
35995a4d 3483 unsigned long addr;
45edfa58
CL
3484 long long sum_time;
3485 long min_time;
3486 long max_time;
3487 long min_pid;
3488 long max_pid;
3489 cpumask_t cpus;
3490 nodemask_t nodes;
88a420e4
CL
3491};
3492
3493struct loc_track {
3494 unsigned long max;
3495 unsigned long count;
3496 struct location *loc;
3497};
3498
3499static void free_loc_track(struct loc_track *t)
3500{
3501 if (t->max)
3502 free_pages((unsigned long)t->loc,
3503 get_order(sizeof(struct location) * t->max));
3504}
3505
68dff6a9 3506static int alloc_loc_track(struct loc_track *t, unsigned long max, gfp_t flags)
88a420e4
CL
3507{
3508 struct location *l;
3509 int order;
3510
88a420e4
CL
3511 order = get_order(sizeof(struct location) * max);
3512
68dff6a9 3513 l = (void *)__get_free_pages(flags, order);
88a420e4
CL
3514 if (!l)
3515 return 0;
3516
3517 if (t->count) {
3518 memcpy(l, t->loc, sizeof(struct location) * t->count);
3519 free_loc_track(t);
3520 }
3521 t->max = max;
3522 t->loc = l;
3523 return 1;
3524}
3525
3526static int add_location(struct loc_track *t, struct kmem_cache *s,
45edfa58 3527 const struct track *track)
88a420e4
CL
3528{
3529 long start, end, pos;
3530 struct location *l;
35995a4d 3531 unsigned long caddr;
45edfa58 3532 unsigned long age = jiffies - track->when;
88a420e4
CL
3533
3534 start = -1;
3535 end = t->count;
3536
3537 for ( ; ; ) {
3538 pos = start + (end - start + 1) / 2;
3539
3540 /*
3541 * There is nothing at "end". If we end up there
3542 * we need to add something to before end.
3543 */
3544 if (pos == end)
3545 break;
3546
3547 caddr = t->loc[pos].addr;
45edfa58
CL
3548 if (track->addr == caddr) {
3549
3550 l = &t->loc[pos];
3551 l->count++;
3552 if (track->when) {
3553 l->sum_time += age;
3554 if (age < l->min_time)
3555 l->min_time = age;
3556 if (age > l->max_time)
3557 l->max_time = age;
3558
3559 if (track->pid < l->min_pid)
3560 l->min_pid = track->pid;
3561 if (track->pid > l->max_pid)
3562 l->max_pid = track->pid;
3563
3564 cpu_set(track->cpu, l->cpus);
3565 }
3566 node_set(page_to_nid(virt_to_page(track)), l->nodes);
88a420e4
CL
3567 return 1;
3568 }
3569
45edfa58 3570 if (track->addr < caddr)
88a420e4
CL
3571 end = pos;
3572 else
3573 start = pos;
3574 }
3575
3576 /*
672bba3a 3577 * Not found. Insert new tracking element.
88a420e4 3578 */
68dff6a9 3579 if (t->count >= t->max && !alloc_loc_track(t, 2 * t->max, GFP_ATOMIC))
88a420e4
CL
3580 return 0;
3581
3582 l = t->loc + pos;
3583 if (pos < t->count)
3584 memmove(l + 1, l,
3585 (t->count - pos) * sizeof(struct location));
3586 t->count++;
3587 l->count = 1;
45edfa58
CL
3588 l->addr = track->addr;
3589 l->sum_time = age;
3590 l->min_time = age;
3591 l->max_time = age;
3592 l->min_pid = track->pid;
3593 l->max_pid = track->pid;
3594 cpus_clear(l->cpus);
3595 cpu_set(track->cpu, l->cpus);
3596 nodes_clear(l->nodes);
3597 node_set(page_to_nid(virt_to_page(track)), l->nodes);
88a420e4
CL
3598 return 1;
3599}
3600
3601static void process_slab(struct loc_track *t, struct kmem_cache *s,
3602 struct page *page, enum track_item alloc)
3603{
a973e9dd 3604 void *addr = page_address(page);
39b26464 3605 DECLARE_BITMAP(map, page->objects);
88a420e4
CL
3606 void *p;
3607
39b26464 3608 bitmap_zero(map, page->objects);
7656c72b
CL
3609 for_each_free_object(p, s, page->freelist)
3610 set_bit(slab_index(p, s, addr), map);
88a420e4 3611
224a88be 3612 for_each_object(p, s, addr, page->objects)
45edfa58
CL
3613 if (!test_bit(slab_index(p, s, addr), map))
3614 add_location(t, s, get_track(s, p, alloc));
88a420e4
CL
3615}
3616
3617static int list_locations(struct kmem_cache *s, char *buf,
3618 enum track_item alloc)
3619{
e374d483 3620 int len = 0;
88a420e4 3621 unsigned long i;
68dff6a9 3622 struct loc_track t = { 0, 0, NULL };
88a420e4
CL
3623 int node;
3624
68dff6a9 3625 if (!alloc_loc_track(&t, PAGE_SIZE / sizeof(struct location),
ea3061d2 3626 GFP_TEMPORARY))
68dff6a9 3627 return sprintf(buf, "Out of memory\n");
88a420e4
CL
3628
3629 /* Push back cpu slabs */
3630 flush_all(s);
3631
f64dc58c 3632 for_each_node_state(node, N_NORMAL_MEMORY) {
88a420e4
CL
3633 struct kmem_cache_node *n = get_node(s, node);
3634 unsigned long flags;
3635 struct page *page;
3636
9e86943b 3637 if (!atomic_long_read(&n->nr_slabs))
88a420e4
CL
3638 continue;
3639
3640 spin_lock_irqsave(&n->list_lock, flags);
3641 list_for_each_entry(page, &n->partial, lru)
3642 process_slab(&t, s, page, alloc);
3643 list_for_each_entry(page, &n->full, lru)
3644 process_slab(&t, s, page, alloc);
3645 spin_unlock_irqrestore(&n->list_lock, flags);
3646 }
3647
3648 for (i = 0; i < t.count; i++) {
45edfa58 3649 struct location *l = &t.loc[i];
88a420e4 3650
e374d483 3651 if (len > PAGE_SIZE - 100)
88a420e4 3652 break;
e374d483 3653 len += sprintf(buf + len, "%7ld ", l->count);
45edfa58
CL
3654
3655 if (l->addr)
e374d483 3656 len += sprint_symbol(buf + len, (unsigned long)l->addr);
88a420e4 3657 else
e374d483 3658 len += sprintf(buf + len, "<not-available>");
45edfa58
CL
3659
3660 if (l->sum_time != l->min_time) {
e374d483 3661 len += sprintf(buf + len, " age=%ld/%ld/%ld",
f8bd2258
RZ
3662 l->min_time,
3663 (long)div_u64(l->sum_time, l->count),
3664 l->max_time);
45edfa58 3665 } else
e374d483 3666 len += sprintf(buf + len, " age=%ld",
45edfa58
CL
3667 l->min_time);
3668
3669 if (l->min_pid != l->max_pid)
e374d483 3670 len += sprintf(buf + len, " pid=%ld-%ld",
45edfa58
CL
3671 l->min_pid, l->max_pid);
3672 else
e374d483 3673 len += sprintf(buf + len, " pid=%ld",
45edfa58
CL
3674 l->min_pid);
3675
84966343 3676 if (num_online_cpus() > 1 && !cpus_empty(l->cpus) &&
e374d483
HH
3677 len < PAGE_SIZE - 60) {
3678 len += sprintf(buf + len, " cpus=");
3679 len += cpulist_scnprintf(buf + len, PAGE_SIZE - len - 50,
45edfa58
CL
3680 l->cpus);
3681 }
3682
84966343 3683 if (num_online_nodes() > 1 && !nodes_empty(l->nodes) &&
e374d483
HH
3684 len < PAGE_SIZE - 60) {
3685 len += sprintf(buf + len, " nodes=");
3686 len += nodelist_scnprintf(buf + len, PAGE_SIZE - len - 50,
45edfa58
CL
3687 l->nodes);
3688 }
3689
e374d483 3690 len += sprintf(buf + len, "\n");
88a420e4
CL
3691 }
3692
3693 free_loc_track(&t);
3694 if (!t.count)
e374d483
HH
3695 len += sprintf(buf, "No data\n");
3696 return len;
88a420e4
CL
3697}
3698
81819f0f 3699enum slab_stat_type {
205ab99d
CL
3700 SL_ALL, /* All slabs */
3701 SL_PARTIAL, /* Only partially allocated slabs */
3702 SL_CPU, /* Only slabs used for cpu caches */
3703 SL_OBJECTS, /* Determine allocated objects not slabs */
3704 SL_TOTAL /* Determine object capacity not slabs */
81819f0f
CL
3705};
3706
205ab99d 3707#define SO_ALL (1 << SL_ALL)
81819f0f
CL
3708#define SO_PARTIAL (1 << SL_PARTIAL)
3709#define SO_CPU (1 << SL_CPU)
3710#define SO_OBJECTS (1 << SL_OBJECTS)
205ab99d 3711#define SO_TOTAL (1 << SL_TOTAL)
81819f0f 3712
62e5c4b4
CG
3713static ssize_t show_slab_objects(struct kmem_cache *s,
3714 char *buf, unsigned long flags)
81819f0f
CL
3715{
3716 unsigned long total = 0;
81819f0f
CL
3717 int node;
3718 int x;
3719 unsigned long *nodes;
3720 unsigned long *per_cpu;
3721
3722 nodes = kzalloc(2 * sizeof(unsigned long) * nr_node_ids, GFP_KERNEL);
62e5c4b4
CG
3723 if (!nodes)
3724 return -ENOMEM;
81819f0f
CL
3725 per_cpu = nodes + nr_node_ids;
3726
205ab99d
CL
3727 if (flags & SO_CPU) {
3728 int cpu;
81819f0f 3729
205ab99d
CL
3730 for_each_possible_cpu(cpu) {
3731 struct kmem_cache_cpu *c = get_cpu_slab(s, cpu);
dfb4f096 3732
205ab99d
CL
3733 if (!c || c->node < 0)
3734 continue;
3735
3736 if (c->page) {
3737 if (flags & SO_TOTAL)
3738 x = c->page->objects;
3739 else if (flags & SO_OBJECTS)
3740 x = c->page->inuse;
81819f0f
CL
3741 else
3742 x = 1;
205ab99d 3743
81819f0f 3744 total += x;
205ab99d 3745 nodes[c->node] += x;
81819f0f 3746 }
205ab99d 3747 per_cpu[c->node]++;
81819f0f
CL
3748 }
3749 }
3750
205ab99d
CL
3751 if (flags & SO_ALL) {
3752 for_each_node_state(node, N_NORMAL_MEMORY) {
3753 struct kmem_cache_node *n = get_node(s, node);
3754
3755 if (flags & SO_TOTAL)
3756 x = atomic_long_read(&n->total_objects);
3757 else if (flags & SO_OBJECTS)
3758 x = atomic_long_read(&n->total_objects) -
3759 count_partial(n, count_free);
81819f0f 3760
81819f0f 3761 else
205ab99d 3762 x = atomic_long_read(&n->nr_slabs);
81819f0f
CL
3763 total += x;
3764 nodes[node] += x;
3765 }
3766
205ab99d
CL
3767 } else if (flags & SO_PARTIAL) {
3768 for_each_node_state(node, N_NORMAL_MEMORY) {
3769 struct kmem_cache_node *n = get_node(s, node);
81819f0f 3770
205ab99d
CL
3771 if (flags & SO_TOTAL)
3772 x = count_partial(n, count_total);
3773 else if (flags & SO_OBJECTS)
3774 x = count_partial(n, count_inuse);
81819f0f 3775 else
205ab99d 3776 x = n->nr_partial;
81819f0f
CL
3777 total += x;
3778 nodes[node] += x;
3779 }
3780 }
81819f0f
CL
3781 x = sprintf(buf, "%lu", total);
3782#ifdef CONFIG_NUMA
f64dc58c 3783 for_each_node_state(node, N_NORMAL_MEMORY)
81819f0f
CL
3784 if (nodes[node])
3785 x += sprintf(buf + x, " N%d=%lu",
3786 node, nodes[node]);
3787#endif
3788 kfree(nodes);
3789 return x + sprintf(buf + x, "\n");
3790}
3791
3792static int any_slab_objects(struct kmem_cache *s)
3793{
3794 int node;
81819f0f 3795
dfb4f096 3796 for_each_online_node(node) {
81819f0f
CL
3797 struct kmem_cache_node *n = get_node(s, node);
3798
dfb4f096
CL
3799 if (!n)
3800 continue;
3801
4ea33e2d 3802 if (atomic_long_read(&n->total_objects))
81819f0f
CL
3803 return 1;
3804 }
3805 return 0;
3806}
3807
3808#define to_slab_attr(n) container_of(n, struct slab_attribute, attr)
3809#define to_slab(n) container_of(n, struct kmem_cache, kobj);
3810
3811struct slab_attribute {
3812 struct attribute attr;
3813 ssize_t (*show)(struct kmem_cache *s, char *buf);
3814 ssize_t (*store)(struct kmem_cache *s, const char *x, size_t count);
3815};
3816
3817#define SLAB_ATTR_RO(_name) \
3818 static struct slab_attribute _name##_attr = __ATTR_RO(_name)
3819
3820#define SLAB_ATTR(_name) \
3821 static struct slab_attribute _name##_attr = \
3822 __ATTR(_name, 0644, _name##_show, _name##_store)
3823
81819f0f
CL
3824static ssize_t slab_size_show(struct kmem_cache *s, char *buf)
3825{
3826 return sprintf(buf, "%d\n", s->size);
3827}
3828SLAB_ATTR_RO(slab_size);
3829
3830static ssize_t align_show(struct kmem_cache *s, char *buf)
3831{
3832 return sprintf(buf, "%d\n", s->align);
3833}
3834SLAB_ATTR_RO(align);
3835
3836static ssize_t object_size_show(struct kmem_cache *s, char *buf)
3837{
3838 return sprintf(buf, "%d\n", s->objsize);
3839}
3840SLAB_ATTR_RO(object_size);
3841
3842static ssize_t objs_per_slab_show(struct kmem_cache *s, char *buf)
3843{
834f3d11 3844 return sprintf(buf, "%d\n", oo_objects(s->oo));
81819f0f
CL
3845}
3846SLAB_ATTR_RO(objs_per_slab);
3847
06b285dc
CL
3848static ssize_t order_store(struct kmem_cache *s,
3849 const char *buf, size_t length)
3850{
0121c619
CL
3851 unsigned long order;
3852 int err;
3853
3854 err = strict_strtoul(buf, 10, &order);
3855 if (err)
3856 return err;
06b285dc
CL
3857
3858 if (order > slub_max_order || order < slub_min_order)
3859 return -EINVAL;
3860
3861 calculate_sizes(s, order);
3862 return length;
3863}
3864
81819f0f
CL
3865static ssize_t order_show(struct kmem_cache *s, char *buf)
3866{
834f3d11 3867 return sprintf(buf, "%d\n", oo_order(s->oo));
81819f0f 3868}
06b285dc 3869SLAB_ATTR(order);
81819f0f
CL
3870
3871static ssize_t ctor_show(struct kmem_cache *s, char *buf)
3872{
3873 if (s->ctor) {
3874 int n = sprint_symbol(buf, (unsigned long)s->ctor);
3875
3876 return n + sprintf(buf + n, "\n");
3877 }
3878 return 0;
3879}
3880SLAB_ATTR_RO(ctor);
3881
81819f0f
CL
3882static ssize_t aliases_show(struct kmem_cache *s, char *buf)
3883{
3884 return sprintf(buf, "%d\n", s->refcount - 1);
3885}
3886SLAB_ATTR_RO(aliases);
3887
3888static ssize_t slabs_show(struct kmem_cache *s, char *buf)
3889{
205ab99d 3890 return show_slab_objects(s, buf, SO_ALL);
81819f0f
CL
3891}
3892SLAB_ATTR_RO(slabs);
3893
3894static ssize_t partial_show(struct kmem_cache *s, char *buf)
3895{
d9acf4b7 3896 return show_slab_objects(s, buf, SO_PARTIAL);
81819f0f
CL
3897}
3898SLAB_ATTR_RO(partial);
3899
3900static ssize_t cpu_slabs_show(struct kmem_cache *s, char *buf)
3901{
d9acf4b7 3902 return show_slab_objects(s, buf, SO_CPU);
81819f0f
CL
3903}
3904SLAB_ATTR_RO(cpu_slabs);
3905
3906static ssize_t objects_show(struct kmem_cache *s, char *buf)
3907{
205ab99d 3908 return show_slab_objects(s, buf, SO_ALL|SO_OBJECTS);
81819f0f
CL
3909}
3910SLAB_ATTR_RO(objects);
3911
205ab99d
CL
3912static ssize_t objects_partial_show(struct kmem_cache *s, char *buf)
3913{
3914 return show_slab_objects(s, buf, SO_PARTIAL|SO_OBJECTS);
3915}
3916SLAB_ATTR_RO(objects_partial);
3917
3918static ssize_t total_objects_show(struct kmem_cache *s, char *buf)
3919{
3920 return show_slab_objects(s, buf, SO_ALL|SO_TOTAL);
3921}
3922SLAB_ATTR_RO(total_objects);
3923
81819f0f
CL
3924static ssize_t sanity_checks_show(struct kmem_cache *s, char *buf)
3925{
3926 return sprintf(buf, "%d\n", !!(s->flags & SLAB_DEBUG_FREE));
3927}
3928
3929static ssize_t sanity_checks_store(struct kmem_cache *s,
3930 const char *buf, size_t length)
3931{
3932 s->flags &= ~SLAB_DEBUG_FREE;
3933 if (buf[0] == '1')
3934 s->flags |= SLAB_DEBUG_FREE;
3935 return length;
3936}
3937SLAB_ATTR(sanity_checks);
3938
3939static ssize_t trace_show(struct kmem_cache *s, char *buf)
3940{
3941 return sprintf(buf, "%d\n", !!(s->flags & SLAB_TRACE));
3942}
3943
3944static ssize_t trace_store(struct kmem_cache *s, const char *buf,
3945 size_t length)
3946{
3947 s->flags &= ~SLAB_TRACE;
3948 if (buf[0] == '1')
3949 s->flags |= SLAB_TRACE;
3950 return length;
3951}
3952SLAB_ATTR(trace);
3953
3954static ssize_t reclaim_account_show(struct kmem_cache *s, char *buf)
3955{
3956 return sprintf(buf, "%d\n", !!(s->flags & SLAB_RECLAIM_ACCOUNT));
3957}
3958
3959static ssize_t reclaim_account_store(struct kmem_cache *s,
3960 const char *buf, size_t length)
3961{
3962 s->flags &= ~SLAB_RECLAIM_ACCOUNT;
3963 if (buf[0] == '1')
3964 s->flags |= SLAB_RECLAIM_ACCOUNT;
3965 return length;
3966}
3967SLAB_ATTR(reclaim_account);
3968
3969static ssize_t hwcache_align_show(struct kmem_cache *s, char *buf)
3970{
5af60839 3971 return sprintf(buf, "%d\n", !!(s->flags & SLAB_HWCACHE_ALIGN));
81819f0f
CL
3972}
3973SLAB_ATTR_RO(hwcache_align);
3974
3975#ifdef CONFIG_ZONE_DMA
3976static ssize_t cache_dma_show(struct kmem_cache *s, char *buf)
3977{
3978 return sprintf(buf, "%d\n", !!(s->flags & SLAB_CACHE_DMA));
3979}
3980SLAB_ATTR_RO(cache_dma);
3981#endif
3982
3983static ssize_t destroy_by_rcu_show(struct kmem_cache *s, char *buf)
3984{
3985 return sprintf(buf, "%d\n", !!(s->flags & SLAB_DESTROY_BY_RCU));
3986}
3987SLAB_ATTR_RO(destroy_by_rcu);
3988
3989static ssize_t red_zone_show(struct kmem_cache *s, char *buf)
3990{
3991 return sprintf(buf, "%d\n", !!(s->flags & SLAB_RED_ZONE));
3992}
3993
3994static ssize_t red_zone_store(struct kmem_cache *s,
3995 const char *buf, size_t length)
3996{
3997 if (any_slab_objects(s))
3998 return -EBUSY;
3999
4000 s->flags &= ~SLAB_RED_ZONE;
4001 if (buf[0] == '1')
4002 s->flags |= SLAB_RED_ZONE;
06b285dc 4003 calculate_sizes(s, -1);
81819f0f
CL
4004 return length;
4005}
4006SLAB_ATTR(red_zone);
4007
4008static ssize_t poison_show(struct kmem_cache *s, char *buf)
4009{
4010 return sprintf(buf, "%d\n", !!(s->flags & SLAB_POISON));
4011}
4012
4013static ssize_t poison_store(struct kmem_cache *s,
4014 const char *buf, size_t length)
4015{
4016 if (any_slab_objects(s))
4017 return -EBUSY;
4018
4019 s->flags &= ~SLAB_POISON;
4020 if (buf[0] == '1')
4021 s->flags |= SLAB_POISON;
06b285dc 4022 calculate_sizes(s, -1);
81819f0f
CL
4023 return length;
4024}
4025SLAB_ATTR(poison);
4026
4027static ssize_t store_user_show(struct kmem_cache *s, char *buf)
4028{
4029 return sprintf(buf, "%d\n", !!(s->flags & SLAB_STORE_USER));
4030}
4031
4032static ssize_t store_user_store(struct kmem_cache *s,
4033 const char *buf, size_t length)
4034{
4035 if (any_slab_objects(s))
4036 return -EBUSY;
4037
4038 s->flags &= ~SLAB_STORE_USER;
4039 if (buf[0] == '1')
4040 s->flags |= SLAB_STORE_USER;
06b285dc 4041 calculate_sizes(s, -1);
81819f0f
CL
4042 return length;
4043}
4044SLAB_ATTR(store_user);
4045
53e15af0
CL
4046static ssize_t validate_show(struct kmem_cache *s, char *buf)
4047{
4048 return 0;
4049}
4050
4051static ssize_t validate_store(struct kmem_cache *s,
4052 const char *buf, size_t length)
4053{
434e245d
CL
4054 int ret = -EINVAL;
4055
4056 if (buf[0] == '1') {
4057 ret = validate_slab_cache(s);
4058 if (ret >= 0)
4059 ret = length;
4060 }
4061 return ret;
53e15af0
CL
4062}
4063SLAB_ATTR(validate);
4064
2086d26a
CL
4065static ssize_t shrink_show(struct kmem_cache *s, char *buf)
4066{
4067 return 0;
4068}
4069
4070static ssize_t shrink_store(struct kmem_cache *s,
4071 const char *buf, size_t length)
4072{
4073 if (buf[0] == '1') {
4074 int rc = kmem_cache_shrink(s);
4075
4076 if (rc)
4077 return rc;
4078 } else
4079 return -EINVAL;
4080 return length;
4081}
4082SLAB_ATTR(shrink);
4083
88a420e4
CL
4084static ssize_t alloc_calls_show(struct kmem_cache *s, char *buf)
4085{
4086 if (!(s->flags & SLAB_STORE_USER))
4087 return -ENOSYS;
4088 return list_locations(s, buf, TRACK_ALLOC);
4089}
4090SLAB_ATTR_RO(alloc_calls);
4091
4092static ssize_t free_calls_show(struct kmem_cache *s, char *buf)
4093{
4094 if (!(s->flags & SLAB_STORE_USER))
4095 return -ENOSYS;
4096 return list_locations(s, buf, TRACK_FREE);
4097}
4098SLAB_ATTR_RO(free_calls);
4099
81819f0f 4100#ifdef CONFIG_NUMA
9824601e 4101static ssize_t remote_node_defrag_ratio_show(struct kmem_cache *s, char *buf)
81819f0f 4102{
9824601e 4103 return sprintf(buf, "%d\n", s->remote_node_defrag_ratio / 10);
81819f0f
CL
4104}
4105
9824601e 4106static ssize_t remote_node_defrag_ratio_store(struct kmem_cache *s,
81819f0f
CL
4107 const char *buf, size_t length)
4108{
0121c619
CL
4109 unsigned long ratio;
4110 int err;
4111
4112 err = strict_strtoul(buf, 10, &ratio);
4113 if (err)
4114 return err;
4115
e2cb96b7 4116 if (ratio <= 100)
0121c619 4117 s->remote_node_defrag_ratio = ratio * 10;
81819f0f 4118
81819f0f
CL
4119 return length;
4120}
9824601e 4121SLAB_ATTR(remote_node_defrag_ratio);
81819f0f
CL
4122#endif
4123
8ff12cfc 4124#ifdef CONFIG_SLUB_STATS
8ff12cfc
CL
4125static int show_stat(struct kmem_cache *s, char *buf, enum stat_item si)
4126{
4127 unsigned long sum = 0;
4128 int cpu;
4129 int len;
4130 int *data = kmalloc(nr_cpu_ids * sizeof(int), GFP_KERNEL);
4131
4132 if (!data)
4133 return -ENOMEM;
4134
4135 for_each_online_cpu(cpu) {
4136 unsigned x = get_cpu_slab(s, cpu)->stat[si];
4137
4138 data[cpu] = x;
4139 sum += x;
4140 }
4141
4142 len = sprintf(buf, "%lu", sum);
4143
50ef37b9 4144#ifdef CONFIG_SMP
8ff12cfc
CL
4145 for_each_online_cpu(cpu) {
4146 if (data[cpu] && len < PAGE_SIZE - 20)
50ef37b9 4147 len += sprintf(buf + len, " C%d=%u", cpu, data[cpu]);
8ff12cfc 4148 }
50ef37b9 4149#endif
8ff12cfc
CL
4150 kfree(data);
4151 return len + sprintf(buf + len, "\n");
4152}
4153
4154#define STAT_ATTR(si, text) \
4155static ssize_t text##_show(struct kmem_cache *s, char *buf) \
4156{ \
4157 return show_stat(s, buf, si); \
4158} \
4159SLAB_ATTR_RO(text); \
4160
4161STAT_ATTR(ALLOC_FASTPATH, alloc_fastpath);
4162STAT_ATTR(ALLOC_SLOWPATH, alloc_slowpath);
4163STAT_ATTR(FREE_FASTPATH, free_fastpath);
4164STAT_ATTR(FREE_SLOWPATH, free_slowpath);
4165STAT_ATTR(FREE_FROZEN, free_frozen);
4166STAT_ATTR(FREE_ADD_PARTIAL, free_add_partial);
4167STAT_ATTR(FREE_REMOVE_PARTIAL, free_remove_partial);
4168STAT_ATTR(ALLOC_FROM_PARTIAL, alloc_from_partial);
4169STAT_ATTR(ALLOC_SLAB, alloc_slab);
4170STAT_ATTR(ALLOC_REFILL, alloc_refill);
4171STAT_ATTR(FREE_SLAB, free_slab);
4172STAT_ATTR(CPUSLAB_FLUSH, cpuslab_flush);
4173STAT_ATTR(DEACTIVATE_FULL, deactivate_full);
4174STAT_ATTR(DEACTIVATE_EMPTY, deactivate_empty);
4175STAT_ATTR(DEACTIVATE_TO_HEAD, deactivate_to_head);
4176STAT_ATTR(DEACTIVATE_TO_TAIL, deactivate_to_tail);
4177STAT_ATTR(DEACTIVATE_REMOTE_FREES, deactivate_remote_frees);
65c3376a 4178STAT_ATTR(ORDER_FALLBACK, order_fallback);
8ff12cfc
CL
4179#endif
4180
06428780 4181static struct attribute *slab_attrs[] = {
81819f0f
CL
4182 &slab_size_attr.attr,
4183 &object_size_attr.attr,
4184 &objs_per_slab_attr.attr,
4185 &order_attr.attr,
4186 &objects_attr.attr,
205ab99d
CL
4187 &objects_partial_attr.attr,
4188 &total_objects_attr.attr,
81819f0f
CL
4189 &slabs_attr.attr,
4190 &partial_attr.attr,
4191 &cpu_slabs_attr.attr,
4192 &ctor_attr.attr,
81819f0f
CL
4193 &aliases_attr.attr,
4194 &align_attr.attr,
4195 &sanity_checks_attr.attr,
4196 &trace_attr.attr,
4197 &hwcache_align_attr.attr,
4198 &reclaim_account_attr.attr,
4199 &destroy_by_rcu_attr.attr,
4200 &red_zone_attr.attr,
4201 &poison_attr.attr,
4202 &store_user_attr.attr,
53e15af0 4203 &validate_attr.attr,
2086d26a 4204 &shrink_attr.attr,
88a420e4
CL
4205 &alloc_calls_attr.attr,
4206 &free_calls_attr.attr,
81819f0f
CL
4207#ifdef CONFIG_ZONE_DMA
4208 &cache_dma_attr.attr,
4209#endif
4210#ifdef CONFIG_NUMA
9824601e 4211 &remote_node_defrag_ratio_attr.attr,
8ff12cfc
CL
4212#endif
4213#ifdef CONFIG_SLUB_STATS
4214 &alloc_fastpath_attr.attr,
4215 &alloc_slowpath_attr.attr,
4216 &free_fastpath_attr.attr,
4217 &free_slowpath_attr.attr,
4218 &free_frozen_attr.attr,
4219 &free_add_partial_attr.attr,
4220 &free_remove_partial_attr.attr,
4221 &alloc_from_partial_attr.attr,
4222 &alloc_slab_attr.attr,
4223 &alloc_refill_attr.attr,
4224 &free_slab_attr.attr,
4225 &cpuslab_flush_attr.attr,
4226 &deactivate_full_attr.attr,
4227 &deactivate_empty_attr.attr,
4228 &deactivate_to_head_attr.attr,
4229 &deactivate_to_tail_attr.attr,
4230 &deactivate_remote_frees_attr.attr,
65c3376a 4231 &order_fallback_attr.attr,
81819f0f
CL
4232#endif
4233 NULL
4234};
4235
4236static struct attribute_group slab_attr_group = {
4237 .attrs = slab_attrs,
4238};
4239
4240static ssize_t slab_attr_show(struct kobject *kobj,
4241 struct attribute *attr,
4242 char *buf)
4243{
4244 struct slab_attribute *attribute;
4245 struct kmem_cache *s;
4246 int err;
4247
4248 attribute = to_slab_attr(attr);
4249 s = to_slab(kobj);
4250
4251 if (!attribute->show)
4252 return -EIO;
4253
4254 err = attribute->show(s, buf);
4255
4256 return err;
4257}
4258
4259static ssize_t slab_attr_store(struct kobject *kobj,
4260 struct attribute *attr,
4261 const char *buf, size_t len)
4262{
4263 struct slab_attribute *attribute;
4264 struct kmem_cache *s;
4265 int err;
4266
4267 attribute = to_slab_attr(attr);
4268 s = to_slab(kobj);
4269
4270 if (!attribute->store)
4271 return -EIO;
4272
4273 err = attribute->store(s, buf, len);
4274
4275 return err;
4276}
4277
151c602f
CL
4278static void kmem_cache_release(struct kobject *kobj)
4279{
4280 struct kmem_cache *s = to_slab(kobj);
4281
4282 kfree(s);
4283}
4284
81819f0f
CL
4285static struct sysfs_ops slab_sysfs_ops = {
4286 .show = slab_attr_show,
4287 .store = slab_attr_store,
4288};
4289
4290static struct kobj_type slab_ktype = {
4291 .sysfs_ops = &slab_sysfs_ops,
151c602f 4292 .release = kmem_cache_release
81819f0f
CL
4293};
4294
4295static int uevent_filter(struct kset *kset, struct kobject *kobj)
4296{
4297 struct kobj_type *ktype = get_ktype(kobj);
4298
4299 if (ktype == &slab_ktype)
4300 return 1;
4301 return 0;
4302}
4303
4304static struct kset_uevent_ops slab_uevent_ops = {
4305 .filter = uevent_filter,
4306};
4307
27c3a314 4308static struct kset *slab_kset;
81819f0f
CL
4309
4310#define ID_STR_LENGTH 64
4311
4312/* Create a unique string id for a slab cache:
6446faa2
CL
4313 *
4314 * Format :[flags-]size
81819f0f
CL
4315 */
4316static char *create_unique_id(struct kmem_cache *s)
4317{
4318 char *name = kmalloc(ID_STR_LENGTH, GFP_KERNEL);
4319 char *p = name;
4320
4321 BUG_ON(!name);
4322
4323 *p++ = ':';
4324 /*
4325 * First flags affecting slabcache operations. We will only
4326 * get here for aliasable slabs so we do not need to support
4327 * too many flags. The flags here must cover all flags that
4328 * are matched during merging to guarantee that the id is
4329 * unique.
4330 */
4331 if (s->flags & SLAB_CACHE_DMA)
4332 *p++ = 'd';
4333 if (s->flags & SLAB_RECLAIM_ACCOUNT)
4334 *p++ = 'a';
4335 if (s->flags & SLAB_DEBUG_FREE)
4336 *p++ = 'F';
4337 if (p != name + 1)
4338 *p++ = '-';
4339 p += sprintf(p, "%07d", s->size);
4340 BUG_ON(p > name + ID_STR_LENGTH - 1);
4341 return name;
4342}
4343
4344static int sysfs_slab_add(struct kmem_cache *s)
4345{
4346 int err;
4347 const char *name;
4348 int unmergeable;
4349
4350 if (slab_state < SYSFS)
4351 /* Defer until later */
4352 return 0;
4353
4354 unmergeable = slab_unmergeable(s);
4355 if (unmergeable) {
4356 /*
4357 * Slabcache can never be merged so we can use the name proper.
4358 * This is typically the case for debug situations. In that
4359 * case we can catch duplicate names easily.
4360 */
27c3a314 4361 sysfs_remove_link(&slab_kset->kobj, s->name);
81819f0f
CL
4362 name = s->name;
4363 } else {
4364 /*
4365 * Create a unique name for the slab as a target
4366 * for the symlinks.
4367 */
4368 name = create_unique_id(s);
4369 }
4370
27c3a314 4371 s->kobj.kset = slab_kset;
1eada11c
GKH
4372 err = kobject_init_and_add(&s->kobj, &slab_ktype, NULL, name);
4373 if (err) {
4374 kobject_put(&s->kobj);
81819f0f 4375 return err;
1eada11c 4376 }
81819f0f
CL
4377
4378 err = sysfs_create_group(&s->kobj, &slab_attr_group);
4379 if (err)
4380 return err;
4381 kobject_uevent(&s->kobj, KOBJ_ADD);
4382 if (!unmergeable) {
4383 /* Setup first alias */
4384 sysfs_slab_alias(s, s->name);
4385 kfree(name);
4386 }
4387 return 0;
4388}
4389
4390static void sysfs_slab_remove(struct kmem_cache *s)
4391{
4392 kobject_uevent(&s->kobj, KOBJ_REMOVE);
4393 kobject_del(&s->kobj);
151c602f 4394 kobject_put(&s->kobj);
81819f0f
CL
4395}
4396
4397/*
4398 * Need to buffer aliases during bootup until sysfs becomes
4399 * available lest we loose that information.
4400 */
4401struct saved_alias {
4402 struct kmem_cache *s;
4403 const char *name;
4404 struct saved_alias *next;
4405};
4406
5af328a5 4407static struct saved_alias *alias_list;
81819f0f
CL
4408
4409static int sysfs_slab_alias(struct kmem_cache *s, const char *name)
4410{
4411 struct saved_alias *al;
4412
4413 if (slab_state == SYSFS) {
4414 /*
4415 * If we have a leftover link then remove it.
4416 */
27c3a314
GKH
4417 sysfs_remove_link(&slab_kset->kobj, name);
4418 return sysfs_create_link(&slab_kset->kobj, &s->kobj, name);
81819f0f
CL
4419 }
4420
4421 al = kmalloc(sizeof(struct saved_alias), GFP_KERNEL);
4422 if (!al)
4423 return -ENOMEM;
4424
4425 al->s = s;
4426 al->name = name;
4427 al->next = alias_list;
4428 alias_list = al;
4429 return 0;
4430}
4431
4432static int __init slab_sysfs_init(void)
4433{
5b95a4ac 4434 struct kmem_cache *s;
81819f0f
CL
4435 int err;
4436
0ff21e46 4437 slab_kset = kset_create_and_add("slab", &slab_uevent_ops, kernel_kobj);
27c3a314 4438 if (!slab_kset) {
81819f0f
CL
4439 printk(KERN_ERR "Cannot register slab subsystem.\n");
4440 return -ENOSYS;
4441 }
4442
26a7bd03
CL
4443 slab_state = SYSFS;
4444
5b95a4ac 4445 list_for_each_entry(s, &slab_caches, list) {
26a7bd03 4446 err = sysfs_slab_add(s);
5d540fb7
CL
4447 if (err)
4448 printk(KERN_ERR "SLUB: Unable to add boot slab %s"
4449 " to sysfs\n", s->name);
26a7bd03 4450 }
81819f0f
CL
4451
4452 while (alias_list) {
4453 struct saved_alias *al = alias_list;
4454
4455 alias_list = alias_list->next;
4456 err = sysfs_slab_alias(al->s, al->name);
5d540fb7
CL
4457 if (err)
4458 printk(KERN_ERR "SLUB: Unable to add boot slab alias"
4459 " %s to sysfs\n", s->name);
81819f0f
CL
4460 kfree(al);
4461 }
4462
4463 resiliency_test();
4464 return 0;
4465}
4466
4467__initcall(slab_sysfs_init);
81819f0f 4468#endif
57ed3eda
PE
4469
4470/*
4471 * The /proc/slabinfo ABI
4472 */
158a9624 4473#ifdef CONFIG_SLABINFO
57ed3eda
PE
4474static void print_slabinfo_header(struct seq_file *m)
4475{
4476 seq_puts(m, "slabinfo - version: 2.1\n");
4477 seq_puts(m, "# name <active_objs> <num_objs> <objsize> "
4478 "<objperslab> <pagesperslab>");
4479 seq_puts(m, " : tunables <limit> <batchcount> <sharedfactor>");
4480 seq_puts(m, " : slabdata <active_slabs> <num_slabs> <sharedavail>");
4481 seq_putc(m, '\n');
4482}
4483
4484static void *s_start(struct seq_file *m, loff_t *pos)
4485{
4486 loff_t n = *pos;
4487
4488 down_read(&slub_lock);
4489 if (!n)
4490 print_slabinfo_header(m);
4491
4492 return seq_list_start(&slab_caches, *pos);
4493}
4494
4495static void *s_next(struct seq_file *m, void *p, loff_t *pos)
4496{
4497 return seq_list_next(p, &slab_caches, pos);
4498}
4499
4500static void s_stop(struct seq_file *m, void *p)
4501{
4502 up_read(&slub_lock);
4503}
4504
4505static int s_show(struct seq_file *m, void *p)
4506{
4507 unsigned long nr_partials = 0;
4508 unsigned long nr_slabs = 0;
4509 unsigned long nr_inuse = 0;
205ab99d
CL
4510 unsigned long nr_objs = 0;
4511 unsigned long nr_free = 0;
57ed3eda
PE
4512 struct kmem_cache *s;
4513 int node;
4514
4515 s = list_entry(p, struct kmem_cache, list);
4516
4517 for_each_online_node(node) {
4518 struct kmem_cache_node *n = get_node(s, node);
4519
4520 if (!n)
4521 continue;
4522
4523 nr_partials += n->nr_partial;
4524 nr_slabs += atomic_long_read(&n->nr_slabs);
205ab99d
CL
4525 nr_objs += atomic_long_read(&n->total_objects);
4526 nr_free += count_partial(n, count_free);
57ed3eda
PE
4527 }
4528
205ab99d 4529 nr_inuse = nr_objs - nr_free;
57ed3eda
PE
4530
4531 seq_printf(m, "%-17s %6lu %6lu %6u %4u %4d", s->name, nr_inuse,
834f3d11
CL
4532 nr_objs, s->size, oo_objects(s->oo),
4533 (1 << oo_order(s->oo)));
57ed3eda
PE
4534 seq_printf(m, " : tunables %4u %4u %4u", 0, 0, 0);
4535 seq_printf(m, " : slabdata %6lu %6lu %6lu", nr_slabs, nr_slabs,
4536 0UL);
4537 seq_putc(m, '\n');
4538 return 0;
4539}
4540
7b3c3a50 4541static const struct seq_operations slabinfo_op = {
57ed3eda
PE
4542 .start = s_start,
4543 .next = s_next,
4544 .stop = s_stop,
4545 .show = s_show,
4546};
4547
7b3c3a50
AD
4548static int slabinfo_open(struct inode *inode, struct file *file)
4549{
4550 return seq_open(file, &slabinfo_op);
4551}
4552
4553static const struct file_operations proc_slabinfo_operations = {
4554 .open = slabinfo_open,
4555 .read = seq_read,
4556 .llseek = seq_lseek,
4557 .release = seq_release,
4558};
4559
4560static int __init slab_proc_init(void)
4561{
4562 proc_create("slabinfo",S_IWUSR|S_IRUGO,NULL,&proc_slabinfo_operations);
4563 return 0;
4564}
4565module_init(slab_proc_init);
158a9624 4566#endif /* CONFIG_SLABINFO */