blob: b1635f929b87f58f6e1485db577f99f0ed40e733 [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>
23
24/*
25 * Lock order:
26 * 1. slab_lock(page)
27 * 2. slab->list_lock
28 *
29 * The slab_lock protects operations on the object of a particular
30 * slab and its metadata in the page struct. If the slab lock
31 * has been taken then no allocations nor frees can be performed
32 * on the objects in the slab nor can the slab be added or removed
33 * from the partial or full lists since this would mean modifying
34 * the page_struct of the slab.
35 *
36 * The list_lock protects the partial and full list on each node and
37 * the partial slab counter. If taken then no new slabs may be added or
38 * removed from the lists nor make the number of partial slabs be modified.
39 * (Note that the total number of slabs is an atomic value that may be
40 * modified without taking the list lock).
41 *
42 * The list_lock is a centralized lock and thus we avoid taking it as
43 * much as possible. As long as SLUB does not have to handle partial
44 * slabs, operations can continue without any centralized lock. F.e.
45 * allocating a long series of objects that fill up slabs does not require
46 * the list lock.
47 *
48 * The lock order is sometimes inverted when we are trying to get a slab
49 * off a list. We take the list_lock and then look for a page on the list
50 * to use. While we do that objects in the slabs may be freed. We can
51 * only operate on the slab if we have also taken the slab_lock. So we use
52 * a slab_trylock() on the slab. If trylock was successful then no frees
53 * can occur anymore and we can use the slab for allocations etc. If the
54 * slab_trylock() does not succeed then frees are in progress in the slab and
55 * we must stay away from it for a while since we may cause a bouncing
56 * cacheline if we try to acquire the lock. So go onto the next slab.
57 * If all pages are busy then we may allocate a new slab instead of reusing
58 * a partial slab. A new slab has noone operating on it and thus there is
59 * no danger of cacheline contention.
60 *
61 * Interrupts are disabled during allocation and deallocation in order to
62 * make the slab allocator safe to use in the context of an irq. In addition
63 * interrupts are disabled to ensure that the processor does not change
64 * while handling per_cpu slabs, due to kernel preemption.
65 *
66 * SLUB assigns one slab for allocation to each processor.
67 * Allocations only occur from these slabs called cpu slabs.
68 *
Christoph Lameter672bba32007-05-09 02:32:39 -070069 * Slabs with free elements are kept on a partial list and during regular
70 * operations no list for full slabs is used. If an object in a full slab is
Christoph Lameter81819f02007-05-06 14:49:36 -070071 * freed then the slab will show up again on the partial lists.
Christoph Lameter672bba32007-05-09 02:32:39 -070072 * We track full slabs for debugging purposes though because otherwise we
73 * cannot scan all objects.
Christoph Lameter81819f02007-05-06 14:49:36 -070074 *
75 * Slabs are freed when they become empty. Teardown and setup is
76 * minimal so we rely on the page allocators per cpu caches for
77 * fast frees and allocs.
78 *
79 * Overloading of page flags that are otherwise used for LRU management.
80 *
Christoph Lameter4b6f0752007-05-16 22:10:53 -070081 * PageActive The slab is frozen and exempt from list processing.
82 * This means that the slab is dedicated to a purpose
83 * such as satisfying allocations for a specific
84 * processor. Objects may be freed in the slab while
85 * it is frozen but slab_free will then skip the usual
86 * list operations. It is up to the processor holding
87 * the slab to integrate the slab into the slab lists
88 * when the slab is no longer needed.
89 *
90 * One use of this flag is to mark slabs that are
91 * used for allocations. Then such a slab becomes a cpu
92 * slab. The cpu slab may be equipped with an additional
Christoph Lameter894b8782007-05-10 03:15:16 -070093 * lockless_freelist that allows lockless access to
94 * free objects in addition to the regular freelist
95 * that requires the slab lock.
Christoph Lameter81819f02007-05-06 14:49:36 -070096 *
97 * PageError Slab requires special handling due to debug
98 * options set. This moves slab handling out of
Christoph Lameter894b8782007-05-10 03:15:16 -070099 * the fast path and disables lockless freelists.
Christoph Lameter81819f02007-05-06 14:49:36 -0700100 */
101
Christoph Lameter5577bd82007-05-16 22:10:56 -0700102#define FROZEN (1 << PG_active)
103
104#ifdef CONFIG_SLUB_DEBUG
105#define SLABDEBUG (1 << PG_error)
106#else
107#define SLABDEBUG 0
108#endif
109
Christoph Lameter4b6f0752007-05-16 22:10:53 -0700110static inline int SlabFrozen(struct page *page)
111{
Christoph Lameter5577bd82007-05-16 22:10:56 -0700112 return page->flags & FROZEN;
Christoph Lameter4b6f0752007-05-16 22:10:53 -0700113}
114
115static inline void SetSlabFrozen(struct page *page)
116{
Christoph Lameter5577bd82007-05-16 22:10:56 -0700117 page->flags |= FROZEN;
Christoph Lameter4b6f0752007-05-16 22:10:53 -0700118}
119
120static inline void ClearSlabFrozen(struct page *page)
121{
Christoph Lameter5577bd82007-05-16 22:10:56 -0700122 page->flags &= ~FROZEN;
Christoph Lameter4b6f0752007-05-16 22:10:53 -0700123}
124
Christoph Lameter35e5d7e2007-05-09 02:32:42 -0700125static inline int SlabDebug(struct page *page)
126{
Christoph Lameter5577bd82007-05-16 22:10:56 -0700127 return page->flags & SLABDEBUG;
Christoph Lameter35e5d7e2007-05-09 02:32:42 -0700128}
129
130static inline void SetSlabDebug(struct page *page)
131{
Christoph Lameter5577bd82007-05-16 22:10:56 -0700132 page->flags |= SLABDEBUG;
Christoph Lameter35e5d7e2007-05-09 02:32:42 -0700133}
134
135static inline void ClearSlabDebug(struct page *page)
136{
Christoph Lameter5577bd82007-05-16 22:10:56 -0700137 page->flags &= ~SLABDEBUG;
Christoph Lameter35e5d7e2007-05-09 02:32:42 -0700138}
139
Christoph Lameter81819f02007-05-06 14:49:36 -0700140/*
141 * Issues still to be resolved:
142 *
143 * - The per cpu array is updated for each new slab and and is a remote
144 * cacheline for most nodes. This could become a bouncing cacheline given
Christoph Lameter672bba32007-05-09 02:32:39 -0700145 * enough frequent updates. There are 16 pointers in a cacheline, so at
146 * max 16 cpus could compete for the cacheline which may be okay.
Christoph Lameter81819f02007-05-06 14:49:36 -0700147 *
148 * - Support PAGE_ALLOC_DEBUG. Should be easy to do.
149 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700150 * - Variable sizing of the per node arrays
151 */
152
153/* Enable to test recovery from slab corruption on boot */
154#undef SLUB_RESILIENCY_TEST
155
156#if PAGE_SHIFT <= 12
157
158/*
159 * Small page size. Make sure that we do not fragment memory
160 */
161#define DEFAULT_MAX_ORDER 1
162#define DEFAULT_MIN_OBJECTS 4
163
164#else
165
166/*
167 * Large page machines are customarily able to handle larger
168 * page orders.
169 */
170#define DEFAULT_MAX_ORDER 2
171#define DEFAULT_MIN_OBJECTS 8
172
173#endif
174
175/*
Christoph Lameter2086d262007-05-06 14:49:46 -0700176 * Mininum number of partial slabs. These will be left on the partial
177 * lists even if they are empty. kmem_cache_shrink may reclaim them.
178 */
Christoph Lametere95eed52007-05-06 14:49:44 -0700179#define MIN_PARTIAL 2
180
Christoph Lameter2086d262007-05-06 14:49:46 -0700181/*
182 * Maximum number of desirable partial slabs.
183 * The existence of more partial slabs makes kmem_cache_shrink
184 * sort the partial list by the number of objects in the.
185 */
186#define MAX_PARTIAL 10
187
Christoph Lameter81819f02007-05-06 14:49:36 -0700188#define DEBUG_DEFAULT_FLAGS (SLAB_DEBUG_FREE | SLAB_RED_ZONE | \
189 SLAB_POISON | SLAB_STORE_USER)
Christoph Lameter672bba32007-05-09 02:32:39 -0700190
Christoph Lameter81819f02007-05-06 14:49:36 -0700191/*
192 * Set of flags that will prevent slab merging
193 */
194#define SLUB_NEVER_MERGE (SLAB_RED_ZONE | SLAB_POISON | SLAB_STORE_USER | \
195 SLAB_TRACE | SLAB_DESTROY_BY_RCU)
196
197#define SLUB_MERGE_SAME (SLAB_DEBUG_FREE | SLAB_RECLAIM_ACCOUNT | \
198 SLAB_CACHE_DMA)
199
200#ifndef ARCH_KMALLOC_MINALIGN
Christoph Lameter47bfdc02007-05-06 14:49:37 -0700201#define ARCH_KMALLOC_MINALIGN __alignof__(unsigned long long)
Christoph Lameter81819f02007-05-06 14:49:36 -0700202#endif
203
204#ifndef ARCH_SLAB_MINALIGN
Christoph Lameter47bfdc02007-05-06 14:49:37 -0700205#define ARCH_SLAB_MINALIGN __alignof__(unsigned long long)
Christoph Lameter81819f02007-05-06 14:49:36 -0700206#endif
207
Christoph Lameter6300ea72007-07-17 04:03:20 -0700208/*
209 * The page->inuse field is 16 bit thus we have this limitation
210 */
211#define MAX_OBJECTS_PER_SLAB 65535
212
Christoph Lameter81819f02007-05-06 14:49:36 -0700213/* Internal SLUB flags */
214#define __OBJECT_POISON 0x80000000 /* Poison object */
215
Christoph Lameter65c02d42007-05-09 02:32:35 -0700216/* Not all arches define cache_line_size */
217#ifndef cache_line_size
218#define cache_line_size() L1_CACHE_BYTES
219#endif
220
Christoph Lameter81819f02007-05-06 14:49:36 -0700221static int kmem_size = sizeof(struct kmem_cache);
222
223#ifdef CONFIG_SMP
224static struct notifier_block slab_notifier;
225#endif
226
227static enum {
228 DOWN, /* No slab functionality available */
229 PARTIAL, /* kmem_cache_open() works but kmalloc does not */
Christoph Lameter672bba32007-05-09 02:32:39 -0700230 UP, /* Everything works but does not show up in sysfs */
Christoph Lameter81819f02007-05-06 14:49:36 -0700231 SYSFS /* Sysfs up */
232} slab_state = DOWN;
233
234/* A list of all slab caches on the system */
235static DECLARE_RWSEM(slub_lock);
Adrian Bunk5af328a2007-07-17 04:03:27 -0700236static LIST_HEAD(slab_caches);
Christoph Lameter81819f02007-05-06 14:49:36 -0700237
Christoph Lameter02cbc872007-05-09 02:32:43 -0700238/*
239 * Tracking user of a slab.
240 */
241struct track {
242 void *addr; /* Called from address */
243 int cpu; /* Was running on cpu */
244 int pid; /* Pid context */
245 unsigned long when; /* When did the operation occur */
246};
247
248enum track_item { TRACK_ALLOC, TRACK_FREE };
249
Christoph Lameter41ecc552007-05-09 02:32:44 -0700250#if defined(CONFIG_SYSFS) && defined(CONFIG_SLUB_DEBUG)
Christoph Lameter81819f02007-05-06 14:49:36 -0700251static int sysfs_slab_add(struct kmem_cache *);
252static int sysfs_slab_alias(struct kmem_cache *, const char *);
253static void sysfs_slab_remove(struct kmem_cache *);
254#else
Christoph Lameter0c710012007-07-17 04:03:24 -0700255static inline int sysfs_slab_add(struct kmem_cache *s) { return 0; }
256static inline int sysfs_slab_alias(struct kmem_cache *s, const char *p)
257 { return 0; }
258static inline void sysfs_slab_remove(struct kmem_cache *s) {}
Christoph Lameter81819f02007-05-06 14:49:36 -0700259#endif
260
261/********************************************************************
262 * Core slab cache functions
263 *******************************************************************/
264
265int slab_is_available(void)
266{
267 return slab_state >= UP;
268}
269
270static inline struct kmem_cache_node *get_node(struct kmem_cache *s, int node)
271{
272#ifdef CONFIG_NUMA
273 return s->node[node];
274#else
275 return &s->local_node;
276#endif
277}
278
Christoph Lameter02cbc872007-05-09 02:32:43 -0700279static inline int check_valid_pointer(struct kmem_cache *s,
280 struct page *page, const void *object)
281{
282 void *base;
283
284 if (!object)
285 return 1;
286
287 base = page_address(page);
288 if (object < base || object >= base + s->objects * s->size ||
289 (object - base) % s->size) {
290 return 0;
291 }
292
293 return 1;
294}
295
Christoph Lameter81819f02007-05-06 14:49:36 -0700296/*
Christoph Lameter7656c722007-05-09 02:32:40 -0700297 * Slow version of get and set free pointer.
298 *
299 * This version requires touching the cache lines of kmem_cache which
300 * we avoid to do in the fast alloc free paths. There we obtain the offset
301 * from the page struct.
302 */
303static inline void *get_freepointer(struct kmem_cache *s, void *object)
304{
305 return *(void **)(object + s->offset);
306}
307
308static inline void set_freepointer(struct kmem_cache *s, void *object, void *fp)
309{
310 *(void **)(object + s->offset) = fp;
311}
312
313/* Loop over all objects in a slab */
314#define for_each_object(__p, __s, __addr) \
315 for (__p = (__addr); __p < (__addr) + (__s)->objects * (__s)->size;\
316 __p += (__s)->size)
317
318/* Scan freelist */
319#define for_each_free_object(__p, __s, __free) \
320 for (__p = (__free); __p; __p = get_freepointer((__s), __p))
321
322/* Determine object index from a given position */
323static inline int slab_index(void *p, struct kmem_cache *s, void *addr)
324{
325 return (p - addr) / s->size;
326}
327
Christoph Lameter41ecc552007-05-09 02:32:44 -0700328#ifdef CONFIG_SLUB_DEBUG
329/*
330 * Debug settings:
331 */
Christoph Lameterf0630ff2007-07-15 23:38:14 -0700332#ifdef CONFIG_SLUB_DEBUG_ON
333static int slub_debug = DEBUG_DEFAULT_FLAGS;
334#else
Christoph Lameter41ecc552007-05-09 02:32:44 -0700335static int slub_debug;
Christoph Lameterf0630ff2007-07-15 23:38:14 -0700336#endif
Christoph Lameter41ecc552007-05-09 02:32:44 -0700337
338static char *slub_debug_slabs;
339
Christoph Lameter7656c722007-05-09 02:32:40 -0700340/*
Christoph Lameter81819f02007-05-06 14:49:36 -0700341 * Object debugging
342 */
343static void print_section(char *text, u8 *addr, unsigned int length)
344{
345 int i, offset;
346 int newline = 1;
347 char ascii[17];
348
349 ascii[16] = 0;
350
351 for (i = 0; i < length; i++) {
352 if (newline) {
Christoph Lameter24922682007-07-17 04:03:18 -0700353 printk(KERN_ERR "%8s 0x%p: ", text, addr + i);
Christoph Lameter81819f02007-05-06 14:49:36 -0700354 newline = 0;
355 }
356 printk(" %02x", addr[i]);
357 offset = i % 16;
358 ascii[offset] = isgraph(addr[i]) ? addr[i] : '.';
359 if (offset == 15) {
360 printk(" %s\n",ascii);
361 newline = 1;
362 }
363 }
364 if (!newline) {
365 i %= 16;
366 while (i < 16) {
367 printk(" ");
368 ascii[i] = ' ';
369 i++;
370 }
371 printk(" %s\n", ascii);
372 }
373}
374
Christoph Lameter81819f02007-05-06 14:49:36 -0700375static struct track *get_track(struct kmem_cache *s, void *object,
376 enum track_item alloc)
377{
378 struct track *p;
379
380 if (s->offset)
381 p = object + s->offset + sizeof(void *);
382 else
383 p = object + s->inuse;
384
385 return p + alloc;
386}
387
388static void set_track(struct kmem_cache *s, void *object,
389 enum track_item alloc, void *addr)
390{
391 struct track *p;
392
393 if (s->offset)
394 p = object + s->offset + sizeof(void *);
395 else
396 p = object + s->inuse;
397
398 p += alloc;
399 if (addr) {
400 p->addr = addr;
401 p->cpu = smp_processor_id();
402 p->pid = current ? current->pid : -1;
403 p->when = jiffies;
404 } else
405 memset(p, 0, sizeof(struct track));
406}
407
Christoph Lameter81819f02007-05-06 14:49:36 -0700408static void init_tracking(struct kmem_cache *s, void *object)
409{
Christoph Lameter24922682007-07-17 04:03:18 -0700410 if (!(s->flags & SLAB_STORE_USER))
411 return;
412
413 set_track(s, object, TRACK_FREE, NULL);
414 set_track(s, object, TRACK_ALLOC, NULL);
Christoph Lameter81819f02007-05-06 14:49:36 -0700415}
416
417static void print_track(const char *s, struct track *t)
418{
419 if (!t->addr)
420 return;
421
Christoph Lameter24922682007-07-17 04:03:18 -0700422 printk(KERN_ERR "INFO: %s in ", s);
Christoph Lameter81819f02007-05-06 14:49:36 -0700423 __print_symbol("%s", (unsigned long)t->addr);
Christoph Lameter24922682007-07-17 04:03:18 -0700424 printk(" age=%lu cpu=%u pid=%d\n", jiffies - t->when, t->cpu, t->pid);
Christoph Lameter81819f02007-05-06 14:49:36 -0700425}
426
Christoph Lameter24922682007-07-17 04:03:18 -0700427static void print_tracking(struct kmem_cache *s, void *object)
428{
429 if (!(s->flags & SLAB_STORE_USER))
430 return;
431
432 print_track("Allocated", get_track(s, object, TRACK_ALLOC));
433 print_track("Freed", get_track(s, object, TRACK_FREE));
434}
435
436static void print_page_info(struct page *page)
437{
438 printk(KERN_ERR "INFO: Slab 0x%p used=%u fp=0x%p flags=0x%04lx\n",
439 page, page->inuse, page->freelist, page->flags);
440
441}
442
443static void slab_bug(struct kmem_cache *s, char *fmt, ...)
444{
445 va_list args;
446 char buf[100];
447
448 va_start(args, fmt);
449 vsnprintf(buf, sizeof(buf), fmt, args);
450 va_end(args);
451 printk(KERN_ERR "========================================"
452 "=====================================\n");
453 printk(KERN_ERR "BUG %s: %s\n", s->name, buf);
454 printk(KERN_ERR "----------------------------------------"
455 "-------------------------------------\n\n");
456}
457
458static void slab_fix(struct kmem_cache *s, char *fmt, ...)
459{
460 va_list args;
461 char buf[100];
462
463 va_start(args, fmt);
464 vsnprintf(buf, sizeof(buf), fmt, args);
465 va_end(args);
466 printk(KERN_ERR "FIX %s: %s\n", s->name, buf);
467}
468
469static void print_trailer(struct kmem_cache *s, struct page *page, u8 *p)
Christoph Lameter81819f02007-05-06 14:49:36 -0700470{
471 unsigned int off; /* Offset of last byte */
Christoph Lameter24922682007-07-17 04:03:18 -0700472 u8 *addr = page_address(page);
473
474 print_tracking(s, p);
475
476 print_page_info(page);
477
478 printk(KERN_ERR "INFO: Object 0x%p @offset=%tu fp=0x%p\n\n",
479 p, p - addr, get_freepointer(s, p));
480
481 if (p > addr + 16)
482 print_section("Bytes b4", p - 16, 16);
483
484 print_section("Object", p, min(s->objsize, 128));
Christoph Lameter81819f02007-05-06 14:49:36 -0700485
486 if (s->flags & SLAB_RED_ZONE)
487 print_section("Redzone", p + s->objsize,
488 s->inuse - s->objsize);
489
Christoph Lameter81819f02007-05-06 14:49:36 -0700490 if (s->offset)
491 off = s->offset + sizeof(void *);
492 else
493 off = s->inuse;
494
Christoph Lameter24922682007-07-17 04:03:18 -0700495 if (s->flags & SLAB_STORE_USER)
Christoph Lameter81819f02007-05-06 14:49:36 -0700496 off += 2 * sizeof(struct track);
Christoph Lameter81819f02007-05-06 14:49:36 -0700497
498 if (off != s->size)
499 /* Beginning of the filler is the free pointer */
Christoph Lameter24922682007-07-17 04:03:18 -0700500 print_section("Padding", p + off, s->size - off);
501
502 dump_stack();
Christoph Lameter81819f02007-05-06 14:49:36 -0700503}
504
505static void object_err(struct kmem_cache *s, struct page *page,
506 u8 *object, char *reason)
507{
Christoph Lameter24922682007-07-17 04:03:18 -0700508 slab_bug(s, reason);
509 print_trailer(s, page, object);
Christoph Lameter81819f02007-05-06 14:49:36 -0700510}
511
Christoph Lameter24922682007-07-17 04:03:18 -0700512static void slab_err(struct kmem_cache *s, struct page *page, char *fmt, ...)
Christoph Lameter81819f02007-05-06 14:49:36 -0700513{
514 va_list args;
515 char buf[100];
516
Christoph Lameter24922682007-07-17 04:03:18 -0700517 va_start(args, fmt);
518 vsnprintf(buf, sizeof(buf), fmt, args);
Christoph Lameter81819f02007-05-06 14:49:36 -0700519 va_end(args);
Christoph Lameter24922682007-07-17 04:03:18 -0700520 slab_bug(s, fmt);
521 print_page_info(page);
Christoph Lameter81819f02007-05-06 14:49:36 -0700522 dump_stack();
523}
524
525static void init_object(struct kmem_cache *s, void *object, int active)
526{
527 u8 *p = object;
528
529 if (s->flags & __OBJECT_POISON) {
530 memset(p, POISON_FREE, s->objsize - 1);
531 p[s->objsize -1] = POISON_END;
532 }
533
534 if (s->flags & SLAB_RED_ZONE)
535 memset(p + s->objsize,
536 active ? SLUB_RED_ACTIVE : SLUB_RED_INACTIVE,
537 s->inuse - s->objsize);
538}
539
Christoph Lameter24922682007-07-17 04:03:18 -0700540static u8 *check_bytes(u8 *start, unsigned int value, unsigned int bytes)
Christoph Lameter81819f02007-05-06 14:49:36 -0700541{
542 while (bytes) {
543 if (*start != (u8)value)
Christoph Lameter24922682007-07-17 04:03:18 -0700544 return start;
Christoph Lameter81819f02007-05-06 14:49:36 -0700545 start++;
546 bytes--;
547 }
Christoph Lameter24922682007-07-17 04:03:18 -0700548 return NULL;
549}
550
551static void restore_bytes(struct kmem_cache *s, char *message, u8 data,
552 void *from, void *to)
553{
554 slab_fix(s, "Restoring 0x%p-0x%p=0x%x\n", from, to - 1, data);
555 memset(from, data, to - from);
556}
557
558static int check_bytes_and_report(struct kmem_cache *s, struct page *page,
559 u8 *object, char *what,
560 u8* start, unsigned int value, unsigned int bytes)
561{
562 u8 *fault;
563 u8 *end;
564
565 fault = check_bytes(start, value, bytes);
566 if (!fault)
567 return 1;
568
569 end = start + bytes;
570 while (end > fault && end[-1] == value)
571 end--;
572
573 slab_bug(s, "%s overwritten", what);
574 printk(KERN_ERR "INFO: 0x%p-0x%p. First byte 0x%x instead of 0x%x\n",
575 fault, end - 1, fault[0], value);
576 print_trailer(s, page, object);
577
578 restore_bytes(s, what, value, fault, end);
579 return 0;
Christoph Lameter81819f02007-05-06 14:49:36 -0700580}
581
Christoph Lameter81819f02007-05-06 14:49:36 -0700582/*
583 * Object layout:
584 *
585 * object address
586 * Bytes of the object to be managed.
587 * If the freepointer may overlay the object then the free
588 * pointer is the first word of the object.
Christoph Lameter672bba32007-05-09 02:32:39 -0700589 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700590 * Poisoning uses 0x6b (POISON_FREE) and the last byte is
591 * 0xa5 (POISON_END)
592 *
593 * object + s->objsize
594 * Padding to reach word boundary. This is also used for Redzoning.
Christoph Lameter672bba32007-05-09 02:32:39 -0700595 * Padding is extended by another word if Redzoning is enabled and
596 * objsize == inuse.
597 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700598 * We fill with 0xbb (RED_INACTIVE) for inactive objects and with
599 * 0xcc (RED_ACTIVE) for objects in use.
600 *
601 * object + s->inuse
Christoph Lameter672bba32007-05-09 02:32:39 -0700602 * Meta data starts here.
603 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700604 * A. Free pointer (if we cannot overwrite object on free)
605 * B. Tracking data for SLAB_STORE_USER
Christoph Lameter672bba32007-05-09 02:32:39 -0700606 * C. Padding to reach required alignment boundary or at mininum
607 * one word if debuggin is on to be able to detect writes
608 * before the word boundary.
609 *
610 * Padding is done using 0x5a (POISON_INUSE)
Christoph Lameter81819f02007-05-06 14:49:36 -0700611 *
612 * object + s->size
Christoph Lameter672bba32007-05-09 02:32:39 -0700613 * Nothing is used beyond s->size.
Christoph Lameter81819f02007-05-06 14:49:36 -0700614 *
Christoph Lameter672bba32007-05-09 02:32:39 -0700615 * If slabcaches are merged then the objsize and inuse boundaries are mostly
616 * ignored. And therefore no slab options that rely on these boundaries
Christoph Lameter81819f02007-05-06 14:49:36 -0700617 * may be used with merged slabcaches.
618 */
619
Christoph Lameter81819f02007-05-06 14:49:36 -0700620static int check_pad_bytes(struct kmem_cache *s, struct page *page, u8 *p)
621{
622 unsigned long off = s->inuse; /* The end of info */
623
624 if (s->offset)
625 /* Freepointer is placed after the object. */
626 off += sizeof(void *);
627
628 if (s->flags & SLAB_STORE_USER)
629 /* We also have user information there */
630 off += 2 * sizeof(struct track);
631
632 if (s->size == off)
633 return 1;
634
Christoph Lameter24922682007-07-17 04:03:18 -0700635 return check_bytes_and_report(s, page, p, "Object padding",
636 p + off, POISON_INUSE, s->size - off);
Christoph Lameter81819f02007-05-06 14:49:36 -0700637}
638
639static int slab_pad_check(struct kmem_cache *s, struct page *page)
640{
Christoph Lameter24922682007-07-17 04:03:18 -0700641 u8 *start;
642 u8 *fault;
643 u8 *end;
644 int length;
645 int remainder;
Christoph Lameter81819f02007-05-06 14:49:36 -0700646
647 if (!(s->flags & SLAB_POISON))
648 return 1;
649
Christoph Lameter24922682007-07-17 04:03:18 -0700650 start = page_address(page);
651 end = start + (PAGE_SIZE << s->order);
Christoph Lameter81819f02007-05-06 14:49:36 -0700652 length = s->objects * s->size;
Christoph Lameter24922682007-07-17 04:03:18 -0700653 remainder = end - (start + length);
Christoph Lameter81819f02007-05-06 14:49:36 -0700654 if (!remainder)
655 return 1;
656
Christoph Lameter24922682007-07-17 04:03:18 -0700657 fault = check_bytes(start + length, POISON_INUSE, remainder);
658 if (!fault)
659 return 1;
660 while (end > fault && end[-1] == POISON_INUSE)
661 end--;
662
663 slab_err(s, page, "Padding overwritten. 0x%p-0x%p", fault, end - 1);
664 print_section("Padding", start, length);
665
666 restore_bytes(s, "slab padding", POISON_INUSE, start, end);
667 return 0;
Christoph Lameter81819f02007-05-06 14:49:36 -0700668}
669
670static int check_object(struct kmem_cache *s, struct page *page,
671 void *object, int active)
672{
673 u8 *p = object;
674 u8 *endobject = object + s->objsize;
675
676 if (s->flags & SLAB_RED_ZONE) {
677 unsigned int red =
678 active ? SLUB_RED_ACTIVE : SLUB_RED_INACTIVE;
679
Christoph Lameter24922682007-07-17 04:03:18 -0700680 if (!check_bytes_and_report(s, page, object, "Redzone",
681 endobject, red, s->inuse - s->objsize))
Christoph Lameter81819f02007-05-06 14:49:36 -0700682 return 0;
Christoph Lameter81819f02007-05-06 14:49:36 -0700683 } else {
Christoph Lameter24922682007-07-17 04:03:18 -0700684 if ((s->flags & SLAB_POISON) && s->objsize < s->inuse)
685 check_bytes_and_report(s, page, p, "Alignment padding", endobject,
686 POISON_INUSE, s->inuse - s->objsize);
Christoph Lameter81819f02007-05-06 14:49:36 -0700687 }
688
689 if (s->flags & SLAB_POISON) {
690 if (!active && (s->flags & __OBJECT_POISON) &&
Christoph Lameter24922682007-07-17 04:03:18 -0700691 (!check_bytes_and_report(s, page, p, "Poison", p,
692 POISON_FREE, s->objsize - 1) ||
693 !check_bytes_and_report(s, page, p, "Poison",
694 p + s->objsize -1, POISON_END, 1)))
Christoph Lameter81819f02007-05-06 14:49:36 -0700695 return 0;
Christoph Lameter81819f02007-05-06 14:49:36 -0700696 /*
697 * check_pad_bytes cleans up on its own.
698 */
699 check_pad_bytes(s, page, p);
700 }
701
702 if (!s->offset && active)
703 /*
704 * Object and freepointer overlap. Cannot check
705 * freepointer while object is allocated.
706 */
707 return 1;
708
709 /* Check free pointer validity */
710 if (!check_valid_pointer(s, page, get_freepointer(s, p))) {
711 object_err(s, page, p, "Freepointer corrupt");
712 /*
713 * No choice but to zap it and thus loose the remainder
714 * of the free objects in this slab. May cause
Christoph Lameter672bba32007-05-09 02:32:39 -0700715 * another error because the object count is now wrong.
Christoph Lameter81819f02007-05-06 14:49:36 -0700716 */
717 set_freepointer(s, p, NULL);
718 return 0;
719 }
720 return 1;
721}
722
723static int check_slab(struct kmem_cache *s, struct page *page)
724{
725 VM_BUG_ON(!irqs_disabled());
726
727 if (!PageSlab(page)) {
Christoph Lameter24922682007-07-17 04:03:18 -0700728 slab_err(s, page, "Not a valid slab page");
Christoph Lameter81819f02007-05-06 14:49:36 -0700729 return 0;
730 }
731 if (page->offset * sizeof(void *) != s->offset) {
Christoph Lameter24922682007-07-17 04:03:18 -0700732 slab_err(s, page, "Corrupted offset %lu",
733 (unsigned long)(page->offset * sizeof(void *)));
Christoph Lameter81819f02007-05-06 14:49:36 -0700734 return 0;
735 }
736 if (page->inuse > s->objects) {
Christoph Lameter24922682007-07-17 04:03:18 -0700737 slab_err(s, page, "inuse %u > max %u",
738 s->name, page->inuse, s->objects);
Christoph Lameter81819f02007-05-06 14:49:36 -0700739 return 0;
740 }
741 /* Slab_pad_check fixes things up after itself */
742 slab_pad_check(s, page);
743 return 1;
744}
745
746/*
Christoph Lameter672bba32007-05-09 02:32:39 -0700747 * Determine if a certain object on a page is on the freelist. Must hold the
748 * slab lock to guarantee that the chains are in a consistent state.
Christoph Lameter81819f02007-05-06 14:49:36 -0700749 */
750static int on_freelist(struct kmem_cache *s, struct page *page, void *search)
751{
752 int nr = 0;
753 void *fp = page->freelist;
754 void *object = NULL;
755
756 while (fp && nr <= s->objects) {
757 if (fp == search)
758 return 1;
759 if (!check_valid_pointer(s, page, fp)) {
760 if (object) {
761 object_err(s, page, object,
762 "Freechain corrupt");
763 set_freepointer(s, object, NULL);
764 break;
765 } else {
Christoph Lameter24922682007-07-17 04:03:18 -0700766 slab_err(s, page, "Freepointer corrupt");
Christoph Lameter81819f02007-05-06 14:49:36 -0700767 page->freelist = NULL;
768 page->inuse = s->objects;
Christoph Lameter24922682007-07-17 04:03:18 -0700769 slab_fix(s, "Freelist cleared");
Christoph Lameter81819f02007-05-06 14:49:36 -0700770 return 0;
771 }
772 break;
773 }
774 object = fp;
775 fp = get_freepointer(s, object);
776 nr++;
777 }
778
779 if (page->inuse != s->objects - nr) {
Christoph Lameter70d71222007-05-06 14:49:47 -0700780 slab_err(s, page, "Wrong object count. Counter is %d but "
Christoph Lameter24922682007-07-17 04:03:18 -0700781 "counted were %d", page->inuse, s->objects - nr);
Christoph Lameter81819f02007-05-06 14:49:36 -0700782 page->inuse = s->objects - nr;
Christoph Lameter24922682007-07-17 04:03:18 -0700783 slab_fix(s, "Object count adjusted.");
Christoph Lameter81819f02007-05-06 14:49:36 -0700784 }
785 return search == NULL;
786}
787
Christoph Lameter3ec09742007-05-16 22:11:00 -0700788static void trace(struct kmem_cache *s, struct page *page, void *object, int alloc)
789{
790 if (s->flags & SLAB_TRACE) {
791 printk(KERN_INFO "TRACE %s %s 0x%p inuse=%d fp=0x%p\n",
792 s->name,
793 alloc ? "alloc" : "free",
794 object, page->inuse,
795 page->freelist);
796
797 if (!alloc)
798 print_section("Object", (void *)object, s->objsize);
799
800 dump_stack();
801 }
802}
803
Christoph Lameter643b1132007-05-06 14:49:42 -0700804/*
Christoph Lameter672bba32007-05-09 02:32:39 -0700805 * Tracking of fully allocated slabs for debugging purposes.
Christoph Lameter643b1132007-05-06 14:49:42 -0700806 */
Christoph Lametere95eed52007-05-06 14:49:44 -0700807static void add_full(struct kmem_cache_node *n, struct page *page)
Christoph Lameter643b1132007-05-06 14:49:42 -0700808{
Christoph Lameter643b1132007-05-06 14:49:42 -0700809 spin_lock(&n->list_lock);
810 list_add(&page->lru, &n->full);
811 spin_unlock(&n->list_lock);
812}
813
814static void remove_full(struct kmem_cache *s, struct page *page)
815{
816 struct kmem_cache_node *n;
817
818 if (!(s->flags & SLAB_STORE_USER))
819 return;
820
821 n = get_node(s, page_to_nid(page));
822
823 spin_lock(&n->list_lock);
824 list_del(&page->lru);
825 spin_unlock(&n->list_lock);
826}
827
Christoph Lameter3ec09742007-05-16 22:11:00 -0700828static void setup_object_debug(struct kmem_cache *s, struct page *page,
829 void *object)
830{
831 if (!(s->flags & (SLAB_STORE_USER|SLAB_RED_ZONE|__OBJECT_POISON)))
832 return;
833
834 init_object(s, object, 0);
835 init_tracking(s, object);
836}
837
838static int alloc_debug_processing(struct kmem_cache *s, struct page *page,
839 void *object, void *addr)
Christoph Lameter81819f02007-05-06 14:49:36 -0700840{
841 if (!check_slab(s, page))
842 goto bad;
843
844 if (object && !on_freelist(s, page, object)) {
Christoph Lameter24922682007-07-17 04:03:18 -0700845 object_err(s, page, object, "Object already allocated");
Christoph Lameter70d71222007-05-06 14:49:47 -0700846 goto bad;
Christoph Lameter81819f02007-05-06 14:49:36 -0700847 }
848
849 if (!check_valid_pointer(s, page, object)) {
850 object_err(s, page, object, "Freelist Pointer check fails");
Christoph Lameter70d71222007-05-06 14:49:47 -0700851 goto bad;
Christoph Lameter81819f02007-05-06 14:49:36 -0700852 }
853
Christoph Lameter3ec09742007-05-16 22:11:00 -0700854 if (object && !check_object(s, page, object, 0))
Christoph Lameter81819f02007-05-06 14:49:36 -0700855 goto bad;
Christoph Lameter81819f02007-05-06 14:49:36 -0700856
Christoph Lameter3ec09742007-05-16 22:11:00 -0700857 /* Success perform special debug activities for allocs */
858 if (s->flags & SLAB_STORE_USER)
859 set_track(s, object, TRACK_ALLOC, addr);
860 trace(s, page, object, 1);
861 init_object(s, object, 1);
Christoph Lameter81819f02007-05-06 14:49:36 -0700862 return 1;
Christoph Lameter3ec09742007-05-16 22:11:00 -0700863
Christoph Lameter81819f02007-05-06 14:49:36 -0700864bad:
865 if (PageSlab(page)) {
866 /*
867 * If this is a slab page then lets do the best we can
868 * to avoid issues in the future. Marking all objects
Christoph Lameter672bba32007-05-09 02:32:39 -0700869 * as used avoids touching the remaining objects.
Christoph Lameter81819f02007-05-06 14:49:36 -0700870 */
Christoph Lameter24922682007-07-17 04:03:18 -0700871 slab_fix(s, "Marking all objects used");
Christoph Lameter81819f02007-05-06 14:49:36 -0700872 page->inuse = s->objects;
873 page->freelist = NULL;
874 /* Fix up fields that may be corrupted */
875 page->offset = s->offset / sizeof(void *);
876 }
877 return 0;
878}
879
Christoph Lameter3ec09742007-05-16 22:11:00 -0700880static int free_debug_processing(struct kmem_cache *s, struct page *page,
881 void *object, void *addr)
Christoph Lameter81819f02007-05-06 14:49:36 -0700882{
883 if (!check_slab(s, page))
884 goto fail;
885
886 if (!check_valid_pointer(s, page, object)) {
Christoph Lameter70d71222007-05-06 14:49:47 -0700887 slab_err(s, page, "Invalid object pointer 0x%p", object);
Christoph Lameter81819f02007-05-06 14:49:36 -0700888 goto fail;
889 }
890
891 if (on_freelist(s, page, object)) {
Christoph Lameter24922682007-07-17 04:03:18 -0700892 object_err(s, page, object, "Object already free");
Christoph Lameter81819f02007-05-06 14:49:36 -0700893 goto fail;
894 }
895
896 if (!check_object(s, page, object, 1))
897 return 0;
898
899 if (unlikely(s != page->slab)) {
900 if (!PageSlab(page))
Christoph Lameter70d71222007-05-06 14:49:47 -0700901 slab_err(s, page, "Attempt to free object(0x%p) "
902 "outside of slab", object);
Christoph Lameter81819f02007-05-06 14:49:36 -0700903 else
Christoph Lameter70d71222007-05-06 14:49:47 -0700904 if (!page->slab) {
Christoph Lameter81819f02007-05-06 14:49:36 -0700905 printk(KERN_ERR
Christoph Lameter70d71222007-05-06 14:49:47 -0700906 "SLUB <none>: no slab for object 0x%p.\n",
Christoph Lameter81819f02007-05-06 14:49:36 -0700907 object);
Christoph Lameter70d71222007-05-06 14:49:47 -0700908 dump_stack();
909 }
Christoph Lameter81819f02007-05-06 14:49:36 -0700910 else
Christoph Lameter24922682007-07-17 04:03:18 -0700911 object_err(s, page, object,
912 "page slab pointer corrupt.");
Christoph Lameter81819f02007-05-06 14:49:36 -0700913 goto fail;
914 }
Christoph Lameter3ec09742007-05-16 22:11:00 -0700915
916 /* Special debug activities for freeing objects */
917 if (!SlabFrozen(page) && !page->freelist)
918 remove_full(s, page);
919 if (s->flags & SLAB_STORE_USER)
920 set_track(s, object, TRACK_FREE, addr);
921 trace(s, page, object, 0);
922 init_object(s, object, 0);
Christoph Lameter81819f02007-05-06 14:49:36 -0700923 return 1;
Christoph Lameter3ec09742007-05-16 22:11:00 -0700924
Christoph Lameter81819f02007-05-06 14:49:36 -0700925fail:
Christoph Lameter24922682007-07-17 04:03:18 -0700926 slab_fix(s, "Object at 0x%p not freed", object);
Christoph Lameter81819f02007-05-06 14:49:36 -0700927 return 0;
928}
929
Christoph Lameter41ecc552007-05-09 02:32:44 -0700930static int __init setup_slub_debug(char *str)
931{
Christoph Lameterf0630ff2007-07-15 23:38:14 -0700932 slub_debug = DEBUG_DEFAULT_FLAGS;
933 if (*str++ != '=' || !*str)
934 /*
935 * No options specified. Switch on full debugging.
936 */
937 goto out;
Christoph Lameter41ecc552007-05-09 02:32:44 -0700938
939 if (*str == ',')
Christoph Lameterf0630ff2007-07-15 23:38:14 -0700940 /*
941 * No options but restriction on slabs. This means full
942 * debugging for slabs matching a pattern.
943 */
944 goto check_slabs;
945
946 slub_debug = 0;
947 if (*str == '-')
948 /*
949 * Switch off all debugging measures.
950 */
951 goto out;
952
953 /*
954 * Determine which debug features should be switched on
955 */
956 for ( ;*str && *str != ','; str++) {
957 switch (tolower(*str)) {
958 case 'f':
959 slub_debug |= SLAB_DEBUG_FREE;
960 break;
961 case 'z':
962 slub_debug |= SLAB_RED_ZONE;
963 break;
964 case 'p':
965 slub_debug |= SLAB_POISON;
966 break;
967 case 'u':
968 slub_debug |= SLAB_STORE_USER;
969 break;
970 case 't':
971 slub_debug |= SLAB_TRACE;
972 break;
973 default:
974 printk(KERN_ERR "slub_debug option '%c' "
975 "unknown. skipped\n",*str);
976 }
977 }
978
979check_slabs:
980 if (*str == ',')
Christoph Lameter41ecc552007-05-09 02:32:44 -0700981 slub_debug_slabs = str + 1;
Christoph Lameterf0630ff2007-07-15 23:38:14 -0700982out:
Christoph Lameter41ecc552007-05-09 02:32:44 -0700983 return 1;
984}
985
986__setup("slub_debug", setup_slub_debug);
987
988static void kmem_cache_open_debug_check(struct kmem_cache *s)
989{
990 /*
991 * The page->offset field is only 16 bit wide. This is an offset
992 * in units of words from the beginning of an object. If the slab
993 * size is bigger then we cannot move the free pointer behind the
994 * object anymore.
995 *
996 * On 32 bit platforms the limit is 256k. On 64bit platforms
997 * the limit is 512k.
998 *
Christoph Lameterc59def92007-05-16 22:10:50 -0700999 * Debugging or ctor may create a need to move the free
Christoph Lameter41ecc552007-05-09 02:32:44 -07001000 * pointer. Fail if this happens.
1001 */
Christoph Lameter33e9e242007-05-23 13:57:56 -07001002 if (s->objsize >= 65535 * sizeof(void *)) {
Christoph Lameter41ecc552007-05-09 02:32:44 -07001003 BUG_ON(s->flags & (SLAB_RED_ZONE | SLAB_POISON |
1004 SLAB_STORE_USER | SLAB_DESTROY_BY_RCU));
Christoph Lameterc59def92007-05-16 22:10:50 -07001005 BUG_ON(s->ctor);
Christoph Lameter41ecc552007-05-09 02:32:44 -07001006 }
1007 else
1008 /*
1009 * Enable debugging if selected on the kernel commandline.
1010 */
1011 if (slub_debug && (!slub_debug_slabs ||
1012 strncmp(slub_debug_slabs, s->name,
1013 strlen(slub_debug_slabs)) == 0))
1014 s->flags |= slub_debug;
1015}
1016#else
Christoph Lameter3ec09742007-05-16 22:11:00 -07001017static inline void setup_object_debug(struct kmem_cache *s,
1018 struct page *page, void *object) {}
Christoph Lameter41ecc552007-05-09 02:32:44 -07001019
Christoph Lameter3ec09742007-05-16 22:11:00 -07001020static inline int alloc_debug_processing(struct kmem_cache *s,
1021 struct page *page, void *object, void *addr) { return 0; }
Christoph Lameter41ecc552007-05-09 02:32:44 -07001022
Christoph Lameter3ec09742007-05-16 22:11:00 -07001023static inline int free_debug_processing(struct kmem_cache *s,
1024 struct page *page, void *object, void *addr) { return 0; }
Christoph Lameter41ecc552007-05-09 02:32:44 -07001025
Christoph Lameter41ecc552007-05-09 02:32:44 -07001026static inline int slab_pad_check(struct kmem_cache *s, struct page *page)
1027 { return 1; }
1028static inline int check_object(struct kmem_cache *s, struct page *page,
1029 void *object, int active) { return 1; }
Christoph Lameter3ec09742007-05-16 22:11:00 -07001030static inline void add_full(struct kmem_cache_node *n, struct page *page) {}
Christoph Lameter41ecc552007-05-09 02:32:44 -07001031static inline void kmem_cache_open_debug_check(struct kmem_cache *s) {}
1032#define slub_debug 0
1033#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07001034/*
1035 * Slab allocation and freeing
1036 */
1037static struct page *allocate_slab(struct kmem_cache *s, gfp_t flags, int node)
1038{
1039 struct page * page;
1040 int pages = 1 << s->order;
1041
1042 if (s->order)
1043 flags |= __GFP_COMP;
1044
1045 if (s->flags & SLAB_CACHE_DMA)
1046 flags |= SLUB_DMA;
1047
1048 if (node == -1)
1049 page = alloc_pages(flags, s->order);
1050 else
1051 page = alloc_pages_node(node, flags, s->order);
1052
1053 if (!page)
1054 return NULL;
1055
1056 mod_zone_page_state(page_zone(page),
1057 (s->flags & SLAB_RECLAIM_ACCOUNT) ?
1058 NR_SLAB_RECLAIMABLE : NR_SLAB_UNRECLAIMABLE,
1059 pages);
1060
1061 return page;
1062}
1063
1064static void setup_object(struct kmem_cache *s, struct page *page,
1065 void *object)
1066{
Christoph Lameter3ec09742007-05-16 22:11:00 -07001067 setup_object_debug(s, page, object);
Christoph Lameter4f104932007-05-06 14:50:17 -07001068 if (unlikely(s->ctor))
Christoph Lametera35afb82007-05-16 22:10:57 -07001069 s->ctor(object, s, 0);
Christoph Lameter81819f02007-05-06 14:49:36 -07001070}
1071
1072static struct page *new_slab(struct kmem_cache *s, gfp_t flags, int node)
1073{
1074 struct page *page;
1075 struct kmem_cache_node *n;
1076 void *start;
1077 void *end;
1078 void *last;
1079 void *p;
1080
Christoph Lameterd07dbea2007-07-17 04:03:23 -07001081 BUG_ON(flags & ~(GFP_DMA | __GFP_ZERO | GFP_LEVEL_MASK));
Christoph Lameter81819f02007-05-06 14:49:36 -07001082
1083 if (flags & __GFP_WAIT)
1084 local_irq_enable();
1085
1086 page = allocate_slab(s, flags & GFP_LEVEL_MASK, node);
1087 if (!page)
1088 goto out;
1089
1090 n = get_node(s, page_to_nid(page));
1091 if (n)
1092 atomic_long_inc(&n->nr_slabs);
1093 page->offset = s->offset / sizeof(void *);
1094 page->slab = s;
1095 page->flags |= 1 << PG_slab;
1096 if (s->flags & (SLAB_DEBUG_FREE | SLAB_RED_ZONE | SLAB_POISON |
1097 SLAB_STORE_USER | SLAB_TRACE))
Christoph Lameter35e5d7e2007-05-09 02:32:42 -07001098 SetSlabDebug(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001099
1100 start = page_address(page);
1101 end = start + s->objects * s->size;
1102
1103 if (unlikely(s->flags & SLAB_POISON))
1104 memset(start, POISON_INUSE, PAGE_SIZE << s->order);
1105
1106 last = start;
Christoph Lameter7656c722007-05-09 02:32:40 -07001107 for_each_object(p, s, start) {
Christoph Lameter81819f02007-05-06 14:49:36 -07001108 setup_object(s, page, last);
1109 set_freepointer(s, last, p);
1110 last = p;
1111 }
1112 setup_object(s, page, last);
1113 set_freepointer(s, last, NULL);
1114
1115 page->freelist = start;
Christoph Lameter894b8782007-05-10 03:15:16 -07001116 page->lockless_freelist = NULL;
Christoph Lameter81819f02007-05-06 14:49:36 -07001117 page->inuse = 0;
1118out:
1119 if (flags & __GFP_WAIT)
1120 local_irq_disable();
1121 return page;
1122}
1123
1124static void __free_slab(struct kmem_cache *s, struct page *page)
1125{
1126 int pages = 1 << s->order;
1127
Christoph Lameterc59def92007-05-16 22:10:50 -07001128 if (unlikely(SlabDebug(page))) {
Christoph Lameter81819f02007-05-06 14:49:36 -07001129 void *p;
1130
1131 slab_pad_check(s, page);
Christoph Lameterc59def92007-05-16 22:10:50 -07001132 for_each_object(p, s, page_address(page))
Christoph Lameter81819f02007-05-06 14:49:36 -07001133 check_object(s, page, p, 0);
Christoph Lameter81819f02007-05-06 14:49:36 -07001134 }
1135
1136 mod_zone_page_state(page_zone(page),
1137 (s->flags & SLAB_RECLAIM_ACCOUNT) ?
1138 NR_SLAB_RECLAIMABLE : NR_SLAB_UNRECLAIMABLE,
1139 - pages);
1140
1141 page->mapping = NULL;
1142 __free_pages(page, s->order);
1143}
1144
1145static void rcu_free_slab(struct rcu_head *h)
1146{
1147 struct page *page;
1148
1149 page = container_of((struct list_head *)h, struct page, lru);
1150 __free_slab(page->slab, page);
1151}
1152
1153static void free_slab(struct kmem_cache *s, struct page *page)
1154{
1155 if (unlikely(s->flags & SLAB_DESTROY_BY_RCU)) {
1156 /*
1157 * RCU free overloads the RCU head over the LRU
1158 */
1159 struct rcu_head *head = (void *)&page->lru;
1160
1161 call_rcu(head, rcu_free_slab);
1162 } else
1163 __free_slab(s, page);
1164}
1165
1166static void discard_slab(struct kmem_cache *s, struct page *page)
1167{
1168 struct kmem_cache_node *n = get_node(s, page_to_nid(page));
1169
1170 atomic_long_dec(&n->nr_slabs);
1171 reset_page_mapcount(page);
Christoph Lameter35e5d7e2007-05-09 02:32:42 -07001172 ClearSlabDebug(page);
1173 __ClearPageSlab(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001174 free_slab(s, page);
1175}
1176
1177/*
1178 * Per slab locking using the pagelock
1179 */
1180static __always_inline void slab_lock(struct page *page)
1181{
1182 bit_spin_lock(PG_locked, &page->flags);
1183}
1184
1185static __always_inline void slab_unlock(struct page *page)
1186{
1187 bit_spin_unlock(PG_locked, &page->flags);
1188}
1189
1190static __always_inline int slab_trylock(struct page *page)
1191{
1192 int rc = 1;
1193
1194 rc = bit_spin_trylock(PG_locked, &page->flags);
1195 return rc;
1196}
1197
1198/*
1199 * Management of partially allocated slabs
1200 */
Christoph Lametere95eed52007-05-06 14:49:44 -07001201static void add_partial_tail(struct kmem_cache_node *n, struct page *page)
Christoph Lameter81819f02007-05-06 14:49:36 -07001202{
Christoph Lametere95eed52007-05-06 14:49:44 -07001203 spin_lock(&n->list_lock);
1204 n->nr_partial++;
1205 list_add_tail(&page->lru, &n->partial);
1206 spin_unlock(&n->list_lock);
1207}
Christoph Lameter81819f02007-05-06 14:49:36 -07001208
Christoph Lametere95eed52007-05-06 14:49:44 -07001209static void add_partial(struct kmem_cache_node *n, struct page *page)
1210{
Christoph Lameter81819f02007-05-06 14:49:36 -07001211 spin_lock(&n->list_lock);
1212 n->nr_partial++;
1213 list_add(&page->lru, &n->partial);
1214 spin_unlock(&n->list_lock);
1215}
1216
1217static void remove_partial(struct kmem_cache *s,
1218 struct page *page)
1219{
1220 struct kmem_cache_node *n = get_node(s, page_to_nid(page));
1221
1222 spin_lock(&n->list_lock);
1223 list_del(&page->lru);
1224 n->nr_partial--;
1225 spin_unlock(&n->list_lock);
1226}
1227
1228/*
Christoph Lameter672bba32007-05-09 02:32:39 -07001229 * Lock slab and remove from the partial list.
Christoph Lameter81819f02007-05-06 14:49:36 -07001230 *
Christoph Lameter672bba32007-05-09 02:32:39 -07001231 * Must hold list_lock.
Christoph Lameter81819f02007-05-06 14:49:36 -07001232 */
Christoph Lameter4b6f0752007-05-16 22:10:53 -07001233static inline int lock_and_freeze_slab(struct kmem_cache_node *n, struct page *page)
Christoph Lameter81819f02007-05-06 14:49:36 -07001234{
1235 if (slab_trylock(page)) {
1236 list_del(&page->lru);
1237 n->nr_partial--;
Christoph Lameter4b6f0752007-05-16 22:10:53 -07001238 SetSlabFrozen(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001239 return 1;
1240 }
1241 return 0;
1242}
1243
1244/*
Christoph Lameter672bba32007-05-09 02:32:39 -07001245 * Try to allocate a partial slab from a specific node.
Christoph Lameter81819f02007-05-06 14:49:36 -07001246 */
1247static struct page *get_partial_node(struct kmem_cache_node *n)
1248{
1249 struct page *page;
1250
1251 /*
1252 * Racy check. If we mistakenly see no partial slabs then we
1253 * just allocate an empty slab. If we mistakenly try to get a
Christoph Lameter672bba32007-05-09 02:32:39 -07001254 * partial slab and there is none available then get_partials()
1255 * will return NULL.
Christoph Lameter81819f02007-05-06 14:49:36 -07001256 */
1257 if (!n || !n->nr_partial)
1258 return NULL;
1259
1260 spin_lock(&n->list_lock);
1261 list_for_each_entry(page, &n->partial, lru)
Christoph Lameter4b6f0752007-05-16 22:10:53 -07001262 if (lock_and_freeze_slab(n, page))
Christoph Lameter81819f02007-05-06 14:49:36 -07001263 goto out;
1264 page = NULL;
1265out:
1266 spin_unlock(&n->list_lock);
1267 return page;
1268}
1269
1270/*
Christoph Lameter672bba32007-05-09 02:32:39 -07001271 * Get a page from somewhere. Search in increasing NUMA distances.
Christoph Lameter81819f02007-05-06 14:49:36 -07001272 */
1273static struct page *get_any_partial(struct kmem_cache *s, gfp_t flags)
1274{
1275#ifdef CONFIG_NUMA
1276 struct zonelist *zonelist;
1277 struct zone **z;
1278 struct page *page;
1279
1280 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07001281 * The defrag ratio allows a configuration of the tradeoffs between
1282 * inter node defragmentation and node local allocations. A lower
1283 * defrag_ratio increases the tendency to do local allocations
1284 * instead of attempting to obtain partial slabs from other nodes.
Christoph Lameter81819f02007-05-06 14:49:36 -07001285 *
Christoph Lameter672bba32007-05-09 02:32:39 -07001286 * If the defrag_ratio is set to 0 then kmalloc() always
1287 * returns node local objects. If the ratio is higher then kmalloc()
1288 * may return off node objects because partial slabs are obtained
1289 * from other nodes and filled up.
Christoph Lameter81819f02007-05-06 14:49:36 -07001290 *
1291 * If /sys/slab/xx/defrag_ratio is set to 100 (which makes
Christoph Lameter672bba32007-05-09 02:32:39 -07001292 * defrag_ratio = 1000) then every (well almost) allocation will
1293 * first attempt to defrag slab caches on other nodes. This means
1294 * scanning over all nodes to look for partial slabs which may be
1295 * expensive if we do it every time we are trying to find a slab
1296 * with available objects.
Christoph Lameter81819f02007-05-06 14:49:36 -07001297 */
1298 if (!s->defrag_ratio || get_cycles() % 1024 > s->defrag_ratio)
1299 return NULL;
1300
1301 zonelist = &NODE_DATA(slab_node(current->mempolicy))
1302 ->node_zonelists[gfp_zone(flags)];
1303 for (z = zonelist->zones; *z; z++) {
1304 struct kmem_cache_node *n;
1305
1306 n = get_node(s, zone_to_nid(*z));
1307
1308 if (n && cpuset_zone_allowed_hardwall(*z, flags) &&
Christoph Lametere95eed52007-05-06 14:49:44 -07001309 n->nr_partial > MIN_PARTIAL) {
Christoph Lameter81819f02007-05-06 14:49:36 -07001310 page = get_partial_node(n);
1311 if (page)
1312 return page;
1313 }
1314 }
1315#endif
1316 return NULL;
1317}
1318
1319/*
1320 * Get a partial page, lock it and return it.
1321 */
1322static struct page *get_partial(struct kmem_cache *s, gfp_t flags, int node)
1323{
1324 struct page *page;
1325 int searchnode = (node == -1) ? numa_node_id() : node;
1326
1327 page = get_partial_node(get_node(s, searchnode));
1328 if (page || (flags & __GFP_THISNODE))
1329 return page;
1330
1331 return get_any_partial(s, flags);
1332}
1333
1334/*
1335 * Move a page back to the lists.
1336 *
1337 * Must be called with the slab lock held.
1338 *
1339 * On exit the slab lock will have been dropped.
1340 */
Christoph Lameter4b6f0752007-05-16 22:10:53 -07001341static void unfreeze_slab(struct kmem_cache *s, struct page *page)
Christoph Lameter81819f02007-05-06 14:49:36 -07001342{
Christoph Lametere95eed52007-05-06 14:49:44 -07001343 struct kmem_cache_node *n = get_node(s, page_to_nid(page));
1344
Christoph Lameter4b6f0752007-05-16 22:10:53 -07001345 ClearSlabFrozen(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001346 if (page->inuse) {
Christoph Lametere95eed52007-05-06 14:49:44 -07001347
Christoph Lameter81819f02007-05-06 14:49:36 -07001348 if (page->freelist)
Christoph Lametere95eed52007-05-06 14:49:44 -07001349 add_partial(n, page);
Christoph Lameter35e5d7e2007-05-09 02:32:42 -07001350 else if (SlabDebug(page) && (s->flags & SLAB_STORE_USER))
Christoph Lametere95eed52007-05-06 14:49:44 -07001351 add_full(n, page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001352 slab_unlock(page);
Christoph Lametere95eed52007-05-06 14:49:44 -07001353
Christoph Lameter81819f02007-05-06 14:49:36 -07001354 } else {
Christoph Lametere95eed52007-05-06 14:49:44 -07001355 if (n->nr_partial < MIN_PARTIAL) {
1356 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07001357 * Adding an empty slab to the partial slabs in order
1358 * to avoid page allocator overhead. This slab needs
1359 * to come after the other slabs with objects in
1360 * order to fill them up. That way the size of the
1361 * partial list stays small. kmem_cache_shrink can
1362 * reclaim empty slabs from the partial list.
Christoph Lametere95eed52007-05-06 14:49:44 -07001363 */
1364 add_partial_tail(n, page);
1365 slab_unlock(page);
1366 } else {
1367 slab_unlock(page);
1368 discard_slab(s, page);
1369 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001370 }
1371}
1372
1373/*
1374 * Remove the cpu slab
1375 */
1376static void deactivate_slab(struct kmem_cache *s, struct page *page, int cpu)
1377{
Christoph Lameter894b8782007-05-10 03:15:16 -07001378 /*
1379 * Merge cpu freelist into freelist. Typically we get here
1380 * because both freelists are empty. So this is unlikely
1381 * to occur.
1382 */
1383 while (unlikely(page->lockless_freelist)) {
1384 void **object;
1385
1386 /* Retrieve object from cpu_freelist */
1387 object = page->lockless_freelist;
1388 page->lockless_freelist = page->lockless_freelist[page->offset];
1389
1390 /* And put onto the regular freelist */
1391 object[page->offset] = page->freelist;
1392 page->freelist = object;
1393 page->inuse--;
1394 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001395 s->cpu_slab[cpu] = NULL;
Christoph Lameter4b6f0752007-05-16 22:10:53 -07001396 unfreeze_slab(s, page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001397}
1398
Christoph Lameter0c710012007-07-17 04:03:24 -07001399static inline void flush_slab(struct kmem_cache *s, struct page *page, int cpu)
Christoph Lameter81819f02007-05-06 14:49:36 -07001400{
1401 slab_lock(page);
1402 deactivate_slab(s, page, cpu);
1403}
1404
1405/*
1406 * Flush cpu slab.
1407 * Called from IPI handler with interrupts disabled.
1408 */
Christoph Lameter0c710012007-07-17 04:03:24 -07001409static inline void __flush_cpu_slab(struct kmem_cache *s, int cpu)
Christoph Lameter81819f02007-05-06 14:49:36 -07001410{
1411 struct page *page = s->cpu_slab[cpu];
1412
1413 if (likely(page))
1414 flush_slab(s, page, cpu);
1415}
1416
1417static void flush_cpu_slab(void *d)
1418{
1419 struct kmem_cache *s = d;
1420 int cpu = smp_processor_id();
1421
1422 __flush_cpu_slab(s, cpu);
1423}
1424
1425static void flush_all(struct kmem_cache *s)
1426{
1427#ifdef CONFIG_SMP
1428 on_each_cpu(flush_cpu_slab, s, 1, 1);
1429#else
1430 unsigned long flags;
1431
1432 local_irq_save(flags);
1433 flush_cpu_slab(s);
1434 local_irq_restore(flags);
1435#endif
1436}
1437
1438/*
Christoph Lameter894b8782007-05-10 03:15:16 -07001439 * Slow path. The lockless freelist is empty or we need to perform
1440 * debugging duties.
Christoph Lameter81819f02007-05-06 14:49:36 -07001441 *
Christoph Lameter894b8782007-05-10 03:15:16 -07001442 * Interrupts are disabled.
Christoph Lameter81819f02007-05-06 14:49:36 -07001443 *
Christoph Lameter894b8782007-05-10 03:15:16 -07001444 * Processing is still very fast if new objects have been freed to the
1445 * regular freelist. In that case we simply take over the regular freelist
1446 * as the lockless freelist and zap the regular freelist.
Christoph Lameter81819f02007-05-06 14:49:36 -07001447 *
Christoph Lameter894b8782007-05-10 03:15:16 -07001448 * If that is not working then we fall back to the partial lists. We take the
1449 * first element of the freelist as the object to allocate now and move the
1450 * rest of the freelist to the lockless freelist.
1451 *
1452 * And if we were unable to get a new slab from the partial slab lists then
1453 * we need to allocate a new slab. This is slowest path since we may sleep.
Christoph Lameter81819f02007-05-06 14:49:36 -07001454 */
Christoph Lameter894b8782007-05-10 03:15:16 -07001455static void *__slab_alloc(struct kmem_cache *s,
1456 gfp_t gfpflags, int node, void *addr, struct page *page)
Christoph Lameter81819f02007-05-06 14:49:36 -07001457{
Christoph Lameter81819f02007-05-06 14:49:36 -07001458 void **object;
Christoph Lameter894b8782007-05-10 03:15:16 -07001459 int cpu = smp_processor_id();
Christoph Lameter81819f02007-05-06 14:49:36 -07001460
Christoph Lameter81819f02007-05-06 14:49:36 -07001461 if (!page)
1462 goto new_slab;
1463
1464 slab_lock(page);
1465 if (unlikely(node != -1 && page_to_nid(page) != node))
1466 goto another_slab;
Christoph Lameter894b8782007-05-10 03:15:16 -07001467load_freelist:
Christoph Lameter81819f02007-05-06 14:49:36 -07001468 object = page->freelist;
1469 if (unlikely(!object))
1470 goto another_slab;
Christoph Lameter35e5d7e2007-05-09 02:32:42 -07001471 if (unlikely(SlabDebug(page)))
Christoph Lameter81819f02007-05-06 14:49:36 -07001472 goto debug;
1473
Christoph Lameter894b8782007-05-10 03:15:16 -07001474 object = page->freelist;
1475 page->lockless_freelist = object[page->offset];
1476 page->inuse = s->objects;
1477 page->freelist = NULL;
Christoph Lameter81819f02007-05-06 14:49:36 -07001478 slab_unlock(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001479 return object;
1480
1481another_slab:
1482 deactivate_slab(s, page, cpu);
1483
1484new_slab:
1485 page = get_partial(s, gfpflags, node);
Christoph Lameter894b8782007-05-10 03:15:16 -07001486 if (page) {
Christoph Lameter81819f02007-05-06 14:49:36 -07001487 s->cpu_slab[cpu] = page;
Christoph Lameter894b8782007-05-10 03:15:16 -07001488 goto load_freelist;
Christoph Lameter81819f02007-05-06 14:49:36 -07001489 }
1490
1491 page = new_slab(s, gfpflags, node);
1492 if (page) {
1493 cpu = smp_processor_id();
1494 if (s->cpu_slab[cpu]) {
1495 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07001496 * Someone else populated the cpu_slab while we
1497 * enabled interrupts, or we have gotten scheduled
1498 * on another cpu. The page may not be on the
1499 * requested node even if __GFP_THISNODE was
1500 * specified. So we need to recheck.
Christoph Lameter81819f02007-05-06 14:49:36 -07001501 */
1502 if (node == -1 ||
1503 page_to_nid(s->cpu_slab[cpu]) == node) {
1504 /*
1505 * Current cpuslab is acceptable and we
1506 * want the current one since its cache hot
1507 */
1508 discard_slab(s, page);
1509 page = s->cpu_slab[cpu];
1510 slab_lock(page);
Christoph Lameter894b8782007-05-10 03:15:16 -07001511 goto load_freelist;
Christoph Lameter81819f02007-05-06 14:49:36 -07001512 }
Christoph Lameter672bba32007-05-09 02:32:39 -07001513 /* New slab does not fit our expectations */
Christoph Lameter81819f02007-05-06 14:49:36 -07001514 flush_slab(s, s->cpu_slab[cpu], cpu);
1515 }
1516 slab_lock(page);
Christoph Lameter4b6f0752007-05-16 22:10:53 -07001517 SetSlabFrozen(page);
1518 s->cpu_slab[cpu] = page;
1519 goto load_freelist;
Christoph Lameter81819f02007-05-06 14:49:36 -07001520 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001521 return NULL;
1522debug:
Christoph Lameter894b8782007-05-10 03:15:16 -07001523 object = page->freelist;
Christoph Lameter3ec09742007-05-16 22:11:00 -07001524 if (!alloc_debug_processing(s, page, object, addr))
Christoph Lameter81819f02007-05-06 14:49:36 -07001525 goto another_slab;
Christoph Lameter894b8782007-05-10 03:15:16 -07001526
1527 page->inuse++;
1528 page->freelist = object[page->offset];
1529 slab_unlock(page);
1530 return object;
1531}
1532
1533/*
1534 * Inlined fastpath so that allocation functions (kmalloc, kmem_cache_alloc)
1535 * have the fastpath folded into their functions. So no function call
1536 * overhead for requests that can be satisfied on the fastpath.
1537 *
1538 * The fastpath works by first checking if the lockless freelist can be used.
1539 * If not then __slab_alloc is called for slow processing.
1540 *
1541 * Otherwise we can simply pick the next object from the lockless free list.
1542 */
1543static void __always_inline *slab_alloc(struct kmem_cache *s,
Christoph Lameterd07dbea2007-07-17 04:03:23 -07001544 gfp_t gfpflags, int node, void *addr, int length)
Christoph Lameter894b8782007-05-10 03:15:16 -07001545{
1546 struct page *page;
1547 void **object;
1548 unsigned long flags;
1549
1550 local_irq_save(flags);
1551 page = s->cpu_slab[smp_processor_id()];
1552 if (unlikely(!page || !page->lockless_freelist ||
1553 (node != -1 && page_to_nid(page) != node)))
1554
1555 object = __slab_alloc(s, gfpflags, node, addr, page);
1556
1557 else {
1558 object = page->lockless_freelist;
1559 page->lockless_freelist = object[page->offset];
1560 }
1561 local_irq_restore(flags);
Christoph Lameterd07dbea2007-07-17 04:03:23 -07001562
1563 if (unlikely((gfpflags & __GFP_ZERO) && object))
1564 memset(object, 0, length);
1565
Christoph Lameter894b8782007-05-10 03:15:16 -07001566 return object;
Christoph Lameter81819f02007-05-06 14:49:36 -07001567}
1568
1569void *kmem_cache_alloc(struct kmem_cache *s, gfp_t gfpflags)
1570{
Christoph Lameterd07dbea2007-07-17 04:03:23 -07001571 return slab_alloc(s, gfpflags, -1,
1572 __builtin_return_address(0), s->objsize);
Christoph Lameter81819f02007-05-06 14:49:36 -07001573}
1574EXPORT_SYMBOL(kmem_cache_alloc);
1575
1576#ifdef CONFIG_NUMA
1577void *kmem_cache_alloc_node(struct kmem_cache *s, gfp_t gfpflags, int node)
1578{
Christoph Lameterd07dbea2007-07-17 04:03:23 -07001579 return slab_alloc(s, gfpflags, node,
1580 __builtin_return_address(0), s->objsize);
Christoph Lameter81819f02007-05-06 14:49:36 -07001581}
1582EXPORT_SYMBOL(kmem_cache_alloc_node);
1583#endif
1584
1585/*
Christoph Lameter894b8782007-05-10 03:15:16 -07001586 * Slow patch handling. This may still be called frequently since objects
1587 * have a longer lifetime than the cpu slabs in most processing loads.
Christoph Lameter81819f02007-05-06 14:49:36 -07001588 *
Christoph Lameter894b8782007-05-10 03:15:16 -07001589 * So we still attempt to reduce cache line usage. Just take the slab
1590 * lock and free the item. If there is no additional partial page
1591 * handling required then we can return immediately.
Christoph Lameter81819f02007-05-06 14:49:36 -07001592 */
Christoph Lameter894b8782007-05-10 03:15:16 -07001593static void __slab_free(struct kmem_cache *s, struct page *page,
Christoph Lameter77c5e2d2007-05-06 14:49:42 -07001594 void *x, void *addr)
Christoph Lameter81819f02007-05-06 14:49:36 -07001595{
1596 void *prior;
1597 void **object = (void *)x;
Christoph Lameter81819f02007-05-06 14:49:36 -07001598
Christoph Lameter81819f02007-05-06 14:49:36 -07001599 slab_lock(page);
1600
Christoph Lameter35e5d7e2007-05-09 02:32:42 -07001601 if (unlikely(SlabDebug(page)))
Christoph Lameter81819f02007-05-06 14:49:36 -07001602 goto debug;
1603checks_ok:
1604 prior = object[page->offset] = page->freelist;
1605 page->freelist = object;
1606 page->inuse--;
1607
Christoph Lameter4b6f0752007-05-16 22:10:53 -07001608 if (unlikely(SlabFrozen(page)))
Christoph Lameter81819f02007-05-06 14:49:36 -07001609 goto out_unlock;
1610
1611 if (unlikely(!page->inuse))
1612 goto slab_empty;
1613
1614 /*
1615 * Objects left in the slab. If it
1616 * was not on the partial list before
1617 * then add it.
1618 */
1619 if (unlikely(!prior))
Christoph Lametere95eed52007-05-06 14:49:44 -07001620 add_partial(get_node(s, page_to_nid(page)), page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001621
1622out_unlock:
1623 slab_unlock(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001624 return;
1625
1626slab_empty:
1627 if (prior)
1628 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07001629 * Slab still on the partial list.
Christoph Lameter81819f02007-05-06 14:49:36 -07001630 */
1631 remove_partial(s, page);
1632
1633 slab_unlock(page);
1634 discard_slab(s, page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001635 return;
1636
1637debug:
Christoph Lameter3ec09742007-05-16 22:11:00 -07001638 if (!free_debug_processing(s, page, x, addr))
Christoph Lameter77c5e2d2007-05-06 14:49:42 -07001639 goto out_unlock;
Christoph Lameter77c5e2d2007-05-06 14:49:42 -07001640 goto checks_ok;
Christoph Lameter81819f02007-05-06 14:49:36 -07001641}
1642
Christoph Lameter894b8782007-05-10 03:15:16 -07001643/*
1644 * Fastpath with forced inlining to produce a kfree and kmem_cache_free that
1645 * can perform fastpath freeing without additional function calls.
1646 *
1647 * The fastpath is only possible if we are freeing to the current cpu slab
1648 * of this processor. This typically the case if we have just allocated
1649 * the item before.
1650 *
1651 * If fastpath is not possible then fall back to __slab_free where we deal
1652 * with all sorts of special processing.
1653 */
1654static void __always_inline slab_free(struct kmem_cache *s,
1655 struct page *page, void *x, void *addr)
1656{
1657 void **object = (void *)x;
1658 unsigned long flags;
1659
1660 local_irq_save(flags);
1661 if (likely(page == s->cpu_slab[smp_processor_id()] &&
1662 !SlabDebug(page))) {
1663 object[page->offset] = page->lockless_freelist;
1664 page->lockless_freelist = object;
1665 } else
1666 __slab_free(s, page, x, addr);
1667
1668 local_irq_restore(flags);
1669}
1670
Christoph Lameter81819f02007-05-06 14:49:36 -07001671void kmem_cache_free(struct kmem_cache *s, void *x)
1672{
Christoph Lameter77c5e2d2007-05-06 14:49:42 -07001673 struct page *page;
Christoph Lameter81819f02007-05-06 14:49:36 -07001674
Christoph Lameterb49af682007-05-06 14:49:41 -07001675 page = virt_to_head_page(x);
Christoph Lameter81819f02007-05-06 14:49:36 -07001676
Christoph Lameter77c5e2d2007-05-06 14:49:42 -07001677 slab_free(s, page, x, __builtin_return_address(0));
Christoph Lameter81819f02007-05-06 14:49:36 -07001678}
1679EXPORT_SYMBOL(kmem_cache_free);
1680
1681/* Figure out on which slab object the object resides */
1682static struct page *get_object_page(const void *x)
1683{
Christoph Lameterb49af682007-05-06 14:49:41 -07001684 struct page *page = virt_to_head_page(x);
Christoph Lameter81819f02007-05-06 14:49:36 -07001685
1686 if (!PageSlab(page))
1687 return NULL;
1688
1689 return page;
1690}
1691
1692/*
Christoph Lameter672bba32007-05-09 02:32:39 -07001693 * Object placement in a slab is made very easy because we always start at
1694 * offset 0. If we tune the size of the object to the alignment then we can
1695 * get the required alignment by putting one properly sized object after
1696 * another.
Christoph Lameter81819f02007-05-06 14:49:36 -07001697 *
1698 * Notice that the allocation order determines the sizes of the per cpu
1699 * caches. Each processor has always one slab available for allocations.
1700 * Increasing the allocation order reduces the number of times that slabs
Christoph Lameter672bba32007-05-09 02:32:39 -07001701 * must be moved on and off the partial lists and is therefore a factor in
Christoph Lameter81819f02007-05-06 14:49:36 -07001702 * locking overhead.
Christoph Lameter81819f02007-05-06 14:49:36 -07001703 */
1704
1705/*
1706 * Mininum / Maximum order of slab pages. This influences locking overhead
1707 * and slab fragmentation. A higher order reduces the number of partial slabs
1708 * and increases the number of allocations possible without having to
1709 * take the list_lock.
1710 */
1711static int slub_min_order;
1712static int slub_max_order = DEFAULT_MAX_ORDER;
Christoph Lameter81819f02007-05-06 14:49:36 -07001713static int slub_min_objects = DEFAULT_MIN_OBJECTS;
1714
1715/*
1716 * Merge control. If this is set then no merging of slab caches will occur.
Christoph Lameter672bba32007-05-09 02:32:39 -07001717 * (Could be removed. This was introduced to pacify the merge skeptics.)
Christoph Lameter81819f02007-05-06 14:49:36 -07001718 */
1719static int slub_nomerge;
1720
1721/*
Christoph Lameter81819f02007-05-06 14:49:36 -07001722 * Calculate the order of allocation given an slab object size.
1723 *
Christoph Lameter672bba32007-05-09 02:32:39 -07001724 * The order of allocation has significant impact on performance and other
1725 * system components. Generally order 0 allocations should be preferred since
1726 * order 0 does not cause fragmentation in the page allocator. Larger objects
1727 * be problematic to put into order 0 slabs because there may be too much
1728 * unused space left. We go to a higher order if more than 1/8th of the slab
1729 * would be wasted.
Christoph Lameter81819f02007-05-06 14:49:36 -07001730 *
Christoph Lameter672bba32007-05-09 02:32:39 -07001731 * In order to reach satisfactory performance we must ensure that a minimum
1732 * number of objects is in one slab. Otherwise we may generate too much
1733 * activity on the partial lists which requires taking the list_lock. This is
1734 * less a concern for large slabs though which are rarely used.
Christoph Lameter81819f02007-05-06 14:49:36 -07001735 *
Christoph Lameter672bba32007-05-09 02:32:39 -07001736 * slub_max_order specifies the order where we begin to stop considering the
1737 * number of objects in a slab as critical. If we reach slub_max_order then
1738 * we try to keep the page order as low as possible. So we accept more waste
1739 * of space in favor of a small page order.
1740 *
1741 * Higher order allocations also allow the placement of more objects in a
1742 * slab and thereby reduce object handling overhead. If the user has
1743 * requested a higher mininum order then we start with that one instead of
1744 * the smallest order which will fit the object.
Christoph Lameter81819f02007-05-06 14:49:36 -07001745 */
Christoph Lameter5e6d4442007-05-09 02:32:46 -07001746static inline int slab_order(int size, int min_objects,
1747 int max_order, int fract_leftover)
Christoph Lameter81819f02007-05-06 14:49:36 -07001748{
1749 int order;
1750 int rem;
Christoph Lameter6300ea72007-07-17 04:03:20 -07001751 int min_order = slub_min_order;
Christoph Lameter81819f02007-05-06 14:49:36 -07001752
Christoph Lameter6300ea72007-07-17 04:03:20 -07001753 /*
1754 * If we would create too many object per slab then reduce
1755 * the slab order even if it goes below slub_min_order.
1756 */
1757 while (min_order > 0 &&
1758 (PAGE_SIZE << min_order) >= MAX_OBJECTS_PER_SLAB * size)
1759 min_order--;
1760
1761 for (order = max(min_order,
Christoph Lameter5e6d4442007-05-09 02:32:46 -07001762 fls(min_objects * size - 1) - PAGE_SHIFT);
1763 order <= max_order; order++) {
1764
Christoph Lameter81819f02007-05-06 14:49:36 -07001765 unsigned long slab_size = PAGE_SIZE << order;
1766
Christoph Lameter5e6d4442007-05-09 02:32:46 -07001767 if (slab_size < min_objects * size)
Christoph Lameter81819f02007-05-06 14:49:36 -07001768 continue;
1769
Christoph Lameter81819f02007-05-06 14:49:36 -07001770 rem = slab_size % size;
1771
Christoph Lameter5e6d4442007-05-09 02:32:46 -07001772 if (rem <= slab_size / fract_leftover)
Christoph Lameter81819f02007-05-06 14:49:36 -07001773 break;
1774
Christoph Lameter6300ea72007-07-17 04:03:20 -07001775 /* If the next size is too high then exit now */
1776 if (slab_size * 2 >= MAX_OBJECTS_PER_SLAB * size)
1777 break;
Christoph Lameter81819f02007-05-06 14:49:36 -07001778 }
Christoph Lameter672bba32007-05-09 02:32:39 -07001779
Christoph Lameter81819f02007-05-06 14:49:36 -07001780 return order;
1781}
1782
Christoph Lameter5e6d4442007-05-09 02:32:46 -07001783static inline int calculate_order(int size)
1784{
1785 int order;
1786 int min_objects;
1787 int fraction;
1788
1789 /*
1790 * Attempt to find best configuration for a slab. This
1791 * works by first attempting to generate a layout with
1792 * the best configuration and backing off gradually.
1793 *
1794 * First we reduce the acceptable waste in a slab. Then
1795 * we reduce the minimum objects required in a slab.
1796 */
1797 min_objects = slub_min_objects;
1798 while (min_objects > 1) {
1799 fraction = 8;
1800 while (fraction >= 4) {
1801 order = slab_order(size, min_objects,
1802 slub_max_order, fraction);
1803 if (order <= slub_max_order)
1804 return order;
1805 fraction /= 2;
1806 }
1807 min_objects /= 2;
1808 }
1809
1810 /*
1811 * We were unable to place multiple objects in a slab. Now
1812 * lets see if we can place a single object there.
1813 */
1814 order = slab_order(size, 1, slub_max_order, 1);
1815 if (order <= slub_max_order)
1816 return order;
1817
1818 /*
1819 * Doh this slab cannot be placed using slub_max_order.
1820 */
1821 order = slab_order(size, 1, MAX_ORDER, 1);
1822 if (order <= MAX_ORDER)
1823 return order;
1824 return -ENOSYS;
1825}
1826
Christoph Lameter81819f02007-05-06 14:49:36 -07001827/*
Christoph Lameter672bba32007-05-09 02:32:39 -07001828 * Figure out what the alignment of the objects will be.
Christoph Lameter81819f02007-05-06 14:49:36 -07001829 */
1830static unsigned long calculate_alignment(unsigned long flags,
1831 unsigned long align, unsigned long size)
1832{
1833 /*
1834 * If the user wants hardware cache aligned objects then
1835 * follow that suggestion if the object is sufficiently
1836 * large.
1837 *
1838 * The hardware cache alignment cannot override the
1839 * specified alignment though. If that is greater
1840 * then use it.
1841 */
Christoph Lameter5af60832007-05-06 14:49:56 -07001842 if ((flags & SLAB_HWCACHE_ALIGN) &&
Christoph Lameter65c02d42007-05-09 02:32:35 -07001843 size > cache_line_size() / 2)
1844 return max_t(unsigned long, align, cache_line_size());
Christoph Lameter81819f02007-05-06 14:49:36 -07001845
1846 if (align < ARCH_SLAB_MINALIGN)
1847 return ARCH_SLAB_MINALIGN;
1848
1849 return ALIGN(align, sizeof(void *));
1850}
1851
1852static void init_kmem_cache_node(struct kmem_cache_node *n)
1853{
1854 n->nr_partial = 0;
1855 atomic_long_set(&n->nr_slabs, 0);
1856 spin_lock_init(&n->list_lock);
1857 INIT_LIST_HEAD(&n->partial);
Christoph Lameter643b1132007-05-06 14:49:42 -07001858 INIT_LIST_HEAD(&n->full);
Christoph Lameter81819f02007-05-06 14:49:36 -07001859}
1860
1861#ifdef CONFIG_NUMA
1862/*
1863 * No kmalloc_node yet so do it by hand. We know that this is the first
1864 * slab on the node for this slabcache. There are no concurrent accesses
1865 * possible.
1866 *
1867 * Note that this function only works on the kmalloc_node_cache
1868 * when allocating for the kmalloc_node_cache.
1869 */
1870static struct kmem_cache_node * __init early_kmem_cache_node_alloc(gfp_t gfpflags,
1871 int node)
1872{
1873 struct page *page;
1874 struct kmem_cache_node *n;
1875
1876 BUG_ON(kmalloc_caches->size < sizeof(struct kmem_cache_node));
1877
1878 page = new_slab(kmalloc_caches, gfpflags | GFP_THISNODE, node);
Christoph Lameter81819f02007-05-06 14:49:36 -07001879
1880 BUG_ON(!page);
1881 n = page->freelist;
1882 BUG_ON(!n);
1883 page->freelist = get_freepointer(kmalloc_caches, n);
1884 page->inuse++;
1885 kmalloc_caches->node[node] = n;
Christoph Lameterd45f39c2007-07-17 04:03:21 -07001886 init_object(kmalloc_caches, n, 1);
1887 init_tracking(kmalloc_caches, n);
Christoph Lameter81819f02007-05-06 14:49:36 -07001888 init_kmem_cache_node(n);
1889 atomic_long_inc(&n->nr_slabs);
Christoph Lametere95eed52007-05-06 14:49:44 -07001890 add_partial(n, page);
Christoph Lameterdbc55fa2007-07-03 09:31:04 -07001891
1892 /*
1893 * new_slab() disables interupts. If we do not reenable interrupts here
1894 * then bootup would continue with interrupts disabled.
1895 */
1896 local_irq_enable();
Christoph Lameter81819f02007-05-06 14:49:36 -07001897 return n;
1898}
1899
1900static void free_kmem_cache_nodes(struct kmem_cache *s)
1901{
1902 int node;
1903
1904 for_each_online_node(node) {
1905 struct kmem_cache_node *n = s->node[node];
1906 if (n && n != &s->local_node)
1907 kmem_cache_free(kmalloc_caches, n);
1908 s->node[node] = NULL;
1909 }
1910}
1911
1912static int init_kmem_cache_nodes(struct kmem_cache *s, gfp_t gfpflags)
1913{
1914 int node;
1915 int local_node;
1916
1917 if (slab_state >= UP)
1918 local_node = page_to_nid(virt_to_page(s));
1919 else
1920 local_node = 0;
1921
1922 for_each_online_node(node) {
1923 struct kmem_cache_node *n;
1924
1925 if (local_node == node)
1926 n = &s->local_node;
1927 else {
1928 if (slab_state == DOWN) {
1929 n = early_kmem_cache_node_alloc(gfpflags,
1930 node);
1931 continue;
1932 }
1933 n = kmem_cache_alloc_node(kmalloc_caches,
1934 gfpflags, node);
1935
1936 if (!n) {
1937 free_kmem_cache_nodes(s);
1938 return 0;
1939 }
1940
1941 }
1942 s->node[node] = n;
1943 init_kmem_cache_node(n);
1944 }
1945 return 1;
1946}
1947#else
1948static void free_kmem_cache_nodes(struct kmem_cache *s)
1949{
1950}
1951
1952static int init_kmem_cache_nodes(struct kmem_cache *s, gfp_t gfpflags)
1953{
1954 init_kmem_cache_node(&s->local_node);
1955 return 1;
1956}
1957#endif
1958
1959/*
1960 * calculate_sizes() determines the order and the distribution of data within
1961 * a slab object.
1962 */
1963static int calculate_sizes(struct kmem_cache *s)
1964{
1965 unsigned long flags = s->flags;
1966 unsigned long size = s->objsize;
1967 unsigned long align = s->align;
1968
1969 /*
1970 * Determine if we can poison the object itself. If the user of
1971 * the slab may touch the object after free or before allocation
1972 * then we should never poison the object itself.
1973 */
1974 if ((flags & SLAB_POISON) && !(flags & SLAB_DESTROY_BY_RCU) &&
Christoph Lameterc59def92007-05-16 22:10:50 -07001975 !s->ctor)
Christoph Lameter81819f02007-05-06 14:49:36 -07001976 s->flags |= __OBJECT_POISON;
1977 else
1978 s->flags &= ~__OBJECT_POISON;
1979
1980 /*
1981 * Round up object size to the next word boundary. We can only
1982 * place the free pointer at word boundaries and this determines
1983 * the possible location of the free pointer.
1984 */
1985 size = ALIGN(size, sizeof(void *));
1986
Christoph Lameter41ecc552007-05-09 02:32:44 -07001987#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter81819f02007-05-06 14:49:36 -07001988 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07001989 * If we are Redzoning then check if there is some space between the
Christoph Lameter81819f02007-05-06 14:49:36 -07001990 * end of the object and the free pointer. If not then add an
Christoph Lameter672bba32007-05-09 02:32:39 -07001991 * additional word to have some bytes to store Redzone information.
Christoph Lameter81819f02007-05-06 14:49:36 -07001992 */
1993 if ((flags & SLAB_RED_ZONE) && size == s->objsize)
1994 size += sizeof(void *);
Christoph Lameter41ecc552007-05-09 02:32:44 -07001995#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07001996
1997 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07001998 * With that we have determined the number of bytes in actual use
1999 * by the object. This is the potential offset to the free pointer.
Christoph Lameter81819f02007-05-06 14:49:36 -07002000 */
2001 s->inuse = size;
2002
2003 if (((flags & (SLAB_DESTROY_BY_RCU | SLAB_POISON)) ||
Christoph Lameterc59def92007-05-16 22:10:50 -07002004 s->ctor)) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002005 /*
2006 * Relocate free pointer after the object if it is not
2007 * permitted to overwrite the first word of the object on
2008 * kmem_cache_free.
2009 *
2010 * This is the case if we do RCU, have a constructor or
2011 * destructor or are poisoning the objects.
2012 */
2013 s->offset = size;
2014 size += sizeof(void *);
2015 }
2016
Christoph Lameterc12b3c62007-05-23 13:57:31 -07002017#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter81819f02007-05-06 14:49:36 -07002018 if (flags & SLAB_STORE_USER)
2019 /*
2020 * Need to store information about allocs and frees after
2021 * the object.
2022 */
2023 size += 2 * sizeof(struct track);
2024
Christoph Lameterbe7b3fb2007-05-09 02:32:36 -07002025 if (flags & SLAB_RED_ZONE)
Christoph Lameter81819f02007-05-06 14:49:36 -07002026 /*
2027 * Add some empty padding so that we can catch
2028 * overwrites from earlier objects rather than let
2029 * tracking information or the free pointer be
2030 * corrupted if an user writes before the start
2031 * of the object.
2032 */
2033 size += sizeof(void *);
Christoph Lameter41ecc552007-05-09 02:32:44 -07002034#endif
Christoph Lameter672bba32007-05-09 02:32:39 -07002035
Christoph Lameter81819f02007-05-06 14:49:36 -07002036 /*
2037 * Determine the alignment based on various parameters that the
Christoph Lameter65c02d42007-05-09 02:32:35 -07002038 * user specified and the dynamic determination of cache line size
2039 * on bootup.
Christoph Lameter81819f02007-05-06 14:49:36 -07002040 */
2041 align = calculate_alignment(flags, align, s->objsize);
2042
2043 /*
2044 * SLUB stores one object immediately after another beginning from
2045 * offset 0. In order to align the objects we have to simply size
2046 * each object to conform to the alignment.
2047 */
2048 size = ALIGN(size, align);
2049 s->size = size;
2050
2051 s->order = calculate_order(size);
2052 if (s->order < 0)
2053 return 0;
2054
2055 /*
2056 * Determine the number of objects per slab
2057 */
2058 s->objects = (PAGE_SIZE << s->order) / size;
2059
2060 /*
2061 * Verify that the number of objects is within permitted limits.
2062 * The page->inuse field is only 16 bit wide! So we cannot have
2063 * more than 64k objects per slab.
2064 */
Christoph Lameter6300ea72007-07-17 04:03:20 -07002065 if (!s->objects || s->objects > MAX_OBJECTS_PER_SLAB)
Christoph Lameter81819f02007-05-06 14:49:36 -07002066 return 0;
2067 return 1;
2068
2069}
2070
Christoph Lameter81819f02007-05-06 14:49:36 -07002071static int kmem_cache_open(struct kmem_cache *s, gfp_t gfpflags,
2072 const char *name, size_t size,
2073 size_t align, unsigned long flags,
Christoph Lameterc59def92007-05-16 22:10:50 -07002074 void (*ctor)(void *, struct kmem_cache *, unsigned long))
Christoph Lameter81819f02007-05-06 14:49:36 -07002075{
2076 memset(s, 0, kmem_size);
2077 s->name = name;
2078 s->ctor = ctor;
Christoph Lameter81819f02007-05-06 14:49:36 -07002079 s->objsize = size;
2080 s->flags = flags;
2081 s->align = align;
Christoph Lameter41ecc552007-05-09 02:32:44 -07002082 kmem_cache_open_debug_check(s);
Christoph Lameter81819f02007-05-06 14:49:36 -07002083
2084 if (!calculate_sizes(s))
2085 goto error;
2086
2087 s->refcount = 1;
2088#ifdef CONFIG_NUMA
2089 s->defrag_ratio = 100;
2090#endif
2091
2092 if (init_kmem_cache_nodes(s, gfpflags & ~SLUB_DMA))
2093 return 1;
2094error:
2095 if (flags & SLAB_PANIC)
2096 panic("Cannot create slab %s size=%lu realsize=%u "
2097 "order=%u offset=%u flags=%lx\n",
2098 s->name, (unsigned long)size, s->size, s->order,
2099 s->offset, flags);
2100 return 0;
2101}
Christoph Lameter81819f02007-05-06 14:49:36 -07002102
2103/*
2104 * Check if a given pointer is valid
2105 */
2106int kmem_ptr_validate(struct kmem_cache *s, const void *object)
2107{
2108 struct page * page;
Christoph Lameter81819f02007-05-06 14:49:36 -07002109
2110 page = get_object_page(object);
2111
2112 if (!page || s != page->slab)
2113 /* No slab or wrong slab */
2114 return 0;
2115
Christoph Lameterabcd08a2007-05-09 02:32:37 -07002116 if (!check_valid_pointer(s, page, object))
Christoph Lameter81819f02007-05-06 14:49:36 -07002117 return 0;
2118
2119 /*
2120 * We could also check if the object is on the slabs freelist.
2121 * But this would be too expensive and it seems that the main
2122 * purpose of kmem_ptr_valid is to check if the object belongs
2123 * to a certain slab.
2124 */
2125 return 1;
2126}
2127EXPORT_SYMBOL(kmem_ptr_validate);
2128
2129/*
2130 * Determine the size of a slab object
2131 */
2132unsigned int kmem_cache_size(struct kmem_cache *s)
2133{
2134 return s->objsize;
2135}
2136EXPORT_SYMBOL(kmem_cache_size);
2137
2138const char *kmem_cache_name(struct kmem_cache *s)
2139{
2140 return s->name;
2141}
2142EXPORT_SYMBOL(kmem_cache_name);
2143
2144/*
Christoph Lameter672bba32007-05-09 02:32:39 -07002145 * Attempt to free all slabs on a node. Return the number of slabs we
2146 * were unable to free.
Christoph Lameter81819f02007-05-06 14:49:36 -07002147 */
2148static int free_list(struct kmem_cache *s, struct kmem_cache_node *n,
2149 struct list_head *list)
2150{
2151 int slabs_inuse = 0;
2152 unsigned long flags;
2153 struct page *page, *h;
2154
2155 spin_lock_irqsave(&n->list_lock, flags);
2156 list_for_each_entry_safe(page, h, list, lru)
2157 if (!page->inuse) {
2158 list_del(&page->lru);
2159 discard_slab(s, page);
2160 } else
2161 slabs_inuse++;
2162 spin_unlock_irqrestore(&n->list_lock, flags);
2163 return slabs_inuse;
2164}
2165
2166/*
Christoph Lameter672bba32007-05-09 02:32:39 -07002167 * Release all resources used by a slab cache.
Christoph Lameter81819f02007-05-06 14:49:36 -07002168 */
Christoph Lameter0c710012007-07-17 04:03:24 -07002169static inline int kmem_cache_close(struct kmem_cache *s)
Christoph Lameter81819f02007-05-06 14:49:36 -07002170{
2171 int node;
2172
2173 flush_all(s);
2174
2175 /* Attempt to free all objects */
2176 for_each_online_node(node) {
2177 struct kmem_cache_node *n = get_node(s, node);
2178
Christoph Lameter2086d262007-05-06 14:49:46 -07002179 n->nr_partial -= free_list(s, n, &n->partial);
Christoph Lameter81819f02007-05-06 14:49:36 -07002180 if (atomic_long_read(&n->nr_slabs))
2181 return 1;
2182 }
2183 free_kmem_cache_nodes(s);
2184 return 0;
2185}
2186
2187/*
2188 * Close a cache and release the kmem_cache structure
2189 * (must be used for caches created using kmem_cache_create)
2190 */
2191void kmem_cache_destroy(struct kmem_cache *s)
2192{
2193 down_write(&slub_lock);
2194 s->refcount--;
2195 if (!s->refcount) {
2196 list_del(&s->list);
2197 if (kmem_cache_close(s))
2198 WARN_ON(1);
2199 sysfs_slab_remove(s);
2200 kfree(s);
2201 }
2202 up_write(&slub_lock);
2203}
2204EXPORT_SYMBOL(kmem_cache_destroy);
2205
2206/********************************************************************
2207 * Kmalloc subsystem
2208 *******************************************************************/
2209
2210struct kmem_cache kmalloc_caches[KMALLOC_SHIFT_HIGH + 1] __cacheline_aligned;
2211EXPORT_SYMBOL(kmalloc_caches);
2212
2213#ifdef CONFIG_ZONE_DMA
2214static struct kmem_cache *kmalloc_caches_dma[KMALLOC_SHIFT_HIGH + 1];
2215#endif
2216
2217static int __init setup_slub_min_order(char *str)
2218{
2219 get_option (&str, &slub_min_order);
2220
2221 return 1;
2222}
2223
2224__setup("slub_min_order=", setup_slub_min_order);
2225
2226static int __init setup_slub_max_order(char *str)
2227{
2228 get_option (&str, &slub_max_order);
2229
2230 return 1;
2231}
2232
2233__setup("slub_max_order=", setup_slub_max_order);
2234
2235static int __init setup_slub_min_objects(char *str)
2236{
2237 get_option (&str, &slub_min_objects);
2238
2239 return 1;
2240}
2241
2242__setup("slub_min_objects=", setup_slub_min_objects);
2243
2244static int __init setup_slub_nomerge(char *str)
2245{
2246 slub_nomerge = 1;
2247 return 1;
2248}
2249
2250__setup("slub_nomerge", setup_slub_nomerge);
2251
Christoph Lameter81819f02007-05-06 14:49:36 -07002252static struct kmem_cache *create_kmalloc_cache(struct kmem_cache *s,
2253 const char *name, int size, gfp_t gfp_flags)
2254{
2255 unsigned int flags = 0;
2256
2257 if (gfp_flags & SLUB_DMA)
2258 flags = SLAB_CACHE_DMA;
2259
2260 down_write(&slub_lock);
2261 if (!kmem_cache_open(s, gfp_flags, name, size, ARCH_KMALLOC_MINALIGN,
Christoph Lameterc59def92007-05-16 22:10:50 -07002262 flags, NULL))
Christoph Lameter81819f02007-05-06 14:49:36 -07002263 goto panic;
2264
2265 list_add(&s->list, &slab_caches);
2266 up_write(&slub_lock);
2267 if (sysfs_slab_add(s))
2268 goto panic;
2269 return s;
2270
2271panic:
2272 panic("Creation of kmalloc slab %s size=%d failed.\n", name, size);
2273}
2274
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002275#ifdef CONFIG_ZONE_DMA
2276static noinline struct kmem_cache *dma_kmalloc_cache(int index, gfp_t flags)
2277{
2278 struct kmem_cache *s;
2279 struct kmem_cache *x;
2280 char *text;
2281 size_t realsize;
2282
2283 s = kmalloc_caches_dma[index];
2284 if (s)
2285 return s;
2286
2287 /* Dynamically create dma cache */
2288 x = kmalloc(kmem_size, flags & ~SLUB_DMA);
2289 if (!x)
2290 panic("Unable to allocate memory for dma cache\n");
2291
Christoph Lameter7b55f622007-07-17 04:03:27 -07002292 realsize = kmalloc_caches[index].objsize;
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002293 text = kasprintf(flags & ~SLUB_DMA, "kmalloc_dma-%d",
2294 (unsigned int)realsize);
2295 s = create_kmalloc_cache(x, text, realsize, flags);
Christoph Lameterdfce8642007-07-17 04:03:25 -07002296 down_write(&slub_lock);
2297 if (!kmalloc_caches_dma[index]) {
2298 kmalloc_caches_dma[index] = s;
2299 up_write(&slub_lock);
2300 return s;
2301 }
2302 up_write(&slub_lock);
2303 kmem_cache_destroy(s);
2304 return kmalloc_caches_dma[index];
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002305}
2306#endif
2307
Christoph Lameterf1b26332007-07-17 04:03:26 -07002308/*
2309 * Conversion table for small slabs sizes / 8 to the index in the
2310 * kmalloc array. This is necessary for slabs < 192 since we have non power
2311 * of two cache sizes there. The size of larger slabs can be determined using
2312 * fls.
2313 */
2314static s8 size_index[24] = {
2315 3, /* 8 */
2316 4, /* 16 */
2317 5, /* 24 */
2318 5, /* 32 */
2319 6, /* 40 */
2320 6, /* 48 */
2321 6, /* 56 */
2322 6, /* 64 */
2323 1, /* 72 */
2324 1, /* 80 */
2325 1, /* 88 */
2326 1, /* 96 */
2327 7, /* 104 */
2328 7, /* 112 */
2329 7, /* 120 */
2330 7, /* 128 */
2331 2, /* 136 */
2332 2, /* 144 */
2333 2, /* 152 */
2334 2, /* 160 */
2335 2, /* 168 */
2336 2, /* 176 */
2337 2, /* 184 */
2338 2 /* 192 */
2339};
2340
Christoph Lameter81819f02007-05-06 14:49:36 -07002341static struct kmem_cache *get_slab(size_t size, gfp_t flags)
2342{
Christoph Lameterf1b26332007-07-17 04:03:26 -07002343 int index;
Christoph Lameter81819f02007-05-06 14:49:36 -07002344
Christoph Lameterf1b26332007-07-17 04:03:26 -07002345 if (size <= 192) {
2346 if (!size)
2347 return ZERO_SIZE_PTR;
Christoph Lameter81819f02007-05-06 14:49:36 -07002348
Christoph Lameterf1b26332007-07-17 04:03:26 -07002349 index = size_index[(size - 1) / 8];
2350 } else {
2351 if (size > KMALLOC_MAX_SIZE)
2352 return NULL;
2353
2354 index = fls(size - 1);
2355 }
Christoph Lameter81819f02007-05-06 14:49:36 -07002356
2357#ifdef CONFIG_ZONE_DMA
Christoph Lameterf1b26332007-07-17 04:03:26 -07002358 if (unlikely((flags & SLUB_DMA)))
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002359 return dma_kmalloc_cache(index, flags);
Christoph Lameterf1b26332007-07-17 04:03:26 -07002360
Christoph Lameter81819f02007-05-06 14:49:36 -07002361#endif
2362 return &kmalloc_caches[index];
2363}
2364
2365void *__kmalloc(size_t size, gfp_t flags)
2366{
2367 struct kmem_cache *s = get_slab(size, flags);
2368
Christoph Lameter6cb8f912007-07-17 04:03:22 -07002369 if (ZERO_OR_NULL_PTR(s))
2370 return s;
2371
Christoph Lameterd07dbea2007-07-17 04:03:23 -07002372 return slab_alloc(s, flags, -1, __builtin_return_address(0), size);
Christoph Lameter81819f02007-05-06 14:49:36 -07002373}
2374EXPORT_SYMBOL(__kmalloc);
2375
2376#ifdef CONFIG_NUMA
2377void *__kmalloc_node(size_t size, gfp_t flags, int node)
2378{
2379 struct kmem_cache *s = get_slab(size, flags);
2380
Christoph Lameter6cb8f912007-07-17 04:03:22 -07002381 if (ZERO_OR_NULL_PTR(s))
2382 return s;
2383
Christoph Lameterd07dbea2007-07-17 04:03:23 -07002384 return slab_alloc(s, flags, node, __builtin_return_address(0), size);
Christoph Lameter81819f02007-05-06 14:49:36 -07002385}
2386EXPORT_SYMBOL(__kmalloc_node);
2387#endif
2388
2389size_t ksize(const void *object)
2390{
Christoph Lameter272c1d22007-06-08 13:46:49 -07002391 struct page *page;
Christoph Lameter81819f02007-05-06 14:49:36 -07002392 struct kmem_cache *s;
2393
Christoph Lameter272c1d22007-06-08 13:46:49 -07002394 if (object == ZERO_SIZE_PTR)
2395 return 0;
2396
2397 page = get_object_page(object);
Christoph Lameter81819f02007-05-06 14:49:36 -07002398 BUG_ON(!page);
2399 s = page->slab;
2400 BUG_ON(!s);
2401
2402 /*
2403 * Debugging requires use of the padding between object
2404 * and whatever may come after it.
2405 */
2406 if (s->flags & (SLAB_RED_ZONE | SLAB_POISON))
2407 return s->objsize;
2408
2409 /*
2410 * If we have the need to store the freelist pointer
2411 * back there or track user information then we can
2412 * only use the space before that information.
2413 */
2414 if (s->flags & (SLAB_DESTROY_BY_RCU | SLAB_STORE_USER))
2415 return s->inuse;
2416
2417 /*
2418 * Else we can use all the padding etc for the allocation
2419 */
2420 return s->size;
2421}
2422EXPORT_SYMBOL(ksize);
2423
2424void kfree(const void *x)
2425{
2426 struct kmem_cache *s;
2427 struct page *page;
2428
Christoph Lameter272c1d22007-06-08 13:46:49 -07002429 /*
2430 * This has to be an unsigned comparison. According to Linus
2431 * some gcc version treat a pointer as a signed entity. Then
2432 * this comparison would be true for all "negative" pointers
2433 * (which would cover the whole upper half of the address space).
2434 */
Christoph Lameter6cb8f912007-07-17 04:03:22 -07002435 if (ZERO_OR_NULL_PTR(x))
Christoph Lameter81819f02007-05-06 14:49:36 -07002436 return;
2437
Christoph Lameterb49af682007-05-06 14:49:41 -07002438 page = virt_to_head_page(x);
Christoph Lameter81819f02007-05-06 14:49:36 -07002439 s = page->slab;
2440
Christoph Lameter77c5e2d2007-05-06 14:49:42 -07002441 slab_free(s, page, (void *)x, __builtin_return_address(0));
Christoph Lameter81819f02007-05-06 14:49:36 -07002442}
2443EXPORT_SYMBOL(kfree);
2444
Christoph Lameter2086d262007-05-06 14:49:46 -07002445/*
Christoph Lameter672bba32007-05-09 02:32:39 -07002446 * kmem_cache_shrink removes empty slabs from the partial lists and sorts
2447 * the remaining slabs by the number of items in use. The slabs with the
2448 * most items in use come first. New allocations will then fill those up
2449 * and thus they can be removed from the partial lists.
2450 *
2451 * The slabs with the least items are placed last. This results in them
2452 * being allocated from last increasing the chance that the last objects
2453 * are freed in them.
Christoph Lameter2086d262007-05-06 14:49:46 -07002454 */
2455int kmem_cache_shrink(struct kmem_cache *s)
2456{
2457 int node;
2458 int i;
2459 struct kmem_cache_node *n;
2460 struct page *page;
2461 struct page *t;
2462 struct list_head *slabs_by_inuse =
2463 kmalloc(sizeof(struct list_head) * s->objects, GFP_KERNEL);
2464 unsigned long flags;
2465
2466 if (!slabs_by_inuse)
2467 return -ENOMEM;
2468
2469 flush_all(s);
2470 for_each_online_node(node) {
2471 n = get_node(s, node);
2472
2473 if (!n->nr_partial)
2474 continue;
2475
2476 for (i = 0; i < s->objects; i++)
2477 INIT_LIST_HEAD(slabs_by_inuse + i);
2478
2479 spin_lock_irqsave(&n->list_lock, flags);
2480
2481 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07002482 * Build lists indexed by the items in use in each slab.
Christoph Lameter2086d262007-05-06 14:49:46 -07002483 *
Christoph Lameter672bba32007-05-09 02:32:39 -07002484 * Note that concurrent frees may occur while we hold the
2485 * list_lock. page->inuse here is the upper limit.
Christoph Lameter2086d262007-05-06 14:49:46 -07002486 */
2487 list_for_each_entry_safe(page, t, &n->partial, lru) {
2488 if (!page->inuse && slab_trylock(page)) {
2489 /*
2490 * Must hold slab lock here because slab_free
2491 * may have freed the last object and be
2492 * waiting to release the slab.
2493 */
2494 list_del(&page->lru);
2495 n->nr_partial--;
2496 slab_unlock(page);
2497 discard_slab(s, page);
2498 } else {
2499 if (n->nr_partial > MAX_PARTIAL)
2500 list_move(&page->lru,
2501 slabs_by_inuse + page->inuse);
2502 }
2503 }
2504
2505 if (n->nr_partial <= MAX_PARTIAL)
2506 goto out;
2507
2508 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07002509 * Rebuild the partial list with the slabs filled up most
2510 * first and the least used slabs at the end.
Christoph Lameter2086d262007-05-06 14:49:46 -07002511 */
2512 for (i = s->objects - 1; i >= 0; i--)
2513 list_splice(slabs_by_inuse + i, n->partial.prev);
2514
2515 out:
2516 spin_unlock_irqrestore(&n->list_lock, flags);
2517 }
2518
2519 kfree(slabs_by_inuse);
2520 return 0;
2521}
2522EXPORT_SYMBOL(kmem_cache_shrink);
2523
Christoph Lameter81819f02007-05-06 14:49:36 -07002524/********************************************************************
2525 * Basic setup of slabs
2526 *******************************************************************/
2527
2528void __init kmem_cache_init(void)
2529{
2530 int i;
Christoph Lameter4b356be2007-06-16 10:16:13 -07002531 int caches = 0;
Christoph Lameter81819f02007-05-06 14:49:36 -07002532
2533#ifdef CONFIG_NUMA
2534 /*
2535 * Must first have the slab cache available for the allocations of the
Christoph Lameter672bba32007-05-09 02:32:39 -07002536 * struct kmem_cache_node's. There is special bootstrap code in
Christoph Lameter81819f02007-05-06 14:49:36 -07002537 * kmem_cache_open for slab_state == DOWN.
2538 */
2539 create_kmalloc_cache(&kmalloc_caches[0], "kmem_cache_node",
2540 sizeof(struct kmem_cache_node), GFP_KERNEL);
Christoph Lameter8ffa6872007-05-31 00:40:51 -07002541 kmalloc_caches[0].refcount = -1;
Christoph Lameter4b356be2007-06-16 10:16:13 -07002542 caches++;
Christoph Lameter81819f02007-05-06 14:49:36 -07002543#endif
2544
2545 /* Able to allocate the per node structures */
2546 slab_state = PARTIAL;
2547
2548 /* Caches that are not of the two-to-the-power-of size */
Christoph Lameter4b356be2007-06-16 10:16:13 -07002549 if (KMALLOC_MIN_SIZE <= 64) {
2550 create_kmalloc_cache(&kmalloc_caches[1],
Christoph Lameter81819f02007-05-06 14:49:36 -07002551 "kmalloc-96", 96, GFP_KERNEL);
Christoph Lameter4b356be2007-06-16 10:16:13 -07002552 caches++;
2553 }
2554 if (KMALLOC_MIN_SIZE <= 128) {
2555 create_kmalloc_cache(&kmalloc_caches[2],
Christoph Lameter81819f02007-05-06 14:49:36 -07002556 "kmalloc-192", 192, GFP_KERNEL);
Christoph Lameter4b356be2007-06-16 10:16:13 -07002557 caches++;
2558 }
Christoph Lameter81819f02007-05-06 14:49:36 -07002559
Christoph Lameter4b356be2007-06-16 10:16:13 -07002560 for (i = KMALLOC_SHIFT_LOW; i <= KMALLOC_SHIFT_HIGH; i++) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002561 create_kmalloc_cache(&kmalloc_caches[i],
2562 "kmalloc", 1 << i, GFP_KERNEL);
Christoph Lameter4b356be2007-06-16 10:16:13 -07002563 caches++;
2564 }
Christoph Lameter81819f02007-05-06 14:49:36 -07002565
Christoph Lameterf1b26332007-07-17 04:03:26 -07002566
2567 /*
2568 * Patch up the size_index table if we have strange large alignment
2569 * requirements for the kmalloc array. This is only the case for
2570 * mips it seems. The standard arches will not generate any code here.
2571 *
2572 * Largest permitted alignment is 256 bytes due to the way we
2573 * handle the index determination for the smaller caches.
2574 *
2575 * Make sure that nothing crazy happens if someone starts tinkering
2576 * around with ARCH_KMALLOC_MINALIGN
2577 */
2578 BUILD_BUG_ON(KMALLOC_MIN_SIZE > 256 ||
2579 (KMALLOC_MIN_SIZE & (KMALLOC_MIN_SIZE - 1)));
2580
2581 for (i = 8; i < KMALLOC_MIN_SIZE;i++)
2582 size_index[(i - 1) / 8] = KMALLOC_SHIFT_LOW;
2583
Christoph Lameter81819f02007-05-06 14:49:36 -07002584 slab_state = UP;
2585
2586 /* Provide the correct kmalloc names now that the caches are up */
2587 for (i = KMALLOC_SHIFT_LOW; i <= KMALLOC_SHIFT_HIGH; i++)
2588 kmalloc_caches[i]. name =
2589 kasprintf(GFP_KERNEL, "kmalloc-%d", 1 << i);
2590
2591#ifdef CONFIG_SMP
2592 register_cpu_notifier(&slab_notifier);
2593#endif
2594
Christoph Lameterbcf889f2007-05-10 03:15:44 -07002595 kmem_size = offsetof(struct kmem_cache, cpu_slab) +
2596 nr_cpu_ids * sizeof(struct page *);
Christoph Lameter81819f02007-05-06 14:49:36 -07002597
2598 printk(KERN_INFO "SLUB: Genslabs=%d, HWalign=%d, Order=%d-%d, MinObjects=%d,"
Christoph Lameter4b356be2007-06-16 10:16:13 -07002599 " CPUs=%d, Nodes=%d\n",
2600 caches, cache_line_size(),
Christoph Lameter81819f02007-05-06 14:49:36 -07002601 slub_min_order, slub_max_order, slub_min_objects,
2602 nr_cpu_ids, nr_node_ids);
2603}
2604
2605/*
2606 * Find a mergeable slab cache
2607 */
2608static int slab_unmergeable(struct kmem_cache *s)
2609{
2610 if (slub_nomerge || (s->flags & SLUB_NEVER_MERGE))
2611 return 1;
2612
Christoph Lameterc59def92007-05-16 22:10:50 -07002613 if (s->ctor)
Christoph Lameter81819f02007-05-06 14:49:36 -07002614 return 1;
2615
Christoph Lameter8ffa6872007-05-31 00:40:51 -07002616 /*
2617 * We may have set a slab to be unmergeable during bootstrap.
2618 */
2619 if (s->refcount < 0)
2620 return 1;
2621
Christoph Lameter81819f02007-05-06 14:49:36 -07002622 return 0;
2623}
2624
2625static struct kmem_cache *find_mergeable(size_t size,
2626 size_t align, unsigned long flags,
Christoph Lameterc59def92007-05-16 22:10:50 -07002627 void (*ctor)(void *, struct kmem_cache *, unsigned long))
Christoph Lameter81819f02007-05-06 14:49:36 -07002628{
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07002629 struct kmem_cache *s;
Christoph Lameter81819f02007-05-06 14:49:36 -07002630
2631 if (slub_nomerge || (flags & SLUB_NEVER_MERGE))
2632 return NULL;
2633
Christoph Lameterc59def92007-05-16 22:10:50 -07002634 if (ctor)
Christoph Lameter81819f02007-05-06 14:49:36 -07002635 return NULL;
2636
2637 size = ALIGN(size, sizeof(void *));
2638 align = calculate_alignment(flags, align, size);
2639 size = ALIGN(size, align);
2640
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07002641 list_for_each_entry(s, &slab_caches, list) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002642 if (slab_unmergeable(s))
2643 continue;
2644
2645 if (size > s->size)
2646 continue;
2647
2648 if (((flags | slub_debug) & SLUB_MERGE_SAME) !=
2649 (s->flags & SLUB_MERGE_SAME))
2650 continue;
2651 /*
2652 * Check if alignment is compatible.
2653 * Courtesy of Adrian Drzewiecki
2654 */
2655 if ((s->size & ~(align -1)) != s->size)
2656 continue;
2657
2658 if (s->size - size >= sizeof(void *))
2659 continue;
2660
2661 return s;
2662 }
2663 return NULL;
2664}
2665
2666struct kmem_cache *kmem_cache_create(const char *name, size_t size,
2667 size_t align, unsigned long flags,
2668 void (*ctor)(void *, struct kmem_cache *, unsigned long),
2669 void (*dtor)(void *, struct kmem_cache *, unsigned long))
2670{
2671 struct kmem_cache *s;
2672
Christoph Lameterc59def92007-05-16 22:10:50 -07002673 BUG_ON(dtor);
Christoph Lameter81819f02007-05-06 14:49:36 -07002674 down_write(&slub_lock);
Christoph Lameterc59def92007-05-16 22:10:50 -07002675 s = find_mergeable(size, align, flags, ctor);
Christoph Lameter81819f02007-05-06 14:49:36 -07002676 if (s) {
2677 s->refcount++;
2678 /*
2679 * Adjust the object sizes so that we clear
2680 * the complete object on kzalloc.
2681 */
2682 s->objsize = max(s->objsize, (int)size);
2683 s->inuse = max_t(int, s->inuse, ALIGN(size, sizeof(void *)));
2684 if (sysfs_slab_alias(s, name))
2685 goto err;
2686 } else {
2687 s = kmalloc(kmem_size, GFP_KERNEL);
2688 if (s && kmem_cache_open(s, GFP_KERNEL, name,
Christoph Lameterc59def92007-05-16 22:10:50 -07002689 size, align, flags, ctor)) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002690 if (sysfs_slab_add(s)) {
2691 kfree(s);
2692 goto err;
2693 }
2694 list_add(&s->list, &slab_caches);
2695 } else
2696 kfree(s);
2697 }
2698 up_write(&slub_lock);
2699 return s;
2700
2701err:
2702 up_write(&slub_lock);
2703 if (flags & SLAB_PANIC)
2704 panic("Cannot create slabcache %s\n", name);
2705 else
2706 s = NULL;
2707 return s;
2708}
2709EXPORT_SYMBOL(kmem_cache_create);
2710
2711void *kmem_cache_zalloc(struct kmem_cache *s, gfp_t flags)
2712{
2713 void *x;
2714
Christoph Lameterd07dbea2007-07-17 04:03:23 -07002715 x = slab_alloc(s, flags, -1, __builtin_return_address(0), 0);
Christoph Lameter81819f02007-05-06 14:49:36 -07002716 if (x)
2717 memset(x, 0, s->objsize);
2718 return x;
2719}
2720EXPORT_SYMBOL(kmem_cache_zalloc);
2721
2722#ifdef CONFIG_SMP
Christoph Lameter27390bc2007-06-01 00:47:09 -07002723/*
Christoph Lameter672bba32007-05-09 02:32:39 -07002724 * Use the cpu notifier to insure that the cpu slabs are flushed when
2725 * necessary.
Christoph Lameter81819f02007-05-06 14:49:36 -07002726 */
2727static int __cpuinit slab_cpuup_callback(struct notifier_block *nfb,
2728 unsigned long action, void *hcpu)
2729{
2730 long cpu = (long)hcpu;
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07002731 struct kmem_cache *s;
2732 unsigned long flags;
Christoph Lameter81819f02007-05-06 14:49:36 -07002733
2734 switch (action) {
2735 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07002736 case CPU_UP_CANCELED_FROZEN:
Christoph Lameter81819f02007-05-06 14:49:36 -07002737 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07002738 case CPU_DEAD_FROZEN:
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07002739 down_read(&slub_lock);
2740 list_for_each_entry(s, &slab_caches, list) {
2741 local_irq_save(flags);
2742 __flush_cpu_slab(s, cpu);
2743 local_irq_restore(flags);
2744 }
2745 up_read(&slub_lock);
Christoph Lameter81819f02007-05-06 14:49:36 -07002746 break;
2747 default:
2748 break;
2749 }
2750 return NOTIFY_OK;
2751}
2752
2753static struct notifier_block __cpuinitdata slab_notifier =
2754 { &slab_cpuup_callback, NULL, 0 };
2755
2756#endif
2757
Christoph Lameter81819f02007-05-06 14:49:36 -07002758void *__kmalloc_track_caller(size_t size, gfp_t gfpflags, void *caller)
2759{
2760 struct kmem_cache *s = get_slab(size, gfpflags);
Christoph Lameter81819f02007-05-06 14:49:36 -07002761
Christoph Lameter6cb8f912007-07-17 04:03:22 -07002762 if (ZERO_OR_NULL_PTR(s))
2763 return s;
Christoph Lameter81819f02007-05-06 14:49:36 -07002764
Christoph Lameterd07dbea2007-07-17 04:03:23 -07002765 return slab_alloc(s, gfpflags, -1, caller, size);
Christoph Lameter81819f02007-05-06 14:49:36 -07002766}
2767
2768void *__kmalloc_node_track_caller(size_t size, gfp_t gfpflags,
2769 int node, void *caller)
2770{
2771 struct kmem_cache *s = get_slab(size, gfpflags);
Christoph Lameter81819f02007-05-06 14:49:36 -07002772
Christoph Lameter6cb8f912007-07-17 04:03:22 -07002773 if (ZERO_OR_NULL_PTR(s))
2774 return s;
Christoph Lameter81819f02007-05-06 14:49:36 -07002775
Christoph Lameterd07dbea2007-07-17 04:03:23 -07002776 return slab_alloc(s, gfpflags, node, caller, size);
Christoph Lameter81819f02007-05-06 14:49:36 -07002777}
2778
Christoph Lameter41ecc552007-05-09 02:32:44 -07002779#if defined(CONFIG_SYSFS) && defined(CONFIG_SLUB_DEBUG)
Christoph Lameter53e15af2007-05-06 14:49:43 -07002780static int validate_slab(struct kmem_cache *s, struct page *page)
2781{
2782 void *p;
2783 void *addr = page_address(page);
Christoph Lameter7656c722007-05-09 02:32:40 -07002784 DECLARE_BITMAP(map, s->objects);
Christoph Lameter53e15af2007-05-06 14:49:43 -07002785
2786 if (!check_slab(s, page) ||
2787 !on_freelist(s, page, NULL))
2788 return 0;
2789
2790 /* Now we know that a valid freelist exists */
2791 bitmap_zero(map, s->objects);
2792
Christoph Lameter7656c722007-05-09 02:32:40 -07002793 for_each_free_object(p, s, page->freelist) {
2794 set_bit(slab_index(p, s, addr), map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07002795 if (!check_object(s, page, p, 0))
2796 return 0;
2797 }
2798
Christoph Lameter7656c722007-05-09 02:32:40 -07002799 for_each_object(p, s, addr)
2800 if (!test_bit(slab_index(p, s, addr), map))
Christoph Lameter53e15af2007-05-06 14:49:43 -07002801 if (!check_object(s, page, p, 1))
2802 return 0;
2803 return 1;
2804}
2805
2806static void validate_slab_slab(struct kmem_cache *s, struct page *page)
2807{
2808 if (slab_trylock(page)) {
2809 validate_slab(s, page);
2810 slab_unlock(page);
2811 } else
2812 printk(KERN_INFO "SLUB %s: Skipped busy slab 0x%p\n",
2813 s->name, page);
2814
2815 if (s->flags & DEBUG_DEFAULT_FLAGS) {
Christoph Lameter35e5d7e2007-05-09 02:32:42 -07002816 if (!SlabDebug(page))
2817 printk(KERN_ERR "SLUB %s: SlabDebug not set "
Christoph Lameter53e15af2007-05-06 14:49:43 -07002818 "on slab 0x%p\n", s->name, page);
2819 } else {
Christoph Lameter35e5d7e2007-05-09 02:32:42 -07002820 if (SlabDebug(page))
2821 printk(KERN_ERR "SLUB %s: SlabDebug set on "
Christoph Lameter53e15af2007-05-06 14:49:43 -07002822 "slab 0x%p\n", s->name, page);
2823 }
2824}
2825
2826static int validate_slab_node(struct kmem_cache *s, struct kmem_cache_node *n)
2827{
2828 unsigned long count = 0;
2829 struct page *page;
2830 unsigned long flags;
2831
2832 spin_lock_irqsave(&n->list_lock, flags);
2833
2834 list_for_each_entry(page, &n->partial, lru) {
2835 validate_slab_slab(s, page);
2836 count++;
2837 }
2838 if (count != n->nr_partial)
2839 printk(KERN_ERR "SLUB %s: %ld partial slabs counted but "
2840 "counter=%ld\n", s->name, count, n->nr_partial);
2841
2842 if (!(s->flags & SLAB_STORE_USER))
2843 goto out;
2844
2845 list_for_each_entry(page, &n->full, lru) {
2846 validate_slab_slab(s, page);
2847 count++;
2848 }
2849 if (count != atomic_long_read(&n->nr_slabs))
2850 printk(KERN_ERR "SLUB: %s %ld slabs counted but "
2851 "counter=%ld\n", s->name, count,
2852 atomic_long_read(&n->nr_slabs));
2853
2854out:
2855 spin_unlock_irqrestore(&n->list_lock, flags);
2856 return count;
2857}
2858
2859static unsigned long validate_slab_cache(struct kmem_cache *s)
2860{
2861 int node;
2862 unsigned long count = 0;
2863
2864 flush_all(s);
2865 for_each_online_node(node) {
2866 struct kmem_cache_node *n = get_node(s, node);
2867
2868 count += validate_slab_node(s, n);
2869 }
2870 return count;
2871}
2872
Christoph Lameterb3459702007-05-09 02:32:41 -07002873#ifdef SLUB_RESILIENCY_TEST
2874static void resiliency_test(void)
2875{
2876 u8 *p;
2877
2878 printk(KERN_ERR "SLUB resiliency testing\n");
2879 printk(KERN_ERR "-----------------------\n");
2880 printk(KERN_ERR "A. Corruption after allocation\n");
2881
2882 p = kzalloc(16, GFP_KERNEL);
2883 p[16] = 0x12;
2884 printk(KERN_ERR "\n1. kmalloc-16: Clobber Redzone/next pointer"
2885 " 0x12->0x%p\n\n", p + 16);
2886
2887 validate_slab_cache(kmalloc_caches + 4);
2888
2889 /* Hmmm... The next two are dangerous */
2890 p = kzalloc(32, GFP_KERNEL);
2891 p[32 + sizeof(void *)] = 0x34;
2892 printk(KERN_ERR "\n2. kmalloc-32: Clobber next pointer/next slab"
2893 " 0x34 -> -0x%p\n", p);
2894 printk(KERN_ERR "If allocated object is overwritten then not detectable\n\n");
2895
2896 validate_slab_cache(kmalloc_caches + 5);
2897 p = kzalloc(64, GFP_KERNEL);
2898 p += 64 + (get_cycles() & 0xff) * sizeof(void *);
2899 *p = 0x56;
2900 printk(KERN_ERR "\n3. kmalloc-64: corrupting random byte 0x56->0x%p\n",
2901 p);
2902 printk(KERN_ERR "If allocated object is overwritten then not detectable\n\n");
2903 validate_slab_cache(kmalloc_caches + 6);
2904
2905 printk(KERN_ERR "\nB. Corruption after free\n");
2906 p = kzalloc(128, GFP_KERNEL);
2907 kfree(p);
2908 *p = 0x78;
2909 printk(KERN_ERR "1. kmalloc-128: Clobber first word 0x78->0x%p\n\n", p);
2910 validate_slab_cache(kmalloc_caches + 7);
2911
2912 p = kzalloc(256, GFP_KERNEL);
2913 kfree(p);
2914 p[50] = 0x9a;
2915 printk(KERN_ERR "\n2. kmalloc-256: Clobber 50th byte 0x9a->0x%p\n\n", p);
2916 validate_slab_cache(kmalloc_caches + 8);
2917
2918 p = kzalloc(512, GFP_KERNEL);
2919 kfree(p);
2920 p[512] = 0xab;
2921 printk(KERN_ERR "\n3. kmalloc-512: Clobber redzone 0xab->0x%p\n\n", p);
2922 validate_slab_cache(kmalloc_caches + 9);
2923}
2924#else
2925static void resiliency_test(void) {};
2926#endif
2927
Christoph Lameter88a420e2007-05-06 14:49:45 -07002928/*
Christoph Lameter672bba32007-05-09 02:32:39 -07002929 * Generate lists of code addresses where slabcache objects are allocated
Christoph Lameter88a420e2007-05-06 14:49:45 -07002930 * and freed.
2931 */
2932
2933struct location {
2934 unsigned long count;
2935 void *addr;
Christoph Lameter45edfa52007-05-09 02:32:45 -07002936 long long sum_time;
2937 long min_time;
2938 long max_time;
2939 long min_pid;
2940 long max_pid;
2941 cpumask_t cpus;
2942 nodemask_t nodes;
Christoph Lameter88a420e2007-05-06 14:49:45 -07002943};
2944
2945struct loc_track {
2946 unsigned long max;
2947 unsigned long count;
2948 struct location *loc;
2949};
2950
2951static void free_loc_track(struct loc_track *t)
2952{
2953 if (t->max)
2954 free_pages((unsigned long)t->loc,
2955 get_order(sizeof(struct location) * t->max));
2956}
2957
Christoph Lameter68dff6a2007-07-17 04:03:20 -07002958static int alloc_loc_track(struct loc_track *t, unsigned long max, gfp_t flags)
Christoph Lameter88a420e2007-05-06 14:49:45 -07002959{
2960 struct location *l;
2961 int order;
2962
Christoph Lameter88a420e2007-05-06 14:49:45 -07002963 order = get_order(sizeof(struct location) * max);
2964
Christoph Lameter68dff6a2007-07-17 04:03:20 -07002965 l = (void *)__get_free_pages(flags, order);
Christoph Lameter88a420e2007-05-06 14:49:45 -07002966 if (!l)
2967 return 0;
2968
2969 if (t->count) {
2970 memcpy(l, t->loc, sizeof(struct location) * t->count);
2971 free_loc_track(t);
2972 }
2973 t->max = max;
2974 t->loc = l;
2975 return 1;
2976}
2977
2978static int add_location(struct loc_track *t, struct kmem_cache *s,
Christoph Lameter45edfa52007-05-09 02:32:45 -07002979 const struct track *track)
Christoph Lameter88a420e2007-05-06 14:49:45 -07002980{
2981 long start, end, pos;
2982 struct location *l;
2983 void *caddr;
Christoph Lameter45edfa52007-05-09 02:32:45 -07002984 unsigned long age = jiffies - track->when;
Christoph Lameter88a420e2007-05-06 14:49:45 -07002985
2986 start = -1;
2987 end = t->count;
2988
2989 for ( ; ; ) {
2990 pos = start + (end - start + 1) / 2;
2991
2992 /*
2993 * There is nothing at "end". If we end up there
2994 * we need to add something to before end.
2995 */
2996 if (pos == end)
2997 break;
2998
2999 caddr = t->loc[pos].addr;
Christoph Lameter45edfa52007-05-09 02:32:45 -07003000 if (track->addr == caddr) {
3001
3002 l = &t->loc[pos];
3003 l->count++;
3004 if (track->when) {
3005 l->sum_time += age;
3006 if (age < l->min_time)
3007 l->min_time = age;
3008 if (age > l->max_time)
3009 l->max_time = age;
3010
3011 if (track->pid < l->min_pid)
3012 l->min_pid = track->pid;
3013 if (track->pid > l->max_pid)
3014 l->max_pid = track->pid;
3015
3016 cpu_set(track->cpu, l->cpus);
3017 }
3018 node_set(page_to_nid(virt_to_page(track)), l->nodes);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003019 return 1;
3020 }
3021
Christoph Lameter45edfa52007-05-09 02:32:45 -07003022 if (track->addr < caddr)
Christoph Lameter88a420e2007-05-06 14:49:45 -07003023 end = pos;
3024 else
3025 start = pos;
3026 }
3027
3028 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07003029 * Not found. Insert new tracking element.
Christoph Lameter88a420e2007-05-06 14:49:45 -07003030 */
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003031 if (t->count >= t->max && !alloc_loc_track(t, 2 * t->max, GFP_ATOMIC))
Christoph Lameter88a420e2007-05-06 14:49:45 -07003032 return 0;
3033
3034 l = t->loc + pos;
3035 if (pos < t->count)
3036 memmove(l + 1, l,
3037 (t->count - pos) * sizeof(struct location));
3038 t->count++;
3039 l->count = 1;
Christoph Lameter45edfa52007-05-09 02:32:45 -07003040 l->addr = track->addr;
3041 l->sum_time = age;
3042 l->min_time = age;
3043 l->max_time = age;
3044 l->min_pid = track->pid;
3045 l->max_pid = track->pid;
3046 cpus_clear(l->cpus);
3047 cpu_set(track->cpu, l->cpus);
3048 nodes_clear(l->nodes);
3049 node_set(page_to_nid(virt_to_page(track)), l->nodes);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003050 return 1;
3051}
3052
3053static void process_slab(struct loc_track *t, struct kmem_cache *s,
3054 struct page *page, enum track_item alloc)
3055{
3056 void *addr = page_address(page);
Christoph Lameter7656c722007-05-09 02:32:40 -07003057 DECLARE_BITMAP(map, s->objects);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003058 void *p;
3059
3060 bitmap_zero(map, s->objects);
Christoph Lameter7656c722007-05-09 02:32:40 -07003061 for_each_free_object(p, s, page->freelist)
3062 set_bit(slab_index(p, s, addr), map);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003063
Christoph Lameter7656c722007-05-09 02:32:40 -07003064 for_each_object(p, s, addr)
Christoph Lameter45edfa52007-05-09 02:32:45 -07003065 if (!test_bit(slab_index(p, s, addr), map))
3066 add_location(t, s, get_track(s, p, alloc));
Christoph Lameter88a420e2007-05-06 14:49:45 -07003067}
3068
3069static int list_locations(struct kmem_cache *s, char *buf,
3070 enum track_item alloc)
3071{
3072 int n = 0;
3073 unsigned long i;
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003074 struct loc_track t = { 0, 0, NULL };
Christoph Lameter88a420e2007-05-06 14:49:45 -07003075 int node;
3076
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003077 if (!alloc_loc_track(&t, PAGE_SIZE / sizeof(struct location),
3078 GFP_KERNEL))
3079 return sprintf(buf, "Out of memory\n");
Christoph Lameter88a420e2007-05-06 14:49:45 -07003080
3081 /* Push back cpu slabs */
3082 flush_all(s);
3083
3084 for_each_online_node(node) {
3085 struct kmem_cache_node *n = get_node(s, node);
3086 unsigned long flags;
3087 struct page *page;
3088
3089 if (!atomic_read(&n->nr_slabs))
3090 continue;
3091
3092 spin_lock_irqsave(&n->list_lock, flags);
3093 list_for_each_entry(page, &n->partial, lru)
3094 process_slab(&t, s, page, alloc);
3095 list_for_each_entry(page, &n->full, lru)
3096 process_slab(&t, s, page, alloc);
3097 spin_unlock_irqrestore(&n->list_lock, flags);
3098 }
3099
3100 for (i = 0; i < t.count; i++) {
Christoph Lameter45edfa52007-05-09 02:32:45 -07003101 struct location *l = &t.loc[i];
Christoph Lameter88a420e2007-05-06 14:49:45 -07003102
3103 if (n > PAGE_SIZE - 100)
3104 break;
Christoph Lameter45edfa52007-05-09 02:32:45 -07003105 n += sprintf(buf + n, "%7ld ", l->count);
3106
3107 if (l->addr)
3108 n += sprint_symbol(buf + n, (unsigned long)l->addr);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003109 else
3110 n += sprintf(buf + n, "<not-available>");
Christoph Lameter45edfa52007-05-09 02:32:45 -07003111
3112 if (l->sum_time != l->min_time) {
3113 unsigned long remainder;
3114
3115 n += sprintf(buf + n, " age=%ld/%ld/%ld",
3116 l->min_time,
3117 div_long_long_rem(l->sum_time, l->count, &remainder),
3118 l->max_time);
3119 } else
3120 n += sprintf(buf + n, " age=%ld",
3121 l->min_time);
3122
3123 if (l->min_pid != l->max_pid)
3124 n += sprintf(buf + n, " pid=%ld-%ld",
3125 l->min_pid, l->max_pid);
3126 else
3127 n += sprintf(buf + n, " pid=%ld",
3128 l->min_pid);
3129
Christoph Lameter84966342007-06-23 17:16:32 -07003130 if (num_online_cpus() > 1 && !cpus_empty(l->cpus) &&
3131 n < PAGE_SIZE - 60) {
Christoph Lameter45edfa52007-05-09 02:32:45 -07003132 n += sprintf(buf + n, " cpus=");
3133 n += cpulist_scnprintf(buf + n, PAGE_SIZE - n - 50,
3134 l->cpus);
3135 }
3136
Christoph Lameter84966342007-06-23 17:16:32 -07003137 if (num_online_nodes() > 1 && !nodes_empty(l->nodes) &&
3138 n < PAGE_SIZE - 60) {
Christoph Lameter45edfa52007-05-09 02:32:45 -07003139 n += sprintf(buf + n, " nodes=");
3140 n += nodelist_scnprintf(buf + n, PAGE_SIZE - n - 50,
3141 l->nodes);
3142 }
3143
Christoph Lameter88a420e2007-05-06 14:49:45 -07003144 n += sprintf(buf + n, "\n");
3145 }
3146
3147 free_loc_track(&t);
3148 if (!t.count)
3149 n += sprintf(buf, "No data\n");
3150 return n;
3151}
3152
Christoph Lameter81819f02007-05-06 14:49:36 -07003153static unsigned long count_partial(struct kmem_cache_node *n)
3154{
3155 unsigned long flags;
3156 unsigned long x = 0;
3157 struct page *page;
3158
3159 spin_lock_irqsave(&n->list_lock, flags);
3160 list_for_each_entry(page, &n->partial, lru)
3161 x += page->inuse;
3162 spin_unlock_irqrestore(&n->list_lock, flags);
3163 return x;
3164}
3165
3166enum slab_stat_type {
3167 SL_FULL,
3168 SL_PARTIAL,
3169 SL_CPU,
3170 SL_OBJECTS
3171};
3172
3173#define SO_FULL (1 << SL_FULL)
3174#define SO_PARTIAL (1 << SL_PARTIAL)
3175#define SO_CPU (1 << SL_CPU)
3176#define SO_OBJECTS (1 << SL_OBJECTS)
3177
3178static unsigned long slab_objects(struct kmem_cache *s,
3179 char *buf, unsigned long flags)
3180{
3181 unsigned long total = 0;
3182 int cpu;
3183 int node;
3184 int x;
3185 unsigned long *nodes;
3186 unsigned long *per_cpu;
3187
3188 nodes = kzalloc(2 * sizeof(unsigned long) * nr_node_ids, GFP_KERNEL);
3189 per_cpu = nodes + nr_node_ids;
3190
3191 for_each_possible_cpu(cpu) {
3192 struct page *page = s->cpu_slab[cpu];
3193 int node;
3194
3195 if (page) {
3196 node = page_to_nid(page);
3197 if (flags & SO_CPU) {
3198 int x = 0;
3199
3200 if (flags & SO_OBJECTS)
3201 x = page->inuse;
3202 else
3203 x = 1;
3204 total += x;
3205 nodes[node] += x;
3206 }
3207 per_cpu[node]++;
3208 }
3209 }
3210
3211 for_each_online_node(node) {
3212 struct kmem_cache_node *n = get_node(s, node);
3213
3214 if (flags & SO_PARTIAL) {
3215 if (flags & SO_OBJECTS)
3216 x = count_partial(n);
3217 else
3218 x = n->nr_partial;
3219 total += x;
3220 nodes[node] += x;
3221 }
3222
3223 if (flags & SO_FULL) {
3224 int full_slabs = atomic_read(&n->nr_slabs)
3225 - per_cpu[node]
3226 - n->nr_partial;
3227
3228 if (flags & SO_OBJECTS)
3229 x = full_slabs * s->objects;
3230 else
3231 x = full_slabs;
3232 total += x;
3233 nodes[node] += x;
3234 }
3235 }
3236
3237 x = sprintf(buf, "%lu", total);
3238#ifdef CONFIG_NUMA
3239 for_each_online_node(node)
3240 if (nodes[node])
3241 x += sprintf(buf + x, " N%d=%lu",
3242 node, nodes[node]);
3243#endif
3244 kfree(nodes);
3245 return x + sprintf(buf + x, "\n");
3246}
3247
3248static int any_slab_objects(struct kmem_cache *s)
3249{
3250 int node;
3251 int cpu;
3252
3253 for_each_possible_cpu(cpu)
3254 if (s->cpu_slab[cpu])
3255 return 1;
3256
3257 for_each_node(node) {
3258 struct kmem_cache_node *n = get_node(s, node);
3259
3260 if (n->nr_partial || atomic_read(&n->nr_slabs))
3261 return 1;
3262 }
3263 return 0;
3264}
3265
3266#define to_slab_attr(n) container_of(n, struct slab_attribute, attr)
3267#define to_slab(n) container_of(n, struct kmem_cache, kobj);
3268
3269struct slab_attribute {
3270 struct attribute attr;
3271 ssize_t (*show)(struct kmem_cache *s, char *buf);
3272 ssize_t (*store)(struct kmem_cache *s, const char *x, size_t count);
3273};
3274
3275#define SLAB_ATTR_RO(_name) \
3276 static struct slab_attribute _name##_attr = __ATTR_RO(_name)
3277
3278#define SLAB_ATTR(_name) \
3279 static struct slab_attribute _name##_attr = \
3280 __ATTR(_name, 0644, _name##_show, _name##_store)
3281
Christoph Lameter81819f02007-05-06 14:49:36 -07003282static ssize_t slab_size_show(struct kmem_cache *s, char *buf)
3283{
3284 return sprintf(buf, "%d\n", s->size);
3285}
3286SLAB_ATTR_RO(slab_size);
3287
3288static ssize_t align_show(struct kmem_cache *s, char *buf)
3289{
3290 return sprintf(buf, "%d\n", s->align);
3291}
3292SLAB_ATTR_RO(align);
3293
3294static ssize_t object_size_show(struct kmem_cache *s, char *buf)
3295{
3296 return sprintf(buf, "%d\n", s->objsize);
3297}
3298SLAB_ATTR_RO(object_size);
3299
3300static ssize_t objs_per_slab_show(struct kmem_cache *s, char *buf)
3301{
3302 return sprintf(buf, "%d\n", s->objects);
3303}
3304SLAB_ATTR_RO(objs_per_slab);
3305
3306static ssize_t order_show(struct kmem_cache *s, char *buf)
3307{
3308 return sprintf(buf, "%d\n", s->order);
3309}
3310SLAB_ATTR_RO(order);
3311
3312static ssize_t ctor_show(struct kmem_cache *s, char *buf)
3313{
3314 if (s->ctor) {
3315 int n = sprint_symbol(buf, (unsigned long)s->ctor);
3316
3317 return n + sprintf(buf + n, "\n");
3318 }
3319 return 0;
3320}
3321SLAB_ATTR_RO(ctor);
3322
Christoph Lameter81819f02007-05-06 14:49:36 -07003323static ssize_t aliases_show(struct kmem_cache *s, char *buf)
3324{
3325 return sprintf(buf, "%d\n", s->refcount - 1);
3326}
3327SLAB_ATTR_RO(aliases);
3328
3329static ssize_t slabs_show(struct kmem_cache *s, char *buf)
3330{
3331 return slab_objects(s, buf, SO_FULL|SO_PARTIAL|SO_CPU);
3332}
3333SLAB_ATTR_RO(slabs);
3334
3335static ssize_t partial_show(struct kmem_cache *s, char *buf)
3336{
3337 return slab_objects(s, buf, SO_PARTIAL);
3338}
3339SLAB_ATTR_RO(partial);
3340
3341static ssize_t cpu_slabs_show(struct kmem_cache *s, char *buf)
3342{
3343 return slab_objects(s, buf, SO_CPU);
3344}
3345SLAB_ATTR_RO(cpu_slabs);
3346
3347static ssize_t objects_show(struct kmem_cache *s, char *buf)
3348{
3349 return slab_objects(s, buf, SO_FULL|SO_PARTIAL|SO_CPU|SO_OBJECTS);
3350}
3351SLAB_ATTR_RO(objects);
3352
3353static ssize_t sanity_checks_show(struct kmem_cache *s, char *buf)
3354{
3355 return sprintf(buf, "%d\n", !!(s->flags & SLAB_DEBUG_FREE));
3356}
3357
3358static ssize_t sanity_checks_store(struct kmem_cache *s,
3359 const char *buf, size_t length)
3360{
3361 s->flags &= ~SLAB_DEBUG_FREE;
3362 if (buf[0] == '1')
3363 s->flags |= SLAB_DEBUG_FREE;
3364 return length;
3365}
3366SLAB_ATTR(sanity_checks);
3367
3368static ssize_t trace_show(struct kmem_cache *s, char *buf)
3369{
3370 return sprintf(buf, "%d\n", !!(s->flags & SLAB_TRACE));
3371}
3372
3373static ssize_t trace_store(struct kmem_cache *s, const char *buf,
3374 size_t length)
3375{
3376 s->flags &= ~SLAB_TRACE;
3377 if (buf[0] == '1')
3378 s->flags |= SLAB_TRACE;
3379 return length;
3380}
3381SLAB_ATTR(trace);
3382
3383static ssize_t reclaim_account_show(struct kmem_cache *s, char *buf)
3384{
3385 return sprintf(buf, "%d\n", !!(s->flags & SLAB_RECLAIM_ACCOUNT));
3386}
3387
3388static ssize_t reclaim_account_store(struct kmem_cache *s,
3389 const char *buf, size_t length)
3390{
3391 s->flags &= ~SLAB_RECLAIM_ACCOUNT;
3392 if (buf[0] == '1')
3393 s->flags |= SLAB_RECLAIM_ACCOUNT;
3394 return length;
3395}
3396SLAB_ATTR(reclaim_account);
3397
3398static ssize_t hwcache_align_show(struct kmem_cache *s, char *buf)
3399{
Christoph Lameter5af60832007-05-06 14:49:56 -07003400 return sprintf(buf, "%d\n", !!(s->flags & SLAB_HWCACHE_ALIGN));
Christoph Lameter81819f02007-05-06 14:49:36 -07003401}
3402SLAB_ATTR_RO(hwcache_align);
3403
3404#ifdef CONFIG_ZONE_DMA
3405static ssize_t cache_dma_show(struct kmem_cache *s, char *buf)
3406{
3407 return sprintf(buf, "%d\n", !!(s->flags & SLAB_CACHE_DMA));
3408}
3409SLAB_ATTR_RO(cache_dma);
3410#endif
3411
3412static ssize_t destroy_by_rcu_show(struct kmem_cache *s, char *buf)
3413{
3414 return sprintf(buf, "%d\n", !!(s->flags & SLAB_DESTROY_BY_RCU));
3415}
3416SLAB_ATTR_RO(destroy_by_rcu);
3417
3418static ssize_t red_zone_show(struct kmem_cache *s, char *buf)
3419{
3420 return sprintf(buf, "%d\n", !!(s->flags & SLAB_RED_ZONE));
3421}
3422
3423static ssize_t red_zone_store(struct kmem_cache *s,
3424 const char *buf, size_t length)
3425{
3426 if (any_slab_objects(s))
3427 return -EBUSY;
3428
3429 s->flags &= ~SLAB_RED_ZONE;
3430 if (buf[0] == '1')
3431 s->flags |= SLAB_RED_ZONE;
3432 calculate_sizes(s);
3433 return length;
3434}
3435SLAB_ATTR(red_zone);
3436
3437static ssize_t poison_show(struct kmem_cache *s, char *buf)
3438{
3439 return sprintf(buf, "%d\n", !!(s->flags & SLAB_POISON));
3440}
3441
3442static ssize_t poison_store(struct kmem_cache *s,
3443 const char *buf, size_t length)
3444{
3445 if (any_slab_objects(s))
3446 return -EBUSY;
3447
3448 s->flags &= ~SLAB_POISON;
3449 if (buf[0] == '1')
3450 s->flags |= SLAB_POISON;
3451 calculate_sizes(s);
3452 return length;
3453}
3454SLAB_ATTR(poison);
3455
3456static ssize_t store_user_show(struct kmem_cache *s, char *buf)
3457{
3458 return sprintf(buf, "%d\n", !!(s->flags & SLAB_STORE_USER));
3459}
3460
3461static ssize_t store_user_store(struct kmem_cache *s,
3462 const char *buf, size_t length)
3463{
3464 if (any_slab_objects(s))
3465 return -EBUSY;
3466
3467 s->flags &= ~SLAB_STORE_USER;
3468 if (buf[0] == '1')
3469 s->flags |= SLAB_STORE_USER;
3470 calculate_sizes(s);
3471 return length;
3472}
3473SLAB_ATTR(store_user);
3474
Christoph Lameter53e15af2007-05-06 14:49:43 -07003475static ssize_t validate_show(struct kmem_cache *s, char *buf)
3476{
3477 return 0;
3478}
3479
3480static ssize_t validate_store(struct kmem_cache *s,
3481 const char *buf, size_t length)
3482{
3483 if (buf[0] == '1')
3484 validate_slab_cache(s);
3485 else
3486 return -EINVAL;
3487 return length;
3488}
3489SLAB_ATTR(validate);
3490
Christoph Lameter2086d262007-05-06 14:49:46 -07003491static ssize_t shrink_show(struct kmem_cache *s, char *buf)
3492{
3493 return 0;
3494}
3495
3496static ssize_t shrink_store(struct kmem_cache *s,
3497 const char *buf, size_t length)
3498{
3499 if (buf[0] == '1') {
3500 int rc = kmem_cache_shrink(s);
3501
3502 if (rc)
3503 return rc;
3504 } else
3505 return -EINVAL;
3506 return length;
3507}
3508SLAB_ATTR(shrink);
3509
Christoph Lameter88a420e2007-05-06 14:49:45 -07003510static ssize_t alloc_calls_show(struct kmem_cache *s, char *buf)
3511{
3512 if (!(s->flags & SLAB_STORE_USER))
3513 return -ENOSYS;
3514 return list_locations(s, buf, TRACK_ALLOC);
3515}
3516SLAB_ATTR_RO(alloc_calls);
3517
3518static ssize_t free_calls_show(struct kmem_cache *s, char *buf)
3519{
3520 if (!(s->flags & SLAB_STORE_USER))
3521 return -ENOSYS;
3522 return list_locations(s, buf, TRACK_FREE);
3523}
3524SLAB_ATTR_RO(free_calls);
3525
Christoph Lameter81819f02007-05-06 14:49:36 -07003526#ifdef CONFIG_NUMA
3527static ssize_t defrag_ratio_show(struct kmem_cache *s, char *buf)
3528{
3529 return sprintf(buf, "%d\n", s->defrag_ratio / 10);
3530}
3531
3532static ssize_t defrag_ratio_store(struct kmem_cache *s,
3533 const char *buf, size_t length)
3534{
3535 int n = simple_strtoul(buf, NULL, 10);
3536
3537 if (n < 100)
3538 s->defrag_ratio = n * 10;
3539 return length;
3540}
3541SLAB_ATTR(defrag_ratio);
3542#endif
3543
3544static struct attribute * slab_attrs[] = {
3545 &slab_size_attr.attr,
3546 &object_size_attr.attr,
3547 &objs_per_slab_attr.attr,
3548 &order_attr.attr,
3549 &objects_attr.attr,
3550 &slabs_attr.attr,
3551 &partial_attr.attr,
3552 &cpu_slabs_attr.attr,
3553 &ctor_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07003554 &aliases_attr.attr,
3555 &align_attr.attr,
3556 &sanity_checks_attr.attr,
3557 &trace_attr.attr,
3558 &hwcache_align_attr.attr,
3559 &reclaim_account_attr.attr,
3560 &destroy_by_rcu_attr.attr,
3561 &red_zone_attr.attr,
3562 &poison_attr.attr,
3563 &store_user_attr.attr,
Christoph Lameter53e15af2007-05-06 14:49:43 -07003564 &validate_attr.attr,
Christoph Lameter2086d262007-05-06 14:49:46 -07003565 &shrink_attr.attr,
Christoph Lameter88a420e2007-05-06 14:49:45 -07003566 &alloc_calls_attr.attr,
3567 &free_calls_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07003568#ifdef CONFIG_ZONE_DMA
3569 &cache_dma_attr.attr,
3570#endif
3571#ifdef CONFIG_NUMA
3572 &defrag_ratio_attr.attr,
3573#endif
3574 NULL
3575};
3576
3577static struct attribute_group slab_attr_group = {
3578 .attrs = slab_attrs,
3579};
3580
3581static ssize_t slab_attr_show(struct kobject *kobj,
3582 struct attribute *attr,
3583 char *buf)
3584{
3585 struct slab_attribute *attribute;
3586 struct kmem_cache *s;
3587 int err;
3588
3589 attribute = to_slab_attr(attr);
3590 s = to_slab(kobj);
3591
3592 if (!attribute->show)
3593 return -EIO;
3594
3595 err = attribute->show(s, buf);
3596
3597 return err;
3598}
3599
3600static ssize_t slab_attr_store(struct kobject *kobj,
3601 struct attribute *attr,
3602 const char *buf, size_t len)
3603{
3604 struct slab_attribute *attribute;
3605 struct kmem_cache *s;
3606 int err;
3607
3608 attribute = to_slab_attr(attr);
3609 s = to_slab(kobj);
3610
3611 if (!attribute->store)
3612 return -EIO;
3613
3614 err = attribute->store(s, buf, len);
3615
3616 return err;
3617}
3618
3619static struct sysfs_ops slab_sysfs_ops = {
3620 .show = slab_attr_show,
3621 .store = slab_attr_store,
3622};
3623
3624static struct kobj_type slab_ktype = {
3625 .sysfs_ops = &slab_sysfs_ops,
3626};
3627
3628static int uevent_filter(struct kset *kset, struct kobject *kobj)
3629{
3630 struct kobj_type *ktype = get_ktype(kobj);
3631
3632 if (ktype == &slab_ktype)
3633 return 1;
3634 return 0;
3635}
3636
3637static struct kset_uevent_ops slab_uevent_ops = {
3638 .filter = uevent_filter,
3639};
3640
Adrian Bunk5af328a2007-07-17 04:03:27 -07003641static decl_subsys(slab, &slab_ktype, &slab_uevent_ops);
Christoph Lameter81819f02007-05-06 14:49:36 -07003642
3643#define ID_STR_LENGTH 64
3644
3645/* Create a unique string id for a slab cache:
3646 * format
3647 * :[flags-]size:[memory address of kmemcache]
3648 */
3649static char *create_unique_id(struct kmem_cache *s)
3650{
3651 char *name = kmalloc(ID_STR_LENGTH, GFP_KERNEL);
3652 char *p = name;
3653
3654 BUG_ON(!name);
3655
3656 *p++ = ':';
3657 /*
3658 * First flags affecting slabcache operations. We will only
3659 * get here for aliasable slabs so we do not need to support
3660 * too many flags. The flags here must cover all flags that
3661 * are matched during merging to guarantee that the id is
3662 * unique.
3663 */
3664 if (s->flags & SLAB_CACHE_DMA)
3665 *p++ = 'd';
3666 if (s->flags & SLAB_RECLAIM_ACCOUNT)
3667 *p++ = 'a';
3668 if (s->flags & SLAB_DEBUG_FREE)
3669 *p++ = 'F';
3670 if (p != name + 1)
3671 *p++ = '-';
3672 p += sprintf(p, "%07d", s->size);
3673 BUG_ON(p > name + ID_STR_LENGTH - 1);
3674 return name;
3675}
3676
3677static int sysfs_slab_add(struct kmem_cache *s)
3678{
3679 int err;
3680 const char *name;
3681 int unmergeable;
3682
3683 if (slab_state < SYSFS)
3684 /* Defer until later */
3685 return 0;
3686
3687 unmergeable = slab_unmergeable(s);
3688 if (unmergeable) {
3689 /*
3690 * Slabcache can never be merged so we can use the name proper.
3691 * This is typically the case for debug situations. In that
3692 * case we can catch duplicate names easily.
3693 */
Linus Torvalds0f9008e2007-05-07 12:31:58 -07003694 sysfs_remove_link(&slab_subsys.kobj, s->name);
Christoph Lameter81819f02007-05-06 14:49:36 -07003695 name = s->name;
3696 } else {
3697 /*
3698 * Create a unique name for the slab as a target
3699 * for the symlinks.
3700 */
3701 name = create_unique_id(s);
3702 }
3703
3704 kobj_set_kset_s(s, slab_subsys);
3705 kobject_set_name(&s->kobj, name);
3706 kobject_init(&s->kobj);
3707 err = kobject_add(&s->kobj);
3708 if (err)
3709 return err;
3710
3711 err = sysfs_create_group(&s->kobj, &slab_attr_group);
3712 if (err)
3713 return err;
3714 kobject_uevent(&s->kobj, KOBJ_ADD);
3715 if (!unmergeable) {
3716 /* Setup first alias */
3717 sysfs_slab_alias(s, s->name);
3718 kfree(name);
3719 }
3720 return 0;
3721}
3722
3723static void sysfs_slab_remove(struct kmem_cache *s)
3724{
3725 kobject_uevent(&s->kobj, KOBJ_REMOVE);
3726 kobject_del(&s->kobj);
3727}
3728
3729/*
3730 * Need to buffer aliases during bootup until sysfs becomes
3731 * available lest we loose that information.
3732 */
3733struct saved_alias {
3734 struct kmem_cache *s;
3735 const char *name;
3736 struct saved_alias *next;
3737};
3738
Adrian Bunk5af328a2007-07-17 04:03:27 -07003739static struct saved_alias *alias_list;
Christoph Lameter81819f02007-05-06 14:49:36 -07003740
3741static int sysfs_slab_alias(struct kmem_cache *s, const char *name)
3742{
3743 struct saved_alias *al;
3744
3745 if (slab_state == SYSFS) {
3746 /*
3747 * If we have a leftover link then remove it.
3748 */
Linus Torvalds0f9008e2007-05-07 12:31:58 -07003749 sysfs_remove_link(&slab_subsys.kobj, name);
3750 return sysfs_create_link(&slab_subsys.kobj,
Christoph Lameter81819f02007-05-06 14:49:36 -07003751 &s->kobj, name);
3752 }
3753
3754 al = kmalloc(sizeof(struct saved_alias), GFP_KERNEL);
3755 if (!al)
3756 return -ENOMEM;
3757
3758 al->s = s;
3759 al->name = name;
3760 al->next = alias_list;
3761 alias_list = al;
3762 return 0;
3763}
3764
3765static int __init slab_sysfs_init(void)
3766{
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07003767 struct kmem_cache *s;
Christoph Lameter81819f02007-05-06 14:49:36 -07003768 int err;
3769
3770 err = subsystem_register(&slab_subsys);
3771 if (err) {
3772 printk(KERN_ERR "Cannot register slab subsystem.\n");
3773 return -ENOSYS;
3774 }
3775
Christoph Lameter26a7bd02007-05-09 02:32:39 -07003776 slab_state = SYSFS;
3777
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07003778 list_for_each_entry(s, &slab_caches, list) {
Christoph Lameter26a7bd02007-05-09 02:32:39 -07003779 err = sysfs_slab_add(s);
3780 BUG_ON(err);
3781 }
Christoph Lameter81819f02007-05-06 14:49:36 -07003782
3783 while (alias_list) {
3784 struct saved_alias *al = alias_list;
3785
3786 alias_list = alias_list->next;
3787 err = sysfs_slab_alias(al->s, al->name);
3788 BUG_ON(err);
3789 kfree(al);
3790 }
3791
3792 resiliency_test();
3793 return 0;
3794}
3795
3796__initcall(slab_sysfs_init);
Christoph Lameter81819f02007-05-06 14:49:36 -07003797#endif