blob: 67f7d60689342f5f604d9e02d8357f1ded7dfc26 [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
152#if PAGE_SHIFT <= 12
153
154/*
155 * Small page size. Make sure that we do not fragment memory
156 */
157#define DEFAULT_MAX_ORDER 1
158#define DEFAULT_MIN_OBJECTS 4
159
160#else
161
162/*
163 * Large page machines are customarily able to handle larger
164 * page orders.
165 */
166#define DEFAULT_MAX_ORDER 2
167#define DEFAULT_MIN_OBJECTS 8
168
169#endif
170
171/*
Christoph Lameter2086d262007-05-06 14:49:46 -0700172 * Mininum number of partial slabs. These will be left on the partial
173 * lists even if they are empty. kmem_cache_shrink may reclaim them.
174 */
Christoph Lameter76be8952007-12-21 14:37:37 -0800175#define MIN_PARTIAL 5
Christoph Lametere95eed52007-05-06 14:49:44 -0700176
Christoph Lameter2086d262007-05-06 14:49:46 -0700177/*
178 * Maximum number of desirable partial slabs.
179 * The existence of more partial slabs makes kmem_cache_shrink
180 * sort the partial list by the number of objects in the.
181 */
182#define MAX_PARTIAL 10
183
Christoph Lameter81819f02007-05-06 14:49:36 -0700184#define DEBUG_DEFAULT_FLAGS (SLAB_DEBUG_FREE | SLAB_RED_ZONE | \
185 SLAB_POISON | SLAB_STORE_USER)
Christoph Lameter672bba32007-05-09 02:32:39 -0700186
Christoph Lameter81819f02007-05-06 14:49:36 -0700187/*
188 * Set of flags that will prevent slab merging
189 */
190#define SLUB_NEVER_MERGE (SLAB_RED_ZONE | SLAB_POISON | SLAB_STORE_USER | \
191 SLAB_TRACE | SLAB_DESTROY_BY_RCU)
192
193#define SLUB_MERGE_SAME (SLAB_DEBUG_FREE | SLAB_RECLAIM_ACCOUNT | \
194 SLAB_CACHE_DMA)
195
196#ifndef ARCH_KMALLOC_MINALIGN
Christoph Lameter47bfdc02007-05-06 14:49:37 -0700197#define ARCH_KMALLOC_MINALIGN __alignof__(unsigned long long)
Christoph Lameter81819f02007-05-06 14:49:36 -0700198#endif
199
200#ifndef ARCH_SLAB_MINALIGN
Christoph Lameter47bfdc02007-05-06 14:49:37 -0700201#define ARCH_SLAB_MINALIGN __alignof__(unsigned long long)
Christoph Lameter81819f02007-05-06 14:49:36 -0700202#endif
203
204/* Internal SLUB flags */
Christoph Lameter1ceef402007-08-07 15:11:48 -0700205#define __OBJECT_POISON 0x80000000 /* Poison object */
206#define __SYSFS_ADD_DEFERRED 0x40000000 /* Not yet visible via sysfs */
Christoph Lameter71c7a062008-02-14 14:28:01 -0800207#define __KMALLOC_CACHE 0x20000000 /* objects freed using kfree */
208#define __PAGE_ALLOC_FALLBACK 0x10000000 /* Allow fallback to page alloc */
Christoph Lameter81819f02007-05-06 14:49:36 -0700209
Christoph Lameter65c02d42007-05-09 02:32:35 -0700210/* Not all arches define cache_line_size */
211#ifndef cache_line_size
212#define cache_line_size() L1_CACHE_BYTES
213#endif
214
Christoph Lameter81819f02007-05-06 14:49:36 -0700215static int kmem_size = sizeof(struct kmem_cache);
216
217#ifdef CONFIG_SMP
218static struct notifier_block slab_notifier;
219#endif
220
221static enum {
222 DOWN, /* No slab functionality available */
223 PARTIAL, /* kmem_cache_open() works but kmalloc does not */
Christoph Lameter672bba32007-05-09 02:32:39 -0700224 UP, /* Everything works but does not show up in sysfs */
Christoph Lameter81819f02007-05-06 14:49:36 -0700225 SYSFS /* Sysfs up */
226} slab_state = DOWN;
227
228/* A list of all slab caches on the system */
229static DECLARE_RWSEM(slub_lock);
Adrian Bunk5af328a2007-07-17 04:03:27 -0700230static LIST_HEAD(slab_caches);
Christoph Lameter81819f02007-05-06 14:49:36 -0700231
Christoph Lameter02cbc872007-05-09 02:32:43 -0700232/*
233 * Tracking user of a slab.
234 */
235struct track {
236 void *addr; /* Called from address */
237 int cpu; /* Was running on cpu */
238 int pid; /* Pid context */
239 unsigned long when; /* When did the operation occur */
240};
241
242enum track_item { TRACK_ALLOC, TRACK_FREE };
243
Christoph Lameter41ecc552007-05-09 02:32:44 -0700244#if defined(CONFIG_SYSFS) && defined(CONFIG_SLUB_DEBUG)
Christoph Lameter81819f02007-05-06 14:49:36 -0700245static int sysfs_slab_add(struct kmem_cache *);
246static int sysfs_slab_alias(struct kmem_cache *, const char *);
247static void sysfs_slab_remove(struct kmem_cache *);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -0800248
Christoph Lameter81819f02007-05-06 14:49:36 -0700249#else
Christoph Lameter0c710012007-07-17 04:03:24 -0700250static inline int sysfs_slab_add(struct kmem_cache *s) { return 0; }
251static inline int sysfs_slab_alias(struct kmem_cache *s, const char *p)
252 { return 0; }
Christoph Lameter151c6022008-01-07 22:29:05 -0800253static inline void sysfs_slab_remove(struct kmem_cache *s)
254{
255 kfree(s);
256}
Christoph Lameter8ff12cf2008-02-07 17:47:41 -0800257
Christoph Lameter81819f02007-05-06 14:49:36 -0700258#endif
259
Christoph Lameter8ff12cf2008-02-07 17:47:41 -0800260static inline void stat(struct kmem_cache_cpu *c, enum stat_item si)
261{
262#ifdef CONFIG_SLUB_STATS
263 c->stat[si]++;
264#endif
265}
266
Christoph Lameter81819f02007-05-06 14:49:36 -0700267/********************************************************************
268 * Core slab cache functions
269 *******************************************************************/
270
271int slab_is_available(void)
272{
273 return slab_state >= UP;
274}
275
276static inline struct kmem_cache_node *get_node(struct kmem_cache *s, int node)
277{
278#ifdef CONFIG_NUMA
279 return s->node[node];
280#else
281 return &s->local_node;
282#endif
283}
284
Christoph Lameterdfb4f092007-10-16 01:26:05 -0700285static inline struct kmem_cache_cpu *get_cpu_slab(struct kmem_cache *s, int cpu)
286{
Christoph Lameter4c93c3552007-10-16 01:26:08 -0700287#ifdef CONFIG_SMP
288 return s->cpu_slab[cpu];
289#else
290 return &s->cpu_slab;
291#endif
Christoph Lameterdfb4f092007-10-16 01:26:05 -0700292}
293
Christoph Lameter6446faa2008-02-15 23:45:26 -0800294/* Verify that a pointer has an address that is valid within a slab page */
Christoph Lameter02cbc872007-05-09 02:32:43 -0700295static inline int check_valid_pointer(struct kmem_cache *s,
296 struct page *page, const void *object)
297{
298 void *base;
299
Christoph Lametera973e9d2008-03-01 13:40:44 -0800300 if (!object)
Christoph Lameter02cbc872007-05-09 02:32:43 -0700301 return 1;
302
Christoph Lametera973e9d2008-03-01 13:40:44 -0800303 base = page_address(page);
Christoph Lameter39b26462008-04-14 19:11:30 +0300304 if (object < base || object >= base + page->objects * s->size ||
Christoph Lameter02cbc872007-05-09 02:32:43 -0700305 (object - base) % s->size) {
306 return 0;
307 }
308
309 return 1;
310}
311
Christoph Lameter81819f02007-05-06 14:49:36 -0700312/*
Christoph Lameter7656c722007-05-09 02:32:40 -0700313 * Slow version of get and set free pointer.
314 *
315 * This version requires touching the cache lines of kmem_cache which
316 * we avoid to do in the fast alloc free paths. There we obtain the offset
317 * from the page struct.
318 */
319static inline void *get_freepointer(struct kmem_cache *s, void *object)
320{
321 return *(void **)(object + s->offset);
322}
323
324static inline void set_freepointer(struct kmem_cache *s, void *object, void *fp)
325{
326 *(void **)(object + s->offset) = fp;
327}
328
329/* Loop over all objects in a slab */
Christoph Lameter224a88b2008-04-14 19:11:31 +0300330#define for_each_object(__p, __s, __addr, __objects) \
331 for (__p = (__addr); __p < (__addr) + (__objects) * (__s)->size;\
Christoph Lameter7656c722007-05-09 02:32:40 -0700332 __p += (__s)->size)
333
334/* Scan freelist */
335#define for_each_free_object(__p, __s, __free) \
Christoph Lametera973e9d2008-03-01 13:40:44 -0800336 for (__p = (__free); __p; __p = get_freepointer((__s), __p))
Christoph Lameter7656c722007-05-09 02:32:40 -0700337
338/* Determine object index from a given position */
339static inline int slab_index(void *p, struct kmem_cache *s, void *addr)
340{
341 return (p - addr) / s->size;
342}
343
Christoph Lameter41ecc552007-05-09 02:32:44 -0700344#ifdef CONFIG_SLUB_DEBUG
345/*
346 * Debug settings:
347 */
Christoph Lameterf0630ff2007-07-15 23:38:14 -0700348#ifdef CONFIG_SLUB_DEBUG_ON
349static int slub_debug = DEBUG_DEFAULT_FLAGS;
350#else
Christoph Lameter41ecc552007-05-09 02:32:44 -0700351static int slub_debug;
Christoph Lameterf0630ff2007-07-15 23:38:14 -0700352#endif
Christoph Lameter41ecc552007-05-09 02:32:44 -0700353
354static char *slub_debug_slabs;
355
Christoph Lameter7656c722007-05-09 02:32:40 -0700356/*
Christoph Lameter81819f02007-05-06 14:49:36 -0700357 * Object debugging
358 */
359static void print_section(char *text, u8 *addr, unsigned int length)
360{
361 int i, offset;
362 int newline = 1;
363 char ascii[17];
364
365 ascii[16] = 0;
366
367 for (i = 0; i < length; i++) {
368 if (newline) {
Christoph Lameter24922682007-07-17 04:03:18 -0700369 printk(KERN_ERR "%8s 0x%p: ", text, addr + i);
Christoph Lameter81819f02007-05-06 14:49:36 -0700370 newline = 0;
371 }
Pekka Enberg06428782008-01-07 23:20:27 -0800372 printk(KERN_CONT " %02x", addr[i]);
Christoph Lameter81819f02007-05-06 14:49:36 -0700373 offset = i % 16;
374 ascii[offset] = isgraph(addr[i]) ? addr[i] : '.';
375 if (offset == 15) {
Pekka Enberg06428782008-01-07 23:20:27 -0800376 printk(KERN_CONT " %s\n", ascii);
Christoph Lameter81819f02007-05-06 14:49:36 -0700377 newline = 1;
378 }
379 }
380 if (!newline) {
381 i %= 16;
382 while (i < 16) {
Pekka Enberg06428782008-01-07 23:20:27 -0800383 printk(KERN_CONT " ");
Christoph Lameter81819f02007-05-06 14:49:36 -0700384 ascii[i] = ' ';
385 i++;
386 }
Pekka Enberg06428782008-01-07 23:20:27 -0800387 printk(KERN_CONT " %s\n", ascii);
Christoph Lameter81819f02007-05-06 14:49:36 -0700388 }
389}
390
Christoph Lameter81819f02007-05-06 14:49:36 -0700391static struct track *get_track(struct kmem_cache *s, void *object,
392 enum track_item alloc)
393{
394 struct track *p;
395
396 if (s->offset)
397 p = object + s->offset + sizeof(void *);
398 else
399 p = object + s->inuse;
400
401 return p + alloc;
402}
403
404static void set_track(struct kmem_cache *s, void *object,
405 enum track_item alloc, void *addr)
406{
407 struct track *p;
408
409 if (s->offset)
410 p = object + s->offset + sizeof(void *);
411 else
412 p = object + s->inuse;
413
414 p += alloc;
415 if (addr) {
416 p->addr = addr;
417 p->cpu = smp_processor_id();
418 p->pid = current ? current->pid : -1;
419 p->when = jiffies;
420 } else
421 memset(p, 0, sizeof(struct track));
422}
423
Christoph Lameter81819f02007-05-06 14:49:36 -0700424static void init_tracking(struct kmem_cache *s, void *object)
425{
Christoph Lameter24922682007-07-17 04:03:18 -0700426 if (!(s->flags & SLAB_STORE_USER))
427 return;
428
429 set_track(s, object, TRACK_FREE, NULL);
430 set_track(s, object, TRACK_ALLOC, NULL);
Christoph Lameter81819f02007-05-06 14:49:36 -0700431}
432
433static void print_track(const char *s, struct track *t)
434{
435 if (!t->addr)
436 return;
437
Christoph Lameter24922682007-07-17 04:03:18 -0700438 printk(KERN_ERR "INFO: %s in ", s);
Christoph Lameter81819f02007-05-06 14:49:36 -0700439 __print_symbol("%s", (unsigned long)t->addr);
Christoph Lameter24922682007-07-17 04:03:18 -0700440 printk(" age=%lu cpu=%u pid=%d\n", jiffies - t->when, t->cpu, t->pid);
Christoph Lameter81819f02007-05-06 14:49:36 -0700441}
442
Christoph Lameter24922682007-07-17 04:03:18 -0700443static void print_tracking(struct kmem_cache *s, void *object)
444{
445 if (!(s->flags & SLAB_STORE_USER))
446 return;
447
448 print_track("Allocated", get_track(s, object, TRACK_ALLOC));
449 print_track("Freed", get_track(s, object, TRACK_FREE));
450}
451
452static void print_page_info(struct page *page)
453{
Christoph Lameter39b26462008-04-14 19:11:30 +0300454 printk(KERN_ERR "INFO: Slab 0x%p objects=%u used=%u fp=0x%p flags=0x%04lx\n",
455 page, page->objects, page->inuse, page->freelist, page->flags);
Christoph Lameter24922682007-07-17 04:03:18 -0700456
457}
458
459static void slab_bug(struct kmem_cache *s, char *fmt, ...)
460{
461 va_list args;
462 char buf[100];
463
464 va_start(args, fmt);
465 vsnprintf(buf, sizeof(buf), fmt, args);
466 va_end(args);
467 printk(KERN_ERR "========================================"
468 "=====================================\n");
469 printk(KERN_ERR "BUG %s: %s\n", s->name, buf);
470 printk(KERN_ERR "----------------------------------------"
471 "-------------------------------------\n\n");
472}
473
474static void slab_fix(struct kmem_cache *s, char *fmt, ...)
475{
476 va_list args;
477 char buf[100];
478
479 va_start(args, fmt);
480 vsnprintf(buf, sizeof(buf), fmt, args);
481 va_end(args);
482 printk(KERN_ERR "FIX %s: %s\n", s->name, buf);
483}
484
485static void print_trailer(struct kmem_cache *s, struct page *page, u8 *p)
Christoph Lameter81819f02007-05-06 14:49:36 -0700486{
487 unsigned int off; /* Offset of last byte */
Christoph Lametera973e9d2008-03-01 13:40:44 -0800488 u8 *addr = page_address(page);
Christoph Lameter24922682007-07-17 04:03:18 -0700489
490 print_tracking(s, p);
491
492 print_page_info(page);
493
494 printk(KERN_ERR "INFO: Object 0x%p @offset=%tu fp=0x%p\n\n",
495 p, p - addr, get_freepointer(s, p));
496
497 if (p > addr + 16)
498 print_section("Bytes b4", p - 16, 16);
499
500 print_section("Object", p, min(s->objsize, 128));
Christoph Lameter81819f02007-05-06 14:49:36 -0700501
502 if (s->flags & SLAB_RED_ZONE)
503 print_section("Redzone", p + s->objsize,
504 s->inuse - s->objsize);
505
Christoph Lameter81819f02007-05-06 14:49:36 -0700506 if (s->offset)
507 off = s->offset + sizeof(void *);
508 else
509 off = s->inuse;
510
Christoph Lameter24922682007-07-17 04:03:18 -0700511 if (s->flags & SLAB_STORE_USER)
Christoph Lameter81819f02007-05-06 14:49:36 -0700512 off += 2 * sizeof(struct track);
Christoph Lameter81819f02007-05-06 14:49:36 -0700513
514 if (off != s->size)
515 /* Beginning of the filler is the free pointer */
Christoph Lameter24922682007-07-17 04:03:18 -0700516 print_section("Padding", p + off, s->size - off);
517
518 dump_stack();
Christoph Lameter81819f02007-05-06 14:49:36 -0700519}
520
521static void object_err(struct kmem_cache *s, struct page *page,
522 u8 *object, char *reason)
523{
Christoph Lameter3dc50632008-04-23 12:28:01 -0700524 slab_bug(s, "%s", reason);
Christoph Lameter24922682007-07-17 04:03:18 -0700525 print_trailer(s, page, object);
Christoph Lameter81819f02007-05-06 14:49:36 -0700526}
527
Christoph Lameter24922682007-07-17 04:03:18 -0700528static void slab_err(struct kmem_cache *s, struct page *page, char *fmt, ...)
Christoph Lameter81819f02007-05-06 14:49:36 -0700529{
530 va_list args;
531 char buf[100];
532
Christoph Lameter24922682007-07-17 04:03:18 -0700533 va_start(args, fmt);
534 vsnprintf(buf, sizeof(buf), fmt, args);
Christoph Lameter81819f02007-05-06 14:49:36 -0700535 va_end(args);
Christoph Lameter3dc50632008-04-23 12:28:01 -0700536 slab_bug(s, "%s", buf);
Christoph Lameter24922682007-07-17 04:03:18 -0700537 print_page_info(page);
Christoph Lameter81819f02007-05-06 14:49:36 -0700538 dump_stack();
539}
540
541static void init_object(struct kmem_cache *s, void *object, int active)
542{
543 u8 *p = object;
544
545 if (s->flags & __OBJECT_POISON) {
546 memset(p, POISON_FREE, s->objsize - 1);
Pekka Enberg06428782008-01-07 23:20:27 -0800547 p[s->objsize - 1] = POISON_END;
Christoph Lameter81819f02007-05-06 14:49:36 -0700548 }
549
550 if (s->flags & SLAB_RED_ZONE)
551 memset(p + s->objsize,
552 active ? SLUB_RED_ACTIVE : SLUB_RED_INACTIVE,
553 s->inuse - s->objsize);
554}
555
Christoph Lameter24922682007-07-17 04:03:18 -0700556static u8 *check_bytes(u8 *start, unsigned int value, unsigned int bytes)
Christoph Lameter81819f02007-05-06 14:49:36 -0700557{
558 while (bytes) {
559 if (*start != (u8)value)
Christoph Lameter24922682007-07-17 04:03:18 -0700560 return start;
Christoph Lameter81819f02007-05-06 14:49:36 -0700561 start++;
562 bytes--;
563 }
Christoph Lameter24922682007-07-17 04:03:18 -0700564 return NULL;
565}
566
567static void restore_bytes(struct kmem_cache *s, char *message, u8 data,
568 void *from, void *to)
569{
570 slab_fix(s, "Restoring 0x%p-0x%p=0x%x\n", from, to - 1, data);
571 memset(from, data, to - from);
572}
573
574static int check_bytes_and_report(struct kmem_cache *s, struct page *page,
575 u8 *object, char *what,
Pekka Enberg06428782008-01-07 23:20:27 -0800576 u8 *start, unsigned int value, unsigned int bytes)
Christoph Lameter24922682007-07-17 04:03:18 -0700577{
578 u8 *fault;
579 u8 *end;
580
581 fault = check_bytes(start, value, bytes);
582 if (!fault)
583 return 1;
584
585 end = start + bytes;
586 while (end > fault && end[-1] == value)
587 end--;
588
589 slab_bug(s, "%s overwritten", what);
590 printk(KERN_ERR "INFO: 0x%p-0x%p. First byte 0x%x instead of 0x%x\n",
591 fault, end - 1, fault[0], value);
592 print_trailer(s, page, object);
593
594 restore_bytes(s, what, value, fault, end);
595 return 0;
Christoph Lameter81819f02007-05-06 14:49:36 -0700596}
597
Christoph Lameter81819f02007-05-06 14:49:36 -0700598/*
599 * Object layout:
600 *
601 * object address
602 * Bytes of the object to be managed.
603 * If the freepointer may overlay the object then the free
604 * pointer is the first word of the object.
Christoph Lameter672bba32007-05-09 02:32:39 -0700605 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700606 * Poisoning uses 0x6b (POISON_FREE) and the last byte is
607 * 0xa5 (POISON_END)
608 *
609 * object + s->objsize
610 * Padding to reach word boundary. This is also used for Redzoning.
Christoph Lameter672bba32007-05-09 02:32:39 -0700611 * Padding is extended by another word if Redzoning is enabled and
612 * objsize == inuse.
613 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700614 * We fill with 0xbb (RED_INACTIVE) for inactive objects and with
615 * 0xcc (RED_ACTIVE) for objects in use.
616 *
617 * object + s->inuse
Christoph Lameter672bba32007-05-09 02:32:39 -0700618 * Meta data starts here.
619 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700620 * A. Free pointer (if we cannot overwrite object on free)
621 * B. Tracking data for SLAB_STORE_USER
Christoph Lameter672bba32007-05-09 02:32:39 -0700622 * C. Padding to reach required alignment boundary or at mininum
Christoph Lameter6446faa2008-02-15 23:45:26 -0800623 * one word if debugging is on to be able to detect writes
Christoph Lameter672bba32007-05-09 02:32:39 -0700624 * before the word boundary.
625 *
626 * Padding is done using 0x5a (POISON_INUSE)
Christoph Lameter81819f02007-05-06 14:49:36 -0700627 *
628 * object + s->size
Christoph Lameter672bba32007-05-09 02:32:39 -0700629 * Nothing is used beyond s->size.
Christoph Lameter81819f02007-05-06 14:49:36 -0700630 *
Christoph Lameter672bba32007-05-09 02:32:39 -0700631 * If slabcaches are merged then the objsize and inuse boundaries are mostly
632 * ignored. And therefore no slab options that rely on these boundaries
Christoph Lameter81819f02007-05-06 14:49:36 -0700633 * may be used with merged slabcaches.
634 */
635
Christoph Lameter81819f02007-05-06 14:49:36 -0700636static int check_pad_bytes(struct kmem_cache *s, struct page *page, u8 *p)
637{
638 unsigned long off = s->inuse; /* The end of info */
639
640 if (s->offset)
641 /* Freepointer is placed after the object. */
642 off += sizeof(void *);
643
644 if (s->flags & SLAB_STORE_USER)
645 /* We also have user information there */
646 off += 2 * sizeof(struct track);
647
648 if (s->size == off)
649 return 1;
650
Christoph Lameter24922682007-07-17 04:03:18 -0700651 return check_bytes_and_report(s, page, p, "Object padding",
652 p + off, POISON_INUSE, s->size - off);
Christoph Lameter81819f02007-05-06 14:49:36 -0700653}
654
Christoph Lameter39b26462008-04-14 19:11:30 +0300655/* Check the pad bytes at the end of a slab page */
Christoph Lameter81819f02007-05-06 14:49:36 -0700656static int slab_pad_check(struct kmem_cache *s, struct page *page)
657{
Christoph Lameter24922682007-07-17 04:03:18 -0700658 u8 *start;
659 u8 *fault;
660 u8 *end;
661 int length;
662 int remainder;
Christoph Lameter81819f02007-05-06 14:49:36 -0700663
664 if (!(s->flags & SLAB_POISON))
665 return 1;
666
Christoph Lametera973e9d2008-03-01 13:40:44 -0800667 start = page_address(page);
Christoph Lameter39b26462008-04-14 19:11:30 +0300668 length = (PAGE_SIZE << s->order);
669 end = start + length;
670 remainder = length % s->size;
Christoph Lameter81819f02007-05-06 14:49:36 -0700671 if (!remainder)
672 return 1;
673
Christoph Lameter39b26462008-04-14 19:11:30 +0300674 fault = check_bytes(end - remainder, POISON_INUSE, remainder);
Christoph Lameter24922682007-07-17 04:03:18 -0700675 if (!fault)
676 return 1;
677 while (end > fault && end[-1] == POISON_INUSE)
678 end--;
679
680 slab_err(s, page, "Padding overwritten. 0x%p-0x%p", fault, end - 1);
Christoph Lameter39b26462008-04-14 19:11:30 +0300681 print_section("Padding", end - remainder, remainder);
Christoph Lameter24922682007-07-17 04:03:18 -0700682
683 restore_bytes(s, "slab padding", POISON_INUSE, start, end);
684 return 0;
Christoph Lameter81819f02007-05-06 14:49:36 -0700685}
686
687static int check_object(struct kmem_cache *s, struct page *page,
688 void *object, int active)
689{
690 u8 *p = object;
691 u8 *endobject = object + s->objsize;
692
693 if (s->flags & SLAB_RED_ZONE) {
694 unsigned int red =
695 active ? SLUB_RED_ACTIVE : SLUB_RED_INACTIVE;
696
Christoph Lameter24922682007-07-17 04:03:18 -0700697 if (!check_bytes_and_report(s, page, object, "Redzone",
698 endobject, red, s->inuse - s->objsize))
Christoph Lameter81819f02007-05-06 14:49:36 -0700699 return 0;
Christoph Lameter81819f02007-05-06 14:49:36 -0700700 } else {
Ingo Molnar3adbefe2008-02-05 17:57:39 -0800701 if ((s->flags & SLAB_POISON) && s->objsize < s->inuse) {
702 check_bytes_and_report(s, page, p, "Alignment padding",
703 endobject, POISON_INUSE, s->inuse - s->objsize);
704 }
Christoph Lameter81819f02007-05-06 14:49:36 -0700705 }
706
707 if (s->flags & SLAB_POISON) {
708 if (!active && (s->flags & __OBJECT_POISON) &&
Christoph Lameter24922682007-07-17 04:03:18 -0700709 (!check_bytes_and_report(s, page, p, "Poison", p,
710 POISON_FREE, s->objsize - 1) ||
711 !check_bytes_and_report(s, page, p, "Poison",
Pekka Enberg06428782008-01-07 23:20:27 -0800712 p + s->objsize - 1, POISON_END, 1)))
Christoph Lameter81819f02007-05-06 14:49:36 -0700713 return 0;
Christoph Lameter81819f02007-05-06 14:49:36 -0700714 /*
715 * check_pad_bytes cleans up on its own.
716 */
717 check_pad_bytes(s, page, p);
718 }
719
720 if (!s->offset && active)
721 /*
722 * Object and freepointer overlap. Cannot check
723 * freepointer while object is allocated.
724 */
725 return 1;
726
727 /* Check free pointer validity */
728 if (!check_valid_pointer(s, page, get_freepointer(s, p))) {
729 object_err(s, page, p, "Freepointer corrupt");
730 /*
731 * No choice but to zap it and thus loose the remainder
732 * of the free objects in this slab. May cause
Christoph Lameter672bba32007-05-09 02:32:39 -0700733 * another error because the object count is now wrong.
Christoph Lameter81819f02007-05-06 14:49:36 -0700734 */
Christoph Lametera973e9d2008-03-01 13:40:44 -0800735 set_freepointer(s, p, NULL);
Christoph Lameter81819f02007-05-06 14:49:36 -0700736 return 0;
737 }
738 return 1;
739}
740
741static int check_slab(struct kmem_cache *s, struct page *page)
742{
Christoph Lameter39b26462008-04-14 19:11:30 +0300743 int maxobj;
744
Christoph Lameter81819f02007-05-06 14:49:36 -0700745 VM_BUG_ON(!irqs_disabled());
746
747 if (!PageSlab(page)) {
Christoph Lameter24922682007-07-17 04:03:18 -0700748 slab_err(s, page, "Not a valid slab page");
Christoph Lameter81819f02007-05-06 14:49:36 -0700749 return 0;
750 }
Christoph Lameter39b26462008-04-14 19:11:30 +0300751
752 maxobj = (PAGE_SIZE << compound_order(page)) / s->size;
753 if (page->objects > maxobj) {
754 slab_err(s, page, "objects %u > max %u",
755 s->name, page->objects, maxobj);
756 return 0;
757 }
758 if (page->inuse > page->objects) {
Christoph Lameter24922682007-07-17 04:03:18 -0700759 slab_err(s, page, "inuse %u > max %u",
Christoph Lameter39b26462008-04-14 19:11:30 +0300760 s->name, page->inuse, page->objects);
Christoph Lameter81819f02007-05-06 14:49:36 -0700761 return 0;
762 }
763 /* Slab_pad_check fixes things up after itself */
764 slab_pad_check(s, page);
765 return 1;
766}
767
768/*
Christoph Lameter672bba32007-05-09 02:32:39 -0700769 * Determine if a certain object on a page is on the freelist. Must hold the
770 * slab lock to guarantee that the chains are in a consistent state.
Christoph Lameter81819f02007-05-06 14:49:36 -0700771 */
772static int on_freelist(struct kmem_cache *s, struct page *page, void *search)
773{
774 int nr = 0;
775 void *fp = page->freelist;
776 void *object = NULL;
Christoph Lameter224a88b2008-04-14 19:11:31 +0300777 unsigned long max_objects;
Christoph Lameter81819f02007-05-06 14:49:36 -0700778
Christoph Lameter39b26462008-04-14 19:11:30 +0300779 while (fp && nr <= page->objects) {
Christoph Lameter81819f02007-05-06 14:49:36 -0700780 if (fp == search)
781 return 1;
782 if (!check_valid_pointer(s, page, fp)) {
783 if (object) {
784 object_err(s, page, object,
785 "Freechain corrupt");
Christoph Lametera973e9d2008-03-01 13:40:44 -0800786 set_freepointer(s, object, NULL);
Christoph Lameter81819f02007-05-06 14:49:36 -0700787 break;
788 } else {
Christoph Lameter24922682007-07-17 04:03:18 -0700789 slab_err(s, page, "Freepointer corrupt");
Christoph Lametera973e9d2008-03-01 13:40:44 -0800790 page->freelist = NULL;
Christoph Lameter39b26462008-04-14 19:11:30 +0300791 page->inuse = page->objects;
Christoph Lameter24922682007-07-17 04:03:18 -0700792 slab_fix(s, "Freelist cleared");
Christoph Lameter81819f02007-05-06 14:49:36 -0700793 return 0;
794 }
795 break;
796 }
797 object = fp;
798 fp = get_freepointer(s, object);
799 nr++;
800 }
801
Christoph Lameter224a88b2008-04-14 19:11:31 +0300802 max_objects = (PAGE_SIZE << compound_order(page)) / s->size;
803 if (max_objects > 65535)
804 max_objects = 65535;
805
806 if (page->objects != max_objects) {
807 slab_err(s, page, "Wrong number of objects. Found %d but "
808 "should be %d", page->objects, max_objects);
809 page->objects = max_objects;
810 slab_fix(s, "Number of objects adjusted.");
811 }
Christoph Lameter39b26462008-04-14 19:11:30 +0300812 if (page->inuse != page->objects - nr) {
Christoph Lameter70d71222007-05-06 14:49:47 -0700813 slab_err(s, page, "Wrong object count. Counter is %d but "
Christoph Lameter39b26462008-04-14 19:11:30 +0300814 "counted were %d", page->inuse, page->objects - nr);
815 page->inuse = page->objects - nr;
Christoph Lameter24922682007-07-17 04:03:18 -0700816 slab_fix(s, "Object count adjusted.");
Christoph Lameter81819f02007-05-06 14:49:36 -0700817 }
818 return search == NULL;
819}
820
Christoph Lameter3ec09742007-05-16 22:11:00 -0700821static void trace(struct kmem_cache *s, struct page *page, void *object, int alloc)
822{
823 if (s->flags & SLAB_TRACE) {
824 printk(KERN_INFO "TRACE %s %s 0x%p inuse=%d fp=0x%p\n",
825 s->name,
826 alloc ? "alloc" : "free",
827 object, page->inuse,
828 page->freelist);
829
830 if (!alloc)
831 print_section("Object", (void *)object, s->objsize);
832
833 dump_stack();
834 }
835}
836
Christoph Lameter643b1132007-05-06 14:49:42 -0700837/*
Christoph Lameter672bba32007-05-09 02:32:39 -0700838 * Tracking of fully allocated slabs for debugging purposes.
Christoph Lameter643b1132007-05-06 14:49:42 -0700839 */
Christoph Lametere95eed52007-05-06 14:49:44 -0700840static void add_full(struct kmem_cache_node *n, struct page *page)
Christoph Lameter643b1132007-05-06 14:49:42 -0700841{
Christoph Lameter643b1132007-05-06 14:49:42 -0700842 spin_lock(&n->list_lock);
843 list_add(&page->lru, &n->full);
844 spin_unlock(&n->list_lock);
845}
846
847static void remove_full(struct kmem_cache *s, struct page *page)
848{
849 struct kmem_cache_node *n;
850
851 if (!(s->flags & SLAB_STORE_USER))
852 return;
853
854 n = get_node(s, page_to_nid(page));
855
856 spin_lock(&n->list_lock);
857 list_del(&page->lru);
858 spin_unlock(&n->list_lock);
859}
860
Christoph Lameter0f389ec2008-04-14 18:53:02 +0300861/* Tracking of the number of slabs for debugging purposes */
862static inline unsigned long slabs_node(struct kmem_cache *s, int node)
863{
864 struct kmem_cache_node *n = get_node(s, node);
865
866 return atomic_long_read(&n->nr_slabs);
867}
868
869static inline void inc_slabs_node(struct kmem_cache *s, int node)
870{
871 struct kmem_cache_node *n = get_node(s, node);
872
873 /*
874 * May be called early in order to allocate a slab for the
875 * kmem_cache_node structure. Solve the chicken-egg
876 * dilemma by deferring the increment of the count during
877 * bootstrap (see early_kmem_cache_node_alloc).
878 */
879 if (!NUMA_BUILD || n)
880 atomic_long_inc(&n->nr_slabs);
881}
882static inline void dec_slabs_node(struct kmem_cache *s, int node)
883{
884 struct kmem_cache_node *n = get_node(s, node);
885
886 atomic_long_dec(&n->nr_slabs);
887}
888
889/* Object debug checks for alloc/free paths */
Christoph Lameter3ec09742007-05-16 22:11:00 -0700890static void setup_object_debug(struct kmem_cache *s, struct page *page,
891 void *object)
892{
893 if (!(s->flags & (SLAB_STORE_USER|SLAB_RED_ZONE|__OBJECT_POISON)))
894 return;
895
896 init_object(s, object, 0);
897 init_tracking(s, object);
898}
899
900static int alloc_debug_processing(struct kmem_cache *s, struct page *page,
901 void *object, void *addr)
Christoph Lameter81819f02007-05-06 14:49:36 -0700902{
903 if (!check_slab(s, page))
904 goto bad;
905
Christoph Lameterd692ef62008-02-15 23:45:24 -0800906 if (!on_freelist(s, page, object)) {
Christoph Lameter24922682007-07-17 04:03:18 -0700907 object_err(s, page, object, "Object already allocated");
Christoph Lameter70d71222007-05-06 14:49:47 -0700908 goto bad;
Christoph Lameter81819f02007-05-06 14:49:36 -0700909 }
910
911 if (!check_valid_pointer(s, page, object)) {
912 object_err(s, page, object, "Freelist Pointer check fails");
Christoph Lameter70d71222007-05-06 14:49:47 -0700913 goto bad;
Christoph Lameter81819f02007-05-06 14:49:36 -0700914 }
915
Christoph Lameterd692ef62008-02-15 23:45:24 -0800916 if (!check_object(s, page, object, 0))
Christoph Lameter81819f02007-05-06 14:49:36 -0700917 goto bad;
Christoph Lameter81819f02007-05-06 14:49:36 -0700918
Christoph Lameter3ec09742007-05-16 22:11:00 -0700919 /* Success perform special debug activities for allocs */
920 if (s->flags & SLAB_STORE_USER)
921 set_track(s, object, TRACK_ALLOC, addr);
922 trace(s, page, object, 1);
923 init_object(s, object, 1);
Christoph Lameter81819f02007-05-06 14:49:36 -0700924 return 1;
Christoph Lameter3ec09742007-05-16 22:11:00 -0700925
Christoph Lameter81819f02007-05-06 14:49:36 -0700926bad:
927 if (PageSlab(page)) {
928 /*
929 * If this is a slab page then lets do the best we can
930 * to avoid issues in the future. Marking all objects
Christoph Lameter672bba32007-05-09 02:32:39 -0700931 * as used avoids touching the remaining objects.
Christoph Lameter81819f02007-05-06 14:49:36 -0700932 */
Christoph Lameter24922682007-07-17 04:03:18 -0700933 slab_fix(s, "Marking all objects used");
Christoph Lameter39b26462008-04-14 19:11:30 +0300934 page->inuse = page->objects;
Christoph Lametera973e9d2008-03-01 13:40:44 -0800935 page->freelist = NULL;
Christoph Lameter81819f02007-05-06 14:49:36 -0700936 }
937 return 0;
938}
939
Christoph Lameter3ec09742007-05-16 22:11:00 -0700940static int free_debug_processing(struct kmem_cache *s, struct page *page,
941 void *object, void *addr)
Christoph Lameter81819f02007-05-06 14:49:36 -0700942{
943 if (!check_slab(s, page))
944 goto fail;
945
946 if (!check_valid_pointer(s, page, object)) {
Christoph Lameter70d71222007-05-06 14:49:47 -0700947 slab_err(s, page, "Invalid object pointer 0x%p", object);
Christoph Lameter81819f02007-05-06 14:49:36 -0700948 goto fail;
949 }
950
951 if (on_freelist(s, page, object)) {
Christoph Lameter24922682007-07-17 04:03:18 -0700952 object_err(s, page, object, "Object already free");
Christoph Lameter81819f02007-05-06 14:49:36 -0700953 goto fail;
954 }
955
956 if (!check_object(s, page, object, 1))
957 return 0;
958
959 if (unlikely(s != page->slab)) {
Ingo Molnar3adbefe2008-02-05 17:57:39 -0800960 if (!PageSlab(page)) {
Christoph Lameter70d71222007-05-06 14:49:47 -0700961 slab_err(s, page, "Attempt to free object(0x%p) "
962 "outside of slab", object);
Ingo Molnar3adbefe2008-02-05 17:57:39 -0800963 } else if (!page->slab) {
Christoph Lameter81819f02007-05-06 14:49:36 -0700964 printk(KERN_ERR
Christoph Lameter70d71222007-05-06 14:49:47 -0700965 "SLUB <none>: no slab for object 0x%p.\n",
Christoph Lameter81819f02007-05-06 14:49:36 -0700966 object);
Christoph Lameter70d71222007-05-06 14:49:47 -0700967 dump_stack();
Pekka Enberg06428782008-01-07 23:20:27 -0800968 } else
Christoph Lameter24922682007-07-17 04:03:18 -0700969 object_err(s, page, object,
970 "page slab pointer corrupt.");
Christoph Lameter81819f02007-05-06 14:49:36 -0700971 goto fail;
972 }
Christoph Lameter3ec09742007-05-16 22:11:00 -0700973
974 /* Special debug activities for freeing objects */
Christoph Lametera973e9d2008-03-01 13:40:44 -0800975 if (!SlabFrozen(page) && !page->freelist)
Christoph Lameter3ec09742007-05-16 22:11:00 -0700976 remove_full(s, page);
977 if (s->flags & SLAB_STORE_USER)
978 set_track(s, object, TRACK_FREE, addr);
979 trace(s, page, object, 0);
980 init_object(s, object, 0);
Christoph Lameter81819f02007-05-06 14:49:36 -0700981 return 1;
Christoph Lameter3ec09742007-05-16 22:11:00 -0700982
Christoph Lameter81819f02007-05-06 14:49:36 -0700983fail:
Christoph Lameter24922682007-07-17 04:03:18 -0700984 slab_fix(s, "Object at 0x%p not freed", object);
Christoph Lameter81819f02007-05-06 14:49:36 -0700985 return 0;
986}
987
Christoph Lameter41ecc552007-05-09 02:32:44 -0700988static int __init setup_slub_debug(char *str)
989{
Christoph Lameterf0630ff2007-07-15 23:38:14 -0700990 slub_debug = DEBUG_DEFAULT_FLAGS;
991 if (*str++ != '=' || !*str)
992 /*
993 * No options specified. Switch on full debugging.
994 */
995 goto out;
Christoph Lameter41ecc552007-05-09 02:32:44 -0700996
997 if (*str == ',')
Christoph Lameterf0630ff2007-07-15 23:38:14 -0700998 /*
999 * No options but restriction on slabs. This means full
1000 * debugging for slabs matching a pattern.
1001 */
1002 goto check_slabs;
1003
1004 slub_debug = 0;
1005 if (*str == '-')
1006 /*
1007 * Switch off all debugging measures.
1008 */
1009 goto out;
1010
1011 /*
1012 * Determine which debug features should be switched on
1013 */
Pekka Enberg06428782008-01-07 23:20:27 -08001014 for (; *str && *str != ','; str++) {
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001015 switch (tolower(*str)) {
1016 case 'f':
1017 slub_debug |= SLAB_DEBUG_FREE;
1018 break;
1019 case 'z':
1020 slub_debug |= SLAB_RED_ZONE;
1021 break;
1022 case 'p':
1023 slub_debug |= SLAB_POISON;
1024 break;
1025 case 'u':
1026 slub_debug |= SLAB_STORE_USER;
1027 break;
1028 case 't':
1029 slub_debug |= SLAB_TRACE;
1030 break;
1031 default:
1032 printk(KERN_ERR "slub_debug option '%c' "
Pekka Enberg06428782008-01-07 23:20:27 -08001033 "unknown. skipped\n", *str);
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001034 }
1035 }
1036
1037check_slabs:
1038 if (*str == ',')
Christoph Lameter41ecc552007-05-09 02:32:44 -07001039 slub_debug_slabs = str + 1;
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001040out:
Christoph Lameter41ecc552007-05-09 02:32:44 -07001041 return 1;
1042}
1043
1044__setup("slub_debug", setup_slub_debug);
1045
Christoph Lameterba0268a2007-09-11 15:24:11 -07001046static unsigned long kmem_cache_flags(unsigned long objsize,
1047 unsigned long flags, const char *name,
Christoph Lameter4ba9b9d2007-10-16 23:25:51 -07001048 void (*ctor)(struct kmem_cache *, void *))
Christoph Lameter41ecc552007-05-09 02:32:44 -07001049{
1050 /*
Christoph Lametere1533622008-02-15 23:45:24 -08001051 * Enable debugging if selected on the kernel commandline.
Christoph Lameter41ecc552007-05-09 02:32:44 -07001052 */
Christoph Lametere1533622008-02-15 23:45:24 -08001053 if (slub_debug && (!slub_debug_slabs ||
1054 strncmp(slub_debug_slabs, name, strlen(slub_debug_slabs)) == 0))
1055 flags |= slub_debug;
Christoph Lameterba0268a2007-09-11 15:24:11 -07001056
1057 return flags;
Christoph Lameter41ecc552007-05-09 02:32:44 -07001058}
1059#else
Christoph Lameter3ec09742007-05-16 22:11:00 -07001060static inline void setup_object_debug(struct kmem_cache *s,
1061 struct page *page, void *object) {}
Christoph Lameter41ecc552007-05-09 02:32:44 -07001062
Christoph Lameter3ec09742007-05-16 22:11:00 -07001063static inline int alloc_debug_processing(struct kmem_cache *s,
1064 struct page *page, void *object, void *addr) { return 0; }
Christoph Lameter41ecc552007-05-09 02:32:44 -07001065
Christoph Lameter3ec09742007-05-16 22:11:00 -07001066static inline int free_debug_processing(struct kmem_cache *s,
1067 struct page *page, void *object, void *addr) { return 0; }
Christoph Lameter41ecc552007-05-09 02:32:44 -07001068
Christoph Lameter41ecc552007-05-09 02:32:44 -07001069static inline int slab_pad_check(struct kmem_cache *s, struct page *page)
1070 { return 1; }
1071static inline int check_object(struct kmem_cache *s, struct page *page,
1072 void *object, int active) { return 1; }
Christoph Lameter3ec09742007-05-16 22:11:00 -07001073static inline void add_full(struct kmem_cache_node *n, struct page *page) {}
Christoph Lameterba0268a2007-09-11 15:24:11 -07001074static inline unsigned long kmem_cache_flags(unsigned long objsize,
1075 unsigned long flags, const char *name,
Christoph Lameter4ba9b9d2007-10-16 23:25:51 -07001076 void (*ctor)(struct kmem_cache *, void *))
Christoph Lameterba0268a2007-09-11 15:24:11 -07001077{
1078 return flags;
1079}
Christoph Lameter41ecc552007-05-09 02:32:44 -07001080#define slub_debug 0
Christoph Lameter0f389ec2008-04-14 18:53:02 +03001081
1082static inline unsigned long slabs_node(struct kmem_cache *s, int node)
1083 { return 0; }
1084static inline void inc_slabs_node(struct kmem_cache *s, int node) {}
1085static inline void dec_slabs_node(struct kmem_cache *s, int node) {}
Christoph Lameter41ecc552007-05-09 02:32:44 -07001086#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07001087/*
1088 * Slab allocation and freeing
1089 */
1090static struct page *allocate_slab(struct kmem_cache *s, gfp_t flags, int node)
1091{
Pekka Enberg06428782008-01-07 23:20:27 -08001092 struct page *page;
Christoph Lameter81819f02007-05-06 14:49:36 -07001093 int pages = 1 << s->order;
1094
Christoph Lameterb7a49f02008-02-14 14:21:32 -08001095 flags |= s->allocflags;
Mel Gormane12ba742007-10-16 01:25:52 -07001096
Christoph Lameter81819f02007-05-06 14:49:36 -07001097 if (node == -1)
1098 page = alloc_pages(flags, s->order);
1099 else
1100 page = alloc_pages_node(node, flags, s->order);
1101
1102 if (!page)
1103 return NULL;
1104
Christoph Lameter39b26462008-04-14 19:11:30 +03001105 page->objects = s->objects;
Christoph Lameter81819f02007-05-06 14:49:36 -07001106 mod_zone_page_state(page_zone(page),
1107 (s->flags & SLAB_RECLAIM_ACCOUNT) ?
1108 NR_SLAB_RECLAIMABLE : NR_SLAB_UNRECLAIMABLE,
1109 pages);
1110
1111 return page;
1112}
1113
1114static void setup_object(struct kmem_cache *s, struct page *page,
1115 void *object)
1116{
Christoph Lameter3ec09742007-05-16 22:11:00 -07001117 setup_object_debug(s, page, object);
Christoph Lameter4f104932007-05-06 14:50:17 -07001118 if (unlikely(s->ctor))
Christoph Lameter4ba9b9d2007-10-16 23:25:51 -07001119 s->ctor(s, object);
Christoph Lameter81819f02007-05-06 14:49:36 -07001120}
1121
1122static struct page *new_slab(struct kmem_cache *s, gfp_t flags, int node)
1123{
1124 struct page *page;
Christoph Lameter81819f02007-05-06 14:49:36 -07001125 void *start;
Christoph Lameter81819f02007-05-06 14:49:36 -07001126 void *last;
1127 void *p;
1128
Christoph Lameter6cb06222007-10-16 01:25:41 -07001129 BUG_ON(flags & GFP_SLAB_BUG_MASK);
Christoph Lameter81819f02007-05-06 14:49:36 -07001130
Christoph Lameter6cb06222007-10-16 01:25:41 -07001131 page = allocate_slab(s,
1132 flags & (GFP_RECLAIM_MASK | GFP_CONSTRAINT_MASK), node);
Christoph Lameter81819f02007-05-06 14:49:36 -07001133 if (!page)
1134 goto out;
1135
Christoph Lameter0f389ec2008-04-14 18:53:02 +03001136 inc_slabs_node(s, page_to_nid(page));
Christoph Lameter81819f02007-05-06 14:49:36 -07001137 page->slab = s;
1138 page->flags |= 1 << PG_slab;
1139 if (s->flags & (SLAB_DEBUG_FREE | SLAB_RED_ZONE | SLAB_POISON |
1140 SLAB_STORE_USER | SLAB_TRACE))
Christoph Lameter35e5d7e2007-05-09 02:32:42 -07001141 SetSlabDebug(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001142
1143 start = page_address(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001144
1145 if (unlikely(s->flags & SLAB_POISON))
1146 memset(start, POISON_INUSE, PAGE_SIZE << s->order);
1147
1148 last = start;
Christoph Lameter224a88b2008-04-14 19:11:31 +03001149 for_each_object(p, s, start, page->objects) {
Christoph Lameter81819f02007-05-06 14:49:36 -07001150 setup_object(s, page, last);
1151 set_freepointer(s, last, p);
1152 last = p;
1153 }
1154 setup_object(s, page, last);
Christoph Lametera973e9d2008-03-01 13:40:44 -08001155 set_freepointer(s, last, NULL);
Christoph Lameter81819f02007-05-06 14:49:36 -07001156
1157 page->freelist = start;
1158 page->inuse = 0;
1159out:
Christoph Lameter81819f02007-05-06 14:49:36 -07001160 return page;
1161}
1162
1163static void __free_slab(struct kmem_cache *s, struct page *page)
1164{
1165 int pages = 1 << s->order;
1166
Christoph Lameterc59def92007-05-16 22:10:50 -07001167 if (unlikely(SlabDebug(page))) {
Christoph Lameter81819f02007-05-06 14:49:36 -07001168 void *p;
1169
1170 slab_pad_check(s, page);
Christoph Lameter224a88b2008-04-14 19:11:31 +03001171 for_each_object(p, s, page_address(page),
1172 page->objects)
Christoph Lameter81819f02007-05-06 14:49:36 -07001173 check_object(s, page, p, 0);
Peter Zijlstra2208b762007-07-26 20:54:34 +02001174 ClearSlabDebug(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001175 }
1176
1177 mod_zone_page_state(page_zone(page),
1178 (s->flags & SLAB_RECLAIM_ACCOUNT) ?
1179 NR_SLAB_RECLAIMABLE : NR_SLAB_UNRECLAIMABLE,
Pekka Enberg06428782008-01-07 23:20:27 -08001180 -pages);
Christoph Lameter81819f02007-05-06 14:49:36 -07001181
Christoph Lameter49bd5222008-04-14 18:52:18 +03001182 __ClearPageSlab(page);
1183 reset_page_mapcount(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001184 __free_pages(page, s->order);
1185}
1186
1187static void rcu_free_slab(struct rcu_head *h)
1188{
1189 struct page *page;
1190
1191 page = container_of((struct list_head *)h, struct page, lru);
1192 __free_slab(page->slab, page);
1193}
1194
1195static void free_slab(struct kmem_cache *s, struct page *page)
1196{
1197 if (unlikely(s->flags & SLAB_DESTROY_BY_RCU)) {
1198 /*
1199 * RCU free overloads the RCU head over the LRU
1200 */
1201 struct rcu_head *head = (void *)&page->lru;
1202
1203 call_rcu(head, rcu_free_slab);
1204 } else
1205 __free_slab(s, page);
1206}
1207
1208static void discard_slab(struct kmem_cache *s, struct page *page)
1209{
Christoph Lameter0f389ec2008-04-14 18:53:02 +03001210 dec_slabs_node(s, page_to_nid(page));
Christoph Lameter81819f02007-05-06 14:49:36 -07001211 free_slab(s, page);
1212}
1213
1214/*
1215 * Per slab locking using the pagelock
1216 */
1217static __always_inline void slab_lock(struct page *page)
1218{
1219 bit_spin_lock(PG_locked, &page->flags);
1220}
1221
1222static __always_inline void slab_unlock(struct page *page)
1223{
Nick Piggina76d3542008-01-07 23:20:27 -08001224 __bit_spin_unlock(PG_locked, &page->flags);
Christoph Lameter81819f02007-05-06 14:49:36 -07001225}
1226
1227static __always_inline int slab_trylock(struct page *page)
1228{
1229 int rc = 1;
1230
1231 rc = bit_spin_trylock(PG_locked, &page->flags);
1232 return rc;
1233}
1234
1235/*
1236 * Management of partially allocated slabs
1237 */
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001238static void add_partial(struct kmem_cache_node *n,
1239 struct page *page, int tail)
Christoph Lameter81819f02007-05-06 14:49:36 -07001240{
Christoph Lametere95eed52007-05-06 14:49:44 -07001241 spin_lock(&n->list_lock);
1242 n->nr_partial++;
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001243 if (tail)
1244 list_add_tail(&page->lru, &n->partial);
1245 else
1246 list_add(&page->lru, &n->partial);
Christoph Lameter81819f02007-05-06 14:49:36 -07001247 spin_unlock(&n->list_lock);
1248}
1249
1250static void remove_partial(struct kmem_cache *s,
1251 struct page *page)
1252{
1253 struct kmem_cache_node *n = get_node(s, page_to_nid(page));
1254
1255 spin_lock(&n->list_lock);
1256 list_del(&page->lru);
1257 n->nr_partial--;
1258 spin_unlock(&n->list_lock);
1259}
1260
1261/*
Christoph Lameter672bba32007-05-09 02:32:39 -07001262 * Lock slab and remove from the partial list.
Christoph Lameter81819f02007-05-06 14:49:36 -07001263 *
Christoph Lameter672bba32007-05-09 02:32:39 -07001264 * Must hold list_lock.
Christoph Lameter81819f02007-05-06 14:49:36 -07001265 */
Christoph Lameter4b6f0752007-05-16 22:10:53 -07001266static inline int lock_and_freeze_slab(struct kmem_cache_node *n, struct page *page)
Christoph Lameter81819f02007-05-06 14:49:36 -07001267{
1268 if (slab_trylock(page)) {
1269 list_del(&page->lru);
1270 n->nr_partial--;
Christoph Lameter4b6f0752007-05-16 22:10:53 -07001271 SetSlabFrozen(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001272 return 1;
1273 }
1274 return 0;
1275}
1276
1277/*
Christoph Lameter672bba32007-05-09 02:32:39 -07001278 * Try to allocate a partial slab from a specific node.
Christoph Lameter81819f02007-05-06 14:49:36 -07001279 */
1280static struct page *get_partial_node(struct kmem_cache_node *n)
1281{
1282 struct page *page;
1283
1284 /*
1285 * Racy check. If we mistakenly see no partial slabs then we
1286 * just allocate an empty slab. If we mistakenly try to get a
Christoph Lameter672bba32007-05-09 02:32:39 -07001287 * partial slab and there is none available then get_partials()
1288 * will return NULL.
Christoph Lameter81819f02007-05-06 14:49:36 -07001289 */
1290 if (!n || !n->nr_partial)
1291 return NULL;
1292
1293 spin_lock(&n->list_lock);
1294 list_for_each_entry(page, &n->partial, lru)
Christoph Lameter4b6f0752007-05-16 22:10:53 -07001295 if (lock_and_freeze_slab(n, page))
Christoph Lameter81819f02007-05-06 14:49:36 -07001296 goto out;
1297 page = NULL;
1298out:
1299 spin_unlock(&n->list_lock);
1300 return page;
1301}
1302
1303/*
Christoph Lameter672bba32007-05-09 02:32:39 -07001304 * Get a page from somewhere. Search in increasing NUMA distances.
Christoph Lameter81819f02007-05-06 14:49:36 -07001305 */
1306static struct page *get_any_partial(struct kmem_cache *s, gfp_t flags)
1307{
1308#ifdef CONFIG_NUMA
1309 struct zonelist *zonelist;
1310 struct zone **z;
1311 struct page *page;
1312
1313 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07001314 * The defrag ratio allows a configuration of the tradeoffs between
1315 * inter node defragmentation and node local allocations. A lower
1316 * defrag_ratio increases the tendency to do local allocations
1317 * instead of attempting to obtain partial slabs from other nodes.
Christoph Lameter81819f02007-05-06 14:49:36 -07001318 *
Christoph Lameter672bba32007-05-09 02:32:39 -07001319 * If the defrag_ratio is set to 0 then kmalloc() always
1320 * returns node local objects. If the ratio is higher then kmalloc()
1321 * may return off node objects because partial slabs are obtained
1322 * from other nodes and filled up.
Christoph Lameter81819f02007-05-06 14:49:36 -07001323 *
Christoph Lameter6446faa2008-02-15 23:45:26 -08001324 * If /sys/kernel/slab/xx/defrag_ratio is set to 100 (which makes
Christoph Lameter672bba32007-05-09 02:32:39 -07001325 * defrag_ratio = 1000) then every (well almost) allocation will
1326 * first attempt to defrag slab caches on other nodes. This means
1327 * scanning over all nodes to look for partial slabs which may be
1328 * expensive if we do it every time we are trying to find a slab
1329 * with available objects.
Christoph Lameter81819f02007-05-06 14:49:36 -07001330 */
Christoph Lameter98246012008-01-07 23:20:26 -08001331 if (!s->remote_node_defrag_ratio ||
1332 get_cycles() % 1024 > s->remote_node_defrag_ratio)
Christoph Lameter81819f02007-05-06 14:49:36 -07001333 return NULL;
1334
Ingo Molnar3adbefe2008-02-05 17:57:39 -08001335 zonelist = &NODE_DATA(
1336 slab_node(current->mempolicy))->node_zonelists[gfp_zone(flags)];
Christoph Lameter81819f02007-05-06 14:49:36 -07001337 for (z = zonelist->zones; *z; z++) {
1338 struct kmem_cache_node *n;
1339
1340 n = get_node(s, zone_to_nid(*z));
1341
1342 if (n && cpuset_zone_allowed_hardwall(*z, flags) &&
Christoph Lametere95eed52007-05-06 14:49:44 -07001343 n->nr_partial > MIN_PARTIAL) {
Christoph Lameter81819f02007-05-06 14:49:36 -07001344 page = get_partial_node(n);
1345 if (page)
1346 return page;
1347 }
1348 }
1349#endif
1350 return NULL;
1351}
1352
1353/*
1354 * Get a partial page, lock it and return it.
1355 */
1356static struct page *get_partial(struct kmem_cache *s, gfp_t flags, int node)
1357{
1358 struct page *page;
1359 int searchnode = (node == -1) ? numa_node_id() : node;
1360
1361 page = get_partial_node(get_node(s, searchnode));
1362 if (page || (flags & __GFP_THISNODE))
1363 return page;
1364
1365 return get_any_partial(s, flags);
1366}
1367
1368/*
1369 * Move a page back to the lists.
1370 *
1371 * Must be called with the slab lock held.
1372 *
1373 * On exit the slab lock will have been dropped.
1374 */
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001375static void unfreeze_slab(struct kmem_cache *s, struct page *page, int tail)
Christoph Lameter81819f02007-05-06 14:49:36 -07001376{
Christoph Lametere95eed52007-05-06 14:49:44 -07001377 struct kmem_cache_node *n = get_node(s, page_to_nid(page));
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001378 struct kmem_cache_cpu *c = get_cpu_slab(s, smp_processor_id());
Christoph Lametere95eed52007-05-06 14:49:44 -07001379
Christoph Lameter4b6f0752007-05-16 22:10:53 -07001380 ClearSlabFrozen(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001381 if (page->inuse) {
Christoph Lametere95eed52007-05-06 14:49:44 -07001382
Christoph Lametera973e9d2008-03-01 13:40:44 -08001383 if (page->freelist) {
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001384 add_partial(n, page, tail);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001385 stat(c, tail ? DEACTIVATE_TO_TAIL : DEACTIVATE_TO_HEAD);
1386 } else {
1387 stat(c, DEACTIVATE_FULL);
1388 if (SlabDebug(page) && (s->flags & SLAB_STORE_USER))
1389 add_full(n, page);
1390 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001391 slab_unlock(page);
1392 } else {
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001393 stat(c, DEACTIVATE_EMPTY);
Christoph Lametere95eed52007-05-06 14:49:44 -07001394 if (n->nr_partial < MIN_PARTIAL) {
1395 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07001396 * Adding an empty slab to the partial slabs in order
1397 * to avoid page allocator overhead. This slab needs
1398 * to come after the other slabs with objects in
Christoph Lameter6446faa2008-02-15 23:45:26 -08001399 * so that the others get filled first. That way the
1400 * size of the partial list stays small.
1401 *
1402 * kmem_cache_shrink can reclaim any empty slabs from the
1403 * partial list.
Christoph Lametere95eed52007-05-06 14:49:44 -07001404 */
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001405 add_partial(n, page, 1);
Christoph Lametere95eed52007-05-06 14:49:44 -07001406 slab_unlock(page);
1407 } else {
1408 slab_unlock(page);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001409 stat(get_cpu_slab(s, raw_smp_processor_id()), FREE_SLAB);
Christoph Lametere95eed52007-05-06 14:49:44 -07001410 discard_slab(s, page);
1411 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001412 }
1413}
1414
1415/*
1416 * Remove the cpu slab
1417 */
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001418static void deactivate_slab(struct kmem_cache *s, struct kmem_cache_cpu *c)
Christoph Lameter81819f02007-05-06 14:49:36 -07001419{
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001420 struct page *page = c->page;
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001421 int tail = 1;
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001422
Christoph Lameterb773ad72008-03-04 11:10:17 -08001423 if (page->freelist)
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001424 stat(c, DEACTIVATE_REMOTE_FREES);
Christoph Lameter894b8782007-05-10 03:15:16 -07001425 /*
Christoph Lameter6446faa2008-02-15 23:45:26 -08001426 * Merge cpu freelist into slab freelist. Typically we get here
Christoph Lameter894b8782007-05-10 03:15:16 -07001427 * because both freelists are empty. So this is unlikely
1428 * to occur.
1429 */
Christoph Lametera973e9d2008-03-01 13:40:44 -08001430 while (unlikely(c->freelist)) {
Christoph Lameter894b8782007-05-10 03:15:16 -07001431 void **object;
1432
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001433 tail = 0; /* Hot objects. Put the slab first */
1434
Christoph Lameter894b8782007-05-10 03:15:16 -07001435 /* Retrieve object from cpu_freelist */
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001436 object = c->freelist;
Christoph Lameterb3fba8d2007-10-16 01:26:06 -07001437 c->freelist = c->freelist[c->offset];
Christoph Lameter894b8782007-05-10 03:15:16 -07001438
1439 /* And put onto the regular freelist */
Christoph Lameterb3fba8d2007-10-16 01:26:06 -07001440 object[c->offset] = page->freelist;
Christoph Lameter894b8782007-05-10 03:15:16 -07001441 page->freelist = object;
1442 page->inuse--;
1443 }
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001444 c->page = NULL;
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001445 unfreeze_slab(s, page, tail);
Christoph Lameter81819f02007-05-06 14:49:36 -07001446}
1447
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001448static inline void flush_slab(struct kmem_cache *s, struct kmem_cache_cpu *c)
Christoph Lameter81819f02007-05-06 14:49:36 -07001449{
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001450 stat(c, CPUSLAB_FLUSH);
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001451 slab_lock(c->page);
1452 deactivate_slab(s, c);
Christoph Lameter81819f02007-05-06 14:49:36 -07001453}
1454
1455/*
1456 * Flush cpu slab.
Christoph Lameter6446faa2008-02-15 23:45:26 -08001457 *
Christoph Lameter81819f02007-05-06 14:49:36 -07001458 * Called from IPI handler with interrupts disabled.
1459 */
Christoph Lameter0c710012007-07-17 04:03:24 -07001460static inline void __flush_cpu_slab(struct kmem_cache *s, int cpu)
Christoph Lameter81819f02007-05-06 14:49:36 -07001461{
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001462 struct kmem_cache_cpu *c = get_cpu_slab(s, cpu);
Christoph Lameter81819f02007-05-06 14:49:36 -07001463
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001464 if (likely(c && c->page))
1465 flush_slab(s, c);
Christoph Lameter81819f02007-05-06 14:49:36 -07001466}
1467
1468static void flush_cpu_slab(void *d)
1469{
1470 struct kmem_cache *s = d;
Christoph Lameter81819f02007-05-06 14:49:36 -07001471
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001472 __flush_cpu_slab(s, smp_processor_id());
Christoph Lameter81819f02007-05-06 14:49:36 -07001473}
1474
1475static void flush_all(struct kmem_cache *s)
1476{
1477#ifdef CONFIG_SMP
1478 on_each_cpu(flush_cpu_slab, s, 1, 1);
1479#else
1480 unsigned long flags;
1481
1482 local_irq_save(flags);
1483 flush_cpu_slab(s);
1484 local_irq_restore(flags);
1485#endif
1486}
1487
1488/*
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001489 * Check if the objects in a per cpu structure fit numa
1490 * locality expectations.
1491 */
1492static inline int node_match(struct kmem_cache_cpu *c, int node)
1493{
1494#ifdef CONFIG_NUMA
1495 if (node != -1 && c->node != node)
1496 return 0;
1497#endif
1498 return 1;
1499}
1500
1501/*
Christoph Lameter894b8782007-05-10 03:15:16 -07001502 * Slow path. The lockless freelist is empty or we need to perform
1503 * debugging duties.
Christoph Lameter81819f02007-05-06 14:49:36 -07001504 *
Christoph Lameter894b8782007-05-10 03:15:16 -07001505 * Interrupts are disabled.
Christoph Lameter81819f02007-05-06 14:49:36 -07001506 *
Christoph Lameter894b8782007-05-10 03:15:16 -07001507 * Processing is still very fast if new objects have been freed to the
1508 * regular freelist. In that case we simply take over the regular freelist
1509 * as the lockless freelist and zap the regular freelist.
Christoph Lameter81819f02007-05-06 14:49:36 -07001510 *
Christoph Lameter894b8782007-05-10 03:15:16 -07001511 * If that is not working then we fall back to the partial lists. We take the
1512 * first element of the freelist as the object to allocate now and move the
1513 * rest of the freelist to the lockless freelist.
1514 *
1515 * And if we were unable to get a new slab from the partial slab lists then
Christoph Lameter6446faa2008-02-15 23:45:26 -08001516 * we need to allocate a new slab. This is the slowest path since it involves
1517 * a call to the page allocator and the setup of a new slab.
Christoph Lameter81819f02007-05-06 14:49:36 -07001518 */
Christoph Lameter894b8782007-05-10 03:15:16 -07001519static void *__slab_alloc(struct kmem_cache *s,
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001520 gfp_t gfpflags, int node, void *addr, struct kmem_cache_cpu *c)
Christoph Lameter81819f02007-05-06 14:49:36 -07001521{
Christoph Lameter81819f02007-05-06 14:49:36 -07001522 void **object;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001523 struct page *new;
Christoph Lameter81819f02007-05-06 14:49:36 -07001524
Linus Torvaldse72e9c22008-03-27 20:56:33 -07001525 /* We handle __GFP_ZERO in the caller */
1526 gfpflags &= ~__GFP_ZERO;
1527
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001528 if (!c->page)
Christoph Lameter81819f02007-05-06 14:49:36 -07001529 goto new_slab;
1530
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001531 slab_lock(c->page);
1532 if (unlikely(!node_match(c, node)))
Christoph Lameter81819f02007-05-06 14:49:36 -07001533 goto another_slab;
Christoph Lameter6446faa2008-02-15 23:45:26 -08001534
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001535 stat(c, ALLOC_REFILL);
Christoph Lameter6446faa2008-02-15 23:45:26 -08001536
Christoph Lameter894b8782007-05-10 03:15:16 -07001537load_freelist:
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001538 object = c->page->freelist;
Christoph Lametera973e9d2008-03-01 13:40:44 -08001539 if (unlikely(!object))
Christoph Lameter81819f02007-05-06 14:49:36 -07001540 goto another_slab;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001541 if (unlikely(SlabDebug(c->page)))
Christoph Lameter81819f02007-05-06 14:49:36 -07001542 goto debug;
1543
Christoph Lameterb3fba8d2007-10-16 01:26:06 -07001544 c->freelist = object[c->offset];
Christoph Lameter39b26462008-04-14 19:11:30 +03001545 c->page->inuse = c->page->objects;
Christoph Lametera973e9d2008-03-01 13:40:44 -08001546 c->page->freelist = NULL;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001547 c->node = page_to_nid(c->page);
Christoph Lameter1f842602008-01-07 23:20:30 -08001548unlock_out:
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001549 slab_unlock(c->page);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001550 stat(c, ALLOC_SLOWPATH);
Christoph Lameter81819f02007-05-06 14:49:36 -07001551 return object;
1552
1553another_slab:
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001554 deactivate_slab(s, c);
Christoph Lameter81819f02007-05-06 14:49:36 -07001555
1556new_slab:
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001557 new = get_partial(s, gfpflags, node);
1558 if (new) {
1559 c->page = new;
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001560 stat(c, ALLOC_FROM_PARTIAL);
Christoph Lameter894b8782007-05-10 03:15:16 -07001561 goto load_freelist;
Christoph Lameter81819f02007-05-06 14:49:36 -07001562 }
1563
Christoph Lameterb811c202007-10-16 23:25:51 -07001564 if (gfpflags & __GFP_WAIT)
1565 local_irq_enable();
1566
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001567 new = new_slab(s, gfpflags, node);
Christoph Lameterb811c202007-10-16 23:25:51 -07001568
1569 if (gfpflags & __GFP_WAIT)
1570 local_irq_disable();
1571
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001572 if (new) {
1573 c = get_cpu_slab(s, smp_processor_id());
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001574 stat(c, ALLOC_SLAB);
Christoph Lameter05aa3452007-11-05 11:31:58 -08001575 if (c->page)
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001576 flush_slab(s, c);
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001577 slab_lock(new);
1578 SetSlabFrozen(new);
1579 c->page = new;
Christoph Lameter4b6f0752007-05-16 22:10:53 -07001580 goto load_freelist;
Christoph Lameter81819f02007-05-06 14:49:36 -07001581 }
Linus Torvalds00e962c2008-02-19 09:08:49 -08001582
Christoph Lameter71c7a062008-02-14 14:28:01 -08001583 /*
1584 * No memory available.
1585 *
1586 * If the slab uses higher order allocs but the object is
1587 * smaller than a page size then we can fallback in emergencies
1588 * to the page allocator via kmalloc_large. The page allocator may
1589 * have failed to obtain a higher order page and we can try to
1590 * allocate a single page if the object fits into a single page.
1591 * That is only possible if certain conditions are met that are being
1592 * checked when a slab is created.
1593 */
Christoph Lametercaeab082008-03-12 23:57:49 -07001594 if (!(gfpflags & __GFP_NORETRY) &&
1595 (s->flags & __PAGE_ALLOC_FALLBACK)) {
1596 if (gfpflags & __GFP_WAIT)
1597 local_irq_enable();
1598 object = kmalloc_large(s->objsize, gfpflags);
1599 if (gfpflags & __GFP_WAIT)
1600 local_irq_disable();
1601 return object;
1602 }
Christoph Lameter71c7a062008-02-14 14:28:01 -08001603 return NULL;
Christoph Lameter81819f02007-05-06 14:49:36 -07001604debug:
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001605 if (!alloc_debug_processing(s, c->page, object, addr))
Christoph Lameter81819f02007-05-06 14:49:36 -07001606 goto another_slab;
Christoph Lameter894b8782007-05-10 03:15:16 -07001607
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001608 c->page->inuse++;
Christoph Lameterb3fba8d2007-10-16 01:26:06 -07001609 c->page->freelist = object[c->offset];
Christoph Lameteree3c72a2007-10-16 01:26:07 -07001610 c->node = -1;
Christoph Lameter1f842602008-01-07 23:20:30 -08001611 goto unlock_out;
Christoph Lameter894b8782007-05-10 03:15:16 -07001612}
1613
1614/*
1615 * Inlined fastpath so that allocation functions (kmalloc, kmem_cache_alloc)
1616 * have the fastpath folded into their functions. So no function call
1617 * overhead for requests that can be satisfied on the fastpath.
1618 *
1619 * The fastpath works by first checking if the lockless freelist can be used.
1620 * If not then __slab_alloc is called for slow processing.
1621 *
1622 * Otherwise we can simply pick the next object from the lockless free list.
1623 */
Pekka Enberg06428782008-01-07 23:20:27 -08001624static __always_inline void *slab_alloc(struct kmem_cache *s,
Christoph Lameterce15fea2007-07-17 04:03:28 -07001625 gfp_t gfpflags, int node, void *addr)
Christoph Lameter894b8782007-05-10 03:15:16 -07001626{
Christoph Lameter894b8782007-05-10 03:15:16 -07001627 void **object;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001628 struct kmem_cache_cpu *c;
Christoph Lameter1f842602008-01-07 23:20:30 -08001629 unsigned long flags;
1630
Christoph Lameter894b8782007-05-10 03:15:16 -07001631 local_irq_save(flags);
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001632 c = get_cpu_slab(s, smp_processor_id());
Christoph Lametera973e9d2008-03-01 13:40:44 -08001633 if (unlikely(!c->freelist || !node_match(c, node)))
Christoph Lameter894b8782007-05-10 03:15:16 -07001634
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001635 object = __slab_alloc(s, gfpflags, node, addr, c);
Christoph Lameter894b8782007-05-10 03:15:16 -07001636
1637 else {
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001638 object = c->freelist;
Christoph Lameterb3fba8d2007-10-16 01:26:06 -07001639 c->freelist = object[c->offset];
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001640 stat(c, ALLOC_FASTPATH);
Christoph Lameter894b8782007-05-10 03:15:16 -07001641 }
1642 local_irq_restore(flags);
Christoph Lameterd07dbea2007-07-17 04:03:23 -07001643
1644 if (unlikely((gfpflags & __GFP_ZERO) && object))
Christoph Lameter42a9fdb2007-10-16 01:26:09 -07001645 memset(object, 0, c->objsize);
Christoph Lameterd07dbea2007-07-17 04:03:23 -07001646
Christoph Lameter894b8782007-05-10 03:15:16 -07001647 return object;
Christoph Lameter81819f02007-05-06 14:49:36 -07001648}
1649
1650void *kmem_cache_alloc(struct kmem_cache *s, gfp_t gfpflags)
1651{
Christoph Lameterce15fea2007-07-17 04:03:28 -07001652 return slab_alloc(s, gfpflags, -1, __builtin_return_address(0));
Christoph Lameter81819f02007-05-06 14:49:36 -07001653}
1654EXPORT_SYMBOL(kmem_cache_alloc);
1655
1656#ifdef CONFIG_NUMA
1657void *kmem_cache_alloc_node(struct kmem_cache *s, gfp_t gfpflags, int node)
1658{
Christoph Lameterce15fea2007-07-17 04:03:28 -07001659 return slab_alloc(s, gfpflags, node, __builtin_return_address(0));
Christoph Lameter81819f02007-05-06 14:49:36 -07001660}
1661EXPORT_SYMBOL(kmem_cache_alloc_node);
1662#endif
1663
1664/*
Christoph Lameter894b8782007-05-10 03:15:16 -07001665 * Slow patch handling. This may still be called frequently since objects
1666 * have a longer lifetime than the cpu slabs in most processing loads.
Christoph Lameter81819f02007-05-06 14:49:36 -07001667 *
Christoph Lameter894b8782007-05-10 03:15:16 -07001668 * So we still attempt to reduce cache line usage. Just take the slab
1669 * lock and free the item. If there is no additional partial page
1670 * handling required then we can return immediately.
Christoph Lameter81819f02007-05-06 14:49:36 -07001671 */
Christoph Lameter894b8782007-05-10 03:15:16 -07001672static void __slab_free(struct kmem_cache *s, struct page *page,
Christoph Lameterb3fba8d2007-10-16 01:26:06 -07001673 void *x, void *addr, unsigned int offset)
Christoph Lameter81819f02007-05-06 14:49:36 -07001674{
1675 void *prior;
1676 void **object = (void *)x;
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001677 struct kmem_cache_cpu *c;
Christoph Lameter81819f02007-05-06 14:49:36 -07001678
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001679 c = get_cpu_slab(s, raw_smp_processor_id());
1680 stat(c, FREE_SLOWPATH);
Christoph Lameter81819f02007-05-06 14:49:36 -07001681 slab_lock(page);
1682
Christoph Lameter35e5d7e2007-05-09 02:32:42 -07001683 if (unlikely(SlabDebug(page)))
Christoph Lameter81819f02007-05-06 14:49:36 -07001684 goto debug;
Christoph Lameter6446faa2008-02-15 23:45:26 -08001685
Christoph Lameter81819f02007-05-06 14:49:36 -07001686checks_ok:
Christoph Lameterb3fba8d2007-10-16 01:26:06 -07001687 prior = object[offset] = page->freelist;
Christoph Lameter81819f02007-05-06 14:49:36 -07001688 page->freelist = object;
1689 page->inuse--;
1690
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001691 if (unlikely(SlabFrozen(page))) {
1692 stat(c, FREE_FROZEN);
Christoph Lameter81819f02007-05-06 14:49:36 -07001693 goto out_unlock;
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001694 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001695
1696 if (unlikely(!page->inuse))
1697 goto slab_empty;
1698
1699 /*
Christoph Lameter6446faa2008-02-15 23:45:26 -08001700 * Objects left in the slab. If it was not on the partial list before
Christoph Lameter81819f02007-05-06 14:49:36 -07001701 * then add it.
1702 */
Christoph Lametera973e9d2008-03-01 13:40:44 -08001703 if (unlikely(!prior)) {
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001704 add_partial(get_node(s, page_to_nid(page)), page, 1);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001705 stat(c, FREE_ADD_PARTIAL);
1706 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001707
1708out_unlock:
1709 slab_unlock(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001710 return;
1711
1712slab_empty:
Christoph Lametera973e9d2008-03-01 13:40:44 -08001713 if (prior) {
Christoph Lameter81819f02007-05-06 14:49:36 -07001714 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07001715 * Slab still on the partial list.
Christoph Lameter81819f02007-05-06 14:49:36 -07001716 */
1717 remove_partial(s, page);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001718 stat(c, FREE_REMOVE_PARTIAL);
1719 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001720 slab_unlock(page);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001721 stat(c, FREE_SLAB);
Christoph Lameter81819f02007-05-06 14:49:36 -07001722 discard_slab(s, page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001723 return;
1724
1725debug:
Christoph Lameter3ec09742007-05-16 22:11:00 -07001726 if (!free_debug_processing(s, page, x, addr))
Christoph Lameter77c5e2d2007-05-06 14:49:42 -07001727 goto out_unlock;
Christoph Lameter77c5e2d2007-05-06 14:49:42 -07001728 goto checks_ok;
Christoph Lameter81819f02007-05-06 14:49:36 -07001729}
1730
Christoph Lameter894b8782007-05-10 03:15:16 -07001731/*
1732 * Fastpath with forced inlining to produce a kfree and kmem_cache_free that
1733 * can perform fastpath freeing without additional function calls.
1734 *
1735 * The fastpath is only possible if we are freeing to the current cpu slab
1736 * of this processor. This typically the case if we have just allocated
1737 * the item before.
1738 *
1739 * If fastpath is not possible then fall back to __slab_free where we deal
1740 * with all sorts of special processing.
1741 */
Pekka Enberg06428782008-01-07 23:20:27 -08001742static __always_inline void slab_free(struct kmem_cache *s,
Christoph Lameter894b8782007-05-10 03:15:16 -07001743 struct page *page, void *x, void *addr)
1744{
1745 void **object = (void *)x;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001746 struct kmem_cache_cpu *c;
Christoph Lameter1f842602008-01-07 23:20:30 -08001747 unsigned long flags;
1748
Christoph Lameter894b8782007-05-10 03:15:16 -07001749 local_irq_save(flags);
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001750 c = get_cpu_slab(s, smp_processor_id());
Christoph Lameter27d9e4e2008-02-15 23:45:25 -08001751 debug_check_no_locks_freed(object, c->objsize);
Christoph Lameteree3c72a2007-10-16 01:26:07 -07001752 if (likely(page == c->page && c->node >= 0)) {
Christoph Lameterb3fba8d2007-10-16 01:26:06 -07001753 object[c->offset] = c->freelist;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001754 c->freelist = object;
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001755 stat(c, FREE_FASTPATH);
Christoph Lameter894b8782007-05-10 03:15:16 -07001756 } else
Christoph Lameterb3fba8d2007-10-16 01:26:06 -07001757 __slab_free(s, page, x, addr, c->offset);
Christoph Lameter894b8782007-05-10 03:15:16 -07001758
1759 local_irq_restore(flags);
1760}
1761
Christoph Lameter81819f02007-05-06 14:49:36 -07001762void kmem_cache_free(struct kmem_cache *s, void *x)
1763{
Christoph Lameter77c5e2d2007-05-06 14:49:42 -07001764 struct page *page;
Christoph Lameter81819f02007-05-06 14:49:36 -07001765
Christoph Lameterb49af682007-05-06 14:49:41 -07001766 page = virt_to_head_page(x);
Christoph Lameter81819f02007-05-06 14:49:36 -07001767
Christoph Lameter77c5e2d2007-05-06 14:49:42 -07001768 slab_free(s, page, x, __builtin_return_address(0));
Christoph Lameter81819f02007-05-06 14:49:36 -07001769}
1770EXPORT_SYMBOL(kmem_cache_free);
1771
1772/* Figure out on which slab object the object resides */
1773static struct page *get_object_page(const void *x)
1774{
Christoph Lameterb49af682007-05-06 14:49:41 -07001775 struct page *page = virt_to_head_page(x);
Christoph Lameter81819f02007-05-06 14:49:36 -07001776
1777 if (!PageSlab(page))
1778 return NULL;
1779
1780 return page;
1781}
1782
1783/*
Christoph Lameter672bba32007-05-09 02:32:39 -07001784 * Object placement in a slab is made very easy because we always start at
1785 * offset 0. If we tune the size of the object to the alignment then we can
1786 * get the required alignment by putting one properly sized object after
1787 * another.
Christoph Lameter81819f02007-05-06 14:49:36 -07001788 *
1789 * Notice that the allocation order determines the sizes of the per cpu
1790 * caches. Each processor has always one slab available for allocations.
1791 * Increasing the allocation order reduces the number of times that slabs
Christoph Lameter672bba32007-05-09 02:32:39 -07001792 * must be moved on and off the partial lists and is therefore a factor in
Christoph Lameter81819f02007-05-06 14:49:36 -07001793 * locking overhead.
Christoph Lameter81819f02007-05-06 14:49:36 -07001794 */
1795
1796/*
1797 * Mininum / Maximum order of slab pages. This influences locking overhead
1798 * and slab fragmentation. A higher order reduces the number of partial slabs
1799 * and increases the number of allocations possible without having to
1800 * take the list_lock.
1801 */
1802static int slub_min_order;
1803static int slub_max_order = DEFAULT_MAX_ORDER;
Christoph Lameter81819f02007-05-06 14:49:36 -07001804static int slub_min_objects = DEFAULT_MIN_OBJECTS;
1805
1806/*
1807 * Merge control. If this is set then no merging of slab caches will occur.
Christoph Lameter672bba32007-05-09 02:32:39 -07001808 * (Could be removed. This was introduced to pacify the merge skeptics.)
Christoph Lameter81819f02007-05-06 14:49:36 -07001809 */
1810static int slub_nomerge;
1811
1812/*
Christoph Lameter81819f02007-05-06 14:49:36 -07001813 * Calculate the order of allocation given an slab object size.
1814 *
Christoph Lameter672bba32007-05-09 02:32:39 -07001815 * The order of allocation has significant impact on performance and other
1816 * system components. Generally order 0 allocations should be preferred since
1817 * order 0 does not cause fragmentation in the page allocator. Larger objects
1818 * be problematic to put into order 0 slabs because there may be too much
1819 * unused space left. We go to a higher order if more than 1/8th of the slab
1820 * would be wasted.
Christoph Lameter81819f02007-05-06 14:49:36 -07001821 *
Christoph Lameter672bba32007-05-09 02:32:39 -07001822 * In order to reach satisfactory performance we must ensure that a minimum
1823 * number of objects is in one slab. Otherwise we may generate too much
1824 * activity on the partial lists which requires taking the list_lock. This is
1825 * less a concern for large slabs though which are rarely used.
Christoph Lameter81819f02007-05-06 14:49:36 -07001826 *
Christoph Lameter672bba32007-05-09 02:32:39 -07001827 * slub_max_order specifies the order where we begin to stop considering the
1828 * number of objects in a slab as critical. If we reach slub_max_order then
1829 * we try to keep the page order as low as possible. So we accept more waste
1830 * of space in favor of a small page order.
1831 *
1832 * Higher order allocations also allow the placement of more objects in a
1833 * slab and thereby reduce object handling overhead. If the user has
1834 * requested a higher mininum order then we start with that one instead of
1835 * the smallest order which will fit the object.
Christoph Lameter81819f02007-05-06 14:49:36 -07001836 */
Christoph Lameter5e6d4442007-05-09 02:32:46 -07001837static inline int slab_order(int size, int min_objects,
1838 int max_order, int fract_leftover)
Christoph Lameter81819f02007-05-06 14:49:36 -07001839{
1840 int order;
1841 int rem;
Christoph Lameter6300ea72007-07-17 04:03:20 -07001842 int min_order = slub_min_order;
Christoph Lameter81819f02007-05-06 14:49:36 -07001843
Christoph Lameter39b26462008-04-14 19:11:30 +03001844 if ((PAGE_SIZE << min_order) / size > 65535)
1845 return get_order(size * 65535) - 1;
1846
Christoph Lameter6300ea72007-07-17 04:03:20 -07001847 for (order = max(min_order,
Christoph Lameter5e6d4442007-05-09 02:32:46 -07001848 fls(min_objects * size - 1) - PAGE_SHIFT);
1849 order <= max_order; order++) {
1850
Christoph Lameter81819f02007-05-06 14:49:36 -07001851 unsigned long slab_size = PAGE_SIZE << order;
1852
Christoph Lameter5e6d4442007-05-09 02:32:46 -07001853 if (slab_size < min_objects * size)
Christoph Lameter81819f02007-05-06 14:49:36 -07001854 continue;
1855
Christoph Lameter81819f02007-05-06 14:49:36 -07001856 rem = slab_size % size;
1857
Christoph Lameter5e6d4442007-05-09 02:32:46 -07001858 if (rem <= slab_size / fract_leftover)
Christoph Lameter81819f02007-05-06 14:49:36 -07001859 break;
1860
1861 }
Christoph Lameter672bba32007-05-09 02:32:39 -07001862
Christoph Lameter81819f02007-05-06 14:49:36 -07001863 return order;
1864}
1865
Christoph Lameter5e6d4442007-05-09 02:32:46 -07001866static inline int calculate_order(int size)
1867{
1868 int order;
1869 int min_objects;
1870 int fraction;
1871
1872 /*
1873 * Attempt to find best configuration for a slab. This
1874 * works by first attempting to generate a layout with
1875 * the best configuration and backing off gradually.
1876 *
1877 * First we reduce the acceptable waste in a slab. Then
1878 * we reduce the minimum objects required in a slab.
1879 */
1880 min_objects = slub_min_objects;
1881 while (min_objects > 1) {
1882 fraction = 8;
1883 while (fraction >= 4) {
1884 order = slab_order(size, min_objects,
1885 slub_max_order, fraction);
1886 if (order <= slub_max_order)
1887 return order;
1888 fraction /= 2;
1889 }
1890 min_objects /= 2;
1891 }
1892
1893 /*
1894 * We were unable to place multiple objects in a slab. Now
1895 * lets see if we can place a single object there.
1896 */
1897 order = slab_order(size, 1, slub_max_order, 1);
1898 if (order <= slub_max_order)
1899 return order;
1900
1901 /*
1902 * Doh this slab cannot be placed using slub_max_order.
1903 */
1904 order = slab_order(size, 1, MAX_ORDER, 1);
1905 if (order <= MAX_ORDER)
1906 return order;
1907 return -ENOSYS;
1908}
1909
Christoph Lameter81819f02007-05-06 14:49:36 -07001910/*
Christoph Lameter672bba32007-05-09 02:32:39 -07001911 * Figure out what the alignment of the objects will be.
Christoph Lameter81819f02007-05-06 14:49:36 -07001912 */
1913static unsigned long calculate_alignment(unsigned long flags,
1914 unsigned long align, unsigned long size)
1915{
1916 /*
Christoph Lameter6446faa2008-02-15 23:45:26 -08001917 * If the user wants hardware cache aligned objects then follow that
1918 * suggestion if the object is sufficiently large.
Christoph Lameter81819f02007-05-06 14:49:36 -07001919 *
Christoph Lameter6446faa2008-02-15 23:45:26 -08001920 * The hardware cache alignment cannot override the specified
1921 * alignment though. If that is greater then use it.
Christoph Lameter81819f02007-05-06 14:49:36 -07001922 */
Nick Pigginb6210382008-03-05 14:05:56 -08001923 if (flags & SLAB_HWCACHE_ALIGN) {
1924 unsigned long ralign = cache_line_size();
1925 while (size <= ralign / 2)
1926 ralign /= 2;
1927 align = max(align, ralign);
1928 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001929
1930 if (align < ARCH_SLAB_MINALIGN)
Nick Pigginb6210382008-03-05 14:05:56 -08001931 align = ARCH_SLAB_MINALIGN;
Christoph Lameter81819f02007-05-06 14:49:36 -07001932
1933 return ALIGN(align, sizeof(void *));
1934}
1935
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001936static void init_kmem_cache_cpu(struct kmem_cache *s,
1937 struct kmem_cache_cpu *c)
1938{
1939 c->page = NULL;
Christoph Lametera973e9d2008-03-01 13:40:44 -08001940 c->freelist = NULL;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001941 c->node = 0;
Christoph Lameter42a9fdb2007-10-16 01:26:09 -07001942 c->offset = s->offset / sizeof(void *);
1943 c->objsize = s->objsize;
Pekka Enberg62f75532008-04-14 18:50:44 +03001944#ifdef CONFIG_SLUB_STATS
1945 memset(c->stat, 0, NR_SLUB_STAT_ITEMS * sizeof(unsigned));
1946#endif
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001947}
1948
Christoph Lameter81819f02007-05-06 14:49:36 -07001949static void init_kmem_cache_node(struct kmem_cache_node *n)
1950{
1951 n->nr_partial = 0;
Christoph Lameter81819f02007-05-06 14:49:36 -07001952 spin_lock_init(&n->list_lock);
1953 INIT_LIST_HEAD(&n->partial);
Christoph Lameter8ab13722007-07-17 04:03:32 -07001954#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter0f389ec2008-04-14 18:53:02 +03001955 atomic_long_set(&n->nr_slabs, 0);
Christoph Lameter643b1132007-05-06 14:49:42 -07001956 INIT_LIST_HEAD(&n->full);
Christoph Lameter8ab13722007-07-17 04:03:32 -07001957#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07001958}
1959
Christoph Lameter4c93c3552007-10-16 01:26:08 -07001960#ifdef CONFIG_SMP
1961/*
1962 * Per cpu array for per cpu structures.
1963 *
1964 * The per cpu array places all kmem_cache_cpu structures from one processor
1965 * close together meaning that it becomes possible that multiple per cpu
1966 * structures are contained in one cacheline. This may be particularly
1967 * beneficial for the kmalloc caches.
1968 *
1969 * A desktop system typically has around 60-80 slabs. With 100 here we are
1970 * likely able to get per cpu structures for all caches from the array defined
1971 * here. We must be able to cover all kmalloc caches during bootstrap.
1972 *
1973 * If the per cpu array is exhausted then fall back to kmalloc
1974 * of individual cachelines. No sharing is possible then.
1975 */
1976#define NR_KMEM_CACHE_CPU 100
1977
1978static DEFINE_PER_CPU(struct kmem_cache_cpu,
1979 kmem_cache_cpu)[NR_KMEM_CACHE_CPU];
1980
1981static DEFINE_PER_CPU(struct kmem_cache_cpu *, kmem_cache_cpu_free);
1982static cpumask_t kmem_cach_cpu_free_init_once = CPU_MASK_NONE;
1983
1984static struct kmem_cache_cpu *alloc_kmem_cache_cpu(struct kmem_cache *s,
1985 int cpu, gfp_t flags)
1986{
1987 struct kmem_cache_cpu *c = per_cpu(kmem_cache_cpu_free, cpu);
1988
1989 if (c)
1990 per_cpu(kmem_cache_cpu_free, cpu) =
1991 (void *)c->freelist;
1992 else {
1993 /* Table overflow: So allocate ourselves */
1994 c = kmalloc_node(
1995 ALIGN(sizeof(struct kmem_cache_cpu), cache_line_size()),
1996 flags, cpu_to_node(cpu));
1997 if (!c)
1998 return NULL;
1999 }
2000
2001 init_kmem_cache_cpu(s, c);
2002 return c;
2003}
2004
2005static void free_kmem_cache_cpu(struct kmem_cache_cpu *c, int cpu)
2006{
2007 if (c < per_cpu(kmem_cache_cpu, cpu) ||
2008 c > per_cpu(kmem_cache_cpu, cpu) + NR_KMEM_CACHE_CPU) {
2009 kfree(c);
2010 return;
2011 }
2012 c->freelist = (void *)per_cpu(kmem_cache_cpu_free, cpu);
2013 per_cpu(kmem_cache_cpu_free, cpu) = c;
2014}
2015
2016static void free_kmem_cache_cpus(struct kmem_cache *s)
2017{
2018 int cpu;
2019
2020 for_each_online_cpu(cpu) {
2021 struct kmem_cache_cpu *c = get_cpu_slab(s, cpu);
2022
2023 if (c) {
2024 s->cpu_slab[cpu] = NULL;
2025 free_kmem_cache_cpu(c, cpu);
2026 }
2027 }
2028}
2029
2030static int alloc_kmem_cache_cpus(struct kmem_cache *s, gfp_t flags)
2031{
2032 int cpu;
2033
2034 for_each_online_cpu(cpu) {
2035 struct kmem_cache_cpu *c = get_cpu_slab(s, cpu);
2036
2037 if (c)
2038 continue;
2039
2040 c = alloc_kmem_cache_cpu(s, cpu, flags);
2041 if (!c) {
2042 free_kmem_cache_cpus(s);
2043 return 0;
2044 }
2045 s->cpu_slab[cpu] = c;
2046 }
2047 return 1;
2048}
2049
2050/*
2051 * Initialize the per cpu array.
2052 */
2053static void init_alloc_cpu_cpu(int cpu)
2054{
2055 int i;
2056
2057 if (cpu_isset(cpu, kmem_cach_cpu_free_init_once))
2058 return;
2059
2060 for (i = NR_KMEM_CACHE_CPU - 1; i >= 0; i--)
2061 free_kmem_cache_cpu(&per_cpu(kmem_cache_cpu, cpu)[i], cpu);
2062
2063 cpu_set(cpu, kmem_cach_cpu_free_init_once);
2064}
2065
2066static void __init init_alloc_cpu(void)
2067{
2068 int cpu;
2069
2070 for_each_online_cpu(cpu)
2071 init_alloc_cpu_cpu(cpu);
2072 }
2073
2074#else
2075static inline void free_kmem_cache_cpus(struct kmem_cache *s) {}
2076static inline void init_alloc_cpu(void) {}
2077
2078static inline int alloc_kmem_cache_cpus(struct kmem_cache *s, gfp_t flags)
2079{
2080 init_kmem_cache_cpu(s, &s->cpu_slab);
2081 return 1;
2082}
2083#endif
2084
Christoph Lameter81819f02007-05-06 14:49:36 -07002085#ifdef CONFIG_NUMA
2086/*
2087 * No kmalloc_node yet so do it by hand. We know that this is the first
2088 * slab on the node for this slabcache. There are no concurrent accesses
2089 * possible.
2090 *
2091 * Note that this function only works on the kmalloc_node_cache
Christoph Lameter4c93c3552007-10-16 01:26:08 -07002092 * when allocating for the kmalloc_node_cache. This is used for bootstrapping
2093 * memory on a fresh node that has no slab structures yet.
Christoph Lameter81819f02007-05-06 14:49:36 -07002094 */
Adrian Bunk1cd7daa2007-10-16 01:24:18 -07002095static struct kmem_cache_node *early_kmem_cache_node_alloc(gfp_t gfpflags,
2096 int node)
Christoph Lameter81819f02007-05-06 14:49:36 -07002097{
2098 struct page *page;
2099 struct kmem_cache_node *n;
rootba84c732008-01-07 23:20:28 -08002100 unsigned long flags;
Christoph Lameter81819f02007-05-06 14:49:36 -07002101
2102 BUG_ON(kmalloc_caches->size < sizeof(struct kmem_cache_node));
2103
Christoph Lametera2f92ee2007-08-22 14:01:57 -07002104 page = new_slab(kmalloc_caches, gfpflags, node);
Christoph Lameter81819f02007-05-06 14:49:36 -07002105
2106 BUG_ON(!page);
Christoph Lametera2f92ee2007-08-22 14:01:57 -07002107 if (page_to_nid(page) != node) {
2108 printk(KERN_ERR "SLUB: Unable to allocate memory from "
2109 "node %d\n", node);
2110 printk(KERN_ERR "SLUB: Allocating a useless per node structure "
2111 "in order to be able to continue\n");
2112 }
2113
Christoph Lameter81819f02007-05-06 14:49:36 -07002114 n = page->freelist;
2115 BUG_ON(!n);
2116 page->freelist = get_freepointer(kmalloc_caches, n);
2117 page->inuse++;
2118 kmalloc_caches->node[node] = n;
Christoph Lameter8ab13722007-07-17 04:03:32 -07002119#ifdef CONFIG_SLUB_DEBUG
Christoph Lameterd45f39c2007-07-17 04:03:21 -07002120 init_object(kmalloc_caches, n, 1);
2121 init_tracking(kmalloc_caches, n);
Christoph Lameter8ab13722007-07-17 04:03:32 -07002122#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07002123 init_kmem_cache_node(n);
Christoph Lameter0f389ec2008-04-14 18:53:02 +03002124 inc_slabs_node(kmalloc_caches, node);
Christoph Lameter6446faa2008-02-15 23:45:26 -08002125
rootba84c732008-01-07 23:20:28 -08002126 /*
2127 * lockdep requires consistent irq usage for each lock
2128 * so even though there cannot be a race this early in
2129 * the boot sequence, we still disable irqs.
2130 */
2131 local_irq_save(flags);
Christoph Lameter7c2e1322008-01-07 23:20:27 -08002132 add_partial(n, page, 0);
rootba84c732008-01-07 23:20:28 -08002133 local_irq_restore(flags);
Christoph Lameter81819f02007-05-06 14:49:36 -07002134 return n;
2135}
2136
2137static void free_kmem_cache_nodes(struct kmem_cache *s)
2138{
2139 int node;
2140
Christoph Lameterf64dc582007-10-16 01:25:33 -07002141 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002142 struct kmem_cache_node *n = s->node[node];
2143 if (n && n != &s->local_node)
2144 kmem_cache_free(kmalloc_caches, n);
2145 s->node[node] = NULL;
2146 }
2147}
2148
2149static int init_kmem_cache_nodes(struct kmem_cache *s, gfp_t gfpflags)
2150{
2151 int node;
2152 int local_node;
2153
2154 if (slab_state >= UP)
2155 local_node = page_to_nid(virt_to_page(s));
2156 else
2157 local_node = 0;
2158
Christoph Lameterf64dc582007-10-16 01:25:33 -07002159 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002160 struct kmem_cache_node *n;
2161
2162 if (local_node == node)
2163 n = &s->local_node;
2164 else {
2165 if (slab_state == DOWN) {
2166 n = early_kmem_cache_node_alloc(gfpflags,
2167 node);
2168 continue;
2169 }
2170 n = kmem_cache_alloc_node(kmalloc_caches,
2171 gfpflags, node);
2172
2173 if (!n) {
2174 free_kmem_cache_nodes(s);
2175 return 0;
2176 }
2177
2178 }
2179 s->node[node] = n;
2180 init_kmem_cache_node(n);
2181 }
2182 return 1;
2183}
2184#else
2185static void free_kmem_cache_nodes(struct kmem_cache *s)
2186{
2187}
2188
2189static int init_kmem_cache_nodes(struct kmem_cache *s, gfp_t gfpflags)
2190{
2191 init_kmem_cache_node(&s->local_node);
2192 return 1;
2193}
2194#endif
2195
2196/*
2197 * calculate_sizes() determines the order and the distribution of data within
2198 * a slab object.
2199 */
2200static int calculate_sizes(struct kmem_cache *s)
2201{
2202 unsigned long flags = s->flags;
2203 unsigned long size = s->objsize;
2204 unsigned long align = s->align;
2205
2206 /*
Christoph Lameterd8b42bf2008-02-15 23:45:25 -08002207 * Round up object size to the next word boundary. We can only
2208 * place the free pointer at word boundaries and this determines
2209 * the possible location of the free pointer.
2210 */
2211 size = ALIGN(size, sizeof(void *));
2212
2213#ifdef CONFIG_SLUB_DEBUG
2214 /*
Christoph Lameter81819f02007-05-06 14:49:36 -07002215 * Determine if we can poison the object itself. If the user of
2216 * the slab may touch the object after free or before allocation
2217 * then we should never poison the object itself.
2218 */
2219 if ((flags & SLAB_POISON) && !(flags & SLAB_DESTROY_BY_RCU) &&
Christoph Lameterc59def92007-05-16 22:10:50 -07002220 !s->ctor)
Christoph Lameter81819f02007-05-06 14:49:36 -07002221 s->flags |= __OBJECT_POISON;
2222 else
2223 s->flags &= ~__OBJECT_POISON;
2224
Christoph Lameter81819f02007-05-06 14:49:36 -07002225
2226 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07002227 * If we are Redzoning then check if there is some space between the
Christoph Lameter81819f02007-05-06 14:49:36 -07002228 * end of the object and the free pointer. If not then add an
Christoph Lameter672bba32007-05-09 02:32:39 -07002229 * additional word to have some bytes to store Redzone information.
Christoph Lameter81819f02007-05-06 14:49:36 -07002230 */
2231 if ((flags & SLAB_RED_ZONE) && size == s->objsize)
2232 size += sizeof(void *);
Christoph Lameter41ecc552007-05-09 02:32:44 -07002233#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07002234
2235 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07002236 * With that we have determined the number of bytes in actual use
2237 * by the object. This is the potential offset to the free pointer.
Christoph Lameter81819f02007-05-06 14:49:36 -07002238 */
2239 s->inuse = size;
2240
2241 if (((flags & (SLAB_DESTROY_BY_RCU | SLAB_POISON)) ||
Christoph Lameterc59def92007-05-16 22:10:50 -07002242 s->ctor)) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002243 /*
2244 * Relocate free pointer after the object if it is not
2245 * permitted to overwrite the first word of the object on
2246 * kmem_cache_free.
2247 *
2248 * This is the case if we do RCU, have a constructor or
2249 * destructor or are poisoning the objects.
2250 */
2251 s->offset = size;
2252 size += sizeof(void *);
2253 }
2254
Christoph Lameterc12b3c62007-05-23 13:57:31 -07002255#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter81819f02007-05-06 14:49:36 -07002256 if (flags & SLAB_STORE_USER)
2257 /*
2258 * Need to store information about allocs and frees after
2259 * the object.
2260 */
2261 size += 2 * sizeof(struct track);
2262
Christoph Lameterbe7b3fb2007-05-09 02:32:36 -07002263 if (flags & SLAB_RED_ZONE)
Christoph Lameter81819f02007-05-06 14:49:36 -07002264 /*
2265 * Add some empty padding so that we can catch
2266 * overwrites from earlier objects rather than let
2267 * tracking information or the free pointer be
2268 * corrupted if an user writes before the start
2269 * of the object.
2270 */
2271 size += sizeof(void *);
Christoph Lameter41ecc552007-05-09 02:32:44 -07002272#endif
Christoph Lameter672bba32007-05-09 02:32:39 -07002273
Christoph Lameter81819f02007-05-06 14:49:36 -07002274 /*
2275 * Determine the alignment based on various parameters that the
Christoph Lameter65c02d42007-05-09 02:32:35 -07002276 * user specified and the dynamic determination of cache line size
2277 * on bootup.
Christoph Lameter81819f02007-05-06 14:49:36 -07002278 */
2279 align = calculate_alignment(flags, align, s->objsize);
2280
2281 /*
2282 * SLUB stores one object immediately after another beginning from
2283 * offset 0. In order to align the objects we have to simply size
2284 * each object to conform to the alignment.
2285 */
2286 size = ALIGN(size, align);
2287 s->size = size;
2288
Christoph Lameter71c7a062008-02-14 14:28:01 -08002289 if ((flags & __KMALLOC_CACHE) &&
2290 PAGE_SIZE / size < slub_min_objects) {
2291 /*
2292 * Kmalloc cache that would not have enough objects in
2293 * an order 0 page. Kmalloc slabs can fallback to
2294 * page allocator order 0 allocs so take a reasonably large
2295 * order that will allows us a good number of objects.
2296 */
2297 s->order = max(slub_max_order, PAGE_ALLOC_COSTLY_ORDER);
2298 s->flags |= __PAGE_ALLOC_FALLBACK;
2299 s->allocflags |= __GFP_NOWARN;
2300 } else
2301 s->order = calculate_order(size);
2302
Christoph Lameter81819f02007-05-06 14:49:36 -07002303 if (s->order < 0)
2304 return 0;
2305
Christoph Lameterb7a49f02008-02-14 14:21:32 -08002306 s->allocflags = 0;
2307 if (s->order)
2308 s->allocflags |= __GFP_COMP;
2309
2310 if (s->flags & SLAB_CACHE_DMA)
2311 s->allocflags |= SLUB_DMA;
2312
2313 if (s->flags & SLAB_RECLAIM_ACCOUNT)
2314 s->allocflags |= __GFP_RECLAIMABLE;
2315
Christoph Lameter81819f02007-05-06 14:49:36 -07002316 /*
2317 * Determine the number of objects per slab
2318 */
2319 s->objects = (PAGE_SIZE << s->order) / size;
2320
Christoph Lameterb3fba8d2007-10-16 01:26:06 -07002321 return !!s->objects;
Christoph Lameter81819f02007-05-06 14:49:36 -07002322
2323}
2324
Christoph Lameter81819f02007-05-06 14:49:36 -07002325static int kmem_cache_open(struct kmem_cache *s, gfp_t gfpflags,
2326 const char *name, size_t size,
2327 size_t align, unsigned long flags,
Christoph Lameter4ba9b9d2007-10-16 23:25:51 -07002328 void (*ctor)(struct kmem_cache *, void *))
Christoph Lameter81819f02007-05-06 14:49:36 -07002329{
2330 memset(s, 0, kmem_size);
2331 s->name = name;
2332 s->ctor = ctor;
Christoph Lameter81819f02007-05-06 14:49:36 -07002333 s->objsize = size;
Christoph Lameter81819f02007-05-06 14:49:36 -07002334 s->align = align;
Christoph Lameterba0268a2007-09-11 15:24:11 -07002335 s->flags = kmem_cache_flags(size, flags, name, ctor);
Christoph Lameter81819f02007-05-06 14:49:36 -07002336
2337 if (!calculate_sizes(s))
2338 goto error;
2339
2340 s->refcount = 1;
2341#ifdef CONFIG_NUMA
Christoph Lameter98246012008-01-07 23:20:26 -08002342 s->remote_node_defrag_ratio = 100;
Christoph Lameter81819f02007-05-06 14:49:36 -07002343#endif
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002344 if (!init_kmem_cache_nodes(s, gfpflags & ~SLUB_DMA))
2345 goto error;
Christoph Lameter81819f02007-05-06 14:49:36 -07002346
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002347 if (alloc_kmem_cache_cpus(s, gfpflags & ~SLUB_DMA))
Christoph Lameter81819f02007-05-06 14:49:36 -07002348 return 1;
Christoph Lameter4c93c3552007-10-16 01:26:08 -07002349 free_kmem_cache_nodes(s);
Christoph Lameter81819f02007-05-06 14:49:36 -07002350error:
2351 if (flags & SLAB_PANIC)
2352 panic("Cannot create slab %s size=%lu realsize=%u "
2353 "order=%u offset=%u flags=%lx\n",
2354 s->name, (unsigned long)size, s->size, s->order,
2355 s->offset, flags);
2356 return 0;
2357}
Christoph Lameter81819f02007-05-06 14:49:36 -07002358
2359/*
2360 * Check if a given pointer is valid
2361 */
2362int kmem_ptr_validate(struct kmem_cache *s, const void *object)
2363{
Pekka Enberg06428782008-01-07 23:20:27 -08002364 struct page *page;
Christoph Lameter81819f02007-05-06 14:49:36 -07002365
2366 page = get_object_page(object);
2367
2368 if (!page || s != page->slab)
2369 /* No slab or wrong slab */
2370 return 0;
2371
Christoph Lameterabcd08a2007-05-09 02:32:37 -07002372 if (!check_valid_pointer(s, page, object))
Christoph Lameter81819f02007-05-06 14:49:36 -07002373 return 0;
2374
2375 /*
2376 * We could also check if the object is on the slabs freelist.
2377 * But this would be too expensive and it seems that the main
Christoph Lameter6446faa2008-02-15 23:45:26 -08002378 * purpose of kmem_ptr_valid() is to check if the object belongs
Christoph Lameter81819f02007-05-06 14:49:36 -07002379 * to a certain slab.
2380 */
2381 return 1;
2382}
2383EXPORT_SYMBOL(kmem_ptr_validate);
2384
2385/*
2386 * Determine the size of a slab object
2387 */
2388unsigned int kmem_cache_size(struct kmem_cache *s)
2389{
2390 return s->objsize;
2391}
2392EXPORT_SYMBOL(kmem_cache_size);
2393
2394const char *kmem_cache_name(struct kmem_cache *s)
2395{
2396 return s->name;
2397}
2398EXPORT_SYMBOL(kmem_cache_name);
2399
Christoph Lameter33b12c32008-04-25 12:22:43 -07002400static void list_slab_objects(struct kmem_cache *s, struct page *page,
2401 const char *text)
2402{
2403#ifdef CONFIG_SLUB_DEBUG
2404 void *addr = page_address(page);
2405 void *p;
2406 DECLARE_BITMAP(map, page->objects);
2407
2408 bitmap_zero(map, page->objects);
2409 slab_err(s, page, "%s", text);
2410 slab_lock(page);
2411 for_each_free_object(p, s, page->freelist)
2412 set_bit(slab_index(p, s, addr), map);
2413
2414 for_each_object(p, s, addr, page->objects) {
2415
2416 if (!test_bit(slab_index(p, s, addr), map)) {
2417 printk(KERN_ERR "INFO: Object 0x%p @offset=%tu\n",
2418 p, p - addr);
2419 print_tracking(s, p);
2420 }
2421 }
2422 slab_unlock(page);
2423#endif
2424}
2425
Christoph Lameter81819f02007-05-06 14:49:36 -07002426/*
Christoph Lameter599870b2008-04-23 12:36:52 -07002427 * Attempt to free all partial slabs on a node.
Christoph Lameter81819f02007-05-06 14:49:36 -07002428 */
Christoph Lameter599870b2008-04-23 12:36:52 -07002429static void free_partial(struct kmem_cache *s, struct kmem_cache_node *n)
Christoph Lameter81819f02007-05-06 14:49:36 -07002430{
Christoph Lameter81819f02007-05-06 14:49:36 -07002431 unsigned long flags;
2432 struct page *page, *h;
2433
2434 spin_lock_irqsave(&n->list_lock, flags);
Christoph Lameter33b12c32008-04-25 12:22:43 -07002435 list_for_each_entry_safe(page, h, &n->partial, lru) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002436 if (!page->inuse) {
2437 list_del(&page->lru);
2438 discard_slab(s, page);
Christoph Lameter599870b2008-04-23 12:36:52 -07002439 n->nr_partial--;
Christoph Lameter33b12c32008-04-25 12:22:43 -07002440 } else {
2441 list_slab_objects(s, page,
2442 "Objects remaining on kmem_cache_close()");
Christoph Lameter599870b2008-04-23 12:36:52 -07002443 }
Christoph Lameter33b12c32008-04-25 12:22:43 -07002444 }
Christoph Lameter81819f02007-05-06 14:49:36 -07002445 spin_unlock_irqrestore(&n->list_lock, flags);
Christoph Lameter81819f02007-05-06 14:49:36 -07002446}
2447
2448/*
Christoph Lameter672bba32007-05-09 02:32:39 -07002449 * Release all resources used by a slab cache.
Christoph Lameter81819f02007-05-06 14:49:36 -07002450 */
Christoph Lameter0c710012007-07-17 04:03:24 -07002451static inline int kmem_cache_close(struct kmem_cache *s)
Christoph Lameter81819f02007-05-06 14:49:36 -07002452{
2453 int node;
2454
2455 flush_all(s);
2456
2457 /* Attempt to free all objects */
Christoph Lameter4c93c3552007-10-16 01:26:08 -07002458 free_kmem_cache_cpus(s);
Christoph Lameterf64dc582007-10-16 01:25:33 -07002459 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002460 struct kmem_cache_node *n = get_node(s, node);
2461
Christoph Lameter599870b2008-04-23 12:36:52 -07002462 free_partial(s, n);
2463 if (n->nr_partial || slabs_node(s, node))
Christoph Lameter81819f02007-05-06 14:49:36 -07002464 return 1;
2465 }
2466 free_kmem_cache_nodes(s);
2467 return 0;
2468}
2469
2470/*
2471 * Close a cache and release the kmem_cache structure
2472 * (must be used for caches created using kmem_cache_create)
2473 */
2474void kmem_cache_destroy(struct kmem_cache *s)
2475{
2476 down_write(&slub_lock);
2477 s->refcount--;
2478 if (!s->refcount) {
2479 list_del(&s->list);
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07002480 up_write(&slub_lock);
Pekka Enbergd629d812008-04-23 22:31:08 +03002481 if (kmem_cache_close(s)) {
2482 printk(KERN_ERR "SLUB %s: %s called for cache that "
2483 "still has objects.\n", s->name, __func__);
2484 dump_stack();
2485 }
Christoph Lameter81819f02007-05-06 14:49:36 -07002486 sysfs_slab_remove(s);
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07002487 } else
2488 up_write(&slub_lock);
Christoph Lameter81819f02007-05-06 14:49:36 -07002489}
2490EXPORT_SYMBOL(kmem_cache_destroy);
2491
2492/********************************************************************
2493 * Kmalloc subsystem
2494 *******************************************************************/
2495
Christoph Lameter331dc552008-02-14 14:28:09 -08002496struct kmem_cache kmalloc_caches[PAGE_SHIFT + 1] __cacheline_aligned;
Christoph Lameter81819f02007-05-06 14:49:36 -07002497EXPORT_SYMBOL(kmalloc_caches);
2498
Christoph Lameter81819f02007-05-06 14:49:36 -07002499static int __init setup_slub_min_order(char *str)
2500{
Pekka Enberg06428782008-01-07 23:20:27 -08002501 get_option(&str, &slub_min_order);
Christoph Lameter81819f02007-05-06 14:49:36 -07002502
2503 return 1;
2504}
2505
2506__setup("slub_min_order=", setup_slub_min_order);
2507
2508static int __init setup_slub_max_order(char *str)
2509{
Pekka Enberg06428782008-01-07 23:20:27 -08002510 get_option(&str, &slub_max_order);
Christoph Lameter81819f02007-05-06 14:49:36 -07002511
2512 return 1;
2513}
2514
2515__setup("slub_max_order=", setup_slub_max_order);
2516
2517static int __init setup_slub_min_objects(char *str)
2518{
Pekka Enberg06428782008-01-07 23:20:27 -08002519 get_option(&str, &slub_min_objects);
Christoph Lameter81819f02007-05-06 14:49:36 -07002520
2521 return 1;
2522}
2523
2524__setup("slub_min_objects=", setup_slub_min_objects);
2525
2526static int __init setup_slub_nomerge(char *str)
2527{
2528 slub_nomerge = 1;
2529 return 1;
2530}
2531
2532__setup("slub_nomerge", setup_slub_nomerge);
2533
Christoph Lameter81819f02007-05-06 14:49:36 -07002534static struct kmem_cache *create_kmalloc_cache(struct kmem_cache *s,
2535 const char *name, int size, gfp_t gfp_flags)
2536{
2537 unsigned int flags = 0;
2538
2539 if (gfp_flags & SLUB_DMA)
2540 flags = SLAB_CACHE_DMA;
2541
2542 down_write(&slub_lock);
2543 if (!kmem_cache_open(s, gfp_flags, name, size, ARCH_KMALLOC_MINALIGN,
Christoph Lameter71c7a062008-02-14 14:28:01 -08002544 flags | __KMALLOC_CACHE, NULL))
Christoph Lameter81819f02007-05-06 14:49:36 -07002545 goto panic;
2546
2547 list_add(&s->list, &slab_caches);
2548 up_write(&slub_lock);
2549 if (sysfs_slab_add(s))
2550 goto panic;
2551 return s;
2552
2553panic:
2554 panic("Creation of kmalloc slab %s size=%d failed.\n", name, size);
2555}
2556
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002557#ifdef CONFIG_ZONE_DMA
Christoph Lameter4097d602008-04-14 18:51:18 +03002558static struct kmem_cache *kmalloc_caches_dma[PAGE_SHIFT + 1];
Christoph Lameter1ceef402007-08-07 15:11:48 -07002559
2560static void sysfs_add_func(struct work_struct *w)
2561{
2562 struct kmem_cache *s;
2563
2564 down_write(&slub_lock);
2565 list_for_each_entry(s, &slab_caches, list) {
2566 if (s->flags & __SYSFS_ADD_DEFERRED) {
2567 s->flags &= ~__SYSFS_ADD_DEFERRED;
2568 sysfs_slab_add(s);
2569 }
2570 }
2571 up_write(&slub_lock);
2572}
2573
2574static DECLARE_WORK(sysfs_add_work, sysfs_add_func);
2575
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002576static noinline struct kmem_cache *dma_kmalloc_cache(int index, gfp_t flags)
2577{
2578 struct kmem_cache *s;
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002579 char *text;
2580 size_t realsize;
2581
2582 s = kmalloc_caches_dma[index];
2583 if (s)
2584 return s;
2585
2586 /* Dynamically create dma cache */
Christoph Lameter1ceef402007-08-07 15:11:48 -07002587 if (flags & __GFP_WAIT)
2588 down_write(&slub_lock);
2589 else {
2590 if (!down_write_trylock(&slub_lock))
2591 goto out;
2592 }
2593
2594 if (kmalloc_caches_dma[index])
2595 goto unlock_out;
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002596
Christoph Lameter7b55f622007-07-17 04:03:27 -07002597 realsize = kmalloc_caches[index].objsize;
Ingo Molnar3adbefe2008-02-05 17:57:39 -08002598 text = kasprintf(flags & ~SLUB_DMA, "kmalloc_dma-%d",
2599 (unsigned int)realsize);
Christoph Lameter1ceef402007-08-07 15:11:48 -07002600 s = kmalloc(kmem_size, flags & ~SLUB_DMA);
2601
2602 if (!s || !text || !kmem_cache_open(s, flags, text,
2603 realsize, ARCH_KMALLOC_MINALIGN,
2604 SLAB_CACHE_DMA|__SYSFS_ADD_DEFERRED, NULL)) {
2605 kfree(s);
2606 kfree(text);
2607 goto unlock_out;
Christoph Lameterdfce8642007-07-17 04:03:25 -07002608 }
Christoph Lameter1ceef402007-08-07 15:11:48 -07002609
2610 list_add(&s->list, &slab_caches);
2611 kmalloc_caches_dma[index] = s;
2612
2613 schedule_work(&sysfs_add_work);
2614
2615unlock_out:
Christoph Lameterdfce8642007-07-17 04:03:25 -07002616 up_write(&slub_lock);
Christoph Lameter1ceef402007-08-07 15:11:48 -07002617out:
Christoph Lameterdfce8642007-07-17 04:03:25 -07002618 return kmalloc_caches_dma[index];
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002619}
2620#endif
2621
Christoph Lameterf1b26332007-07-17 04:03:26 -07002622/*
2623 * Conversion table for small slabs sizes / 8 to the index in the
2624 * kmalloc array. This is necessary for slabs < 192 since we have non power
2625 * of two cache sizes there. The size of larger slabs can be determined using
2626 * fls.
2627 */
2628static s8 size_index[24] = {
2629 3, /* 8 */
2630 4, /* 16 */
2631 5, /* 24 */
2632 5, /* 32 */
2633 6, /* 40 */
2634 6, /* 48 */
2635 6, /* 56 */
2636 6, /* 64 */
2637 1, /* 72 */
2638 1, /* 80 */
2639 1, /* 88 */
2640 1, /* 96 */
2641 7, /* 104 */
2642 7, /* 112 */
2643 7, /* 120 */
2644 7, /* 128 */
2645 2, /* 136 */
2646 2, /* 144 */
2647 2, /* 152 */
2648 2, /* 160 */
2649 2, /* 168 */
2650 2, /* 176 */
2651 2, /* 184 */
2652 2 /* 192 */
2653};
2654
Christoph Lameter81819f02007-05-06 14:49:36 -07002655static struct kmem_cache *get_slab(size_t size, gfp_t flags)
2656{
Christoph Lameterf1b26332007-07-17 04:03:26 -07002657 int index;
Christoph Lameter81819f02007-05-06 14:49:36 -07002658
Christoph Lameterf1b26332007-07-17 04:03:26 -07002659 if (size <= 192) {
2660 if (!size)
2661 return ZERO_SIZE_PTR;
Christoph Lameter81819f02007-05-06 14:49:36 -07002662
Christoph Lameterf1b26332007-07-17 04:03:26 -07002663 index = size_index[(size - 1) / 8];
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002664 } else
Christoph Lameterf1b26332007-07-17 04:03:26 -07002665 index = fls(size - 1);
Christoph Lameter81819f02007-05-06 14:49:36 -07002666
2667#ifdef CONFIG_ZONE_DMA
Christoph Lameterf1b26332007-07-17 04:03:26 -07002668 if (unlikely((flags & SLUB_DMA)))
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002669 return dma_kmalloc_cache(index, flags);
Christoph Lameterf1b26332007-07-17 04:03:26 -07002670
Christoph Lameter81819f02007-05-06 14:49:36 -07002671#endif
2672 return &kmalloc_caches[index];
2673}
2674
2675void *__kmalloc(size_t size, gfp_t flags)
2676{
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002677 struct kmem_cache *s;
Christoph Lameter81819f02007-05-06 14:49:36 -07002678
Christoph Lameter331dc552008-02-14 14:28:09 -08002679 if (unlikely(size > PAGE_SIZE))
Pekka Enbergeada35e2008-02-11 22:47:46 +02002680 return kmalloc_large(size, flags);
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002681
2682 s = get_slab(size, flags);
2683
2684 if (unlikely(ZERO_OR_NULL_PTR(s)))
Christoph Lameter6cb8f912007-07-17 04:03:22 -07002685 return s;
2686
Christoph Lameterce15fea2007-07-17 04:03:28 -07002687 return slab_alloc(s, flags, -1, __builtin_return_address(0));
Christoph Lameter81819f02007-05-06 14:49:36 -07002688}
2689EXPORT_SYMBOL(__kmalloc);
2690
Christoph Lameterf619cfe2008-03-01 13:56:40 -08002691static void *kmalloc_large_node(size_t size, gfp_t flags, int node)
2692{
2693 struct page *page = alloc_pages_node(node, flags | __GFP_COMP,
2694 get_order(size));
2695
2696 if (page)
2697 return page_address(page);
2698 else
2699 return NULL;
2700}
2701
Christoph Lameter81819f02007-05-06 14:49:36 -07002702#ifdef CONFIG_NUMA
2703void *__kmalloc_node(size_t size, gfp_t flags, int node)
2704{
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002705 struct kmem_cache *s;
Christoph Lameter81819f02007-05-06 14:49:36 -07002706
Christoph Lameter331dc552008-02-14 14:28:09 -08002707 if (unlikely(size > PAGE_SIZE))
Christoph Lameterf619cfe2008-03-01 13:56:40 -08002708 return kmalloc_large_node(size, flags, node);
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002709
2710 s = get_slab(size, flags);
2711
2712 if (unlikely(ZERO_OR_NULL_PTR(s)))
Christoph Lameter6cb8f912007-07-17 04:03:22 -07002713 return s;
2714
Christoph Lameterce15fea2007-07-17 04:03:28 -07002715 return slab_alloc(s, flags, node, __builtin_return_address(0));
Christoph Lameter81819f02007-05-06 14:49:36 -07002716}
2717EXPORT_SYMBOL(__kmalloc_node);
2718#endif
2719
2720size_t ksize(const void *object)
2721{
Christoph Lameter272c1d22007-06-08 13:46:49 -07002722 struct page *page;
Christoph Lameter81819f02007-05-06 14:49:36 -07002723 struct kmem_cache *s;
2724
Christoph Lameteref8b4522007-10-16 01:24:46 -07002725 if (unlikely(object == ZERO_SIZE_PTR))
Christoph Lameter272c1d22007-06-08 13:46:49 -07002726 return 0;
2727
Vegard Nossum294a80a2007-12-04 23:45:30 -08002728 page = virt_to_head_page(object);
Vegard Nossum294a80a2007-12-04 23:45:30 -08002729
2730 if (unlikely(!PageSlab(page)))
2731 return PAGE_SIZE << compound_order(page);
2732
Christoph Lameter81819f02007-05-06 14:49:36 -07002733 s = page->slab;
Christoph Lameter81819f02007-05-06 14:49:36 -07002734
Christoph Lameterae20bfd2008-02-15 23:45:25 -08002735#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter81819f02007-05-06 14:49:36 -07002736 /*
2737 * Debugging requires use of the padding between object
2738 * and whatever may come after it.
2739 */
2740 if (s->flags & (SLAB_RED_ZONE | SLAB_POISON))
2741 return s->objsize;
2742
Christoph Lameterae20bfd2008-02-15 23:45:25 -08002743#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07002744 /*
2745 * If we have the need to store the freelist pointer
2746 * back there or track user information then we can
2747 * only use the space before that information.
2748 */
2749 if (s->flags & (SLAB_DESTROY_BY_RCU | SLAB_STORE_USER))
2750 return s->inuse;
Christoph Lameter81819f02007-05-06 14:49:36 -07002751 /*
2752 * Else we can use all the padding etc for the allocation
2753 */
2754 return s->size;
2755}
2756EXPORT_SYMBOL(ksize);
2757
2758void kfree(const void *x)
2759{
Christoph Lameter81819f02007-05-06 14:49:36 -07002760 struct page *page;
Christoph Lameter5bb983b2008-02-07 17:47:41 -08002761 void *object = (void *)x;
Christoph Lameter81819f02007-05-06 14:49:36 -07002762
Satyam Sharma2408c552007-10-16 01:24:44 -07002763 if (unlikely(ZERO_OR_NULL_PTR(x)))
Christoph Lameter81819f02007-05-06 14:49:36 -07002764 return;
2765
Christoph Lameterb49af682007-05-06 14:49:41 -07002766 page = virt_to_head_page(x);
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002767 if (unlikely(!PageSlab(page))) {
2768 put_page(page);
2769 return;
2770 }
Christoph Lameter5bb983b2008-02-07 17:47:41 -08002771 slab_free(page->slab, page, object, __builtin_return_address(0));
Christoph Lameter81819f02007-05-06 14:49:36 -07002772}
2773EXPORT_SYMBOL(kfree);
2774
Christoph Lameter2086d262007-05-06 14:49:46 -07002775/*
Christoph Lameter672bba32007-05-09 02:32:39 -07002776 * kmem_cache_shrink removes empty slabs from the partial lists and sorts
2777 * the remaining slabs by the number of items in use. The slabs with the
2778 * most items in use come first. New allocations will then fill those up
2779 * and thus they can be removed from the partial lists.
2780 *
2781 * The slabs with the least items are placed last. This results in them
2782 * being allocated from last increasing the chance that the last objects
2783 * are freed in them.
Christoph Lameter2086d262007-05-06 14:49:46 -07002784 */
2785int kmem_cache_shrink(struct kmem_cache *s)
2786{
2787 int node;
2788 int i;
2789 struct kmem_cache_node *n;
2790 struct page *page;
2791 struct page *t;
2792 struct list_head *slabs_by_inuse =
2793 kmalloc(sizeof(struct list_head) * s->objects, GFP_KERNEL);
2794 unsigned long flags;
2795
2796 if (!slabs_by_inuse)
2797 return -ENOMEM;
2798
2799 flush_all(s);
Christoph Lameterf64dc582007-10-16 01:25:33 -07002800 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter2086d262007-05-06 14:49:46 -07002801 n = get_node(s, node);
2802
2803 if (!n->nr_partial)
2804 continue;
2805
2806 for (i = 0; i < s->objects; i++)
2807 INIT_LIST_HEAD(slabs_by_inuse + i);
2808
2809 spin_lock_irqsave(&n->list_lock, flags);
2810
2811 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07002812 * Build lists indexed by the items in use in each slab.
Christoph Lameter2086d262007-05-06 14:49:46 -07002813 *
Christoph Lameter672bba32007-05-09 02:32:39 -07002814 * Note that concurrent frees may occur while we hold the
2815 * list_lock. page->inuse here is the upper limit.
Christoph Lameter2086d262007-05-06 14:49:46 -07002816 */
2817 list_for_each_entry_safe(page, t, &n->partial, lru) {
2818 if (!page->inuse && slab_trylock(page)) {
2819 /*
2820 * Must hold slab lock here because slab_free
2821 * may have freed the last object and be
2822 * waiting to release the slab.
2823 */
2824 list_del(&page->lru);
2825 n->nr_partial--;
2826 slab_unlock(page);
2827 discard_slab(s, page);
2828 } else {
Christoph Lameterfcda3d82007-07-30 13:06:46 -07002829 list_move(&page->lru,
2830 slabs_by_inuse + page->inuse);
Christoph Lameter2086d262007-05-06 14:49:46 -07002831 }
2832 }
2833
Christoph Lameter2086d262007-05-06 14:49:46 -07002834 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07002835 * Rebuild the partial list with the slabs filled up most
2836 * first and the least used slabs at the end.
Christoph Lameter2086d262007-05-06 14:49:46 -07002837 */
2838 for (i = s->objects - 1; i >= 0; i--)
2839 list_splice(slabs_by_inuse + i, n->partial.prev);
2840
Christoph Lameter2086d262007-05-06 14:49:46 -07002841 spin_unlock_irqrestore(&n->list_lock, flags);
2842 }
2843
2844 kfree(slabs_by_inuse);
2845 return 0;
2846}
2847EXPORT_SYMBOL(kmem_cache_shrink);
2848
Yasunori Gotob9049e22007-10-21 16:41:37 -07002849#if defined(CONFIG_NUMA) && defined(CONFIG_MEMORY_HOTPLUG)
2850static int slab_mem_going_offline_callback(void *arg)
2851{
2852 struct kmem_cache *s;
2853
2854 down_read(&slub_lock);
2855 list_for_each_entry(s, &slab_caches, list)
2856 kmem_cache_shrink(s);
2857 up_read(&slub_lock);
2858
2859 return 0;
2860}
2861
2862static void slab_mem_offline_callback(void *arg)
2863{
2864 struct kmem_cache_node *n;
2865 struct kmem_cache *s;
2866 struct memory_notify *marg = arg;
2867 int offline_node;
2868
2869 offline_node = marg->status_change_nid;
2870
2871 /*
2872 * If the node still has available memory. we need kmem_cache_node
2873 * for it yet.
2874 */
2875 if (offline_node < 0)
2876 return;
2877
2878 down_read(&slub_lock);
2879 list_for_each_entry(s, &slab_caches, list) {
2880 n = get_node(s, offline_node);
2881 if (n) {
2882 /*
2883 * if n->nr_slabs > 0, slabs still exist on the node
2884 * that is going down. We were unable to free them,
2885 * and offline_pages() function shoudn't call this
2886 * callback. So, we must fail.
2887 */
Christoph Lameter0f389ec2008-04-14 18:53:02 +03002888 BUG_ON(slabs_node(s, offline_node));
Yasunori Gotob9049e22007-10-21 16:41:37 -07002889
2890 s->node[offline_node] = NULL;
2891 kmem_cache_free(kmalloc_caches, n);
2892 }
2893 }
2894 up_read(&slub_lock);
2895}
2896
2897static int slab_mem_going_online_callback(void *arg)
2898{
2899 struct kmem_cache_node *n;
2900 struct kmem_cache *s;
2901 struct memory_notify *marg = arg;
2902 int nid = marg->status_change_nid;
2903 int ret = 0;
2904
2905 /*
2906 * If the node's memory is already available, then kmem_cache_node is
2907 * already created. Nothing to do.
2908 */
2909 if (nid < 0)
2910 return 0;
2911
2912 /*
2913 * We are bringing a node online. No memory is availabe yet. We must
2914 * allocate a kmem_cache_node structure in order to bring the node
2915 * online.
2916 */
2917 down_read(&slub_lock);
2918 list_for_each_entry(s, &slab_caches, list) {
2919 /*
2920 * XXX: kmem_cache_alloc_node will fallback to other nodes
2921 * since memory is not yet available from the node that
2922 * is brought up.
2923 */
2924 n = kmem_cache_alloc(kmalloc_caches, GFP_KERNEL);
2925 if (!n) {
2926 ret = -ENOMEM;
2927 goto out;
2928 }
2929 init_kmem_cache_node(n);
2930 s->node[nid] = n;
2931 }
2932out:
2933 up_read(&slub_lock);
2934 return ret;
2935}
2936
2937static int slab_memory_callback(struct notifier_block *self,
2938 unsigned long action, void *arg)
2939{
2940 int ret = 0;
2941
2942 switch (action) {
2943 case MEM_GOING_ONLINE:
2944 ret = slab_mem_going_online_callback(arg);
2945 break;
2946 case MEM_GOING_OFFLINE:
2947 ret = slab_mem_going_offline_callback(arg);
2948 break;
2949 case MEM_OFFLINE:
2950 case MEM_CANCEL_ONLINE:
2951 slab_mem_offline_callback(arg);
2952 break;
2953 case MEM_ONLINE:
2954 case MEM_CANCEL_OFFLINE:
2955 break;
2956 }
2957
2958 ret = notifier_from_errno(ret);
2959 return ret;
2960}
2961
2962#endif /* CONFIG_MEMORY_HOTPLUG */
2963
Christoph Lameter81819f02007-05-06 14:49:36 -07002964/********************************************************************
2965 * Basic setup of slabs
2966 *******************************************************************/
2967
2968void __init kmem_cache_init(void)
2969{
2970 int i;
Christoph Lameter4b356be2007-06-16 10:16:13 -07002971 int caches = 0;
Christoph Lameter81819f02007-05-06 14:49:36 -07002972
Christoph Lameter4c93c3552007-10-16 01:26:08 -07002973 init_alloc_cpu();
2974
Christoph Lameter81819f02007-05-06 14:49:36 -07002975#ifdef CONFIG_NUMA
2976 /*
2977 * Must first have the slab cache available for the allocations of the
Christoph Lameter672bba32007-05-09 02:32:39 -07002978 * struct kmem_cache_node's. There is special bootstrap code in
Christoph Lameter81819f02007-05-06 14:49:36 -07002979 * kmem_cache_open for slab_state == DOWN.
2980 */
2981 create_kmalloc_cache(&kmalloc_caches[0], "kmem_cache_node",
2982 sizeof(struct kmem_cache_node), GFP_KERNEL);
Christoph Lameter8ffa6872007-05-31 00:40:51 -07002983 kmalloc_caches[0].refcount = -1;
Christoph Lameter4b356be2007-06-16 10:16:13 -07002984 caches++;
Yasunori Gotob9049e22007-10-21 16:41:37 -07002985
2986 hotplug_memory_notifier(slab_memory_callback, 1);
Christoph Lameter81819f02007-05-06 14:49:36 -07002987#endif
2988
2989 /* Able to allocate the per node structures */
2990 slab_state = PARTIAL;
2991
2992 /* Caches that are not of the two-to-the-power-of size */
Christoph Lameter4b356be2007-06-16 10:16:13 -07002993 if (KMALLOC_MIN_SIZE <= 64) {
2994 create_kmalloc_cache(&kmalloc_caches[1],
Christoph Lameter81819f02007-05-06 14:49:36 -07002995 "kmalloc-96", 96, GFP_KERNEL);
Christoph Lameter4b356be2007-06-16 10:16:13 -07002996 caches++;
2997 }
2998 if (KMALLOC_MIN_SIZE <= 128) {
2999 create_kmalloc_cache(&kmalloc_caches[2],
Christoph Lameter81819f02007-05-06 14:49:36 -07003000 "kmalloc-192", 192, GFP_KERNEL);
Christoph Lameter4b356be2007-06-16 10:16:13 -07003001 caches++;
3002 }
Christoph Lameter81819f02007-05-06 14:49:36 -07003003
Christoph Lameter331dc552008-02-14 14:28:09 -08003004 for (i = KMALLOC_SHIFT_LOW; i <= PAGE_SHIFT; i++) {
Christoph Lameter81819f02007-05-06 14:49:36 -07003005 create_kmalloc_cache(&kmalloc_caches[i],
3006 "kmalloc", 1 << i, GFP_KERNEL);
Christoph Lameter4b356be2007-06-16 10:16:13 -07003007 caches++;
3008 }
Christoph Lameter81819f02007-05-06 14:49:36 -07003009
Christoph Lameterf1b26332007-07-17 04:03:26 -07003010
3011 /*
3012 * Patch up the size_index table if we have strange large alignment
3013 * requirements for the kmalloc array. This is only the case for
Christoph Lameter6446faa2008-02-15 23:45:26 -08003014 * MIPS it seems. The standard arches will not generate any code here.
Christoph Lameterf1b26332007-07-17 04:03:26 -07003015 *
3016 * Largest permitted alignment is 256 bytes due to the way we
3017 * handle the index determination for the smaller caches.
3018 *
3019 * Make sure that nothing crazy happens if someone starts tinkering
3020 * around with ARCH_KMALLOC_MINALIGN
3021 */
3022 BUILD_BUG_ON(KMALLOC_MIN_SIZE > 256 ||
3023 (KMALLOC_MIN_SIZE & (KMALLOC_MIN_SIZE - 1)));
3024
Christoph Lameter12ad6842007-07-17 04:03:28 -07003025 for (i = 8; i < KMALLOC_MIN_SIZE; i += 8)
Christoph Lameterf1b26332007-07-17 04:03:26 -07003026 size_index[(i - 1) / 8] = KMALLOC_SHIFT_LOW;
3027
Christoph Lameter81819f02007-05-06 14:49:36 -07003028 slab_state = UP;
3029
3030 /* Provide the correct kmalloc names now that the caches are up */
Christoph Lameter331dc552008-02-14 14:28:09 -08003031 for (i = KMALLOC_SHIFT_LOW; i <= PAGE_SHIFT; i++)
Christoph Lameter81819f02007-05-06 14:49:36 -07003032 kmalloc_caches[i]. name =
3033 kasprintf(GFP_KERNEL, "kmalloc-%d", 1 << i);
3034
3035#ifdef CONFIG_SMP
3036 register_cpu_notifier(&slab_notifier);
Christoph Lameter4c93c3552007-10-16 01:26:08 -07003037 kmem_size = offsetof(struct kmem_cache, cpu_slab) +
3038 nr_cpu_ids * sizeof(struct kmem_cache_cpu *);
3039#else
3040 kmem_size = sizeof(struct kmem_cache);
Christoph Lameter81819f02007-05-06 14:49:36 -07003041#endif
3042
Ingo Molnar3adbefe2008-02-05 17:57:39 -08003043 printk(KERN_INFO
3044 "SLUB: Genslabs=%d, HWalign=%d, Order=%d-%d, MinObjects=%d,"
Christoph Lameter4b356be2007-06-16 10:16:13 -07003045 " CPUs=%d, Nodes=%d\n",
3046 caches, cache_line_size(),
Christoph Lameter81819f02007-05-06 14:49:36 -07003047 slub_min_order, slub_max_order, slub_min_objects,
3048 nr_cpu_ids, nr_node_ids);
3049}
3050
3051/*
3052 * Find a mergeable slab cache
3053 */
3054static int slab_unmergeable(struct kmem_cache *s)
3055{
3056 if (slub_nomerge || (s->flags & SLUB_NEVER_MERGE))
3057 return 1;
3058
Christoph Lameter331dc552008-02-14 14:28:09 -08003059 if ((s->flags & __PAGE_ALLOC_FALLBACK))
Christoph Lameter71c7a062008-02-14 14:28:01 -08003060 return 1;
3061
Christoph Lameterc59def92007-05-16 22:10:50 -07003062 if (s->ctor)
Christoph Lameter81819f02007-05-06 14:49:36 -07003063 return 1;
3064
Christoph Lameter8ffa6872007-05-31 00:40:51 -07003065 /*
3066 * We may have set a slab to be unmergeable during bootstrap.
3067 */
3068 if (s->refcount < 0)
3069 return 1;
3070
Christoph Lameter81819f02007-05-06 14:49:36 -07003071 return 0;
3072}
3073
3074static struct kmem_cache *find_mergeable(size_t size,
Christoph Lameterba0268a2007-09-11 15:24:11 -07003075 size_t align, unsigned long flags, const char *name,
Christoph Lameter4ba9b9d2007-10-16 23:25:51 -07003076 void (*ctor)(struct kmem_cache *, void *))
Christoph Lameter81819f02007-05-06 14:49:36 -07003077{
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07003078 struct kmem_cache *s;
Christoph Lameter81819f02007-05-06 14:49:36 -07003079
3080 if (slub_nomerge || (flags & SLUB_NEVER_MERGE))
3081 return NULL;
3082
Christoph Lameterc59def92007-05-16 22:10:50 -07003083 if (ctor)
Christoph Lameter81819f02007-05-06 14:49:36 -07003084 return NULL;
3085
3086 size = ALIGN(size, sizeof(void *));
3087 align = calculate_alignment(flags, align, size);
3088 size = ALIGN(size, align);
Christoph Lameterba0268a2007-09-11 15:24:11 -07003089 flags = kmem_cache_flags(size, flags, name, NULL);
Christoph Lameter81819f02007-05-06 14:49:36 -07003090
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07003091 list_for_each_entry(s, &slab_caches, list) {
Christoph Lameter81819f02007-05-06 14:49:36 -07003092 if (slab_unmergeable(s))
3093 continue;
3094
3095 if (size > s->size)
3096 continue;
3097
Christoph Lameterba0268a2007-09-11 15:24:11 -07003098 if ((flags & SLUB_MERGE_SAME) != (s->flags & SLUB_MERGE_SAME))
Christoph Lameter81819f02007-05-06 14:49:36 -07003099 continue;
3100 /*
3101 * Check if alignment is compatible.
3102 * Courtesy of Adrian Drzewiecki
3103 */
Pekka Enberg06428782008-01-07 23:20:27 -08003104 if ((s->size & ~(align - 1)) != s->size)
Christoph Lameter81819f02007-05-06 14:49:36 -07003105 continue;
3106
3107 if (s->size - size >= sizeof(void *))
3108 continue;
3109
3110 return s;
3111 }
3112 return NULL;
3113}
3114
3115struct kmem_cache *kmem_cache_create(const char *name, size_t size,
3116 size_t align, unsigned long flags,
Christoph Lameter4ba9b9d2007-10-16 23:25:51 -07003117 void (*ctor)(struct kmem_cache *, void *))
Christoph Lameter81819f02007-05-06 14:49:36 -07003118{
3119 struct kmem_cache *s;
3120
3121 down_write(&slub_lock);
Christoph Lameterba0268a2007-09-11 15:24:11 -07003122 s = find_mergeable(size, align, flags, name, ctor);
Christoph Lameter81819f02007-05-06 14:49:36 -07003123 if (s) {
Christoph Lameter42a9fdb2007-10-16 01:26:09 -07003124 int cpu;
3125
Christoph Lameter81819f02007-05-06 14:49:36 -07003126 s->refcount++;
3127 /*
3128 * Adjust the object sizes so that we clear
3129 * the complete object on kzalloc.
3130 */
3131 s->objsize = max(s->objsize, (int)size);
Christoph Lameter42a9fdb2007-10-16 01:26:09 -07003132
3133 /*
3134 * And then we need to update the object size in the
3135 * per cpu structures
3136 */
3137 for_each_online_cpu(cpu)
3138 get_cpu_slab(s, cpu)->objsize = s->objsize;
Christoph Lameter6446faa2008-02-15 23:45:26 -08003139
Christoph Lameter81819f02007-05-06 14:49:36 -07003140 s->inuse = max_t(int, s->inuse, ALIGN(size, sizeof(void *)));
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07003141 up_write(&slub_lock);
Christoph Lameter6446faa2008-02-15 23:45:26 -08003142
Christoph Lameter81819f02007-05-06 14:49:36 -07003143 if (sysfs_slab_alias(s, name))
3144 goto err;
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07003145 return s;
3146 }
Christoph Lameter6446faa2008-02-15 23:45:26 -08003147
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07003148 s = kmalloc(kmem_size, GFP_KERNEL);
3149 if (s) {
3150 if (kmem_cache_open(s, GFP_KERNEL, name,
Christoph Lameterc59def92007-05-16 22:10:50 -07003151 size, align, flags, ctor)) {
Christoph Lameter81819f02007-05-06 14:49:36 -07003152 list_add(&s->list, &slab_caches);
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07003153 up_write(&slub_lock);
3154 if (sysfs_slab_add(s))
3155 goto err;
3156 return s;
3157 }
3158 kfree(s);
Christoph Lameter81819f02007-05-06 14:49:36 -07003159 }
3160 up_write(&slub_lock);
Christoph Lameter81819f02007-05-06 14:49:36 -07003161
3162err:
Christoph Lameter81819f02007-05-06 14:49:36 -07003163 if (flags & SLAB_PANIC)
3164 panic("Cannot create slabcache %s\n", name);
3165 else
3166 s = NULL;
3167 return s;
3168}
3169EXPORT_SYMBOL(kmem_cache_create);
3170
Christoph Lameter81819f02007-05-06 14:49:36 -07003171#ifdef CONFIG_SMP
Christoph Lameter27390bc2007-06-01 00:47:09 -07003172/*
Christoph Lameter672bba32007-05-09 02:32:39 -07003173 * Use the cpu notifier to insure that the cpu slabs are flushed when
3174 * necessary.
Christoph Lameter81819f02007-05-06 14:49:36 -07003175 */
3176static int __cpuinit slab_cpuup_callback(struct notifier_block *nfb,
3177 unsigned long action, void *hcpu)
3178{
3179 long cpu = (long)hcpu;
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07003180 struct kmem_cache *s;
3181 unsigned long flags;
Christoph Lameter81819f02007-05-06 14:49:36 -07003182
3183 switch (action) {
Christoph Lameter4c93c3552007-10-16 01:26:08 -07003184 case CPU_UP_PREPARE:
3185 case CPU_UP_PREPARE_FROZEN:
3186 init_alloc_cpu_cpu(cpu);
3187 down_read(&slub_lock);
3188 list_for_each_entry(s, &slab_caches, list)
3189 s->cpu_slab[cpu] = alloc_kmem_cache_cpu(s, cpu,
3190 GFP_KERNEL);
3191 up_read(&slub_lock);
3192 break;
3193
Christoph Lameter81819f02007-05-06 14:49:36 -07003194 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07003195 case CPU_UP_CANCELED_FROZEN:
Christoph Lameter81819f02007-05-06 14:49:36 -07003196 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07003197 case CPU_DEAD_FROZEN:
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07003198 down_read(&slub_lock);
3199 list_for_each_entry(s, &slab_caches, list) {
Christoph Lameter4c93c3552007-10-16 01:26:08 -07003200 struct kmem_cache_cpu *c = get_cpu_slab(s, cpu);
3201
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07003202 local_irq_save(flags);
3203 __flush_cpu_slab(s, cpu);
3204 local_irq_restore(flags);
Christoph Lameter4c93c3552007-10-16 01:26:08 -07003205 free_kmem_cache_cpu(c, cpu);
3206 s->cpu_slab[cpu] = NULL;
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07003207 }
3208 up_read(&slub_lock);
Christoph Lameter81819f02007-05-06 14:49:36 -07003209 break;
3210 default:
3211 break;
3212 }
3213 return NOTIFY_OK;
3214}
3215
Pekka Enberg06428782008-01-07 23:20:27 -08003216static struct notifier_block __cpuinitdata slab_notifier = {
Ingo Molnar3adbefe2008-02-05 17:57:39 -08003217 .notifier_call = slab_cpuup_callback
Pekka Enberg06428782008-01-07 23:20:27 -08003218};
Christoph Lameter81819f02007-05-06 14:49:36 -07003219
3220#endif
3221
Christoph Lameter81819f02007-05-06 14:49:36 -07003222void *__kmalloc_track_caller(size_t size, gfp_t gfpflags, void *caller)
3223{
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003224 struct kmem_cache *s;
3225
Christoph Lameter331dc552008-02-14 14:28:09 -08003226 if (unlikely(size > PAGE_SIZE))
Pekka Enbergeada35e2008-02-11 22:47:46 +02003227 return kmalloc_large(size, gfpflags);
3228
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003229 s = get_slab(size, gfpflags);
Christoph Lameter81819f02007-05-06 14:49:36 -07003230
Satyam Sharma2408c552007-10-16 01:24:44 -07003231 if (unlikely(ZERO_OR_NULL_PTR(s)))
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003232 return s;
Christoph Lameter81819f02007-05-06 14:49:36 -07003233
Christoph Lameterce15fea2007-07-17 04:03:28 -07003234 return slab_alloc(s, gfpflags, -1, caller);
Christoph Lameter81819f02007-05-06 14:49:36 -07003235}
3236
3237void *__kmalloc_node_track_caller(size_t size, gfp_t gfpflags,
3238 int node, void *caller)
3239{
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003240 struct kmem_cache *s;
3241
Christoph Lameter331dc552008-02-14 14:28:09 -08003242 if (unlikely(size > PAGE_SIZE))
Christoph Lameterf619cfe2008-03-01 13:56:40 -08003243 return kmalloc_large_node(size, gfpflags, node);
Pekka Enbergeada35e2008-02-11 22:47:46 +02003244
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003245 s = get_slab(size, gfpflags);
Christoph Lameter81819f02007-05-06 14:49:36 -07003246
Satyam Sharma2408c552007-10-16 01:24:44 -07003247 if (unlikely(ZERO_OR_NULL_PTR(s)))
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003248 return s;
Christoph Lameter81819f02007-05-06 14:49:36 -07003249
Christoph Lameterce15fea2007-07-17 04:03:28 -07003250 return slab_alloc(s, gfpflags, node, caller);
Christoph Lameter81819f02007-05-06 14:49:36 -07003251}
3252
Christoph Lameter5b06c8532008-04-14 18:51:34 +03003253#if (defined(CONFIG_SYSFS) && defined(CONFIG_SLUB_DEBUG)) || defined(CONFIG_SLABINFO)
3254static unsigned long count_partial(struct kmem_cache_node *n)
3255{
3256 unsigned long flags;
3257 unsigned long x = 0;
3258 struct page *page;
3259
3260 spin_lock_irqsave(&n->list_lock, flags);
3261 list_for_each_entry(page, &n->partial, lru)
3262 x += page->inuse;
3263 spin_unlock_irqrestore(&n->list_lock, flags);
3264 return x;
3265}
3266#endif
3267
Christoph Lameter41ecc552007-05-09 02:32:44 -07003268#if defined(CONFIG_SYSFS) && defined(CONFIG_SLUB_DEBUG)
Christoph Lameter434e2452007-07-17 04:03:30 -07003269static int validate_slab(struct kmem_cache *s, struct page *page,
3270 unsigned long *map)
Christoph Lameter53e15af2007-05-06 14:49:43 -07003271{
3272 void *p;
Christoph Lametera973e9d2008-03-01 13:40:44 -08003273 void *addr = page_address(page);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003274
3275 if (!check_slab(s, page) ||
3276 !on_freelist(s, page, NULL))
3277 return 0;
3278
3279 /* Now we know that a valid freelist exists */
Christoph Lameter39b26462008-04-14 19:11:30 +03003280 bitmap_zero(map, page->objects);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003281
Christoph Lameter7656c722007-05-09 02:32:40 -07003282 for_each_free_object(p, s, page->freelist) {
3283 set_bit(slab_index(p, s, addr), map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003284 if (!check_object(s, page, p, 0))
3285 return 0;
3286 }
3287
Christoph Lameter224a88b2008-04-14 19:11:31 +03003288 for_each_object(p, s, addr, page->objects)
Christoph Lameter7656c722007-05-09 02:32:40 -07003289 if (!test_bit(slab_index(p, s, addr), map))
Christoph Lameter53e15af2007-05-06 14:49:43 -07003290 if (!check_object(s, page, p, 1))
3291 return 0;
3292 return 1;
3293}
3294
Christoph Lameter434e2452007-07-17 04:03:30 -07003295static void validate_slab_slab(struct kmem_cache *s, struct page *page,
3296 unsigned long *map)
Christoph Lameter53e15af2007-05-06 14:49:43 -07003297{
3298 if (slab_trylock(page)) {
Christoph Lameter434e2452007-07-17 04:03:30 -07003299 validate_slab(s, page, map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003300 slab_unlock(page);
3301 } else
3302 printk(KERN_INFO "SLUB %s: Skipped busy slab 0x%p\n",
3303 s->name, page);
3304
3305 if (s->flags & DEBUG_DEFAULT_FLAGS) {
Christoph Lameter35e5d7e2007-05-09 02:32:42 -07003306 if (!SlabDebug(page))
3307 printk(KERN_ERR "SLUB %s: SlabDebug not set "
Christoph Lameter53e15af2007-05-06 14:49:43 -07003308 "on slab 0x%p\n", s->name, page);
3309 } else {
Christoph Lameter35e5d7e2007-05-09 02:32:42 -07003310 if (SlabDebug(page))
3311 printk(KERN_ERR "SLUB %s: SlabDebug set on "
Christoph Lameter53e15af2007-05-06 14:49:43 -07003312 "slab 0x%p\n", s->name, page);
3313 }
3314}
3315
Christoph Lameter434e2452007-07-17 04:03:30 -07003316static int validate_slab_node(struct kmem_cache *s,
3317 struct kmem_cache_node *n, unsigned long *map)
Christoph Lameter53e15af2007-05-06 14:49:43 -07003318{
3319 unsigned long count = 0;
3320 struct page *page;
3321 unsigned long flags;
3322
3323 spin_lock_irqsave(&n->list_lock, flags);
3324
3325 list_for_each_entry(page, &n->partial, lru) {
Christoph Lameter434e2452007-07-17 04:03:30 -07003326 validate_slab_slab(s, page, map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003327 count++;
3328 }
3329 if (count != n->nr_partial)
3330 printk(KERN_ERR "SLUB %s: %ld partial slabs counted but "
3331 "counter=%ld\n", s->name, count, n->nr_partial);
3332
3333 if (!(s->flags & SLAB_STORE_USER))
3334 goto out;
3335
3336 list_for_each_entry(page, &n->full, lru) {
Christoph Lameter434e2452007-07-17 04:03:30 -07003337 validate_slab_slab(s, page, map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003338 count++;
3339 }
3340 if (count != atomic_long_read(&n->nr_slabs))
3341 printk(KERN_ERR "SLUB: %s %ld slabs counted but "
3342 "counter=%ld\n", s->name, count,
3343 atomic_long_read(&n->nr_slabs));
3344
3345out:
3346 spin_unlock_irqrestore(&n->list_lock, flags);
3347 return count;
3348}
3349
Christoph Lameter434e2452007-07-17 04:03:30 -07003350static long validate_slab_cache(struct kmem_cache *s)
Christoph Lameter53e15af2007-05-06 14:49:43 -07003351{
3352 int node;
3353 unsigned long count = 0;
Christoph Lameter434e2452007-07-17 04:03:30 -07003354 unsigned long *map = kmalloc(BITS_TO_LONGS(s->objects) *
3355 sizeof(unsigned long), GFP_KERNEL);
3356
3357 if (!map)
3358 return -ENOMEM;
Christoph Lameter53e15af2007-05-06 14:49:43 -07003359
3360 flush_all(s);
Christoph Lameterf64dc582007-10-16 01:25:33 -07003361 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter53e15af2007-05-06 14:49:43 -07003362 struct kmem_cache_node *n = get_node(s, node);
3363
Christoph Lameter434e2452007-07-17 04:03:30 -07003364 count += validate_slab_node(s, n, map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003365 }
Christoph Lameter434e2452007-07-17 04:03:30 -07003366 kfree(map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003367 return count;
3368}
3369
Christoph Lameterb3459702007-05-09 02:32:41 -07003370#ifdef SLUB_RESILIENCY_TEST
3371static void resiliency_test(void)
3372{
3373 u8 *p;
3374
3375 printk(KERN_ERR "SLUB resiliency testing\n");
3376 printk(KERN_ERR "-----------------------\n");
3377 printk(KERN_ERR "A. Corruption after allocation\n");
3378
3379 p = kzalloc(16, GFP_KERNEL);
3380 p[16] = 0x12;
3381 printk(KERN_ERR "\n1. kmalloc-16: Clobber Redzone/next pointer"
3382 " 0x12->0x%p\n\n", p + 16);
3383
3384 validate_slab_cache(kmalloc_caches + 4);
3385
3386 /* Hmmm... The next two are dangerous */
3387 p = kzalloc(32, GFP_KERNEL);
3388 p[32 + sizeof(void *)] = 0x34;
3389 printk(KERN_ERR "\n2. kmalloc-32: Clobber next pointer/next slab"
Ingo Molnar3adbefe2008-02-05 17:57:39 -08003390 " 0x34 -> -0x%p\n", p);
3391 printk(KERN_ERR
3392 "If allocated object is overwritten then not detectable\n\n");
Christoph Lameterb3459702007-05-09 02:32:41 -07003393
3394 validate_slab_cache(kmalloc_caches + 5);
3395 p = kzalloc(64, GFP_KERNEL);
3396 p += 64 + (get_cycles() & 0xff) * sizeof(void *);
3397 *p = 0x56;
3398 printk(KERN_ERR "\n3. kmalloc-64: corrupting random byte 0x56->0x%p\n",
3399 p);
Ingo Molnar3adbefe2008-02-05 17:57:39 -08003400 printk(KERN_ERR
3401 "If allocated object is overwritten then not detectable\n\n");
Christoph Lameterb3459702007-05-09 02:32:41 -07003402 validate_slab_cache(kmalloc_caches + 6);
3403
3404 printk(KERN_ERR "\nB. Corruption after free\n");
3405 p = kzalloc(128, GFP_KERNEL);
3406 kfree(p);
3407 *p = 0x78;
3408 printk(KERN_ERR "1. kmalloc-128: Clobber first word 0x78->0x%p\n\n", p);
3409 validate_slab_cache(kmalloc_caches + 7);
3410
3411 p = kzalloc(256, GFP_KERNEL);
3412 kfree(p);
3413 p[50] = 0x9a;
Ingo Molnar3adbefe2008-02-05 17:57:39 -08003414 printk(KERN_ERR "\n2. kmalloc-256: Clobber 50th byte 0x9a->0x%p\n\n",
3415 p);
Christoph Lameterb3459702007-05-09 02:32:41 -07003416 validate_slab_cache(kmalloc_caches + 8);
3417
3418 p = kzalloc(512, GFP_KERNEL);
3419 kfree(p);
3420 p[512] = 0xab;
3421 printk(KERN_ERR "\n3. kmalloc-512: Clobber redzone 0xab->0x%p\n\n", p);
3422 validate_slab_cache(kmalloc_caches + 9);
3423}
3424#else
3425static void resiliency_test(void) {};
3426#endif
3427
Christoph Lameter88a420e2007-05-06 14:49:45 -07003428/*
Christoph Lameter672bba32007-05-09 02:32:39 -07003429 * Generate lists of code addresses where slabcache objects are allocated
Christoph Lameter88a420e2007-05-06 14:49:45 -07003430 * and freed.
3431 */
3432
3433struct location {
3434 unsigned long count;
3435 void *addr;
Christoph Lameter45edfa52007-05-09 02:32:45 -07003436 long long sum_time;
3437 long min_time;
3438 long max_time;
3439 long min_pid;
3440 long max_pid;
3441 cpumask_t cpus;
3442 nodemask_t nodes;
Christoph Lameter88a420e2007-05-06 14:49:45 -07003443};
3444
3445struct loc_track {
3446 unsigned long max;
3447 unsigned long count;
3448 struct location *loc;
3449};
3450
3451static void free_loc_track(struct loc_track *t)
3452{
3453 if (t->max)
3454 free_pages((unsigned long)t->loc,
3455 get_order(sizeof(struct location) * t->max));
3456}
3457
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003458static int alloc_loc_track(struct loc_track *t, unsigned long max, gfp_t flags)
Christoph Lameter88a420e2007-05-06 14:49:45 -07003459{
3460 struct location *l;
3461 int order;
3462
Christoph Lameter88a420e2007-05-06 14:49:45 -07003463 order = get_order(sizeof(struct location) * max);
3464
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003465 l = (void *)__get_free_pages(flags, order);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003466 if (!l)
3467 return 0;
3468
3469 if (t->count) {
3470 memcpy(l, t->loc, sizeof(struct location) * t->count);
3471 free_loc_track(t);
3472 }
3473 t->max = max;
3474 t->loc = l;
3475 return 1;
3476}
3477
3478static int add_location(struct loc_track *t, struct kmem_cache *s,
Christoph Lameter45edfa52007-05-09 02:32:45 -07003479 const struct track *track)
Christoph Lameter88a420e2007-05-06 14:49:45 -07003480{
3481 long start, end, pos;
3482 struct location *l;
3483 void *caddr;
Christoph Lameter45edfa52007-05-09 02:32:45 -07003484 unsigned long age = jiffies - track->when;
Christoph Lameter88a420e2007-05-06 14:49:45 -07003485
3486 start = -1;
3487 end = t->count;
3488
3489 for ( ; ; ) {
3490 pos = start + (end - start + 1) / 2;
3491
3492 /*
3493 * There is nothing at "end". If we end up there
3494 * we need to add something to before end.
3495 */
3496 if (pos == end)
3497 break;
3498
3499 caddr = t->loc[pos].addr;
Christoph Lameter45edfa52007-05-09 02:32:45 -07003500 if (track->addr == caddr) {
3501
3502 l = &t->loc[pos];
3503 l->count++;
3504 if (track->when) {
3505 l->sum_time += age;
3506 if (age < l->min_time)
3507 l->min_time = age;
3508 if (age > l->max_time)
3509 l->max_time = age;
3510
3511 if (track->pid < l->min_pid)
3512 l->min_pid = track->pid;
3513 if (track->pid > l->max_pid)
3514 l->max_pid = track->pid;
3515
3516 cpu_set(track->cpu, l->cpus);
3517 }
3518 node_set(page_to_nid(virt_to_page(track)), l->nodes);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003519 return 1;
3520 }
3521
Christoph Lameter45edfa52007-05-09 02:32:45 -07003522 if (track->addr < caddr)
Christoph Lameter88a420e2007-05-06 14:49:45 -07003523 end = pos;
3524 else
3525 start = pos;
3526 }
3527
3528 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07003529 * Not found. Insert new tracking element.
Christoph Lameter88a420e2007-05-06 14:49:45 -07003530 */
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003531 if (t->count >= t->max && !alloc_loc_track(t, 2 * t->max, GFP_ATOMIC))
Christoph Lameter88a420e2007-05-06 14:49:45 -07003532 return 0;
3533
3534 l = t->loc + pos;
3535 if (pos < t->count)
3536 memmove(l + 1, l,
3537 (t->count - pos) * sizeof(struct location));
3538 t->count++;
3539 l->count = 1;
Christoph Lameter45edfa52007-05-09 02:32:45 -07003540 l->addr = track->addr;
3541 l->sum_time = age;
3542 l->min_time = age;
3543 l->max_time = age;
3544 l->min_pid = track->pid;
3545 l->max_pid = track->pid;
3546 cpus_clear(l->cpus);
3547 cpu_set(track->cpu, l->cpus);
3548 nodes_clear(l->nodes);
3549 node_set(page_to_nid(virt_to_page(track)), l->nodes);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003550 return 1;
3551}
3552
3553static void process_slab(struct loc_track *t, struct kmem_cache *s,
3554 struct page *page, enum track_item alloc)
3555{
Christoph Lametera973e9d2008-03-01 13:40:44 -08003556 void *addr = page_address(page);
Christoph Lameter39b26462008-04-14 19:11:30 +03003557 DECLARE_BITMAP(map, page->objects);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003558 void *p;
3559
Christoph Lameter39b26462008-04-14 19:11:30 +03003560 bitmap_zero(map, page->objects);
Christoph Lameter7656c722007-05-09 02:32:40 -07003561 for_each_free_object(p, s, page->freelist)
3562 set_bit(slab_index(p, s, addr), map);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003563
Christoph Lameter224a88b2008-04-14 19:11:31 +03003564 for_each_object(p, s, addr, page->objects)
Christoph Lameter45edfa52007-05-09 02:32:45 -07003565 if (!test_bit(slab_index(p, s, addr), map))
3566 add_location(t, s, get_track(s, p, alloc));
Christoph Lameter88a420e2007-05-06 14:49:45 -07003567}
3568
3569static int list_locations(struct kmem_cache *s, char *buf,
3570 enum track_item alloc)
3571{
Harvey Harrisone374d482008-01-31 15:20:50 -08003572 int len = 0;
Christoph Lameter88a420e2007-05-06 14:49:45 -07003573 unsigned long i;
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003574 struct loc_track t = { 0, 0, NULL };
Christoph Lameter88a420e2007-05-06 14:49:45 -07003575 int node;
3576
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003577 if (!alloc_loc_track(&t, PAGE_SIZE / sizeof(struct location),
Andrew Mortonea3061d2007-10-16 01:26:09 -07003578 GFP_TEMPORARY))
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003579 return sprintf(buf, "Out of memory\n");
Christoph Lameter88a420e2007-05-06 14:49:45 -07003580
3581 /* Push back cpu slabs */
3582 flush_all(s);
3583
Christoph Lameterf64dc582007-10-16 01:25:33 -07003584 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter88a420e2007-05-06 14:49:45 -07003585 struct kmem_cache_node *n = get_node(s, node);
3586 unsigned long flags;
3587 struct page *page;
3588
Christoph Lameter9e869432007-08-22 14:01:56 -07003589 if (!atomic_long_read(&n->nr_slabs))
Christoph Lameter88a420e2007-05-06 14:49:45 -07003590 continue;
3591
3592 spin_lock_irqsave(&n->list_lock, flags);
3593 list_for_each_entry(page, &n->partial, lru)
3594 process_slab(&t, s, page, alloc);
3595 list_for_each_entry(page, &n->full, lru)
3596 process_slab(&t, s, page, alloc);
3597 spin_unlock_irqrestore(&n->list_lock, flags);
3598 }
3599
3600 for (i = 0; i < t.count; i++) {
Christoph Lameter45edfa52007-05-09 02:32:45 -07003601 struct location *l = &t.loc[i];
Christoph Lameter88a420e2007-05-06 14:49:45 -07003602
Harvey Harrisone374d482008-01-31 15:20:50 -08003603 if (len > PAGE_SIZE - 100)
Christoph Lameter88a420e2007-05-06 14:49:45 -07003604 break;
Harvey Harrisone374d482008-01-31 15:20:50 -08003605 len += sprintf(buf + len, "%7ld ", l->count);
Christoph Lameter45edfa52007-05-09 02:32:45 -07003606
3607 if (l->addr)
Harvey Harrisone374d482008-01-31 15:20:50 -08003608 len += sprint_symbol(buf + len, (unsigned long)l->addr);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003609 else
Harvey Harrisone374d482008-01-31 15:20:50 -08003610 len += sprintf(buf + len, "<not-available>");
Christoph Lameter45edfa52007-05-09 02:32:45 -07003611
3612 if (l->sum_time != l->min_time) {
3613 unsigned long remainder;
3614
Harvey Harrisone374d482008-01-31 15:20:50 -08003615 len += sprintf(buf + len, " age=%ld/%ld/%ld",
Christoph Lameter45edfa52007-05-09 02:32:45 -07003616 l->min_time,
3617 div_long_long_rem(l->sum_time, l->count, &remainder),
3618 l->max_time);
3619 } else
Harvey Harrisone374d482008-01-31 15:20:50 -08003620 len += sprintf(buf + len, " age=%ld",
Christoph Lameter45edfa52007-05-09 02:32:45 -07003621 l->min_time);
3622
3623 if (l->min_pid != l->max_pid)
Harvey Harrisone374d482008-01-31 15:20:50 -08003624 len += sprintf(buf + len, " pid=%ld-%ld",
Christoph Lameter45edfa52007-05-09 02:32:45 -07003625 l->min_pid, l->max_pid);
3626 else
Harvey Harrisone374d482008-01-31 15:20:50 -08003627 len += sprintf(buf + len, " pid=%ld",
Christoph Lameter45edfa52007-05-09 02:32:45 -07003628 l->min_pid);
3629
Christoph Lameter84966342007-06-23 17:16:32 -07003630 if (num_online_cpus() > 1 && !cpus_empty(l->cpus) &&
Harvey Harrisone374d482008-01-31 15:20:50 -08003631 len < PAGE_SIZE - 60) {
3632 len += sprintf(buf + len, " cpus=");
3633 len += cpulist_scnprintf(buf + len, PAGE_SIZE - len - 50,
Christoph Lameter45edfa52007-05-09 02:32:45 -07003634 l->cpus);
3635 }
3636
Christoph Lameter84966342007-06-23 17:16:32 -07003637 if (num_online_nodes() > 1 && !nodes_empty(l->nodes) &&
Harvey Harrisone374d482008-01-31 15:20:50 -08003638 len < PAGE_SIZE - 60) {
3639 len += sprintf(buf + len, " nodes=");
3640 len += nodelist_scnprintf(buf + len, PAGE_SIZE - len - 50,
Christoph Lameter45edfa52007-05-09 02:32:45 -07003641 l->nodes);
3642 }
3643
Harvey Harrisone374d482008-01-31 15:20:50 -08003644 len += sprintf(buf + len, "\n");
Christoph Lameter88a420e2007-05-06 14:49:45 -07003645 }
3646
3647 free_loc_track(&t);
3648 if (!t.count)
Harvey Harrisone374d482008-01-31 15:20:50 -08003649 len += sprintf(buf, "No data\n");
3650 return len;
Christoph Lameter88a420e2007-05-06 14:49:45 -07003651}
3652
Christoph Lameter81819f02007-05-06 14:49:36 -07003653enum slab_stat_type {
3654 SL_FULL,
3655 SL_PARTIAL,
3656 SL_CPU,
3657 SL_OBJECTS
3658};
3659
3660#define SO_FULL (1 << SL_FULL)
3661#define SO_PARTIAL (1 << SL_PARTIAL)
3662#define SO_CPU (1 << SL_CPU)
3663#define SO_OBJECTS (1 << SL_OBJECTS)
3664
Cyrill Gorcunov62e5c4b2008-03-02 23:28:24 +03003665static ssize_t show_slab_objects(struct kmem_cache *s,
3666 char *buf, unsigned long flags)
Christoph Lameter81819f02007-05-06 14:49:36 -07003667{
3668 unsigned long total = 0;
3669 int cpu;
3670 int node;
3671 int x;
3672 unsigned long *nodes;
3673 unsigned long *per_cpu;
3674
3675 nodes = kzalloc(2 * sizeof(unsigned long) * nr_node_ids, GFP_KERNEL);
Cyrill Gorcunov62e5c4b2008-03-02 23:28:24 +03003676 if (!nodes)
3677 return -ENOMEM;
Christoph Lameter81819f02007-05-06 14:49:36 -07003678 per_cpu = nodes + nr_node_ids;
3679
3680 for_each_possible_cpu(cpu) {
Christoph Lameterdfb4f092007-10-16 01:26:05 -07003681 struct page *page;
3682 struct kmem_cache_cpu *c = get_cpu_slab(s, cpu);
Christoph Lameter81819f02007-05-06 14:49:36 -07003683
Christoph Lameterdfb4f092007-10-16 01:26:05 -07003684 if (!c)
3685 continue;
3686
3687 page = c->page;
Christoph Lameteree3c72a2007-10-16 01:26:07 -07003688 node = c->node;
3689 if (node < 0)
3690 continue;
Christoph Lameter81819f02007-05-06 14:49:36 -07003691 if (page) {
Christoph Lameter81819f02007-05-06 14:49:36 -07003692 if (flags & SO_CPU) {
Christoph Lameter81819f02007-05-06 14:49:36 -07003693 if (flags & SO_OBJECTS)
3694 x = page->inuse;
3695 else
3696 x = 1;
3697 total += x;
Christoph Lameteree3c72a2007-10-16 01:26:07 -07003698 nodes[node] += x;
Christoph Lameter81819f02007-05-06 14:49:36 -07003699 }
Christoph Lameteree3c72a2007-10-16 01:26:07 -07003700 per_cpu[node]++;
Christoph Lameter81819f02007-05-06 14:49:36 -07003701 }
3702 }
3703
Christoph Lameterf64dc582007-10-16 01:25:33 -07003704 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter81819f02007-05-06 14:49:36 -07003705 struct kmem_cache_node *n = get_node(s, node);
3706
3707 if (flags & SO_PARTIAL) {
3708 if (flags & SO_OBJECTS)
3709 x = count_partial(n);
3710 else
3711 x = n->nr_partial;
3712 total += x;
3713 nodes[node] += x;
3714 }
3715
3716 if (flags & SO_FULL) {
Christoph Lameter9e869432007-08-22 14:01:56 -07003717 int full_slabs = atomic_long_read(&n->nr_slabs)
Christoph Lameter81819f02007-05-06 14:49:36 -07003718 - per_cpu[node]
3719 - n->nr_partial;
3720
3721 if (flags & SO_OBJECTS)
3722 x = full_slabs * s->objects;
3723 else
3724 x = full_slabs;
3725 total += x;
3726 nodes[node] += x;
3727 }
3728 }
3729
3730 x = sprintf(buf, "%lu", total);
3731#ifdef CONFIG_NUMA
Christoph Lameterf64dc582007-10-16 01:25:33 -07003732 for_each_node_state(node, N_NORMAL_MEMORY)
Christoph Lameter81819f02007-05-06 14:49:36 -07003733 if (nodes[node])
3734 x += sprintf(buf + x, " N%d=%lu",
3735 node, nodes[node]);
3736#endif
3737 kfree(nodes);
3738 return x + sprintf(buf + x, "\n");
3739}
3740
3741static int any_slab_objects(struct kmem_cache *s)
3742{
3743 int node;
3744 int cpu;
3745
Christoph Lameterdfb4f092007-10-16 01:26:05 -07003746 for_each_possible_cpu(cpu) {
3747 struct kmem_cache_cpu *c = get_cpu_slab(s, cpu);
Christoph Lameter81819f02007-05-06 14:49:36 -07003748
Christoph Lameterdfb4f092007-10-16 01:26:05 -07003749 if (c && c->page)
3750 return 1;
3751 }
3752
3753 for_each_online_node(node) {
Christoph Lameter81819f02007-05-06 14:49:36 -07003754 struct kmem_cache_node *n = get_node(s, node);
3755
Christoph Lameterdfb4f092007-10-16 01:26:05 -07003756 if (!n)
3757 continue;
3758
Christoph Lameter9e869432007-08-22 14:01:56 -07003759 if (n->nr_partial || atomic_long_read(&n->nr_slabs))
Christoph Lameter81819f02007-05-06 14:49:36 -07003760 return 1;
3761 }
3762 return 0;
3763}
3764
3765#define to_slab_attr(n) container_of(n, struct slab_attribute, attr)
3766#define to_slab(n) container_of(n, struct kmem_cache, kobj);
3767
3768struct slab_attribute {
3769 struct attribute attr;
3770 ssize_t (*show)(struct kmem_cache *s, char *buf);
3771 ssize_t (*store)(struct kmem_cache *s, const char *x, size_t count);
3772};
3773
3774#define SLAB_ATTR_RO(_name) \
3775 static struct slab_attribute _name##_attr = __ATTR_RO(_name)
3776
3777#define SLAB_ATTR(_name) \
3778 static struct slab_attribute _name##_attr = \
3779 __ATTR(_name, 0644, _name##_show, _name##_store)
3780
Christoph Lameter81819f02007-05-06 14:49:36 -07003781static ssize_t slab_size_show(struct kmem_cache *s, char *buf)
3782{
3783 return sprintf(buf, "%d\n", s->size);
3784}
3785SLAB_ATTR_RO(slab_size);
3786
3787static ssize_t align_show(struct kmem_cache *s, char *buf)
3788{
3789 return sprintf(buf, "%d\n", s->align);
3790}
3791SLAB_ATTR_RO(align);
3792
3793static ssize_t object_size_show(struct kmem_cache *s, char *buf)
3794{
3795 return sprintf(buf, "%d\n", s->objsize);
3796}
3797SLAB_ATTR_RO(object_size);
3798
3799static ssize_t objs_per_slab_show(struct kmem_cache *s, char *buf)
3800{
3801 return sprintf(buf, "%d\n", s->objects);
3802}
3803SLAB_ATTR_RO(objs_per_slab);
3804
3805static ssize_t order_show(struct kmem_cache *s, char *buf)
3806{
3807 return sprintf(buf, "%d\n", s->order);
3808}
3809SLAB_ATTR_RO(order);
3810
3811static ssize_t ctor_show(struct kmem_cache *s, char *buf)
3812{
3813 if (s->ctor) {
3814 int n = sprint_symbol(buf, (unsigned long)s->ctor);
3815
3816 return n + sprintf(buf + n, "\n");
3817 }
3818 return 0;
3819}
3820SLAB_ATTR_RO(ctor);
3821
Christoph Lameter81819f02007-05-06 14:49:36 -07003822static ssize_t aliases_show(struct kmem_cache *s, char *buf)
3823{
3824 return sprintf(buf, "%d\n", s->refcount - 1);
3825}
3826SLAB_ATTR_RO(aliases);
3827
3828static ssize_t slabs_show(struct kmem_cache *s, char *buf)
3829{
Christoph Lameterd9acf4b2008-02-15 15:22:21 -08003830 return show_slab_objects(s, buf, SO_FULL|SO_PARTIAL|SO_CPU);
Christoph Lameter81819f02007-05-06 14:49:36 -07003831}
3832SLAB_ATTR_RO(slabs);
3833
3834static ssize_t partial_show(struct kmem_cache *s, char *buf)
3835{
Christoph Lameterd9acf4b2008-02-15 15:22:21 -08003836 return show_slab_objects(s, buf, SO_PARTIAL);
Christoph Lameter81819f02007-05-06 14:49:36 -07003837}
3838SLAB_ATTR_RO(partial);
3839
3840static ssize_t cpu_slabs_show(struct kmem_cache *s, char *buf)
3841{
Christoph Lameterd9acf4b2008-02-15 15:22:21 -08003842 return show_slab_objects(s, buf, SO_CPU);
Christoph Lameter81819f02007-05-06 14:49:36 -07003843}
3844SLAB_ATTR_RO(cpu_slabs);
3845
3846static ssize_t objects_show(struct kmem_cache *s, char *buf)
3847{
Christoph Lameterd9acf4b2008-02-15 15:22:21 -08003848 return show_slab_objects(s, buf, SO_FULL|SO_PARTIAL|SO_CPU|SO_OBJECTS);
Christoph Lameter81819f02007-05-06 14:49:36 -07003849}
3850SLAB_ATTR_RO(objects);
3851
3852static ssize_t sanity_checks_show(struct kmem_cache *s, char *buf)
3853{
3854 return sprintf(buf, "%d\n", !!(s->flags & SLAB_DEBUG_FREE));
3855}
3856
3857static ssize_t sanity_checks_store(struct kmem_cache *s,
3858 const char *buf, size_t length)
3859{
3860 s->flags &= ~SLAB_DEBUG_FREE;
3861 if (buf[0] == '1')
3862 s->flags |= SLAB_DEBUG_FREE;
3863 return length;
3864}
3865SLAB_ATTR(sanity_checks);
3866
3867static ssize_t trace_show(struct kmem_cache *s, char *buf)
3868{
3869 return sprintf(buf, "%d\n", !!(s->flags & SLAB_TRACE));
3870}
3871
3872static ssize_t trace_store(struct kmem_cache *s, const char *buf,
3873 size_t length)
3874{
3875 s->flags &= ~SLAB_TRACE;
3876 if (buf[0] == '1')
3877 s->flags |= SLAB_TRACE;
3878 return length;
3879}
3880SLAB_ATTR(trace);
3881
3882static ssize_t reclaim_account_show(struct kmem_cache *s, char *buf)
3883{
3884 return sprintf(buf, "%d\n", !!(s->flags & SLAB_RECLAIM_ACCOUNT));
3885}
3886
3887static ssize_t reclaim_account_store(struct kmem_cache *s,
3888 const char *buf, size_t length)
3889{
3890 s->flags &= ~SLAB_RECLAIM_ACCOUNT;
3891 if (buf[0] == '1')
3892 s->flags |= SLAB_RECLAIM_ACCOUNT;
3893 return length;
3894}
3895SLAB_ATTR(reclaim_account);
3896
3897static ssize_t hwcache_align_show(struct kmem_cache *s, char *buf)
3898{
Christoph Lameter5af60832007-05-06 14:49:56 -07003899 return sprintf(buf, "%d\n", !!(s->flags & SLAB_HWCACHE_ALIGN));
Christoph Lameter81819f02007-05-06 14:49:36 -07003900}
3901SLAB_ATTR_RO(hwcache_align);
3902
3903#ifdef CONFIG_ZONE_DMA
3904static ssize_t cache_dma_show(struct kmem_cache *s, char *buf)
3905{
3906 return sprintf(buf, "%d\n", !!(s->flags & SLAB_CACHE_DMA));
3907}
3908SLAB_ATTR_RO(cache_dma);
3909#endif
3910
3911static ssize_t destroy_by_rcu_show(struct kmem_cache *s, char *buf)
3912{
3913 return sprintf(buf, "%d\n", !!(s->flags & SLAB_DESTROY_BY_RCU));
3914}
3915SLAB_ATTR_RO(destroy_by_rcu);
3916
3917static ssize_t red_zone_show(struct kmem_cache *s, char *buf)
3918{
3919 return sprintf(buf, "%d\n", !!(s->flags & SLAB_RED_ZONE));
3920}
3921
3922static ssize_t red_zone_store(struct kmem_cache *s,
3923 const char *buf, size_t length)
3924{
3925 if (any_slab_objects(s))
3926 return -EBUSY;
3927
3928 s->flags &= ~SLAB_RED_ZONE;
3929 if (buf[0] == '1')
3930 s->flags |= SLAB_RED_ZONE;
3931 calculate_sizes(s);
3932 return length;
3933}
3934SLAB_ATTR(red_zone);
3935
3936static ssize_t poison_show(struct kmem_cache *s, char *buf)
3937{
3938 return sprintf(buf, "%d\n", !!(s->flags & SLAB_POISON));
3939}
3940
3941static ssize_t poison_store(struct kmem_cache *s,
3942 const char *buf, size_t length)
3943{
3944 if (any_slab_objects(s))
3945 return -EBUSY;
3946
3947 s->flags &= ~SLAB_POISON;
3948 if (buf[0] == '1')
3949 s->flags |= SLAB_POISON;
3950 calculate_sizes(s);
3951 return length;
3952}
3953SLAB_ATTR(poison);
3954
3955static ssize_t store_user_show(struct kmem_cache *s, char *buf)
3956{
3957 return sprintf(buf, "%d\n", !!(s->flags & SLAB_STORE_USER));
3958}
3959
3960static ssize_t store_user_store(struct kmem_cache *s,
3961 const char *buf, size_t length)
3962{
3963 if (any_slab_objects(s))
3964 return -EBUSY;
3965
3966 s->flags &= ~SLAB_STORE_USER;
3967 if (buf[0] == '1')
3968 s->flags |= SLAB_STORE_USER;
3969 calculate_sizes(s);
3970 return length;
3971}
3972SLAB_ATTR(store_user);
3973
Christoph Lameter53e15af2007-05-06 14:49:43 -07003974static ssize_t validate_show(struct kmem_cache *s, char *buf)
3975{
3976 return 0;
3977}
3978
3979static ssize_t validate_store(struct kmem_cache *s,
3980 const char *buf, size_t length)
3981{
Christoph Lameter434e2452007-07-17 04:03:30 -07003982 int ret = -EINVAL;
3983
3984 if (buf[0] == '1') {
3985 ret = validate_slab_cache(s);
3986 if (ret >= 0)
3987 ret = length;
3988 }
3989 return ret;
Christoph Lameter53e15af2007-05-06 14:49:43 -07003990}
3991SLAB_ATTR(validate);
3992
Christoph Lameter2086d262007-05-06 14:49:46 -07003993static ssize_t shrink_show(struct kmem_cache *s, char *buf)
3994{
3995 return 0;
3996}
3997
3998static ssize_t shrink_store(struct kmem_cache *s,
3999 const char *buf, size_t length)
4000{
4001 if (buf[0] == '1') {
4002 int rc = kmem_cache_shrink(s);
4003
4004 if (rc)
4005 return rc;
4006 } else
4007 return -EINVAL;
4008 return length;
4009}
4010SLAB_ATTR(shrink);
4011
Christoph Lameter88a420e2007-05-06 14:49:45 -07004012static ssize_t alloc_calls_show(struct kmem_cache *s, char *buf)
4013{
4014 if (!(s->flags & SLAB_STORE_USER))
4015 return -ENOSYS;
4016 return list_locations(s, buf, TRACK_ALLOC);
4017}
4018SLAB_ATTR_RO(alloc_calls);
4019
4020static ssize_t free_calls_show(struct kmem_cache *s, char *buf)
4021{
4022 if (!(s->flags & SLAB_STORE_USER))
4023 return -ENOSYS;
4024 return list_locations(s, buf, TRACK_FREE);
4025}
4026SLAB_ATTR_RO(free_calls);
4027
Christoph Lameter81819f02007-05-06 14:49:36 -07004028#ifdef CONFIG_NUMA
Christoph Lameter98246012008-01-07 23:20:26 -08004029static ssize_t remote_node_defrag_ratio_show(struct kmem_cache *s, char *buf)
Christoph Lameter81819f02007-05-06 14:49:36 -07004030{
Christoph Lameter98246012008-01-07 23:20:26 -08004031 return sprintf(buf, "%d\n", s->remote_node_defrag_ratio / 10);
Christoph Lameter81819f02007-05-06 14:49:36 -07004032}
4033
Christoph Lameter98246012008-01-07 23:20:26 -08004034static ssize_t remote_node_defrag_ratio_store(struct kmem_cache *s,
Christoph Lameter81819f02007-05-06 14:49:36 -07004035 const char *buf, size_t length)
4036{
4037 int n = simple_strtoul(buf, NULL, 10);
4038
4039 if (n < 100)
Christoph Lameter98246012008-01-07 23:20:26 -08004040 s->remote_node_defrag_ratio = n * 10;
Christoph Lameter81819f02007-05-06 14:49:36 -07004041 return length;
4042}
Christoph Lameter98246012008-01-07 23:20:26 -08004043SLAB_ATTR(remote_node_defrag_ratio);
Christoph Lameter81819f02007-05-06 14:49:36 -07004044#endif
4045
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004046#ifdef CONFIG_SLUB_STATS
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004047static int show_stat(struct kmem_cache *s, char *buf, enum stat_item si)
4048{
4049 unsigned long sum = 0;
4050 int cpu;
4051 int len;
4052 int *data = kmalloc(nr_cpu_ids * sizeof(int), GFP_KERNEL);
4053
4054 if (!data)
4055 return -ENOMEM;
4056
4057 for_each_online_cpu(cpu) {
4058 unsigned x = get_cpu_slab(s, cpu)->stat[si];
4059
4060 data[cpu] = x;
4061 sum += x;
4062 }
4063
4064 len = sprintf(buf, "%lu", sum);
4065
Christoph Lameter50ef37b2008-04-14 18:52:05 +03004066#ifdef CONFIG_SMP
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004067 for_each_online_cpu(cpu) {
4068 if (data[cpu] && len < PAGE_SIZE - 20)
Christoph Lameter50ef37b2008-04-14 18:52:05 +03004069 len += sprintf(buf + len, " C%d=%u", cpu, data[cpu]);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004070 }
Christoph Lameter50ef37b2008-04-14 18:52:05 +03004071#endif
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004072 kfree(data);
4073 return len + sprintf(buf + len, "\n");
4074}
4075
4076#define STAT_ATTR(si, text) \
4077static ssize_t text##_show(struct kmem_cache *s, char *buf) \
4078{ \
4079 return show_stat(s, buf, si); \
4080} \
4081SLAB_ATTR_RO(text); \
4082
4083STAT_ATTR(ALLOC_FASTPATH, alloc_fastpath);
4084STAT_ATTR(ALLOC_SLOWPATH, alloc_slowpath);
4085STAT_ATTR(FREE_FASTPATH, free_fastpath);
4086STAT_ATTR(FREE_SLOWPATH, free_slowpath);
4087STAT_ATTR(FREE_FROZEN, free_frozen);
4088STAT_ATTR(FREE_ADD_PARTIAL, free_add_partial);
4089STAT_ATTR(FREE_REMOVE_PARTIAL, free_remove_partial);
4090STAT_ATTR(ALLOC_FROM_PARTIAL, alloc_from_partial);
4091STAT_ATTR(ALLOC_SLAB, alloc_slab);
4092STAT_ATTR(ALLOC_REFILL, alloc_refill);
4093STAT_ATTR(FREE_SLAB, free_slab);
4094STAT_ATTR(CPUSLAB_FLUSH, cpuslab_flush);
4095STAT_ATTR(DEACTIVATE_FULL, deactivate_full);
4096STAT_ATTR(DEACTIVATE_EMPTY, deactivate_empty);
4097STAT_ATTR(DEACTIVATE_TO_HEAD, deactivate_to_head);
4098STAT_ATTR(DEACTIVATE_TO_TAIL, deactivate_to_tail);
4099STAT_ATTR(DEACTIVATE_REMOTE_FREES, deactivate_remote_frees);
4100
4101#endif
4102
Pekka Enberg06428782008-01-07 23:20:27 -08004103static struct attribute *slab_attrs[] = {
Christoph Lameter81819f02007-05-06 14:49:36 -07004104 &slab_size_attr.attr,
4105 &object_size_attr.attr,
4106 &objs_per_slab_attr.attr,
4107 &order_attr.attr,
4108 &objects_attr.attr,
4109 &slabs_attr.attr,
4110 &partial_attr.attr,
4111 &cpu_slabs_attr.attr,
4112 &ctor_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07004113 &aliases_attr.attr,
4114 &align_attr.attr,
4115 &sanity_checks_attr.attr,
4116 &trace_attr.attr,
4117 &hwcache_align_attr.attr,
4118 &reclaim_account_attr.attr,
4119 &destroy_by_rcu_attr.attr,
4120 &red_zone_attr.attr,
4121 &poison_attr.attr,
4122 &store_user_attr.attr,
Christoph Lameter53e15af2007-05-06 14:49:43 -07004123 &validate_attr.attr,
Christoph Lameter2086d262007-05-06 14:49:46 -07004124 &shrink_attr.attr,
Christoph Lameter88a420e2007-05-06 14:49:45 -07004125 &alloc_calls_attr.attr,
4126 &free_calls_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07004127#ifdef CONFIG_ZONE_DMA
4128 &cache_dma_attr.attr,
4129#endif
4130#ifdef CONFIG_NUMA
Christoph Lameter98246012008-01-07 23:20:26 -08004131 &remote_node_defrag_ratio_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07004132#endif
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004133#ifdef CONFIG_SLUB_STATS
4134 &alloc_fastpath_attr.attr,
4135 &alloc_slowpath_attr.attr,
4136 &free_fastpath_attr.attr,
4137 &free_slowpath_attr.attr,
4138 &free_frozen_attr.attr,
4139 &free_add_partial_attr.attr,
4140 &free_remove_partial_attr.attr,
4141 &alloc_from_partial_attr.attr,
4142 &alloc_slab_attr.attr,
4143 &alloc_refill_attr.attr,
4144 &free_slab_attr.attr,
4145 &cpuslab_flush_attr.attr,
4146 &deactivate_full_attr.attr,
4147 &deactivate_empty_attr.attr,
4148 &deactivate_to_head_attr.attr,
4149 &deactivate_to_tail_attr.attr,
4150 &deactivate_remote_frees_attr.attr,
4151#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07004152 NULL
4153};
4154
4155static struct attribute_group slab_attr_group = {
4156 .attrs = slab_attrs,
4157};
4158
4159static ssize_t slab_attr_show(struct kobject *kobj,
4160 struct attribute *attr,
4161 char *buf)
4162{
4163 struct slab_attribute *attribute;
4164 struct kmem_cache *s;
4165 int err;
4166
4167 attribute = to_slab_attr(attr);
4168 s = to_slab(kobj);
4169
4170 if (!attribute->show)
4171 return -EIO;
4172
4173 err = attribute->show(s, buf);
4174
4175 return err;
4176}
4177
4178static ssize_t slab_attr_store(struct kobject *kobj,
4179 struct attribute *attr,
4180 const char *buf, size_t len)
4181{
4182 struct slab_attribute *attribute;
4183 struct kmem_cache *s;
4184 int err;
4185
4186 attribute = to_slab_attr(attr);
4187 s = to_slab(kobj);
4188
4189 if (!attribute->store)
4190 return -EIO;
4191
4192 err = attribute->store(s, buf, len);
4193
4194 return err;
4195}
4196
Christoph Lameter151c6022008-01-07 22:29:05 -08004197static void kmem_cache_release(struct kobject *kobj)
4198{
4199 struct kmem_cache *s = to_slab(kobj);
4200
4201 kfree(s);
4202}
4203
Christoph Lameter81819f02007-05-06 14:49:36 -07004204static struct sysfs_ops slab_sysfs_ops = {
4205 .show = slab_attr_show,
4206 .store = slab_attr_store,
4207};
4208
4209static struct kobj_type slab_ktype = {
4210 .sysfs_ops = &slab_sysfs_ops,
Christoph Lameter151c6022008-01-07 22:29:05 -08004211 .release = kmem_cache_release
Christoph Lameter81819f02007-05-06 14:49:36 -07004212};
4213
4214static int uevent_filter(struct kset *kset, struct kobject *kobj)
4215{
4216 struct kobj_type *ktype = get_ktype(kobj);
4217
4218 if (ktype == &slab_ktype)
4219 return 1;
4220 return 0;
4221}
4222
4223static struct kset_uevent_ops slab_uevent_ops = {
4224 .filter = uevent_filter,
4225};
4226
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06004227static struct kset *slab_kset;
Christoph Lameter81819f02007-05-06 14:49:36 -07004228
4229#define ID_STR_LENGTH 64
4230
4231/* Create a unique string id for a slab cache:
Christoph Lameter6446faa2008-02-15 23:45:26 -08004232 *
4233 * Format :[flags-]size
Christoph Lameter81819f02007-05-06 14:49:36 -07004234 */
4235static char *create_unique_id(struct kmem_cache *s)
4236{
4237 char *name = kmalloc(ID_STR_LENGTH, GFP_KERNEL);
4238 char *p = name;
4239
4240 BUG_ON(!name);
4241
4242 *p++ = ':';
4243 /*
4244 * First flags affecting slabcache operations. We will only
4245 * get here for aliasable slabs so we do not need to support
4246 * too many flags. The flags here must cover all flags that
4247 * are matched during merging to guarantee that the id is
4248 * unique.
4249 */
4250 if (s->flags & SLAB_CACHE_DMA)
4251 *p++ = 'd';
4252 if (s->flags & SLAB_RECLAIM_ACCOUNT)
4253 *p++ = 'a';
4254 if (s->flags & SLAB_DEBUG_FREE)
4255 *p++ = 'F';
4256 if (p != name + 1)
4257 *p++ = '-';
4258 p += sprintf(p, "%07d", s->size);
4259 BUG_ON(p > name + ID_STR_LENGTH - 1);
4260 return name;
4261}
4262
4263static int sysfs_slab_add(struct kmem_cache *s)
4264{
4265 int err;
4266 const char *name;
4267 int unmergeable;
4268
4269 if (slab_state < SYSFS)
4270 /* Defer until later */
4271 return 0;
4272
4273 unmergeable = slab_unmergeable(s);
4274 if (unmergeable) {
4275 /*
4276 * Slabcache can never be merged so we can use the name proper.
4277 * This is typically the case for debug situations. In that
4278 * case we can catch duplicate names easily.
4279 */
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06004280 sysfs_remove_link(&slab_kset->kobj, s->name);
Christoph Lameter81819f02007-05-06 14:49:36 -07004281 name = s->name;
4282 } else {
4283 /*
4284 * Create a unique name for the slab as a target
4285 * for the symlinks.
4286 */
4287 name = create_unique_id(s);
4288 }
4289
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06004290 s->kobj.kset = slab_kset;
Greg Kroah-Hartman1eada112007-12-17 23:05:35 -07004291 err = kobject_init_and_add(&s->kobj, &slab_ktype, NULL, name);
4292 if (err) {
4293 kobject_put(&s->kobj);
Christoph Lameter81819f02007-05-06 14:49:36 -07004294 return err;
Greg Kroah-Hartman1eada112007-12-17 23:05:35 -07004295 }
Christoph Lameter81819f02007-05-06 14:49:36 -07004296
4297 err = sysfs_create_group(&s->kobj, &slab_attr_group);
4298 if (err)
4299 return err;
4300 kobject_uevent(&s->kobj, KOBJ_ADD);
4301 if (!unmergeable) {
4302 /* Setup first alias */
4303 sysfs_slab_alias(s, s->name);
4304 kfree(name);
4305 }
4306 return 0;
4307}
4308
4309static void sysfs_slab_remove(struct kmem_cache *s)
4310{
4311 kobject_uevent(&s->kobj, KOBJ_REMOVE);
4312 kobject_del(&s->kobj);
Christoph Lameter151c6022008-01-07 22:29:05 -08004313 kobject_put(&s->kobj);
Christoph Lameter81819f02007-05-06 14:49:36 -07004314}
4315
4316/*
4317 * Need to buffer aliases during bootup until sysfs becomes
4318 * available lest we loose that information.
4319 */
4320struct saved_alias {
4321 struct kmem_cache *s;
4322 const char *name;
4323 struct saved_alias *next;
4324};
4325
Adrian Bunk5af328a2007-07-17 04:03:27 -07004326static struct saved_alias *alias_list;
Christoph Lameter81819f02007-05-06 14:49:36 -07004327
4328static int sysfs_slab_alias(struct kmem_cache *s, const char *name)
4329{
4330 struct saved_alias *al;
4331
4332 if (slab_state == SYSFS) {
4333 /*
4334 * If we have a leftover link then remove it.
4335 */
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06004336 sysfs_remove_link(&slab_kset->kobj, name);
4337 return sysfs_create_link(&slab_kset->kobj, &s->kobj, name);
Christoph Lameter81819f02007-05-06 14:49:36 -07004338 }
4339
4340 al = kmalloc(sizeof(struct saved_alias), GFP_KERNEL);
4341 if (!al)
4342 return -ENOMEM;
4343
4344 al->s = s;
4345 al->name = name;
4346 al->next = alias_list;
4347 alias_list = al;
4348 return 0;
4349}
4350
4351static int __init slab_sysfs_init(void)
4352{
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07004353 struct kmem_cache *s;
Christoph Lameter81819f02007-05-06 14:49:36 -07004354 int err;
4355
Greg Kroah-Hartman0ff21e42007-11-06 10:36:58 -08004356 slab_kset = kset_create_and_add("slab", &slab_uevent_ops, kernel_kobj);
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06004357 if (!slab_kset) {
Christoph Lameter81819f02007-05-06 14:49:36 -07004358 printk(KERN_ERR "Cannot register slab subsystem.\n");
4359 return -ENOSYS;
4360 }
4361
Christoph Lameter26a7bd02007-05-09 02:32:39 -07004362 slab_state = SYSFS;
4363
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07004364 list_for_each_entry(s, &slab_caches, list) {
Christoph Lameter26a7bd02007-05-09 02:32:39 -07004365 err = sysfs_slab_add(s);
Christoph Lameter5d540fb2007-08-30 23:56:26 -07004366 if (err)
4367 printk(KERN_ERR "SLUB: Unable to add boot slab %s"
4368 " to sysfs\n", s->name);
Christoph Lameter26a7bd02007-05-09 02:32:39 -07004369 }
Christoph Lameter81819f02007-05-06 14:49:36 -07004370
4371 while (alias_list) {
4372 struct saved_alias *al = alias_list;
4373
4374 alias_list = alias_list->next;
4375 err = sysfs_slab_alias(al->s, al->name);
Christoph Lameter5d540fb2007-08-30 23:56:26 -07004376 if (err)
4377 printk(KERN_ERR "SLUB: Unable to add boot slab alias"
4378 " %s to sysfs\n", s->name);
Christoph Lameter81819f02007-05-06 14:49:36 -07004379 kfree(al);
4380 }
4381
4382 resiliency_test();
4383 return 0;
4384}
4385
4386__initcall(slab_sysfs_init);
Christoph Lameter81819f02007-05-06 14:49:36 -07004387#endif
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004388
4389/*
4390 * The /proc/slabinfo ABI
4391 */
Linus Torvalds158a9622008-01-02 13:04:48 -08004392#ifdef CONFIG_SLABINFO
4393
4394ssize_t slabinfo_write(struct file *file, const char __user * buffer,
4395 size_t count, loff_t *ppos)
4396{
4397 return -EINVAL;
4398}
4399
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004400
4401static void print_slabinfo_header(struct seq_file *m)
4402{
4403 seq_puts(m, "slabinfo - version: 2.1\n");
4404 seq_puts(m, "# name <active_objs> <num_objs> <objsize> "
4405 "<objperslab> <pagesperslab>");
4406 seq_puts(m, " : tunables <limit> <batchcount> <sharedfactor>");
4407 seq_puts(m, " : slabdata <active_slabs> <num_slabs> <sharedavail>");
4408 seq_putc(m, '\n');
4409}
4410
4411static void *s_start(struct seq_file *m, loff_t *pos)
4412{
4413 loff_t n = *pos;
4414
4415 down_read(&slub_lock);
4416 if (!n)
4417 print_slabinfo_header(m);
4418
4419 return seq_list_start(&slab_caches, *pos);
4420}
4421
4422static void *s_next(struct seq_file *m, void *p, loff_t *pos)
4423{
4424 return seq_list_next(p, &slab_caches, pos);
4425}
4426
4427static void s_stop(struct seq_file *m, void *p)
4428{
4429 up_read(&slub_lock);
4430}
4431
4432static int s_show(struct seq_file *m, void *p)
4433{
4434 unsigned long nr_partials = 0;
4435 unsigned long nr_slabs = 0;
4436 unsigned long nr_inuse = 0;
4437 unsigned long nr_objs;
4438 struct kmem_cache *s;
4439 int node;
4440
4441 s = list_entry(p, struct kmem_cache, list);
4442
4443 for_each_online_node(node) {
4444 struct kmem_cache_node *n = get_node(s, node);
4445
4446 if (!n)
4447 continue;
4448
4449 nr_partials += n->nr_partial;
4450 nr_slabs += atomic_long_read(&n->nr_slabs);
4451 nr_inuse += count_partial(n);
4452 }
4453
4454 nr_objs = nr_slabs * s->objects;
4455 nr_inuse += (nr_slabs - nr_partials) * s->objects;
4456
4457 seq_printf(m, "%-17s %6lu %6lu %6u %4u %4d", s->name, nr_inuse,
4458 nr_objs, s->size, s->objects, (1 << s->order));
4459 seq_printf(m, " : tunables %4u %4u %4u", 0, 0, 0);
4460 seq_printf(m, " : slabdata %6lu %6lu %6lu", nr_slabs, nr_slabs,
4461 0UL);
4462 seq_putc(m, '\n');
4463 return 0;
4464}
4465
4466const struct seq_operations slabinfo_op = {
4467 .start = s_start,
4468 .next = s_next,
4469 .stop = s_stop,
4470 .show = s_show,
4471};
4472
Linus Torvalds158a9622008-01-02 13:04:48 -08004473#endif /* CONFIG_SLABINFO */