blob: 7bf8cf8ec082a16643aa50a546444f27fb15aef3 [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 *
Christoph Lametercde53532008-07-04 09:59:22 -07008 * (C) 2007 SGI, Christoph Lameter
Christoph Lameter81819f02007-05-06 14:49:36 -07009 */
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>
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +040017#include <linux/proc_fs.h>
Christoph Lameter81819f02007-05-06 14:49:36 -070018#include <linux/seq_file.h>
Frederic Weisbecker36994e52008-12-29 13:42:23 -080019#include <trace/kmemtrace.h>
Christoph Lameter81819f02007-05-06 14:49:36 -070020#include <linux/cpu.h>
21#include <linux/cpuset.h>
22#include <linux/mempolicy.h>
23#include <linux/ctype.h>
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -070024#include <linux/debugobjects.h>
Christoph Lameter81819f02007-05-06 14:49:36 -070025#include <linux/kallsyms.h>
Yasunori Gotob9049e22007-10-21 16:41:37 -070026#include <linux/memory.h>
Roman Zippelf8bd2252008-05-01 04:34:31 -070027#include <linux/math64.h>
Christoph Lameter81819f02007-05-06 14:49:36 -070028
29/*
30 * Lock order:
31 * 1. slab_lock(page)
32 * 2. slab->list_lock
33 *
34 * The slab_lock protects operations on the object of a particular
35 * slab and its metadata in the page struct. If the slab lock
36 * has been taken then no allocations nor frees can be performed
37 * on the objects in the slab nor can the slab be added or removed
38 * from the partial or full lists since this would mean modifying
39 * the page_struct of the slab.
40 *
41 * The list_lock protects the partial and full list on each node and
42 * the partial slab counter. If taken then no new slabs may be added or
43 * removed from the lists nor make the number of partial slabs be modified.
44 * (Note that the total number of slabs is an atomic value that may be
45 * modified without taking the list lock).
46 *
47 * The list_lock is a centralized lock and thus we avoid taking it as
48 * much as possible. As long as SLUB does not have to handle partial
49 * slabs, operations can continue without any centralized lock. F.e.
50 * allocating a long series of objects that fill up slabs does not require
51 * the list lock.
52 *
53 * The lock order is sometimes inverted when we are trying to get a slab
54 * off a list. We take the list_lock and then look for a page on the list
55 * to use. While we do that objects in the slabs may be freed. We can
56 * only operate on the slab if we have also taken the slab_lock. So we use
57 * a slab_trylock() on the slab. If trylock was successful then no frees
58 * can occur anymore and we can use the slab for allocations etc. If the
59 * slab_trylock() does not succeed then frees are in progress in the slab and
60 * we must stay away from it for a while since we may cause a bouncing
61 * cacheline if we try to acquire the lock. So go onto the next slab.
62 * If all pages are busy then we may allocate a new slab instead of reusing
63 * a partial slab. A new slab has noone operating on it and thus there is
64 * no danger of cacheline contention.
65 *
66 * Interrupts are disabled during allocation and deallocation in order to
67 * make the slab allocator safe to use in the context of an irq. In addition
68 * interrupts are disabled to ensure that the processor does not change
69 * while handling per_cpu slabs, due to kernel preemption.
70 *
71 * SLUB assigns one slab for allocation to each processor.
72 * Allocations only occur from these slabs called cpu slabs.
73 *
Christoph Lameter672bba32007-05-09 02:32:39 -070074 * Slabs with free elements are kept on a partial list and during regular
75 * operations no list for full slabs is used. If an object in a full slab is
Christoph Lameter81819f02007-05-06 14:49:36 -070076 * freed then the slab will show up again on the partial lists.
Christoph Lameter672bba32007-05-09 02:32:39 -070077 * We track full slabs for debugging purposes though because otherwise we
78 * cannot scan all objects.
Christoph Lameter81819f02007-05-06 14:49:36 -070079 *
80 * Slabs are freed when they become empty. Teardown and setup is
81 * minimal so we rely on the page allocators per cpu caches for
82 * fast frees and allocs.
83 *
84 * Overloading of page flags that are otherwise used for LRU management.
85 *
Christoph Lameter4b6f0752007-05-16 22:10:53 -070086 * PageActive The slab is frozen and exempt from list processing.
87 * This means that the slab is dedicated to a purpose
88 * such as satisfying allocations for a specific
89 * processor. Objects may be freed in the slab while
90 * it is frozen but slab_free will then skip the usual
91 * list operations. It is up to the processor holding
92 * the slab to integrate the slab into the slab lists
93 * when the slab is no longer needed.
94 *
95 * One use of this flag is to mark slabs that are
96 * used for allocations. Then such a slab becomes a cpu
97 * slab. The cpu slab may be equipped with an additional
Christoph Lameterdfb4f092007-10-16 01:26:05 -070098 * freelist that allows lockless access to
Christoph Lameter894b8782007-05-10 03:15:16 -070099 * free objects in addition to the regular freelist
100 * that requires the slab lock.
Christoph Lameter81819f02007-05-06 14:49:36 -0700101 *
102 * PageError Slab requires special handling due to debug
103 * options set. This moves slab handling out of
Christoph Lameter894b8782007-05-10 03:15:16 -0700104 * the fast path and disables lockless freelists.
Christoph Lameter81819f02007-05-06 14:49:36 -0700105 */
106
Christoph Lameter5577bd82007-05-16 22:10:56 -0700107#ifdef CONFIG_SLUB_DEBUG
Andy Whitcroft8a380822008-07-23 21:27:18 -0700108#define SLABDEBUG 1
Christoph Lameter5577bd82007-05-16 22:10:56 -0700109#else
110#define SLABDEBUG 0
111#endif
112
Christoph Lameter81819f02007-05-06 14:49:36 -0700113/*
114 * Issues still to be resolved:
115 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700116 * - Support PAGE_ALLOC_DEBUG. Should be easy to do.
117 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700118 * - Variable sizing of the per node arrays
119 */
120
121/* Enable to test recovery from slab corruption on boot */
122#undef SLUB_RESILIENCY_TEST
123
Christoph Lameter81819f02007-05-06 14:49:36 -0700124/*
Christoph Lameter2086d262007-05-06 14:49:46 -0700125 * Mininum number of partial slabs. These will be left on the partial
126 * lists even if they are empty. kmem_cache_shrink may reclaim them.
127 */
Christoph Lameter76be8952007-12-21 14:37:37 -0800128#define MIN_PARTIAL 5
Christoph Lametere95eed52007-05-06 14:49:44 -0700129
Christoph Lameter2086d262007-05-06 14:49:46 -0700130/*
131 * Maximum number of desirable partial slabs.
132 * The existence of more partial slabs makes kmem_cache_shrink
133 * sort the partial list by the number of objects in the.
134 */
135#define MAX_PARTIAL 10
136
Christoph Lameter81819f02007-05-06 14:49:36 -0700137#define DEBUG_DEFAULT_FLAGS (SLAB_DEBUG_FREE | SLAB_RED_ZONE | \
138 SLAB_POISON | SLAB_STORE_USER)
Christoph Lameter672bba32007-05-09 02:32:39 -0700139
Christoph Lameter81819f02007-05-06 14:49:36 -0700140/*
141 * Set of flags that will prevent slab merging
142 */
143#define SLUB_NEVER_MERGE (SLAB_RED_ZONE | SLAB_POISON | SLAB_STORE_USER | \
144 SLAB_TRACE | SLAB_DESTROY_BY_RCU)
145
146#define SLUB_MERGE_SAME (SLAB_DEBUG_FREE | SLAB_RECLAIM_ACCOUNT | \
147 SLAB_CACHE_DMA)
148
149#ifndef ARCH_KMALLOC_MINALIGN
Christoph Lameter47bfdc02007-05-06 14:49:37 -0700150#define ARCH_KMALLOC_MINALIGN __alignof__(unsigned long long)
Christoph Lameter81819f02007-05-06 14:49:36 -0700151#endif
152
153#ifndef ARCH_SLAB_MINALIGN
Christoph Lameter47bfdc02007-05-06 14:49:37 -0700154#define ARCH_SLAB_MINALIGN __alignof__(unsigned long long)
Christoph Lameter81819f02007-05-06 14:49:36 -0700155#endif
156
157/* Internal SLUB flags */
Christoph Lameter1ceef402007-08-07 15:11:48 -0700158#define __OBJECT_POISON 0x80000000 /* Poison object */
159#define __SYSFS_ADD_DEFERRED 0x40000000 /* Not yet visible via sysfs */
Christoph Lameter81819f02007-05-06 14:49:36 -0700160
161static int kmem_size = sizeof(struct kmem_cache);
162
163#ifdef CONFIG_SMP
164static struct notifier_block slab_notifier;
165#endif
166
167static enum {
168 DOWN, /* No slab functionality available */
169 PARTIAL, /* kmem_cache_open() works but kmalloc does not */
Christoph Lameter672bba32007-05-09 02:32:39 -0700170 UP, /* Everything works but does not show up in sysfs */
Christoph Lameter81819f02007-05-06 14:49:36 -0700171 SYSFS /* Sysfs up */
172} slab_state = DOWN;
173
174/* A list of all slab caches on the system */
175static DECLARE_RWSEM(slub_lock);
Adrian Bunk5af328a2007-07-17 04:03:27 -0700176static LIST_HEAD(slab_caches);
Christoph Lameter81819f02007-05-06 14:49:36 -0700177
Christoph Lameter02cbc872007-05-09 02:32:43 -0700178/*
179 * Tracking user of a slab.
180 */
181struct track {
Eduard - Gabriel Munteanu35995a42008-08-19 20:43:25 +0300182 unsigned long addr; /* Called from address */
Christoph Lameter02cbc872007-05-09 02:32:43 -0700183 int cpu; /* Was running on cpu */
184 int pid; /* Pid context */
185 unsigned long when; /* When did the operation occur */
186};
187
188enum track_item { TRACK_ALLOC, TRACK_FREE };
189
Christoph Lameterf6acb632008-04-29 16:16:06 -0700190#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter81819f02007-05-06 14:49:36 -0700191static int sysfs_slab_add(struct kmem_cache *);
192static int sysfs_slab_alias(struct kmem_cache *, const char *);
193static void sysfs_slab_remove(struct kmem_cache *);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -0800194
Christoph Lameter81819f02007-05-06 14:49:36 -0700195#else
Christoph Lameter0c710012007-07-17 04:03:24 -0700196static inline int sysfs_slab_add(struct kmem_cache *s) { return 0; }
197static inline int sysfs_slab_alias(struct kmem_cache *s, const char *p)
198 { return 0; }
Christoph Lameter151c6022008-01-07 22:29:05 -0800199static inline void sysfs_slab_remove(struct kmem_cache *s)
200{
201 kfree(s);
202}
Christoph Lameter8ff12cf2008-02-07 17:47:41 -0800203
Christoph Lameter81819f02007-05-06 14:49:36 -0700204#endif
205
Christoph Lameter8ff12cf2008-02-07 17:47:41 -0800206static inline void stat(struct kmem_cache_cpu *c, enum stat_item si)
207{
208#ifdef CONFIG_SLUB_STATS
209 c->stat[si]++;
210#endif
211}
212
Christoph Lameter81819f02007-05-06 14:49:36 -0700213/********************************************************************
214 * Core slab cache functions
215 *******************************************************************/
216
217int slab_is_available(void)
218{
219 return slab_state >= UP;
220}
221
222static inline struct kmem_cache_node *get_node(struct kmem_cache *s, int node)
223{
224#ifdef CONFIG_NUMA
225 return s->node[node];
226#else
227 return &s->local_node;
228#endif
229}
230
Christoph Lameterdfb4f092007-10-16 01:26:05 -0700231static inline struct kmem_cache_cpu *get_cpu_slab(struct kmem_cache *s, int cpu)
232{
Christoph Lameter4c93c3552007-10-16 01:26:08 -0700233#ifdef CONFIG_SMP
234 return s->cpu_slab[cpu];
235#else
236 return &s->cpu_slab;
237#endif
Christoph Lameterdfb4f092007-10-16 01:26:05 -0700238}
239
Christoph Lameter6446faa2008-02-15 23:45:26 -0800240/* Verify that a pointer has an address that is valid within a slab page */
Christoph Lameter02cbc872007-05-09 02:32:43 -0700241static inline int check_valid_pointer(struct kmem_cache *s,
242 struct page *page, const void *object)
243{
244 void *base;
245
Christoph Lametera973e9d2008-03-01 13:40:44 -0800246 if (!object)
Christoph Lameter02cbc872007-05-09 02:32:43 -0700247 return 1;
248
Christoph Lametera973e9d2008-03-01 13:40:44 -0800249 base = page_address(page);
Christoph Lameter39b26462008-04-14 19:11:30 +0300250 if (object < base || object >= base + page->objects * s->size ||
Christoph Lameter02cbc872007-05-09 02:32:43 -0700251 (object - base) % s->size) {
252 return 0;
253 }
254
255 return 1;
256}
257
Christoph Lameter81819f02007-05-06 14:49:36 -0700258/*
Christoph Lameter7656c722007-05-09 02:32:40 -0700259 * Slow version of get and set free pointer.
260 *
261 * This version requires touching the cache lines of kmem_cache which
262 * we avoid to do in the fast alloc free paths. There we obtain the offset
263 * from the page struct.
264 */
265static inline void *get_freepointer(struct kmem_cache *s, void *object)
266{
267 return *(void **)(object + s->offset);
268}
269
270static inline void set_freepointer(struct kmem_cache *s, void *object, void *fp)
271{
272 *(void **)(object + s->offset) = fp;
273}
274
275/* Loop over all objects in a slab */
Christoph Lameter224a88b2008-04-14 19:11:31 +0300276#define for_each_object(__p, __s, __addr, __objects) \
277 for (__p = (__addr); __p < (__addr) + (__objects) * (__s)->size;\
Christoph Lameter7656c722007-05-09 02:32:40 -0700278 __p += (__s)->size)
279
280/* Scan freelist */
281#define for_each_free_object(__p, __s, __free) \
Christoph Lametera973e9d2008-03-01 13:40:44 -0800282 for (__p = (__free); __p; __p = get_freepointer((__s), __p))
Christoph Lameter7656c722007-05-09 02:32:40 -0700283
284/* Determine object index from a given position */
285static inline int slab_index(void *p, struct kmem_cache *s, void *addr)
286{
287 return (p - addr) / s->size;
288}
289
Christoph Lameter834f3d12008-04-14 19:11:31 +0300290static inline struct kmem_cache_order_objects oo_make(int order,
291 unsigned long size)
292{
293 struct kmem_cache_order_objects x = {
294 (order << 16) + (PAGE_SIZE << order) / size
295 };
296
297 return x;
298}
299
300static inline int oo_order(struct kmem_cache_order_objects x)
301{
302 return x.x >> 16;
303}
304
305static inline int oo_objects(struct kmem_cache_order_objects x)
306{
307 return x.x & ((1 << 16) - 1);
308}
309
Christoph Lameter41ecc552007-05-09 02:32:44 -0700310#ifdef CONFIG_SLUB_DEBUG
311/*
312 * Debug settings:
313 */
Christoph Lameterf0630ff2007-07-15 23:38:14 -0700314#ifdef CONFIG_SLUB_DEBUG_ON
315static int slub_debug = DEBUG_DEFAULT_FLAGS;
316#else
Christoph Lameter41ecc552007-05-09 02:32:44 -0700317static int slub_debug;
Christoph Lameterf0630ff2007-07-15 23:38:14 -0700318#endif
Christoph Lameter41ecc552007-05-09 02:32:44 -0700319
320static char *slub_debug_slabs;
321
Christoph Lameter7656c722007-05-09 02:32:40 -0700322/*
Christoph Lameter81819f02007-05-06 14:49:36 -0700323 * Object debugging
324 */
325static void print_section(char *text, u8 *addr, unsigned int length)
326{
327 int i, offset;
328 int newline = 1;
329 char ascii[17];
330
331 ascii[16] = 0;
332
333 for (i = 0; i < length; i++) {
334 if (newline) {
Christoph Lameter24922682007-07-17 04:03:18 -0700335 printk(KERN_ERR "%8s 0x%p: ", text, addr + i);
Christoph Lameter81819f02007-05-06 14:49:36 -0700336 newline = 0;
337 }
Pekka Enberg06428782008-01-07 23:20:27 -0800338 printk(KERN_CONT " %02x", addr[i]);
Christoph Lameter81819f02007-05-06 14:49:36 -0700339 offset = i % 16;
340 ascii[offset] = isgraph(addr[i]) ? addr[i] : '.';
341 if (offset == 15) {
Pekka Enberg06428782008-01-07 23:20:27 -0800342 printk(KERN_CONT " %s\n", ascii);
Christoph Lameter81819f02007-05-06 14:49:36 -0700343 newline = 1;
344 }
345 }
346 if (!newline) {
347 i %= 16;
348 while (i < 16) {
Pekka Enberg06428782008-01-07 23:20:27 -0800349 printk(KERN_CONT " ");
Christoph Lameter81819f02007-05-06 14:49:36 -0700350 ascii[i] = ' ';
351 i++;
352 }
Pekka Enberg06428782008-01-07 23:20:27 -0800353 printk(KERN_CONT " %s\n", ascii);
Christoph Lameter81819f02007-05-06 14:49:36 -0700354 }
355}
356
Christoph Lameter81819f02007-05-06 14:49:36 -0700357static struct track *get_track(struct kmem_cache *s, void *object,
358 enum track_item alloc)
359{
360 struct track *p;
361
362 if (s->offset)
363 p = object + s->offset + sizeof(void *);
364 else
365 p = object + s->inuse;
366
367 return p + alloc;
368}
369
370static void set_track(struct kmem_cache *s, void *object,
Eduard - Gabriel Munteanu35995a42008-08-19 20:43:25 +0300371 enum track_item alloc, unsigned long addr)
Christoph Lameter81819f02007-05-06 14:49:36 -0700372{
373 struct track *p;
374
375 if (s->offset)
376 p = object + s->offset + sizeof(void *);
377 else
378 p = object + s->inuse;
379
380 p += alloc;
381 if (addr) {
382 p->addr = addr;
383 p->cpu = smp_processor_id();
Alexey Dobriyan88e4ccf2008-06-23 02:58:37 +0400384 p->pid = current->pid;
Christoph Lameter81819f02007-05-06 14:49:36 -0700385 p->when = jiffies;
386 } else
387 memset(p, 0, sizeof(struct track));
388}
389
Christoph Lameter81819f02007-05-06 14:49:36 -0700390static void init_tracking(struct kmem_cache *s, void *object)
391{
Christoph Lameter24922682007-07-17 04:03:18 -0700392 if (!(s->flags & SLAB_STORE_USER))
393 return;
394
Eduard - Gabriel Munteanu35995a42008-08-19 20:43:25 +0300395 set_track(s, object, TRACK_FREE, 0UL);
396 set_track(s, object, TRACK_ALLOC, 0UL);
Christoph Lameter81819f02007-05-06 14:49:36 -0700397}
398
399static void print_track(const char *s, struct track *t)
400{
401 if (!t->addr)
402 return;
403
Linus Torvalds7daf7052008-07-14 12:12:53 -0700404 printk(KERN_ERR "INFO: %s in %pS age=%lu cpu=%u pid=%d\n",
Eduard - Gabriel Munteanu35995a42008-08-19 20:43:25 +0300405 s, (void *)t->addr, jiffies - t->when, t->cpu, t->pid);
Christoph Lameter81819f02007-05-06 14:49:36 -0700406}
407
Christoph Lameter24922682007-07-17 04:03:18 -0700408static void print_tracking(struct kmem_cache *s, void *object)
409{
410 if (!(s->flags & SLAB_STORE_USER))
411 return;
412
413 print_track("Allocated", get_track(s, object, TRACK_ALLOC));
414 print_track("Freed", get_track(s, object, TRACK_FREE));
415}
416
417static void print_page_info(struct page *page)
418{
Christoph Lameter39b26462008-04-14 19:11:30 +0300419 printk(KERN_ERR "INFO: Slab 0x%p objects=%u used=%u fp=0x%p flags=0x%04lx\n",
420 page, page->objects, page->inuse, page->freelist, page->flags);
Christoph Lameter24922682007-07-17 04:03:18 -0700421
422}
423
424static void slab_bug(struct kmem_cache *s, char *fmt, ...)
425{
426 va_list args;
427 char buf[100];
428
429 va_start(args, fmt);
430 vsnprintf(buf, sizeof(buf), fmt, args);
431 va_end(args);
432 printk(KERN_ERR "========================================"
433 "=====================================\n");
434 printk(KERN_ERR "BUG %s: %s\n", s->name, buf);
435 printk(KERN_ERR "----------------------------------------"
436 "-------------------------------------\n\n");
437}
438
439static void slab_fix(struct kmem_cache *s, char *fmt, ...)
440{
441 va_list args;
442 char buf[100];
443
444 va_start(args, fmt);
445 vsnprintf(buf, sizeof(buf), fmt, args);
446 va_end(args);
447 printk(KERN_ERR "FIX %s: %s\n", s->name, buf);
448}
449
450static void print_trailer(struct kmem_cache *s, struct page *page, u8 *p)
Christoph Lameter81819f02007-05-06 14:49:36 -0700451{
452 unsigned int off; /* Offset of last byte */
Christoph Lametera973e9d2008-03-01 13:40:44 -0800453 u8 *addr = page_address(page);
Christoph Lameter24922682007-07-17 04:03:18 -0700454
455 print_tracking(s, p);
456
457 print_page_info(page);
458
459 printk(KERN_ERR "INFO: Object 0x%p @offset=%tu fp=0x%p\n\n",
460 p, p - addr, get_freepointer(s, p));
461
462 if (p > addr + 16)
463 print_section("Bytes b4", p - 16, 16);
464
Pekka Enberg0ebd6522008-07-19 14:17:22 +0300465 print_section("Object", p, min_t(unsigned long, s->objsize, PAGE_SIZE));
Christoph Lameter81819f02007-05-06 14:49:36 -0700466
467 if (s->flags & SLAB_RED_ZONE)
468 print_section("Redzone", p + s->objsize,
469 s->inuse - s->objsize);
470
Christoph Lameter81819f02007-05-06 14:49:36 -0700471 if (s->offset)
472 off = s->offset + sizeof(void *);
473 else
474 off = s->inuse;
475
Christoph Lameter24922682007-07-17 04:03:18 -0700476 if (s->flags & SLAB_STORE_USER)
Christoph Lameter81819f02007-05-06 14:49:36 -0700477 off += 2 * sizeof(struct track);
Christoph Lameter81819f02007-05-06 14:49:36 -0700478
479 if (off != s->size)
480 /* Beginning of the filler is the free pointer */
Christoph Lameter24922682007-07-17 04:03:18 -0700481 print_section("Padding", p + off, s->size - off);
482
483 dump_stack();
Christoph Lameter81819f02007-05-06 14:49:36 -0700484}
485
486static void object_err(struct kmem_cache *s, struct page *page,
487 u8 *object, char *reason)
488{
Christoph Lameter3dc50632008-04-23 12:28:01 -0700489 slab_bug(s, "%s", reason);
Christoph Lameter24922682007-07-17 04:03:18 -0700490 print_trailer(s, page, object);
Christoph Lameter81819f02007-05-06 14:49:36 -0700491}
492
Christoph Lameter24922682007-07-17 04:03:18 -0700493static void slab_err(struct kmem_cache *s, struct page *page, char *fmt, ...)
Christoph Lameter81819f02007-05-06 14:49:36 -0700494{
495 va_list args;
496 char buf[100];
497
Christoph Lameter24922682007-07-17 04:03:18 -0700498 va_start(args, fmt);
499 vsnprintf(buf, sizeof(buf), fmt, args);
Christoph Lameter81819f02007-05-06 14:49:36 -0700500 va_end(args);
Christoph Lameter3dc50632008-04-23 12:28:01 -0700501 slab_bug(s, "%s", buf);
Christoph Lameter24922682007-07-17 04:03:18 -0700502 print_page_info(page);
Christoph Lameter81819f02007-05-06 14:49:36 -0700503 dump_stack();
504}
505
506static void init_object(struct kmem_cache *s, void *object, int active)
507{
508 u8 *p = object;
509
510 if (s->flags & __OBJECT_POISON) {
511 memset(p, POISON_FREE, s->objsize - 1);
Pekka Enberg06428782008-01-07 23:20:27 -0800512 p[s->objsize - 1] = POISON_END;
Christoph Lameter81819f02007-05-06 14:49:36 -0700513 }
514
515 if (s->flags & SLAB_RED_ZONE)
516 memset(p + s->objsize,
517 active ? SLUB_RED_ACTIVE : SLUB_RED_INACTIVE,
518 s->inuse - s->objsize);
519}
520
Christoph Lameter24922682007-07-17 04:03:18 -0700521static u8 *check_bytes(u8 *start, unsigned int value, unsigned int bytes)
Christoph Lameter81819f02007-05-06 14:49:36 -0700522{
523 while (bytes) {
524 if (*start != (u8)value)
Christoph Lameter24922682007-07-17 04:03:18 -0700525 return start;
Christoph Lameter81819f02007-05-06 14:49:36 -0700526 start++;
527 bytes--;
528 }
Christoph Lameter24922682007-07-17 04:03:18 -0700529 return NULL;
530}
531
532static void restore_bytes(struct kmem_cache *s, char *message, u8 data,
533 void *from, void *to)
534{
535 slab_fix(s, "Restoring 0x%p-0x%p=0x%x\n", from, to - 1, data);
536 memset(from, data, to - from);
537}
538
539static int check_bytes_and_report(struct kmem_cache *s, struct page *page,
540 u8 *object, char *what,
Pekka Enberg06428782008-01-07 23:20:27 -0800541 u8 *start, unsigned int value, unsigned int bytes)
Christoph Lameter24922682007-07-17 04:03:18 -0700542{
543 u8 *fault;
544 u8 *end;
545
546 fault = check_bytes(start, value, bytes);
547 if (!fault)
548 return 1;
549
550 end = start + bytes;
551 while (end > fault && end[-1] == value)
552 end--;
553
554 slab_bug(s, "%s overwritten", what);
555 printk(KERN_ERR "INFO: 0x%p-0x%p. First byte 0x%x instead of 0x%x\n",
556 fault, end - 1, fault[0], value);
557 print_trailer(s, page, object);
558
559 restore_bytes(s, what, value, fault, end);
560 return 0;
Christoph Lameter81819f02007-05-06 14:49:36 -0700561}
562
Christoph Lameter81819f02007-05-06 14:49:36 -0700563/*
564 * Object layout:
565 *
566 * object address
567 * Bytes of the object to be managed.
568 * If the freepointer may overlay the object then the free
569 * pointer is the first word of the object.
Christoph Lameter672bba32007-05-09 02:32:39 -0700570 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700571 * Poisoning uses 0x6b (POISON_FREE) and the last byte is
572 * 0xa5 (POISON_END)
573 *
574 * object + s->objsize
575 * Padding to reach word boundary. This is also used for Redzoning.
Christoph Lameter672bba32007-05-09 02:32:39 -0700576 * Padding is extended by another word if Redzoning is enabled and
577 * objsize == inuse.
578 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700579 * We fill with 0xbb (RED_INACTIVE) for inactive objects and with
580 * 0xcc (RED_ACTIVE) for objects in use.
581 *
582 * object + s->inuse
Christoph Lameter672bba32007-05-09 02:32:39 -0700583 * Meta data starts here.
584 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700585 * A. Free pointer (if we cannot overwrite object on free)
586 * B. Tracking data for SLAB_STORE_USER
Christoph Lameter672bba32007-05-09 02:32:39 -0700587 * C. Padding to reach required alignment boundary or at mininum
Christoph Lameter6446faa2008-02-15 23:45:26 -0800588 * one word if debugging is on to be able to detect writes
Christoph Lameter672bba32007-05-09 02:32:39 -0700589 * before the word boundary.
590 *
591 * Padding is done using 0x5a (POISON_INUSE)
Christoph Lameter81819f02007-05-06 14:49:36 -0700592 *
593 * object + s->size
Christoph Lameter672bba32007-05-09 02:32:39 -0700594 * Nothing is used beyond s->size.
Christoph Lameter81819f02007-05-06 14:49:36 -0700595 *
Christoph Lameter672bba32007-05-09 02:32:39 -0700596 * If slabcaches are merged then the objsize and inuse boundaries are mostly
597 * ignored. And therefore no slab options that rely on these boundaries
Christoph Lameter81819f02007-05-06 14:49:36 -0700598 * may be used with merged slabcaches.
599 */
600
Christoph Lameter81819f02007-05-06 14:49:36 -0700601static int check_pad_bytes(struct kmem_cache *s, struct page *page, u8 *p)
602{
603 unsigned long off = s->inuse; /* The end of info */
604
605 if (s->offset)
606 /* Freepointer is placed after the object. */
607 off += sizeof(void *);
608
609 if (s->flags & SLAB_STORE_USER)
610 /* We also have user information there */
611 off += 2 * sizeof(struct track);
612
613 if (s->size == off)
614 return 1;
615
Christoph Lameter24922682007-07-17 04:03:18 -0700616 return check_bytes_and_report(s, page, p, "Object padding",
617 p + off, POISON_INUSE, s->size - off);
Christoph Lameter81819f02007-05-06 14:49:36 -0700618}
619
Christoph Lameter39b26462008-04-14 19:11:30 +0300620/* Check the pad bytes at the end of a slab page */
Christoph Lameter81819f02007-05-06 14:49:36 -0700621static int slab_pad_check(struct kmem_cache *s, struct page *page)
622{
Christoph Lameter24922682007-07-17 04:03:18 -0700623 u8 *start;
624 u8 *fault;
625 u8 *end;
626 int length;
627 int remainder;
Christoph Lameter81819f02007-05-06 14:49:36 -0700628
629 if (!(s->flags & SLAB_POISON))
630 return 1;
631
Christoph Lametera973e9d2008-03-01 13:40:44 -0800632 start = page_address(page);
Christoph Lameter834f3d12008-04-14 19:11:31 +0300633 length = (PAGE_SIZE << compound_order(page));
Christoph Lameter39b26462008-04-14 19:11:30 +0300634 end = start + length;
635 remainder = length % s->size;
Christoph Lameter81819f02007-05-06 14:49:36 -0700636 if (!remainder)
637 return 1;
638
Christoph Lameter39b26462008-04-14 19:11:30 +0300639 fault = check_bytes(end - remainder, POISON_INUSE, remainder);
Christoph Lameter24922682007-07-17 04:03:18 -0700640 if (!fault)
641 return 1;
642 while (end > fault && end[-1] == POISON_INUSE)
643 end--;
644
645 slab_err(s, page, "Padding overwritten. 0x%p-0x%p", fault, end - 1);
Christoph Lameter39b26462008-04-14 19:11:30 +0300646 print_section("Padding", end - remainder, remainder);
Christoph Lameter24922682007-07-17 04:03:18 -0700647
648 restore_bytes(s, "slab padding", POISON_INUSE, start, end);
649 return 0;
Christoph Lameter81819f02007-05-06 14:49:36 -0700650}
651
652static int check_object(struct kmem_cache *s, struct page *page,
653 void *object, int active)
654{
655 u8 *p = object;
656 u8 *endobject = object + s->objsize;
657
658 if (s->flags & SLAB_RED_ZONE) {
659 unsigned int red =
660 active ? SLUB_RED_ACTIVE : SLUB_RED_INACTIVE;
661
Christoph Lameter24922682007-07-17 04:03:18 -0700662 if (!check_bytes_and_report(s, page, object, "Redzone",
663 endobject, red, s->inuse - s->objsize))
Christoph Lameter81819f02007-05-06 14:49:36 -0700664 return 0;
Christoph Lameter81819f02007-05-06 14:49:36 -0700665 } else {
Ingo Molnar3adbefe2008-02-05 17:57:39 -0800666 if ((s->flags & SLAB_POISON) && s->objsize < s->inuse) {
667 check_bytes_and_report(s, page, p, "Alignment padding",
668 endobject, POISON_INUSE, s->inuse - s->objsize);
669 }
Christoph Lameter81819f02007-05-06 14:49:36 -0700670 }
671
672 if (s->flags & SLAB_POISON) {
673 if (!active && (s->flags & __OBJECT_POISON) &&
Christoph Lameter24922682007-07-17 04:03:18 -0700674 (!check_bytes_and_report(s, page, p, "Poison", p,
675 POISON_FREE, s->objsize - 1) ||
676 !check_bytes_and_report(s, page, p, "Poison",
Pekka Enberg06428782008-01-07 23:20:27 -0800677 p + s->objsize - 1, POISON_END, 1)))
Christoph Lameter81819f02007-05-06 14:49:36 -0700678 return 0;
Christoph Lameter81819f02007-05-06 14:49:36 -0700679 /*
680 * check_pad_bytes cleans up on its own.
681 */
682 check_pad_bytes(s, page, p);
683 }
684
685 if (!s->offset && active)
686 /*
687 * Object and freepointer overlap. Cannot check
688 * freepointer while object is allocated.
689 */
690 return 1;
691
692 /* Check free pointer validity */
693 if (!check_valid_pointer(s, page, get_freepointer(s, p))) {
694 object_err(s, page, p, "Freepointer corrupt");
695 /*
696 * No choice but to zap it and thus loose the remainder
697 * of the free objects in this slab. May cause
Christoph Lameter672bba32007-05-09 02:32:39 -0700698 * another error because the object count is now wrong.
Christoph Lameter81819f02007-05-06 14:49:36 -0700699 */
Christoph Lametera973e9d2008-03-01 13:40:44 -0800700 set_freepointer(s, p, NULL);
Christoph Lameter81819f02007-05-06 14:49:36 -0700701 return 0;
702 }
703 return 1;
704}
705
706static int check_slab(struct kmem_cache *s, struct page *page)
707{
Christoph Lameter39b26462008-04-14 19:11:30 +0300708 int maxobj;
709
Christoph Lameter81819f02007-05-06 14:49:36 -0700710 VM_BUG_ON(!irqs_disabled());
711
712 if (!PageSlab(page)) {
Christoph Lameter24922682007-07-17 04:03:18 -0700713 slab_err(s, page, "Not a valid slab page");
Christoph Lameter81819f02007-05-06 14:49:36 -0700714 return 0;
715 }
Christoph Lameter39b26462008-04-14 19:11:30 +0300716
717 maxobj = (PAGE_SIZE << compound_order(page)) / s->size;
718 if (page->objects > maxobj) {
719 slab_err(s, page, "objects %u > max %u",
720 s->name, page->objects, maxobj);
721 return 0;
722 }
723 if (page->inuse > page->objects) {
Christoph Lameter24922682007-07-17 04:03:18 -0700724 slab_err(s, page, "inuse %u > max %u",
Christoph Lameter39b26462008-04-14 19:11:30 +0300725 s->name, page->inuse, page->objects);
Christoph Lameter81819f02007-05-06 14:49:36 -0700726 return 0;
727 }
728 /* Slab_pad_check fixes things up after itself */
729 slab_pad_check(s, page);
730 return 1;
731}
732
733/*
Christoph Lameter672bba32007-05-09 02:32:39 -0700734 * Determine if a certain object on a page is on the freelist. Must hold the
735 * slab lock to guarantee that the chains are in a consistent state.
Christoph Lameter81819f02007-05-06 14:49:36 -0700736 */
737static int on_freelist(struct kmem_cache *s, struct page *page, void *search)
738{
739 int nr = 0;
740 void *fp = page->freelist;
741 void *object = NULL;
Christoph Lameter224a88b2008-04-14 19:11:31 +0300742 unsigned long max_objects;
Christoph Lameter81819f02007-05-06 14:49:36 -0700743
Christoph Lameter39b26462008-04-14 19:11:30 +0300744 while (fp && nr <= page->objects) {
Christoph Lameter81819f02007-05-06 14:49:36 -0700745 if (fp == search)
746 return 1;
747 if (!check_valid_pointer(s, page, fp)) {
748 if (object) {
749 object_err(s, page, object,
750 "Freechain corrupt");
Christoph Lametera973e9d2008-03-01 13:40:44 -0800751 set_freepointer(s, object, NULL);
Christoph Lameter81819f02007-05-06 14:49:36 -0700752 break;
753 } else {
Christoph Lameter24922682007-07-17 04:03:18 -0700754 slab_err(s, page, "Freepointer corrupt");
Christoph Lametera973e9d2008-03-01 13:40:44 -0800755 page->freelist = NULL;
Christoph Lameter39b26462008-04-14 19:11:30 +0300756 page->inuse = page->objects;
Christoph Lameter24922682007-07-17 04:03:18 -0700757 slab_fix(s, "Freelist cleared");
Christoph Lameter81819f02007-05-06 14:49:36 -0700758 return 0;
759 }
760 break;
761 }
762 object = fp;
763 fp = get_freepointer(s, object);
764 nr++;
765 }
766
Christoph Lameter224a88b2008-04-14 19:11:31 +0300767 max_objects = (PAGE_SIZE << compound_order(page)) / s->size;
768 if (max_objects > 65535)
769 max_objects = 65535;
770
771 if (page->objects != max_objects) {
772 slab_err(s, page, "Wrong number of objects. Found %d but "
773 "should be %d", page->objects, max_objects);
774 page->objects = max_objects;
775 slab_fix(s, "Number of objects adjusted.");
776 }
Christoph Lameter39b26462008-04-14 19:11:30 +0300777 if (page->inuse != page->objects - nr) {
Christoph Lameter70d71222007-05-06 14:49:47 -0700778 slab_err(s, page, "Wrong object count. Counter is %d but "
Christoph Lameter39b26462008-04-14 19:11:30 +0300779 "counted were %d", page->inuse, page->objects - nr);
780 page->inuse = page->objects - nr;
Christoph Lameter24922682007-07-17 04:03:18 -0700781 slab_fix(s, "Object count adjusted.");
Christoph Lameter81819f02007-05-06 14:49:36 -0700782 }
783 return search == NULL;
784}
785
Christoph Lameter0121c6192008-04-29 16:11:12 -0700786static void trace(struct kmem_cache *s, struct page *page, void *object,
787 int alloc)
Christoph Lameter3ec09742007-05-16 22:11:00 -0700788{
789 if (s->flags & SLAB_TRACE) {
790 printk(KERN_INFO "TRACE %s %s 0x%p inuse=%d fp=0x%p\n",
791 s->name,
792 alloc ? "alloc" : "free",
793 object, page->inuse,
794 page->freelist);
795
796 if (!alloc)
797 print_section("Object", (void *)object, s->objsize);
798
799 dump_stack();
800 }
801}
802
Christoph Lameter643b1132007-05-06 14:49:42 -0700803/*
Christoph Lameter672bba32007-05-09 02:32:39 -0700804 * Tracking of fully allocated slabs for debugging purposes.
Christoph Lameter643b1132007-05-06 14:49:42 -0700805 */
Christoph Lametere95eed52007-05-06 14:49:44 -0700806static void add_full(struct kmem_cache_node *n, struct page *page)
Christoph Lameter643b1132007-05-06 14:49:42 -0700807{
Christoph Lameter643b1132007-05-06 14:49:42 -0700808 spin_lock(&n->list_lock);
809 list_add(&page->lru, &n->full);
810 spin_unlock(&n->list_lock);
811}
812
813static void remove_full(struct kmem_cache *s, struct page *page)
814{
815 struct kmem_cache_node *n;
816
817 if (!(s->flags & SLAB_STORE_USER))
818 return;
819
820 n = get_node(s, page_to_nid(page));
821
822 spin_lock(&n->list_lock);
823 list_del(&page->lru);
824 spin_unlock(&n->list_lock);
825}
826
Christoph Lameter0f389ec2008-04-14 18:53:02 +0300827/* Tracking of the number of slabs for debugging purposes */
828static inline unsigned long slabs_node(struct kmem_cache *s, int node)
829{
830 struct kmem_cache_node *n = get_node(s, node);
831
832 return atomic_long_read(&n->nr_slabs);
833}
834
Christoph Lameter205ab992008-04-14 19:11:40 +0300835static inline void inc_slabs_node(struct kmem_cache *s, int node, int objects)
Christoph Lameter0f389ec2008-04-14 18:53:02 +0300836{
837 struct kmem_cache_node *n = get_node(s, node);
838
839 /*
840 * May be called early in order to allocate a slab for the
841 * kmem_cache_node structure. Solve the chicken-egg
842 * dilemma by deferring the increment of the count during
843 * bootstrap (see early_kmem_cache_node_alloc).
844 */
Christoph Lameter205ab992008-04-14 19:11:40 +0300845 if (!NUMA_BUILD || n) {
Christoph Lameter0f389ec2008-04-14 18:53:02 +0300846 atomic_long_inc(&n->nr_slabs);
Christoph Lameter205ab992008-04-14 19:11:40 +0300847 atomic_long_add(objects, &n->total_objects);
848 }
Christoph Lameter0f389ec2008-04-14 18:53:02 +0300849}
Christoph Lameter205ab992008-04-14 19:11:40 +0300850static inline void dec_slabs_node(struct kmem_cache *s, int node, int objects)
Christoph Lameter0f389ec2008-04-14 18:53:02 +0300851{
852 struct kmem_cache_node *n = get_node(s, node);
853
854 atomic_long_dec(&n->nr_slabs);
Christoph Lameter205ab992008-04-14 19:11:40 +0300855 atomic_long_sub(objects, &n->total_objects);
Christoph Lameter0f389ec2008-04-14 18:53:02 +0300856}
857
858/* Object debug checks for alloc/free paths */
Christoph Lameter3ec09742007-05-16 22:11:00 -0700859static void setup_object_debug(struct kmem_cache *s, struct page *page,
860 void *object)
861{
862 if (!(s->flags & (SLAB_STORE_USER|SLAB_RED_ZONE|__OBJECT_POISON)))
863 return;
864
865 init_object(s, object, 0);
866 init_tracking(s, object);
867}
868
869static int alloc_debug_processing(struct kmem_cache *s, struct page *page,
Eduard - Gabriel Munteanu35995a42008-08-19 20:43:25 +0300870 void *object, unsigned long addr)
Christoph Lameter81819f02007-05-06 14:49:36 -0700871{
872 if (!check_slab(s, page))
873 goto bad;
874
Christoph Lameterd692ef62008-02-15 23:45:24 -0800875 if (!on_freelist(s, page, object)) {
Christoph Lameter24922682007-07-17 04:03:18 -0700876 object_err(s, page, object, "Object already allocated");
Christoph Lameter70d71222007-05-06 14:49:47 -0700877 goto bad;
Christoph Lameter81819f02007-05-06 14:49:36 -0700878 }
879
880 if (!check_valid_pointer(s, page, object)) {
881 object_err(s, page, object, "Freelist Pointer check fails");
Christoph Lameter70d71222007-05-06 14:49:47 -0700882 goto bad;
Christoph Lameter81819f02007-05-06 14:49:36 -0700883 }
884
Christoph Lameterd692ef62008-02-15 23:45:24 -0800885 if (!check_object(s, page, object, 0))
Christoph Lameter81819f02007-05-06 14:49:36 -0700886 goto bad;
Christoph Lameter81819f02007-05-06 14:49:36 -0700887
Christoph Lameter3ec09742007-05-16 22:11:00 -0700888 /* Success perform special debug activities for allocs */
889 if (s->flags & SLAB_STORE_USER)
890 set_track(s, object, TRACK_ALLOC, addr);
891 trace(s, page, object, 1);
892 init_object(s, object, 1);
Christoph Lameter81819f02007-05-06 14:49:36 -0700893 return 1;
Christoph Lameter3ec09742007-05-16 22:11:00 -0700894
Christoph Lameter81819f02007-05-06 14:49:36 -0700895bad:
896 if (PageSlab(page)) {
897 /*
898 * If this is a slab page then lets do the best we can
899 * to avoid issues in the future. Marking all objects
Christoph Lameter672bba32007-05-09 02:32:39 -0700900 * as used avoids touching the remaining objects.
Christoph Lameter81819f02007-05-06 14:49:36 -0700901 */
Christoph Lameter24922682007-07-17 04:03:18 -0700902 slab_fix(s, "Marking all objects used");
Christoph Lameter39b26462008-04-14 19:11:30 +0300903 page->inuse = page->objects;
Christoph Lametera973e9d2008-03-01 13:40:44 -0800904 page->freelist = NULL;
Christoph Lameter81819f02007-05-06 14:49:36 -0700905 }
906 return 0;
907}
908
Christoph Lameter3ec09742007-05-16 22:11:00 -0700909static int free_debug_processing(struct kmem_cache *s, struct page *page,
Eduard - Gabriel Munteanu35995a42008-08-19 20:43:25 +0300910 void *object, unsigned long addr)
Christoph Lameter81819f02007-05-06 14:49:36 -0700911{
912 if (!check_slab(s, page))
913 goto fail;
914
915 if (!check_valid_pointer(s, page, object)) {
Christoph Lameter70d71222007-05-06 14:49:47 -0700916 slab_err(s, page, "Invalid object pointer 0x%p", object);
Christoph Lameter81819f02007-05-06 14:49:36 -0700917 goto fail;
918 }
919
920 if (on_freelist(s, page, object)) {
Christoph Lameter24922682007-07-17 04:03:18 -0700921 object_err(s, page, object, "Object already free");
Christoph Lameter81819f02007-05-06 14:49:36 -0700922 goto fail;
923 }
924
925 if (!check_object(s, page, object, 1))
926 return 0;
927
928 if (unlikely(s != page->slab)) {
Ingo Molnar3adbefe2008-02-05 17:57:39 -0800929 if (!PageSlab(page)) {
Christoph Lameter70d71222007-05-06 14:49:47 -0700930 slab_err(s, page, "Attempt to free object(0x%p) "
931 "outside of slab", object);
Ingo Molnar3adbefe2008-02-05 17:57:39 -0800932 } else if (!page->slab) {
Christoph Lameter81819f02007-05-06 14:49:36 -0700933 printk(KERN_ERR
Christoph Lameter70d71222007-05-06 14:49:47 -0700934 "SLUB <none>: no slab for object 0x%p.\n",
Christoph Lameter81819f02007-05-06 14:49:36 -0700935 object);
Christoph Lameter70d71222007-05-06 14:49:47 -0700936 dump_stack();
Pekka Enberg06428782008-01-07 23:20:27 -0800937 } else
Christoph Lameter24922682007-07-17 04:03:18 -0700938 object_err(s, page, object,
939 "page slab pointer corrupt.");
Christoph Lameter81819f02007-05-06 14:49:36 -0700940 goto fail;
941 }
Christoph Lameter3ec09742007-05-16 22:11:00 -0700942
943 /* Special debug activities for freeing objects */
Andy Whitcroft8a380822008-07-23 21:27:18 -0700944 if (!PageSlubFrozen(page) && !page->freelist)
Christoph Lameter3ec09742007-05-16 22:11:00 -0700945 remove_full(s, page);
946 if (s->flags & SLAB_STORE_USER)
947 set_track(s, object, TRACK_FREE, addr);
948 trace(s, page, object, 0);
949 init_object(s, object, 0);
Christoph Lameter81819f02007-05-06 14:49:36 -0700950 return 1;
Christoph Lameter3ec09742007-05-16 22:11:00 -0700951
Christoph Lameter81819f02007-05-06 14:49:36 -0700952fail:
Christoph Lameter24922682007-07-17 04:03:18 -0700953 slab_fix(s, "Object at 0x%p not freed", object);
Christoph Lameter81819f02007-05-06 14:49:36 -0700954 return 0;
955}
956
Christoph Lameter41ecc552007-05-09 02:32:44 -0700957static int __init setup_slub_debug(char *str)
958{
Christoph Lameterf0630ff2007-07-15 23:38:14 -0700959 slub_debug = DEBUG_DEFAULT_FLAGS;
960 if (*str++ != '=' || !*str)
961 /*
962 * No options specified. Switch on full debugging.
963 */
964 goto out;
Christoph Lameter41ecc552007-05-09 02:32:44 -0700965
966 if (*str == ',')
Christoph Lameterf0630ff2007-07-15 23:38:14 -0700967 /*
968 * No options but restriction on slabs. This means full
969 * debugging for slabs matching a pattern.
970 */
971 goto check_slabs;
972
973 slub_debug = 0;
974 if (*str == '-')
975 /*
976 * Switch off all debugging measures.
977 */
978 goto out;
979
980 /*
981 * Determine which debug features should be switched on
982 */
Pekka Enberg06428782008-01-07 23:20:27 -0800983 for (; *str && *str != ','; str++) {
Christoph Lameterf0630ff2007-07-15 23:38:14 -0700984 switch (tolower(*str)) {
985 case 'f':
986 slub_debug |= SLAB_DEBUG_FREE;
987 break;
988 case 'z':
989 slub_debug |= SLAB_RED_ZONE;
990 break;
991 case 'p':
992 slub_debug |= SLAB_POISON;
993 break;
994 case 'u':
995 slub_debug |= SLAB_STORE_USER;
996 break;
997 case 't':
998 slub_debug |= SLAB_TRACE;
999 break;
1000 default:
1001 printk(KERN_ERR "slub_debug option '%c' "
Pekka Enberg06428782008-01-07 23:20:27 -08001002 "unknown. skipped\n", *str);
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001003 }
1004 }
1005
1006check_slabs:
1007 if (*str == ',')
Christoph Lameter41ecc552007-05-09 02:32:44 -07001008 slub_debug_slabs = str + 1;
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001009out:
Christoph Lameter41ecc552007-05-09 02:32:44 -07001010 return 1;
1011}
1012
1013__setup("slub_debug", setup_slub_debug);
1014
Christoph Lameterba0268a2007-09-11 15:24:11 -07001015static unsigned long kmem_cache_flags(unsigned long objsize,
1016 unsigned long flags, const char *name,
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07001017 void (*ctor)(void *))
Christoph Lameter41ecc552007-05-09 02:32:44 -07001018{
1019 /*
Christoph Lametere1533622008-02-15 23:45:24 -08001020 * Enable debugging if selected on the kernel commandline.
Christoph Lameter41ecc552007-05-09 02:32:44 -07001021 */
Christoph Lametere1533622008-02-15 23:45:24 -08001022 if (slub_debug && (!slub_debug_slabs ||
1023 strncmp(slub_debug_slabs, name, strlen(slub_debug_slabs)) == 0))
1024 flags |= slub_debug;
Christoph Lameterba0268a2007-09-11 15:24:11 -07001025
1026 return flags;
Christoph Lameter41ecc552007-05-09 02:32:44 -07001027}
1028#else
Christoph Lameter3ec09742007-05-16 22:11:00 -07001029static inline void setup_object_debug(struct kmem_cache *s,
1030 struct page *page, void *object) {}
Christoph Lameter41ecc552007-05-09 02:32:44 -07001031
Christoph Lameter3ec09742007-05-16 22:11:00 -07001032static inline int alloc_debug_processing(struct kmem_cache *s,
Eduard - Gabriel Munteanu35995a42008-08-19 20:43:25 +03001033 struct page *page, void *object, unsigned long addr) { return 0; }
Christoph Lameter41ecc552007-05-09 02:32:44 -07001034
Christoph Lameter3ec09742007-05-16 22:11:00 -07001035static inline int free_debug_processing(struct kmem_cache *s,
Eduard - Gabriel Munteanu35995a42008-08-19 20:43:25 +03001036 struct page *page, void *object, unsigned long addr) { return 0; }
Christoph Lameter41ecc552007-05-09 02:32:44 -07001037
Christoph Lameter41ecc552007-05-09 02:32:44 -07001038static inline int slab_pad_check(struct kmem_cache *s, struct page *page)
1039 { return 1; }
1040static inline int check_object(struct kmem_cache *s, struct page *page,
1041 void *object, int active) { return 1; }
Christoph Lameter3ec09742007-05-16 22:11:00 -07001042static inline void add_full(struct kmem_cache_node *n, struct page *page) {}
Christoph Lameterba0268a2007-09-11 15:24:11 -07001043static inline unsigned long kmem_cache_flags(unsigned long objsize,
1044 unsigned long flags, const char *name,
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07001045 void (*ctor)(void *))
Christoph Lameterba0268a2007-09-11 15:24:11 -07001046{
1047 return flags;
1048}
Christoph Lameter41ecc552007-05-09 02:32:44 -07001049#define slub_debug 0
Christoph Lameter0f389ec2008-04-14 18:53:02 +03001050
1051static inline unsigned long slabs_node(struct kmem_cache *s, int node)
1052 { return 0; }
Christoph Lameter205ab992008-04-14 19:11:40 +03001053static inline void inc_slabs_node(struct kmem_cache *s, int node,
1054 int objects) {}
1055static inline void dec_slabs_node(struct kmem_cache *s, int node,
1056 int objects) {}
Christoph Lameter41ecc552007-05-09 02:32:44 -07001057#endif
Christoph Lameter205ab992008-04-14 19:11:40 +03001058
Christoph Lameter81819f02007-05-06 14:49:36 -07001059/*
1060 * Slab allocation and freeing
1061 */
Christoph Lameter65c33762008-04-14 19:11:40 +03001062static inline struct page *alloc_slab_page(gfp_t flags, int node,
1063 struct kmem_cache_order_objects oo)
1064{
1065 int order = oo_order(oo);
1066
1067 if (node == -1)
1068 return alloc_pages(flags, order);
1069 else
1070 return alloc_pages_node(node, flags, order);
1071}
1072
Christoph Lameter81819f02007-05-06 14:49:36 -07001073static struct page *allocate_slab(struct kmem_cache *s, gfp_t flags, int node)
1074{
Pekka Enberg06428782008-01-07 23:20:27 -08001075 struct page *page;
Christoph Lameter834f3d12008-04-14 19:11:31 +03001076 struct kmem_cache_order_objects oo = s->oo;
Christoph Lameter81819f02007-05-06 14:49:36 -07001077
Christoph Lameterb7a49f02008-02-14 14:21:32 -08001078 flags |= s->allocflags;
Mel Gormane12ba742007-10-16 01:25:52 -07001079
Christoph Lameter65c33762008-04-14 19:11:40 +03001080 page = alloc_slab_page(flags | __GFP_NOWARN | __GFP_NORETRY, node,
1081 oo);
1082 if (unlikely(!page)) {
1083 oo = s->min;
1084 /*
1085 * Allocation may have failed due to fragmentation.
1086 * Try a lower order alloc if possible
1087 */
1088 page = alloc_slab_page(flags, node, oo);
1089 if (!page)
1090 return NULL;
Christoph Lameter81819f02007-05-06 14:49:36 -07001091
Christoph Lameter65c33762008-04-14 19:11:40 +03001092 stat(get_cpu_slab(s, raw_smp_processor_id()), ORDER_FALLBACK);
1093 }
Christoph Lameter834f3d12008-04-14 19:11:31 +03001094 page->objects = oo_objects(oo);
Christoph Lameter81819f02007-05-06 14:49:36 -07001095 mod_zone_page_state(page_zone(page),
1096 (s->flags & SLAB_RECLAIM_ACCOUNT) ?
1097 NR_SLAB_RECLAIMABLE : NR_SLAB_UNRECLAIMABLE,
Christoph Lameter65c33762008-04-14 19:11:40 +03001098 1 << oo_order(oo));
Christoph Lameter81819f02007-05-06 14:49:36 -07001099
1100 return page;
1101}
1102
1103static void setup_object(struct kmem_cache *s, struct page *page,
1104 void *object)
1105{
Christoph Lameter3ec09742007-05-16 22:11:00 -07001106 setup_object_debug(s, page, object);
Christoph Lameter4f104932007-05-06 14:50:17 -07001107 if (unlikely(s->ctor))
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07001108 s->ctor(object);
Christoph Lameter81819f02007-05-06 14:49:36 -07001109}
1110
1111static struct page *new_slab(struct kmem_cache *s, gfp_t flags, int node)
1112{
1113 struct page *page;
Christoph Lameter81819f02007-05-06 14:49:36 -07001114 void *start;
Christoph Lameter81819f02007-05-06 14:49:36 -07001115 void *last;
1116 void *p;
1117
Christoph Lameter6cb06222007-10-16 01:25:41 -07001118 BUG_ON(flags & GFP_SLAB_BUG_MASK);
Christoph Lameter81819f02007-05-06 14:49:36 -07001119
Christoph Lameter6cb06222007-10-16 01:25:41 -07001120 page = allocate_slab(s,
1121 flags & (GFP_RECLAIM_MASK | GFP_CONSTRAINT_MASK), node);
Christoph Lameter81819f02007-05-06 14:49:36 -07001122 if (!page)
1123 goto out;
1124
Christoph Lameter205ab992008-04-14 19:11:40 +03001125 inc_slabs_node(s, page_to_nid(page), page->objects);
Christoph Lameter81819f02007-05-06 14:49:36 -07001126 page->slab = s;
1127 page->flags |= 1 << PG_slab;
1128 if (s->flags & (SLAB_DEBUG_FREE | SLAB_RED_ZONE | SLAB_POISON |
1129 SLAB_STORE_USER | SLAB_TRACE))
Andy Whitcroft8a380822008-07-23 21:27:18 -07001130 __SetPageSlubDebug(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001131
1132 start = page_address(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001133
1134 if (unlikely(s->flags & SLAB_POISON))
Christoph Lameter834f3d12008-04-14 19:11:31 +03001135 memset(start, POISON_INUSE, PAGE_SIZE << compound_order(page));
Christoph Lameter81819f02007-05-06 14:49:36 -07001136
1137 last = start;
Christoph Lameter224a88b2008-04-14 19:11:31 +03001138 for_each_object(p, s, start, page->objects) {
Christoph Lameter81819f02007-05-06 14:49:36 -07001139 setup_object(s, page, last);
1140 set_freepointer(s, last, p);
1141 last = p;
1142 }
1143 setup_object(s, page, last);
Christoph Lametera973e9d2008-03-01 13:40:44 -08001144 set_freepointer(s, last, NULL);
Christoph Lameter81819f02007-05-06 14:49:36 -07001145
1146 page->freelist = start;
1147 page->inuse = 0;
1148out:
Christoph Lameter81819f02007-05-06 14:49:36 -07001149 return page;
1150}
1151
1152static void __free_slab(struct kmem_cache *s, struct page *page)
1153{
Christoph Lameter834f3d12008-04-14 19:11:31 +03001154 int order = compound_order(page);
1155 int pages = 1 << order;
Christoph Lameter81819f02007-05-06 14:49:36 -07001156
Andy Whitcroft8a380822008-07-23 21:27:18 -07001157 if (unlikely(SLABDEBUG && PageSlubDebug(page))) {
Christoph Lameter81819f02007-05-06 14:49:36 -07001158 void *p;
1159
1160 slab_pad_check(s, page);
Christoph Lameter224a88b2008-04-14 19:11:31 +03001161 for_each_object(p, s, page_address(page),
1162 page->objects)
Christoph Lameter81819f02007-05-06 14:49:36 -07001163 check_object(s, page, p, 0);
Andy Whitcroft8a380822008-07-23 21:27:18 -07001164 __ClearPageSlubDebug(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001165 }
1166
1167 mod_zone_page_state(page_zone(page),
1168 (s->flags & SLAB_RECLAIM_ACCOUNT) ?
1169 NR_SLAB_RECLAIMABLE : NR_SLAB_UNRECLAIMABLE,
Pekka Enberg06428782008-01-07 23:20:27 -08001170 -pages);
Christoph Lameter81819f02007-05-06 14:49:36 -07001171
Christoph Lameter49bd5222008-04-14 18:52:18 +03001172 __ClearPageSlab(page);
1173 reset_page_mapcount(page);
Christoph Lameter834f3d12008-04-14 19:11:31 +03001174 __free_pages(page, order);
Christoph Lameter81819f02007-05-06 14:49:36 -07001175}
1176
1177static void rcu_free_slab(struct rcu_head *h)
1178{
1179 struct page *page;
1180
1181 page = container_of((struct list_head *)h, struct page, lru);
1182 __free_slab(page->slab, page);
1183}
1184
1185static void free_slab(struct kmem_cache *s, struct page *page)
1186{
1187 if (unlikely(s->flags & SLAB_DESTROY_BY_RCU)) {
1188 /*
1189 * RCU free overloads the RCU head over the LRU
1190 */
1191 struct rcu_head *head = (void *)&page->lru;
1192
1193 call_rcu(head, rcu_free_slab);
1194 } else
1195 __free_slab(s, page);
1196}
1197
1198static void discard_slab(struct kmem_cache *s, struct page *page)
1199{
Christoph Lameter205ab992008-04-14 19:11:40 +03001200 dec_slabs_node(s, page_to_nid(page), page->objects);
Christoph Lameter81819f02007-05-06 14:49:36 -07001201 free_slab(s, page);
1202}
1203
1204/*
1205 * Per slab locking using the pagelock
1206 */
1207static __always_inline void slab_lock(struct page *page)
1208{
1209 bit_spin_lock(PG_locked, &page->flags);
1210}
1211
1212static __always_inline void slab_unlock(struct page *page)
1213{
Nick Piggina76d3542008-01-07 23:20:27 -08001214 __bit_spin_unlock(PG_locked, &page->flags);
Christoph Lameter81819f02007-05-06 14:49:36 -07001215}
1216
1217static __always_inline int slab_trylock(struct page *page)
1218{
1219 int rc = 1;
1220
1221 rc = bit_spin_trylock(PG_locked, &page->flags);
1222 return rc;
1223}
1224
1225/*
1226 * Management of partially allocated slabs
1227 */
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001228static void add_partial(struct kmem_cache_node *n,
1229 struct page *page, int tail)
Christoph Lameter81819f02007-05-06 14:49:36 -07001230{
Christoph Lametere95eed52007-05-06 14:49:44 -07001231 spin_lock(&n->list_lock);
1232 n->nr_partial++;
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001233 if (tail)
1234 list_add_tail(&page->lru, &n->partial);
1235 else
1236 list_add(&page->lru, &n->partial);
Christoph Lameter81819f02007-05-06 14:49:36 -07001237 spin_unlock(&n->list_lock);
1238}
1239
Christoph Lameter0121c6192008-04-29 16:11:12 -07001240static void remove_partial(struct kmem_cache *s, struct page *page)
Christoph Lameter81819f02007-05-06 14:49:36 -07001241{
1242 struct kmem_cache_node *n = get_node(s, page_to_nid(page));
1243
1244 spin_lock(&n->list_lock);
1245 list_del(&page->lru);
1246 n->nr_partial--;
1247 spin_unlock(&n->list_lock);
1248}
1249
1250/*
Christoph Lameter672bba32007-05-09 02:32:39 -07001251 * Lock slab and remove from the partial list.
Christoph Lameter81819f02007-05-06 14:49:36 -07001252 *
Christoph Lameter672bba32007-05-09 02:32:39 -07001253 * Must hold list_lock.
Christoph Lameter81819f02007-05-06 14:49:36 -07001254 */
Christoph Lameter0121c6192008-04-29 16:11:12 -07001255static inline int lock_and_freeze_slab(struct kmem_cache_node *n,
1256 struct page *page)
Christoph Lameter81819f02007-05-06 14:49:36 -07001257{
1258 if (slab_trylock(page)) {
1259 list_del(&page->lru);
1260 n->nr_partial--;
Andy Whitcroft8a380822008-07-23 21:27:18 -07001261 __SetPageSlubFrozen(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001262 return 1;
1263 }
1264 return 0;
1265}
1266
1267/*
Christoph Lameter672bba32007-05-09 02:32:39 -07001268 * Try to allocate a partial slab from a specific node.
Christoph Lameter81819f02007-05-06 14:49:36 -07001269 */
1270static struct page *get_partial_node(struct kmem_cache_node *n)
1271{
1272 struct page *page;
1273
1274 /*
1275 * Racy check. If we mistakenly see no partial slabs then we
1276 * just allocate an empty slab. If we mistakenly try to get a
Christoph Lameter672bba32007-05-09 02:32:39 -07001277 * partial slab and there is none available then get_partials()
1278 * will return NULL.
Christoph Lameter81819f02007-05-06 14:49:36 -07001279 */
1280 if (!n || !n->nr_partial)
1281 return NULL;
1282
1283 spin_lock(&n->list_lock);
1284 list_for_each_entry(page, &n->partial, lru)
Christoph Lameter4b6f0752007-05-16 22:10:53 -07001285 if (lock_and_freeze_slab(n, page))
Christoph Lameter81819f02007-05-06 14:49:36 -07001286 goto out;
1287 page = NULL;
1288out:
1289 spin_unlock(&n->list_lock);
1290 return page;
1291}
1292
1293/*
Christoph Lameter672bba32007-05-09 02:32:39 -07001294 * Get a page from somewhere. Search in increasing NUMA distances.
Christoph Lameter81819f02007-05-06 14:49:36 -07001295 */
1296static struct page *get_any_partial(struct kmem_cache *s, gfp_t flags)
1297{
1298#ifdef CONFIG_NUMA
1299 struct zonelist *zonelist;
Mel Gormandd1a2392008-04-28 02:12:17 -07001300 struct zoneref *z;
Mel Gorman54a6eb52008-04-28 02:12:16 -07001301 struct zone *zone;
1302 enum zone_type high_zoneidx = gfp_zone(flags);
Christoph Lameter81819f02007-05-06 14:49:36 -07001303 struct page *page;
1304
1305 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07001306 * The defrag ratio allows a configuration of the tradeoffs between
1307 * inter node defragmentation and node local allocations. A lower
1308 * defrag_ratio increases the tendency to do local allocations
1309 * instead of attempting to obtain partial slabs from other nodes.
Christoph Lameter81819f02007-05-06 14:49:36 -07001310 *
Christoph Lameter672bba32007-05-09 02:32:39 -07001311 * If the defrag_ratio is set to 0 then kmalloc() always
1312 * returns node local objects. If the ratio is higher then kmalloc()
1313 * may return off node objects because partial slabs are obtained
1314 * from other nodes and filled up.
Christoph Lameter81819f02007-05-06 14:49:36 -07001315 *
Christoph Lameter6446faa2008-02-15 23:45:26 -08001316 * If /sys/kernel/slab/xx/defrag_ratio is set to 100 (which makes
Christoph Lameter672bba32007-05-09 02:32:39 -07001317 * defrag_ratio = 1000) then every (well almost) allocation will
1318 * first attempt to defrag slab caches on other nodes. This means
1319 * scanning over all nodes to look for partial slabs which may be
1320 * expensive if we do it every time we are trying to find a slab
1321 * with available objects.
Christoph Lameter81819f02007-05-06 14:49:36 -07001322 */
Christoph Lameter98246012008-01-07 23:20:26 -08001323 if (!s->remote_node_defrag_ratio ||
1324 get_cycles() % 1024 > s->remote_node_defrag_ratio)
Christoph Lameter81819f02007-05-06 14:49:36 -07001325 return NULL;
1326
Mel Gorman0e884602008-04-28 02:12:14 -07001327 zonelist = node_zonelist(slab_node(current->mempolicy), flags);
Mel Gorman54a6eb52008-04-28 02:12:16 -07001328 for_each_zone_zonelist(zone, z, zonelist, high_zoneidx) {
Christoph Lameter81819f02007-05-06 14:49:36 -07001329 struct kmem_cache_node *n;
1330
Mel Gorman54a6eb52008-04-28 02:12:16 -07001331 n = get_node(s, zone_to_nid(zone));
Christoph Lameter81819f02007-05-06 14:49:36 -07001332
Mel Gorman54a6eb52008-04-28 02:12:16 -07001333 if (n && cpuset_zone_allowed_hardwall(zone, flags) &&
Pekka Enberg5595cff2008-08-05 09:28:47 +03001334 n->nr_partial > n->min_partial) {
Christoph Lameter81819f02007-05-06 14:49:36 -07001335 page = get_partial_node(n);
1336 if (page)
1337 return page;
1338 }
1339 }
1340#endif
1341 return NULL;
1342}
1343
1344/*
1345 * Get a partial page, lock it and return it.
1346 */
1347static struct page *get_partial(struct kmem_cache *s, gfp_t flags, int node)
1348{
1349 struct page *page;
1350 int searchnode = (node == -1) ? numa_node_id() : node;
1351
1352 page = get_partial_node(get_node(s, searchnode));
1353 if (page || (flags & __GFP_THISNODE))
1354 return page;
1355
1356 return get_any_partial(s, flags);
1357}
1358
1359/*
1360 * Move a page back to the lists.
1361 *
1362 * Must be called with the slab lock held.
1363 *
1364 * On exit the slab lock will have been dropped.
1365 */
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001366static void unfreeze_slab(struct kmem_cache *s, struct page *page, int tail)
Christoph Lameter81819f02007-05-06 14:49:36 -07001367{
Christoph Lametere95eed52007-05-06 14:49:44 -07001368 struct kmem_cache_node *n = get_node(s, page_to_nid(page));
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001369 struct kmem_cache_cpu *c = get_cpu_slab(s, smp_processor_id());
Christoph Lametere95eed52007-05-06 14:49:44 -07001370
Andy Whitcroft8a380822008-07-23 21:27:18 -07001371 __ClearPageSlubFrozen(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001372 if (page->inuse) {
Christoph Lametere95eed52007-05-06 14:49:44 -07001373
Christoph Lametera973e9d2008-03-01 13:40:44 -08001374 if (page->freelist) {
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001375 add_partial(n, page, tail);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001376 stat(c, tail ? DEACTIVATE_TO_TAIL : DEACTIVATE_TO_HEAD);
1377 } else {
1378 stat(c, DEACTIVATE_FULL);
Andy Whitcroft8a380822008-07-23 21:27:18 -07001379 if (SLABDEBUG && PageSlubDebug(page) &&
1380 (s->flags & SLAB_STORE_USER))
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001381 add_full(n, page);
1382 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001383 slab_unlock(page);
1384 } else {
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001385 stat(c, DEACTIVATE_EMPTY);
Pekka Enberg5595cff2008-08-05 09:28:47 +03001386 if (n->nr_partial < n->min_partial) {
Christoph Lametere95eed52007-05-06 14:49:44 -07001387 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07001388 * Adding an empty slab to the partial slabs in order
1389 * to avoid page allocator overhead. This slab needs
1390 * to come after the other slabs with objects in
Christoph Lameter6446faa2008-02-15 23:45:26 -08001391 * so that the others get filled first. That way the
1392 * size of the partial list stays small.
1393 *
Christoph Lameter0121c6192008-04-29 16:11:12 -07001394 * kmem_cache_shrink can reclaim any empty slabs from
1395 * the partial list.
Christoph Lametere95eed52007-05-06 14:49:44 -07001396 */
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001397 add_partial(n, page, 1);
Christoph Lametere95eed52007-05-06 14:49:44 -07001398 slab_unlock(page);
1399 } else {
1400 slab_unlock(page);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001401 stat(get_cpu_slab(s, raw_smp_processor_id()), FREE_SLAB);
Christoph Lametere95eed52007-05-06 14:49:44 -07001402 discard_slab(s, page);
1403 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001404 }
1405}
1406
1407/*
1408 * Remove the cpu slab
1409 */
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001410static void deactivate_slab(struct kmem_cache *s, struct kmem_cache_cpu *c)
Christoph Lameter81819f02007-05-06 14:49:36 -07001411{
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001412 struct page *page = c->page;
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001413 int tail = 1;
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001414
Christoph Lameterb773ad72008-03-04 11:10:17 -08001415 if (page->freelist)
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001416 stat(c, DEACTIVATE_REMOTE_FREES);
Christoph Lameter894b8782007-05-10 03:15:16 -07001417 /*
Christoph Lameter6446faa2008-02-15 23:45:26 -08001418 * Merge cpu freelist into slab freelist. Typically we get here
Christoph Lameter894b8782007-05-10 03:15:16 -07001419 * because both freelists are empty. So this is unlikely
1420 * to occur.
1421 */
Christoph Lametera973e9d2008-03-01 13:40:44 -08001422 while (unlikely(c->freelist)) {
Christoph Lameter894b8782007-05-10 03:15:16 -07001423 void **object;
1424
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001425 tail = 0; /* Hot objects. Put the slab first */
1426
Christoph Lameter894b8782007-05-10 03:15:16 -07001427 /* Retrieve object from cpu_freelist */
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001428 object = c->freelist;
Christoph Lameterb3fba8d2007-10-16 01:26:06 -07001429 c->freelist = c->freelist[c->offset];
Christoph Lameter894b8782007-05-10 03:15:16 -07001430
1431 /* And put onto the regular freelist */
Christoph Lameterb3fba8d2007-10-16 01:26:06 -07001432 object[c->offset] = page->freelist;
Christoph Lameter894b8782007-05-10 03:15:16 -07001433 page->freelist = object;
1434 page->inuse--;
1435 }
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001436 c->page = NULL;
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001437 unfreeze_slab(s, page, tail);
Christoph Lameter81819f02007-05-06 14:49:36 -07001438}
1439
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001440static inline void flush_slab(struct kmem_cache *s, struct kmem_cache_cpu *c)
Christoph Lameter81819f02007-05-06 14:49:36 -07001441{
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001442 stat(c, CPUSLAB_FLUSH);
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001443 slab_lock(c->page);
1444 deactivate_slab(s, c);
Christoph Lameter81819f02007-05-06 14:49:36 -07001445}
1446
1447/*
1448 * Flush cpu slab.
Christoph Lameter6446faa2008-02-15 23:45:26 -08001449 *
Christoph Lameter81819f02007-05-06 14:49:36 -07001450 * Called from IPI handler with interrupts disabled.
1451 */
Christoph Lameter0c710012007-07-17 04:03:24 -07001452static inline void __flush_cpu_slab(struct kmem_cache *s, int cpu)
Christoph Lameter81819f02007-05-06 14:49:36 -07001453{
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001454 struct kmem_cache_cpu *c = get_cpu_slab(s, cpu);
Christoph Lameter81819f02007-05-06 14:49:36 -07001455
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001456 if (likely(c && c->page))
1457 flush_slab(s, c);
Christoph Lameter81819f02007-05-06 14:49:36 -07001458}
1459
1460static void flush_cpu_slab(void *d)
1461{
1462 struct kmem_cache *s = d;
Christoph Lameter81819f02007-05-06 14:49:36 -07001463
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001464 __flush_cpu_slab(s, smp_processor_id());
Christoph Lameter81819f02007-05-06 14:49:36 -07001465}
1466
1467static void flush_all(struct kmem_cache *s)
1468{
Jens Axboe15c8b6c2008-05-09 09:39:44 +02001469 on_each_cpu(flush_cpu_slab, s, 1);
Christoph Lameter81819f02007-05-06 14:49:36 -07001470}
1471
1472/*
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001473 * Check if the objects in a per cpu structure fit numa
1474 * locality expectations.
1475 */
1476static inline int node_match(struct kmem_cache_cpu *c, int node)
1477{
1478#ifdef CONFIG_NUMA
1479 if (node != -1 && c->node != node)
1480 return 0;
1481#endif
1482 return 1;
1483}
1484
1485/*
Christoph Lameter894b8782007-05-10 03:15:16 -07001486 * Slow path. The lockless freelist is empty or we need to perform
1487 * debugging duties.
Christoph Lameter81819f02007-05-06 14:49:36 -07001488 *
Christoph Lameter894b8782007-05-10 03:15:16 -07001489 * Interrupts are disabled.
Christoph Lameter81819f02007-05-06 14:49:36 -07001490 *
Christoph Lameter894b8782007-05-10 03:15:16 -07001491 * Processing is still very fast if new objects have been freed to the
1492 * regular freelist. In that case we simply take over the regular freelist
1493 * as the lockless freelist and zap the regular freelist.
Christoph Lameter81819f02007-05-06 14:49:36 -07001494 *
Christoph Lameter894b8782007-05-10 03:15:16 -07001495 * If that is not working then we fall back to the partial lists. We take the
1496 * first element of the freelist as the object to allocate now and move the
1497 * rest of the freelist to the lockless freelist.
1498 *
1499 * And if we were unable to get a new slab from the partial slab lists then
Christoph Lameter6446faa2008-02-15 23:45:26 -08001500 * we need to allocate a new slab. This is the slowest path since it involves
1501 * a call to the page allocator and the setup of a new slab.
Christoph Lameter81819f02007-05-06 14:49:36 -07001502 */
Eduard - Gabriel Munteanu35995a42008-08-19 20:43:25 +03001503static void *__slab_alloc(struct kmem_cache *s, gfp_t gfpflags, int node,
1504 unsigned long addr, struct kmem_cache_cpu *c)
Christoph Lameter81819f02007-05-06 14:49:36 -07001505{
Christoph Lameter81819f02007-05-06 14:49:36 -07001506 void **object;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001507 struct page *new;
Christoph Lameter81819f02007-05-06 14:49:36 -07001508
Linus Torvaldse72e9c22008-03-27 20:56:33 -07001509 /* We handle __GFP_ZERO in the caller */
1510 gfpflags &= ~__GFP_ZERO;
1511
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001512 if (!c->page)
Christoph Lameter81819f02007-05-06 14:49:36 -07001513 goto new_slab;
1514
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001515 slab_lock(c->page);
1516 if (unlikely(!node_match(c, node)))
Christoph Lameter81819f02007-05-06 14:49:36 -07001517 goto another_slab;
Christoph Lameter6446faa2008-02-15 23:45:26 -08001518
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001519 stat(c, ALLOC_REFILL);
Christoph Lameter6446faa2008-02-15 23:45:26 -08001520
Christoph Lameter894b8782007-05-10 03:15:16 -07001521load_freelist:
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001522 object = c->page->freelist;
Christoph Lametera973e9d2008-03-01 13:40:44 -08001523 if (unlikely(!object))
Christoph Lameter81819f02007-05-06 14:49:36 -07001524 goto another_slab;
Andy Whitcroft8a380822008-07-23 21:27:18 -07001525 if (unlikely(SLABDEBUG && PageSlubDebug(c->page)))
Christoph Lameter81819f02007-05-06 14:49:36 -07001526 goto debug;
1527
Christoph Lameterb3fba8d2007-10-16 01:26:06 -07001528 c->freelist = object[c->offset];
Christoph Lameter39b26462008-04-14 19:11:30 +03001529 c->page->inuse = c->page->objects;
Christoph Lametera973e9d2008-03-01 13:40:44 -08001530 c->page->freelist = NULL;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001531 c->node = page_to_nid(c->page);
Christoph Lameter1f842602008-01-07 23:20:30 -08001532unlock_out:
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001533 slab_unlock(c->page);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001534 stat(c, ALLOC_SLOWPATH);
Christoph Lameter81819f02007-05-06 14:49:36 -07001535 return object;
1536
1537another_slab:
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001538 deactivate_slab(s, c);
Christoph Lameter81819f02007-05-06 14:49:36 -07001539
1540new_slab:
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001541 new = get_partial(s, gfpflags, node);
1542 if (new) {
1543 c->page = new;
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001544 stat(c, ALLOC_FROM_PARTIAL);
Christoph Lameter894b8782007-05-10 03:15:16 -07001545 goto load_freelist;
Christoph Lameter81819f02007-05-06 14:49:36 -07001546 }
1547
Christoph Lameterb811c202007-10-16 23:25:51 -07001548 if (gfpflags & __GFP_WAIT)
1549 local_irq_enable();
1550
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001551 new = new_slab(s, gfpflags, node);
Christoph Lameterb811c202007-10-16 23:25:51 -07001552
1553 if (gfpflags & __GFP_WAIT)
1554 local_irq_disable();
1555
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001556 if (new) {
1557 c = get_cpu_slab(s, smp_processor_id());
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001558 stat(c, ALLOC_SLAB);
Christoph Lameter05aa3452007-11-05 11:31:58 -08001559 if (c->page)
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001560 flush_slab(s, c);
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001561 slab_lock(new);
Andy Whitcroft8a380822008-07-23 21:27:18 -07001562 __SetPageSlubFrozen(new);
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001563 c->page = new;
Christoph Lameter4b6f0752007-05-16 22:10:53 -07001564 goto load_freelist;
Christoph Lameter81819f02007-05-06 14:49:36 -07001565 }
Christoph Lameter71c7a062008-02-14 14:28:01 -08001566 return NULL;
Christoph Lameter81819f02007-05-06 14:49:36 -07001567debug:
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001568 if (!alloc_debug_processing(s, c->page, object, addr))
Christoph Lameter81819f02007-05-06 14:49:36 -07001569 goto another_slab;
Christoph Lameter894b8782007-05-10 03:15:16 -07001570
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001571 c->page->inuse++;
Christoph Lameterb3fba8d2007-10-16 01:26:06 -07001572 c->page->freelist = object[c->offset];
Christoph Lameteree3c72a2007-10-16 01:26:07 -07001573 c->node = -1;
Christoph Lameter1f842602008-01-07 23:20:30 -08001574 goto unlock_out;
Christoph Lameter894b8782007-05-10 03:15:16 -07001575}
1576
1577/*
1578 * Inlined fastpath so that allocation functions (kmalloc, kmem_cache_alloc)
1579 * have the fastpath folded into their functions. So no function call
1580 * overhead for requests that can be satisfied on the fastpath.
1581 *
1582 * The fastpath works by first checking if the lockless freelist can be used.
1583 * If not then __slab_alloc is called for slow processing.
1584 *
1585 * Otherwise we can simply pick the next object from the lockless free list.
1586 */
Pekka Enberg06428782008-01-07 23:20:27 -08001587static __always_inline void *slab_alloc(struct kmem_cache *s,
Eduard - Gabriel Munteanu35995a42008-08-19 20:43:25 +03001588 gfp_t gfpflags, int node, unsigned long addr)
Christoph Lameter894b8782007-05-10 03:15:16 -07001589{
Christoph Lameter894b8782007-05-10 03:15:16 -07001590 void **object;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001591 struct kmem_cache_cpu *c;
Christoph Lameter1f842602008-01-07 23:20:30 -08001592 unsigned long flags;
Dmitry Adamushkobdb21922008-07-10 22:21:58 +02001593 unsigned int objsize;
Christoph Lameter1f842602008-01-07 23:20:30 -08001594
Christoph Lameter894b8782007-05-10 03:15:16 -07001595 local_irq_save(flags);
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001596 c = get_cpu_slab(s, smp_processor_id());
Dmitry Adamushkobdb21922008-07-10 22:21:58 +02001597 objsize = c->objsize;
Christoph Lametera973e9d2008-03-01 13:40:44 -08001598 if (unlikely(!c->freelist || !node_match(c, node)))
Christoph Lameter894b8782007-05-10 03:15:16 -07001599
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001600 object = __slab_alloc(s, gfpflags, node, addr, c);
Christoph Lameter894b8782007-05-10 03:15:16 -07001601
1602 else {
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001603 object = c->freelist;
Christoph Lameterb3fba8d2007-10-16 01:26:06 -07001604 c->freelist = object[c->offset];
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001605 stat(c, ALLOC_FASTPATH);
Christoph Lameter894b8782007-05-10 03:15:16 -07001606 }
1607 local_irq_restore(flags);
Christoph Lameterd07dbea2007-07-17 04:03:23 -07001608
1609 if (unlikely((gfpflags & __GFP_ZERO) && object))
Dmitry Adamushkobdb21922008-07-10 22:21:58 +02001610 memset(object, 0, objsize);
Christoph Lameterd07dbea2007-07-17 04:03:23 -07001611
Christoph Lameter894b8782007-05-10 03:15:16 -07001612 return object;
Christoph Lameter81819f02007-05-06 14:49:36 -07001613}
1614
1615void *kmem_cache_alloc(struct kmem_cache *s, gfp_t gfpflags)
1616{
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03001617 void *ret = slab_alloc(s, gfpflags, -1, _RET_IP_);
1618
1619 kmemtrace_mark_alloc(KMEMTRACE_TYPE_CACHE, _RET_IP_, ret,
1620 s->objsize, s->size, gfpflags);
1621
1622 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07001623}
1624EXPORT_SYMBOL(kmem_cache_alloc);
1625
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03001626#ifdef CONFIG_KMEMTRACE
1627void *kmem_cache_alloc_notrace(struct kmem_cache *s, gfp_t gfpflags)
1628{
1629 return slab_alloc(s, gfpflags, -1, _RET_IP_);
1630}
1631EXPORT_SYMBOL(kmem_cache_alloc_notrace);
1632#endif
1633
Christoph Lameter81819f02007-05-06 14:49:36 -07001634#ifdef CONFIG_NUMA
1635void *kmem_cache_alloc_node(struct kmem_cache *s, gfp_t gfpflags, int node)
1636{
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03001637 void *ret = slab_alloc(s, gfpflags, node, _RET_IP_);
1638
1639 kmemtrace_mark_alloc_node(KMEMTRACE_TYPE_CACHE, _RET_IP_, ret,
1640 s->objsize, s->size, gfpflags, node);
1641
1642 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07001643}
1644EXPORT_SYMBOL(kmem_cache_alloc_node);
1645#endif
1646
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03001647#ifdef CONFIG_KMEMTRACE
1648void *kmem_cache_alloc_node_notrace(struct kmem_cache *s,
1649 gfp_t gfpflags,
1650 int node)
1651{
1652 return slab_alloc(s, gfpflags, node, _RET_IP_);
1653}
1654EXPORT_SYMBOL(kmem_cache_alloc_node_notrace);
1655#endif
1656
Christoph Lameter81819f02007-05-06 14:49:36 -07001657/*
Christoph Lameter894b8782007-05-10 03:15:16 -07001658 * Slow patch handling. This may still be called frequently since objects
1659 * have a longer lifetime than the cpu slabs in most processing loads.
Christoph Lameter81819f02007-05-06 14:49:36 -07001660 *
Christoph Lameter894b8782007-05-10 03:15:16 -07001661 * So we still attempt to reduce cache line usage. Just take the slab
1662 * lock and free the item. If there is no additional partial page
1663 * handling required then we can return immediately.
Christoph Lameter81819f02007-05-06 14:49:36 -07001664 */
Christoph Lameter894b8782007-05-10 03:15:16 -07001665static void __slab_free(struct kmem_cache *s, struct page *page,
Eduard - Gabriel Munteanu35995a42008-08-19 20:43:25 +03001666 void *x, unsigned long addr, unsigned int offset)
Christoph Lameter81819f02007-05-06 14:49:36 -07001667{
1668 void *prior;
1669 void **object = (void *)x;
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001670 struct kmem_cache_cpu *c;
Christoph Lameter81819f02007-05-06 14:49:36 -07001671
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001672 c = get_cpu_slab(s, raw_smp_processor_id());
1673 stat(c, FREE_SLOWPATH);
Christoph Lameter81819f02007-05-06 14:49:36 -07001674 slab_lock(page);
1675
Andy Whitcroft8a380822008-07-23 21:27:18 -07001676 if (unlikely(SLABDEBUG && PageSlubDebug(page)))
Christoph Lameter81819f02007-05-06 14:49:36 -07001677 goto debug;
Christoph Lameter6446faa2008-02-15 23:45:26 -08001678
Christoph Lameter81819f02007-05-06 14:49:36 -07001679checks_ok:
Christoph Lameterb3fba8d2007-10-16 01:26:06 -07001680 prior = object[offset] = page->freelist;
Christoph Lameter81819f02007-05-06 14:49:36 -07001681 page->freelist = object;
1682 page->inuse--;
1683
Andy Whitcroft8a380822008-07-23 21:27:18 -07001684 if (unlikely(PageSlubFrozen(page))) {
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001685 stat(c, FREE_FROZEN);
Christoph Lameter81819f02007-05-06 14:49:36 -07001686 goto out_unlock;
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001687 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001688
1689 if (unlikely(!page->inuse))
1690 goto slab_empty;
1691
1692 /*
Christoph Lameter6446faa2008-02-15 23:45:26 -08001693 * Objects left in the slab. If it was not on the partial list before
Christoph Lameter81819f02007-05-06 14:49:36 -07001694 * then add it.
1695 */
Christoph Lametera973e9d2008-03-01 13:40:44 -08001696 if (unlikely(!prior)) {
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001697 add_partial(get_node(s, page_to_nid(page)), page, 1);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001698 stat(c, FREE_ADD_PARTIAL);
1699 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001700
1701out_unlock:
1702 slab_unlock(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001703 return;
1704
1705slab_empty:
Christoph Lametera973e9d2008-03-01 13:40:44 -08001706 if (prior) {
Christoph Lameter81819f02007-05-06 14:49:36 -07001707 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07001708 * Slab still on the partial list.
Christoph Lameter81819f02007-05-06 14:49:36 -07001709 */
1710 remove_partial(s, page);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001711 stat(c, FREE_REMOVE_PARTIAL);
1712 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001713 slab_unlock(page);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001714 stat(c, FREE_SLAB);
Christoph Lameter81819f02007-05-06 14:49:36 -07001715 discard_slab(s, page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001716 return;
1717
1718debug:
Christoph Lameter3ec09742007-05-16 22:11:00 -07001719 if (!free_debug_processing(s, page, x, addr))
Christoph Lameter77c5e2d2007-05-06 14:49:42 -07001720 goto out_unlock;
Christoph Lameter77c5e2d2007-05-06 14:49:42 -07001721 goto checks_ok;
Christoph Lameter81819f02007-05-06 14:49:36 -07001722}
1723
Christoph Lameter894b8782007-05-10 03:15:16 -07001724/*
1725 * Fastpath with forced inlining to produce a kfree and kmem_cache_free that
1726 * can perform fastpath freeing without additional function calls.
1727 *
1728 * The fastpath is only possible if we are freeing to the current cpu slab
1729 * of this processor. This typically the case if we have just allocated
1730 * the item before.
1731 *
1732 * If fastpath is not possible then fall back to __slab_free where we deal
1733 * with all sorts of special processing.
1734 */
Pekka Enberg06428782008-01-07 23:20:27 -08001735static __always_inline void slab_free(struct kmem_cache *s,
Eduard - Gabriel Munteanu35995a42008-08-19 20:43:25 +03001736 struct page *page, void *x, unsigned long addr)
Christoph Lameter894b8782007-05-10 03:15:16 -07001737{
1738 void **object = (void *)x;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001739 struct kmem_cache_cpu *c;
Christoph Lameter1f842602008-01-07 23:20:30 -08001740 unsigned long flags;
1741
Christoph Lameter894b8782007-05-10 03:15:16 -07001742 local_irq_save(flags);
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001743 c = get_cpu_slab(s, smp_processor_id());
Christoph Lameter27d9e4e2008-02-15 23:45:25 -08001744 debug_check_no_locks_freed(object, c->objsize);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -07001745 if (!(s->flags & SLAB_DEBUG_OBJECTS))
1746 debug_check_no_obj_freed(object, s->objsize);
Christoph Lameteree3c72a2007-10-16 01:26:07 -07001747 if (likely(page == c->page && c->node >= 0)) {
Christoph Lameterb3fba8d2007-10-16 01:26:06 -07001748 object[c->offset] = c->freelist;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001749 c->freelist = object;
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001750 stat(c, FREE_FASTPATH);
Christoph Lameter894b8782007-05-10 03:15:16 -07001751 } else
Christoph Lameterb3fba8d2007-10-16 01:26:06 -07001752 __slab_free(s, page, x, addr, c->offset);
Christoph Lameter894b8782007-05-10 03:15:16 -07001753
1754 local_irq_restore(flags);
1755}
1756
Christoph Lameter81819f02007-05-06 14:49:36 -07001757void kmem_cache_free(struct kmem_cache *s, void *x)
1758{
Christoph Lameter77c5e2d2007-05-06 14:49:42 -07001759 struct page *page;
Christoph Lameter81819f02007-05-06 14:49:36 -07001760
Christoph Lameterb49af682007-05-06 14:49:41 -07001761 page = virt_to_head_page(x);
Christoph Lameter81819f02007-05-06 14:49:36 -07001762
Eduard - Gabriel Munteanu35995a42008-08-19 20:43:25 +03001763 slab_free(s, page, x, _RET_IP_);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03001764
1765 kmemtrace_mark_free(KMEMTRACE_TYPE_CACHE, _RET_IP_, x);
Christoph Lameter81819f02007-05-06 14:49:36 -07001766}
1767EXPORT_SYMBOL(kmem_cache_free);
1768
1769/* Figure out on which slab object the object resides */
1770static struct page *get_object_page(const void *x)
1771{
Christoph Lameterb49af682007-05-06 14:49:41 -07001772 struct page *page = virt_to_head_page(x);
Christoph Lameter81819f02007-05-06 14:49:36 -07001773
1774 if (!PageSlab(page))
1775 return NULL;
1776
1777 return page;
1778}
1779
1780/*
Christoph Lameter672bba32007-05-09 02:32:39 -07001781 * Object placement in a slab is made very easy because we always start at
1782 * offset 0. If we tune the size of the object to the alignment then we can
1783 * get the required alignment by putting one properly sized object after
1784 * another.
Christoph Lameter81819f02007-05-06 14:49:36 -07001785 *
1786 * Notice that the allocation order determines the sizes of the per cpu
1787 * caches. Each processor has always one slab available for allocations.
1788 * Increasing the allocation order reduces the number of times that slabs
Christoph Lameter672bba32007-05-09 02:32:39 -07001789 * must be moved on and off the partial lists and is therefore a factor in
Christoph Lameter81819f02007-05-06 14:49:36 -07001790 * locking overhead.
Christoph Lameter81819f02007-05-06 14:49:36 -07001791 */
1792
1793/*
1794 * Mininum / Maximum order of slab pages. This influences locking overhead
1795 * and slab fragmentation. A higher order reduces the number of partial slabs
1796 * and increases the number of allocations possible without having to
1797 * take the list_lock.
1798 */
1799static int slub_min_order;
Christoph Lameter114e9e82008-04-14 19:11:41 +03001800static int slub_max_order = PAGE_ALLOC_COSTLY_ORDER;
Christoph Lameter9b2cd502008-04-14 19:11:41 +03001801static int slub_min_objects;
Christoph Lameter81819f02007-05-06 14:49:36 -07001802
1803/*
1804 * Merge control. If this is set then no merging of slab caches will occur.
Christoph Lameter672bba32007-05-09 02:32:39 -07001805 * (Could be removed. This was introduced to pacify the merge skeptics.)
Christoph Lameter81819f02007-05-06 14:49:36 -07001806 */
1807static int slub_nomerge;
1808
1809/*
Christoph Lameter81819f02007-05-06 14:49:36 -07001810 * Calculate the order of allocation given an slab object size.
1811 *
Christoph Lameter672bba32007-05-09 02:32:39 -07001812 * The order of allocation has significant impact on performance and other
1813 * system components. Generally order 0 allocations should be preferred since
1814 * order 0 does not cause fragmentation in the page allocator. Larger objects
1815 * be problematic to put into order 0 slabs because there may be too much
Christoph Lameterc124f5b2008-04-14 19:13:29 +03001816 * unused space left. We go to a higher order if more than 1/16th of the slab
Christoph Lameter672bba32007-05-09 02:32:39 -07001817 * would be wasted.
Christoph Lameter81819f02007-05-06 14:49:36 -07001818 *
Christoph Lameter672bba32007-05-09 02:32:39 -07001819 * In order to reach satisfactory performance we must ensure that a minimum
1820 * number of objects is in one slab. Otherwise we may generate too much
1821 * activity on the partial lists which requires taking the list_lock. This is
1822 * less a concern for large slabs though which are rarely used.
Christoph Lameter81819f02007-05-06 14:49:36 -07001823 *
Christoph Lameter672bba32007-05-09 02:32:39 -07001824 * slub_max_order specifies the order where we begin to stop considering the
1825 * number of objects in a slab as critical. If we reach slub_max_order then
1826 * we try to keep the page order as low as possible. So we accept more waste
1827 * of space in favor of a small page order.
1828 *
1829 * Higher order allocations also allow the placement of more objects in a
1830 * slab and thereby reduce object handling overhead. If the user has
1831 * requested a higher mininum order then we start with that one instead of
1832 * the smallest order which will fit the object.
Christoph Lameter81819f02007-05-06 14:49:36 -07001833 */
Christoph Lameter5e6d4442007-05-09 02:32:46 -07001834static inline int slab_order(int size, int min_objects,
1835 int max_order, int fract_leftover)
Christoph Lameter81819f02007-05-06 14:49:36 -07001836{
1837 int order;
1838 int rem;
Christoph Lameter6300ea72007-07-17 04:03:20 -07001839 int min_order = slub_min_order;
Christoph Lameter81819f02007-05-06 14:49:36 -07001840
Christoph Lameter39b26462008-04-14 19:11:30 +03001841 if ((PAGE_SIZE << min_order) / size > 65535)
1842 return get_order(size * 65535) - 1;
1843
Christoph Lameter6300ea72007-07-17 04:03:20 -07001844 for (order = max(min_order,
Christoph Lameter5e6d4442007-05-09 02:32:46 -07001845 fls(min_objects * size - 1) - PAGE_SHIFT);
1846 order <= max_order; order++) {
1847
Christoph Lameter81819f02007-05-06 14:49:36 -07001848 unsigned long slab_size = PAGE_SIZE << order;
1849
Christoph Lameter5e6d4442007-05-09 02:32:46 -07001850 if (slab_size < min_objects * size)
Christoph Lameter81819f02007-05-06 14:49:36 -07001851 continue;
1852
Christoph Lameter81819f02007-05-06 14:49:36 -07001853 rem = slab_size % size;
1854
Christoph Lameter5e6d4442007-05-09 02:32:46 -07001855 if (rem <= slab_size / fract_leftover)
Christoph Lameter81819f02007-05-06 14:49:36 -07001856 break;
1857
1858 }
Christoph Lameter672bba32007-05-09 02:32:39 -07001859
Christoph Lameter81819f02007-05-06 14:49:36 -07001860 return order;
1861}
1862
Christoph Lameter5e6d4442007-05-09 02:32:46 -07001863static inline int calculate_order(int size)
1864{
1865 int order;
1866 int min_objects;
1867 int fraction;
1868
1869 /*
1870 * Attempt to find best configuration for a slab. This
1871 * works by first attempting to generate a layout with
1872 * the best configuration and backing off gradually.
1873 *
1874 * First we reduce the acceptable waste in a slab. Then
1875 * we reduce the minimum objects required in a slab.
1876 */
1877 min_objects = slub_min_objects;
Christoph Lameter9b2cd502008-04-14 19:11:41 +03001878 if (!min_objects)
1879 min_objects = 4 * (fls(nr_cpu_ids) + 1);
Christoph Lameter5e6d4442007-05-09 02:32:46 -07001880 while (min_objects > 1) {
Christoph Lameterc124f5b2008-04-14 19:13:29 +03001881 fraction = 16;
Christoph Lameter5e6d4442007-05-09 02:32:46 -07001882 while (fraction >= 4) {
1883 order = slab_order(size, min_objects,
1884 slub_max_order, fraction);
1885 if (order <= slub_max_order)
1886 return order;
1887 fraction /= 2;
1888 }
1889 min_objects /= 2;
1890 }
1891
1892 /*
1893 * We were unable to place multiple objects in a slab. Now
1894 * lets see if we can place a single object there.
1895 */
1896 order = slab_order(size, 1, slub_max_order, 1);
1897 if (order <= slub_max_order)
1898 return order;
1899
1900 /*
1901 * Doh this slab cannot be placed using slub_max_order.
1902 */
1903 order = slab_order(size, 1, MAX_ORDER, 1);
1904 if (order <= MAX_ORDER)
1905 return order;
1906 return -ENOSYS;
1907}
1908
Christoph Lameter81819f02007-05-06 14:49:36 -07001909/*
Christoph Lameter672bba32007-05-09 02:32:39 -07001910 * Figure out what the alignment of the objects will be.
Christoph Lameter81819f02007-05-06 14:49:36 -07001911 */
1912static unsigned long calculate_alignment(unsigned long flags,
1913 unsigned long align, unsigned long size)
1914{
1915 /*
Christoph Lameter6446faa2008-02-15 23:45:26 -08001916 * If the user wants hardware cache aligned objects then follow that
1917 * suggestion if the object is sufficiently large.
Christoph Lameter81819f02007-05-06 14:49:36 -07001918 *
Christoph Lameter6446faa2008-02-15 23:45:26 -08001919 * The hardware cache alignment cannot override the specified
1920 * alignment though. If that is greater then use it.
Christoph Lameter81819f02007-05-06 14:49:36 -07001921 */
Nick Pigginb6210382008-03-05 14:05:56 -08001922 if (flags & SLAB_HWCACHE_ALIGN) {
1923 unsigned long ralign = cache_line_size();
1924 while (size <= ralign / 2)
1925 ralign /= 2;
1926 align = max(align, ralign);
1927 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001928
1929 if (align < ARCH_SLAB_MINALIGN)
Nick Pigginb6210382008-03-05 14:05:56 -08001930 align = ARCH_SLAB_MINALIGN;
Christoph Lameter81819f02007-05-06 14:49:36 -07001931
1932 return ALIGN(align, sizeof(void *));
1933}
1934
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001935static void init_kmem_cache_cpu(struct kmem_cache *s,
1936 struct kmem_cache_cpu *c)
1937{
1938 c->page = NULL;
Christoph Lametera973e9d2008-03-01 13:40:44 -08001939 c->freelist = NULL;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001940 c->node = 0;
Christoph Lameter42a9fdb2007-10-16 01:26:09 -07001941 c->offset = s->offset / sizeof(void *);
1942 c->objsize = s->objsize;
Pekka Enberg62f75532008-04-14 18:50:44 +03001943#ifdef CONFIG_SLUB_STATS
1944 memset(c->stat, 0, NR_SLUB_STAT_ITEMS * sizeof(unsigned));
1945#endif
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001946}
1947
Pekka Enberg5595cff2008-08-05 09:28:47 +03001948static void
1949init_kmem_cache_node(struct kmem_cache_node *n, struct kmem_cache *s)
Christoph Lameter81819f02007-05-06 14:49:36 -07001950{
1951 n->nr_partial = 0;
Pekka Enberg5595cff2008-08-05 09:28:47 +03001952
1953 /*
1954 * The larger the object size is, the more pages we want on the partial
1955 * list to avoid pounding the page allocator excessively.
1956 */
1957 n->min_partial = ilog2(s->size);
1958 if (n->min_partial < MIN_PARTIAL)
1959 n->min_partial = MIN_PARTIAL;
1960 else if (n->min_partial > MAX_PARTIAL)
1961 n->min_partial = MAX_PARTIAL;
1962
Christoph Lameter81819f02007-05-06 14:49:36 -07001963 spin_lock_init(&n->list_lock);
1964 INIT_LIST_HEAD(&n->partial);
Christoph Lameter8ab13722007-07-17 04:03:32 -07001965#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter0f389ec2008-04-14 18:53:02 +03001966 atomic_long_set(&n->nr_slabs, 0);
Salman Qazi02b71b72008-09-11 12:25:41 -07001967 atomic_long_set(&n->total_objects, 0);
Christoph Lameter643b1132007-05-06 14:49:42 -07001968 INIT_LIST_HEAD(&n->full);
Christoph Lameter8ab13722007-07-17 04:03:32 -07001969#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07001970}
1971
Christoph Lameter4c93c3552007-10-16 01:26:08 -07001972#ifdef CONFIG_SMP
1973/*
1974 * Per cpu array for per cpu structures.
1975 *
1976 * The per cpu array places all kmem_cache_cpu structures from one processor
1977 * close together meaning that it becomes possible that multiple per cpu
1978 * structures are contained in one cacheline. This may be particularly
1979 * beneficial for the kmalloc caches.
1980 *
1981 * A desktop system typically has around 60-80 slabs. With 100 here we are
1982 * likely able to get per cpu structures for all caches from the array defined
1983 * here. We must be able to cover all kmalloc caches during bootstrap.
1984 *
1985 * If the per cpu array is exhausted then fall back to kmalloc
1986 * of individual cachelines. No sharing is possible then.
1987 */
1988#define NR_KMEM_CACHE_CPU 100
1989
1990static DEFINE_PER_CPU(struct kmem_cache_cpu,
1991 kmem_cache_cpu)[NR_KMEM_CACHE_CPU];
1992
1993static DEFINE_PER_CPU(struct kmem_cache_cpu *, kmem_cache_cpu_free);
1994static cpumask_t kmem_cach_cpu_free_init_once = CPU_MASK_NONE;
1995
1996static struct kmem_cache_cpu *alloc_kmem_cache_cpu(struct kmem_cache *s,
1997 int cpu, gfp_t flags)
1998{
1999 struct kmem_cache_cpu *c = per_cpu(kmem_cache_cpu_free, cpu);
2000
2001 if (c)
2002 per_cpu(kmem_cache_cpu_free, cpu) =
2003 (void *)c->freelist;
2004 else {
2005 /* Table overflow: So allocate ourselves */
2006 c = kmalloc_node(
2007 ALIGN(sizeof(struct kmem_cache_cpu), cache_line_size()),
2008 flags, cpu_to_node(cpu));
2009 if (!c)
2010 return NULL;
2011 }
2012
2013 init_kmem_cache_cpu(s, c);
2014 return c;
2015}
2016
2017static void free_kmem_cache_cpu(struct kmem_cache_cpu *c, int cpu)
2018{
2019 if (c < per_cpu(kmem_cache_cpu, cpu) ||
2020 c > per_cpu(kmem_cache_cpu, cpu) + NR_KMEM_CACHE_CPU) {
2021 kfree(c);
2022 return;
2023 }
2024 c->freelist = (void *)per_cpu(kmem_cache_cpu_free, cpu);
2025 per_cpu(kmem_cache_cpu_free, cpu) = c;
2026}
2027
2028static void free_kmem_cache_cpus(struct kmem_cache *s)
2029{
2030 int cpu;
2031
2032 for_each_online_cpu(cpu) {
2033 struct kmem_cache_cpu *c = get_cpu_slab(s, cpu);
2034
2035 if (c) {
2036 s->cpu_slab[cpu] = NULL;
2037 free_kmem_cache_cpu(c, cpu);
2038 }
2039 }
2040}
2041
2042static int alloc_kmem_cache_cpus(struct kmem_cache *s, gfp_t flags)
2043{
2044 int cpu;
2045
2046 for_each_online_cpu(cpu) {
2047 struct kmem_cache_cpu *c = get_cpu_slab(s, cpu);
2048
2049 if (c)
2050 continue;
2051
2052 c = alloc_kmem_cache_cpu(s, cpu, flags);
2053 if (!c) {
2054 free_kmem_cache_cpus(s);
2055 return 0;
2056 }
2057 s->cpu_slab[cpu] = c;
2058 }
2059 return 1;
2060}
2061
2062/*
2063 * Initialize the per cpu array.
2064 */
2065static void init_alloc_cpu_cpu(int cpu)
2066{
2067 int i;
2068
2069 if (cpu_isset(cpu, kmem_cach_cpu_free_init_once))
2070 return;
2071
2072 for (i = NR_KMEM_CACHE_CPU - 1; i >= 0; i--)
2073 free_kmem_cache_cpu(&per_cpu(kmem_cache_cpu, cpu)[i], cpu);
2074
2075 cpu_set(cpu, kmem_cach_cpu_free_init_once);
2076}
2077
2078static void __init init_alloc_cpu(void)
2079{
2080 int cpu;
2081
2082 for_each_online_cpu(cpu)
2083 init_alloc_cpu_cpu(cpu);
2084 }
2085
2086#else
2087static inline void free_kmem_cache_cpus(struct kmem_cache *s) {}
2088static inline void init_alloc_cpu(void) {}
2089
2090static inline int alloc_kmem_cache_cpus(struct kmem_cache *s, gfp_t flags)
2091{
2092 init_kmem_cache_cpu(s, &s->cpu_slab);
2093 return 1;
2094}
2095#endif
2096
Christoph Lameter81819f02007-05-06 14:49:36 -07002097#ifdef CONFIG_NUMA
2098/*
2099 * No kmalloc_node yet so do it by hand. We know that this is the first
2100 * slab on the node for this slabcache. There are no concurrent accesses
2101 * possible.
2102 *
2103 * Note that this function only works on the kmalloc_node_cache
Christoph Lameter4c93c3552007-10-16 01:26:08 -07002104 * when allocating for the kmalloc_node_cache. This is used for bootstrapping
2105 * memory on a fresh node that has no slab structures yet.
Christoph Lameter81819f02007-05-06 14:49:36 -07002106 */
Adrian Bunk1cd7daa2007-10-16 01:24:18 -07002107static struct kmem_cache_node *early_kmem_cache_node_alloc(gfp_t gfpflags,
2108 int node)
Christoph Lameter81819f02007-05-06 14:49:36 -07002109{
2110 struct page *page;
2111 struct kmem_cache_node *n;
rootba84c732008-01-07 23:20:28 -08002112 unsigned long flags;
Christoph Lameter81819f02007-05-06 14:49:36 -07002113
2114 BUG_ON(kmalloc_caches->size < sizeof(struct kmem_cache_node));
2115
Christoph Lametera2f92ee2007-08-22 14:01:57 -07002116 page = new_slab(kmalloc_caches, gfpflags, node);
Christoph Lameter81819f02007-05-06 14:49:36 -07002117
2118 BUG_ON(!page);
Christoph Lametera2f92ee2007-08-22 14:01:57 -07002119 if (page_to_nid(page) != node) {
2120 printk(KERN_ERR "SLUB: Unable to allocate memory from "
2121 "node %d\n", node);
2122 printk(KERN_ERR "SLUB: Allocating a useless per node structure "
2123 "in order to be able to continue\n");
2124 }
2125
Christoph Lameter81819f02007-05-06 14:49:36 -07002126 n = page->freelist;
2127 BUG_ON(!n);
2128 page->freelist = get_freepointer(kmalloc_caches, n);
2129 page->inuse++;
2130 kmalloc_caches->node[node] = n;
Christoph Lameter8ab13722007-07-17 04:03:32 -07002131#ifdef CONFIG_SLUB_DEBUG
Christoph Lameterd45f39c2007-07-17 04:03:21 -07002132 init_object(kmalloc_caches, n, 1);
2133 init_tracking(kmalloc_caches, n);
Christoph Lameter8ab13722007-07-17 04:03:32 -07002134#endif
Pekka Enberg5595cff2008-08-05 09:28:47 +03002135 init_kmem_cache_node(n, kmalloc_caches);
Christoph Lameter205ab992008-04-14 19:11:40 +03002136 inc_slabs_node(kmalloc_caches, node, page->objects);
Christoph Lameter6446faa2008-02-15 23:45:26 -08002137
rootba84c732008-01-07 23:20:28 -08002138 /*
2139 * lockdep requires consistent irq usage for each lock
2140 * so even though there cannot be a race this early in
2141 * the boot sequence, we still disable irqs.
2142 */
2143 local_irq_save(flags);
Christoph Lameter7c2e1322008-01-07 23:20:27 -08002144 add_partial(n, page, 0);
rootba84c732008-01-07 23:20:28 -08002145 local_irq_restore(flags);
Christoph Lameter81819f02007-05-06 14:49:36 -07002146 return n;
2147}
2148
2149static void free_kmem_cache_nodes(struct kmem_cache *s)
2150{
2151 int node;
2152
Christoph Lameterf64dc582007-10-16 01:25:33 -07002153 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002154 struct kmem_cache_node *n = s->node[node];
2155 if (n && n != &s->local_node)
2156 kmem_cache_free(kmalloc_caches, n);
2157 s->node[node] = NULL;
2158 }
2159}
2160
2161static int init_kmem_cache_nodes(struct kmem_cache *s, gfp_t gfpflags)
2162{
2163 int node;
2164 int local_node;
2165
2166 if (slab_state >= UP)
2167 local_node = page_to_nid(virt_to_page(s));
2168 else
2169 local_node = 0;
2170
Christoph Lameterf64dc582007-10-16 01:25:33 -07002171 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002172 struct kmem_cache_node *n;
2173
2174 if (local_node == node)
2175 n = &s->local_node;
2176 else {
2177 if (slab_state == DOWN) {
2178 n = early_kmem_cache_node_alloc(gfpflags,
2179 node);
2180 continue;
2181 }
2182 n = kmem_cache_alloc_node(kmalloc_caches,
2183 gfpflags, node);
2184
2185 if (!n) {
2186 free_kmem_cache_nodes(s);
2187 return 0;
2188 }
2189
2190 }
2191 s->node[node] = n;
Pekka Enberg5595cff2008-08-05 09:28:47 +03002192 init_kmem_cache_node(n, s);
Christoph Lameter81819f02007-05-06 14:49:36 -07002193 }
2194 return 1;
2195}
2196#else
2197static void free_kmem_cache_nodes(struct kmem_cache *s)
2198{
2199}
2200
2201static int init_kmem_cache_nodes(struct kmem_cache *s, gfp_t gfpflags)
2202{
Pekka Enberg5595cff2008-08-05 09:28:47 +03002203 init_kmem_cache_node(&s->local_node, s);
Christoph Lameter81819f02007-05-06 14:49:36 -07002204 return 1;
2205}
2206#endif
2207
2208/*
2209 * calculate_sizes() determines the order and the distribution of data within
2210 * a slab object.
2211 */
Christoph Lameter06b285d2008-04-14 19:11:41 +03002212static int calculate_sizes(struct kmem_cache *s, int forced_order)
Christoph Lameter81819f02007-05-06 14:49:36 -07002213{
2214 unsigned long flags = s->flags;
2215 unsigned long size = s->objsize;
2216 unsigned long align = s->align;
Christoph Lameter834f3d12008-04-14 19:11:31 +03002217 int order;
Christoph Lameter81819f02007-05-06 14:49:36 -07002218
2219 /*
Christoph Lameterd8b42bf2008-02-15 23:45:25 -08002220 * Round up object size to the next word boundary. We can only
2221 * place the free pointer at word boundaries and this determines
2222 * the possible location of the free pointer.
2223 */
2224 size = ALIGN(size, sizeof(void *));
2225
2226#ifdef CONFIG_SLUB_DEBUG
2227 /*
Christoph Lameter81819f02007-05-06 14:49:36 -07002228 * Determine if we can poison the object itself. If the user of
2229 * the slab may touch the object after free or before allocation
2230 * then we should never poison the object itself.
2231 */
2232 if ((flags & SLAB_POISON) && !(flags & SLAB_DESTROY_BY_RCU) &&
Christoph Lameterc59def92007-05-16 22:10:50 -07002233 !s->ctor)
Christoph Lameter81819f02007-05-06 14:49:36 -07002234 s->flags |= __OBJECT_POISON;
2235 else
2236 s->flags &= ~__OBJECT_POISON;
2237
Christoph Lameter81819f02007-05-06 14:49:36 -07002238
2239 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07002240 * If we are Redzoning then check if there is some space between the
Christoph Lameter81819f02007-05-06 14:49:36 -07002241 * end of the object and the free pointer. If not then add an
Christoph Lameter672bba32007-05-09 02:32:39 -07002242 * additional word to have some bytes to store Redzone information.
Christoph Lameter81819f02007-05-06 14:49:36 -07002243 */
2244 if ((flags & SLAB_RED_ZONE) && size == s->objsize)
2245 size += sizeof(void *);
Christoph Lameter41ecc552007-05-09 02:32:44 -07002246#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07002247
2248 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07002249 * With that we have determined the number of bytes in actual use
2250 * by the object. This is the potential offset to the free pointer.
Christoph Lameter81819f02007-05-06 14:49:36 -07002251 */
2252 s->inuse = size;
2253
2254 if (((flags & (SLAB_DESTROY_BY_RCU | SLAB_POISON)) ||
Christoph Lameterc59def92007-05-16 22:10:50 -07002255 s->ctor)) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002256 /*
2257 * Relocate free pointer after the object if it is not
2258 * permitted to overwrite the first word of the object on
2259 * kmem_cache_free.
2260 *
2261 * This is the case if we do RCU, have a constructor or
2262 * destructor or are poisoning the objects.
2263 */
2264 s->offset = size;
2265 size += sizeof(void *);
2266 }
2267
Christoph Lameterc12b3c62007-05-23 13:57:31 -07002268#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter81819f02007-05-06 14:49:36 -07002269 if (flags & SLAB_STORE_USER)
2270 /*
2271 * Need to store information about allocs and frees after
2272 * the object.
2273 */
2274 size += 2 * sizeof(struct track);
2275
Christoph Lameterbe7b3fb2007-05-09 02:32:36 -07002276 if (flags & SLAB_RED_ZONE)
Christoph Lameter81819f02007-05-06 14:49:36 -07002277 /*
2278 * Add some empty padding so that we can catch
2279 * overwrites from earlier objects rather than let
2280 * tracking information or the free pointer be
2281 * corrupted if an user writes before the start
2282 * of the object.
2283 */
2284 size += sizeof(void *);
Christoph Lameter41ecc552007-05-09 02:32:44 -07002285#endif
Christoph Lameter672bba32007-05-09 02:32:39 -07002286
Christoph Lameter81819f02007-05-06 14:49:36 -07002287 /*
2288 * Determine the alignment based on various parameters that the
Christoph Lameter65c02d42007-05-09 02:32:35 -07002289 * user specified and the dynamic determination of cache line size
2290 * on bootup.
Christoph Lameter81819f02007-05-06 14:49:36 -07002291 */
2292 align = calculate_alignment(flags, align, s->objsize);
2293
2294 /*
2295 * SLUB stores one object immediately after another beginning from
2296 * offset 0. In order to align the objects we have to simply size
2297 * each object to conform to the alignment.
2298 */
2299 size = ALIGN(size, align);
2300 s->size = size;
Christoph Lameter06b285d2008-04-14 19:11:41 +03002301 if (forced_order >= 0)
2302 order = forced_order;
2303 else
2304 order = calculate_order(size);
Christoph Lameter81819f02007-05-06 14:49:36 -07002305
Christoph Lameter834f3d12008-04-14 19:11:31 +03002306 if (order < 0)
Christoph Lameter81819f02007-05-06 14:49:36 -07002307 return 0;
2308
Christoph Lameterb7a49f02008-02-14 14:21:32 -08002309 s->allocflags = 0;
Christoph Lameter834f3d12008-04-14 19:11:31 +03002310 if (order)
Christoph Lameterb7a49f02008-02-14 14:21:32 -08002311 s->allocflags |= __GFP_COMP;
2312
2313 if (s->flags & SLAB_CACHE_DMA)
2314 s->allocflags |= SLUB_DMA;
2315
2316 if (s->flags & SLAB_RECLAIM_ACCOUNT)
2317 s->allocflags |= __GFP_RECLAIMABLE;
2318
Christoph Lameter81819f02007-05-06 14:49:36 -07002319 /*
2320 * Determine the number of objects per slab
2321 */
Christoph Lameter834f3d12008-04-14 19:11:31 +03002322 s->oo = oo_make(order, size);
Christoph Lameter65c33762008-04-14 19:11:40 +03002323 s->min = oo_make(get_order(size), size);
Christoph Lameter205ab992008-04-14 19:11:40 +03002324 if (oo_objects(s->oo) > oo_objects(s->max))
2325 s->max = s->oo;
Christoph Lameter81819f02007-05-06 14:49:36 -07002326
Christoph Lameter834f3d12008-04-14 19:11:31 +03002327 return !!oo_objects(s->oo);
Christoph Lameter81819f02007-05-06 14:49:36 -07002328
2329}
2330
Christoph Lameter81819f02007-05-06 14:49:36 -07002331static int kmem_cache_open(struct kmem_cache *s, gfp_t gfpflags,
2332 const char *name, size_t size,
2333 size_t align, unsigned long flags,
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002334 void (*ctor)(void *))
Christoph Lameter81819f02007-05-06 14:49:36 -07002335{
2336 memset(s, 0, kmem_size);
2337 s->name = name;
2338 s->ctor = ctor;
Christoph Lameter81819f02007-05-06 14:49:36 -07002339 s->objsize = size;
Christoph Lameter81819f02007-05-06 14:49:36 -07002340 s->align = align;
Christoph Lameterba0268a2007-09-11 15:24:11 -07002341 s->flags = kmem_cache_flags(size, flags, name, ctor);
Christoph Lameter81819f02007-05-06 14:49:36 -07002342
Christoph Lameter06b285d2008-04-14 19:11:41 +03002343 if (!calculate_sizes(s, -1))
Christoph Lameter81819f02007-05-06 14:49:36 -07002344 goto error;
2345
2346 s->refcount = 1;
2347#ifdef CONFIG_NUMA
Christoph Lametere2cb96b2008-08-19 08:51:22 -05002348 s->remote_node_defrag_ratio = 1000;
Christoph Lameter81819f02007-05-06 14:49:36 -07002349#endif
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002350 if (!init_kmem_cache_nodes(s, gfpflags & ~SLUB_DMA))
2351 goto error;
Christoph Lameter81819f02007-05-06 14:49:36 -07002352
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002353 if (alloc_kmem_cache_cpus(s, gfpflags & ~SLUB_DMA))
Christoph Lameter81819f02007-05-06 14:49:36 -07002354 return 1;
Christoph Lameter4c93c3552007-10-16 01:26:08 -07002355 free_kmem_cache_nodes(s);
Christoph Lameter81819f02007-05-06 14:49:36 -07002356error:
2357 if (flags & SLAB_PANIC)
2358 panic("Cannot create slab %s size=%lu realsize=%u "
2359 "order=%u offset=%u flags=%lx\n",
Christoph Lameter834f3d12008-04-14 19:11:31 +03002360 s->name, (unsigned long)size, s->size, oo_order(s->oo),
Christoph Lameter81819f02007-05-06 14:49:36 -07002361 s->offset, flags);
2362 return 0;
2363}
Christoph Lameter81819f02007-05-06 14:49:36 -07002364
2365/*
2366 * Check if a given pointer is valid
2367 */
2368int kmem_ptr_validate(struct kmem_cache *s, const void *object)
2369{
Pekka Enberg06428782008-01-07 23:20:27 -08002370 struct page *page;
Christoph Lameter81819f02007-05-06 14:49:36 -07002371
2372 page = get_object_page(object);
2373
2374 if (!page || s != page->slab)
2375 /* No slab or wrong slab */
2376 return 0;
2377
Christoph Lameterabcd08a2007-05-09 02:32:37 -07002378 if (!check_valid_pointer(s, page, object))
Christoph Lameter81819f02007-05-06 14:49:36 -07002379 return 0;
2380
2381 /*
2382 * We could also check if the object is on the slabs freelist.
2383 * But this would be too expensive and it seems that the main
Christoph Lameter6446faa2008-02-15 23:45:26 -08002384 * purpose of kmem_ptr_valid() is to check if the object belongs
Christoph Lameter81819f02007-05-06 14:49:36 -07002385 * to a certain slab.
2386 */
2387 return 1;
2388}
2389EXPORT_SYMBOL(kmem_ptr_validate);
2390
2391/*
2392 * Determine the size of a slab object
2393 */
2394unsigned int kmem_cache_size(struct kmem_cache *s)
2395{
2396 return s->objsize;
2397}
2398EXPORT_SYMBOL(kmem_cache_size);
2399
2400const char *kmem_cache_name(struct kmem_cache *s)
2401{
2402 return s->name;
2403}
2404EXPORT_SYMBOL(kmem_cache_name);
2405
Christoph Lameter33b12c32008-04-25 12:22:43 -07002406static void list_slab_objects(struct kmem_cache *s, struct page *page,
2407 const char *text)
Christoph Lameter81819f02007-05-06 14:49:36 -07002408{
Christoph Lameter33b12c32008-04-25 12:22:43 -07002409#ifdef CONFIG_SLUB_DEBUG
2410 void *addr = page_address(page);
2411 void *p;
2412 DECLARE_BITMAP(map, page->objects);
2413
2414 bitmap_zero(map, page->objects);
2415 slab_err(s, page, "%s", text);
2416 slab_lock(page);
2417 for_each_free_object(p, s, page->freelist)
2418 set_bit(slab_index(p, s, addr), map);
2419
2420 for_each_object(p, s, addr, page->objects) {
2421
2422 if (!test_bit(slab_index(p, s, addr), map)) {
2423 printk(KERN_ERR "INFO: Object 0x%p @offset=%tu\n",
2424 p, p - addr);
2425 print_tracking(s, p);
2426 }
2427 }
2428 slab_unlock(page);
2429#endif
2430}
2431
Christoph Lameter81819f02007-05-06 14:49:36 -07002432/*
Christoph Lameter599870b2008-04-23 12:36:52 -07002433 * Attempt to free all partial slabs on a node.
Christoph Lameter81819f02007-05-06 14:49:36 -07002434 */
Christoph Lameter599870b2008-04-23 12:36:52 -07002435static void free_partial(struct kmem_cache *s, struct kmem_cache_node *n)
Christoph Lameter81819f02007-05-06 14:49:36 -07002436{
Christoph Lameter81819f02007-05-06 14:49:36 -07002437 unsigned long flags;
2438 struct page *page, *h;
2439
2440 spin_lock_irqsave(&n->list_lock, flags);
Christoph Lameter33b12c32008-04-25 12:22:43 -07002441 list_for_each_entry_safe(page, h, &n->partial, lru) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002442 if (!page->inuse) {
2443 list_del(&page->lru);
2444 discard_slab(s, page);
Christoph Lameter599870b2008-04-23 12:36:52 -07002445 n->nr_partial--;
Christoph Lameter33b12c32008-04-25 12:22:43 -07002446 } else {
2447 list_slab_objects(s, page,
2448 "Objects remaining on kmem_cache_close()");
Christoph Lameter599870b2008-04-23 12:36:52 -07002449 }
Christoph Lameter33b12c32008-04-25 12:22:43 -07002450 }
Christoph Lameter81819f02007-05-06 14:49:36 -07002451 spin_unlock_irqrestore(&n->list_lock, flags);
Christoph Lameter81819f02007-05-06 14:49:36 -07002452}
2453
2454/*
Christoph Lameter672bba32007-05-09 02:32:39 -07002455 * Release all resources used by a slab cache.
Christoph Lameter81819f02007-05-06 14:49:36 -07002456 */
Christoph Lameter0c710012007-07-17 04:03:24 -07002457static inline int kmem_cache_close(struct kmem_cache *s)
Christoph Lameter81819f02007-05-06 14:49:36 -07002458{
2459 int node;
2460
2461 flush_all(s);
2462
2463 /* Attempt to free all objects */
Christoph Lameter4c93c3552007-10-16 01:26:08 -07002464 free_kmem_cache_cpus(s);
Christoph Lameterf64dc582007-10-16 01:25:33 -07002465 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002466 struct kmem_cache_node *n = get_node(s, node);
2467
Christoph Lameter599870b2008-04-23 12:36:52 -07002468 free_partial(s, n);
2469 if (n->nr_partial || slabs_node(s, node))
Christoph Lameter81819f02007-05-06 14:49:36 -07002470 return 1;
2471 }
2472 free_kmem_cache_nodes(s);
2473 return 0;
2474}
2475
2476/*
2477 * Close a cache and release the kmem_cache structure
2478 * (must be used for caches created using kmem_cache_create)
2479 */
2480void kmem_cache_destroy(struct kmem_cache *s)
2481{
2482 down_write(&slub_lock);
2483 s->refcount--;
2484 if (!s->refcount) {
2485 list_del(&s->list);
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07002486 up_write(&slub_lock);
Pekka Enbergd629d812008-04-23 22:31:08 +03002487 if (kmem_cache_close(s)) {
2488 printk(KERN_ERR "SLUB %s: %s called for cache that "
2489 "still has objects.\n", s->name, __func__);
2490 dump_stack();
2491 }
Christoph Lameter81819f02007-05-06 14:49:36 -07002492 sysfs_slab_remove(s);
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07002493 } else
2494 up_write(&slub_lock);
Christoph Lameter81819f02007-05-06 14:49:36 -07002495}
2496EXPORT_SYMBOL(kmem_cache_destroy);
2497
2498/********************************************************************
2499 * Kmalloc subsystem
2500 *******************************************************************/
2501
Christoph Lameter331dc552008-02-14 14:28:09 -08002502struct kmem_cache kmalloc_caches[PAGE_SHIFT + 1] __cacheline_aligned;
Christoph Lameter81819f02007-05-06 14:49:36 -07002503EXPORT_SYMBOL(kmalloc_caches);
2504
Christoph Lameter81819f02007-05-06 14:49:36 -07002505static int __init setup_slub_min_order(char *str)
2506{
Pekka Enberg06428782008-01-07 23:20:27 -08002507 get_option(&str, &slub_min_order);
Christoph Lameter81819f02007-05-06 14:49:36 -07002508
2509 return 1;
2510}
2511
2512__setup("slub_min_order=", setup_slub_min_order);
2513
2514static int __init setup_slub_max_order(char *str)
2515{
Pekka Enberg06428782008-01-07 23:20:27 -08002516 get_option(&str, &slub_max_order);
Christoph Lameter81819f02007-05-06 14:49:36 -07002517
2518 return 1;
2519}
2520
2521__setup("slub_max_order=", setup_slub_max_order);
2522
2523static int __init setup_slub_min_objects(char *str)
2524{
Pekka Enberg06428782008-01-07 23:20:27 -08002525 get_option(&str, &slub_min_objects);
Christoph Lameter81819f02007-05-06 14:49:36 -07002526
2527 return 1;
2528}
2529
2530__setup("slub_min_objects=", setup_slub_min_objects);
2531
2532static int __init setup_slub_nomerge(char *str)
2533{
2534 slub_nomerge = 1;
2535 return 1;
2536}
2537
2538__setup("slub_nomerge", setup_slub_nomerge);
2539
Christoph Lameter81819f02007-05-06 14:49:36 -07002540static struct kmem_cache *create_kmalloc_cache(struct kmem_cache *s,
2541 const char *name, int size, gfp_t gfp_flags)
2542{
2543 unsigned int flags = 0;
2544
2545 if (gfp_flags & SLUB_DMA)
2546 flags = SLAB_CACHE_DMA;
2547
2548 down_write(&slub_lock);
2549 if (!kmem_cache_open(s, gfp_flags, name, size, ARCH_KMALLOC_MINALIGN,
Christoph Lameter319d1e22008-04-14 19:11:41 +03002550 flags, NULL))
Christoph Lameter81819f02007-05-06 14:49:36 -07002551 goto panic;
2552
2553 list_add(&s->list, &slab_caches);
2554 up_write(&slub_lock);
2555 if (sysfs_slab_add(s))
2556 goto panic;
2557 return s;
2558
2559panic:
2560 panic("Creation of kmalloc slab %s size=%d failed.\n", name, size);
2561}
2562
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002563#ifdef CONFIG_ZONE_DMA
Christoph Lameter4097d602008-04-14 18:51:18 +03002564static struct kmem_cache *kmalloc_caches_dma[PAGE_SHIFT + 1];
Christoph Lameter1ceef402007-08-07 15:11:48 -07002565
2566static void sysfs_add_func(struct work_struct *w)
2567{
2568 struct kmem_cache *s;
2569
2570 down_write(&slub_lock);
2571 list_for_each_entry(s, &slab_caches, list) {
2572 if (s->flags & __SYSFS_ADD_DEFERRED) {
2573 s->flags &= ~__SYSFS_ADD_DEFERRED;
2574 sysfs_slab_add(s);
2575 }
2576 }
2577 up_write(&slub_lock);
2578}
2579
2580static DECLARE_WORK(sysfs_add_work, sysfs_add_func);
2581
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002582static noinline struct kmem_cache *dma_kmalloc_cache(int index, gfp_t flags)
2583{
2584 struct kmem_cache *s;
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002585 char *text;
2586 size_t realsize;
2587
2588 s = kmalloc_caches_dma[index];
2589 if (s)
2590 return s;
2591
2592 /* Dynamically create dma cache */
Christoph Lameter1ceef402007-08-07 15:11:48 -07002593 if (flags & __GFP_WAIT)
2594 down_write(&slub_lock);
2595 else {
2596 if (!down_write_trylock(&slub_lock))
2597 goto out;
2598 }
2599
2600 if (kmalloc_caches_dma[index])
2601 goto unlock_out;
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002602
Christoph Lameter7b55f622007-07-17 04:03:27 -07002603 realsize = kmalloc_caches[index].objsize;
Ingo Molnar3adbefe2008-02-05 17:57:39 -08002604 text = kasprintf(flags & ~SLUB_DMA, "kmalloc_dma-%d",
2605 (unsigned int)realsize);
Christoph Lameter1ceef402007-08-07 15:11:48 -07002606 s = kmalloc(kmem_size, flags & ~SLUB_DMA);
2607
2608 if (!s || !text || !kmem_cache_open(s, flags, text,
2609 realsize, ARCH_KMALLOC_MINALIGN,
2610 SLAB_CACHE_DMA|__SYSFS_ADD_DEFERRED, NULL)) {
2611 kfree(s);
2612 kfree(text);
2613 goto unlock_out;
Christoph Lameterdfce8642007-07-17 04:03:25 -07002614 }
Christoph Lameter1ceef402007-08-07 15:11:48 -07002615
2616 list_add(&s->list, &slab_caches);
2617 kmalloc_caches_dma[index] = s;
2618
2619 schedule_work(&sysfs_add_work);
2620
2621unlock_out:
Christoph Lameterdfce8642007-07-17 04:03:25 -07002622 up_write(&slub_lock);
Christoph Lameter1ceef402007-08-07 15:11:48 -07002623out:
Christoph Lameterdfce8642007-07-17 04:03:25 -07002624 return kmalloc_caches_dma[index];
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002625}
2626#endif
2627
Christoph Lameterf1b26332007-07-17 04:03:26 -07002628/*
2629 * Conversion table for small slabs sizes / 8 to the index in the
2630 * kmalloc array. This is necessary for slabs < 192 since we have non power
2631 * of two cache sizes there. The size of larger slabs can be determined using
2632 * fls.
2633 */
2634static s8 size_index[24] = {
2635 3, /* 8 */
2636 4, /* 16 */
2637 5, /* 24 */
2638 5, /* 32 */
2639 6, /* 40 */
2640 6, /* 48 */
2641 6, /* 56 */
2642 6, /* 64 */
2643 1, /* 72 */
2644 1, /* 80 */
2645 1, /* 88 */
2646 1, /* 96 */
2647 7, /* 104 */
2648 7, /* 112 */
2649 7, /* 120 */
2650 7, /* 128 */
2651 2, /* 136 */
2652 2, /* 144 */
2653 2, /* 152 */
2654 2, /* 160 */
2655 2, /* 168 */
2656 2, /* 176 */
2657 2, /* 184 */
2658 2 /* 192 */
2659};
2660
Christoph Lameter81819f02007-05-06 14:49:36 -07002661static struct kmem_cache *get_slab(size_t size, gfp_t flags)
2662{
Christoph Lameterf1b26332007-07-17 04:03:26 -07002663 int index;
Christoph Lameter81819f02007-05-06 14:49:36 -07002664
Christoph Lameterf1b26332007-07-17 04:03:26 -07002665 if (size <= 192) {
2666 if (!size)
2667 return ZERO_SIZE_PTR;
Christoph Lameter81819f02007-05-06 14:49:36 -07002668
Christoph Lameterf1b26332007-07-17 04:03:26 -07002669 index = size_index[(size - 1) / 8];
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002670 } else
Christoph Lameterf1b26332007-07-17 04:03:26 -07002671 index = fls(size - 1);
Christoph Lameter81819f02007-05-06 14:49:36 -07002672
2673#ifdef CONFIG_ZONE_DMA
Christoph Lameterf1b26332007-07-17 04:03:26 -07002674 if (unlikely((flags & SLUB_DMA)))
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002675 return dma_kmalloc_cache(index, flags);
Christoph Lameterf1b26332007-07-17 04:03:26 -07002676
Christoph Lameter81819f02007-05-06 14:49:36 -07002677#endif
2678 return &kmalloc_caches[index];
2679}
2680
2681void *__kmalloc(size_t size, gfp_t flags)
2682{
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002683 struct kmem_cache *s;
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002684 void *ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07002685
Christoph Lameter331dc552008-02-14 14:28:09 -08002686 if (unlikely(size > PAGE_SIZE))
Pekka Enbergeada35e2008-02-11 22:47:46 +02002687 return kmalloc_large(size, flags);
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002688
2689 s = get_slab(size, flags);
2690
2691 if (unlikely(ZERO_OR_NULL_PTR(s)))
Christoph Lameter6cb8f912007-07-17 04:03:22 -07002692 return s;
2693
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002694 ret = slab_alloc(s, flags, -1, _RET_IP_);
2695
2696 kmemtrace_mark_alloc(KMEMTRACE_TYPE_KMALLOC, _RET_IP_, ret,
2697 size, s->size, flags);
2698
2699 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07002700}
2701EXPORT_SYMBOL(__kmalloc);
2702
Christoph Lameterf619cfe2008-03-01 13:56:40 -08002703static void *kmalloc_large_node(size_t size, gfp_t flags, int node)
2704{
2705 struct page *page = alloc_pages_node(node, flags | __GFP_COMP,
2706 get_order(size));
2707
2708 if (page)
2709 return page_address(page);
2710 else
2711 return NULL;
2712}
2713
Christoph Lameter81819f02007-05-06 14:49:36 -07002714#ifdef CONFIG_NUMA
2715void *__kmalloc_node(size_t size, gfp_t flags, int node)
2716{
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002717 struct kmem_cache *s;
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002718 void *ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07002719
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002720 if (unlikely(size > PAGE_SIZE)) {
2721 ret = kmalloc_large_node(size, flags, node);
2722
2723 kmemtrace_mark_alloc_node(KMEMTRACE_TYPE_KMALLOC,
2724 _RET_IP_, ret,
2725 size, PAGE_SIZE << get_order(size),
2726 flags, node);
2727
2728 return ret;
2729 }
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002730
2731 s = get_slab(size, flags);
2732
2733 if (unlikely(ZERO_OR_NULL_PTR(s)))
Christoph Lameter6cb8f912007-07-17 04:03:22 -07002734 return s;
2735
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002736 ret = slab_alloc(s, flags, node, _RET_IP_);
2737
2738 kmemtrace_mark_alloc_node(KMEMTRACE_TYPE_KMALLOC, _RET_IP_, ret,
2739 size, s->size, flags, node);
2740
2741 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07002742}
2743EXPORT_SYMBOL(__kmalloc_node);
2744#endif
2745
2746size_t ksize(const void *object)
2747{
Christoph Lameter272c1d22007-06-08 13:46:49 -07002748 struct page *page;
Christoph Lameter81819f02007-05-06 14:49:36 -07002749 struct kmem_cache *s;
2750
Christoph Lameteref8b4522007-10-16 01:24:46 -07002751 if (unlikely(object == ZERO_SIZE_PTR))
Christoph Lameter272c1d22007-06-08 13:46:49 -07002752 return 0;
2753
Vegard Nossum294a80a2007-12-04 23:45:30 -08002754 page = virt_to_head_page(object);
Vegard Nossum294a80a2007-12-04 23:45:30 -08002755
Pekka Enberg76994412008-05-22 19:22:25 +03002756 if (unlikely(!PageSlab(page))) {
2757 WARN_ON(!PageCompound(page));
Vegard Nossum294a80a2007-12-04 23:45:30 -08002758 return PAGE_SIZE << compound_order(page);
Pekka Enberg76994412008-05-22 19:22:25 +03002759 }
Christoph Lameter81819f02007-05-06 14:49:36 -07002760 s = page->slab;
Christoph Lameter81819f02007-05-06 14:49:36 -07002761
Christoph Lameterae20bfd2008-02-15 23:45:25 -08002762#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter81819f02007-05-06 14:49:36 -07002763 /*
2764 * Debugging requires use of the padding between object
2765 * and whatever may come after it.
2766 */
2767 if (s->flags & (SLAB_RED_ZONE | SLAB_POISON))
2768 return s->objsize;
2769
Christoph Lameterae20bfd2008-02-15 23:45:25 -08002770#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07002771 /*
2772 * If we have the need to store the freelist pointer
2773 * back there or track user information then we can
2774 * only use the space before that information.
2775 */
2776 if (s->flags & (SLAB_DESTROY_BY_RCU | SLAB_STORE_USER))
2777 return s->inuse;
Christoph Lameter81819f02007-05-06 14:49:36 -07002778 /*
2779 * Else we can use all the padding etc for the allocation
2780 */
2781 return s->size;
2782}
Christoph Lameter81819f02007-05-06 14:49:36 -07002783
2784void kfree(const void *x)
2785{
Christoph Lameter81819f02007-05-06 14:49:36 -07002786 struct page *page;
Christoph Lameter5bb983b2008-02-07 17:47:41 -08002787 void *object = (void *)x;
Christoph Lameter81819f02007-05-06 14:49:36 -07002788
Satyam Sharma2408c552007-10-16 01:24:44 -07002789 if (unlikely(ZERO_OR_NULL_PTR(x)))
Christoph Lameter81819f02007-05-06 14:49:36 -07002790 return;
2791
Christoph Lameterb49af682007-05-06 14:49:41 -07002792 page = virt_to_head_page(x);
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002793 if (unlikely(!PageSlab(page))) {
Christoph Lameter09375022008-05-28 10:32:22 -07002794 BUG_ON(!PageCompound(page));
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002795 put_page(page);
2796 return;
2797 }
Eduard - Gabriel Munteanu35995a42008-08-19 20:43:25 +03002798 slab_free(page->slab, page, object, _RET_IP_);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002799
2800 kmemtrace_mark_free(KMEMTRACE_TYPE_KMALLOC, _RET_IP_, x);
Christoph Lameter81819f02007-05-06 14:49:36 -07002801}
2802EXPORT_SYMBOL(kfree);
2803
Christoph Lameter2086d262007-05-06 14:49:46 -07002804/*
Christoph Lameter672bba32007-05-09 02:32:39 -07002805 * kmem_cache_shrink removes empty slabs from the partial lists and sorts
2806 * the remaining slabs by the number of items in use. The slabs with the
2807 * most items in use come first. New allocations will then fill those up
2808 * and thus they can be removed from the partial lists.
2809 *
2810 * The slabs with the least items are placed last. This results in them
2811 * being allocated from last increasing the chance that the last objects
2812 * are freed in them.
Christoph Lameter2086d262007-05-06 14:49:46 -07002813 */
2814int kmem_cache_shrink(struct kmem_cache *s)
2815{
2816 int node;
2817 int i;
2818 struct kmem_cache_node *n;
2819 struct page *page;
2820 struct page *t;
Christoph Lameter205ab992008-04-14 19:11:40 +03002821 int objects = oo_objects(s->max);
Christoph Lameter2086d262007-05-06 14:49:46 -07002822 struct list_head *slabs_by_inuse =
Christoph Lameter834f3d12008-04-14 19:11:31 +03002823 kmalloc(sizeof(struct list_head) * objects, GFP_KERNEL);
Christoph Lameter2086d262007-05-06 14:49:46 -07002824 unsigned long flags;
2825
2826 if (!slabs_by_inuse)
2827 return -ENOMEM;
2828
2829 flush_all(s);
Christoph Lameterf64dc582007-10-16 01:25:33 -07002830 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter2086d262007-05-06 14:49:46 -07002831 n = get_node(s, node);
2832
2833 if (!n->nr_partial)
2834 continue;
2835
Christoph Lameter834f3d12008-04-14 19:11:31 +03002836 for (i = 0; i < objects; i++)
Christoph Lameter2086d262007-05-06 14:49:46 -07002837 INIT_LIST_HEAD(slabs_by_inuse + i);
2838
2839 spin_lock_irqsave(&n->list_lock, flags);
2840
2841 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07002842 * Build lists indexed by the items in use in each slab.
Christoph Lameter2086d262007-05-06 14:49:46 -07002843 *
Christoph Lameter672bba32007-05-09 02:32:39 -07002844 * Note that concurrent frees may occur while we hold the
2845 * list_lock. page->inuse here is the upper limit.
Christoph Lameter2086d262007-05-06 14:49:46 -07002846 */
2847 list_for_each_entry_safe(page, t, &n->partial, lru) {
2848 if (!page->inuse && slab_trylock(page)) {
2849 /*
2850 * Must hold slab lock here because slab_free
2851 * may have freed the last object and be
2852 * waiting to release the slab.
2853 */
2854 list_del(&page->lru);
2855 n->nr_partial--;
2856 slab_unlock(page);
2857 discard_slab(s, page);
2858 } else {
Christoph Lameterfcda3d82007-07-30 13:06:46 -07002859 list_move(&page->lru,
2860 slabs_by_inuse + page->inuse);
Christoph Lameter2086d262007-05-06 14:49:46 -07002861 }
2862 }
2863
Christoph Lameter2086d262007-05-06 14:49:46 -07002864 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07002865 * Rebuild the partial list with the slabs filled up most
2866 * first and the least used slabs at the end.
Christoph Lameter2086d262007-05-06 14:49:46 -07002867 */
Christoph Lameter834f3d12008-04-14 19:11:31 +03002868 for (i = objects - 1; i >= 0; i--)
Christoph Lameter2086d262007-05-06 14:49:46 -07002869 list_splice(slabs_by_inuse + i, n->partial.prev);
2870
Christoph Lameter2086d262007-05-06 14:49:46 -07002871 spin_unlock_irqrestore(&n->list_lock, flags);
2872 }
2873
2874 kfree(slabs_by_inuse);
2875 return 0;
2876}
2877EXPORT_SYMBOL(kmem_cache_shrink);
2878
Yasunori Gotob9049e22007-10-21 16:41:37 -07002879#if defined(CONFIG_NUMA) && defined(CONFIG_MEMORY_HOTPLUG)
2880static int slab_mem_going_offline_callback(void *arg)
2881{
2882 struct kmem_cache *s;
2883
2884 down_read(&slub_lock);
2885 list_for_each_entry(s, &slab_caches, list)
2886 kmem_cache_shrink(s);
2887 up_read(&slub_lock);
2888
2889 return 0;
2890}
2891
2892static void slab_mem_offline_callback(void *arg)
2893{
2894 struct kmem_cache_node *n;
2895 struct kmem_cache *s;
2896 struct memory_notify *marg = arg;
2897 int offline_node;
2898
2899 offline_node = marg->status_change_nid;
2900
2901 /*
2902 * If the node still has available memory. we need kmem_cache_node
2903 * for it yet.
2904 */
2905 if (offline_node < 0)
2906 return;
2907
2908 down_read(&slub_lock);
2909 list_for_each_entry(s, &slab_caches, list) {
2910 n = get_node(s, offline_node);
2911 if (n) {
2912 /*
2913 * if n->nr_slabs > 0, slabs still exist on the node
2914 * that is going down. We were unable to free them,
2915 * and offline_pages() function shoudn't call this
2916 * callback. So, we must fail.
2917 */
Christoph Lameter0f389ec2008-04-14 18:53:02 +03002918 BUG_ON(slabs_node(s, offline_node));
Yasunori Gotob9049e22007-10-21 16:41:37 -07002919
2920 s->node[offline_node] = NULL;
2921 kmem_cache_free(kmalloc_caches, n);
2922 }
2923 }
2924 up_read(&slub_lock);
2925}
2926
2927static int slab_mem_going_online_callback(void *arg)
2928{
2929 struct kmem_cache_node *n;
2930 struct kmem_cache *s;
2931 struct memory_notify *marg = arg;
2932 int nid = marg->status_change_nid;
2933 int ret = 0;
2934
2935 /*
2936 * If the node's memory is already available, then kmem_cache_node is
2937 * already created. Nothing to do.
2938 */
2939 if (nid < 0)
2940 return 0;
2941
2942 /*
Christoph Lameter0121c6192008-04-29 16:11:12 -07002943 * We are bringing a node online. No memory is available yet. We must
Yasunori Gotob9049e22007-10-21 16:41:37 -07002944 * allocate a kmem_cache_node structure in order to bring the node
2945 * online.
2946 */
2947 down_read(&slub_lock);
2948 list_for_each_entry(s, &slab_caches, list) {
2949 /*
2950 * XXX: kmem_cache_alloc_node will fallback to other nodes
2951 * since memory is not yet available from the node that
2952 * is brought up.
2953 */
2954 n = kmem_cache_alloc(kmalloc_caches, GFP_KERNEL);
2955 if (!n) {
2956 ret = -ENOMEM;
2957 goto out;
2958 }
Pekka Enberg5595cff2008-08-05 09:28:47 +03002959 init_kmem_cache_node(n, s);
Yasunori Gotob9049e22007-10-21 16:41:37 -07002960 s->node[nid] = n;
2961 }
2962out:
2963 up_read(&slub_lock);
2964 return ret;
2965}
2966
2967static int slab_memory_callback(struct notifier_block *self,
2968 unsigned long action, void *arg)
2969{
2970 int ret = 0;
2971
2972 switch (action) {
2973 case MEM_GOING_ONLINE:
2974 ret = slab_mem_going_online_callback(arg);
2975 break;
2976 case MEM_GOING_OFFLINE:
2977 ret = slab_mem_going_offline_callback(arg);
2978 break;
2979 case MEM_OFFLINE:
2980 case MEM_CANCEL_ONLINE:
2981 slab_mem_offline_callback(arg);
2982 break;
2983 case MEM_ONLINE:
2984 case MEM_CANCEL_OFFLINE:
2985 break;
2986 }
KAMEZAWA Hiroyukidc19f9d2008-12-01 13:13:48 -08002987 if (ret)
2988 ret = notifier_from_errno(ret);
2989 else
2990 ret = NOTIFY_OK;
Yasunori Gotob9049e22007-10-21 16:41:37 -07002991 return ret;
2992}
2993
2994#endif /* CONFIG_MEMORY_HOTPLUG */
2995
Christoph Lameter81819f02007-05-06 14:49:36 -07002996/********************************************************************
2997 * Basic setup of slabs
2998 *******************************************************************/
2999
3000void __init kmem_cache_init(void)
3001{
3002 int i;
Christoph Lameter4b356be2007-06-16 10:16:13 -07003003 int caches = 0;
Christoph Lameter81819f02007-05-06 14:49:36 -07003004
Christoph Lameter4c93c3552007-10-16 01:26:08 -07003005 init_alloc_cpu();
3006
Christoph Lameter81819f02007-05-06 14:49:36 -07003007#ifdef CONFIG_NUMA
3008 /*
3009 * Must first have the slab cache available for the allocations of the
Christoph Lameter672bba32007-05-09 02:32:39 -07003010 * struct kmem_cache_node's. There is special bootstrap code in
Christoph Lameter81819f02007-05-06 14:49:36 -07003011 * kmem_cache_open for slab_state == DOWN.
3012 */
3013 create_kmalloc_cache(&kmalloc_caches[0], "kmem_cache_node",
3014 sizeof(struct kmem_cache_node), GFP_KERNEL);
Christoph Lameter8ffa6872007-05-31 00:40:51 -07003015 kmalloc_caches[0].refcount = -1;
Christoph Lameter4b356be2007-06-16 10:16:13 -07003016 caches++;
Yasunori Gotob9049e22007-10-21 16:41:37 -07003017
Nadia Derbey0c40ba42008-04-29 01:00:41 -07003018 hotplug_memory_notifier(slab_memory_callback, SLAB_CALLBACK_PRI);
Christoph Lameter81819f02007-05-06 14:49:36 -07003019#endif
3020
3021 /* Able to allocate the per node structures */
3022 slab_state = PARTIAL;
3023
3024 /* Caches that are not of the two-to-the-power-of size */
Christoph Lameter4b356be2007-06-16 10:16:13 -07003025 if (KMALLOC_MIN_SIZE <= 64) {
3026 create_kmalloc_cache(&kmalloc_caches[1],
Christoph Lameter81819f02007-05-06 14:49:36 -07003027 "kmalloc-96", 96, GFP_KERNEL);
Christoph Lameter4b356be2007-06-16 10:16:13 -07003028 caches++;
Christoph Lameter4b356be2007-06-16 10:16:13 -07003029 create_kmalloc_cache(&kmalloc_caches[2],
Christoph Lameter81819f02007-05-06 14:49:36 -07003030 "kmalloc-192", 192, GFP_KERNEL);
Christoph Lameter4b356be2007-06-16 10:16:13 -07003031 caches++;
3032 }
Christoph Lameter81819f02007-05-06 14:49:36 -07003033
Christoph Lameter331dc552008-02-14 14:28:09 -08003034 for (i = KMALLOC_SHIFT_LOW; i <= PAGE_SHIFT; i++) {
Christoph Lameter81819f02007-05-06 14:49:36 -07003035 create_kmalloc_cache(&kmalloc_caches[i],
3036 "kmalloc", 1 << i, GFP_KERNEL);
Christoph Lameter4b356be2007-06-16 10:16:13 -07003037 caches++;
3038 }
Christoph Lameter81819f02007-05-06 14:49:36 -07003039
Christoph Lameterf1b26332007-07-17 04:03:26 -07003040
3041 /*
3042 * Patch up the size_index table if we have strange large alignment
3043 * requirements for the kmalloc array. This is only the case for
Christoph Lameter6446faa2008-02-15 23:45:26 -08003044 * MIPS it seems. The standard arches will not generate any code here.
Christoph Lameterf1b26332007-07-17 04:03:26 -07003045 *
3046 * Largest permitted alignment is 256 bytes due to the way we
3047 * handle the index determination for the smaller caches.
3048 *
3049 * Make sure that nothing crazy happens if someone starts tinkering
3050 * around with ARCH_KMALLOC_MINALIGN
3051 */
3052 BUILD_BUG_ON(KMALLOC_MIN_SIZE > 256 ||
3053 (KMALLOC_MIN_SIZE & (KMALLOC_MIN_SIZE - 1)));
3054
Christoph Lameter12ad6842007-07-17 04:03:28 -07003055 for (i = 8; i < KMALLOC_MIN_SIZE; i += 8)
Christoph Lameterf1b26332007-07-17 04:03:26 -07003056 size_index[(i - 1) / 8] = KMALLOC_SHIFT_LOW;
3057
Christoph Lameter41d54d32008-07-03 09:14:26 -05003058 if (KMALLOC_MIN_SIZE == 128) {
3059 /*
3060 * The 192 byte sized cache is not used if the alignment
3061 * is 128 byte. Redirect kmalloc to use the 256 byte cache
3062 * instead.
3063 */
3064 for (i = 128 + 8; i <= 192; i += 8)
3065 size_index[(i - 1) / 8] = 8;
3066 }
3067
Christoph Lameter81819f02007-05-06 14:49:36 -07003068 slab_state = UP;
3069
3070 /* Provide the correct kmalloc names now that the caches are up */
Christoph Lameter331dc552008-02-14 14:28:09 -08003071 for (i = KMALLOC_SHIFT_LOW; i <= PAGE_SHIFT; i++)
Christoph Lameter81819f02007-05-06 14:49:36 -07003072 kmalloc_caches[i]. name =
3073 kasprintf(GFP_KERNEL, "kmalloc-%d", 1 << i);
3074
3075#ifdef CONFIG_SMP
3076 register_cpu_notifier(&slab_notifier);
Christoph Lameter4c93c3552007-10-16 01:26:08 -07003077 kmem_size = offsetof(struct kmem_cache, cpu_slab) +
3078 nr_cpu_ids * sizeof(struct kmem_cache_cpu *);
3079#else
3080 kmem_size = sizeof(struct kmem_cache);
Christoph Lameter81819f02007-05-06 14:49:36 -07003081#endif
3082
Ingo Molnar3adbefe2008-02-05 17:57:39 -08003083 printk(KERN_INFO
3084 "SLUB: Genslabs=%d, HWalign=%d, Order=%d-%d, MinObjects=%d,"
Christoph Lameter4b356be2007-06-16 10:16:13 -07003085 " CPUs=%d, Nodes=%d\n",
3086 caches, cache_line_size(),
Christoph Lameter81819f02007-05-06 14:49:36 -07003087 slub_min_order, slub_max_order, slub_min_objects,
3088 nr_cpu_ids, nr_node_ids);
3089}
3090
3091/*
3092 * Find a mergeable slab cache
3093 */
3094static int slab_unmergeable(struct kmem_cache *s)
3095{
3096 if (slub_nomerge || (s->flags & SLUB_NEVER_MERGE))
3097 return 1;
3098
Christoph Lameterc59def92007-05-16 22:10:50 -07003099 if (s->ctor)
Christoph Lameter81819f02007-05-06 14:49:36 -07003100 return 1;
3101
Christoph Lameter8ffa6872007-05-31 00:40:51 -07003102 /*
3103 * We may have set a slab to be unmergeable during bootstrap.
3104 */
3105 if (s->refcount < 0)
3106 return 1;
3107
Christoph Lameter81819f02007-05-06 14:49:36 -07003108 return 0;
3109}
3110
3111static struct kmem_cache *find_mergeable(size_t size,
Christoph Lameterba0268a2007-09-11 15:24:11 -07003112 size_t align, unsigned long flags, const char *name,
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07003113 void (*ctor)(void *))
Christoph Lameter81819f02007-05-06 14:49:36 -07003114{
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07003115 struct kmem_cache *s;
Christoph Lameter81819f02007-05-06 14:49:36 -07003116
3117 if (slub_nomerge || (flags & SLUB_NEVER_MERGE))
3118 return NULL;
3119
Christoph Lameterc59def92007-05-16 22:10:50 -07003120 if (ctor)
Christoph Lameter81819f02007-05-06 14:49:36 -07003121 return NULL;
3122
3123 size = ALIGN(size, sizeof(void *));
3124 align = calculate_alignment(flags, align, size);
3125 size = ALIGN(size, align);
Christoph Lameterba0268a2007-09-11 15:24:11 -07003126 flags = kmem_cache_flags(size, flags, name, NULL);
Christoph Lameter81819f02007-05-06 14:49:36 -07003127
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07003128 list_for_each_entry(s, &slab_caches, list) {
Christoph Lameter81819f02007-05-06 14:49:36 -07003129 if (slab_unmergeable(s))
3130 continue;
3131
3132 if (size > s->size)
3133 continue;
3134
Christoph Lameterba0268a2007-09-11 15:24:11 -07003135 if ((flags & SLUB_MERGE_SAME) != (s->flags & SLUB_MERGE_SAME))
Christoph Lameter81819f02007-05-06 14:49:36 -07003136 continue;
3137 /*
3138 * Check if alignment is compatible.
3139 * Courtesy of Adrian Drzewiecki
3140 */
Pekka Enberg06428782008-01-07 23:20:27 -08003141 if ((s->size & ~(align - 1)) != s->size)
Christoph Lameter81819f02007-05-06 14:49:36 -07003142 continue;
3143
3144 if (s->size - size >= sizeof(void *))
3145 continue;
3146
3147 return s;
3148 }
3149 return NULL;
3150}
3151
3152struct kmem_cache *kmem_cache_create(const char *name, size_t size,
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07003153 size_t align, unsigned long flags, void (*ctor)(void *))
Christoph Lameter81819f02007-05-06 14:49:36 -07003154{
3155 struct kmem_cache *s;
3156
3157 down_write(&slub_lock);
Christoph Lameterba0268a2007-09-11 15:24:11 -07003158 s = find_mergeable(size, align, flags, name, ctor);
Christoph Lameter81819f02007-05-06 14:49:36 -07003159 if (s) {
Christoph Lameter42a9fdb2007-10-16 01:26:09 -07003160 int cpu;
3161
Christoph Lameter81819f02007-05-06 14:49:36 -07003162 s->refcount++;
3163 /*
3164 * Adjust the object sizes so that we clear
3165 * the complete object on kzalloc.
3166 */
3167 s->objsize = max(s->objsize, (int)size);
Christoph Lameter42a9fdb2007-10-16 01:26:09 -07003168
3169 /*
3170 * And then we need to update the object size in the
3171 * per cpu structures
3172 */
3173 for_each_online_cpu(cpu)
3174 get_cpu_slab(s, cpu)->objsize = s->objsize;
Christoph Lameter6446faa2008-02-15 23:45:26 -08003175
Christoph Lameter81819f02007-05-06 14:49:36 -07003176 s->inuse = max_t(int, s->inuse, ALIGN(size, sizeof(void *)));
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07003177 up_write(&slub_lock);
Christoph Lameter6446faa2008-02-15 23:45:26 -08003178
Christoph Lameter81819f02007-05-06 14:49:36 -07003179 if (sysfs_slab_alias(s, name))
3180 goto err;
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07003181 return s;
3182 }
Christoph Lameter6446faa2008-02-15 23:45:26 -08003183
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07003184 s = kmalloc(kmem_size, GFP_KERNEL);
3185 if (s) {
3186 if (kmem_cache_open(s, GFP_KERNEL, name,
Christoph Lameterc59def92007-05-16 22:10:50 -07003187 size, align, flags, ctor)) {
Christoph Lameter81819f02007-05-06 14:49:36 -07003188 list_add(&s->list, &slab_caches);
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07003189 up_write(&slub_lock);
3190 if (sysfs_slab_add(s))
3191 goto err;
3192 return s;
3193 }
3194 kfree(s);
Christoph Lameter81819f02007-05-06 14:49:36 -07003195 }
3196 up_write(&slub_lock);
Christoph Lameter81819f02007-05-06 14:49:36 -07003197
3198err:
Christoph Lameter81819f02007-05-06 14:49:36 -07003199 if (flags & SLAB_PANIC)
3200 panic("Cannot create slabcache %s\n", name);
3201 else
3202 s = NULL;
3203 return s;
3204}
3205EXPORT_SYMBOL(kmem_cache_create);
3206
Christoph Lameter81819f02007-05-06 14:49:36 -07003207#ifdef CONFIG_SMP
Christoph Lameter27390bc2007-06-01 00:47:09 -07003208/*
Christoph Lameter672bba32007-05-09 02:32:39 -07003209 * Use the cpu notifier to insure that the cpu slabs are flushed when
3210 * necessary.
Christoph Lameter81819f02007-05-06 14:49:36 -07003211 */
3212static int __cpuinit slab_cpuup_callback(struct notifier_block *nfb,
3213 unsigned long action, void *hcpu)
3214{
3215 long cpu = (long)hcpu;
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07003216 struct kmem_cache *s;
3217 unsigned long flags;
Christoph Lameter81819f02007-05-06 14:49:36 -07003218
3219 switch (action) {
Christoph Lameter4c93c3552007-10-16 01:26:08 -07003220 case CPU_UP_PREPARE:
3221 case CPU_UP_PREPARE_FROZEN:
3222 init_alloc_cpu_cpu(cpu);
3223 down_read(&slub_lock);
3224 list_for_each_entry(s, &slab_caches, list)
3225 s->cpu_slab[cpu] = alloc_kmem_cache_cpu(s, cpu,
3226 GFP_KERNEL);
3227 up_read(&slub_lock);
3228 break;
3229
Christoph Lameter81819f02007-05-06 14:49:36 -07003230 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07003231 case CPU_UP_CANCELED_FROZEN:
Christoph Lameter81819f02007-05-06 14:49:36 -07003232 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07003233 case CPU_DEAD_FROZEN:
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07003234 down_read(&slub_lock);
3235 list_for_each_entry(s, &slab_caches, list) {
Christoph Lameter4c93c3552007-10-16 01:26:08 -07003236 struct kmem_cache_cpu *c = get_cpu_slab(s, cpu);
3237
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07003238 local_irq_save(flags);
3239 __flush_cpu_slab(s, cpu);
3240 local_irq_restore(flags);
Christoph Lameter4c93c3552007-10-16 01:26:08 -07003241 free_kmem_cache_cpu(c, cpu);
3242 s->cpu_slab[cpu] = NULL;
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07003243 }
3244 up_read(&slub_lock);
Christoph Lameter81819f02007-05-06 14:49:36 -07003245 break;
3246 default:
3247 break;
3248 }
3249 return NOTIFY_OK;
3250}
3251
Pekka Enberg06428782008-01-07 23:20:27 -08003252static struct notifier_block __cpuinitdata slab_notifier = {
Ingo Molnar3adbefe2008-02-05 17:57:39 -08003253 .notifier_call = slab_cpuup_callback
Pekka Enberg06428782008-01-07 23:20:27 -08003254};
Christoph Lameter81819f02007-05-06 14:49:36 -07003255
3256#endif
3257
Eduard - Gabriel Munteanu35995a42008-08-19 20:43:25 +03003258void *__kmalloc_track_caller(size_t size, gfp_t gfpflags, unsigned long caller)
Christoph Lameter81819f02007-05-06 14:49:36 -07003259{
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003260 struct kmem_cache *s;
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03003261 void *ret;
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003262
Christoph Lameter331dc552008-02-14 14:28:09 -08003263 if (unlikely(size > PAGE_SIZE))
Pekka Enbergeada35e2008-02-11 22:47:46 +02003264 return kmalloc_large(size, gfpflags);
3265
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003266 s = get_slab(size, gfpflags);
Christoph Lameter81819f02007-05-06 14:49:36 -07003267
Satyam Sharma2408c552007-10-16 01:24:44 -07003268 if (unlikely(ZERO_OR_NULL_PTR(s)))
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003269 return s;
Christoph Lameter81819f02007-05-06 14:49:36 -07003270
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03003271 ret = slab_alloc(s, gfpflags, -1, caller);
3272
3273 /* Honor the call site pointer we recieved. */
Pekka Enberg2e676242008-09-01 10:11:54 +03003274 kmemtrace_mark_alloc(KMEMTRACE_TYPE_KMALLOC, caller, ret, size,
3275 s->size, gfpflags);
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03003276
3277 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07003278}
3279
3280void *__kmalloc_node_track_caller(size_t size, gfp_t gfpflags,
Eduard - Gabriel Munteanu35995a42008-08-19 20:43:25 +03003281 int node, unsigned long caller)
Christoph Lameter81819f02007-05-06 14:49:36 -07003282{
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003283 struct kmem_cache *s;
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03003284 void *ret;
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003285
Christoph Lameter331dc552008-02-14 14:28:09 -08003286 if (unlikely(size > PAGE_SIZE))
Christoph Lameterf619cfe2008-03-01 13:56:40 -08003287 return kmalloc_large_node(size, gfpflags, node);
Pekka Enbergeada35e2008-02-11 22:47:46 +02003288
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003289 s = get_slab(size, gfpflags);
Christoph Lameter81819f02007-05-06 14:49:36 -07003290
Satyam Sharma2408c552007-10-16 01:24:44 -07003291 if (unlikely(ZERO_OR_NULL_PTR(s)))
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003292 return s;
Christoph Lameter81819f02007-05-06 14:49:36 -07003293
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03003294 ret = slab_alloc(s, gfpflags, node, caller);
3295
3296 /* Honor the call site pointer we recieved. */
Pekka Enberg2e676242008-09-01 10:11:54 +03003297 kmemtrace_mark_alloc_node(KMEMTRACE_TYPE_KMALLOC, caller, ret,
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03003298 size, s->size, gfpflags, node);
3299
3300 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07003301}
3302
Christoph Lameterf6acb632008-04-29 16:16:06 -07003303#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter205ab992008-04-14 19:11:40 +03003304static unsigned long count_partial(struct kmem_cache_node *n,
3305 int (*get_count)(struct page *))
Christoph Lameter5b06c8532008-04-14 18:51:34 +03003306{
3307 unsigned long flags;
3308 unsigned long x = 0;
3309 struct page *page;
3310
3311 spin_lock_irqsave(&n->list_lock, flags);
3312 list_for_each_entry(page, &n->partial, lru)
Christoph Lameter205ab992008-04-14 19:11:40 +03003313 x += get_count(page);
Christoph Lameter5b06c8532008-04-14 18:51:34 +03003314 spin_unlock_irqrestore(&n->list_lock, flags);
3315 return x;
3316}
Christoph Lameter205ab992008-04-14 19:11:40 +03003317
3318static int count_inuse(struct page *page)
3319{
3320 return page->inuse;
3321}
3322
3323static int count_total(struct page *page)
3324{
3325 return page->objects;
3326}
3327
3328static int count_free(struct page *page)
3329{
3330 return page->objects - page->inuse;
3331}
Christoph Lameter5b06c8532008-04-14 18:51:34 +03003332
Christoph Lameter434e2452007-07-17 04:03:30 -07003333static int validate_slab(struct kmem_cache *s, struct page *page,
3334 unsigned long *map)
Christoph Lameter53e15af2007-05-06 14:49:43 -07003335{
3336 void *p;
Christoph Lametera973e9d2008-03-01 13:40:44 -08003337 void *addr = page_address(page);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003338
3339 if (!check_slab(s, page) ||
3340 !on_freelist(s, page, NULL))
3341 return 0;
3342
3343 /* Now we know that a valid freelist exists */
Christoph Lameter39b26462008-04-14 19:11:30 +03003344 bitmap_zero(map, page->objects);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003345
Christoph Lameter7656c722007-05-09 02:32:40 -07003346 for_each_free_object(p, s, page->freelist) {
3347 set_bit(slab_index(p, s, addr), map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003348 if (!check_object(s, page, p, 0))
3349 return 0;
3350 }
3351
Christoph Lameter224a88b2008-04-14 19:11:31 +03003352 for_each_object(p, s, addr, page->objects)
Christoph Lameter7656c722007-05-09 02:32:40 -07003353 if (!test_bit(slab_index(p, s, addr), map))
Christoph Lameter53e15af2007-05-06 14:49:43 -07003354 if (!check_object(s, page, p, 1))
3355 return 0;
3356 return 1;
3357}
3358
Christoph Lameter434e2452007-07-17 04:03:30 -07003359static void validate_slab_slab(struct kmem_cache *s, struct page *page,
3360 unsigned long *map)
Christoph Lameter53e15af2007-05-06 14:49:43 -07003361{
3362 if (slab_trylock(page)) {
Christoph Lameter434e2452007-07-17 04:03:30 -07003363 validate_slab(s, page, map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003364 slab_unlock(page);
3365 } else
3366 printk(KERN_INFO "SLUB %s: Skipped busy slab 0x%p\n",
3367 s->name, page);
3368
3369 if (s->flags & DEBUG_DEFAULT_FLAGS) {
Andy Whitcroft8a380822008-07-23 21:27:18 -07003370 if (!PageSlubDebug(page))
3371 printk(KERN_ERR "SLUB %s: SlubDebug not set "
Christoph Lameter53e15af2007-05-06 14:49:43 -07003372 "on slab 0x%p\n", s->name, page);
3373 } else {
Andy Whitcroft8a380822008-07-23 21:27:18 -07003374 if (PageSlubDebug(page))
3375 printk(KERN_ERR "SLUB %s: SlubDebug set on "
Christoph Lameter53e15af2007-05-06 14:49:43 -07003376 "slab 0x%p\n", s->name, page);
3377 }
3378}
3379
Christoph Lameter434e2452007-07-17 04:03:30 -07003380static int validate_slab_node(struct kmem_cache *s,
3381 struct kmem_cache_node *n, unsigned long *map)
Christoph Lameter53e15af2007-05-06 14:49:43 -07003382{
3383 unsigned long count = 0;
3384 struct page *page;
3385 unsigned long flags;
3386
3387 spin_lock_irqsave(&n->list_lock, flags);
3388
3389 list_for_each_entry(page, &n->partial, lru) {
Christoph Lameter434e2452007-07-17 04:03:30 -07003390 validate_slab_slab(s, page, map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003391 count++;
3392 }
3393 if (count != n->nr_partial)
3394 printk(KERN_ERR "SLUB %s: %ld partial slabs counted but "
3395 "counter=%ld\n", s->name, count, n->nr_partial);
3396
3397 if (!(s->flags & SLAB_STORE_USER))
3398 goto out;
3399
3400 list_for_each_entry(page, &n->full, lru) {
Christoph Lameter434e2452007-07-17 04:03:30 -07003401 validate_slab_slab(s, page, map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003402 count++;
3403 }
3404 if (count != atomic_long_read(&n->nr_slabs))
3405 printk(KERN_ERR "SLUB: %s %ld slabs counted but "
3406 "counter=%ld\n", s->name, count,
3407 atomic_long_read(&n->nr_slabs));
3408
3409out:
3410 spin_unlock_irqrestore(&n->list_lock, flags);
3411 return count;
3412}
3413
Christoph Lameter434e2452007-07-17 04:03:30 -07003414static long validate_slab_cache(struct kmem_cache *s)
Christoph Lameter53e15af2007-05-06 14:49:43 -07003415{
3416 int node;
3417 unsigned long count = 0;
Christoph Lameter205ab992008-04-14 19:11:40 +03003418 unsigned long *map = kmalloc(BITS_TO_LONGS(oo_objects(s->max)) *
Christoph Lameter434e2452007-07-17 04:03:30 -07003419 sizeof(unsigned long), GFP_KERNEL);
3420
3421 if (!map)
3422 return -ENOMEM;
Christoph Lameter53e15af2007-05-06 14:49:43 -07003423
3424 flush_all(s);
Christoph Lameterf64dc582007-10-16 01:25:33 -07003425 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter53e15af2007-05-06 14:49:43 -07003426 struct kmem_cache_node *n = get_node(s, node);
3427
Christoph Lameter434e2452007-07-17 04:03:30 -07003428 count += validate_slab_node(s, n, map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003429 }
Christoph Lameter434e2452007-07-17 04:03:30 -07003430 kfree(map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003431 return count;
3432}
3433
Christoph Lameterb3459702007-05-09 02:32:41 -07003434#ifdef SLUB_RESILIENCY_TEST
3435static void resiliency_test(void)
3436{
3437 u8 *p;
3438
3439 printk(KERN_ERR "SLUB resiliency testing\n");
3440 printk(KERN_ERR "-----------------------\n");
3441 printk(KERN_ERR "A. Corruption after allocation\n");
3442
3443 p = kzalloc(16, GFP_KERNEL);
3444 p[16] = 0x12;
3445 printk(KERN_ERR "\n1. kmalloc-16: Clobber Redzone/next pointer"
3446 " 0x12->0x%p\n\n", p + 16);
3447
3448 validate_slab_cache(kmalloc_caches + 4);
3449
3450 /* Hmmm... The next two are dangerous */
3451 p = kzalloc(32, GFP_KERNEL);
3452 p[32 + sizeof(void *)] = 0x34;
3453 printk(KERN_ERR "\n2. kmalloc-32: Clobber next pointer/next slab"
Ingo Molnar3adbefe2008-02-05 17:57:39 -08003454 " 0x34 -> -0x%p\n", p);
3455 printk(KERN_ERR
3456 "If allocated object is overwritten then not detectable\n\n");
Christoph Lameterb3459702007-05-09 02:32:41 -07003457
3458 validate_slab_cache(kmalloc_caches + 5);
3459 p = kzalloc(64, GFP_KERNEL);
3460 p += 64 + (get_cycles() & 0xff) * sizeof(void *);
3461 *p = 0x56;
3462 printk(KERN_ERR "\n3. kmalloc-64: corrupting random byte 0x56->0x%p\n",
3463 p);
Ingo Molnar3adbefe2008-02-05 17:57:39 -08003464 printk(KERN_ERR
3465 "If allocated object is overwritten then not detectable\n\n");
Christoph Lameterb3459702007-05-09 02:32:41 -07003466 validate_slab_cache(kmalloc_caches + 6);
3467
3468 printk(KERN_ERR "\nB. Corruption after free\n");
3469 p = kzalloc(128, GFP_KERNEL);
3470 kfree(p);
3471 *p = 0x78;
3472 printk(KERN_ERR "1. kmalloc-128: Clobber first word 0x78->0x%p\n\n", p);
3473 validate_slab_cache(kmalloc_caches + 7);
3474
3475 p = kzalloc(256, GFP_KERNEL);
3476 kfree(p);
3477 p[50] = 0x9a;
Ingo Molnar3adbefe2008-02-05 17:57:39 -08003478 printk(KERN_ERR "\n2. kmalloc-256: Clobber 50th byte 0x9a->0x%p\n\n",
3479 p);
Christoph Lameterb3459702007-05-09 02:32:41 -07003480 validate_slab_cache(kmalloc_caches + 8);
3481
3482 p = kzalloc(512, GFP_KERNEL);
3483 kfree(p);
3484 p[512] = 0xab;
3485 printk(KERN_ERR "\n3. kmalloc-512: Clobber redzone 0xab->0x%p\n\n", p);
3486 validate_slab_cache(kmalloc_caches + 9);
3487}
3488#else
3489static void resiliency_test(void) {};
3490#endif
3491
Christoph Lameter88a420e2007-05-06 14:49:45 -07003492/*
Christoph Lameter672bba32007-05-09 02:32:39 -07003493 * Generate lists of code addresses where slabcache objects are allocated
Christoph Lameter88a420e2007-05-06 14:49:45 -07003494 * and freed.
3495 */
3496
3497struct location {
3498 unsigned long count;
Eduard - Gabriel Munteanu35995a42008-08-19 20:43:25 +03003499 unsigned long addr;
Christoph Lameter45edfa52007-05-09 02:32:45 -07003500 long long sum_time;
3501 long min_time;
3502 long max_time;
3503 long min_pid;
3504 long max_pid;
3505 cpumask_t cpus;
3506 nodemask_t nodes;
Christoph Lameter88a420e2007-05-06 14:49:45 -07003507};
3508
3509struct loc_track {
3510 unsigned long max;
3511 unsigned long count;
3512 struct location *loc;
3513};
3514
3515static void free_loc_track(struct loc_track *t)
3516{
3517 if (t->max)
3518 free_pages((unsigned long)t->loc,
3519 get_order(sizeof(struct location) * t->max));
3520}
3521
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003522static int alloc_loc_track(struct loc_track *t, unsigned long max, gfp_t flags)
Christoph Lameter88a420e2007-05-06 14:49:45 -07003523{
3524 struct location *l;
3525 int order;
3526
Christoph Lameter88a420e2007-05-06 14:49:45 -07003527 order = get_order(sizeof(struct location) * max);
3528
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003529 l = (void *)__get_free_pages(flags, order);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003530 if (!l)
3531 return 0;
3532
3533 if (t->count) {
3534 memcpy(l, t->loc, sizeof(struct location) * t->count);
3535 free_loc_track(t);
3536 }
3537 t->max = max;
3538 t->loc = l;
3539 return 1;
3540}
3541
3542static int add_location(struct loc_track *t, struct kmem_cache *s,
Christoph Lameter45edfa52007-05-09 02:32:45 -07003543 const struct track *track)
Christoph Lameter88a420e2007-05-06 14:49:45 -07003544{
3545 long start, end, pos;
3546 struct location *l;
Eduard - Gabriel Munteanu35995a42008-08-19 20:43:25 +03003547 unsigned long caddr;
Christoph Lameter45edfa52007-05-09 02:32:45 -07003548 unsigned long age = jiffies - track->when;
Christoph Lameter88a420e2007-05-06 14:49:45 -07003549
3550 start = -1;
3551 end = t->count;
3552
3553 for ( ; ; ) {
3554 pos = start + (end - start + 1) / 2;
3555
3556 /*
3557 * There is nothing at "end". If we end up there
3558 * we need to add something to before end.
3559 */
3560 if (pos == end)
3561 break;
3562
3563 caddr = t->loc[pos].addr;
Christoph Lameter45edfa52007-05-09 02:32:45 -07003564 if (track->addr == caddr) {
3565
3566 l = &t->loc[pos];
3567 l->count++;
3568 if (track->when) {
3569 l->sum_time += age;
3570 if (age < l->min_time)
3571 l->min_time = age;
3572 if (age > l->max_time)
3573 l->max_time = age;
3574
3575 if (track->pid < l->min_pid)
3576 l->min_pid = track->pid;
3577 if (track->pid > l->max_pid)
3578 l->max_pid = track->pid;
3579
3580 cpu_set(track->cpu, l->cpus);
3581 }
3582 node_set(page_to_nid(virt_to_page(track)), l->nodes);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003583 return 1;
3584 }
3585
Christoph Lameter45edfa52007-05-09 02:32:45 -07003586 if (track->addr < caddr)
Christoph Lameter88a420e2007-05-06 14:49:45 -07003587 end = pos;
3588 else
3589 start = pos;
3590 }
3591
3592 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07003593 * Not found. Insert new tracking element.
Christoph Lameter88a420e2007-05-06 14:49:45 -07003594 */
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003595 if (t->count >= t->max && !alloc_loc_track(t, 2 * t->max, GFP_ATOMIC))
Christoph Lameter88a420e2007-05-06 14:49:45 -07003596 return 0;
3597
3598 l = t->loc + pos;
3599 if (pos < t->count)
3600 memmove(l + 1, l,
3601 (t->count - pos) * sizeof(struct location));
3602 t->count++;
3603 l->count = 1;
Christoph Lameter45edfa52007-05-09 02:32:45 -07003604 l->addr = track->addr;
3605 l->sum_time = age;
3606 l->min_time = age;
3607 l->max_time = age;
3608 l->min_pid = track->pid;
3609 l->max_pid = track->pid;
3610 cpus_clear(l->cpus);
3611 cpu_set(track->cpu, l->cpus);
3612 nodes_clear(l->nodes);
3613 node_set(page_to_nid(virt_to_page(track)), l->nodes);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003614 return 1;
3615}
3616
3617static void process_slab(struct loc_track *t, struct kmem_cache *s,
3618 struct page *page, enum track_item alloc)
3619{
Christoph Lametera973e9d2008-03-01 13:40:44 -08003620 void *addr = page_address(page);
Christoph Lameter39b26462008-04-14 19:11:30 +03003621 DECLARE_BITMAP(map, page->objects);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003622 void *p;
3623
Christoph Lameter39b26462008-04-14 19:11:30 +03003624 bitmap_zero(map, page->objects);
Christoph Lameter7656c722007-05-09 02:32:40 -07003625 for_each_free_object(p, s, page->freelist)
3626 set_bit(slab_index(p, s, addr), map);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003627
Christoph Lameter224a88b2008-04-14 19:11:31 +03003628 for_each_object(p, s, addr, page->objects)
Christoph Lameter45edfa52007-05-09 02:32:45 -07003629 if (!test_bit(slab_index(p, s, addr), map))
3630 add_location(t, s, get_track(s, p, alloc));
Christoph Lameter88a420e2007-05-06 14:49:45 -07003631}
3632
3633static int list_locations(struct kmem_cache *s, char *buf,
3634 enum track_item alloc)
3635{
Harvey Harrisone374d482008-01-31 15:20:50 -08003636 int len = 0;
Christoph Lameter88a420e2007-05-06 14:49:45 -07003637 unsigned long i;
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003638 struct loc_track t = { 0, 0, NULL };
Christoph Lameter88a420e2007-05-06 14:49:45 -07003639 int node;
3640
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003641 if (!alloc_loc_track(&t, PAGE_SIZE / sizeof(struct location),
Andrew Mortonea3061d2007-10-16 01:26:09 -07003642 GFP_TEMPORARY))
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003643 return sprintf(buf, "Out of memory\n");
Christoph Lameter88a420e2007-05-06 14:49:45 -07003644
3645 /* Push back cpu slabs */
3646 flush_all(s);
3647
Christoph Lameterf64dc582007-10-16 01:25:33 -07003648 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter88a420e2007-05-06 14:49:45 -07003649 struct kmem_cache_node *n = get_node(s, node);
3650 unsigned long flags;
3651 struct page *page;
3652
Christoph Lameter9e869432007-08-22 14:01:56 -07003653 if (!atomic_long_read(&n->nr_slabs))
Christoph Lameter88a420e2007-05-06 14:49:45 -07003654 continue;
3655
3656 spin_lock_irqsave(&n->list_lock, flags);
3657 list_for_each_entry(page, &n->partial, lru)
3658 process_slab(&t, s, page, alloc);
3659 list_for_each_entry(page, &n->full, lru)
3660 process_slab(&t, s, page, alloc);
3661 spin_unlock_irqrestore(&n->list_lock, flags);
3662 }
3663
3664 for (i = 0; i < t.count; i++) {
Christoph Lameter45edfa52007-05-09 02:32:45 -07003665 struct location *l = &t.loc[i];
Christoph Lameter88a420e2007-05-06 14:49:45 -07003666
Hugh Dickins9c246242008-12-09 13:14:27 -08003667 if (len > PAGE_SIZE - KSYM_SYMBOL_LEN - 100)
Christoph Lameter88a420e2007-05-06 14:49:45 -07003668 break;
Harvey Harrisone374d482008-01-31 15:20:50 -08003669 len += sprintf(buf + len, "%7ld ", l->count);
Christoph Lameter45edfa52007-05-09 02:32:45 -07003670
3671 if (l->addr)
Harvey Harrisone374d482008-01-31 15:20:50 -08003672 len += sprint_symbol(buf + len, (unsigned long)l->addr);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003673 else
Harvey Harrisone374d482008-01-31 15:20:50 -08003674 len += sprintf(buf + len, "<not-available>");
Christoph Lameter45edfa52007-05-09 02:32:45 -07003675
3676 if (l->sum_time != l->min_time) {
Harvey Harrisone374d482008-01-31 15:20:50 -08003677 len += sprintf(buf + len, " age=%ld/%ld/%ld",
Roman Zippelf8bd2252008-05-01 04:34:31 -07003678 l->min_time,
3679 (long)div_u64(l->sum_time, l->count),
3680 l->max_time);
Christoph Lameter45edfa52007-05-09 02:32:45 -07003681 } else
Harvey Harrisone374d482008-01-31 15:20:50 -08003682 len += sprintf(buf + len, " age=%ld",
Christoph Lameter45edfa52007-05-09 02:32:45 -07003683 l->min_time);
3684
3685 if (l->min_pid != l->max_pid)
Harvey Harrisone374d482008-01-31 15:20:50 -08003686 len += sprintf(buf + len, " pid=%ld-%ld",
Christoph Lameter45edfa52007-05-09 02:32:45 -07003687 l->min_pid, l->max_pid);
3688 else
Harvey Harrisone374d482008-01-31 15:20:50 -08003689 len += sprintf(buf + len, " pid=%ld",
Christoph Lameter45edfa52007-05-09 02:32:45 -07003690 l->min_pid);
3691
Christoph Lameter84966342007-06-23 17:16:32 -07003692 if (num_online_cpus() > 1 && !cpus_empty(l->cpus) &&
Harvey Harrisone374d482008-01-31 15:20:50 -08003693 len < PAGE_SIZE - 60) {
3694 len += sprintf(buf + len, " cpus=");
3695 len += cpulist_scnprintf(buf + len, PAGE_SIZE - len - 50,
Christoph Lameter45edfa52007-05-09 02:32:45 -07003696 l->cpus);
3697 }
3698
Christoph Lameter84966342007-06-23 17:16:32 -07003699 if (num_online_nodes() > 1 && !nodes_empty(l->nodes) &&
Harvey Harrisone374d482008-01-31 15:20:50 -08003700 len < PAGE_SIZE - 60) {
3701 len += sprintf(buf + len, " nodes=");
3702 len += nodelist_scnprintf(buf + len, PAGE_SIZE - len - 50,
Christoph Lameter45edfa52007-05-09 02:32:45 -07003703 l->nodes);
3704 }
3705
Harvey Harrisone374d482008-01-31 15:20:50 -08003706 len += sprintf(buf + len, "\n");
Christoph Lameter88a420e2007-05-06 14:49:45 -07003707 }
3708
3709 free_loc_track(&t);
3710 if (!t.count)
Harvey Harrisone374d482008-01-31 15:20:50 -08003711 len += sprintf(buf, "No data\n");
3712 return len;
Christoph Lameter88a420e2007-05-06 14:49:45 -07003713}
3714
Christoph Lameter81819f02007-05-06 14:49:36 -07003715enum slab_stat_type {
Christoph Lameter205ab992008-04-14 19:11:40 +03003716 SL_ALL, /* All slabs */
3717 SL_PARTIAL, /* Only partially allocated slabs */
3718 SL_CPU, /* Only slabs used for cpu caches */
3719 SL_OBJECTS, /* Determine allocated objects not slabs */
3720 SL_TOTAL /* Determine object capacity not slabs */
Christoph Lameter81819f02007-05-06 14:49:36 -07003721};
3722
Christoph Lameter205ab992008-04-14 19:11:40 +03003723#define SO_ALL (1 << SL_ALL)
Christoph Lameter81819f02007-05-06 14:49:36 -07003724#define SO_PARTIAL (1 << SL_PARTIAL)
3725#define SO_CPU (1 << SL_CPU)
3726#define SO_OBJECTS (1 << SL_OBJECTS)
Christoph Lameter205ab992008-04-14 19:11:40 +03003727#define SO_TOTAL (1 << SL_TOTAL)
Christoph Lameter81819f02007-05-06 14:49:36 -07003728
Cyrill Gorcunov62e5c4b2008-03-02 23:28:24 +03003729static ssize_t show_slab_objects(struct kmem_cache *s,
3730 char *buf, unsigned long flags)
Christoph Lameter81819f02007-05-06 14:49:36 -07003731{
3732 unsigned long total = 0;
Christoph Lameter81819f02007-05-06 14:49:36 -07003733 int node;
3734 int x;
3735 unsigned long *nodes;
3736 unsigned long *per_cpu;
3737
3738 nodes = kzalloc(2 * sizeof(unsigned long) * nr_node_ids, GFP_KERNEL);
Cyrill Gorcunov62e5c4b2008-03-02 23:28:24 +03003739 if (!nodes)
3740 return -ENOMEM;
Christoph Lameter81819f02007-05-06 14:49:36 -07003741 per_cpu = nodes + nr_node_ids;
3742
Christoph Lameter205ab992008-04-14 19:11:40 +03003743 if (flags & SO_CPU) {
3744 int cpu;
Christoph Lameter81819f02007-05-06 14:49:36 -07003745
Christoph Lameter205ab992008-04-14 19:11:40 +03003746 for_each_possible_cpu(cpu) {
3747 struct kmem_cache_cpu *c = get_cpu_slab(s, cpu);
Christoph Lameterdfb4f092007-10-16 01:26:05 -07003748
Christoph Lameter205ab992008-04-14 19:11:40 +03003749 if (!c || c->node < 0)
3750 continue;
3751
3752 if (c->page) {
3753 if (flags & SO_TOTAL)
3754 x = c->page->objects;
3755 else if (flags & SO_OBJECTS)
3756 x = c->page->inuse;
Christoph Lameter81819f02007-05-06 14:49:36 -07003757 else
3758 x = 1;
Christoph Lameter205ab992008-04-14 19:11:40 +03003759
Christoph Lameter81819f02007-05-06 14:49:36 -07003760 total += x;
Christoph Lameter205ab992008-04-14 19:11:40 +03003761 nodes[c->node] += x;
Christoph Lameter81819f02007-05-06 14:49:36 -07003762 }
Christoph Lameter205ab992008-04-14 19:11:40 +03003763 per_cpu[c->node]++;
Christoph Lameter81819f02007-05-06 14:49:36 -07003764 }
3765 }
3766
Christoph Lameter205ab992008-04-14 19:11:40 +03003767 if (flags & SO_ALL) {
3768 for_each_node_state(node, N_NORMAL_MEMORY) {
3769 struct kmem_cache_node *n = get_node(s, node);
Christoph Lameter81819f02007-05-06 14:49:36 -07003770
Christoph Lameter205ab992008-04-14 19:11:40 +03003771 if (flags & SO_TOTAL)
3772 x = atomic_long_read(&n->total_objects);
3773 else if (flags & SO_OBJECTS)
3774 x = atomic_long_read(&n->total_objects) -
3775 count_partial(n, count_free);
3776
3777 else
3778 x = atomic_long_read(&n->nr_slabs);
3779 total += x;
3780 nodes[node] += x;
3781 }
3782
3783 } else if (flags & SO_PARTIAL) {
3784 for_each_node_state(node, N_NORMAL_MEMORY) {
3785 struct kmem_cache_node *n = get_node(s, node);
3786
3787 if (flags & SO_TOTAL)
3788 x = count_partial(n, count_total);
3789 else if (flags & SO_OBJECTS)
3790 x = count_partial(n, count_inuse);
Christoph Lameter81819f02007-05-06 14:49:36 -07003791 else
3792 x = n->nr_partial;
3793 total += x;
3794 nodes[node] += x;
3795 }
Christoph Lameter81819f02007-05-06 14:49:36 -07003796 }
Christoph Lameter81819f02007-05-06 14:49:36 -07003797 x = sprintf(buf, "%lu", total);
3798#ifdef CONFIG_NUMA
Christoph Lameterf64dc582007-10-16 01:25:33 -07003799 for_each_node_state(node, N_NORMAL_MEMORY)
Christoph Lameter81819f02007-05-06 14:49:36 -07003800 if (nodes[node])
3801 x += sprintf(buf + x, " N%d=%lu",
3802 node, nodes[node]);
3803#endif
3804 kfree(nodes);
3805 return x + sprintf(buf + x, "\n");
3806}
3807
3808static int any_slab_objects(struct kmem_cache *s)
3809{
3810 int node;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07003811
3812 for_each_online_node(node) {
Christoph Lameter81819f02007-05-06 14:49:36 -07003813 struct kmem_cache_node *n = get_node(s, node);
3814
Christoph Lameterdfb4f092007-10-16 01:26:05 -07003815 if (!n)
3816 continue;
3817
Benjamin Herrenschmidt4ea33e22008-05-06 20:42:39 -07003818 if (atomic_long_read(&n->total_objects))
Christoph Lameter81819f02007-05-06 14:49:36 -07003819 return 1;
3820 }
3821 return 0;
3822}
3823
3824#define to_slab_attr(n) container_of(n, struct slab_attribute, attr)
3825#define to_slab(n) container_of(n, struct kmem_cache, kobj);
3826
3827struct slab_attribute {
3828 struct attribute attr;
3829 ssize_t (*show)(struct kmem_cache *s, char *buf);
3830 ssize_t (*store)(struct kmem_cache *s, const char *x, size_t count);
3831};
3832
3833#define SLAB_ATTR_RO(_name) \
3834 static struct slab_attribute _name##_attr = __ATTR_RO(_name)
3835
3836#define SLAB_ATTR(_name) \
3837 static struct slab_attribute _name##_attr = \
3838 __ATTR(_name, 0644, _name##_show, _name##_store)
3839
Christoph Lameter81819f02007-05-06 14:49:36 -07003840static ssize_t slab_size_show(struct kmem_cache *s, char *buf)
3841{
3842 return sprintf(buf, "%d\n", s->size);
3843}
3844SLAB_ATTR_RO(slab_size);
3845
3846static ssize_t align_show(struct kmem_cache *s, char *buf)
3847{
3848 return sprintf(buf, "%d\n", s->align);
3849}
3850SLAB_ATTR_RO(align);
3851
3852static ssize_t object_size_show(struct kmem_cache *s, char *buf)
3853{
3854 return sprintf(buf, "%d\n", s->objsize);
3855}
3856SLAB_ATTR_RO(object_size);
3857
3858static ssize_t objs_per_slab_show(struct kmem_cache *s, char *buf)
3859{
Christoph Lameter834f3d12008-04-14 19:11:31 +03003860 return sprintf(buf, "%d\n", oo_objects(s->oo));
Christoph Lameter81819f02007-05-06 14:49:36 -07003861}
3862SLAB_ATTR_RO(objs_per_slab);
3863
Christoph Lameter06b285d2008-04-14 19:11:41 +03003864static ssize_t order_store(struct kmem_cache *s,
3865 const char *buf, size_t length)
3866{
Christoph Lameter0121c6192008-04-29 16:11:12 -07003867 unsigned long order;
3868 int err;
3869
3870 err = strict_strtoul(buf, 10, &order);
3871 if (err)
3872 return err;
Christoph Lameter06b285d2008-04-14 19:11:41 +03003873
3874 if (order > slub_max_order || order < slub_min_order)
3875 return -EINVAL;
3876
3877 calculate_sizes(s, order);
3878 return length;
3879}
3880
Christoph Lameter81819f02007-05-06 14:49:36 -07003881static ssize_t order_show(struct kmem_cache *s, char *buf)
3882{
Christoph Lameter834f3d12008-04-14 19:11:31 +03003883 return sprintf(buf, "%d\n", oo_order(s->oo));
Christoph Lameter81819f02007-05-06 14:49:36 -07003884}
Christoph Lameter06b285d2008-04-14 19:11:41 +03003885SLAB_ATTR(order);
Christoph Lameter81819f02007-05-06 14:49:36 -07003886
3887static ssize_t ctor_show(struct kmem_cache *s, char *buf)
3888{
3889 if (s->ctor) {
3890 int n = sprint_symbol(buf, (unsigned long)s->ctor);
3891
3892 return n + sprintf(buf + n, "\n");
3893 }
3894 return 0;
3895}
3896SLAB_ATTR_RO(ctor);
3897
Christoph Lameter81819f02007-05-06 14:49:36 -07003898static ssize_t aliases_show(struct kmem_cache *s, char *buf)
3899{
3900 return sprintf(buf, "%d\n", s->refcount - 1);
3901}
3902SLAB_ATTR_RO(aliases);
3903
3904static ssize_t slabs_show(struct kmem_cache *s, char *buf)
3905{
Christoph Lameter205ab992008-04-14 19:11:40 +03003906 return show_slab_objects(s, buf, SO_ALL);
Christoph Lameter81819f02007-05-06 14:49:36 -07003907}
3908SLAB_ATTR_RO(slabs);
3909
3910static ssize_t partial_show(struct kmem_cache *s, char *buf)
3911{
Christoph Lameterd9acf4b2008-02-15 15:22:21 -08003912 return show_slab_objects(s, buf, SO_PARTIAL);
Christoph Lameter81819f02007-05-06 14:49:36 -07003913}
3914SLAB_ATTR_RO(partial);
3915
3916static ssize_t cpu_slabs_show(struct kmem_cache *s, char *buf)
3917{
Christoph Lameterd9acf4b2008-02-15 15:22:21 -08003918 return show_slab_objects(s, buf, SO_CPU);
Christoph Lameter81819f02007-05-06 14:49:36 -07003919}
3920SLAB_ATTR_RO(cpu_slabs);
3921
3922static ssize_t objects_show(struct kmem_cache *s, char *buf)
3923{
Christoph Lameter205ab992008-04-14 19:11:40 +03003924 return show_slab_objects(s, buf, SO_ALL|SO_OBJECTS);
Christoph Lameter81819f02007-05-06 14:49:36 -07003925}
3926SLAB_ATTR_RO(objects);
3927
Christoph Lameter205ab992008-04-14 19:11:40 +03003928static ssize_t objects_partial_show(struct kmem_cache *s, char *buf)
3929{
3930 return show_slab_objects(s, buf, SO_PARTIAL|SO_OBJECTS);
3931}
3932SLAB_ATTR_RO(objects_partial);
3933
3934static ssize_t total_objects_show(struct kmem_cache *s, char *buf)
3935{
3936 return show_slab_objects(s, buf, SO_ALL|SO_TOTAL);
3937}
3938SLAB_ATTR_RO(total_objects);
3939
Christoph Lameter81819f02007-05-06 14:49:36 -07003940static ssize_t sanity_checks_show(struct kmem_cache *s, char *buf)
3941{
3942 return sprintf(buf, "%d\n", !!(s->flags & SLAB_DEBUG_FREE));
3943}
3944
3945static ssize_t sanity_checks_store(struct kmem_cache *s,
3946 const char *buf, size_t length)
3947{
3948 s->flags &= ~SLAB_DEBUG_FREE;
3949 if (buf[0] == '1')
3950 s->flags |= SLAB_DEBUG_FREE;
3951 return length;
3952}
3953SLAB_ATTR(sanity_checks);
3954
3955static ssize_t trace_show(struct kmem_cache *s, char *buf)
3956{
3957 return sprintf(buf, "%d\n", !!(s->flags & SLAB_TRACE));
3958}
3959
3960static ssize_t trace_store(struct kmem_cache *s, const char *buf,
3961 size_t length)
3962{
3963 s->flags &= ~SLAB_TRACE;
3964 if (buf[0] == '1')
3965 s->flags |= SLAB_TRACE;
3966 return length;
3967}
3968SLAB_ATTR(trace);
3969
3970static ssize_t reclaim_account_show(struct kmem_cache *s, char *buf)
3971{
3972 return sprintf(buf, "%d\n", !!(s->flags & SLAB_RECLAIM_ACCOUNT));
3973}
3974
3975static ssize_t reclaim_account_store(struct kmem_cache *s,
3976 const char *buf, size_t length)
3977{
3978 s->flags &= ~SLAB_RECLAIM_ACCOUNT;
3979 if (buf[0] == '1')
3980 s->flags |= SLAB_RECLAIM_ACCOUNT;
3981 return length;
3982}
3983SLAB_ATTR(reclaim_account);
3984
3985static ssize_t hwcache_align_show(struct kmem_cache *s, char *buf)
3986{
Christoph Lameter5af60832007-05-06 14:49:56 -07003987 return sprintf(buf, "%d\n", !!(s->flags & SLAB_HWCACHE_ALIGN));
Christoph Lameter81819f02007-05-06 14:49:36 -07003988}
3989SLAB_ATTR_RO(hwcache_align);
3990
3991#ifdef CONFIG_ZONE_DMA
3992static ssize_t cache_dma_show(struct kmem_cache *s, char *buf)
3993{
3994 return sprintf(buf, "%d\n", !!(s->flags & SLAB_CACHE_DMA));
3995}
3996SLAB_ATTR_RO(cache_dma);
3997#endif
3998
3999static ssize_t destroy_by_rcu_show(struct kmem_cache *s, char *buf)
4000{
4001 return sprintf(buf, "%d\n", !!(s->flags & SLAB_DESTROY_BY_RCU));
4002}
4003SLAB_ATTR_RO(destroy_by_rcu);
4004
4005static ssize_t red_zone_show(struct kmem_cache *s, char *buf)
4006{
4007 return sprintf(buf, "%d\n", !!(s->flags & SLAB_RED_ZONE));
4008}
4009
4010static ssize_t red_zone_store(struct kmem_cache *s,
4011 const char *buf, size_t length)
4012{
4013 if (any_slab_objects(s))
4014 return -EBUSY;
4015
4016 s->flags &= ~SLAB_RED_ZONE;
4017 if (buf[0] == '1')
4018 s->flags |= SLAB_RED_ZONE;
Christoph Lameter06b285d2008-04-14 19:11:41 +03004019 calculate_sizes(s, -1);
Christoph Lameter81819f02007-05-06 14:49:36 -07004020 return length;
4021}
4022SLAB_ATTR(red_zone);
4023
4024static ssize_t poison_show(struct kmem_cache *s, char *buf)
4025{
4026 return sprintf(buf, "%d\n", !!(s->flags & SLAB_POISON));
4027}
4028
4029static ssize_t poison_store(struct kmem_cache *s,
4030 const char *buf, size_t length)
4031{
4032 if (any_slab_objects(s))
4033 return -EBUSY;
4034
4035 s->flags &= ~SLAB_POISON;
4036 if (buf[0] == '1')
4037 s->flags |= SLAB_POISON;
Christoph Lameter06b285d2008-04-14 19:11:41 +03004038 calculate_sizes(s, -1);
Christoph Lameter81819f02007-05-06 14:49:36 -07004039 return length;
4040}
4041SLAB_ATTR(poison);
4042
4043static ssize_t store_user_show(struct kmem_cache *s, char *buf)
4044{
4045 return sprintf(buf, "%d\n", !!(s->flags & SLAB_STORE_USER));
4046}
4047
4048static ssize_t store_user_store(struct kmem_cache *s,
4049 const char *buf, size_t length)
4050{
4051 if (any_slab_objects(s))
4052 return -EBUSY;
4053
4054 s->flags &= ~SLAB_STORE_USER;
4055 if (buf[0] == '1')
4056 s->flags |= SLAB_STORE_USER;
Christoph Lameter06b285d2008-04-14 19:11:41 +03004057 calculate_sizes(s, -1);
Christoph Lameter81819f02007-05-06 14:49:36 -07004058 return length;
4059}
4060SLAB_ATTR(store_user);
4061
Christoph Lameter53e15af2007-05-06 14:49:43 -07004062static ssize_t validate_show(struct kmem_cache *s, char *buf)
4063{
4064 return 0;
4065}
4066
4067static ssize_t validate_store(struct kmem_cache *s,
4068 const char *buf, size_t length)
4069{
Christoph Lameter434e2452007-07-17 04:03:30 -07004070 int ret = -EINVAL;
4071
4072 if (buf[0] == '1') {
4073 ret = validate_slab_cache(s);
4074 if (ret >= 0)
4075 ret = length;
4076 }
4077 return ret;
Christoph Lameter53e15af2007-05-06 14:49:43 -07004078}
4079SLAB_ATTR(validate);
4080
Christoph Lameter2086d262007-05-06 14:49:46 -07004081static ssize_t shrink_show(struct kmem_cache *s, char *buf)
4082{
4083 return 0;
4084}
4085
4086static ssize_t shrink_store(struct kmem_cache *s,
4087 const char *buf, size_t length)
4088{
4089 if (buf[0] == '1') {
4090 int rc = kmem_cache_shrink(s);
4091
4092 if (rc)
4093 return rc;
4094 } else
4095 return -EINVAL;
4096 return length;
4097}
4098SLAB_ATTR(shrink);
4099
Christoph Lameter88a420e2007-05-06 14:49:45 -07004100static ssize_t alloc_calls_show(struct kmem_cache *s, char *buf)
4101{
4102 if (!(s->flags & SLAB_STORE_USER))
4103 return -ENOSYS;
4104 return list_locations(s, buf, TRACK_ALLOC);
4105}
4106SLAB_ATTR_RO(alloc_calls);
4107
4108static ssize_t free_calls_show(struct kmem_cache *s, char *buf)
4109{
4110 if (!(s->flags & SLAB_STORE_USER))
4111 return -ENOSYS;
4112 return list_locations(s, buf, TRACK_FREE);
4113}
4114SLAB_ATTR_RO(free_calls);
4115
Christoph Lameter81819f02007-05-06 14:49:36 -07004116#ifdef CONFIG_NUMA
Christoph Lameter98246012008-01-07 23:20:26 -08004117static ssize_t remote_node_defrag_ratio_show(struct kmem_cache *s, char *buf)
Christoph Lameter81819f02007-05-06 14:49:36 -07004118{
Christoph Lameter98246012008-01-07 23:20:26 -08004119 return sprintf(buf, "%d\n", s->remote_node_defrag_ratio / 10);
Christoph Lameter81819f02007-05-06 14:49:36 -07004120}
4121
Christoph Lameter98246012008-01-07 23:20:26 -08004122static ssize_t remote_node_defrag_ratio_store(struct kmem_cache *s,
Christoph Lameter81819f02007-05-06 14:49:36 -07004123 const char *buf, size_t length)
4124{
Christoph Lameter0121c6192008-04-29 16:11:12 -07004125 unsigned long ratio;
4126 int err;
Christoph Lameter81819f02007-05-06 14:49:36 -07004127
Christoph Lameter0121c6192008-04-29 16:11:12 -07004128 err = strict_strtoul(buf, 10, &ratio);
4129 if (err)
4130 return err;
4131
Christoph Lametere2cb96b2008-08-19 08:51:22 -05004132 if (ratio <= 100)
Christoph Lameter0121c6192008-04-29 16:11:12 -07004133 s->remote_node_defrag_ratio = ratio * 10;
4134
Christoph Lameter81819f02007-05-06 14:49:36 -07004135 return length;
4136}
Christoph Lameter98246012008-01-07 23:20:26 -08004137SLAB_ATTR(remote_node_defrag_ratio);
Christoph Lameter81819f02007-05-06 14:49:36 -07004138#endif
4139
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004140#ifdef CONFIG_SLUB_STATS
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004141static int show_stat(struct kmem_cache *s, char *buf, enum stat_item si)
4142{
4143 unsigned long sum = 0;
4144 int cpu;
4145 int len;
4146 int *data = kmalloc(nr_cpu_ids * sizeof(int), GFP_KERNEL);
4147
4148 if (!data)
4149 return -ENOMEM;
4150
4151 for_each_online_cpu(cpu) {
4152 unsigned x = get_cpu_slab(s, cpu)->stat[si];
4153
4154 data[cpu] = x;
4155 sum += x;
4156 }
4157
4158 len = sprintf(buf, "%lu", sum);
4159
Christoph Lameter50ef37b2008-04-14 18:52:05 +03004160#ifdef CONFIG_SMP
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004161 for_each_online_cpu(cpu) {
4162 if (data[cpu] && len < PAGE_SIZE - 20)
Christoph Lameter50ef37b2008-04-14 18:52:05 +03004163 len += sprintf(buf + len, " C%d=%u", cpu, data[cpu]);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004164 }
Christoph Lameter50ef37b2008-04-14 18:52:05 +03004165#endif
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004166 kfree(data);
4167 return len + sprintf(buf + len, "\n");
4168}
4169
4170#define STAT_ATTR(si, text) \
4171static ssize_t text##_show(struct kmem_cache *s, char *buf) \
4172{ \
4173 return show_stat(s, buf, si); \
4174} \
4175SLAB_ATTR_RO(text); \
4176
4177STAT_ATTR(ALLOC_FASTPATH, alloc_fastpath);
4178STAT_ATTR(ALLOC_SLOWPATH, alloc_slowpath);
4179STAT_ATTR(FREE_FASTPATH, free_fastpath);
4180STAT_ATTR(FREE_SLOWPATH, free_slowpath);
4181STAT_ATTR(FREE_FROZEN, free_frozen);
4182STAT_ATTR(FREE_ADD_PARTIAL, free_add_partial);
4183STAT_ATTR(FREE_REMOVE_PARTIAL, free_remove_partial);
4184STAT_ATTR(ALLOC_FROM_PARTIAL, alloc_from_partial);
4185STAT_ATTR(ALLOC_SLAB, alloc_slab);
4186STAT_ATTR(ALLOC_REFILL, alloc_refill);
4187STAT_ATTR(FREE_SLAB, free_slab);
4188STAT_ATTR(CPUSLAB_FLUSH, cpuslab_flush);
4189STAT_ATTR(DEACTIVATE_FULL, deactivate_full);
4190STAT_ATTR(DEACTIVATE_EMPTY, deactivate_empty);
4191STAT_ATTR(DEACTIVATE_TO_HEAD, deactivate_to_head);
4192STAT_ATTR(DEACTIVATE_TO_TAIL, deactivate_to_tail);
4193STAT_ATTR(DEACTIVATE_REMOTE_FREES, deactivate_remote_frees);
Christoph Lameter65c33762008-04-14 19:11:40 +03004194STAT_ATTR(ORDER_FALLBACK, order_fallback);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004195#endif
4196
Pekka Enberg06428782008-01-07 23:20:27 -08004197static struct attribute *slab_attrs[] = {
Christoph Lameter81819f02007-05-06 14:49:36 -07004198 &slab_size_attr.attr,
4199 &object_size_attr.attr,
4200 &objs_per_slab_attr.attr,
4201 &order_attr.attr,
4202 &objects_attr.attr,
Christoph Lameter205ab992008-04-14 19:11:40 +03004203 &objects_partial_attr.attr,
4204 &total_objects_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07004205 &slabs_attr.attr,
4206 &partial_attr.attr,
4207 &cpu_slabs_attr.attr,
4208 &ctor_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07004209 &aliases_attr.attr,
4210 &align_attr.attr,
4211 &sanity_checks_attr.attr,
4212 &trace_attr.attr,
4213 &hwcache_align_attr.attr,
4214 &reclaim_account_attr.attr,
4215 &destroy_by_rcu_attr.attr,
4216 &red_zone_attr.attr,
4217 &poison_attr.attr,
4218 &store_user_attr.attr,
Christoph Lameter53e15af2007-05-06 14:49:43 -07004219 &validate_attr.attr,
Christoph Lameter2086d262007-05-06 14:49:46 -07004220 &shrink_attr.attr,
Christoph Lameter88a420e2007-05-06 14:49:45 -07004221 &alloc_calls_attr.attr,
4222 &free_calls_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07004223#ifdef CONFIG_ZONE_DMA
4224 &cache_dma_attr.attr,
4225#endif
4226#ifdef CONFIG_NUMA
Christoph Lameter98246012008-01-07 23:20:26 -08004227 &remote_node_defrag_ratio_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07004228#endif
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004229#ifdef CONFIG_SLUB_STATS
4230 &alloc_fastpath_attr.attr,
4231 &alloc_slowpath_attr.attr,
4232 &free_fastpath_attr.attr,
4233 &free_slowpath_attr.attr,
4234 &free_frozen_attr.attr,
4235 &free_add_partial_attr.attr,
4236 &free_remove_partial_attr.attr,
4237 &alloc_from_partial_attr.attr,
4238 &alloc_slab_attr.attr,
4239 &alloc_refill_attr.attr,
4240 &free_slab_attr.attr,
4241 &cpuslab_flush_attr.attr,
4242 &deactivate_full_attr.attr,
4243 &deactivate_empty_attr.attr,
4244 &deactivate_to_head_attr.attr,
4245 &deactivate_to_tail_attr.attr,
4246 &deactivate_remote_frees_attr.attr,
Christoph Lameter65c33762008-04-14 19:11:40 +03004247 &order_fallback_attr.attr,
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004248#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07004249 NULL
4250};
4251
4252static struct attribute_group slab_attr_group = {
4253 .attrs = slab_attrs,
4254};
4255
4256static ssize_t slab_attr_show(struct kobject *kobj,
4257 struct attribute *attr,
4258 char *buf)
4259{
4260 struct slab_attribute *attribute;
4261 struct kmem_cache *s;
4262 int err;
4263
4264 attribute = to_slab_attr(attr);
4265 s = to_slab(kobj);
4266
4267 if (!attribute->show)
4268 return -EIO;
4269
4270 err = attribute->show(s, buf);
4271
4272 return err;
4273}
4274
4275static ssize_t slab_attr_store(struct kobject *kobj,
4276 struct attribute *attr,
4277 const char *buf, size_t len)
4278{
4279 struct slab_attribute *attribute;
4280 struct kmem_cache *s;
4281 int err;
4282
4283 attribute = to_slab_attr(attr);
4284 s = to_slab(kobj);
4285
4286 if (!attribute->store)
4287 return -EIO;
4288
4289 err = attribute->store(s, buf, len);
4290
4291 return err;
4292}
4293
Christoph Lameter151c6022008-01-07 22:29:05 -08004294static void kmem_cache_release(struct kobject *kobj)
4295{
4296 struct kmem_cache *s = to_slab(kobj);
4297
4298 kfree(s);
4299}
4300
Christoph Lameter81819f02007-05-06 14:49:36 -07004301static struct sysfs_ops slab_sysfs_ops = {
4302 .show = slab_attr_show,
4303 .store = slab_attr_store,
4304};
4305
4306static struct kobj_type slab_ktype = {
4307 .sysfs_ops = &slab_sysfs_ops,
Christoph Lameter151c6022008-01-07 22:29:05 -08004308 .release = kmem_cache_release
Christoph Lameter81819f02007-05-06 14:49:36 -07004309};
4310
4311static int uevent_filter(struct kset *kset, struct kobject *kobj)
4312{
4313 struct kobj_type *ktype = get_ktype(kobj);
4314
4315 if (ktype == &slab_ktype)
4316 return 1;
4317 return 0;
4318}
4319
4320static struct kset_uevent_ops slab_uevent_ops = {
4321 .filter = uevent_filter,
4322};
4323
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06004324static struct kset *slab_kset;
Christoph Lameter81819f02007-05-06 14:49:36 -07004325
4326#define ID_STR_LENGTH 64
4327
4328/* Create a unique string id for a slab cache:
Christoph Lameter6446faa2008-02-15 23:45:26 -08004329 *
4330 * Format :[flags-]size
Christoph Lameter81819f02007-05-06 14:49:36 -07004331 */
4332static char *create_unique_id(struct kmem_cache *s)
4333{
4334 char *name = kmalloc(ID_STR_LENGTH, GFP_KERNEL);
4335 char *p = name;
4336
4337 BUG_ON(!name);
4338
4339 *p++ = ':';
4340 /*
4341 * First flags affecting slabcache operations. We will only
4342 * get here for aliasable slabs so we do not need to support
4343 * too many flags. The flags here must cover all flags that
4344 * are matched during merging to guarantee that the id is
4345 * unique.
4346 */
4347 if (s->flags & SLAB_CACHE_DMA)
4348 *p++ = 'd';
4349 if (s->flags & SLAB_RECLAIM_ACCOUNT)
4350 *p++ = 'a';
4351 if (s->flags & SLAB_DEBUG_FREE)
4352 *p++ = 'F';
4353 if (p != name + 1)
4354 *p++ = '-';
4355 p += sprintf(p, "%07d", s->size);
4356 BUG_ON(p > name + ID_STR_LENGTH - 1);
4357 return name;
4358}
4359
4360static int sysfs_slab_add(struct kmem_cache *s)
4361{
4362 int err;
4363 const char *name;
4364 int unmergeable;
4365
4366 if (slab_state < SYSFS)
4367 /* Defer until later */
4368 return 0;
4369
4370 unmergeable = slab_unmergeable(s);
4371 if (unmergeable) {
4372 /*
4373 * Slabcache can never be merged so we can use the name proper.
4374 * This is typically the case for debug situations. In that
4375 * case we can catch duplicate names easily.
4376 */
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06004377 sysfs_remove_link(&slab_kset->kobj, s->name);
Christoph Lameter81819f02007-05-06 14:49:36 -07004378 name = s->name;
4379 } else {
4380 /*
4381 * Create a unique name for the slab as a target
4382 * for the symlinks.
4383 */
4384 name = create_unique_id(s);
4385 }
4386
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06004387 s->kobj.kset = slab_kset;
Greg Kroah-Hartman1eada112007-12-17 23:05:35 -07004388 err = kobject_init_and_add(&s->kobj, &slab_ktype, NULL, name);
4389 if (err) {
4390 kobject_put(&s->kobj);
Christoph Lameter81819f02007-05-06 14:49:36 -07004391 return err;
Greg Kroah-Hartman1eada112007-12-17 23:05:35 -07004392 }
Christoph Lameter81819f02007-05-06 14:49:36 -07004393
4394 err = sysfs_create_group(&s->kobj, &slab_attr_group);
4395 if (err)
4396 return err;
4397 kobject_uevent(&s->kobj, KOBJ_ADD);
4398 if (!unmergeable) {
4399 /* Setup first alias */
4400 sysfs_slab_alias(s, s->name);
4401 kfree(name);
4402 }
4403 return 0;
4404}
4405
4406static void sysfs_slab_remove(struct kmem_cache *s)
4407{
4408 kobject_uevent(&s->kobj, KOBJ_REMOVE);
4409 kobject_del(&s->kobj);
Christoph Lameter151c6022008-01-07 22:29:05 -08004410 kobject_put(&s->kobj);
Christoph Lameter81819f02007-05-06 14:49:36 -07004411}
4412
4413/*
4414 * Need to buffer aliases during bootup until sysfs becomes
4415 * available lest we loose that information.
4416 */
4417struct saved_alias {
4418 struct kmem_cache *s;
4419 const char *name;
4420 struct saved_alias *next;
4421};
4422
Adrian Bunk5af328a2007-07-17 04:03:27 -07004423static struct saved_alias *alias_list;
Christoph Lameter81819f02007-05-06 14:49:36 -07004424
4425static int sysfs_slab_alias(struct kmem_cache *s, const char *name)
4426{
4427 struct saved_alias *al;
4428
4429 if (slab_state == SYSFS) {
4430 /*
4431 * If we have a leftover link then remove it.
4432 */
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06004433 sysfs_remove_link(&slab_kset->kobj, name);
4434 return sysfs_create_link(&slab_kset->kobj, &s->kobj, name);
Christoph Lameter81819f02007-05-06 14:49:36 -07004435 }
4436
4437 al = kmalloc(sizeof(struct saved_alias), GFP_KERNEL);
4438 if (!al)
4439 return -ENOMEM;
4440
4441 al->s = s;
4442 al->name = name;
4443 al->next = alias_list;
4444 alias_list = al;
4445 return 0;
4446}
4447
4448static int __init slab_sysfs_init(void)
4449{
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07004450 struct kmem_cache *s;
Christoph Lameter81819f02007-05-06 14:49:36 -07004451 int err;
4452
Greg Kroah-Hartman0ff21e42007-11-06 10:36:58 -08004453 slab_kset = kset_create_and_add("slab", &slab_uevent_ops, kernel_kobj);
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06004454 if (!slab_kset) {
Christoph Lameter81819f02007-05-06 14:49:36 -07004455 printk(KERN_ERR "Cannot register slab subsystem.\n");
4456 return -ENOSYS;
4457 }
4458
Christoph Lameter26a7bd02007-05-09 02:32:39 -07004459 slab_state = SYSFS;
4460
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07004461 list_for_each_entry(s, &slab_caches, list) {
Christoph Lameter26a7bd02007-05-09 02:32:39 -07004462 err = sysfs_slab_add(s);
Christoph Lameter5d540fb2007-08-30 23:56:26 -07004463 if (err)
4464 printk(KERN_ERR "SLUB: Unable to add boot slab %s"
4465 " to sysfs\n", s->name);
Christoph Lameter26a7bd02007-05-09 02:32:39 -07004466 }
Christoph Lameter81819f02007-05-06 14:49:36 -07004467
4468 while (alias_list) {
4469 struct saved_alias *al = alias_list;
4470
4471 alias_list = alias_list->next;
4472 err = sysfs_slab_alias(al->s, al->name);
Christoph Lameter5d540fb2007-08-30 23:56:26 -07004473 if (err)
4474 printk(KERN_ERR "SLUB: Unable to add boot slab alias"
4475 " %s to sysfs\n", s->name);
Christoph Lameter81819f02007-05-06 14:49:36 -07004476 kfree(al);
4477 }
4478
4479 resiliency_test();
4480 return 0;
4481}
4482
4483__initcall(slab_sysfs_init);
Christoph Lameter81819f02007-05-06 14:49:36 -07004484#endif
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004485
4486/*
4487 * The /proc/slabinfo ABI
4488 */
Linus Torvalds158a9622008-01-02 13:04:48 -08004489#ifdef CONFIG_SLABINFO
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004490static void print_slabinfo_header(struct seq_file *m)
4491{
4492 seq_puts(m, "slabinfo - version: 2.1\n");
4493 seq_puts(m, "# name <active_objs> <num_objs> <objsize> "
4494 "<objperslab> <pagesperslab>");
4495 seq_puts(m, " : tunables <limit> <batchcount> <sharedfactor>");
4496 seq_puts(m, " : slabdata <active_slabs> <num_slabs> <sharedavail>");
4497 seq_putc(m, '\n');
4498}
4499
4500static void *s_start(struct seq_file *m, loff_t *pos)
4501{
4502 loff_t n = *pos;
4503
4504 down_read(&slub_lock);
4505 if (!n)
4506 print_slabinfo_header(m);
4507
4508 return seq_list_start(&slab_caches, *pos);
4509}
4510
4511static void *s_next(struct seq_file *m, void *p, loff_t *pos)
4512{
4513 return seq_list_next(p, &slab_caches, pos);
4514}
4515
4516static void s_stop(struct seq_file *m, void *p)
4517{
4518 up_read(&slub_lock);
4519}
4520
4521static int s_show(struct seq_file *m, void *p)
4522{
4523 unsigned long nr_partials = 0;
4524 unsigned long nr_slabs = 0;
4525 unsigned long nr_inuse = 0;
Christoph Lameter205ab992008-04-14 19:11:40 +03004526 unsigned long nr_objs = 0;
4527 unsigned long nr_free = 0;
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004528 struct kmem_cache *s;
4529 int node;
4530
4531 s = list_entry(p, struct kmem_cache, list);
4532
4533 for_each_online_node(node) {
4534 struct kmem_cache_node *n = get_node(s, node);
4535
4536 if (!n)
4537 continue;
4538
4539 nr_partials += n->nr_partial;
4540 nr_slabs += atomic_long_read(&n->nr_slabs);
Christoph Lameter205ab992008-04-14 19:11:40 +03004541 nr_objs += atomic_long_read(&n->total_objects);
4542 nr_free += count_partial(n, count_free);
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004543 }
4544
Christoph Lameter205ab992008-04-14 19:11:40 +03004545 nr_inuse = nr_objs - nr_free;
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004546
4547 seq_printf(m, "%-17s %6lu %6lu %6u %4u %4d", s->name, nr_inuse,
Christoph Lameter834f3d12008-04-14 19:11:31 +03004548 nr_objs, s->size, oo_objects(s->oo),
4549 (1 << oo_order(s->oo)));
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004550 seq_printf(m, " : tunables %4u %4u %4u", 0, 0, 0);
4551 seq_printf(m, " : slabdata %6lu %6lu %6lu", nr_slabs, nr_slabs,
4552 0UL);
4553 seq_putc(m, '\n');
4554 return 0;
4555}
4556
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04004557static const struct seq_operations slabinfo_op = {
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004558 .start = s_start,
4559 .next = s_next,
4560 .stop = s_stop,
4561 .show = s_show,
4562};
4563
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04004564static int slabinfo_open(struct inode *inode, struct file *file)
4565{
4566 return seq_open(file, &slabinfo_op);
4567}
4568
4569static const struct file_operations proc_slabinfo_operations = {
4570 .open = slabinfo_open,
4571 .read = seq_read,
4572 .llseek = seq_lseek,
4573 .release = seq_release,
4574};
4575
4576static int __init slab_proc_init(void)
4577{
4578 proc_create("slabinfo",S_IWUSR|S_IRUGO,NULL,&proc_slabinfo_operations);
4579 return 0;
4580}
4581module_init(slab_proc_init);
Linus Torvalds158a9622008-01-02 13:04:48 -08004582#endif /* CONFIG_SLABINFO */