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