blob: 7bb7940f4eeea2a686937d69795c3acb95077297 [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>
Nick Piggin1eb5ac62009-05-05 19:13:44 +100012#include <linux/swap.h> /* struct reclaim_state */
Christoph Lameter81819f02007-05-06 14:49:36 -070013#include <linux/module.h>
14#include <linux/bit_spinlock.h>
15#include <linux/interrupt.h>
16#include <linux/bitops.h>
17#include <linux/slab.h>
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +040018#include <linux/proc_fs.h>
Christoph Lameter81819f02007-05-06 14:49:36 -070019#include <linux/seq_file.h>
Vegard Nossum5a896d92008-04-04 00:54:48 +020020#include <linux/kmemcheck.h>
Christoph Lameter81819f02007-05-06 14:49:36 -070021#include <linux/cpu.h>
22#include <linux/cpuset.h>
23#include <linux/mempolicy.h>
24#include <linux/ctype.h>
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -070025#include <linux/debugobjects.h>
Christoph Lameter81819f02007-05-06 14:49:36 -070026#include <linux/kallsyms.h>
Yasunori Gotob9049e22007-10-21 16:41:37 -070027#include <linux/memory.h>
Roman Zippelf8bd2252008-05-01 04:34:31 -070028#include <linux/math64.h>
Akinobu Mita773ff602008-12-23 19:37:01 +090029#include <linux/fault-inject.h>
Christoph Lameter81819f02007-05-06 14:49:36 -070030
31/*
32 * Lock order:
33 * 1. slab_lock(page)
34 * 2. slab->list_lock
35 *
36 * The slab_lock protects operations on the object of a particular
37 * slab and its metadata in the page struct. If the slab lock
38 * has been taken then no allocations nor frees can be performed
39 * on the objects in the slab nor can the slab be added or removed
40 * from the partial or full lists since this would mean modifying
41 * the page_struct of the slab.
42 *
43 * The list_lock protects the partial and full list on each node and
44 * the partial slab counter. If taken then no new slabs may be added or
45 * removed from the lists nor make the number of partial slabs be modified.
46 * (Note that the total number of slabs is an atomic value that may be
47 * modified without taking the list lock).
48 *
49 * The list_lock is a centralized lock and thus we avoid taking it as
50 * much as possible. As long as SLUB does not have to handle partial
51 * slabs, operations can continue without any centralized lock. F.e.
52 * allocating a long series of objects that fill up slabs does not require
53 * the list lock.
54 *
55 * The lock order is sometimes inverted when we are trying to get a slab
56 * off a list. We take the list_lock and then look for a page on the list
57 * to use. While we do that objects in the slabs may be freed. We can
58 * only operate on the slab if we have also taken the slab_lock. So we use
59 * a slab_trylock() on the slab. If trylock was successful then no frees
60 * can occur anymore and we can use the slab for allocations etc. If the
61 * slab_trylock() does not succeed then frees are in progress in the slab and
62 * we must stay away from it for a while since we may cause a bouncing
63 * cacheline if we try to acquire the lock. So go onto the next slab.
64 * If all pages are busy then we may allocate a new slab instead of reusing
65 * a partial slab. A new slab has noone operating on it and thus there is
66 * no danger of cacheline contention.
67 *
68 * Interrupts are disabled during allocation and deallocation in order to
69 * make the slab allocator safe to use in the context of an irq. In addition
70 * interrupts are disabled to ensure that the processor does not change
71 * while handling per_cpu slabs, due to kernel preemption.
72 *
73 * SLUB assigns one slab for allocation to each processor.
74 * Allocations only occur from these slabs called cpu slabs.
75 *
Christoph Lameter672bba32007-05-09 02:32:39 -070076 * Slabs with free elements are kept on a partial list and during regular
77 * operations no list for full slabs is used. If an object in a full slab is
Christoph Lameter81819f02007-05-06 14:49:36 -070078 * freed then the slab will show up again on the partial lists.
Christoph Lameter672bba32007-05-09 02:32:39 -070079 * We track full slabs for debugging purposes though because otherwise we
80 * cannot scan all objects.
Christoph Lameter81819f02007-05-06 14:49:36 -070081 *
82 * Slabs are freed when they become empty. Teardown and setup is
83 * minimal so we rely on the page allocators per cpu caches for
84 * fast frees and allocs.
85 *
86 * Overloading of page flags that are otherwise used for LRU management.
87 *
Christoph Lameter4b6f0752007-05-16 22:10:53 -070088 * PageActive The slab is frozen and exempt from list processing.
89 * This means that the slab is dedicated to a purpose
90 * such as satisfying allocations for a specific
91 * processor. Objects may be freed in the slab while
92 * it is frozen but slab_free will then skip the usual
93 * list operations. It is up to the processor holding
94 * the slab to integrate the slab into the slab lists
95 * when the slab is no longer needed.
96 *
97 * One use of this flag is to mark slabs that are
98 * used for allocations. Then such a slab becomes a cpu
99 * slab. The cpu slab may be equipped with an additional
Christoph Lameterdfb4f092007-10-16 01:26:05 -0700100 * freelist that allows lockless access to
Christoph Lameter894b8782007-05-10 03:15:16 -0700101 * free objects in addition to the regular freelist
102 * that requires the slab lock.
Christoph Lameter81819f02007-05-06 14:49:36 -0700103 *
104 * PageError Slab requires special handling due to debug
105 * options set. This moves slab handling out of
Christoph Lameter894b8782007-05-10 03:15:16 -0700106 * the fast path and disables lockless freelists.
Christoph Lameter81819f02007-05-06 14:49:36 -0700107 */
108
Christoph Lameter5577bd82007-05-16 22:10:56 -0700109#ifdef CONFIG_SLUB_DEBUG
Andy Whitcroft8a380822008-07-23 21:27:18 -0700110#define SLABDEBUG 1
Christoph Lameter5577bd82007-05-16 22:10:56 -0700111#else
112#define SLABDEBUG 0
113#endif
114
Christoph Lameter81819f02007-05-06 14:49:36 -0700115/*
116 * Issues still to be resolved:
117 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700118 * - Support PAGE_ALLOC_DEBUG. Should be easy to do.
119 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700120 * - Variable sizing of the per node arrays
121 */
122
123/* Enable to test recovery from slab corruption on boot */
124#undef SLUB_RESILIENCY_TEST
125
Christoph Lameter81819f02007-05-06 14:49:36 -0700126/*
Christoph Lameter2086d262007-05-06 14:49:46 -0700127 * Mininum number of partial slabs. These will be left on the partial
128 * lists even if they are empty. kmem_cache_shrink may reclaim them.
129 */
Christoph Lameter76be8952007-12-21 14:37:37 -0800130#define MIN_PARTIAL 5
Christoph Lametere95eed52007-05-06 14:49:44 -0700131
Christoph Lameter2086d262007-05-06 14:49:46 -0700132/*
133 * Maximum number of desirable partial slabs.
134 * The existence of more partial slabs makes kmem_cache_shrink
135 * sort the partial list by the number of objects in the.
136 */
137#define MAX_PARTIAL 10
138
Christoph Lameter81819f02007-05-06 14:49:36 -0700139#define DEBUG_DEFAULT_FLAGS (SLAB_DEBUG_FREE | SLAB_RED_ZONE | \
140 SLAB_POISON | SLAB_STORE_USER)
Christoph Lameter672bba32007-05-09 02:32:39 -0700141
Christoph Lameter81819f02007-05-06 14:49:36 -0700142/*
David Rientjes3de47212009-07-27 18:30:35 -0700143 * Debugging flags that require metadata to be stored in the slab. These get
144 * disabled when slub_debug=O is used and a cache's min order increases with
145 * metadata.
David Rientjesfa5ec8a2009-07-07 00:14:14 -0700146 */
David Rientjes3de47212009-07-27 18:30:35 -0700147#define DEBUG_METADATA_FLAGS (SLAB_RED_ZONE | SLAB_POISON | SLAB_STORE_USER)
David Rientjesfa5ec8a2009-07-07 00:14:14 -0700148
149/*
Christoph Lameter81819f02007-05-06 14:49:36 -0700150 * Set of flags that will prevent slab merging
151 */
152#define SLUB_NEVER_MERGE (SLAB_RED_ZONE | SLAB_POISON | SLAB_STORE_USER | \
Dmitry Monakhov4c13dd32010-02-26 09:36:12 +0300153 SLAB_TRACE | SLAB_DESTROY_BY_RCU | SLAB_NOLEAKTRACE | \
154 SLAB_FAILSLAB)
Christoph Lameter81819f02007-05-06 14:49:36 -0700155
156#define SLUB_MERGE_SAME (SLAB_DEBUG_FREE | SLAB_RECLAIM_ACCOUNT | \
Vegard Nossum5a896d92008-04-04 00:54:48 +0200157 SLAB_CACHE_DMA | SLAB_NOTRACK)
Christoph Lameter81819f02007-05-06 14:49:36 -0700158
Cyrill Gorcunov210b5c02008-10-22 23:00:38 +0400159#define OO_SHIFT 16
160#define OO_MASK ((1 << OO_SHIFT) - 1)
161#define MAX_OBJS_PER_PAGE 65535 /* since page.objects is u16 */
162
Christoph Lameter81819f02007-05-06 14:49:36 -0700163/* Internal SLUB flags */
Christoph Lameter1ceef402007-08-07 15:11:48 -0700164#define __OBJECT_POISON 0x80000000 /* Poison object */
165#define __SYSFS_ADD_DEFERRED 0x40000000 /* Not yet visible via sysfs */
Christoph Lameter81819f02007-05-06 14:49:36 -0700166
167static int kmem_size = sizeof(struct kmem_cache);
168
169#ifdef CONFIG_SMP
170static struct notifier_block slab_notifier;
171#endif
172
173static enum {
174 DOWN, /* No slab functionality available */
175 PARTIAL, /* kmem_cache_open() works but kmalloc does not */
Christoph Lameter672bba32007-05-09 02:32:39 -0700176 UP, /* Everything works but does not show up in sysfs */
Christoph Lameter81819f02007-05-06 14:49:36 -0700177 SYSFS /* Sysfs up */
178} slab_state = DOWN;
179
180/* A list of all slab caches on the system */
181static DECLARE_RWSEM(slub_lock);
Adrian Bunk5af328a2007-07-17 04:03:27 -0700182static LIST_HEAD(slab_caches);
Christoph Lameter81819f02007-05-06 14:49:36 -0700183
Christoph Lameter02cbc872007-05-09 02:32:43 -0700184/*
185 * Tracking user of a slab.
186 */
187struct track {
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +0300188 unsigned long addr; /* Called from address */
Christoph Lameter02cbc872007-05-09 02:32:43 -0700189 int cpu; /* Was running on cpu */
190 int pid; /* Pid context */
191 unsigned long when; /* When did the operation occur */
192};
193
194enum track_item { TRACK_ALLOC, TRACK_FREE };
195
Christoph Lameterf6acb632008-04-29 16:16:06 -0700196#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter81819f02007-05-06 14:49:36 -0700197static int sysfs_slab_add(struct kmem_cache *);
198static int sysfs_slab_alias(struct kmem_cache *, const char *);
199static void sysfs_slab_remove(struct kmem_cache *);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -0800200
Christoph Lameter81819f02007-05-06 14:49:36 -0700201#else
Christoph Lameter0c710012007-07-17 04:03:24 -0700202static inline int sysfs_slab_add(struct kmem_cache *s) { return 0; }
203static inline int sysfs_slab_alias(struct kmem_cache *s, const char *p)
204 { return 0; }
Christoph Lameter151c6022008-01-07 22:29:05 -0800205static inline void sysfs_slab_remove(struct kmem_cache *s)
206{
207 kfree(s);
208}
Christoph Lameter8ff12cf2008-02-07 17:47:41 -0800209
Christoph Lameter81819f02007-05-06 14:49:36 -0700210#endif
211
Christoph Lameter84e554e2009-12-18 16:26:23 -0600212static inline void stat(struct kmem_cache *s, enum stat_item si)
Christoph Lameter8ff12cf2008-02-07 17:47:41 -0800213{
214#ifdef CONFIG_SLUB_STATS
Christoph Lameter84e554e2009-12-18 16:26:23 -0600215 __this_cpu_inc(s->cpu_slab->stat[si]);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -0800216#endif
217}
218
Christoph Lameter81819f02007-05-06 14:49:36 -0700219/********************************************************************
220 * Core slab cache functions
221 *******************************************************************/
222
223int slab_is_available(void)
224{
225 return slab_state >= UP;
226}
227
228static inline struct kmem_cache_node *get_node(struct kmem_cache *s, int node)
229{
230#ifdef CONFIG_NUMA
231 return s->node[node];
232#else
233 return &s->local_node;
234#endif
235}
236
Christoph Lameter6446faa2008-02-15 23:45:26 -0800237/* Verify that a pointer has an address that is valid within a slab page */
Christoph Lameter02cbc872007-05-09 02:32:43 -0700238static inline int check_valid_pointer(struct kmem_cache *s,
239 struct page *page, const void *object)
240{
241 void *base;
242
Christoph Lametera973e9d2008-03-01 13:40:44 -0800243 if (!object)
Christoph Lameter02cbc872007-05-09 02:32:43 -0700244 return 1;
245
Christoph Lametera973e9d2008-03-01 13:40:44 -0800246 base = page_address(page);
Christoph Lameter39b26462008-04-14 19:11:30 +0300247 if (object < base || object >= base + page->objects * s->size ||
Christoph Lameter02cbc872007-05-09 02:32:43 -0700248 (object - base) % s->size) {
249 return 0;
250 }
251
252 return 1;
253}
254
Christoph Lameter7656c722007-05-09 02:32:40 -0700255static inline void *get_freepointer(struct kmem_cache *s, void *object)
256{
257 return *(void **)(object + s->offset);
258}
259
260static inline void set_freepointer(struct kmem_cache *s, void *object, void *fp)
261{
262 *(void **)(object + s->offset) = fp;
263}
264
265/* Loop over all objects in a slab */
Christoph Lameter224a88b2008-04-14 19:11:31 +0300266#define for_each_object(__p, __s, __addr, __objects) \
267 for (__p = (__addr); __p < (__addr) + (__objects) * (__s)->size;\
Christoph Lameter7656c722007-05-09 02:32:40 -0700268 __p += (__s)->size)
269
270/* Scan freelist */
271#define for_each_free_object(__p, __s, __free) \
Christoph Lametera973e9d2008-03-01 13:40:44 -0800272 for (__p = (__free); __p; __p = get_freepointer((__s), __p))
Christoph Lameter7656c722007-05-09 02:32:40 -0700273
274/* Determine object index from a given position */
275static inline int slab_index(void *p, struct kmem_cache *s, void *addr)
276{
277 return (p - addr) / s->size;
278}
279
Christoph Lameter834f3d12008-04-14 19:11:31 +0300280static inline struct kmem_cache_order_objects oo_make(int order,
281 unsigned long size)
282{
283 struct kmem_cache_order_objects x = {
Cyrill Gorcunov210b5c02008-10-22 23:00:38 +0400284 (order << OO_SHIFT) + (PAGE_SIZE << order) / size
Christoph Lameter834f3d12008-04-14 19:11:31 +0300285 };
286
287 return x;
288}
289
290static inline int oo_order(struct kmem_cache_order_objects x)
291{
Cyrill Gorcunov210b5c02008-10-22 23:00:38 +0400292 return x.x >> OO_SHIFT;
Christoph Lameter834f3d12008-04-14 19:11:31 +0300293}
294
295static inline int oo_objects(struct kmem_cache_order_objects x)
296{
Cyrill Gorcunov210b5c02008-10-22 23:00:38 +0400297 return x.x & OO_MASK;
Christoph Lameter834f3d12008-04-14 19:11:31 +0300298}
299
Christoph Lameter41ecc552007-05-09 02:32:44 -0700300#ifdef CONFIG_SLUB_DEBUG
301/*
302 * Debug settings:
303 */
Christoph Lameterf0630ff2007-07-15 23:38:14 -0700304#ifdef CONFIG_SLUB_DEBUG_ON
305static int slub_debug = DEBUG_DEFAULT_FLAGS;
306#else
Christoph Lameter41ecc552007-05-09 02:32:44 -0700307static int slub_debug;
Christoph Lameterf0630ff2007-07-15 23:38:14 -0700308#endif
Christoph Lameter41ecc552007-05-09 02:32:44 -0700309
310static char *slub_debug_slabs;
David Rientjesfa5ec8a2009-07-07 00:14:14 -0700311static int disable_higher_order_debug;
Christoph Lameter41ecc552007-05-09 02:32:44 -0700312
Christoph Lameter7656c722007-05-09 02:32:40 -0700313/*
Christoph Lameter81819f02007-05-06 14:49:36 -0700314 * Object debugging
315 */
316static void print_section(char *text, u8 *addr, unsigned int length)
317{
318 int i, offset;
319 int newline = 1;
320 char ascii[17];
321
322 ascii[16] = 0;
323
324 for (i = 0; i < length; i++) {
325 if (newline) {
Christoph Lameter24922682007-07-17 04:03:18 -0700326 printk(KERN_ERR "%8s 0x%p: ", text, addr + i);
Christoph Lameter81819f02007-05-06 14:49:36 -0700327 newline = 0;
328 }
Pekka Enberg06428782008-01-07 23:20:27 -0800329 printk(KERN_CONT " %02x", addr[i]);
Christoph Lameter81819f02007-05-06 14:49:36 -0700330 offset = i % 16;
331 ascii[offset] = isgraph(addr[i]) ? addr[i] : '.';
332 if (offset == 15) {
Pekka Enberg06428782008-01-07 23:20:27 -0800333 printk(KERN_CONT " %s\n", ascii);
Christoph Lameter81819f02007-05-06 14:49:36 -0700334 newline = 1;
335 }
336 }
337 if (!newline) {
338 i %= 16;
339 while (i < 16) {
Pekka Enberg06428782008-01-07 23:20:27 -0800340 printk(KERN_CONT " ");
Christoph Lameter81819f02007-05-06 14:49:36 -0700341 ascii[i] = ' ';
342 i++;
343 }
Pekka Enberg06428782008-01-07 23:20:27 -0800344 printk(KERN_CONT " %s\n", ascii);
Christoph Lameter81819f02007-05-06 14:49:36 -0700345 }
346}
347
Christoph Lameter81819f02007-05-06 14:49:36 -0700348static struct track *get_track(struct kmem_cache *s, void *object,
349 enum track_item alloc)
350{
351 struct track *p;
352
353 if (s->offset)
354 p = object + s->offset + sizeof(void *);
355 else
356 p = object + s->inuse;
357
358 return p + alloc;
359}
360
361static void set_track(struct kmem_cache *s, void *object,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +0300362 enum track_item alloc, unsigned long addr)
Christoph Lameter81819f02007-05-06 14:49:36 -0700363{
Akinobu Mita1a00df42009-03-07 00:36:21 +0900364 struct track *p = get_track(s, object, alloc);
Christoph Lameter81819f02007-05-06 14:49:36 -0700365
Christoph Lameter81819f02007-05-06 14:49:36 -0700366 if (addr) {
367 p->addr = addr;
368 p->cpu = smp_processor_id();
Alexey Dobriyan88e4ccf2008-06-23 02:58:37 +0400369 p->pid = current->pid;
Christoph Lameter81819f02007-05-06 14:49:36 -0700370 p->when = jiffies;
371 } else
372 memset(p, 0, sizeof(struct track));
373}
374
Christoph Lameter81819f02007-05-06 14:49:36 -0700375static void init_tracking(struct kmem_cache *s, void *object)
376{
Christoph Lameter24922682007-07-17 04:03:18 -0700377 if (!(s->flags & SLAB_STORE_USER))
378 return;
379
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +0300380 set_track(s, object, TRACK_FREE, 0UL);
381 set_track(s, object, TRACK_ALLOC, 0UL);
Christoph Lameter81819f02007-05-06 14:49:36 -0700382}
383
384static void print_track(const char *s, struct track *t)
385{
386 if (!t->addr)
387 return;
388
Linus Torvalds7daf7052008-07-14 12:12:53 -0700389 printk(KERN_ERR "INFO: %s in %pS age=%lu cpu=%u pid=%d\n",
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +0300390 s, (void *)t->addr, jiffies - t->when, t->cpu, t->pid);
Christoph Lameter81819f02007-05-06 14:49:36 -0700391}
392
Christoph Lameter24922682007-07-17 04:03:18 -0700393static void print_tracking(struct kmem_cache *s, void *object)
394{
395 if (!(s->flags & SLAB_STORE_USER))
396 return;
397
398 print_track("Allocated", get_track(s, object, TRACK_ALLOC));
399 print_track("Freed", get_track(s, object, TRACK_FREE));
400}
401
402static void print_page_info(struct page *page)
403{
Christoph Lameter39b26462008-04-14 19:11:30 +0300404 printk(KERN_ERR "INFO: Slab 0x%p objects=%u used=%u fp=0x%p flags=0x%04lx\n",
405 page, page->objects, page->inuse, page->freelist, page->flags);
Christoph Lameter24922682007-07-17 04:03:18 -0700406
407}
408
409static void slab_bug(struct kmem_cache *s, char *fmt, ...)
410{
411 va_list args;
412 char buf[100];
413
414 va_start(args, fmt);
415 vsnprintf(buf, sizeof(buf), fmt, args);
416 va_end(args);
417 printk(KERN_ERR "========================================"
418 "=====================================\n");
419 printk(KERN_ERR "BUG %s: %s\n", s->name, buf);
420 printk(KERN_ERR "----------------------------------------"
421 "-------------------------------------\n\n");
422}
423
424static void slab_fix(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 "FIX %s: %s\n", s->name, buf);
433}
434
435static void print_trailer(struct kmem_cache *s, struct page *page, u8 *p)
Christoph Lameter81819f02007-05-06 14:49:36 -0700436{
437 unsigned int off; /* Offset of last byte */
Christoph Lametera973e9d2008-03-01 13:40:44 -0800438 u8 *addr = page_address(page);
Christoph Lameter24922682007-07-17 04:03:18 -0700439
440 print_tracking(s, p);
441
442 print_page_info(page);
443
444 printk(KERN_ERR "INFO: Object 0x%p @offset=%tu fp=0x%p\n\n",
445 p, p - addr, get_freepointer(s, p));
446
447 if (p > addr + 16)
448 print_section("Bytes b4", p - 16, 16);
449
Pekka Enberg0ebd6522008-07-19 14:17:22 +0300450 print_section("Object", p, min_t(unsigned long, s->objsize, PAGE_SIZE));
Christoph Lameter81819f02007-05-06 14:49:36 -0700451
452 if (s->flags & SLAB_RED_ZONE)
453 print_section("Redzone", p + s->objsize,
454 s->inuse - s->objsize);
455
Christoph Lameter81819f02007-05-06 14:49:36 -0700456 if (s->offset)
457 off = s->offset + sizeof(void *);
458 else
459 off = s->inuse;
460
Christoph Lameter24922682007-07-17 04:03:18 -0700461 if (s->flags & SLAB_STORE_USER)
Christoph Lameter81819f02007-05-06 14:49:36 -0700462 off += 2 * sizeof(struct track);
Christoph Lameter81819f02007-05-06 14:49:36 -0700463
464 if (off != s->size)
465 /* Beginning of the filler is the free pointer */
Christoph Lameter24922682007-07-17 04:03:18 -0700466 print_section("Padding", p + off, s->size - off);
467
468 dump_stack();
Christoph Lameter81819f02007-05-06 14:49:36 -0700469}
470
471static void object_err(struct kmem_cache *s, struct page *page,
472 u8 *object, char *reason)
473{
Christoph Lameter3dc50632008-04-23 12:28:01 -0700474 slab_bug(s, "%s", reason);
Christoph Lameter24922682007-07-17 04:03:18 -0700475 print_trailer(s, page, object);
Christoph Lameter81819f02007-05-06 14:49:36 -0700476}
477
Christoph Lameter24922682007-07-17 04:03:18 -0700478static void slab_err(struct kmem_cache *s, struct page *page, char *fmt, ...)
Christoph Lameter81819f02007-05-06 14:49:36 -0700479{
480 va_list args;
481 char buf[100];
482
Christoph Lameter24922682007-07-17 04:03:18 -0700483 va_start(args, fmt);
484 vsnprintf(buf, sizeof(buf), fmt, args);
Christoph Lameter81819f02007-05-06 14:49:36 -0700485 va_end(args);
Christoph Lameter3dc50632008-04-23 12:28:01 -0700486 slab_bug(s, "%s", buf);
Christoph Lameter24922682007-07-17 04:03:18 -0700487 print_page_info(page);
Christoph Lameter81819f02007-05-06 14:49:36 -0700488 dump_stack();
489}
490
491static void init_object(struct kmem_cache *s, void *object, int active)
492{
493 u8 *p = object;
494
495 if (s->flags & __OBJECT_POISON) {
496 memset(p, POISON_FREE, s->objsize - 1);
Pekka Enberg06428782008-01-07 23:20:27 -0800497 p[s->objsize - 1] = POISON_END;
Christoph Lameter81819f02007-05-06 14:49:36 -0700498 }
499
500 if (s->flags & SLAB_RED_ZONE)
501 memset(p + s->objsize,
502 active ? SLUB_RED_ACTIVE : SLUB_RED_INACTIVE,
503 s->inuse - s->objsize);
504}
505
Christoph Lameter24922682007-07-17 04:03:18 -0700506static u8 *check_bytes(u8 *start, unsigned int value, unsigned int bytes)
Christoph Lameter81819f02007-05-06 14:49:36 -0700507{
508 while (bytes) {
509 if (*start != (u8)value)
Christoph Lameter24922682007-07-17 04:03:18 -0700510 return start;
Christoph Lameter81819f02007-05-06 14:49:36 -0700511 start++;
512 bytes--;
513 }
Christoph Lameter24922682007-07-17 04:03:18 -0700514 return NULL;
515}
516
517static void restore_bytes(struct kmem_cache *s, char *message, u8 data,
518 void *from, void *to)
519{
520 slab_fix(s, "Restoring 0x%p-0x%p=0x%x\n", from, to - 1, data);
521 memset(from, data, to - from);
522}
523
524static int check_bytes_and_report(struct kmem_cache *s, struct page *page,
525 u8 *object, char *what,
Pekka Enberg06428782008-01-07 23:20:27 -0800526 u8 *start, unsigned int value, unsigned int bytes)
Christoph Lameter24922682007-07-17 04:03:18 -0700527{
528 u8 *fault;
529 u8 *end;
530
531 fault = check_bytes(start, value, bytes);
532 if (!fault)
533 return 1;
534
535 end = start + bytes;
536 while (end > fault && end[-1] == value)
537 end--;
538
539 slab_bug(s, "%s overwritten", what);
540 printk(KERN_ERR "INFO: 0x%p-0x%p. First byte 0x%x instead of 0x%x\n",
541 fault, end - 1, fault[0], value);
542 print_trailer(s, page, object);
543
544 restore_bytes(s, what, value, fault, end);
545 return 0;
Christoph Lameter81819f02007-05-06 14:49:36 -0700546}
547
Christoph Lameter81819f02007-05-06 14:49:36 -0700548/*
549 * Object layout:
550 *
551 * object address
552 * Bytes of the object to be managed.
553 * If the freepointer may overlay the object then the free
554 * pointer is the first word of the object.
Christoph Lameter672bba32007-05-09 02:32:39 -0700555 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700556 * Poisoning uses 0x6b (POISON_FREE) and the last byte is
557 * 0xa5 (POISON_END)
558 *
559 * object + s->objsize
560 * Padding to reach word boundary. This is also used for Redzoning.
Christoph Lameter672bba32007-05-09 02:32:39 -0700561 * Padding is extended by another word if Redzoning is enabled and
562 * objsize == inuse.
563 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700564 * We fill with 0xbb (RED_INACTIVE) for inactive objects and with
565 * 0xcc (RED_ACTIVE) for objects in use.
566 *
567 * object + s->inuse
Christoph Lameter672bba32007-05-09 02:32:39 -0700568 * Meta data starts here.
569 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700570 * A. Free pointer (if we cannot overwrite object on free)
571 * B. Tracking data for SLAB_STORE_USER
Christoph Lameter672bba32007-05-09 02:32:39 -0700572 * C. Padding to reach required alignment boundary or at mininum
Christoph Lameter6446faa2008-02-15 23:45:26 -0800573 * one word if debugging is on to be able to detect writes
Christoph Lameter672bba32007-05-09 02:32:39 -0700574 * before the word boundary.
575 *
576 * Padding is done using 0x5a (POISON_INUSE)
Christoph Lameter81819f02007-05-06 14:49:36 -0700577 *
578 * object + s->size
Christoph Lameter672bba32007-05-09 02:32:39 -0700579 * Nothing is used beyond s->size.
Christoph Lameter81819f02007-05-06 14:49:36 -0700580 *
Christoph Lameter672bba32007-05-09 02:32:39 -0700581 * If slabcaches are merged then the objsize and inuse boundaries are mostly
582 * ignored. And therefore no slab options that rely on these boundaries
Christoph Lameter81819f02007-05-06 14:49:36 -0700583 * may be used with merged slabcaches.
584 */
585
Christoph Lameter81819f02007-05-06 14:49:36 -0700586static int check_pad_bytes(struct kmem_cache *s, struct page *page, u8 *p)
587{
588 unsigned long off = s->inuse; /* The end of info */
589
590 if (s->offset)
591 /* Freepointer is placed after the object. */
592 off += sizeof(void *);
593
594 if (s->flags & SLAB_STORE_USER)
595 /* We also have user information there */
596 off += 2 * sizeof(struct track);
597
598 if (s->size == off)
599 return 1;
600
Christoph Lameter24922682007-07-17 04:03:18 -0700601 return check_bytes_and_report(s, page, p, "Object padding",
602 p + off, POISON_INUSE, s->size - off);
Christoph Lameter81819f02007-05-06 14:49:36 -0700603}
604
Christoph Lameter39b26462008-04-14 19:11:30 +0300605/* Check the pad bytes at the end of a slab page */
Christoph Lameter81819f02007-05-06 14:49:36 -0700606static int slab_pad_check(struct kmem_cache *s, struct page *page)
607{
Christoph Lameter24922682007-07-17 04:03:18 -0700608 u8 *start;
609 u8 *fault;
610 u8 *end;
611 int length;
612 int remainder;
Christoph Lameter81819f02007-05-06 14:49:36 -0700613
614 if (!(s->flags & SLAB_POISON))
615 return 1;
616
Christoph Lametera973e9d2008-03-01 13:40:44 -0800617 start = page_address(page);
Christoph Lameter834f3d12008-04-14 19:11:31 +0300618 length = (PAGE_SIZE << compound_order(page));
Christoph Lameter39b26462008-04-14 19:11:30 +0300619 end = start + length;
620 remainder = length % s->size;
Christoph Lameter81819f02007-05-06 14:49:36 -0700621 if (!remainder)
622 return 1;
623
Christoph Lameter39b26462008-04-14 19:11:30 +0300624 fault = check_bytes(end - remainder, POISON_INUSE, remainder);
Christoph Lameter24922682007-07-17 04:03:18 -0700625 if (!fault)
626 return 1;
627 while (end > fault && end[-1] == POISON_INUSE)
628 end--;
629
630 slab_err(s, page, "Padding overwritten. 0x%p-0x%p", fault, end - 1);
Christoph Lameter39b26462008-04-14 19:11:30 +0300631 print_section("Padding", end - remainder, remainder);
Christoph Lameter24922682007-07-17 04:03:18 -0700632
Eric Dumazet8a3d2712009-09-03 16:08:06 +0200633 restore_bytes(s, "slab padding", POISON_INUSE, end - remainder, end);
Christoph Lameter24922682007-07-17 04:03:18 -0700634 return 0;
Christoph Lameter81819f02007-05-06 14:49:36 -0700635}
636
637static int check_object(struct kmem_cache *s, struct page *page,
638 void *object, int active)
639{
640 u8 *p = object;
641 u8 *endobject = object + s->objsize;
642
643 if (s->flags & SLAB_RED_ZONE) {
644 unsigned int red =
645 active ? SLUB_RED_ACTIVE : SLUB_RED_INACTIVE;
646
Christoph Lameter24922682007-07-17 04:03:18 -0700647 if (!check_bytes_and_report(s, page, object, "Redzone",
648 endobject, red, s->inuse - s->objsize))
Christoph Lameter81819f02007-05-06 14:49:36 -0700649 return 0;
Christoph Lameter81819f02007-05-06 14:49:36 -0700650 } else {
Ingo Molnar3adbefe2008-02-05 17:57:39 -0800651 if ((s->flags & SLAB_POISON) && s->objsize < s->inuse) {
652 check_bytes_and_report(s, page, p, "Alignment padding",
653 endobject, POISON_INUSE, s->inuse - s->objsize);
654 }
Christoph Lameter81819f02007-05-06 14:49:36 -0700655 }
656
657 if (s->flags & SLAB_POISON) {
658 if (!active && (s->flags & __OBJECT_POISON) &&
Christoph Lameter24922682007-07-17 04:03:18 -0700659 (!check_bytes_and_report(s, page, p, "Poison", p,
660 POISON_FREE, s->objsize - 1) ||
661 !check_bytes_and_report(s, page, p, "Poison",
Pekka Enberg06428782008-01-07 23:20:27 -0800662 p + s->objsize - 1, POISON_END, 1)))
Christoph Lameter81819f02007-05-06 14:49:36 -0700663 return 0;
Christoph Lameter81819f02007-05-06 14:49:36 -0700664 /*
665 * check_pad_bytes cleans up on its own.
666 */
667 check_pad_bytes(s, page, p);
668 }
669
670 if (!s->offset && active)
671 /*
672 * Object and freepointer overlap. Cannot check
673 * freepointer while object is allocated.
674 */
675 return 1;
676
677 /* Check free pointer validity */
678 if (!check_valid_pointer(s, page, get_freepointer(s, p))) {
679 object_err(s, page, p, "Freepointer corrupt");
680 /*
Nick Andrew9f6c708e2008-12-05 14:08:08 +1100681 * No choice but to zap it and thus lose the remainder
Christoph Lameter81819f02007-05-06 14:49:36 -0700682 * of the free objects in this slab. May cause
Christoph Lameter672bba32007-05-09 02:32:39 -0700683 * another error because the object count is now wrong.
Christoph Lameter81819f02007-05-06 14:49:36 -0700684 */
Christoph Lametera973e9d2008-03-01 13:40:44 -0800685 set_freepointer(s, p, NULL);
Christoph Lameter81819f02007-05-06 14:49:36 -0700686 return 0;
687 }
688 return 1;
689}
690
691static int check_slab(struct kmem_cache *s, struct page *page)
692{
Christoph Lameter39b26462008-04-14 19:11:30 +0300693 int maxobj;
694
Christoph Lameter81819f02007-05-06 14:49:36 -0700695 VM_BUG_ON(!irqs_disabled());
696
697 if (!PageSlab(page)) {
Christoph Lameter24922682007-07-17 04:03:18 -0700698 slab_err(s, page, "Not a valid slab page");
Christoph Lameter81819f02007-05-06 14:49:36 -0700699 return 0;
700 }
Christoph Lameter39b26462008-04-14 19:11:30 +0300701
702 maxobj = (PAGE_SIZE << compound_order(page)) / s->size;
703 if (page->objects > maxobj) {
704 slab_err(s, page, "objects %u > max %u",
705 s->name, page->objects, maxobj);
706 return 0;
707 }
708 if (page->inuse > page->objects) {
Christoph Lameter24922682007-07-17 04:03:18 -0700709 slab_err(s, page, "inuse %u > max %u",
Christoph Lameter39b26462008-04-14 19:11:30 +0300710 s->name, page->inuse, page->objects);
Christoph Lameter81819f02007-05-06 14:49:36 -0700711 return 0;
712 }
713 /* Slab_pad_check fixes things up after itself */
714 slab_pad_check(s, page);
715 return 1;
716}
717
718/*
Christoph Lameter672bba32007-05-09 02:32:39 -0700719 * Determine if a certain object on a page is on the freelist. Must hold the
720 * slab lock to guarantee that the chains are in a consistent state.
Christoph Lameter81819f02007-05-06 14:49:36 -0700721 */
722static int on_freelist(struct kmem_cache *s, struct page *page, void *search)
723{
724 int nr = 0;
725 void *fp = page->freelist;
726 void *object = NULL;
Christoph Lameter224a88b2008-04-14 19:11:31 +0300727 unsigned long max_objects;
Christoph Lameter81819f02007-05-06 14:49:36 -0700728
Christoph Lameter39b26462008-04-14 19:11:30 +0300729 while (fp && nr <= page->objects) {
Christoph Lameter81819f02007-05-06 14:49:36 -0700730 if (fp == search)
731 return 1;
732 if (!check_valid_pointer(s, page, fp)) {
733 if (object) {
734 object_err(s, page, object,
735 "Freechain corrupt");
Christoph Lametera973e9d2008-03-01 13:40:44 -0800736 set_freepointer(s, object, NULL);
Christoph Lameter81819f02007-05-06 14:49:36 -0700737 break;
738 } else {
Christoph Lameter24922682007-07-17 04:03:18 -0700739 slab_err(s, page, "Freepointer corrupt");
Christoph Lametera973e9d2008-03-01 13:40:44 -0800740 page->freelist = NULL;
Christoph Lameter39b26462008-04-14 19:11:30 +0300741 page->inuse = page->objects;
Christoph Lameter24922682007-07-17 04:03:18 -0700742 slab_fix(s, "Freelist cleared");
Christoph Lameter81819f02007-05-06 14:49:36 -0700743 return 0;
744 }
745 break;
746 }
747 object = fp;
748 fp = get_freepointer(s, object);
749 nr++;
750 }
751
Christoph Lameter224a88b2008-04-14 19:11:31 +0300752 max_objects = (PAGE_SIZE << compound_order(page)) / s->size;
Cyrill Gorcunov210b5c02008-10-22 23:00:38 +0400753 if (max_objects > MAX_OBJS_PER_PAGE)
754 max_objects = MAX_OBJS_PER_PAGE;
Christoph Lameter224a88b2008-04-14 19:11:31 +0300755
756 if (page->objects != max_objects) {
757 slab_err(s, page, "Wrong number of objects. Found %d but "
758 "should be %d", page->objects, max_objects);
759 page->objects = max_objects;
760 slab_fix(s, "Number of objects adjusted.");
761 }
Christoph Lameter39b26462008-04-14 19:11:30 +0300762 if (page->inuse != page->objects - nr) {
Christoph Lameter70d71222007-05-06 14:49:47 -0700763 slab_err(s, page, "Wrong object count. Counter is %d but "
Christoph Lameter39b26462008-04-14 19:11:30 +0300764 "counted were %d", page->inuse, page->objects - nr);
765 page->inuse = page->objects - nr;
Christoph Lameter24922682007-07-17 04:03:18 -0700766 slab_fix(s, "Object count adjusted.");
Christoph Lameter81819f02007-05-06 14:49:36 -0700767 }
768 return search == NULL;
769}
770
Christoph Lameter0121c6192008-04-29 16:11:12 -0700771static void trace(struct kmem_cache *s, struct page *page, void *object,
772 int alloc)
Christoph Lameter3ec09742007-05-16 22:11:00 -0700773{
774 if (s->flags & SLAB_TRACE) {
775 printk(KERN_INFO "TRACE %s %s 0x%p inuse=%d fp=0x%p\n",
776 s->name,
777 alloc ? "alloc" : "free",
778 object, page->inuse,
779 page->freelist);
780
781 if (!alloc)
782 print_section("Object", (void *)object, s->objsize);
783
784 dump_stack();
785 }
786}
787
Christoph Lameter643b1132007-05-06 14:49:42 -0700788/*
Christoph Lameter672bba32007-05-09 02:32:39 -0700789 * Tracking of fully allocated slabs for debugging purposes.
Christoph Lameter643b1132007-05-06 14:49:42 -0700790 */
Christoph Lametere95eed52007-05-06 14:49:44 -0700791static void add_full(struct kmem_cache_node *n, struct page *page)
Christoph Lameter643b1132007-05-06 14:49:42 -0700792{
Christoph Lameter643b1132007-05-06 14:49:42 -0700793 spin_lock(&n->list_lock);
794 list_add(&page->lru, &n->full);
795 spin_unlock(&n->list_lock);
796}
797
798static void remove_full(struct kmem_cache *s, struct page *page)
799{
800 struct kmem_cache_node *n;
801
802 if (!(s->flags & SLAB_STORE_USER))
803 return;
804
805 n = get_node(s, page_to_nid(page));
806
807 spin_lock(&n->list_lock);
808 list_del(&page->lru);
809 spin_unlock(&n->list_lock);
810}
811
Christoph Lameter0f389ec2008-04-14 18:53:02 +0300812/* Tracking of the number of slabs for debugging purposes */
813static inline unsigned long slabs_node(struct kmem_cache *s, int node)
814{
815 struct kmem_cache_node *n = get_node(s, node);
816
817 return atomic_long_read(&n->nr_slabs);
818}
819
Alexander Beregalov26c02cf2009-06-11 14:08:48 +0400820static inline unsigned long node_nr_slabs(struct kmem_cache_node *n)
821{
822 return atomic_long_read(&n->nr_slabs);
823}
824
Christoph Lameter205ab992008-04-14 19:11:40 +0300825static inline void inc_slabs_node(struct kmem_cache *s, int node, int objects)
Christoph Lameter0f389ec2008-04-14 18:53:02 +0300826{
827 struct kmem_cache_node *n = get_node(s, node);
828
829 /*
830 * May be called early in order to allocate a slab for the
831 * kmem_cache_node structure. Solve the chicken-egg
832 * dilemma by deferring the increment of the count during
833 * bootstrap (see early_kmem_cache_node_alloc).
834 */
Christoph Lameter205ab992008-04-14 19:11:40 +0300835 if (!NUMA_BUILD || n) {
Christoph Lameter0f389ec2008-04-14 18:53:02 +0300836 atomic_long_inc(&n->nr_slabs);
Christoph Lameter205ab992008-04-14 19:11:40 +0300837 atomic_long_add(objects, &n->total_objects);
838 }
Christoph Lameter0f389ec2008-04-14 18:53:02 +0300839}
Christoph Lameter205ab992008-04-14 19:11:40 +0300840static inline void dec_slabs_node(struct kmem_cache *s, int node, int objects)
Christoph Lameter0f389ec2008-04-14 18:53:02 +0300841{
842 struct kmem_cache_node *n = get_node(s, node);
843
844 atomic_long_dec(&n->nr_slabs);
Christoph Lameter205ab992008-04-14 19:11:40 +0300845 atomic_long_sub(objects, &n->total_objects);
Christoph Lameter0f389ec2008-04-14 18:53:02 +0300846}
847
848/* Object debug checks for alloc/free paths */
Christoph Lameter3ec09742007-05-16 22:11:00 -0700849static void setup_object_debug(struct kmem_cache *s, struct page *page,
850 void *object)
851{
852 if (!(s->flags & (SLAB_STORE_USER|SLAB_RED_ZONE|__OBJECT_POISON)))
853 return;
854
855 init_object(s, object, 0);
856 init_tracking(s, object);
857}
858
859static int alloc_debug_processing(struct kmem_cache *s, struct page *page,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +0300860 void *object, unsigned long addr)
Christoph Lameter81819f02007-05-06 14:49:36 -0700861{
862 if (!check_slab(s, page))
863 goto bad;
864
Christoph Lameterd692ef62008-02-15 23:45:24 -0800865 if (!on_freelist(s, page, object)) {
Christoph Lameter24922682007-07-17 04:03:18 -0700866 object_err(s, page, object, "Object already allocated");
Christoph Lameter70d71222007-05-06 14:49:47 -0700867 goto bad;
Christoph Lameter81819f02007-05-06 14:49:36 -0700868 }
869
870 if (!check_valid_pointer(s, page, object)) {
871 object_err(s, page, object, "Freelist Pointer check fails");
Christoph Lameter70d71222007-05-06 14:49:47 -0700872 goto bad;
Christoph Lameter81819f02007-05-06 14:49:36 -0700873 }
874
Christoph Lameterd692ef62008-02-15 23:45:24 -0800875 if (!check_object(s, page, object, 0))
Christoph Lameter81819f02007-05-06 14:49:36 -0700876 goto bad;
Christoph Lameter81819f02007-05-06 14:49:36 -0700877
Christoph Lameter3ec09742007-05-16 22:11:00 -0700878 /* Success perform special debug activities for allocs */
879 if (s->flags & SLAB_STORE_USER)
880 set_track(s, object, TRACK_ALLOC, addr);
881 trace(s, page, object, 1);
882 init_object(s, object, 1);
Christoph Lameter81819f02007-05-06 14:49:36 -0700883 return 1;
Christoph Lameter3ec09742007-05-16 22:11:00 -0700884
Christoph Lameter81819f02007-05-06 14:49:36 -0700885bad:
886 if (PageSlab(page)) {
887 /*
888 * If this is a slab page then lets do the best we can
889 * to avoid issues in the future. Marking all objects
Christoph Lameter672bba32007-05-09 02:32:39 -0700890 * as used avoids touching the remaining objects.
Christoph Lameter81819f02007-05-06 14:49:36 -0700891 */
Christoph Lameter24922682007-07-17 04:03:18 -0700892 slab_fix(s, "Marking all objects used");
Christoph Lameter39b26462008-04-14 19:11:30 +0300893 page->inuse = page->objects;
Christoph Lametera973e9d2008-03-01 13:40:44 -0800894 page->freelist = NULL;
Christoph Lameter81819f02007-05-06 14:49:36 -0700895 }
896 return 0;
897}
898
Christoph Lameter3ec09742007-05-16 22:11:00 -0700899static int free_debug_processing(struct kmem_cache *s, struct page *page,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +0300900 void *object, unsigned long addr)
Christoph Lameter81819f02007-05-06 14:49:36 -0700901{
902 if (!check_slab(s, page))
903 goto fail;
904
905 if (!check_valid_pointer(s, page, object)) {
Christoph Lameter70d71222007-05-06 14:49:47 -0700906 slab_err(s, page, "Invalid object pointer 0x%p", object);
Christoph Lameter81819f02007-05-06 14:49:36 -0700907 goto fail;
908 }
909
910 if (on_freelist(s, page, object)) {
Christoph Lameter24922682007-07-17 04:03:18 -0700911 object_err(s, page, object, "Object already free");
Christoph Lameter81819f02007-05-06 14:49:36 -0700912 goto fail;
913 }
914
915 if (!check_object(s, page, object, 1))
916 return 0;
917
918 if (unlikely(s != page->slab)) {
Ingo Molnar3adbefe2008-02-05 17:57:39 -0800919 if (!PageSlab(page)) {
Christoph Lameter70d71222007-05-06 14:49:47 -0700920 slab_err(s, page, "Attempt to free object(0x%p) "
921 "outside of slab", object);
Ingo Molnar3adbefe2008-02-05 17:57:39 -0800922 } else if (!page->slab) {
Christoph Lameter81819f02007-05-06 14:49:36 -0700923 printk(KERN_ERR
Christoph Lameter70d71222007-05-06 14:49:47 -0700924 "SLUB <none>: no slab for object 0x%p.\n",
Christoph Lameter81819f02007-05-06 14:49:36 -0700925 object);
Christoph Lameter70d71222007-05-06 14:49:47 -0700926 dump_stack();
Pekka Enberg06428782008-01-07 23:20:27 -0800927 } else
Christoph Lameter24922682007-07-17 04:03:18 -0700928 object_err(s, page, object,
929 "page slab pointer corrupt.");
Christoph Lameter81819f02007-05-06 14:49:36 -0700930 goto fail;
931 }
Christoph Lameter3ec09742007-05-16 22:11:00 -0700932
933 /* Special debug activities for freeing objects */
Andy Whitcroft8a380822008-07-23 21:27:18 -0700934 if (!PageSlubFrozen(page) && !page->freelist)
Christoph Lameter3ec09742007-05-16 22:11:00 -0700935 remove_full(s, page);
936 if (s->flags & SLAB_STORE_USER)
937 set_track(s, object, TRACK_FREE, addr);
938 trace(s, page, object, 0);
939 init_object(s, object, 0);
Christoph Lameter81819f02007-05-06 14:49:36 -0700940 return 1;
Christoph Lameter3ec09742007-05-16 22:11:00 -0700941
Christoph Lameter81819f02007-05-06 14:49:36 -0700942fail:
Christoph Lameter24922682007-07-17 04:03:18 -0700943 slab_fix(s, "Object at 0x%p not freed", object);
Christoph Lameter81819f02007-05-06 14:49:36 -0700944 return 0;
945}
946
Christoph Lameter41ecc552007-05-09 02:32:44 -0700947static int __init setup_slub_debug(char *str)
948{
Christoph Lameterf0630ff2007-07-15 23:38:14 -0700949 slub_debug = DEBUG_DEFAULT_FLAGS;
950 if (*str++ != '=' || !*str)
951 /*
952 * No options specified. Switch on full debugging.
953 */
954 goto out;
Christoph Lameter41ecc552007-05-09 02:32:44 -0700955
956 if (*str == ',')
Christoph Lameterf0630ff2007-07-15 23:38:14 -0700957 /*
958 * No options but restriction on slabs. This means full
959 * debugging for slabs matching a pattern.
960 */
961 goto check_slabs;
962
David Rientjesfa5ec8a2009-07-07 00:14:14 -0700963 if (tolower(*str) == 'o') {
964 /*
965 * Avoid enabling debugging on caches if its minimum order
966 * would increase as a result.
967 */
968 disable_higher_order_debug = 1;
969 goto out;
970 }
971
Christoph Lameterf0630ff2007-07-15 23:38:14 -0700972 slub_debug = 0;
973 if (*str == '-')
974 /*
975 * Switch off all debugging measures.
976 */
977 goto out;
978
979 /*
980 * Determine which debug features should be switched on
981 */
Pekka Enberg06428782008-01-07 23:20:27 -0800982 for (; *str && *str != ','; str++) {
Christoph Lameterf0630ff2007-07-15 23:38:14 -0700983 switch (tolower(*str)) {
984 case 'f':
985 slub_debug |= SLAB_DEBUG_FREE;
986 break;
987 case 'z':
988 slub_debug |= SLAB_RED_ZONE;
989 break;
990 case 'p':
991 slub_debug |= SLAB_POISON;
992 break;
993 case 'u':
994 slub_debug |= SLAB_STORE_USER;
995 break;
996 case 't':
997 slub_debug |= SLAB_TRACE;
998 break;
Dmitry Monakhov4c13dd32010-02-26 09:36:12 +0300999 case 'a':
1000 slub_debug |= SLAB_FAILSLAB;
1001 break;
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001002 default:
1003 printk(KERN_ERR "slub_debug option '%c' "
Pekka Enberg06428782008-01-07 23:20:27 -08001004 "unknown. skipped\n", *str);
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001005 }
1006 }
1007
1008check_slabs:
1009 if (*str == ',')
Christoph Lameter41ecc552007-05-09 02:32:44 -07001010 slub_debug_slabs = str + 1;
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001011out:
Christoph Lameter41ecc552007-05-09 02:32:44 -07001012 return 1;
1013}
1014
1015__setup("slub_debug", setup_slub_debug);
1016
Christoph Lameterba0268a2007-09-11 15:24:11 -07001017static unsigned long kmem_cache_flags(unsigned long objsize,
1018 unsigned long flags, const char *name,
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07001019 void (*ctor)(void *))
Christoph Lameter41ecc552007-05-09 02:32:44 -07001020{
1021 /*
Christoph Lametere1533622008-02-15 23:45:24 -08001022 * Enable debugging if selected on the kernel commandline.
Christoph Lameter41ecc552007-05-09 02:32:44 -07001023 */
Christoph Lametere1533622008-02-15 23:45:24 -08001024 if (slub_debug && (!slub_debug_slabs ||
David Rientjes3de47212009-07-27 18:30:35 -07001025 !strncmp(slub_debug_slabs, name, strlen(slub_debug_slabs))))
1026 flags |= slub_debug;
Christoph Lameterba0268a2007-09-11 15:24:11 -07001027
1028 return flags;
Christoph Lameter41ecc552007-05-09 02:32:44 -07001029}
1030#else
Christoph Lameter3ec09742007-05-16 22:11:00 -07001031static inline void setup_object_debug(struct kmem_cache *s,
1032 struct page *page, void *object) {}
Christoph Lameter41ecc552007-05-09 02:32:44 -07001033
Christoph Lameter3ec09742007-05-16 22:11:00 -07001034static inline int alloc_debug_processing(struct kmem_cache *s,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03001035 struct page *page, void *object, unsigned long addr) { return 0; }
Christoph Lameter41ecc552007-05-09 02:32:44 -07001036
Christoph Lameter3ec09742007-05-16 22:11:00 -07001037static inline int free_debug_processing(struct kmem_cache *s,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03001038 struct page *page, void *object, unsigned long addr) { return 0; }
Christoph Lameter41ecc552007-05-09 02:32:44 -07001039
Christoph Lameter41ecc552007-05-09 02:32:44 -07001040static inline int slab_pad_check(struct kmem_cache *s, struct page *page)
1041 { return 1; }
1042static inline int check_object(struct kmem_cache *s, struct page *page,
1043 void *object, int active) { return 1; }
Christoph Lameter3ec09742007-05-16 22:11:00 -07001044static inline void add_full(struct kmem_cache_node *n, struct page *page) {}
Christoph Lameterba0268a2007-09-11 15:24:11 -07001045static inline unsigned long kmem_cache_flags(unsigned long objsize,
1046 unsigned long flags, const char *name,
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07001047 void (*ctor)(void *))
Christoph Lameterba0268a2007-09-11 15:24:11 -07001048{
1049 return flags;
1050}
Christoph Lameter41ecc552007-05-09 02:32:44 -07001051#define slub_debug 0
Christoph Lameter0f389ec2008-04-14 18:53:02 +03001052
Ingo Molnarfdaa45e2009-09-15 11:00:26 +02001053#define disable_higher_order_debug 0
1054
Christoph Lameter0f389ec2008-04-14 18:53:02 +03001055static inline unsigned long slabs_node(struct kmem_cache *s, int node)
1056 { return 0; }
Alexander Beregalov26c02cf2009-06-11 14:08:48 +04001057static inline unsigned long node_nr_slabs(struct kmem_cache_node *n)
1058 { return 0; }
Christoph Lameter205ab992008-04-14 19:11:40 +03001059static inline void inc_slabs_node(struct kmem_cache *s, int node,
1060 int objects) {}
1061static inline void dec_slabs_node(struct kmem_cache *s, int node,
1062 int objects) {}
Christoph Lameter41ecc552007-05-09 02:32:44 -07001063#endif
Christoph Lameter205ab992008-04-14 19:11:40 +03001064
Christoph Lameter81819f02007-05-06 14:49:36 -07001065/*
1066 * Slab allocation and freeing
1067 */
Christoph Lameter65c33762008-04-14 19:11:40 +03001068static inline struct page *alloc_slab_page(gfp_t flags, int node,
1069 struct kmem_cache_order_objects oo)
1070{
1071 int order = oo_order(oo);
1072
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001073 flags |= __GFP_NOTRACK;
1074
Christoph Lameter65c33762008-04-14 19:11:40 +03001075 if (node == -1)
1076 return alloc_pages(flags, order);
1077 else
Minchan Kim6b65aaf2010-04-14 23:58:36 +09001078 return alloc_pages_exact_node(node, flags, order);
Christoph Lameter65c33762008-04-14 19:11:40 +03001079}
1080
Christoph Lameter81819f02007-05-06 14:49:36 -07001081static struct page *allocate_slab(struct kmem_cache *s, gfp_t flags, int node)
1082{
Pekka Enberg06428782008-01-07 23:20:27 -08001083 struct page *page;
Christoph Lameter834f3d12008-04-14 19:11:31 +03001084 struct kmem_cache_order_objects oo = s->oo;
Pekka Enbergba522702009-06-24 21:59:51 +03001085 gfp_t alloc_gfp;
Christoph Lameter81819f02007-05-06 14:49:36 -07001086
Christoph Lameterb7a49f02008-02-14 14:21:32 -08001087 flags |= s->allocflags;
Mel Gormane12ba742007-10-16 01:25:52 -07001088
Pekka Enbergba522702009-06-24 21:59:51 +03001089 /*
1090 * Let the initial higher-order allocation fail under memory pressure
1091 * so we fall-back to the minimum order allocation.
1092 */
1093 alloc_gfp = (flags | __GFP_NOWARN | __GFP_NORETRY) & ~__GFP_NOFAIL;
1094
1095 page = alloc_slab_page(alloc_gfp, node, oo);
Christoph Lameter65c33762008-04-14 19:11:40 +03001096 if (unlikely(!page)) {
1097 oo = s->min;
1098 /*
1099 * Allocation may have failed due to fragmentation.
1100 * Try a lower order alloc if possible
1101 */
1102 page = alloc_slab_page(flags, node, oo);
1103 if (!page)
1104 return NULL;
Christoph Lameter81819f02007-05-06 14:49:36 -07001105
Christoph Lameter84e554e2009-12-18 16:26:23 -06001106 stat(s, ORDER_FALLBACK);
Christoph Lameter65c33762008-04-14 19:11:40 +03001107 }
Vegard Nossum5a896d92008-04-04 00:54:48 +02001108
1109 if (kmemcheck_enabled
Amerigo Wang5086c382009-08-19 21:44:13 +03001110 && !(s->flags & (SLAB_NOTRACK | DEBUG_DEFAULT_FLAGS))) {
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001111 int pages = 1 << oo_order(oo);
1112
1113 kmemcheck_alloc_shadow(page, oo_order(oo), flags, node);
1114
1115 /*
1116 * Objects from caches that have a constructor don't get
1117 * cleared when they're allocated, so we need to do it here.
1118 */
1119 if (s->ctor)
1120 kmemcheck_mark_uninitialized_pages(page, pages);
1121 else
1122 kmemcheck_mark_unallocated_pages(page, pages);
Vegard Nossum5a896d92008-04-04 00:54:48 +02001123 }
1124
Christoph Lameter834f3d12008-04-14 19:11:31 +03001125 page->objects = oo_objects(oo);
Christoph Lameter81819f02007-05-06 14:49:36 -07001126 mod_zone_page_state(page_zone(page),
1127 (s->flags & SLAB_RECLAIM_ACCOUNT) ?
1128 NR_SLAB_RECLAIMABLE : NR_SLAB_UNRECLAIMABLE,
Christoph Lameter65c33762008-04-14 19:11:40 +03001129 1 << oo_order(oo));
Christoph Lameter81819f02007-05-06 14:49:36 -07001130
1131 return page;
1132}
1133
1134static void setup_object(struct kmem_cache *s, struct page *page,
1135 void *object)
1136{
Christoph Lameter3ec09742007-05-16 22:11:00 -07001137 setup_object_debug(s, page, object);
Christoph Lameter4f104932007-05-06 14:50:17 -07001138 if (unlikely(s->ctor))
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07001139 s->ctor(object);
Christoph Lameter81819f02007-05-06 14:49:36 -07001140}
1141
1142static struct page *new_slab(struct kmem_cache *s, gfp_t flags, int node)
1143{
1144 struct page *page;
Christoph Lameter81819f02007-05-06 14:49:36 -07001145 void *start;
Christoph Lameter81819f02007-05-06 14:49:36 -07001146 void *last;
1147 void *p;
1148
Christoph Lameter6cb06222007-10-16 01:25:41 -07001149 BUG_ON(flags & GFP_SLAB_BUG_MASK);
Christoph Lameter81819f02007-05-06 14:49:36 -07001150
Christoph Lameter6cb06222007-10-16 01:25:41 -07001151 page = allocate_slab(s,
1152 flags & (GFP_RECLAIM_MASK | GFP_CONSTRAINT_MASK), node);
Christoph Lameter81819f02007-05-06 14:49:36 -07001153 if (!page)
1154 goto out;
1155
Christoph Lameter205ab992008-04-14 19:11:40 +03001156 inc_slabs_node(s, page_to_nid(page), page->objects);
Christoph Lameter81819f02007-05-06 14:49:36 -07001157 page->slab = s;
1158 page->flags |= 1 << PG_slab;
1159 if (s->flags & (SLAB_DEBUG_FREE | SLAB_RED_ZONE | SLAB_POISON |
1160 SLAB_STORE_USER | SLAB_TRACE))
Andy Whitcroft8a380822008-07-23 21:27:18 -07001161 __SetPageSlubDebug(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001162
1163 start = page_address(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001164
1165 if (unlikely(s->flags & SLAB_POISON))
Christoph Lameter834f3d12008-04-14 19:11:31 +03001166 memset(start, POISON_INUSE, PAGE_SIZE << compound_order(page));
Christoph Lameter81819f02007-05-06 14:49:36 -07001167
1168 last = start;
Christoph Lameter224a88b2008-04-14 19:11:31 +03001169 for_each_object(p, s, start, page->objects) {
Christoph Lameter81819f02007-05-06 14:49:36 -07001170 setup_object(s, page, last);
1171 set_freepointer(s, last, p);
1172 last = p;
1173 }
1174 setup_object(s, page, last);
Christoph Lametera973e9d2008-03-01 13:40:44 -08001175 set_freepointer(s, last, NULL);
Christoph Lameter81819f02007-05-06 14:49:36 -07001176
1177 page->freelist = start;
1178 page->inuse = 0;
1179out:
Christoph Lameter81819f02007-05-06 14:49:36 -07001180 return page;
1181}
1182
1183static void __free_slab(struct kmem_cache *s, struct page *page)
1184{
Christoph Lameter834f3d12008-04-14 19:11:31 +03001185 int order = compound_order(page);
1186 int pages = 1 << order;
Christoph Lameter81819f02007-05-06 14:49:36 -07001187
Andy Whitcroft8a380822008-07-23 21:27:18 -07001188 if (unlikely(SLABDEBUG && PageSlubDebug(page))) {
Christoph Lameter81819f02007-05-06 14:49:36 -07001189 void *p;
1190
1191 slab_pad_check(s, page);
Christoph Lameter224a88b2008-04-14 19:11:31 +03001192 for_each_object(p, s, page_address(page),
1193 page->objects)
Christoph Lameter81819f02007-05-06 14:49:36 -07001194 check_object(s, page, p, 0);
Andy Whitcroft8a380822008-07-23 21:27:18 -07001195 __ClearPageSlubDebug(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001196 }
1197
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001198 kmemcheck_free_shadow(page, compound_order(page));
Vegard Nossum5a896d92008-04-04 00:54:48 +02001199
Christoph Lameter81819f02007-05-06 14:49:36 -07001200 mod_zone_page_state(page_zone(page),
1201 (s->flags & SLAB_RECLAIM_ACCOUNT) ?
1202 NR_SLAB_RECLAIMABLE : NR_SLAB_UNRECLAIMABLE,
Pekka Enberg06428782008-01-07 23:20:27 -08001203 -pages);
Christoph Lameter81819f02007-05-06 14:49:36 -07001204
Christoph Lameter49bd5222008-04-14 18:52:18 +03001205 __ClearPageSlab(page);
1206 reset_page_mapcount(page);
Nick Piggin1eb5ac62009-05-05 19:13:44 +10001207 if (current->reclaim_state)
1208 current->reclaim_state->reclaimed_slab += pages;
Christoph Lameter834f3d12008-04-14 19:11:31 +03001209 __free_pages(page, order);
Christoph Lameter81819f02007-05-06 14:49:36 -07001210}
1211
1212static void rcu_free_slab(struct rcu_head *h)
1213{
1214 struct page *page;
1215
1216 page = container_of((struct list_head *)h, struct page, lru);
1217 __free_slab(page->slab, page);
1218}
1219
1220static void free_slab(struct kmem_cache *s, struct page *page)
1221{
1222 if (unlikely(s->flags & SLAB_DESTROY_BY_RCU)) {
1223 /*
1224 * RCU free overloads the RCU head over the LRU
1225 */
1226 struct rcu_head *head = (void *)&page->lru;
1227
1228 call_rcu(head, rcu_free_slab);
1229 } else
1230 __free_slab(s, page);
1231}
1232
1233static void discard_slab(struct kmem_cache *s, struct page *page)
1234{
Christoph Lameter205ab992008-04-14 19:11:40 +03001235 dec_slabs_node(s, page_to_nid(page), page->objects);
Christoph Lameter81819f02007-05-06 14:49:36 -07001236 free_slab(s, page);
1237}
1238
1239/*
1240 * Per slab locking using the pagelock
1241 */
1242static __always_inline void slab_lock(struct page *page)
1243{
1244 bit_spin_lock(PG_locked, &page->flags);
1245}
1246
1247static __always_inline void slab_unlock(struct page *page)
1248{
Nick Piggina76d3542008-01-07 23:20:27 -08001249 __bit_spin_unlock(PG_locked, &page->flags);
Christoph Lameter81819f02007-05-06 14:49:36 -07001250}
1251
1252static __always_inline int slab_trylock(struct page *page)
1253{
1254 int rc = 1;
1255
1256 rc = bit_spin_trylock(PG_locked, &page->flags);
1257 return rc;
1258}
1259
1260/*
1261 * Management of partially allocated slabs
1262 */
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001263static void add_partial(struct kmem_cache_node *n,
1264 struct page *page, int tail)
Christoph Lameter81819f02007-05-06 14:49:36 -07001265{
Christoph Lametere95eed52007-05-06 14:49:44 -07001266 spin_lock(&n->list_lock);
1267 n->nr_partial++;
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001268 if (tail)
1269 list_add_tail(&page->lru, &n->partial);
1270 else
1271 list_add(&page->lru, &n->partial);
Christoph Lameter81819f02007-05-06 14:49:36 -07001272 spin_unlock(&n->list_lock);
1273}
1274
Christoph Lameter0121c6192008-04-29 16:11:12 -07001275static void remove_partial(struct kmem_cache *s, struct page *page)
Christoph Lameter81819f02007-05-06 14:49:36 -07001276{
1277 struct kmem_cache_node *n = get_node(s, page_to_nid(page));
1278
1279 spin_lock(&n->list_lock);
1280 list_del(&page->lru);
1281 n->nr_partial--;
1282 spin_unlock(&n->list_lock);
1283}
1284
1285/*
Christoph Lameter672bba32007-05-09 02:32:39 -07001286 * Lock slab and remove from the partial list.
Christoph Lameter81819f02007-05-06 14:49:36 -07001287 *
Christoph Lameter672bba32007-05-09 02:32:39 -07001288 * Must hold list_lock.
Christoph Lameter81819f02007-05-06 14:49:36 -07001289 */
Christoph Lameter0121c6192008-04-29 16:11:12 -07001290static inline int lock_and_freeze_slab(struct kmem_cache_node *n,
1291 struct page *page)
Christoph Lameter81819f02007-05-06 14:49:36 -07001292{
1293 if (slab_trylock(page)) {
1294 list_del(&page->lru);
1295 n->nr_partial--;
Andy Whitcroft8a380822008-07-23 21:27:18 -07001296 __SetPageSlubFrozen(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001297 return 1;
1298 }
1299 return 0;
1300}
1301
1302/*
Christoph Lameter672bba32007-05-09 02:32:39 -07001303 * Try to allocate a partial slab from a specific node.
Christoph Lameter81819f02007-05-06 14:49:36 -07001304 */
1305static struct page *get_partial_node(struct kmem_cache_node *n)
1306{
1307 struct page *page;
1308
1309 /*
1310 * Racy check. If we mistakenly see no partial slabs then we
1311 * just allocate an empty slab. If we mistakenly try to get a
Christoph Lameter672bba32007-05-09 02:32:39 -07001312 * partial slab and there is none available then get_partials()
1313 * will return NULL.
Christoph Lameter81819f02007-05-06 14:49:36 -07001314 */
1315 if (!n || !n->nr_partial)
1316 return NULL;
1317
1318 spin_lock(&n->list_lock);
1319 list_for_each_entry(page, &n->partial, lru)
Christoph Lameter4b6f0752007-05-16 22:10:53 -07001320 if (lock_and_freeze_slab(n, page))
Christoph Lameter81819f02007-05-06 14:49:36 -07001321 goto out;
1322 page = NULL;
1323out:
1324 spin_unlock(&n->list_lock);
1325 return page;
1326}
1327
1328/*
Christoph Lameter672bba32007-05-09 02:32:39 -07001329 * Get a page from somewhere. Search in increasing NUMA distances.
Christoph Lameter81819f02007-05-06 14:49:36 -07001330 */
1331static struct page *get_any_partial(struct kmem_cache *s, gfp_t flags)
1332{
1333#ifdef CONFIG_NUMA
1334 struct zonelist *zonelist;
Mel Gormandd1a2392008-04-28 02:12:17 -07001335 struct zoneref *z;
Mel Gorman54a6eb52008-04-28 02:12:16 -07001336 struct zone *zone;
1337 enum zone_type high_zoneidx = gfp_zone(flags);
Christoph Lameter81819f02007-05-06 14:49:36 -07001338 struct page *page;
1339
1340 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07001341 * The defrag ratio allows a configuration of the tradeoffs between
1342 * inter node defragmentation and node local allocations. A lower
1343 * defrag_ratio increases the tendency to do local allocations
1344 * instead of attempting to obtain partial slabs from other nodes.
Christoph Lameter81819f02007-05-06 14:49:36 -07001345 *
Christoph Lameter672bba32007-05-09 02:32:39 -07001346 * If the defrag_ratio is set to 0 then kmalloc() always
1347 * returns node local objects. If the ratio is higher then kmalloc()
1348 * may return off node objects because partial slabs are obtained
1349 * from other nodes and filled up.
Christoph Lameter81819f02007-05-06 14:49:36 -07001350 *
Christoph Lameter6446faa2008-02-15 23:45:26 -08001351 * If /sys/kernel/slab/xx/defrag_ratio is set to 100 (which makes
Christoph Lameter672bba32007-05-09 02:32:39 -07001352 * defrag_ratio = 1000) then every (well almost) allocation will
1353 * first attempt to defrag slab caches on other nodes. This means
1354 * scanning over all nodes to look for partial slabs which may be
1355 * expensive if we do it every time we are trying to find a slab
1356 * with available objects.
Christoph Lameter81819f02007-05-06 14:49:36 -07001357 */
Christoph Lameter98246012008-01-07 23:20:26 -08001358 if (!s->remote_node_defrag_ratio ||
1359 get_cycles() % 1024 > s->remote_node_defrag_ratio)
Christoph Lameter81819f02007-05-06 14:49:36 -07001360 return NULL;
1361
Miao Xiec0ff7452010-05-24 14:32:08 -07001362 get_mems_allowed();
Mel Gorman0e884602008-04-28 02:12:14 -07001363 zonelist = node_zonelist(slab_node(current->mempolicy), flags);
Mel Gorman54a6eb52008-04-28 02:12:16 -07001364 for_each_zone_zonelist(zone, z, zonelist, high_zoneidx) {
Christoph Lameter81819f02007-05-06 14:49:36 -07001365 struct kmem_cache_node *n;
1366
Mel Gorman54a6eb52008-04-28 02:12:16 -07001367 n = get_node(s, zone_to_nid(zone));
Christoph Lameter81819f02007-05-06 14:49:36 -07001368
Mel Gorman54a6eb52008-04-28 02:12:16 -07001369 if (n && cpuset_zone_allowed_hardwall(zone, flags) &&
David Rientjes3b89d7d2009-02-22 17:40:07 -08001370 n->nr_partial > s->min_partial) {
Christoph Lameter81819f02007-05-06 14:49:36 -07001371 page = get_partial_node(n);
Miao Xiec0ff7452010-05-24 14:32:08 -07001372 if (page) {
1373 put_mems_allowed();
Christoph Lameter81819f02007-05-06 14:49:36 -07001374 return page;
Miao Xiec0ff7452010-05-24 14:32:08 -07001375 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001376 }
1377 }
Miao Xiec0ff7452010-05-24 14:32:08 -07001378 put_mems_allowed();
Christoph Lameter81819f02007-05-06 14:49:36 -07001379#endif
1380 return NULL;
1381}
1382
1383/*
1384 * Get a partial page, lock it and return it.
1385 */
1386static struct page *get_partial(struct kmem_cache *s, gfp_t flags, int node)
1387{
1388 struct page *page;
1389 int searchnode = (node == -1) ? numa_node_id() : node;
1390
1391 page = get_partial_node(get_node(s, searchnode));
1392 if (page || (flags & __GFP_THISNODE))
1393 return page;
1394
1395 return get_any_partial(s, flags);
1396}
1397
1398/*
1399 * Move a page back to the lists.
1400 *
1401 * Must be called with the slab lock held.
1402 *
1403 * On exit the slab lock will have been dropped.
1404 */
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001405static void unfreeze_slab(struct kmem_cache *s, struct page *page, int tail)
Christoph Lameter81819f02007-05-06 14:49:36 -07001406{
Christoph Lametere95eed52007-05-06 14:49:44 -07001407 struct kmem_cache_node *n = get_node(s, page_to_nid(page));
1408
Andy Whitcroft8a380822008-07-23 21:27:18 -07001409 __ClearPageSlubFrozen(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001410 if (page->inuse) {
Christoph Lametere95eed52007-05-06 14:49:44 -07001411
Christoph Lametera973e9d2008-03-01 13:40:44 -08001412 if (page->freelist) {
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001413 add_partial(n, page, tail);
Christoph Lameter84e554e2009-12-18 16:26:23 -06001414 stat(s, tail ? DEACTIVATE_TO_TAIL : DEACTIVATE_TO_HEAD);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001415 } else {
Christoph Lameter84e554e2009-12-18 16:26:23 -06001416 stat(s, DEACTIVATE_FULL);
Andy Whitcroft8a380822008-07-23 21:27:18 -07001417 if (SLABDEBUG && PageSlubDebug(page) &&
1418 (s->flags & SLAB_STORE_USER))
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001419 add_full(n, page);
1420 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001421 slab_unlock(page);
1422 } else {
Christoph Lameter84e554e2009-12-18 16:26:23 -06001423 stat(s, DEACTIVATE_EMPTY);
David Rientjes3b89d7d2009-02-22 17:40:07 -08001424 if (n->nr_partial < s->min_partial) {
Christoph Lametere95eed52007-05-06 14:49:44 -07001425 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07001426 * Adding an empty slab to the partial slabs in order
1427 * to avoid page allocator overhead. This slab needs
1428 * to come after the other slabs with objects in
Christoph Lameter6446faa2008-02-15 23:45:26 -08001429 * so that the others get filled first. That way the
1430 * size of the partial list stays small.
1431 *
Christoph Lameter0121c6192008-04-29 16:11:12 -07001432 * kmem_cache_shrink can reclaim any empty slabs from
1433 * the partial list.
Christoph Lametere95eed52007-05-06 14:49:44 -07001434 */
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001435 add_partial(n, page, 1);
Christoph Lametere95eed52007-05-06 14:49:44 -07001436 slab_unlock(page);
1437 } else {
1438 slab_unlock(page);
Christoph Lameter84e554e2009-12-18 16:26:23 -06001439 stat(s, FREE_SLAB);
Christoph Lametere95eed52007-05-06 14:49:44 -07001440 discard_slab(s, page);
1441 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001442 }
1443}
1444
1445/*
1446 * Remove the cpu slab
1447 */
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001448static void deactivate_slab(struct kmem_cache *s, struct kmem_cache_cpu *c)
Christoph Lameter81819f02007-05-06 14:49:36 -07001449{
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001450 struct page *page = c->page;
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001451 int tail = 1;
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001452
Christoph Lameterb773ad72008-03-04 11:10:17 -08001453 if (page->freelist)
Christoph Lameter84e554e2009-12-18 16:26:23 -06001454 stat(s, DEACTIVATE_REMOTE_FREES);
Christoph Lameter894b8782007-05-10 03:15:16 -07001455 /*
Christoph Lameter6446faa2008-02-15 23:45:26 -08001456 * Merge cpu freelist into slab freelist. Typically we get here
Christoph Lameter894b8782007-05-10 03:15:16 -07001457 * because both freelists are empty. So this is unlikely
1458 * to occur.
1459 */
Christoph Lametera973e9d2008-03-01 13:40:44 -08001460 while (unlikely(c->freelist)) {
Christoph Lameter894b8782007-05-10 03:15:16 -07001461 void **object;
1462
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001463 tail = 0; /* Hot objects. Put the slab first */
1464
Christoph Lameter894b8782007-05-10 03:15:16 -07001465 /* Retrieve object from cpu_freelist */
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001466 object = c->freelist;
Christoph Lameterff120592009-12-18 16:26:22 -06001467 c->freelist = get_freepointer(s, c->freelist);
Christoph Lameter894b8782007-05-10 03:15:16 -07001468
1469 /* And put onto the regular freelist */
Christoph Lameterff120592009-12-18 16:26:22 -06001470 set_freepointer(s, object, page->freelist);
Christoph Lameter894b8782007-05-10 03:15:16 -07001471 page->freelist = object;
1472 page->inuse--;
1473 }
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001474 c->page = NULL;
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001475 unfreeze_slab(s, page, tail);
Christoph Lameter81819f02007-05-06 14:49:36 -07001476}
1477
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001478static inline void flush_slab(struct kmem_cache *s, struct kmem_cache_cpu *c)
Christoph Lameter81819f02007-05-06 14:49:36 -07001479{
Christoph Lameter84e554e2009-12-18 16:26:23 -06001480 stat(s, CPUSLAB_FLUSH);
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001481 slab_lock(c->page);
1482 deactivate_slab(s, c);
Christoph Lameter81819f02007-05-06 14:49:36 -07001483}
1484
1485/*
1486 * Flush cpu slab.
Christoph Lameter6446faa2008-02-15 23:45:26 -08001487 *
Christoph Lameter81819f02007-05-06 14:49:36 -07001488 * Called from IPI handler with interrupts disabled.
1489 */
Christoph Lameter0c710012007-07-17 04:03:24 -07001490static inline void __flush_cpu_slab(struct kmem_cache *s, int cpu)
Christoph Lameter81819f02007-05-06 14:49:36 -07001491{
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06001492 struct kmem_cache_cpu *c = per_cpu_ptr(s->cpu_slab, cpu);
Christoph Lameter81819f02007-05-06 14:49:36 -07001493
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001494 if (likely(c && c->page))
1495 flush_slab(s, c);
Christoph Lameter81819f02007-05-06 14:49:36 -07001496}
1497
1498static void flush_cpu_slab(void *d)
1499{
1500 struct kmem_cache *s = d;
Christoph Lameter81819f02007-05-06 14:49:36 -07001501
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001502 __flush_cpu_slab(s, smp_processor_id());
Christoph Lameter81819f02007-05-06 14:49:36 -07001503}
1504
1505static void flush_all(struct kmem_cache *s)
1506{
Jens Axboe15c8b6c2008-05-09 09:39:44 +02001507 on_each_cpu(flush_cpu_slab, s, 1);
Christoph Lameter81819f02007-05-06 14:49:36 -07001508}
1509
1510/*
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001511 * Check if the objects in a per cpu structure fit numa
1512 * locality expectations.
1513 */
1514static inline int node_match(struct kmem_cache_cpu *c, int node)
1515{
1516#ifdef CONFIG_NUMA
1517 if (node != -1 && c->node != node)
1518 return 0;
1519#endif
1520 return 1;
1521}
1522
Pekka Enberg781b2ba2009-06-10 18:50:32 +03001523static int count_free(struct page *page)
1524{
1525 return page->objects - page->inuse;
1526}
1527
1528static unsigned long count_partial(struct kmem_cache_node *n,
1529 int (*get_count)(struct page *))
1530{
1531 unsigned long flags;
1532 unsigned long x = 0;
1533 struct page *page;
1534
1535 spin_lock_irqsave(&n->list_lock, flags);
1536 list_for_each_entry(page, &n->partial, lru)
1537 x += get_count(page);
1538 spin_unlock_irqrestore(&n->list_lock, flags);
1539 return x;
1540}
1541
Alexander Beregalov26c02cf2009-06-11 14:08:48 +04001542static inline unsigned long node_nr_objs(struct kmem_cache_node *n)
1543{
1544#ifdef CONFIG_SLUB_DEBUG
1545 return atomic_long_read(&n->total_objects);
1546#else
1547 return 0;
1548#endif
1549}
1550
Pekka Enberg781b2ba2009-06-10 18:50:32 +03001551static noinline void
1552slab_out_of_memory(struct kmem_cache *s, gfp_t gfpflags, int nid)
1553{
1554 int node;
1555
1556 printk(KERN_WARNING
1557 "SLUB: Unable to allocate memory on node %d (gfp=0x%x)\n",
1558 nid, gfpflags);
1559 printk(KERN_WARNING " cache: %s, object size: %d, buffer size: %d, "
1560 "default order: %d, min order: %d\n", s->name, s->objsize,
1561 s->size, oo_order(s->oo), oo_order(s->min));
1562
David Rientjesfa5ec8a2009-07-07 00:14:14 -07001563 if (oo_order(s->min) > get_order(s->objsize))
1564 printk(KERN_WARNING " %s debugging increased min order, use "
1565 "slub_debug=O to disable.\n", s->name);
1566
Pekka Enberg781b2ba2009-06-10 18:50:32 +03001567 for_each_online_node(node) {
1568 struct kmem_cache_node *n = get_node(s, node);
1569 unsigned long nr_slabs;
1570 unsigned long nr_objs;
1571 unsigned long nr_free;
1572
1573 if (!n)
1574 continue;
1575
Alexander Beregalov26c02cf2009-06-11 14:08:48 +04001576 nr_free = count_partial(n, count_free);
1577 nr_slabs = node_nr_slabs(n);
1578 nr_objs = node_nr_objs(n);
Pekka Enberg781b2ba2009-06-10 18:50:32 +03001579
1580 printk(KERN_WARNING
1581 " node %d: slabs: %ld, objs: %ld, free: %ld\n",
1582 node, nr_slabs, nr_objs, nr_free);
1583 }
1584}
1585
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001586/*
Christoph Lameter894b8782007-05-10 03:15:16 -07001587 * Slow path. The lockless freelist is empty or we need to perform
1588 * debugging duties.
Christoph Lameter81819f02007-05-06 14:49:36 -07001589 *
Christoph Lameter894b8782007-05-10 03:15:16 -07001590 * Interrupts are disabled.
Christoph Lameter81819f02007-05-06 14:49:36 -07001591 *
Christoph Lameter894b8782007-05-10 03:15:16 -07001592 * Processing is still very fast if new objects have been freed to the
1593 * regular freelist. In that case we simply take over the regular freelist
1594 * as the lockless freelist and zap the regular freelist.
Christoph Lameter81819f02007-05-06 14:49:36 -07001595 *
Christoph Lameter894b8782007-05-10 03:15:16 -07001596 * If that is not working then we fall back to the partial lists. We take the
1597 * first element of the freelist as the object to allocate now and move the
1598 * rest of the freelist to the lockless freelist.
1599 *
1600 * And if we were unable to get a new slab from the partial slab lists then
Christoph Lameter6446faa2008-02-15 23:45:26 -08001601 * we need to allocate a new slab. This is the slowest path since it involves
1602 * a call to the page allocator and the setup of a new slab.
Christoph Lameter81819f02007-05-06 14:49:36 -07001603 */
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03001604static void *__slab_alloc(struct kmem_cache *s, gfp_t gfpflags, int node,
1605 unsigned long addr, struct kmem_cache_cpu *c)
Christoph Lameter81819f02007-05-06 14:49:36 -07001606{
Christoph Lameter81819f02007-05-06 14:49:36 -07001607 void **object;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001608 struct page *new;
Christoph Lameter81819f02007-05-06 14:49:36 -07001609
Linus Torvaldse72e9c22008-03-27 20:56:33 -07001610 /* We handle __GFP_ZERO in the caller */
1611 gfpflags &= ~__GFP_ZERO;
1612
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001613 if (!c->page)
Christoph Lameter81819f02007-05-06 14:49:36 -07001614 goto new_slab;
1615
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001616 slab_lock(c->page);
1617 if (unlikely(!node_match(c, node)))
Christoph Lameter81819f02007-05-06 14:49:36 -07001618 goto another_slab;
Christoph Lameter6446faa2008-02-15 23:45:26 -08001619
Christoph Lameter84e554e2009-12-18 16:26:23 -06001620 stat(s, ALLOC_REFILL);
Christoph Lameter6446faa2008-02-15 23:45:26 -08001621
Christoph Lameter894b8782007-05-10 03:15:16 -07001622load_freelist:
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001623 object = c->page->freelist;
Christoph Lametera973e9d2008-03-01 13:40:44 -08001624 if (unlikely(!object))
Christoph Lameter81819f02007-05-06 14:49:36 -07001625 goto another_slab;
Andy Whitcroft8a380822008-07-23 21:27:18 -07001626 if (unlikely(SLABDEBUG && PageSlubDebug(c->page)))
Christoph Lameter81819f02007-05-06 14:49:36 -07001627 goto debug;
1628
Christoph Lameterff120592009-12-18 16:26:22 -06001629 c->freelist = get_freepointer(s, object);
Christoph Lameter39b26462008-04-14 19:11:30 +03001630 c->page->inuse = c->page->objects;
Christoph Lametera973e9d2008-03-01 13:40:44 -08001631 c->page->freelist = NULL;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001632 c->node = page_to_nid(c->page);
Christoph Lameter1f842602008-01-07 23:20:30 -08001633unlock_out:
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001634 slab_unlock(c->page);
Christoph Lameter84e554e2009-12-18 16:26:23 -06001635 stat(s, ALLOC_SLOWPATH);
Christoph Lameter81819f02007-05-06 14:49:36 -07001636 return object;
1637
1638another_slab:
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001639 deactivate_slab(s, c);
Christoph Lameter81819f02007-05-06 14:49:36 -07001640
1641new_slab:
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001642 new = get_partial(s, gfpflags, node);
1643 if (new) {
1644 c->page = new;
Christoph Lameter84e554e2009-12-18 16:26:23 -06001645 stat(s, ALLOC_FROM_PARTIAL);
Christoph Lameter894b8782007-05-10 03:15:16 -07001646 goto load_freelist;
Christoph Lameter81819f02007-05-06 14:49:36 -07001647 }
1648
Christoph Lameterb811c202007-10-16 23:25:51 -07001649 if (gfpflags & __GFP_WAIT)
1650 local_irq_enable();
1651
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001652 new = new_slab(s, gfpflags, node);
Christoph Lameterb811c202007-10-16 23:25:51 -07001653
1654 if (gfpflags & __GFP_WAIT)
1655 local_irq_disable();
1656
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001657 if (new) {
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06001658 c = __this_cpu_ptr(s->cpu_slab);
Christoph Lameter84e554e2009-12-18 16:26:23 -06001659 stat(s, ALLOC_SLAB);
Christoph Lameter05aa3452007-11-05 11:31:58 -08001660 if (c->page)
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001661 flush_slab(s, c);
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001662 slab_lock(new);
Andy Whitcroft8a380822008-07-23 21:27:18 -07001663 __SetPageSlubFrozen(new);
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001664 c->page = new;
Christoph Lameter4b6f0752007-05-16 22:10:53 -07001665 goto load_freelist;
Christoph Lameter81819f02007-05-06 14:49:36 -07001666 }
Pekka Enberg95f85982009-06-11 16:18:09 +03001667 if (!(gfpflags & __GFP_NOWARN) && printk_ratelimit())
1668 slab_out_of_memory(s, gfpflags, node);
Christoph Lameter71c7a062008-02-14 14:28:01 -08001669 return NULL;
Christoph Lameter81819f02007-05-06 14:49:36 -07001670debug:
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001671 if (!alloc_debug_processing(s, c->page, object, addr))
Christoph Lameter81819f02007-05-06 14:49:36 -07001672 goto another_slab;
Christoph Lameter894b8782007-05-10 03:15:16 -07001673
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001674 c->page->inuse++;
Christoph Lameterff120592009-12-18 16:26:22 -06001675 c->page->freelist = get_freepointer(s, object);
Christoph Lameteree3c72a2007-10-16 01:26:07 -07001676 c->node = -1;
Christoph Lameter1f842602008-01-07 23:20:30 -08001677 goto unlock_out;
Christoph Lameter894b8782007-05-10 03:15:16 -07001678}
1679
1680/*
1681 * Inlined fastpath so that allocation functions (kmalloc, kmem_cache_alloc)
1682 * have the fastpath folded into their functions. So no function call
1683 * overhead for requests that can be satisfied on the fastpath.
1684 *
1685 * The fastpath works by first checking if the lockless freelist can be used.
1686 * If not then __slab_alloc is called for slow processing.
1687 *
1688 * Otherwise we can simply pick the next object from the lockless free list.
1689 */
Pekka Enberg06428782008-01-07 23:20:27 -08001690static __always_inline void *slab_alloc(struct kmem_cache *s,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03001691 gfp_t gfpflags, int node, unsigned long addr)
Christoph Lameter894b8782007-05-10 03:15:16 -07001692{
Christoph Lameter894b8782007-05-10 03:15:16 -07001693 void **object;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001694 struct kmem_cache_cpu *c;
Christoph Lameter1f842602008-01-07 23:20:30 -08001695 unsigned long flags;
1696
Benjamin Herrenschmidtdcce2842009-06-18 13:24:12 +10001697 gfpflags &= gfp_allowed_mask;
Pekka Enberg7e85ee02009-06-12 14:03:06 +03001698
Nick Piggincf40bd12009-01-21 08:12:39 +01001699 lockdep_trace_alloc(gfpflags);
OGAWA Hirofumi89124d72008-11-19 21:23:59 +09001700 might_sleep_if(gfpflags & __GFP_WAIT);
Pekka Enberg3c506ef2008-12-29 11:47:05 +02001701
Dmitry Monakhov4c13dd32010-02-26 09:36:12 +03001702 if (should_failslab(s->objsize, gfpflags, s->flags))
Akinobu Mita773ff602008-12-23 19:37:01 +09001703 return NULL;
1704
Christoph Lameter894b8782007-05-10 03:15:16 -07001705 local_irq_save(flags);
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06001706 c = __this_cpu_ptr(s->cpu_slab);
1707 object = c->freelist;
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06001708 if (unlikely(!object || !node_match(c, node)))
Christoph Lameter894b8782007-05-10 03:15:16 -07001709
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001710 object = __slab_alloc(s, gfpflags, node, addr, c);
Christoph Lameter894b8782007-05-10 03:15:16 -07001711
1712 else {
Christoph Lameterff120592009-12-18 16:26:22 -06001713 c->freelist = get_freepointer(s, object);
Christoph Lameter84e554e2009-12-18 16:26:23 -06001714 stat(s, ALLOC_FASTPATH);
Christoph Lameter894b8782007-05-10 03:15:16 -07001715 }
1716 local_irq_restore(flags);
Christoph Lameterd07dbea2007-07-17 04:03:23 -07001717
Pekka Enberg74e21342009-11-25 20:14:48 +02001718 if (unlikely(gfpflags & __GFP_ZERO) && object)
Christoph Lameterff120592009-12-18 16:26:22 -06001719 memset(object, 0, s->objsize);
Christoph Lameterd07dbea2007-07-17 04:03:23 -07001720
Christoph Lameterff120592009-12-18 16:26:22 -06001721 kmemcheck_slab_alloc(s, gfpflags, object, s->objsize);
1722 kmemleak_alloc_recursive(object, s->objsize, 1, s->flags, gfpflags);
Vegard Nossum5a896d92008-04-04 00:54:48 +02001723
Christoph Lameter894b8782007-05-10 03:15:16 -07001724 return object;
Christoph Lameter81819f02007-05-06 14:49:36 -07001725}
1726
1727void *kmem_cache_alloc(struct kmem_cache *s, gfp_t gfpflags)
1728{
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03001729 void *ret = slab_alloc(s, gfpflags, -1, _RET_IP_);
1730
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02001731 trace_kmem_cache_alloc(_RET_IP_, ret, s->objsize, s->size, gfpflags);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03001732
1733 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07001734}
1735EXPORT_SYMBOL(kmem_cache_alloc);
1736
Li Zefan0f24f122009-12-11 15:45:30 +08001737#ifdef CONFIG_TRACING
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03001738void *kmem_cache_alloc_notrace(struct kmem_cache *s, gfp_t gfpflags)
1739{
1740 return slab_alloc(s, gfpflags, -1, _RET_IP_);
1741}
1742EXPORT_SYMBOL(kmem_cache_alloc_notrace);
1743#endif
1744
Christoph Lameter81819f02007-05-06 14:49:36 -07001745#ifdef CONFIG_NUMA
1746void *kmem_cache_alloc_node(struct kmem_cache *s, gfp_t gfpflags, int node)
1747{
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03001748 void *ret = slab_alloc(s, gfpflags, node, _RET_IP_);
1749
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02001750 trace_kmem_cache_alloc_node(_RET_IP_, ret,
1751 s->objsize, s->size, gfpflags, node);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03001752
1753 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07001754}
1755EXPORT_SYMBOL(kmem_cache_alloc_node);
1756#endif
1757
Li Zefan0f24f122009-12-11 15:45:30 +08001758#ifdef CONFIG_TRACING
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03001759void *kmem_cache_alloc_node_notrace(struct kmem_cache *s,
1760 gfp_t gfpflags,
1761 int node)
1762{
1763 return slab_alloc(s, gfpflags, node, _RET_IP_);
1764}
1765EXPORT_SYMBOL(kmem_cache_alloc_node_notrace);
1766#endif
1767
Christoph Lameter81819f02007-05-06 14:49:36 -07001768/*
Christoph Lameter894b8782007-05-10 03:15:16 -07001769 * Slow patch handling. This may still be called frequently since objects
1770 * have a longer lifetime than the cpu slabs in most processing loads.
Christoph Lameter81819f02007-05-06 14:49:36 -07001771 *
Christoph Lameter894b8782007-05-10 03:15:16 -07001772 * So we still attempt to reduce cache line usage. Just take the slab
1773 * lock and free the item. If there is no additional partial page
1774 * handling required then we can return immediately.
Christoph Lameter81819f02007-05-06 14:49:36 -07001775 */
Christoph Lameter894b8782007-05-10 03:15:16 -07001776static void __slab_free(struct kmem_cache *s, struct page *page,
Christoph Lameterff120592009-12-18 16:26:22 -06001777 void *x, unsigned long addr)
Christoph Lameter81819f02007-05-06 14:49:36 -07001778{
1779 void *prior;
1780 void **object = (void *)x;
Christoph Lameter81819f02007-05-06 14:49:36 -07001781
Christoph Lameter84e554e2009-12-18 16:26:23 -06001782 stat(s, FREE_SLOWPATH);
Christoph Lameter81819f02007-05-06 14:49:36 -07001783 slab_lock(page);
1784
Andy Whitcroft8a380822008-07-23 21:27:18 -07001785 if (unlikely(SLABDEBUG && PageSlubDebug(page)))
Christoph Lameter81819f02007-05-06 14:49:36 -07001786 goto debug;
Christoph Lameter6446faa2008-02-15 23:45:26 -08001787
Christoph Lameter81819f02007-05-06 14:49:36 -07001788checks_ok:
Christoph Lameterff120592009-12-18 16:26:22 -06001789 prior = page->freelist;
1790 set_freepointer(s, object, prior);
Christoph Lameter81819f02007-05-06 14:49:36 -07001791 page->freelist = object;
1792 page->inuse--;
1793
Andy Whitcroft8a380822008-07-23 21:27:18 -07001794 if (unlikely(PageSlubFrozen(page))) {
Christoph Lameter84e554e2009-12-18 16:26:23 -06001795 stat(s, FREE_FROZEN);
Christoph Lameter81819f02007-05-06 14:49:36 -07001796 goto out_unlock;
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001797 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001798
1799 if (unlikely(!page->inuse))
1800 goto slab_empty;
1801
1802 /*
Christoph Lameter6446faa2008-02-15 23:45:26 -08001803 * Objects left in the slab. If it was not on the partial list before
Christoph Lameter81819f02007-05-06 14:49:36 -07001804 * then add it.
1805 */
Christoph Lametera973e9d2008-03-01 13:40:44 -08001806 if (unlikely(!prior)) {
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001807 add_partial(get_node(s, page_to_nid(page)), page, 1);
Christoph Lameter84e554e2009-12-18 16:26:23 -06001808 stat(s, FREE_ADD_PARTIAL);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001809 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001810
1811out_unlock:
1812 slab_unlock(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001813 return;
1814
1815slab_empty:
Christoph Lametera973e9d2008-03-01 13:40:44 -08001816 if (prior) {
Christoph Lameter81819f02007-05-06 14:49:36 -07001817 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07001818 * Slab still on the partial list.
Christoph Lameter81819f02007-05-06 14:49:36 -07001819 */
1820 remove_partial(s, page);
Christoph Lameter84e554e2009-12-18 16:26:23 -06001821 stat(s, FREE_REMOVE_PARTIAL);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001822 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001823 slab_unlock(page);
Christoph Lameter84e554e2009-12-18 16:26:23 -06001824 stat(s, FREE_SLAB);
Christoph Lameter81819f02007-05-06 14:49:36 -07001825 discard_slab(s, page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001826 return;
1827
1828debug:
Christoph Lameter3ec09742007-05-16 22:11:00 -07001829 if (!free_debug_processing(s, page, x, addr))
Christoph Lameter77c5e2d2007-05-06 14:49:42 -07001830 goto out_unlock;
Christoph Lameter77c5e2d2007-05-06 14:49:42 -07001831 goto checks_ok;
Christoph Lameter81819f02007-05-06 14:49:36 -07001832}
1833
Christoph Lameter894b8782007-05-10 03:15:16 -07001834/*
1835 * Fastpath with forced inlining to produce a kfree and kmem_cache_free that
1836 * can perform fastpath freeing without additional function calls.
1837 *
1838 * The fastpath is only possible if we are freeing to the current cpu slab
1839 * of this processor. This typically the case if we have just allocated
1840 * the item before.
1841 *
1842 * If fastpath is not possible then fall back to __slab_free where we deal
1843 * with all sorts of special processing.
1844 */
Pekka Enberg06428782008-01-07 23:20:27 -08001845static __always_inline void slab_free(struct kmem_cache *s,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03001846 struct page *page, void *x, unsigned long addr)
Christoph Lameter894b8782007-05-10 03:15:16 -07001847{
1848 void **object = (void *)x;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001849 struct kmem_cache_cpu *c;
Christoph Lameter1f842602008-01-07 23:20:30 -08001850 unsigned long flags;
1851
Catalin Marinas06f22f12009-06-11 13:23:18 +01001852 kmemleak_free_recursive(x, s->flags);
Christoph Lameter894b8782007-05-10 03:15:16 -07001853 local_irq_save(flags);
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06001854 c = __this_cpu_ptr(s->cpu_slab);
Christoph Lameterff120592009-12-18 16:26:22 -06001855 kmemcheck_slab_free(s, object, s->objsize);
1856 debug_check_no_locks_freed(object, s->objsize);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -07001857 if (!(s->flags & SLAB_DEBUG_OBJECTS))
Christoph Lameterff120592009-12-18 16:26:22 -06001858 debug_check_no_obj_freed(object, s->objsize);
Christoph Lameteree3c72a2007-10-16 01:26:07 -07001859 if (likely(page == c->page && c->node >= 0)) {
Christoph Lameterff120592009-12-18 16:26:22 -06001860 set_freepointer(s, object, c->freelist);
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001861 c->freelist = object;
Christoph Lameter84e554e2009-12-18 16:26:23 -06001862 stat(s, FREE_FASTPATH);
Christoph Lameter894b8782007-05-10 03:15:16 -07001863 } else
Christoph Lameterff120592009-12-18 16:26:22 -06001864 __slab_free(s, page, x, addr);
Christoph Lameter894b8782007-05-10 03:15:16 -07001865
1866 local_irq_restore(flags);
1867}
1868
Christoph Lameter81819f02007-05-06 14:49:36 -07001869void kmem_cache_free(struct kmem_cache *s, void *x)
1870{
Christoph Lameter77c5e2d2007-05-06 14:49:42 -07001871 struct page *page;
Christoph Lameter81819f02007-05-06 14:49:36 -07001872
Christoph Lameterb49af682007-05-06 14:49:41 -07001873 page = virt_to_head_page(x);
Christoph Lameter81819f02007-05-06 14:49:36 -07001874
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03001875 slab_free(s, page, x, _RET_IP_);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03001876
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02001877 trace_kmem_cache_free(_RET_IP_, x);
Christoph Lameter81819f02007-05-06 14:49:36 -07001878}
1879EXPORT_SYMBOL(kmem_cache_free);
1880
Cyrill Gorcunove9beef12008-10-28 22:02:26 +03001881/* Figure out on which slab page the object resides */
Christoph Lameter81819f02007-05-06 14:49:36 -07001882static struct page *get_object_page(const void *x)
1883{
Christoph Lameterb49af682007-05-06 14:49:41 -07001884 struct page *page = virt_to_head_page(x);
Christoph Lameter81819f02007-05-06 14:49:36 -07001885
1886 if (!PageSlab(page))
1887 return NULL;
1888
1889 return page;
1890}
1891
1892/*
Christoph Lameter672bba32007-05-09 02:32:39 -07001893 * Object placement in a slab is made very easy because we always start at
1894 * offset 0. If we tune the size of the object to the alignment then we can
1895 * get the required alignment by putting one properly sized object after
1896 * another.
Christoph Lameter81819f02007-05-06 14:49:36 -07001897 *
1898 * Notice that the allocation order determines the sizes of the per cpu
1899 * caches. Each processor has always one slab available for allocations.
1900 * Increasing the allocation order reduces the number of times that slabs
Christoph Lameter672bba32007-05-09 02:32:39 -07001901 * must be moved on and off the partial lists and is therefore a factor in
Christoph Lameter81819f02007-05-06 14:49:36 -07001902 * locking overhead.
Christoph Lameter81819f02007-05-06 14:49:36 -07001903 */
1904
1905/*
1906 * Mininum / Maximum order of slab pages. This influences locking overhead
1907 * and slab fragmentation. A higher order reduces the number of partial slabs
1908 * and increases the number of allocations possible without having to
1909 * take the list_lock.
1910 */
1911static int slub_min_order;
Christoph Lameter114e9e82008-04-14 19:11:41 +03001912static int slub_max_order = PAGE_ALLOC_COSTLY_ORDER;
Christoph Lameter9b2cd502008-04-14 19:11:41 +03001913static int slub_min_objects;
Christoph Lameter81819f02007-05-06 14:49:36 -07001914
1915/*
1916 * Merge control. If this is set then no merging of slab caches will occur.
Christoph Lameter672bba32007-05-09 02:32:39 -07001917 * (Could be removed. This was introduced to pacify the merge skeptics.)
Christoph Lameter81819f02007-05-06 14:49:36 -07001918 */
1919static int slub_nomerge;
1920
1921/*
Christoph Lameter81819f02007-05-06 14:49:36 -07001922 * Calculate the order of allocation given an slab object size.
1923 *
Christoph Lameter672bba32007-05-09 02:32:39 -07001924 * The order of allocation has significant impact on performance and other
1925 * system components. Generally order 0 allocations should be preferred since
1926 * order 0 does not cause fragmentation in the page allocator. Larger objects
1927 * be problematic to put into order 0 slabs because there may be too much
Christoph Lameterc124f5b2008-04-14 19:13:29 +03001928 * unused space left. We go to a higher order if more than 1/16th of the slab
Christoph Lameter672bba32007-05-09 02:32:39 -07001929 * would be wasted.
Christoph Lameter81819f02007-05-06 14:49:36 -07001930 *
Christoph Lameter672bba32007-05-09 02:32:39 -07001931 * In order to reach satisfactory performance we must ensure that a minimum
1932 * number of objects is in one slab. Otherwise we may generate too much
1933 * activity on the partial lists which requires taking the list_lock. This is
1934 * less a concern for large slabs though which are rarely used.
Christoph Lameter81819f02007-05-06 14:49:36 -07001935 *
Christoph Lameter672bba32007-05-09 02:32:39 -07001936 * slub_max_order specifies the order where we begin to stop considering the
1937 * number of objects in a slab as critical. If we reach slub_max_order then
1938 * we try to keep the page order as low as possible. So we accept more waste
1939 * of space in favor of a small page order.
1940 *
1941 * Higher order allocations also allow the placement of more objects in a
1942 * slab and thereby reduce object handling overhead. If the user has
1943 * requested a higher mininum order then we start with that one instead of
1944 * the smallest order which will fit the object.
Christoph Lameter81819f02007-05-06 14:49:36 -07001945 */
Christoph Lameter5e6d4442007-05-09 02:32:46 -07001946static inline int slab_order(int size, int min_objects,
1947 int max_order, int fract_leftover)
Christoph Lameter81819f02007-05-06 14:49:36 -07001948{
1949 int order;
1950 int rem;
Christoph Lameter6300ea72007-07-17 04:03:20 -07001951 int min_order = slub_min_order;
Christoph Lameter81819f02007-05-06 14:49:36 -07001952
Cyrill Gorcunov210b5c02008-10-22 23:00:38 +04001953 if ((PAGE_SIZE << min_order) / size > MAX_OBJS_PER_PAGE)
1954 return get_order(size * MAX_OBJS_PER_PAGE) - 1;
Christoph Lameter39b26462008-04-14 19:11:30 +03001955
Christoph Lameter6300ea72007-07-17 04:03:20 -07001956 for (order = max(min_order,
Christoph Lameter5e6d4442007-05-09 02:32:46 -07001957 fls(min_objects * size - 1) - PAGE_SHIFT);
1958 order <= max_order; order++) {
1959
Christoph Lameter81819f02007-05-06 14:49:36 -07001960 unsigned long slab_size = PAGE_SIZE << order;
1961
Christoph Lameter5e6d4442007-05-09 02:32:46 -07001962 if (slab_size < min_objects * size)
Christoph Lameter81819f02007-05-06 14:49:36 -07001963 continue;
1964
Christoph Lameter81819f02007-05-06 14:49:36 -07001965 rem = slab_size % size;
1966
Christoph Lameter5e6d4442007-05-09 02:32:46 -07001967 if (rem <= slab_size / fract_leftover)
Christoph Lameter81819f02007-05-06 14:49:36 -07001968 break;
1969
1970 }
Christoph Lameter672bba32007-05-09 02:32:39 -07001971
Christoph Lameter81819f02007-05-06 14:49:36 -07001972 return order;
1973}
1974
Christoph Lameter5e6d4442007-05-09 02:32:46 -07001975static inline int calculate_order(int size)
1976{
1977 int order;
1978 int min_objects;
1979 int fraction;
Zhang Yanmine8120ff2009-02-12 18:00:17 +02001980 int max_objects;
Christoph Lameter5e6d4442007-05-09 02:32:46 -07001981
1982 /*
1983 * Attempt to find best configuration for a slab. This
1984 * works by first attempting to generate a layout with
1985 * the best configuration and backing off gradually.
1986 *
1987 * First we reduce the acceptable waste in a slab. Then
1988 * we reduce the minimum objects required in a slab.
1989 */
1990 min_objects = slub_min_objects;
Christoph Lameter9b2cd502008-04-14 19:11:41 +03001991 if (!min_objects)
1992 min_objects = 4 * (fls(nr_cpu_ids) + 1);
Zhang Yanmine8120ff2009-02-12 18:00:17 +02001993 max_objects = (PAGE_SIZE << slub_max_order)/size;
1994 min_objects = min(min_objects, max_objects);
1995
Christoph Lameter5e6d4442007-05-09 02:32:46 -07001996 while (min_objects > 1) {
Christoph Lameterc124f5b2008-04-14 19:13:29 +03001997 fraction = 16;
Christoph Lameter5e6d4442007-05-09 02:32:46 -07001998 while (fraction >= 4) {
1999 order = slab_order(size, min_objects,
2000 slub_max_order, fraction);
2001 if (order <= slub_max_order)
2002 return order;
2003 fraction /= 2;
2004 }
Amerigo Wang5086c382009-08-19 21:44:13 +03002005 min_objects--;
Christoph Lameter5e6d4442007-05-09 02:32:46 -07002006 }
2007
2008 /*
2009 * We were unable to place multiple objects in a slab. Now
2010 * lets see if we can place a single object there.
2011 */
2012 order = slab_order(size, 1, slub_max_order, 1);
2013 if (order <= slub_max_order)
2014 return order;
2015
2016 /*
2017 * Doh this slab cannot be placed using slub_max_order.
2018 */
2019 order = slab_order(size, 1, MAX_ORDER, 1);
David Rientjes818cf592009-04-23 09:58:22 +03002020 if (order < MAX_ORDER)
Christoph Lameter5e6d4442007-05-09 02:32:46 -07002021 return order;
2022 return -ENOSYS;
2023}
2024
Christoph Lameter81819f02007-05-06 14:49:36 -07002025/*
Christoph Lameter672bba32007-05-09 02:32:39 -07002026 * Figure out what the alignment of the objects will be.
Christoph Lameter81819f02007-05-06 14:49:36 -07002027 */
2028static unsigned long calculate_alignment(unsigned long flags,
2029 unsigned long align, unsigned long size)
2030{
2031 /*
Christoph Lameter6446faa2008-02-15 23:45:26 -08002032 * If the user wants hardware cache aligned objects then follow that
2033 * suggestion if the object is sufficiently large.
Christoph Lameter81819f02007-05-06 14:49:36 -07002034 *
Christoph Lameter6446faa2008-02-15 23:45:26 -08002035 * The hardware cache alignment cannot override the specified
2036 * alignment though. If that is greater then use it.
Christoph Lameter81819f02007-05-06 14:49:36 -07002037 */
Nick Pigginb6210382008-03-05 14:05:56 -08002038 if (flags & SLAB_HWCACHE_ALIGN) {
2039 unsigned long ralign = cache_line_size();
2040 while (size <= ralign / 2)
2041 ralign /= 2;
2042 align = max(align, ralign);
2043 }
Christoph Lameter81819f02007-05-06 14:49:36 -07002044
2045 if (align < ARCH_SLAB_MINALIGN)
Nick Pigginb6210382008-03-05 14:05:56 -08002046 align = ARCH_SLAB_MINALIGN;
Christoph Lameter81819f02007-05-06 14:49:36 -07002047
2048 return ALIGN(align, sizeof(void *));
2049}
2050
Pekka Enberg5595cff2008-08-05 09:28:47 +03002051static void
2052init_kmem_cache_node(struct kmem_cache_node *n, struct kmem_cache *s)
Christoph Lameter81819f02007-05-06 14:49:36 -07002053{
2054 n->nr_partial = 0;
Christoph Lameter81819f02007-05-06 14:49:36 -07002055 spin_lock_init(&n->list_lock);
2056 INIT_LIST_HEAD(&n->partial);
Christoph Lameter8ab13722007-07-17 04:03:32 -07002057#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter0f389ec2008-04-14 18:53:02 +03002058 atomic_long_set(&n->nr_slabs, 0);
Salman Qazi02b71b72008-09-11 12:25:41 -07002059 atomic_long_set(&n->total_objects, 0);
Christoph Lameter643b1132007-05-06 14:49:42 -07002060 INIT_LIST_HEAD(&n->full);
Christoph Lameter8ab13722007-07-17 04:03:32 -07002061#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07002062}
2063
Christoph Lameter91efd772010-01-21 17:43:35 -06002064static DEFINE_PER_CPU(struct kmem_cache_cpu, kmalloc_percpu[KMALLOC_CACHES]);
Christoph Lameter4c93c3552007-10-16 01:26:08 -07002065
2066static inline int alloc_kmem_cache_cpus(struct kmem_cache *s, gfp_t flags)
2067{
Christoph Lameter756dee72009-12-18 16:26:21 -06002068 if (s < kmalloc_caches + KMALLOC_CACHES && s >= kmalloc_caches)
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06002069 /*
2070 * Boot time creation of the kmalloc array. Use static per cpu data
2071 * since the per cpu allocator is not available yet.
2072 */
Stephen Rothwell1154fab2010-03-01 16:04:45 +11002073 s->cpu_slab = kmalloc_percpu + (s - kmalloc_caches);
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06002074 else
2075 s->cpu_slab = alloc_percpu(struct kmem_cache_cpu);
2076
2077 if (!s->cpu_slab)
2078 return 0;
2079
Christoph Lameter4c93c3552007-10-16 01:26:08 -07002080 return 1;
2081}
Christoph Lameter4c93c3552007-10-16 01:26:08 -07002082
Christoph Lameter81819f02007-05-06 14:49:36 -07002083#ifdef CONFIG_NUMA
2084/*
2085 * No kmalloc_node yet so do it by hand. We know that this is the first
2086 * slab on the node for this slabcache. There are no concurrent accesses
2087 * possible.
2088 *
2089 * Note that this function only works on the kmalloc_node_cache
Christoph Lameter4c93c3552007-10-16 01:26:08 -07002090 * when allocating for the kmalloc_node_cache. This is used for bootstrapping
2091 * memory on a fresh node that has no slab structures yet.
Christoph Lameter81819f02007-05-06 14:49:36 -07002092 */
David Rientjes0094de92008-11-25 19:14:19 -08002093static void early_kmem_cache_node_alloc(gfp_t gfpflags, int node)
Christoph Lameter81819f02007-05-06 14:49:36 -07002094{
2095 struct page *page;
2096 struct kmem_cache_node *n;
rootba84c732008-01-07 23:20:28 -08002097 unsigned long flags;
Christoph Lameter81819f02007-05-06 14:49:36 -07002098
2099 BUG_ON(kmalloc_caches->size < sizeof(struct kmem_cache_node));
2100
Christoph Lametera2f92ee2007-08-22 14:01:57 -07002101 page = new_slab(kmalloc_caches, gfpflags, node);
Christoph Lameter81819f02007-05-06 14:49:36 -07002102
2103 BUG_ON(!page);
Christoph Lametera2f92ee2007-08-22 14:01:57 -07002104 if (page_to_nid(page) != node) {
2105 printk(KERN_ERR "SLUB: Unable to allocate memory from "
2106 "node %d\n", node);
2107 printk(KERN_ERR "SLUB: Allocating a useless per node structure "
2108 "in order to be able to continue\n");
2109 }
2110
Christoph Lameter81819f02007-05-06 14:49:36 -07002111 n = page->freelist;
2112 BUG_ON(!n);
2113 page->freelist = get_freepointer(kmalloc_caches, n);
2114 page->inuse++;
2115 kmalloc_caches->node[node] = n;
Christoph Lameter8ab13722007-07-17 04:03:32 -07002116#ifdef CONFIG_SLUB_DEBUG
Christoph Lameterd45f39c2007-07-17 04:03:21 -07002117 init_object(kmalloc_caches, n, 1);
2118 init_tracking(kmalloc_caches, n);
Christoph Lameter8ab13722007-07-17 04:03:32 -07002119#endif
Pekka Enberg5595cff2008-08-05 09:28:47 +03002120 init_kmem_cache_node(n, kmalloc_caches);
Christoph Lameter205ab992008-04-14 19:11:40 +03002121 inc_slabs_node(kmalloc_caches, node, page->objects);
Christoph Lameter6446faa2008-02-15 23:45:26 -08002122
rootba84c732008-01-07 23:20:28 -08002123 /*
2124 * lockdep requires consistent irq usage for each lock
2125 * so even though there cannot be a race this early in
2126 * the boot sequence, we still disable irqs.
2127 */
2128 local_irq_save(flags);
Christoph Lameter7c2e1322008-01-07 23:20:27 -08002129 add_partial(n, page, 0);
rootba84c732008-01-07 23:20:28 -08002130 local_irq_restore(flags);
Christoph Lameter81819f02007-05-06 14:49:36 -07002131}
2132
2133static void free_kmem_cache_nodes(struct kmem_cache *s)
2134{
2135 int node;
2136
Christoph Lameterf64dc582007-10-16 01:25:33 -07002137 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002138 struct kmem_cache_node *n = s->node[node];
Alexander Duyck73367bd2010-05-21 14:41:35 -07002139 if (n)
Christoph Lameter81819f02007-05-06 14:49:36 -07002140 kmem_cache_free(kmalloc_caches, n);
2141 s->node[node] = NULL;
2142 }
2143}
2144
2145static int init_kmem_cache_nodes(struct kmem_cache *s, gfp_t gfpflags)
2146{
2147 int node;
Christoph Lameter81819f02007-05-06 14:49:36 -07002148
Christoph Lameterf64dc582007-10-16 01:25:33 -07002149 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002150 struct kmem_cache_node *n;
2151
Alexander Duyck73367bd2010-05-21 14:41:35 -07002152 if (slab_state == DOWN) {
2153 early_kmem_cache_node_alloc(gfpflags, node);
2154 continue;
Christoph Lameter81819f02007-05-06 14:49:36 -07002155 }
Alexander Duyck73367bd2010-05-21 14:41:35 -07002156 n = kmem_cache_alloc_node(kmalloc_caches,
2157 gfpflags, node);
2158
2159 if (!n) {
2160 free_kmem_cache_nodes(s);
2161 return 0;
2162 }
2163
Christoph Lameter81819f02007-05-06 14:49:36 -07002164 s->node[node] = n;
Pekka Enberg5595cff2008-08-05 09:28:47 +03002165 init_kmem_cache_node(n, s);
Christoph Lameter81819f02007-05-06 14:49:36 -07002166 }
2167 return 1;
2168}
2169#else
2170static void free_kmem_cache_nodes(struct kmem_cache *s)
2171{
2172}
2173
2174static int init_kmem_cache_nodes(struct kmem_cache *s, gfp_t gfpflags)
2175{
Pekka Enberg5595cff2008-08-05 09:28:47 +03002176 init_kmem_cache_node(&s->local_node, s);
Christoph Lameter81819f02007-05-06 14:49:36 -07002177 return 1;
2178}
2179#endif
2180
David Rientjesc0bdb232009-02-25 09:16:35 +02002181static void set_min_partial(struct kmem_cache *s, unsigned long min)
David Rientjes3b89d7d2009-02-22 17:40:07 -08002182{
2183 if (min < MIN_PARTIAL)
2184 min = MIN_PARTIAL;
2185 else if (min > MAX_PARTIAL)
2186 min = MAX_PARTIAL;
2187 s->min_partial = min;
2188}
2189
Christoph Lameter81819f02007-05-06 14:49:36 -07002190/*
2191 * calculate_sizes() determines the order and the distribution of data within
2192 * a slab object.
2193 */
Christoph Lameter06b285d2008-04-14 19:11:41 +03002194static int calculate_sizes(struct kmem_cache *s, int forced_order)
Christoph Lameter81819f02007-05-06 14:49:36 -07002195{
2196 unsigned long flags = s->flags;
2197 unsigned long size = s->objsize;
2198 unsigned long align = s->align;
Christoph Lameter834f3d12008-04-14 19:11:31 +03002199 int order;
Christoph Lameter81819f02007-05-06 14:49:36 -07002200
2201 /*
Christoph Lameterd8b42bf2008-02-15 23:45:25 -08002202 * Round up object size to the next word boundary. We can only
2203 * place the free pointer at word boundaries and this determines
2204 * the possible location of the free pointer.
2205 */
2206 size = ALIGN(size, sizeof(void *));
2207
2208#ifdef CONFIG_SLUB_DEBUG
2209 /*
Christoph Lameter81819f02007-05-06 14:49:36 -07002210 * Determine if we can poison the object itself. If the user of
2211 * the slab may touch the object after free or before allocation
2212 * then we should never poison the object itself.
2213 */
2214 if ((flags & SLAB_POISON) && !(flags & SLAB_DESTROY_BY_RCU) &&
Christoph Lameterc59def9f2007-05-16 22:10:50 -07002215 !s->ctor)
Christoph Lameter81819f02007-05-06 14:49:36 -07002216 s->flags |= __OBJECT_POISON;
2217 else
2218 s->flags &= ~__OBJECT_POISON;
2219
Christoph Lameter81819f02007-05-06 14:49:36 -07002220
2221 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07002222 * If we are Redzoning then check if there is some space between the
Christoph Lameter81819f02007-05-06 14:49:36 -07002223 * end of the object and the free pointer. If not then add an
Christoph Lameter672bba32007-05-09 02:32:39 -07002224 * additional word to have some bytes to store Redzone information.
Christoph Lameter81819f02007-05-06 14:49:36 -07002225 */
2226 if ((flags & SLAB_RED_ZONE) && size == s->objsize)
2227 size += sizeof(void *);
Christoph Lameter41ecc552007-05-09 02:32:44 -07002228#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07002229
2230 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07002231 * With that we have determined the number of bytes in actual use
2232 * by the object. This is the potential offset to the free pointer.
Christoph Lameter81819f02007-05-06 14:49:36 -07002233 */
2234 s->inuse = size;
2235
2236 if (((flags & (SLAB_DESTROY_BY_RCU | SLAB_POISON)) ||
Christoph Lameterc59def9f2007-05-16 22:10:50 -07002237 s->ctor)) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002238 /*
2239 * Relocate free pointer after the object if it is not
2240 * permitted to overwrite the first word of the object on
2241 * kmem_cache_free.
2242 *
2243 * This is the case if we do RCU, have a constructor or
2244 * destructor or are poisoning the objects.
2245 */
2246 s->offset = size;
2247 size += sizeof(void *);
2248 }
2249
Christoph Lameterc12b3c62007-05-23 13:57:31 -07002250#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter81819f02007-05-06 14:49:36 -07002251 if (flags & SLAB_STORE_USER)
2252 /*
2253 * Need to store information about allocs and frees after
2254 * the object.
2255 */
2256 size += 2 * sizeof(struct track);
2257
Christoph Lameterbe7b3fb2007-05-09 02:32:36 -07002258 if (flags & SLAB_RED_ZONE)
Christoph Lameter81819f02007-05-06 14:49:36 -07002259 /*
2260 * Add some empty padding so that we can catch
2261 * overwrites from earlier objects rather than let
2262 * tracking information or the free pointer be
Frederik Schwarzer0211a9c2008-12-29 22:14:56 +01002263 * corrupted if a user writes before the start
Christoph Lameter81819f02007-05-06 14:49:36 -07002264 * of the object.
2265 */
2266 size += sizeof(void *);
Christoph Lameter41ecc552007-05-09 02:32:44 -07002267#endif
Christoph Lameter672bba32007-05-09 02:32:39 -07002268
Christoph Lameter81819f02007-05-06 14:49:36 -07002269 /*
2270 * Determine the alignment based on various parameters that the
Christoph Lameter65c02d42007-05-09 02:32:35 -07002271 * user specified and the dynamic determination of cache line size
2272 * on bootup.
Christoph Lameter81819f02007-05-06 14:49:36 -07002273 */
2274 align = calculate_alignment(flags, align, s->objsize);
Zhang, Yanmindcb0ce12009-07-30 11:28:11 +08002275 s->align = align;
Christoph Lameter81819f02007-05-06 14:49:36 -07002276
2277 /*
2278 * SLUB stores one object immediately after another beginning from
2279 * offset 0. In order to align the objects we have to simply size
2280 * each object to conform to the alignment.
2281 */
2282 size = ALIGN(size, align);
2283 s->size = size;
Christoph Lameter06b285d2008-04-14 19:11:41 +03002284 if (forced_order >= 0)
2285 order = forced_order;
2286 else
2287 order = calculate_order(size);
Christoph Lameter81819f02007-05-06 14:49:36 -07002288
Christoph Lameter834f3d12008-04-14 19:11:31 +03002289 if (order < 0)
Christoph Lameter81819f02007-05-06 14:49:36 -07002290 return 0;
2291
Christoph Lameterb7a49f02008-02-14 14:21:32 -08002292 s->allocflags = 0;
Christoph Lameter834f3d12008-04-14 19:11:31 +03002293 if (order)
Christoph Lameterb7a49f02008-02-14 14:21:32 -08002294 s->allocflags |= __GFP_COMP;
2295
2296 if (s->flags & SLAB_CACHE_DMA)
2297 s->allocflags |= SLUB_DMA;
2298
2299 if (s->flags & SLAB_RECLAIM_ACCOUNT)
2300 s->allocflags |= __GFP_RECLAIMABLE;
2301
Christoph Lameter81819f02007-05-06 14:49:36 -07002302 /*
2303 * Determine the number of objects per slab
2304 */
Christoph Lameter834f3d12008-04-14 19:11:31 +03002305 s->oo = oo_make(order, size);
Christoph Lameter65c33762008-04-14 19:11:40 +03002306 s->min = oo_make(get_order(size), size);
Christoph Lameter205ab992008-04-14 19:11:40 +03002307 if (oo_objects(s->oo) > oo_objects(s->max))
2308 s->max = s->oo;
Christoph Lameter81819f02007-05-06 14:49:36 -07002309
Christoph Lameter834f3d12008-04-14 19:11:31 +03002310 return !!oo_objects(s->oo);
Christoph Lameter81819f02007-05-06 14:49:36 -07002311
2312}
2313
Christoph Lameter81819f02007-05-06 14:49:36 -07002314static int kmem_cache_open(struct kmem_cache *s, gfp_t gfpflags,
2315 const char *name, size_t size,
2316 size_t align, unsigned long flags,
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002317 void (*ctor)(void *))
Christoph Lameter81819f02007-05-06 14:49:36 -07002318{
2319 memset(s, 0, kmem_size);
2320 s->name = name;
2321 s->ctor = ctor;
Christoph Lameter81819f02007-05-06 14:49:36 -07002322 s->objsize = size;
Christoph Lameter81819f02007-05-06 14:49:36 -07002323 s->align = align;
Christoph Lameterba0268a2007-09-11 15:24:11 -07002324 s->flags = kmem_cache_flags(size, flags, name, ctor);
Christoph Lameter81819f02007-05-06 14:49:36 -07002325
Christoph Lameter06b285d2008-04-14 19:11:41 +03002326 if (!calculate_sizes(s, -1))
Christoph Lameter81819f02007-05-06 14:49:36 -07002327 goto error;
David Rientjes3de47212009-07-27 18:30:35 -07002328 if (disable_higher_order_debug) {
2329 /*
2330 * Disable debugging flags that store metadata if the min slab
2331 * order increased.
2332 */
2333 if (get_order(s->size) > get_order(s->objsize)) {
2334 s->flags &= ~DEBUG_METADATA_FLAGS;
2335 s->offset = 0;
2336 if (!calculate_sizes(s, -1))
2337 goto error;
2338 }
2339 }
Christoph Lameter81819f02007-05-06 14:49:36 -07002340
David Rientjes3b89d7d2009-02-22 17:40:07 -08002341 /*
2342 * The larger the object size is, the more pages we want on the partial
2343 * list to avoid pounding the page allocator excessively.
2344 */
David Rientjesc0bdb232009-02-25 09:16:35 +02002345 set_min_partial(s, ilog2(s->size));
Christoph Lameter81819f02007-05-06 14:49:36 -07002346 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 Lameterff120592009-12-18 16:26:22 -06002355
Christoph Lameter4c93c3552007-10-16 01:26:08 -07002356 free_kmem_cache_nodes(s);
Christoph Lameter81819f02007-05-06 14:49:36 -07002357error:
2358 if (flags & SLAB_PANIC)
2359 panic("Cannot create slab %s size=%lu realsize=%u "
2360 "order=%u offset=%u flags=%lx\n",
Christoph Lameter834f3d12008-04-14 19:11:31 +03002361 s->name, (unsigned long)size, s->size, oo_order(s->oo),
Christoph Lameter81819f02007-05-06 14:49:36 -07002362 s->offset, flags);
2363 return 0;
2364}
Christoph Lameter81819f02007-05-06 14:49:36 -07002365
2366/*
2367 * Check if a given pointer is valid
2368 */
2369int kmem_ptr_validate(struct kmem_cache *s, const void *object)
2370{
Pekka Enberg06428782008-01-07 23:20:27 -08002371 struct page *page;
Christoph Lameter81819f02007-05-06 14:49:36 -07002372
Pekka Enbergd3e06e22010-04-07 19:23:41 +03002373 if (!kern_ptr_validate(object, s->size))
2374 return 0;
2375
Christoph Lameter81819f02007-05-06 14:49:36 -07002376 page = get_object_page(object);
2377
2378 if (!page || s != page->slab)
2379 /* No slab or wrong slab */
2380 return 0;
2381
Christoph Lameterabcd08a2007-05-09 02:32:37 -07002382 if (!check_valid_pointer(s, page, object))
Christoph Lameter81819f02007-05-06 14:49:36 -07002383 return 0;
2384
2385 /*
2386 * We could also check if the object is on the slabs freelist.
2387 * But this would be too expensive and it seems that the main
Christoph Lameter6446faa2008-02-15 23:45:26 -08002388 * purpose of kmem_ptr_valid() is to check if the object belongs
Christoph Lameter81819f02007-05-06 14:49:36 -07002389 * to a certain slab.
2390 */
2391 return 1;
2392}
2393EXPORT_SYMBOL(kmem_ptr_validate);
2394
2395/*
2396 * Determine the size of a slab object
2397 */
2398unsigned int kmem_cache_size(struct kmem_cache *s)
2399{
2400 return s->objsize;
2401}
2402EXPORT_SYMBOL(kmem_cache_size);
2403
2404const char *kmem_cache_name(struct kmem_cache *s)
2405{
2406 return s->name;
2407}
2408EXPORT_SYMBOL(kmem_cache_name);
2409
Christoph Lameter33b12c32008-04-25 12:22:43 -07002410static void list_slab_objects(struct kmem_cache *s, struct page *page,
2411 const char *text)
Christoph Lameter81819f02007-05-06 14:49:36 -07002412{
Christoph Lameter33b12c32008-04-25 12:22:43 -07002413#ifdef CONFIG_SLUB_DEBUG
2414 void *addr = page_address(page);
2415 void *p;
Eric Dumazetbbd7d572010-03-24 22:25:47 +01002416 long *map = kzalloc(BITS_TO_LONGS(page->objects) * sizeof(long),
2417 GFP_ATOMIC);
Christoph Lameter33b12c32008-04-25 12:22:43 -07002418
Eric Dumazetbbd7d572010-03-24 22:25:47 +01002419 if (!map)
2420 return;
Christoph Lameter33b12c32008-04-25 12:22:43 -07002421 slab_err(s, page, "%s", text);
2422 slab_lock(page);
2423 for_each_free_object(p, s, page->freelist)
2424 set_bit(slab_index(p, s, addr), map);
2425
2426 for_each_object(p, s, addr, page->objects) {
2427
2428 if (!test_bit(slab_index(p, s, addr), map)) {
2429 printk(KERN_ERR "INFO: Object 0x%p @offset=%tu\n",
2430 p, p - addr);
2431 print_tracking(s, p);
2432 }
2433 }
2434 slab_unlock(page);
Eric Dumazetbbd7d572010-03-24 22:25:47 +01002435 kfree(map);
Christoph Lameter33b12c32008-04-25 12:22:43 -07002436#endif
2437}
2438
Christoph Lameter81819f02007-05-06 14:49:36 -07002439/*
Christoph Lameter599870b2008-04-23 12:36:52 -07002440 * Attempt to free all partial slabs on a node.
Christoph Lameter81819f02007-05-06 14:49:36 -07002441 */
Christoph Lameter599870b2008-04-23 12:36:52 -07002442static void free_partial(struct kmem_cache *s, struct kmem_cache_node *n)
Christoph Lameter81819f02007-05-06 14:49:36 -07002443{
Christoph Lameter81819f02007-05-06 14:49:36 -07002444 unsigned long flags;
2445 struct page *page, *h;
2446
2447 spin_lock_irqsave(&n->list_lock, flags);
Christoph Lameter33b12c32008-04-25 12:22:43 -07002448 list_for_each_entry_safe(page, h, &n->partial, lru) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002449 if (!page->inuse) {
2450 list_del(&page->lru);
2451 discard_slab(s, page);
Christoph Lameter599870b2008-04-23 12:36:52 -07002452 n->nr_partial--;
Christoph Lameter33b12c32008-04-25 12:22:43 -07002453 } else {
2454 list_slab_objects(s, page,
2455 "Objects remaining on kmem_cache_close()");
Christoph Lameter599870b2008-04-23 12:36:52 -07002456 }
Christoph Lameter33b12c32008-04-25 12:22:43 -07002457 }
Christoph Lameter81819f02007-05-06 14:49:36 -07002458 spin_unlock_irqrestore(&n->list_lock, flags);
Christoph Lameter81819f02007-05-06 14:49:36 -07002459}
2460
2461/*
Christoph Lameter672bba32007-05-09 02:32:39 -07002462 * Release all resources used by a slab cache.
Christoph Lameter81819f02007-05-06 14:49:36 -07002463 */
Christoph Lameter0c710012007-07-17 04:03:24 -07002464static inline int kmem_cache_close(struct kmem_cache *s)
Christoph Lameter81819f02007-05-06 14:49:36 -07002465{
2466 int node;
2467
2468 flush_all(s);
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06002469 free_percpu(s->cpu_slab);
Christoph Lameter81819f02007-05-06 14:49:36 -07002470 /* Attempt to free all objects */
Christoph Lameterf64dc582007-10-16 01:25:33 -07002471 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002472 struct kmem_cache_node *n = get_node(s, node);
2473
Christoph Lameter599870b2008-04-23 12:36:52 -07002474 free_partial(s, n);
2475 if (n->nr_partial || slabs_node(s, node))
Christoph Lameter81819f02007-05-06 14:49:36 -07002476 return 1;
2477 }
2478 free_kmem_cache_nodes(s);
2479 return 0;
2480}
2481
2482/*
2483 * Close a cache and release the kmem_cache structure
2484 * (must be used for caches created using kmem_cache_create)
2485 */
2486void kmem_cache_destroy(struct kmem_cache *s)
2487{
2488 down_write(&slub_lock);
2489 s->refcount--;
2490 if (!s->refcount) {
2491 list_del(&s->list);
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07002492 up_write(&slub_lock);
Pekka Enbergd629d812008-04-23 22:31:08 +03002493 if (kmem_cache_close(s)) {
2494 printk(KERN_ERR "SLUB %s: %s called for cache that "
2495 "still has objects.\n", s->name, __func__);
2496 dump_stack();
2497 }
Eric Dumazetd76b1592009-09-03 22:38:59 +03002498 if (s->flags & SLAB_DESTROY_BY_RCU)
2499 rcu_barrier();
Christoph Lameter81819f02007-05-06 14:49:36 -07002500 sysfs_slab_remove(s);
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07002501 } else
2502 up_write(&slub_lock);
Christoph Lameter81819f02007-05-06 14:49:36 -07002503}
2504EXPORT_SYMBOL(kmem_cache_destroy);
2505
2506/********************************************************************
2507 * Kmalloc subsystem
2508 *******************************************************************/
2509
Christoph Lameter756dee72009-12-18 16:26:21 -06002510struct kmem_cache kmalloc_caches[KMALLOC_CACHES] __cacheline_aligned;
Christoph Lameter81819f02007-05-06 14:49:36 -07002511EXPORT_SYMBOL(kmalloc_caches);
2512
Christoph Lameter81819f02007-05-06 14:49:36 -07002513static int __init setup_slub_min_order(char *str)
2514{
Pekka Enberg06428782008-01-07 23:20:27 -08002515 get_option(&str, &slub_min_order);
Christoph Lameter81819f02007-05-06 14:49:36 -07002516
2517 return 1;
2518}
2519
2520__setup("slub_min_order=", setup_slub_min_order);
2521
2522static int __init setup_slub_max_order(char *str)
2523{
Pekka Enberg06428782008-01-07 23:20:27 -08002524 get_option(&str, &slub_max_order);
David Rientjes818cf592009-04-23 09:58:22 +03002525 slub_max_order = min(slub_max_order, MAX_ORDER - 1);
Christoph Lameter81819f02007-05-06 14:49:36 -07002526
2527 return 1;
2528}
2529
2530__setup("slub_max_order=", setup_slub_max_order);
2531
2532static int __init setup_slub_min_objects(char *str)
2533{
Pekka Enberg06428782008-01-07 23:20:27 -08002534 get_option(&str, &slub_min_objects);
Christoph Lameter81819f02007-05-06 14:49:36 -07002535
2536 return 1;
2537}
2538
2539__setup("slub_min_objects=", setup_slub_min_objects);
2540
2541static int __init setup_slub_nomerge(char *str)
2542{
2543 slub_nomerge = 1;
2544 return 1;
2545}
2546
2547__setup("slub_nomerge", setup_slub_nomerge);
2548
Christoph Lameter81819f02007-05-06 14:49:36 -07002549static struct kmem_cache *create_kmalloc_cache(struct kmem_cache *s,
2550 const char *name, int size, gfp_t gfp_flags)
2551{
2552 unsigned int flags = 0;
2553
2554 if (gfp_flags & SLUB_DMA)
2555 flags = SLAB_CACHE_DMA;
2556
Pekka Enberg83b519e2009-06-10 19:40:04 +03002557 /*
2558 * This function is called with IRQs disabled during early-boot on
2559 * single CPU so there's no need to take slub_lock here.
2560 */
Christoph Lameter81819f02007-05-06 14:49:36 -07002561 if (!kmem_cache_open(s, gfp_flags, name, size, ARCH_KMALLOC_MINALIGN,
Christoph Lameter319d1e22008-04-14 19:11:41 +03002562 flags, NULL))
Christoph Lameter81819f02007-05-06 14:49:36 -07002563 goto panic;
2564
2565 list_add(&s->list, &slab_caches);
Pekka Enberg83b519e2009-06-10 19:40:04 +03002566
Christoph Lameter81819f02007-05-06 14:49:36 -07002567 if (sysfs_slab_add(s))
2568 goto panic;
2569 return s;
2570
2571panic:
2572 panic("Creation of kmalloc slab %s size=%d failed.\n", name, size);
2573}
2574
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002575#ifdef CONFIG_ZONE_DMA
Christoph Lameterffadd4d2009-02-17 12:05:07 -05002576static struct kmem_cache *kmalloc_caches_dma[SLUB_PAGE_SHIFT];
Christoph Lameter1ceef402007-08-07 15:11:48 -07002577
2578static void sysfs_add_func(struct work_struct *w)
2579{
2580 struct kmem_cache *s;
2581
2582 down_write(&slub_lock);
2583 list_for_each_entry(s, &slab_caches, list) {
2584 if (s->flags & __SYSFS_ADD_DEFERRED) {
2585 s->flags &= ~__SYSFS_ADD_DEFERRED;
2586 sysfs_slab_add(s);
2587 }
2588 }
2589 up_write(&slub_lock);
2590}
2591
2592static DECLARE_WORK(sysfs_add_work, sysfs_add_func);
2593
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002594static noinline struct kmem_cache *dma_kmalloc_cache(int index, gfp_t flags)
2595{
2596 struct kmem_cache *s;
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002597 char *text;
2598 size_t realsize;
Nick Piggin964cf352009-06-15 13:35:10 +03002599 unsigned long slabflags;
Christoph Lameter756dee72009-12-18 16:26:21 -06002600 int i;
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002601
2602 s = kmalloc_caches_dma[index];
2603 if (s)
2604 return s;
2605
2606 /* Dynamically create dma cache */
Christoph Lameter1ceef402007-08-07 15:11:48 -07002607 if (flags & __GFP_WAIT)
2608 down_write(&slub_lock);
2609 else {
2610 if (!down_write_trylock(&slub_lock))
2611 goto out;
2612 }
2613
2614 if (kmalloc_caches_dma[index])
2615 goto unlock_out;
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002616
Christoph Lameter7b55f622007-07-17 04:03:27 -07002617 realsize = kmalloc_caches[index].objsize;
Ingo Molnar3adbefe2008-02-05 17:57:39 -08002618 text = kasprintf(flags & ~SLUB_DMA, "kmalloc_dma-%d",
2619 (unsigned int)realsize);
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06002620
Christoph Lameter756dee72009-12-18 16:26:21 -06002621 s = NULL;
2622 for (i = 0; i < KMALLOC_CACHES; i++)
2623 if (!kmalloc_caches[i].size)
2624 break;
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06002625
Christoph Lameter756dee72009-12-18 16:26:21 -06002626 BUG_ON(i >= KMALLOC_CACHES);
2627 s = kmalloc_caches + i;
Christoph Lameter1ceef402007-08-07 15:11:48 -07002628
Nick Piggin964cf352009-06-15 13:35:10 +03002629 /*
2630 * Must defer sysfs creation to a workqueue because we don't know
2631 * what context we are called from. Before sysfs comes up, we don't
2632 * need to do anything because our sysfs initcall will start by
2633 * adding all existing slabs to sysfs.
2634 */
Pekka Enberg5caf5c72009-06-17 08:30:54 +03002635 slabflags = SLAB_CACHE_DMA|SLAB_NOTRACK;
Nick Piggin964cf352009-06-15 13:35:10 +03002636 if (slab_state >= SYSFS)
2637 slabflags |= __SYSFS_ADD_DEFERRED;
2638
David Rientjes7738dd92010-01-15 12:49:56 -08002639 if (!text || !kmem_cache_open(s, flags, text,
Nick Piggin964cf352009-06-15 13:35:10 +03002640 realsize, ARCH_KMALLOC_MINALIGN, slabflags, NULL)) {
Christoph Lameter756dee72009-12-18 16:26:21 -06002641 s->size = 0;
Christoph Lameter1ceef402007-08-07 15:11:48 -07002642 kfree(text);
2643 goto unlock_out;
Christoph Lameterdfce8642007-07-17 04:03:25 -07002644 }
Christoph Lameter1ceef402007-08-07 15:11:48 -07002645
2646 list_add(&s->list, &slab_caches);
2647 kmalloc_caches_dma[index] = s;
2648
Nick Piggin964cf352009-06-15 13:35:10 +03002649 if (slab_state >= SYSFS)
2650 schedule_work(&sysfs_add_work);
Christoph Lameter1ceef402007-08-07 15:11:48 -07002651
2652unlock_out:
Christoph Lameterdfce8642007-07-17 04:03:25 -07002653 up_write(&slub_lock);
Christoph Lameter1ceef402007-08-07 15:11:48 -07002654out:
Christoph Lameterdfce8642007-07-17 04:03:25 -07002655 return kmalloc_caches_dma[index];
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002656}
2657#endif
2658
Christoph Lameterf1b26332007-07-17 04:03:26 -07002659/*
2660 * Conversion table for small slabs sizes / 8 to the index in the
2661 * kmalloc array. This is necessary for slabs < 192 since we have non power
2662 * of two cache sizes there. The size of larger slabs can be determined using
2663 * fls.
2664 */
2665static s8 size_index[24] = {
2666 3, /* 8 */
2667 4, /* 16 */
2668 5, /* 24 */
2669 5, /* 32 */
2670 6, /* 40 */
2671 6, /* 48 */
2672 6, /* 56 */
2673 6, /* 64 */
2674 1, /* 72 */
2675 1, /* 80 */
2676 1, /* 88 */
2677 1, /* 96 */
2678 7, /* 104 */
2679 7, /* 112 */
2680 7, /* 120 */
2681 7, /* 128 */
2682 2, /* 136 */
2683 2, /* 144 */
2684 2, /* 152 */
2685 2, /* 160 */
2686 2, /* 168 */
2687 2, /* 176 */
2688 2, /* 184 */
2689 2 /* 192 */
2690};
2691
Aaro Koskinenacdfcd02009-08-28 14:28:54 +03002692static inline int size_index_elem(size_t bytes)
2693{
2694 return (bytes - 1) / 8;
2695}
2696
Christoph Lameter81819f02007-05-06 14:49:36 -07002697static struct kmem_cache *get_slab(size_t size, gfp_t flags)
2698{
Christoph Lameterf1b26332007-07-17 04:03:26 -07002699 int index;
Christoph Lameter81819f02007-05-06 14:49:36 -07002700
Christoph Lameterf1b26332007-07-17 04:03:26 -07002701 if (size <= 192) {
2702 if (!size)
2703 return ZERO_SIZE_PTR;
Christoph Lameter81819f02007-05-06 14:49:36 -07002704
Aaro Koskinenacdfcd02009-08-28 14:28:54 +03002705 index = size_index[size_index_elem(size)];
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002706 } else
Christoph Lameterf1b26332007-07-17 04:03:26 -07002707 index = fls(size - 1);
Christoph Lameter81819f02007-05-06 14:49:36 -07002708
2709#ifdef CONFIG_ZONE_DMA
Christoph Lameterf1b26332007-07-17 04:03:26 -07002710 if (unlikely((flags & SLUB_DMA)))
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002711 return dma_kmalloc_cache(index, flags);
Christoph Lameterf1b26332007-07-17 04:03:26 -07002712
Christoph Lameter81819f02007-05-06 14:49:36 -07002713#endif
2714 return &kmalloc_caches[index];
2715}
2716
2717void *__kmalloc(size_t size, gfp_t flags)
2718{
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002719 struct kmem_cache *s;
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002720 void *ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07002721
Christoph Lameterffadd4d2009-02-17 12:05:07 -05002722 if (unlikely(size > SLUB_MAX_SIZE))
Pekka Enbergeada35e2008-02-11 22:47:46 +02002723 return kmalloc_large(size, flags);
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002724
2725 s = get_slab(size, flags);
2726
2727 if (unlikely(ZERO_OR_NULL_PTR(s)))
Christoph Lameter6cb8f912007-07-17 04:03:22 -07002728 return s;
2729
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002730 ret = slab_alloc(s, flags, -1, _RET_IP_);
2731
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02002732 trace_kmalloc(_RET_IP_, ret, size, s->size, flags);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002733
2734 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07002735}
2736EXPORT_SYMBOL(__kmalloc);
2737
Christoph Lameterf619cfe2008-03-01 13:56:40 -08002738static void *kmalloc_large_node(size_t size, gfp_t flags, int node)
2739{
Vegard Nossumb1eeab62008-11-25 16:55:53 +01002740 struct page *page;
Catalin Marinase4f7c0b42009-07-07 10:32:59 +01002741 void *ptr = NULL;
Christoph Lameterf619cfe2008-03-01 13:56:40 -08002742
Vegard Nossumb1eeab62008-11-25 16:55:53 +01002743 flags |= __GFP_COMP | __GFP_NOTRACK;
2744 page = alloc_pages_node(node, flags, get_order(size));
Christoph Lameterf619cfe2008-03-01 13:56:40 -08002745 if (page)
Catalin Marinase4f7c0b42009-07-07 10:32:59 +01002746 ptr = page_address(page);
2747
2748 kmemleak_alloc(ptr, size, 1, flags);
2749 return ptr;
Christoph Lameterf619cfe2008-03-01 13:56:40 -08002750}
2751
Christoph Lameter81819f02007-05-06 14:49:36 -07002752#ifdef CONFIG_NUMA
2753void *__kmalloc_node(size_t size, gfp_t flags, int node)
2754{
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002755 struct kmem_cache *s;
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002756 void *ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07002757
Ingo Molnar057685c2009-02-20 12:15:30 +01002758 if (unlikely(size > SLUB_MAX_SIZE)) {
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002759 ret = kmalloc_large_node(size, flags, node);
2760
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02002761 trace_kmalloc_node(_RET_IP_, ret,
2762 size, PAGE_SIZE << get_order(size),
2763 flags, node);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002764
2765 return ret;
2766 }
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002767
2768 s = get_slab(size, flags);
2769
2770 if (unlikely(ZERO_OR_NULL_PTR(s)))
Christoph Lameter6cb8f912007-07-17 04:03:22 -07002771 return s;
2772
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002773 ret = slab_alloc(s, flags, node, _RET_IP_);
2774
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02002775 trace_kmalloc_node(_RET_IP_, ret, size, s->size, flags, node);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002776
2777 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07002778}
2779EXPORT_SYMBOL(__kmalloc_node);
2780#endif
2781
2782size_t ksize(const void *object)
2783{
Christoph Lameter272c1d22007-06-08 13:46:49 -07002784 struct page *page;
Christoph Lameter81819f02007-05-06 14:49:36 -07002785 struct kmem_cache *s;
2786
Christoph Lameteref8b4522007-10-16 01:24:46 -07002787 if (unlikely(object == ZERO_SIZE_PTR))
Christoph Lameter272c1d22007-06-08 13:46:49 -07002788 return 0;
2789
Vegard Nossum294a80a2007-12-04 23:45:30 -08002790 page = virt_to_head_page(object);
Vegard Nossum294a80a2007-12-04 23:45:30 -08002791
Pekka Enberg76994412008-05-22 19:22:25 +03002792 if (unlikely(!PageSlab(page))) {
2793 WARN_ON(!PageCompound(page));
Vegard Nossum294a80a2007-12-04 23:45:30 -08002794 return PAGE_SIZE << compound_order(page);
Pekka Enberg76994412008-05-22 19:22:25 +03002795 }
Christoph Lameter81819f02007-05-06 14:49:36 -07002796 s = page->slab;
Christoph Lameter81819f02007-05-06 14:49:36 -07002797
Christoph Lameterae20bfd2008-02-15 23:45:25 -08002798#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter81819f02007-05-06 14:49:36 -07002799 /*
2800 * Debugging requires use of the padding between object
2801 * and whatever may come after it.
2802 */
2803 if (s->flags & (SLAB_RED_ZONE | SLAB_POISON))
2804 return s->objsize;
2805
Christoph Lameterae20bfd2008-02-15 23:45:25 -08002806#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07002807 /*
2808 * If we have the need to store the freelist pointer
2809 * back there or track user information then we can
2810 * only use the space before that information.
2811 */
2812 if (s->flags & (SLAB_DESTROY_BY_RCU | SLAB_STORE_USER))
2813 return s->inuse;
Christoph Lameter81819f02007-05-06 14:49:36 -07002814 /*
2815 * Else we can use all the padding etc for the allocation
2816 */
2817 return s->size;
2818}
Kirill A. Shutemovb1aabec2009-02-10 15:21:44 +02002819EXPORT_SYMBOL(ksize);
Christoph Lameter81819f02007-05-06 14:49:36 -07002820
2821void kfree(const void *x)
2822{
Christoph Lameter81819f02007-05-06 14:49:36 -07002823 struct page *page;
Christoph Lameter5bb983b2008-02-07 17:47:41 -08002824 void *object = (void *)x;
Christoph Lameter81819f02007-05-06 14:49:36 -07002825
Pekka Enberg2121db72009-03-25 11:05:57 +02002826 trace_kfree(_RET_IP_, x);
2827
Satyam Sharma2408c552007-10-16 01:24:44 -07002828 if (unlikely(ZERO_OR_NULL_PTR(x)))
Christoph Lameter81819f02007-05-06 14:49:36 -07002829 return;
2830
Christoph Lameterb49af682007-05-06 14:49:41 -07002831 page = virt_to_head_page(x);
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002832 if (unlikely(!PageSlab(page))) {
Christoph Lameter09375022008-05-28 10:32:22 -07002833 BUG_ON(!PageCompound(page));
Catalin Marinase4f7c0b42009-07-07 10:32:59 +01002834 kmemleak_free(x);
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002835 put_page(page);
2836 return;
2837 }
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03002838 slab_free(page->slab, page, object, _RET_IP_);
Christoph Lameter81819f02007-05-06 14:49:36 -07002839}
2840EXPORT_SYMBOL(kfree);
2841
Christoph Lameter2086d262007-05-06 14:49:46 -07002842/*
Christoph Lameter672bba32007-05-09 02:32:39 -07002843 * kmem_cache_shrink removes empty slabs from the partial lists and sorts
2844 * the remaining slabs by the number of items in use. The slabs with the
2845 * most items in use come first. New allocations will then fill those up
2846 * and thus they can be removed from the partial lists.
2847 *
2848 * The slabs with the least items are placed last. This results in them
2849 * being allocated from last increasing the chance that the last objects
2850 * are freed in them.
Christoph Lameter2086d262007-05-06 14:49:46 -07002851 */
2852int kmem_cache_shrink(struct kmem_cache *s)
2853{
2854 int node;
2855 int i;
2856 struct kmem_cache_node *n;
2857 struct page *page;
2858 struct page *t;
Christoph Lameter205ab992008-04-14 19:11:40 +03002859 int objects = oo_objects(s->max);
Christoph Lameter2086d262007-05-06 14:49:46 -07002860 struct list_head *slabs_by_inuse =
Christoph Lameter834f3d12008-04-14 19:11:31 +03002861 kmalloc(sizeof(struct list_head) * objects, GFP_KERNEL);
Christoph Lameter2086d262007-05-06 14:49:46 -07002862 unsigned long flags;
2863
2864 if (!slabs_by_inuse)
2865 return -ENOMEM;
2866
2867 flush_all(s);
Christoph Lameterf64dc582007-10-16 01:25:33 -07002868 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter2086d262007-05-06 14:49:46 -07002869 n = get_node(s, node);
2870
2871 if (!n->nr_partial)
2872 continue;
2873
Christoph Lameter834f3d12008-04-14 19:11:31 +03002874 for (i = 0; i < objects; i++)
Christoph Lameter2086d262007-05-06 14:49:46 -07002875 INIT_LIST_HEAD(slabs_by_inuse + i);
2876
2877 spin_lock_irqsave(&n->list_lock, flags);
2878
2879 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07002880 * Build lists indexed by the items in use in each slab.
Christoph Lameter2086d262007-05-06 14:49:46 -07002881 *
Christoph Lameter672bba32007-05-09 02:32:39 -07002882 * Note that concurrent frees may occur while we hold the
2883 * list_lock. page->inuse here is the upper limit.
Christoph Lameter2086d262007-05-06 14:49:46 -07002884 */
2885 list_for_each_entry_safe(page, t, &n->partial, lru) {
2886 if (!page->inuse && slab_trylock(page)) {
2887 /*
2888 * Must hold slab lock here because slab_free
2889 * may have freed the last object and be
2890 * waiting to release the slab.
2891 */
2892 list_del(&page->lru);
2893 n->nr_partial--;
2894 slab_unlock(page);
2895 discard_slab(s, page);
2896 } else {
Christoph Lameterfcda3d82007-07-30 13:06:46 -07002897 list_move(&page->lru,
2898 slabs_by_inuse + page->inuse);
Christoph Lameter2086d262007-05-06 14:49:46 -07002899 }
2900 }
2901
Christoph Lameter2086d262007-05-06 14:49:46 -07002902 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07002903 * Rebuild the partial list with the slabs filled up most
2904 * first and the least used slabs at the end.
Christoph Lameter2086d262007-05-06 14:49:46 -07002905 */
Christoph Lameter834f3d12008-04-14 19:11:31 +03002906 for (i = objects - 1; i >= 0; i--)
Christoph Lameter2086d262007-05-06 14:49:46 -07002907 list_splice(slabs_by_inuse + i, n->partial.prev);
2908
Christoph Lameter2086d262007-05-06 14:49:46 -07002909 spin_unlock_irqrestore(&n->list_lock, flags);
2910 }
2911
2912 kfree(slabs_by_inuse);
2913 return 0;
2914}
2915EXPORT_SYMBOL(kmem_cache_shrink);
2916
Yasunori Gotob9049e22007-10-21 16:41:37 -07002917#if defined(CONFIG_NUMA) && defined(CONFIG_MEMORY_HOTPLUG)
2918static int slab_mem_going_offline_callback(void *arg)
2919{
2920 struct kmem_cache *s;
2921
2922 down_read(&slub_lock);
2923 list_for_each_entry(s, &slab_caches, list)
2924 kmem_cache_shrink(s);
2925 up_read(&slub_lock);
2926
2927 return 0;
2928}
2929
2930static void slab_mem_offline_callback(void *arg)
2931{
2932 struct kmem_cache_node *n;
2933 struct kmem_cache *s;
2934 struct memory_notify *marg = arg;
2935 int offline_node;
2936
2937 offline_node = marg->status_change_nid;
2938
2939 /*
2940 * If the node still has available memory. we need kmem_cache_node
2941 * for it yet.
2942 */
2943 if (offline_node < 0)
2944 return;
2945
2946 down_read(&slub_lock);
2947 list_for_each_entry(s, &slab_caches, list) {
2948 n = get_node(s, offline_node);
2949 if (n) {
2950 /*
2951 * if n->nr_slabs > 0, slabs still exist on the node
2952 * that is going down. We were unable to free them,
Adam Buchbinderc9404c92009-12-18 15:40:42 -05002953 * and offline_pages() function shouldn't call this
Yasunori Gotob9049e22007-10-21 16:41:37 -07002954 * callback. So, we must fail.
2955 */
Christoph Lameter0f389ec2008-04-14 18:53:02 +03002956 BUG_ON(slabs_node(s, offline_node));
Yasunori Gotob9049e22007-10-21 16:41:37 -07002957
2958 s->node[offline_node] = NULL;
2959 kmem_cache_free(kmalloc_caches, n);
2960 }
2961 }
2962 up_read(&slub_lock);
2963}
2964
2965static int slab_mem_going_online_callback(void *arg)
2966{
2967 struct kmem_cache_node *n;
2968 struct kmem_cache *s;
2969 struct memory_notify *marg = arg;
2970 int nid = marg->status_change_nid;
2971 int ret = 0;
2972
2973 /*
2974 * If the node's memory is already available, then kmem_cache_node is
2975 * already created. Nothing to do.
2976 */
2977 if (nid < 0)
2978 return 0;
2979
2980 /*
Christoph Lameter0121c6192008-04-29 16:11:12 -07002981 * We are bringing a node online. No memory is available yet. We must
Yasunori Gotob9049e22007-10-21 16:41:37 -07002982 * allocate a kmem_cache_node structure in order to bring the node
2983 * online.
2984 */
2985 down_read(&slub_lock);
2986 list_for_each_entry(s, &slab_caches, list) {
2987 /*
2988 * XXX: kmem_cache_alloc_node will fallback to other nodes
2989 * since memory is not yet available from the node that
2990 * is brought up.
2991 */
2992 n = kmem_cache_alloc(kmalloc_caches, GFP_KERNEL);
2993 if (!n) {
2994 ret = -ENOMEM;
2995 goto out;
2996 }
Pekka Enberg5595cff2008-08-05 09:28:47 +03002997 init_kmem_cache_node(n, s);
Yasunori Gotob9049e22007-10-21 16:41:37 -07002998 s->node[nid] = n;
2999 }
3000out:
3001 up_read(&slub_lock);
3002 return ret;
3003}
3004
3005static int slab_memory_callback(struct notifier_block *self,
3006 unsigned long action, void *arg)
3007{
3008 int ret = 0;
3009
3010 switch (action) {
3011 case MEM_GOING_ONLINE:
3012 ret = slab_mem_going_online_callback(arg);
3013 break;
3014 case MEM_GOING_OFFLINE:
3015 ret = slab_mem_going_offline_callback(arg);
3016 break;
3017 case MEM_OFFLINE:
3018 case MEM_CANCEL_ONLINE:
3019 slab_mem_offline_callback(arg);
3020 break;
3021 case MEM_ONLINE:
3022 case MEM_CANCEL_OFFLINE:
3023 break;
3024 }
KAMEZAWA Hiroyukidc19f9d2008-12-01 13:13:48 -08003025 if (ret)
3026 ret = notifier_from_errno(ret);
3027 else
3028 ret = NOTIFY_OK;
Yasunori Gotob9049e22007-10-21 16:41:37 -07003029 return ret;
3030}
3031
3032#endif /* CONFIG_MEMORY_HOTPLUG */
3033
Christoph Lameter81819f02007-05-06 14:49:36 -07003034/********************************************************************
3035 * Basic setup of slabs
3036 *******************************************************************/
3037
3038void __init kmem_cache_init(void)
3039{
3040 int i;
Christoph Lameter4b356be2007-06-16 10:16:13 -07003041 int caches = 0;
Christoph Lameter81819f02007-05-06 14:49:36 -07003042
3043#ifdef CONFIG_NUMA
3044 /*
3045 * Must first have the slab cache available for the allocations of the
Christoph Lameter672bba32007-05-09 02:32:39 -07003046 * struct kmem_cache_node's. There is special bootstrap code in
Christoph Lameter81819f02007-05-06 14:49:36 -07003047 * kmem_cache_open for slab_state == DOWN.
3048 */
3049 create_kmalloc_cache(&kmalloc_caches[0], "kmem_cache_node",
Pekka Enberg83b519e2009-06-10 19:40:04 +03003050 sizeof(struct kmem_cache_node), GFP_NOWAIT);
Christoph Lameter8ffa6872007-05-31 00:40:51 -07003051 kmalloc_caches[0].refcount = -1;
Christoph Lameter4b356be2007-06-16 10:16:13 -07003052 caches++;
Yasunori Gotob9049e22007-10-21 16:41:37 -07003053
Nadia Derbey0c40ba42008-04-29 01:00:41 -07003054 hotplug_memory_notifier(slab_memory_callback, SLAB_CALLBACK_PRI);
Christoph Lameter81819f02007-05-06 14:49:36 -07003055#endif
3056
3057 /* Able to allocate the per node structures */
3058 slab_state = PARTIAL;
3059
3060 /* Caches that are not of the two-to-the-power-of size */
Aaro Koskinenacdfcd02009-08-28 14:28:54 +03003061 if (KMALLOC_MIN_SIZE <= 32) {
Christoph Lameter4b356be2007-06-16 10:16:13 -07003062 create_kmalloc_cache(&kmalloc_caches[1],
Pekka Enberg83b519e2009-06-10 19:40:04 +03003063 "kmalloc-96", 96, GFP_NOWAIT);
Christoph Lameter4b356be2007-06-16 10:16:13 -07003064 caches++;
Aaro Koskinenacdfcd02009-08-28 14:28:54 +03003065 }
3066 if (KMALLOC_MIN_SIZE <= 64) {
Christoph Lameter4b356be2007-06-16 10:16:13 -07003067 create_kmalloc_cache(&kmalloc_caches[2],
Pekka Enberg83b519e2009-06-10 19:40:04 +03003068 "kmalloc-192", 192, GFP_NOWAIT);
Christoph Lameter4b356be2007-06-16 10:16:13 -07003069 caches++;
3070 }
Christoph Lameter81819f02007-05-06 14:49:36 -07003071
Christoph Lameterffadd4d2009-02-17 12:05:07 -05003072 for (i = KMALLOC_SHIFT_LOW; i < SLUB_PAGE_SHIFT; i++) {
Christoph Lameter81819f02007-05-06 14:49:36 -07003073 create_kmalloc_cache(&kmalloc_caches[i],
Pekka Enberg83b519e2009-06-10 19:40:04 +03003074 "kmalloc", 1 << i, GFP_NOWAIT);
Christoph Lameter4b356be2007-06-16 10:16:13 -07003075 caches++;
3076 }
Christoph Lameter81819f02007-05-06 14:49:36 -07003077
Christoph Lameterf1b26332007-07-17 04:03:26 -07003078
3079 /*
3080 * Patch up the size_index table if we have strange large alignment
3081 * requirements for the kmalloc array. This is only the case for
Christoph Lameter6446faa2008-02-15 23:45:26 -08003082 * MIPS it seems. The standard arches will not generate any code here.
Christoph Lameterf1b26332007-07-17 04:03:26 -07003083 *
3084 * Largest permitted alignment is 256 bytes due to the way we
3085 * handle the index determination for the smaller caches.
3086 *
3087 * Make sure that nothing crazy happens if someone starts tinkering
3088 * around with ARCH_KMALLOC_MINALIGN
3089 */
3090 BUILD_BUG_ON(KMALLOC_MIN_SIZE > 256 ||
3091 (KMALLOC_MIN_SIZE & (KMALLOC_MIN_SIZE - 1)));
3092
Aaro Koskinenacdfcd02009-08-28 14:28:54 +03003093 for (i = 8; i < KMALLOC_MIN_SIZE; i += 8) {
3094 int elem = size_index_elem(i);
3095 if (elem >= ARRAY_SIZE(size_index))
3096 break;
3097 size_index[elem] = KMALLOC_SHIFT_LOW;
3098 }
Christoph Lameterf1b26332007-07-17 04:03:26 -07003099
Aaro Koskinenacdfcd02009-08-28 14:28:54 +03003100 if (KMALLOC_MIN_SIZE == 64) {
3101 /*
3102 * The 96 byte size cache is not used if the alignment
3103 * is 64 byte.
3104 */
3105 for (i = 64 + 8; i <= 96; i += 8)
3106 size_index[size_index_elem(i)] = 7;
3107 } else if (KMALLOC_MIN_SIZE == 128) {
Christoph Lameter41d54d32008-07-03 09:14:26 -05003108 /*
3109 * The 192 byte sized cache is not used if the alignment
3110 * is 128 byte. Redirect kmalloc to use the 256 byte cache
3111 * instead.
3112 */
3113 for (i = 128 + 8; i <= 192; i += 8)
Aaro Koskinenacdfcd02009-08-28 14:28:54 +03003114 size_index[size_index_elem(i)] = 8;
Christoph Lameter41d54d32008-07-03 09:14:26 -05003115 }
3116
Christoph Lameter81819f02007-05-06 14:49:36 -07003117 slab_state = UP;
3118
3119 /* Provide the correct kmalloc names now that the caches are up */
Christoph Lameterffadd4d2009-02-17 12:05:07 -05003120 for (i = KMALLOC_SHIFT_LOW; i < SLUB_PAGE_SHIFT; i++)
Christoph Lameter81819f02007-05-06 14:49:36 -07003121 kmalloc_caches[i]. name =
Pekka Enberg83b519e2009-06-10 19:40:04 +03003122 kasprintf(GFP_NOWAIT, "kmalloc-%d", 1 << i);
Christoph Lameter81819f02007-05-06 14:49:36 -07003123
3124#ifdef CONFIG_SMP
3125 register_cpu_notifier(&slab_notifier);
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06003126#endif
3127#ifdef CONFIG_NUMA
3128 kmem_size = offsetof(struct kmem_cache, node) +
3129 nr_node_ids * sizeof(struct kmem_cache_node *);
Christoph Lameter4c93c3552007-10-16 01:26:08 -07003130#else
3131 kmem_size = sizeof(struct kmem_cache);
Christoph Lameter81819f02007-05-06 14:49:36 -07003132#endif
3133
Ingo Molnar3adbefe2008-02-05 17:57:39 -08003134 printk(KERN_INFO
3135 "SLUB: Genslabs=%d, HWalign=%d, Order=%d-%d, MinObjects=%d,"
Christoph Lameter4b356be2007-06-16 10:16:13 -07003136 " CPUs=%d, Nodes=%d\n",
3137 caches, cache_line_size(),
Christoph Lameter81819f02007-05-06 14:49:36 -07003138 slub_min_order, slub_max_order, slub_min_objects,
3139 nr_cpu_ids, nr_node_ids);
3140}
3141
Pekka Enberg7e85ee02009-06-12 14:03:06 +03003142void __init kmem_cache_init_late(void)
3143{
Pekka Enberg7e85ee02009-06-12 14:03:06 +03003144}
3145
Christoph Lameter81819f02007-05-06 14:49:36 -07003146/*
3147 * Find a mergeable slab cache
3148 */
3149static int slab_unmergeable(struct kmem_cache *s)
3150{
3151 if (slub_nomerge || (s->flags & SLUB_NEVER_MERGE))
3152 return 1;
3153
Christoph Lameterc59def9f2007-05-16 22:10:50 -07003154 if (s->ctor)
Christoph Lameter81819f02007-05-06 14:49:36 -07003155 return 1;
3156
Christoph Lameter8ffa6872007-05-31 00:40:51 -07003157 /*
3158 * We may have set a slab to be unmergeable during bootstrap.
3159 */
3160 if (s->refcount < 0)
3161 return 1;
3162
Christoph Lameter81819f02007-05-06 14:49:36 -07003163 return 0;
3164}
3165
3166static struct kmem_cache *find_mergeable(size_t size,
Christoph Lameterba0268a2007-09-11 15:24:11 -07003167 size_t align, unsigned long flags, const char *name,
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07003168 void (*ctor)(void *))
Christoph Lameter81819f02007-05-06 14:49:36 -07003169{
Christoph Lameter5b95a4a2007-07-17 04:03:19 -07003170 struct kmem_cache *s;
Christoph Lameter81819f02007-05-06 14:49:36 -07003171
3172 if (slub_nomerge || (flags & SLUB_NEVER_MERGE))
3173 return NULL;
3174
Christoph Lameterc59def9f2007-05-16 22:10:50 -07003175 if (ctor)
Christoph Lameter81819f02007-05-06 14:49:36 -07003176 return NULL;
3177
3178 size = ALIGN(size, sizeof(void *));
3179 align = calculate_alignment(flags, align, size);
3180 size = ALIGN(size, align);
Christoph Lameterba0268a2007-09-11 15:24:11 -07003181 flags = kmem_cache_flags(size, flags, name, NULL);
Christoph Lameter81819f02007-05-06 14:49:36 -07003182
Christoph Lameter5b95a4a2007-07-17 04:03:19 -07003183 list_for_each_entry(s, &slab_caches, list) {
Christoph Lameter81819f02007-05-06 14:49:36 -07003184 if (slab_unmergeable(s))
3185 continue;
3186
3187 if (size > s->size)
3188 continue;
3189
Christoph Lameterba0268a2007-09-11 15:24:11 -07003190 if ((flags & SLUB_MERGE_SAME) != (s->flags & SLUB_MERGE_SAME))
Christoph Lameter81819f02007-05-06 14:49:36 -07003191 continue;
3192 /*
3193 * Check if alignment is compatible.
3194 * Courtesy of Adrian Drzewiecki
3195 */
Pekka Enberg06428782008-01-07 23:20:27 -08003196 if ((s->size & ~(align - 1)) != s->size)
Christoph Lameter81819f02007-05-06 14:49:36 -07003197 continue;
3198
3199 if (s->size - size >= sizeof(void *))
3200 continue;
3201
3202 return s;
3203 }
3204 return NULL;
3205}
3206
3207struct kmem_cache *kmem_cache_create(const char *name, size_t size,
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07003208 size_t align, unsigned long flags, void (*ctor)(void *))
Christoph Lameter81819f02007-05-06 14:49:36 -07003209{
3210 struct kmem_cache *s;
3211
Benjamin Herrenschmidtfe1ff492009-09-21 17:02:30 -07003212 if (WARN_ON(!name))
3213 return NULL;
3214
Christoph Lameter81819f02007-05-06 14:49:36 -07003215 down_write(&slub_lock);
Christoph Lameterba0268a2007-09-11 15:24:11 -07003216 s = find_mergeable(size, align, flags, name, ctor);
Christoph Lameter81819f02007-05-06 14:49:36 -07003217 if (s) {
3218 s->refcount++;
3219 /*
3220 * Adjust the object sizes so that we clear
3221 * the complete object on kzalloc.
3222 */
3223 s->objsize = max(s->objsize, (int)size);
3224 s->inuse = max_t(int, s->inuse, ALIGN(size, sizeof(void *)));
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07003225 up_write(&slub_lock);
Christoph Lameter6446faa2008-02-15 23:45:26 -08003226
David Rientjes7b8f3b62008-12-17 22:09:46 -08003227 if (sysfs_slab_alias(s, name)) {
3228 down_write(&slub_lock);
3229 s->refcount--;
3230 up_write(&slub_lock);
Christoph Lameter81819f02007-05-06 14:49:36 -07003231 goto err;
David Rientjes7b8f3b62008-12-17 22:09:46 -08003232 }
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07003233 return s;
3234 }
Christoph Lameter6446faa2008-02-15 23:45:26 -08003235
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07003236 s = kmalloc(kmem_size, GFP_KERNEL);
3237 if (s) {
3238 if (kmem_cache_open(s, GFP_KERNEL, name,
Christoph Lameterc59def9f2007-05-16 22:10:50 -07003239 size, align, flags, ctor)) {
Christoph Lameter81819f02007-05-06 14:49:36 -07003240 list_add(&s->list, &slab_caches);
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07003241 up_write(&slub_lock);
David Rientjes7b8f3b62008-12-17 22:09:46 -08003242 if (sysfs_slab_add(s)) {
3243 down_write(&slub_lock);
3244 list_del(&s->list);
3245 up_write(&slub_lock);
3246 kfree(s);
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07003247 goto err;
David Rientjes7b8f3b62008-12-17 22:09:46 -08003248 }
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07003249 return s;
3250 }
3251 kfree(s);
Christoph Lameter81819f02007-05-06 14:49:36 -07003252 }
3253 up_write(&slub_lock);
Christoph Lameter81819f02007-05-06 14:49:36 -07003254
3255err:
Christoph Lameter81819f02007-05-06 14:49:36 -07003256 if (flags & SLAB_PANIC)
3257 panic("Cannot create slabcache %s\n", name);
3258 else
3259 s = NULL;
3260 return s;
3261}
3262EXPORT_SYMBOL(kmem_cache_create);
3263
Christoph Lameter81819f02007-05-06 14:49:36 -07003264#ifdef CONFIG_SMP
Christoph Lameter27390bc2007-06-01 00:47:09 -07003265/*
Christoph Lameter672bba32007-05-09 02:32:39 -07003266 * Use the cpu notifier to insure that the cpu slabs are flushed when
3267 * necessary.
Christoph Lameter81819f02007-05-06 14:49:36 -07003268 */
3269static int __cpuinit slab_cpuup_callback(struct notifier_block *nfb,
3270 unsigned long action, void *hcpu)
3271{
3272 long cpu = (long)hcpu;
Christoph Lameter5b95a4a2007-07-17 04:03:19 -07003273 struct kmem_cache *s;
3274 unsigned long flags;
Christoph Lameter81819f02007-05-06 14:49:36 -07003275
3276 switch (action) {
3277 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07003278 case CPU_UP_CANCELED_FROZEN:
Christoph Lameter81819f02007-05-06 14:49:36 -07003279 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07003280 case CPU_DEAD_FROZEN:
Christoph Lameter5b95a4a2007-07-17 04:03:19 -07003281 down_read(&slub_lock);
3282 list_for_each_entry(s, &slab_caches, list) {
3283 local_irq_save(flags);
3284 __flush_cpu_slab(s, cpu);
3285 local_irq_restore(flags);
3286 }
3287 up_read(&slub_lock);
Christoph Lameter81819f02007-05-06 14:49:36 -07003288 break;
3289 default:
3290 break;
3291 }
3292 return NOTIFY_OK;
3293}
3294
Pekka Enberg06428782008-01-07 23:20:27 -08003295static struct notifier_block __cpuinitdata slab_notifier = {
Ingo Molnar3adbefe2008-02-05 17:57:39 -08003296 .notifier_call = slab_cpuup_callback
Pekka Enberg06428782008-01-07 23:20:27 -08003297};
Christoph Lameter81819f02007-05-06 14:49:36 -07003298
3299#endif
3300
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003301void *__kmalloc_track_caller(size_t size, gfp_t gfpflags, unsigned long caller)
Christoph Lameter81819f02007-05-06 14:49:36 -07003302{
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003303 struct kmem_cache *s;
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03003304 void *ret;
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003305
Christoph Lameterffadd4d2009-02-17 12:05:07 -05003306 if (unlikely(size > SLUB_MAX_SIZE))
Pekka Enbergeada35e2008-02-11 22:47:46 +02003307 return kmalloc_large(size, gfpflags);
3308
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003309 s = get_slab(size, gfpflags);
Christoph Lameter81819f02007-05-06 14:49:36 -07003310
Satyam Sharma2408c552007-10-16 01:24:44 -07003311 if (unlikely(ZERO_OR_NULL_PTR(s)))
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003312 return s;
Christoph Lameter81819f02007-05-06 14:49:36 -07003313
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03003314 ret = slab_alloc(s, gfpflags, -1, caller);
3315
3316 /* Honor the call site pointer we recieved. */
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003317 trace_kmalloc(caller, ret, size, s->size, gfpflags);
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03003318
3319 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07003320}
3321
3322void *__kmalloc_node_track_caller(size_t size, gfp_t gfpflags,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003323 int node, unsigned long caller)
Christoph Lameter81819f02007-05-06 14:49:36 -07003324{
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003325 struct kmem_cache *s;
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03003326 void *ret;
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003327
Xiaotian Fengd3e14aa2010-04-08 17:26:44 +08003328 if (unlikely(size > SLUB_MAX_SIZE)) {
3329 ret = kmalloc_large_node(size, gfpflags, node);
3330
3331 trace_kmalloc_node(caller, ret,
3332 size, PAGE_SIZE << get_order(size),
3333 gfpflags, node);
3334
3335 return ret;
3336 }
Pekka Enbergeada35e2008-02-11 22:47:46 +02003337
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003338 s = get_slab(size, gfpflags);
Christoph Lameter81819f02007-05-06 14:49:36 -07003339
Satyam Sharma2408c552007-10-16 01:24:44 -07003340 if (unlikely(ZERO_OR_NULL_PTR(s)))
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003341 return s;
Christoph Lameter81819f02007-05-06 14:49:36 -07003342
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03003343 ret = slab_alloc(s, gfpflags, node, caller);
3344
3345 /* Honor the call site pointer we recieved. */
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003346 trace_kmalloc_node(caller, ret, size, s->size, gfpflags, node);
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03003347
3348 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07003349}
3350
Christoph Lameterf6acb632008-04-29 16:16:06 -07003351#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter205ab992008-04-14 19:11:40 +03003352static int count_inuse(struct page *page)
3353{
3354 return page->inuse;
3355}
3356
3357static int count_total(struct page *page)
3358{
3359 return page->objects;
3360}
3361
Christoph Lameter434e2452007-07-17 04:03:30 -07003362static int validate_slab(struct kmem_cache *s, struct page *page,
3363 unsigned long *map)
Christoph Lameter53e15af2007-05-06 14:49:43 -07003364{
3365 void *p;
Christoph Lametera973e9d2008-03-01 13:40:44 -08003366 void *addr = page_address(page);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003367
3368 if (!check_slab(s, page) ||
3369 !on_freelist(s, page, NULL))
3370 return 0;
3371
3372 /* Now we know that a valid freelist exists */
Christoph Lameter39b26462008-04-14 19:11:30 +03003373 bitmap_zero(map, page->objects);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003374
Christoph Lameter7656c722007-05-09 02:32:40 -07003375 for_each_free_object(p, s, page->freelist) {
3376 set_bit(slab_index(p, s, addr), map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003377 if (!check_object(s, page, p, 0))
3378 return 0;
3379 }
3380
Christoph Lameter224a88b2008-04-14 19:11:31 +03003381 for_each_object(p, s, addr, page->objects)
Christoph Lameter7656c722007-05-09 02:32:40 -07003382 if (!test_bit(slab_index(p, s, addr), map))
Christoph Lameter53e15af2007-05-06 14:49:43 -07003383 if (!check_object(s, page, p, 1))
3384 return 0;
3385 return 1;
3386}
3387
Christoph Lameter434e2452007-07-17 04:03:30 -07003388static void validate_slab_slab(struct kmem_cache *s, struct page *page,
3389 unsigned long *map)
Christoph Lameter53e15af2007-05-06 14:49:43 -07003390{
3391 if (slab_trylock(page)) {
Christoph Lameter434e2452007-07-17 04:03:30 -07003392 validate_slab(s, page, map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003393 slab_unlock(page);
3394 } else
3395 printk(KERN_INFO "SLUB %s: Skipped busy slab 0x%p\n",
3396 s->name, page);
3397
3398 if (s->flags & DEBUG_DEFAULT_FLAGS) {
Andy Whitcroft8a380822008-07-23 21:27:18 -07003399 if (!PageSlubDebug(page))
3400 printk(KERN_ERR "SLUB %s: SlubDebug not set "
Christoph Lameter53e15af2007-05-06 14:49:43 -07003401 "on slab 0x%p\n", s->name, page);
3402 } else {
Andy Whitcroft8a380822008-07-23 21:27:18 -07003403 if (PageSlubDebug(page))
3404 printk(KERN_ERR "SLUB %s: SlubDebug set on "
Christoph Lameter53e15af2007-05-06 14:49:43 -07003405 "slab 0x%p\n", s->name, page);
3406 }
3407}
3408
Christoph Lameter434e2452007-07-17 04:03:30 -07003409static int validate_slab_node(struct kmem_cache *s,
3410 struct kmem_cache_node *n, unsigned long *map)
Christoph Lameter53e15af2007-05-06 14:49:43 -07003411{
3412 unsigned long count = 0;
3413 struct page *page;
3414 unsigned long flags;
3415
3416 spin_lock_irqsave(&n->list_lock, flags);
3417
3418 list_for_each_entry(page, &n->partial, lru) {
Christoph Lameter434e2452007-07-17 04:03:30 -07003419 validate_slab_slab(s, page, map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003420 count++;
3421 }
3422 if (count != n->nr_partial)
3423 printk(KERN_ERR "SLUB %s: %ld partial slabs counted but "
3424 "counter=%ld\n", s->name, count, n->nr_partial);
3425
3426 if (!(s->flags & SLAB_STORE_USER))
3427 goto out;
3428
3429 list_for_each_entry(page, &n->full, lru) {
Christoph Lameter434e2452007-07-17 04:03:30 -07003430 validate_slab_slab(s, page, map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003431 count++;
3432 }
3433 if (count != atomic_long_read(&n->nr_slabs))
3434 printk(KERN_ERR "SLUB: %s %ld slabs counted but "
3435 "counter=%ld\n", s->name, count,
3436 atomic_long_read(&n->nr_slabs));
3437
3438out:
3439 spin_unlock_irqrestore(&n->list_lock, flags);
3440 return count;
3441}
3442
Christoph Lameter434e2452007-07-17 04:03:30 -07003443static long validate_slab_cache(struct kmem_cache *s)
Christoph Lameter53e15af2007-05-06 14:49:43 -07003444{
3445 int node;
3446 unsigned long count = 0;
Christoph Lameter205ab992008-04-14 19:11:40 +03003447 unsigned long *map = kmalloc(BITS_TO_LONGS(oo_objects(s->max)) *
Christoph Lameter434e2452007-07-17 04:03:30 -07003448 sizeof(unsigned long), GFP_KERNEL);
3449
3450 if (!map)
3451 return -ENOMEM;
Christoph Lameter53e15af2007-05-06 14:49:43 -07003452
3453 flush_all(s);
Christoph Lameterf64dc582007-10-16 01:25:33 -07003454 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter53e15af2007-05-06 14:49:43 -07003455 struct kmem_cache_node *n = get_node(s, node);
3456
Christoph Lameter434e2452007-07-17 04:03:30 -07003457 count += validate_slab_node(s, n, map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003458 }
Christoph Lameter434e2452007-07-17 04:03:30 -07003459 kfree(map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003460 return count;
3461}
3462
Christoph Lameterb3459702007-05-09 02:32:41 -07003463#ifdef SLUB_RESILIENCY_TEST
3464static void resiliency_test(void)
3465{
3466 u8 *p;
3467
3468 printk(KERN_ERR "SLUB resiliency testing\n");
3469 printk(KERN_ERR "-----------------------\n");
3470 printk(KERN_ERR "A. Corruption after allocation\n");
3471
3472 p = kzalloc(16, GFP_KERNEL);
3473 p[16] = 0x12;
3474 printk(KERN_ERR "\n1. kmalloc-16: Clobber Redzone/next pointer"
3475 " 0x12->0x%p\n\n", p + 16);
3476
3477 validate_slab_cache(kmalloc_caches + 4);
3478
3479 /* Hmmm... The next two are dangerous */
3480 p = kzalloc(32, GFP_KERNEL);
3481 p[32 + sizeof(void *)] = 0x34;
3482 printk(KERN_ERR "\n2. kmalloc-32: Clobber next pointer/next slab"
Ingo Molnar3adbefe2008-02-05 17:57:39 -08003483 " 0x34 -> -0x%p\n", p);
3484 printk(KERN_ERR
3485 "If allocated object is overwritten then not detectable\n\n");
Christoph Lameterb3459702007-05-09 02:32:41 -07003486
3487 validate_slab_cache(kmalloc_caches + 5);
3488 p = kzalloc(64, GFP_KERNEL);
3489 p += 64 + (get_cycles() & 0xff) * sizeof(void *);
3490 *p = 0x56;
3491 printk(KERN_ERR "\n3. kmalloc-64: corrupting random byte 0x56->0x%p\n",
3492 p);
Ingo Molnar3adbefe2008-02-05 17:57:39 -08003493 printk(KERN_ERR
3494 "If allocated object is overwritten then not detectable\n\n");
Christoph Lameterb3459702007-05-09 02:32:41 -07003495 validate_slab_cache(kmalloc_caches + 6);
3496
3497 printk(KERN_ERR "\nB. Corruption after free\n");
3498 p = kzalloc(128, GFP_KERNEL);
3499 kfree(p);
3500 *p = 0x78;
3501 printk(KERN_ERR "1. kmalloc-128: Clobber first word 0x78->0x%p\n\n", p);
3502 validate_slab_cache(kmalloc_caches + 7);
3503
3504 p = kzalloc(256, GFP_KERNEL);
3505 kfree(p);
3506 p[50] = 0x9a;
Ingo Molnar3adbefe2008-02-05 17:57:39 -08003507 printk(KERN_ERR "\n2. kmalloc-256: Clobber 50th byte 0x9a->0x%p\n\n",
3508 p);
Christoph Lameterb3459702007-05-09 02:32:41 -07003509 validate_slab_cache(kmalloc_caches + 8);
3510
3511 p = kzalloc(512, GFP_KERNEL);
3512 kfree(p);
3513 p[512] = 0xab;
3514 printk(KERN_ERR "\n3. kmalloc-512: Clobber redzone 0xab->0x%p\n\n", p);
3515 validate_slab_cache(kmalloc_caches + 9);
3516}
3517#else
3518static void resiliency_test(void) {};
3519#endif
3520
Christoph Lameter88a420e2007-05-06 14:49:45 -07003521/*
Christoph Lameter672bba32007-05-09 02:32:39 -07003522 * Generate lists of code addresses where slabcache objects are allocated
Christoph Lameter88a420e2007-05-06 14:49:45 -07003523 * and freed.
3524 */
3525
3526struct location {
3527 unsigned long count;
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003528 unsigned long addr;
Christoph Lameter45edfa52007-05-09 02:32:45 -07003529 long long sum_time;
3530 long min_time;
3531 long max_time;
3532 long min_pid;
3533 long max_pid;
Rusty Russell174596a2009-01-01 10:12:29 +10303534 DECLARE_BITMAP(cpus, NR_CPUS);
Christoph Lameter45edfa52007-05-09 02:32:45 -07003535 nodemask_t nodes;
Christoph Lameter88a420e2007-05-06 14:49:45 -07003536};
3537
3538struct loc_track {
3539 unsigned long max;
3540 unsigned long count;
3541 struct location *loc;
3542};
3543
3544static void free_loc_track(struct loc_track *t)
3545{
3546 if (t->max)
3547 free_pages((unsigned long)t->loc,
3548 get_order(sizeof(struct location) * t->max));
3549}
3550
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003551static int alloc_loc_track(struct loc_track *t, unsigned long max, gfp_t flags)
Christoph Lameter88a420e2007-05-06 14:49:45 -07003552{
3553 struct location *l;
3554 int order;
3555
Christoph Lameter88a420e2007-05-06 14:49:45 -07003556 order = get_order(sizeof(struct location) * max);
3557
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003558 l = (void *)__get_free_pages(flags, order);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003559 if (!l)
3560 return 0;
3561
3562 if (t->count) {
3563 memcpy(l, t->loc, sizeof(struct location) * t->count);
3564 free_loc_track(t);
3565 }
3566 t->max = max;
3567 t->loc = l;
3568 return 1;
3569}
3570
3571static int add_location(struct loc_track *t, struct kmem_cache *s,
Christoph Lameter45edfa52007-05-09 02:32:45 -07003572 const struct track *track)
Christoph Lameter88a420e2007-05-06 14:49:45 -07003573{
3574 long start, end, pos;
3575 struct location *l;
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003576 unsigned long caddr;
Christoph Lameter45edfa52007-05-09 02:32:45 -07003577 unsigned long age = jiffies - track->when;
Christoph Lameter88a420e2007-05-06 14:49:45 -07003578
3579 start = -1;
3580 end = t->count;
3581
3582 for ( ; ; ) {
3583 pos = start + (end - start + 1) / 2;
3584
3585 /*
3586 * There is nothing at "end". If we end up there
3587 * we need to add something to before end.
3588 */
3589 if (pos == end)
3590 break;
3591
3592 caddr = t->loc[pos].addr;
Christoph Lameter45edfa52007-05-09 02:32:45 -07003593 if (track->addr == caddr) {
3594
3595 l = &t->loc[pos];
3596 l->count++;
3597 if (track->when) {
3598 l->sum_time += age;
3599 if (age < l->min_time)
3600 l->min_time = age;
3601 if (age > l->max_time)
3602 l->max_time = age;
3603
3604 if (track->pid < l->min_pid)
3605 l->min_pid = track->pid;
3606 if (track->pid > l->max_pid)
3607 l->max_pid = track->pid;
3608
Rusty Russell174596a2009-01-01 10:12:29 +10303609 cpumask_set_cpu(track->cpu,
3610 to_cpumask(l->cpus));
Christoph Lameter45edfa52007-05-09 02:32:45 -07003611 }
3612 node_set(page_to_nid(virt_to_page(track)), l->nodes);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003613 return 1;
3614 }
3615
Christoph Lameter45edfa52007-05-09 02:32:45 -07003616 if (track->addr < caddr)
Christoph Lameter88a420e2007-05-06 14:49:45 -07003617 end = pos;
3618 else
3619 start = pos;
3620 }
3621
3622 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07003623 * Not found. Insert new tracking element.
Christoph Lameter88a420e2007-05-06 14:49:45 -07003624 */
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003625 if (t->count >= t->max && !alloc_loc_track(t, 2 * t->max, GFP_ATOMIC))
Christoph Lameter88a420e2007-05-06 14:49:45 -07003626 return 0;
3627
3628 l = t->loc + pos;
3629 if (pos < t->count)
3630 memmove(l + 1, l,
3631 (t->count - pos) * sizeof(struct location));
3632 t->count++;
3633 l->count = 1;
Christoph Lameter45edfa52007-05-09 02:32:45 -07003634 l->addr = track->addr;
3635 l->sum_time = age;
3636 l->min_time = age;
3637 l->max_time = age;
3638 l->min_pid = track->pid;
3639 l->max_pid = track->pid;
Rusty Russell174596a2009-01-01 10:12:29 +10303640 cpumask_clear(to_cpumask(l->cpus));
3641 cpumask_set_cpu(track->cpu, to_cpumask(l->cpus));
Christoph Lameter45edfa52007-05-09 02:32:45 -07003642 nodes_clear(l->nodes);
3643 node_set(page_to_nid(virt_to_page(track)), l->nodes);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003644 return 1;
3645}
3646
3647static void process_slab(struct loc_track *t, struct kmem_cache *s,
Eric Dumazetbbd7d572010-03-24 22:25:47 +01003648 struct page *page, enum track_item alloc,
3649 long *map)
Christoph Lameter88a420e2007-05-06 14:49:45 -07003650{
Christoph Lametera973e9d2008-03-01 13:40:44 -08003651 void *addr = page_address(page);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003652 void *p;
3653
Christoph Lameter39b26462008-04-14 19:11:30 +03003654 bitmap_zero(map, page->objects);
Christoph Lameter7656c722007-05-09 02:32:40 -07003655 for_each_free_object(p, s, page->freelist)
3656 set_bit(slab_index(p, s, addr), map);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003657
Christoph Lameter224a88b2008-04-14 19:11:31 +03003658 for_each_object(p, s, addr, page->objects)
Christoph Lameter45edfa52007-05-09 02:32:45 -07003659 if (!test_bit(slab_index(p, s, addr), map))
3660 add_location(t, s, get_track(s, p, alloc));
Christoph Lameter88a420e2007-05-06 14:49:45 -07003661}
3662
3663static int list_locations(struct kmem_cache *s, char *buf,
3664 enum track_item alloc)
3665{
Harvey Harrisone374d482008-01-31 15:20:50 -08003666 int len = 0;
Christoph Lameter88a420e2007-05-06 14:49:45 -07003667 unsigned long i;
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003668 struct loc_track t = { 0, 0, NULL };
Christoph Lameter88a420e2007-05-06 14:49:45 -07003669 int node;
Eric Dumazetbbd7d572010-03-24 22:25:47 +01003670 unsigned long *map = kmalloc(BITS_TO_LONGS(oo_objects(s->max)) *
3671 sizeof(unsigned long), GFP_KERNEL);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003672
Eric Dumazetbbd7d572010-03-24 22:25:47 +01003673 if (!map || !alloc_loc_track(&t, PAGE_SIZE / sizeof(struct location),
3674 GFP_TEMPORARY)) {
3675 kfree(map);
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003676 return sprintf(buf, "Out of memory\n");
Eric Dumazetbbd7d572010-03-24 22:25:47 +01003677 }
Christoph Lameter88a420e2007-05-06 14:49:45 -07003678 /* Push back cpu slabs */
3679 flush_all(s);
3680
Christoph Lameterf64dc582007-10-16 01:25:33 -07003681 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter88a420e2007-05-06 14:49:45 -07003682 struct kmem_cache_node *n = get_node(s, node);
3683 unsigned long flags;
3684 struct page *page;
3685
Christoph Lameter9e869432007-08-22 14:01:56 -07003686 if (!atomic_long_read(&n->nr_slabs))
Christoph Lameter88a420e2007-05-06 14:49:45 -07003687 continue;
3688
3689 spin_lock_irqsave(&n->list_lock, flags);
3690 list_for_each_entry(page, &n->partial, lru)
Eric Dumazetbbd7d572010-03-24 22:25:47 +01003691 process_slab(&t, s, page, alloc, map);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003692 list_for_each_entry(page, &n->full, lru)
Eric Dumazetbbd7d572010-03-24 22:25:47 +01003693 process_slab(&t, s, page, alloc, map);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003694 spin_unlock_irqrestore(&n->list_lock, flags);
3695 }
3696
3697 for (i = 0; i < t.count; i++) {
Christoph Lameter45edfa52007-05-09 02:32:45 -07003698 struct location *l = &t.loc[i];
Christoph Lameter88a420e2007-05-06 14:49:45 -07003699
Hugh Dickins9c246242008-12-09 13:14:27 -08003700 if (len > PAGE_SIZE - KSYM_SYMBOL_LEN - 100)
Christoph Lameter88a420e2007-05-06 14:49:45 -07003701 break;
Harvey Harrisone374d482008-01-31 15:20:50 -08003702 len += sprintf(buf + len, "%7ld ", l->count);
Christoph Lameter45edfa52007-05-09 02:32:45 -07003703
3704 if (l->addr)
Harvey Harrisone374d482008-01-31 15:20:50 -08003705 len += sprint_symbol(buf + len, (unsigned long)l->addr);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003706 else
Harvey Harrisone374d482008-01-31 15:20:50 -08003707 len += sprintf(buf + len, "<not-available>");
Christoph Lameter45edfa52007-05-09 02:32:45 -07003708
3709 if (l->sum_time != l->min_time) {
Harvey Harrisone374d482008-01-31 15:20:50 -08003710 len += sprintf(buf + len, " age=%ld/%ld/%ld",
Roman Zippelf8bd2252008-05-01 04:34:31 -07003711 l->min_time,
3712 (long)div_u64(l->sum_time, l->count),
3713 l->max_time);
Christoph Lameter45edfa52007-05-09 02:32:45 -07003714 } else
Harvey Harrisone374d482008-01-31 15:20:50 -08003715 len += sprintf(buf + len, " age=%ld",
Christoph Lameter45edfa52007-05-09 02:32:45 -07003716 l->min_time);
3717
3718 if (l->min_pid != l->max_pid)
Harvey Harrisone374d482008-01-31 15:20:50 -08003719 len += sprintf(buf + len, " pid=%ld-%ld",
Christoph Lameter45edfa52007-05-09 02:32:45 -07003720 l->min_pid, l->max_pid);
3721 else
Harvey Harrisone374d482008-01-31 15:20:50 -08003722 len += sprintf(buf + len, " pid=%ld",
Christoph Lameter45edfa52007-05-09 02:32:45 -07003723 l->min_pid);
3724
Rusty Russell174596a2009-01-01 10:12:29 +10303725 if (num_online_cpus() > 1 &&
3726 !cpumask_empty(to_cpumask(l->cpus)) &&
Harvey Harrisone374d482008-01-31 15:20:50 -08003727 len < PAGE_SIZE - 60) {
3728 len += sprintf(buf + len, " cpus=");
3729 len += cpulist_scnprintf(buf + len, PAGE_SIZE - len - 50,
Rusty Russell174596a2009-01-01 10:12:29 +10303730 to_cpumask(l->cpus));
Christoph Lameter45edfa52007-05-09 02:32:45 -07003731 }
3732
Christoph Lameter62bc62a2009-06-16 15:32:15 -07003733 if (nr_online_nodes > 1 && !nodes_empty(l->nodes) &&
Harvey Harrisone374d482008-01-31 15:20:50 -08003734 len < PAGE_SIZE - 60) {
3735 len += sprintf(buf + len, " nodes=");
3736 len += nodelist_scnprintf(buf + len, PAGE_SIZE - len - 50,
Christoph Lameter45edfa52007-05-09 02:32:45 -07003737 l->nodes);
3738 }
3739
Harvey Harrisone374d482008-01-31 15:20:50 -08003740 len += sprintf(buf + len, "\n");
Christoph Lameter88a420e2007-05-06 14:49:45 -07003741 }
3742
3743 free_loc_track(&t);
Eric Dumazetbbd7d572010-03-24 22:25:47 +01003744 kfree(map);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003745 if (!t.count)
Harvey Harrisone374d482008-01-31 15:20:50 -08003746 len += sprintf(buf, "No data\n");
3747 return len;
Christoph Lameter88a420e2007-05-06 14:49:45 -07003748}
3749
Christoph Lameter81819f02007-05-06 14:49:36 -07003750enum slab_stat_type {
Christoph Lameter205ab992008-04-14 19:11:40 +03003751 SL_ALL, /* All slabs */
3752 SL_PARTIAL, /* Only partially allocated slabs */
3753 SL_CPU, /* Only slabs used for cpu caches */
3754 SL_OBJECTS, /* Determine allocated objects not slabs */
3755 SL_TOTAL /* Determine object capacity not slabs */
Christoph Lameter81819f02007-05-06 14:49:36 -07003756};
3757
Christoph Lameter205ab992008-04-14 19:11:40 +03003758#define SO_ALL (1 << SL_ALL)
Christoph Lameter81819f02007-05-06 14:49:36 -07003759#define SO_PARTIAL (1 << SL_PARTIAL)
3760#define SO_CPU (1 << SL_CPU)
3761#define SO_OBJECTS (1 << SL_OBJECTS)
Christoph Lameter205ab992008-04-14 19:11:40 +03003762#define SO_TOTAL (1 << SL_TOTAL)
Christoph Lameter81819f02007-05-06 14:49:36 -07003763
Cyrill Gorcunov62e5c4b2008-03-02 23:28:24 +03003764static ssize_t show_slab_objects(struct kmem_cache *s,
3765 char *buf, unsigned long flags)
Christoph Lameter81819f02007-05-06 14:49:36 -07003766{
3767 unsigned long total = 0;
Christoph Lameter81819f02007-05-06 14:49:36 -07003768 int node;
3769 int x;
3770 unsigned long *nodes;
3771 unsigned long *per_cpu;
3772
3773 nodes = kzalloc(2 * sizeof(unsigned long) * nr_node_ids, GFP_KERNEL);
Cyrill Gorcunov62e5c4b2008-03-02 23:28:24 +03003774 if (!nodes)
3775 return -ENOMEM;
Christoph Lameter81819f02007-05-06 14:49:36 -07003776 per_cpu = nodes + nr_node_ids;
3777
Christoph Lameter205ab992008-04-14 19:11:40 +03003778 if (flags & SO_CPU) {
3779 int cpu;
Christoph Lameter81819f02007-05-06 14:49:36 -07003780
Christoph Lameter205ab992008-04-14 19:11:40 +03003781 for_each_possible_cpu(cpu) {
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06003782 struct kmem_cache_cpu *c = per_cpu_ptr(s->cpu_slab, cpu);
Christoph Lameterdfb4f092007-10-16 01:26:05 -07003783
Christoph Lameter205ab992008-04-14 19:11:40 +03003784 if (!c || c->node < 0)
3785 continue;
3786
3787 if (c->page) {
3788 if (flags & SO_TOTAL)
3789 x = c->page->objects;
3790 else if (flags & SO_OBJECTS)
3791 x = c->page->inuse;
Christoph Lameter81819f02007-05-06 14:49:36 -07003792 else
3793 x = 1;
Christoph Lameter205ab992008-04-14 19:11:40 +03003794
Christoph Lameter81819f02007-05-06 14:49:36 -07003795 total += x;
Christoph Lameter205ab992008-04-14 19:11:40 +03003796 nodes[c->node] += x;
Christoph Lameter81819f02007-05-06 14:49:36 -07003797 }
Christoph Lameter205ab992008-04-14 19:11:40 +03003798 per_cpu[c->node]++;
Christoph Lameter81819f02007-05-06 14:49:36 -07003799 }
3800 }
3801
Christoph Lameter205ab992008-04-14 19:11:40 +03003802 if (flags & SO_ALL) {
3803 for_each_node_state(node, N_NORMAL_MEMORY) {
3804 struct kmem_cache_node *n = get_node(s, node);
Christoph Lameter81819f02007-05-06 14:49:36 -07003805
Christoph Lameter205ab992008-04-14 19:11:40 +03003806 if (flags & SO_TOTAL)
3807 x = atomic_long_read(&n->total_objects);
3808 else if (flags & SO_OBJECTS)
3809 x = atomic_long_read(&n->total_objects) -
3810 count_partial(n, count_free);
3811
3812 else
3813 x = atomic_long_read(&n->nr_slabs);
3814 total += x;
3815 nodes[node] += x;
3816 }
3817
3818 } else if (flags & SO_PARTIAL) {
3819 for_each_node_state(node, N_NORMAL_MEMORY) {
3820 struct kmem_cache_node *n = get_node(s, node);
3821
3822 if (flags & SO_TOTAL)
3823 x = count_partial(n, count_total);
3824 else if (flags & SO_OBJECTS)
3825 x = count_partial(n, count_inuse);
Christoph Lameter81819f02007-05-06 14:49:36 -07003826 else
3827 x = n->nr_partial;
3828 total += x;
3829 nodes[node] += x;
3830 }
Christoph Lameter81819f02007-05-06 14:49:36 -07003831 }
Christoph Lameter81819f02007-05-06 14:49:36 -07003832 x = sprintf(buf, "%lu", total);
3833#ifdef CONFIG_NUMA
Christoph Lameterf64dc582007-10-16 01:25:33 -07003834 for_each_node_state(node, N_NORMAL_MEMORY)
Christoph Lameter81819f02007-05-06 14:49:36 -07003835 if (nodes[node])
3836 x += sprintf(buf + x, " N%d=%lu",
3837 node, nodes[node]);
3838#endif
3839 kfree(nodes);
3840 return x + sprintf(buf + x, "\n");
3841}
3842
3843static int any_slab_objects(struct kmem_cache *s)
3844{
3845 int node;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07003846
3847 for_each_online_node(node) {
Christoph Lameter81819f02007-05-06 14:49:36 -07003848 struct kmem_cache_node *n = get_node(s, node);
3849
Christoph Lameterdfb4f092007-10-16 01:26:05 -07003850 if (!n)
3851 continue;
3852
Benjamin Herrenschmidt4ea33e22008-05-06 20:42:39 -07003853 if (atomic_long_read(&n->total_objects))
Christoph Lameter81819f02007-05-06 14:49:36 -07003854 return 1;
3855 }
3856 return 0;
3857}
3858
3859#define to_slab_attr(n) container_of(n, struct slab_attribute, attr)
3860#define to_slab(n) container_of(n, struct kmem_cache, kobj);
3861
3862struct slab_attribute {
3863 struct attribute attr;
3864 ssize_t (*show)(struct kmem_cache *s, char *buf);
3865 ssize_t (*store)(struct kmem_cache *s, const char *x, size_t count);
3866};
3867
3868#define SLAB_ATTR_RO(_name) \
3869 static struct slab_attribute _name##_attr = __ATTR_RO(_name)
3870
3871#define SLAB_ATTR(_name) \
3872 static struct slab_attribute _name##_attr = \
3873 __ATTR(_name, 0644, _name##_show, _name##_store)
3874
Christoph Lameter81819f02007-05-06 14:49:36 -07003875static ssize_t slab_size_show(struct kmem_cache *s, char *buf)
3876{
3877 return sprintf(buf, "%d\n", s->size);
3878}
3879SLAB_ATTR_RO(slab_size);
3880
3881static ssize_t align_show(struct kmem_cache *s, char *buf)
3882{
3883 return sprintf(buf, "%d\n", s->align);
3884}
3885SLAB_ATTR_RO(align);
3886
3887static ssize_t object_size_show(struct kmem_cache *s, char *buf)
3888{
3889 return sprintf(buf, "%d\n", s->objsize);
3890}
3891SLAB_ATTR_RO(object_size);
3892
3893static ssize_t objs_per_slab_show(struct kmem_cache *s, char *buf)
3894{
Christoph Lameter834f3d12008-04-14 19:11:31 +03003895 return sprintf(buf, "%d\n", oo_objects(s->oo));
Christoph Lameter81819f02007-05-06 14:49:36 -07003896}
3897SLAB_ATTR_RO(objs_per_slab);
3898
Christoph Lameter06b285d2008-04-14 19:11:41 +03003899static ssize_t order_store(struct kmem_cache *s,
3900 const char *buf, size_t length)
3901{
Christoph Lameter0121c6192008-04-29 16:11:12 -07003902 unsigned long order;
3903 int err;
3904
3905 err = strict_strtoul(buf, 10, &order);
3906 if (err)
3907 return err;
Christoph Lameter06b285d2008-04-14 19:11:41 +03003908
3909 if (order > slub_max_order || order < slub_min_order)
3910 return -EINVAL;
3911
3912 calculate_sizes(s, order);
3913 return length;
3914}
3915
Christoph Lameter81819f02007-05-06 14:49:36 -07003916static ssize_t order_show(struct kmem_cache *s, char *buf)
3917{
Christoph Lameter834f3d12008-04-14 19:11:31 +03003918 return sprintf(buf, "%d\n", oo_order(s->oo));
Christoph Lameter81819f02007-05-06 14:49:36 -07003919}
Christoph Lameter06b285d2008-04-14 19:11:41 +03003920SLAB_ATTR(order);
Christoph Lameter81819f02007-05-06 14:49:36 -07003921
David Rientjes73d342b2009-02-22 17:40:09 -08003922static ssize_t min_partial_show(struct kmem_cache *s, char *buf)
3923{
3924 return sprintf(buf, "%lu\n", s->min_partial);
3925}
3926
3927static ssize_t min_partial_store(struct kmem_cache *s, const char *buf,
3928 size_t length)
3929{
3930 unsigned long min;
3931 int err;
3932
3933 err = strict_strtoul(buf, 10, &min);
3934 if (err)
3935 return err;
3936
David Rientjesc0bdb232009-02-25 09:16:35 +02003937 set_min_partial(s, min);
David Rientjes73d342b2009-02-22 17:40:09 -08003938 return length;
3939}
3940SLAB_ATTR(min_partial);
3941
Christoph Lameter81819f02007-05-06 14:49:36 -07003942static ssize_t ctor_show(struct kmem_cache *s, char *buf)
3943{
3944 if (s->ctor) {
3945 int n = sprint_symbol(buf, (unsigned long)s->ctor);
3946
3947 return n + sprintf(buf + n, "\n");
3948 }
3949 return 0;
3950}
3951SLAB_ATTR_RO(ctor);
3952
Christoph Lameter81819f02007-05-06 14:49:36 -07003953static ssize_t aliases_show(struct kmem_cache *s, char *buf)
3954{
3955 return sprintf(buf, "%d\n", s->refcount - 1);
3956}
3957SLAB_ATTR_RO(aliases);
3958
3959static ssize_t slabs_show(struct kmem_cache *s, char *buf)
3960{
Christoph Lameter205ab992008-04-14 19:11:40 +03003961 return show_slab_objects(s, buf, SO_ALL);
Christoph Lameter81819f02007-05-06 14:49:36 -07003962}
3963SLAB_ATTR_RO(slabs);
3964
3965static ssize_t partial_show(struct kmem_cache *s, char *buf)
3966{
Christoph Lameterd9acf4b2008-02-15 15:22:21 -08003967 return show_slab_objects(s, buf, SO_PARTIAL);
Christoph Lameter81819f02007-05-06 14:49:36 -07003968}
3969SLAB_ATTR_RO(partial);
3970
3971static ssize_t cpu_slabs_show(struct kmem_cache *s, char *buf)
3972{
Christoph Lameterd9acf4b2008-02-15 15:22:21 -08003973 return show_slab_objects(s, buf, SO_CPU);
Christoph Lameter81819f02007-05-06 14:49:36 -07003974}
3975SLAB_ATTR_RO(cpu_slabs);
3976
3977static ssize_t objects_show(struct kmem_cache *s, char *buf)
3978{
Christoph Lameter205ab992008-04-14 19:11:40 +03003979 return show_slab_objects(s, buf, SO_ALL|SO_OBJECTS);
Christoph Lameter81819f02007-05-06 14:49:36 -07003980}
3981SLAB_ATTR_RO(objects);
3982
Christoph Lameter205ab992008-04-14 19:11:40 +03003983static ssize_t objects_partial_show(struct kmem_cache *s, char *buf)
3984{
3985 return show_slab_objects(s, buf, SO_PARTIAL|SO_OBJECTS);
3986}
3987SLAB_ATTR_RO(objects_partial);
3988
3989static ssize_t total_objects_show(struct kmem_cache *s, char *buf)
3990{
3991 return show_slab_objects(s, buf, SO_ALL|SO_TOTAL);
3992}
3993SLAB_ATTR_RO(total_objects);
3994
Christoph Lameter81819f02007-05-06 14:49:36 -07003995static ssize_t sanity_checks_show(struct kmem_cache *s, char *buf)
3996{
3997 return sprintf(buf, "%d\n", !!(s->flags & SLAB_DEBUG_FREE));
3998}
3999
4000static ssize_t sanity_checks_store(struct kmem_cache *s,
4001 const char *buf, size_t length)
4002{
4003 s->flags &= ~SLAB_DEBUG_FREE;
4004 if (buf[0] == '1')
4005 s->flags |= SLAB_DEBUG_FREE;
4006 return length;
4007}
4008SLAB_ATTR(sanity_checks);
4009
4010static ssize_t trace_show(struct kmem_cache *s, char *buf)
4011{
4012 return sprintf(buf, "%d\n", !!(s->flags & SLAB_TRACE));
4013}
4014
4015static ssize_t trace_store(struct kmem_cache *s, const char *buf,
4016 size_t length)
4017{
4018 s->flags &= ~SLAB_TRACE;
4019 if (buf[0] == '1')
4020 s->flags |= SLAB_TRACE;
4021 return length;
4022}
4023SLAB_ATTR(trace);
4024
Dmitry Monakhov4c13dd32010-02-26 09:36:12 +03004025#ifdef CONFIG_FAILSLAB
4026static ssize_t failslab_show(struct kmem_cache *s, char *buf)
4027{
4028 return sprintf(buf, "%d\n", !!(s->flags & SLAB_FAILSLAB));
4029}
4030
4031static ssize_t failslab_store(struct kmem_cache *s, const char *buf,
4032 size_t length)
4033{
4034 s->flags &= ~SLAB_FAILSLAB;
4035 if (buf[0] == '1')
4036 s->flags |= SLAB_FAILSLAB;
4037 return length;
4038}
4039SLAB_ATTR(failslab);
4040#endif
4041
Christoph Lameter81819f02007-05-06 14:49:36 -07004042static ssize_t reclaim_account_show(struct kmem_cache *s, char *buf)
4043{
4044 return sprintf(buf, "%d\n", !!(s->flags & SLAB_RECLAIM_ACCOUNT));
4045}
4046
4047static ssize_t reclaim_account_store(struct kmem_cache *s,
4048 const char *buf, size_t length)
4049{
4050 s->flags &= ~SLAB_RECLAIM_ACCOUNT;
4051 if (buf[0] == '1')
4052 s->flags |= SLAB_RECLAIM_ACCOUNT;
4053 return length;
4054}
4055SLAB_ATTR(reclaim_account);
4056
4057static ssize_t hwcache_align_show(struct kmem_cache *s, char *buf)
4058{
Christoph Lameter5af60832007-05-06 14:49:56 -07004059 return sprintf(buf, "%d\n", !!(s->flags & SLAB_HWCACHE_ALIGN));
Christoph Lameter81819f02007-05-06 14:49:36 -07004060}
4061SLAB_ATTR_RO(hwcache_align);
4062
4063#ifdef CONFIG_ZONE_DMA
4064static ssize_t cache_dma_show(struct kmem_cache *s, char *buf)
4065{
4066 return sprintf(buf, "%d\n", !!(s->flags & SLAB_CACHE_DMA));
4067}
4068SLAB_ATTR_RO(cache_dma);
4069#endif
4070
4071static ssize_t destroy_by_rcu_show(struct kmem_cache *s, char *buf)
4072{
4073 return sprintf(buf, "%d\n", !!(s->flags & SLAB_DESTROY_BY_RCU));
4074}
4075SLAB_ATTR_RO(destroy_by_rcu);
4076
4077static ssize_t red_zone_show(struct kmem_cache *s, char *buf)
4078{
4079 return sprintf(buf, "%d\n", !!(s->flags & SLAB_RED_ZONE));
4080}
4081
4082static ssize_t red_zone_store(struct kmem_cache *s,
4083 const char *buf, size_t length)
4084{
4085 if (any_slab_objects(s))
4086 return -EBUSY;
4087
4088 s->flags &= ~SLAB_RED_ZONE;
4089 if (buf[0] == '1')
4090 s->flags |= SLAB_RED_ZONE;
Christoph Lameter06b285d2008-04-14 19:11:41 +03004091 calculate_sizes(s, -1);
Christoph Lameter81819f02007-05-06 14:49:36 -07004092 return length;
4093}
4094SLAB_ATTR(red_zone);
4095
4096static ssize_t poison_show(struct kmem_cache *s, char *buf)
4097{
4098 return sprintf(buf, "%d\n", !!(s->flags & SLAB_POISON));
4099}
4100
4101static ssize_t poison_store(struct kmem_cache *s,
4102 const char *buf, size_t length)
4103{
4104 if (any_slab_objects(s))
4105 return -EBUSY;
4106
4107 s->flags &= ~SLAB_POISON;
4108 if (buf[0] == '1')
4109 s->flags |= SLAB_POISON;
Christoph Lameter06b285d2008-04-14 19:11:41 +03004110 calculate_sizes(s, -1);
Christoph Lameter81819f02007-05-06 14:49:36 -07004111 return length;
4112}
4113SLAB_ATTR(poison);
4114
4115static ssize_t store_user_show(struct kmem_cache *s, char *buf)
4116{
4117 return sprintf(buf, "%d\n", !!(s->flags & SLAB_STORE_USER));
4118}
4119
4120static ssize_t store_user_store(struct kmem_cache *s,
4121 const char *buf, size_t length)
4122{
4123 if (any_slab_objects(s))
4124 return -EBUSY;
4125
4126 s->flags &= ~SLAB_STORE_USER;
4127 if (buf[0] == '1')
4128 s->flags |= SLAB_STORE_USER;
Christoph Lameter06b285d2008-04-14 19:11:41 +03004129 calculate_sizes(s, -1);
Christoph Lameter81819f02007-05-06 14:49:36 -07004130 return length;
4131}
4132SLAB_ATTR(store_user);
4133
Christoph Lameter53e15af2007-05-06 14:49:43 -07004134static ssize_t validate_show(struct kmem_cache *s, char *buf)
4135{
4136 return 0;
4137}
4138
4139static ssize_t validate_store(struct kmem_cache *s,
4140 const char *buf, size_t length)
4141{
Christoph Lameter434e2452007-07-17 04:03:30 -07004142 int ret = -EINVAL;
4143
4144 if (buf[0] == '1') {
4145 ret = validate_slab_cache(s);
4146 if (ret >= 0)
4147 ret = length;
4148 }
4149 return ret;
Christoph Lameter53e15af2007-05-06 14:49:43 -07004150}
4151SLAB_ATTR(validate);
4152
Christoph Lameter2086d262007-05-06 14:49:46 -07004153static ssize_t shrink_show(struct kmem_cache *s, char *buf)
4154{
4155 return 0;
4156}
4157
4158static ssize_t shrink_store(struct kmem_cache *s,
4159 const char *buf, size_t length)
4160{
4161 if (buf[0] == '1') {
4162 int rc = kmem_cache_shrink(s);
4163
4164 if (rc)
4165 return rc;
4166 } else
4167 return -EINVAL;
4168 return length;
4169}
4170SLAB_ATTR(shrink);
4171
Christoph Lameter88a420e2007-05-06 14:49:45 -07004172static ssize_t alloc_calls_show(struct kmem_cache *s, char *buf)
4173{
4174 if (!(s->flags & SLAB_STORE_USER))
4175 return -ENOSYS;
4176 return list_locations(s, buf, TRACK_ALLOC);
4177}
4178SLAB_ATTR_RO(alloc_calls);
4179
4180static ssize_t free_calls_show(struct kmem_cache *s, char *buf)
4181{
4182 if (!(s->flags & SLAB_STORE_USER))
4183 return -ENOSYS;
4184 return list_locations(s, buf, TRACK_FREE);
4185}
4186SLAB_ATTR_RO(free_calls);
4187
Christoph Lameter81819f02007-05-06 14:49:36 -07004188#ifdef CONFIG_NUMA
Christoph Lameter98246012008-01-07 23:20:26 -08004189static ssize_t remote_node_defrag_ratio_show(struct kmem_cache *s, char *buf)
Christoph Lameter81819f02007-05-06 14:49:36 -07004190{
Christoph Lameter98246012008-01-07 23:20:26 -08004191 return sprintf(buf, "%d\n", s->remote_node_defrag_ratio / 10);
Christoph Lameter81819f02007-05-06 14:49:36 -07004192}
4193
Christoph Lameter98246012008-01-07 23:20:26 -08004194static ssize_t remote_node_defrag_ratio_store(struct kmem_cache *s,
Christoph Lameter81819f02007-05-06 14:49:36 -07004195 const char *buf, size_t length)
4196{
Christoph Lameter0121c6192008-04-29 16:11:12 -07004197 unsigned long ratio;
4198 int err;
Christoph Lameter81819f02007-05-06 14:49:36 -07004199
Christoph Lameter0121c6192008-04-29 16:11:12 -07004200 err = strict_strtoul(buf, 10, &ratio);
4201 if (err)
4202 return err;
4203
Christoph Lametere2cb96b2008-08-19 08:51:22 -05004204 if (ratio <= 100)
Christoph Lameter0121c6192008-04-29 16:11:12 -07004205 s->remote_node_defrag_ratio = ratio * 10;
4206
Christoph Lameter81819f02007-05-06 14:49:36 -07004207 return length;
4208}
Christoph Lameter98246012008-01-07 23:20:26 -08004209SLAB_ATTR(remote_node_defrag_ratio);
Christoph Lameter81819f02007-05-06 14:49:36 -07004210#endif
4211
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004212#ifdef CONFIG_SLUB_STATS
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004213static int show_stat(struct kmem_cache *s, char *buf, enum stat_item si)
4214{
4215 unsigned long sum = 0;
4216 int cpu;
4217 int len;
4218 int *data = kmalloc(nr_cpu_ids * sizeof(int), GFP_KERNEL);
4219
4220 if (!data)
4221 return -ENOMEM;
4222
4223 for_each_online_cpu(cpu) {
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06004224 unsigned x = per_cpu_ptr(s->cpu_slab, cpu)->stat[si];
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004225
4226 data[cpu] = x;
4227 sum += x;
4228 }
4229
4230 len = sprintf(buf, "%lu", sum);
4231
Christoph Lameter50ef37b2008-04-14 18:52:05 +03004232#ifdef CONFIG_SMP
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004233 for_each_online_cpu(cpu) {
4234 if (data[cpu] && len < PAGE_SIZE - 20)
Christoph Lameter50ef37b2008-04-14 18:52:05 +03004235 len += sprintf(buf + len, " C%d=%u", cpu, data[cpu]);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004236 }
Christoph Lameter50ef37b2008-04-14 18:52:05 +03004237#endif
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004238 kfree(data);
4239 return len + sprintf(buf + len, "\n");
4240}
4241
David Rientjes78eb00c2009-10-15 02:20:22 -07004242static void clear_stat(struct kmem_cache *s, enum stat_item si)
4243{
4244 int cpu;
4245
4246 for_each_online_cpu(cpu)
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06004247 per_cpu_ptr(s->cpu_slab, cpu)->stat[si] = 0;
David Rientjes78eb00c2009-10-15 02:20:22 -07004248}
4249
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004250#define STAT_ATTR(si, text) \
4251static ssize_t text##_show(struct kmem_cache *s, char *buf) \
4252{ \
4253 return show_stat(s, buf, si); \
4254} \
David Rientjes78eb00c2009-10-15 02:20:22 -07004255static ssize_t text##_store(struct kmem_cache *s, \
4256 const char *buf, size_t length) \
4257{ \
4258 if (buf[0] != '0') \
4259 return -EINVAL; \
4260 clear_stat(s, si); \
4261 return length; \
4262} \
4263SLAB_ATTR(text); \
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004264
4265STAT_ATTR(ALLOC_FASTPATH, alloc_fastpath);
4266STAT_ATTR(ALLOC_SLOWPATH, alloc_slowpath);
4267STAT_ATTR(FREE_FASTPATH, free_fastpath);
4268STAT_ATTR(FREE_SLOWPATH, free_slowpath);
4269STAT_ATTR(FREE_FROZEN, free_frozen);
4270STAT_ATTR(FREE_ADD_PARTIAL, free_add_partial);
4271STAT_ATTR(FREE_REMOVE_PARTIAL, free_remove_partial);
4272STAT_ATTR(ALLOC_FROM_PARTIAL, alloc_from_partial);
4273STAT_ATTR(ALLOC_SLAB, alloc_slab);
4274STAT_ATTR(ALLOC_REFILL, alloc_refill);
4275STAT_ATTR(FREE_SLAB, free_slab);
4276STAT_ATTR(CPUSLAB_FLUSH, cpuslab_flush);
4277STAT_ATTR(DEACTIVATE_FULL, deactivate_full);
4278STAT_ATTR(DEACTIVATE_EMPTY, deactivate_empty);
4279STAT_ATTR(DEACTIVATE_TO_HEAD, deactivate_to_head);
4280STAT_ATTR(DEACTIVATE_TO_TAIL, deactivate_to_tail);
4281STAT_ATTR(DEACTIVATE_REMOTE_FREES, deactivate_remote_frees);
Christoph Lameter65c33762008-04-14 19:11:40 +03004282STAT_ATTR(ORDER_FALLBACK, order_fallback);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004283#endif
4284
Pekka Enberg06428782008-01-07 23:20:27 -08004285static struct attribute *slab_attrs[] = {
Christoph Lameter81819f02007-05-06 14:49:36 -07004286 &slab_size_attr.attr,
4287 &object_size_attr.attr,
4288 &objs_per_slab_attr.attr,
4289 &order_attr.attr,
David Rientjes73d342b2009-02-22 17:40:09 -08004290 &min_partial_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07004291 &objects_attr.attr,
Christoph Lameter205ab992008-04-14 19:11:40 +03004292 &objects_partial_attr.attr,
4293 &total_objects_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07004294 &slabs_attr.attr,
4295 &partial_attr.attr,
4296 &cpu_slabs_attr.attr,
4297 &ctor_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07004298 &aliases_attr.attr,
4299 &align_attr.attr,
4300 &sanity_checks_attr.attr,
4301 &trace_attr.attr,
4302 &hwcache_align_attr.attr,
4303 &reclaim_account_attr.attr,
4304 &destroy_by_rcu_attr.attr,
4305 &red_zone_attr.attr,
4306 &poison_attr.attr,
4307 &store_user_attr.attr,
Christoph Lameter53e15af2007-05-06 14:49:43 -07004308 &validate_attr.attr,
Christoph Lameter2086d262007-05-06 14:49:46 -07004309 &shrink_attr.attr,
Christoph Lameter88a420e2007-05-06 14:49:45 -07004310 &alloc_calls_attr.attr,
4311 &free_calls_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07004312#ifdef CONFIG_ZONE_DMA
4313 &cache_dma_attr.attr,
4314#endif
4315#ifdef CONFIG_NUMA
Christoph Lameter98246012008-01-07 23:20:26 -08004316 &remote_node_defrag_ratio_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07004317#endif
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004318#ifdef CONFIG_SLUB_STATS
4319 &alloc_fastpath_attr.attr,
4320 &alloc_slowpath_attr.attr,
4321 &free_fastpath_attr.attr,
4322 &free_slowpath_attr.attr,
4323 &free_frozen_attr.attr,
4324 &free_add_partial_attr.attr,
4325 &free_remove_partial_attr.attr,
4326 &alloc_from_partial_attr.attr,
4327 &alloc_slab_attr.attr,
4328 &alloc_refill_attr.attr,
4329 &free_slab_attr.attr,
4330 &cpuslab_flush_attr.attr,
4331 &deactivate_full_attr.attr,
4332 &deactivate_empty_attr.attr,
4333 &deactivate_to_head_attr.attr,
4334 &deactivate_to_tail_attr.attr,
4335 &deactivate_remote_frees_attr.attr,
Christoph Lameter65c33762008-04-14 19:11:40 +03004336 &order_fallback_attr.attr,
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004337#endif
Dmitry Monakhov4c13dd32010-02-26 09:36:12 +03004338#ifdef CONFIG_FAILSLAB
4339 &failslab_attr.attr,
4340#endif
4341
Christoph Lameter81819f02007-05-06 14:49:36 -07004342 NULL
4343};
4344
4345static struct attribute_group slab_attr_group = {
4346 .attrs = slab_attrs,
4347};
4348
4349static ssize_t slab_attr_show(struct kobject *kobj,
4350 struct attribute *attr,
4351 char *buf)
4352{
4353 struct slab_attribute *attribute;
4354 struct kmem_cache *s;
4355 int err;
4356
4357 attribute = to_slab_attr(attr);
4358 s = to_slab(kobj);
4359
4360 if (!attribute->show)
4361 return -EIO;
4362
4363 err = attribute->show(s, buf);
4364
4365 return err;
4366}
4367
4368static ssize_t slab_attr_store(struct kobject *kobj,
4369 struct attribute *attr,
4370 const char *buf, size_t len)
4371{
4372 struct slab_attribute *attribute;
4373 struct kmem_cache *s;
4374 int err;
4375
4376 attribute = to_slab_attr(attr);
4377 s = to_slab(kobj);
4378
4379 if (!attribute->store)
4380 return -EIO;
4381
4382 err = attribute->store(s, buf, len);
4383
4384 return err;
4385}
4386
Christoph Lameter151c6022008-01-07 22:29:05 -08004387static void kmem_cache_release(struct kobject *kobj)
4388{
4389 struct kmem_cache *s = to_slab(kobj);
4390
4391 kfree(s);
4392}
4393
Emese Revfy52cf25d2010-01-19 02:58:23 +01004394static const struct sysfs_ops slab_sysfs_ops = {
Christoph Lameter81819f02007-05-06 14:49:36 -07004395 .show = slab_attr_show,
4396 .store = slab_attr_store,
4397};
4398
4399static struct kobj_type slab_ktype = {
4400 .sysfs_ops = &slab_sysfs_ops,
Christoph Lameter151c6022008-01-07 22:29:05 -08004401 .release = kmem_cache_release
Christoph Lameter81819f02007-05-06 14:49:36 -07004402};
4403
4404static int uevent_filter(struct kset *kset, struct kobject *kobj)
4405{
4406 struct kobj_type *ktype = get_ktype(kobj);
4407
4408 if (ktype == &slab_ktype)
4409 return 1;
4410 return 0;
4411}
4412
Emese Revfy9cd43612009-12-31 14:52:51 +01004413static const struct kset_uevent_ops slab_uevent_ops = {
Christoph Lameter81819f02007-05-06 14:49:36 -07004414 .filter = uevent_filter,
4415};
4416
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06004417static struct kset *slab_kset;
Christoph Lameter81819f02007-05-06 14:49:36 -07004418
4419#define ID_STR_LENGTH 64
4420
4421/* Create a unique string id for a slab cache:
Christoph Lameter6446faa2008-02-15 23:45:26 -08004422 *
4423 * Format :[flags-]size
Christoph Lameter81819f02007-05-06 14:49:36 -07004424 */
4425static char *create_unique_id(struct kmem_cache *s)
4426{
4427 char *name = kmalloc(ID_STR_LENGTH, GFP_KERNEL);
4428 char *p = name;
4429
4430 BUG_ON(!name);
4431
4432 *p++ = ':';
4433 /*
4434 * First flags affecting slabcache operations. We will only
4435 * get here for aliasable slabs so we do not need to support
4436 * too many flags. The flags here must cover all flags that
4437 * are matched during merging to guarantee that the id is
4438 * unique.
4439 */
4440 if (s->flags & SLAB_CACHE_DMA)
4441 *p++ = 'd';
4442 if (s->flags & SLAB_RECLAIM_ACCOUNT)
4443 *p++ = 'a';
4444 if (s->flags & SLAB_DEBUG_FREE)
4445 *p++ = 'F';
Vegard Nossum5a896d92008-04-04 00:54:48 +02004446 if (!(s->flags & SLAB_NOTRACK))
4447 *p++ = 't';
Christoph Lameter81819f02007-05-06 14:49:36 -07004448 if (p != name + 1)
4449 *p++ = '-';
4450 p += sprintf(p, "%07d", s->size);
4451 BUG_ON(p > name + ID_STR_LENGTH - 1);
4452 return name;
4453}
4454
4455static int sysfs_slab_add(struct kmem_cache *s)
4456{
4457 int err;
4458 const char *name;
4459 int unmergeable;
4460
4461 if (slab_state < SYSFS)
4462 /* Defer until later */
4463 return 0;
4464
4465 unmergeable = slab_unmergeable(s);
4466 if (unmergeable) {
4467 /*
4468 * Slabcache can never be merged so we can use the name proper.
4469 * This is typically the case for debug situations. In that
4470 * case we can catch duplicate names easily.
4471 */
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06004472 sysfs_remove_link(&slab_kset->kobj, s->name);
Christoph Lameter81819f02007-05-06 14:49:36 -07004473 name = s->name;
4474 } else {
4475 /*
4476 * Create a unique name for the slab as a target
4477 * for the symlinks.
4478 */
4479 name = create_unique_id(s);
4480 }
4481
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06004482 s->kobj.kset = slab_kset;
Greg Kroah-Hartman1eada112007-12-17 23:05:35 -07004483 err = kobject_init_and_add(&s->kobj, &slab_ktype, NULL, name);
4484 if (err) {
4485 kobject_put(&s->kobj);
Christoph Lameter81819f02007-05-06 14:49:36 -07004486 return err;
Greg Kroah-Hartman1eada112007-12-17 23:05:35 -07004487 }
Christoph Lameter81819f02007-05-06 14:49:36 -07004488
4489 err = sysfs_create_group(&s->kobj, &slab_attr_group);
Xiaotian Feng5788d8a2009-07-22 11:28:53 +08004490 if (err) {
4491 kobject_del(&s->kobj);
4492 kobject_put(&s->kobj);
Christoph Lameter81819f02007-05-06 14:49:36 -07004493 return err;
Xiaotian Feng5788d8a2009-07-22 11:28:53 +08004494 }
Christoph Lameter81819f02007-05-06 14:49:36 -07004495 kobject_uevent(&s->kobj, KOBJ_ADD);
4496 if (!unmergeable) {
4497 /* Setup first alias */
4498 sysfs_slab_alias(s, s->name);
4499 kfree(name);
4500 }
4501 return 0;
4502}
4503
4504static void sysfs_slab_remove(struct kmem_cache *s)
4505{
4506 kobject_uevent(&s->kobj, KOBJ_REMOVE);
4507 kobject_del(&s->kobj);
Christoph Lameter151c6022008-01-07 22:29:05 -08004508 kobject_put(&s->kobj);
Christoph Lameter81819f02007-05-06 14:49:36 -07004509}
4510
4511/*
4512 * Need to buffer aliases during bootup until sysfs becomes
Nick Andrew9f6c708e2008-12-05 14:08:08 +11004513 * available lest we lose that information.
Christoph Lameter81819f02007-05-06 14:49:36 -07004514 */
4515struct saved_alias {
4516 struct kmem_cache *s;
4517 const char *name;
4518 struct saved_alias *next;
4519};
4520
Adrian Bunk5af328a2007-07-17 04:03:27 -07004521static struct saved_alias *alias_list;
Christoph Lameter81819f02007-05-06 14:49:36 -07004522
4523static int sysfs_slab_alias(struct kmem_cache *s, const char *name)
4524{
4525 struct saved_alias *al;
4526
4527 if (slab_state == SYSFS) {
4528 /*
4529 * If we have a leftover link then remove it.
4530 */
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06004531 sysfs_remove_link(&slab_kset->kobj, name);
4532 return sysfs_create_link(&slab_kset->kobj, &s->kobj, name);
Christoph Lameter81819f02007-05-06 14:49:36 -07004533 }
4534
4535 al = kmalloc(sizeof(struct saved_alias), GFP_KERNEL);
4536 if (!al)
4537 return -ENOMEM;
4538
4539 al->s = s;
4540 al->name = name;
4541 al->next = alias_list;
4542 alias_list = al;
4543 return 0;
4544}
4545
4546static int __init slab_sysfs_init(void)
4547{
Christoph Lameter5b95a4a2007-07-17 04:03:19 -07004548 struct kmem_cache *s;
Christoph Lameter81819f02007-05-06 14:49:36 -07004549 int err;
4550
Greg Kroah-Hartman0ff21e42007-11-06 10:36:58 -08004551 slab_kset = kset_create_and_add("slab", &slab_uevent_ops, kernel_kobj);
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06004552 if (!slab_kset) {
Christoph Lameter81819f02007-05-06 14:49:36 -07004553 printk(KERN_ERR "Cannot register slab subsystem.\n");
4554 return -ENOSYS;
4555 }
4556
Christoph Lameter26a7bd02007-05-09 02:32:39 -07004557 slab_state = SYSFS;
4558
Christoph Lameter5b95a4a2007-07-17 04:03:19 -07004559 list_for_each_entry(s, &slab_caches, list) {
Christoph Lameter26a7bd02007-05-09 02:32:39 -07004560 err = sysfs_slab_add(s);
Christoph Lameter5d540fb2007-08-30 23:56:26 -07004561 if (err)
4562 printk(KERN_ERR "SLUB: Unable to add boot slab %s"
4563 " to sysfs\n", s->name);
Christoph Lameter26a7bd02007-05-09 02:32:39 -07004564 }
Christoph Lameter81819f02007-05-06 14:49:36 -07004565
4566 while (alias_list) {
4567 struct saved_alias *al = alias_list;
4568
4569 alias_list = alias_list->next;
4570 err = sysfs_slab_alias(al->s, al->name);
Christoph Lameter5d540fb2007-08-30 23:56:26 -07004571 if (err)
4572 printk(KERN_ERR "SLUB: Unable to add boot slab alias"
4573 " %s to sysfs\n", s->name);
Christoph Lameter81819f02007-05-06 14:49:36 -07004574 kfree(al);
4575 }
4576
4577 resiliency_test();
4578 return 0;
4579}
4580
4581__initcall(slab_sysfs_init);
Christoph Lameter81819f02007-05-06 14:49:36 -07004582#endif
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004583
4584/*
4585 * The /proc/slabinfo ABI
4586 */
Linus Torvalds158a9622008-01-02 13:04:48 -08004587#ifdef CONFIG_SLABINFO
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004588static void print_slabinfo_header(struct seq_file *m)
4589{
4590 seq_puts(m, "slabinfo - version: 2.1\n");
4591 seq_puts(m, "# name <active_objs> <num_objs> <objsize> "
4592 "<objperslab> <pagesperslab>");
4593 seq_puts(m, " : tunables <limit> <batchcount> <sharedfactor>");
4594 seq_puts(m, " : slabdata <active_slabs> <num_slabs> <sharedavail>");
4595 seq_putc(m, '\n');
4596}
4597
4598static void *s_start(struct seq_file *m, loff_t *pos)
4599{
4600 loff_t n = *pos;
4601
4602 down_read(&slub_lock);
4603 if (!n)
4604 print_slabinfo_header(m);
4605
4606 return seq_list_start(&slab_caches, *pos);
4607}
4608
4609static void *s_next(struct seq_file *m, void *p, loff_t *pos)
4610{
4611 return seq_list_next(p, &slab_caches, pos);
4612}
4613
4614static void s_stop(struct seq_file *m, void *p)
4615{
4616 up_read(&slub_lock);
4617}
4618
4619static int s_show(struct seq_file *m, void *p)
4620{
4621 unsigned long nr_partials = 0;
4622 unsigned long nr_slabs = 0;
4623 unsigned long nr_inuse = 0;
Christoph Lameter205ab992008-04-14 19:11:40 +03004624 unsigned long nr_objs = 0;
4625 unsigned long nr_free = 0;
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004626 struct kmem_cache *s;
4627 int node;
4628
4629 s = list_entry(p, struct kmem_cache, list);
4630
4631 for_each_online_node(node) {
4632 struct kmem_cache_node *n = get_node(s, node);
4633
4634 if (!n)
4635 continue;
4636
4637 nr_partials += n->nr_partial;
4638 nr_slabs += atomic_long_read(&n->nr_slabs);
Christoph Lameter205ab992008-04-14 19:11:40 +03004639 nr_objs += atomic_long_read(&n->total_objects);
4640 nr_free += count_partial(n, count_free);
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004641 }
4642
Christoph Lameter205ab992008-04-14 19:11:40 +03004643 nr_inuse = nr_objs - nr_free;
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004644
4645 seq_printf(m, "%-17s %6lu %6lu %6u %4u %4d", s->name, nr_inuse,
Christoph Lameter834f3d12008-04-14 19:11:31 +03004646 nr_objs, s->size, oo_objects(s->oo),
4647 (1 << oo_order(s->oo)));
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004648 seq_printf(m, " : tunables %4u %4u %4u", 0, 0, 0);
4649 seq_printf(m, " : slabdata %6lu %6lu %6lu", nr_slabs, nr_slabs,
4650 0UL);
4651 seq_putc(m, '\n');
4652 return 0;
4653}
4654
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04004655static const struct seq_operations slabinfo_op = {
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004656 .start = s_start,
4657 .next = s_next,
4658 .stop = s_stop,
4659 .show = s_show,
4660};
4661
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04004662static int slabinfo_open(struct inode *inode, struct file *file)
4663{
4664 return seq_open(file, &slabinfo_op);
4665}
4666
4667static const struct file_operations proc_slabinfo_operations = {
4668 .open = slabinfo_open,
4669 .read = seq_read,
4670 .llseek = seq_lseek,
4671 .release = seq_release,
4672};
4673
4674static int __init slab_proc_init(void)
4675{
WANG Congcf5d1132009-08-18 19:11:40 +03004676 proc_create("slabinfo", S_IRUGO, NULL, &proc_slabinfo_operations);
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04004677 return 0;
4678}
4679module_init(slab_proc_init);
Linus Torvalds158a9622008-01-02 13:04:48 -08004680#endif /* CONFIG_SLABINFO */