blob: 6572cef0c43c7660f1e26b5b448a548fd59ee615 [file] [log] [blame]
Christoph Lameter81819f02007-05-06 14:49:36 -07001/*
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>
Yasunori Gotob9049e22007-10-21 16:41:37 -070023#include <linux/memory.h>
Christoph Lameter81819f02007-05-06 14:49:36 -070024
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 *
Christoph Lameter672bba32007-05-09 02:32:39 -070070 * 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
Christoph Lameter81819f02007-05-06 14:49:36 -070072 * freed then the slab will show up again on the partial lists.
Christoph Lameter672bba32007-05-09 02:32:39 -070073 * We track full slabs for debugging purposes though because otherwise we
74 * cannot scan all objects.
Christoph Lameter81819f02007-05-06 14:49:36 -070075 *
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 *
Christoph Lameter4b6f0752007-05-16 22:10:53 -070082 * 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
Christoph Lameterdfb4f092007-10-16 01:26:05 -070094 * freelist that allows lockless access to
Christoph Lameter894b8782007-05-10 03:15:16 -070095 * free objects in addition to the regular freelist
96 * that requires the slab lock.
Christoph Lameter81819f02007-05-06 14:49:36 -070097 *
98 * PageError Slab requires special handling due to debug
99 * options set. This moves slab handling out of
Christoph Lameter894b8782007-05-10 03:15:16 -0700100 * the fast path and disables lockless freelists.
Christoph Lameter81819f02007-05-06 14:49:36 -0700101 */
102
Christoph Lameter5577bd82007-05-16 22:10:56 -0700103#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
Christoph Lameter4b6f0752007-05-16 22:10:53 -0700111static inline int SlabFrozen(struct page *page)
112{
Christoph Lameter5577bd82007-05-16 22:10:56 -0700113 return page->flags & FROZEN;
Christoph Lameter4b6f0752007-05-16 22:10:53 -0700114}
115
116static inline void SetSlabFrozen(struct page *page)
117{
Christoph Lameter5577bd82007-05-16 22:10:56 -0700118 page->flags |= FROZEN;
Christoph Lameter4b6f0752007-05-16 22:10:53 -0700119}
120
121static inline void ClearSlabFrozen(struct page *page)
122{
Christoph Lameter5577bd82007-05-16 22:10:56 -0700123 page->flags &= ~FROZEN;
Christoph Lameter4b6f0752007-05-16 22:10:53 -0700124}
125
Christoph Lameter35e5d7e2007-05-09 02:32:42 -0700126static inline int SlabDebug(struct page *page)
127{
Christoph Lameter5577bd82007-05-16 22:10:56 -0700128 return page->flags & SLABDEBUG;
Christoph Lameter35e5d7e2007-05-09 02:32:42 -0700129}
130
131static inline void SetSlabDebug(struct page *page)
132{
Christoph Lameter5577bd82007-05-16 22:10:56 -0700133 page->flags |= SLABDEBUG;
Christoph Lameter35e5d7e2007-05-09 02:32:42 -0700134}
135
136static inline void ClearSlabDebug(struct page *page)
137{
Christoph Lameter5577bd82007-05-16 22:10:56 -0700138 page->flags &= ~SLABDEBUG;
Christoph Lameter35e5d7e2007-05-09 02:32:42 -0700139}
140
Christoph Lameter81819f02007-05-06 14:49:36 -0700141/*
142 * Issues still to be resolved:
143 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700144 * - Support PAGE_ALLOC_DEBUG. Should be easy to do.
145 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700146 * - 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
Christoph Lameter81819f02007-05-06 14:49:36 -0700152/*
Christoph Lameter2086d262007-05-06 14:49:46 -0700153 * 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 */
Christoph Lameter76be8952007-12-21 14:37:37 -0800156#define MIN_PARTIAL 5
Christoph Lametere95eed52007-05-06 14:49:44 -0700157
Christoph Lameter2086d262007-05-06 14:49:46 -0700158/*
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
Christoph Lameter81819f02007-05-06 14:49:36 -0700165#define DEBUG_DEFAULT_FLAGS (SLAB_DEBUG_FREE | SLAB_RED_ZONE | \
166 SLAB_POISON | SLAB_STORE_USER)
Christoph Lameter672bba32007-05-09 02:32:39 -0700167
Christoph Lameter81819f02007-05-06 14:49:36 -0700168/*
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
Christoph Lameter47bfdc02007-05-06 14:49:37 -0700178#define ARCH_KMALLOC_MINALIGN __alignof__(unsigned long long)
Christoph Lameter81819f02007-05-06 14:49:36 -0700179#endif
180
181#ifndef ARCH_SLAB_MINALIGN
Christoph Lameter47bfdc02007-05-06 14:49:37 -0700182#define ARCH_SLAB_MINALIGN __alignof__(unsigned long long)
Christoph Lameter81819f02007-05-06 14:49:36 -0700183#endif
184
185/* Internal SLUB flags */
Christoph Lameter1ceef402007-08-07 15:11:48 -0700186#define __OBJECT_POISON 0x80000000 /* Poison object */
187#define __SYSFS_ADD_DEFERRED 0x40000000 /* Not yet visible via sysfs */
Christoph Lameter81819f02007-05-06 14:49:36 -0700188
Christoph Lameter65c02d42007-05-09 02:32:35 -0700189/* Not all arches define cache_line_size */
190#ifndef cache_line_size
191#define cache_line_size() L1_CACHE_BYTES
192#endif
193
Christoph Lameter81819f02007-05-06 14:49:36 -0700194static int kmem_size = sizeof(struct kmem_cache);
195
196#ifdef CONFIG_SMP
197static struct notifier_block slab_notifier;
198#endif
199
200static enum {
201 DOWN, /* No slab functionality available */
202 PARTIAL, /* kmem_cache_open() works but kmalloc does not */
Christoph Lameter672bba32007-05-09 02:32:39 -0700203 UP, /* Everything works but does not show up in sysfs */
Christoph Lameter81819f02007-05-06 14:49:36 -0700204 SYSFS /* Sysfs up */
205} slab_state = DOWN;
206
207/* A list of all slab caches on the system */
208static DECLARE_RWSEM(slub_lock);
Adrian Bunk5af328a2007-07-17 04:03:27 -0700209static LIST_HEAD(slab_caches);
Christoph Lameter81819f02007-05-06 14:49:36 -0700210
Christoph Lameter02cbc872007-05-09 02:32:43 -0700211/*
212 * Tracking user of a slab.
213 */
214struct 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
221enum track_item { TRACK_ALLOC, TRACK_FREE };
222
Christoph Lameter41ecc552007-05-09 02:32:44 -0700223#if defined(CONFIG_SYSFS) && defined(CONFIG_SLUB_DEBUG)
Christoph Lameter81819f02007-05-06 14:49:36 -0700224static int sysfs_slab_add(struct kmem_cache *);
225static int sysfs_slab_alias(struct kmem_cache *, const char *);
226static void sysfs_slab_remove(struct kmem_cache *);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -0800227
Christoph Lameter81819f02007-05-06 14:49:36 -0700228#else
Christoph Lameter0c710012007-07-17 04:03:24 -0700229static inline int sysfs_slab_add(struct kmem_cache *s) { return 0; }
230static inline int sysfs_slab_alias(struct kmem_cache *s, const char *p)
231 { return 0; }
Christoph Lameter151c6022008-01-07 22:29:05 -0800232static inline void sysfs_slab_remove(struct kmem_cache *s)
233{
234 kfree(s);
235}
Christoph Lameter8ff12cf2008-02-07 17:47:41 -0800236
Christoph Lameter81819f02007-05-06 14:49:36 -0700237#endif
238
Christoph Lameter8ff12cf2008-02-07 17:47:41 -0800239static 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
Christoph Lameter81819f02007-05-06 14:49:36 -0700246/********************************************************************
247 * Core slab cache functions
248 *******************************************************************/
249
250int slab_is_available(void)
251{
252 return slab_state >= UP;
253}
254
255static 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
Christoph Lameterdfb4f092007-10-16 01:26:05 -0700264static inline struct kmem_cache_cpu *get_cpu_slab(struct kmem_cache *s, int cpu)
265{
Christoph Lameter4c93c3552007-10-16 01:26:08 -0700266#ifdef CONFIG_SMP
267 return s->cpu_slab[cpu];
268#else
269 return &s->cpu_slab;
270#endif
Christoph Lameterdfb4f092007-10-16 01:26:05 -0700271}
272
Christoph Lameter6446faa2008-02-15 23:45:26 -0800273/* Verify that a pointer has an address that is valid within a slab page */
Christoph Lameter02cbc872007-05-09 02:32:43 -0700274static inline int check_valid_pointer(struct kmem_cache *s,
275 struct page *page, const void *object)
276{
277 void *base;
278
Christoph Lametera973e9d2008-03-01 13:40:44 -0800279 if (!object)
Christoph Lameter02cbc872007-05-09 02:32:43 -0700280 return 1;
281
Christoph Lametera973e9d2008-03-01 13:40:44 -0800282 base = page_address(page);
Christoph Lameter39b26462008-04-14 19:11:30 +0300283 if (object < base || object >= base + page->objects * s->size ||
Christoph Lameter02cbc872007-05-09 02:32:43 -0700284 (object - base) % s->size) {
285 return 0;
286 }
287
288 return 1;
289}
290
Christoph Lameter81819f02007-05-06 14:49:36 -0700291/*
Christoph Lameter7656c722007-05-09 02:32:40 -0700292 * 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 */
298static inline void *get_freepointer(struct kmem_cache *s, void *object)
299{
300 return *(void **)(object + s->offset);
301}
302
303static 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 */
Christoph Lameter224a88b2008-04-14 19:11:31 +0300309#define for_each_object(__p, __s, __addr, __objects) \
310 for (__p = (__addr); __p < (__addr) + (__objects) * (__s)->size;\
Christoph Lameter7656c722007-05-09 02:32:40 -0700311 __p += (__s)->size)
312
313/* Scan freelist */
314#define for_each_free_object(__p, __s, __free) \
Christoph Lametera973e9d2008-03-01 13:40:44 -0800315 for (__p = (__free); __p; __p = get_freepointer((__s), __p))
Christoph Lameter7656c722007-05-09 02:32:40 -0700316
317/* Determine object index from a given position */
318static inline int slab_index(void *p, struct kmem_cache *s, void *addr)
319{
320 return (p - addr) / s->size;
321}
322
Christoph Lameter834f3d12008-04-14 19:11:31 +0300323static 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
333static inline int oo_order(struct kmem_cache_order_objects x)
334{
335 return x.x >> 16;
336}
337
338static inline int oo_objects(struct kmem_cache_order_objects x)
339{
340 return x.x & ((1 << 16) - 1);
341}
342
Christoph Lameter41ecc552007-05-09 02:32:44 -0700343#ifdef CONFIG_SLUB_DEBUG
344/*
345 * Debug settings:
346 */
Christoph Lameterf0630ff2007-07-15 23:38:14 -0700347#ifdef CONFIG_SLUB_DEBUG_ON
348static int slub_debug = DEBUG_DEFAULT_FLAGS;
349#else
Christoph Lameter41ecc552007-05-09 02:32:44 -0700350static int slub_debug;
Christoph Lameterf0630ff2007-07-15 23:38:14 -0700351#endif
Christoph Lameter41ecc552007-05-09 02:32:44 -0700352
353static char *slub_debug_slabs;
354
Christoph Lameter7656c722007-05-09 02:32:40 -0700355/*
Christoph Lameter81819f02007-05-06 14:49:36 -0700356 * Object debugging
357 */
358static 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) {
Christoph Lameter24922682007-07-17 04:03:18 -0700368 printk(KERN_ERR "%8s 0x%p: ", text, addr + i);
Christoph Lameter81819f02007-05-06 14:49:36 -0700369 newline = 0;
370 }
Pekka Enberg06428782008-01-07 23:20:27 -0800371 printk(KERN_CONT " %02x", addr[i]);
Christoph Lameter81819f02007-05-06 14:49:36 -0700372 offset = i % 16;
373 ascii[offset] = isgraph(addr[i]) ? addr[i] : '.';
374 if (offset == 15) {
Pekka Enberg06428782008-01-07 23:20:27 -0800375 printk(KERN_CONT " %s\n", ascii);
Christoph Lameter81819f02007-05-06 14:49:36 -0700376 newline = 1;
377 }
378 }
379 if (!newline) {
380 i %= 16;
381 while (i < 16) {
Pekka Enberg06428782008-01-07 23:20:27 -0800382 printk(KERN_CONT " ");
Christoph Lameter81819f02007-05-06 14:49:36 -0700383 ascii[i] = ' ';
384 i++;
385 }
Pekka Enberg06428782008-01-07 23:20:27 -0800386 printk(KERN_CONT " %s\n", ascii);
Christoph Lameter81819f02007-05-06 14:49:36 -0700387 }
388}
389
Christoph Lameter81819f02007-05-06 14:49:36 -0700390static 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
403static 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
Christoph Lameter81819f02007-05-06 14:49:36 -0700423static void init_tracking(struct kmem_cache *s, void *object)
424{
Christoph Lameter24922682007-07-17 04:03:18 -0700425 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);
Christoph Lameter81819f02007-05-06 14:49:36 -0700430}
431
432static void print_track(const char *s, struct track *t)
433{
434 if (!t->addr)
435 return;
436
Christoph Lameter24922682007-07-17 04:03:18 -0700437 printk(KERN_ERR "INFO: %s in ", s);
Christoph Lameter81819f02007-05-06 14:49:36 -0700438 __print_symbol("%s", (unsigned long)t->addr);
Christoph Lameter24922682007-07-17 04:03:18 -0700439 printk(" age=%lu cpu=%u pid=%d\n", jiffies - t->when, t->cpu, t->pid);
Christoph Lameter81819f02007-05-06 14:49:36 -0700440}
441
Christoph Lameter24922682007-07-17 04:03:18 -0700442static 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
451static void print_page_info(struct page *page)
452{
Christoph Lameter39b26462008-04-14 19:11:30 +0300453 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);
Christoph Lameter24922682007-07-17 04:03:18 -0700455
456}
457
458static 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
473static 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
484static void print_trailer(struct kmem_cache *s, struct page *page, u8 *p)
Christoph Lameter81819f02007-05-06 14:49:36 -0700485{
486 unsigned int off; /* Offset of last byte */
Christoph Lametera973e9d2008-03-01 13:40:44 -0800487 u8 *addr = page_address(page);
Christoph Lameter24922682007-07-17 04:03:18 -0700488
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));
Christoph Lameter81819f02007-05-06 14:49:36 -0700500
501 if (s->flags & SLAB_RED_ZONE)
502 print_section("Redzone", p + s->objsize,
503 s->inuse - s->objsize);
504
Christoph Lameter81819f02007-05-06 14:49:36 -0700505 if (s->offset)
506 off = s->offset + sizeof(void *);
507 else
508 off = s->inuse;
509
Christoph Lameter24922682007-07-17 04:03:18 -0700510 if (s->flags & SLAB_STORE_USER)
Christoph Lameter81819f02007-05-06 14:49:36 -0700511 off += 2 * sizeof(struct track);
Christoph Lameter81819f02007-05-06 14:49:36 -0700512
513 if (off != s->size)
514 /* Beginning of the filler is the free pointer */
Christoph Lameter24922682007-07-17 04:03:18 -0700515 print_section("Padding", p + off, s->size - off);
516
517 dump_stack();
Christoph Lameter81819f02007-05-06 14:49:36 -0700518}
519
520static void object_err(struct kmem_cache *s, struct page *page,
521 u8 *object, char *reason)
522{
Christoph Lameter3dc50632008-04-23 12:28:01 -0700523 slab_bug(s, "%s", reason);
Christoph Lameter24922682007-07-17 04:03:18 -0700524 print_trailer(s, page, object);
Christoph Lameter81819f02007-05-06 14:49:36 -0700525}
526
Christoph Lameter24922682007-07-17 04:03:18 -0700527static void slab_err(struct kmem_cache *s, struct page *page, char *fmt, ...)
Christoph Lameter81819f02007-05-06 14:49:36 -0700528{
529 va_list args;
530 char buf[100];
531
Christoph Lameter24922682007-07-17 04:03:18 -0700532 va_start(args, fmt);
533 vsnprintf(buf, sizeof(buf), fmt, args);
Christoph Lameter81819f02007-05-06 14:49:36 -0700534 va_end(args);
Christoph Lameter3dc50632008-04-23 12:28:01 -0700535 slab_bug(s, "%s", buf);
Christoph Lameter24922682007-07-17 04:03:18 -0700536 print_page_info(page);
Christoph Lameter81819f02007-05-06 14:49:36 -0700537 dump_stack();
538}
539
540static 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);
Pekka Enberg06428782008-01-07 23:20:27 -0800546 p[s->objsize - 1] = POISON_END;
Christoph Lameter81819f02007-05-06 14:49:36 -0700547 }
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
Christoph Lameter24922682007-07-17 04:03:18 -0700555static u8 *check_bytes(u8 *start, unsigned int value, unsigned int bytes)
Christoph Lameter81819f02007-05-06 14:49:36 -0700556{
557 while (bytes) {
558 if (*start != (u8)value)
Christoph Lameter24922682007-07-17 04:03:18 -0700559 return start;
Christoph Lameter81819f02007-05-06 14:49:36 -0700560 start++;
561 bytes--;
562 }
Christoph Lameter24922682007-07-17 04:03:18 -0700563 return NULL;
564}
565
566static 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
573static int check_bytes_and_report(struct kmem_cache *s, struct page *page,
574 u8 *object, char *what,
Pekka Enberg06428782008-01-07 23:20:27 -0800575 u8 *start, unsigned int value, unsigned int bytes)
Christoph Lameter24922682007-07-17 04:03:18 -0700576{
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;
Christoph Lameter81819f02007-05-06 14:49:36 -0700595}
596
Christoph Lameter81819f02007-05-06 14:49:36 -0700597/*
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.
Christoph Lameter672bba32007-05-09 02:32:39 -0700604 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700605 * 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.
Christoph Lameter672bba32007-05-09 02:32:39 -0700610 * Padding is extended by another word if Redzoning is enabled and
611 * objsize == inuse.
612 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700613 * We fill with 0xbb (RED_INACTIVE) for inactive objects and with
614 * 0xcc (RED_ACTIVE) for objects in use.
615 *
616 * object + s->inuse
Christoph Lameter672bba32007-05-09 02:32:39 -0700617 * Meta data starts here.
618 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700619 * A. Free pointer (if we cannot overwrite object on free)
620 * B. Tracking data for SLAB_STORE_USER
Christoph Lameter672bba32007-05-09 02:32:39 -0700621 * C. Padding to reach required alignment boundary or at mininum
Christoph Lameter6446faa2008-02-15 23:45:26 -0800622 * one word if debugging is on to be able to detect writes
Christoph Lameter672bba32007-05-09 02:32:39 -0700623 * before the word boundary.
624 *
625 * Padding is done using 0x5a (POISON_INUSE)
Christoph Lameter81819f02007-05-06 14:49:36 -0700626 *
627 * object + s->size
Christoph Lameter672bba32007-05-09 02:32:39 -0700628 * Nothing is used beyond s->size.
Christoph Lameter81819f02007-05-06 14:49:36 -0700629 *
Christoph Lameter672bba32007-05-09 02:32:39 -0700630 * If slabcaches are merged then the objsize and inuse boundaries are mostly
631 * ignored. And therefore no slab options that rely on these boundaries
Christoph Lameter81819f02007-05-06 14:49:36 -0700632 * may be used with merged slabcaches.
633 */
634
Christoph Lameter81819f02007-05-06 14:49:36 -0700635static 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
Christoph Lameter24922682007-07-17 04:03:18 -0700650 return check_bytes_and_report(s, page, p, "Object padding",
651 p + off, POISON_INUSE, s->size - off);
Christoph Lameter81819f02007-05-06 14:49:36 -0700652}
653
Christoph Lameter39b26462008-04-14 19:11:30 +0300654/* Check the pad bytes at the end of a slab page */
Christoph Lameter81819f02007-05-06 14:49:36 -0700655static int slab_pad_check(struct kmem_cache *s, struct page *page)
656{
Christoph Lameter24922682007-07-17 04:03:18 -0700657 u8 *start;
658 u8 *fault;
659 u8 *end;
660 int length;
661 int remainder;
Christoph Lameter81819f02007-05-06 14:49:36 -0700662
663 if (!(s->flags & SLAB_POISON))
664 return 1;
665
Christoph Lametera973e9d2008-03-01 13:40:44 -0800666 start = page_address(page);
Christoph Lameter834f3d12008-04-14 19:11:31 +0300667 length = (PAGE_SIZE << compound_order(page));
Christoph Lameter39b26462008-04-14 19:11:30 +0300668 end = start + length;
669 remainder = length % s->size;
Christoph Lameter81819f02007-05-06 14:49:36 -0700670 if (!remainder)
671 return 1;
672
Christoph Lameter39b26462008-04-14 19:11:30 +0300673 fault = check_bytes(end - remainder, POISON_INUSE, remainder);
Christoph Lameter24922682007-07-17 04:03:18 -0700674 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);
Christoph Lameter39b26462008-04-14 19:11:30 +0300680 print_section("Padding", end - remainder, remainder);
Christoph Lameter24922682007-07-17 04:03:18 -0700681
682 restore_bytes(s, "slab padding", POISON_INUSE, start, end);
683 return 0;
Christoph Lameter81819f02007-05-06 14:49:36 -0700684}
685
686static 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
Christoph Lameter24922682007-07-17 04:03:18 -0700696 if (!check_bytes_and_report(s, page, object, "Redzone",
697 endobject, red, s->inuse - s->objsize))
Christoph Lameter81819f02007-05-06 14:49:36 -0700698 return 0;
Christoph Lameter81819f02007-05-06 14:49:36 -0700699 } else {
Ingo Molnar3adbefe2008-02-05 17:57:39 -0800700 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 }
Christoph Lameter81819f02007-05-06 14:49:36 -0700704 }
705
706 if (s->flags & SLAB_POISON) {
707 if (!active && (s->flags & __OBJECT_POISON) &&
Christoph Lameter24922682007-07-17 04:03:18 -0700708 (!check_bytes_and_report(s, page, p, "Poison", p,
709 POISON_FREE, s->objsize - 1) ||
710 !check_bytes_and_report(s, page, p, "Poison",
Pekka Enberg06428782008-01-07 23:20:27 -0800711 p + s->objsize - 1, POISON_END, 1)))
Christoph Lameter81819f02007-05-06 14:49:36 -0700712 return 0;
Christoph Lameter81819f02007-05-06 14:49:36 -0700713 /*
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
Christoph Lameter672bba32007-05-09 02:32:39 -0700732 * another error because the object count is now wrong.
Christoph Lameter81819f02007-05-06 14:49:36 -0700733 */
Christoph Lametera973e9d2008-03-01 13:40:44 -0800734 set_freepointer(s, p, NULL);
Christoph Lameter81819f02007-05-06 14:49:36 -0700735 return 0;
736 }
737 return 1;
738}
739
740static int check_slab(struct kmem_cache *s, struct page *page)
741{
Christoph Lameter39b26462008-04-14 19:11:30 +0300742 int maxobj;
743
Christoph Lameter81819f02007-05-06 14:49:36 -0700744 VM_BUG_ON(!irqs_disabled());
745
746 if (!PageSlab(page)) {
Christoph Lameter24922682007-07-17 04:03:18 -0700747 slab_err(s, page, "Not a valid slab page");
Christoph Lameter81819f02007-05-06 14:49:36 -0700748 return 0;
749 }
Christoph Lameter39b26462008-04-14 19:11:30 +0300750
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) {
Christoph Lameter24922682007-07-17 04:03:18 -0700758 slab_err(s, page, "inuse %u > max %u",
Christoph Lameter39b26462008-04-14 19:11:30 +0300759 s->name, page->inuse, page->objects);
Christoph Lameter81819f02007-05-06 14:49:36 -0700760 return 0;
761 }
762 /* Slab_pad_check fixes things up after itself */
763 slab_pad_check(s, page);
764 return 1;
765}
766
767/*
Christoph Lameter672bba32007-05-09 02:32:39 -0700768 * 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.
Christoph Lameter81819f02007-05-06 14:49:36 -0700770 */
771static 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;
Christoph Lameter224a88b2008-04-14 19:11:31 +0300776 unsigned long max_objects;
Christoph Lameter81819f02007-05-06 14:49:36 -0700777
Christoph Lameter39b26462008-04-14 19:11:30 +0300778 while (fp && nr <= page->objects) {
Christoph Lameter81819f02007-05-06 14:49:36 -0700779 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");
Christoph Lametera973e9d2008-03-01 13:40:44 -0800785 set_freepointer(s, object, NULL);
Christoph Lameter81819f02007-05-06 14:49:36 -0700786 break;
787 } else {
Christoph Lameter24922682007-07-17 04:03:18 -0700788 slab_err(s, page, "Freepointer corrupt");
Christoph Lametera973e9d2008-03-01 13:40:44 -0800789 page->freelist = NULL;
Christoph Lameter39b26462008-04-14 19:11:30 +0300790 page->inuse = page->objects;
Christoph Lameter24922682007-07-17 04:03:18 -0700791 slab_fix(s, "Freelist cleared");
Christoph Lameter81819f02007-05-06 14:49:36 -0700792 return 0;
793 }
794 break;
795 }
796 object = fp;
797 fp = get_freepointer(s, object);
798 nr++;
799 }
800
Christoph Lameter224a88b2008-04-14 19:11:31 +0300801 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 }
Christoph Lameter39b26462008-04-14 19:11:30 +0300811 if (page->inuse != page->objects - nr) {
Christoph Lameter70d71222007-05-06 14:49:47 -0700812 slab_err(s, page, "Wrong object count. Counter is %d but "
Christoph Lameter39b26462008-04-14 19:11:30 +0300813 "counted were %d", page->inuse, page->objects - nr);
814 page->inuse = page->objects - nr;
Christoph Lameter24922682007-07-17 04:03:18 -0700815 slab_fix(s, "Object count adjusted.");
Christoph Lameter81819f02007-05-06 14:49:36 -0700816 }
817 return search == NULL;
818}
819
Christoph Lameter3ec09742007-05-16 22:11:00 -0700820static 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
Christoph Lameter643b1132007-05-06 14:49:42 -0700836/*
Christoph Lameter672bba32007-05-09 02:32:39 -0700837 * Tracking of fully allocated slabs for debugging purposes.
Christoph Lameter643b1132007-05-06 14:49:42 -0700838 */
Christoph Lametere95eed52007-05-06 14:49:44 -0700839static void add_full(struct kmem_cache_node *n, struct page *page)
Christoph Lameter643b1132007-05-06 14:49:42 -0700840{
Christoph Lameter643b1132007-05-06 14:49:42 -0700841 spin_lock(&n->list_lock);
842 list_add(&page->lru, &n->full);
843 spin_unlock(&n->list_lock);
844}
845
846static 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
Christoph Lameter0f389ec2008-04-14 18:53:02 +0300860/* Tracking of the number of slabs for debugging purposes */
861static 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
Christoph Lameter205ab992008-04-14 19:11:40 +0300868static inline void inc_slabs_node(struct kmem_cache *s, int node, int objects)
Christoph Lameter0f389ec2008-04-14 18:53:02 +0300869{
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 */
Christoph Lameter205ab992008-04-14 19:11:40 +0300878 if (!NUMA_BUILD || n) {
Christoph Lameter0f389ec2008-04-14 18:53:02 +0300879 atomic_long_inc(&n->nr_slabs);
Christoph Lameter205ab992008-04-14 19:11:40 +0300880 atomic_long_add(objects, &n->total_objects);
881 }
Christoph Lameter0f389ec2008-04-14 18:53:02 +0300882}
Christoph Lameter205ab992008-04-14 19:11:40 +0300883static inline void dec_slabs_node(struct kmem_cache *s, int node, int objects)
Christoph Lameter0f389ec2008-04-14 18:53:02 +0300884{
885 struct kmem_cache_node *n = get_node(s, node);
886
887 atomic_long_dec(&n->nr_slabs);
Christoph Lameter205ab992008-04-14 19:11:40 +0300888 atomic_long_sub(objects, &n->total_objects);
Christoph Lameter0f389ec2008-04-14 18:53:02 +0300889}
890
891/* Object debug checks for alloc/free paths */
Christoph Lameter3ec09742007-05-16 22:11:00 -0700892static 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
902static int alloc_debug_processing(struct kmem_cache *s, struct page *page,
903 void *object, void *addr)
Christoph Lameter81819f02007-05-06 14:49:36 -0700904{
905 if (!check_slab(s, page))
906 goto bad;
907
Christoph Lameterd692ef62008-02-15 23:45:24 -0800908 if (!on_freelist(s, page, object)) {
Christoph Lameter24922682007-07-17 04:03:18 -0700909 object_err(s, page, object, "Object already allocated");
Christoph Lameter70d71222007-05-06 14:49:47 -0700910 goto bad;
Christoph Lameter81819f02007-05-06 14:49:36 -0700911 }
912
913 if (!check_valid_pointer(s, page, object)) {
914 object_err(s, page, object, "Freelist Pointer check fails");
Christoph Lameter70d71222007-05-06 14:49:47 -0700915 goto bad;
Christoph Lameter81819f02007-05-06 14:49:36 -0700916 }
917
Christoph Lameterd692ef62008-02-15 23:45:24 -0800918 if (!check_object(s, page, object, 0))
Christoph Lameter81819f02007-05-06 14:49:36 -0700919 goto bad;
Christoph Lameter81819f02007-05-06 14:49:36 -0700920
Christoph Lameter3ec09742007-05-16 22:11:00 -0700921 /* 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);
Christoph Lameter81819f02007-05-06 14:49:36 -0700926 return 1;
Christoph Lameter3ec09742007-05-16 22:11:00 -0700927
Christoph Lameter81819f02007-05-06 14:49:36 -0700928bad:
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
Christoph Lameter672bba32007-05-09 02:32:39 -0700933 * as used avoids touching the remaining objects.
Christoph Lameter81819f02007-05-06 14:49:36 -0700934 */
Christoph Lameter24922682007-07-17 04:03:18 -0700935 slab_fix(s, "Marking all objects used");
Christoph Lameter39b26462008-04-14 19:11:30 +0300936 page->inuse = page->objects;
Christoph Lametera973e9d2008-03-01 13:40:44 -0800937 page->freelist = NULL;
Christoph Lameter81819f02007-05-06 14:49:36 -0700938 }
939 return 0;
940}
941
Christoph Lameter3ec09742007-05-16 22:11:00 -0700942static int free_debug_processing(struct kmem_cache *s, struct page *page,
943 void *object, void *addr)
Christoph Lameter81819f02007-05-06 14:49:36 -0700944{
945 if (!check_slab(s, page))
946 goto fail;
947
948 if (!check_valid_pointer(s, page, object)) {
Christoph Lameter70d71222007-05-06 14:49:47 -0700949 slab_err(s, page, "Invalid object pointer 0x%p", object);
Christoph Lameter81819f02007-05-06 14:49:36 -0700950 goto fail;
951 }
952
953 if (on_freelist(s, page, object)) {
Christoph Lameter24922682007-07-17 04:03:18 -0700954 object_err(s, page, object, "Object already free");
Christoph Lameter81819f02007-05-06 14:49:36 -0700955 goto fail;
956 }
957
958 if (!check_object(s, page, object, 1))
959 return 0;
960
961 if (unlikely(s != page->slab)) {
Ingo Molnar3adbefe2008-02-05 17:57:39 -0800962 if (!PageSlab(page)) {
Christoph Lameter70d71222007-05-06 14:49:47 -0700963 slab_err(s, page, "Attempt to free object(0x%p) "
964 "outside of slab", object);
Ingo Molnar3adbefe2008-02-05 17:57:39 -0800965 } else if (!page->slab) {
Christoph Lameter81819f02007-05-06 14:49:36 -0700966 printk(KERN_ERR
Christoph Lameter70d71222007-05-06 14:49:47 -0700967 "SLUB <none>: no slab for object 0x%p.\n",
Christoph Lameter81819f02007-05-06 14:49:36 -0700968 object);
Christoph Lameter70d71222007-05-06 14:49:47 -0700969 dump_stack();
Pekka Enberg06428782008-01-07 23:20:27 -0800970 } else
Christoph Lameter24922682007-07-17 04:03:18 -0700971 object_err(s, page, object,
972 "page slab pointer corrupt.");
Christoph Lameter81819f02007-05-06 14:49:36 -0700973 goto fail;
974 }
Christoph Lameter3ec09742007-05-16 22:11:00 -0700975
976 /* Special debug activities for freeing objects */
Christoph Lametera973e9d2008-03-01 13:40:44 -0800977 if (!SlabFrozen(page) && !page->freelist)
Christoph Lameter3ec09742007-05-16 22:11:00 -0700978 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);
Christoph Lameter81819f02007-05-06 14:49:36 -0700983 return 1;
Christoph Lameter3ec09742007-05-16 22:11:00 -0700984
Christoph Lameter81819f02007-05-06 14:49:36 -0700985fail:
Christoph Lameter24922682007-07-17 04:03:18 -0700986 slab_fix(s, "Object at 0x%p not freed", object);
Christoph Lameter81819f02007-05-06 14:49:36 -0700987 return 0;
988}
989
Christoph Lameter41ecc552007-05-09 02:32:44 -0700990static int __init setup_slub_debug(char *str)
991{
Christoph Lameterf0630ff2007-07-15 23:38:14 -0700992 slub_debug = DEBUG_DEFAULT_FLAGS;
993 if (*str++ != '=' || !*str)
994 /*
995 * No options specified. Switch on full debugging.
996 */
997 goto out;
Christoph Lameter41ecc552007-05-09 02:32:44 -0700998
999 if (*str == ',')
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001000 /*
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 */
Pekka Enberg06428782008-01-07 23:20:27 -08001016 for (; *str && *str != ','; str++) {
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001017 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' "
Pekka Enberg06428782008-01-07 23:20:27 -08001035 "unknown. skipped\n", *str);
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001036 }
1037 }
1038
1039check_slabs:
1040 if (*str == ',')
Christoph Lameter41ecc552007-05-09 02:32:44 -07001041 slub_debug_slabs = str + 1;
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001042out:
Christoph Lameter41ecc552007-05-09 02:32:44 -07001043 return 1;
1044}
1045
1046__setup("slub_debug", setup_slub_debug);
1047
Christoph Lameterba0268a2007-09-11 15:24:11 -07001048static unsigned long kmem_cache_flags(unsigned long objsize,
1049 unsigned long flags, const char *name,
Christoph Lameter4ba9b9d2007-10-16 23:25:51 -07001050 void (*ctor)(struct kmem_cache *, void *))
Christoph Lameter41ecc552007-05-09 02:32:44 -07001051{
1052 /*
Christoph Lametere1533622008-02-15 23:45:24 -08001053 * Enable debugging if selected on the kernel commandline.
Christoph Lameter41ecc552007-05-09 02:32:44 -07001054 */
Christoph Lametere1533622008-02-15 23:45:24 -08001055 if (slub_debug && (!slub_debug_slabs ||
1056 strncmp(slub_debug_slabs, name, strlen(slub_debug_slabs)) == 0))
1057 flags |= slub_debug;
Christoph Lameterba0268a2007-09-11 15:24:11 -07001058
1059 return flags;
Christoph Lameter41ecc552007-05-09 02:32:44 -07001060}
1061#else
Christoph Lameter3ec09742007-05-16 22:11:00 -07001062static inline void setup_object_debug(struct kmem_cache *s,
1063 struct page *page, void *object) {}
Christoph Lameter41ecc552007-05-09 02:32:44 -07001064
Christoph Lameter3ec09742007-05-16 22:11:00 -07001065static inline int alloc_debug_processing(struct kmem_cache *s,
1066 struct page *page, void *object, void *addr) { return 0; }
Christoph Lameter41ecc552007-05-09 02:32:44 -07001067
Christoph Lameter3ec09742007-05-16 22:11:00 -07001068static inline int free_debug_processing(struct kmem_cache *s,
1069 struct page *page, void *object, void *addr) { return 0; }
Christoph Lameter41ecc552007-05-09 02:32:44 -07001070
Christoph Lameter41ecc552007-05-09 02:32:44 -07001071static inline int slab_pad_check(struct kmem_cache *s, struct page *page)
1072 { return 1; }
1073static inline int check_object(struct kmem_cache *s, struct page *page,
1074 void *object, int active) { return 1; }
Christoph Lameter3ec09742007-05-16 22:11:00 -07001075static inline void add_full(struct kmem_cache_node *n, struct page *page) {}
Christoph Lameterba0268a2007-09-11 15:24:11 -07001076static inline unsigned long kmem_cache_flags(unsigned long objsize,
1077 unsigned long flags, const char *name,
Christoph Lameter4ba9b9d2007-10-16 23:25:51 -07001078 void (*ctor)(struct kmem_cache *, void *))
Christoph Lameterba0268a2007-09-11 15:24:11 -07001079{
1080 return flags;
1081}
Christoph Lameter41ecc552007-05-09 02:32:44 -07001082#define slub_debug 0
Christoph Lameter0f389ec2008-04-14 18:53:02 +03001083
1084static inline unsigned long slabs_node(struct kmem_cache *s, int node)
1085 { return 0; }
Christoph Lameter205ab992008-04-14 19:11:40 +03001086static inline void inc_slabs_node(struct kmem_cache *s, int node,
1087 int objects) {}
1088static inline void dec_slabs_node(struct kmem_cache *s, int node,
1089 int objects) {}
Christoph Lameter41ecc552007-05-09 02:32:44 -07001090#endif
Christoph Lameter205ab992008-04-14 19:11:40 +03001091
Christoph Lameter81819f02007-05-06 14:49:36 -07001092/*
1093 * Slab allocation and freeing
1094 */
Christoph Lameter65c33762008-04-14 19:11:40 +03001095static 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
Christoph Lameter81819f02007-05-06 14:49:36 -07001106static struct page *allocate_slab(struct kmem_cache *s, gfp_t flags, int node)
1107{
Pekka Enberg06428782008-01-07 23:20:27 -08001108 struct page *page;
Christoph Lameter834f3d12008-04-14 19:11:31 +03001109 struct kmem_cache_order_objects oo = s->oo;
Christoph Lameter81819f02007-05-06 14:49:36 -07001110
Christoph Lameterb7a49f02008-02-14 14:21:32 -08001111 flags |= s->allocflags;
Mel Gormane12ba742007-10-16 01:25:52 -07001112
Christoph Lameter65c33762008-04-14 19:11:40 +03001113 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;
Christoph Lameter81819f02007-05-06 14:49:36 -07001124
Christoph Lameter65c33762008-04-14 19:11:40 +03001125 stat(get_cpu_slab(s, raw_smp_processor_id()), ORDER_FALLBACK);
1126 }
Christoph Lameter834f3d12008-04-14 19:11:31 +03001127 page->objects = oo_objects(oo);
Christoph Lameter81819f02007-05-06 14:49:36 -07001128 mod_zone_page_state(page_zone(page),
1129 (s->flags & SLAB_RECLAIM_ACCOUNT) ?
1130 NR_SLAB_RECLAIMABLE : NR_SLAB_UNRECLAIMABLE,
Christoph Lameter65c33762008-04-14 19:11:40 +03001131 1 << oo_order(oo));
Christoph Lameter81819f02007-05-06 14:49:36 -07001132
1133 return page;
1134}
1135
1136static void setup_object(struct kmem_cache *s, struct page *page,
1137 void *object)
1138{
Christoph Lameter3ec09742007-05-16 22:11:00 -07001139 setup_object_debug(s, page, object);
Christoph Lameter4f104932007-05-06 14:50:17 -07001140 if (unlikely(s->ctor))
Christoph Lameter4ba9b9d2007-10-16 23:25:51 -07001141 s->ctor(s, object);
Christoph Lameter81819f02007-05-06 14:49:36 -07001142}
1143
1144static struct page *new_slab(struct kmem_cache *s, gfp_t flags, int node)
1145{
1146 struct page *page;
Christoph Lameter81819f02007-05-06 14:49:36 -07001147 void *start;
Christoph Lameter81819f02007-05-06 14:49:36 -07001148 void *last;
1149 void *p;
1150
Christoph Lameter6cb06222007-10-16 01:25:41 -07001151 BUG_ON(flags & GFP_SLAB_BUG_MASK);
Christoph Lameter81819f02007-05-06 14:49:36 -07001152
Christoph Lameter6cb06222007-10-16 01:25:41 -07001153 page = allocate_slab(s,
1154 flags & (GFP_RECLAIM_MASK | GFP_CONSTRAINT_MASK), node);
Christoph Lameter81819f02007-05-06 14:49:36 -07001155 if (!page)
1156 goto out;
1157
Christoph Lameter205ab992008-04-14 19:11:40 +03001158 inc_slabs_node(s, page_to_nid(page), page->objects);
Christoph Lameter81819f02007-05-06 14:49:36 -07001159 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))
Christoph Lameter35e5d7e2007-05-09 02:32:42 -07001163 SetSlabDebug(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001164
1165 start = page_address(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001166
1167 if (unlikely(s->flags & SLAB_POISON))
Christoph Lameter834f3d12008-04-14 19:11:31 +03001168 memset(start, POISON_INUSE, PAGE_SIZE << compound_order(page));
Christoph Lameter81819f02007-05-06 14:49:36 -07001169
1170 last = start;
Christoph Lameter224a88b2008-04-14 19:11:31 +03001171 for_each_object(p, s, start, page->objects) {
Christoph Lameter81819f02007-05-06 14:49:36 -07001172 setup_object(s, page, last);
1173 set_freepointer(s, last, p);
1174 last = p;
1175 }
1176 setup_object(s, page, last);
Christoph Lametera973e9d2008-03-01 13:40:44 -08001177 set_freepointer(s, last, NULL);
Christoph Lameter81819f02007-05-06 14:49:36 -07001178
1179 page->freelist = start;
1180 page->inuse = 0;
1181out:
Christoph Lameter81819f02007-05-06 14:49:36 -07001182 return page;
1183}
1184
1185static void __free_slab(struct kmem_cache *s, struct page *page)
1186{
Christoph Lameter834f3d12008-04-14 19:11:31 +03001187 int order = compound_order(page);
1188 int pages = 1 << order;
Christoph Lameter81819f02007-05-06 14:49:36 -07001189
Christoph Lameterc59def92007-05-16 22:10:50 -07001190 if (unlikely(SlabDebug(page))) {
Christoph Lameter81819f02007-05-06 14:49:36 -07001191 void *p;
1192
1193 slab_pad_check(s, page);
Christoph Lameter224a88b2008-04-14 19:11:31 +03001194 for_each_object(p, s, page_address(page),
1195 page->objects)
Christoph Lameter81819f02007-05-06 14:49:36 -07001196 check_object(s, page, p, 0);
Peter Zijlstra2208b762007-07-26 20:54:34 +02001197 ClearSlabDebug(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001198 }
1199
1200 mod_zone_page_state(page_zone(page),
1201 (s->flags & SLAB_RECLAIM_ACCOUNT) ?
1202 NR_SLAB_RECLAIMABLE : NR_SLAB_UNRECLAIMABLE,
Pekka Enberg06428782008-01-07 23:20:27 -08001203 -pages);
Christoph Lameter81819f02007-05-06 14:49:36 -07001204
Christoph Lameter49bd5222008-04-14 18:52:18 +03001205 __ClearPageSlab(page);
1206 reset_page_mapcount(page);
Christoph Lameter834f3d12008-04-14 19:11:31 +03001207 __free_pages(page, order);
Christoph Lameter81819f02007-05-06 14:49:36 -07001208}
1209
1210static 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
1218static 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
1231static void discard_slab(struct kmem_cache *s, struct page *page)
1232{
Christoph Lameter205ab992008-04-14 19:11:40 +03001233 dec_slabs_node(s, page_to_nid(page), page->objects);
Christoph Lameter81819f02007-05-06 14:49:36 -07001234 free_slab(s, page);
1235}
1236
1237/*
1238 * Per slab locking using the pagelock
1239 */
1240static __always_inline void slab_lock(struct page *page)
1241{
1242 bit_spin_lock(PG_locked, &page->flags);
1243}
1244
1245static __always_inline void slab_unlock(struct page *page)
1246{
Nick Piggina76d3542008-01-07 23:20:27 -08001247 __bit_spin_unlock(PG_locked, &page->flags);
Christoph Lameter81819f02007-05-06 14:49:36 -07001248}
1249
1250static __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 */
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001261static void add_partial(struct kmem_cache_node *n,
1262 struct page *page, int tail)
Christoph Lameter81819f02007-05-06 14:49:36 -07001263{
Christoph Lametere95eed52007-05-06 14:49:44 -07001264 spin_lock(&n->list_lock);
1265 n->nr_partial++;
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001266 if (tail)
1267 list_add_tail(&page->lru, &n->partial);
1268 else
1269 list_add(&page->lru, &n->partial);
Christoph Lameter81819f02007-05-06 14:49:36 -07001270 spin_unlock(&n->list_lock);
1271}
1272
1273static 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/*
Christoph Lameter672bba32007-05-09 02:32:39 -07001285 * Lock slab and remove from the partial list.
Christoph Lameter81819f02007-05-06 14:49:36 -07001286 *
Christoph Lameter672bba32007-05-09 02:32:39 -07001287 * Must hold list_lock.
Christoph Lameter81819f02007-05-06 14:49:36 -07001288 */
Christoph Lameter4b6f0752007-05-16 22:10:53 -07001289static inline int lock_and_freeze_slab(struct kmem_cache_node *n, struct page *page)
Christoph Lameter81819f02007-05-06 14:49:36 -07001290{
1291 if (slab_trylock(page)) {
1292 list_del(&page->lru);
1293 n->nr_partial--;
Christoph Lameter4b6f0752007-05-16 22:10:53 -07001294 SetSlabFrozen(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001295 return 1;
1296 }
1297 return 0;
1298}
1299
1300/*
Christoph Lameter672bba32007-05-09 02:32:39 -07001301 * Try to allocate a partial slab from a specific node.
Christoph Lameter81819f02007-05-06 14:49:36 -07001302 */
1303static 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
Christoph Lameter672bba32007-05-09 02:32:39 -07001310 * partial slab and there is none available then get_partials()
1311 * will return NULL.
Christoph Lameter81819f02007-05-06 14:49:36 -07001312 */
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)
Christoph Lameter4b6f0752007-05-16 22:10:53 -07001318 if (lock_and_freeze_slab(n, page))
Christoph Lameter81819f02007-05-06 14:49:36 -07001319 goto out;
1320 page = NULL;
1321out:
1322 spin_unlock(&n->list_lock);
1323 return page;
1324}
1325
1326/*
Christoph Lameter672bba32007-05-09 02:32:39 -07001327 * Get a page from somewhere. Search in increasing NUMA distances.
Christoph Lameter81819f02007-05-06 14:49:36 -07001328 */
1329static 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 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07001337 * 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.
Christoph Lameter81819f02007-05-06 14:49:36 -07001341 *
Christoph Lameter672bba32007-05-09 02:32:39 -07001342 * 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.
Christoph Lameter81819f02007-05-06 14:49:36 -07001346 *
Christoph Lameter6446faa2008-02-15 23:45:26 -08001347 * If /sys/kernel/slab/xx/defrag_ratio is set to 100 (which makes
Christoph Lameter672bba32007-05-09 02:32:39 -07001348 * 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.
Christoph Lameter81819f02007-05-06 14:49:36 -07001353 */
Christoph Lameter98246012008-01-07 23:20:26 -08001354 if (!s->remote_node_defrag_ratio ||
1355 get_cycles() % 1024 > s->remote_node_defrag_ratio)
Christoph Lameter81819f02007-05-06 14:49:36 -07001356 return NULL;
1357
Ingo Molnar3adbefe2008-02-05 17:57:39 -08001358 zonelist = &NODE_DATA(
1359 slab_node(current->mempolicy))->node_zonelists[gfp_zone(flags)];
Christoph Lameter81819f02007-05-06 14:49:36 -07001360 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) &&
Christoph Lametere95eed52007-05-06 14:49:44 -07001366 n->nr_partial > MIN_PARTIAL) {
Christoph Lameter81819f02007-05-06 14:49:36 -07001367 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 */
1379static 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 */
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001398static void unfreeze_slab(struct kmem_cache *s, struct page *page, int tail)
Christoph Lameter81819f02007-05-06 14:49:36 -07001399{
Christoph Lametere95eed52007-05-06 14:49:44 -07001400 struct kmem_cache_node *n = get_node(s, page_to_nid(page));
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001401 struct kmem_cache_cpu *c = get_cpu_slab(s, smp_processor_id());
Christoph Lametere95eed52007-05-06 14:49:44 -07001402
Christoph Lameter4b6f0752007-05-16 22:10:53 -07001403 ClearSlabFrozen(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001404 if (page->inuse) {
Christoph Lametere95eed52007-05-06 14:49:44 -07001405
Christoph Lametera973e9d2008-03-01 13:40:44 -08001406 if (page->freelist) {
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001407 add_partial(n, page, tail);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001408 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 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001414 slab_unlock(page);
1415 } else {
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001416 stat(c, DEACTIVATE_EMPTY);
Christoph Lametere95eed52007-05-06 14:49:44 -07001417 if (n->nr_partial < MIN_PARTIAL) {
1418 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07001419 * 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
Christoph Lameter6446faa2008-02-15 23:45:26 -08001422 * 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.
Christoph Lametere95eed52007-05-06 14:49:44 -07001427 */
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001428 add_partial(n, page, 1);
Christoph Lametere95eed52007-05-06 14:49:44 -07001429 slab_unlock(page);
1430 } else {
1431 slab_unlock(page);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001432 stat(get_cpu_slab(s, raw_smp_processor_id()), FREE_SLAB);
Christoph Lametere95eed52007-05-06 14:49:44 -07001433 discard_slab(s, page);
1434 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001435 }
1436}
1437
1438/*
1439 * Remove the cpu slab
1440 */
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001441static void deactivate_slab(struct kmem_cache *s, struct kmem_cache_cpu *c)
Christoph Lameter81819f02007-05-06 14:49:36 -07001442{
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001443 struct page *page = c->page;
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001444 int tail = 1;
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001445
Christoph Lameterb773ad72008-03-04 11:10:17 -08001446 if (page->freelist)
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001447 stat(c, DEACTIVATE_REMOTE_FREES);
Christoph Lameter894b8782007-05-10 03:15:16 -07001448 /*
Christoph Lameter6446faa2008-02-15 23:45:26 -08001449 * Merge cpu freelist into slab freelist. Typically we get here
Christoph Lameter894b8782007-05-10 03:15:16 -07001450 * because both freelists are empty. So this is unlikely
1451 * to occur.
1452 */
Christoph Lametera973e9d2008-03-01 13:40:44 -08001453 while (unlikely(c->freelist)) {
Christoph Lameter894b8782007-05-10 03:15:16 -07001454 void **object;
1455
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001456 tail = 0; /* Hot objects. Put the slab first */
1457
Christoph Lameter894b8782007-05-10 03:15:16 -07001458 /* Retrieve object from cpu_freelist */
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001459 object = c->freelist;
Christoph Lameterb3fba8d2007-10-16 01:26:06 -07001460 c->freelist = c->freelist[c->offset];
Christoph Lameter894b8782007-05-10 03:15:16 -07001461
1462 /* And put onto the regular freelist */
Christoph Lameterb3fba8d2007-10-16 01:26:06 -07001463 object[c->offset] = page->freelist;
Christoph Lameter894b8782007-05-10 03:15:16 -07001464 page->freelist = object;
1465 page->inuse--;
1466 }
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001467 c->page = NULL;
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001468 unfreeze_slab(s, page, tail);
Christoph Lameter81819f02007-05-06 14:49:36 -07001469}
1470
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001471static inline void flush_slab(struct kmem_cache *s, struct kmem_cache_cpu *c)
Christoph Lameter81819f02007-05-06 14:49:36 -07001472{
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001473 stat(c, CPUSLAB_FLUSH);
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001474 slab_lock(c->page);
1475 deactivate_slab(s, c);
Christoph Lameter81819f02007-05-06 14:49:36 -07001476}
1477
1478/*
1479 * Flush cpu slab.
Christoph Lameter6446faa2008-02-15 23:45:26 -08001480 *
Christoph Lameter81819f02007-05-06 14:49:36 -07001481 * Called from IPI handler with interrupts disabled.
1482 */
Christoph Lameter0c710012007-07-17 04:03:24 -07001483static inline void __flush_cpu_slab(struct kmem_cache *s, int cpu)
Christoph Lameter81819f02007-05-06 14:49:36 -07001484{
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001485 struct kmem_cache_cpu *c = get_cpu_slab(s, cpu);
Christoph Lameter81819f02007-05-06 14:49:36 -07001486
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001487 if (likely(c && c->page))
1488 flush_slab(s, c);
Christoph Lameter81819f02007-05-06 14:49:36 -07001489}
1490
1491static void flush_cpu_slab(void *d)
1492{
1493 struct kmem_cache *s = d;
Christoph Lameter81819f02007-05-06 14:49:36 -07001494
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001495 __flush_cpu_slab(s, smp_processor_id());
Christoph Lameter81819f02007-05-06 14:49:36 -07001496}
1497
1498static 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/*
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001512 * Check if the objects in a per cpu structure fit numa
1513 * locality expectations.
1514 */
1515static 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/*
Christoph Lameter894b8782007-05-10 03:15:16 -07001525 * Slow path. The lockless freelist is empty or we need to perform
1526 * debugging duties.
Christoph Lameter81819f02007-05-06 14:49:36 -07001527 *
Christoph Lameter894b8782007-05-10 03:15:16 -07001528 * Interrupts are disabled.
Christoph Lameter81819f02007-05-06 14:49:36 -07001529 *
Christoph Lameter894b8782007-05-10 03:15:16 -07001530 * 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.
Christoph Lameter81819f02007-05-06 14:49:36 -07001533 *
Christoph Lameter894b8782007-05-10 03:15:16 -07001534 * 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
Christoph Lameter6446faa2008-02-15 23:45:26 -08001539 * 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.
Christoph Lameter81819f02007-05-06 14:49:36 -07001541 */
Christoph Lameter894b8782007-05-10 03:15:16 -07001542static void *__slab_alloc(struct kmem_cache *s,
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001543 gfp_t gfpflags, int node, void *addr, struct kmem_cache_cpu *c)
Christoph Lameter81819f02007-05-06 14:49:36 -07001544{
Christoph Lameter81819f02007-05-06 14:49:36 -07001545 void **object;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001546 struct page *new;
Christoph Lameter81819f02007-05-06 14:49:36 -07001547
Linus Torvaldse72e9c22008-03-27 20:56:33 -07001548 /* We handle __GFP_ZERO in the caller */
1549 gfpflags &= ~__GFP_ZERO;
1550
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001551 if (!c->page)
Christoph Lameter81819f02007-05-06 14:49:36 -07001552 goto new_slab;
1553
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001554 slab_lock(c->page);
1555 if (unlikely(!node_match(c, node)))
Christoph Lameter81819f02007-05-06 14:49:36 -07001556 goto another_slab;
Christoph Lameter6446faa2008-02-15 23:45:26 -08001557
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001558 stat(c, ALLOC_REFILL);
Christoph Lameter6446faa2008-02-15 23:45:26 -08001559
Christoph Lameter894b8782007-05-10 03:15:16 -07001560load_freelist:
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001561 object = c->page->freelist;
Christoph Lametera973e9d2008-03-01 13:40:44 -08001562 if (unlikely(!object))
Christoph Lameter81819f02007-05-06 14:49:36 -07001563 goto another_slab;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001564 if (unlikely(SlabDebug(c->page)))
Christoph Lameter81819f02007-05-06 14:49:36 -07001565 goto debug;
1566
Christoph Lameterb3fba8d2007-10-16 01:26:06 -07001567 c->freelist = object[c->offset];
Christoph Lameter39b26462008-04-14 19:11:30 +03001568 c->page->inuse = c->page->objects;
Christoph Lametera973e9d2008-03-01 13:40:44 -08001569 c->page->freelist = NULL;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001570 c->node = page_to_nid(c->page);
Christoph Lameter1f842602008-01-07 23:20:30 -08001571unlock_out:
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001572 slab_unlock(c->page);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001573 stat(c, ALLOC_SLOWPATH);
Christoph Lameter81819f02007-05-06 14:49:36 -07001574 return object;
1575
1576another_slab:
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001577 deactivate_slab(s, c);
Christoph Lameter81819f02007-05-06 14:49:36 -07001578
1579new_slab:
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001580 new = get_partial(s, gfpflags, node);
1581 if (new) {
1582 c->page = new;
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001583 stat(c, ALLOC_FROM_PARTIAL);
Christoph Lameter894b8782007-05-10 03:15:16 -07001584 goto load_freelist;
Christoph Lameter81819f02007-05-06 14:49:36 -07001585 }
1586
Christoph Lameterb811c202007-10-16 23:25:51 -07001587 if (gfpflags & __GFP_WAIT)
1588 local_irq_enable();
1589
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001590 new = new_slab(s, gfpflags, node);
Christoph Lameterb811c202007-10-16 23:25:51 -07001591
1592 if (gfpflags & __GFP_WAIT)
1593 local_irq_disable();
1594
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001595 if (new) {
1596 c = get_cpu_slab(s, smp_processor_id());
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001597 stat(c, ALLOC_SLAB);
Christoph Lameter05aa3452007-11-05 11:31:58 -08001598 if (c->page)
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001599 flush_slab(s, c);
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001600 slab_lock(new);
1601 SetSlabFrozen(new);
1602 c->page = new;
Christoph Lameter4b6f0752007-05-16 22:10:53 -07001603 goto load_freelist;
Christoph Lameter81819f02007-05-06 14:49:36 -07001604 }
Christoph Lameter71c7a062008-02-14 14:28:01 -08001605 return NULL;
Christoph Lameter81819f02007-05-06 14:49:36 -07001606debug:
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001607 if (!alloc_debug_processing(s, c->page, object, addr))
Christoph Lameter81819f02007-05-06 14:49:36 -07001608 goto another_slab;
Christoph Lameter894b8782007-05-10 03:15:16 -07001609
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001610 c->page->inuse++;
Christoph Lameterb3fba8d2007-10-16 01:26:06 -07001611 c->page->freelist = object[c->offset];
Christoph Lameteree3c72a2007-10-16 01:26:07 -07001612 c->node = -1;
Christoph Lameter1f842602008-01-07 23:20:30 -08001613 goto unlock_out;
Christoph Lameter894b8782007-05-10 03:15:16 -07001614}
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 */
Pekka Enberg06428782008-01-07 23:20:27 -08001626static __always_inline void *slab_alloc(struct kmem_cache *s,
Christoph Lameterce15fea2007-07-17 04:03:28 -07001627 gfp_t gfpflags, int node, void *addr)
Christoph Lameter894b8782007-05-10 03:15:16 -07001628{
Christoph Lameter894b8782007-05-10 03:15:16 -07001629 void **object;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001630 struct kmem_cache_cpu *c;
Christoph Lameter1f842602008-01-07 23:20:30 -08001631 unsigned long flags;
1632
Christoph Lameter894b8782007-05-10 03:15:16 -07001633 local_irq_save(flags);
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001634 c = get_cpu_slab(s, smp_processor_id());
Christoph Lametera973e9d2008-03-01 13:40:44 -08001635 if (unlikely(!c->freelist || !node_match(c, node)))
Christoph Lameter894b8782007-05-10 03:15:16 -07001636
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001637 object = __slab_alloc(s, gfpflags, node, addr, c);
Christoph Lameter894b8782007-05-10 03:15:16 -07001638
1639 else {
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001640 object = c->freelist;
Christoph Lameterb3fba8d2007-10-16 01:26:06 -07001641 c->freelist = object[c->offset];
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001642 stat(c, ALLOC_FASTPATH);
Christoph Lameter894b8782007-05-10 03:15:16 -07001643 }
1644 local_irq_restore(flags);
Christoph Lameterd07dbea2007-07-17 04:03:23 -07001645
1646 if (unlikely((gfpflags & __GFP_ZERO) && object))
Christoph Lameter42a9fdb2007-10-16 01:26:09 -07001647 memset(object, 0, c->objsize);
Christoph Lameterd07dbea2007-07-17 04:03:23 -07001648
Christoph Lameter894b8782007-05-10 03:15:16 -07001649 return object;
Christoph Lameter81819f02007-05-06 14:49:36 -07001650}
1651
1652void *kmem_cache_alloc(struct kmem_cache *s, gfp_t gfpflags)
1653{
Christoph Lameterce15fea2007-07-17 04:03:28 -07001654 return slab_alloc(s, gfpflags, -1, __builtin_return_address(0));
Christoph Lameter81819f02007-05-06 14:49:36 -07001655}
1656EXPORT_SYMBOL(kmem_cache_alloc);
1657
1658#ifdef CONFIG_NUMA
1659void *kmem_cache_alloc_node(struct kmem_cache *s, gfp_t gfpflags, int node)
1660{
Christoph Lameterce15fea2007-07-17 04:03:28 -07001661 return slab_alloc(s, gfpflags, node, __builtin_return_address(0));
Christoph Lameter81819f02007-05-06 14:49:36 -07001662}
1663EXPORT_SYMBOL(kmem_cache_alloc_node);
1664#endif
1665
1666/*
Christoph Lameter894b8782007-05-10 03:15:16 -07001667 * Slow patch handling. This may still be called frequently since objects
1668 * have a longer lifetime than the cpu slabs in most processing loads.
Christoph Lameter81819f02007-05-06 14:49:36 -07001669 *
Christoph Lameter894b8782007-05-10 03:15:16 -07001670 * 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.
Christoph Lameter81819f02007-05-06 14:49:36 -07001673 */
Christoph Lameter894b8782007-05-10 03:15:16 -07001674static void __slab_free(struct kmem_cache *s, struct page *page,
Christoph Lameterb3fba8d2007-10-16 01:26:06 -07001675 void *x, void *addr, unsigned int offset)
Christoph Lameter81819f02007-05-06 14:49:36 -07001676{
1677 void *prior;
1678 void **object = (void *)x;
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001679 struct kmem_cache_cpu *c;
Christoph Lameter81819f02007-05-06 14:49:36 -07001680
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001681 c = get_cpu_slab(s, raw_smp_processor_id());
1682 stat(c, FREE_SLOWPATH);
Christoph Lameter81819f02007-05-06 14:49:36 -07001683 slab_lock(page);
1684
Christoph Lameter35e5d7e2007-05-09 02:32:42 -07001685 if (unlikely(SlabDebug(page)))
Christoph Lameter81819f02007-05-06 14:49:36 -07001686 goto debug;
Christoph Lameter6446faa2008-02-15 23:45:26 -08001687
Christoph Lameter81819f02007-05-06 14:49:36 -07001688checks_ok:
Christoph Lameterb3fba8d2007-10-16 01:26:06 -07001689 prior = object[offset] = page->freelist;
Christoph Lameter81819f02007-05-06 14:49:36 -07001690 page->freelist = object;
1691 page->inuse--;
1692
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001693 if (unlikely(SlabFrozen(page))) {
1694 stat(c, FREE_FROZEN);
Christoph Lameter81819f02007-05-06 14:49:36 -07001695 goto out_unlock;
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001696 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001697
1698 if (unlikely(!page->inuse))
1699 goto slab_empty;
1700
1701 /*
Christoph Lameter6446faa2008-02-15 23:45:26 -08001702 * Objects left in the slab. If it was not on the partial list before
Christoph Lameter81819f02007-05-06 14:49:36 -07001703 * then add it.
1704 */
Christoph Lametera973e9d2008-03-01 13:40:44 -08001705 if (unlikely(!prior)) {
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001706 add_partial(get_node(s, page_to_nid(page)), page, 1);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001707 stat(c, FREE_ADD_PARTIAL);
1708 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001709
1710out_unlock:
1711 slab_unlock(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001712 return;
1713
1714slab_empty:
Christoph Lametera973e9d2008-03-01 13:40:44 -08001715 if (prior) {
Christoph Lameter81819f02007-05-06 14:49:36 -07001716 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07001717 * Slab still on the partial list.
Christoph Lameter81819f02007-05-06 14:49:36 -07001718 */
1719 remove_partial(s, page);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001720 stat(c, FREE_REMOVE_PARTIAL);
1721 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001722 slab_unlock(page);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001723 stat(c, FREE_SLAB);
Christoph Lameter81819f02007-05-06 14:49:36 -07001724 discard_slab(s, page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001725 return;
1726
1727debug:
Christoph Lameter3ec09742007-05-16 22:11:00 -07001728 if (!free_debug_processing(s, page, x, addr))
Christoph Lameter77c5e2d2007-05-06 14:49:42 -07001729 goto out_unlock;
Christoph Lameter77c5e2d2007-05-06 14:49:42 -07001730 goto checks_ok;
Christoph Lameter81819f02007-05-06 14:49:36 -07001731}
1732
Christoph Lameter894b8782007-05-10 03:15:16 -07001733/*
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 */
Pekka Enberg06428782008-01-07 23:20:27 -08001744static __always_inline void slab_free(struct kmem_cache *s,
Christoph Lameter894b8782007-05-10 03:15:16 -07001745 struct page *page, void *x, void *addr)
1746{
1747 void **object = (void *)x;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001748 struct kmem_cache_cpu *c;
Christoph Lameter1f842602008-01-07 23:20:30 -08001749 unsigned long flags;
1750
Christoph Lameter894b8782007-05-10 03:15:16 -07001751 local_irq_save(flags);
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001752 c = get_cpu_slab(s, smp_processor_id());
Christoph Lameter27d9e4e2008-02-15 23:45:25 -08001753 debug_check_no_locks_freed(object, c->objsize);
Christoph Lameteree3c72a2007-10-16 01:26:07 -07001754 if (likely(page == c->page && c->node >= 0)) {
Christoph Lameterb3fba8d2007-10-16 01:26:06 -07001755 object[c->offset] = c->freelist;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001756 c->freelist = object;
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001757 stat(c, FREE_FASTPATH);
Christoph Lameter894b8782007-05-10 03:15:16 -07001758 } else
Christoph Lameterb3fba8d2007-10-16 01:26:06 -07001759 __slab_free(s, page, x, addr, c->offset);
Christoph Lameter894b8782007-05-10 03:15:16 -07001760
1761 local_irq_restore(flags);
1762}
1763
Christoph Lameter81819f02007-05-06 14:49:36 -07001764void kmem_cache_free(struct kmem_cache *s, void *x)
1765{
Christoph Lameter77c5e2d2007-05-06 14:49:42 -07001766 struct page *page;
Christoph Lameter81819f02007-05-06 14:49:36 -07001767
Christoph Lameterb49af682007-05-06 14:49:41 -07001768 page = virt_to_head_page(x);
Christoph Lameter81819f02007-05-06 14:49:36 -07001769
Christoph Lameter77c5e2d2007-05-06 14:49:42 -07001770 slab_free(s, page, x, __builtin_return_address(0));
Christoph Lameter81819f02007-05-06 14:49:36 -07001771}
1772EXPORT_SYMBOL(kmem_cache_free);
1773
1774/* Figure out on which slab object the object resides */
1775static struct page *get_object_page(const void *x)
1776{
Christoph Lameterb49af682007-05-06 14:49:41 -07001777 struct page *page = virt_to_head_page(x);
Christoph Lameter81819f02007-05-06 14:49:36 -07001778
1779 if (!PageSlab(page))
1780 return NULL;
1781
1782 return page;
1783}
1784
1785/*
Christoph Lameter672bba32007-05-09 02:32:39 -07001786 * 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.
Christoph Lameter81819f02007-05-06 14:49:36 -07001790 *
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
Christoph Lameter672bba32007-05-09 02:32:39 -07001794 * must be moved on and off the partial lists and is therefore a factor in
Christoph Lameter81819f02007-05-06 14:49:36 -07001795 * locking overhead.
Christoph Lameter81819f02007-05-06 14:49:36 -07001796 */
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 */
1804static int slub_min_order;
Christoph Lameter114e9e82008-04-14 19:11:41 +03001805static int slub_max_order = PAGE_ALLOC_COSTLY_ORDER;
1806static int slub_min_objects = 4;
Christoph Lameter81819f02007-05-06 14:49:36 -07001807
1808/*
1809 * Merge control. If this is set then no merging of slab caches will occur.
Christoph Lameter672bba32007-05-09 02:32:39 -07001810 * (Could be removed. This was introduced to pacify the merge skeptics.)
Christoph Lameter81819f02007-05-06 14:49:36 -07001811 */
1812static int slub_nomerge;
1813
1814/*
Christoph Lameter81819f02007-05-06 14:49:36 -07001815 * Calculate the order of allocation given an slab object size.
1816 *
Christoph Lameter672bba32007-05-09 02:32:39 -07001817 * 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.
Christoph Lameter81819f02007-05-06 14:49:36 -07001823 *
Christoph Lameter672bba32007-05-09 02:32:39 -07001824 * 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.
Christoph Lameter81819f02007-05-06 14:49:36 -07001828 *
Christoph Lameter672bba32007-05-09 02:32:39 -07001829 * 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.
Christoph Lameter81819f02007-05-06 14:49:36 -07001838 */
Christoph Lameter5e6d4442007-05-09 02:32:46 -07001839static inline int slab_order(int size, int min_objects,
1840 int max_order, int fract_leftover)
Christoph Lameter81819f02007-05-06 14:49:36 -07001841{
1842 int order;
1843 int rem;
Christoph Lameter6300ea72007-07-17 04:03:20 -07001844 int min_order = slub_min_order;
Christoph Lameter81819f02007-05-06 14:49:36 -07001845
Christoph Lameter39b26462008-04-14 19:11:30 +03001846 if ((PAGE_SIZE << min_order) / size > 65535)
1847 return get_order(size * 65535) - 1;
1848
Christoph Lameter6300ea72007-07-17 04:03:20 -07001849 for (order = max(min_order,
Christoph Lameter5e6d4442007-05-09 02:32:46 -07001850 fls(min_objects * size - 1) - PAGE_SHIFT);
1851 order <= max_order; order++) {
1852
Christoph Lameter81819f02007-05-06 14:49:36 -07001853 unsigned long slab_size = PAGE_SIZE << order;
1854
Christoph Lameter5e6d4442007-05-09 02:32:46 -07001855 if (slab_size < min_objects * size)
Christoph Lameter81819f02007-05-06 14:49:36 -07001856 continue;
1857
Christoph Lameter81819f02007-05-06 14:49:36 -07001858 rem = slab_size % size;
1859
Christoph Lameter5e6d4442007-05-09 02:32:46 -07001860 if (rem <= slab_size / fract_leftover)
Christoph Lameter81819f02007-05-06 14:49:36 -07001861 break;
1862
1863 }
Christoph Lameter672bba32007-05-09 02:32:39 -07001864
Christoph Lameter81819f02007-05-06 14:49:36 -07001865 return order;
1866}
1867
Christoph Lameter5e6d4442007-05-09 02:32:46 -07001868static 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
Christoph Lameter81819f02007-05-06 14:49:36 -07001912/*
Christoph Lameter672bba32007-05-09 02:32:39 -07001913 * Figure out what the alignment of the objects will be.
Christoph Lameter81819f02007-05-06 14:49:36 -07001914 */
1915static unsigned long calculate_alignment(unsigned long flags,
1916 unsigned long align, unsigned long size)
1917{
1918 /*
Christoph Lameter6446faa2008-02-15 23:45:26 -08001919 * If the user wants hardware cache aligned objects then follow that
1920 * suggestion if the object is sufficiently large.
Christoph Lameter81819f02007-05-06 14:49:36 -07001921 *
Christoph Lameter6446faa2008-02-15 23:45:26 -08001922 * The hardware cache alignment cannot override the specified
1923 * alignment though. If that is greater then use it.
Christoph Lameter81819f02007-05-06 14:49:36 -07001924 */
Nick Pigginb6210382008-03-05 14:05:56 -08001925 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 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001931
1932 if (align < ARCH_SLAB_MINALIGN)
Nick Pigginb6210382008-03-05 14:05:56 -08001933 align = ARCH_SLAB_MINALIGN;
Christoph Lameter81819f02007-05-06 14:49:36 -07001934
1935 return ALIGN(align, sizeof(void *));
1936}
1937
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001938static void init_kmem_cache_cpu(struct kmem_cache *s,
1939 struct kmem_cache_cpu *c)
1940{
1941 c->page = NULL;
Christoph Lametera973e9d2008-03-01 13:40:44 -08001942 c->freelist = NULL;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001943 c->node = 0;
Christoph Lameter42a9fdb2007-10-16 01:26:09 -07001944 c->offset = s->offset / sizeof(void *);
1945 c->objsize = s->objsize;
Pekka Enberg62f75532008-04-14 18:50:44 +03001946#ifdef CONFIG_SLUB_STATS
1947 memset(c->stat, 0, NR_SLUB_STAT_ITEMS * sizeof(unsigned));
1948#endif
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001949}
1950
Christoph Lameter81819f02007-05-06 14:49:36 -07001951static void init_kmem_cache_node(struct kmem_cache_node *n)
1952{
1953 n->nr_partial = 0;
Christoph Lameter81819f02007-05-06 14:49:36 -07001954 spin_lock_init(&n->list_lock);
1955 INIT_LIST_HEAD(&n->partial);
Christoph Lameter8ab13722007-07-17 04:03:32 -07001956#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter0f389ec2008-04-14 18:53:02 +03001957 atomic_long_set(&n->nr_slabs, 0);
Christoph Lameter643b1132007-05-06 14:49:42 -07001958 INIT_LIST_HEAD(&n->full);
Christoph Lameter8ab13722007-07-17 04:03:32 -07001959#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07001960}
1961
Christoph Lameter4c93c3552007-10-16 01:26:08 -07001962#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
1980static DEFINE_PER_CPU(struct kmem_cache_cpu,
1981 kmem_cache_cpu)[NR_KMEM_CACHE_CPU];
1982
1983static DEFINE_PER_CPU(struct kmem_cache_cpu *, kmem_cache_cpu_free);
1984static cpumask_t kmem_cach_cpu_free_init_once = CPU_MASK_NONE;
1985
1986static 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
2007static 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
2018static 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
2032static 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 */
2055static 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
2068static 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
2077static inline void free_kmem_cache_cpus(struct kmem_cache *s) {}
2078static inline void init_alloc_cpu(void) {}
2079
2080static 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
Christoph Lameter81819f02007-05-06 14:49:36 -07002087#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
Christoph Lameter4c93c3552007-10-16 01:26:08 -07002094 * when allocating for the kmalloc_node_cache. This is used for bootstrapping
2095 * memory on a fresh node that has no slab structures yet.
Christoph Lameter81819f02007-05-06 14:49:36 -07002096 */
Adrian Bunk1cd7daa2007-10-16 01:24:18 -07002097static struct kmem_cache_node *early_kmem_cache_node_alloc(gfp_t gfpflags,
2098 int node)
Christoph Lameter81819f02007-05-06 14:49:36 -07002099{
2100 struct page *page;
2101 struct kmem_cache_node *n;
rootba84c732008-01-07 23:20:28 -08002102 unsigned long flags;
Christoph Lameter81819f02007-05-06 14:49:36 -07002103
2104 BUG_ON(kmalloc_caches->size < sizeof(struct kmem_cache_node));
2105
Christoph Lametera2f92ee2007-08-22 14:01:57 -07002106 page = new_slab(kmalloc_caches, gfpflags, node);
Christoph Lameter81819f02007-05-06 14:49:36 -07002107
2108 BUG_ON(!page);
Christoph Lametera2f92ee2007-08-22 14:01:57 -07002109 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
Christoph Lameter81819f02007-05-06 14:49:36 -07002116 n = page->freelist;
2117 BUG_ON(!n);
2118 page->freelist = get_freepointer(kmalloc_caches, n);
2119 page->inuse++;
2120 kmalloc_caches->node[node] = n;
Christoph Lameter8ab13722007-07-17 04:03:32 -07002121#ifdef CONFIG_SLUB_DEBUG
Christoph Lameterd45f39c2007-07-17 04:03:21 -07002122 init_object(kmalloc_caches, n, 1);
2123 init_tracking(kmalloc_caches, n);
Christoph Lameter8ab13722007-07-17 04:03:32 -07002124#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07002125 init_kmem_cache_node(n);
Christoph Lameter205ab992008-04-14 19:11:40 +03002126 inc_slabs_node(kmalloc_caches, node, page->objects);
Christoph Lameter6446faa2008-02-15 23:45:26 -08002127
rootba84c732008-01-07 23:20:28 -08002128 /*
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);
Christoph Lameter7c2e1322008-01-07 23:20:27 -08002134 add_partial(n, page, 0);
rootba84c732008-01-07 23:20:28 -08002135 local_irq_restore(flags);
Christoph Lameter81819f02007-05-06 14:49:36 -07002136 return n;
2137}
2138
2139static void free_kmem_cache_nodes(struct kmem_cache *s)
2140{
2141 int node;
2142
Christoph Lameterf64dc582007-10-16 01:25:33 -07002143 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002144 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
2151static 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
Christoph Lameterf64dc582007-10-16 01:25:33 -07002161 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002162 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
2187static void free_kmem_cache_nodes(struct kmem_cache *s)
2188{
2189}
2190
2191static 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 */
Christoph Lameter06b285d2008-04-14 19:11:41 +03002202static int calculate_sizes(struct kmem_cache *s, int forced_order)
Christoph Lameter81819f02007-05-06 14:49:36 -07002203{
2204 unsigned long flags = s->flags;
2205 unsigned long size = s->objsize;
2206 unsigned long align = s->align;
Christoph Lameter834f3d12008-04-14 19:11:31 +03002207 int order;
Christoph Lameter81819f02007-05-06 14:49:36 -07002208
2209 /*
Christoph Lameterd8b42bf2008-02-15 23:45:25 -08002210 * 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 /*
Christoph Lameter81819f02007-05-06 14:49:36 -07002218 * 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) &&
Christoph Lameterc59def92007-05-16 22:10:50 -07002223 !s->ctor)
Christoph Lameter81819f02007-05-06 14:49:36 -07002224 s->flags |= __OBJECT_POISON;
2225 else
2226 s->flags &= ~__OBJECT_POISON;
2227
Christoph Lameter81819f02007-05-06 14:49:36 -07002228
2229 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07002230 * If we are Redzoning then check if there is some space between the
Christoph Lameter81819f02007-05-06 14:49:36 -07002231 * end of the object and the free pointer. If not then add an
Christoph Lameter672bba32007-05-09 02:32:39 -07002232 * additional word to have some bytes to store Redzone information.
Christoph Lameter81819f02007-05-06 14:49:36 -07002233 */
2234 if ((flags & SLAB_RED_ZONE) && size == s->objsize)
2235 size += sizeof(void *);
Christoph Lameter41ecc552007-05-09 02:32:44 -07002236#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07002237
2238 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07002239 * 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.
Christoph Lameter81819f02007-05-06 14:49:36 -07002241 */
2242 s->inuse = size;
2243
2244 if (((flags & (SLAB_DESTROY_BY_RCU | SLAB_POISON)) ||
Christoph Lameterc59def92007-05-16 22:10:50 -07002245 s->ctor)) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002246 /*
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
Christoph Lameterc12b3c62007-05-23 13:57:31 -07002258#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter81819f02007-05-06 14:49:36 -07002259 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
Christoph Lameterbe7b3fb2007-05-09 02:32:36 -07002266 if (flags & SLAB_RED_ZONE)
Christoph Lameter81819f02007-05-06 14:49:36 -07002267 /*
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 *);
Christoph Lameter41ecc552007-05-09 02:32:44 -07002275#endif
Christoph Lameter672bba32007-05-09 02:32:39 -07002276
Christoph Lameter81819f02007-05-06 14:49:36 -07002277 /*
2278 * Determine the alignment based on various parameters that the
Christoph Lameter65c02d42007-05-09 02:32:35 -07002279 * user specified and the dynamic determination of cache line size
2280 * on bootup.
Christoph Lameter81819f02007-05-06 14:49:36 -07002281 */
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;
Christoph Lameter06b285d2008-04-14 19:11:41 +03002291 if (forced_order >= 0)
2292 order = forced_order;
2293 else
2294 order = calculate_order(size);
Christoph Lameter71c7a062008-02-14 14:28:01 -08002295
Christoph Lameter834f3d12008-04-14 19:11:31 +03002296 if (order < 0)
Christoph Lameter81819f02007-05-06 14:49:36 -07002297 return 0;
2298
Christoph Lameterb7a49f02008-02-14 14:21:32 -08002299 s->allocflags = 0;
Christoph Lameter834f3d12008-04-14 19:11:31 +03002300 if (order)
Christoph Lameterb7a49f02008-02-14 14:21:32 -08002301 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
Christoph Lameter81819f02007-05-06 14:49:36 -07002309 /*
2310 * Determine the number of objects per slab
2311 */
Christoph Lameter834f3d12008-04-14 19:11:31 +03002312 s->oo = oo_make(order, size);
Christoph Lameter65c33762008-04-14 19:11:40 +03002313 s->min = oo_make(get_order(size), size);
Christoph Lameter205ab992008-04-14 19:11:40 +03002314 if (oo_objects(s->oo) > oo_objects(s->max))
2315 s->max = s->oo;
Christoph Lameter81819f02007-05-06 14:49:36 -07002316
Christoph Lameter834f3d12008-04-14 19:11:31 +03002317 return !!oo_objects(s->oo);
Christoph Lameter81819f02007-05-06 14:49:36 -07002318
2319}
2320
Christoph Lameter81819f02007-05-06 14:49:36 -07002321static 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,
Christoph Lameter4ba9b9d2007-10-16 23:25:51 -07002324 void (*ctor)(struct kmem_cache *, void *))
Christoph Lameter81819f02007-05-06 14:49:36 -07002325{
2326 memset(s, 0, kmem_size);
2327 s->name = name;
2328 s->ctor = ctor;
Christoph Lameter81819f02007-05-06 14:49:36 -07002329 s->objsize = size;
Christoph Lameter81819f02007-05-06 14:49:36 -07002330 s->align = align;
Christoph Lameterba0268a2007-09-11 15:24:11 -07002331 s->flags = kmem_cache_flags(size, flags, name, ctor);
Christoph Lameter81819f02007-05-06 14:49:36 -07002332
Christoph Lameter06b285d2008-04-14 19:11:41 +03002333 if (!calculate_sizes(s, -1))
Christoph Lameter81819f02007-05-06 14:49:36 -07002334 goto error;
2335
2336 s->refcount = 1;
2337#ifdef CONFIG_NUMA
Christoph Lameter98246012008-01-07 23:20:26 -08002338 s->remote_node_defrag_ratio = 100;
Christoph Lameter81819f02007-05-06 14:49:36 -07002339#endif
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002340 if (!init_kmem_cache_nodes(s, gfpflags & ~SLUB_DMA))
2341 goto error;
Christoph Lameter81819f02007-05-06 14:49:36 -07002342
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002343 if (alloc_kmem_cache_cpus(s, gfpflags & ~SLUB_DMA))
Christoph Lameter81819f02007-05-06 14:49:36 -07002344 return 1;
Christoph Lameter4c93c3552007-10-16 01:26:08 -07002345 free_kmem_cache_nodes(s);
Christoph Lameter81819f02007-05-06 14:49:36 -07002346error:
2347 if (flags & SLAB_PANIC)
2348 panic("Cannot create slab %s size=%lu realsize=%u "
2349 "order=%u offset=%u flags=%lx\n",
Christoph Lameter834f3d12008-04-14 19:11:31 +03002350 s->name, (unsigned long)size, s->size, oo_order(s->oo),
Christoph Lameter81819f02007-05-06 14:49:36 -07002351 s->offset, flags);
2352 return 0;
2353}
Christoph Lameter81819f02007-05-06 14:49:36 -07002354
2355/*
2356 * Check if a given pointer is valid
2357 */
2358int kmem_ptr_validate(struct kmem_cache *s, const void *object)
2359{
Pekka Enberg06428782008-01-07 23:20:27 -08002360 struct page *page;
Christoph Lameter81819f02007-05-06 14:49:36 -07002361
2362 page = get_object_page(object);
2363
2364 if (!page || s != page->slab)
2365 /* No slab or wrong slab */
2366 return 0;
2367
Christoph Lameterabcd08a2007-05-09 02:32:37 -07002368 if (!check_valid_pointer(s, page, object))
Christoph Lameter81819f02007-05-06 14:49:36 -07002369 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
Christoph Lameter6446faa2008-02-15 23:45:26 -08002374 * purpose of kmem_ptr_valid() is to check if the object belongs
Christoph Lameter81819f02007-05-06 14:49:36 -07002375 * to a certain slab.
2376 */
2377 return 1;
2378}
2379EXPORT_SYMBOL(kmem_ptr_validate);
2380
2381/*
2382 * Determine the size of a slab object
2383 */
2384unsigned int kmem_cache_size(struct kmem_cache *s)
2385{
2386 return s->objsize;
2387}
2388EXPORT_SYMBOL(kmem_cache_size);
2389
2390const char *kmem_cache_name(struct kmem_cache *s)
2391{
2392 return s->name;
2393}
2394EXPORT_SYMBOL(kmem_cache_name);
2395
Christoph Lameter33b12c32008-04-25 12:22:43 -07002396static 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
Christoph Lameter81819f02007-05-06 14:49:36 -07002422/*
Christoph Lameter599870b2008-04-23 12:36:52 -07002423 * Attempt to free all partial slabs on a node.
Christoph Lameter81819f02007-05-06 14:49:36 -07002424 */
Christoph Lameter599870b2008-04-23 12:36:52 -07002425static void free_partial(struct kmem_cache *s, struct kmem_cache_node *n)
Christoph Lameter81819f02007-05-06 14:49:36 -07002426{
Christoph Lameter81819f02007-05-06 14:49:36 -07002427 unsigned long flags;
2428 struct page *page, *h;
2429
2430 spin_lock_irqsave(&n->list_lock, flags);
Christoph Lameter33b12c32008-04-25 12:22:43 -07002431 list_for_each_entry_safe(page, h, &n->partial, lru) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002432 if (!page->inuse) {
2433 list_del(&page->lru);
2434 discard_slab(s, page);
Christoph Lameter599870b2008-04-23 12:36:52 -07002435 n->nr_partial--;
Christoph Lameter33b12c32008-04-25 12:22:43 -07002436 } else {
2437 list_slab_objects(s, page,
2438 "Objects remaining on kmem_cache_close()");
Christoph Lameter599870b2008-04-23 12:36:52 -07002439 }
Christoph Lameter33b12c32008-04-25 12:22:43 -07002440 }
Christoph Lameter81819f02007-05-06 14:49:36 -07002441 spin_unlock_irqrestore(&n->list_lock, flags);
Christoph Lameter81819f02007-05-06 14:49:36 -07002442}
2443
2444/*
Christoph Lameter672bba32007-05-09 02:32:39 -07002445 * Release all resources used by a slab cache.
Christoph Lameter81819f02007-05-06 14:49:36 -07002446 */
Christoph Lameter0c710012007-07-17 04:03:24 -07002447static inline int kmem_cache_close(struct kmem_cache *s)
Christoph Lameter81819f02007-05-06 14:49:36 -07002448{
2449 int node;
2450
2451 flush_all(s);
2452
2453 /* Attempt to free all objects */
Christoph Lameter4c93c3552007-10-16 01:26:08 -07002454 free_kmem_cache_cpus(s);
Christoph Lameterf64dc582007-10-16 01:25:33 -07002455 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002456 struct kmem_cache_node *n = get_node(s, node);
2457
Christoph Lameter599870b2008-04-23 12:36:52 -07002458 free_partial(s, n);
2459 if (n->nr_partial || slabs_node(s, node))
Christoph Lameter81819f02007-05-06 14:49:36 -07002460 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 */
2470void 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);
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07002476 up_write(&slub_lock);
Pekka Enbergd629d812008-04-23 22:31:08 +03002477 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 }
Christoph Lameter81819f02007-05-06 14:49:36 -07002482 sysfs_slab_remove(s);
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07002483 } else
2484 up_write(&slub_lock);
Christoph Lameter81819f02007-05-06 14:49:36 -07002485}
2486EXPORT_SYMBOL(kmem_cache_destroy);
2487
2488/********************************************************************
2489 * Kmalloc subsystem
2490 *******************************************************************/
2491
Christoph Lameter331dc552008-02-14 14:28:09 -08002492struct kmem_cache kmalloc_caches[PAGE_SHIFT + 1] __cacheline_aligned;
Christoph Lameter81819f02007-05-06 14:49:36 -07002493EXPORT_SYMBOL(kmalloc_caches);
2494
Christoph Lameter81819f02007-05-06 14:49:36 -07002495static int __init setup_slub_min_order(char *str)
2496{
Pekka Enberg06428782008-01-07 23:20:27 -08002497 get_option(&str, &slub_min_order);
Christoph Lameter81819f02007-05-06 14:49:36 -07002498
2499 return 1;
2500}
2501
2502__setup("slub_min_order=", setup_slub_min_order);
2503
2504static int __init setup_slub_max_order(char *str)
2505{
Pekka Enberg06428782008-01-07 23:20:27 -08002506 get_option(&str, &slub_max_order);
Christoph Lameter81819f02007-05-06 14:49:36 -07002507
2508 return 1;
2509}
2510
2511__setup("slub_max_order=", setup_slub_max_order);
2512
2513static int __init setup_slub_min_objects(char *str)
2514{
Pekka Enberg06428782008-01-07 23:20:27 -08002515 get_option(&str, &slub_min_objects);
Christoph Lameter81819f02007-05-06 14:49:36 -07002516
2517 return 1;
2518}
2519
2520__setup("slub_min_objects=", setup_slub_min_objects);
2521
2522static 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
Christoph Lameter81819f02007-05-06 14:49:36 -07002530static 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,
Christoph Lameter319d1e22008-04-14 19:11:41 +03002540 flags, NULL))
Christoph Lameter81819f02007-05-06 14:49:36 -07002541 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
2549panic:
2550 panic("Creation of kmalloc slab %s size=%d failed.\n", name, size);
2551}
2552
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002553#ifdef CONFIG_ZONE_DMA
Christoph Lameter4097d602008-04-14 18:51:18 +03002554static struct kmem_cache *kmalloc_caches_dma[PAGE_SHIFT + 1];
Christoph Lameter1ceef402007-08-07 15:11:48 -07002555
2556static 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
2570static DECLARE_WORK(sysfs_add_work, sysfs_add_func);
2571
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002572static noinline struct kmem_cache *dma_kmalloc_cache(int index, gfp_t flags)
2573{
2574 struct kmem_cache *s;
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002575 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 */
Christoph Lameter1ceef402007-08-07 15:11:48 -07002583 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;
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002592
Christoph Lameter7b55f622007-07-17 04:03:27 -07002593 realsize = kmalloc_caches[index].objsize;
Ingo Molnar3adbefe2008-02-05 17:57:39 -08002594 text = kasprintf(flags & ~SLUB_DMA, "kmalloc_dma-%d",
2595 (unsigned int)realsize);
Christoph Lameter1ceef402007-08-07 15:11:48 -07002596 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;
Christoph Lameterdfce8642007-07-17 04:03:25 -07002604 }
Christoph Lameter1ceef402007-08-07 15:11:48 -07002605
2606 list_add(&s->list, &slab_caches);
2607 kmalloc_caches_dma[index] = s;
2608
2609 schedule_work(&sysfs_add_work);
2610
2611unlock_out:
Christoph Lameterdfce8642007-07-17 04:03:25 -07002612 up_write(&slub_lock);
Christoph Lameter1ceef402007-08-07 15:11:48 -07002613out:
Christoph Lameterdfce8642007-07-17 04:03:25 -07002614 return kmalloc_caches_dma[index];
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002615}
2616#endif
2617
Christoph Lameterf1b26332007-07-17 04:03:26 -07002618/*
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 */
2624static 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
Christoph Lameter81819f02007-05-06 14:49:36 -07002651static struct kmem_cache *get_slab(size_t size, gfp_t flags)
2652{
Christoph Lameterf1b26332007-07-17 04:03:26 -07002653 int index;
Christoph Lameter81819f02007-05-06 14:49:36 -07002654
Christoph Lameterf1b26332007-07-17 04:03:26 -07002655 if (size <= 192) {
2656 if (!size)
2657 return ZERO_SIZE_PTR;
Christoph Lameter81819f02007-05-06 14:49:36 -07002658
Christoph Lameterf1b26332007-07-17 04:03:26 -07002659 index = size_index[(size - 1) / 8];
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002660 } else
Christoph Lameterf1b26332007-07-17 04:03:26 -07002661 index = fls(size - 1);
Christoph Lameter81819f02007-05-06 14:49:36 -07002662
2663#ifdef CONFIG_ZONE_DMA
Christoph Lameterf1b26332007-07-17 04:03:26 -07002664 if (unlikely((flags & SLUB_DMA)))
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002665 return dma_kmalloc_cache(index, flags);
Christoph Lameterf1b26332007-07-17 04:03:26 -07002666
Christoph Lameter81819f02007-05-06 14:49:36 -07002667#endif
2668 return &kmalloc_caches[index];
2669}
2670
2671void *__kmalloc(size_t size, gfp_t flags)
2672{
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002673 struct kmem_cache *s;
Christoph Lameter81819f02007-05-06 14:49:36 -07002674
Christoph Lameter331dc552008-02-14 14:28:09 -08002675 if (unlikely(size > PAGE_SIZE))
Pekka Enbergeada35e2008-02-11 22:47:46 +02002676 return kmalloc_large(size, flags);
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002677
2678 s = get_slab(size, flags);
2679
2680 if (unlikely(ZERO_OR_NULL_PTR(s)))
Christoph Lameter6cb8f912007-07-17 04:03:22 -07002681 return s;
2682
Christoph Lameterce15fea2007-07-17 04:03:28 -07002683 return slab_alloc(s, flags, -1, __builtin_return_address(0));
Christoph Lameter81819f02007-05-06 14:49:36 -07002684}
2685EXPORT_SYMBOL(__kmalloc);
2686
Christoph Lameterf619cfe2008-03-01 13:56:40 -08002687static 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
Christoph Lameter81819f02007-05-06 14:49:36 -07002698#ifdef CONFIG_NUMA
2699void *__kmalloc_node(size_t size, gfp_t flags, int node)
2700{
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002701 struct kmem_cache *s;
Christoph Lameter81819f02007-05-06 14:49:36 -07002702
Christoph Lameter331dc552008-02-14 14:28:09 -08002703 if (unlikely(size > PAGE_SIZE))
Christoph Lameterf619cfe2008-03-01 13:56:40 -08002704 return kmalloc_large_node(size, flags, node);
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002705
2706 s = get_slab(size, flags);
2707
2708 if (unlikely(ZERO_OR_NULL_PTR(s)))
Christoph Lameter6cb8f912007-07-17 04:03:22 -07002709 return s;
2710
Christoph Lameterce15fea2007-07-17 04:03:28 -07002711 return slab_alloc(s, flags, node, __builtin_return_address(0));
Christoph Lameter81819f02007-05-06 14:49:36 -07002712}
2713EXPORT_SYMBOL(__kmalloc_node);
2714#endif
2715
2716size_t ksize(const void *object)
2717{
Christoph Lameter272c1d22007-06-08 13:46:49 -07002718 struct page *page;
Christoph Lameter81819f02007-05-06 14:49:36 -07002719 struct kmem_cache *s;
2720
Christoph Lameteref8b4522007-10-16 01:24:46 -07002721 if (unlikely(object == ZERO_SIZE_PTR))
Christoph Lameter272c1d22007-06-08 13:46:49 -07002722 return 0;
2723
Vegard Nossum294a80a2007-12-04 23:45:30 -08002724 page = virt_to_head_page(object);
Vegard Nossum294a80a2007-12-04 23:45:30 -08002725
2726 if (unlikely(!PageSlab(page)))
2727 return PAGE_SIZE << compound_order(page);
2728
Christoph Lameter81819f02007-05-06 14:49:36 -07002729 s = page->slab;
Christoph Lameter81819f02007-05-06 14:49:36 -07002730
Christoph Lameterae20bfd2008-02-15 23:45:25 -08002731#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter81819f02007-05-06 14:49:36 -07002732 /*
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
Christoph Lameterae20bfd2008-02-15 23:45:25 -08002739#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07002740 /*
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;
Christoph Lameter81819f02007-05-06 14:49:36 -07002747 /*
2748 * Else we can use all the padding etc for the allocation
2749 */
2750 return s->size;
2751}
2752EXPORT_SYMBOL(ksize);
2753
2754void kfree(const void *x)
2755{
Christoph Lameter81819f02007-05-06 14:49:36 -07002756 struct page *page;
Christoph Lameter5bb983b2008-02-07 17:47:41 -08002757 void *object = (void *)x;
Christoph Lameter81819f02007-05-06 14:49:36 -07002758
Satyam Sharma2408c552007-10-16 01:24:44 -07002759 if (unlikely(ZERO_OR_NULL_PTR(x)))
Christoph Lameter81819f02007-05-06 14:49:36 -07002760 return;
2761
Christoph Lameterb49af682007-05-06 14:49:41 -07002762 page = virt_to_head_page(x);
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002763 if (unlikely(!PageSlab(page))) {
2764 put_page(page);
2765 return;
2766 }
Christoph Lameter5bb983b2008-02-07 17:47:41 -08002767 slab_free(page->slab, page, object, __builtin_return_address(0));
Christoph Lameter81819f02007-05-06 14:49:36 -07002768}
2769EXPORT_SYMBOL(kfree);
2770
Christoph Lameter2086d262007-05-06 14:49:46 -07002771/*
Christoph Lameter672bba32007-05-09 02:32:39 -07002772 * 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.
Christoph Lameter2086d262007-05-06 14:49:46 -07002780 */
2781int 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;
Christoph Lameter205ab992008-04-14 19:11:40 +03002788 int objects = oo_objects(s->max);
Christoph Lameter2086d262007-05-06 14:49:46 -07002789 struct list_head *slabs_by_inuse =
Christoph Lameter834f3d12008-04-14 19:11:31 +03002790 kmalloc(sizeof(struct list_head) * objects, GFP_KERNEL);
Christoph Lameter2086d262007-05-06 14:49:46 -07002791 unsigned long flags;
2792
2793 if (!slabs_by_inuse)
2794 return -ENOMEM;
2795
2796 flush_all(s);
Christoph Lameterf64dc582007-10-16 01:25:33 -07002797 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter2086d262007-05-06 14:49:46 -07002798 n = get_node(s, node);
2799
2800 if (!n->nr_partial)
2801 continue;
2802
Christoph Lameter834f3d12008-04-14 19:11:31 +03002803 for (i = 0; i < objects; i++)
Christoph Lameter2086d262007-05-06 14:49:46 -07002804 INIT_LIST_HEAD(slabs_by_inuse + i);
2805
2806 spin_lock_irqsave(&n->list_lock, flags);
2807
2808 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07002809 * Build lists indexed by the items in use in each slab.
Christoph Lameter2086d262007-05-06 14:49:46 -07002810 *
Christoph Lameter672bba32007-05-09 02:32:39 -07002811 * Note that concurrent frees may occur while we hold the
2812 * list_lock. page->inuse here is the upper limit.
Christoph Lameter2086d262007-05-06 14:49:46 -07002813 */
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 {
Christoph Lameterfcda3d82007-07-30 13:06:46 -07002826 list_move(&page->lru,
2827 slabs_by_inuse + page->inuse);
Christoph Lameter2086d262007-05-06 14:49:46 -07002828 }
2829 }
2830
Christoph Lameter2086d262007-05-06 14:49:46 -07002831 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07002832 * Rebuild the partial list with the slabs filled up most
2833 * first and the least used slabs at the end.
Christoph Lameter2086d262007-05-06 14:49:46 -07002834 */
Christoph Lameter834f3d12008-04-14 19:11:31 +03002835 for (i = objects - 1; i >= 0; i--)
Christoph Lameter2086d262007-05-06 14:49:46 -07002836 list_splice(slabs_by_inuse + i, n->partial.prev);
2837
Christoph Lameter2086d262007-05-06 14:49:46 -07002838 spin_unlock_irqrestore(&n->list_lock, flags);
2839 }
2840
2841 kfree(slabs_by_inuse);
2842 return 0;
2843}
2844EXPORT_SYMBOL(kmem_cache_shrink);
2845
Yasunori Gotob9049e22007-10-21 16:41:37 -07002846#if defined(CONFIG_NUMA) && defined(CONFIG_MEMORY_HOTPLUG)
2847static 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
2859static 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 */
Christoph Lameter0f389ec2008-04-14 18:53:02 +03002885 BUG_ON(slabs_node(s, offline_node));
Yasunori Gotob9049e22007-10-21 16:41:37 -07002886
2887 s->node[offline_node] = NULL;
2888 kmem_cache_free(kmalloc_caches, n);
2889 }
2890 }
2891 up_read(&slub_lock);
2892}
2893
2894static 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 }
2929out:
2930 up_read(&slub_lock);
2931 return ret;
2932}
2933
2934static 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
Christoph Lameter81819f02007-05-06 14:49:36 -07002961/********************************************************************
2962 * Basic setup of slabs
2963 *******************************************************************/
2964
2965void __init kmem_cache_init(void)
2966{
2967 int i;
Christoph Lameter4b356be2007-06-16 10:16:13 -07002968 int caches = 0;
Christoph Lameter81819f02007-05-06 14:49:36 -07002969
Christoph Lameter4c93c3552007-10-16 01:26:08 -07002970 init_alloc_cpu();
2971
Christoph Lameter81819f02007-05-06 14:49:36 -07002972#ifdef CONFIG_NUMA
2973 /*
2974 * Must first have the slab cache available for the allocations of the
Christoph Lameter672bba32007-05-09 02:32:39 -07002975 * struct kmem_cache_node's. There is special bootstrap code in
Christoph Lameter81819f02007-05-06 14:49:36 -07002976 * 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);
Christoph Lameter8ffa6872007-05-31 00:40:51 -07002980 kmalloc_caches[0].refcount = -1;
Christoph Lameter4b356be2007-06-16 10:16:13 -07002981 caches++;
Yasunori Gotob9049e22007-10-21 16:41:37 -07002982
2983 hotplug_memory_notifier(slab_memory_callback, 1);
Christoph Lameter81819f02007-05-06 14:49:36 -07002984#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 */
Christoph Lameter4b356be2007-06-16 10:16:13 -07002990 if (KMALLOC_MIN_SIZE <= 64) {
2991 create_kmalloc_cache(&kmalloc_caches[1],
Christoph Lameter81819f02007-05-06 14:49:36 -07002992 "kmalloc-96", 96, GFP_KERNEL);
Christoph Lameter4b356be2007-06-16 10:16:13 -07002993 caches++;
2994 }
2995 if (KMALLOC_MIN_SIZE <= 128) {
2996 create_kmalloc_cache(&kmalloc_caches[2],
Christoph Lameter81819f02007-05-06 14:49:36 -07002997 "kmalloc-192", 192, GFP_KERNEL);
Christoph Lameter4b356be2007-06-16 10:16:13 -07002998 caches++;
2999 }
Christoph Lameter81819f02007-05-06 14:49:36 -07003000
Christoph Lameter331dc552008-02-14 14:28:09 -08003001 for (i = KMALLOC_SHIFT_LOW; i <= PAGE_SHIFT; i++) {
Christoph Lameter81819f02007-05-06 14:49:36 -07003002 create_kmalloc_cache(&kmalloc_caches[i],
3003 "kmalloc", 1 << i, GFP_KERNEL);
Christoph Lameter4b356be2007-06-16 10:16:13 -07003004 caches++;
3005 }
Christoph Lameter81819f02007-05-06 14:49:36 -07003006
Christoph Lameterf1b26332007-07-17 04:03:26 -07003007
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
Christoph Lameter6446faa2008-02-15 23:45:26 -08003011 * MIPS it seems. The standard arches will not generate any code here.
Christoph Lameterf1b26332007-07-17 04:03:26 -07003012 *
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
Christoph Lameter12ad6842007-07-17 04:03:28 -07003022 for (i = 8; i < KMALLOC_MIN_SIZE; i += 8)
Christoph Lameterf1b26332007-07-17 04:03:26 -07003023 size_index[(i - 1) / 8] = KMALLOC_SHIFT_LOW;
3024
Christoph Lameter81819f02007-05-06 14:49:36 -07003025 slab_state = UP;
3026
3027 /* Provide the correct kmalloc names now that the caches are up */
Christoph Lameter331dc552008-02-14 14:28:09 -08003028 for (i = KMALLOC_SHIFT_LOW; i <= PAGE_SHIFT; i++)
Christoph Lameter81819f02007-05-06 14:49:36 -07003029 kmalloc_caches[i]. name =
3030 kasprintf(GFP_KERNEL, "kmalloc-%d", 1 << i);
3031
3032#ifdef CONFIG_SMP
3033 register_cpu_notifier(&slab_notifier);
Christoph Lameter4c93c3552007-10-16 01:26:08 -07003034 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);
Christoph Lameter81819f02007-05-06 14:49:36 -07003038#endif
3039
Ingo Molnar3adbefe2008-02-05 17:57:39 -08003040 printk(KERN_INFO
3041 "SLUB: Genslabs=%d, HWalign=%d, Order=%d-%d, MinObjects=%d,"
Christoph Lameter4b356be2007-06-16 10:16:13 -07003042 " CPUs=%d, Nodes=%d\n",
3043 caches, cache_line_size(),
Christoph Lameter81819f02007-05-06 14:49:36 -07003044 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 */
3051static int slab_unmergeable(struct kmem_cache *s)
3052{
3053 if (slub_nomerge || (s->flags & SLUB_NEVER_MERGE))
3054 return 1;
3055
Christoph Lameterc59def92007-05-16 22:10:50 -07003056 if (s->ctor)
Christoph Lameter81819f02007-05-06 14:49:36 -07003057 return 1;
3058
Christoph Lameter8ffa6872007-05-31 00:40:51 -07003059 /*
3060 * We may have set a slab to be unmergeable during bootstrap.
3061 */
3062 if (s->refcount < 0)
3063 return 1;
3064
Christoph Lameter81819f02007-05-06 14:49:36 -07003065 return 0;
3066}
3067
3068static struct kmem_cache *find_mergeable(size_t size,
Christoph Lameterba0268a2007-09-11 15:24:11 -07003069 size_t align, unsigned long flags, const char *name,
Christoph Lameter4ba9b9d2007-10-16 23:25:51 -07003070 void (*ctor)(struct kmem_cache *, void *))
Christoph Lameter81819f02007-05-06 14:49:36 -07003071{
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07003072 struct kmem_cache *s;
Christoph Lameter81819f02007-05-06 14:49:36 -07003073
3074 if (slub_nomerge || (flags & SLUB_NEVER_MERGE))
3075 return NULL;
3076
Christoph Lameterc59def92007-05-16 22:10:50 -07003077 if (ctor)
Christoph Lameter81819f02007-05-06 14:49:36 -07003078 return NULL;
3079
3080 size = ALIGN(size, sizeof(void *));
3081 align = calculate_alignment(flags, align, size);
3082 size = ALIGN(size, align);
Christoph Lameterba0268a2007-09-11 15:24:11 -07003083 flags = kmem_cache_flags(size, flags, name, NULL);
Christoph Lameter81819f02007-05-06 14:49:36 -07003084
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07003085 list_for_each_entry(s, &slab_caches, list) {
Christoph Lameter81819f02007-05-06 14:49:36 -07003086 if (slab_unmergeable(s))
3087 continue;
3088
3089 if (size > s->size)
3090 continue;
3091
Christoph Lameterba0268a2007-09-11 15:24:11 -07003092 if ((flags & SLUB_MERGE_SAME) != (s->flags & SLUB_MERGE_SAME))
Christoph Lameter81819f02007-05-06 14:49:36 -07003093 continue;
3094 /*
3095 * Check if alignment is compatible.
3096 * Courtesy of Adrian Drzewiecki
3097 */
Pekka Enberg06428782008-01-07 23:20:27 -08003098 if ((s->size & ~(align - 1)) != s->size)
Christoph Lameter81819f02007-05-06 14:49:36 -07003099 continue;
3100
3101 if (s->size - size >= sizeof(void *))
3102 continue;
3103
3104 return s;
3105 }
3106 return NULL;
3107}
3108
3109struct kmem_cache *kmem_cache_create(const char *name, size_t size,
3110 size_t align, unsigned long flags,
Christoph Lameter4ba9b9d2007-10-16 23:25:51 -07003111 void (*ctor)(struct kmem_cache *, void *))
Christoph Lameter81819f02007-05-06 14:49:36 -07003112{
3113 struct kmem_cache *s;
3114
3115 down_write(&slub_lock);
Christoph Lameterba0268a2007-09-11 15:24:11 -07003116 s = find_mergeable(size, align, flags, name, ctor);
Christoph Lameter81819f02007-05-06 14:49:36 -07003117 if (s) {
Christoph Lameter42a9fdb2007-10-16 01:26:09 -07003118 int cpu;
3119
Christoph Lameter81819f02007-05-06 14:49:36 -07003120 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);
Christoph Lameter42a9fdb2007-10-16 01:26:09 -07003126
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;
Christoph Lameter6446faa2008-02-15 23:45:26 -08003133
Christoph Lameter81819f02007-05-06 14:49:36 -07003134 s->inuse = max_t(int, s->inuse, ALIGN(size, sizeof(void *)));
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07003135 up_write(&slub_lock);
Christoph Lameter6446faa2008-02-15 23:45:26 -08003136
Christoph Lameter81819f02007-05-06 14:49:36 -07003137 if (sysfs_slab_alias(s, name))
3138 goto err;
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07003139 return s;
3140 }
Christoph Lameter6446faa2008-02-15 23:45:26 -08003141
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07003142 s = kmalloc(kmem_size, GFP_KERNEL);
3143 if (s) {
3144 if (kmem_cache_open(s, GFP_KERNEL, name,
Christoph Lameterc59def92007-05-16 22:10:50 -07003145 size, align, flags, ctor)) {
Christoph Lameter81819f02007-05-06 14:49:36 -07003146 list_add(&s->list, &slab_caches);
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07003147 up_write(&slub_lock);
3148 if (sysfs_slab_add(s))
3149 goto err;
3150 return s;
3151 }
3152 kfree(s);
Christoph Lameter81819f02007-05-06 14:49:36 -07003153 }
3154 up_write(&slub_lock);
Christoph Lameter81819f02007-05-06 14:49:36 -07003155
3156err:
Christoph Lameter81819f02007-05-06 14:49:36 -07003157 if (flags & SLAB_PANIC)
3158 panic("Cannot create slabcache %s\n", name);
3159 else
3160 s = NULL;
3161 return s;
3162}
3163EXPORT_SYMBOL(kmem_cache_create);
3164
Christoph Lameter81819f02007-05-06 14:49:36 -07003165#ifdef CONFIG_SMP
Christoph Lameter27390bc2007-06-01 00:47:09 -07003166/*
Christoph Lameter672bba32007-05-09 02:32:39 -07003167 * Use the cpu notifier to insure that the cpu slabs are flushed when
3168 * necessary.
Christoph Lameter81819f02007-05-06 14:49:36 -07003169 */
3170static int __cpuinit slab_cpuup_callback(struct notifier_block *nfb,
3171 unsigned long action, void *hcpu)
3172{
3173 long cpu = (long)hcpu;
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07003174 struct kmem_cache *s;
3175 unsigned long flags;
Christoph Lameter81819f02007-05-06 14:49:36 -07003176
3177 switch (action) {
Christoph Lameter4c93c3552007-10-16 01:26:08 -07003178 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
Christoph Lameter81819f02007-05-06 14:49:36 -07003188 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07003189 case CPU_UP_CANCELED_FROZEN:
Christoph Lameter81819f02007-05-06 14:49:36 -07003190 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07003191 case CPU_DEAD_FROZEN:
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07003192 down_read(&slub_lock);
3193 list_for_each_entry(s, &slab_caches, list) {
Christoph Lameter4c93c3552007-10-16 01:26:08 -07003194 struct kmem_cache_cpu *c = get_cpu_slab(s, cpu);
3195
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07003196 local_irq_save(flags);
3197 __flush_cpu_slab(s, cpu);
3198 local_irq_restore(flags);
Christoph Lameter4c93c3552007-10-16 01:26:08 -07003199 free_kmem_cache_cpu(c, cpu);
3200 s->cpu_slab[cpu] = NULL;
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07003201 }
3202 up_read(&slub_lock);
Christoph Lameter81819f02007-05-06 14:49:36 -07003203 break;
3204 default:
3205 break;
3206 }
3207 return NOTIFY_OK;
3208}
3209
Pekka Enberg06428782008-01-07 23:20:27 -08003210static struct notifier_block __cpuinitdata slab_notifier = {
Ingo Molnar3adbefe2008-02-05 17:57:39 -08003211 .notifier_call = slab_cpuup_callback
Pekka Enberg06428782008-01-07 23:20:27 -08003212};
Christoph Lameter81819f02007-05-06 14:49:36 -07003213
3214#endif
3215
Christoph Lameter81819f02007-05-06 14:49:36 -07003216void *__kmalloc_track_caller(size_t size, gfp_t gfpflags, void *caller)
3217{
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003218 struct kmem_cache *s;
3219
Christoph Lameter331dc552008-02-14 14:28:09 -08003220 if (unlikely(size > PAGE_SIZE))
Pekka Enbergeada35e2008-02-11 22:47:46 +02003221 return kmalloc_large(size, gfpflags);
3222
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003223 s = get_slab(size, gfpflags);
Christoph Lameter81819f02007-05-06 14:49:36 -07003224
Satyam Sharma2408c552007-10-16 01:24:44 -07003225 if (unlikely(ZERO_OR_NULL_PTR(s)))
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003226 return s;
Christoph Lameter81819f02007-05-06 14:49:36 -07003227
Christoph Lameterce15fea2007-07-17 04:03:28 -07003228 return slab_alloc(s, gfpflags, -1, caller);
Christoph Lameter81819f02007-05-06 14:49:36 -07003229}
3230
3231void *__kmalloc_node_track_caller(size_t size, gfp_t gfpflags,
3232 int node, void *caller)
3233{
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003234 struct kmem_cache *s;
3235
Christoph Lameter331dc552008-02-14 14:28:09 -08003236 if (unlikely(size > PAGE_SIZE))
Christoph Lameterf619cfe2008-03-01 13:56:40 -08003237 return kmalloc_large_node(size, gfpflags, node);
Pekka Enbergeada35e2008-02-11 22:47:46 +02003238
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003239 s = get_slab(size, gfpflags);
Christoph Lameter81819f02007-05-06 14:49:36 -07003240
Satyam Sharma2408c552007-10-16 01:24:44 -07003241 if (unlikely(ZERO_OR_NULL_PTR(s)))
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003242 return s;
Christoph Lameter81819f02007-05-06 14:49:36 -07003243
Christoph Lameterce15fea2007-07-17 04:03:28 -07003244 return slab_alloc(s, gfpflags, node, caller);
Christoph Lameter81819f02007-05-06 14:49:36 -07003245}
3246
Christoph Lameter5b06c8532008-04-14 18:51:34 +03003247#if (defined(CONFIG_SYSFS) && defined(CONFIG_SLUB_DEBUG)) || defined(CONFIG_SLABINFO)
Christoph Lameter205ab992008-04-14 19:11:40 +03003248static unsigned long count_partial(struct kmem_cache_node *n,
3249 int (*get_count)(struct page *))
Christoph Lameter5b06c8532008-04-14 18:51:34 +03003250{
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)
Christoph Lameter205ab992008-04-14 19:11:40 +03003257 x += get_count(page);
Christoph Lameter5b06c8532008-04-14 18:51:34 +03003258 spin_unlock_irqrestore(&n->list_lock, flags);
3259 return x;
3260}
Christoph Lameter205ab992008-04-14 19:11:40 +03003261
3262static int count_inuse(struct page *page)
3263{
3264 return page->inuse;
3265}
3266
3267static int count_total(struct page *page)
3268{
3269 return page->objects;
3270}
3271
3272static int count_free(struct page *page)
3273{
3274 return page->objects - page->inuse;
3275}
Christoph Lameter5b06c8532008-04-14 18:51:34 +03003276#endif
3277
Christoph Lameter41ecc552007-05-09 02:32:44 -07003278#if defined(CONFIG_SYSFS) && defined(CONFIG_SLUB_DEBUG)
Christoph Lameter434e2452007-07-17 04:03:30 -07003279static int validate_slab(struct kmem_cache *s, struct page *page,
3280 unsigned long *map)
Christoph Lameter53e15af2007-05-06 14:49:43 -07003281{
3282 void *p;
Christoph Lametera973e9d2008-03-01 13:40:44 -08003283 void *addr = page_address(page);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003284
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 */
Christoph Lameter39b26462008-04-14 19:11:30 +03003290 bitmap_zero(map, page->objects);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003291
Christoph Lameter7656c722007-05-09 02:32:40 -07003292 for_each_free_object(p, s, page->freelist) {
3293 set_bit(slab_index(p, s, addr), map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003294 if (!check_object(s, page, p, 0))
3295 return 0;
3296 }
3297
Christoph Lameter224a88b2008-04-14 19:11:31 +03003298 for_each_object(p, s, addr, page->objects)
Christoph Lameter7656c722007-05-09 02:32:40 -07003299 if (!test_bit(slab_index(p, s, addr), map))
Christoph Lameter53e15af2007-05-06 14:49:43 -07003300 if (!check_object(s, page, p, 1))
3301 return 0;
3302 return 1;
3303}
3304
Christoph Lameter434e2452007-07-17 04:03:30 -07003305static void validate_slab_slab(struct kmem_cache *s, struct page *page,
3306 unsigned long *map)
Christoph Lameter53e15af2007-05-06 14:49:43 -07003307{
3308 if (slab_trylock(page)) {
Christoph Lameter434e2452007-07-17 04:03:30 -07003309 validate_slab(s, page, map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003310 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) {
Christoph Lameter35e5d7e2007-05-09 02:32:42 -07003316 if (!SlabDebug(page))
3317 printk(KERN_ERR "SLUB %s: SlabDebug not set "
Christoph Lameter53e15af2007-05-06 14:49:43 -07003318 "on slab 0x%p\n", s->name, page);
3319 } else {
Christoph Lameter35e5d7e2007-05-09 02:32:42 -07003320 if (SlabDebug(page))
3321 printk(KERN_ERR "SLUB %s: SlabDebug set on "
Christoph Lameter53e15af2007-05-06 14:49:43 -07003322 "slab 0x%p\n", s->name, page);
3323 }
3324}
3325
Christoph Lameter434e2452007-07-17 04:03:30 -07003326static int validate_slab_node(struct kmem_cache *s,
3327 struct kmem_cache_node *n, unsigned long *map)
Christoph Lameter53e15af2007-05-06 14:49:43 -07003328{
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) {
Christoph Lameter434e2452007-07-17 04:03:30 -07003336 validate_slab_slab(s, page, map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003337 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) {
Christoph Lameter434e2452007-07-17 04:03:30 -07003347 validate_slab_slab(s, page, map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003348 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
3355out:
3356 spin_unlock_irqrestore(&n->list_lock, flags);
3357 return count;
3358}
3359
Christoph Lameter434e2452007-07-17 04:03:30 -07003360static long validate_slab_cache(struct kmem_cache *s)
Christoph Lameter53e15af2007-05-06 14:49:43 -07003361{
3362 int node;
3363 unsigned long count = 0;
Christoph Lameter205ab992008-04-14 19:11:40 +03003364 unsigned long *map = kmalloc(BITS_TO_LONGS(oo_objects(s->max)) *
Christoph Lameter434e2452007-07-17 04:03:30 -07003365 sizeof(unsigned long), GFP_KERNEL);
3366
3367 if (!map)
3368 return -ENOMEM;
Christoph Lameter53e15af2007-05-06 14:49:43 -07003369
3370 flush_all(s);
Christoph Lameterf64dc582007-10-16 01:25:33 -07003371 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter53e15af2007-05-06 14:49:43 -07003372 struct kmem_cache_node *n = get_node(s, node);
3373
Christoph Lameter434e2452007-07-17 04:03:30 -07003374 count += validate_slab_node(s, n, map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003375 }
Christoph Lameter434e2452007-07-17 04:03:30 -07003376 kfree(map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003377 return count;
3378}
3379
Christoph Lameterb3459702007-05-09 02:32:41 -07003380#ifdef SLUB_RESILIENCY_TEST
3381static 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"
Ingo Molnar3adbefe2008-02-05 17:57:39 -08003400 " 0x34 -> -0x%p\n", p);
3401 printk(KERN_ERR
3402 "If allocated object is overwritten then not detectable\n\n");
Christoph Lameterb3459702007-05-09 02:32:41 -07003403
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);
Ingo Molnar3adbefe2008-02-05 17:57:39 -08003410 printk(KERN_ERR
3411 "If allocated object is overwritten then not detectable\n\n");
Christoph Lameterb3459702007-05-09 02:32:41 -07003412 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;
Ingo Molnar3adbefe2008-02-05 17:57:39 -08003424 printk(KERN_ERR "\n2. kmalloc-256: Clobber 50th byte 0x9a->0x%p\n\n",
3425 p);
Christoph Lameterb3459702007-05-09 02:32:41 -07003426 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
3435static void resiliency_test(void) {};
3436#endif
3437
Christoph Lameter88a420e2007-05-06 14:49:45 -07003438/*
Christoph Lameter672bba32007-05-09 02:32:39 -07003439 * Generate lists of code addresses where slabcache objects are allocated
Christoph Lameter88a420e2007-05-06 14:49:45 -07003440 * and freed.
3441 */
3442
3443struct location {
3444 unsigned long count;
3445 void *addr;
Christoph Lameter45edfa52007-05-09 02:32:45 -07003446 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;
Christoph Lameter88a420e2007-05-06 14:49:45 -07003453};
3454
3455struct loc_track {
3456 unsigned long max;
3457 unsigned long count;
3458 struct location *loc;
3459};
3460
3461static 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
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003468static int alloc_loc_track(struct loc_track *t, unsigned long max, gfp_t flags)
Christoph Lameter88a420e2007-05-06 14:49:45 -07003469{
3470 struct location *l;
3471 int order;
3472
Christoph Lameter88a420e2007-05-06 14:49:45 -07003473 order = get_order(sizeof(struct location) * max);
3474
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003475 l = (void *)__get_free_pages(flags, order);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003476 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
3488static int add_location(struct loc_track *t, struct kmem_cache *s,
Christoph Lameter45edfa52007-05-09 02:32:45 -07003489 const struct track *track)
Christoph Lameter88a420e2007-05-06 14:49:45 -07003490{
3491 long start, end, pos;
3492 struct location *l;
3493 void *caddr;
Christoph Lameter45edfa52007-05-09 02:32:45 -07003494 unsigned long age = jiffies - track->when;
Christoph Lameter88a420e2007-05-06 14:49:45 -07003495
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;
Christoph Lameter45edfa52007-05-09 02:32:45 -07003510 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);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003529 return 1;
3530 }
3531
Christoph Lameter45edfa52007-05-09 02:32:45 -07003532 if (track->addr < caddr)
Christoph Lameter88a420e2007-05-06 14:49:45 -07003533 end = pos;
3534 else
3535 start = pos;
3536 }
3537
3538 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07003539 * Not found. Insert new tracking element.
Christoph Lameter88a420e2007-05-06 14:49:45 -07003540 */
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003541 if (t->count >= t->max && !alloc_loc_track(t, 2 * t->max, GFP_ATOMIC))
Christoph Lameter88a420e2007-05-06 14:49:45 -07003542 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;
Christoph Lameter45edfa52007-05-09 02:32:45 -07003550 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);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003560 return 1;
3561}
3562
3563static void process_slab(struct loc_track *t, struct kmem_cache *s,
3564 struct page *page, enum track_item alloc)
3565{
Christoph Lametera973e9d2008-03-01 13:40:44 -08003566 void *addr = page_address(page);
Christoph Lameter39b26462008-04-14 19:11:30 +03003567 DECLARE_BITMAP(map, page->objects);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003568 void *p;
3569
Christoph Lameter39b26462008-04-14 19:11:30 +03003570 bitmap_zero(map, page->objects);
Christoph Lameter7656c722007-05-09 02:32:40 -07003571 for_each_free_object(p, s, page->freelist)
3572 set_bit(slab_index(p, s, addr), map);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003573
Christoph Lameter224a88b2008-04-14 19:11:31 +03003574 for_each_object(p, s, addr, page->objects)
Christoph Lameter45edfa52007-05-09 02:32:45 -07003575 if (!test_bit(slab_index(p, s, addr), map))
3576 add_location(t, s, get_track(s, p, alloc));
Christoph Lameter88a420e2007-05-06 14:49:45 -07003577}
3578
3579static int list_locations(struct kmem_cache *s, char *buf,
3580 enum track_item alloc)
3581{
Harvey Harrisone374d482008-01-31 15:20:50 -08003582 int len = 0;
Christoph Lameter88a420e2007-05-06 14:49:45 -07003583 unsigned long i;
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003584 struct loc_track t = { 0, 0, NULL };
Christoph Lameter88a420e2007-05-06 14:49:45 -07003585 int node;
3586
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003587 if (!alloc_loc_track(&t, PAGE_SIZE / sizeof(struct location),
Andrew Mortonea3061d2007-10-16 01:26:09 -07003588 GFP_TEMPORARY))
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003589 return sprintf(buf, "Out of memory\n");
Christoph Lameter88a420e2007-05-06 14:49:45 -07003590
3591 /* Push back cpu slabs */
3592 flush_all(s);
3593
Christoph Lameterf64dc582007-10-16 01:25:33 -07003594 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter88a420e2007-05-06 14:49:45 -07003595 struct kmem_cache_node *n = get_node(s, node);
3596 unsigned long flags;
3597 struct page *page;
3598
Christoph Lameter9e869432007-08-22 14:01:56 -07003599 if (!atomic_long_read(&n->nr_slabs))
Christoph Lameter88a420e2007-05-06 14:49:45 -07003600 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++) {
Christoph Lameter45edfa52007-05-09 02:32:45 -07003611 struct location *l = &t.loc[i];
Christoph Lameter88a420e2007-05-06 14:49:45 -07003612
Harvey Harrisone374d482008-01-31 15:20:50 -08003613 if (len > PAGE_SIZE - 100)
Christoph Lameter88a420e2007-05-06 14:49:45 -07003614 break;
Harvey Harrisone374d482008-01-31 15:20:50 -08003615 len += sprintf(buf + len, "%7ld ", l->count);
Christoph Lameter45edfa52007-05-09 02:32:45 -07003616
3617 if (l->addr)
Harvey Harrisone374d482008-01-31 15:20:50 -08003618 len += sprint_symbol(buf + len, (unsigned long)l->addr);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003619 else
Harvey Harrisone374d482008-01-31 15:20:50 -08003620 len += sprintf(buf + len, "<not-available>");
Christoph Lameter45edfa52007-05-09 02:32:45 -07003621
3622 if (l->sum_time != l->min_time) {
3623 unsigned long remainder;
3624
Harvey Harrisone374d482008-01-31 15:20:50 -08003625 len += sprintf(buf + len, " age=%ld/%ld/%ld",
Christoph Lameter45edfa52007-05-09 02:32:45 -07003626 l->min_time,
3627 div_long_long_rem(l->sum_time, l->count, &remainder),
3628 l->max_time);
3629 } else
Harvey Harrisone374d482008-01-31 15:20:50 -08003630 len += sprintf(buf + len, " age=%ld",
Christoph Lameter45edfa52007-05-09 02:32:45 -07003631 l->min_time);
3632
3633 if (l->min_pid != l->max_pid)
Harvey Harrisone374d482008-01-31 15:20:50 -08003634 len += sprintf(buf + len, " pid=%ld-%ld",
Christoph Lameter45edfa52007-05-09 02:32:45 -07003635 l->min_pid, l->max_pid);
3636 else
Harvey Harrisone374d482008-01-31 15:20:50 -08003637 len += sprintf(buf + len, " pid=%ld",
Christoph Lameter45edfa52007-05-09 02:32:45 -07003638 l->min_pid);
3639
Christoph Lameter84966342007-06-23 17:16:32 -07003640 if (num_online_cpus() > 1 && !cpus_empty(l->cpus) &&
Harvey Harrisone374d482008-01-31 15:20:50 -08003641 len < PAGE_SIZE - 60) {
3642 len += sprintf(buf + len, " cpus=");
3643 len += cpulist_scnprintf(buf + len, PAGE_SIZE - len - 50,
Christoph Lameter45edfa52007-05-09 02:32:45 -07003644 l->cpus);
3645 }
3646
Christoph Lameter84966342007-06-23 17:16:32 -07003647 if (num_online_nodes() > 1 && !nodes_empty(l->nodes) &&
Harvey Harrisone374d482008-01-31 15:20:50 -08003648 len < PAGE_SIZE - 60) {
3649 len += sprintf(buf + len, " nodes=");
3650 len += nodelist_scnprintf(buf + len, PAGE_SIZE - len - 50,
Christoph Lameter45edfa52007-05-09 02:32:45 -07003651 l->nodes);
3652 }
3653
Harvey Harrisone374d482008-01-31 15:20:50 -08003654 len += sprintf(buf + len, "\n");
Christoph Lameter88a420e2007-05-06 14:49:45 -07003655 }
3656
3657 free_loc_track(&t);
3658 if (!t.count)
Harvey Harrisone374d482008-01-31 15:20:50 -08003659 len += sprintf(buf, "No data\n");
3660 return len;
Christoph Lameter88a420e2007-05-06 14:49:45 -07003661}
3662
Christoph Lameter81819f02007-05-06 14:49:36 -07003663enum slab_stat_type {
Christoph Lameter205ab992008-04-14 19:11:40 +03003664 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 */
Christoph Lameter81819f02007-05-06 14:49:36 -07003669};
3670
Christoph Lameter205ab992008-04-14 19:11:40 +03003671#define SO_ALL (1 << SL_ALL)
Christoph Lameter81819f02007-05-06 14:49:36 -07003672#define SO_PARTIAL (1 << SL_PARTIAL)
3673#define SO_CPU (1 << SL_CPU)
3674#define SO_OBJECTS (1 << SL_OBJECTS)
Christoph Lameter205ab992008-04-14 19:11:40 +03003675#define SO_TOTAL (1 << SL_TOTAL)
Christoph Lameter81819f02007-05-06 14:49:36 -07003676
Cyrill Gorcunov62e5c4b2008-03-02 23:28:24 +03003677static ssize_t show_slab_objects(struct kmem_cache *s,
3678 char *buf, unsigned long flags)
Christoph Lameter81819f02007-05-06 14:49:36 -07003679{
3680 unsigned long total = 0;
Christoph Lameter81819f02007-05-06 14:49:36 -07003681 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);
Cyrill Gorcunov62e5c4b2008-03-02 23:28:24 +03003687 if (!nodes)
3688 return -ENOMEM;
Christoph Lameter81819f02007-05-06 14:49:36 -07003689 per_cpu = nodes + nr_node_ids;
3690
Christoph Lameter205ab992008-04-14 19:11:40 +03003691 if (flags & SO_CPU) {
3692 int cpu;
Christoph Lameter81819f02007-05-06 14:49:36 -07003693
Christoph Lameter205ab992008-04-14 19:11:40 +03003694 for_each_possible_cpu(cpu) {
3695 struct kmem_cache_cpu *c = get_cpu_slab(s, cpu);
Christoph Lameterdfb4f092007-10-16 01:26:05 -07003696
Christoph Lameter205ab992008-04-14 19:11:40 +03003697 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;
Christoph Lameter81819f02007-05-06 14:49:36 -07003705 else
3706 x = 1;
Christoph Lameter205ab992008-04-14 19:11:40 +03003707
Christoph Lameter81819f02007-05-06 14:49:36 -07003708 total += x;
Christoph Lameter205ab992008-04-14 19:11:40 +03003709 nodes[c->node] += x;
Christoph Lameter81819f02007-05-06 14:49:36 -07003710 }
Christoph Lameter205ab992008-04-14 19:11:40 +03003711 per_cpu[c->node]++;
Christoph Lameter81819f02007-05-06 14:49:36 -07003712 }
3713 }
3714
Christoph Lameter205ab992008-04-14 19:11:40 +03003715 if (flags & SO_ALL) {
3716 for_each_node_state(node, N_NORMAL_MEMORY) {
3717 struct kmem_cache_node *n = get_node(s, node);
Christoph Lameter81819f02007-05-06 14:49:36 -07003718
Christoph Lameter205ab992008-04-14 19:11:40 +03003719 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);
Christoph Lameter81819f02007-05-06 14:49:36 -07003739 else
3740 x = n->nr_partial;
3741 total += x;
3742 nodes[node] += x;
3743 }
Christoph Lameter81819f02007-05-06 14:49:36 -07003744 }
Christoph Lameter81819f02007-05-06 14:49:36 -07003745 x = sprintf(buf, "%lu", total);
3746#ifdef CONFIG_NUMA
Christoph Lameterf64dc582007-10-16 01:25:33 -07003747 for_each_node_state(node, N_NORMAL_MEMORY)
Christoph Lameter81819f02007-05-06 14:49:36 -07003748 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
3756static int any_slab_objects(struct kmem_cache *s)
3757{
3758 int node;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07003759
3760 for_each_online_node(node) {
Christoph Lameter81819f02007-05-06 14:49:36 -07003761 struct kmem_cache_node *n = get_node(s, node);
3762
Christoph Lameterdfb4f092007-10-16 01:26:05 -07003763 if (!n)
3764 continue;
3765
Christoph Lameter31d33ba2008-04-14 19:11:41 +03003766 if (atomic_read(&n->total_objects))
Christoph Lameter81819f02007-05-06 14:49:36 -07003767 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
3775struct 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
Christoph Lameter81819f02007-05-06 14:49:36 -07003788static ssize_t slab_size_show(struct kmem_cache *s, char *buf)
3789{
3790 return sprintf(buf, "%d\n", s->size);
3791}
3792SLAB_ATTR_RO(slab_size);
3793
3794static ssize_t align_show(struct kmem_cache *s, char *buf)
3795{
3796 return sprintf(buf, "%d\n", s->align);
3797}
3798SLAB_ATTR_RO(align);
3799
3800static ssize_t object_size_show(struct kmem_cache *s, char *buf)
3801{
3802 return sprintf(buf, "%d\n", s->objsize);
3803}
3804SLAB_ATTR_RO(object_size);
3805
3806static ssize_t objs_per_slab_show(struct kmem_cache *s, char *buf)
3807{
Christoph Lameter834f3d12008-04-14 19:11:31 +03003808 return sprintf(buf, "%d\n", oo_objects(s->oo));
Christoph Lameter81819f02007-05-06 14:49:36 -07003809}
3810SLAB_ATTR_RO(objs_per_slab);
3811
Christoph Lameter06b285d2008-04-14 19:11:41 +03003812static 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
Christoph Lameter81819f02007-05-06 14:49:36 -07003824static ssize_t order_show(struct kmem_cache *s, char *buf)
3825{
Christoph Lameter834f3d12008-04-14 19:11:31 +03003826 return sprintf(buf, "%d\n", oo_order(s->oo));
Christoph Lameter81819f02007-05-06 14:49:36 -07003827}
Christoph Lameter06b285d2008-04-14 19:11:41 +03003828SLAB_ATTR(order);
Christoph Lameter81819f02007-05-06 14:49:36 -07003829
3830static 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}
3839SLAB_ATTR_RO(ctor);
3840
Christoph Lameter81819f02007-05-06 14:49:36 -07003841static ssize_t aliases_show(struct kmem_cache *s, char *buf)
3842{
3843 return sprintf(buf, "%d\n", s->refcount - 1);
3844}
3845SLAB_ATTR_RO(aliases);
3846
3847static ssize_t slabs_show(struct kmem_cache *s, char *buf)
3848{
Christoph Lameter205ab992008-04-14 19:11:40 +03003849 return show_slab_objects(s, buf, SO_ALL);
Christoph Lameter81819f02007-05-06 14:49:36 -07003850}
3851SLAB_ATTR_RO(slabs);
3852
3853static ssize_t partial_show(struct kmem_cache *s, char *buf)
3854{
Christoph Lameterd9acf4b2008-02-15 15:22:21 -08003855 return show_slab_objects(s, buf, SO_PARTIAL);
Christoph Lameter81819f02007-05-06 14:49:36 -07003856}
3857SLAB_ATTR_RO(partial);
3858
3859static ssize_t cpu_slabs_show(struct kmem_cache *s, char *buf)
3860{
Christoph Lameterd9acf4b2008-02-15 15:22:21 -08003861 return show_slab_objects(s, buf, SO_CPU);
Christoph Lameter81819f02007-05-06 14:49:36 -07003862}
3863SLAB_ATTR_RO(cpu_slabs);
3864
3865static ssize_t objects_show(struct kmem_cache *s, char *buf)
3866{
Christoph Lameter205ab992008-04-14 19:11:40 +03003867 return show_slab_objects(s, buf, SO_ALL|SO_OBJECTS);
Christoph Lameter81819f02007-05-06 14:49:36 -07003868}
3869SLAB_ATTR_RO(objects);
3870
Christoph Lameter205ab992008-04-14 19:11:40 +03003871static ssize_t objects_partial_show(struct kmem_cache *s, char *buf)
3872{
3873 return show_slab_objects(s, buf, SO_PARTIAL|SO_OBJECTS);
3874}
3875SLAB_ATTR_RO(objects_partial);
3876
3877static ssize_t total_objects_show(struct kmem_cache *s, char *buf)
3878{
3879 return show_slab_objects(s, buf, SO_ALL|SO_TOTAL);
3880}
3881SLAB_ATTR_RO(total_objects);
3882
Christoph Lameter81819f02007-05-06 14:49:36 -07003883static 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
3888static 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}
3896SLAB_ATTR(sanity_checks);
3897
3898static ssize_t trace_show(struct kmem_cache *s, char *buf)
3899{
3900 return sprintf(buf, "%d\n", !!(s->flags & SLAB_TRACE));
3901}
3902
3903static 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}
3911SLAB_ATTR(trace);
3912
3913static 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
3918static 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}
3926SLAB_ATTR(reclaim_account);
3927
3928static ssize_t hwcache_align_show(struct kmem_cache *s, char *buf)
3929{
Christoph Lameter5af60832007-05-06 14:49:56 -07003930 return sprintf(buf, "%d\n", !!(s->flags & SLAB_HWCACHE_ALIGN));
Christoph Lameter81819f02007-05-06 14:49:36 -07003931}
3932SLAB_ATTR_RO(hwcache_align);
3933
3934#ifdef CONFIG_ZONE_DMA
3935static ssize_t cache_dma_show(struct kmem_cache *s, char *buf)
3936{
3937 return sprintf(buf, "%d\n", !!(s->flags & SLAB_CACHE_DMA));
3938}
3939SLAB_ATTR_RO(cache_dma);
3940#endif
3941
3942static 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}
3946SLAB_ATTR_RO(destroy_by_rcu);
3947
3948static 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
3953static 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;
Christoph Lameter06b285d2008-04-14 19:11:41 +03003962 calculate_sizes(s, -1);
Christoph Lameter81819f02007-05-06 14:49:36 -07003963 return length;
3964}
3965SLAB_ATTR(red_zone);
3966
3967static ssize_t poison_show(struct kmem_cache *s, char *buf)
3968{
3969 return sprintf(buf, "%d\n", !!(s->flags & SLAB_POISON));
3970}
3971
3972static 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;
Christoph Lameter06b285d2008-04-14 19:11:41 +03003981 calculate_sizes(s, -1);
Christoph Lameter81819f02007-05-06 14:49:36 -07003982 return length;
3983}
3984SLAB_ATTR(poison);
3985
3986static 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
3991static 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;
Christoph Lameter06b285d2008-04-14 19:11:41 +03004000 calculate_sizes(s, -1);
Christoph Lameter81819f02007-05-06 14:49:36 -07004001 return length;
4002}
4003SLAB_ATTR(store_user);
4004
Christoph Lameter53e15af2007-05-06 14:49:43 -07004005static ssize_t validate_show(struct kmem_cache *s, char *buf)
4006{
4007 return 0;
4008}
4009
4010static ssize_t validate_store(struct kmem_cache *s,
4011 const char *buf, size_t length)
4012{
Christoph Lameter434e2452007-07-17 04:03:30 -07004013 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;
Christoph Lameter53e15af2007-05-06 14:49:43 -07004021}
4022SLAB_ATTR(validate);
4023
Christoph Lameter2086d262007-05-06 14:49:46 -07004024static ssize_t shrink_show(struct kmem_cache *s, char *buf)
4025{
4026 return 0;
4027}
4028
4029static 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}
4041SLAB_ATTR(shrink);
4042
Christoph Lameter88a420e2007-05-06 14:49:45 -07004043static 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}
4049SLAB_ATTR_RO(alloc_calls);
4050
4051static 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}
4057SLAB_ATTR_RO(free_calls);
4058
Christoph Lameter81819f02007-05-06 14:49:36 -07004059#ifdef CONFIG_NUMA
Christoph Lameter98246012008-01-07 23:20:26 -08004060static ssize_t remote_node_defrag_ratio_show(struct kmem_cache *s, char *buf)
Christoph Lameter81819f02007-05-06 14:49:36 -07004061{
Christoph Lameter98246012008-01-07 23:20:26 -08004062 return sprintf(buf, "%d\n", s->remote_node_defrag_ratio / 10);
Christoph Lameter81819f02007-05-06 14:49:36 -07004063}
4064
Christoph Lameter98246012008-01-07 23:20:26 -08004065static ssize_t remote_node_defrag_ratio_store(struct kmem_cache *s,
Christoph Lameter81819f02007-05-06 14:49:36 -07004066 const char *buf, size_t length)
4067{
4068 int n = simple_strtoul(buf, NULL, 10);
4069
4070 if (n < 100)
Christoph Lameter98246012008-01-07 23:20:26 -08004071 s->remote_node_defrag_ratio = n * 10;
Christoph Lameter81819f02007-05-06 14:49:36 -07004072 return length;
4073}
Christoph Lameter98246012008-01-07 23:20:26 -08004074SLAB_ATTR(remote_node_defrag_ratio);
Christoph Lameter81819f02007-05-06 14:49:36 -07004075#endif
4076
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004077#ifdef CONFIG_SLUB_STATS
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004078static 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
Christoph Lameter50ef37b2008-04-14 18:52:05 +03004097#ifdef CONFIG_SMP
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004098 for_each_online_cpu(cpu) {
4099 if (data[cpu] && len < PAGE_SIZE - 20)
Christoph Lameter50ef37b2008-04-14 18:52:05 +03004100 len += sprintf(buf + len, " C%d=%u", cpu, data[cpu]);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004101 }
Christoph Lameter50ef37b2008-04-14 18:52:05 +03004102#endif
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004103 kfree(data);
4104 return len + sprintf(buf + len, "\n");
4105}
4106
4107#define STAT_ATTR(si, text) \
4108static ssize_t text##_show(struct kmem_cache *s, char *buf) \
4109{ \
4110 return show_stat(s, buf, si); \
4111} \
4112SLAB_ATTR_RO(text); \
4113
4114STAT_ATTR(ALLOC_FASTPATH, alloc_fastpath);
4115STAT_ATTR(ALLOC_SLOWPATH, alloc_slowpath);
4116STAT_ATTR(FREE_FASTPATH, free_fastpath);
4117STAT_ATTR(FREE_SLOWPATH, free_slowpath);
4118STAT_ATTR(FREE_FROZEN, free_frozen);
4119STAT_ATTR(FREE_ADD_PARTIAL, free_add_partial);
4120STAT_ATTR(FREE_REMOVE_PARTIAL, free_remove_partial);
4121STAT_ATTR(ALLOC_FROM_PARTIAL, alloc_from_partial);
4122STAT_ATTR(ALLOC_SLAB, alloc_slab);
4123STAT_ATTR(ALLOC_REFILL, alloc_refill);
4124STAT_ATTR(FREE_SLAB, free_slab);
4125STAT_ATTR(CPUSLAB_FLUSH, cpuslab_flush);
4126STAT_ATTR(DEACTIVATE_FULL, deactivate_full);
4127STAT_ATTR(DEACTIVATE_EMPTY, deactivate_empty);
4128STAT_ATTR(DEACTIVATE_TO_HEAD, deactivate_to_head);
4129STAT_ATTR(DEACTIVATE_TO_TAIL, deactivate_to_tail);
4130STAT_ATTR(DEACTIVATE_REMOTE_FREES, deactivate_remote_frees);
Christoph Lameter65c33762008-04-14 19:11:40 +03004131STAT_ATTR(ORDER_FALLBACK, order_fallback);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004132#endif
4133
Pekka Enberg06428782008-01-07 23:20:27 -08004134static struct attribute *slab_attrs[] = {
Christoph Lameter81819f02007-05-06 14:49:36 -07004135 &slab_size_attr.attr,
4136 &object_size_attr.attr,
4137 &objs_per_slab_attr.attr,
4138 &order_attr.attr,
4139 &objects_attr.attr,
Christoph Lameter205ab992008-04-14 19:11:40 +03004140 &objects_partial_attr.attr,
4141 &total_objects_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07004142 &slabs_attr.attr,
4143 &partial_attr.attr,
4144 &cpu_slabs_attr.attr,
4145 &ctor_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07004146 &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,
Christoph Lameter53e15af2007-05-06 14:49:43 -07004156 &validate_attr.attr,
Christoph Lameter2086d262007-05-06 14:49:46 -07004157 &shrink_attr.attr,
Christoph Lameter88a420e2007-05-06 14:49:45 -07004158 &alloc_calls_attr.attr,
4159 &free_calls_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07004160#ifdef CONFIG_ZONE_DMA
4161 &cache_dma_attr.attr,
4162#endif
4163#ifdef CONFIG_NUMA
Christoph Lameter98246012008-01-07 23:20:26 -08004164 &remote_node_defrag_ratio_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07004165#endif
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004166#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,
Christoph Lameter65c33762008-04-14 19:11:40 +03004184 &order_fallback_attr.attr,
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004185#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07004186 NULL
4187};
4188
4189static struct attribute_group slab_attr_group = {
4190 .attrs = slab_attrs,
4191};
4192
4193static 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
4212static 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
Christoph Lameter151c6022008-01-07 22:29:05 -08004231static void kmem_cache_release(struct kobject *kobj)
4232{
4233 struct kmem_cache *s = to_slab(kobj);
4234
4235 kfree(s);
4236}
4237
Christoph Lameter81819f02007-05-06 14:49:36 -07004238static struct sysfs_ops slab_sysfs_ops = {
4239 .show = slab_attr_show,
4240 .store = slab_attr_store,
4241};
4242
4243static struct kobj_type slab_ktype = {
4244 .sysfs_ops = &slab_sysfs_ops,
Christoph Lameter151c6022008-01-07 22:29:05 -08004245 .release = kmem_cache_release
Christoph Lameter81819f02007-05-06 14:49:36 -07004246};
4247
4248static 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
4257static struct kset_uevent_ops slab_uevent_ops = {
4258 .filter = uevent_filter,
4259};
4260
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06004261static struct kset *slab_kset;
Christoph Lameter81819f02007-05-06 14:49:36 -07004262
4263#define ID_STR_LENGTH 64
4264
4265/* Create a unique string id for a slab cache:
Christoph Lameter6446faa2008-02-15 23:45:26 -08004266 *
4267 * Format :[flags-]size
Christoph Lameter81819f02007-05-06 14:49:36 -07004268 */
4269static 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
4297static 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 */
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06004314 sysfs_remove_link(&slab_kset->kobj, s->name);
Christoph Lameter81819f02007-05-06 14:49:36 -07004315 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
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06004324 s->kobj.kset = slab_kset;
Greg Kroah-Hartman1eada112007-12-17 23:05:35 -07004325 err = kobject_init_and_add(&s->kobj, &slab_ktype, NULL, name);
4326 if (err) {
4327 kobject_put(&s->kobj);
Christoph Lameter81819f02007-05-06 14:49:36 -07004328 return err;
Greg Kroah-Hartman1eada112007-12-17 23:05:35 -07004329 }
Christoph Lameter81819f02007-05-06 14:49:36 -07004330
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
4343static void sysfs_slab_remove(struct kmem_cache *s)
4344{
4345 kobject_uevent(&s->kobj, KOBJ_REMOVE);
4346 kobject_del(&s->kobj);
Christoph Lameter151c6022008-01-07 22:29:05 -08004347 kobject_put(&s->kobj);
Christoph Lameter81819f02007-05-06 14:49:36 -07004348}
4349
4350/*
4351 * Need to buffer aliases during bootup until sysfs becomes
4352 * available lest we loose that information.
4353 */
4354struct saved_alias {
4355 struct kmem_cache *s;
4356 const char *name;
4357 struct saved_alias *next;
4358};
4359
Adrian Bunk5af328a2007-07-17 04:03:27 -07004360static struct saved_alias *alias_list;
Christoph Lameter81819f02007-05-06 14:49:36 -07004361
4362static 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 */
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06004370 sysfs_remove_link(&slab_kset->kobj, name);
4371 return sysfs_create_link(&slab_kset->kobj, &s->kobj, name);
Christoph Lameter81819f02007-05-06 14:49:36 -07004372 }
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
4385static int __init slab_sysfs_init(void)
4386{
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07004387 struct kmem_cache *s;
Christoph Lameter81819f02007-05-06 14:49:36 -07004388 int err;
4389
Greg Kroah-Hartman0ff21e42007-11-06 10:36:58 -08004390 slab_kset = kset_create_and_add("slab", &slab_uevent_ops, kernel_kobj);
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06004391 if (!slab_kset) {
Christoph Lameter81819f02007-05-06 14:49:36 -07004392 printk(KERN_ERR "Cannot register slab subsystem.\n");
4393 return -ENOSYS;
4394 }
4395
Christoph Lameter26a7bd02007-05-09 02:32:39 -07004396 slab_state = SYSFS;
4397
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07004398 list_for_each_entry(s, &slab_caches, list) {
Christoph Lameter26a7bd02007-05-09 02:32:39 -07004399 err = sysfs_slab_add(s);
Christoph Lameter5d540fb2007-08-30 23:56:26 -07004400 if (err)
4401 printk(KERN_ERR "SLUB: Unable to add boot slab %s"
4402 " to sysfs\n", s->name);
Christoph Lameter26a7bd02007-05-09 02:32:39 -07004403 }
Christoph Lameter81819f02007-05-06 14:49:36 -07004404
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);
Christoph Lameter5d540fb2007-08-30 23:56:26 -07004410 if (err)
4411 printk(KERN_ERR "SLUB: Unable to add boot slab alias"
4412 " %s to sysfs\n", s->name);
Christoph Lameter81819f02007-05-06 14:49:36 -07004413 kfree(al);
4414 }
4415
4416 resiliency_test();
4417 return 0;
4418}
4419
4420__initcall(slab_sysfs_init);
Christoph Lameter81819f02007-05-06 14:49:36 -07004421#endif
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004422
4423/*
4424 * The /proc/slabinfo ABI
4425 */
Linus Torvalds158a9622008-01-02 13:04:48 -08004426#ifdef CONFIG_SLABINFO
4427
4428ssize_t slabinfo_write(struct file *file, const char __user * buffer,
4429 size_t count, loff_t *ppos)
4430{
4431 return -EINVAL;
4432}
4433
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004434
4435static 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
4445static 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
4456static void *s_next(struct seq_file *m, void *p, loff_t *pos)
4457{
4458 return seq_list_next(p, &slab_caches, pos);
4459}
4460
4461static void s_stop(struct seq_file *m, void *p)
4462{
4463 up_read(&slub_lock);
4464}
4465
4466static 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;
Christoph Lameter205ab992008-04-14 19:11:40 +03004471 unsigned long nr_objs = 0;
4472 unsigned long nr_free = 0;
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004473 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);
Christoph Lameter205ab992008-04-14 19:11:40 +03004486 nr_objs += atomic_long_read(&n->total_objects);
4487 nr_free += count_partial(n, count_free);
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004488 }
4489
Christoph Lameter205ab992008-04-14 19:11:40 +03004490 nr_inuse = nr_objs - nr_free;
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004491
4492 seq_printf(m, "%-17s %6lu %6lu %6u %4u %4d", s->name, nr_inuse,
Christoph Lameter834f3d12008-04-14 19:11:31 +03004493 nr_objs, s->size, oo_objects(s->oo),
4494 (1 << oo_order(s->oo)));
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004495 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
4502const struct seq_operations slabinfo_op = {
4503 .start = s_start,
4504 .next = s_next,
4505 .stop = s_stop,
4506 .show = s_show,
4507};
4508
Linus Torvalds158a9622008-01-02 13:04:48 -08004509#endif /* CONFIG_SLABINFO */