blob: 23a2683d6c9f3ec7a68a48326567d04808d4b5c1 [file] [log] [blame]
Christoph Lameter81819f02007-05-06 14:49:36 -07001/*
2 * SLUB: A slab allocator that limits cache line use instead of queuing
3 * objects in per cpu and per node lists.
4 *
5 * The allocator synchronizes using per slab locks and only
6 * uses a centralized lock to manage a pool of partial slabs.
7 *
8 * (C) 2007 SGI, Christoph Lameter <clameter@sgi.com>
9 */
10
11#include <linux/mm.h>
12#include <linux/module.h>
13#include <linux/bit_spinlock.h>
14#include <linux/interrupt.h>
15#include <linux/bitops.h>
16#include <linux/slab.h>
17#include <linux/seq_file.h>
18#include <linux/cpu.h>
19#include <linux/cpuset.h>
20#include <linux/mempolicy.h>
21#include <linux/ctype.h>
22#include <linux/kallsyms.h>
Yasunori Gotob9049e22007-10-21 16:41:37 -070023#include <linux/memory.h>
Christoph Lameter81819f02007-05-06 14:49:36 -070024
25/*
26 * Lock order:
27 * 1. slab_lock(page)
28 * 2. slab->list_lock
29 *
30 * The slab_lock protects operations on the object of a particular
31 * slab and its metadata in the page struct. If the slab lock
32 * has been taken then no allocations nor frees can be performed
33 * on the objects in the slab nor can the slab be added or removed
34 * from the partial or full lists since this would mean modifying
35 * the page_struct of the slab.
36 *
37 * The list_lock protects the partial and full list on each node and
38 * the partial slab counter. If taken then no new slabs may be added or
39 * removed from the lists nor make the number of partial slabs be modified.
40 * (Note that the total number of slabs is an atomic value that may be
41 * modified without taking the list lock).
42 *
43 * The list_lock is a centralized lock and thus we avoid taking it as
44 * much as possible. As long as SLUB does not have to handle partial
45 * slabs, operations can continue without any centralized lock. F.e.
46 * allocating a long series of objects that fill up slabs does not require
47 * the list lock.
48 *
49 * The lock order is sometimes inverted when we are trying to get a slab
50 * off a list. We take the list_lock and then look for a page on the list
51 * to use. While we do that objects in the slabs may be freed. We can
52 * only operate on the slab if we have also taken the slab_lock. So we use
53 * a slab_trylock() on the slab. If trylock was successful then no frees
54 * can occur anymore and we can use the slab for allocations etc. If the
55 * slab_trylock() does not succeed then frees are in progress in the slab and
56 * we must stay away from it for a while since we may cause a bouncing
57 * cacheline if we try to acquire the lock. So go onto the next slab.
58 * If all pages are busy then we may allocate a new slab instead of reusing
59 * a partial slab. A new slab has noone operating on it and thus there is
60 * no danger of cacheline contention.
61 *
62 * Interrupts are disabled during allocation and deallocation in order to
63 * make the slab allocator safe to use in the context of an irq. In addition
64 * interrupts are disabled to ensure that the processor does not change
65 * while handling per_cpu slabs, due to kernel preemption.
66 *
67 * SLUB assigns one slab for allocation to each processor.
68 * Allocations only occur from these slabs called cpu slabs.
69 *
Christoph Lameter672bba32007-05-09 02:32:39 -070070 * Slabs with free elements are kept on a partial list and during regular
71 * operations no list for full slabs is used. If an object in a full slab is
Christoph Lameter81819f02007-05-06 14:49:36 -070072 * freed then the slab will show up again on the partial lists.
Christoph Lameter672bba32007-05-09 02:32:39 -070073 * We track full slabs for debugging purposes though because otherwise we
74 * cannot scan all objects.
Christoph Lameter81819f02007-05-06 14:49:36 -070075 *
76 * Slabs are freed when they become empty. Teardown and setup is
77 * minimal so we rely on the page allocators per cpu caches for
78 * fast frees and allocs.
79 *
80 * Overloading of page flags that are otherwise used for LRU management.
81 *
Christoph Lameter4b6f0752007-05-16 22:10:53 -070082 * PageActive The slab is frozen and exempt from list processing.
83 * This means that the slab is dedicated to a purpose
84 * such as satisfying allocations for a specific
85 * processor. Objects may be freed in the slab while
86 * it is frozen but slab_free will then skip the usual
87 * list operations. It is up to the processor holding
88 * the slab to integrate the slab into the slab lists
89 * when the slab is no longer needed.
90 *
91 * One use of this flag is to mark slabs that are
92 * used for allocations. Then such a slab becomes a cpu
93 * slab. The cpu slab may be equipped with an additional
Christoph Lameterdfb4f092007-10-16 01:26:05 -070094 * freelist that allows lockless access to
Christoph Lameter894b8782007-05-10 03:15:16 -070095 * free objects in addition to the regular freelist
96 * that requires the slab lock.
Christoph Lameter81819f02007-05-06 14:49:36 -070097 *
98 * PageError Slab requires special handling due to debug
99 * options set. This moves slab handling out of
Christoph Lameter894b8782007-05-10 03:15:16 -0700100 * the fast path and disables lockless freelists.
Christoph Lameter81819f02007-05-06 14:49:36 -0700101 */
102
Christoph Lameter5577bd82007-05-16 22:10:56 -0700103#define FROZEN (1 << PG_active)
104
105#ifdef CONFIG_SLUB_DEBUG
106#define SLABDEBUG (1 << PG_error)
107#else
108#define SLABDEBUG 0
109#endif
110
Christoph Lameter4b6f0752007-05-16 22:10:53 -0700111static inline int SlabFrozen(struct page *page)
112{
Christoph Lameter5577bd82007-05-16 22:10:56 -0700113 return page->flags & FROZEN;
Christoph Lameter4b6f0752007-05-16 22:10:53 -0700114}
115
116static inline void SetSlabFrozen(struct page *page)
117{
Christoph Lameter5577bd82007-05-16 22:10:56 -0700118 page->flags |= FROZEN;
Christoph Lameter4b6f0752007-05-16 22:10:53 -0700119}
120
121static inline void ClearSlabFrozen(struct page *page)
122{
Christoph Lameter5577bd82007-05-16 22:10:56 -0700123 page->flags &= ~FROZEN;
Christoph Lameter4b6f0752007-05-16 22:10:53 -0700124}
125
Christoph Lameter35e5d7e2007-05-09 02:32:42 -0700126static inline int SlabDebug(struct page *page)
127{
Christoph Lameter5577bd82007-05-16 22:10:56 -0700128 return page->flags & SLABDEBUG;
Christoph Lameter35e5d7e2007-05-09 02:32:42 -0700129}
130
131static inline void SetSlabDebug(struct page *page)
132{
Christoph Lameter5577bd82007-05-16 22:10:56 -0700133 page->flags |= SLABDEBUG;
Christoph Lameter35e5d7e2007-05-09 02:32:42 -0700134}
135
136static inline void ClearSlabDebug(struct page *page)
137{
Christoph Lameter5577bd82007-05-16 22:10:56 -0700138 page->flags &= ~SLABDEBUG;
Christoph Lameter35e5d7e2007-05-09 02:32:42 -0700139}
140
Christoph Lameter81819f02007-05-06 14:49:36 -0700141/*
142 * Issues still to be resolved:
143 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700144 * - Support PAGE_ALLOC_DEBUG. Should be easy to do.
145 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700146 * - Variable sizing of the per node arrays
147 */
148
149/* Enable to test recovery from slab corruption on boot */
150#undef SLUB_RESILIENCY_TEST
151
152#if PAGE_SHIFT <= 12
153
154/*
155 * Small page size. Make sure that we do not fragment memory
156 */
157#define DEFAULT_MAX_ORDER 1
158#define DEFAULT_MIN_OBJECTS 4
159
160#else
161
162/*
163 * Large page machines are customarily able to handle larger
164 * page orders.
165 */
166#define DEFAULT_MAX_ORDER 2
167#define DEFAULT_MIN_OBJECTS 8
168
169#endif
170
171/*
Christoph Lameter2086d262007-05-06 14:49:46 -0700172 * Mininum number of partial slabs. These will be left on the partial
173 * lists even if they are empty. kmem_cache_shrink may reclaim them.
174 */
Christoph Lameter76be8952007-12-21 14:37:37 -0800175#define MIN_PARTIAL 5
Christoph Lametere95eed52007-05-06 14:49:44 -0700176
Christoph Lameter2086d262007-05-06 14:49:46 -0700177/*
178 * Maximum number of desirable partial slabs.
179 * The existence of more partial slabs makes kmem_cache_shrink
180 * sort the partial list by the number of objects in the.
181 */
182#define MAX_PARTIAL 10
183
Christoph Lameter81819f02007-05-06 14:49:36 -0700184#define DEBUG_DEFAULT_FLAGS (SLAB_DEBUG_FREE | SLAB_RED_ZONE | \
185 SLAB_POISON | SLAB_STORE_USER)
Christoph Lameter672bba32007-05-09 02:32:39 -0700186
Christoph Lameter81819f02007-05-06 14:49:36 -0700187/*
188 * Set of flags that will prevent slab merging
189 */
190#define SLUB_NEVER_MERGE (SLAB_RED_ZONE | SLAB_POISON | SLAB_STORE_USER | \
191 SLAB_TRACE | SLAB_DESTROY_BY_RCU)
192
193#define SLUB_MERGE_SAME (SLAB_DEBUG_FREE | SLAB_RECLAIM_ACCOUNT | \
194 SLAB_CACHE_DMA)
195
196#ifndef ARCH_KMALLOC_MINALIGN
Christoph Lameter47bfdc02007-05-06 14:49:37 -0700197#define ARCH_KMALLOC_MINALIGN __alignof__(unsigned long long)
Christoph Lameter81819f02007-05-06 14:49:36 -0700198#endif
199
200#ifndef ARCH_SLAB_MINALIGN
Christoph Lameter47bfdc02007-05-06 14:49:37 -0700201#define ARCH_SLAB_MINALIGN __alignof__(unsigned long long)
Christoph Lameter81819f02007-05-06 14:49:36 -0700202#endif
203
204/* Internal SLUB flags */
Christoph Lameter1ceef402007-08-07 15:11:48 -0700205#define __OBJECT_POISON 0x80000000 /* Poison object */
206#define __SYSFS_ADD_DEFERRED 0x40000000 /* Not yet visible via sysfs */
Christoph Lameter81819f02007-05-06 14:49:36 -0700207
Christoph Lameter65c02d42007-05-09 02:32:35 -0700208/* Not all arches define cache_line_size */
209#ifndef cache_line_size
210#define cache_line_size() L1_CACHE_BYTES
211#endif
212
Christoph Lameter81819f02007-05-06 14:49:36 -0700213static int kmem_size = sizeof(struct kmem_cache);
214
215#ifdef CONFIG_SMP
216static struct notifier_block slab_notifier;
217#endif
218
219static enum {
220 DOWN, /* No slab functionality available */
221 PARTIAL, /* kmem_cache_open() works but kmalloc does not */
Christoph Lameter672bba32007-05-09 02:32:39 -0700222 UP, /* Everything works but does not show up in sysfs */
Christoph Lameter81819f02007-05-06 14:49:36 -0700223 SYSFS /* Sysfs up */
224} slab_state = DOWN;
225
226/* A list of all slab caches on the system */
227static DECLARE_RWSEM(slub_lock);
Adrian Bunk5af328a2007-07-17 04:03:27 -0700228static LIST_HEAD(slab_caches);
Christoph Lameter81819f02007-05-06 14:49:36 -0700229
Christoph Lameter02cbc872007-05-09 02:32:43 -0700230/*
231 * Tracking user of a slab.
232 */
233struct track {
234 void *addr; /* Called from address */
235 int cpu; /* Was running on cpu */
236 int pid; /* Pid context */
237 unsigned long when; /* When did the operation occur */
238};
239
240enum track_item { TRACK_ALLOC, TRACK_FREE };
241
Christoph Lameter41ecc552007-05-09 02:32:44 -0700242#if defined(CONFIG_SYSFS) && defined(CONFIG_SLUB_DEBUG)
Christoph Lameter81819f02007-05-06 14:49:36 -0700243static int sysfs_slab_add(struct kmem_cache *);
244static int sysfs_slab_alias(struct kmem_cache *, const char *);
245static void sysfs_slab_remove(struct kmem_cache *);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -0800246
Christoph Lameter81819f02007-05-06 14:49:36 -0700247#else
Christoph Lameter0c710012007-07-17 04:03:24 -0700248static inline int sysfs_slab_add(struct kmem_cache *s) { return 0; }
249static inline int sysfs_slab_alias(struct kmem_cache *s, const char *p)
250 { return 0; }
Christoph Lameter151c6022008-01-07 22:29:05 -0800251static inline void sysfs_slab_remove(struct kmem_cache *s)
252{
253 kfree(s);
254}
Christoph Lameter8ff12cf2008-02-07 17:47:41 -0800255
Christoph Lameter81819f02007-05-06 14:49:36 -0700256#endif
257
Christoph Lameter8ff12cf2008-02-07 17:47:41 -0800258static inline void stat(struct kmem_cache_cpu *c, enum stat_item si)
259{
260#ifdef CONFIG_SLUB_STATS
261 c->stat[si]++;
262#endif
263}
264
Christoph Lameter81819f02007-05-06 14:49:36 -0700265/********************************************************************
266 * Core slab cache functions
267 *******************************************************************/
268
269int slab_is_available(void)
270{
271 return slab_state >= UP;
272}
273
274static inline struct kmem_cache_node *get_node(struct kmem_cache *s, int node)
275{
276#ifdef CONFIG_NUMA
277 return s->node[node];
278#else
279 return &s->local_node;
280#endif
281}
282
Christoph Lameterdfb4f092007-10-16 01:26:05 -0700283static inline struct kmem_cache_cpu *get_cpu_slab(struct kmem_cache *s, int cpu)
284{
Christoph Lameter4c93c3552007-10-16 01:26:08 -0700285#ifdef CONFIG_SMP
286 return s->cpu_slab[cpu];
287#else
288 return &s->cpu_slab;
289#endif
Christoph Lameterdfb4f092007-10-16 01:26:05 -0700290}
291
Christoph Lameter6446faa2008-02-15 23:45:26 -0800292/* Verify that a pointer has an address that is valid within a slab page */
Christoph Lameter02cbc872007-05-09 02:32:43 -0700293static inline int check_valid_pointer(struct kmem_cache *s,
294 struct page *page, const void *object)
295{
296 void *base;
297
Christoph Lametera973e9d2008-03-01 13:40:44 -0800298 if (!object)
Christoph Lameter02cbc872007-05-09 02:32:43 -0700299 return 1;
300
Christoph Lametera973e9d2008-03-01 13:40:44 -0800301 base = page_address(page);
Christoph Lameter39b26462008-04-14 19:11:30 +0300302 if (object < base || object >= base + page->objects * s->size ||
Christoph Lameter02cbc872007-05-09 02:32:43 -0700303 (object - base) % s->size) {
304 return 0;
305 }
306
307 return 1;
308}
309
Christoph Lameter81819f02007-05-06 14:49:36 -0700310/*
Christoph Lameter7656c722007-05-09 02:32:40 -0700311 * Slow version of get and set free pointer.
312 *
313 * This version requires touching the cache lines of kmem_cache which
314 * we avoid to do in the fast alloc free paths. There we obtain the offset
315 * from the page struct.
316 */
317static inline void *get_freepointer(struct kmem_cache *s, void *object)
318{
319 return *(void **)(object + s->offset);
320}
321
322static inline void set_freepointer(struct kmem_cache *s, void *object, void *fp)
323{
324 *(void **)(object + s->offset) = fp;
325}
326
327/* Loop over all objects in a slab */
Christoph Lameter224a88b2008-04-14 19:11:31 +0300328#define for_each_object(__p, __s, __addr, __objects) \
329 for (__p = (__addr); __p < (__addr) + (__objects) * (__s)->size;\
Christoph Lameter7656c722007-05-09 02:32:40 -0700330 __p += (__s)->size)
331
332/* Scan freelist */
333#define for_each_free_object(__p, __s, __free) \
Christoph Lametera973e9d2008-03-01 13:40:44 -0800334 for (__p = (__free); __p; __p = get_freepointer((__s), __p))
Christoph Lameter7656c722007-05-09 02:32:40 -0700335
336/* Determine object index from a given position */
337static inline int slab_index(void *p, struct kmem_cache *s, void *addr)
338{
339 return (p - addr) / s->size;
340}
341
Christoph Lameter834f3d12008-04-14 19:11:31 +0300342static inline struct kmem_cache_order_objects oo_make(int order,
343 unsigned long size)
344{
345 struct kmem_cache_order_objects x = {
346 (order << 16) + (PAGE_SIZE << order) / size
347 };
348
349 return x;
350}
351
352static inline int oo_order(struct kmem_cache_order_objects x)
353{
354 return x.x >> 16;
355}
356
357static inline int oo_objects(struct kmem_cache_order_objects x)
358{
359 return x.x & ((1 << 16) - 1);
360}
361
Christoph Lameter41ecc552007-05-09 02:32:44 -0700362#ifdef CONFIG_SLUB_DEBUG
363/*
364 * Debug settings:
365 */
Christoph Lameterf0630ff2007-07-15 23:38:14 -0700366#ifdef CONFIG_SLUB_DEBUG_ON
367static int slub_debug = DEBUG_DEFAULT_FLAGS;
368#else
Christoph Lameter41ecc552007-05-09 02:32:44 -0700369static int slub_debug;
Christoph Lameterf0630ff2007-07-15 23:38:14 -0700370#endif
Christoph Lameter41ecc552007-05-09 02:32:44 -0700371
372static char *slub_debug_slabs;
373
Christoph Lameter7656c722007-05-09 02:32:40 -0700374/*
Christoph Lameter81819f02007-05-06 14:49:36 -0700375 * Object debugging
376 */
377static void print_section(char *text, u8 *addr, unsigned int length)
378{
379 int i, offset;
380 int newline = 1;
381 char ascii[17];
382
383 ascii[16] = 0;
384
385 for (i = 0; i < length; i++) {
386 if (newline) {
Christoph Lameter24922682007-07-17 04:03:18 -0700387 printk(KERN_ERR "%8s 0x%p: ", text, addr + i);
Christoph Lameter81819f02007-05-06 14:49:36 -0700388 newline = 0;
389 }
Pekka Enberg06428782008-01-07 23:20:27 -0800390 printk(KERN_CONT " %02x", addr[i]);
Christoph Lameter81819f02007-05-06 14:49:36 -0700391 offset = i % 16;
392 ascii[offset] = isgraph(addr[i]) ? addr[i] : '.';
393 if (offset == 15) {
Pekka Enberg06428782008-01-07 23:20:27 -0800394 printk(KERN_CONT " %s\n", ascii);
Christoph Lameter81819f02007-05-06 14:49:36 -0700395 newline = 1;
396 }
397 }
398 if (!newline) {
399 i %= 16;
400 while (i < 16) {
Pekka Enberg06428782008-01-07 23:20:27 -0800401 printk(KERN_CONT " ");
Christoph Lameter81819f02007-05-06 14:49:36 -0700402 ascii[i] = ' ';
403 i++;
404 }
Pekka Enberg06428782008-01-07 23:20:27 -0800405 printk(KERN_CONT " %s\n", ascii);
Christoph Lameter81819f02007-05-06 14:49:36 -0700406 }
407}
408
Christoph Lameter81819f02007-05-06 14:49:36 -0700409static struct track *get_track(struct kmem_cache *s, void *object,
410 enum track_item alloc)
411{
412 struct track *p;
413
414 if (s->offset)
415 p = object + s->offset + sizeof(void *);
416 else
417 p = object + s->inuse;
418
419 return p + alloc;
420}
421
422static void set_track(struct kmem_cache *s, void *object,
423 enum track_item alloc, void *addr)
424{
425 struct track *p;
426
427 if (s->offset)
428 p = object + s->offset + sizeof(void *);
429 else
430 p = object + s->inuse;
431
432 p += alloc;
433 if (addr) {
434 p->addr = addr;
435 p->cpu = smp_processor_id();
436 p->pid = current ? current->pid : -1;
437 p->when = jiffies;
438 } else
439 memset(p, 0, sizeof(struct track));
440}
441
Christoph Lameter81819f02007-05-06 14:49:36 -0700442static void init_tracking(struct kmem_cache *s, void *object)
443{
Christoph Lameter24922682007-07-17 04:03:18 -0700444 if (!(s->flags & SLAB_STORE_USER))
445 return;
446
447 set_track(s, object, TRACK_FREE, NULL);
448 set_track(s, object, TRACK_ALLOC, NULL);
Christoph Lameter81819f02007-05-06 14:49:36 -0700449}
450
451static void print_track(const char *s, struct track *t)
452{
453 if (!t->addr)
454 return;
455
Christoph Lameter24922682007-07-17 04:03:18 -0700456 printk(KERN_ERR "INFO: %s in ", s);
Christoph Lameter81819f02007-05-06 14:49:36 -0700457 __print_symbol("%s", (unsigned long)t->addr);
Christoph Lameter24922682007-07-17 04:03:18 -0700458 printk(" age=%lu cpu=%u pid=%d\n", jiffies - t->when, t->cpu, t->pid);
Christoph Lameter81819f02007-05-06 14:49:36 -0700459}
460
Christoph Lameter24922682007-07-17 04:03:18 -0700461static void print_tracking(struct kmem_cache *s, void *object)
462{
463 if (!(s->flags & SLAB_STORE_USER))
464 return;
465
466 print_track("Allocated", get_track(s, object, TRACK_ALLOC));
467 print_track("Freed", get_track(s, object, TRACK_FREE));
468}
469
470static void print_page_info(struct page *page)
471{
Christoph Lameter39b26462008-04-14 19:11:30 +0300472 printk(KERN_ERR "INFO: Slab 0x%p objects=%u used=%u fp=0x%p flags=0x%04lx\n",
473 page, page->objects, page->inuse, page->freelist, page->flags);
Christoph Lameter24922682007-07-17 04:03:18 -0700474
475}
476
477static void slab_bug(struct kmem_cache *s, char *fmt, ...)
478{
479 va_list args;
480 char buf[100];
481
482 va_start(args, fmt);
483 vsnprintf(buf, sizeof(buf), fmt, args);
484 va_end(args);
485 printk(KERN_ERR "========================================"
486 "=====================================\n");
487 printk(KERN_ERR "BUG %s: %s\n", s->name, buf);
488 printk(KERN_ERR "----------------------------------------"
489 "-------------------------------------\n\n");
490}
491
492static void slab_fix(struct kmem_cache *s, char *fmt, ...)
493{
494 va_list args;
495 char buf[100];
496
497 va_start(args, fmt);
498 vsnprintf(buf, sizeof(buf), fmt, args);
499 va_end(args);
500 printk(KERN_ERR "FIX %s: %s\n", s->name, buf);
501}
502
503static void print_trailer(struct kmem_cache *s, struct page *page, u8 *p)
Christoph Lameter81819f02007-05-06 14:49:36 -0700504{
505 unsigned int off; /* Offset of last byte */
Christoph Lametera973e9d2008-03-01 13:40:44 -0800506 u8 *addr = page_address(page);
Christoph Lameter24922682007-07-17 04:03:18 -0700507
508 print_tracking(s, p);
509
510 print_page_info(page);
511
512 printk(KERN_ERR "INFO: Object 0x%p @offset=%tu fp=0x%p\n\n",
513 p, p - addr, get_freepointer(s, p));
514
515 if (p > addr + 16)
516 print_section("Bytes b4", p - 16, 16);
517
518 print_section("Object", p, min(s->objsize, 128));
Christoph Lameter81819f02007-05-06 14:49:36 -0700519
520 if (s->flags & SLAB_RED_ZONE)
521 print_section("Redzone", p + s->objsize,
522 s->inuse - s->objsize);
523
Christoph Lameter81819f02007-05-06 14:49:36 -0700524 if (s->offset)
525 off = s->offset + sizeof(void *);
526 else
527 off = s->inuse;
528
Christoph Lameter24922682007-07-17 04:03:18 -0700529 if (s->flags & SLAB_STORE_USER)
Christoph Lameter81819f02007-05-06 14:49:36 -0700530 off += 2 * sizeof(struct track);
Christoph Lameter81819f02007-05-06 14:49:36 -0700531
532 if (off != s->size)
533 /* Beginning of the filler is the free pointer */
Christoph Lameter24922682007-07-17 04:03:18 -0700534 print_section("Padding", p + off, s->size - off);
535
536 dump_stack();
Christoph Lameter81819f02007-05-06 14:49:36 -0700537}
538
539static void object_err(struct kmem_cache *s, struct page *page,
540 u8 *object, char *reason)
541{
Christoph Lameter3dc50632008-04-23 12:28:01 -0700542 slab_bug(s, "%s", reason);
Christoph Lameter24922682007-07-17 04:03:18 -0700543 print_trailer(s, page, object);
Christoph Lameter81819f02007-05-06 14:49:36 -0700544}
545
Christoph Lameter24922682007-07-17 04:03:18 -0700546static void slab_err(struct kmem_cache *s, struct page *page, char *fmt, ...)
Christoph Lameter81819f02007-05-06 14:49:36 -0700547{
548 va_list args;
549 char buf[100];
550
Christoph Lameter24922682007-07-17 04:03:18 -0700551 va_start(args, fmt);
552 vsnprintf(buf, sizeof(buf), fmt, args);
Christoph Lameter81819f02007-05-06 14:49:36 -0700553 va_end(args);
Christoph Lameter3dc50632008-04-23 12:28:01 -0700554 slab_bug(s, "%s", buf);
Christoph Lameter24922682007-07-17 04:03:18 -0700555 print_page_info(page);
Christoph Lameter81819f02007-05-06 14:49:36 -0700556 dump_stack();
557}
558
559static void init_object(struct kmem_cache *s, void *object, int active)
560{
561 u8 *p = object;
562
563 if (s->flags & __OBJECT_POISON) {
564 memset(p, POISON_FREE, s->objsize - 1);
Pekka Enberg06428782008-01-07 23:20:27 -0800565 p[s->objsize - 1] = POISON_END;
Christoph Lameter81819f02007-05-06 14:49:36 -0700566 }
567
568 if (s->flags & SLAB_RED_ZONE)
569 memset(p + s->objsize,
570 active ? SLUB_RED_ACTIVE : SLUB_RED_INACTIVE,
571 s->inuse - s->objsize);
572}
573
Christoph Lameter24922682007-07-17 04:03:18 -0700574static u8 *check_bytes(u8 *start, unsigned int value, unsigned int bytes)
Christoph Lameter81819f02007-05-06 14:49:36 -0700575{
576 while (bytes) {
577 if (*start != (u8)value)
Christoph Lameter24922682007-07-17 04:03:18 -0700578 return start;
Christoph Lameter81819f02007-05-06 14:49:36 -0700579 start++;
580 bytes--;
581 }
Christoph Lameter24922682007-07-17 04:03:18 -0700582 return NULL;
583}
584
585static void restore_bytes(struct kmem_cache *s, char *message, u8 data,
586 void *from, void *to)
587{
588 slab_fix(s, "Restoring 0x%p-0x%p=0x%x\n", from, to - 1, data);
589 memset(from, data, to - from);
590}
591
592static int check_bytes_and_report(struct kmem_cache *s, struct page *page,
593 u8 *object, char *what,
Pekka Enberg06428782008-01-07 23:20:27 -0800594 u8 *start, unsigned int value, unsigned int bytes)
Christoph Lameter24922682007-07-17 04:03:18 -0700595{
596 u8 *fault;
597 u8 *end;
598
599 fault = check_bytes(start, value, bytes);
600 if (!fault)
601 return 1;
602
603 end = start + bytes;
604 while (end > fault && end[-1] == value)
605 end--;
606
607 slab_bug(s, "%s overwritten", what);
608 printk(KERN_ERR "INFO: 0x%p-0x%p. First byte 0x%x instead of 0x%x\n",
609 fault, end - 1, fault[0], value);
610 print_trailer(s, page, object);
611
612 restore_bytes(s, what, value, fault, end);
613 return 0;
Christoph Lameter81819f02007-05-06 14:49:36 -0700614}
615
Christoph Lameter81819f02007-05-06 14:49:36 -0700616/*
617 * Object layout:
618 *
619 * object address
620 * Bytes of the object to be managed.
621 * If the freepointer may overlay the object then the free
622 * pointer is the first word of the object.
Christoph Lameter672bba32007-05-09 02:32:39 -0700623 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700624 * Poisoning uses 0x6b (POISON_FREE) and the last byte is
625 * 0xa5 (POISON_END)
626 *
627 * object + s->objsize
628 * Padding to reach word boundary. This is also used for Redzoning.
Christoph Lameter672bba32007-05-09 02:32:39 -0700629 * Padding is extended by another word if Redzoning is enabled and
630 * objsize == inuse.
631 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700632 * We fill with 0xbb (RED_INACTIVE) for inactive objects and with
633 * 0xcc (RED_ACTIVE) for objects in use.
634 *
635 * object + s->inuse
Christoph Lameter672bba32007-05-09 02:32:39 -0700636 * Meta data starts here.
637 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700638 * A. Free pointer (if we cannot overwrite object on free)
639 * B. Tracking data for SLAB_STORE_USER
Christoph Lameter672bba32007-05-09 02:32:39 -0700640 * C. Padding to reach required alignment boundary or at mininum
Christoph Lameter6446faa2008-02-15 23:45:26 -0800641 * one word if debugging is on to be able to detect writes
Christoph Lameter672bba32007-05-09 02:32:39 -0700642 * before the word boundary.
643 *
644 * Padding is done using 0x5a (POISON_INUSE)
Christoph Lameter81819f02007-05-06 14:49:36 -0700645 *
646 * object + s->size
Christoph Lameter672bba32007-05-09 02:32:39 -0700647 * Nothing is used beyond s->size.
Christoph Lameter81819f02007-05-06 14:49:36 -0700648 *
Christoph Lameter672bba32007-05-09 02:32:39 -0700649 * If slabcaches are merged then the objsize and inuse boundaries are mostly
650 * ignored. And therefore no slab options that rely on these boundaries
Christoph Lameter81819f02007-05-06 14:49:36 -0700651 * may be used with merged slabcaches.
652 */
653
Christoph Lameter81819f02007-05-06 14:49:36 -0700654static int check_pad_bytes(struct kmem_cache *s, struct page *page, u8 *p)
655{
656 unsigned long off = s->inuse; /* The end of info */
657
658 if (s->offset)
659 /* Freepointer is placed after the object. */
660 off += sizeof(void *);
661
662 if (s->flags & SLAB_STORE_USER)
663 /* We also have user information there */
664 off += 2 * sizeof(struct track);
665
666 if (s->size == off)
667 return 1;
668
Christoph Lameter24922682007-07-17 04:03:18 -0700669 return check_bytes_and_report(s, page, p, "Object padding",
670 p + off, POISON_INUSE, s->size - off);
Christoph Lameter81819f02007-05-06 14:49:36 -0700671}
672
Christoph Lameter39b26462008-04-14 19:11:30 +0300673/* Check the pad bytes at the end of a slab page */
Christoph Lameter81819f02007-05-06 14:49:36 -0700674static int slab_pad_check(struct kmem_cache *s, struct page *page)
675{
Christoph Lameter24922682007-07-17 04:03:18 -0700676 u8 *start;
677 u8 *fault;
678 u8 *end;
679 int length;
680 int remainder;
Christoph Lameter81819f02007-05-06 14:49:36 -0700681
682 if (!(s->flags & SLAB_POISON))
683 return 1;
684
Christoph Lametera973e9d2008-03-01 13:40:44 -0800685 start = page_address(page);
Christoph Lameter834f3d12008-04-14 19:11:31 +0300686 length = (PAGE_SIZE << compound_order(page));
Christoph Lameter39b26462008-04-14 19:11:30 +0300687 end = start + length;
688 remainder = length % s->size;
Christoph Lameter81819f02007-05-06 14:49:36 -0700689 if (!remainder)
690 return 1;
691
Christoph Lameter39b26462008-04-14 19:11:30 +0300692 fault = check_bytes(end - remainder, POISON_INUSE, remainder);
Christoph Lameter24922682007-07-17 04:03:18 -0700693 if (!fault)
694 return 1;
695 while (end > fault && end[-1] == POISON_INUSE)
696 end--;
697
698 slab_err(s, page, "Padding overwritten. 0x%p-0x%p", fault, end - 1);
Christoph Lameter39b26462008-04-14 19:11:30 +0300699 print_section("Padding", end - remainder, remainder);
Christoph Lameter24922682007-07-17 04:03:18 -0700700
701 restore_bytes(s, "slab padding", POISON_INUSE, start, end);
702 return 0;
Christoph Lameter81819f02007-05-06 14:49:36 -0700703}
704
705static int check_object(struct kmem_cache *s, struct page *page,
706 void *object, int active)
707{
708 u8 *p = object;
709 u8 *endobject = object + s->objsize;
710
711 if (s->flags & SLAB_RED_ZONE) {
712 unsigned int red =
713 active ? SLUB_RED_ACTIVE : SLUB_RED_INACTIVE;
714
Christoph Lameter24922682007-07-17 04:03:18 -0700715 if (!check_bytes_and_report(s, page, object, "Redzone",
716 endobject, red, s->inuse - s->objsize))
Christoph Lameter81819f02007-05-06 14:49:36 -0700717 return 0;
Christoph Lameter81819f02007-05-06 14:49:36 -0700718 } else {
Ingo Molnar3adbefe2008-02-05 17:57:39 -0800719 if ((s->flags & SLAB_POISON) && s->objsize < s->inuse) {
720 check_bytes_and_report(s, page, p, "Alignment padding",
721 endobject, POISON_INUSE, s->inuse - s->objsize);
722 }
Christoph Lameter81819f02007-05-06 14:49:36 -0700723 }
724
725 if (s->flags & SLAB_POISON) {
726 if (!active && (s->flags & __OBJECT_POISON) &&
Christoph Lameter24922682007-07-17 04:03:18 -0700727 (!check_bytes_and_report(s, page, p, "Poison", p,
728 POISON_FREE, s->objsize - 1) ||
729 !check_bytes_and_report(s, page, p, "Poison",
Pekka Enberg06428782008-01-07 23:20:27 -0800730 p + s->objsize - 1, POISON_END, 1)))
Christoph Lameter81819f02007-05-06 14:49:36 -0700731 return 0;
Christoph Lameter81819f02007-05-06 14:49:36 -0700732 /*
733 * check_pad_bytes cleans up on its own.
734 */
735 check_pad_bytes(s, page, p);
736 }
737
738 if (!s->offset && active)
739 /*
740 * Object and freepointer overlap. Cannot check
741 * freepointer while object is allocated.
742 */
743 return 1;
744
745 /* Check free pointer validity */
746 if (!check_valid_pointer(s, page, get_freepointer(s, p))) {
747 object_err(s, page, p, "Freepointer corrupt");
748 /*
749 * No choice but to zap it and thus loose the remainder
750 * of the free objects in this slab. May cause
Christoph Lameter672bba32007-05-09 02:32:39 -0700751 * another error because the object count is now wrong.
Christoph Lameter81819f02007-05-06 14:49:36 -0700752 */
Christoph Lametera973e9d2008-03-01 13:40:44 -0800753 set_freepointer(s, p, NULL);
Christoph Lameter81819f02007-05-06 14:49:36 -0700754 return 0;
755 }
756 return 1;
757}
758
759static int check_slab(struct kmem_cache *s, struct page *page)
760{
Christoph Lameter39b26462008-04-14 19:11:30 +0300761 int maxobj;
762
Christoph Lameter81819f02007-05-06 14:49:36 -0700763 VM_BUG_ON(!irqs_disabled());
764
765 if (!PageSlab(page)) {
Christoph Lameter24922682007-07-17 04:03:18 -0700766 slab_err(s, page, "Not a valid slab page");
Christoph Lameter81819f02007-05-06 14:49:36 -0700767 return 0;
768 }
Christoph Lameter39b26462008-04-14 19:11:30 +0300769
770 maxobj = (PAGE_SIZE << compound_order(page)) / s->size;
771 if (page->objects > maxobj) {
772 slab_err(s, page, "objects %u > max %u",
773 s->name, page->objects, maxobj);
774 return 0;
775 }
776 if (page->inuse > page->objects) {
Christoph Lameter24922682007-07-17 04:03:18 -0700777 slab_err(s, page, "inuse %u > max %u",
Christoph Lameter39b26462008-04-14 19:11:30 +0300778 s->name, page->inuse, page->objects);
Christoph Lameter81819f02007-05-06 14:49:36 -0700779 return 0;
780 }
781 /* Slab_pad_check fixes things up after itself */
782 slab_pad_check(s, page);
783 return 1;
784}
785
786/*
Christoph Lameter672bba32007-05-09 02:32:39 -0700787 * Determine if a certain object on a page is on the freelist. Must hold the
788 * slab lock to guarantee that the chains are in a consistent state.
Christoph Lameter81819f02007-05-06 14:49:36 -0700789 */
790static int on_freelist(struct kmem_cache *s, struct page *page, void *search)
791{
792 int nr = 0;
793 void *fp = page->freelist;
794 void *object = NULL;
Christoph Lameter224a88b2008-04-14 19:11:31 +0300795 unsigned long max_objects;
Christoph Lameter81819f02007-05-06 14:49:36 -0700796
Christoph Lameter39b26462008-04-14 19:11:30 +0300797 while (fp && nr <= page->objects) {
Christoph Lameter81819f02007-05-06 14:49:36 -0700798 if (fp == search)
799 return 1;
800 if (!check_valid_pointer(s, page, fp)) {
801 if (object) {
802 object_err(s, page, object,
803 "Freechain corrupt");
Christoph Lametera973e9d2008-03-01 13:40:44 -0800804 set_freepointer(s, object, NULL);
Christoph Lameter81819f02007-05-06 14:49:36 -0700805 break;
806 } else {
Christoph Lameter24922682007-07-17 04:03:18 -0700807 slab_err(s, page, "Freepointer corrupt");
Christoph Lametera973e9d2008-03-01 13:40:44 -0800808 page->freelist = NULL;
Christoph Lameter39b26462008-04-14 19:11:30 +0300809 page->inuse = page->objects;
Christoph Lameter24922682007-07-17 04:03:18 -0700810 slab_fix(s, "Freelist cleared");
Christoph Lameter81819f02007-05-06 14:49:36 -0700811 return 0;
812 }
813 break;
814 }
815 object = fp;
816 fp = get_freepointer(s, object);
817 nr++;
818 }
819
Christoph Lameter224a88b2008-04-14 19:11:31 +0300820 max_objects = (PAGE_SIZE << compound_order(page)) / s->size;
821 if (max_objects > 65535)
822 max_objects = 65535;
823
824 if (page->objects != max_objects) {
825 slab_err(s, page, "Wrong number of objects. Found %d but "
826 "should be %d", page->objects, max_objects);
827 page->objects = max_objects;
828 slab_fix(s, "Number of objects adjusted.");
829 }
Christoph Lameter39b26462008-04-14 19:11:30 +0300830 if (page->inuse != page->objects - nr) {
Christoph Lameter70d71222007-05-06 14:49:47 -0700831 slab_err(s, page, "Wrong object count. Counter is %d but "
Christoph Lameter39b26462008-04-14 19:11:30 +0300832 "counted were %d", page->inuse, page->objects - nr);
833 page->inuse = page->objects - nr;
Christoph Lameter24922682007-07-17 04:03:18 -0700834 slab_fix(s, "Object count adjusted.");
Christoph Lameter81819f02007-05-06 14:49:36 -0700835 }
836 return search == NULL;
837}
838
Christoph Lameter3ec09742007-05-16 22:11:00 -0700839static void trace(struct kmem_cache *s, struct page *page, void *object, int alloc)
840{
841 if (s->flags & SLAB_TRACE) {
842 printk(KERN_INFO "TRACE %s %s 0x%p inuse=%d fp=0x%p\n",
843 s->name,
844 alloc ? "alloc" : "free",
845 object, page->inuse,
846 page->freelist);
847
848 if (!alloc)
849 print_section("Object", (void *)object, s->objsize);
850
851 dump_stack();
852 }
853}
854
Christoph Lameter643b1132007-05-06 14:49:42 -0700855/*
Christoph Lameter672bba32007-05-09 02:32:39 -0700856 * Tracking of fully allocated slabs for debugging purposes.
Christoph Lameter643b1132007-05-06 14:49:42 -0700857 */
Christoph Lametere95eed52007-05-06 14:49:44 -0700858static void add_full(struct kmem_cache_node *n, struct page *page)
Christoph Lameter643b1132007-05-06 14:49:42 -0700859{
Christoph Lameter643b1132007-05-06 14:49:42 -0700860 spin_lock(&n->list_lock);
861 list_add(&page->lru, &n->full);
862 spin_unlock(&n->list_lock);
863}
864
865static void remove_full(struct kmem_cache *s, struct page *page)
866{
867 struct kmem_cache_node *n;
868
869 if (!(s->flags & SLAB_STORE_USER))
870 return;
871
872 n = get_node(s, page_to_nid(page));
873
874 spin_lock(&n->list_lock);
875 list_del(&page->lru);
876 spin_unlock(&n->list_lock);
877}
878
Christoph Lameter0f389ec2008-04-14 18:53:02 +0300879/* Tracking of the number of slabs for debugging purposes */
880static inline unsigned long slabs_node(struct kmem_cache *s, int node)
881{
882 struct kmem_cache_node *n = get_node(s, node);
883
884 return atomic_long_read(&n->nr_slabs);
885}
886
Christoph Lameter205ab992008-04-14 19:11:40 +0300887static inline void inc_slabs_node(struct kmem_cache *s, int node, int objects)
Christoph Lameter0f389ec2008-04-14 18:53:02 +0300888{
889 struct kmem_cache_node *n = get_node(s, node);
890
891 /*
892 * May be called early in order to allocate a slab for the
893 * kmem_cache_node structure. Solve the chicken-egg
894 * dilemma by deferring the increment of the count during
895 * bootstrap (see early_kmem_cache_node_alloc).
896 */
Christoph Lameter205ab992008-04-14 19:11:40 +0300897 if (!NUMA_BUILD || n) {
Christoph Lameter0f389ec2008-04-14 18:53:02 +0300898 atomic_long_inc(&n->nr_slabs);
Christoph Lameter205ab992008-04-14 19:11:40 +0300899 atomic_long_add(objects, &n->total_objects);
900 }
Christoph Lameter0f389ec2008-04-14 18:53:02 +0300901}
Christoph Lameter205ab992008-04-14 19:11:40 +0300902static inline void dec_slabs_node(struct kmem_cache *s, int node, int objects)
Christoph Lameter0f389ec2008-04-14 18:53:02 +0300903{
904 struct kmem_cache_node *n = get_node(s, node);
905
906 atomic_long_dec(&n->nr_slabs);
Christoph Lameter205ab992008-04-14 19:11:40 +0300907 atomic_long_sub(objects, &n->total_objects);
Christoph Lameter0f389ec2008-04-14 18:53:02 +0300908}
909
910/* Object debug checks for alloc/free paths */
Christoph Lameter3ec09742007-05-16 22:11:00 -0700911static void setup_object_debug(struct kmem_cache *s, struct page *page,
912 void *object)
913{
914 if (!(s->flags & (SLAB_STORE_USER|SLAB_RED_ZONE|__OBJECT_POISON)))
915 return;
916
917 init_object(s, object, 0);
918 init_tracking(s, object);
919}
920
921static int alloc_debug_processing(struct kmem_cache *s, struct page *page,
922 void *object, void *addr)
Christoph Lameter81819f02007-05-06 14:49:36 -0700923{
924 if (!check_slab(s, page))
925 goto bad;
926
Christoph Lameterd692ef62008-02-15 23:45:24 -0800927 if (!on_freelist(s, page, object)) {
Christoph Lameter24922682007-07-17 04:03:18 -0700928 object_err(s, page, object, "Object already allocated");
Christoph Lameter70d71222007-05-06 14:49:47 -0700929 goto bad;
Christoph Lameter81819f02007-05-06 14:49:36 -0700930 }
931
932 if (!check_valid_pointer(s, page, object)) {
933 object_err(s, page, object, "Freelist Pointer check fails");
Christoph Lameter70d71222007-05-06 14:49:47 -0700934 goto bad;
Christoph Lameter81819f02007-05-06 14:49:36 -0700935 }
936
Christoph Lameterd692ef62008-02-15 23:45:24 -0800937 if (!check_object(s, page, object, 0))
Christoph Lameter81819f02007-05-06 14:49:36 -0700938 goto bad;
Christoph Lameter81819f02007-05-06 14:49:36 -0700939
Christoph Lameter3ec09742007-05-16 22:11:00 -0700940 /* Success perform special debug activities for allocs */
941 if (s->flags & SLAB_STORE_USER)
942 set_track(s, object, TRACK_ALLOC, addr);
943 trace(s, page, object, 1);
944 init_object(s, object, 1);
Christoph Lameter81819f02007-05-06 14:49:36 -0700945 return 1;
Christoph Lameter3ec09742007-05-16 22:11:00 -0700946
Christoph Lameter81819f02007-05-06 14:49:36 -0700947bad:
948 if (PageSlab(page)) {
949 /*
950 * If this is a slab page then lets do the best we can
951 * to avoid issues in the future. Marking all objects
Christoph Lameter672bba32007-05-09 02:32:39 -0700952 * as used avoids touching the remaining objects.
Christoph Lameter81819f02007-05-06 14:49:36 -0700953 */
Christoph Lameter24922682007-07-17 04:03:18 -0700954 slab_fix(s, "Marking all objects used");
Christoph Lameter39b26462008-04-14 19:11:30 +0300955 page->inuse = page->objects;
Christoph Lametera973e9d2008-03-01 13:40:44 -0800956 page->freelist = NULL;
Christoph Lameter81819f02007-05-06 14:49:36 -0700957 }
958 return 0;
959}
960
Christoph Lameter3ec09742007-05-16 22:11:00 -0700961static int free_debug_processing(struct kmem_cache *s, struct page *page,
962 void *object, void *addr)
Christoph Lameter81819f02007-05-06 14:49:36 -0700963{
964 if (!check_slab(s, page))
965 goto fail;
966
967 if (!check_valid_pointer(s, page, object)) {
Christoph Lameter70d71222007-05-06 14:49:47 -0700968 slab_err(s, page, "Invalid object pointer 0x%p", object);
Christoph Lameter81819f02007-05-06 14:49:36 -0700969 goto fail;
970 }
971
972 if (on_freelist(s, page, object)) {
Christoph Lameter24922682007-07-17 04:03:18 -0700973 object_err(s, page, object, "Object already free");
Christoph Lameter81819f02007-05-06 14:49:36 -0700974 goto fail;
975 }
976
977 if (!check_object(s, page, object, 1))
978 return 0;
979
980 if (unlikely(s != page->slab)) {
Ingo Molnar3adbefe2008-02-05 17:57:39 -0800981 if (!PageSlab(page)) {
Christoph Lameter70d71222007-05-06 14:49:47 -0700982 slab_err(s, page, "Attempt to free object(0x%p) "
983 "outside of slab", object);
Ingo Molnar3adbefe2008-02-05 17:57:39 -0800984 } else if (!page->slab) {
Christoph Lameter81819f02007-05-06 14:49:36 -0700985 printk(KERN_ERR
Christoph Lameter70d71222007-05-06 14:49:47 -0700986 "SLUB <none>: no slab for object 0x%p.\n",
Christoph Lameter81819f02007-05-06 14:49:36 -0700987 object);
Christoph Lameter70d71222007-05-06 14:49:47 -0700988 dump_stack();
Pekka Enberg06428782008-01-07 23:20:27 -0800989 } else
Christoph Lameter24922682007-07-17 04:03:18 -0700990 object_err(s, page, object,
991 "page slab pointer corrupt.");
Christoph Lameter81819f02007-05-06 14:49:36 -0700992 goto fail;
993 }
Christoph Lameter3ec09742007-05-16 22:11:00 -0700994
995 /* Special debug activities for freeing objects */
Christoph Lametera973e9d2008-03-01 13:40:44 -0800996 if (!SlabFrozen(page) && !page->freelist)
Christoph Lameter3ec09742007-05-16 22:11:00 -0700997 remove_full(s, page);
998 if (s->flags & SLAB_STORE_USER)
999 set_track(s, object, TRACK_FREE, addr);
1000 trace(s, page, object, 0);
1001 init_object(s, object, 0);
Christoph Lameter81819f02007-05-06 14:49:36 -07001002 return 1;
Christoph Lameter3ec09742007-05-16 22:11:00 -07001003
Christoph Lameter81819f02007-05-06 14:49:36 -07001004fail:
Christoph Lameter24922682007-07-17 04:03:18 -07001005 slab_fix(s, "Object at 0x%p not freed", object);
Christoph Lameter81819f02007-05-06 14:49:36 -07001006 return 0;
1007}
1008
Christoph Lameter41ecc552007-05-09 02:32:44 -07001009static int __init setup_slub_debug(char *str)
1010{
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001011 slub_debug = DEBUG_DEFAULT_FLAGS;
1012 if (*str++ != '=' || !*str)
1013 /*
1014 * No options specified. Switch on full debugging.
1015 */
1016 goto out;
Christoph Lameter41ecc552007-05-09 02:32:44 -07001017
1018 if (*str == ',')
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001019 /*
1020 * No options but restriction on slabs. This means full
1021 * debugging for slabs matching a pattern.
1022 */
1023 goto check_slabs;
1024
1025 slub_debug = 0;
1026 if (*str == '-')
1027 /*
1028 * Switch off all debugging measures.
1029 */
1030 goto out;
1031
1032 /*
1033 * Determine which debug features should be switched on
1034 */
Pekka Enberg06428782008-01-07 23:20:27 -08001035 for (; *str && *str != ','; str++) {
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001036 switch (tolower(*str)) {
1037 case 'f':
1038 slub_debug |= SLAB_DEBUG_FREE;
1039 break;
1040 case 'z':
1041 slub_debug |= SLAB_RED_ZONE;
1042 break;
1043 case 'p':
1044 slub_debug |= SLAB_POISON;
1045 break;
1046 case 'u':
1047 slub_debug |= SLAB_STORE_USER;
1048 break;
1049 case 't':
1050 slub_debug |= SLAB_TRACE;
1051 break;
1052 default:
1053 printk(KERN_ERR "slub_debug option '%c' "
Pekka Enberg06428782008-01-07 23:20:27 -08001054 "unknown. skipped\n", *str);
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001055 }
1056 }
1057
1058check_slabs:
1059 if (*str == ',')
Christoph Lameter41ecc552007-05-09 02:32:44 -07001060 slub_debug_slabs = str + 1;
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001061out:
Christoph Lameter41ecc552007-05-09 02:32:44 -07001062 return 1;
1063}
1064
1065__setup("slub_debug", setup_slub_debug);
1066
Christoph Lameterba0268a2007-09-11 15:24:11 -07001067static unsigned long kmem_cache_flags(unsigned long objsize,
1068 unsigned long flags, const char *name,
Christoph Lameter4ba9b9d2007-10-16 23:25:51 -07001069 void (*ctor)(struct kmem_cache *, void *))
Christoph Lameter41ecc552007-05-09 02:32:44 -07001070{
1071 /*
Christoph Lametere1533622008-02-15 23:45:24 -08001072 * Enable debugging if selected on the kernel commandline.
Christoph Lameter41ecc552007-05-09 02:32:44 -07001073 */
Christoph Lametere1533622008-02-15 23:45:24 -08001074 if (slub_debug && (!slub_debug_slabs ||
1075 strncmp(slub_debug_slabs, name, strlen(slub_debug_slabs)) == 0))
1076 flags |= slub_debug;
Christoph Lameterba0268a2007-09-11 15:24:11 -07001077
1078 return flags;
Christoph Lameter41ecc552007-05-09 02:32:44 -07001079}
1080#else
Christoph Lameter3ec09742007-05-16 22:11:00 -07001081static inline void setup_object_debug(struct kmem_cache *s,
1082 struct page *page, void *object) {}
Christoph Lameter41ecc552007-05-09 02:32:44 -07001083
Christoph Lameter3ec09742007-05-16 22:11:00 -07001084static inline int alloc_debug_processing(struct kmem_cache *s,
1085 struct page *page, void *object, void *addr) { return 0; }
Christoph Lameter41ecc552007-05-09 02:32:44 -07001086
Christoph Lameter3ec09742007-05-16 22:11:00 -07001087static inline int free_debug_processing(struct kmem_cache *s,
1088 struct page *page, void *object, void *addr) { return 0; }
Christoph Lameter41ecc552007-05-09 02:32:44 -07001089
Christoph Lameter41ecc552007-05-09 02:32:44 -07001090static inline int slab_pad_check(struct kmem_cache *s, struct page *page)
1091 { return 1; }
1092static inline int check_object(struct kmem_cache *s, struct page *page,
1093 void *object, int active) { return 1; }
Christoph Lameter3ec09742007-05-16 22:11:00 -07001094static inline void add_full(struct kmem_cache_node *n, struct page *page) {}
Christoph Lameterba0268a2007-09-11 15:24:11 -07001095static inline unsigned long kmem_cache_flags(unsigned long objsize,
1096 unsigned long flags, const char *name,
Christoph Lameter4ba9b9d2007-10-16 23:25:51 -07001097 void (*ctor)(struct kmem_cache *, void *))
Christoph Lameterba0268a2007-09-11 15:24:11 -07001098{
1099 return flags;
1100}
Christoph Lameter41ecc552007-05-09 02:32:44 -07001101#define slub_debug 0
Christoph Lameter0f389ec2008-04-14 18:53:02 +03001102
1103static inline unsigned long slabs_node(struct kmem_cache *s, int node)
1104 { return 0; }
Christoph Lameter205ab992008-04-14 19:11:40 +03001105static inline void inc_slabs_node(struct kmem_cache *s, int node,
1106 int objects) {}
1107static inline void dec_slabs_node(struct kmem_cache *s, int node,
1108 int objects) {}
Christoph Lameter41ecc552007-05-09 02:32:44 -07001109#endif
Christoph Lameter205ab992008-04-14 19:11:40 +03001110
Christoph Lameter81819f02007-05-06 14:49:36 -07001111/*
1112 * Slab allocation and freeing
1113 */
Christoph Lameter65c33762008-04-14 19:11:40 +03001114static inline struct page *alloc_slab_page(gfp_t flags, int node,
1115 struct kmem_cache_order_objects oo)
1116{
1117 int order = oo_order(oo);
1118
1119 if (node == -1)
1120 return alloc_pages(flags, order);
1121 else
1122 return alloc_pages_node(node, flags, order);
1123}
1124
Christoph Lameter81819f02007-05-06 14:49:36 -07001125static struct page *allocate_slab(struct kmem_cache *s, gfp_t flags, int node)
1126{
Pekka Enberg06428782008-01-07 23:20:27 -08001127 struct page *page;
Christoph Lameter834f3d12008-04-14 19:11:31 +03001128 struct kmem_cache_order_objects oo = s->oo;
Christoph Lameter81819f02007-05-06 14:49:36 -07001129
Christoph Lameterb7a49f02008-02-14 14:21:32 -08001130 flags |= s->allocflags;
Mel Gormane12ba742007-10-16 01:25:52 -07001131
Christoph Lameter65c33762008-04-14 19:11:40 +03001132 page = alloc_slab_page(flags | __GFP_NOWARN | __GFP_NORETRY, node,
1133 oo);
1134 if (unlikely(!page)) {
1135 oo = s->min;
1136 /*
1137 * Allocation may have failed due to fragmentation.
1138 * Try a lower order alloc if possible
1139 */
1140 page = alloc_slab_page(flags, node, oo);
1141 if (!page)
1142 return NULL;
Christoph Lameter81819f02007-05-06 14:49:36 -07001143
Christoph Lameter65c33762008-04-14 19:11:40 +03001144 stat(get_cpu_slab(s, raw_smp_processor_id()), ORDER_FALLBACK);
1145 }
Christoph Lameter834f3d12008-04-14 19:11:31 +03001146 page->objects = oo_objects(oo);
Christoph Lameter81819f02007-05-06 14:49:36 -07001147 mod_zone_page_state(page_zone(page),
1148 (s->flags & SLAB_RECLAIM_ACCOUNT) ?
1149 NR_SLAB_RECLAIMABLE : NR_SLAB_UNRECLAIMABLE,
Christoph Lameter65c33762008-04-14 19:11:40 +03001150 1 << oo_order(oo));
Christoph Lameter81819f02007-05-06 14:49:36 -07001151
1152 return page;
1153}
1154
1155static void setup_object(struct kmem_cache *s, struct page *page,
1156 void *object)
1157{
Christoph Lameter3ec09742007-05-16 22:11:00 -07001158 setup_object_debug(s, page, object);
Christoph Lameter4f104932007-05-06 14:50:17 -07001159 if (unlikely(s->ctor))
Christoph Lameter4ba9b9d2007-10-16 23:25:51 -07001160 s->ctor(s, object);
Christoph Lameter81819f02007-05-06 14:49:36 -07001161}
1162
1163static struct page *new_slab(struct kmem_cache *s, gfp_t flags, int node)
1164{
1165 struct page *page;
Christoph Lameter81819f02007-05-06 14:49:36 -07001166 void *start;
Christoph Lameter81819f02007-05-06 14:49:36 -07001167 void *last;
1168 void *p;
1169
Christoph Lameter6cb06222007-10-16 01:25:41 -07001170 BUG_ON(flags & GFP_SLAB_BUG_MASK);
Christoph Lameter81819f02007-05-06 14:49:36 -07001171
Christoph Lameter6cb06222007-10-16 01:25:41 -07001172 page = allocate_slab(s,
1173 flags & (GFP_RECLAIM_MASK | GFP_CONSTRAINT_MASK), node);
Christoph Lameter81819f02007-05-06 14:49:36 -07001174 if (!page)
1175 goto out;
1176
Christoph Lameter205ab992008-04-14 19:11:40 +03001177 inc_slabs_node(s, page_to_nid(page), page->objects);
Christoph Lameter81819f02007-05-06 14:49:36 -07001178 page->slab = s;
1179 page->flags |= 1 << PG_slab;
1180 if (s->flags & (SLAB_DEBUG_FREE | SLAB_RED_ZONE | SLAB_POISON |
1181 SLAB_STORE_USER | SLAB_TRACE))
Christoph Lameter35e5d7e2007-05-09 02:32:42 -07001182 SetSlabDebug(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001183
1184 start = page_address(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001185
1186 if (unlikely(s->flags & SLAB_POISON))
Christoph Lameter834f3d12008-04-14 19:11:31 +03001187 memset(start, POISON_INUSE, PAGE_SIZE << compound_order(page));
Christoph Lameter81819f02007-05-06 14:49:36 -07001188
1189 last = start;
Christoph Lameter224a88b2008-04-14 19:11:31 +03001190 for_each_object(p, s, start, page->objects) {
Christoph Lameter81819f02007-05-06 14:49:36 -07001191 setup_object(s, page, last);
1192 set_freepointer(s, last, p);
1193 last = p;
1194 }
1195 setup_object(s, page, last);
Christoph Lametera973e9d2008-03-01 13:40:44 -08001196 set_freepointer(s, last, NULL);
Christoph Lameter81819f02007-05-06 14:49:36 -07001197
1198 page->freelist = start;
1199 page->inuse = 0;
1200out:
Christoph Lameter81819f02007-05-06 14:49:36 -07001201 return page;
1202}
1203
1204static void __free_slab(struct kmem_cache *s, struct page *page)
1205{
Christoph Lameter834f3d12008-04-14 19:11:31 +03001206 int order = compound_order(page);
1207 int pages = 1 << order;
Christoph Lameter81819f02007-05-06 14:49:36 -07001208
Christoph Lameterc59def92007-05-16 22:10:50 -07001209 if (unlikely(SlabDebug(page))) {
Christoph Lameter81819f02007-05-06 14:49:36 -07001210 void *p;
1211
1212 slab_pad_check(s, page);
Christoph Lameter224a88b2008-04-14 19:11:31 +03001213 for_each_object(p, s, page_address(page),
1214 page->objects)
Christoph Lameter81819f02007-05-06 14:49:36 -07001215 check_object(s, page, p, 0);
Peter Zijlstra2208b762007-07-26 20:54:34 +02001216 ClearSlabDebug(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001217 }
1218
1219 mod_zone_page_state(page_zone(page),
1220 (s->flags & SLAB_RECLAIM_ACCOUNT) ?
1221 NR_SLAB_RECLAIMABLE : NR_SLAB_UNRECLAIMABLE,
Pekka Enberg06428782008-01-07 23:20:27 -08001222 -pages);
Christoph Lameter81819f02007-05-06 14:49:36 -07001223
Christoph Lameter49bd5222008-04-14 18:52:18 +03001224 __ClearPageSlab(page);
1225 reset_page_mapcount(page);
Christoph Lameter834f3d12008-04-14 19:11:31 +03001226 __free_pages(page, order);
Christoph Lameter81819f02007-05-06 14:49:36 -07001227}
1228
1229static void rcu_free_slab(struct rcu_head *h)
1230{
1231 struct page *page;
1232
1233 page = container_of((struct list_head *)h, struct page, lru);
1234 __free_slab(page->slab, page);
1235}
1236
1237static void free_slab(struct kmem_cache *s, struct page *page)
1238{
1239 if (unlikely(s->flags & SLAB_DESTROY_BY_RCU)) {
1240 /*
1241 * RCU free overloads the RCU head over the LRU
1242 */
1243 struct rcu_head *head = (void *)&page->lru;
1244
1245 call_rcu(head, rcu_free_slab);
1246 } else
1247 __free_slab(s, page);
1248}
1249
1250static void discard_slab(struct kmem_cache *s, struct page *page)
1251{
Christoph Lameter205ab992008-04-14 19:11:40 +03001252 dec_slabs_node(s, page_to_nid(page), page->objects);
Christoph Lameter81819f02007-05-06 14:49:36 -07001253 free_slab(s, page);
1254}
1255
1256/*
1257 * Per slab locking using the pagelock
1258 */
1259static __always_inline void slab_lock(struct page *page)
1260{
1261 bit_spin_lock(PG_locked, &page->flags);
1262}
1263
1264static __always_inline void slab_unlock(struct page *page)
1265{
Nick Piggina76d3542008-01-07 23:20:27 -08001266 __bit_spin_unlock(PG_locked, &page->flags);
Christoph Lameter81819f02007-05-06 14:49:36 -07001267}
1268
1269static __always_inline int slab_trylock(struct page *page)
1270{
1271 int rc = 1;
1272
1273 rc = bit_spin_trylock(PG_locked, &page->flags);
1274 return rc;
1275}
1276
1277/*
1278 * Management of partially allocated slabs
1279 */
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001280static void add_partial(struct kmem_cache_node *n,
1281 struct page *page, int tail)
Christoph Lameter81819f02007-05-06 14:49:36 -07001282{
Christoph Lametere95eed52007-05-06 14:49:44 -07001283 spin_lock(&n->list_lock);
1284 n->nr_partial++;
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001285 if (tail)
1286 list_add_tail(&page->lru, &n->partial);
1287 else
1288 list_add(&page->lru, &n->partial);
Christoph Lameter81819f02007-05-06 14:49:36 -07001289 spin_unlock(&n->list_lock);
1290}
1291
1292static void remove_partial(struct kmem_cache *s,
1293 struct page *page)
1294{
1295 struct kmem_cache_node *n = get_node(s, page_to_nid(page));
1296
1297 spin_lock(&n->list_lock);
1298 list_del(&page->lru);
1299 n->nr_partial--;
1300 spin_unlock(&n->list_lock);
1301}
1302
1303/*
Christoph Lameter672bba32007-05-09 02:32:39 -07001304 * Lock slab and remove from the partial list.
Christoph Lameter81819f02007-05-06 14:49:36 -07001305 *
Christoph Lameter672bba32007-05-09 02:32:39 -07001306 * Must hold list_lock.
Christoph Lameter81819f02007-05-06 14:49:36 -07001307 */
Christoph Lameter4b6f0752007-05-16 22:10:53 -07001308static inline int lock_and_freeze_slab(struct kmem_cache_node *n, struct page *page)
Christoph Lameter81819f02007-05-06 14:49:36 -07001309{
1310 if (slab_trylock(page)) {
1311 list_del(&page->lru);
1312 n->nr_partial--;
Christoph Lameter4b6f0752007-05-16 22:10:53 -07001313 SetSlabFrozen(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001314 return 1;
1315 }
1316 return 0;
1317}
1318
1319/*
Christoph Lameter672bba32007-05-09 02:32:39 -07001320 * Try to allocate a partial slab from a specific node.
Christoph Lameter81819f02007-05-06 14:49:36 -07001321 */
1322static struct page *get_partial_node(struct kmem_cache_node *n)
1323{
1324 struct page *page;
1325
1326 /*
1327 * Racy check. If we mistakenly see no partial slabs then we
1328 * just allocate an empty slab. If we mistakenly try to get a
Christoph Lameter672bba32007-05-09 02:32:39 -07001329 * partial slab and there is none available then get_partials()
1330 * will return NULL.
Christoph Lameter81819f02007-05-06 14:49:36 -07001331 */
1332 if (!n || !n->nr_partial)
1333 return NULL;
1334
1335 spin_lock(&n->list_lock);
1336 list_for_each_entry(page, &n->partial, lru)
Christoph Lameter4b6f0752007-05-16 22:10:53 -07001337 if (lock_and_freeze_slab(n, page))
Christoph Lameter81819f02007-05-06 14:49:36 -07001338 goto out;
1339 page = NULL;
1340out:
1341 spin_unlock(&n->list_lock);
1342 return page;
1343}
1344
1345/*
Christoph Lameter672bba32007-05-09 02:32:39 -07001346 * Get a page from somewhere. Search in increasing NUMA distances.
Christoph Lameter81819f02007-05-06 14:49:36 -07001347 */
1348static struct page *get_any_partial(struct kmem_cache *s, gfp_t flags)
1349{
1350#ifdef CONFIG_NUMA
1351 struct zonelist *zonelist;
1352 struct zone **z;
1353 struct page *page;
1354
1355 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07001356 * The defrag ratio allows a configuration of the tradeoffs between
1357 * inter node defragmentation and node local allocations. A lower
1358 * defrag_ratio increases the tendency to do local allocations
1359 * instead of attempting to obtain partial slabs from other nodes.
Christoph Lameter81819f02007-05-06 14:49:36 -07001360 *
Christoph Lameter672bba32007-05-09 02:32:39 -07001361 * If the defrag_ratio is set to 0 then kmalloc() always
1362 * returns node local objects. If the ratio is higher then kmalloc()
1363 * may return off node objects because partial slabs are obtained
1364 * from other nodes and filled up.
Christoph Lameter81819f02007-05-06 14:49:36 -07001365 *
Christoph Lameter6446faa2008-02-15 23:45:26 -08001366 * If /sys/kernel/slab/xx/defrag_ratio is set to 100 (which makes
Christoph Lameter672bba32007-05-09 02:32:39 -07001367 * defrag_ratio = 1000) then every (well almost) allocation will
1368 * first attempt to defrag slab caches on other nodes. This means
1369 * scanning over all nodes to look for partial slabs which may be
1370 * expensive if we do it every time we are trying to find a slab
1371 * with available objects.
Christoph Lameter81819f02007-05-06 14:49:36 -07001372 */
Christoph Lameter98246012008-01-07 23:20:26 -08001373 if (!s->remote_node_defrag_ratio ||
1374 get_cycles() % 1024 > s->remote_node_defrag_ratio)
Christoph Lameter81819f02007-05-06 14:49:36 -07001375 return NULL;
1376
Ingo Molnar3adbefe2008-02-05 17:57:39 -08001377 zonelist = &NODE_DATA(
1378 slab_node(current->mempolicy))->node_zonelists[gfp_zone(flags)];
Christoph Lameter81819f02007-05-06 14:49:36 -07001379 for (z = zonelist->zones; *z; z++) {
1380 struct kmem_cache_node *n;
1381
1382 n = get_node(s, zone_to_nid(*z));
1383
1384 if (n && cpuset_zone_allowed_hardwall(*z, flags) &&
Christoph Lametere95eed52007-05-06 14:49:44 -07001385 n->nr_partial > MIN_PARTIAL) {
Christoph Lameter81819f02007-05-06 14:49:36 -07001386 page = get_partial_node(n);
1387 if (page)
1388 return page;
1389 }
1390 }
1391#endif
1392 return NULL;
1393}
1394
1395/*
1396 * Get a partial page, lock it and return it.
1397 */
1398static struct page *get_partial(struct kmem_cache *s, gfp_t flags, int node)
1399{
1400 struct page *page;
1401 int searchnode = (node == -1) ? numa_node_id() : node;
1402
1403 page = get_partial_node(get_node(s, searchnode));
1404 if (page || (flags & __GFP_THISNODE))
1405 return page;
1406
1407 return get_any_partial(s, flags);
1408}
1409
1410/*
1411 * Move a page back to the lists.
1412 *
1413 * Must be called with the slab lock held.
1414 *
1415 * On exit the slab lock will have been dropped.
1416 */
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001417static void unfreeze_slab(struct kmem_cache *s, struct page *page, int tail)
Christoph Lameter81819f02007-05-06 14:49:36 -07001418{
Christoph Lametere95eed52007-05-06 14:49:44 -07001419 struct kmem_cache_node *n = get_node(s, page_to_nid(page));
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001420 struct kmem_cache_cpu *c = get_cpu_slab(s, smp_processor_id());
Christoph Lametere95eed52007-05-06 14:49:44 -07001421
Christoph Lameter4b6f0752007-05-16 22:10:53 -07001422 ClearSlabFrozen(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001423 if (page->inuse) {
Christoph Lametere95eed52007-05-06 14:49:44 -07001424
Christoph Lametera973e9d2008-03-01 13:40:44 -08001425 if (page->freelist) {
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001426 add_partial(n, page, tail);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001427 stat(c, tail ? DEACTIVATE_TO_TAIL : DEACTIVATE_TO_HEAD);
1428 } else {
1429 stat(c, DEACTIVATE_FULL);
1430 if (SlabDebug(page) && (s->flags & SLAB_STORE_USER))
1431 add_full(n, page);
1432 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001433 slab_unlock(page);
1434 } else {
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001435 stat(c, DEACTIVATE_EMPTY);
Christoph Lametere95eed52007-05-06 14:49:44 -07001436 if (n->nr_partial < MIN_PARTIAL) {
1437 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07001438 * Adding an empty slab to the partial slabs in order
1439 * to avoid page allocator overhead. This slab needs
1440 * to come after the other slabs with objects in
Christoph Lameter6446faa2008-02-15 23:45:26 -08001441 * so that the others get filled first. That way the
1442 * size of the partial list stays small.
1443 *
1444 * kmem_cache_shrink can reclaim any empty slabs from the
1445 * partial list.
Christoph Lametere95eed52007-05-06 14:49:44 -07001446 */
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001447 add_partial(n, page, 1);
Christoph Lametere95eed52007-05-06 14:49:44 -07001448 slab_unlock(page);
1449 } else {
1450 slab_unlock(page);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001451 stat(get_cpu_slab(s, raw_smp_processor_id()), FREE_SLAB);
Christoph Lametere95eed52007-05-06 14:49:44 -07001452 discard_slab(s, page);
1453 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001454 }
1455}
1456
1457/*
1458 * Remove the cpu slab
1459 */
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001460static void deactivate_slab(struct kmem_cache *s, struct kmem_cache_cpu *c)
Christoph Lameter81819f02007-05-06 14:49:36 -07001461{
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001462 struct page *page = c->page;
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001463 int tail = 1;
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001464
Christoph Lameterb773ad72008-03-04 11:10:17 -08001465 if (page->freelist)
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001466 stat(c, DEACTIVATE_REMOTE_FREES);
Christoph Lameter894b8782007-05-10 03:15:16 -07001467 /*
Christoph Lameter6446faa2008-02-15 23:45:26 -08001468 * Merge cpu freelist into slab freelist. Typically we get here
Christoph Lameter894b8782007-05-10 03:15:16 -07001469 * because both freelists are empty. So this is unlikely
1470 * to occur.
1471 */
Christoph Lametera973e9d2008-03-01 13:40:44 -08001472 while (unlikely(c->freelist)) {
Christoph Lameter894b8782007-05-10 03:15:16 -07001473 void **object;
1474
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001475 tail = 0; /* Hot objects. Put the slab first */
1476
Christoph Lameter894b8782007-05-10 03:15:16 -07001477 /* Retrieve object from cpu_freelist */
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001478 object = c->freelist;
Christoph Lameterb3fba8d2007-10-16 01:26:06 -07001479 c->freelist = c->freelist[c->offset];
Christoph Lameter894b8782007-05-10 03:15:16 -07001480
1481 /* And put onto the regular freelist */
Christoph Lameterb3fba8d2007-10-16 01:26:06 -07001482 object[c->offset] = page->freelist;
Christoph Lameter894b8782007-05-10 03:15:16 -07001483 page->freelist = object;
1484 page->inuse--;
1485 }
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001486 c->page = NULL;
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001487 unfreeze_slab(s, page, tail);
Christoph Lameter81819f02007-05-06 14:49:36 -07001488}
1489
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001490static inline void flush_slab(struct kmem_cache *s, struct kmem_cache_cpu *c)
Christoph Lameter81819f02007-05-06 14:49:36 -07001491{
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001492 stat(c, CPUSLAB_FLUSH);
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001493 slab_lock(c->page);
1494 deactivate_slab(s, c);
Christoph Lameter81819f02007-05-06 14:49:36 -07001495}
1496
1497/*
1498 * Flush cpu slab.
Christoph Lameter6446faa2008-02-15 23:45:26 -08001499 *
Christoph Lameter81819f02007-05-06 14:49:36 -07001500 * Called from IPI handler with interrupts disabled.
1501 */
Christoph Lameter0c710012007-07-17 04:03:24 -07001502static inline void __flush_cpu_slab(struct kmem_cache *s, int cpu)
Christoph Lameter81819f02007-05-06 14:49:36 -07001503{
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001504 struct kmem_cache_cpu *c = get_cpu_slab(s, cpu);
Christoph Lameter81819f02007-05-06 14:49:36 -07001505
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001506 if (likely(c && c->page))
1507 flush_slab(s, c);
Christoph Lameter81819f02007-05-06 14:49:36 -07001508}
1509
1510static void flush_cpu_slab(void *d)
1511{
1512 struct kmem_cache *s = d;
Christoph Lameter81819f02007-05-06 14:49:36 -07001513
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001514 __flush_cpu_slab(s, smp_processor_id());
Christoph Lameter81819f02007-05-06 14:49:36 -07001515}
1516
1517static void flush_all(struct kmem_cache *s)
1518{
1519#ifdef CONFIG_SMP
1520 on_each_cpu(flush_cpu_slab, s, 1, 1);
1521#else
1522 unsigned long flags;
1523
1524 local_irq_save(flags);
1525 flush_cpu_slab(s);
1526 local_irq_restore(flags);
1527#endif
1528}
1529
1530/*
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001531 * Check if the objects in a per cpu structure fit numa
1532 * locality expectations.
1533 */
1534static inline int node_match(struct kmem_cache_cpu *c, int node)
1535{
1536#ifdef CONFIG_NUMA
1537 if (node != -1 && c->node != node)
1538 return 0;
1539#endif
1540 return 1;
1541}
1542
1543/*
Christoph Lameter894b8782007-05-10 03:15:16 -07001544 * Slow path. The lockless freelist is empty or we need to perform
1545 * debugging duties.
Christoph Lameter81819f02007-05-06 14:49:36 -07001546 *
Christoph Lameter894b8782007-05-10 03:15:16 -07001547 * Interrupts are disabled.
Christoph Lameter81819f02007-05-06 14:49:36 -07001548 *
Christoph Lameter894b8782007-05-10 03:15:16 -07001549 * Processing is still very fast if new objects have been freed to the
1550 * regular freelist. In that case we simply take over the regular freelist
1551 * as the lockless freelist and zap the regular freelist.
Christoph Lameter81819f02007-05-06 14:49:36 -07001552 *
Christoph Lameter894b8782007-05-10 03:15:16 -07001553 * If that is not working then we fall back to the partial lists. We take the
1554 * first element of the freelist as the object to allocate now and move the
1555 * rest of the freelist to the lockless freelist.
1556 *
1557 * And if we were unable to get a new slab from the partial slab lists then
Christoph Lameter6446faa2008-02-15 23:45:26 -08001558 * we need to allocate a new slab. This is the slowest path since it involves
1559 * a call to the page allocator and the setup of a new slab.
Christoph Lameter81819f02007-05-06 14:49:36 -07001560 */
Christoph Lameter894b8782007-05-10 03:15:16 -07001561static void *__slab_alloc(struct kmem_cache *s,
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001562 gfp_t gfpflags, int node, void *addr, struct kmem_cache_cpu *c)
Christoph Lameter81819f02007-05-06 14:49:36 -07001563{
Christoph Lameter81819f02007-05-06 14:49:36 -07001564 void **object;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001565 struct page *new;
Christoph Lameter81819f02007-05-06 14:49:36 -07001566
Linus Torvaldse72e9c22008-03-27 20:56:33 -07001567 /* We handle __GFP_ZERO in the caller */
1568 gfpflags &= ~__GFP_ZERO;
1569
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001570 if (!c->page)
Christoph Lameter81819f02007-05-06 14:49:36 -07001571 goto new_slab;
1572
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001573 slab_lock(c->page);
1574 if (unlikely(!node_match(c, node)))
Christoph Lameter81819f02007-05-06 14:49:36 -07001575 goto another_slab;
Christoph Lameter6446faa2008-02-15 23:45:26 -08001576
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001577 stat(c, ALLOC_REFILL);
Christoph Lameter6446faa2008-02-15 23:45:26 -08001578
Christoph Lameter894b8782007-05-10 03:15:16 -07001579load_freelist:
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001580 object = c->page->freelist;
Christoph Lametera973e9d2008-03-01 13:40:44 -08001581 if (unlikely(!object))
Christoph Lameter81819f02007-05-06 14:49:36 -07001582 goto another_slab;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001583 if (unlikely(SlabDebug(c->page)))
Christoph Lameter81819f02007-05-06 14:49:36 -07001584 goto debug;
1585
Christoph Lameterb3fba8d2007-10-16 01:26:06 -07001586 c->freelist = object[c->offset];
Christoph Lameter39b26462008-04-14 19:11:30 +03001587 c->page->inuse = c->page->objects;
Christoph Lametera973e9d2008-03-01 13:40:44 -08001588 c->page->freelist = NULL;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001589 c->node = page_to_nid(c->page);
Christoph Lameter1f842602008-01-07 23:20:30 -08001590unlock_out:
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001591 slab_unlock(c->page);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001592 stat(c, ALLOC_SLOWPATH);
Christoph Lameter81819f02007-05-06 14:49:36 -07001593 return object;
1594
1595another_slab:
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001596 deactivate_slab(s, c);
Christoph Lameter81819f02007-05-06 14:49:36 -07001597
1598new_slab:
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001599 new = get_partial(s, gfpflags, node);
1600 if (new) {
1601 c->page = new;
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001602 stat(c, ALLOC_FROM_PARTIAL);
Christoph Lameter894b8782007-05-10 03:15:16 -07001603 goto load_freelist;
Christoph Lameter81819f02007-05-06 14:49:36 -07001604 }
1605
Christoph Lameterb811c202007-10-16 23:25:51 -07001606 if (gfpflags & __GFP_WAIT)
1607 local_irq_enable();
1608
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001609 new = new_slab(s, gfpflags, node);
Christoph Lameterb811c202007-10-16 23:25:51 -07001610
1611 if (gfpflags & __GFP_WAIT)
1612 local_irq_disable();
1613
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001614 if (new) {
1615 c = get_cpu_slab(s, smp_processor_id());
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001616 stat(c, ALLOC_SLAB);
Christoph Lameter05aa3452007-11-05 11:31:58 -08001617 if (c->page)
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001618 flush_slab(s, c);
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001619 slab_lock(new);
1620 SetSlabFrozen(new);
1621 c->page = new;
Christoph Lameter4b6f0752007-05-16 22:10:53 -07001622 goto load_freelist;
Christoph Lameter81819f02007-05-06 14:49:36 -07001623 }
Christoph Lameter71c7a062008-02-14 14:28:01 -08001624 return NULL;
Christoph Lameter81819f02007-05-06 14:49:36 -07001625debug:
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001626 if (!alloc_debug_processing(s, c->page, object, addr))
Christoph Lameter81819f02007-05-06 14:49:36 -07001627 goto another_slab;
Christoph Lameter894b8782007-05-10 03:15:16 -07001628
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001629 c->page->inuse++;
Christoph Lameterb3fba8d2007-10-16 01:26:06 -07001630 c->page->freelist = object[c->offset];
Christoph Lameteree3c72a2007-10-16 01:26:07 -07001631 c->node = -1;
Christoph Lameter1f842602008-01-07 23:20:30 -08001632 goto unlock_out;
Christoph Lameter894b8782007-05-10 03:15:16 -07001633}
1634
1635/*
1636 * Inlined fastpath so that allocation functions (kmalloc, kmem_cache_alloc)
1637 * have the fastpath folded into their functions. So no function call
1638 * overhead for requests that can be satisfied on the fastpath.
1639 *
1640 * The fastpath works by first checking if the lockless freelist can be used.
1641 * If not then __slab_alloc is called for slow processing.
1642 *
1643 * Otherwise we can simply pick the next object from the lockless free list.
1644 */
Pekka Enberg06428782008-01-07 23:20:27 -08001645static __always_inline void *slab_alloc(struct kmem_cache *s,
Christoph Lameterce15fea2007-07-17 04:03:28 -07001646 gfp_t gfpflags, int node, void *addr)
Christoph Lameter894b8782007-05-10 03:15:16 -07001647{
Christoph Lameter894b8782007-05-10 03:15:16 -07001648 void **object;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001649 struct kmem_cache_cpu *c;
Christoph Lameter1f842602008-01-07 23:20:30 -08001650 unsigned long flags;
1651
Christoph Lameter894b8782007-05-10 03:15:16 -07001652 local_irq_save(flags);
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001653 c = get_cpu_slab(s, smp_processor_id());
Christoph Lametera973e9d2008-03-01 13:40:44 -08001654 if (unlikely(!c->freelist || !node_match(c, node)))
Christoph Lameter894b8782007-05-10 03:15:16 -07001655
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001656 object = __slab_alloc(s, gfpflags, node, addr, c);
Christoph Lameter894b8782007-05-10 03:15:16 -07001657
1658 else {
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001659 object = c->freelist;
Christoph Lameterb3fba8d2007-10-16 01:26:06 -07001660 c->freelist = object[c->offset];
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001661 stat(c, ALLOC_FASTPATH);
Christoph Lameter894b8782007-05-10 03:15:16 -07001662 }
1663 local_irq_restore(flags);
Christoph Lameterd07dbea2007-07-17 04:03:23 -07001664
1665 if (unlikely((gfpflags & __GFP_ZERO) && object))
Christoph Lameter42a9fdb2007-10-16 01:26:09 -07001666 memset(object, 0, c->objsize);
Christoph Lameterd07dbea2007-07-17 04:03:23 -07001667
Christoph Lameter894b8782007-05-10 03:15:16 -07001668 return object;
Christoph Lameter81819f02007-05-06 14:49:36 -07001669}
1670
1671void *kmem_cache_alloc(struct kmem_cache *s, gfp_t gfpflags)
1672{
Christoph Lameterce15fea2007-07-17 04:03:28 -07001673 return slab_alloc(s, gfpflags, -1, __builtin_return_address(0));
Christoph Lameter81819f02007-05-06 14:49:36 -07001674}
1675EXPORT_SYMBOL(kmem_cache_alloc);
1676
1677#ifdef CONFIG_NUMA
1678void *kmem_cache_alloc_node(struct kmem_cache *s, gfp_t gfpflags, int node)
1679{
Christoph Lameterce15fea2007-07-17 04:03:28 -07001680 return slab_alloc(s, gfpflags, node, __builtin_return_address(0));
Christoph Lameter81819f02007-05-06 14:49:36 -07001681}
1682EXPORT_SYMBOL(kmem_cache_alloc_node);
1683#endif
1684
1685/*
Christoph Lameter894b8782007-05-10 03:15:16 -07001686 * Slow patch handling. This may still be called frequently since objects
1687 * have a longer lifetime than the cpu slabs in most processing loads.
Christoph Lameter81819f02007-05-06 14:49:36 -07001688 *
Christoph Lameter894b8782007-05-10 03:15:16 -07001689 * So we still attempt to reduce cache line usage. Just take the slab
1690 * lock and free the item. If there is no additional partial page
1691 * handling required then we can return immediately.
Christoph Lameter81819f02007-05-06 14:49:36 -07001692 */
Christoph Lameter894b8782007-05-10 03:15:16 -07001693static void __slab_free(struct kmem_cache *s, struct page *page,
Christoph Lameterb3fba8d2007-10-16 01:26:06 -07001694 void *x, void *addr, unsigned int offset)
Christoph Lameter81819f02007-05-06 14:49:36 -07001695{
1696 void *prior;
1697 void **object = (void *)x;
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001698 struct kmem_cache_cpu *c;
Christoph Lameter81819f02007-05-06 14:49:36 -07001699
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001700 c = get_cpu_slab(s, raw_smp_processor_id());
1701 stat(c, FREE_SLOWPATH);
Christoph Lameter81819f02007-05-06 14:49:36 -07001702 slab_lock(page);
1703
Christoph Lameter35e5d7e2007-05-09 02:32:42 -07001704 if (unlikely(SlabDebug(page)))
Christoph Lameter81819f02007-05-06 14:49:36 -07001705 goto debug;
Christoph Lameter6446faa2008-02-15 23:45:26 -08001706
Christoph Lameter81819f02007-05-06 14:49:36 -07001707checks_ok:
Christoph Lameterb3fba8d2007-10-16 01:26:06 -07001708 prior = object[offset] = page->freelist;
Christoph Lameter81819f02007-05-06 14:49:36 -07001709 page->freelist = object;
1710 page->inuse--;
1711
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001712 if (unlikely(SlabFrozen(page))) {
1713 stat(c, FREE_FROZEN);
Christoph Lameter81819f02007-05-06 14:49:36 -07001714 goto out_unlock;
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001715 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001716
1717 if (unlikely(!page->inuse))
1718 goto slab_empty;
1719
1720 /*
Christoph Lameter6446faa2008-02-15 23:45:26 -08001721 * Objects left in the slab. If it was not on the partial list before
Christoph Lameter81819f02007-05-06 14:49:36 -07001722 * then add it.
1723 */
Christoph Lametera973e9d2008-03-01 13:40:44 -08001724 if (unlikely(!prior)) {
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001725 add_partial(get_node(s, page_to_nid(page)), page, 1);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001726 stat(c, FREE_ADD_PARTIAL);
1727 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001728
1729out_unlock:
1730 slab_unlock(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001731 return;
1732
1733slab_empty:
Christoph Lametera973e9d2008-03-01 13:40:44 -08001734 if (prior) {
Christoph Lameter81819f02007-05-06 14:49:36 -07001735 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07001736 * Slab still on the partial list.
Christoph Lameter81819f02007-05-06 14:49:36 -07001737 */
1738 remove_partial(s, page);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001739 stat(c, FREE_REMOVE_PARTIAL);
1740 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001741 slab_unlock(page);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001742 stat(c, FREE_SLAB);
Christoph Lameter81819f02007-05-06 14:49:36 -07001743 discard_slab(s, page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001744 return;
1745
1746debug:
Christoph Lameter3ec09742007-05-16 22:11:00 -07001747 if (!free_debug_processing(s, page, x, addr))
Christoph Lameter77c5e2d2007-05-06 14:49:42 -07001748 goto out_unlock;
Christoph Lameter77c5e2d2007-05-06 14:49:42 -07001749 goto checks_ok;
Christoph Lameter81819f02007-05-06 14:49:36 -07001750}
1751
Christoph Lameter894b8782007-05-10 03:15:16 -07001752/*
1753 * Fastpath with forced inlining to produce a kfree and kmem_cache_free that
1754 * can perform fastpath freeing without additional function calls.
1755 *
1756 * The fastpath is only possible if we are freeing to the current cpu slab
1757 * of this processor. This typically the case if we have just allocated
1758 * the item before.
1759 *
1760 * If fastpath is not possible then fall back to __slab_free where we deal
1761 * with all sorts of special processing.
1762 */
Pekka Enberg06428782008-01-07 23:20:27 -08001763static __always_inline void slab_free(struct kmem_cache *s,
Christoph Lameter894b8782007-05-10 03:15:16 -07001764 struct page *page, void *x, void *addr)
1765{
1766 void **object = (void *)x;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001767 struct kmem_cache_cpu *c;
Christoph Lameter1f842602008-01-07 23:20:30 -08001768 unsigned long flags;
1769
Christoph Lameter894b8782007-05-10 03:15:16 -07001770 local_irq_save(flags);
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001771 c = get_cpu_slab(s, smp_processor_id());
Christoph Lameter27d9e4e2008-02-15 23:45:25 -08001772 debug_check_no_locks_freed(object, c->objsize);
Christoph Lameteree3c72a2007-10-16 01:26:07 -07001773 if (likely(page == c->page && c->node >= 0)) {
Christoph Lameterb3fba8d2007-10-16 01:26:06 -07001774 object[c->offset] = c->freelist;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001775 c->freelist = object;
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001776 stat(c, FREE_FASTPATH);
Christoph Lameter894b8782007-05-10 03:15:16 -07001777 } else
Christoph Lameterb3fba8d2007-10-16 01:26:06 -07001778 __slab_free(s, page, x, addr, c->offset);
Christoph Lameter894b8782007-05-10 03:15:16 -07001779
1780 local_irq_restore(flags);
1781}
1782
Christoph Lameter81819f02007-05-06 14:49:36 -07001783void kmem_cache_free(struct kmem_cache *s, void *x)
1784{
Christoph Lameter77c5e2d2007-05-06 14:49:42 -07001785 struct page *page;
Christoph Lameter81819f02007-05-06 14:49:36 -07001786
Christoph Lameterb49af682007-05-06 14:49:41 -07001787 page = virt_to_head_page(x);
Christoph Lameter81819f02007-05-06 14:49:36 -07001788
Christoph Lameter77c5e2d2007-05-06 14:49:42 -07001789 slab_free(s, page, x, __builtin_return_address(0));
Christoph Lameter81819f02007-05-06 14:49:36 -07001790}
1791EXPORT_SYMBOL(kmem_cache_free);
1792
1793/* Figure out on which slab object the object resides */
1794static struct page *get_object_page(const void *x)
1795{
Christoph Lameterb49af682007-05-06 14:49:41 -07001796 struct page *page = virt_to_head_page(x);
Christoph Lameter81819f02007-05-06 14:49:36 -07001797
1798 if (!PageSlab(page))
1799 return NULL;
1800
1801 return page;
1802}
1803
1804/*
Christoph Lameter672bba32007-05-09 02:32:39 -07001805 * Object placement in a slab is made very easy because we always start at
1806 * offset 0. If we tune the size of the object to the alignment then we can
1807 * get the required alignment by putting one properly sized object after
1808 * another.
Christoph Lameter81819f02007-05-06 14:49:36 -07001809 *
1810 * Notice that the allocation order determines the sizes of the per cpu
1811 * caches. Each processor has always one slab available for allocations.
1812 * Increasing the allocation order reduces the number of times that slabs
Christoph Lameter672bba32007-05-09 02:32:39 -07001813 * must be moved on and off the partial lists and is therefore a factor in
Christoph Lameter81819f02007-05-06 14:49:36 -07001814 * locking overhead.
Christoph Lameter81819f02007-05-06 14:49:36 -07001815 */
1816
1817/*
1818 * Mininum / Maximum order of slab pages. This influences locking overhead
1819 * and slab fragmentation. A higher order reduces the number of partial slabs
1820 * and increases the number of allocations possible without having to
1821 * take the list_lock.
1822 */
1823static int slub_min_order;
1824static int slub_max_order = DEFAULT_MAX_ORDER;
Christoph Lameter81819f02007-05-06 14:49:36 -07001825static int slub_min_objects = DEFAULT_MIN_OBJECTS;
1826
1827/*
1828 * Merge control. If this is set then no merging of slab caches will occur.
Christoph Lameter672bba32007-05-09 02:32:39 -07001829 * (Could be removed. This was introduced to pacify the merge skeptics.)
Christoph Lameter81819f02007-05-06 14:49:36 -07001830 */
1831static int slub_nomerge;
1832
1833/*
Christoph Lameter81819f02007-05-06 14:49:36 -07001834 * Calculate the order of allocation given an slab object size.
1835 *
Christoph Lameter672bba32007-05-09 02:32:39 -07001836 * The order of allocation has significant impact on performance and other
1837 * system components. Generally order 0 allocations should be preferred since
1838 * order 0 does not cause fragmentation in the page allocator. Larger objects
1839 * be problematic to put into order 0 slabs because there may be too much
1840 * unused space left. We go to a higher order if more than 1/8th of the slab
1841 * would be wasted.
Christoph Lameter81819f02007-05-06 14:49:36 -07001842 *
Christoph Lameter672bba32007-05-09 02:32:39 -07001843 * In order to reach satisfactory performance we must ensure that a minimum
1844 * number of objects is in one slab. Otherwise we may generate too much
1845 * activity on the partial lists which requires taking the list_lock. This is
1846 * less a concern for large slabs though which are rarely used.
Christoph Lameter81819f02007-05-06 14:49:36 -07001847 *
Christoph Lameter672bba32007-05-09 02:32:39 -07001848 * slub_max_order specifies the order where we begin to stop considering the
1849 * number of objects in a slab as critical. If we reach slub_max_order then
1850 * we try to keep the page order as low as possible. So we accept more waste
1851 * of space in favor of a small page order.
1852 *
1853 * Higher order allocations also allow the placement of more objects in a
1854 * slab and thereby reduce object handling overhead. If the user has
1855 * requested a higher mininum order then we start with that one instead of
1856 * the smallest order which will fit the object.
Christoph Lameter81819f02007-05-06 14:49:36 -07001857 */
Christoph Lameter5e6d4442007-05-09 02:32:46 -07001858static inline int slab_order(int size, int min_objects,
1859 int max_order, int fract_leftover)
Christoph Lameter81819f02007-05-06 14:49:36 -07001860{
1861 int order;
1862 int rem;
Christoph Lameter6300ea72007-07-17 04:03:20 -07001863 int min_order = slub_min_order;
Christoph Lameter81819f02007-05-06 14:49:36 -07001864
Christoph Lameter39b26462008-04-14 19:11:30 +03001865 if ((PAGE_SIZE << min_order) / size > 65535)
1866 return get_order(size * 65535) - 1;
1867
Christoph Lameter6300ea72007-07-17 04:03:20 -07001868 for (order = max(min_order,
Christoph Lameter5e6d4442007-05-09 02:32:46 -07001869 fls(min_objects * size - 1) - PAGE_SHIFT);
1870 order <= max_order; order++) {
1871
Christoph Lameter81819f02007-05-06 14:49:36 -07001872 unsigned long slab_size = PAGE_SIZE << order;
1873
Christoph Lameter5e6d4442007-05-09 02:32:46 -07001874 if (slab_size < min_objects * size)
Christoph Lameter81819f02007-05-06 14:49:36 -07001875 continue;
1876
Christoph Lameter81819f02007-05-06 14:49:36 -07001877 rem = slab_size % size;
1878
Christoph Lameter5e6d4442007-05-09 02:32:46 -07001879 if (rem <= slab_size / fract_leftover)
Christoph Lameter81819f02007-05-06 14:49:36 -07001880 break;
1881
1882 }
Christoph Lameter672bba32007-05-09 02:32:39 -07001883
Christoph Lameter81819f02007-05-06 14:49:36 -07001884 return order;
1885}
1886
Christoph Lameter5e6d4442007-05-09 02:32:46 -07001887static inline int calculate_order(int size)
1888{
1889 int order;
1890 int min_objects;
1891 int fraction;
1892
1893 /*
1894 * Attempt to find best configuration for a slab. This
1895 * works by first attempting to generate a layout with
1896 * the best configuration and backing off gradually.
1897 *
1898 * First we reduce the acceptable waste in a slab. Then
1899 * we reduce the minimum objects required in a slab.
1900 */
1901 min_objects = slub_min_objects;
1902 while (min_objects > 1) {
1903 fraction = 8;
1904 while (fraction >= 4) {
1905 order = slab_order(size, min_objects,
1906 slub_max_order, fraction);
1907 if (order <= slub_max_order)
1908 return order;
1909 fraction /= 2;
1910 }
1911 min_objects /= 2;
1912 }
1913
1914 /*
1915 * We were unable to place multiple objects in a slab. Now
1916 * lets see if we can place a single object there.
1917 */
1918 order = slab_order(size, 1, slub_max_order, 1);
1919 if (order <= slub_max_order)
1920 return order;
1921
1922 /*
1923 * Doh this slab cannot be placed using slub_max_order.
1924 */
1925 order = slab_order(size, 1, MAX_ORDER, 1);
1926 if (order <= MAX_ORDER)
1927 return order;
1928 return -ENOSYS;
1929}
1930
Christoph Lameter81819f02007-05-06 14:49:36 -07001931/*
Christoph Lameter672bba32007-05-09 02:32:39 -07001932 * Figure out what the alignment of the objects will be.
Christoph Lameter81819f02007-05-06 14:49:36 -07001933 */
1934static unsigned long calculate_alignment(unsigned long flags,
1935 unsigned long align, unsigned long size)
1936{
1937 /*
Christoph Lameter6446faa2008-02-15 23:45:26 -08001938 * If the user wants hardware cache aligned objects then follow that
1939 * suggestion if the object is sufficiently large.
Christoph Lameter81819f02007-05-06 14:49:36 -07001940 *
Christoph Lameter6446faa2008-02-15 23:45:26 -08001941 * The hardware cache alignment cannot override the specified
1942 * alignment though. If that is greater then use it.
Christoph Lameter81819f02007-05-06 14:49:36 -07001943 */
Nick Pigginb6210382008-03-05 14:05:56 -08001944 if (flags & SLAB_HWCACHE_ALIGN) {
1945 unsigned long ralign = cache_line_size();
1946 while (size <= ralign / 2)
1947 ralign /= 2;
1948 align = max(align, ralign);
1949 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001950
1951 if (align < ARCH_SLAB_MINALIGN)
Nick Pigginb6210382008-03-05 14:05:56 -08001952 align = ARCH_SLAB_MINALIGN;
Christoph Lameter81819f02007-05-06 14:49:36 -07001953
1954 return ALIGN(align, sizeof(void *));
1955}
1956
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001957static void init_kmem_cache_cpu(struct kmem_cache *s,
1958 struct kmem_cache_cpu *c)
1959{
1960 c->page = NULL;
Christoph Lametera973e9d2008-03-01 13:40:44 -08001961 c->freelist = NULL;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001962 c->node = 0;
Christoph Lameter42a9fdb2007-10-16 01:26:09 -07001963 c->offset = s->offset / sizeof(void *);
1964 c->objsize = s->objsize;
Pekka Enberg62f75532008-04-14 18:50:44 +03001965#ifdef CONFIG_SLUB_STATS
1966 memset(c->stat, 0, NR_SLUB_STAT_ITEMS * sizeof(unsigned));
1967#endif
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001968}
1969
Christoph Lameter81819f02007-05-06 14:49:36 -07001970static void init_kmem_cache_node(struct kmem_cache_node *n)
1971{
1972 n->nr_partial = 0;
Christoph Lameter81819f02007-05-06 14:49:36 -07001973 spin_lock_init(&n->list_lock);
1974 INIT_LIST_HEAD(&n->partial);
Christoph Lameter8ab13722007-07-17 04:03:32 -07001975#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter0f389ec2008-04-14 18:53:02 +03001976 atomic_long_set(&n->nr_slabs, 0);
Christoph Lameter643b1132007-05-06 14:49:42 -07001977 INIT_LIST_HEAD(&n->full);
Christoph Lameter8ab13722007-07-17 04:03:32 -07001978#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07001979}
1980
Christoph Lameter4c93c3552007-10-16 01:26:08 -07001981#ifdef CONFIG_SMP
1982/*
1983 * Per cpu array for per cpu structures.
1984 *
1985 * The per cpu array places all kmem_cache_cpu structures from one processor
1986 * close together meaning that it becomes possible that multiple per cpu
1987 * structures are contained in one cacheline. This may be particularly
1988 * beneficial for the kmalloc caches.
1989 *
1990 * A desktop system typically has around 60-80 slabs. With 100 here we are
1991 * likely able to get per cpu structures for all caches from the array defined
1992 * here. We must be able to cover all kmalloc caches during bootstrap.
1993 *
1994 * If the per cpu array is exhausted then fall back to kmalloc
1995 * of individual cachelines. No sharing is possible then.
1996 */
1997#define NR_KMEM_CACHE_CPU 100
1998
1999static DEFINE_PER_CPU(struct kmem_cache_cpu,
2000 kmem_cache_cpu)[NR_KMEM_CACHE_CPU];
2001
2002static DEFINE_PER_CPU(struct kmem_cache_cpu *, kmem_cache_cpu_free);
2003static cpumask_t kmem_cach_cpu_free_init_once = CPU_MASK_NONE;
2004
2005static struct kmem_cache_cpu *alloc_kmem_cache_cpu(struct kmem_cache *s,
2006 int cpu, gfp_t flags)
2007{
2008 struct kmem_cache_cpu *c = per_cpu(kmem_cache_cpu_free, cpu);
2009
2010 if (c)
2011 per_cpu(kmem_cache_cpu_free, cpu) =
2012 (void *)c->freelist;
2013 else {
2014 /* Table overflow: So allocate ourselves */
2015 c = kmalloc_node(
2016 ALIGN(sizeof(struct kmem_cache_cpu), cache_line_size()),
2017 flags, cpu_to_node(cpu));
2018 if (!c)
2019 return NULL;
2020 }
2021
2022 init_kmem_cache_cpu(s, c);
2023 return c;
2024}
2025
2026static void free_kmem_cache_cpu(struct kmem_cache_cpu *c, int cpu)
2027{
2028 if (c < per_cpu(kmem_cache_cpu, cpu) ||
2029 c > per_cpu(kmem_cache_cpu, cpu) + NR_KMEM_CACHE_CPU) {
2030 kfree(c);
2031 return;
2032 }
2033 c->freelist = (void *)per_cpu(kmem_cache_cpu_free, cpu);
2034 per_cpu(kmem_cache_cpu_free, cpu) = c;
2035}
2036
2037static void free_kmem_cache_cpus(struct kmem_cache *s)
2038{
2039 int cpu;
2040
2041 for_each_online_cpu(cpu) {
2042 struct kmem_cache_cpu *c = get_cpu_slab(s, cpu);
2043
2044 if (c) {
2045 s->cpu_slab[cpu] = NULL;
2046 free_kmem_cache_cpu(c, cpu);
2047 }
2048 }
2049}
2050
2051static int alloc_kmem_cache_cpus(struct kmem_cache *s, gfp_t flags)
2052{
2053 int cpu;
2054
2055 for_each_online_cpu(cpu) {
2056 struct kmem_cache_cpu *c = get_cpu_slab(s, cpu);
2057
2058 if (c)
2059 continue;
2060
2061 c = alloc_kmem_cache_cpu(s, cpu, flags);
2062 if (!c) {
2063 free_kmem_cache_cpus(s);
2064 return 0;
2065 }
2066 s->cpu_slab[cpu] = c;
2067 }
2068 return 1;
2069}
2070
2071/*
2072 * Initialize the per cpu array.
2073 */
2074static void init_alloc_cpu_cpu(int cpu)
2075{
2076 int i;
2077
2078 if (cpu_isset(cpu, kmem_cach_cpu_free_init_once))
2079 return;
2080
2081 for (i = NR_KMEM_CACHE_CPU - 1; i >= 0; i--)
2082 free_kmem_cache_cpu(&per_cpu(kmem_cache_cpu, cpu)[i], cpu);
2083
2084 cpu_set(cpu, kmem_cach_cpu_free_init_once);
2085}
2086
2087static void __init init_alloc_cpu(void)
2088{
2089 int cpu;
2090
2091 for_each_online_cpu(cpu)
2092 init_alloc_cpu_cpu(cpu);
2093 }
2094
2095#else
2096static inline void free_kmem_cache_cpus(struct kmem_cache *s) {}
2097static inline void init_alloc_cpu(void) {}
2098
2099static inline int alloc_kmem_cache_cpus(struct kmem_cache *s, gfp_t flags)
2100{
2101 init_kmem_cache_cpu(s, &s->cpu_slab);
2102 return 1;
2103}
2104#endif
2105
Christoph Lameter81819f02007-05-06 14:49:36 -07002106#ifdef CONFIG_NUMA
2107/*
2108 * No kmalloc_node yet so do it by hand. We know that this is the first
2109 * slab on the node for this slabcache. There are no concurrent accesses
2110 * possible.
2111 *
2112 * Note that this function only works on the kmalloc_node_cache
Christoph Lameter4c93c3552007-10-16 01:26:08 -07002113 * when allocating for the kmalloc_node_cache. This is used for bootstrapping
2114 * memory on a fresh node that has no slab structures yet.
Christoph Lameter81819f02007-05-06 14:49:36 -07002115 */
Adrian Bunk1cd7daa2007-10-16 01:24:18 -07002116static struct kmem_cache_node *early_kmem_cache_node_alloc(gfp_t gfpflags,
2117 int node)
Christoph Lameter81819f02007-05-06 14:49:36 -07002118{
2119 struct page *page;
2120 struct kmem_cache_node *n;
rootba84c732008-01-07 23:20:28 -08002121 unsigned long flags;
Christoph Lameter81819f02007-05-06 14:49:36 -07002122
2123 BUG_ON(kmalloc_caches->size < sizeof(struct kmem_cache_node));
2124
Christoph Lametera2f92ee2007-08-22 14:01:57 -07002125 page = new_slab(kmalloc_caches, gfpflags, node);
Christoph Lameter81819f02007-05-06 14:49:36 -07002126
2127 BUG_ON(!page);
Christoph Lametera2f92ee2007-08-22 14:01:57 -07002128 if (page_to_nid(page) != node) {
2129 printk(KERN_ERR "SLUB: Unable to allocate memory from "
2130 "node %d\n", node);
2131 printk(KERN_ERR "SLUB: Allocating a useless per node structure "
2132 "in order to be able to continue\n");
2133 }
2134
Christoph Lameter81819f02007-05-06 14:49:36 -07002135 n = page->freelist;
2136 BUG_ON(!n);
2137 page->freelist = get_freepointer(kmalloc_caches, n);
2138 page->inuse++;
2139 kmalloc_caches->node[node] = n;
Christoph Lameter8ab13722007-07-17 04:03:32 -07002140#ifdef CONFIG_SLUB_DEBUG
Christoph Lameterd45f39c2007-07-17 04:03:21 -07002141 init_object(kmalloc_caches, n, 1);
2142 init_tracking(kmalloc_caches, n);
Christoph Lameter8ab13722007-07-17 04:03:32 -07002143#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07002144 init_kmem_cache_node(n);
Christoph Lameter205ab992008-04-14 19:11:40 +03002145 inc_slabs_node(kmalloc_caches, node, page->objects);
Christoph Lameter6446faa2008-02-15 23:45:26 -08002146
rootba84c732008-01-07 23:20:28 -08002147 /*
2148 * lockdep requires consistent irq usage for each lock
2149 * so even though there cannot be a race this early in
2150 * the boot sequence, we still disable irqs.
2151 */
2152 local_irq_save(flags);
Christoph Lameter7c2e1322008-01-07 23:20:27 -08002153 add_partial(n, page, 0);
rootba84c732008-01-07 23:20:28 -08002154 local_irq_restore(flags);
Christoph Lameter81819f02007-05-06 14:49:36 -07002155 return n;
2156}
2157
2158static void free_kmem_cache_nodes(struct kmem_cache *s)
2159{
2160 int node;
2161
Christoph Lameterf64dc582007-10-16 01:25:33 -07002162 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002163 struct kmem_cache_node *n = s->node[node];
2164 if (n && n != &s->local_node)
2165 kmem_cache_free(kmalloc_caches, n);
2166 s->node[node] = NULL;
2167 }
2168}
2169
2170static int init_kmem_cache_nodes(struct kmem_cache *s, gfp_t gfpflags)
2171{
2172 int node;
2173 int local_node;
2174
2175 if (slab_state >= UP)
2176 local_node = page_to_nid(virt_to_page(s));
2177 else
2178 local_node = 0;
2179
Christoph Lameterf64dc582007-10-16 01:25:33 -07002180 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002181 struct kmem_cache_node *n;
2182
2183 if (local_node == node)
2184 n = &s->local_node;
2185 else {
2186 if (slab_state == DOWN) {
2187 n = early_kmem_cache_node_alloc(gfpflags,
2188 node);
2189 continue;
2190 }
2191 n = kmem_cache_alloc_node(kmalloc_caches,
2192 gfpflags, node);
2193
2194 if (!n) {
2195 free_kmem_cache_nodes(s);
2196 return 0;
2197 }
2198
2199 }
2200 s->node[node] = n;
2201 init_kmem_cache_node(n);
2202 }
2203 return 1;
2204}
2205#else
2206static void free_kmem_cache_nodes(struct kmem_cache *s)
2207{
2208}
2209
2210static int init_kmem_cache_nodes(struct kmem_cache *s, gfp_t gfpflags)
2211{
2212 init_kmem_cache_node(&s->local_node);
2213 return 1;
2214}
2215#endif
2216
2217/*
2218 * calculate_sizes() determines the order and the distribution of data within
2219 * a slab object.
2220 */
Christoph Lameter06b285d2008-04-14 19:11:41 +03002221static int calculate_sizes(struct kmem_cache *s, int forced_order)
Christoph Lameter81819f02007-05-06 14:49:36 -07002222{
2223 unsigned long flags = s->flags;
2224 unsigned long size = s->objsize;
2225 unsigned long align = s->align;
Christoph Lameter834f3d12008-04-14 19:11:31 +03002226 int order;
Christoph Lameter81819f02007-05-06 14:49:36 -07002227
2228 /*
Christoph Lameterd8b42bf2008-02-15 23:45:25 -08002229 * Round up object size to the next word boundary. We can only
2230 * place the free pointer at word boundaries and this determines
2231 * the possible location of the free pointer.
2232 */
2233 size = ALIGN(size, sizeof(void *));
2234
2235#ifdef CONFIG_SLUB_DEBUG
2236 /*
Christoph Lameter81819f02007-05-06 14:49:36 -07002237 * Determine if we can poison the object itself. If the user of
2238 * the slab may touch the object after free or before allocation
2239 * then we should never poison the object itself.
2240 */
2241 if ((flags & SLAB_POISON) && !(flags & SLAB_DESTROY_BY_RCU) &&
Christoph Lameterc59def92007-05-16 22:10:50 -07002242 !s->ctor)
Christoph Lameter81819f02007-05-06 14:49:36 -07002243 s->flags |= __OBJECT_POISON;
2244 else
2245 s->flags &= ~__OBJECT_POISON;
2246
Christoph Lameter81819f02007-05-06 14:49:36 -07002247
2248 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07002249 * If we are Redzoning then check if there is some space between the
Christoph Lameter81819f02007-05-06 14:49:36 -07002250 * end of the object and the free pointer. If not then add an
Christoph Lameter672bba32007-05-09 02:32:39 -07002251 * additional word to have some bytes to store Redzone information.
Christoph Lameter81819f02007-05-06 14:49:36 -07002252 */
2253 if ((flags & SLAB_RED_ZONE) && size == s->objsize)
2254 size += sizeof(void *);
Christoph Lameter41ecc552007-05-09 02:32:44 -07002255#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07002256
2257 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07002258 * With that we have determined the number of bytes in actual use
2259 * by the object. This is the potential offset to the free pointer.
Christoph Lameter81819f02007-05-06 14:49:36 -07002260 */
2261 s->inuse = size;
2262
2263 if (((flags & (SLAB_DESTROY_BY_RCU | SLAB_POISON)) ||
Christoph Lameterc59def92007-05-16 22:10:50 -07002264 s->ctor)) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002265 /*
2266 * Relocate free pointer after the object if it is not
2267 * permitted to overwrite the first word of the object on
2268 * kmem_cache_free.
2269 *
2270 * This is the case if we do RCU, have a constructor or
2271 * destructor or are poisoning the objects.
2272 */
2273 s->offset = size;
2274 size += sizeof(void *);
2275 }
2276
Christoph Lameterc12b3c62007-05-23 13:57:31 -07002277#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter81819f02007-05-06 14:49:36 -07002278 if (flags & SLAB_STORE_USER)
2279 /*
2280 * Need to store information about allocs and frees after
2281 * the object.
2282 */
2283 size += 2 * sizeof(struct track);
2284
Christoph Lameterbe7b3fb2007-05-09 02:32:36 -07002285 if (flags & SLAB_RED_ZONE)
Christoph Lameter81819f02007-05-06 14:49:36 -07002286 /*
2287 * Add some empty padding so that we can catch
2288 * overwrites from earlier objects rather than let
2289 * tracking information or the free pointer be
2290 * corrupted if an user writes before the start
2291 * of the object.
2292 */
2293 size += sizeof(void *);
Christoph Lameter41ecc552007-05-09 02:32:44 -07002294#endif
Christoph Lameter672bba32007-05-09 02:32:39 -07002295
Christoph Lameter81819f02007-05-06 14:49:36 -07002296 /*
2297 * Determine the alignment based on various parameters that the
Christoph Lameter65c02d42007-05-09 02:32:35 -07002298 * user specified and the dynamic determination of cache line size
2299 * on bootup.
Christoph Lameter81819f02007-05-06 14:49:36 -07002300 */
2301 align = calculate_alignment(flags, align, s->objsize);
2302
2303 /*
2304 * SLUB stores one object immediately after another beginning from
2305 * offset 0. In order to align the objects we have to simply size
2306 * each object to conform to the alignment.
2307 */
2308 size = ALIGN(size, align);
2309 s->size = size;
Christoph Lameter06b285d2008-04-14 19:11:41 +03002310 if (forced_order >= 0)
2311 order = forced_order;
2312 else
2313 order = calculate_order(size);
Christoph Lameter71c7a062008-02-14 14:28:01 -08002314
Christoph Lameter834f3d12008-04-14 19:11:31 +03002315 if (order < 0)
Christoph Lameter81819f02007-05-06 14:49:36 -07002316 return 0;
2317
Christoph Lameterb7a49f02008-02-14 14:21:32 -08002318 s->allocflags = 0;
Christoph Lameter834f3d12008-04-14 19:11:31 +03002319 if (order)
Christoph Lameterb7a49f02008-02-14 14:21:32 -08002320 s->allocflags |= __GFP_COMP;
2321
2322 if (s->flags & SLAB_CACHE_DMA)
2323 s->allocflags |= SLUB_DMA;
2324
2325 if (s->flags & SLAB_RECLAIM_ACCOUNT)
2326 s->allocflags |= __GFP_RECLAIMABLE;
2327
Christoph Lameter81819f02007-05-06 14:49:36 -07002328 /*
2329 * Determine the number of objects per slab
2330 */
Christoph Lameter834f3d12008-04-14 19:11:31 +03002331 s->oo = oo_make(order, size);
Christoph Lameter65c33762008-04-14 19:11:40 +03002332 s->min = oo_make(get_order(size), size);
Christoph Lameter205ab992008-04-14 19:11:40 +03002333 if (oo_objects(s->oo) > oo_objects(s->max))
2334 s->max = s->oo;
Christoph Lameter81819f02007-05-06 14:49:36 -07002335
Christoph Lameter834f3d12008-04-14 19:11:31 +03002336 return !!oo_objects(s->oo);
Christoph Lameter81819f02007-05-06 14:49:36 -07002337
2338}
2339
Christoph Lameter81819f02007-05-06 14:49:36 -07002340static int kmem_cache_open(struct kmem_cache *s, gfp_t gfpflags,
2341 const char *name, size_t size,
2342 size_t align, unsigned long flags,
Christoph Lameter4ba9b9d2007-10-16 23:25:51 -07002343 void (*ctor)(struct kmem_cache *, void *))
Christoph Lameter81819f02007-05-06 14:49:36 -07002344{
2345 memset(s, 0, kmem_size);
2346 s->name = name;
2347 s->ctor = ctor;
Christoph Lameter81819f02007-05-06 14:49:36 -07002348 s->objsize = size;
Christoph Lameter81819f02007-05-06 14:49:36 -07002349 s->align = align;
Christoph Lameterba0268a2007-09-11 15:24:11 -07002350 s->flags = kmem_cache_flags(size, flags, name, ctor);
Christoph Lameter81819f02007-05-06 14:49:36 -07002351
Christoph Lameter06b285d2008-04-14 19:11:41 +03002352 if (!calculate_sizes(s, -1))
Christoph Lameter81819f02007-05-06 14:49:36 -07002353 goto error;
2354
2355 s->refcount = 1;
2356#ifdef CONFIG_NUMA
Christoph Lameter98246012008-01-07 23:20:26 -08002357 s->remote_node_defrag_ratio = 100;
Christoph Lameter81819f02007-05-06 14:49:36 -07002358#endif
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002359 if (!init_kmem_cache_nodes(s, gfpflags & ~SLUB_DMA))
2360 goto error;
Christoph Lameter81819f02007-05-06 14:49:36 -07002361
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002362 if (alloc_kmem_cache_cpus(s, gfpflags & ~SLUB_DMA))
Christoph Lameter81819f02007-05-06 14:49:36 -07002363 return 1;
Christoph Lameter4c93c3552007-10-16 01:26:08 -07002364 free_kmem_cache_nodes(s);
Christoph Lameter81819f02007-05-06 14:49:36 -07002365error:
2366 if (flags & SLAB_PANIC)
2367 panic("Cannot create slab %s size=%lu realsize=%u "
2368 "order=%u offset=%u flags=%lx\n",
Christoph Lameter834f3d12008-04-14 19:11:31 +03002369 s->name, (unsigned long)size, s->size, oo_order(s->oo),
Christoph Lameter81819f02007-05-06 14:49:36 -07002370 s->offset, flags);
2371 return 0;
2372}
Christoph Lameter81819f02007-05-06 14:49:36 -07002373
2374/*
2375 * Check if a given pointer is valid
2376 */
2377int kmem_ptr_validate(struct kmem_cache *s, const void *object)
2378{
Pekka Enberg06428782008-01-07 23:20:27 -08002379 struct page *page;
Christoph Lameter81819f02007-05-06 14:49:36 -07002380
2381 page = get_object_page(object);
2382
2383 if (!page || s != page->slab)
2384 /* No slab or wrong slab */
2385 return 0;
2386
Christoph Lameterabcd08a2007-05-09 02:32:37 -07002387 if (!check_valid_pointer(s, page, object))
Christoph Lameter81819f02007-05-06 14:49:36 -07002388 return 0;
2389
2390 /*
2391 * We could also check if the object is on the slabs freelist.
2392 * But this would be too expensive and it seems that the main
Christoph Lameter6446faa2008-02-15 23:45:26 -08002393 * purpose of kmem_ptr_valid() is to check if the object belongs
Christoph Lameter81819f02007-05-06 14:49:36 -07002394 * to a certain slab.
2395 */
2396 return 1;
2397}
2398EXPORT_SYMBOL(kmem_ptr_validate);
2399
2400/*
2401 * Determine the size of a slab object
2402 */
2403unsigned int kmem_cache_size(struct kmem_cache *s)
2404{
2405 return s->objsize;
2406}
2407EXPORT_SYMBOL(kmem_cache_size);
2408
2409const char *kmem_cache_name(struct kmem_cache *s)
2410{
2411 return s->name;
2412}
2413EXPORT_SYMBOL(kmem_cache_name);
2414
Christoph Lameter33b12c32008-04-25 12:22:43 -07002415static void list_slab_objects(struct kmem_cache *s, struct page *page,
2416 const char *text)
2417{
2418#ifdef CONFIG_SLUB_DEBUG
2419 void *addr = page_address(page);
2420 void *p;
2421 DECLARE_BITMAP(map, page->objects);
2422
2423 bitmap_zero(map, page->objects);
2424 slab_err(s, page, "%s", text);
2425 slab_lock(page);
2426 for_each_free_object(p, s, page->freelist)
2427 set_bit(slab_index(p, s, addr), map);
2428
2429 for_each_object(p, s, addr, page->objects) {
2430
2431 if (!test_bit(slab_index(p, s, addr), map)) {
2432 printk(KERN_ERR "INFO: Object 0x%p @offset=%tu\n",
2433 p, p - addr);
2434 print_tracking(s, p);
2435 }
2436 }
2437 slab_unlock(page);
2438#endif
2439}
2440
Christoph Lameter81819f02007-05-06 14:49:36 -07002441/*
Christoph Lameter599870b2008-04-23 12:36:52 -07002442 * Attempt to free all partial slabs on a node.
Christoph Lameter81819f02007-05-06 14:49:36 -07002443 */
Christoph Lameter599870b2008-04-23 12:36:52 -07002444static void free_partial(struct kmem_cache *s, struct kmem_cache_node *n)
Christoph Lameter81819f02007-05-06 14:49:36 -07002445{
Christoph Lameter81819f02007-05-06 14:49:36 -07002446 unsigned long flags;
2447 struct page *page, *h;
2448
2449 spin_lock_irqsave(&n->list_lock, flags);
Christoph Lameter33b12c32008-04-25 12:22:43 -07002450 list_for_each_entry_safe(page, h, &n->partial, lru) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002451 if (!page->inuse) {
2452 list_del(&page->lru);
2453 discard_slab(s, page);
Christoph Lameter599870b2008-04-23 12:36:52 -07002454 n->nr_partial--;
Christoph Lameter33b12c32008-04-25 12:22:43 -07002455 } else {
2456 list_slab_objects(s, page,
2457 "Objects remaining on kmem_cache_close()");
Christoph Lameter599870b2008-04-23 12:36:52 -07002458 }
Christoph Lameter33b12c32008-04-25 12:22:43 -07002459 }
Christoph Lameter81819f02007-05-06 14:49:36 -07002460 spin_unlock_irqrestore(&n->list_lock, flags);
Christoph Lameter81819f02007-05-06 14:49:36 -07002461}
2462
2463/*
Christoph Lameter672bba32007-05-09 02:32:39 -07002464 * Release all resources used by a slab cache.
Christoph Lameter81819f02007-05-06 14:49:36 -07002465 */
Christoph Lameter0c710012007-07-17 04:03:24 -07002466static inline int kmem_cache_close(struct kmem_cache *s)
Christoph Lameter81819f02007-05-06 14:49:36 -07002467{
2468 int node;
2469
2470 flush_all(s);
2471
2472 /* Attempt to free all objects */
Christoph Lameter4c93c3552007-10-16 01:26:08 -07002473 free_kmem_cache_cpus(s);
Christoph Lameterf64dc582007-10-16 01:25:33 -07002474 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002475 struct kmem_cache_node *n = get_node(s, node);
2476
Christoph Lameter599870b2008-04-23 12:36:52 -07002477 free_partial(s, n);
2478 if (n->nr_partial || slabs_node(s, node))
Christoph Lameter81819f02007-05-06 14:49:36 -07002479 return 1;
2480 }
2481 free_kmem_cache_nodes(s);
2482 return 0;
2483}
2484
2485/*
2486 * Close a cache and release the kmem_cache structure
2487 * (must be used for caches created using kmem_cache_create)
2488 */
2489void kmem_cache_destroy(struct kmem_cache *s)
2490{
2491 down_write(&slub_lock);
2492 s->refcount--;
2493 if (!s->refcount) {
2494 list_del(&s->list);
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07002495 up_write(&slub_lock);
Pekka Enbergd629d812008-04-23 22:31:08 +03002496 if (kmem_cache_close(s)) {
2497 printk(KERN_ERR "SLUB %s: %s called for cache that "
2498 "still has objects.\n", s->name, __func__);
2499 dump_stack();
2500 }
Christoph Lameter81819f02007-05-06 14:49:36 -07002501 sysfs_slab_remove(s);
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07002502 } else
2503 up_write(&slub_lock);
Christoph Lameter81819f02007-05-06 14:49:36 -07002504}
2505EXPORT_SYMBOL(kmem_cache_destroy);
2506
2507/********************************************************************
2508 * Kmalloc subsystem
2509 *******************************************************************/
2510
Christoph Lameter331dc552008-02-14 14:28:09 -08002511struct kmem_cache kmalloc_caches[PAGE_SHIFT + 1] __cacheline_aligned;
Christoph Lameter81819f02007-05-06 14:49:36 -07002512EXPORT_SYMBOL(kmalloc_caches);
2513
Christoph Lameter81819f02007-05-06 14:49:36 -07002514static int __init setup_slub_min_order(char *str)
2515{
Pekka Enberg06428782008-01-07 23:20:27 -08002516 get_option(&str, &slub_min_order);
Christoph Lameter81819f02007-05-06 14:49:36 -07002517
2518 return 1;
2519}
2520
2521__setup("slub_min_order=", setup_slub_min_order);
2522
2523static int __init setup_slub_max_order(char *str)
2524{
Pekka Enberg06428782008-01-07 23:20:27 -08002525 get_option(&str, &slub_max_order);
Christoph Lameter81819f02007-05-06 14:49:36 -07002526
2527 return 1;
2528}
2529
2530__setup("slub_max_order=", setup_slub_max_order);
2531
2532static int __init setup_slub_min_objects(char *str)
2533{
Pekka Enberg06428782008-01-07 23:20:27 -08002534 get_option(&str, &slub_min_objects);
Christoph Lameter81819f02007-05-06 14:49:36 -07002535
2536 return 1;
2537}
2538
2539__setup("slub_min_objects=", setup_slub_min_objects);
2540
2541static int __init setup_slub_nomerge(char *str)
2542{
2543 slub_nomerge = 1;
2544 return 1;
2545}
2546
2547__setup("slub_nomerge", setup_slub_nomerge);
2548
Christoph Lameter81819f02007-05-06 14:49:36 -07002549static struct kmem_cache *create_kmalloc_cache(struct kmem_cache *s,
2550 const char *name, int size, gfp_t gfp_flags)
2551{
2552 unsigned int flags = 0;
2553
2554 if (gfp_flags & SLUB_DMA)
2555 flags = SLAB_CACHE_DMA;
2556
2557 down_write(&slub_lock);
2558 if (!kmem_cache_open(s, gfp_flags, name, size, ARCH_KMALLOC_MINALIGN,
Christoph Lameter319d1e22008-04-14 19:11:41 +03002559 flags, NULL))
Christoph Lameter81819f02007-05-06 14:49:36 -07002560 goto panic;
2561
2562 list_add(&s->list, &slab_caches);
2563 up_write(&slub_lock);
2564 if (sysfs_slab_add(s))
2565 goto panic;
2566 return s;
2567
2568panic:
2569 panic("Creation of kmalloc slab %s size=%d failed.\n", name, size);
2570}
2571
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002572#ifdef CONFIG_ZONE_DMA
Christoph Lameter4097d602008-04-14 18:51:18 +03002573static struct kmem_cache *kmalloc_caches_dma[PAGE_SHIFT + 1];
Christoph Lameter1ceef402007-08-07 15:11:48 -07002574
2575static void sysfs_add_func(struct work_struct *w)
2576{
2577 struct kmem_cache *s;
2578
2579 down_write(&slub_lock);
2580 list_for_each_entry(s, &slab_caches, list) {
2581 if (s->flags & __SYSFS_ADD_DEFERRED) {
2582 s->flags &= ~__SYSFS_ADD_DEFERRED;
2583 sysfs_slab_add(s);
2584 }
2585 }
2586 up_write(&slub_lock);
2587}
2588
2589static DECLARE_WORK(sysfs_add_work, sysfs_add_func);
2590
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002591static noinline struct kmem_cache *dma_kmalloc_cache(int index, gfp_t flags)
2592{
2593 struct kmem_cache *s;
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002594 char *text;
2595 size_t realsize;
2596
2597 s = kmalloc_caches_dma[index];
2598 if (s)
2599 return s;
2600
2601 /* Dynamically create dma cache */
Christoph Lameter1ceef402007-08-07 15:11:48 -07002602 if (flags & __GFP_WAIT)
2603 down_write(&slub_lock);
2604 else {
2605 if (!down_write_trylock(&slub_lock))
2606 goto out;
2607 }
2608
2609 if (kmalloc_caches_dma[index])
2610 goto unlock_out;
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002611
Christoph Lameter7b55f622007-07-17 04:03:27 -07002612 realsize = kmalloc_caches[index].objsize;
Ingo Molnar3adbefe2008-02-05 17:57:39 -08002613 text = kasprintf(flags & ~SLUB_DMA, "kmalloc_dma-%d",
2614 (unsigned int)realsize);
Christoph Lameter1ceef402007-08-07 15:11:48 -07002615 s = kmalloc(kmem_size, flags & ~SLUB_DMA);
2616
2617 if (!s || !text || !kmem_cache_open(s, flags, text,
2618 realsize, ARCH_KMALLOC_MINALIGN,
2619 SLAB_CACHE_DMA|__SYSFS_ADD_DEFERRED, NULL)) {
2620 kfree(s);
2621 kfree(text);
2622 goto unlock_out;
Christoph Lameterdfce8642007-07-17 04:03:25 -07002623 }
Christoph Lameter1ceef402007-08-07 15:11:48 -07002624
2625 list_add(&s->list, &slab_caches);
2626 kmalloc_caches_dma[index] = s;
2627
2628 schedule_work(&sysfs_add_work);
2629
2630unlock_out:
Christoph Lameterdfce8642007-07-17 04:03:25 -07002631 up_write(&slub_lock);
Christoph Lameter1ceef402007-08-07 15:11:48 -07002632out:
Christoph Lameterdfce8642007-07-17 04:03:25 -07002633 return kmalloc_caches_dma[index];
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002634}
2635#endif
2636
Christoph Lameterf1b26332007-07-17 04:03:26 -07002637/*
2638 * Conversion table for small slabs sizes / 8 to the index in the
2639 * kmalloc array. This is necessary for slabs < 192 since we have non power
2640 * of two cache sizes there. The size of larger slabs can be determined using
2641 * fls.
2642 */
2643static s8 size_index[24] = {
2644 3, /* 8 */
2645 4, /* 16 */
2646 5, /* 24 */
2647 5, /* 32 */
2648 6, /* 40 */
2649 6, /* 48 */
2650 6, /* 56 */
2651 6, /* 64 */
2652 1, /* 72 */
2653 1, /* 80 */
2654 1, /* 88 */
2655 1, /* 96 */
2656 7, /* 104 */
2657 7, /* 112 */
2658 7, /* 120 */
2659 7, /* 128 */
2660 2, /* 136 */
2661 2, /* 144 */
2662 2, /* 152 */
2663 2, /* 160 */
2664 2, /* 168 */
2665 2, /* 176 */
2666 2, /* 184 */
2667 2 /* 192 */
2668};
2669
Christoph Lameter81819f02007-05-06 14:49:36 -07002670static struct kmem_cache *get_slab(size_t size, gfp_t flags)
2671{
Christoph Lameterf1b26332007-07-17 04:03:26 -07002672 int index;
Christoph Lameter81819f02007-05-06 14:49:36 -07002673
Christoph Lameterf1b26332007-07-17 04:03:26 -07002674 if (size <= 192) {
2675 if (!size)
2676 return ZERO_SIZE_PTR;
Christoph Lameter81819f02007-05-06 14:49:36 -07002677
Christoph Lameterf1b26332007-07-17 04:03:26 -07002678 index = size_index[(size - 1) / 8];
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002679 } else
Christoph Lameterf1b26332007-07-17 04:03:26 -07002680 index = fls(size - 1);
Christoph Lameter81819f02007-05-06 14:49:36 -07002681
2682#ifdef CONFIG_ZONE_DMA
Christoph Lameterf1b26332007-07-17 04:03:26 -07002683 if (unlikely((flags & SLUB_DMA)))
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002684 return dma_kmalloc_cache(index, flags);
Christoph Lameterf1b26332007-07-17 04:03:26 -07002685
Christoph Lameter81819f02007-05-06 14:49:36 -07002686#endif
2687 return &kmalloc_caches[index];
2688}
2689
2690void *__kmalloc(size_t size, gfp_t flags)
2691{
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002692 struct kmem_cache *s;
Christoph Lameter81819f02007-05-06 14:49:36 -07002693
Christoph Lameter331dc552008-02-14 14:28:09 -08002694 if (unlikely(size > PAGE_SIZE))
Pekka Enbergeada35e2008-02-11 22:47:46 +02002695 return kmalloc_large(size, flags);
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002696
2697 s = get_slab(size, flags);
2698
2699 if (unlikely(ZERO_OR_NULL_PTR(s)))
Christoph Lameter6cb8f912007-07-17 04:03:22 -07002700 return s;
2701
Christoph Lameterce15fea2007-07-17 04:03:28 -07002702 return slab_alloc(s, flags, -1, __builtin_return_address(0));
Christoph Lameter81819f02007-05-06 14:49:36 -07002703}
2704EXPORT_SYMBOL(__kmalloc);
2705
Christoph Lameterf619cfe2008-03-01 13:56:40 -08002706static void *kmalloc_large_node(size_t size, gfp_t flags, int node)
2707{
2708 struct page *page = alloc_pages_node(node, flags | __GFP_COMP,
2709 get_order(size));
2710
2711 if (page)
2712 return page_address(page);
2713 else
2714 return NULL;
2715}
2716
Christoph Lameter81819f02007-05-06 14:49:36 -07002717#ifdef CONFIG_NUMA
2718void *__kmalloc_node(size_t size, gfp_t flags, int node)
2719{
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002720 struct kmem_cache *s;
Christoph Lameter81819f02007-05-06 14:49:36 -07002721
Christoph Lameter331dc552008-02-14 14:28:09 -08002722 if (unlikely(size > PAGE_SIZE))
Christoph Lameterf619cfe2008-03-01 13:56:40 -08002723 return kmalloc_large_node(size, flags, node);
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002724
2725 s = get_slab(size, flags);
2726
2727 if (unlikely(ZERO_OR_NULL_PTR(s)))
Christoph Lameter6cb8f912007-07-17 04:03:22 -07002728 return s;
2729
Christoph Lameterce15fea2007-07-17 04:03:28 -07002730 return slab_alloc(s, flags, node, __builtin_return_address(0));
Christoph Lameter81819f02007-05-06 14:49:36 -07002731}
2732EXPORT_SYMBOL(__kmalloc_node);
2733#endif
2734
2735size_t ksize(const void *object)
2736{
Christoph Lameter272c1d22007-06-08 13:46:49 -07002737 struct page *page;
Christoph Lameter81819f02007-05-06 14:49:36 -07002738 struct kmem_cache *s;
2739
Christoph Lameteref8b4522007-10-16 01:24:46 -07002740 if (unlikely(object == ZERO_SIZE_PTR))
Christoph Lameter272c1d22007-06-08 13:46:49 -07002741 return 0;
2742
Vegard Nossum294a80a2007-12-04 23:45:30 -08002743 page = virt_to_head_page(object);
Vegard Nossum294a80a2007-12-04 23:45:30 -08002744
2745 if (unlikely(!PageSlab(page)))
2746 return PAGE_SIZE << compound_order(page);
2747
Christoph Lameter81819f02007-05-06 14:49:36 -07002748 s = page->slab;
Christoph Lameter81819f02007-05-06 14:49:36 -07002749
Christoph Lameterae20bfd2008-02-15 23:45:25 -08002750#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter81819f02007-05-06 14:49:36 -07002751 /*
2752 * Debugging requires use of the padding between object
2753 * and whatever may come after it.
2754 */
2755 if (s->flags & (SLAB_RED_ZONE | SLAB_POISON))
2756 return s->objsize;
2757
Christoph Lameterae20bfd2008-02-15 23:45:25 -08002758#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07002759 /*
2760 * If we have the need to store the freelist pointer
2761 * back there or track user information then we can
2762 * only use the space before that information.
2763 */
2764 if (s->flags & (SLAB_DESTROY_BY_RCU | SLAB_STORE_USER))
2765 return s->inuse;
Christoph Lameter81819f02007-05-06 14:49:36 -07002766 /*
2767 * Else we can use all the padding etc for the allocation
2768 */
2769 return s->size;
2770}
2771EXPORT_SYMBOL(ksize);
2772
2773void kfree(const void *x)
2774{
Christoph Lameter81819f02007-05-06 14:49:36 -07002775 struct page *page;
Christoph Lameter5bb983b2008-02-07 17:47:41 -08002776 void *object = (void *)x;
Christoph Lameter81819f02007-05-06 14:49:36 -07002777
Satyam Sharma2408c552007-10-16 01:24:44 -07002778 if (unlikely(ZERO_OR_NULL_PTR(x)))
Christoph Lameter81819f02007-05-06 14:49:36 -07002779 return;
2780
Christoph Lameterb49af682007-05-06 14:49:41 -07002781 page = virt_to_head_page(x);
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002782 if (unlikely(!PageSlab(page))) {
2783 put_page(page);
2784 return;
2785 }
Christoph Lameter5bb983b2008-02-07 17:47:41 -08002786 slab_free(page->slab, page, object, __builtin_return_address(0));
Christoph Lameter81819f02007-05-06 14:49:36 -07002787}
2788EXPORT_SYMBOL(kfree);
2789
Christoph Lameter2086d262007-05-06 14:49:46 -07002790/*
Christoph Lameter672bba32007-05-09 02:32:39 -07002791 * kmem_cache_shrink removes empty slabs from the partial lists and sorts
2792 * the remaining slabs by the number of items in use. The slabs with the
2793 * most items in use come first. New allocations will then fill those up
2794 * and thus they can be removed from the partial lists.
2795 *
2796 * The slabs with the least items are placed last. This results in them
2797 * being allocated from last increasing the chance that the last objects
2798 * are freed in them.
Christoph Lameter2086d262007-05-06 14:49:46 -07002799 */
2800int kmem_cache_shrink(struct kmem_cache *s)
2801{
2802 int node;
2803 int i;
2804 struct kmem_cache_node *n;
2805 struct page *page;
2806 struct page *t;
Christoph Lameter205ab992008-04-14 19:11:40 +03002807 int objects = oo_objects(s->max);
Christoph Lameter2086d262007-05-06 14:49:46 -07002808 struct list_head *slabs_by_inuse =
Christoph Lameter834f3d12008-04-14 19:11:31 +03002809 kmalloc(sizeof(struct list_head) * objects, GFP_KERNEL);
Christoph Lameter2086d262007-05-06 14:49:46 -07002810 unsigned long flags;
2811
2812 if (!slabs_by_inuse)
2813 return -ENOMEM;
2814
2815 flush_all(s);
Christoph Lameterf64dc582007-10-16 01:25:33 -07002816 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter2086d262007-05-06 14:49:46 -07002817 n = get_node(s, node);
2818
2819 if (!n->nr_partial)
2820 continue;
2821
Christoph Lameter834f3d12008-04-14 19:11:31 +03002822 for (i = 0; i < objects; i++)
Christoph Lameter2086d262007-05-06 14:49:46 -07002823 INIT_LIST_HEAD(slabs_by_inuse + i);
2824
2825 spin_lock_irqsave(&n->list_lock, flags);
2826
2827 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07002828 * Build lists indexed by the items in use in each slab.
Christoph Lameter2086d262007-05-06 14:49:46 -07002829 *
Christoph Lameter672bba32007-05-09 02:32:39 -07002830 * Note that concurrent frees may occur while we hold the
2831 * list_lock. page->inuse here is the upper limit.
Christoph Lameter2086d262007-05-06 14:49:46 -07002832 */
2833 list_for_each_entry_safe(page, t, &n->partial, lru) {
2834 if (!page->inuse && slab_trylock(page)) {
2835 /*
2836 * Must hold slab lock here because slab_free
2837 * may have freed the last object and be
2838 * waiting to release the slab.
2839 */
2840 list_del(&page->lru);
2841 n->nr_partial--;
2842 slab_unlock(page);
2843 discard_slab(s, page);
2844 } else {
Christoph Lameterfcda3d82007-07-30 13:06:46 -07002845 list_move(&page->lru,
2846 slabs_by_inuse + page->inuse);
Christoph Lameter2086d262007-05-06 14:49:46 -07002847 }
2848 }
2849
Christoph Lameter2086d262007-05-06 14:49:46 -07002850 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07002851 * Rebuild the partial list with the slabs filled up most
2852 * first and the least used slabs at the end.
Christoph Lameter2086d262007-05-06 14:49:46 -07002853 */
Christoph Lameter834f3d12008-04-14 19:11:31 +03002854 for (i = objects - 1; i >= 0; i--)
Christoph Lameter2086d262007-05-06 14:49:46 -07002855 list_splice(slabs_by_inuse + i, n->partial.prev);
2856
Christoph Lameter2086d262007-05-06 14:49:46 -07002857 spin_unlock_irqrestore(&n->list_lock, flags);
2858 }
2859
2860 kfree(slabs_by_inuse);
2861 return 0;
2862}
2863EXPORT_SYMBOL(kmem_cache_shrink);
2864
Yasunori Gotob9049e22007-10-21 16:41:37 -07002865#if defined(CONFIG_NUMA) && defined(CONFIG_MEMORY_HOTPLUG)
2866static int slab_mem_going_offline_callback(void *arg)
2867{
2868 struct kmem_cache *s;
2869
2870 down_read(&slub_lock);
2871 list_for_each_entry(s, &slab_caches, list)
2872 kmem_cache_shrink(s);
2873 up_read(&slub_lock);
2874
2875 return 0;
2876}
2877
2878static void slab_mem_offline_callback(void *arg)
2879{
2880 struct kmem_cache_node *n;
2881 struct kmem_cache *s;
2882 struct memory_notify *marg = arg;
2883 int offline_node;
2884
2885 offline_node = marg->status_change_nid;
2886
2887 /*
2888 * If the node still has available memory. we need kmem_cache_node
2889 * for it yet.
2890 */
2891 if (offline_node < 0)
2892 return;
2893
2894 down_read(&slub_lock);
2895 list_for_each_entry(s, &slab_caches, list) {
2896 n = get_node(s, offline_node);
2897 if (n) {
2898 /*
2899 * if n->nr_slabs > 0, slabs still exist on the node
2900 * that is going down. We were unable to free them,
2901 * and offline_pages() function shoudn't call this
2902 * callback. So, we must fail.
2903 */
Christoph Lameter0f389ec2008-04-14 18:53:02 +03002904 BUG_ON(slabs_node(s, offline_node));
Yasunori Gotob9049e22007-10-21 16:41:37 -07002905
2906 s->node[offline_node] = NULL;
2907 kmem_cache_free(kmalloc_caches, n);
2908 }
2909 }
2910 up_read(&slub_lock);
2911}
2912
2913static int slab_mem_going_online_callback(void *arg)
2914{
2915 struct kmem_cache_node *n;
2916 struct kmem_cache *s;
2917 struct memory_notify *marg = arg;
2918 int nid = marg->status_change_nid;
2919 int ret = 0;
2920
2921 /*
2922 * If the node's memory is already available, then kmem_cache_node is
2923 * already created. Nothing to do.
2924 */
2925 if (nid < 0)
2926 return 0;
2927
2928 /*
2929 * We are bringing a node online. No memory is availabe yet. We must
2930 * allocate a kmem_cache_node structure in order to bring the node
2931 * online.
2932 */
2933 down_read(&slub_lock);
2934 list_for_each_entry(s, &slab_caches, list) {
2935 /*
2936 * XXX: kmem_cache_alloc_node will fallback to other nodes
2937 * since memory is not yet available from the node that
2938 * is brought up.
2939 */
2940 n = kmem_cache_alloc(kmalloc_caches, GFP_KERNEL);
2941 if (!n) {
2942 ret = -ENOMEM;
2943 goto out;
2944 }
2945 init_kmem_cache_node(n);
2946 s->node[nid] = n;
2947 }
2948out:
2949 up_read(&slub_lock);
2950 return ret;
2951}
2952
2953static int slab_memory_callback(struct notifier_block *self,
2954 unsigned long action, void *arg)
2955{
2956 int ret = 0;
2957
2958 switch (action) {
2959 case MEM_GOING_ONLINE:
2960 ret = slab_mem_going_online_callback(arg);
2961 break;
2962 case MEM_GOING_OFFLINE:
2963 ret = slab_mem_going_offline_callback(arg);
2964 break;
2965 case MEM_OFFLINE:
2966 case MEM_CANCEL_ONLINE:
2967 slab_mem_offline_callback(arg);
2968 break;
2969 case MEM_ONLINE:
2970 case MEM_CANCEL_OFFLINE:
2971 break;
2972 }
2973
2974 ret = notifier_from_errno(ret);
2975 return ret;
2976}
2977
2978#endif /* CONFIG_MEMORY_HOTPLUG */
2979
Christoph Lameter81819f02007-05-06 14:49:36 -07002980/********************************************************************
2981 * Basic setup of slabs
2982 *******************************************************************/
2983
2984void __init kmem_cache_init(void)
2985{
2986 int i;
Christoph Lameter4b356be2007-06-16 10:16:13 -07002987 int caches = 0;
Christoph Lameter81819f02007-05-06 14:49:36 -07002988
Christoph Lameter4c93c3552007-10-16 01:26:08 -07002989 init_alloc_cpu();
2990
Christoph Lameter81819f02007-05-06 14:49:36 -07002991#ifdef CONFIG_NUMA
2992 /*
2993 * Must first have the slab cache available for the allocations of the
Christoph Lameter672bba32007-05-09 02:32:39 -07002994 * struct kmem_cache_node's. There is special bootstrap code in
Christoph Lameter81819f02007-05-06 14:49:36 -07002995 * kmem_cache_open for slab_state == DOWN.
2996 */
2997 create_kmalloc_cache(&kmalloc_caches[0], "kmem_cache_node",
2998 sizeof(struct kmem_cache_node), GFP_KERNEL);
Christoph Lameter8ffa6872007-05-31 00:40:51 -07002999 kmalloc_caches[0].refcount = -1;
Christoph Lameter4b356be2007-06-16 10:16:13 -07003000 caches++;
Yasunori Gotob9049e22007-10-21 16:41:37 -07003001
3002 hotplug_memory_notifier(slab_memory_callback, 1);
Christoph Lameter81819f02007-05-06 14:49:36 -07003003#endif
3004
3005 /* Able to allocate the per node structures */
3006 slab_state = PARTIAL;
3007
3008 /* Caches that are not of the two-to-the-power-of size */
Christoph Lameter4b356be2007-06-16 10:16:13 -07003009 if (KMALLOC_MIN_SIZE <= 64) {
3010 create_kmalloc_cache(&kmalloc_caches[1],
Christoph Lameter81819f02007-05-06 14:49:36 -07003011 "kmalloc-96", 96, GFP_KERNEL);
Christoph Lameter4b356be2007-06-16 10:16:13 -07003012 caches++;
3013 }
3014 if (KMALLOC_MIN_SIZE <= 128) {
3015 create_kmalloc_cache(&kmalloc_caches[2],
Christoph Lameter81819f02007-05-06 14:49:36 -07003016 "kmalloc-192", 192, GFP_KERNEL);
Christoph Lameter4b356be2007-06-16 10:16:13 -07003017 caches++;
3018 }
Christoph Lameter81819f02007-05-06 14:49:36 -07003019
Christoph Lameter331dc552008-02-14 14:28:09 -08003020 for (i = KMALLOC_SHIFT_LOW; i <= PAGE_SHIFT; i++) {
Christoph Lameter81819f02007-05-06 14:49:36 -07003021 create_kmalloc_cache(&kmalloc_caches[i],
3022 "kmalloc", 1 << i, GFP_KERNEL);
Christoph Lameter4b356be2007-06-16 10:16:13 -07003023 caches++;
3024 }
Christoph Lameter81819f02007-05-06 14:49:36 -07003025
Christoph Lameterf1b26332007-07-17 04:03:26 -07003026
3027 /*
3028 * Patch up the size_index table if we have strange large alignment
3029 * requirements for the kmalloc array. This is only the case for
Christoph Lameter6446faa2008-02-15 23:45:26 -08003030 * MIPS it seems. The standard arches will not generate any code here.
Christoph Lameterf1b26332007-07-17 04:03:26 -07003031 *
3032 * Largest permitted alignment is 256 bytes due to the way we
3033 * handle the index determination for the smaller caches.
3034 *
3035 * Make sure that nothing crazy happens if someone starts tinkering
3036 * around with ARCH_KMALLOC_MINALIGN
3037 */
3038 BUILD_BUG_ON(KMALLOC_MIN_SIZE > 256 ||
3039 (KMALLOC_MIN_SIZE & (KMALLOC_MIN_SIZE - 1)));
3040
Christoph Lameter12ad6842007-07-17 04:03:28 -07003041 for (i = 8; i < KMALLOC_MIN_SIZE; i += 8)
Christoph Lameterf1b26332007-07-17 04:03:26 -07003042 size_index[(i - 1) / 8] = KMALLOC_SHIFT_LOW;
3043
Christoph Lameter81819f02007-05-06 14:49:36 -07003044 slab_state = UP;
3045
3046 /* Provide the correct kmalloc names now that the caches are up */
Christoph Lameter331dc552008-02-14 14:28:09 -08003047 for (i = KMALLOC_SHIFT_LOW; i <= PAGE_SHIFT; i++)
Christoph Lameter81819f02007-05-06 14:49:36 -07003048 kmalloc_caches[i]. name =
3049 kasprintf(GFP_KERNEL, "kmalloc-%d", 1 << i);
3050
3051#ifdef CONFIG_SMP
3052 register_cpu_notifier(&slab_notifier);
Christoph Lameter4c93c3552007-10-16 01:26:08 -07003053 kmem_size = offsetof(struct kmem_cache, cpu_slab) +
3054 nr_cpu_ids * sizeof(struct kmem_cache_cpu *);
3055#else
3056 kmem_size = sizeof(struct kmem_cache);
Christoph Lameter81819f02007-05-06 14:49:36 -07003057#endif
3058
Ingo Molnar3adbefe2008-02-05 17:57:39 -08003059 printk(KERN_INFO
3060 "SLUB: Genslabs=%d, HWalign=%d, Order=%d-%d, MinObjects=%d,"
Christoph Lameter4b356be2007-06-16 10:16:13 -07003061 " CPUs=%d, Nodes=%d\n",
3062 caches, cache_line_size(),
Christoph Lameter81819f02007-05-06 14:49:36 -07003063 slub_min_order, slub_max_order, slub_min_objects,
3064 nr_cpu_ids, nr_node_ids);
3065}
3066
3067/*
3068 * Find a mergeable slab cache
3069 */
3070static int slab_unmergeable(struct kmem_cache *s)
3071{
3072 if (slub_nomerge || (s->flags & SLUB_NEVER_MERGE))
3073 return 1;
3074
Christoph Lameterc59def92007-05-16 22:10:50 -07003075 if (s->ctor)
Christoph Lameter81819f02007-05-06 14:49:36 -07003076 return 1;
3077
Christoph Lameter8ffa6872007-05-31 00:40:51 -07003078 /*
3079 * We may have set a slab to be unmergeable during bootstrap.
3080 */
3081 if (s->refcount < 0)
3082 return 1;
3083
Christoph Lameter81819f02007-05-06 14:49:36 -07003084 return 0;
3085}
3086
3087static struct kmem_cache *find_mergeable(size_t size,
Christoph Lameterba0268a2007-09-11 15:24:11 -07003088 size_t align, unsigned long flags, const char *name,
Christoph Lameter4ba9b9d2007-10-16 23:25:51 -07003089 void (*ctor)(struct kmem_cache *, void *))
Christoph Lameter81819f02007-05-06 14:49:36 -07003090{
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07003091 struct kmem_cache *s;
Christoph Lameter81819f02007-05-06 14:49:36 -07003092
3093 if (slub_nomerge || (flags & SLUB_NEVER_MERGE))
3094 return NULL;
3095
Christoph Lameterc59def92007-05-16 22:10:50 -07003096 if (ctor)
Christoph Lameter81819f02007-05-06 14:49:36 -07003097 return NULL;
3098
3099 size = ALIGN(size, sizeof(void *));
3100 align = calculate_alignment(flags, align, size);
3101 size = ALIGN(size, align);
Christoph Lameterba0268a2007-09-11 15:24:11 -07003102 flags = kmem_cache_flags(size, flags, name, NULL);
Christoph Lameter81819f02007-05-06 14:49:36 -07003103
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07003104 list_for_each_entry(s, &slab_caches, list) {
Christoph Lameter81819f02007-05-06 14:49:36 -07003105 if (slab_unmergeable(s))
3106 continue;
3107
3108 if (size > s->size)
3109 continue;
3110
Christoph Lameterba0268a2007-09-11 15:24:11 -07003111 if ((flags & SLUB_MERGE_SAME) != (s->flags & SLUB_MERGE_SAME))
Christoph Lameter81819f02007-05-06 14:49:36 -07003112 continue;
3113 /*
3114 * Check if alignment is compatible.
3115 * Courtesy of Adrian Drzewiecki
3116 */
Pekka Enberg06428782008-01-07 23:20:27 -08003117 if ((s->size & ~(align - 1)) != s->size)
Christoph Lameter81819f02007-05-06 14:49:36 -07003118 continue;
3119
3120 if (s->size - size >= sizeof(void *))
3121 continue;
3122
3123 return s;
3124 }
3125 return NULL;
3126}
3127
3128struct kmem_cache *kmem_cache_create(const char *name, size_t size,
3129 size_t align, unsigned long flags,
Christoph Lameter4ba9b9d2007-10-16 23:25:51 -07003130 void (*ctor)(struct kmem_cache *, void *))
Christoph Lameter81819f02007-05-06 14:49:36 -07003131{
3132 struct kmem_cache *s;
3133
3134 down_write(&slub_lock);
Christoph Lameterba0268a2007-09-11 15:24:11 -07003135 s = find_mergeable(size, align, flags, name, ctor);
Christoph Lameter81819f02007-05-06 14:49:36 -07003136 if (s) {
Christoph Lameter42a9fdb2007-10-16 01:26:09 -07003137 int cpu;
3138
Christoph Lameter81819f02007-05-06 14:49:36 -07003139 s->refcount++;
3140 /*
3141 * Adjust the object sizes so that we clear
3142 * the complete object on kzalloc.
3143 */
3144 s->objsize = max(s->objsize, (int)size);
Christoph Lameter42a9fdb2007-10-16 01:26:09 -07003145
3146 /*
3147 * And then we need to update the object size in the
3148 * per cpu structures
3149 */
3150 for_each_online_cpu(cpu)
3151 get_cpu_slab(s, cpu)->objsize = s->objsize;
Christoph Lameter6446faa2008-02-15 23:45:26 -08003152
Christoph Lameter81819f02007-05-06 14:49:36 -07003153 s->inuse = max_t(int, s->inuse, ALIGN(size, sizeof(void *)));
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07003154 up_write(&slub_lock);
Christoph Lameter6446faa2008-02-15 23:45:26 -08003155
Christoph Lameter81819f02007-05-06 14:49:36 -07003156 if (sysfs_slab_alias(s, name))
3157 goto err;
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07003158 return s;
3159 }
Christoph Lameter6446faa2008-02-15 23:45:26 -08003160
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07003161 s = kmalloc(kmem_size, GFP_KERNEL);
3162 if (s) {
3163 if (kmem_cache_open(s, GFP_KERNEL, name,
Christoph Lameterc59def92007-05-16 22:10:50 -07003164 size, align, flags, ctor)) {
Christoph Lameter81819f02007-05-06 14:49:36 -07003165 list_add(&s->list, &slab_caches);
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07003166 up_write(&slub_lock);
3167 if (sysfs_slab_add(s))
3168 goto err;
3169 return s;
3170 }
3171 kfree(s);
Christoph Lameter81819f02007-05-06 14:49:36 -07003172 }
3173 up_write(&slub_lock);
Christoph Lameter81819f02007-05-06 14:49:36 -07003174
3175err:
Christoph Lameter81819f02007-05-06 14:49:36 -07003176 if (flags & SLAB_PANIC)
3177 panic("Cannot create slabcache %s\n", name);
3178 else
3179 s = NULL;
3180 return s;
3181}
3182EXPORT_SYMBOL(kmem_cache_create);
3183
Christoph Lameter81819f02007-05-06 14:49:36 -07003184#ifdef CONFIG_SMP
Christoph Lameter27390bc2007-06-01 00:47:09 -07003185/*
Christoph Lameter672bba32007-05-09 02:32:39 -07003186 * Use the cpu notifier to insure that the cpu slabs are flushed when
3187 * necessary.
Christoph Lameter81819f02007-05-06 14:49:36 -07003188 */
3189static int __cpuinit slab_cpuup_callback(struct notifier_block *nfb,
3190 unsigned long action, void *hcpu)
3191{
3192 long cpu = (long)hcpu;
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07003193 struct kmem_cache *s;
3194 unsigned long flags;
Christoph Lameter81819f02007-05-06 14:49:36 -07003195
3196 switch (action) {
Christoph Lameter4c93c3552007-10-16 01:26:08 -07003197 case CPU_UP_PREPARE:
3198 case CPU_UP_PREPARE_FROZEN:
3199 init_alloc_cpu_cpu(cpu);
3200 down_read(&slub_lock);
3201 list_for_each_entry(s, &slab_caches, list)
3202 s->cpu_slab[cpu] = alloc_kmem_cache_cpu(s, cpu,
3203 GFP_KERNEL);
3204 up_read(&slub_lock);
3205 break;
3206
Christoph Lameter81819f02007-05-06 14:49:36 -07003207 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07003208 case CPU_UP_CANCELED_FROZEN:
Christoph Lameter81819f02007-05-06 14:49:36 -07003209 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07003210 case CPU_DEAD_FROZEN:
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07003211 down_read(&slub_lock);
3212 list_for_each_entry(s, &slab_caches, list) {
Christoph Lameter4c93c3552007-10-16 01:26:08 -07003213 struct kmem_cache_cpu *c = get_cpu_slab(s, cpu);
3214
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07003215 local_irq_save(flags);
3216 __flush_cpu_slab(s, cpu);
3217 local_irq_restore(flags);
Christoph Lameter4c93c3552007-10-16 01:26:08 -07003218 free_kmem_cache_cpu(c, cpu);
3219 s->cpu_slab[cpu] = NULL;
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07003220 }
3221 up_read(&slub_lock);
Christoph Lameter81819f02007-05-06 14:49:36 -07003222 break;
3223 default:
3224 break;
3225 }
3226 return NOTIFY_OK;
3227}
3228
Pekka Enberg06428782008-01-07 23:20:27 -08003229static struct notifier_block __cpuinitdata slab_notifier = {
Ingo Molnar3adbefe2008-02-05 17:57:39 -08003230 .notifier_call = slab_cpuup_callback
Pekka Enberg06428782008-01-07 23:20:27 -08003231};
Christoph Lameter81819f02007-05-06 14:49:36 -07003232
3233#endif
3234
Christoph Lameter81819f02007-05-06 14:49:36 -07003235void *__kmalloc_track_caller(size_t size, gfp_t gfpflags, void *caller)
3236{
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003237 struct kmem_cache *s;
3238
Christoph Lameter331dc552008-02-14 14:28:09 -08003239 if (unlikely(size > PAGE_SIZE))
Pekka Enbergeada35e2008-02-11 22:47:46 +02003240 return kmalloc_large(size, gfpflags);
3241
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003242 s = get_slab(size, gfpflags);
Christoph Lameter81819f02007-05-06 14:49:36 -07003243
Satyam Sharma2408c552007-10-16 01:24:44 -07003244 if (unlikely(ZERO_OR_NULL_PTR(s)))
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003245 return s;
Christoph Lameter81819f02007-05-06 14:49:36 -07003246
Christoph Lameterce15fea2007-07-17 04:03:28 -07003247 return slab_alloc(s, gfpflags, -1, caller);
Christoph Lameter81819f02007-05-06 14:49:36 -07003248}
3249
3250void *__kmalloc_node_track_caller(size_t size, gfp_t gfpflags,
3251 int node, void *caller)
3252{
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003253 struct kmem_cache *s;
3254
Christoph Lameter331dc552008-02-14 14:28:09 -08003255 if (unlikely(size > PAGE_SIZE))
Christoph Lameterf619cfe2008-03-01 13:56:40 -08003256 return kmalloc_large_node(size, gfpflags, node);
Pekka Enbergeada35e2008-02-11 22:47:46 +02003257
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003258 s = get_slab(size, gfpflags);
Christoph Lameter81819f02007-05-06 14:49:36 -07003259
Satyam Sharma2408c552007-10-16 01:24:44 -07003260 if (unlikely(ZERO_OR_NULL_PTR(s)))
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003261 return s;
Christoph Lameter81819f02007-05-06 14:49:36 -07003262
Christoph Lameterce15fea2007-07-17 04:03:28 -07003263 return slab_alloc(s, gfpflags, node, caller);
Christoph Lameter81819f02007-05-06 14:49:36 -07003264}
3265
Christoph Lameter5b06c8532008-04-14 18:51:34 +03003266#if (defined(CONFIG_SYSFS) && defined(CONFIG_SLUB_DEBUG)) || defined(CONFIG_SLABINFO)
Christoph Lameter205ab992008-04-14 19:11:40 +03003267static unsigned long count_partial(struct kmem_cache_node *n,
3268 int (*get_count)(struct page *))
Christoph Lameter5b06c8532008-04-14 18:51:34 +03003269{
3270 unsigned long flags;
3271 unsigned long x = 0;
3272 struct page *page;
3273
3274 spin_lock_irqsave(&n->list_lock, flags);
3275 list_for_each_entry(page, &n->partial, lru)
Christoph Lameter205ab992008-04-14 19:11:40 +03003276 x += get_count(page);
Christoph Lameter5b06c8532008-04-14 18:51:34 +03003277 spin_unlock_irqrestore(&n->list_lock, flags);
3278 return x;
3279}
Christoph Lameter205ab992008-04-14 19:11:40 +03003280
3281static int count_inuse(struct page *page)
3282{
3283 return page->inuse;
3284}
3285
3286static int count_total(struct page *page)
3287{
3288 return page->objects;
3289}
3290
3291static int count_free(struct page *page)
3292{
3293 return page->objects - page->inuse;
3294}
Christoph Lameter5b06c8532008-04-14 18:51:34 +03003295#endif
3296
Christoph Lameter41ecc552007-05-09 02:32:44 -07003297#if defined(CONFIG_SYSFS) && defined(CONFIG_SLUB_DEBUG)
Christoph Lameter434e2452007-07-17 04:03:30 -07003298static int validate_slab(struct kmem_cache *s, struct page *page,
3299 unsigned long *map)
Christoph Lameter53e15af2007-05-06 14:49:43 -07003300{
3301 void *p;
Christoph Lametera973e9d2008-03-01 13:40:44 -08003302 void *addr = page_address(page);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003303
3304 if (!check_slab(s, page) ||
3305 !on_freelist(s, page, NULL))
3306 return 0;
3307
3308 /* Now we know that a valid freelist exists */
Christoph Lameter39b26462008-04-14 19:11:30 +03003309 bitmap_zero(map, page->objects);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003310
Christoph Lameter7656c722007-05-09 02:32:40 -07003311 for_each_free_object(p, s, page->freelist) {
3312 set_bit(slab_index(p, s, addr), map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003313 if (!check_object(s, page, p, 0))
3314 return 0;
3315 }
3316
Christoph Lameter224a88b2008-04-14 19:11:31 +03003317 for_each_object(p, s, addr, page->objects)
Christoph Lameter7656c722007-05-09 02:32:40 -07003318 if (!test_bit(slab_index(p, s, addr), map))
Christoph Lameter53e15af2007-05-06 14:49:43 -07003319 if (!check_object(s, page, p, 1))
3320 return 0;
3321 return 1;
3322}
3323
Christoph Lameter434e2452007-07-17 04:03:30 -07003324static void validate_slab_slab(struct kmem_cache *s, struct page *page,
3325 unsigned long *map)
Christoph Lameter53e15af2007-05-06 14:49:43 -07003326{
3327 if (slab_trylock(page)) {
Christoph Lameter434e2452007-07-17 04:03:30 -07003328 validate_slab(s, page, map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003329 slab_unlock(page);
3330 } else
3331 printk(KERN_INFO "SLUB %s: Skipped busy slab 0x%p\n",
3332 s->name, page);
3333
3334 if (s->flags & DEBUG_DEFAULT_FLAGS) {
Christoph Lameter35e5d7e2007-05-09 02:32:42 -07003335 if (!SlabDebug(page))
3336 printk(KERN_ERR "SLUB %s: SlabDebug not set "
Christoph Lameter53e15af2007-05-06 14:49:43 -07003337 "on slab 0x%p\n", s->name, page);
3338 } else {
Christoph Lameter35e5d7e2007-05-09 02:32:42 -07003339 if (SlabDebug(page))
3340 printk(KERN_ERR "SLUB %s: SlabDebug set on "
Christoph Lameter53e15af2007-05-06 14:49:43 -07003341 "slab 0x%p\n", s->name, page);
3342 }
3343}
3344
Christoph Lameter434e2452007-07-17 04:03:30 -07003345static int validate_slab_node(struct kmem_cache *s,
3346 struct kmem_cache_node *n, unsigned long *map)
Christoph Lameter53e15af2007-05-06 14:49:43 -07003347{
3348 unsigned long count = 0;
3349 struct page *page;
3350 unsigned long flags;
3351
3352 spin_lock_irqsave(&n->list_lock, flags);
3353
3354 list_for_each_entry(page, &n->partial, lru) {
Christoph Lameter434e2452007-07-17 04:03:30 -07003355 validate_slab_slab(s, page, map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003356 count++;
3357 }
3358 if (count != n->nr_partial)
3359 printk(KERN_ERR "SLUB %s: %ld partial slabs counted but "
3360 "counter=%ld\n", s->name, count, n->nr_partial);
3361
3362 if (!(s->flags & SLAB_STORE_USER))
3363 goto out;
3364
3365 list_for_each_entry(page, &n->full, lru) {
Christoph Lameter434e2452007-07-17 04:03:30 -07003366 validate_slab_slab(s, page, map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003367 count++;
3368 }
3369 if (count != atomic_long_read(&n->nr_slabs))
3370 printk(KERN_ERR "SLUB: %s %ld slabs counted but "
3371 "counter=%ld\n", s->name, count,
3372 atomic_long_read(&n->nr_slabs));
3373
3374out:
3375 spin_unlock_irqrestore(&n->list_lock, flags);
3376 return count;
3377}
3378
Christoph Lameter434e2452007-07-17 04:03:30 -07003379static long validate_slab_cache(struct kmem_cache *s)
Christoph Lameter53e15af2007-05-06 14:49:43 -07003380{
3381 int node;
3382 unsigned long count = 0;
Christoph Lameter205ab992008-04-14 19:11:40 +03003383 unsigned long *map = kmalloc(BITS_TO_LONGS(oo_objects(s->max)) *
Christoph Lameter434e2452007-07-17 04:03:30 -07003384 sizeof(unsigned long), GFP_KERNEL);
3385
3386 if (!map)
3387 return -ENOMEM;
Christoph Lameter53e15af2007-05-06 14:49:43 -07003388
3389 flush_all(s);
Christoph Lameterf64dc582007-10-16 01:25:33 -07003390 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter53e15af2007-05-06 14:49:43 -07003391 struct kmem_cache_node *n = get_node(s, node);
3392
Christoph Lameter434e2452007-07-17 04:03:30 -07003393 count += validate_slab_node(s, n, map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003394 }
Christoph Lameter434e2452007-07-17 04:03:30 -07003395 kfree(map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003396 return count;
3397}
3398
Christoph Lameterb3459702007-05-09 02:32:41 -07003399#ifdef SLUB_RESILIENCY_TEST
3400static void resiliency_test(void)
3401{
3402 u8 *p;
3403
3404 printk(KERN_ERR "SLUB resiliency testing\n");
3405 printk(KERN_ERR "-----------------------\n");
3406 printk(KERN_ERR "A. Corruption after allocation\n");
3407
3408 p = kzalloc(16, GFP_KERNEL);
3409 p[16] = 0x12;
3410 printk(KERN_ERR "\n1. kmalloc-16: Clobber Redzone/next pointer"
3411 " 0x12->0x%p\n\n", p + 16);
3412
3413 validate_slab_cache(kmalloc_caches + 4);
3414
3415 /* Hmmm... The next two are dangerous */
3416 p = kzalloc(32, GFP_KERNEL);
3417 p[32 + sizeof(void *)] = 0x34;
3418 printk(KERN_ERR "\n2. kmalloc-32: Clobber next pointer/next slab"
Ingo Molnar3adbefe2008-02-05 17:57:39 -08003419 " 0x34 -> -0x%p\n", p);
3420 printk(KERN_ERR
3421 "If allocated object is overwritten then not detectable\n\n");
Christoph Lameterb3459702007-05-09 02:32:41 -07003422
3423 validate_slab_cache(kmalloc_caches + 5);
3424 p = kzalloc(64, GFP_KERNEL);
3425 p += 64 + (get_cycles() & 0xff) * sizeof(void *);
3426 *p = 0x56;
3427 printk(KERN_ERR "\n3. kmalloc-64: corrupting random byte 0x56->0x%p\n",
3428 p);
Ingo Molnar3adbefe2008-02-05 17:57:39 -08003429 printk(KERN_ERR
3430 "If allocated object is overwritten then not detectable\n\n");
Christoph Lameterb3459702007-05-09 02:32:41 -07003431 validate_slab_cache(kmalloc_caches + 6);
3432
3433 printk(KERN_ERR "\nB. Corruption after free\n");
3434 p = kzalloc(128, GFP_KERNEL);
3435 kfree(p);
3436 *p = 0x78;
3437 printk(KERN_ERR "1. kmalloc-128: Clobber first word 0x78->0x%p\n\n", p);
3438 validate_slab_cache(kmalloc_caches + 7);
3439
3440 p = kzalloc(256, GFP_KERNEL);
3441 kfree(p);
3442 p[50] = 0x9a;
Ingo Molnar3adbefe2008-02-05 17:57:39 -08003443 printk(KERN_ERR "\n2. kmalloc-256: Clobber 50th byte 0x9a->0x%p\n\n",
3444 p);
Christoph Lameterb3459702007-05-09 02:32:41 -07003445 validate_slab_cache(kmalloc_caches + 8);
3446
3447 p = kzalloc(512, GFP_KERNEL);
3448 kfree(p);
3449 p[512] = 0xab;
3450 printk(KERN_ERR "\n3. kmalloc-512: Clobber redzone 0xab->0x%p\n\n", p);
3451 validate_slab_cache(kmalloc_caches + 9);
3452}
3453#else
3454static void resiliency_test(void) {};
3455#endif
3456
Christoph Lameter88a420e2007-05-06 14:49:45 -07003457/*
Christoph Lameter672bba32007-05-09 02:32:39 -07003458 * Generate lists of code addresses where slabcache objects are allocated
Christoph Lameter88a420e2007-05-06 14:49:45 -07003459 * and freed.
3460 */
3461
3462struct location {
3463 unsigned long count;
3464 void *addr;
Christoph Lameter45edfa52007-05-09 02:32:45 -07003465 long long sum_time;
3466 long min_time;
3467 long max_time;
3468 long min_pid;
3469 long max_pid;
3470 cpumask_t cpus;
3471 nodemask_t nodes;
Christoph Lameter88a420e2007-05-06 14:49:45 -07003472};
3473
3474struct loc_track {
3475 unsigned long max;
3476 unsigned long count;
3477 struct location *loc;
3478};
3479
3480static void free_loc_track(struct loc_track *t)
3481{
3482 if (t->max)
3483 free_pages((unsigned long)t->loc,
3484 get_order(sizeof(struct location) * t->max));
3485}
3486
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003487static int alloc_loc_track(struct loc_track *t, unsigned long max, gfp_t flags)
Christoph Lameter88a420e2007-05-06 14:49:45 -07003488{
3489 struct location *l;
3490 int order;
3491
Christoph Lameter88a420e2007-05-06 14:49:45 -07003492 order = get_order(sizeof(struct location) * max);
3493
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003494 l = (void *)__get_free_pages(flags, order);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003495 if (!l)
3496 return 0;
3497
3498 if (t->count) {
3499 memcpy(l, t->loc, sizeof(struct location) * t->count);
3500 free_loc_track(t);
3501 }
3502 t->max = max;
3503 t->loc = l;
3504 return 1;
3505}
3506
3507static int add_location(struct loc_track *t, struct kmem_cache *s,
Christoph Lameter45edfa52007-05-09 02:32:45 -07003508 const struct track *track)
Christoph Lameter88a420e2007-05-06 14:49:45 -07003509{
3510 long start, end, pos;
3511 struct location *l;
3512 void *caddr;
Christoph Lameter45edfa52007-05-09 02:32:45 -07003513 unsigned long age = jiffies - track->when;
Christoph Lameter88a420e2007-05-06 14:49:45 -07003514
3515 start = -1;
3516 end = t->count;
3517
3518 for ( ; ; ) {
3519 pos = start + (end - start + 1) / 2;
3520
3521 /*
3522 * There is nothing at "end". If we end up there
3523 * we need to add something to before end.
3524 */
3525 if (pos == end)
3526 break;
3527
3528 caddr = t->loc[pos].addr;
Christoph Lameter45edfa52007-05-09 02:32:45 -07003529 if (track->addr == caddr) {
3530
3531 l = &t->loc[pos];
3532 l->count++;
3533 if (track->when) {
3534 l->sum_time += age;
3535 if (age < l->min_time)
3536 l->min_time = age;
3537 if (age > l->max_time)
3538 l->max_time = age;
3539
3540 if (track->pid < l->min_pid)
3541 l->min_pid = track->pid;
3542 if (track->pid > l->max_pid)
3543 l->max_pid = track->pid;
3544
3545 cpu_set(track->cpu, l->cpus);
3546 }
3547 node_set(page_to_nid(virt_to_page(track)), l->nodes);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003548 return 1;
3549 }
3550
Christoph Lameter45edfa52007-05-09 02:32:45 -07003551 if (track->addr < caddr)
Christoph Lameter88a420e2007-05-06 14:49:45 -07003552 end = pos;
3553 else
3554 start = pos;
3555 }
3556
3557 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07003558 * Not found. Insert new tracking element.
Christoph Lameter88a420e2007-05-06 14:49:45 -07003559 */
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003560 if (t->count >= t->max && !alloc_loc_track(t, 2 * t->max, GFP_ATOMIC))
Christoph Lameter88a420e2007-05-06 14:49:45 -07003561 return 0;
3562
3563 l = t->loc + pos;
3564 if (pos < t->count)
3565 memmove(l + 1, l,
3566 (t->count - pos) * sizeof(struct location));
3567 t->count++;
3568 l->count = 1;
Christoph Lameter45edfa52007-05-09 02:32:45 -07003569 l->addr = track->addr;
3570 l->sum_time = age;
3571 l->min_time = age;
3572 l->max_time = age;
3573 l->min_pid = track->pid;
3574 l->max_pid = track->pid;
3575 cpus_clear(l->cpus);
3576 cpu_set(track->cpu, l->cpus);
3577 nodes_clear(l->nodes);
3578 node_set(page_to_nid(virt_to_page(track)), l->nodes);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003579 return 1;
3580}
3581
3582static void process_slab(struct loc_track *t, struct kmem_cache *s,
3583 struct page *page, enum track_item alloc)
3584{
Christoph Lametera973e9d2008-03-01 13:40:44 -08003585 void *addr = page_address(page);
Christoph Lameter39b26462008-04-14 19:11:30 +03003586 DECLARE_BITMAP(map, page->objects);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003587 void *p;
3588
Christoph Lameter39b26462008-04-14 19:11:30 +03003589 bitmap_zero(map, page->objects);
Christoph Lameter7656c722007-05-09 02:32:40 -07003590 for_each_free_object(p, s, page->freelist)
3591 set_bit(slab_index(p, s, addr), map);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003592
Christoph Lameter224a88b2008-04-14 19:11:31 +03003593 for_each_object(p, s, addr, page->objects)
Christoph Lameter45edfa52007-05-09 02:32:45 -07003594 if (!test_bit(slab_index(p, s, addr), map))
3595 add_location(t, s, get_track(s, p, alloc));
Christoph Lameter88a420e2007-05-06 14:49:45 -07003596}
3597
3598static int list_locations(struct kmem_cache *s, char *buf,
3599 enum track_item alloc)
3600{
Harvey Harrisone374d482008-01-31 15:20:50 -08003601 int len = 0;
Christoph Lameter88a420e2007-05-06 14:49:45 -07003602 unsigned long i;
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003603 struct loc_track t = { 0, 0, NULL };
Christoph Lameter88a420e2007-05-06 14:49:45 -07003604 int node;
3605
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003606 if (!alloc_loc_track(&t, PAGE_SIZE / sizeof(struct location),
Andrew Mortonea3061d2007-10-16 01:26:09 -07003607 GFP_TEMPORARY))
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003608 return sprintf(buf, "Out of memory\n");
Christoph Lameter88a420e2007-05-06 14:49:45 -07003609
3610 /* Push back cpu slabs */
3611 flush_all(s);
3612
Christoph Lameterf64dc582007-10-16 01:25:33 -07003613 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter88a420e2007-05-06 14:49:45 -07003614 struct kmem_cache_node *n = get_node(s, node);
3615 unsigned long flags;
3616 struct page *page;
3617
Christoph Lameter9e869432007-08-22 14:01:56 -07003618 if (!atomic_long_read(&n->nr_slabs))
Christoph Lameter88a420e2007-05-06 14:49:45 -07003619 continue;
3620
3621 spin_lock_irqsave(&n->list_lock, flags);
3622 list_for_each_entry(page, &n->partial, lru)
3623 process_slab(&t, s, page, alloc);
3624 list_for_each_entry(page, &n->full, lru)
3625 process_slab(&t, s, page, alloc);
3626 spin_unlock_irqrestore(&n->list_lock, flags);
3627 }
3628
3629 for (i = 0; i < t.count; i++) {
Christoph Lameter45edfa52007-05-09 02:32:45 -07003630 struct location *l = &t.loc[i];
Christoph Lameter88a420e2007-05-06 14:49:45 -07003631
Harvey Harrisone374d482008-01-31 15:20:50 -08003632 if (len > PAGE_SIZE - 100)
Christoph Lameter88a420e2007-05-06 14:49:45 -07003633 break;
Harvey Harrisone374d482008-01-31 15:20:50 -08003634 len += sprintf(buf + len, "%7ld ", l->count);
Christoph Lameter45edfa52007-05-09 02:32:45 -07003635
3636 if (l->addr)
Harvey Harrisone374d482008-01-31 15:20:50 -08003637 len += sprint_symbol(buf + len, (unsigned long)l->addr);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003638 else
Harvey Harrisone374d482008-01-31 15:20:50 -08003639 len += sprintf(buf + len, "<not-available>");
Christoph Lameter45edfa52007-05-09 02:32:45 -07003640
3641 if (l->sum_time != l->min_time) {
3642 unsigned long remainder;
3643
Harvey Harrisone374d482008-01-31 15:20:50 -08003644 len += sprintf(buf + len, " age=%ld/%ld/%ld",
Christoph Lameter45edfa52007-05-09 02:32:45 -07003645 l->min_time,
3646 div_long_long_rem(l->sum_time, l->count, &remainder),
3647 l->max_time);
3648 } else
Harvey Harrisone374d482008-01-31 15:20:50 -08003649 len += sprintf(buf + len, " age=%ld",
Christoph Lameter45edfa52007-05-09 02:32:45 -07003650 l->min_time);
3651
3652 if (l->min_pid != l->max_pid)
Harvey Harrisone374d482008-01-31 15:20:50 -08003653 len += sprintf(buf + len, " pid=%ld-%ld",
Christoph Lameter45edfa52007-05-09 02:32:45 -07003654 l->min_pid, l->max_pid);
3655 else
Harvey Harrisone374d482008-01-31 15:20:50 -08003656 len += sprintf(buf + len, " pid=%ld",
Christoph Lameter45edfa52007-05-09 02:32:45 -07003657 l->min_pid);
3658
Christoph Lameter84966342007-06-23 17:16:32 -07003659 if (num_online_cpus() > 1 && !cpus_empty(l->cpus) &&
Harvey Harrisone374d482008-01-31 15:20:50 -08003660 len < PAGE_SIZE - 60) {
3661 len += sprintf(buf + len, " cpus=");
3662 len += cpulist_scnprintf(buf + len, PAGE_SIZE - len - 50,
Christoph Lameter45edfa52007-05-09 02:32:45 -07003663 l->cpus);
3664 }
3665
Christoph Lameter84966342007-06-23 17:16:32 -07003666 if (num_online_nodes() > 1 && !nodes_empty(l->nodes) &&
Harvey Harrisone374d482008-01-31 15:20:50 -08003667 len < PAGE_SIZE - 60) {
3668 len += sprintf(buf + len, " nodes=");
3669 len += nodelist_scnprintf(buf + len, PAGE_SIZE - len - 50,
Christoph Lameter45edfa52007-05-09 02:32:45 -07003670 l->nodes);
3671 }
3672
Harvey Harrisone374d482008-01-31 15:20:50 -08003673 len += sprintf(buf + len, "\n");
Christoph Lameter88a420e2007-05-06 14:49:45 -07003674 }
3675
3676 free_loc_track(&t);
3677 if (!t.count)
Harvey Harrisone374d482008-01-31 15:20:50 -08003678 len += sprintf(buf, "No data\n");
3679 return len;
Christoph Lameter88a420e2007-05-06 14:49:45 -07003680}
3681
Christoph Lameter81819f02007-05-06 14:49:36 -07003682enum slab_stat_type {
Christoph Lameter205ab992008-04-14 19:11:40 +03003683 SL_ALL, /* All slabs */
3684 SL_PARTIAL, /* Only partially allocated slabs */
3685 SL_CPU, /* Only slabs used for cpu caches */
3686 SL_OBJECTS, /* Determine allocated objects not slabs */
3687 SL_TOTAL /* Determine object capacity not slabs */
Christoph Lameter81819f02007-05-06 14:49:36 -07003688};
3689
Christoph Lameter205ab992008-04-14 19:11:40 +03003690#define SO_ALL (1 << SL_ALL)
Christoph Lameter81819f02007-05-06 14:49:36 -07003691#define SO_PARTIAL (1 << SL_PARTIAL)
3692#define SO_CPU (1 << SL_CPU)
3693#define SO_OBJECTS (1 << SL_OBJECTS)
Christoph Lameter205ab992008-04-14 19:11:40 +03003694#define SO_TOTAL (1 << SL_TOTAL)
Christoph Lameter81819f02007-05-06 14:49:36 -07003695
Cyrill Gorcunov62e5c4b2008-03-02 23:28:24 +03003696static ssize_t show_slab_objects(struct kmem_cache *s,
3697 char *buf, unsigned long flags)
Christoph Lameter81819f02007-05-06 14:49:36 -07003698{
3699 unsigned long total = 0;
Christoph Lameter81819f02007-05-06 14:49:36 -07003700 int node;
3701 int x;
3702 unsigned long *nodes;
3703 unsigned long *per_cpu;
3704
3705 nodes = kzalloc(2 * sizeof(unsigned long) * nr_node_ids, GFP_KERNEL);
Cyrill Gorcunov62e5c4b2008-03-02 23:28:24 +03003706 if (!nodes)
3707 return -ENOMEM;
Christoph Lameter81819f02007-05-06 14:49:36 -07003708 per_cpu = nodes + nr_node_ids;
3709
Christoph Lameter205ab992008-04-14 19:11:40 +03003710 if (flags & SO_CPU) {
3711 int cpu;
Christoph Lameter81819f02007-05-06 14:49:36 -07003712
Christoph Lameter205ab992008-04-14 19:11:40 +03003713 for_each_possible_cpu(cpu) {
3714 struct kmem_cache_cpu *c = get_cpu_slab(s, cpu);
Christoph Lameterdfb4f092007-10-16 01:26:05 -07003715
Christoph Lameter205ab992008-04-14 19:11:40 +03003716 if (!c || c->node < 0)
3717 continue;
3718
3719 if (c->page) {
3720 if (flags & SO_TOTAL)
3721 x = c->page->objects;
3722 else if (flags & SO_OBJECTS)
3723 x = c->page->inuse;
Christoph Lameter81819f02007-05-06 14:49:36 -07003724 else
3725 x = 1;
Christoph Lameter205ab992008-04-14 19:11:40 +03003726
Christoph Lameter81819f02007-05-06 14:49:36 -07003727 total += x;
Christoph Lameter205ab992008-04-14 19:11:40 +03003728 nodes[c->node] += x;
Christoph Lameter81819f02007-05-06 14:49:36 -07003729 }
Christoph Lameter205ab992008-04-14 19:11:40 +03003730 per_cpu[c->node]++;
Christoph Lameter81819f02007-05-06 14:49:36 -07003731 }
3732 }
3733
Christoph Lameter205ab992008-04-14 19:11:40 +03003734 if (flags & SO_ALL) {
3735 for_each_node_state(node, N_NORMAL_MEMORY) {
3736 struct kmem_cache_node *n = get_node(s, node);
Christoph Lameter81819f02007-05-06 14:49:36 -07003737
Christoph Lameter205ab992008-04-14 19:11:40 +03003738 if (flags & SO_TOTAL)
3739 x = atomic_long_read(&n->total_objects);
3740 else if (flags & SO_OBJECTS)
3741 x = atomic_long_read(&n->total_objects) -
3742 count_partial(n, count_free);
3743
3744 else
3745 x = atomic_long_read(&n->nr_slabs);
3746 total += x;
3747 nodes[node] += x;
3748 }
3749
3750 } else if (flags & SO_PARTIAL) {
3751 for_each_node_state(node, N_NORMAL_MEMORY) {
3752 struct kmem_cache_node *n = get_node(s, node);
3753
3754 if (flags & SO_TOTAL)
3755 x = count_partial(n, count_total);
3756 else if (flags & SO_OBJECTS)
3757 x = count_partial(n, count_inuse);
Christoph Lameter81819f02007-05-06 14:49:36 -07003758 else
3759 x = n->nr_partial;
3760 total += x;
3761 nodes[node] += x;
3762 }
Christoph Lameter81819f02007-05-06 14:49:36 -07003763 }
Christoph Lameter81819f02007-05-06 14:49:36 -07003764 x = sprintf(buf, "%lu", total);
3765#ifdef CONFIG_NUMA
Christoph Lameterf64dc582007-10-16 01:25:33 -07003766 for_each_node_state(node, N_NORMAL_MEMORY)
Christoph Lameter81819f02007-05-06 14:49:36 -07003767 if (nodes[node])
3768 x += sprintf(buf + x, " N%d=%lu",
3769 node, nodes[node]);
3770#endif
3771 kfree(nodes);
3772 return x + sprintf(buf + x, "\n");
3773}
3774
3775static int any_slab_objects(struct kmem_cache *s)
3776{
3777 int node;
3778 int cpu;
3779
Christoph Lameterdfb4f092007-10-16 01:26:05 -07003780 for_each_possible_cpu(cpu) {
3781 struct kmem_cache_cpu *c = get_cpu_slab(s, cpu);
Christoph Lameter81819f02007-05-06 14:49:36 -07003782
Christoph Lameterdfb4f092007-10-16 01:26:05 -07003783 if (c && c->page)
3784 return 1;
3785 }
3786
3787 for_each_online_node(node) {
Christoph Lameter81819f02007-05-06 14:49:36 -07003788 struct kmem_cache_node *n = get_node(s, node);
3789
Christoph Lameterdfb4f092007-10-16 01:26:05 -07003790 if (!n)
3791 continue;
3792
Christoph Lameter9e869432007-08-22 14:01:56 -07003793 if (n->nr_partial || atomic_long_read(&n->nr_slabs))
Christoph Lameter81819f02007-05-06 14:49:36 -07003794 return 1;
3795 }
3796 return 0;
3797}
3798
3799#define to_slab_attr(n) container_of(n, struct slab_attribute, attr)
3800#define to_slab(n) container_of(n, struct kmem_cache, kobj);
3801
3802struct slab_attribute {
3803 struct attribute attr;
3804 ssize_t (*show)(struct kmem_cache *s, char *buf);
3805 ssize_t (*store)(struct kmem_cache *s, const char *x, size_t count);
3806};
3807
3808#define SLAB_ATTR_RO(_name) \
3809 static struct slab_attribute _name##_attr = __ATTR_RO(_name)
3810
3811#define SLAB_ATTR(_name) \
3812 static struct slab_attribute _name##_attr = \
3813 __ATTR(_name, 0644, _name##_show, _name##_store)
3814
Christoph Lameter81819f02007-05-06 14:49:36 -07003815static ssize_t slab_size_show(struct kmem_cache *s, char *buf)
3816{
3817 return sprintf(buf, "%d\n", s->size);
3818}
3819SLAB_ATTR_RO(slab_size);
3820
3821static ssize_t align_show(struct kmem_cache *s, char *buf)
3822{
3823 return sprintf(buf, "%d\n", s->align);
3824}
3825SLAB_ATTR_RO(align);
3826
3827static ssize_t object_size_show(struct kmem_cache *s, char *buf)
3828{
3829 return sprintf(buf, "%d\n", s->objsize);
3830}
3831SLAB_ATTR_RO(object_size);
3832
3833static ssize_t objs_per_slab_show(struct kmem_cache *s, char *buf)
3834{
Christoph Lameter834f3d12008-04-14 19:11:31 +03003835 return sprintf(buf, "%d\n", oo_objects(s->oo));
Christoph Lameter81819f02007-05-06 14:49:36 -07003836}
3837SLAB_ATTR_RO(objs_per_slab);
3838
Christoph Lameter06b285d2008-04-14 19:11:41 +03003839static ssize_t order_store(struct kmem_cache *s,
3840 const char *buf, size_t length)
3841{
3842 int order = simple_strtoul(buf, NULL, 10);
3843
3844 if (order > slub_max_order || order < slub_min_order)
3845 return -EINVAL;
3846
3847 calculate_sizes(s, order);
3848 return length;
3849}
3850
Christoph Lameter81819f02007-05-06 14:49:36 -07003851static ssize_t order_show(struct kmem_cache *s, char *buf)
3852{
Christoph Lameter834f3d12008-04-14 19:11:31 +03003853 return sprintf(buf, "%d\n", oo_order(s->oo));
Christoph Lameter81819f02007-05-06 14:49:36 -07003854}
Christoph Lameter06b285d2008-04-14 19:11:41 +03003855SLAB_ATTR(order);
Christoph Lameter81819f02007-05-06 14:49:36 -07003856
3857static ssize_t ctor_show(struct kmem_cache *s, char *buf)
3858{
3859 if (s->ctor) {
3860 int n = sprint_symbol(buf, (unsigned long)s->ctor);
3861
3862 return n + sprintf(buf + n, "\n");
3863 }
3864 return 0;
3865}
3866SLAB_ATTR_RO(ctor);
3867
Christoph Lameter81819f02007-05-06 14:49:36 -07003868static ssize_t aliases_show(struct kmem_cache *s, char *buf)
3869{
3870 return sprintf(buf, "%d\n", s->refcount - 1);
3871}
3872SLAB_ATTR_RO(aliases);
3873
3874static ssize_t slabs_show(struct kmem_cache *s, char *buf)
3875{
Christoph Lameter205ab992008-04-14 19:11:40 +03003876 return show_slab_objects(s, buf, SO_ALL);
Christoph Lameter81819f02007-05-06 14:49:36 -07003877}
3878SLAB_ATTR_RO(slabs);
3879
3880static ssize_t partial_show(struct kmem_cache *s, char *buf)
3881{
Christoph Lameterd9acf4b2008-02-15 15:22:21 -08003882 return show_slab_objects(s, buf, SO_PARTIAL);
Christoph Lameter81819f02007-05-06 14:49:36 -07003883}
3884SLAB_ATTR_RO(partial);
3885
3886static ssize_t cpu_slabs_show(struct kmem_cache *s, char *buf)
3887{
Christoph Lameterd9acf4b2008-02-15 15:22:21 -08003888 return show_slab_objects(s, buf, SO_CPU);
Christoph Lameter81819f02007-05-06 14:49:36 -07003889}
3890SLAB_ATTR_RO(cpu_slabs);
3891
3892static ssize_t objects_show(struct kmem_cache *s, char *buf)
3893{
Christoph Lameter205ab992008-04-14 19:11:40 +03003894 return show_slab_objects(s, buf, SO_ALL|SO_OBJECTS);
Christoph Lameter81819f02007-05-06 14:49:36 -07003895}
3896SLAB_ATTR_RO(objects);
3897
Christoph Lameter205ab992008-04-14 19:11:40 +03003898static ssize_t objects_partial_show(struct kmem_cache *s, char *buf)
3899{
3900 return show_slab_objects(s, buf, SO_PARTIAL|SO_OBJECTS);
3901}
3902SLAB_ATTR_RO(objects_partial);
3903
3904static ssize_t total_objects_show(struct kmem_cache *s, char *buf)
3905{
3906 return show_slab_objects(s, buf, SO_ALL|SO_TOTAL);
3907}
3908SLAB_ATTR_RO(total_objects);
3909
Christoph Lameter81819f02007-05-06 14:49:36 -07003910static ssize_t sanity_checks_show(struct kmem_cache *s, char *buf)
3911{
3912 return sprintf(buf, "%d\n", !!(s->flags & SLAB_DEBUG_FREE));
3913}
3914
3915static ssize_t sanity_checks_store(struct kmem_cache *s,
3916 const char *buf, size_t length)
3917{
3918 s->flags &= ~SLAB_DEBUG_FREE;
3919 if (buf[0] == '1')
3920 s->flags |= SLAB_DEBUG_FREE;
3921 return length;
3922}
3923SLAB_ATTR(sanity_checks);
3924
3925static ssize_t trace_show(struct kmem_cache *s, char *buf)
3926{
3927 return sprintf(buf, "%d\n", !!(s->flags & SLAB_TRACE));
3928}
3929
3930static ssize_t trace_store(struct kmem_cache *s, const char *buf,
3931 size_t length)
3932{
3933 s->flags &= ~SLAB_TRACE;
3934 if (buf[0] == '1')
3935 s->flags |= SLAB_TRACE;
3936 return length;
3937}
3938SLAB_ATTR(trace);
3939
3940static ssize_t reclaim_account_show(struct kmem_cache *s, char *buf)
3941{
3942 return sprintf(buf, "%d\n", !!(s->flags & SLAB_RECLAIM_ACCOUNT));
3943}
3944
3945static ssize_t reclaim_account_store(struct kmem_cache *s,
3946 const char *buf, size_t length)
3947{
3948 s->flags &= ~SLAB_RECLAIM_ACCOUNT;
3949 if (buf[0] == '1')
3950 s->flags |= SLAB_RECLAIM_ACCOUNT;
3951 return length;
3952}
3953SLAB_ATTR(reclaim_account);
3954
3955static ssize_t hwcache_align_show(struct kmem_cache *s, char *buf)
3956{
Christoph Lameter5af60832007-05-06 14:49:56 -07003957 return sprintf(buf, "%d\n", !!(s->flags & SLAB_HWCACHE_ALIGN));
Christoph Lameter81819f02007-05-06 14:49:36 -07003958}
3959SLAB_ATTR_RO(hwcache_align);
3960
3961#ifdef CONFIG_ZONE_DMA
3962static ssize_t cache_dma_show(struct kmem_cache *s, char *buf)
3963{
3964 return sprintf(buf, "%d\n", !!(s->flags & SLAB_CACHE_DMA));
3965}
3966SLAB_ATTR_RO(cache_dma);
3967#endif
3968
3969static ssize_t destroy_by_rcu_show(struct kmem_cache *s, char *buf)
3970{
3971 return sprintf(buf, "%d\n", !!(s->flags & SLAB_DESTROY_BY_RCU));
3972}
3973SLAB_ATTR_RO(destroy_by_rcu);
3974
3975static ssize_t red_zone_show(struct kmem_cache *s, char *buf)
3976{
3977 return sprintf(buf, "%d\n", !!(s->flags & SLAB_RED_ZONE));
3978}
3979
3980static ssize_t red_zone_store(struct kmem_cache *s,
3981 const char *buf, size_t length)
3982{
3983 if (any_slab_objects(s))
3984 return -EBUSY;
3985
3986 s->flags &= ~SLAB_RED_ZONE;
3987 if (buf[0] == '1')
3988 s->flags |= SLAB_RED_ZONE;
Christoph Lameter06b285d2008-04-14 19:11:41 +03003989 calculate_sizes(s, -1);
Christoph Lameter81819f02007-05-06 14:49:36 -07003990 return length;
3991}
3992SLAB_ATTR(red_zone);
3993
3994static ssize_t poison_show(struct kmem_cache *s, char *buf)
3995{
3996 return sprintf(buf, "%d\n", !!(s->flags & SLAB_POISON));
3997}
3998
3999static ssize_t poison_store(struct kmem_cache *s,
4000 const char *buf, size_t length)
4001{
4002 if (any_slab_objects(s))
4003 return -EBUSY;
4004
4005 s->flags &= ~SLAB_POISON;
4006 if (buf[0] == '1')
4007 s->flags |= SLAB_POISON;
Christoph Lameter06b285d2008-04-14 19:11:41 +03004008 calculate_sizes(s, -1);
Christoph Lameter81819f02007-05-06 14:49:36 -07004009 return length;
4010}
4011SLAB_ATTR(poison);
4012
4013static ssize_t store_user_show(struct kmem_cache *s, char *buf)
4014{
4015 return sprintf(buf, "%d\n", !!(s->flags & SLAB_STORE_USER));
4016}
4017
4018static ssize_t store_user_store(struct kmem_cache *s,
4019 const char *buf, size_t length)
4020{
4021 if (any_slab_objects(s))
4022 return -EBUSY;
4023
4024 s->flags &= ~SLAB_STORE_USER;
4025 if (buf[0] == '1')
4026 s->flags |= SLAB_STORE_USER;
Christoph Lameter06b285d2008-04-14 19:11:41 +03004027 calculate_sizes(s, -1);
Christoph Lameter81819f02007-05-06 14:49:36 -07004028 return length;
4029}
4030SLAB_ATTR(store_user);
4031
Christoph Lameter53e15af2007-05-06 14:49:43 -07004032static ssize_t validate_show(struct kmem_cache *s, char *buf)
4033{
4034 return 0;
4035}
4036
4037static ssize_t validate_store(struct kmem_cache *s,
4038 const char *buf, size_t length)
4039{
Christoph Lameter434e2452007-07-17 04:03:30 -07004040 int ret = -EINVAL;
4041
4042 if (buf[0] == '1') {
4043 ret = validate_slab_cache(s);
4044 if (ret >= 0)
4045 ret = length;
4046 }
4047 return ret;
Christoph Lameter53e15af2007-05-06 14:49:43 -07004048}
4049SLAB_ATTR(validate);
4050
Christoph Lameter2086d262007-05-06 14:49:46 -07004051static ssize_t shrink_show(struct kmem_cache *s, char *buf)
4052{
4053 return 0;
4054}
4055
4056static ssize_t shrink_store(struct kmem_cache *s,
4057 const char *buf, size_t length)
4058{
4059 if (buf[0] == '1') {
4060 int rc = kmem_cache_shrink(s);
4061
4062 if (rc)
4063 return rc;
4064 } else
4065 return -EINVAL;
4066 return length;
4067}
4068SLAB_ATTR(shrink);
4069
Christoph Lameter88a420e2007-05-06 14:49:45 -07004070static ssize_t alloc_calls_show(struct kmem_cache *s, char *buf)
4071{
4072 if (!(s->flags & SLAB_STORE_USER))
4073 return -ENOSYS;
4074 return list_locations(s, buf, TRACK_ALLOC);
4075}
4076SLAB_ATTR_RO(alloc_calls);
4077
4078static ssize_t free_calls_show(struct kmem_cache *s, char *buf)
4079{
4080 if (!(s->flags & SLAB_STORE_USER))
4081 return -ENOSYS;
4082 return list_locations(s, buf, TRACK_FREE);
4083}
4084SLAB_ATTR_RO(free_calls);
4085
Christoph Lameter81819f02007-05-06 14:49:36 -07004086#ifdef CONFIG_NUMA
Christoph Lameter98246012008-01-07 23:20:26 -08004087static ssize_t remote_node_defrag_ratio_show(struct kmem_cache *s, char *buf)
Christoph Lameter81819f02007-05-06 14:49:36 -07004088{
Christoph Lameter98246012008-01-07 23:20:26 -08004089 return sprintf(buf, "%d\n", s->remote_node_defrag_ratio / 10);
Christoph Lameter81819f02007-05-06 14:49:36 -07004090}
4091
Christoph Lameter98246012008-01-07 23:20:26 -08004092static ssize_t remote_node_defrag_ratio_store(struct kmem_cache *s,
Christoph Lameter81819f02007-05-06 14:49:36 -07004093 const char *buf, size_t length)
4094{
4095 int n = simple_strtoul(buf, NULL, 10);
4096
4097 if (n < 100)
Christoph Lameter98246012008-01-07 23:20:26 -08004098 s->remote_node_defrag_ratio = n * 10;
Christoph Lameter81819f02007-05-06 14:49:36 -07004099 return length;
4100}
Christoph Lameter98246012008-01-07 23:20:26 -08004101SLAB_ATTR(remote_node_defrag_ratio);
Christoph Lameter81819f02007-05-06 14:49:36 -07004102#endif
4103
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004104#ifdef CONFIG_SLUB_STATS
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004105static int show_stat(struct kmem_cache *s, char *buf, enum stat_item si)
4106{
4107 unsigned long sum = 0;
4108 int cpu;
4109 int len;
4110 int *data = kmalloc(nr_cpu_ids * sizeof(int), GFP_KERNEL);
4111
4112 if (!data)
4113 return -ENOMEM;
4114
4115 for_each_online_cpu(cpu) {
4116 unsigned x = get_cpu_slab(s, cpu)->stat[si];
4117
4118 data[cpu] = x;
4119 sum += x;
4120 }
4121
4122 len = sprintf(buf, "%lu", sum);
4123
Christoph Lameter50ef37b2008-04-14 18:52:05 +03004124#ifdef CONFIG_SMP
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004125 for_each_online_cpu(cpu) {
4126 if (data[cpu] && len < PAGE_SIZE - 20)
Christoph Lameter50ef37b2008-04-14 18:52:05 +03004127 len += sprintf(buf + len, " C%d=%u", cpu, data[cpu]);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004128 }
Christoph Lameter50ef37b2008-04-14 18:52:05 +03004129#endif
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004130 kfree(data);
4131 return len + sprintf(buf + len, "\n");
4132}
4133
4134#define STAT_ATTR(si, text) \
4135static ssize_t text##_show(struct kmem_cache *s, char *buf) \
4136{ \
4137 return show_stat(s, buf, si); \
4138} \
4139SLAB_ATTR_RO(text); \
4140
4141STAT_ATTR(ALLOC_FASTPATH, alloc_fastpath);
4142STAT_ATTR(ALLOC_SLOWPATH, alloc_slowpath);
4143STAT_ATTR(FREE_FASTPATH, free_fastpath);
4144STAT_ATTR(FREE_SLOWPATH, free_slowpath);
4145STAT_ATTR(FREE_FROZEN, free_frozen);
4146STAT_ATTR(FREE_ADD_PARTIAL, free_add_partial);
4147STAT_ATTR(FREE_REMOVE_PARTIAL, free_remove_partial);
4148STAT_ATTR(ALLOC_FROM_PARTIAL, alloc_from_partial);
4149STAT_ATTR(ALLOC_SLAB, alloc_slab);
4150STAT_ATTR(ALLOC_REFILL, alloc_refill);
4151STAT_ATTR(FREE_SLAB, free_slab);
4152STAT_ATTR(CPUSLAB_FLUSH, cpuslab_flush);
4153STAT_ATTR(DEACTIVATE_FULL, deactivate_full);
4154STAT_ATTR(DEACTIVATE_EMPTY, deactivate_empty);
4155STAT_ATTR(DEACTIVATE_TO_HEAD, deactivate_to_head);
4156STAT_ATTR(DEACTIVATE_TO_TAIL, deactivate_to_tail);
4157STAT_ATTR(DEACTIVATE_REMOTE_FREES, deactivate_remote_frees);
Christoph Lameter65c33762008-04-14 19:11:40 +03004158STAT_ATTR(ORDER_FALLBACK, order_fallback);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004159#endif
4160
Pekka Enberg06428782008-01-07 23:20:27 -08004161static struct attribute *slab_attrs[] = {
Christoph Lameter81819f02007-05-06 14:49:36 -07004162 &slab_size_attr.attr,
4163 &object_size_attr.attr,
4164 &objs_per_slab_attr.attr,
4165 &order_attr.attr,
4166 &objects_attr.attr,
Christoph Lameter205ab992008-04-14 19:11:40 +03004167 &objects_partial_attr.attr,
4168 &total_objects_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07004169 &slabs_attr.attr,
4170 &partial_attr.attr,
4171 &cpu_slabs_attr.attr,
4172 &ctor_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07004173 &aliases_attr.attr,
4174 &align_attr.attr,
4175 &sanity_checks_attr.attr,
4176 &trace_attr.attr,
4177 &hwcache_align_attr.attr,
4178 &reclaim_account_attr.attr,
4179 &destroy_by_rcu_attr.attr,
4180 &red_zone_attr.attr,
4181 &poison_attr.attr,
4182 &store_user_attr.attr,
Christoph Lameter53e15af2007-05-06 14:49:43 -07004183 &validate_attr.attr,
Christoph Lameter2086d262007-05-06 14:49:46 -07004184 &shrink_attr.attr,
Christoph Lameter88a420e2007-05-06 14:49:45 -07004185 &alloc_calls_attr.attr,
4186 &free_calls_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07004187#ifdef CONFIG_ZONE_DMA
4188 &cache_dma_attr.attr,
4189#endif
4190#ifdef CONFIG_NUMA
Christoph Lameter98246012008-01-07 23:20:26 -08004191 &remote_node_defrag_ratio_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07004192#endif
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004193#ifdef CONFIG_SLUB_STATS
4194 &alloc_fastpath_attr.attr,
4195 &alloc_slowpath_attr.attr,
4196 &free_fastpath_attr.attr,
4197 &free_slowpath_attr.attr,
4198 &free_frozen_attr.attr,
4199 &free_add_partial_attr.attr,
4200 &free_remove_partial_attr.attr,
4201 &alloc_from_partial_attr.attr,
4202 &alloc_slab_attr.attr,
4203 &alloc_refill_attr.attr,
4204 &free_slab_attr.attr,
4205 &cpuslab_flush_attr.attr,
4206 &deactivate_full_attr.attr,
4207 &deactivate_empty_attr.attr,
4208 &deactivate_to_head_attr.attr,
4209 &deactivate_to_tail_attr.attr,
4210 &deactivate_remote_frees_attr.attr,
Christoph Lameter65c33762008-04-14 19:11:40 +03004211 &order_fallback_attr.attr,
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004212#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07004213 NULL
4214};
4215
4216static struct attribute_group slab_attr_group = {
4217 .attrs = slab_attrs,
4218};
4219
4220static ssize_t slab_attr_show(struct kobject *kobj,
4221 struct attribute *attr,
4222 char *buf)
4223{
4224 struct slab_attribute *attribute;
4225 struct kmem_cache *s;
4226 int err;
4227
4228 attribute = to_slab_attr(attr);
4229 s = to_slab(kobj);
4230
4231 if (!attribute->show)
4232 return -EIO;
4233
4234 err = attribute->show(s, buf);
4235
4236 return err;
4237}
4238
4239static ssize_t slab_attr_store(struct kobject *kobj,
4240 struct attribute *attr,
4241 const char *buf, size_t len)
4242{
4243 struct slab_attribute *attribute;
4244 struct kmem_cache *s;
4245 int err;
4246
4247 attribute = to_slab_attr(attr);
4248 s = to_slab(kobj);
4249
4250 if (!attribute->store)
4251 return -EIO;
4252
4253 err = attribute->store(s, buf, len);
4254
4255 return err;
4256}
4257
Christoph Lameter151c6022008-01-07 22:29:05 -08004258static void kmem_cache_release(struct kobject *kobj)
4259{
4260 struct kmem_cache *s = to_slab(kobj);
4261
4262 kfree(s);
4263}
4264
Christoph Lameter81819f02007-05-06 14:49:36 -07004265static struct sysfs_ops slab_sysfs_ops = {
4266 .show = slab_attr_show,
4267 .store = slab_attr_store,
4268};
4269
4270static struct kobj_type slab_ktype = {
4271 .sysfs_ops = &slab_sysfs_ops,
Christoph Lameter151c6022008-01-07 22:29:05 -08004272 .release = kmem_cache_release
Christoph Lameter81819f02007-05-06 14:49:36 -07004273};
4274
4275static int uevent_filter(struct kset *kset, struct kobject *kobj)
4276{
4277 struct kobj_type *ktype = get_ktype(kobj);
4278
4279 if (ktype == &slab_ktype)
4280 return 1;
4281 return 0;
4282}
4283
4284static struct kset_uevent_ops slab_uevent_ops = {
4285 .filter = uevent_filter,
4286};
4287
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06004288static struct kset *slab_kset;
Christoph Lameter81819f02007-05-06 14:49:36 -07004289
4290#define ID_STR_LENGTH 64
4291
4292/* Create a unique string id for a slab cache:
Christoph Lameter6446faa2008-02-15 23:45:26 -08004293 *
4294 * Format :[flags-]size
Christoph Lameter81819f02007-05-06 14:49:36 -07004295 */
4296static char *create_unique_id(struct kmem_cache *s)
4297{
4298 char *name = kmalloc(ID_STR_LENGTH, GFP_KERNEL);
4299 char *p = name;
4300
4301 BUG_ON(!name);
4302
4303 *p++ = ':';
4304 /*
4305 * First flags affecting slabcache operations. We will only
4306 * get here for aliasable slabs so we do not need to support
4307 * too many flags. The flags here must cover all flags that
4308 * are matched during merging to guarantee that the id is
4309 * unique.
4310 */
4311 if (s->flags & SLAB_CACHE_DMA)
4312 *p++ = 'd';
4313 if (s->flags & SLAB_RECLAIM_ACCOUNT)
4314 *p++ = 'a';
4315 if (s->flags & SLAB_DEBUG_FREE)
4316 *p++ = 'F';
4317 if (p != name + 1)
4318 *p++ = '-';
4319 p += sprintf(p, "%07d", s->size);
4320 BUG_ON(p > name + ID_STR_LENGTH - 1);
4321 return name;
4322}
4323
4324static int sysfs_slab_add(struct kmem_cache *s)
4325{
4326 int err;
4327 const char *name;
4328 int unmergeable;
4329
4330 if (slab_state < SYSFS)
4331 /* Defer until later */
4332 return 0;
4333
4334 unmergeable = slab_unmergeable(s);
4335 if (unmergeable) {
4336 /*
4337 * Slabcache can never be merged so we can use the name proper.
4338 * This is typically the case for debug situations. In that
4339 * case we can catch duplicate names easily.
4340 */
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06004341 sysfs_remove_link(&slab_kset->kobj, s->name);
Christoph Lameter81819f02007-05-06 14:49:36 -07004342 name = s->name;
4343 } else {
4344 /*
4345 * Create a unique name for the slab as a target
4346 * for the symlinks.
4347 */
4348 name = create_unique_id(s);
4349 }
4350
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06004351 s->kobj.kset = slab_kset;
Greg Kroah-Hartman1eada112007-12-17 23:05:35 -07004352 err = kobject_init_and_add(&s->kobj, &slab_ktype, NULL, name);
4353 if (err) {
4354 kobject_put(&s->kobj);
Christoph Lameter81819f02007-05-06 14:49:36 -07004355 return err;
Greg Kroah-Hartman1eada112007-12-17 23:05:35 -07004356 }
Christoph Lameter81819f02007-05-06 14:49:36 -07004357
4358 err = sysfs_create_group(&s->kobj, &slab_attr_group);
4359 if (err)
4360 return err;
4361 kobject_uevent(&s->kobj, KOBJ_ADD);
4362 if (!unmergeable) {
4363 /* Setup first alias */
4364 sysfs_slab_alias(s, s->name);
4365 kfree(name);
4366 }
4367 return 0;
4368}
4369
4370static void sysfs_slab_remove(struct kmem_cache *s)
4371{
4372 kobject_uevent(&s->kobj, KOBJ_REMOVE);
4373 kobject_del(&s->kobj);
Christoph Lameter151c6022008-01-07 22:29:05 -08004374 kobject_put(&s->kobj);
Christoph Lameter81819f02007-05-06 14:49:36 -07004375}
4376
4377/*
4378 * Need to buffer aliases during bootup until sysfs becomes
4379 * available lest we loose that information.
4380 */
4381struct saved_alias {
4382 struct kmem_cache *s;
4383 const char *name;
4384 struct saved_alias *next;
4385};
4386
Adrian Bunk5af328a2007-07-17 04:03:27 -07004387static struct saved_alias *alias_list;
Christoph Lameter81819f02007-05-06 14:49:36 -07004388
4389static int sysfs_slab_alias(struct kmem_cache *s, const char *name)
4390{
4391 struct saved_alias *al;
4392
4393 if (slab_state == SYSFS) {
4394 /*
4395 * If we have a leftover link then remove it.
4396 */
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06004397 sysfs_remove_link(&slab_kset->kobj, name);
4398 return sysfs_create_link(&slab_kset->kobj, &s->kobj, name);
Christoph Lameter81819f02007-05-06 14:49:36 -07004399 }
4400
4401 al = kmalloc(sizeof(struct saved_alias), GFP_KERNEL);
4402 if (!al)
4403 return -ENOMEM;
4404
4405 al->s = s;
4406 al->name = name;
4407 al->next = alias_list;
4408 alias_list = al;
4409 return 0;
4410}
4411
4412static int __init slab_sysfs_init(void)
4413{
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07004414 struct kmem_cache *s;
Christoph Lameter81819f02007-05-06 14:49:36 -07004415 int err;
4416
Greg Kroah-Hartman0ff21e42007-11-06 10:36:58 -08004417 slab_kset = kset_create_and_add("slab", &slab_uevent_ops, kernel_kobj);
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06004418 if (!slab_kset) {
Christoph Lameter81819f02007-05-06 14:49:36 -07004419 printk(KERN_ERR "Cannot register slab subsystem.\n");
4420 return -ENOSYS;
4421 }
4422
Christoph Lameter26a7bd02007-05-09 02:32:39 -07004423 slab_state = SYSFS;
4424
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07004425 list_for_each_entry(s, &slab_caches, list) {
Christoph Lameter26a7bd02007-05-09 02:32:39 -07004426 err = sysfs_slab_add(s);
Christoph Lameter5d540fb2007-08-30 23:56:26 -07004427 if (err)
4428 printk(KERN_ERR "SLUB: Unable to add boot slab %s"
4429 " to sysfs\n", s->name);
Christoph Lameter26a7bd02007-05-09 02:32:39 -07004430 }
Christoph Lameter81819f02007-05-06 14:49:36 -07004431
4432 while (alias_list) {
4433 struct saved_alias *al = alias_list;
4434
4435 alias_list = alias_list->next;
4436 err = sysfs_slab_alias(al->s, al->name);
Christoph Lameter5d540fb2007-08-30 23:56:26 -07004437 if (err)
4438 printk(KERN_ERR "SLUB: Unable to add boot slab alias"
4439 " %s to sysfs\n", s->name);
Christoph Lameter81819f02007-05-06 14:49:36 -07004440 kfree(al);
4441 }
4442
4443 resiliency_test();
4444 return 0;
4445}
4446
4447__initcall(slab_sysfs_init);
Christoph Lameter81819f02007-05-06 14:49:36 -07004448#endif
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004449
4450/*
4451 * The /proc/slabinfo ABI
4452 */
Linus Torvalds158a9622008-01-02 13:04:48 -08004453#ifdef CONFIG_SLABINFO
4454
4455ssize_t slabinfo_write(struct file *file, const char __user * buffer,
4456 size_t count, loff_t *ppos)
4457{
4458 return -EINVAL;
4459}
4460
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004461
4462static void print_slabinfo_header(struct seq_file *m)
4463{
4464 seq_puts(m, "slabinfo - version: 2.1\n");
4465 seq_puts(m, "# name <active_objs> <num_objs> <objsize> "
4466 "<objperslab> <pagesperslab>");
4467 seq_puts(m, " : tunables <limit> <batchcount> <sharedfactor>");
4468 seq_puts(m, " : slabdata <active_slabs> <num_slabs> <sharedavail>");
4469 seq_putc(m, '\n');
4470}
4471
4472static void *s_start(struct seq_file *m, loff_t *pos)
4473{
4474 loff_t n = *pos;
4475
4476 down_read(&slub_lock);
4477 if (!n)
4478 print_slabinfo_header(m);
4479
4480 return seq_list_start(&slab_caches, *pos);
4481}
4482
4483static void *s_next(struct seq_file *m, void *p, loff_t *pos)
4484{
4485 return seq_list_next(p, &slab_caches, pos);
4486}
4487
4488static void s_stop(struct seq_file *m, void *p)
4489{
4490 up_read(&slub_lock);
4491}
4492
4493static int s_show(struct seq_file *m, void *p)
4494{
4495 unsigned long nr_partials = 0;
4496 unsigned long nr_slabs = 0;
4497 unsigned long nr_inuse = 0;
Christoph Lameter205ab992008-04-14 19:11:40 +03004498 unsigned long nr_objs = 0;
4499 unsigned long nr_free = 0;
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004500 struct kmem_cache *s;
4501 int node;
4502
4503 s = list_entry(p, struct kmem_cache, list);
4504
4505 for_each_online_node(node) {
4506 struct kmem_cache_node *n = get_node(s, node);
4507
4508 if (!n)
4509 continue;
4510
4511 nr_partials += n->nr_partial;
4512 nr_slabs += atomic_long_read(&n->nr_slabs);
Christoph Lameter205ab992008-04-14 19:11:40 +03004513 nr_objs += atomic_long_read(&n->total_objects);
4514 nr_free += count_partial(n, count_free);
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004515 }
4516
Christoph Lameter205ab992008-04-14 19:11:40 +03004517 nr_inuse = nr_objs - nr_free;
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004518
4519 seq_printf(m, "%-17s %6lu %6lu %6u %4u %4d", s->name, nr_inuse,
Christoph Lameter834f3d12008-04-14 19:11:31 +03004520 nr_objs, s->size, oo_objects(s->oo),
4521 (1 << oo_order(s->oo)));
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004522 seq_printf(m, " : tunables %4u %4u %4u", 0, 0, 0);
4523 seq_printf(m, " : slabdata %6lu %6lu %6lu", nr_slabs, nr_slabs,
4524 0UL);
4525 seq_putc(m, '\n');
4526 return 0;
4527}
4528
4529const struct seq_operations slabinfo_op = {
4530 .start = s_start,
4531 .next = s_next,
4532 .stop = s_stop,
4533 .show = s_show,
4534};
4535
Linus Torvalds158a9622008-01-02 13:04:48 -08004536#endif /* CONFIG_SLABINFO */