blob: d6c9ecf629d5e99d82675ced497e7990307c4f6e [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>
Zhaolei02af61b2009-04-10 14:26:18 +080020#include <linux/kmemtrace.h>
Vegard Nossum5a896d92008-04-04 00:54:48 +020021#include <linux/kmemcheck.h>
Christoph Lameter81819f02007-05-06 14:49:36 -070022#include <linux/cpu.h>
23#include <linux/cpuset.h>
24#include <linux/mempolicy.h>
25#include <linux/ctype.h>
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -070026#include <linux/debugobjects.h>
Christoph Lameter81819f02007-05-06 14:49:36 -070027#include <linux/kallsyms.h>
Yasunori Gotob9049e22007-10-21 16:41:37 -070028#include <linux/memory.h>
Roman Zippelf8bd2252008-05-01 04:34:31 -070029#include <linux/math64.h>
Akinobu Mita773ff602008-12-23 19:37:01 +090030#include <linux/fault-inject.h>
Christoph Lameter81819f02007-05-06 14:49:36 -070031
32/*
33 * Lock order:
34 * 1. slab_lock(page)
35 * 2. slab->list_lock
36 *
37 * The slab_lock protects operations on the object of a particular
38 * slab and its metadata in the page struct. If the slab lock
39 * has been taken then no allocations nor frees can be performed
40 * on the objects in the slab nor can the slab be added or removed
41 * from the partial or full lists since this would mean modifying
42 * the page_struct of the slab.
43 *
44 * The list_lock protects the partial and full list on each node and
45 * the partial slab counter. If taken then no new slabs may be added or
46 * removed from the lists nor make the number of partial slabs be modified.
47 * (Note that the total number of slabs is an atomic value that may be
48 * modified without taking the list lock).
49 *
50 * The list_lock is a centralized lock and thus we avoid taking it as
51 * much as possible. As long as SLUB does not have to handle partial
52 * slabs, operations can continue without any centralized lock. F.e.
53 * allocating a long series of objects that fill up slabs does not require
54 * the list lock.
55 *
56 * The lock order is sometimes inverted when we are trying to get a slab
57 * off a list. We take the list_lock and then look for a page on the list
58 * to use. While we do that objects in the slabs may be freed. We can
59 * only operate on the slab if we have also taken the slab_lock. So we use
60 * a slab_trylock() on the slab. If trylock was successful then no frees
61 * can occur anymore and we can use the slab for allocations etc. If the
62 * slab_trylock() does not succeed then frees are in progress in the slab and
63 * we must stay away from it for a while since we may cause a bouncing
64 * cacheline if we try to acquire the lock. So go onto the next slab.
65 * If all pages are busy then we may allocate a new slab instead of reusing
66 * a partial slab. A new slab has noone operating on it and thus there is
67 * no danger of cacheline contention.
68 *
69 * Interrupts are disabled during allocation and deallocation in order to
70 * make the slab allocator safe to use in the context of an irq. In addition
71 * interrupts are disabled to ensure that the processor does not change
72 * while handling per_cpu slabs, due to kernel preemption.
73 *
74 * SLUB assigns one slab for allocation to each processor.
75 * Allocations only occur from these slabs called cpu slabs.
76 *
Christoph Lameter672bba32007-05-09 02:32:39 -070077 * Slabs with free elements are kept on a partial list and during regular
78 * operations no list for full slabs is used. If an object in a full slab is
Christoph Lameter81819f02007-05-06 14:49:36 -070079 * freed then the slab will show up again on the partial lists.
Christoph Lameter672bba32007-05-09 02:32:39 -070080 * We track full slabs for debugging purposes though because otherwise we
81 * cannot scan all objects.
Christoph Lameter81819f02007-05-06 14:49:36 -070082 *
83 * Slabs are freed when they become empty. Teardown and setup is
84 * minimal so we rely on the page allocators per cpu caches for
85 * fast frees and allocs.
86 *
87 * Overloading of page flags that are otherwise used for LRU management.
88 *
Christoph Lameter4b6f0752007-05-16 22:10:53 -070089 * PageActive The slab is frozen and exempt from list processing.
90 * This means that the slab is dedicated to a purpose
91 * such as satisfying allocations for a specific
92 * processor. Objects may be freed in the slab while
93 * it is frozen but slab_free will then skip the usual
94 * list operations. It is up to the processor holding
95 * the slab to integrate the slab into the slab lists
96 * when the slab is no longer needed.
97 *
98 * One use of this flag is to mark slabs that are
99 * used for allocations. Then such a slab becomes a cpu
100 * slab. The cpu slab may be equipped with an additional
Christoph Lameterdfb4f092007-10-16 01:26:05 -0700101 * freelist that allows lockless access to
Christoph Lameter894b8782007-05-10 03:15:16 -0700102 * free objects in addition to the regular freelist
103 * that requires the slab lock.
Christoph Lameter81819f02007-05-06 14:49:36 -0700104 *
105 * PageError Slab requires special handling due to debug
106 * options set. This moves slab handling out of
Christoph Lameter894b8782007-05-10 03:15:16 -0700107 * the fast path and disables lockless freelists.
Christoph Lameter81819f02007-05-06 14:49:36 -0700108 */
109
Christoph Lameter5577bd82007-05-16 22:10:56 -0700110#ifdef CONFIG_SLUB_DEBUG
Andy Whitcroft8a380822008-07-23 21:27:18 -0700111#define SLABDEBUG 1
Christoph Lameter5577bd82007-05-16 22:10:56 -0700112#else
113#define SLABDEBUG 0
114#endif
115
Christoph Lameter81819f02007-05-06 14:49:36 -0700116/*
117 * Issues still to be resolved:
118 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700119 * - Support PAGE_ALLOC_DEBUG. Should be easy to do.
120 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700121 * - Variable sizing of the per node arrays
122 */
123
124/* Enable to test recovery from slab corruption on boot */
125#undef SLUB_RESILIENCY_TEST
126
Christoph Lameter81819f02007-05-06 14:49:36 -0700127/*
Christoph Lameter2086d262007-05-06 14:49:46 -0700128 * Mininum number of partial slabs. These will be left on the partial
129 * lists even if they are empty. kmem_cache_shrink may reclaim them.
130 */
Christoph Lameter76be8952007-12-21 14:37:37 -0800131#define MIN_PARTIAL 5
Christoph Lametere95eed52007-05-06 14:49:44 -0700132
Christoph Lameter2086d262007-05-06 14:49:46 -0700133/*
134 * Maximum number of desirable partial slabs.
135 * The existence of more partial slabs makes kmem_cache_shrink
136 * sort the partial list by the number of objects in the.
137 */
138#define MAX_PARTIAL 10
139
Christoph Lameter81819f02007-05-06 14:49:36 -0700140#define DEBUG_DEFAULT_FLAGS (SLAB_DEBUG_FREE | SLAB_RED_ZONE | \
141 SLAB_POISON | SLAB_STORE_USER)
Christoph Lameter672bba32007-05-09 02:32:39 -0700142
Christoph Lameter81819f02007-05-06 14:49:36 -0700143/*
David Rientjes3de47212009-07-27 18:30:35 -0700144 * Debugging flags that require metadata to be stored in the slab. These get
145 * disabled when slub_debug=O is used and a cache's min order increases with
146 * metadata.
David Rientjesfa5ec8a2009-07-07 00:14:14 -0700147 */
David Rientjes3de47212009-07-27 18:30:35 -0700148#define DEBUG_METADATA_FLAGS (SLAB_RED_ZONE | SLAB_POISON | SLAB_STORE_USER)
David Rientjesfa5ec8a2009-07-07 00:14:14 -0700149
150/*
Christoph Lameter81819f02007-05-06 14:49:36 -0700151 * Set of flags that will prevent slab merging
152 */
153#define SLUB_NEVER_MERGE (SLAB_RED_ZONE | SLAB_POISON | SLAB_STORE_USER | \
Catalin Marinas06f22f12009-06-11 13:23:18 +0100154 SLAB_TRACE | SLAB_DESTROY_BY_RCU | SLAB_NOLEAKTRACE)
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
159#ifndef ARCH_KMALLOC_MINALIGN
Christoph Lameter47bfdc02007-05-06 14:49:37 -0700160#define ARCH_KMALLOC_MINALIGN __alignof__(unsigned long long)
Christoph Lameter81819f02007-05-06 14:49:36 -0700161#endif
162
163#ifndef ARCH_SLAB_MINALIGN
Christoph Lameter47bfdc02007-05-06 14:49:37 -0700164#define ARCH_SLAB_MINALIGN __alignof__(unsigned long long)
Christoph Lameter81819f02007-05-06 14:49:36 -0700165#endif
166
Cyrill Gorcunov210b5c02008-10-22 23:00:38 +0400167#define OO_SHIFT 16
168#define OO_MASK ((1 << OO_SHIFT) - 1)
169#define MAX_OBJS_PER_PAGE 65535 /* since page.objects is u16 */
170
Christoph Lameter81819f02007-05-06 14:49:36 -0700171/* Internal SLUB flags */
Christoph Lameter1ceef402007-08-07 15:11:48 -0700172#define __OBJECT_POISON 0x80000000 /* Poison object */
173#define __SYSFS_ADD_DEFERRED 0x40000000 /* Not yet visible via sysfs */
Christoph Lameter81819f02007-05-06 14:49:36 -0700174
175static int kmem_size = sizeof(struct kmem_cache);
176
177#ifdef CONFIG_SMP
178static struct notifier_block slab_notifier;
179#endif
180
181static enum {
182 DOWN, /* No slab functionality available */
183 PARTIAL, /* kmem_cache_open() works but kmalloc does not */
Christoph Lameter672bba32007-05-09 02:32:39 -0700184 UP, /* Everything works but does not show up in sysfs */
Christoph Lameter81819f02007-05-06 14:49:36 -0700185 SYSFS /* Sysfs up */
186} slab_state = DOWN;
187
188/* A list of all slab caches on the system */
189static DECLARE_RWSEM(slub_lock);
Adrian Bunk5af328a2007-07-17 04:03:27 -0700190static LIST_HEAD(slab_caches);
Christoph Lameter81819f02007-05-06 14:49:36 -0700191
Christoph Lameter02cbc872007-05-09 02:32:43 -0700192/*
193 * Tracking user of a slab.
194 */
195struct track {
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +0300196 unsigned long addr; /* Called from address */
Christoph Lameter02cbc872007-05-09 02:32:43 -0700197 int cpu; /* Was running on cpu */
198 int pid; /* Pid context */
199 unsigned long when; /* When did the operation occur */
200};
201
202enum track_item { TRACK_ALLOC, TRACK_FREE };
203
Christoph Lameterf6acb632008-04-29 16:16:06 -0700204#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter81819f02007-05-06 14:49:36 -0700205static int sysfs_slab_add(struct kmem_cache *);
206static int sysfs_slab_alias(struct kmem_cache *, const char *);
207static void sysfs_slab_remove(struct kmem_cache *);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -0800208
Christoph Lameter81819f02007-05-06 14:49:36 -0700209#else
Christoph Lameter0c710012007-07-17 04:03:24 -0700210static inline int sysfs_slab_add(struct kmem_cache *s) { return 0; }
211static inline int sysfs_slab_alias(struct kmem_cache *s, const char *p)
212 { return 0; }
Christoph Lameter151c6022008-01-07 22:29:05 -0800213static inline void sysfs_slab_remove(struct kmem_cache *s)
214{
215 kfree(s);
216}
Christoph Lameter8ff12cf2008-02-07 17:47:41 -0800217
Christoph Lameter81819f02007-05-06 14:49:36 -0700218#endif
219
Christoph Lameter8ff12cf2008-02-07 17:47:41 -0800220static inline void stat(struct kmem_cache_cpu *c, enum stat_item si)
221{
222#ifdef CONFIG_SLUB_STATS
223 c->stat[si]++;
224#endif
225}
226
Christoph Lameter81819f02007-05-06 14:49:36 -0700227/********************************************************************
228 * Core slab cache functions
229 *******************************************************************/
230
231int slab_is_available(void)
232{
233 return slab_state >= UP;
234}
235
236static inline struct kmem_cache_node *get_node(struct kmem_cache *s, int node)
237{
238#ifdef CONFIG_NUMA
239 return s->node[node];
240#else
241 return &s->local_node;
242#endif
243}
244
Christoph Lameter6446faa2008-02-15 23:45:26 -0800245/* Verify that a pointer has an address that is valid within a slab page */
Christoph Lameter02cbc872007-05-09 02:32:43 -0700246static inline int check_valid_pointer(struct kmem_cache *s,
247 struct page *page, const void *object)
248{
249 void *base;
250
Christoph Lametera973e9d2008-03-01 13:40:44 -0800251 if (!object)
Christoph Lameter02cbc872007-05-09 02:32:43 -0700252 return 1;
253
Christoph Lametera973e9d2008-03-01 13:40:44 -0800254 base = page_address(page);
Christoph Lameter39b26462008-04-14 19:11:30 +0300255 if (object < base || object >= base + page->objects * s->size ||
Christoph Lameter02cbc872007-05-09 02:32:43 -0700256 (object - base) % s->size) {
257 return 0;
258 }
259
260 return 1;
261}
262
Christoph Lameter81819f02007-05-06 14:49:36 -0700263/*
Christoph Lameter7656c722007-05-09 02:32:40 -0700264 * Slow version of get and set free pointer.
265 *
266 * This version requires touching the cache lines of kmem_cache which
267 * we avoid to do in the fast alloc free paths. There we obtain the offset
268 * from the page struct.
269 */
270static inline void *get_freepointer(struct kmem_cache *s, void *object)
271{
272 return *(void **)(object + s->offset);
273}
274
275static inline void set_freepointer(struct kmem_cache *s, void *object, void *fp)
276{
277 *(void **)(object + s->offset) = fp;
278}
279
280/* Loop over all objects in a slab */
Christoph Lameter224a88b2008-04-14 19:11:31 +0300281#define for_each_object(__p, __s, __addr, __objects) \
282 for (__p = (__addr); __p < (__addr) + (__objects) * (__s)->size;\
Christoph Lameter7656c722007-05-09 02:32:40 -0700283 __p += (__s)->size)
284
285/* Scan freelist */
286#define for_each_free_object(__p, __s, __free) \
Christoph Lametera973e9d2008-03-01 13:40:44 -0800287 for (__p = (__free); __p; __p = get_freepointer((__s), __p))
Christoph Lameter7656c722007-05-09 02:32:40 -0700288
289/* Determine object index from a given position */
290static inline int slab_index(void *p, struct kmem_cache *s, void *addr)
291{
292 return (p - addr) / s->size;
293}
294
Christoph Lameter834f3d12008-04-14 19:11:31 +0300295static inline struct kmem_cache_order_objects oo_make(int order,
296 unsigned long size)
297{
298 struct kmem_cache_order_objects x = {
Cyrill Gorcunov210b5c02008-10-22 23:00:38 +0400299 (order << OO_SHIFT) + (PAGE_SIZE << order) / size
Christoph Lameter834f3d12008-04-14 19:11:31 +0300300 };
301
302 return x;
303}
304
305static inline int oo_order(struct kmem_cache_order_objects x)
306{
Cyrill Gorcunov210b5c02008-10-22 23:00:38 +0400307 return x.x >> OO_SHIFT;
Christoph Lameter834f3d12008-04-14 19:11:31 +0300308}
309
310static inline int oo_objects(struct kmem_cache_order_objects x)
311{
Cyrill Gorcunov210b5c02008-10-22 23:00:38 +0400312 return x.x & OO_MASK;
Christoph Lameter834f3d12008-04-14 19:11:31 +0300313}
314
Christoph Lameter41ecc552007-05-09 02:32:44 -0700315#ifdef CONFIG_SLUB_DEBUG
316/*
317 * Debug settings:
318 */
Christoph Lameterf0630ff2007-07-15 23:38:14 -0700319#ifdef CONFIG_SLUB_DEBUG_ON
320static int slub_debug = DEBUG_DEFAULT_FLAGS;
321#else
Christoph Lameter41ecc552007-05-09 02:32:44 -0700322static int slub_debug;
Christoph Lameterf0630ff2007-07-15 23:38:14 -0700323#endif
Christoph Lameter41ecc552007-05-09 02:32:44 -0700324
325static char *slub_debug_slabs;
David Rientjesfa5ec8a2009-07-07 00:14:14 -0700326static int disable_higher_order_debug;
Christoph Lameter41ecc552007-05-09 02:32:44 -0700327
Christoph Lameter7656c722007-05-09 02:32:40 -0700328/*
Christoph Lameter81819f02007-05-06 14:49:36 -0700329 * Object debugging
330 */
331static void print_section(char *text, u8 *addr, unsigned int length)
332{
333 int i, offset;
334 int newline = 1;
335 char ascii[17];
336
337 ascii[16] = 0;
338
339 for (i = 0; i < length; i++) {
340 if (newline) {
Christoph Lameter24922682007-07-17 04:03:18 -0700341 printk(KERN_ERR "%8s 0x%p: ", text, addr + i);
Christoph Lameter81819f02007-05-06 14:49:36 -0700342 newline = 0;
343 }
Pekka Enberg06428782008-01-07 23:20:27 -0800344 printk(KERN_CONT " %02x", addr[i]);
Christoph Lameter81819f02007-05-06 14:49:36 -0700345 offset = i % 16;
346 ascii[offset] = isgraph(addr[i]) ? addr[i] : '.';
347 if (offset == 15) {
Pekka Enberg06428782008-01-07 23:20:27 -0800348 printk(KERN_CONT " %s\n", ascii);
Christoph Lameter81819f02007-05-06 14:49:36 -0700349 newline = 1;
350 }
351 }
352 if (!newline) {
353 i %= 16;
354 while (i < 16) {
Pekka Enberg06428782008-01-07 23:20:27 -0800355 printk(KERN_CONT " ");
Christoph Lameter81819f02007-05-06 14:49:36 -0700356 ascii[i] = ' ';
357 i++;
358 }
Pekka Enberg06428782008-01-07 23:20:27 -0800359 printk(KERN_CONT " %s\n", ascii);
Christoph Lameter81819f02007-05-06 14:49:36 -0700360 }
361}
362
Christoph Lameter81819f02007-05-06 14:49:36 -0700363static struct track *get_track(struct kmem_cache *s, void *object,
364 enum track_item alloc)
365{
366 struct track *p;
367
368 if (s->offset)
369 p = object + s->offset + sizeof(void *);
370 else
371 p = object + s->inuse;
372
373 return p + alloc;
374}
375
376static void set_track(struct kmem_cache *s, void *object,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +0300377 enum track_item alloc, unsigned long addr)
Christoph Lameter81819f02007-05-06 14:49:36 -0700378{
Akinobu Mita1a00df42009-03-07 00:36:21 +0900379 struct track *p = get_track(s, object, alloc);
Christoph Lameter81819f02007-05-06 14:49:36 -0700380
Christoph Lameter81819f02007-05-06 14:49:36 -0700381 if (addr) {
382 p->addr = addr;
383 p->cpu = smp_processor_id();
Alexey Dobriyan88e4ccf2008-06-23 02:58:37 +0400384 p->pid = current->pid;
Christoph Lameter81819f02007-05-06 14:49:36 -0700385 p->when = jiffies;
386 } else
387 memset(p, 0, sizeof(struct track));
388}
389
Christoph Lameter81819f02007-05-06 14:49:36 -0700390static void init_tracking(struct kmem_cache *s, void *object)
391{
Christoph Lameter24922682007-07-17 04:03:18 -0700392 if (!(s->flags & SLAB_STORE_USER))
393 return;
394
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +0300395 set_track(s, object, TRACK_FREE, 0UL);
396 set_track(s, object, TRACK_ALLOC, 0UL);
Christoph Lameter81819f02007-05-06 14:49:36 -0700397}
398
399static void print_track(const char *s, struct track *t)
400{
401 if (!t->addr)
402 return;
403
Linus Torvalds7daf7052008-07-14 12:12:53 -0700404 printk(KERN_ERR "INFO: %s in %pS age=%lu cpu=%u pid=%d\n",
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +0300405 s, (void *)t->addr, jiffies - t->when, t->cpu, t->pid);
Christoph Lameter81819f02007-05-06 14:49:36 -0700406}
407
Christoph Lameter24922682007-07-17 04:03:18 -0700408static void print_tracking(struct kmem_cache *s, void *object)
409{
410 if (!(s->flags & SLAB_STORE_USER))
411 return;
412
413 print_track("Allocated", get_track(s, object, TRACK_ALLOC));
414 print_track("Freed", get_track(s, object, TRACK_FREE));
415}
416
417static void print_page_info(struct page *page)
418{
Christoph Lameter39b26462008-04-14 19:11:30 +0300419 printk(KERN_ERR "INFO: Slab 0x%p objects=%u used=%u fp=0x%p flags=0x%04lx\n",
420 page, page->objects, page->inuse, page->freelist, page->flags);
Christoph Lameter24922682007-07-17 04:03:18 -0700421
422}
423
424static void slab_bug(struct kmem_cache *s, char *fmt, ...)
425{
426 va_list args;
427 char buf[100];
428
429 va_start(args, fmt);
430 vsnprintf(buf, sizeof(buf), fmt, args);
431 va_end(args);
432 printk(KERN_ERR "========================================"
433 "=====================================\n");
434 printk(KERN_ERR "BUG %s: %s\n", s->name, buf);
435 printk(KERN_ERR "----------------------------------------"
436 "-------------------------------------\n\n");
437}
438
439static void slab_fix(struct kmem_cache *s, char *fmt, ...)
440{
441 va_list args;
442 char buf[100];
443
444 va_start(args, fmt);
445 vsnprintf(buf, sizeof(buf), fmt, args);
446 va_end(args);
447 printk(KERN_ERR "FIX %s: %s\n", s->name, buf);
448}
449
450static void print_trailer(struct kmem_cache *s, struct page *page, u8 *p)
Christoph Lameter81819f02007-05-06 14:49:36 -0700451{
452 unsigned int off; /* Offset of last byte */
Christoph Lametera973e9d2008-03-01 13:40:44 -0800453 u8 *addr = page_address(page);
Christoph Lameter24922682007-07-17 04:03:18 -0700454
455 print_tracking(s, p);
456
457 print_page_info(page);
458
459 printk(KERN_ERR "INFO: Object 0x%p @offset=%tu fp=0x%p\n\n",
460 p, p - addr, get_freepointer(s, p));
461
462 if (p > addr + 16)
463 print_section("Bytes b4", p - 16, 16);
464
Pekka Enberg0ebd6522008-07-19 14:17:22 +0300465 print_section("Object", p, min_t(unsigned long, s->objsize, PAGE_SIZE));
Christoph Lameter81819f02007-05-06 14:49:36 -0700466
467 if (s->flags & SLAB_RED_ZONE)
468 print_section("Redzone", p + s->objsize,
469 s->inuse - s->objsize);
470
Christoph Lameter81819f02007-05-06 14:49:36 -0700471 if (s->offset)
472 off = s->offset + sizeof(void *);
473 else
474 off = s->inuse;
475
Christoph Lameter24922682007-07-17 04:03:18 -0700476 if (s->flags & SLAB_STORE_USER)
Christoph Lameter81819f02007-05-06 14:49:36 -0700477 off += 2 * sizeof(struct track);
Christoph Lameter81819f02007-05-06 14:49:36 -0700478
479 if (off != s->size)
480 /* Beginning of the filler is the free pointer */
Christoph Lameter24922682007-07-17 04:03:18 -0700481 print_section("Padding", p + off, s->size - off);
482
483 dump_stack();
Christoph Lameter81819f02007-05-06 14:49:36 -0700484}
485
486static void object_err(struct kmem_cache *s, struct page *page,
487 u8 *object, char *reason)
488{
Christoph Lameter3dc50632008-04-23 12:28:01 -0700489 slab_bug(s, "%s", reason);
Christoph Lameter24922682007-07-17 04:03:18 -0700490 print_trailer(s, page, object);
Christoph Lameter81819f02007-05-06 14:49:36 -0700491}
492
Christoph Lameter24922682007-07-17 04:03:18 -0700493static void slab_err(struct kmem_cache *s, struct page *page, char *fmt, ...)
Christoph Lameter81819f02007-05-06 14:49:36 -0700494{
495 va_list args;
496 char buf[100];
497
Christoph Lameter24922682007-07-17 04:03:18 -0700498 va_start(args, fmt);
499 vsnprintf(buf, sizeof(buf), fmt, args);
Christoph Lameter81819f02007-05-06 14:49:36 -0700500 va_end(args);
Christoph Lameter3dc50632008-04-23 12:28:01 -0700501 slab_bug(s, "%s", buf);
Christoph Lameter24922682007-07-17 04:03:18 -0700502 print_page_info(page);
Christoph Lameter81819f02007-05-06 14:49:36 -0700503 dump_stack();
504}
505
506static void init_object(struct kmem_cache *s, void *object, int active)
507{
508 u8 *p = object;
509
510 if (s->flags & __OBJECT_POISON) {
511 memset(p, POISON_FREE, s->objsize - 1);
Pekka Enberg06428782008-01-07 23:20:27 -0800512 p[s->objsize - 1] = POISON_END;
Christoph Lameter81819f02007-05-06 14:49:36 -0700513 }
514
515 if (s->flags & SLAB_RED_ZONE)
516 memset(p + s->objsize,
517 active ? SLUB_RED_ACTIVE : SLUB_RED_INACTIVE,
518 s->inuse - s->objsize);
519}
520
Christoph Lameter24922682007-07-17 04:03:18 -0700521static u8 *check_bytes(u8 *start, unsigned int value, unsigned int bytes)
Christoph Lameter81819f02007-05-06 14:49:36 -0700522{
523 while (bytes) {
524 if (*start != (u8)value)
Christoph Lameter24922682007-07-17 04:03:18 -0700525 return start;
Christoph Lameter81819f02007-05-06 14:49:36 -0700526 start++;
527 bytes--;
528 }
Christoph Lameter24922682007-07-17 04:03:18 -0700529 return NULL;
530}
531
532static void restore_bytes(struct kmem_cache *s, char *message, u8 data,
533 void *from, void *to)
534{
535 slab_fix(s, "Restoring 0x%p-0x%p=0x%x\n", from, to - 1, data);
536 memset(from, data, to - from);
537}
538
539static int check_bytes_and_report(struct kmem_cache *s, struct page *page,
540 u8 *object, char *what,
Pekka Enberg06428782008-01-07 23:20:27 -0800541 u8 *start, unsigned int value, unsigned int bytes)
Christoph Lameter24922682007-07-17 04:03:18 -0700542{
543 u8 *fault;
544 u8 *end;
545
546 fault = check_bytes(start, value, bytes);
547 if (!fault)
548 return 1;
549
550 end = start + bytes;
551 while (end > fault && end[-1] == value)
552 end--;
553
554 slab_bug(s, "%s overwritten", what);
555 printk(KERN_ERR "INFO: 0x%p-0x%p. First byte 0x%x instead of 0x%x\n",
556 fault, end - 1, fault[0], value);
557 print_trailer(s, page, object);
558
559 restore_bytes(s, what, value, fault, end);
560 return 0;
Christoph Lameter81819f02007-05-06 14:49:36 -0700561}
562
Christoph Lameter81819f02007-05-06 14:49:36 -0700563/*
564 * Object layout:
565 *
566 * object address
567 * Bytes of the object to be managed.
568 * If the freepointer may overlay the object then the free
569 * pointer is the first word of the object.
Christoph Lameter672bba32007-05-09 02:32:39 -0700570 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700571 * Poisoning uses 0x6b (POISON_FREE) and the last byte is
572 * 0xa5 (POISON_END)
573 *
574 * object + s->objsize
575 * Padding to reach word boundary. This is also used for Redzoning.
Christoph Lameter672bba32007-05-09 02:32:39 -0700576 * Padding is extended by another word if Redzoning is enabled and
577 * objsize == inuse.
578 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700579 * We fill with 0xbb (RED_INACTIVE) for inactive objects and with
580 * 0xcc (RED_ACTIVE) for objects in use.
581 *
582 * object + s->inuse
Christoph Lameter672bba32007-05-09 02:32:39 -0700583 * Meta data starts here.
584 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700585 * A. Free pointer (if we cannot overwrite object on free)
586 * B. Tracking data for SLAB_STORE_USER
Christoph Lameter672bba32007-05-09 02:32:39 -0700587 * C. Padding to reach required alignment boundary or at mininum
Christoph Lameter6446faa2008-02-15 23:45:26 -0800588 * one word if debugging is on to be able to detect writes
Christoph Lameter672bba32007-05-09 02:32:39 -0700589 * before the word boundary.
590 *
591 * Padding is done using 0x5a (POISON_INUSE)
Christoph Lameter81819f02007-05-06 14:49:36 -0700592 *
593 * object + s->size
Christoph Lameter672bba32007-05-09 02:32:39 -0700594 * Nothing is used beyond s->size.
Christoph Lameter81819f02007-05-06 14:49:36 -0700595 *
Christoph Lameter672bba32007-05-09 02:32:39 -0700596 * If slabcaches are merged then the objsize and inuse boundaries are mostly
597 * ignored. And therefore no slab options that rely on these boundaries
Christoph Lameter81819f02007-05-06 14:49:36 -0700598 * may be used with merged slabcaches.
599 */
600
Christoph Lameter81819f02007-05-06 14:49:36 -0700601static int check_pad_bytes(struct kmem_cache *s, struct page *page, u8 *p)
602{
603 unsigned long off = s->inuse; /* The end of info */
604
605 if (s->offset)
606 /* Freepointer is placed after the object. */
607 off += sizeof(void *);
608
609 if (s->flags & SLAB_STORE_USER)
610 /* We also have user information there */
611 off += 2 * sizeof(struct track);
612
613 if (s->size == off)
614 return 1;
615
Christoph Lameter24922682007-07-17 04:03:18 -0700616 return check_bytes_and_report(s, page, p, "Object padding",
617 p + off, POISON_INUSE, s->size - off);
Christoph Lameter81819f02007-05-06 14:49:36 -0700618}
619
Christoph Lameter39b26462008-04-14 19:11:30 +0300620/* Check the pad bytes at the end of a slab page */
Christoph Lameter81819f02007-05-06 14:49:36 -0700621static int slab_pad_check(struct kmem_cache *s, struct page *page)
622{
Christoph Lameter24922682007-07-17 04:03:18 -0700623 u8 *start;
624 u8 *fault;
625 u8 *end;
626 int length;
627 int remainder;
Christoph Lameter81819f02007-05-06 14:49:36 -0700628
629 if (!(s->flags & SLAB_POISON))
630 return 1;
631
Christoph Lametera973e9d2008-03-01 13:40:44 -0800632 start = page_address(page);
Christoph Lameter834f3d12008-04-14 19:11:31 +0300633 length = (PAGE_SIZE << compound_order(page));
Christoph Lameter39b26462008-04-14 19:11:30 +0300634 end = start + length;
635 remainder = length % s->size;
Christoph Lameter81819f02007-05-06 14:49:36 -0700636 if (!remainder)
637 return 1;
638
Christoph Lameter39b26462008-04-14 19:11:30 +0300639 fault = check_bytes(end - remainder, POISON_INUSE, remainder);
Christoph Lameter24922682007-07-17 04:03:18 -0700640 if (!fault)
641 return 1;
642 while (end > fault && end[-1] == POISON_INUSE)
643 end--;
644
645 slab_err(s, page, "Padding overwritten. 0x%p-0x%p", fault, end - 1);
Christoph Lameter39b26462008-04-14 19:11:30 +0300646 print_section("Padding", end - remainder, remainder);
Christoph Lameter24922682007-07-17 04:03:18 -0700647
Eric Dumazet8a3d2712009-09-03 16:08:06 +0200648 restore_bytes(s, "slab padding", POISON_INUSE, end - remainder, end);
Christoph Lameter24922682007-07-17 04:03:18 -0700649 return 0;
Christoph Lameter81819f02007-05-06 14:49:36 -0700650}
651
652static int check_object(struct kmem_cache *s, struct page *page,
653 void *object, int active)
654{
655 u8 *p = object;
656 u8 *endobject = object + s->objsize;
657
658 if (s->flags & SLAB_RED_ZONE) {
659 unsigned int red =
660 active ? SLUB_RED_ACTIVE : SLUB_RED_INACTIVE;
661
Christoph Lameter24922682007-07-17 04:03:18 -0700662 if (!check_bytes_and_report(s, page, object, "Redzone",
663 endobject, red, s->inuse - s->objsize))
Christoph Lameter81819f02007-05-06 14:49:36 -0700664 return 0;
Christoph Lameter81819f02007-05-06 14:49:36 -0700665 } else {
Ingo Molnar3adbefe2008-02-05 17:57:39 -0800666 if ((s->flags & SLAB_POISON) && s->objsize < s->inuse) {
667 check_bytes_and_report(s, page, p, "Alignment padding",
668 endobject, POISON_INUSE, s->inuse - s->objsize);
669 }
Christoph Lameter81819f02007-05-06 14:49:36 -0700670 }
671
672 if (s->flags & SLAB_POISON) {
673 if (!active && (s->flags & __OBJECT_POISON) &&
Christoph Lameter24922682007-07-17 04:03:18 -0700674 (!check_bytes_and_report(s, page, p, "Poison", p,
675 POISON_FREE, s->objsize - 1) ||
676 !check_bytes_and_report(s, page, p, "Poison",
Pekka Enberg06428782008-01-07 23:20:27 -0800677 p + s->objsize - 1, POISON_END, 1)))
Christoph Lameter81819f02007-05-06 14:49:36 -0700678 return 0;
Christoph Lameter81819f02007-05-06 14:49:36 -0700679 /*
680 * check_pad_bytes cleans up on its own.
681 */
682 check_pad_bytes(s, page, p);
683 }
684
685 if (!s->offset && active)
686 /*
687 * Object and freepointer overlap. Cannot check
688 * freepointer while object is allocated.
689 */
690 return 1;
691
692 /* Check free pointer validity */
693 if (!check_valid_pointer(s, page, get_freepointer(s, p))) {
694 object_err(s, page, p, "Freepointer corrupt");
695 /*
Nick Andrew9f6c708e2008-12-05 14:08:08 +1100696 * No choice but to zap it and thus lose the remainder
Christoph Lameter81819f02007-05-06 14:49:36 -0700697 * of the free objects in this slab. May cause
Christoph Lameter672bba32007-05-09 02:32:39 -0700698 * another error because the object count is now wrong.
Christoph Lameter81819f02007-05-06 14:49:36 -0700699 */
Christoph Lametera973e9d2008-03-01 13:40:44 -0800700 set_freepointer(s, p, NULL);
Christoph Lameter81819f02007-05-06 14:49:36 -0700701 return 0;
702 }
703 return 1;
704}
705
706static int check_slab(struct kmem_cache *s, struct page *page)
707{
Christoph Lameter39b26462008-04-14 19:11:30 +0300708 int maxobj;
709
Christoph Lameter81819f02007-05-06 14:49:36 -0700710 VM_BUG_ON(!irqs_disabled());
711
712 if (!PageSlab(page)) {
Christoph Lameter24922682007-07-17 04:03:18 -0700713 slab_err(s, page, "Not a valid slab page");
Christoph Lameter81819f02007-05-06 14:49:36 -0700714 return 0;
715 }
Christoph Lameter39b26462008-04-14 19:11:30 +0300716
717 maxobj = (PAGE_SIZE << compound_order(page)) / s->size;
718 if (page->objects > maxobj) {
719 slab_err(s, page, "objects %u > max %u",
720 s->name, page->objects, maxobj);
721 return 0;
722 }
723 if (page->inuse > page->objects) {
Christoph Lameter24922682007-07-17 04:03:18 -0700724 slab_err(s, page, "inuse %u > max %u",
Christoph Lameter39b26462008-04-14 19:11:30 +0300725 s->name, page->inuse, page->objects);
Christoph Lameter81819f02007-05-06 14:49:36 -0700726 return 0;
727 }
728 /* Slab_pad_check fixes things up after itself */
729 slab_pad_check(s, page);
730 return 1;
731}
732
733/*
Christoph Lameter672bba32007-05-09 02:32:39 -0700734 * Determine if a certain object on a page is on the freelist. Must hold the
735 * slab lock to guarantee that the chains are in a consistent state.
Christoph Lameter81819f02007-05-06 14:49:36 -0700736 */
737static int on_freelist(struct kmem_cache *s, struct page *page, void *search)
738{
739 int nr = 0;
740 void *fp = page->freelist;
741 void *object = NULL;
Christoph Lameter224a88b2008-04-14 19:11:31 +0300742 unsigned long max_objects;
Christoph Lameter81819f02007-05-06 14:49:36 -0700743
Christoph Lameter39b26462008-04-14 19:11:30 +0300744 while (fp && nr <= page->objects) {
Christoph Lameter81819f02007-05-06 14:49:36 -0700745 if (fp == search)
746 return 1;
747 if (!check_valid_pointer(s, page, fp)) {
748 if (object) {
749 object_err(s, page, object,
750 "Freechain corrupt");
Christoph Lametera973e9d2008-03-01 13:40:44 -0800751 set_freepointer(s, object, NULL);
Christoph Lameter81819f02007-05-06 14:49:36 -0700752 break;
753 } else {
Christoph Lameter24922682007-07-17 04:03:18 -0700754 slab_err(s, page, "Freepointer corrupt");
Christoph Lametera973e9d2008-03-01 13:40:44 -0800755 page->freelist = NULL;
Christoph Lameter39b26462008-04-14 19:11:30 +0300756 page->inuse = page->objects;
Christoph Lameter24922682007-07-17 04:03:18 -0700757 slab_fix(s, "Freelist cleared");
Christoph Lameter81819f02007-05-06 14:49:36 -0700758 return 0;
759 }
760 break;
761 }
762 object = fp;
763 fp = get_freepointer(s, object);
764 nr++;
765 }
766
Christoph Lameter224a88b2008-04-14 19:11:31 +0300767 max_objects = (PAGE_SIZE << compound_order(page)) / s->size;
Cyrill Gorcunov210b5c02008-10-22 23:00:38 +0400768 if (max_objects > MAX_OBJS_PER_PAGE)
769 max_objects = MAX_OBJS_PER_PAGE;
Christoph Lameter224a88b2008-04-14 19:11:31 +0300770
771 if (page->objects != max_objects) {
772 slab_err(s, page, "Wrong number of objects. Found %d but "
773 "should be %d", page->objects, max_objects);
774 page->objects = max_objects;
775 slab_fix(s, "Number of objects adjusted.");
776 }
Christoph Lameter39b26462008-04-14 19:11:30 +0300777 if (page->inuse != page->objects - nr) {
Christoph Lameter70d71222007-05-06 14:49:47 -0700778 slab_err(s, page, "Wrong object count. Counter is %d but "
Christoph Lameter39b26462008-04-14 19:11:30 +0300779 "counted were %d", page->inuse, page->objects - nr);
780 page->inuse = page->objects - nr;
Christoph Lameter24922682007-07-17 04:03:18 -0700781 slab_fix(s, "Object count adjusted.");
Christoph Lameter81819f02007-05-06 14:49:36 -0700782 }
783 return search == NULL;
784}
785
Christoph Lameter0121c6192008-04-29 16:11:12 -0700786static void trace(struct kmem_cache *s, struct page *page, void *object,
787 int alloc)
Christoph Lameter3ec09742007-05-16 22:11:00 -0700788{
789 if (s->flags & SLAB_TRACE) {
790 printk(KERN_INFO "TRACE %s %s 0x%p inuse=%d fp=0x%p\n",
791 s->name,
792 alloc ? "alloc" : "free",
793 object, page->inuse,
794 page->freelist);
795
796 if (!alloc)
797 print_section("Object", (void *)object, s->objsize);
798
799 dump_stack();
800 }
801}
802
Christoph Lameter643b1132007-05-06 14:49:42 -0700803/*
Christoph Lameter672bba32007-05-09 02:32:39 -0700804 * Tracking of fully allocated slabs for debugging purposes.
Christoph Lameter643b1132007-05-06 14:49:42 -0700805 */
Christoph Lametere95eed52007-05-06 14:49:44 -0700806static void add_full(struct kmem_cache_node *n, struct page *page)
Christoph Lameter643b1132007-05-06 14:49:42 -0700807{
Christoph Lameter643b1132007-05-06 14:49:42 -0700808 spin_lock(&n->list_lock);
809 list_add(&page->lru, &n->full);
810 spin_unlock(&n->list_lock);
811}
812
813static void remove_full(struct kmem_cache *s, struct page *page)
814{
815 struct kmem_cache_node *n;
816
817 if (!(s->flags & SLAB_STORE_USER))
818 return;
819
820 n = get_node(s, page_to_nid(page));
821
822 spin_lock(&n->list_lock);
823 list_del(&page->lru);
824 spin_unlock(&n->list_lock);
825}
826
Christoph Lameter0f389ec2008-04-14 18:53:02 +0300827/* Tracking of the number of slabs for debugging purposes */
828static inline unsigned long slabs_node(struct kmem_cache *s, int node)
829{
830 struct kmem_cache_node *n = get_node(s, node);
831
832 return atomic_long_read(&n->nr_slabs);
833}
834
Alexander Beregalov26c02cf2009-06-11 14:08:48 +0400835static inline unsigned long node_nr_slabs(struct kmem_cache_node *n)
836{
837 return atomic_long_read(&n->nr_slabs);
838}
839
Christoph Lameter205ab992008-04-14 19:11:40 +0300840static inline void inc_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 /*
845 * May be called early in order to allocate a slab for the
846 * kmem_cache_node structure. Solve the chicken-egg
847 * dilemma by deferring the increment of the count during
848 * bootstrap (see early_kmem_cache_node_alloc).
849 */
Christoph Lameter205ab992008-04-14 19:11:40 +0300850 if (!NUMA_BUILD || n) {
Christoph Lameter0f389ec2008-04-14 18:53:02 +0300851 atomic_long_inc(&n->nr_slabs);
Christoph Lameter205ab992008-04-14 19:11:40 +0300852 atomic_long_add(objects, &n->total_objects);
853 }
Christoph Lameter0f389ec2008-04-14 18:53:02 +0300854}
Christoph Lameter205ab992008-04-14 19:11:40 +0300855static inline void dec_slabs_node(struct kmem_cache *s, int node, int objects)
Christoph Lameter0f389ec2008-04-14 18:53:02 +0300856{
857 struct kmem_cache_node *n = get_node(s, node);
858
859 atomic_long_dec(&n->nr_slabs);
Christoph Lameter205ab992008-04-14 19:11:40 +0300860 atomic_long_sub(objects, &n->total_objects);
Christoph Lameter0f389ec2008-04-14 18:53:02 +0300861}
862
863/* Object debug checks for alloc/free paths */
Christoph Lameter3ec09742007-05-16 22:11:00 -0700864static void setup_object_debug(struct kmem_cache *s, struct page *page,
865 void *object)
866{
867 if (!(s->flags & (SLAB_STORE_USER|SLAB_RED_ZONE|__OBJECT_POISON)))
868 return;
869
870 init_object(s, object, 0);
871 init_tracking(s, object);
872}
873
874static int alloc_debug_processing(struct kmem_cache *s, struct page *page,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +0300875 void *object, unsigned long addr)
Christoph Lameter81819f02007-05-06 14:49:36 -0700876{
877 if (!check_slab(s, page))
878 goto bad;
879
Christoph Lameterd692ef62008-02-15 23:45:24 -0800880 if (!on_freelist(s, page, object)) {
Christoph Lameter24922682007-07-17 04:03:18 -0700881 object_err(s, page, object, "Object already allocated");
Christoph Lameter70d71222007-05-06 14:49:47 -0700882 goto bad;
Christoph Lameter81819f02007-05-06 14:49:36 -0700883 }
884
885 if (!check_valid_pointer(s, page, object)) {
886 object_err(s, page, object, "Freelist Pointer check fails");
Christoph Lameter70d71222007-05-06 14:49:47 -0700887 goto bad;
Christoph Lameter81819f02007-05-06 14:49:36 -0700888 }
889
Christoph Lameterd692ef62008-02-15 23:45:24 -0800890 if (!check_object(s, page, object, 0))
Christoph Lameter81819f02007-05-06 14:49:36 -0700891 goto bad;
Christoph Lameter81819f02007-05-06 14:49:36 -0700892
Christoph Lameter3ec09742007-05-16 22:11:00 -0700893 /* Success perform special debug activities for allocs */
894 if (s->flags & SLAB_STORE_USER)
895 set_track(s, object, TRACK_ALLOC, addr);
896 trace(s, page, object, 1);
897 init_object(s, object, 1);
Christoph Lameter81819f02007-05-06 14:49:36 -0700898 return 1;
Christoph Lameter3ec09742007-05-16 22:11:00 -0700899
Christoph Lameter81819f02007-05-06 14:49:36 -0700900bad:
901 if (PageSlab(page)) {
902 /*
903 * If this is a slab page then lets do the best we can
904 * to avoid issues in the future. Marking all objects
Christoph Lameter672bba32007-05-09 02:32:39 -0700905 * as used avoids touching the remaining objects.
Christoph Lameter81819f02007-05-06 14:49:36 -0700906 */
Christoph Lameter24922682007-07-17 04:03:18 -0700907 slab_fix(s, "Marking all objects used");
Christoph Lameter39b26462008-04-14 19:11:30 +0300908 page->inuse = page->objects;
Christoph Lametera973e9d2008-03-01 13:40:44 -0800909 page->freelist = NULL;
Christoph Lameter81819f02007-05-06 14:49:36 -0700910 }
911 return 0;
912}
913
Christoph Lameter3ec09742007-05-16 22:11:00 -0700914static int free_debug_processing(struct kmem_cache *s, struct page *page,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +0300915 void *object, unsigned long addr)
Christoph Lameter81819f02007-05-06 14:49:36 -0700916{
917 if (!check_slab(s, page))
918 goto fail;
919
920 if (!check_valid_pointer(s, page, object)) {
Christoph Lameter70d71222007-05-06 14:49:47 -0700921 slab_err(s, page, "Invalid object pointer 0x%p", object);
Christoph Lameter81819f02007-05-06 14:49:36 -0700922 goto fail;
923 }
924
925 if (on_freelist(s, page, object)) {
Christoph Lameter24922682007-07-17 04:03:18 -0700926 object_err(s, page, object, "Object already free");
Christoph Lameter81819f02007-05-06 14:49:36 -0700927 goto fail;
928 }
929
930 if (!check_object(s, page, object, 1))
931 return 0;
932
933 if (unlikely(s != page->slab)) {
Ingo Molnar3adbefe2008-02-05 17:57:39 -0800934 if (!PageSlab(page)) {
Christoph Lameter70d71222007-05-06 14:49:47 -0700935 slab_err(s, page, "Attempt to free object(0x%p) "
936 "outside of slab", object);
Ingo Molnar3adbefe2008-02-05 17:57:39 -0800937 } else if (!page->slab) {
Christoph Lameter81819f02007-05-06 14:49:36 -0700938 printk(KERN_ERR
Christoph Lameter70d71222007-05-06 14:49:47 -0700939 "SLUB <none>: no slab for object 0x%p.\n",
Christoph Lameter81819f02007-05-06 14:49:36 -0700940 object);
Christoph Lameter70d71222007-05-06 14:49:47 -0700941 dump_stack();
Pekka Enberg06428782008-01-07 23:20:27 -0800942 } else
Christoph Lameter24922682007-07-17 04:03:18 -0700943 object_err(s, page, object,
944 "page slab pointer corrupt.");
Christoph Lameter81819f02007-05-06 14:49:36 -0700945 goto fail;
946 }
Christoph Lameter3ec09742007-05-16 22:11:00 -0700947
948 /* Special debug activities for freeing objects */
Andy Whitcroft8a380822008-07-23 21:27:18 -0700949 if (!PageSlubFrozen(page) && !page->freelist)
Christoph Lameter3ec09742007-05-16 22:11:00 -0700950 remove_full(s, page);
951 if (s->flags & SLAB_STORE_USER)
952 set_track(s, object, TRACK_FREE, addr);
953 trace(s, page, object, 0);
954 init_object(s, object, 0);
Christoph Lameter81819f02007-05-06 14:49:36 -0700955 return 1;
Christoph Lameter3ec09742007-05-16 22:11:00 -0700956
Christoph Lameter81819f02007-05-06 14:49:36 -0700957fail:
Christoph Lameter24922682007-07-17 04:03:18 -0700958 slab_fix(s, "Object at 0x%p not freed", object);
Christoph Lameter81819f02007-05-06 14:49:36 -0700959 return 0;
960}
961
Christoph Lameter41ecc552007-05-09 02:32:44 -0700962static int __init setup_slub_debug(char *str)
963{
Christoph Lameterf0630ff2007-07-15 23:38:14 -0700964 slub_debug = DEBUG_DEFAULT_FLAGS;
965 if (*str++ != '=' || !*str)
966 /*
967 * No options specified. Switch on full debugging.
968 */
969 goto out;
Christoph Lameter41ecc552007-05-09 02:32:44 -0700970
971 if (*str == ',')
Christoph Lameterf0630ff2007-07-15 23:38:14 -0700972 /*
973 * No options but restriction on slabs. This means full
974 * debugging for slabs matching a pattern.
975 */
976 goto check_slabs;
977
David Rientjesfa5ec8a2009-07-07 00:14:14 -0700978 if (tolower(*str) == 'o') {
979 /*
980 * Avoid enabling debugging on caches if its minimum order
981 * would increase as a result.
982 */
983 disable_higher_order_debug = 1;
984 goto out;
985 }
986
Christoph Lameterf0630ff2007-07-15 23:38:14 -0700987 slub_debug = 0;
988 if (*str == '-')
989 /*
990 * Switch off all debugging measures.
991 */
992 goto out;
993
994 /*
995 * Determine which debug features should be switched on
996 */
Pekka Enberg06428782008-01-07 23:20:27 -0800997 for (; *str && *str != ','; str++) {
Christoph Lameterf0630ff2007-07-15 23:38:14 -0700998 switch (tolower(*str)) {
999 case 'f':
1000 slub_debug |= SLAB_DEBUG_FREE;
1001 break;
1002 case 'z':
1003 slub_debug |= SLAB_RED_ZONE;
1004 break;
1005 case 'p':
1006 slub_debug |= SLAB_POISON;
1007 break;
1008 case 'u':
1009 slub_debug |= SLAB_STORE_USER;
1010 break;
1011 case 't':
1012 slub_debug |= SLAB_TRACE;
1013 break;
1014 default:
1015 printk(KERN_ERR "slub_debug option '%c' "
Pekka Enberg06428782008-01-07 23:20:27 -08001016 "unknown. skipped\n", *str);
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001017 }
1018 }
1019
1020check_slabs:
1021 if (*str == ',')
Christoph Lameter41ecc552007-05-09 02:32:44 -07001022 slub_debug_slabs = str + 1;
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001023out:
Christoph Lameter41ecc552007-05-09 02:32:44 -07001024 return 1;
1025}
1026
1027__setup("slub_debug", setup_slub_debug);
1028
Christoph Lameterba0268a2007-09-11 15:24:11 -07001029static unsigned long kmem_cache_flags(unsigned long objsize,
1030 unsigned long flags, const char *name,
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07001031 void (*ctor)(void *))
Christoph Lameter41ecc552007-05-09 02:32:44 -07001032{
1033 /*
Christoph Lametere1533622008-02-15 23:45:24 -08001034 * Enable debugging if selected on the kernel commandline.
Christoph Lameter41ecc552007-05-09 02:32:44 -07001035 */
Christoph Lametere1533622008-02-15 23:45:24 -08001036 if (slub_debug && (!slub_debug_slabs ||
David Rientjes3de47212009-07-27 18:30:35 -07001037 !strncmp(slub_debug_slabs, name, strlen(slub_debug_slabs))))
1038 flags |= slub_debug;
Christoph Lameterba0268a2007-09-11 15:24:11 -07001039
1040 return flags;
Christoph Lameter41ecc552007-05-09 02:32:44 -07001041}
1042#else
Christoph Lameter3ec09742007-05-16 22:11:00 -07001043static inline void setup_object_debug(struct kmem_cache *s,
1044 struct page *page, void *object) {}
Christoph Lameter41ecc552007-05-09 02:32:44 -07001045
Christoph Lameter3ec09742007-05-16 22:11:00 -07001046static inline int alloc_debug_processing(struct kmem_cache *s,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03001047 struct page *page, void *object, unsigned long addr) { return 0; }
Christoph Lameter41ecc552007-05-09 02:32:44 -07001048
Christoph Lameter3ec09742007-05-16 22:11:00 -07001049static inline int free_debug_processing(struct kmem_cache *s,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03001050 struct page *page, void *object, unsigned long addr) { return 0; }
Christoph Lameter41ecc552007-05-09 02:32:44 -07001051
Christoph Lameter41ecc552007-05-09 02:32:44 -07001052static inline int slab_pad_check(struct kmem_cache *s, struct page *page)
1053 { return 1; }
1054static inline int check_object(struct kmem_cache *s, struct page *page,
1055 void *object, int active) { return 1; }
Christoph Lameter3ec09742007-05-16 22:11:00 -07001056static inline void add_full(struct kmem_cache_node *n, struct page *page) {}
Christoph Lameterba0268a2007-09-11 15:24:11 -07001057static inline unsigned long kmem_cache_flags(unsigned long objsize,
1058 unsigned long flags, const char *name,
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07001059 void (*ctor)(void *))
Christoph Lameterba0268a2007-09-11 15:24:11 -07001060{
1061 return flags;
1062}
Christoph Lameter41ecc552007-05-09 02:32:44 -07001063#define slub_debug 0
Christoph Lameter0f389ec2008-04-14 18:53:02 +03001064
Ingo Molnarfdaa45e2009-09-15 11:00:26 +02001065#define disable_higher_order_debug 0
1066
Christoph Lameter0f389ec2008-04-14 18:53:02 +03001067static inline unsigned long slabs_node(struct kmem_cache *s, int node)
1068 { return 0; }
Alexander Beregalov26c02cf2009-06-11 14:08:48 +04001069static inline unsigned long node_nr_slabs(struct kmem_cache_node *n)
1070 { return 0; }
Christoph Lameter205ab992008-04-14 19:11:40 +03001071static inline void inc_slabs_node(struct kmem_cache *s, int node,
1072 int objects) {}
1073static inline void dec_slabs_node(struct kmem_cache *s, int node,
1074 int objects) {}
Christoph Lameter41ecc552007-05-09 02:32:44 -07001075#endif
Christoph Lameter205ab992008-04-14 19:11:40 +03001076
Christoph Lameter81819f02007-05-06 14:49:36 -07001077/*
1078 * Slab allocation and freeing
1079 */
Christoph Lameter65c33762008-04-14 19:11:40 +03001080static inline struct page *alloc_slab_page(gfp_t flags, int node,
1081 struct kmem_cache_order_objects oo)
1082{
1083 int order = oo_order(oo);
1084
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001085 flags |= __GFP_NOTRACK;
1086
Christoph Lameter65c33762008-04-14 19:11:40 +03001087 if (node == -1)
1088 return alloc_pages(flags, order);
1089 else
1090 return alloc_pages_node(node, flags, order);
1091}
1092
Christoph Lameter81819f02007-05-06 14:49:36 -07001093static struct page *allocate_slab(struct kmem_cache *s, gfp_t flags, int node)
1094{
Pekka Enberg06428782008-01-07 23:20:27 -08001095 struct page *page;
Christoph Lameter834f3d12008-04-14 19:11:31 +03001096 struct kmem_cache_order_objects oo = s->oo;
Pekka Enbergba522702009-06-24 21:59:51 +03001097 gfp_t alloc_gfp;
Christoph Lameter81819f02007-05-06 14:49:36 -07001098
Christoph Lameterb7a49f02008-02-14 14:21:32 -08001099 flags |= s->allocflags;
Mel Gormane12ba742007-10-16 01:25:52 -07001100
Pekka Enbergba522702009-06-24 21:59:51 +03001101 /*
1102 * Let the initial higher-order allocation fail under memory pressure
1103 * so we fall-back to the minimum order allocation.
1104 */
1105 alloc_gfp = (flags | __GFP_NOWARN | __GFP_NORETRY) & ~__GFP_NOFAIL;
1106
1107 page = alloc_slab_page(alloc_gfp, node, oo);
Christoph Lameter65c33762008-04-14 19:11:40 +03001108 if (unlikely(!page)) {
1109 oo = s->min;
1110 /*
1111 * Allocation may have failed due to fragmentation.
1112 * Try a lower order alloc if possible
1113 */
1114 page = alloc_slab_page(flags, node, oo);
1115 if (!page)
1116 return NULL;
Christoph Lameter81819f02007-05-06 14:49:36 -07001117
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06001118 stat(this_cpu_ptr(s->cpu_slab), ORDER_FALLBACK);
Christoph Lameter65c33762008-04-14 19:11:40 +03001119 }
Vegard Nossum5a896d92008-04-04 00:54:48 +02001120
1121 if (kmemcheck_enabled
Amerigo Wang5086c382009-08-19 21:44:13 +03001122 && !(s->flags & (SLAB_NOTRACK | DEBUG_DEFAULT_FLAGS))) {
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001123 int pages = 1 << oo_order(oo);
1124
1125 kmemcheck_alloc_shadow(page, oo_order(oo), flags, node);
1126
1127 /*
1128 * Objects from caches that have a constructor don't get
1129 * cleared when they're allocated, so we need to do it here.
1130 */
1131 if (s->ctor)
1132 kmemcheck_mark_uninitialized_pages(page, pages);
1133 else
1134 kmemcheck_mark_unallocated_pages(page, pages);
Vegard Nossum5a896d92008-04-04 00:54:48 +02001135 }
1136
Christoph Lameter834f3d12008-04-14 19:11:31 +03001137 page->objects = oo_objects(oo);
Christoph Lameter81819f02007-05-06 14:49:36 -07001138 mod_zone_page_state(page_zone(page),
1139 (s->flags & SLAB_RECLAIM_ACCOUNT) ?
1140 NR_SLAB_RECLAIMABLE : NR_SLAB_UNRECLAIMABLE,
Christoph Lameter65c33762008-04-14 19:11:40 +03001141 1 << oo_order(oo));
Christoph Lameter81819f02007-05-06 14:49:36 -07001142
1143 return page;
1144}
1145
1146static void setup_object(struct kmem_cache *s, struct page *page,
1147 void *object)
1148{
Christoph Lameter3ec09742007-05-16 22:11:00 -07001149 setup_object_debug(s, page, object);
Christoph Lameter4f104932007-05-06 14:50:17 -07001150 if (unlikely(s->ctor))
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07001151 s->ctor(object);
Christoph Lameter81819f02007-05-06 14:49:36 -07001152}
1153
1154static struct page *new_slab(struct kmem_cache *s, gfp_t flags, int node)
1155{
1156 struct page *page;
Christoph Lameter81819f02007-05-06 14:49:36 -07001157 void *start;
Christoph Lameter81819f02007-05-06 14:49:36 -07001158 void *last;
1159 void *p;
1160
Christoph Lameter6cb06222007-10-16 01:25:41 -07001161 BUG_ON(flags & GFP_SLAB_BUG_MASK);
Christoph Lameter81819f02007-05-06 14:49:36 -07001162
Christoph Lameter6cb06222007-10-16 01:25:41 -07001163 page = allocate_slab(s,
1164 flags & (GFP_RECLAIM_MASK | GFP_CONSTRAINT_MASK), node);
Christoph Lameter81819f02007-05-06 14:49:36 -07001165 if (!page)
1166 goto out;
1167
Christoph Lameter205ab992008-04-14 19:11:40 +03001168 inc_slabs_node(s, page_to_nid(page), page->objects);
Christoph Lameter81819f02007-05-06 14:49:36 -07001169 page->slab = s;
1170 page->flags |= 1 << PG_slab;
1171 if (s->flags & (SLAB_DEBUG_FREE | SLAB_RED_ZONE | SLAB_POISON |
1172 SLAB_STORE_USER | SLAB_TRACE))
Andy Whitcroft8a380822008-07-23 21:27:18 -07001173 __SetPageSlubDebug(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001174
1175 start = page_address(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001176
1177 if (unlikely(s->flags & SLAB_POISON))
Christoph Lameter834f3d12008-04-14 19:11:31 +03001178 memset(start, POISON_INUSE, PAGE_SIZE << compound_order(page));
Christoph Lameter81819f02007-05-06 14:49:36 -07001179
1180 last = start;
Christoph Lameter224a88b2008-04-14 19:11:31 +03001181 for_each_object(p, s, start, page->objects) {
Christoph Lameter81819f02007-05-06 14:49:36 -07001182 setup_object(s, page, last);
1183 set_freepointer(s, last, p);
1184 last = p;
1185 }
1186 setup_object(s, page, last);
Christoph Lametera973e9d2008-03-01 13:40:44 -08001187 set_freepointer(s, last, NULL);
Christoph Lameter81819f02007-05-06 14:49:36 -07001188
1189 page->freelist = start;
1190 page->inuse = 0;
1191out:
Christoph Lameter81819f02007-05-06 14:49:36 -07001192 return page;
1193}
1194
1195static void __free_slab(struct kmem_cache *s, struct page *page)
1196{
Christoph Lameter834f3d12008-04-14 19:11:31 +03001197 int order = compound_order(page);
1198 int pages = 1 << order;
Christoph Lameter81819f02007-05-06 14:49:36 -07001199
Andy Whitcroft8a380822008-07-23 21:27:18 -07001200 if (unlikely(SLABDEBUG && PageSlubDebug(page))) {
Christoph Lameter81819f02007-05-06 14:49:36 -07001201 void *p;
1202
1203 slab_pad_check(s, page);
Christoph Lameter224a88b2008-04-14 19:11:31 +03001204 for_each_object(p, s, page_address(page),
1205 page->objects)
Christoph Lameter81819f02007-05-06 14:49:36 -07001206 check_object(s, page, p, 0);
Andy Whitcroft8a380822008-07-23 21:27:18 -07001207 __ClearPageSlubDebug(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001208 }
1209
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001210 kmemcheck_free_shadow(page, compound_order(page));
Vegard Nossum5a896d92008-04-04 00:54:48 +02001211
Christoph Lameter81819f02007-05-06 14:49:36 -07001212 mod_zone_page_state(page_zone(page),
1213 (s->flags & SLAB_RECLAIM_ACCOUNT) ?
1214 NR_SLAB_RECLAIMABLE : NR_SLAB_UNRECLAIMABLE,
Pekka Enberg06428782008-01-07 23:20:27 -08001215 -pages);
Christoph Lameter81819f02007-05-06 14:49:36 -07001216
Christoph Lameter49bd5222008-04-14 18:52:18 +03001217 __ClearPageSlab(page);
1218 reset_page_mapcount(page);
Nick Piggin1eb5ac62009-05-05 19:13:44 +10001219 if (current->reclaim_state)
1220 current->reclaim_state->reclaimed_slab += pages;
Christoph Lameter834f3d12008-04-14 19:11:31 +03001221 __free_pages(page, order);
Christoph Lameter81819f02007-05-06 14:49:36 -07001222}
1223
1224static void rcu_free_slab(struct rcu_head *h)
1225{
1226 struct page *page;
1227
1228 page = container_of((struct list_head *)h, struct page, lru);
1229 __free_slab(page->slab, page);
1230}
1231
1232static void free_slab(struct kmem_cache *s, struct page *page)
1233{
1234 if (unlikely(s->flags & SLAB_DESTROY_BY_RCU)) {
1235 /*
1236 * RCU free overloads the RCU head over the LRU
1237 */
1238 struct rcu_head *head = (void *)&page->lru;
1239
1240 call_rcu(head, rcu_free_slab);
1241 } else
1242 __free_slab(s, page);
1243}
1244
1245static void discard_slab(struct kmem_cache *s, struct page *page)
1246{
Christoph Lameter205ab992008-04-14 19:11:40 +03001247 dec_slabs_node(s, page_to_nid(page), page->objects);
Christoph Lameter81819f02007-05-06 14:49:36 -07001248 free_slab(s, page);
1249}
1250
1251/*
1252 * Per slab locking using the pagelock
1253 */
1254static __always_inline void slab_lock(struct page *page)
1255{
1256 bit_spin_lock(PG_locked, &page->flags);
1257}
1258
1259static __always_inline void slab_unlock(struct page *page)
1260{
Nick Piggina76d3542008-01-07 23:20:27 -08001261 __bit_spin_unlock(PG_locked, &page->flags);
Christoph Lameter81819f02007-05-06 14:49:36 -07001262}
1263
1264static __always_inline int slab_trylock(struct page *page)
1265{
1266 int rc = 1;
1267
1268 rc = bit_spin_trylock(PG_locked, &page->flags);
1269 return rc;
1270}
1271
1272/*
1273 * Management of partially allocated slabs
1274 */
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001275static void add_partial(struct kmem_cache_node *n,
1276 struct page *page, int tail)
Christoph Lameter81819f02007-05-06 14:49:36 -07001277{
Christoph Lametere95eed52007-05-06 14:49:44 -07001278 spin_lock(&n->list_lock);
1279 n->nr_partial++;
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001280 if (tail)
1281 list_add_tail(&page->lru, &n->partial);
1282 else
1283 list_add(&page->lru, &n->partial);
Christoph Lameter81819f02007-05-06 14:49:36 -07001284 spin_unlock(&n->list_lock);
1285}
1286
Christoph Lameter0121c6192008-04-29 16:11:12 -07001287static void remove_partial(struct kmem_cache *s, struct page *page)
Christoph Lameter81819f02007-05-06 14:49:36 -07001288{
1289 struct kmem_cache_node *n = get_node(s, page_to_nid(page));
1290
1291 spin_lock(&n->list_lock);
1292 list_del(&page->lru);
1293 n->nr_partial--;
1294 spin_unlock(&n->list_lock);
1295}
1296
1297/*
Christoph Lameter672bba32007-05-09 02:32:39 -07001298 * Lock slab and remove from the partial list.
Christoph Lameter81819f02007-05-06 14:49:36 -07001299 *
Christoph Lameter672bba32007-05-09 02:32:39 -07001300 * Must hold list_lock.
Christoph Lameter81819f02007-05-06 14:49:36 -07001301 */
Christoph Lameter0121c6192008-04-29 16:11:12 -07001302static inline int lock_and_freeze_slab(struct kmem_cache_node *n,
1303 struct page *page)
Christoph Lameter81819f02007-05-06 14:49:36 -07001304{
1305 if (slab_trylock(page)) {
1306 list_del(&page->lru);
1307 n->nr_partial--;
Andy Whitcroft8a380822008-07-23 21:27:18 -07001308 __SetPageSlubFrozen(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001309 return 1;
1310 }
1311 return 0;
1312}
1313
1314/*
Christoph Lameter672bba32007-05-09 02:32:39 -07001315 * Try to allocate a partial slab from a specific node.
Christoph Lameter81819f02007-05-06 14:49:36 -07001316 */
1317static struct page *get_partial_node(struct kmem_cache_node *n)
1318{
1319 struct page *page;
1320
1321 /*
1322 * Racy check. If we mistakenly see no partial slabs then we
1323 * just allocate an empty slab. If we mistakenly try to get a
Christoph Lameter672bba32007-05-09 02:32:39 -07001324 * partial slab and there is none available then get_partials()
1325 * will return NULL.
Christoph Lameter81819f02007-05-06 14:49:36 -07001326 */
1327 if (!n || !n->nr_partial)
1328 return NULL;
1329
1330 spin_lock(&n->list_lock);
1331 list_for_each_entry(page, &n->partial, lru)
Christoph Lameter4b6f0752007-05-16 22:10:53 -07001332 if (lock_and_freeze_slab(n, page))
Christoph Lameter81819f02007-05-06 14:49:36 -07001333 goto out;
1334 page = NULL;
1335out:
1336 spin_unlock(&n->list_lock);
1337 return page;
1338}
1339
1340/*
Christoph Lameter672bba32007-05-09 02:32:39 -07001341 * Get a page from somewhere. Search in increasing NUMA distances.
Christoph Lameter81819f02007-05-06 14:49:36 -07001342 */
1343static struct page *get_any_partial(struct kmem_cache *s, gfp_t flags)
1344{
1345#ifdef CONFIG_NUMA
1346 struct zonelist *zonelist;
Mel Gormandd1a2392008-04-28 02:12:17 -07001347 struct zoneref *z;
Mel Gorman54a6eb52008-04-28 02:12:16 -07001348 struct zone *zone;
1349 enum zone_type high_zoneidx = gfp_zone(flags);
Christoph Lameter81819f02007-05-06 14:49:36 -07001350 struct page *page;
1351
1352 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07001353 * The defrag ratio allows a configuration of the tradeoffs between
1354 * inter node defragmentation and node local allocations. A lower
1355 * defrag_ratio increases the tendency to do local allocations
1356 * instead of attempting to obtain partial slabs from other nodes.
Christoph Lameter81819f02007-05-06 14:49:36 -07001357 *
Christoph Lameter672bba32007-05-09 02:32:39 -07001358 * If the defrag_ratio is set to 0 then kmalloc() always
1359 * returns node local objects. If the ratio is higher then kmalloc()
1360 * may return off node objects because partial slabs are obtained
1361 * from other nodes and filled up.
Christoph Lameter81819f02007-05-06 14:49:36 -07001362 *
Christoph Lameter6446faa2008-02-15 23:45:26 -08001363 * If /sys/kernel/slab/xx/defrag_ratio is set to 100 (which makes
Christoph Lameter672bba32007-05-09 02:32:39 -07001364 * defrag_ratio = 1000) then every (well almost) allocation will
1365 * first attempt to defrag slab caches on other nodes. This means
1366 * scanning over all nodes to look for partial slabs which may be
1367 * expensive if we do it every time we are trying to find a slab
1368 * with available objects.
Christoph Lameter81819f02007-05-06 14:49:36 -07001369 */
Christoph Lameter98246012008-01-07 23:20:26 -08001370 if (!s->remote_node_defrag_ratio ||
1371 get_cycles() % 1024 > s->remote_node_defrag_ratio)
Christoph Lameter81819f02007-05-06 14:49:36 -07001372 return NULL;
1373
Mel Gorman0e884602008-04-28 02:12:14 -07001374 zonelist = node_zonelist(slab_node(current->mempolicy), flags);
Mel Gorman54a6eb52008-04-28 02:12:16 -07001375 for_each_zone_zonelist(zone, z, zonelist, high_zoneidx) {
Christoph Lameter81819f02007-05-06 14:49:36 -07001376 struct kmem_cache_node *n;
1377
Mel Gorman54a6eb52008-04-28 02:12:16 -07001378 n = get_node(s, zone_to_nid(zone));
Christoph Lameter81819f02007-05-06 14:49:36 -07001379
Mel Gorman54a6eb52008-04-28 02:12:16 -07001380 if (n && cpuset_zone_allowed_hardwall(zone, flags) &&
David Rientjes3b89d7d2009-02-22 17:40:07 -08001381 n->nr_partial > s->min_partial) {
Christoph Lameter81819f02007-05-06 14:49:36 -07001382 page = get_partial_node(n);
1383 if (page)
1384 return page;
1385 }
1386 }
1387#endif
1388 return NULL;
1389}
1390
1391/*
1392 * Get a partial page, lock it and return it.
1393 */
1394static struct page *get_partial(struct kmem_cache *s, gfp_t flags, int node)
1395{
1396 struct page *page;
1397 int searchnode = (node == -1) ? numa_node_id() : node;
1398
1399 page = get_partial_node(get_node(s, searchnode));
1400 if (page || (flags & __GFP_THISNODE))
1401 return page;
1402
1403 return get_any_partial(s, flags);
1404}
1405
1406/*
1407 * Move a page back to the lists.
1408 *
1409 * Must be called with the slab lock held.
1410 *
1411 * On exit the slab lock will have been dropped.
1412 */
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001413static void unfreeze_slab(struct kmem_cache *s, struct page *page, int tail)
Christoph Lameter81819f02007-05-06 14:49:36 -07001414{
Christoph Lametere95eed52007-05-06 14:49:44 -07001415 struct kmem_cache_node *n = get_node(s, page_to_nid(page));
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06001416 struct kmem_cache_cpu *c = this_cpu_ptr(s->cpu_slab);
Christoph Lametere95eed52007-05-06 14:49:44 -07001417
Andy Whitcroft8a380822008-07-23 21:27:18 -07001418 __ClearPageSlubFrozen(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001419 if (page->inuse) {
Christoph Lametere95eed52007-05-06 14:49:44 -07001420
Christoph Lametera973e9d2008-03-01 13:40:44 -08001421 if (page->freelist) {
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001422 add_partial(n, page, tail);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001423 stat(c, tail ? DEACTIVATE_TO_TAIL : DEACTIVATE_TO_HEAD);
1424 } else {
1425 stat(c, DEACTIVATE_FULL);
Andy Whitcroft8a380822008-07-23 21:27:18 -07001426 if (SLABDEBUG && PageSlubDebug(page) &&
1427 (s->flags & SLAB_STORE_USER))
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001428 add_full(n, page);
1429 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001430 slab_unlock(page);
1431 } else {
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001432 stat(c, DEACTIVATE_EMPTY);
David Rientjes3b89d7d2009-02-22 17:40:07 -08001433 if (n->nr_partial < s->min_partial) {
Christoph Lametere95eed52007-05-06 14:49:44 -07001434 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07001435 * Adding an empty slab to the partial slabs in order
1436 * to avoid page allocator overhead. This slab needs
1437 * to come after the other slabs with objects in
Christoph Lameter6446faa2008-02-15 23:45:26 -08001438 * so that the others get filled first. That way the
1439 * size of the partial list stays small.
1440 *
Christoph Lameter0121c6192008-04-29 16:11:12 -07001441 * kmem_cache_shrink can reclaim any empty slabs from
1442 * the partial list.
Christoph Lametere95eed52007-05-06 14:49:44 -07001443 */
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001444 add_partial(n, page, 1);
Christoph Lametere95eed52007-05-06 14:49:44 -07001445 slab_unlock(page);
1446 } else {
1447 slab_unlock(page);
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06001448 stat(__this_cpu_ptr(s->cpu_slab), FREE_SLAB);
Christoph Lametere95eed52007-05-06 14:49:44 -07001449 discard_slab(s, page);
1450 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001451 }
1452}
1453
1454/*
1455 * Remove the cpu slab
1456 */
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001457static void deactivate_slab(struct kmem_cache *s, struct kmem_cache_cpu *c)
Christoph Lameter81819f02007-05-06 14:49:36 -07001458{
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001459 struct page *page = c->page;
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001460 int tail = 1;
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001461
Christoph Lameterb773ad72008-03-04 11:10:17 -08001462 if (page->freelist)
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001463 stat(c, DEACTIVATE_REMOTE_FREES);
Christoph Lameter894b8782007-05-10 03:15:16 -07001464 /*
Christoph Lameter6446faa2008-02-15 23:45:26 -08001465 * Merge cpu freelist into slab freelist. Typically we get here
Christoph Lameter894b8782007-05-10 03:15:16 -07001466 * because both freelists are empty. So this is unlikely
1467 * to occur.
1468 */
Christoph Lametera973e9d2008-03-01 13:40:44 -08001469 while (unlikely(c->freelist)) {
Christoph Lameter894b8782007-05-10 03:15:16 -07001470 void **object;
1471
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001472 tail = 0; /* Hot objects. Put the slab first */
1473
Christoph Lameter894b8782007-05-10 03:15:16 -07001474 /* Retrieve object from cpu_freelist */
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001475 object = c->freelist;
Christoph Lameterb3fba8d2007-10-16 01:26:06 -07001476 c->freelist = c->freelist[c->offset];
Christoph Lameter894b8782007-05-10 03:15:16 -07001477
1478 /* And put onto the regular freelist */
Christoph Lameterb3fba8d2007-10-16 01:26:06 -07001479 object[c->offset] = page->freelist;
Christoph Lameter894b8782007-05-10 03:15:16 -07001480 page->freelist = object;
1481 page->inuse--;
1482 }
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001483 c->page = NULL;
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001484 unfreeze_slab(s, page, tail);
Christoph Lameter81819f02007-05-06 14:49:36 -07001485}
1486
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001487static inline void flush_slab(struct kmem_cache *s, struct kmem_cache_cpu *c)
Christoph Lameter81819f02007-05-06 14:49:36 -07001488{
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001489 stat(c, CPUSLAB_FLUSH);
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001490 slab_lock(c->page);
1491 deactivate_slab(s, c);
Christoph Lameter81819f02007-05-06 14:49:36 -07001492}
1493
1494/*
1495 * Flush cpu slab.
Christoph Lameter6446faa2008-02-15 23:45:26 -08001496 *
Christoph Lameter81819f02007-05-06 14:49:36 -07001497 * Called from IPI handler with interrupts disabled.
1498 */
Christoph Lameter0c710012007-07-17 04:03:24 -07001499static inline void __flush_cpu_slab(struct kmem_cache *s, int cpu)
Christoph Lameter81819f02007-05-06 14:49:36 -07001500{
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06001501 struct kmem_cache_cpu *c = per_cpu_ptr(s->cpu_slab, cpu);
Christoph Lameter81819f02007-05-06 14:49:36 -07001502
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001503 if (likely(c && c->page))
1504 flush_slab(s, c);
Christoph Lameter81819f02007-05-06 14:49:36 -07001505}
1506
1507static void flush_cpu_slab(void *d)
1508{
1509 struct kmem_cache *s = d;
Christoph Lameter81819f02007-05-06 14:49:36 -07001510
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001511 __flush_cpu_slab(s, smp_processor_id());
Christoph Lameter81819f02007-05-06 14:49:36 -07001512}
1513
1514static void flush_all(struct kmem_cache *s)
1515{
Jens Axboe15c8b6c2008-05-09 09:39:44 +02001516 on_each_cpu(flush_cpu_slab, s, 1);
Christoph Lameter81819f02007-05-06 14:49:36 -07001517}
1518
1519/*
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001520 * Check if the objects in a per cpu structure fit numa
1521 * locality expectations.
1522 */
1523static inline int node_match(struct kmem_cache_cpu *c, int node)
1524{
1525#ifdef CONFIG_NUMA
1526 if (node != -1 && c->node != node)
1527 return 0;
1528#endif
1529 return 1;
1530}
1531
Pekka Enberg781b2ba2009-06-10 18:50:32 +03001532static int count_free(struct page *page)
1533{
1534 return page->objects - page->inuse;
1535}
1536
1537static unsigned long count_partial(struct kmem_cache_node *n,
1538 int (*get_count)(struct page *))
1539{
1540 unsigned long flags;
1541 unsigned long x = 0;
1542 struct page *page;
1543
1544 spin_lock_irqsave(&n->list_lock, flags);
1545 list_for_each_entry(page, &n->partial, lru)
1546 x += get_count(page);
1547 spin_unlock_irqrestore(&n->list_lock, flags);
1548 return x;
1549}
1550
Alexander Beregalov26c02cf2009-06-11 14:08:48 +04001551static inline unsigned long node_nr_objs(struct kmem_cache_node *n)
1552{
1553#ifdef CONFIG_SLUB_DEBUG
1554 return atomic_long_read(&n->total_objects);
1555#else
1556 return 0;
1557#endif
1558}
1559
Pekka Enberg781b2ba2009-06-10 18:50:32 +03001560static noinline void
1561slab_out_of_memory(struct kmem_cache *s, gfp_t gfpflags, int nid)
1562{
1563 int node;
1564
1565 printk(KERN_WARNING
1566 "SLUB: Unable to allocate memory on node %d (gfp=0x%x)\n",
1567 nid, gfpflags);
1568 printk(KERN_WARNING " cache: %s, object size: %d, buffer size: %d, "
1569 "default order: %d, min order: %d\n", s->name, s->objsize,
1570 s->size, oo_order(s->oo), oo_order(s->min));
1571
David Rientjesfa5ec8a2009-07-07 00:14:14 -07001572 if (oo_order(s->min) > get_order(s->objsize))
1573 printk(KERN_WARNING " %s debugging increased min order, use "
1574 "slub_debug=O to disable.\n", s->name);
1575
Pekka Enberg781b2ba2009-06-10 18:50:32 +03001576 for_each_online_node(node) {
1577 struct kmem_cache_node *n = get_node(s, node);
1578 unsigned long nr_slabs;
1579 unsigned long nr_objs;
1580 unsigned long nr_free;
1581
1582 if (!n)
1583 continue;
1584
Alexander Beregalov26c02cf2009-06-11 14:08:48 +04001585 nr_free = count_partial(n, count_free);
1586 nr_slabs = node_nr_slabs(n);
1587 nr_objs = node_nr_objs(n);
Pekka Enberg781b2ba2009-06-10 18:50:32 +03001588
1589 printk(KERN_WARNING
1590 " node %d: slabs: %ld, objs: %ld, free: %ld\n",
1591 node, nr_slabs, nr_objs, nr_free);
1592 }
1593}
1594
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001595/*
Christoph Lameter894b8782007-05-10 03:15:16 -07001596 * Slow path. The lockless freelist is empty or we need to perform
1597 * debugging duties.
Christoph Lameter81819f02007-05-06 14:49:36 -07001598 *
Christoph Lameter894b8782007-05-10 03:15:16 -07001599 * Interrupts are disabled.
Christoph Lameter81819f02007-05-06 14:49:36 -07001600 *
Christoph Lameter894b8782007-05-10 03:15:16 -07001601 * Processing is still very fast if new objects have been freed to the
1602 * regular freelist. In that case we simply take over the regular freelist
1603 * as the lockless freelist and zap the regular freelist.
Christoph Lameter81819f02007-05-06 14:49:36 -07001604 *
Christoph Lameter894b8782007-05-10 03:15:16 -07001605 * If that is not working then we fall back to the partial lists. We take the
1606 * first element of the freelist as the object to allocate now and move the
1607 * rest of the freelist to the lockless freelist.
1608 *
1609 * And if we were unable to get a new slab from the partial slab lists then
Christoph Lameter6446faa2008-02-15 23:45:26 -08001610 * we need to allocate a new slab. This is the slowest path since it involves
1611 * a call to the page allocator and the setup of a new slab.
Christoph Lameter81819f02007-05-06 14:49:36 -07001612 */
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03001613static void *__slab_alloc(struct kmem_cache *s, gfp_t gfpflags, int node,
1614 unsigned long addr, struct kmem_cache_cpu *c)
Christoph Lameter81819f02007-05-06 14:49:36 -07001615{
Christoph Lameter81819f02007-05-06 14:49:36 -07001616 void **object;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001617 struct page *new;
Christoph Lameter81819f02007-05-06 14:49:36 -07001618
Linus Torvaldse72e9c22008-03-27 20:56:33 -07001619 /* We handle __GFP_ZERO in the caller */
1620 gfpflags &= ~__GFP_ZERO;
1621
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001622 if (!c->page)
Christoph Lameter81819f02007-05-06 14:49:36 -07001623 goto new_slab;
1624
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001625 slab_lock(c->page);
1626 if (unlikely(!node_match(c, node)))
Christoph Lameter81819f02007-05-06 14:49:36 -07001627 goto another_slab;
Christoph Lameter6446faa2008-02-15 23:45:26 -08001628
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001629 stat(c, ALLOC_REFILL);
Christoph Lameter6446faa2008-02-15 23:45:26 -08001630
Christoph Lameter894b8782007-05-10 03:15:16 -07001631load_freelist:
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001632 object = c->page->freelist;
Christoph Lametera973e9d2008-03-01 13:40:44 -08001633 if (unlikely(!object))
Christoph Lameter81819f02007-05-06 14:49:36 -07001634 goto another_slab;
Andy Whitcroft8a380822008-07-23 21:27:18 -07001635 if (unlikely(SLABDEBUG && PageSlubDebug(c->page)))
Christoph Lameter81819f02007-05-06 14:49:36 -07001636 goto debug;
1637
Christoph Lameterb3fba8d2007-10-16 01:26:06 -07001638 c->freelist = object[c->offset];
Christoph Lameter39b26462008-04-14 19:11:30 +03001639 c->page->inuse = c->page->objects;
Christoph Lametera973e9d2008-03-01 13:40:44 -08001640 c->page->freelist = NULL;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001641 c->node = page_to_nid(c->page);
Christoph Lameter1f842602008-01-07 23:20:30 -08001642unlock_out:
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001643 slab_unlock(c->page);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001644 stat(c, ALLOC_SLOWPATH);
Christoph Lameter81819f02007-05-06 14:49:36 -07001645 return object;
1646
1647another_slab:
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001648 deactivate_slab(s, c);
Christoph Lameter81819f02007-05-06 14:49:36 -07001649
1650new_slab:
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001651 new = get_partial(s, gfpflags, node);
1652 if (new) {
1653 c->page = new;
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001654 stat(c, ALLOC_FROM_PARTIAL);
Christoph Lameter894b8782007-05-10 03:15:16 -07001655 goto load_freelist;
Christoph Lameter81819f02007-05-06 14:49:36 -07001656 }
1657
Christoph Lameterb811c202007-10-16 23:25:51 -07001658 if (gfpflags & __GFP_WAIT)
1659 local_irq_enable();
1660
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001661 new = new_slab(s, gfpflags, node);
Christoph Lameterb811c202007-10-16 23:25:51 -07001662
1663 if (gfpflags & __GFP_WAIT)
1664 local_irq_disable();
1665
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001666 if (new) {
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06001667 c = __this_cpu_ptr(s->cpu_slab);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001668 stat(c, ALLOC_SLAB);
Christoph Lameter05aa3452007-11-05 11:31:58 -08001669 if (c->page)
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001670 flush_slab(s, c);
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001671 slab_lock(new);
Andy Whitcroft8a380822008-07-23 21:27:18 -07001672 __SetPageSlubFrozen(new);
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001673 c->page = new;
Christoph Lameter4b6f0752007-05-16 22:10:53 -07001674 goto load_freelist;
Christoph Lameter81819f02007-05-06 14:49:36 -07001675 }
Pekka Enberg95f85982009-06-11 16:18:09 +03001676 if (!(gfpflags & __GFP_NOWARN) && printk_ratelimit())
1677 slab_out_of_memory(s, gfpflags, node);
Christoph Lameter71c7a062008-02-14 14:28:01 -08001678 return NULL;
Christoph Lameter81819f02007-05-06 14:49:36 -07001679debug:
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001680 if (!alloc_debug_processing(s, c->page, object, addr))
Christoph Lameter81819f02007-05-06 14:49:36 -07001681 goto another_slab;
Christoph Lameter894b8782007-05-10 03:15:16 -07001682
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001683 c->page->inuse++;
Christoph Lameterb3fba8d2007-10-16 01:26:06 -07001684 c->page->freelist = object[c->offset];
Christoph Lameteree3c72a2007-10-16 01:26:07 -07001685 c->node = -1;
Christoph Lameter1f842602008-01-07 23:20:30 -08001686 goto unlock_out;
Christoph Lameter894b8782007-05-10 03:15:16 -07001687}
1688
1689/*
1690 * Inlined fastpath so that allocation functions (kmalloc, kmem_cache_alloc)
1691 * have the fastpath folded into their functions. So no function call
1692 * overhead for requests that can be satisfied on the fastpath.
1693 *
1694 * The fastpath works by first checking if the lockless freelist can be used.
1695 * If not then __slab_alloc is called for slow processing.
1696 *
1697 * Otherwise we can simply pick the next object from the lockless free list.
1698 */
Pekka Enberg06428782008-01-07 23:20:27 -08001699static __always_inline void *slab_alloc(struct kmem_cache *s,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03001700 gfp_t gfpflags, int node, unsigned long addr)
Christoph Lameter894b8782007-05-10 03:15:16 -07001701{
Christoph Lameter894b8782007-05-10 03:15:16 -07001702 void **object;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001703 struct kmem_cache_cpu *c;
Christoph Lameter1f842602008-01-07 23:20:30 -08001704 unsigned long flags;
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06001705 unsigned long objsize;
Christoph Lameter1f842602008-01-07 23:20:30 -08001706
Benjamin Herrenschmidtdcce2842009-06-18 13:24:12 +10001707 gfpflags &= gfp_allowed_mask;
Pekka Enberg7e85ee02009-06-12 14:03:06 +03001708
Nick Piggincf40bd12009-01-21 08:12:39 +01001709 lockdep_trace_alloc(gfpflags);
OGAWA Hirofumi89124d72008-11-19 21:23:59 +09001710 might_sleep_if(gfpflags & __GFP_WAIT);
Pekka Enberg3c506ef2008-12-29 11:47:05 +02001711
Akinobu Mita773ff602008-12-23 19:37:01 +09001712 if (should_failslab(s->objsize, gfpflags))
1713 return NULL;
1714
Christoph Lameter894b8782007-05-10 03:15:16 -07001715 local_irq_save(flags);
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06001716 c = __this_cpu_ptr(s->cpu_slab);
1717 object = c->freelist;
Dmitry Adamushkobdb21922008-07-10 22:21:58 +02001718 objsize = c->objsize;
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06001719 if (unlikely(!object || !node_match(c, node)))
Christoph Lameter894b8782007-05-10 03:15:16 -07001720
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001721 object = __slab_alloc(s, gfpflags, node, addr, c);
Christoph Lameter894b8782007-05-10 03:15:16 -07001722
1723 else {
Christoph Lameterb3fba8d2007-10-16 01:26:06 -07001724 c->freelist = object[c->offset];
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001725 stat(c, ALLOC_FASTPATH);
Christoph Lameter894b8782007-05-10 03:15:16 -07001726 }
1727 local_irq_restore(flags);
Christoph Lameterd07dbea2007-07-17 04:03:23 -07001728
Pekka Enberg74e21342009-11-25 20:14:48 +02001729 if (unlikely(gfpflags & __GFP_ZERO) && object)
Dmitry Adamushkobdb21922008-07-10 22:21:58 +02001730 memset(object, 0, objsize);
Christoph Lameterd07dbea2007-07-17 04:03:23 -07001731
Vegard Nossum5a896d92008-04-04 00:54:48 +02001732 kmemcheck_slab_alloc(s, gfpflags, object, c->objsize);
Catalin Marinas06f22f12009-06-11 13:23:18 +01001733 kmemleak_alloc_recursive(object, objsize, 1, s->flags, gfpflags);
Vegard Nossum5a896d92008-04-04 00:54:48 +02001734
Christoph Lameter894b8782007-05-10 03:15:16 -07001735 return object;
Christoph Lameter81819f02007-05-06 14:49:36 -07001736}
1737
1738void *kmem_cache_alloc(struct kmem_cache *s, gfp_t gfpflags)
1739{
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03001740 void *ret = slab_alloc(s, gfpflags, -1, _RET_IP_);
1741
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02001742 trace_kmem_cache_alloc(_RET_IP_, ret, s->objsize, s->size, gfpflags);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03001743
1744 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07001745}
1746EXPORT_SYMBOL(kmem_cache_alloc);
1747
Li Zefan0f24f122009-12-11 15:45:30 +08001748#ifdef CONFIG_TRACING
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03001749void *kmem_cache_alloc_notrace(struct kmem_cache *s, gfp_t gfpflags)
1750{
1751 return slab_alloc(s, gfpflags, -1, _RET_IP_);
1752}
1753EXPORT_SYMBOL(kmem_cache_alloc_notrace);
1754#endif
1755
Christoph Lameter81819f02007-05-06 14:49:36 -07001756#ifdef CONFIG_NUMA
1757void *kmem_cache_alloc_node(struct kmem_cache *s, gfp_t gfpflags, int node)
1758{
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03001759 void *ret = slab_alloc(s, gfpflags, node, _RET_IP_);
1760
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02001761 trace_kmem_cache_alloc_node(_RET_IP_, ret,
1762 s->objsize, s->size, gfpflags, node);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03001763
1764 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07001765}
1766EXPORT_SYMBOL(kmem_cache_alloc_node);
1767#endif
1768
Li Zefan0f24f122009-12-11 15:45:30 +08001769#ifdef CONFIG_TRACING
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03001770void *kmem_cache_alloc_node_notrace(struct kmem_cache *s,
1771 gfp_t gfpflags,
1772 int node)
1773{
1774 return slab_alloc(s, gfpflags, node, _RET_IP_);
1775}
1776EXPORT_SYMBOL(kmem_cache_alloc_node_notrace);
1777#endif
1778
Christoph Lameter81819f02007-05-06 14:49:36 -07001779/*
Christoph Lameter894b8782007-05-10 03:15:16 -07001780 * Slow patch handling. This may still be called frequently since objects
1781 * have a longer lifetime than the cpu slabs in most processing loads.
Christoph Lameter81819f02007-05-06 14:49:36 -07001782 *
Christoph Lameter894b8782007-05-10 03:15:16 -07001783 * So we still attempt to reduce cache line usage. Just take the slab
1784 * lock and free the item. If there is no additional partial page
1785 * handling required then we can return immediately.
Christoph Lameter81819f02007-05-06 14:49:36 -07001786 */
Christoph Lameter894b8782007-05-10 03:15:16 -07001787static void __slab_free(struct kmem_cache *s, struct page *page,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03001788 void *x, unsigned long addr, unsigned int offset)
Christoph Lameter81819f02007-05-06 14:49:36 -07001789{
1790 void *prior;
1791 void **object = (void *)x;
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001792 struct kmem_cache_cpu *c;
Christoph Lameter81819f02007-05-06 14:49:36 -07001793
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06001794 c = __this_cpu_ptr(s->cpu_slab);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001795 stat(c, FREE_SLOWPATH);
Christoph Lameter81819f02007-05-06 14:49:36 -07001796 slab_lock(page);
1797
Andy Whitcroft8a380822008-07-23 21:27:18 -07001798 if (unlikely(SLABDEBUG && PageSlubDebug(page)))
Christoph Lameter81819f02007-05-06 14:49:36 -07001799 goto debug;
Christoph Lameter6446faa2008-02-15 23:45:26 -08001800
Christoph Lameter81819f02007-05-06 14:49:36 -07001801checks_ok:
Christoph Lameterb3fba8d2007-10-16 01:26:06 -07001802 prior = object[offset] = page->freelist;
Christoph Lameter81819f02007-05-06 14:49:36 -07001803 page->freelist = object;
1804 page->inuse--;
1805
Andy Whitcroft8a380822008-07-23 21:27:18 -07001806 if (unlikely(PageSlubFrozen(page))) {
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001807 stat(c, FREE_FROZEN);
Christoph Lameter81819f02007-05-06 14:49:36 -07001808 goto out_unlock;
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001809 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001810
1811 if (unlikely(!page->inuse))
1812 goto slab_empty;
1813
1814 /*
Christoph Lameter6446faa2008-02-15 23:45:26 -08001815 * Objects left in the slab. If it was not on the partial list before
Christoph Lameter81819f02007-05-06 14:49:36 -07001816 * then add it.
1817 */
Christoph Lametera973e9d2008-03-01 13:40:44 -08001818 if (unlikely(!prior)) {
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001819 add_partial(get_node(s, page_to_nid(page)), page, 1);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001820 stat(c, FREE_ADD_PARTIAL);
1821 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001822
1823out_unlock:
1824 slab_unlock(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001825 return;
1826
1827slab_empty:
Christoph Lametera973e9d2008-03-01 13:40:44 -08001828 if (prior) {
Christoph Lameter81819f02007-05-06 14:49:36 -07001829 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07001830 * Slab still on the partial list.
Christoph Lameter81819f02007-05-06 14:49:36 -07001831 */
1832 remove_partial(s, page);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001833 stat(c, FREE_REMOVE_PARTIAL);
1834 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001835 slab_unlock(page);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001836 stat(c, FREE_SLAB);
Christoph Lameter81819f02007-05-06 14:49:36 -07001837 discard_slab(s, page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001838 return;
1839
1840debug:
Christoph Lameter3ec09742007-05-16 22:11:00 -07001841 if (!free_debug_processing(s, page, x, addr))
Christoph Lameter77c5e2d2007-05-06 14:49:42 -07001842 goto out_unlock;
Christoph Lameter77c5e2d2007-05-06 14:49:42 -07001843 goto checks_ok;
Christoph Lameter81819f02007-05-06 14:49:36 -07001844}
1845
Christoph Lameter894b8782007-05-10 03:15:16 -07001846/*
1847 * Fastpath with forced inlining to produce a kfree and kmem_cache_free that
1848 * can perform fastpath freeing without additional function calls.
1849 *
1850 * The fastpath is only possible if we are freeing to the current cpu slab
1851 * of this processor. This typically the case if we have just allocated
1852 * the item before.
1853 *
1854 * If fastpath is not possible then fall back to __slab_free where we deal
1855 * with all sorts of special processing.
1856 */
Pekka Enberg06428782008-01-07 23:20:27 -08001857static __always_inline void slab_free(struct kmem_cache *s,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03001858 struct page *page, void *x, unsigned long addr)
Christoph Lameter894b8782007-05-10 03:15:16 -07001859{
1860 void **object = (void *)x;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001861 struct kmem_cache_cpu *c;
Christoph Lameter1f842602008-01-07 23:20:30 -08001862 unsigned long flags;
1863
Catalin Marinas06f22f12009-06-11 13:23:18 +01001864 kmemleak_free_recursive(x, s->flags);
Christoph Lameter894b8782007-05-10 03:15:16 -07001865 local_irq_save(flags);
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06001866 c = __this_cpu_ptr(s->cpu_slab);
Vegard Nossum5a896d92008-04-04 00:54:48 +02001867 kmemcheck_slab_free(s, object, c->objsize);
Christoph Lameter27d9e4e2008-02-15 23:45:25 -08001868 debug_check_no_locks_freed(object, c->objsize);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -07001869 if (!(s->flags & SLAB_DEBUG_OBJECTS))
Pekka Enberg6047a002009-01-14 12:22:25 +02001870 debug_check_no_obj_freed(object, c->objsize);
Christoph Lameteree3c72a2007-10-16 01:26:07 -07001871 if (likely(page == c->page && c->node >= 0)) {
Christoph Lameterb3fba8d2007-10-16 01:26:06 -07001872 object[c->offset] = c->freelist;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001873 c->freelist = object;
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001874 stat(c, FREE_FASTPATH);
Christoph Lameter894b8782007-05-10 03:15:16 -07001875 } else
Christoph Lameterb3fba8d2007-10-16 01:26:06 -07001876 __slab_free(s, page, x, addr, c->offset);
Christoph Lameter894b8782007-05-10 03:15:16 -07001877
1878 local_irq_restore(flags);
1879}
1880
Christoph Lameter81819f02007-05-06 14:49:36 -07001881void kmem_cache_free(struct kmem_cache *s, void *x)
1882{
Christoph Lameter77c5e2d2007-05-06 14:49:42 -07001883 struct page *page;
Christoph Lameter81819f02007-05-06 14:49:36 -07001884
Christoph Lameterb49af682007-05-06 14:49:41 -07001885 page = virt_to_head_page(x);
Christoph Lameter81819f02007-05-06 14:49:36 -07001886
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03001887 slab_free(s, page, x, _RET_IP_);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03001888
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02001889 trace_kmem_cache_free(_RET_IP_, x);
Christoph Lameter81819f02007-05-06 14:49:36 -07001890}
1891EXPORT_SYMBOL(kmem_cache_free);
1892
Cyrill Gorcunove9beef12008-10-28 22:02:26 +03001893/* Figure out on which slab page the object resides */
Christoph Lameter81819f02007-05-06 14:49:36 -07001894static struct page *get_object_page(const void *x)
1895{
Christoph Lameterb49af682007-05-06 14:49:41 -07001896 struct page *page = virt_to_head_page(x);
Christoph Lameter81819f02007-05-06 14:49:36 -07001897
1898 if (!PageSlab(page))
1899 return NULL;
1900
1901 return page;
1902}
1903
1904/*
Christoph Lameter672bba32007-05-09 02:32:39 -07001905 * Object placement in a slab is made very easy because we always start at
1906 * offset 0. If we tune the size of the object to the alignment then we can
1907 * get the required alignment by putting one properly sized object after
1908 * another.
Christoph Lameter81819f02007-05-06 14:49:36 -07001909 *
1910 * Notice that the allocation order determines the sizes of the per cpu
1911 * caches. Each processor has always one slab available for allocations.
1912 * Increasing the allocation order reduces the number of times that slabs
Christoph Lameter672bba32007-05-09 02:32:39 -07001913 * must be moved on and off the partial lists and is therefore a factor in
Christoph Lameter81819f02007-05-06 14:49:36 -07001914 * locking overhead.
Christoph Lameter81819f02007-05-06 14:49:36 -07001915 */
1916
1917/*
1918 * Mininum / Maximum order of slab pages. This influences locking overhead
1919 * and slab fragmentation. A higher order reduces the number of partial slabs
1920 * and increases the number of allocations possible without having to
1921 * take the list_lock.
1922 */
1923static int slub_min_order;
Christoph Lameter114e9e82008-04-14 19:11:41 +03001924static int slub_max_order = PAGE_ALLOC_COSTLY_ORDER;
Christoph Lameter9b2cd502008-04-14 19:11:41 +03001925static int slub_min_objects;
Christoph Lameter81819f02007-05-06 14:49:36 -07001926
1927/*
1928 * Merge control. If this is set then no merging of slab caches will occur.
Christoph Lameter672bba32007-05-09 02:32:39 -07001929 * (Could be removed. This was introduced to pacify the merge skeptics.)
Christoph Lameter81819f02007-05-06 14:49:36 -07001930 */
1931static int slub_nomerge;
1932
1933/*
Christoph Lameter81819f02007-05-06 14:49:36 -07001934 * Calculate the order of allocation given an slab object size.
1935 *
Christoph Lameter672bba32007-05-09 02:32:39 -07001936 * The order of allocation has significant impact on performance and other
1937 * system components. Generally order 0 allocations should be preferred since
1938 * order 0 does not cause fragmentation in the page allocator. Larger objects
1939 * be problematic to put into order 0 slabs because there may be too much
Christoph Lameterc124f5b2008-04-14 19:13:29 +03001940 * unused space left. We go to a higher order if more than 1/16th of the slab
Christoph Lameter672bba32007-05-09 02:32:39 -07001941 * would be wasted.
Christoph Lameter81819f02007-05-06 14:49:36 -07001942 *
Christoph Lameter672bba32007-05-09 02:32:39 -07001943 * In order to reach satisfactory performance we must ensure that a minimum
1944 * number of objects is in one slab. Otherwise we may generate too much
1945 * activity on the partial lists which requires taking the list_lock. This is
1946 * less a concern for large slabs though which are rarely used.
Christoph Lameter81819f02007-05-06 14:49:36 -07001947 *
Christoph Lameter672bba32007-05-09 02:32:39 -07001948 * slub_max_order specifies the order where we begin to stop considering the
1949 * number of objects in a slab as critical. If we reach slub_max_order then
1950 * we try to keep the page order as low as possible. So we accept more waste
1951 * of space in favor of a small page order.
1952 *
1953 * Higher order allocations also allow the placement of more objects in a
1954 * slab and thereby reduce object handling overhead. If the user has
1955 * requested a higher mininum order then we start with that one instead of
1956 * the smallest order which will fit the object.
Christoph Lameter81819f02007-05-06 14:49:36 -07001957 */
Christoph Lameter5e6d4442007-05-09 02:32:46 -07001958static inline int slab_order(int size, int min_objects,
1959 int max_order, int fract_leftover)
Christoph Lameter81819f02007-05-06 14:49:36 -07001960{
1961 int order;
1962 int rem;
Christoph Lameter6300ea72007-07-17 04:03:20 -07001963 int min_order = slub_min_order;
Christoph Lameter81819f02007-05-06 14:49:36 -07001964
Cyrill Gorcunov210b5c02008-10-22 23:00:38 +04001965 if ((PAGE_SIZE << min_order) / size > MAX_OBJS_PER_PAGE)
1966 return get_order(size * MAX_OBJS_PER_PAGE) - 1;
Christoph Lameter39b26462008-04-14 19:11:30 +03001967
Christoph Lameter6300ea72007-07-17 04:03:20 -07001968 for (order = max(min_order,
Christoph Lameter5e6d4442007-05-09 02:32:46 -07001969 fls(min_objects * size - 1) - PAGE_SHIFT);
1970 order <= max_order; order++) {
1971
Christoph Lameter81819f02007-05-06 14:49:36 -07001972 unsigned long slab_size = PAGE_SIZE << order;
1973
Christoph Lameter5e6d4442007-05-09 02:32:46 -07001974 if (slab_size < min_objects * size)
Christoph Lameter81819f02007-05-06 14:49:36 -07001975 continue;
1976
Christoph Lameter81819f02007-05-06 14:49:36 -07001977 rem = slab_size % size;
1978
Christoph Lameter5e6d4442007-05-09 02:32:46 -07001979 if (rem <= slab_size / fract_leftover)
Christoph Lameter81819f02007-05-06 14:49:36 -07001980 break;
1981
1982 }
Christoph Lameter672bba32007-05-09 02:32:39 -07001983
Christoph Lameter81819f02007-05-06 14:49:36 -07001984 return order;
1985}
1986
Christoph Lameter5e6d4442007-05-09 02:32:46 -07001987static inline int calculate_order(int size)
1988{
1989 int order;
1990 int min_objects;
1991 int fraction;
Zhang Yanmine8120ff2009-02-12 18:00:17 +02001992 int max_objects;
Christoph Lameter5e6d4442007-05-09 02:32:46 -07001993
1994 /*
1995 * Attempt to find best configuration for a slab. This
1996 * works by first attempting to generate a layout with
1997 * the best configuration and backing off gradually.
1998 *
1999 * First we reduce the acceptable waste in a slab. Then
2000 * we reduce the minimum objects required in a slab.
2001 */
2002 min_objects = slub_min_objects;
Christoph Lameter9b2cd502008-04-14 19:11:41 +03002003 if (!min_objects)
2004 min_objects = 4 * (fls(nr_cpu_ids) + 1);
Zhang Yanmine8120ff2009-02-12 18:00:17 +02002005 max_objects = (PAGE_SIZE << slub_max_order)/size;
2006 min_objects = min(min_objects, max_objects);
2007
Christoph Lameter5e6d4442007-05-09 02:32:46 -07002008 while (min_objects > 1) {
Christoph Lameterc124f5b2008-04-14 19:13:29 +03002009 fraction = 16;
Christoph Lameter5e6d4442007-05-09 02:32:46 -07002010 while (fraction >= 4) {
2011 order = slab_order(size, min_objects,
2012 slub_max_order, fraction);
2013 if (order <= slub_max_order)
2014 return order;
2015 fraction /= 2;
2016 }
Amerigo Wang5086c382009-08-19 21:44:13 +03002017 min_objects--;
Christoph Lameter5e6d4442007-05-09 02:32:46 -07002018 }
2019
2020 /*
2021 * We were unable to place multiple objects in a slab. Now
2022 * lets see if we can place a single object there.
2023 */
2024 order = slab_order(size, 1, slub_max_order, 1);
2025 if (order <= slub_max_order)
2026 return order;
2027
2028 /*
2029 * Doh this slab cannot be placed using slub_max_order.
2030 */
2031 order = slab_order(size, 1, MAX_ORDER, 1);
David Rientjes818cf592009-04-23 09:58:22 +03002032 if (order < MAX_ORDER)
Christoph Lameter5e6d4442007-05-09 02:32:46 -07002033 return order;
2034 return -ENOSYS;
2035}
2036
Christoph Lameter81819f02007-05-06 14:49:36 -07002037/*
Christoph Lameter672bba32007-05-09 02:32:39 -07002038 * Figure out what the alignment of the objects will be.
Christoph Lameter81819f02007-05-06 14:49:36 -07002039 */
2040static unsigned long calculate_alignment(unsigned long flags,
2041 unsigned long align, unsigned long size)
2042{
2043 /*
Christoph Lameter6446faa2008-02-15 23:45:26 -08002044 * If the user wants hardware cache aligned objects then follow that
2045 * suggestion if the object is sufficiently large.
Christoph Lameter81819f02007-05-06 14:49:36 -07002046 *
Christoph Lameter6446faa2008-02-15 23:45:26 -08002047 * The hardware cache alignment cannot override the specified
2048 * alignment though. If that is greater then use it.
Christoph Lameter81819f02007-05-06 14:49:36 -07002049 */
Nick Pigginb6210382008-03-05 14:05:56 -08002050 if (flags & SLAB_HWCACHE_ALIGN) {
2051 unsigned long ralign = cache_line_size();
2052 while (size <= ralign / 2)
2053 ralign /= 2;
2054 align = max(align, ralign);
2055 }
Christoph Lameter81819f02007-05-06 14:49:36 -07002056
2057 if (align < ARCH_SLAB_MINALIGN)
Nick Pigginb6210382008-03-05 14:05:56 -08002058 align = ARCH_SLAB_MINALIGN;
Christoph Lameter81819f02007-05-06 14:49:36 -07002059
2060 return ALIGN(align, sizeof(void *));
2061}
2062
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002063static void init_kmem_cache_cpu(struct kmem_cache *s,
2064 struct kmem_cache_cpu *c)
2065{
2066 c->page = NULL;
Christoph Lametera973e9d2008-03-01 13:40:44 -08002067 c->freelist = NULL;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002068 c->node = 0;
Christoph Lameter42a9fdb2007-10-16 01:26:09 -07002069 c->offset = s->offset / sizeof(void *);
2070 c->objsize = s->objsize;
Pekka Enberg62f75532008-04-14 18:50:44 +03002071#ifdef CONFIG_SLUB_STATS
2072 memset(c->stat, 0, NR_SLUB_STAT_ITEMS * sizeof(unsigned));
2073#endif
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002074}
2075
Pekka Enberg5595cff2008-08-05 09:28:47 +03002076static void
2077init_kmem_cache_node(struct kmem_cache_node *n, struct kmem_cache *s)
Christoph Lameter81819f02007-05-06 14:49:36 -07002078{
2079 n->nr_partial = 0;
Christoph Lameter81819f02007-05-06 14:49:36 -07002080 spin_lock_init(&n->list_lock);
2081 INIT_LIST_HEAD(&n->partial);
Christoph Lameter8ab13722007-07-17 04:03:32 -07002082#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter0f389ec2008-04-14 18:53:02 +03002083 atomic_long_set(&n->nr_slabs, 0);
Salman Qazi02b71b72008-09-11 12:25:41 -07002084 atomic_long_set(&n->total_objects, 0);
Christoph Lameter643b1132007-05-06 14:49:42 -07002085 INIT_LIST_HEAD(&n->full);
Christoph Lameter8ab13722007-07-17 04:03:32 -07002086#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07002087}
2088
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06002089static DEFINE_PER_CPU(struct kmem_cache_cpu, kmalloc_percpu[SLUB_PAGE_SHIFT]);
Christoph Lameter4c93c3552007-10-16 01:26:08 -07002090
2091static inline int alloc_kmem_cache_cpus(struct kmem_cache *s, gfp_t flags)
2092{
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06002093 int cpu;
2094
2095 if (s < kmalloc_caches + SLUB_PAGE_SHIFT && s >= kmalloc_caches)
2096 /*
2097 * Boot time creation of the kmalloc array. Use static per cpu data
2098 * since the per cpu allocator is not available yet.
2099 */
2100 s->cpu_slab = per_cpu_var(kmalloc_percpu) + (s - kmalloc_caches);
2101 else
2102 s->cpu_slab = alloc_percpu(struct kmem_cache_cpu);
2103
2104 if (!s->cpu_slab)
2105 return 0;
2106
2107 for_each_possible_cpu(cpu)
2108 init_kmem_cache_cpu(s, per_cpu_ptr(s->cpu_slab, cpu));
Christoph Lameter4c93c3552007-10-16 01:26:08 -07002109 return 1;
2110}
Christoph Lameter4c93c3552007-10-16 01:26:08 -07002111
Christoph Lameter81819f02007-05-06 14:49:36 -07002112#ifdef CONFIG_NUMA
2113/*
2114 * No kmalloc_node yet so do it by hand. We know that this is the first
2115 * slab on the node for this slabcache. There are no concurrent accesses
2116 * possible.
2117 *
2118 * Note that this function only works on the kmalloc_node_cache
Christoph Lameter4c93c3552007-10-16 01:26:08 -07002119 * when allocating for the kmalloc_node_cache. This is used for bootstrapping
2120 * memory on a fresh node that has no slab structures yet.
Christoph Lameter81819f02007-05-06 14:49:36 -07002121 */
David Rientjes0094de92008-11-25 19:14:19 -08002122static void early_kmem_cache_node_alloc(gfp_t gfpflags, int node)
Christoph Lameter81819f02007-05-06 14:49:36 -07002123{
2124 struct page *page;
2125 struct kmem_cache_node *n;
rootba84c732008-01-07 23:20:28 -08002126 unsigned long flags;
Christoph Lameter81819f02007-05-06 14:49:36 -07002127
2128 BUG_ON(kmalloc_caches->size < sizeof(struct kmem_cache_node));
2129
Christoph Lametera2f92ee2007-08-22 14:01:57 -07002130 page = new_slab(kmalloc_caches, gfpflags, node);
Christoph Lameter81819f02007-05-06 14:49:36 -07002131
2132 BUG_ON(!page);
Christoph Lametera2f92ee2007-08-22 14:01:57 -07002133 if (page_to_nid(page) != node) {
2134 printk(KERN_ERR "SLUB: Unable to allocate memory from "
2135 "node %d\n", node);
2136 printk(KERN_ERR "SLUB: Allocating a useless per node structure "
2137 "in order to be able to continue\n");
2138 }
2139
Christoph Lameter81819f02007-05-06 14:49:36 -07002140 n = page->freelist;
2141 BUG_ON(!n);
2142 page->freelist = get_freepointer(kmalloc_caches, n);
2143 page->inuse++;
2144 kmalloc_caches->node[node] = n;
Christoph Lameter8ab13722007-07-17 04:03:32 -07002145#ifdef CONFIG_SLUB_DEBUG
Christoph Lameterd45f39c2007-07-17 04:03:21 -07002146 init_object(kmalloc_caches, n, 1);
2147 init_tracking(kmalloc_caches, n);
Christoph Lameter8ab13722007-07-17 04:03:32 -07002148#endif
Pekka Enberg5595cff2008-08-05 09:28:47 +03002149 init_kmem_cache_node(n, kmalloc_caches);
Christoph Lameter205ab992008-04-14 19:11:40 +03002150 inc_slabs_node(kmalloc_caches, node, page->objects);
Christoph Lameter6446faa2008-02-15 23:45:26 -08002151
rootba84c732008-01-07 23:20:28 -08002152 /*
2153 * lockdep requires consistent irq usage for each lock
2154 * so even though there cannot be a race this early in
2155 * the boot sequence, we still disable irqs.
2156 */
2157 local_irq_save(flags);
Christoph Lameter7c2e1322008-01-07 23:20:27 -08002158 add_partial(n, page, 0);
rootba84c732008-01-07 23:20:28 -08002159 local_irq_restore(flags);
Christoph Lameter81819f02007-05-06 14:49:36 -07002160}
2161
2162static void free_kmem_cache_nodes(struct kmem_cache *s)
2163{
2164 int node;
2165
Christoph Lameterf64dc582007-10-16 01:25:33 -07002166 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002167 struct kmem_cache_node *n = s->node[node];
2168 if (n && n != &s->local_node)
2169 kmem_cache_free(kmalloc_caches, n);
2170 s->node[node] = NULL;
2171 }
2172}
2173
2174static int init_kmem_cache_nodes(struct kmem_cache *s, gfp_t gfpflags)
2175{
2176 int node;
2177 int local_node;
2178
2179 if (slab_state >= UP)
2180 local_node = page_to_nid(virt_to_page(s));
2181 else
2182 local_node = 0;
2183
Christoph Lameterf64dc582007-10-16 01:25:33 -07002184 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002185 struct kmem_cache_node *n;
2186
2187 if (local_node == node)
2188 n = &s->local_node;
2189 else {
2190 if (slab_state == DOWN) {
David Rientjes0094de92008-11-25 19:14:19 -08002191 early_kmem_cache_node_alloc(gfpflags, node);
Christoph Lameter81819f02007-05-06 14:49:36 -07002192 continue;
2193 }
2194 n = kmem_cache_alloc_node(kmalloc_caches,
2195 gfpflags, node);
2196
2197 if (!n) {
2198 free_kmem_cache_nodes(s);
2199 return 0;
2200 }
2201
2202 }
2203 s->node[node] = n;
Pekka Enberg5595cff2008-08-05 09:28:47 +03002204 init_kmem_cache_node(n, s);
Christoph Lameter81819f02007-05-06 14:49:36 -07002205 }
2206 return 1;
2207}
2208#else
2209static void free_kmem_cache_nodes(struct kmem_cache *s)
2210{
2211}
2212
2213static int init_kmem_cache_nodes(struct kmem_cache *s, gfp_t gfpflags)
2214{
Pekka Enberg5595cff2008-08-05 09:28:47 +03002215 init_kmem_cache_node(&s->local_node, s);
Christoph Lameter81819f02007-05-06 14:49:36 -07002216 return 1;
2217}
2218#endif
2219
David Rientjesc0bdb232009-02-25 09:16:35 +02002220static void set_min_partial(struct kmem_cache *s, unsigned long min)
David Rientjes3b89d7d2009-02-22 17:40:07 -08002221{
2222 if (min < MIN_PARTIAL)
2223 min = MIN_PARTIAL;
2224 else if (min > MAX_PARTIAL)
2225 min = MAX_PARTIAL;
2226 s->min_partial = min;
2227}
2228
Christoph Lameter81819f02007-05-06 14:49:36 -07002229/*
2230 * calculate_sizes() determines the order and the distribution of data within
2231 * a slab object.
2232 */
Christoph Lameter06b285d2008-04-14 19:11:41 +03002233static int calculate_sizes(struct kmem_cache *s, int forced_order)
Christoph Lameter81819f02007-05-06 14:49:36 -07002234{
2235 unsigned long flags = s->flags;
2236 unsigned long size = s->objsize;
2237 unsigned long align = s->align;
Christoph Lameter834f3d12008-04-14 19:11:31 +03002238 int order;
Christoph Lameter81819f02007-05-06 14:49:36 -07002239
2240 /*
Christoph Lameterd8b42bf2008-02-15 23:45:25 -08002241 * Round up object size to the next word boundary. We can only
2242 * place the free pointer at word boundaries and this determines
2243 * the possible location of the free pointer.
2244 */
2245 size = ALIGN(size, sizeof(void *));
2246
2247#ifdef CONFIG_SLUB_DEBUG
2248 /*
Christoph Lameter81819f02007-05-06 14:49:36 -07002249 * Determine if we can poison the object itself. If the user of
2250 * the slab may touch the object after free or before allocation
2251 * then we should never poison the object itself.
2252 */
2253 if ((flags & SLAB_POISON) && !(flags & SLAB_DESTROY_BY_RCU) &&
Christoph Lameterc59def9f2007-05-16 22:10:50 -07002254 !s->ctor)
Christoph Lameter81819f02007-05-06 14:49:36 -07002255 s->flags |= __OBJECT_POISON;
2256 else
2257 s->flags &= ~__OBJECT_POISON;
2258
Christoph Lameter81819f02007-05-06 14:49:36 -07002259
2260 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07002261 * If we are Redzoning then check if there is some space between the
Christoph Lameter81819f02007-05-06 14:49:36 -07002262 * end of the object and the free pointer. If not then add an
Christoph Lameter672bba32007-05-09 02:32:39 -07002263 * additional word to have some bytes to store Redzone information.
Christoph Lameter81819f02007-05-06 14:49:36 -07002264 */
2265 if ((flags & SLAB_RED_ZONE) && size == s->objsize)
2266 size += sizeof(void *);
Christoph Lameter41ecc552007-05-09 02:32:44 -07002267#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07002268
2269 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07002270 * With that we have determined the number of bytes in actual use
2271 * by the object. This is the potential offset to the free pointer.
Christoph Lameter81819f02007-05-06 14:49:36 -07002272 */
2273 s->inuse = size;
2274
2275 if (((flags & (SLAB_DESTROY_BY_RCU | SLAB_POISON)) ||
Christoph Lameterc59def9f2007-05-16 22:10:50 -07002276 s->ctor)) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002277 /*
2278 * Relocate free pointer after the object if it is not
2279 * permitted to overwrite the first word of the object on
2280 * kmem_cache_free.
2281 *
2282 * This is the case if we do RCU, have a constructor or
2283 * destructor or are poisoning the objects.
2284 */
2285 s->offset = size;
2286 size += sizeof(void *);
2287 }
2288
Christoph Lameterc12b3c62007-05-23 13:57:31 -07002289#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter81819f02007-05-06 14:49:36 -07002290 if (flags & SLAB_STORE_USER)
2291 /*
2292 * Need to store information about allocs and frees after
2293 * the object.
2294 */
2295 size += 2 * sizeof(struct track);
2296
Christoph Lameterbe7b3fb2007-05-09 02:32:36 -07002297 if (flags & SLAB_RED_ZONE)
Christoph Lameter81819f02007-05-06 14:49:36 -07002298 /*
2299 * Add some empty padding so that we can catch
2300 * overwrites from earlier objects rather than let
2301 * tracking information or the free pointer be
Frederik Schwarzer0211a9c2008-12-29 22:14:56 +01002302 * corrupted if a user writes before the start
Christoph Lameter81819f02007-05-06 14:49:36 -07002303 * of the object.
2304 */
2305 size += sizeof(void *);
Christoph Lameter41ecc552007-05-09 02:32:44 -07002306#endif
Christoph Lameter672bba32007-05-09 02:32:39 -07002307
Christoph Lameter81819f02007-05-06 14:49:36 -07002308 /*
2309 * Determine the alignment based on various parameters that the
Christoph Lameter65c02d42007-05-09 02:32:35 -07002310 * user specified and the dynamic determination of cache line size
2311 * on bootup.
Christoph Lameter81819f02007-05-06 14:49:36 -07002312 */
2313 align = calculate_alignment(flags, align, s->objsize);
Zhang, Yanmindcb0ce12009-07-30 11:28:11 +08002314 s->align = align;
Christoph Lameter81819f02007-05-06 14:49:36 -07002315
2316 /*
2317 * SLUB stores one object immediately after another beginning from
2318 * offset 0. In order to align the objects we have to simply size
2319 * each object to conform to the alignment.
2320 */
2321 size = ALIGN(size, align);
2322 s->size = size;
Christoph Lameter06b285d2008-04-14 19:11:41 +03002323 if (forced_order >= 0)
2324 order = forced_order;
2325 else
2326 order = calculate_order(size);
Christoph Lameter81819f02007-05-06 14:49:36 -07002327
Christoph Lameter834f3d12008-04-14 19:11:31 +03002328 if (order < 0)
Christoph Lameter81819f02007-05-06 14:49:36 -07002329 return 0;
2330
Christoph Lameterb7a49f02008-02-14 14:21:32 -08002331 s->allocflags = 0;
Christoph Lameter834f3d12008-04-14 19:11:31 +03002332 if (order)
Christoph Lameterb7a49f02008-02-14 14:21:32 -08002333 s->allocflags |= __GFP_COMP;
2334
2335 if (s->flags & SLAB_CACHE_DMA)
2336 s->allocflags |= SLUB_DMA;
2337
2338 if (s->flags & SLAB_RECLAIM_ACCOUNT)
2339 s->allocflags |= __GFP_RECLAIMABLE;
2340
Christoph Lameter81819f02007-05-06 14:49:36 -07002341 /*
2342 * Determine the number of objects per slab
2343 */
Christoph Lameter834f3d12008-04-14 19:11:31 +03002344 s->oo = oo_make(order, size);
Christoph Lameter65c33762008-04-14 19:11:40 +03002345 s->min = oo_make(get_order(size), size);
Christoph Lameter205ab992008-04-14 19:11:40 +03002346 if (oo_objects(s->oo) > oo_objects(s->max))
2347 s->max = s->oo;
Christoph Lameter81819f02007-05-06 14:49:36 -07002348
Christoph Lameter834f3d12008-04-14 19:11:31 +03002349 return !!oo_objects(s->oo);
Christoph Lameter81819f02007-05-06 14:49:36 -07002350
2351}
2352
Christoph Lameter81819f02007-05-06 14:49:36 -07002353static int kmem_cache_open(struct kmem_cache *s, gfp_t gfpflags,
2354 const char *name, size_t size,
2355 size_t align, unsigned long flags,
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002356 void (*ctor)(void *))
Christoph Lameter81819f02007-05-06 14:49:36 -07002357{
2358 memset(s, 0, kmem_size);
2359 s->name = name;
2360 s->ctor = ctor;
Christoph Lameter81819f02007-05-06 14:49:36 -07002361 s->objsize = size;
Christoph Lameter81819f02007-05-06 14:49:36 -07002362 s->align = align;
Christoph Lameterba0268a2007-09-11 15:24:11 -07002363 s->flags = kmem_cache_flags(size, flags, name, ctor);
Christoph Lameter81819f02007-05-06 14:49:36 -07002364
Christoph Lameter06b285d2008-04-14 19:11:41 +03002365 if (!calculate_sizes(s, -1))
Christoph Lameter81819f02007-05-06 14:49:36 -07002366 goto error;
David Rientjes3de47212009-07-27 18:30:35 -07002367 if (disable_higher_order_debug) {
2368 /*
2369 * Disable debugging flags that store metadata if the min slab
2370 * order increased.
2371 */
2372 if (get_order(s->size) > get_order(s->objsize)) {
2373 s->flags &= ~DEBUG_METADATA_FLAGS;
2374 s->offset = 0;
2375 if (!calculate_sizes(s, -1))
2376 goto error;
2377 }
2378 }
Christoph Lameter81819f02007-05-06 14:49:36 -07002379
David Rientjes3b89d7d2009-02-22 17:40:07 -08002380 /*
2381 * The larger the object size is, the more pages we want on the partial
2382 * list to avoid pounding the page allocator excessively.
2383 */
David Rientjesc0bdb232009-02-25 09:16:35 +02002384 set_min_partial(s, ilog2(s->size));
Christoph Lameter81819f02007-05-06 14:49:36 -07002385 s->refcount = 1;
2386#ifdef CONFIG_NUMA
Christoph Lametere2cb96b2008-08-19 08:51:22 -05002387 s->remote_node_defrag_ratio = 1000;
Christoph Lameter81819f02007-05-06 14:49:36 -07002388#endif
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002389 if (!init_kmem_cache_nodes(s, gfpflags & ~SLUB_DMA))
2390 goto error;
Christoph Lameter81819f02007-05-06 14:49:36 -07002391
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002392 if (alloc_kmem_cache_cpus(s, gfpflags & ~SLUB_DMA))
Christoph Lameter81819f02007-05-06 14:49:36 -07002393 return 1;
Christoph Lameter4c93c3552007-10-16 01:26:08 -07002394 free_kmem_cache_nodes(s);
Christoph Lameter81819f02007-05-06 14:49:36 -07002395error:
2396 if (flags & SLAB_PANIC)
2397 panic("Cannot create slab %s size=%lu realsize=%u "
2398 "order=%u offset=%u flags=%lx\n",
Christoph Lameter834f3d12008-04-14 19:11:31 +03002399 s->name, (unsigned long)size, s->size, oo_order(s->oo),
Christoph Lameter81819f02007-05-06 14:49:36 -07002400 s->offset, flags);
2401 return 0;
2402}
Christoph Lameter81819f02007-05-06 14:49:36 -07002403
2404/*
2405 * Check if a given pointer is valid
2406 */
2407int kmem_ptr_validate(struct kmem_cache *s, const void *object)
2408{
Pekka Enberg06428782008-01-07 23:20:27 -08002409 struct page *page;
Christoph Lameter81819f02007-05-06 14:49:36 -07002410
2411 page = get_object_page(object);
2412
2413 if (!page || s != page->slab)
2414 /* No slab or wrong slab */
2415 return 0;
2416
Christoph Lameterabcd08a2007-05-09 02:32:37 -07002417 if (!check_valid_pointer(s, page, object))
Christoph Lameter81819f02007-05-06 14:49:36 -07002418 return 0;
2419
2420 /*
2421 * We could also check if the object is on the slabs freelist.
2422 * But this would be too expensive and it seems that the main
Christoph Lameter6446faa2008-02-15 23:45:26 -08002423 * purpose of kmem_ptr_valid() is to check if the object belongs
Christoph Lameter81819f02007-05-06 14:49:36 -07002424 * to a certain slab.
2425 */
2426 return 1;
2427}
2428EXPORT_SYMBOL(kmem_ptr_validate);
2429
2430/*
2431 * Determine the size of a slab object
2432 */
2433unsigned int kmem_cache_size(struct kmem_cache *s)
2434{
2435 return s->objsize;
2436}
2437EXPORT_SYMBOL(kmem_cache_size);
2438
2439const char *kmem_cache_name(struct kmem_cache *s)
2440{
2441 return s->name;
2442}
2443EXPORT_SYMBOL(kmem_cache_name);
2444
Christoph Lameter33b12c32008-04-25 12:22:43 -07002445static void list_slab_objects(struct kmem_cache *s, struct page *page,
2446 const char *text)
Christoph Lameter81819f02007-05-06 14:49:36 -07002447{
Christoph Lameter33b12c32008-04-25 12:22:43 -07002448#ifdef CONFIG_SLUB_DEBUG
2449 void *addr = page_address(page);
2450 void *p;
2451 DECLARE_BITMAP(map, page->objects);
2452
2453 bitmap_zero(map, page->objects);
2454 slab_err(s, page, "%s", text);
2455 slab_lock(page);
2456 for_each_free_object(p, s, page->freelist)
2457 set_bit(slab_index(p, s, addr), map);
2458
2459 for_each_object(p, s, addr, page->objects) {
2460
2461 if (!test_bit(slab_index(p, s, addr), map)) {
2462 printk(KERN_ERR "INFO: Object 0x%p @offset=%tu\n",
2463 p, p - addr);
2464 print_tracking(s, p);
2465 }
2466 }
2467 slab_unlock(page);
2468#endif
2469}
2470
Christoph Lameter81819f02007-05-06 14:49:36 -07002471/*
Christoph Lameter599870b2008-04-23 12:36:52 -07002472 * Attempt to free all partial slabs on a node.
Christoph Lameter81819f02007-05-06 14:49:36 -07002473 */
Christoph Lameter599870b2008-04-23 12:36:52 -07002474static void free_partial(struct kmem_cache *s, struct kmem_cache_node *n)
Christoph Lameter81819f02007-05-06 14:49:36 -07002475{
Christoph Lameter81819f02007-05-06 14:49:36 -07002476 unsigned long flags;
2477 struct page *page, *h;
2478
2479 spin_lock_irqsave(&n->list_lock, flags);
Christoph Lameter33b12c32008-04-25 12:22:43 -07002480 list_for_each_entry_safe(page, h, &n->partial, lru) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002481 if (!page->inuse) {
2482 list_del(&page->lru);
2483 discard_slab(s, page);
Christoph Lameter599870b2008-04-23 12:36:52 -07002484 n->nr_partial--;
Christoph Lameter33b12c32008-04-25 12:22:43 -07002485 } else {
2486 list_slab_objects(s, page,
2487 "Objects remaining on kmem_cache_close()");
Christoph Lameter599870b2008-04-23 12:36:52 -07002488 }
Christoph Lameter33b12c32008-04-25 12:22:43 -07002489 }
Christoph Lameter81819f02007-05-06 14:49:36 -07002490 spin_unlock_irqrestore(&n->list_lock, flags);
Christoph Lameter81819f02007-05-06 14:49:36 -07002491}
2492
2493/*
Christoph Lameter672bba32007-05-09 02:32:39 -07002494 * Release all resources used by a slab cache.
Christoph Lameter81819f02007-05-06 14:49:36 -07002495 */
Christoph Lameter0c710012007-07-17 04:03:24 -07002496static inline int kmem_cache_close(struct kmem_cache *s)
Christoph Lameter81819f02007-05-06 14:49:36 -07002497{
2498 int node;
2499
2500 flush_all(s);
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06002501 free_percpu(s->cpu_slab);
Christoph Lameter81819f02007-05-06 14:49:36 -07002502 /* Attempt to free all objects */
Christoph Lameterf64dc582007-10-16 01:25:33 -07002503 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002504 struct kmem_cache_node *n = get_node(s, node);
2505
Christoph Lameter599870b2008-04-23 12:36:52 -07002506 free_partial(s, n);
2507 if (n->nr_partial || slabs_node(s, node))
Christoph Lameter81819f02007-05-06 14:49:36 -07002508 return 1;
2509 }
2510 free_kmem_cache_nodes(s);
2511 return 0;
2512}
2513
2514/*
2515 * Close a cache and release the kmem_cache structure
2516 * (must be used for caches created using kmem_cache_create)
2517 */
2518void kmem_cache_destroy(struct kmem_cache *s)
2519{
2520 down_write(&slub_lock);
2521 s->refcount--;
2522 if (!s->refcount) {
2523 list_del(&s->list);
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07002524 up_write(&slub_lock);
Pekka Enbergd629d812008-04-23 22:31:08 +03002525 if (kmem_cache_close(s)) {
2526 printk(KERN_ERR "SLUB %s: %s called for cache that "
2527 "still has objects.\n", s->name, __func__);
2528 dump_stack();
2529 }
Eric Dumazetd76b1592009-09-03 22:38:59 +03002530 if (s->flags & SLAB_DESTROY_BY_RCU)
2531 rcu_barrier();
Christoph Lameter81819f02007-05-06 14:49:36 -07002532 sysfs_slab_remove(s);
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07002533 } else
2534 up_write(&slub_lock);
Christoph Lameter81819f02007-05-06 14:49:36 -07002535}
2536EXPORT_SYMBOL(kmem_cache_destroy);
2537
2538/********************************************************************
2539 * Kmalloc subsystem
2540 *******************************************************************/
2541
Christoph Lameterffadd4d2009-02-17 12:05:07 -05002542struct kmem_cache kmalloc_caches[SLUB_PAGE_SHIFT] __cacheline_aligned;
Christoph Lameter81819f02007-05-06 14:49:36 -07002543EXPORT_SYMBOL(kmalloc_caches);
2544
Christoph Lameter81819f02007-05-06 14:49:36 -07002545static int __init setup_slub_min_order(char *str)
2546{
Pekka Enberg06428782008-01-07 23:20:27 -08002547 get_option(&str, &slub_min_order);
Christoph Lameter81819f02007-05-06 14:49:36 -07002548
2549 return 1;
2550}
2551
2552__setup("slub_min_order=", setup_slub_min_order);
2553
2554static int __init setup_slub_max_order(char *str)
2555{
Pekka Enberg06428782008-01-07 23:20:27 -08002556 get_option(&str, &slub_max_order);
David Rientjes818cf592009-04-23 09:58:22 +03002557 slub_max_order = min(slub_max_order, MAX_ORDER - 1);
Christoph Lameter81819f02007-05-06 14:49:36 -07002558
2559 return 1;
2560}
2561
2562__setup("slub_max_order=", setup_slub_max_order);
2563
2564static int __init setup_slub_min_objects(char *str)
2565{
Pekka Enberg06428782008-01-07 23:20:27 -08002566 get_option(&str, &slub_min_objects);
Christoph Lameter81819f02007-05-06 14:49:36 -07002567
2568 return 1;
2569}
2570
2571__setup("slub_min_objects=", setup_slub_min_objects);
2572
2573static int __init setup_slub_nomerge(char *str)
2574{
2575 slub_nomerge = 1;
2576 return 1;
2577}
2578
2579__setup("slub_nomerge", setup_slub_nomerge);
2580
Christoph Lameter81819f02007-05-06 14:49:36 -07002581static struct kmem_cache *create_kmalloc_cache(struct kmem_cache *s,
2582 const char *name, int size, gfp_t gfp_flags)
2583{
2584 unsigned int flags = 0;
2585
2586 if (gfp_flags & SLUB_DMA)
2587 flags = SLAB_CACHE_DMA;
2588
Pekka Enberg83b519e2009-06-10 19:40:04 +03002589 /*
2590 * This function is called with IRQs disabled during early-boot on
2591 * single CPU so there's no need to take slub_lock here.
2592 */
Christoph Lameter81819f02007-05-06 14:49:36 -07002593 if (!kmem_cache_open(s, gfp_flags, name, size, ARCH_KMALLOC_MINALIGN,
Christoph Lameter319d1e22008-04-14 19:11:41 +03002594 flags, NULL))
Christoph Lameter81819f02007-05-06 14:49:36 -07002595 goto panic;
2596
2597 list_add(&s->list, &slab_caches);
Pekka Enberg83b519e2009-06-10 19:40:04 +03002598
Christoph Lameter81819f02007-05-06 14:49:36 -07002599 if (sysfs_slab_add(s))
2600 goto panic;
2601 return s;
2602
2603panic:
2604 panic("Creation of kmalloc slab %s size=%d failed.\n", name, size);
2605}
2606
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002607#ifdef CONFIG_ZONE_DMA
Christoph Lameterffadd4d2009-02-17 12:05:07 -05002608static struct kmem_cache *kmalloc_caches_dma[SLUB_PAGE_SHIFT];
Christoph Lameter1ceef402007-08-07 15:11:48 -07002609
2610static void sysfs_add_func(struct work_struct *w)
2611{
2612 struct kmem_cache *s;
2613
2614 down_write(&slub_lock);
2615 list_for_each_entry(s, &slab_caches, list) {
2616 if (s->flags & __SYSFS_ADD_DEFERRED) {
2617 s->flags &= ~__SYSFS_ADD_DEFERRED;
2618 sysfs_slab_add(s);
2619 }
2620 }
2621 up_write(&slub_lock);
2622}
2623
2624static DECLARE_WORK(sysfs_add_work, sysfs_add_func);
2625
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002626static noinline struct kmem_cache *dma_kmalloc_cache(int index, gfp_t flags)
2627{
2628 struct kmem_cache *s;
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002629 char *text;
2630 size_t realsize;
Nick Piggin964cf352009-06-15 13:35:10 +03002631 unsigned long slabflags;
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002632
2633 s = kmalloc_caches_dma[index];
2634 if (s)
2635 return s;
2636
2637 /* Dynamically create dma cache */
Christoph Lameter1ceef402007-08-07 15:11:48 -07002638 if (flags & __GFP_WAIT)
2639 down_write(&slub_lock);
2640 else {
2641 if (!down_write_trylock(&slub_lock))
2642 goto out;
2643 }
2644
2645 if (kmalloc_caches_dma[index])
2646 goto unlock_out;
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002647
Christoph Lameter7b55f622007-07-17 04:03:27 -07002648 realsize = kmalloc_caches[index].objsize;
Ingo Molnar3adbefe2008-02-05 17:57:39 -08002649 text = kasprintf(flags & ~SLUB_DMA, "kmalloc_dma-%d",
2650 (unsigned int)realsize);
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06002651
2652 if (flags & __GFP_WAIT)
2653 s = kmalloc(kmem_size, flags & ~SLUB_DMA);
2654 else {
2655 int i;
2656
2657 s = NULL;
2658 for (i = 0; i < SLUB_PAGE_SHIFT; i++)
2659 if (kmalloc_caches[i].size) {
2660 s = kmalloc_caches + i;
2661 break;
2662 }
2663 }
Christoph Lameter1ceef402007-08-07 15:11:48 -07002664
Nick Piggin964cf352009-06-15 13:35:10 +03002665 /*
2666 * Must defer sysfs creation to a workqueue because we don't know
2667 * what context we are called from. Before sysfs comes up, we don't
2668 * need to do anything because our sysfs initcall will start by
2669 * adding all existing slabs to sysfs.
2670 */
Pekka Enberg5caf5c72009-06-17 08:30:54 +03002671 slabflags = SLAB_CACHE_DMA|SLAB_NOTRACK;
Nick Piggin964cf352009-06-15 13:35:10 +03002672 if (slab_state >= SYSFS)
2673 slabflags |= __SYSFS_ADD_DEFERRED;
2674
Christoph Lameter1ceef402007-08-07 15:11:48 -07002675 if (!s || !text || !kmem_cache_open(s, flags, text,
Nick Piggin964cf352009-06-15 13:35:10 +03002676 realsize, ARCH_KMALLOC_MINALIGN, slabflags, NULL)) {
Christoph Lameter1ceef402007-08-07 15:11:48 -07002677 kfree(s);
2678 kfree(text);
2679 goto unlock_out;
Christoph Lameterdfce8642007-07-17 04:03:25 -07002680 }
Christoph Lameter1ceef402007-08-07 15:11:48 -07002681
2682 list_add(&s->list, &slab_caches);
2683 kmalloc_caches_dma[index] = s;
2684
Nick Piggin964cf352009-06-15 13:35:10 +03002685 if (slab_state >= SYSFS)
2686 schedule_work(&sysfs_add_work);
Christoph Lameter1ceef402007-08-07 15:11:48 -07002687
2688unlock_out:
Christoph Lameterdfce8642007-07-17 04:03:25 -07002689 up_write(&slub_lock);
Christoph Lameter1ceef402007-08-07 15:11:48 -07002690out:
Christoph Lameterdfce8642007-07-17 04:03:25 -07002691 return kmalloc_caches_dma[index];
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002692}
2693#endif
2694
Christoph Lameterf1b26332007-07-17 04:03:26 -07002695/*
2696 * Conversion table for small slabs sizes / 8 to the index in the
2697 * kmalloc array. This is necessary for slabs < 192 since we have non power
2698 * of two cache sizes there. The size of larger slabs can be determined using
2699 * fls.
2700 */
2701static s8 size_index[24] = {
2702 3, /* 8 */
2703 4, /* 16 */
2704 5, /* 24 */
2705 5, /* 32 */
2706 6, /* 40 */
2707 6, /* 48 */
2708 6, /* 56 */
2709 6, /* 64 */
2710 1, /* 72 */
2711 1, /* 80 */
2712 1, /* 88 */
2713 1, /* 96 */
2714 7, /* 104 */
2715 7, /* 112 */
2716 7, /* 120 */
2717 7, /* 128 */
2718 2, /* 136 */
2719 2, /* 144 */
2720 2, /* 152 */
2721 2, /* 160 */
2722 2, /* 168 */
2723 2, /* 176 */
2724 2, /* 184 */
2725 2 /* 192 */
2726};
2727
Aaro Koskinenacdfcd02009-08-28 14:28:54 +03002728static inline int size_index_elem(size_t bytes)
2729{
2730 return (bytes - 1) / 8;
2731}
2732
Christoph Lameter81819f02007-05-06 14:49:36 -07002733static struct kmem_cache *get_slab(size_t size, gfp_t flags)
2734{
Christoph Lameterf1b26332007-07-17 04:03:26 -07002735 int index;
Christoph Lameter81819f02007-05-06 14:49:36 -07002736
Christoph Lameterf1b26332007-07-17 04:03:26 -07002737 if (size <= 192) {
2738 if (!size)
2739 return ZERO_SIZE_PTR;
Christoph Lameter81819f02007-05-06 14:49:36 -07002740
Aaro Koskinenacdfcd02009-08-28 14:28:54 +03002741 index = size_index[size_index_elem(size)];
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002742 } else
Christoph Lameterf1b26332007-07-17 04:03:26 -07002743 index = fls(size - 1);
Christoph Lameter81819f02007-05-06 14:49:36 -07002744
2745#ifdef CONFIG_ZONE_DMA
Christoph Lameterf1b26332007-07-17 04:03:26 -07002746 if (unlikely((flags & SLUB_DMA)))
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002747 return dma_kmalloc_cache(index, flags);
Christoph Lameterf1b26332007-07-17 04:03:26 -07002748
Christoph Lameter81819f02007-05-06 14:49:36 -07002749#endif
2750 return &kmalloc_caches[index];
2751}
2752
2753void *__kmalloc(size_t size, gfp_t flags)
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
Christoph Lameterffadd4d2009-02-17 12:05:07 -05002758 if (unlikely(size > SLUB_MAX_SIZE))
Pekka Enbergeada35e2008-02-11 22:47:46 +02002759 return kmalloc_large(size, flags);
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002760
2761 s = get_slab(size, flags);
2762
2763 if (unlikely(ZERO_OR_NULL_PTR(s)))
Christoph Lameter6cb8f912007-07-17 04:03:22 -07002764 return s;
2765
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002766 ret = slab_alloc(s, flags, -1, _RET_IP_);
2767
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02002768 trace_kmalloc(_RET_IP_, ret, size, s->size, flags);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002769
2770 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07002771}
2772EXPORT_SYMBOL(__kmalloc);
2773
Christoph Lameterf619cfe2008-03-01 13:56:40 -08002774static void *kmalloc_large_node(size_t size, gfp_t flags, int node)
2775{
Vegard Nossumb1eeab62008-11-25 16:55:53 +01002776 struct page *page;
Catalin Marinase4f7c0b42009-07-07 10:32:59 +01002777 void *ptr = NULL;
Christoph Lameterf619cfe2008-03-01 13:56:40 -08002778
Vegard Nossumb1eeab62008-11-25 16:55:53 +01002779 flags |= __GFP_COMP | __GFP_NOTRACK;
2780 page = alloc_pages_node(node, flags, get_order(size));
Christoph Lameterf619cfe2008-03-01 13:56:40 -08002781 if (page)
Catalin Marinase4f7c0b42009-07-07 10:32:59 +01002782 ptr = page_address(page);
2783
2784 kmemleak_alloc(ptr, size, 1, flags);
2785 return ptr;
Christoph Lameterf619cfe2008-03-01 13:56:40 -08002786}
2787
Christoph Lameter81819f02007-05-06 14:49:36 -07002788#ifdef CONFIG_NUMA
2789void *__kmalloc_node(size_t size, gfp_t flags, int node)
2790{
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002791 struct kmem_cache *s;
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002792 void *ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07002793
Ingo Molnar057685c2009-02-20 12:15:30 +01002794 if (unlikely(size > SLUB_MAX_SIZE)) {
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002795 ret = kmalloc_large_node(size, flags, node);
2796
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02002797 trace_kmalloc_node(_RET_IP_, ret,
2798 size, PAGE_SIZE << get_order(size),
2799 flags, node);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002800
2801 return ret;
2802 }
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002803
2804 s = get_slab(size, flags);
2805
2806 if (unlikely(ZERO_OR_NULL_PTR(s)))
Christoph Lameter6cb8f912007-07-17 04:03:22 -07002807 return s;
2808
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002809 ret = slab_alloc(s, flags, node, _RET_IP_);
2810
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02002811 trace_kmalloc_node(_RET_IP_, ret, size, s->size, flags, node);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002812
2813 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07002814}
2815EXPORT_SYMBOL(__kmalloc_node);
2816#endif
2817
2818size_t ksize(const void *object)
2819{
Christoph Lameter272c1d22007-06-08 13:46:49 -07002820 struct page *page;
Christoph Lameter81819f02007-05-06 14:49:36 -07002821 struct kmem_cache *s;
2822
Christoph Lameteref8b4522007-10-16 01:24:46 -07002823 if (unlikely(object == ZERO_SIZE_PTR))
Christoph Lameter272c1d22007-06-08 13:46:49 -07002824 return 0;
2825
Vegard Nossum294a80a2007-12-04 23:45:30 -08002826 page = virt_to_head_page(object);
Vegard Nossum294a80a2007-12-04 23:45:30 -08002827
Pekka Enberg76994412008-05-22 19:22:25 +03002828 if (unlikely(!PageSlab(page))) {
2829 WARN_ON(!PageCompound(page));
Vegard Nossum294a80a2007-12-04 23:45:30 -08002830 return PAGE_SIZE << compound_order(page);
Pekka Enberg76994412008-05-22 19:22:25 +03002831 }
Christoph Lameter81819f02007-05-06 14:49:36 -07002832 s = page->slab;
Christoph Lameter81819f02007-05-06 14:49:36 -07002833
Christoph Lameterae20bfd2008-02-15 23:45:25 -08002834#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter81819f02007-05-06 14:49:36 -07002835 /*
2836 * Debugging requires use of the padding between object
2837 * and whatever may come after it.
2838 */
2839 if (s->flags & (SLAB_RED_ZONE | SLAB_POISON))
2840 return s->objsize;
2841
Christoph Lameterae20bfd2008-02-15 23:45:25 -08002842#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07002843 /*
2844 * If we have the need to store the freelist pointer
2845 * back there or track user information then we can
2846 * only use the space before that information.
2847 */
2848 if (s->flags & (SLAB_DESTROY_BY_RCU | SLAB_STORE_USER))
2849 return s->inuse;
Christoph Lameter81819f02007-05-06 14:49:36 -07002850 /*
2851 * Else we can use all the padding etc for the allocation
2852 */
2853 return s->size;
2854}
Kirill A. Shutemovb1aabec2009-02-10 15:21:44 +02002855EXPORT_SYMBOL(ksize);
Christoph Lameter81819f02007-05-06 14:49:36 -07002856
2857void kfree(const void *x)
2858{
Christoph Lameter81819f02007-05-06 14:49:36 -07002859 struct page *page;
Christoph Lameter5bb983b2008-02-07 17:47:41 -08002860 void *object = (void *)x;
Christoph Lameter81819f02007-05-06 14:49:36 -07002861
Pekka Enberg2121db72009-03-25 11:05:57 +02002862 trace_kfree(_RET_IP_, x);
2863
Satyam Sharma2408c552007-10-16 01:24:44 -07002864 if (unlikely(ZERO_OR_NULL_PTR(x)))
Christoph Lameter81819f02007-05-06 14:49:36 -07002865 return;
2866
Christoph Lameterb49af682007-05-06 14:49:41 -07002867 page = virt_to_head_page(x);
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002868 if (unlikely(!PageSlab(page))) {
Christoph Lameter09375022008-05-28 10:32:22 -07002869 BUG_ON(!PageCompound(page));
Catalin Marinase4f7c0b42009-07-07 10:32:59 +01002870 kmemleak_free(x);
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002871 put_page(page);
2872 return;
2873 }
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03002874 slab_free(page->slab, page, object, _RET_IP_);
Christoph Lameter81819f02007-05-06 14:49:36 -07002875}
2876EXPORT_SYMBOL(kfree);
2877
Christoph Lameter2086d262007-05-06 14:49:46 -07002878/*
Christoph Lameter672bba32007-05-09 02:32:39 -07002879 * kmem_cache_shrink removes empty slabs from the partial lists and sorts
2880 * the remaining slabs by the number of items in use. The slabs with the
2881 * most items in use come first. New allocations will then fill those up
2882 * and thus they can be removed from the partial lists.
2883 *
2884 * The slabs with the least items are placed last. This results in them
2885 * being allocated from last increasing the chance that the last objects
2886 * are freed in them.
Christoph Lameter2086d262007-05-06 14:49:46 -07002887 */
2888int kmem_cache_shrink(struct kmem_cache *s)
2889{
2890 int node;
2891 int i;
2892 struct kmem_cache_node *n;
2893 struct page *page;
2894 struct page *t;
Christoph Lameter205ab992008-04-14 19:11:40 +03002895 int objects = oo_objects(s->max);
Christoph Lameter2086d262007-05-06 14:49:46 -07002896 struct list_head *slabs_by_inuse =
Christoph Lameter834f3d12008-04-14 19:11:31 +03002897 kmalloc(sizeof(struct list_head) * objects, GFP_KERNEL);
Christoph Lameter2086d262007-05-06 14:49:46 -07002898 unsigned long flags;
2899
2900 if (!slabs_by_inuse)
2901 return -ENOMEM;
2902
2903 flush_all(s);
Christoph Lameterf64dc582007-10-16 01:25:33 -07002904 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter2086d262007-05-06 14:49:46 -07002905 n = get_node(s, node);
2906
2907 if (!n->nr_partial)
2908 continue;
2909
Christoph Lameter834f3d12008-04-14 19:11:31 +03002910 for (i = 0; i < objects; i++)
Christoph Lameter2086d262007-05-06 14:49:46 -07002911 INIT_LIST_HEAD(slabs_by_inuse + i);
2912
2913 spin_lock_irqsave(&n->list_lock, flags);
2914
2915 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07002916 * Build lists indexed by the items in use in each slab.
Christoph Lameter2086d262007-05-06 14:49:46 -07002917 *
Christoph Lameter672bba32007-05-09 02:32:39 -07002918 * Note that concurrent frees may occur while we hold the
2919 * list_lock. page->inuse here is the upper limit.
Christoph Lameter2086d262007-05-06 14:49:46 -07002920 */
2921 list_for_each_entry_safe(page, t, &n->partial, lru) {
2922 if (!page->inuse && slab_trylock(page)) {
2923 /*
2924 * Must hold slab lock here because slab_free
2925 * may have freed the last object and be
2926 * waiting to release the slab.
2927 */
2928 list_del(&page->lru);
2929 n->nr_partial--;
2930 slab_unlock(page);
2931 discard_slab(s, page);
2932 } else {
Christoph Lameterfcda3d82007-07-30 13:06:46 -07002933 list_move(&page->lru,
2934 slabs_by_inuse + page->inuse);
Christoph Lameter2086d262007-05-06 14:49:46 -07002935 }
2936 }
2937
Christoph Lameter2086d262007-05-06 14:49:46 -07002938 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07002939 * Rebuild the partial list with the slabs filled up most
2940 * first and the least used slabs at the end.
Christoph Lameter2086d262007-05-06 14:49:46 -07002941 */
Christoph Lameter834f3d12008-04-14 19:11:31 +03002942 for (i = objects - 1; i >= 0; i--)
Christoph Lameter2086d262007-05-06 14:49:46 -07002943 list_splice(slabs_by_inuse + i, n->partial.prev);
2944
Christoph Lameter2086d262007-05-06 14:49:46 -07002945 spin_unlock_irqrestore(&n->list_lock, flags);
2946 }
2947
2948 kfree(slabs_by_inuse);
2949 return 0;
2950}
2951EXPORT_SYMBOL(kmem_cache_shrink);
2952
Yasunori Gotob9049e22007-10-21 16:41:37 -07002953#if defined(CONFIG_NUMA) && defined(CONFIG_MEMORY_HOTPLUG)
2954static int slab_mem_going_offline_callback(void *arg)
2955{
2956 struct kmem_cache *s;
2957
2958 down_read(&slub_lock);
2959 list_for_each_entry(s, &slab_caches, list)
2960 kmem_cache_shrink(s);
2961 up_read(&slub_lock);
2962
2963 return 0;
2964}
2965
2966static void slab_mem_offline_callback(void *arg)
2967{
2968 struct kmem_cache_node *n;
2969 struct kmem_cache *s;
2970 struct memory_notify *marg = arg;
2971 int offline_node;
2972
2973 offline_node = marg->status_change_nid;
2974
2975 /*
2976 * If the node still has available memory. we need kmem_cache_node
2977 * for it yet.
2978 */
2979 if (offline_node < 0)
2980 return;
2981
2982 down_read(&slub_lock);
2983 list_for_each_entry(s, &slab_caches, list) {
2984 n = get_node(s, offline_node);
2985 if (n) {
2986 /*
2987 * if n->nr_slabs > 0, slabs still exist on the node
2988 * that is going down. We were unable to free them,
2989 * and offline_pages() function shoudn't call this
2990 * callback. So, we must fail.
2991 */
Christoph Lameter0f389ec2008-04-14 18:53:02 +03002992 BUG_ON(slabs_node(s, offline_node));
Yasunori Gotob9049e22007-10-21 16:41:37 -07002993
2994 s->node[offline_node] = NULL;
2995 kmem_cache_free(kmalloc_caches, n);
2996 }
2997 }
2998 up_read(&slub_lock);
2999}
3000
3001static int slab_mem_going_online_callback(void *arg)
3002{
3003 struct kmem_cache_node *n;
3004 struct kmem_cache *s;
3005 struct memory_notify *marg = arg;
3006 int nid = marg->status_change_nid;
3007 int ret = 0;
3008
3009 /*
3010 * If the node's memory is already available, then kmem_cache_node is
3011 * already created. Nothing to do.
3012 */
3013 if (nid < 0)
3014 return 0;
3015
3016 /*
Christoph Lameter0121c6192008-04-29 16:11:12 -07003017 * We are bringing a node online. No memory is available yet. We must
Yasunori Gotob9049e22007-10-21 16:41:37 -07003018 * allocate a kmem_cache_node structure in order to bring the node
3019 * online.
3020 */
3021 down_read(&slub_lock);
3022 list_for_each_entry(s, &slab_caches, list) {
3023 /*
3024 * XXX: kmem_cache_alloc_node will fallback to other nodes
3025 * since memory is not yet available from the node that
3026 * is brought up.
3027 */
3028 n = kmem_cache_alloc(kmalloc_caches, GFP_KERNEL);
3029 if (!n) {
3030 ret = -ENOMEM;
3031 goto out;
3032 }
Pekka Enberg5595cff2008-08-05 09:28:47 +03003033 init_kmem_cache_node(n, s);
Yasunori Gotob9049e22007-10-21 16:41:37 -07003034 s->node[nid] = n;
3035 }
3036out:
3037 up_read(&slub_lock);
3038 return ret;
3039}
3040
3041static int slab_memory_callback(struct notifier_block *self,
3042 unsigned long action, void *arg)
3043{
3044 int ret = 0;
3045
3046 switch (action) {
3047 case MEM_GOING_ONLINE:
3048 ret = slab_mem_going_online_callback(arg);
3049 break;
3050 case MEM_GOING_OFFLINE:
3051 ret = slab_mem_going_offline_callback(arg);
3052 break;
3053 case MEM_OFFLINE:
3054 case MEM_CANCEL_ONLINE:
3055 slab_mem_offline_callback(arg);
3056 break;
3057 case MEM_ONLINE:
3058 case MEM_CANCEL_OFFLINE:
3059 break;
3060 }
KAMEZAWA Hiroyukidc19f9d2008-12-01 13:13:48 -08003061 if (ret)
3062 ret = notifier_from_errno(ret);
3063 else
3064 ret = NOTIFY_OK;
Yasunori Gotob9049e22007-10-21 16:41:37 -07003065 return ret;
3066}
3067
3068#endif /* CONFIG_MEMORY_HOTPLUG */
3069
Christoph Lameter81819f02007-05-06 14:49:36 -07003070/********************************************************************
3071 * Basic setup of slabs
3072 *******************************************************************/
3073
3074void __init kmem_cache_init(void)
3075{
3076 int i;
Christoph Lameter4b356be2007-06-16 10:16:13 -07003077 int caches = 0;
Christoph Lameter81819f02007-05-06 14:49:36 -07003078
3079#ifdef CONFIG_NUMA
3080 /*
3081 * Must first have the slab cache available for the allocations of the
Christoph Lameter672bba32007-05-09 02:32:39 -07003082 * struct kmem_cache_node's. There is special bootstrap code in
Christoph Lameter81819f02007-05-06 14:49:36 -07003083 * kmem_cache_open for slab_state == DOWN.
3084 */
3085 create_kmalloc_cache(&kmalloc_caches[0], "kmem_cache_node",
Pekka Enberg83b519e2009-06-10 19:40:04 +03003086 sizeof(struct kmem_cache_node), GFP_NOWAIT);
Christoph Lameter8ffa6872007-05-31 00:40:51 -07003087 kmalloc_caches[0].refcount = -1;
Christoph Lameter4b356be2007-06-16 10:16:13 -07003088 caches++;
Yasunori Gotob9049e22007-10-21 16:41:37 -07003089
Nadia Derbey0c40ba42008-04-29 01:00:41 -07003090 hotplug_memory_notifier(slab_memory_callback, SLAB_CALLBACK_PRI);
Christoph Lameter81819f02007-05-06 14:49:36 -07003091#endif
3092
3093 /* Able to allocate the per node structures */
3094 slab_state = PARTIAL;
3095
3096 /* Caches that are not of the two-to-the-power-of size */
Aaro Koskinenacdfcd02009-08-28 14:28:54 +03003097 if (KMALLOC_MIN_SIZE <= 32) {
Christoph Lameter4b356be2007-06-16 10:16:13 -07003098 create_kmalloc_cache(&kmalloc_caches[1],
Pekka Enberg83b519e2009-06-10 19:40:04 +03003099 "kmalloc-96", 96, GFP_NOWAIT);
Christoph Lameter4b356be2007-06-16 10:16:13 -07003100 caches++;
Aaro Koskinenacdfcd02009-08-28 14:28:54 +03003101 }
3102 if (KMALLOC_MIN_SIZE <= 64) {
Christoph Lameter4b356be2007-06-16 10:16:13 -07003103 create_kmalloc_cache(&kmalloc_caches[2],
Pekka Enberg83b519e2009-06-10 19:40:04 +03003104 "kmalloc-192", 192, GFP_NOWAIT);
Christoph Lameter4b356be2007-06-16 10:16:13 -07003105 caches++;
3106 }
Christoph Lameter81819f02007-05-06 14:49:36 -07003107
Christoph Lameterffadd4d2009-02-17 12:05:07 -05003108 for (i = KMALLOC_SHIFT_LOW; i < SLUB_PAGE_SHIFT; i++) {
Christoph Lameter81819f02007-05-06 14:49:36 -07003109 create_kmalloc_cache(&kmalloc_caches[i],
Pekka Enberg83b519e2009-06-10 19:40:04 +03003110 "kmalloc", 1 << i, GFP_NOWAIT);
Christoph Lameter4b356be2007-06-16 10:16:13 -07003111 caches++;
3112 }
Christoph Lameter81819f02007-05-06 14:49:36 -07003113
Christoph Lameterf1b26332007-07-17 04:03:26 -07003114
3115 /*
3116 * Patch up the size_index table if we have strange large alignment
3117 * requirements for the kmalloc array. This is only the case for
Christoph Lameter6446faa2008-02-15 23:45:26 -08003118 * MIPS it seems. The standard arches will not generate any code here.
Christoph Lameterf1b26332007-07-17 04:03:26 -07003119 *
3120 * Largest permitted alignment is 256 bytes due to the way we
3121 * handle the index determination for the smaller caches.
3122 *
3123 * Make sure that nothing crazy happens if someone starts tinkering
3124 * around with ARCH_KMALLOC_MINALIGN
3125 */
3126 BUILD_BUG_ON(KMALLOC_MIN_SIZE > 256 ||
3127 (KMALLOC_MIN_SIZE & (KMALLOC_MIN_SIZE - 1)));
3128
Aaro Koskinenacdfcd02009-08-28 14:28:54 +03003129 for (i = 8; i < KMALLOC_MIN_SIZE; i += 8) {
3130 int elem = size_index_elem(i);
3131 if (elem >= ARRAY_SIZE(size_index))
3132 break;
3133 size_index[elem] = KMALLOC_SHIFT_LOW;
3134 }
Christoph Lameterf1b26332007-07-17 04:03:26 -07003135
Aaro Koskinenacdfcd02009-08-28 14:28:54 +03003136 if (KMALLOC_MIN_SIZE == 64) {
3137 /*
3138 * The 96 byte size cache is not used if the alignment
3139 * is 64 byte.
3140 */
3141 for (i = 64 + 8; i <= 96; i += 8)
3142 size_index[size_index_elem(i)] = 7;
3143 } else if (KMALLOC_MIN_SIZE == 128) {
Christoph Lameter41d54d32008-07-03 09:14:26 -05003144 /*
3145 * The 192 byte sized cache is not used if the alignment
3146 * is 128 byte. Redirect kmalloc to use the 256 byte cache
3147 * instead.
3148 */
3149 for (i = 128 + 8; i <= 192; i += 8)
Aaro Koskinenacdfcd02009-08-28 14:28:54 +03003150 size_index[size_index_elem(i)] = 8;
Christoph Lameter41d54d32008-07-03 09:14:26 -05003151 }
3152
Christoph Lameter81819f02007-05-06 14:49:36 -07003153 slab_state = UP;
3154
3155 /* Provide the correct kmalloc names now that the caches are up */
Christoph Lameterffadd4d2009-02-17 12:05:07 -05003156 for (i = KMALLOC_SHIFT_LOW; i < SLUB_PAGE_SHIFT; i++)
Christoph Lameter81819f02007-05-06 14:49:36 -07003157 kmalloc_caches[i]. name =
Pekka Enberg83b519e2009-06-10 19:40:04 +03003158 kasprintf(GFP_NOWAIT, "kmalloc-%d", 1 << i);
Christoph Lameter81819f02007-05-06 14:49:36 -07003159
3160#ifdef CONFIG_SMP
3161 register_cpu_notifier(&slab_notifier);
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06003162#endif
3163#ifdef CONFIG_NUMA
3164 kmem_size = offsetof(struct kmem_cache, node) +
3165 nr_node_ids * sizeof(struct kmem_cache_node *);
Christoph Lameter4c93c3552007-10-16 01:26:08 -07003166#else
3167 kmem_size = sizeof(struct kmem_cache);
Christoph Lameter81819f02007-05-06 14:49:36 -07003168#endif
3169
Ingo Molnar3adbefe2008-02-05 17:57:39 -08003170 printk(KERN_INFO
3171 "SLUB: Genslabs=%d, HWalign=%d, Order=%d-%d, MinObjects=%d,"
Christoph Lameter4b356be2007-06-16 10:16:13 -07003172 " CPUs=%d, Nodes=%d\n",
3173 caches, cache_line_size(),
Christoph Lameter81819f02007-05-06 14:49:36 -07003174 slub_min_order, slub_max_order, slub_min_objects,
3175 nr_cpu_ids, nr_node_ids);
3176}
3177
Pekka Enberg7e85ee02009-06-12 14:03:06 +03003178void __init kmem_cache_init_late(void)
3179{
Pekka Enberg7e85ee02009-06-12 14:03:06 +03003180}
3181
Christoph Lameter81819f02007-05-06 14:49:36 -07003182/*
3183 * Find a mergeable slab cache
3184 */
3185static int slab_unmergeable(struct kmem_cache *s)
3186{
3187 if (slub_nomerge || (s->flags & SLUB_NEVER_MERGE))
3188 return 1;
3189
Christoph Lameterc59def9f2007-05-16 22:10:50 -07003190 if (s->ctor)
Christoph Lameter81819f02007-05-06 14:49:36 -07003191 return 1;
3192
Christoph Lameter8ffa6872007-05-31 00:40:51 -07003193 /*
3194 * We may have set a slab to be unmergeable during bootstrap.
3195 */
3196 if (s->refcount < 0)
3197 return 1;
3198
Christoph Lameter81819f02007-05-06 14:49:36 -07003199 return 0;
3200}
3201
3202static struct kmem_cache *find_mergeable(size_t size,
Christoph Lameterba0268a2007-09-11 15:24:11 -07003203 size_t align, unsigned long flags, const char *name,
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07003204 void (*ctor)(void *))
Christoph Lameter81819f02007-05-06 14:49:36 -07003205{
Christoph Lameter5b95a4a2007-07-17 04:03:19 -07003206 struct kmem_cache *s;
Christoph Lameter81819f02007-05-06 14:49:36 -07003207
3208 if (slub_nomerge || (flags & SLUB_NEVER_MERGE))
3209 return NULL;
3210
Christoph Lameterc59def9f2007-05-16 22:10:50 -07003211 if (ctor)
Christoph Lameter81819f02007-05-06 14:49:36 -07003212 return NULL;
3213
3214 size = ALIGN(size, sizeof(void *));
3215 align = calculate_alignment(flags, align, size);
3216 size = ALIGN(size, align);
Christoph Lameterba0268a2007-09-11 15:24:11 -07003217 flags = kmem_cache_flags(size, flags, name, NULL);
Christoph Lameter81819f02007-05-06 14:49:36 -07003218
Christoph Lameter5b95a4a2007-07-17 04:03:19 -07003219 list_for_each_entry(s, &slab_caches, list) {
Christoph Lameter81819f02007-05-06 14:49:36 -07003220 if (slab_unmergeable(s))
3221 continue;
3222
3223 if (size > s->size)
3224 continue;
3225
Christoph Lameterba0268a2007-09-11 15:24:11 -07003226 if ((flags & SLUB_MERGE_SAME) != (s->flags & SLUB_MERGE_SAME))
Christoph Lameter81819f02007-05-06 14:49:36 -07003227 continue;
3228 /*
3229 * Check if alignment is compatible.
3230 * Courtesy of Adrian Drzewiecki
3231 */
Pekka Enberg06428782008-01-07 23:20:27 -08003232 if ((s->size & ~(align - 1)) != s->size)
Christoph Lameter81819f02007-05-06 14:49:36 -07003233 continue;
3234
3235 if (s->size - size >= sizeof(void *))
3236 continue;
3237
3238 return s;
3239 }
3240 return NULL;
3241}
3242
3243struct kmem_cache *kmem_cache_create(const char *name, size_t size,
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07003244 size_t align, unsigned long flags, void (*ctor)(void *))
Christoph Lameter81819f02007-05-06 14:49:36 -07003245{
3246 struct kmem_cache *s;
3247
Benjamin Herrenschmidtfe1ff492009-09-21 17:02:30 -07003248 if (WARN_ON(!name))
3249 return NULL;
3250
Christoph Lameter81819f02007-05-06 14:49:36 -07003251 down_write(&slub_lock);
Christoph Lameterba0268a2007-09-11 15:24:11 -07003252 s = find_mergeable(size, align, flags, name, ctor);
Christoph Lameter81819f02007-05-06 14:49:36 -07003253 if (s) {
Christoph Lameter42a9fdb2007-10-16 01:26:09 -07003254 int cpu;
3255
Christoph Lameter81819f02007-05-06 14:49:36 -07003256 s->refcount++;
3257 /*
3258 * Adjust the object sizes so that we clear
3259 * the complete object on kzalloc.
3260 */
3261 s->objsize = max(s->objsize, (int)size);
Christoph Lameter42a9fdb2007-10-16 01:26:09 -07003262
3263 /*
3264 * And then we need to update the object size in the
3265 * per cpu structures
3266 */
3267 for_each_online_cpu(cpu)
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06003268 per_cpu_ptr(s->cpu_slab, cpu)->objsize = s->objsize;
Christoph Lameter6446faa2008-02-15 23:45:26 -08003269
Christoph Lameter81819f02007-05-06 14:49:36 -07003270 s->inuse = max_t(int, s->inuse, ALIGN(size, sizeof(void *)));
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07003271 up_write(&slub_lock);
Christoph Lameter6446faa2008-02-15 23:45:26 -08003272
David Rientjes7b8f3b62008-12-17 22:09:46 -08003273 if (sysfs_slab_alias(s, name)) {
3274 down_write(&slub_lock);
3275 s->refcount--;
3276 up_write(&slub_lock);
Christoph Lameter81819f02007-05-06 14:49:36 -07003277 goto err;
David Rientjes7b8f3b62008-12-17 22:09:46 -08003278 }
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07003279 return s;
3280 }
Christoph Lameter6446faa2008-02-15 23:45:26 -08003281
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07003282 s = kmalloc(kmem_size, GFP_KERNEL);
3283 if (s) {
3284 if (kmem_cache_open(s, GFP_KERNEL, name,
Christoph Lameterc59def9f2007-05-16 22:10:50 -07003285 size, align, flags, ctor)) {
Christoph Lameter81819f02007-05-06 14:49:36 -07003286 list_add(&s->list, &slab_caches);
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07003287 up_write(&slub_lock);
David Rientjes7b8f3b62008-12-17 22:09:46 -08003288 if (sysfs_slab_add(s)) {
3289 down_write(&slub_lock);
3290 list_del(&s->list);
3291 up_write(&slub_lock);
3292 kfree(s);
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07003293 goto err;
David Rientjes7b8f3b62008-12-17 22:09:46 -08003294 }
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07003295 return s;
3296 }
3297 kfree(s);
Christoph Lameter81819f02007-05-06 14:49:36 -07003298 }
3299 up_write(&slub_lock);
Christoph Lameter81819f02007-05-06 14:49:36 -07003300
3301err:
Christoph Lameter81819f02007-05-06 14:49:36 -07003302 if (flags & SLAB_PANIC)
3303 panic("Cannot create slabcache %s\n", name);
3304 else
3305 s = NULL;
3306 return s;
3307}
3308EXPORT_SYMBOL(kmem_cache_create);
3309
Christoph Lameter81819f02007-05-06 14:49:36 -07003310#ifdef CONFIG_SMP
Christoph Lameter27390bc2007-06-01 00:47:09 -07003311/*
Christoph Lameter672bba32007-05-09 02:32:39 -07003312 * Use the cpu notifier to insure that the cpu slabs are flushed when
3313 * necessary.
Christoph Lameter81819f02007-05-06 14:49:36 -07003314 */
3315static int __cpuinit slab_cpuup_callback(struct notifier_block *nfb,
3316 unsigned long action, void *hcpu)
3317{
3318 long cpu = (long)hcpu;
Christoph Lameter5b95a4a2007-07-17 04:03:19 -07003319 struct kmem_cache *s;
3320 unsigned long flags;
Christoph Lameter81819f02007-05-06 14:49:36 -07003321
3322 switch (action) {
Christoph Lameter4c93c3552007-10-16 01:26:08 -07003323 case CPU_UP_PREPARE:
3324 case CPU_UP_PREPARE_FROZEN:
Christoph Lameter4c93c3552007-10-16 01:26:08 -07003325 down_read(&slub_lock);
3326 list_for_each_entry(s, &slab_caches, list)
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06003327 init_kmem_cache_cpu(s, per_cpu_ptr(s->cpu_slab, cpu));
Christoph Lameter4c93c3552007-10-16 01:26:08 -07003328 up_read(&slub_lock);
3329 break;
3330
Christoph Lameter81819f02007-05-06 14:49:36 -07003331 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07003332 case CPU_UP_CANCELED_FROZEN:
Christoph Lameter81819f02007-05-06 14:49:36 -07003333 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07003334 case CPU_DEAD_FROZEN:
Christoph Lameter5b95a4a2007-07-17 04:03:19 -07003335 down_read(&slub_lock);
3336 list_for_each_entry(s, &slab_caches, list) {
3337 local_irq_save(flags);
3338 __flush_cpu_slab(s, cpu);
3339 local_irq_restore(flags);
3340 }
3341 up_read(&slub_lock);
Christoph Lameter81819f02007-05-06 14:49:36 -07003342 break;
3343 default:
3344 break;
3345 }
3346 return NOTIFY_OK;
3347}
3348
Pekka Enberg06428782008-01-07 23:20:27 -08003349static struct notifier_block __cpuinitdata slab_notifier = {
Ingo Molnar3adbefe2008-02-05 17:57:39 -08003350 .notifier_call = slab_cpuup_callback
Pekka Enberg06428782008-01-07 23:20:27 -08003351};
Christoph Lameter81819f02007-05-06 14:49:36 -07003352
3353#endif
3354
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003355void *__kmalloc_track_caller(size_t size, gfp_t gfpflags, unsigned long caller)
Christoph Lameter81819f02007-05-06 14:49:36 -07003356{
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003357 struct kmem_cache *s;
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03003358 void *ret;
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003359
Christoph Lameterffadd4d2009-02-17 12:05:07 -05003360 if (unlikely(size > SLUB_MAX_SIZE))
Pekka Enbergeada35e2008-02-11 22:47:46 +02003361 return kmalloc_large(size, gfpflags);
3362
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003363 s = get_slab(size, gfpflags);
Christoph Lameter81819f02007-05-06 14:49:36 -07003364
Satyam Sharma2408c552007-10-16 01:24:44 -07003365 if (unlikely(ZERO_OR_NULL_PTR(s)))
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003366 return s;
Christoph Lameter81819f02007-05-06 14:49:36 -07003367
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03003368 ret = slab_alloc(s, gfpflags, -1, caller);
3369
3370 /* Honor the call site pointer we recieved. */
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003371 trace_kmalloc(caller, ret, size, s->size, gfpflags);
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03003372
3373 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07003374}
3375
3376void *__kmalloc_node_track_caller(size_t size, gfp_t gfpflags,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003377 int node, unsigned long caller)
Christoph Lameter81819f02007-05-06 14:49:36 -07003378{
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003379 struct kmem_cache *s;
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03003380 void *ret;
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003381
Christoph Lameterffadd4d2009-02-17 12:05:07 -05003382 if (unlikely(size > SLUB_MAX_SIZE))
Christoph Lameterf619cfe2008-03-01 13:56:40 -08003383 return kmalloc_large_node(size, gfpflags, node);
Pekka Enbergeada35e2008-02-11 22:47:46 +02003384
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003385 s = get_slab(size, gfpflags);
Christoph Lameter81819f02007-05-06 14:49:36 -07003386
Satyam Sharma2408c552007-10-16 01:24:44 -07003387 if (unlikely(ZERO_OR_NULL_PTR(s)))
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003388 return s;
Christoph Lameter81819f02007-05-06 14:49:36 -07003389
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03003390 ret = slab_alloc(s, gfpflags, node, caller);
3391
3392 /* Honor the call site pointer we recieved. */
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003393 trace_kmalloc_node(caller, ret, size, s->size, gfpflags, node);
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03003394
3395 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07003396}
3397
Christoph Lameterf6acb632008-04-29 16:16:06 -07003398#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter205ab992008-04-14 19:11:40 +03003399static int count_inuse(struct page *page)
3400{
3401 return page->inuse;
3402}
3403
3404static int count_total(struct page *page)
3405{
3406 return page->objects;
3407}
3408
Christoph Lameter434e2452007-07-17 04:03:30 -07003409static int validate_slab(struct kmem_cache *s, struct page *page,
3410 unsigned long *map)
Christoph Lameter53e15af2007-05-06 14:49:43 -07003411{
3412 void *p;
Christoph Lametera973e9d2008-03-01 13:40:44 -08003413 void *addr = page_address(page);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003414
3415 if (!check_slab(s, page) ||
3416 !on_freelist(s, page, NULL))
3417 return 0;
3418
3419 /* Now we know that a valid freelist exists */
Christoph Lameter39b26462008-04-14 19:11:30 +03003420 bitmap_zero(map, page->objects);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003421
Christoph Lameter7656c722007-05-09 02:32:40 -07003422 for_each_free_object(p, s, page->freelist) {
3423 set_bit(slab_index(p, s, addr), map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003424 if (!check_object(s, page, p, 0))
3425 return 0;
3426 }
3427
Christoph Lameter224a88b2008-04-14 19:11:31 +03003428 for_each_object(p, s, addr, page->objects)
Christoph Lameter7656c722007-05-09 02:32:40 -07003429 if (!test_bit(slab_index(p, s, addr), map))
Christoph Lameter53e15af2007-05-06 14:49:43 -07003430 if (!check_object(s, page, p, 1))
3431 return 0;
3432 return 1;
3433}
3434
Christoph Lameter434e2452007-07-17 04:03:30 -07003435static void validate_slab_slab(struct kmem_cache *s, struct page *page,
3436 unsigned long *map)
Christoph Lameter53e15af2007-05-06 14:49:43 -07003437{
3438 if (slab_trylock(page)) {
Christoph Lameter434e2452007-07-17 04:03:30 -07003439 validate_slab(s, page, map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003440 slab_unlock(page);
3441 } else
3442 printk(KERN_INFO "SLUB %s: Skipped busy slab 0x%p\n",
3443 s->name, page);
3444
3445 if (s->flags & DEBUG_DEFAULT_FLAGS) {
Andy Whitcroft8a380822008-07-23 21:27:18 -07003446 if (!PageSlubDebug(page))
3447 printk(KERN_ERR "SLUB %s: SlubDebug not set "
Christoph Lameter53e15af2007-05-06 14:49:43 -07003448 "on slab 0x%p\n", s->name, page);
3449 } else {
Andy Whitcroft8a380822008-07-23 21:27:18 -07003450 if (PageSlubDebug(page))
3451 printk(KERN_ERR "SLUB %s: SlubDebug set on "
Christoph Lameter53e15af2007-05-06 14:49:43 -07003452 "slab 0x%p\n", s->name, page);
3453 }
3454}
3455
Christoph Lameter434e2452007-07-17 04:03:30 -07003456static int validate_slab_node(struct kmem_cache *s,
3457 struct kmem_cache_node *n, unsigned long *map)
Christoph Lameter53e15af2007-05-06 14:49:43 -07003458{
3459 unsigned long count = 0;
3460 struct page *page;
3461 unsigned long flags;
3462
3463 spin_lock_irqsave(&n->list_lock, flags);
3464
3465 list_for_each_entry(page, &n->partial, lru) {
Christoph Lameter434e2452007-07-17 04:03:30 -07003466 validate_slab_slab(s, page, map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003467 count++;
3468 }
3469 if (count != n->nr_partial)
3470 printk(KERN_ERR "SLUB %s: %ld partial slabs counted but "
3471 "counter=%ld\n", s->name, count, n->nr_partial);
3472
3473 if (!(s->flags & SLAB_STORE_USER))
3474 goto out;
3475
3476 list_for_each_entry(page, &n->full, lru) {
Christoph Lameter434e2452007-07-17 04:03:30 -07003477 validate_slab_slab(s, page, map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003478 count++;
3479 }
3480 if (count != atomic_long_read(&n->nr_slabs))
3481 printk(KERN_ERR "SLUB: %s %ld slabs counted but "
3482 "counter=%ld\n", s->name, count,
3483 atomic_long_read(&n->nr_slabs));
3484
3485out:
3486 spin_unlock_irqrestore(&n->list_lock, flags);
3487 return count;
3488}
3489
Christoph Lameter434e2452007-07-17 04:03:30 -07003490static long validate_slab_cache(struct kmem_cache *s)
Christoph Lameter53e15af2007-05-06 14:49:43 -07003491{
3492 int node;
3493 unsigned long count = 0;
Christoph Lameter205ab992008-04-14 19:11:40 +03003494 unsigned long *map = kmalloc(BITS_TO_LONGS(oo_objects(s->max)) *
Christoph Lameter434e2452007-07-17 04:03:30 -07003495 sizeof(unsigned long), GFP_KERNEL);
3496
3497 if (!map)
3498 return -ENOMEM;
Christoph Lameter53e15af2007-05-06 14:49:43 -07003499
3500 flush_all(s);
Christoph Lameterf64dc582007-10-16 01:25:33 -07003501 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter53e15af2007-05-06 14:49:43 -07003502 struct kmem_cache_node *n = get_node(s, node);
3503
Christoph Lameter434e2452007-07-17 04:03:30 -07003504 count += validate_slab_node(s, n, map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003505 }
Christoph Lameter434e2452007-07-17 04:03:30 -07003506 kfree(map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003507 return count;
3508}
3509
Christoph Lameterb3459702007-05-09 02:32:41 -07003510#ifdef SLUB_RESILIENCY_TEST
3511static void resiliency_test(void)
3512{
3513 u8 *p;
3514
3515 printk(KERN_ERR "SLUB resiliency testing\n");
3516 printk(KERN_ERR "-----------------------\n");
3517 printk(KERN_ERR "A. Corruption after allocation\n");
3518
3519 p = kzalloc(16, GFP_KERNEL);
3520 p[16] = 0x12;
3521 printk(KERN_ERR "\n1. kmalloc-16: Clobber Redzone/next pointer"
3522 " 0x12->0x%p\n\n", p + 16);
3523
3524 validate_slab_cache(kmalloc_caches + 4);
3525
3526 /* Hmmm... The next two are dangerous */
3527 p = kzalloc(32, GFP_KERNEL);
3528 p[32 + sizeof(void *)] = 0x34;
3529 printk(KERN_ERR "\n2. kmalloc-32: Clobber next pointer/next slab"
Ingo Molnar3adbefe2008-02-05 17:57:39 -08003530 " 0x34 -> -0x%p\n", p);
3531 printk(KERN_ERR
3532 "If allocated object is overwritten then not detectable\n\n");
Christoph Lameterb3459702007-05-09 02:32:41 -07003533
3534 validate_slab_cache(kmalloc_caches + 5);
3535 p = kzalloc(64, GFP_KERNEL);
3536 p += 64 + (get_cycles() & 0xff) * sizeof(void *);
3537 *p = 0x56;
3538 printk(KERN_ERR "\n3. kmalloc-64: corrupting random byte 0x56->0x%p\n",
3539 p);
Ingo Molnar3adbefe2008-02-05 17:57:39 -08003540 printk(KERN_ERR
3541 "If allocated object is overwritten then not detectable\n\n");
Christoph Lameterb3459702007-05-09 02:32:41 -07003542 validate_slab_cache(kmalloc_caches + 6);
3543
3544 printk(KERN_ERR "\nB. Corruption after free\n");
3545 p = kzalloc(128, GFP_KERNEL);
3546 kfree(p);
3547 *p = 0x78;
3548 printk(KERN_ERR "1. kmalloc-128: Clobber first word 0x78->0x%p\n\n", p);
3549 validate_slab_cache(kmalloc_caches + 7);
3550
3551 p = kzalloc(256, GFP_KERNEL);
3552 kfree(p);
3553 p[50] = 0x9a;
Ingo Molnar3adbefe2008-02-05 17:57:39 -08003554 printk(KERN_ERR "\n2. kmalloc-256: Clobber 50th byte 0x9a->0x%p\n\n",
3555 p);
Christoph Lameterb3459702007-05-09 02:32:41 -07003556 validate_slab_cache(kmalloc_caches + 8);
3557
3558 p = kzalloc(512, GFP_KERNEL);
3559 kfree(p);
3560 p[512] = 0xab;
3561 printk(KERN_ERR "\n3. kmalloc-512: Clobber redzone 0xab->0x%p\n\n", p);
3562 validate_slab_cache(kmalloc_caches + 9);
3563}
3564#else
3565static void resiliency_test(void) {};
3566#endif
3567
Christoph Lameter88a420e2007-05-06 14:49:45 -07003568/*
Christoph Lameter672bba32007-05-09 02:32:39 -07003569 * Generate lists of code addresses where slabcache objects are allocated
Christoph Lameter88a420e2007-05-06 14:49:45 -07003570 * and freed.
3571 */
3572
3573struct location {
3574 unsigned long count;
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003575 unsigned long addr;
Christoph Lameter45edfa52007-05-09 02:32:45 -07003576 long long sum_time;
3577 long min_time;
3578 long max_time;
3579 long min_pid;
3580 long max_pid;
Rusty Russell174596a2009-01-01 10:12:29 +10303581 DECLARE_BITMAP(cpus, NR_CPUS);
Christoph Lameter45edfa52007-05-09 02:32:45 -07003582 nodemask_t nodes;
Christoph Lameter88a420e2007-05-06 14:49:45 -07003583};
3584
3585struct loc_track {
3586 unsigned long max;
3587 unsigned long count;
3588 struct location *loc;
3589};
3590
3591static void free_loc_track(struct loc_track *t)
3592{
3593 if (t->max)
3594 free_pages((unsigned long)t->loc,
3595 get_order(sizeof(struct location) * t->max));
3596}
3597
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003598static int alloc_loc_track(struct loc_track *t, unsigned long max, gfp_t flags)
Christoph Lameter88a420e2007-05-06 14:49:45 -07003599{
3600 struct location *l;
3601 int order;
3602
Christoph Lameter88a420e2007-05-06 14:49:45 -07003603 order = get_order(sizeof(struct location) * max);
3604
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003605 l = (void *)__get_free_pages(flags, order);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003606 if (!l)
3607 return 0;
3608
3609 if (t->count) {
3610 memcpy(l, t->loc, sizeof(struct location) * t->count);
3611 free_loc_track(t);
3612 }
3613 t->max = max;
3614 t->loc = l;
3615 return 1;
3616}
3617
3618static int add_location(struct loc_track *t, struct kmem_cache *s,
Christoph Lameter45edfa52007-05-09 02:32:45 -07003619 const struct track *track)
Christoph Lameter88a420e2007-05-06 14:49:45 -07003620{
3621 long start, end, pos;
3622 struct location *l;
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003623 unsigned long caddr;
Christoph Lameter45edfa52007-05-09 02:32:45 -07003624 unsigned long age = jiffies - track->when;
Christoph Lameter88a420e2007-05-06 14:49:45 -07003625
3626 start = -1;
3627 end = t->count;
3628
3629 for ( ; ; ) {
3630 pos = start + (end - start + 1) / 2;
3631
3632 /*
3633 * There is nothing at "end". If we end up there
3634 * we need to add something to before end.
3635 */
3636 if (pos == end)
3637 break;
3638
3639 caddr = t->loc[pos].addr;
Christoph Lameter45edfa52007-05-09 02:32:45 -07003640 if (track->addr == caddr) {
3641
3642 l = &t->loc[pos];
3643 l->count++;
3644 if (track->when) {
3645 l->sum_time += age;
3646 if (age < l->min_time)
3647 l->min_time = age;
3648 if (age > l->max_time)
3649 l->max_time = age;
3650
3651 if (track->pid < l->min_pid)
3652 l->min_pid = track->pid;
3653 if (track->pid > l->max_pid)
3654 l->max_pid = track->pid;
3655
Rusty Russell174596a2009-01-01 10:12:29 +10303656 cpumask_set_cpu(track->cpu,
3657 to_cpumask(l->cpus));
Christoph Lameter45edfa52007-05-09 02:32:45 -07003658 }
3659 node_set(page_to_nid(virt_to_page(track)), l->nodes);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003660 return 1;
3661 }
3662
Christoph Lameter45edfa52007-05-09 02:32:45 -07003663 if (track->addr < caddr)
Christoph Lameter88a420e2007-05-06 14:49:45 -07003664 end = pos;
3665 else
3666 start = pos;
3667 }
3668
3669 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07003670 * Not found. Insert new tracking element.
Christoph Lameter88a420e2007-05-06 14:49:45 -07003671 */
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003672 if (t->count >= t->max && !alloc_loc_track(t, 2 * t->max, GFP_ATOMIC))
Christoph Lameter88a420e2007-05-06 14:49:45 -07003673 return 0;
3674
3675 l = t->loc + pos;
3676 if (pos < t->count)
3677 memmove(l + 1, l,
3678 (t->count - pos) * sizeof(struct location));
3679 t->count++;
3680 l->count = 1;
Christoph Lameter45edfa52007-05-09 02:32:45 -07003681 l->addr = track->addr;
3682 l->sum_time = age;
3683 l->min_time = age;
3684 l->max_time = age;
3685 l->min_pid = track->pid;
3686 l->max_pid = track->pid;
Rusty Russell174596a2009-01-01 10:12:29 +10303687 cpumask_clear(to_cpumask(l->cpus));
3688 cpumask_set_cpu(track->cpu, to_cpumask(l->cpus));
Christoph Lameter45edfa52007-05-09 02:32:45 -07003689 nodes_clear(l->nodes);
3690 node_set(page_to_nid(virt_to_page(track)), l->nodes);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003691 return 1;
3692}
3693
3694static void process_slab(struct loc_track *t, struct kmem_cache *s,
3695 struct page *page, enum track_item alloc)
3696{
Christoph Lametera973e9d2008-03-01 13:40:44 -08003697 void *addr = page_address(page);
Christoph Lameter39b26462008-04-14 19:11:30 +03003698 DECLARE_BITMAP(map, page->objects);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003699 void *p;
3700
Christoph Lameter39b26462008-04-14 19:11:30 +03003701 bitmap_zero(map, page->objects);
Christoph Lameter7656c722007-05-09 02:32:40 -07003702 for_each_free_object(p, s, page->freelist)
3703 set_bit(slab_index(p, s, addr), map);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003704
Christoph Lameter224a88b2008-04-14 19:11:31 +03003705 for_each_object(p, s, addr, page->objects)
Christoph Lameter45edfa52007-05-09 02:32:45 -07003706 if (!test_bit(slab_index(p, s, addr), map))
3707 add_location(t, s, get_track(s, p, alloc));
Christoph Lameter88a420e2007-05-06 14:49:45 -07003708}
3709
3710static int list_locations(struct kmem_cache *s, char *buf,
3711 enum track_item alloc)
3712{
Harvey Harrisone374d482008-01-31 15:20:50 -08003713 int len = 0;
Christoph Lameter88a420e2007-05-06 14:49:45 -07003714 unsigned long i;
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003715 struct loc_track t = { 0, 0, NULL };
Christoph Lameter88a420e2007-05-06 14:49:45 -07003716 int node;
3717
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003718 if (!alloc_loc_track(&t, PAGE_SIZE / sizeof(struct location),
Andrew Mortonea3061d2007-10-16 01:26:09 -07003719 GFP_TEMPORARY))
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003720 return sprintf(buf, "Out of memory\n");
Christoph Lameter88a420e2007-05-06 14:49:45 -07003721
3722 /* Push back cpu slabs */
3723 flush_all(s);
3724
Christoph Lameterf64dc582007-10-16 01:25:33 -07003725 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter88a420e2007-05-06 14:49:45 -07003726 struct kmem_cache_node *n = get_node(s, node);
3727 unsigned long flags;
3728 struct page *page;
3729
Christoph Lameter9e869432007-08-22 14:01:56 -07003730 if (!atomic_long_read(&n->nr_slabs))
Christoph Lameter88a420e2007-05-06 14:49:45 -07003731 continue;
3732
3733 spin_lock_irqsave(&n->list_lock, flags);
3734 list_for_each_entry(page, &n->partial, lru)
3735 process_slab(&t, s, page, alloc);
3736 list_for_each_entry(page, &n->full, lru)
3737 process_slab(&t, s, page, alloc);
3738 spin_unlock_irqrestore(&n->list_lock, flags);
3739 }
3740
3741 for (i = 0; i < t.count; i++) {
Christoph Lameter45edfa52007-05-09 02:32:45 -07003742 struct location *l = &t.loc[i];
Christoph Lameter88a420e2007-05-06 14:49:45 -07003743
Hugh Dickins9c246242008-12-09 13:14:27 -08003744 if (len > PAGE_SIZE - KSYM_SYMBOL_LEN - 100)
Christoph Lameter88a420e2007-05-06 14:49:45 -07003745 break;
Harvey Harrisone374d482008-01-31 15:20:50 -08003746 len += sprintf(buf + len, "%7ld ", l->count);
Christoph Lameter45edfa52007-05-09 02:32:45 -07003747
3748 if (l->addr)
Harvey Harrisone374d482008-01-31 15:20:50 -08003749 len += sprint_symbol(buf + len, (unsigned long)l->addr);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003750 else
Harvey Harrisone374d482008-01-31 15:20:50 -08003751 len += sprintf(buf + len, "<not-available>");
Christoph Lameter45edfa52007-05-09 02:32:45 -07003752
3753 if (l->sum_time != l->min_time) {
Harvey Harrisone374d482008-01-31 15:20:50 -08003754 len += sprintf(buf + len, " age=%ld/%ld/%ld",
Roman Zippelf8bd2252008-05-01 04:34:31 -07003755 l->min_time,
3756 (long)div_u64(l->sum_time, l->count),
3757 l->max_time);
Christoph Lameter45edfa52007-05-09 02:32:45 -07003758 } else
Harvey Harrisone374d482008-01-31 15:20:50 -08003759 len += sprintf(buf + len, " age=%ld",
Christoph Lameter45edfa52007-05-09 02:32:45 -07003760 l->min_time);
3761
3762 if (l->min_pid != l->max_pid)
Harvey Harrisone374d482008-01-31 15:20:50 -08003763 len += sprintf(buf + len, " pid=%ld-%ld",
Christoph Lameter45edfa52007-05-09 02:32:45 -07003764 l->min_pid, l->max_pid);
3765 else
Harvey Harrisone374d482008-01-31 15:20:50 -08003766 len += sprintf(buf + len, " pid=%ld",
Christoph Lameter45edfa52007-05-09 02:32:45 -07003767 l->min_pid);
3768
Rusty Russell174596a2009-01-01 10:12:29 +10303769 if (num_online_cpus() > 1 &&
3770 !cpumask_empty(to_cpumask(l->cpus)) &&
Harvey Harrisone374d482008-01-31 15:20:50 -08003771 len < PAGE_SIZE - 60) {
3772 len += sprintf(buf + len, " cpus=");
3773 len += cpulist_scnprintf(buf + len, PAGE_SIZE - len - 50,
Rusty Russell174596a2009-01-01 10:12:29 +10303774 to_cpumask(l->cpus));
Christoph Lameter45edfa52007-05-09 02:32:45 -07003775 }
3776
Christoph Lameter62bc62a2009-06-16 15:32:15 -07003777 if (nr_online_nodes > 1 && !nodes_empty(l->nodes) &&
Harvey Harrisone374d482008-01-31 15:20:50 -08003778 len < PAGE_SIZE - 60) {
3779 len += sprintf(buf + len, " nodes=");
3780 len += nodelist_scnprintf(buf + len, PAGE_SIZE - len - 50,
Christoph Lameter45edfa52007-05-09 02:32:45 -07003781 l->nodes);
3782 }
3783
Harvey Harrisone374d482008-01-31 15:20:50 -08003784 len += sprintf(buf + len, "\n");
Christoph Lameter88a420e2007-05-06 14:49:45 -07003785 }
3786
3787 free_loc_track(&t);
3788 if (!t.count)
Harvey Harrisone374d482008-01-31 15:20:50 -08003789 len += sprintf(buf, "No data\n");
3790 return len;
Christoph Lameter88a420e2007-05-06 14:49:45 -07003791}
3792
Christoph Lameter81819f02007-05-06 14:49:36 -07003793enum slab_stat_type {
Christoph Lameter205ab992008-04-14 19:11:40 +03003794 SL_ALL, /* All slabs */
3795 SL_PARTIAL, /* Only partially allocated slabs */
3796 SL_CPU, /* Only slabs used for cpu caches */
3797 SL_OBJECTS, /* Determine allocated objects not slabs */
3798 SL_TOTAL /* Determine object capacity not slabs */
Christoph Lameter81819f02007-05-06 14:49:36 -07003799};
3800
Christoph Lameter205ab992008-04-14 19:11:40 +03003801#define SO_ALL (1 << SL_ALL)
Christoph Lameter81819f02007-05-06 14:49:36 -07003802#define SO_PARTIAL (1 << SL_PARTIAL)
3803#define SO_CPU (1 << SL_CPU)
3804#define SO_OBJECTS (1 << SL_OBJECTS)
Christoph Lameter205ab992008-04-14 19:11:40 +03003805#define SO_TOTAL (1 << SL_TOTAL)
Christoph Lameter81819f02007-05-06 14:49:36 -07003806
Cyrill Gorcunov62e5c4b2008-03-02 23:28:24 +03003807static ssize_t show_slab_objects(struct kmem_cache *s,
3808 char *buf, unsigned long flags)
Christoph Lameter81819f02007-05-06 14:49:36 -07003809{
3810 unsigned long total = 0;
Christoph Lameter81819f02007-05-06 14:49:36 -07003811 int node;
3812 int x;
3813 unsigned long *nodes;
3814 unsigned long *per_cpu;
3815
3816 nodes = kzalloc(2 * sizeof(unsigned long) * nr_node_ids, GFP_KERNEL);
Cyrill Gorcunov62e5c4b2008-03-02 23:28:24 +03003817 if (!nodes)
3818 return -ENOMEM;
Christoph Lameter81819f02007-05-06 14:49:36 -07003819 per_cpu = nodes + nr_node_ids;
3820
Christoph Lameter205ab992008-04-14 19:11:40 +03003821 if (flags & SO_CPU) {
3822 int cpu;
Christoph Lameter81819f02007-05-06 14:49:36 -07003823
Christoph Lameter205ab992008-04-14 19:11:40 +03003824 for_each_possible_cpu(cpu) {
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06003825 struct kmem_cache_cpu *c = per_cpu_ptr(s->cpu_slab, cpu);
Christoph Lameterdfb4f092007-10-16 01:26:05 -07003826
Christoph Lameter205ab992008-04-14 19:11:40 +03003827 if (!c || c->node < 0)
3828 continue;
3829
3830 if (c->page) {
3831 if (flags & SO_TOTAL)
3832 x = c->page->objects;
3833 else if (flags & SO_OBJECTS)
3834 x = c->page->inuse;
Christoph Lameter81819f02007-05-06 14:49:36 -07003835 else
3836 x = 1;
Christoph Lameter205ab992008-04-14 19:11:40 +03003837
Christoph Lameter81819f02007-05-06 14:49:36 -07003838 total += x;
Christoph Lameter205ab992008-04-14 19:11:40 +03003839 nodes[c->node] += x;
Christoph Lameter81819f02007-05-06 14:49:36 -07003840 }
Christoph Lameter205ab992008-04-14 19:11:40 +03003841 per_cpu[c->node]++;
Christoph Lameter81819f02007-05-06 14:49:36 -07003842 }
3843 }
3844
Christoph Lameter205ab992008-04-14 19:11:40 +03003845 if (flags & SO_ALL) {
3846 for_each_node_state(node, N_NORMAL_MEMORY) {
3847 struct kmem_cache_node *n = get_node(s, node);
Christoph Lameter81819f02007-05-06 14:49:36 -07003848
Christoph Lameter205ab992008-04-14 19:11:40 +03003849 if (flags & SO_TOTAL)
3850 x = atomic_long_read(&n->total_objects);
3851 else if (flags & SO_OBJECTS)
3852 x = atomic_long_read(&n->total_objects) -
3853 count_partial(n, count_free);
3854
3855 else
3856 x = atomic_long_read(&n->nr_slabs);
3857 total += x;
3858 nodes[node] += x;
3859 }
3860
3861 } else if (flags & SO_PARTIAL) {
3862 for_each_node_state(node, N_NORMAL_MEMORY) {
3863 struct kmem_cache_node *n = get_node(s, node);
3864
3865 if (flags & SO_TOTAL)
3866 x = count_partial(n, count_total);
3867 else if (flags & SO_OBJECTS)
3868 x = count_partial(n, count_inuse);
Christoph Lameter81819f02007-05-06 14:49:36 -07003869 else
3870 x = n->nr_partial;
3871 total += x;
3872 nodes[node] += x;
3873 }
Christoph Lameter81819f02007-05-06 14:49:36 -07003874 }
Christoph Lameter81819f02007-05-06 14:49:36 -07003875 x = sprintf(buf, "%lu", total);
3876#ifdef CONFIG_NUMA
Christoph Lameterf64dc582007-10-16 01:25:33 -07003877 for_each_node_state(node, N_NORMAL_MEMORY)
Christoph Lameter81819f02007-05-06 14:49:36 -07003878 if (nodes[node])
3879 x += sprintf(buf + x, " N%d=%lu",
3880 node, nodes[node]);
3881#endif
3882 kfree(nodes);
3883 return x + sprintf(buf + x, "\n");
3884}
3885
3886static int any_slab_objects(struct kmem_cache *s)
3887{
3888 int node;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07003889
3890 for_each_online_node(node) {
Christoph Lameter81819f02007-05-06 14:49:36 -07003891 struct kmem_cache_node *n = get_node(s, node);
3892
Christoph Lameterdfb4f092007-10-16 01:26:05 -07003893 if (!n)
3894 continue;
3895
Benjamin Herrenschmidt4ea33e22008-05-06 20:42:39 -07003896 if (atomic_long_read(&n->total_objects))
Christoph Lameter81819f02007-05-06 14:49:36 -07003897 return 1;
3898 }
3899 return 0;
3900}
3901
3902#define to_slab_attr(n) container_of(n, struct slab_attribute, attr)
3903#define to_slab(n) container_of(n, struct kmem_cache, kobj);
3904
3905struct slab_attribute {
3906 struct attribute attr;
3907 ssize_t (*show)(struct kmem_cache *s, char *buf);
3908 ssize_t (*store)(struct kmem_cache *s, const char *x, size_t count);
3909};
3910
3911#define SLAB_ATTR_RO(_name) \
3912 static struct slab_attribute _name##_attr = __ATTR_RO(_name)
3913
3914#define SLAB_ATTR(_name) \
3915 static struct slab_attribute _name##_attr = \
3916 __ATTR(_name, 0644, _name##_show, _name##_store)
3917
Christoph Lameter81819f02007-05-06 14:49:36 -07003918static ssize_t slab_size_show(struct kmem_cache *s, char *buf)
3919{
3920 return sprintf(buf, "%d\n", s->size);
3921}
3922SLAB_ATTR_RO(slab_size);
3923
3924static ssize_t align_show(struct kmem_cache *s, char *buf)
3925{
3926 return sprintf(buf, "%d\n", s->align);
3927}
3928SLAB_ATTR_RO(align);
3929
3930static ssize_t object_size_show(struct kmem_cache *s, char *buf)
3931{
3932 return sprintf(buf, "%d\n", s->objsize);
3933}
3934SLAB_ATTR_RO(object_size);
3935
3936static ssize_t objs_per_slab_show(struct kmem_cache *s, char *buf)
3937{
Christoph Lameter834f3d12008-04-14 19:11:31 +03003938 return sprintf(buf, "%d\n", oo_objects(s->oo));
Christoph Lameter81819f02007-05-06 14:49:36 -07003939}
3940SLAB_ATTR_RO(objs_per_slab);
3941
Christoph Lameter06b285d2008-04-14 19:11:41 +03003942static ssize_t order_store(struct kmem_cache *s,
3943 const char *buf, size_t length)
3944{
Christoph Lameter0121c6192008-04-29 16:11:12 -07003945 unsigned long order;
3946 int err;
3947
3948 err = strict_strtoul(buf, 10, &order);
3949 if (err)
3950 return err;
Christoph Lameter06b285d2008-04-14 19:11:41 +03003951
3952 if (order > slub_max_order || order < slub_min_order)
3953 return -EINVAL;
3954
3955 calculate_sizes(s, order);
3956 return length;
3957}
3958
Christoph Lameter81819f02007-05-06 14:49:36 -07003959static ssize_t order_show(struct kmem_cache *s, char *buf)
3960{
Christoph Lameter834f3d12008-04-14 19:11:31 +03003961 return sprintf(buf, "%d\n", oo_order(s->oo));
Christoph Lameter81819f02007-05-06 14:49:36 -07003962}
Christoph Lameter06b285d2008-04-14 19:11:41 +03003963SLAB_ATTR(order);
Christoph Lameter81819f02007-05-06 14:49:36 -07003964
David Rientjes73d342b2009-02-22 17:40:09 -08003965static ssize_t min_partial_show(struct kmem_cache *s, char *buf)
3966{
3967 return sprintf(buf, "%lu\n", s->min_partial);
3968}
3969
3970static ssize_t min_partial_store(struct kmem_cache *s, const char *buf,
3971 size_t length)
3972{
3973 unsigned long min;
3974 int err;
3975
3976 err = strict_strtoul(buf, 10, &min);
3977 if (err)
3978 return err;
3979
David Rientjesc0bdb232009-02-25 09:16:35 +02003980 set_min_partial(s, min);
David Rientjes73d342b2009-02-22 17:40:09 -08003981 return length;
3982}
3983SLAB_ATTR(min_partial);
3984
Christoph Lameter81819f02007-05-06 14:49:36 -07003985static ssize_t ctor_show(struct kmem_cache *s, char *buf)
3986{
3987 if (s->ctor) {
3988 int n = sprint_symbol(buf, (unsigned long)s->ctor);
3989
3990 return n + sprintf(buf + n, "\n");
3991 }
3992 return 0;
3993}
3994SLAB_ATTR_RO(ctor);
3995
Christoph Lameter81819f02007-05-06 14:49:36 -07003996static ssize_t aliases_show(struct kmem_cache *s, char *buf)
3997{
3998 return sprintf(buf, "%d\n", s->refcount - 1);
3999}
4000SLAB_ATTR_RO(aliases);
4001
4002static ssize_t slabs_show(struct kmem_cache *s, char *buf)
4003{
Christoph Lameter205ab992008-04-14 19:11:40 +03004004 return show_slab_objects(s, buf, SO_ALL);
Christoph Lameter81819f02007-05-06 14:49:36 -07004005}
4006SLAB_ATTR_RO(slabs);
4007
4008static ssize_t partial_show(struct kmem_cache *s, char *buf)
4009{
Christoph Lameterd9acf4b2008-02-15 15:22:21 -08004010 return show_slab_objects(s, buf, SO_PARTIAL);
Christoph Lameter81819f02007-05-06 14:49:36 -07004011}
4012SLAB_ATTR_RO(partial);
4013
4014static ssize_t cpu_slabs_show(struct kmem_cache *s, char *buf)
4015{
Christoph Lameterd9acf4b2008-02-15 15:22:21 -08004016 return show_slab_objects(s, buf, SO_CPU);
Christoph Lameter81819f02007-05-06 14:49:36 -07004017}
4018SLAB_ATTR_RO(cpu_slabs);
4019
4020static ssize_t objects_show(struct kmem_cache *s, char *buf)
4021{
Christoph Lameter205ab992008-04-14 19:11:40 +03004022 return show_slab_objects(s, buf, SO_ALL|SO_OBJECTS);
Christoph Lameter81819f02007-05-06 14:49:36 -07004023}
4024SLAB_ATTR_RO(objects);
4025
Christoph Lameter205ab992008-04-14 19:11:40 +03004026static ssize_t objects_partial_show(struct kmem_cache *s, char *buf)
4027{
4028 return show_slab_objects(s, buf, SO_PARTIAL|SO_OBJECTS);
4029}
4030SLAB_ATTR_RO(objects_partial);
4031
4032static ssize_t total_objects_show(struct kmem_cache *s, char *buf)
4033{
4034 return show_slab_objects(s, buf, SO_ALL|SO_TOTAL);
4035}
4036SLAB_ATTR_RO(total_objects);
4037
Christoph Lameter81819f02007-05-06 14:49:36 -07004038static ssize_t sanity_checks_show(struct kmem_cache *s, char *buf)
4039{
4040 return sprintf(buf, "%d\n", !!(s->flags & SLAB_DEBUG_FREE));
4041}
4042
4043static ssize_t sanity_checks_store(struct kmem_cache *s,
4044 const char *buf, size_t length)
4045{
4046 s->flags &= ~SLAB_DEBUG_FREE;
4047 if (buf[0] == '1')
4048 s->flags |= SLAB_DEBUG_FREE;
4049 return length;
4050}
4051SLAB_ATTR(sanity_checks);
4052
4053static ssize_t trace_show(struct kmem_cache *s, char *buf)
4054{
4055 return sprintf(buf, "%d\n", !!(s->flags & SLAB_TRACE));
4056}
4057
4058static ssize_t trace_store(struct kmem_cache *s, const char *buf,
4059 size_t length)
4060{
4061 s->flags &= ~SLAB_TRACE;
4062 if (buf[0] == '1')
4063 s->flags |= SLAB_TRACE;
4064 return length;
4065}
4066SLAB_ATTR(trace);
4067
4068static ssize_t reclaim_account_show(struct kmem_cache *s, char *buf)
4069{
4070 return sprintf(buf, "%d\n", !!(s->flags & SLAB_RECLAIM_ACCOUNT));
4071}
4072
4073static ssize_t reclaim_account_store(struct kmem_cache *s,
4074 const char *buf, size_t length)
4075{
4076 s->flags &= ~SLAB_RECLAIM_ACCOUNT;
4077 if (buf[0] == '1')
4078 s->flags |= SLAB_RECLAIM_ACCOUNT;
4079 return length;
4080}
4081SLAB_ATTR(reclaim_account);
4082
4083static ssize_t hwcache_align_show(struct kmem_cache *s, char *buf)
4084{
Christoph Lameter5af60832007-05-06 14:49:56 -07004085 return sprintf(buf, "%d\n", !!(s->flags & SLAB_HWCACHE_ALIGN));
Christoph Lameter81819f02007-05-06 14:49:36 -07004086}
4087SLAB_ATTR_RO(hwcache_align);
4088
4089#ifdef CONFIG_ZONE_DMA
4090static ssize_t cache_dma_show(struct kmem_cache *s, char *buf)
4091{
4092 return sprintf(buf, "%d\n", !!(s->flags & SLAB_CACHE_DMA));
4093}
4094SLAB_ATTR_RO(cache_dma);
4095#endif
4096
4097static ssize_t destroy_by_rcu_show(struct kmem_cache *s, char *buf)
4098{
4099 return sprintf(buf, "%d\n", !!(s->flags & SLAB_DESTROY_BY_RCU));
4100}
4101SLAB_ATTR_RO(destroy_by_rcu);
4102
4103static ssize_t red_zone_show(struct kmem_cache *s, char *buf)
4104{
4105 return sprintf(buf, "%d\n", !!(s->flags & SLAB_RED_ZONE));
4106}
4107
4108static ssize_t red_zone_store(struct kmem_cache *s,
4109 const char *buf, size_t length)
4110{
4111 if (any_slab_objects(s))
4112 return -EBUSY;
4113
4114 s->flags &= ~SLAB_RED_ZONE;
4115 if (buf[0] == '1')
4116 s->flags |= SLAB_RED_ZONE;
Christoph Lameter06b285d2008-04-14 19:11:41 +03004117 calculate_sizes(s, -1);
Christoph Lameter81819f02007-05-06 14:49:36 -07004118 return length;
4119}
4120SLAB_ATTR(red_zone);
4121
4122static ssize_t poison_show(struct kmem_cache *s, char *buf)
4123{
4124 return sprintf(buf, "%d\n", !!(s->flags & SLAB_POISON));
4125}
4126
4127static ssize_t poison_store(struct kmem_cache *s,
4128 const char *buf, size_t length)
4129{
4130 if (any_slab_objects(s))
4131 return -EBUSY;
4132
4133 s->flags &= ~SLAB_POISON;
4134 if (buf[0] == '1')
4135 s->flags |= SLAB_POISON;
Christoph Lameter06b285d2008-04-14 19:11:41 +03004136 calculate_sizes(s, -1);
Christoph Lameter81819f02007-05-06 14:49:36 -07004137 return length;
4138}
4139SLAB_ATTR(poison);
4140
4141static ssize_t store_user_show(struct kmem_cache *s, char *buf)
4142{
4143 return sprintf(buf, "%d\n", !!(s->flags & SLAB_STORE_USER));
4144}
4145
4146static ssize_t store_user_store(struct kmem_cache *s,
4147 const char *buf, size_t length)
4148{
4149 if (any_slab_objects(s))
4150 return -EBUSY;
4151
4152 s->flags &= ~SLAB_STORE_USER;
4153 if (buf[0] == '1')
4154 s->flags |= SLAB_STORE_USER;
Christoph Lameter06b285d2008-04-14 19:11:41 +03004155 calculate_sizes(s, -1);
Christoph Lameter81819f02007-05-06 14:49:36 -07004156 return length;
4157}
4158SLAB_ATTR(store_user);
4159
Christoph Lameter53e15af2007-05-06 14:49:43 -07004160static ssize_t validate_show(struct kmem_cache *s, char *buf)
4161{
4162 return 0;
4163}
4164
4165static ssize_t validate_store(struct kmem_cache *s,
4166 const char *buf, size_t length)
4167{
Christoph Lameter434e2452007-07-17 04:03:30 -07004168 int ret = -EINVAL;
4169
4170 if (buf[0] == '1') {
4171 ret = validate_slab_cache(s);
4172 if (ret >= 0)
4173 ret = length;
4174 }
4175 return ret;
Christoph Lameter53e15af2007-05-06 14:49:43 -07004176}
4177SLAB_ATTR(validate);
4178
Christoph Lameter2086d262007-05-06 14:49:46 -07004179static ssize_t shrink_show(struct kmem_cache *s, char *buf)
4180{
4181 return 0;
4182}
4183
4184static ssize_t shrink_store(struct kmem_cache *s,
4185 const char *buf, size_t length)
4186{
4187 if (buf[0] == '1') {
4188 int rc = kmem_cache_shrink(s);
4189
4190 if (rc)
4191 return rc;
4192 } else
4193 return -EINVAL;
4194 return length;
4195}
4196SLAB_ATTR(shrink);
4197
Christoph Lameter88a420e2007-05-06 14:49:45 -07004198static ssize_t alloc_calls_show(struct kmem_cache *s, char *buf)
4199{
4200 if (!(s->flags & SLAB_STORE_USER))
4201 return -ENOSYS;
4202 return list_locations(s, buf, TRACK_ALLOC);
4203}
4204SLAB_ATTR_RO(alloc_calls);
4205
4206static ssize_t free_calls_show(struct kmem_cache *s, char *buf)
4207{
4208 if (!(s->flags & SLAB_STORE_USER))
4209 return -ENOSYS;
4210 return list_locations(s, buf, TRACK_FREE);
4211}
4212SLAB_ATTR_RO(free_calls);
4213
Christoph Lameter81819f02007-05-06 14:49:36 -07004214#ifdef CONFIG_NUMA
Christoph Lameter98246012008-01-07 23:20:26 -08004215static ssize_t remote_node_defrag_ratio_show(struct kmem_cache *s, char *buf)
Christoph Lameter81819f02007-05-06 14:49:36 -07004216{
Christoph Lameter98246012008-01-07 23:20:26 -08004217 return sprintf(buf, "%d\n", s->remote_node_defrag_ratio / 10);
Christoph Lameter81819f02007-05-06 14:49:36 -07004218}
4219
Christoph Lameter98246012008-01-07 23:20:26 -08004220static ssize_t remote_node_defrag_ratio_store(struct kmem_cache *s,
Christoph Lameter81819f02007-05-06 14:49:36 -07004221 const char *buf, size_t length)
4222{
Christoph Lameter0121c6192008-04-29 16:11:12 -07004223 unsigned long ratio;
4224 int err;
Christoph Lameter81819f02007-05-06 14:49:36 -07004225
Christoph Lameter0121c6192008-04-29 16:11:12 -07004226 err = strict_strtoul(buf, 10, &ratio);
4227 if (err)
4228 return err;
4229
Christoph Lametere2cb96b2008-08-19 08:51:22 -05004230 if (ratio <= 100)
Christoph Lameter0121c6192008-04-29 16:11:12 -07004231 s->remote_node_defrag_ratio = ratio * 10;
4232
Christoph Lameter81819f02007-05-06 14:49:36 -07004233 return length;
4234}
Christoph Lameter98246012008-01-07 23:20:26 -08004235SLAB_ATTR(remote_node_defrag_ratio);
Christoph Lameter81819f02007-05-06 14:49:36 -07004236#endif
4237
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004238#ifdef CONFIG_SLUB_STATS
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004239static int show_stat(struct kmem_cache *s, char *buf, enum stat_item si)
4240{
4241 unsigned long sum = 0;
4242 int cpu;
4243 int len;
4244 int *data = kmalloc(nr_cpu_ids * sizeof(int), GFP_KERNEL);
4245
4246 if (!data)
4247 return -ENOMEM;
4248
4249 for_each_online_cpu(cpu) {
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06004250 unsigned x = per_cpu_ptr(s->cpu_slab, cpu)->stat[si];
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004251
4252 data[cpu] = x;
4253 sum += x;
4254 }
4255
4256 len = sprintf(buf, "%lu", sum);
4257
Christoph Lameter50ef37b2008-04-14 18:52:05 +03004258#ifdef CONFIG_SMP
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004259 for_each_online_cpu(cpu) {
4260 if (data[cpu] && len < PAGE_SIZE - 20)
Christoph Lameter50ef37b2008-04-14 18:52:05 +03004261 len += sprintf(buf + len, " C%d=%u", cpu, data[cpu]);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004262 }
Christoph Lameter50ef37b2008-04-14 18:52:05 +03004263#endif
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004264 kfree(data);
4265 return len + sprintf(buf + len, "\n");
4266}
4267
David Rientjes78eb00c2009-10-15 02:20:22 -07004268static void clear_stat(struct kmem_cache *s, enum stat_item si)
4269{
4270 int cpu;
4271
4272 for_each_online_cpu(cpu)
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06004273 per_cpu_ptr(s->cpu_slab, cpu)->stat[si] = 0;
David Rientjes78eb00c2009-10-15 02:20:22 -07004274}
4275
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004276#define STAT_ATTR(si, text) \
4277static ssize_t text##_show(struct kmem_cache *s, char *buf) \
4278{ \
4279 return show_stat(s, buf, si); \
4280} \
David Rientjes78eb00c2009-10-15 02:20:22 -07004281static ssize_t text##_store(struct kmem_cache *s, \
4282 const char *buf, size_t length) \
4283{ \
4284 if (buf[0] != '0') \
4285 return -EINVAL; \
4286 clear_stat(s, si); \
4287 return length; \
4288} \
4289SLAB_ATTR(text); \
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004290
4291STAT_ATTR(ALLOC_FASTPATH, alloc_fastpath);
4292STAT_ATTR(ALLOC_SLOWPATH, alloc_slowpath);
4293STAT_ATTR(FREE_FASTPATH, free_fastpath);
4294STAT_ATTR(FREE_SLOWPATH, free_slowpath);
4295STAT_ATTR(FREE_FROZEN, free_frozen);
4296STAT_ATTR(FREE_ADD_PARTIAL, free_add_partial);
4297STAT_ATTR(FREE_REMOVE_PARTIAL, free_remove_partial);
4298STAT_ATTR(ALLOC_FROM_PARTIAL, alloc_from_partial);
4299STAT_ATTR(ALLOC_SLAB, alloc_slab);
4300STAT_ATTR(ALLOC_REFILL, alloc_refill);
4301STAT_ATTR(FREE_SLAB, free_slab);
4302STAT_ATTR(CPUSLAB_FLUSH, cpuslab_flush);
4303STAT_ATTR(DEACTIVATE_FULL, deactivate_full);
4304STAT_ATTR(DEACTIVATE_EMPTY, deactivate_empty);
4305STAT_ATTR(DEACTIVATE_TO_HEAD, deactivate_to_head);
4306STAT_ATTR(DEACTIVATE_TO_TAIL, deactivate_to_tail);
4307STAT_ATTR(DEACTIVATE_REMOTE_FREES, deactivate_remote_frees);
Christoph Lameter65c33762008-04-14 19:11:40 +03004308STAT_ATTR(ORDER_FALLBACK, order_fallback);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004309#endif
4310
Pekka Enberg06428782008-01-07 23:20:27 -08004311static struct attribute *slab_attrs[] = {
Christoph Lameter81819f02007-05-06 14:49:36 -07004312 &slab_size_attr.attr,
4313 &object_size_attr.attr,
4314 &objs_per_slab_attr.attr,
4315 &order_attr.attr,
David Rientjes73d342b2009-02-22 17:40:09 -08004316 &min_partial_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07004317 &objects_attr.attr,
Christoph Lameter205ab992008-04-14 19:11:40 +03004318 &objects_partial_attr.attr,
4319 &total_objects_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07004320 &slabs_attr.attr,
4321 &partial_attr.attr,
4322 &cpu_slabs_attr.attr,
4323 &ctor_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07004324 &aliases_attr.attr,
4325 &align_attr.attr,
4326 &sanity_checks_attr.attr,
4327 &trace_attr.attr,
4328 &hwcache_align_attr.attr,
4329 &reclaim_account_attr.attr,
4330 &destroy_by_rcu_attr.attr,
4331 &red_zone_attr.attr,
4332 &poison_attr.attr,
4333 &store_user_attr.attr,
Christoph Lameter53e15af2007-05-06 14:49:43 -07004334 &validate_attr.attr,
Christoph Lameter2086d262007-05-06 14:49:46 -07004335 &shrink_attr.attr,
Christoph Lameter88a420e2007-05-06 14:49:45 -07004336 &alloc_calls_attr.attr,
4337 &free_calls_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07004338#ifdef CONFIG_ZONE_DMA
4339 &cache_dma_attr.attr,
4340#endif
4341#ifdef CONFIG_NUMA
Christoph Lameter98246012008-01-07 23:20:26 -08004342 &remote_node_defrag_ratio_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07004343#endif
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004344#ifdef CONFIG_SLUB_STATS
4345 &alloc_fastpath_attr.attr,
4346 &alloc_slowpath_attr.attr,
4347 &free_fastpath_attr.attr,
4348 &free_slowpath_attr.attr,
4349 &free_frozen_attr.attr,
4350 &free_add_partial_attr.attr,
4351 &free_remove_partial_attr.attr,
4352 &alloc_from_partial_attr.attr,
4353 &alloc_slab_attr.attr,
4354 &alloc_refill_attr.attr,
4355 &free_slab_attr.attr,
4356 &cpuslab_flush_attr.attr,
4357 &deactivate_full_attr.attr,
4358 &deactivate_empty_attr.attr,
4359 &deactivate_to_head_attr.attr,
4360 &deactivate_to_tail_attr.attr,
4361 &deactivate_remote_frees_attr.attr,
Christoph Lameter65c33762008-04-14 19:11:40 +03004362 &order_fallback_attr.attr,
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004363#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07004364 NULL
4365};
4366
4367static struct attribute_group slab_attr_group = {
4368 .attrs = slab_attrs,
4369};
4370
4371static ssize_t slab_attr_show(struct kobject *kobj,
4372 struct attribute *attr,
4373 char *buf)
4374{
4375 struct slab_attribute *attribute;
4376 struct kmem_cache *s;
4377 int err;
4378
4379 attribute = to_slab_attr(attr);
4380 s = to_slab(kobj);
4381
4382 if (!attribute->show)
4383 return -EIO;
4384
4385 err = attribute->show(s, buf);
4386
4387 return err;
4388}
4389
4390static ssize_t slab_attr_store(struct kobject *kobj,
4391 struct attribute *attr,
4392 const char *buf, size_t len)
4393{
4394 struct slab_attribute *attribute;
4395 struct kmem_cache *s;
4396 int err;
4397
4398 attribute = to_slab_attr(attr);
4399 s = to_slab(kobj);
4400
4401 if (!attribute->store)
4402 return -EIO;
4403
4404 err = attribute->store(s, buf, len);
4405
4406 return err;
4407}
4408
Christoph Lameter151c6022008-01-07 22:29:05 -08004409static void kmem_cache_release(struct kobject *kobj)
4410{
4411 struct kmem_cache *s = to_slab(kobj);
4412
4413 kfree(s);
4414}
4415
Christoph Lameter81819f02007-05-06 14:49:36 -07004416static struct sysfs_ops slab_sysfs_ops = {
4417 .show = slab_attr_show,
4418 .store = slab_attr_store,
4419};
4420
4421static struct kobj_type slab_ktype = {
4422 .sysfs_ops = &slab_sysfs_ops,
Christoph Lameter151c6022008-01-07 22:29:05 -08004423 .release = kmem_cache_release
Christoph Lameter81819f02007-05-06 14:49:36 -07004424};
4425
4426static int uevent_filter(struct kset *kset, struct kobject *kobj)
4427{
4428 struct kobj_type *ktype = get_ktype(kobj);
4429
4430 if (ktype == &slab_ktype)
4431 return 1;
4432 return 0;
4433}
4434
4435static struct kset_uevent_ops slab_uevent_ops = {
4436 .filter = uevent_filter,
4437};
4438
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06004439static struct kset *slab_kset;
Christoph Lameter81819f02007-05-06 14:49:36 -07004440
4441#define ID_STR_LENGTH 64
4442
4443/* Create a unique string id for a slab cache:
Christoph Lameter6446faa2008-02-15 23:45:26 -08004444 *
4445 * Format :[flags-]size
Christoph Lameter81819f02007-05-06 14:49:36 -07004446 */
4447static char *create_unique_id(struct kmem_cache *s)
4448{
4449 char *name = kmalloc(ID_STR_LENGTH, GFP_KERNEL);
4450 char *p = name;
4451
4452 BUG_ON(!name);
4453
4454 *p++ = ':';
4455 /*
4456 * First flags affecting slabcache operations. We will only
4457 * get here for aliasable slabs so we do not need to support
4458 * too many flags. The flags here must cover all flags that
4459 * are matched during merging to guarantee that the id is
4460 * unique.
4461 */
4462 if (s->flags & SLAB_CACHE_DMA)
4463 *p++ = 'd';
4464 if (s->flags & SLAB_RECLAIM_ACCOUNT)
4465 *p++ = 'a';
4466 if (s->flags & SLAB_DEBUG_FREE)
4467 *p++ = 'F';
Vegard Nossum5a896d92008-04-04 00:54:48 +02004468 if (!(s->flags & SLAB_NOTRACK))
4469 *p++ = 't';
Christoph Lameter81819f02007-05-06 14:49:36 -07004470 if (p != name + 1)
4471 *p++ = '-';
4472 p += sprintf(p, "%07d", s->size);
4473 BUG_ON(p > name + ID_STR_LENGTH - 1);
4474 return name;
4475}
4476
4477static int sysfs_slab_add(struct kmem_cache *s)
4478{
4479 int err;
4480 const char *name;
4481 int unmergeable;
4482
4483 if (slab_state < SYSFS)
4484 /* Defer until later */
4485 return 0;
4486
4487 unmergeable = slab_unmergeable(s);
4488 if (unmergeable) {
4489 /*
4490 * Slabcache can never be merged so we can use the name proper.
4491 * This is typically the case for debug situations. In that
4492 * case we can catch duplicate names easily.
4493 */
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06004494 sysfs_remove_link(&slab_kset->kobj, s->name);
Christoph Lameter81819f02007-05-06 14:49:36 -07004495 name = s->name;
4496 } else {
4497 /*
4498 * Create a unique name for the slab as a target
4499 * for the symlinks.
4500 */
4501 name = create_unique_id(s);
4502 }
4503
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06004504 s->kobj.kset = slab_kset;
Greg Kroah-Hartman1eada112007-12-17 23:05:35 -07004505 err = kobject_init_and_add(&s->kobj, &slab_ktype, NULL, name);
4506 if (err) {
4507 kobject_put(&s->kobj);
Christoph Lameter81819f02007-05-06 14:49:36 -07004508 return err;
Greg Kroah-Hartman1eada112007-12-17 23:05:35 -07004509 }
Christoph Lameter81819f02007-05-06 14:49:36 -07004510
4511 err = sysfs_create_group(&s->kobj, &slab_attr_group);
Xiaotian Feng5788d8a2009-07-22 11:28:53 +08004512 if (err) {
4513 kobject_del(&s->kobj);
4514 kobject_put(&s->kobj);
Christoph Lameter81819f02007-05-06 14:49:36 -07004515 return err;
Xiaotian Feng5788d8a2009-07-22 11:28:53 +08004516 }
Christoph Lameter81819f02007-05-06 14:49:36 -07004517 kobject_uevent(&s->kobj, KOBJ_ADD);
4518 if (!unmergeable) {
4519 /* Setup first alias */
4520 sysfs_slab_alias(s, s->name);
4521 kfree(name);
4522 }
4523 return 0;
4524}
4525
4526static void sysfs_slab_remove(struct kmem_cache *s)
4527{
4528 kobject_uevent(&s->kobj, KOBJ_REMOVE);
4529 kobject_del(&s->kobj);
Christoph Lameter151c6022008-01-07 22:29:05 -08004530 kobject_put(&s->kobj);
Christoph Lameter81819f02007-05-06 14:49:36 -07004531}
4532
4533/*
4534 * Need to buffer aliases during bootup until sysfs becomes
Nick Andrew9f6c708e2008-12-05 14:08:08 +11004535 * available lest we lose that information.
Christoph Lameter81819f02007-05-06 14:49:36 -07004536 */
4537struct saved_alias {
4538 struct kmem_cache *s;
4539 const char *name;
4540 struct saved_alias *next;
4541};
4542
Adrian Bunk5af328a2007-07-17 04:03:27 -07004543static struct saved_alias *alias_list;
Christoph Lameter81819f02007-05-06 14:49:36 -07004544
4545static int sysfs_slab_alias(struct kmem_cache *s, const char *name)
4546{
4547 struct saved_alias *al;
4548
4549 if (slab_state == SYSFS) {
4550 /*
4551 * If we have a leftover link then remove it.
4552 */
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06004553 sysfs_remove_link(&slab_kset->kobj, name);
4554 return sysfs_create_link(&slab_kset->kobj, &s->kobj, name);
Christoph Lameter81819f02007-05-06 14:49:36 -07004555 }
4556
4557 al = kmalloc(sizeof(struct saved_alias), GFP_KERNEL);
4558 if (!al)
4559 return -ENOMEM;
4560
4561 al->s = s;
4562 al->name = name;
4563 al->next = alias_list;
4564 alias_list = al;
4565 return 0;
4566}
4567
4568static int __init slab_sysfs_init(void)
4569{
Christoph Lameter5b95a4a2007-07-17 04:03:19 -07004570 struct kmem_cache *s;
Christoph Lameter81819f02007-05-06 14:49:36 -07004571 int err;
4572
Greg Kroah-Hartman0ff21e42007-11-06 10:36:58 -08004573 slab_kset = kset_create_and_add("slab", &slab_uevent_ops, kernel_kobj);
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06004574 if (!slab_kset) {
Christoph Lameter81819f02007-05-06 14:49:36 -07004575 printk(KERN_ERR "Cannot register slab subsystem.\n");
4576 return -ENOSYS;
4577 }
4578
Christoph Lameter26a7bd02007-05-09 02:32:39 -07004579 slab_state = SYSFS;
4580
Christoph Lameter5b95a4a2007-07-17 04:03:19 -07004581 list_for_each_entry(s, &slab_caches, list) {
Christoph Lameter26a7bd02007-05-09 02:32:39 -07004582 err = sysfs_slab_add(s);
Christoph Lameter5d540fb2007-08-30 23:56:26 -07004583 if (err)
4584 printk(KERN_ERR "SLUB: Unable to add boot slab %s"
4585 " to sysfs\n", s->name);
Christoph Lameter26a7bd02007-05-09 02:32:39 -07004586 }
Christoph Lameter81819f02007-05-06 14:49:36 -07004587
4588 while (alias_list) {
4589 struct saved_alias *al = alias_list;
4590
4591 alias_list = alias_list->next;
4592 err = sysfs_slab_alias(al->s, al->name);
Christoph Lameter5d540fb2007-08-30 23:56:26 -07004593 if (err)
4594 printk(KERN_ERR "SLUB: Unable to add boot slab alias"
4595 " %s to sysfs\n", s->name);
Christoph Lameter81819f02007-05-06 14:49:36 -07004596 kfree(al);
4597 }
4598
4599 resiliency_test();
4600 return 0;
4601}
4602
4603__initcall(slab_sysfs_init);
Christoph Lameter81819f02007-05-06 14:49:36 -07004604#endif
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004605
4606/*
4607 * The /proc/slabinfo ABI
4608 */
Linus Torvalds158a9622008-01-02 13:04:48 -08004609#ifdef CONFIG_SLABINFO
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004610static void print_slabinfo_header(struct seq_file *m)
4611{
4612 seq_puts(m, "slabinfo - version: 2.1\n");
4613 seq_puts(m, "# name <active_objs> <num_objs> <objsize> "
4614 "<objperslab> <pagesperslab>");
4615 seq_puts(m, " : tunables <limit> <batchcount> <sharedfactor>");
4616 seq_puts(m, " : slabdata <active_slabs> <num_slabs> <sharedavail>");
4617 seq_putc(m, '\n');
4618}
4619
4620static void *s_start(struct seq_file *m, loff_t *pos)
4621{
4622 loff_t n = *pos;
4623
4624 down_read(&slub_lock);
4625 if (!n)
4626 print_slabinfo_header(m);
4627
4628 return seq_list_start(&slab_caches, *pos);
4629}
4630
4631static void *s_next(struct seq_file *m, void *p, loff_t *pos)
4632{
4633 return seq_list_next(p, &slab_caches, pos);
4634}
4635
4636static void s_stop(struct seq_file *m, void *p)
4637{
4638 up_read(&slub_lock);
4639}
4640
4641static int s_show(struct seq_file *m, void *p)
4642{
4643 unsigned long nr_partials = 0;
4644 unsigned long nr_slabs = 0;
4645 unsigned long nr_inuse = 0;
Christoph Lameter205ab992008-04-14 19:11:40 +03004646 unsigned long nr_objs = 0;
4647 unsigned long nr_free = 0;
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004648 struct kmem_cache *s;
4649 int node;
4650
4651 s = list_entry(p, struct kmem_cache, list);
4652
4653 for_each_online_node(node) {
4654 struct kmem_cache_node *n = get_node(s, node);
4655
4656 if (!n)
4657 continue;
4658
4659 nr_partials += n->nr_partial;
4660 nr_slabs += atomic_long_read(&n->nr_slabs);
Christoph Lameter205ab992008-04-14 19:11:40 +03004661 nr_objs += atomic_long_read(&n->total_objects);
4662 nr_free += count_partial(n, count_free);
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004663 }
4664
Christoph Lameter205ab992008-04-14 19:11:40 +03004665 nr_inuse = nr_objs - nr_free;
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004666
4667 seq_printf(m, "%-17s %6lu %6lu %6u %4u %4d", s->name, nr_inuse,
Christoph Lameter834f3d12008-04-14 19:11:31 +03004668 nr_objs, s->size, oo_objects(s->oo),
4669 (1 << oo_order(s->oo)));
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004670 seq_printf(m, " : tunables %4u %4u %4u", 0, 0, 0);
4671 seq_printf(m, " : slabdata %6lu %6lu %6lu", nr_slabs, nr_slabs,
4672 0UL);
4673 seq_putc(m, '\n');
4674 return 0;
4675}
4676
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04004677static const struct seq_operations slabinfo_op = {
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004678 .start = s_start,
4679 .next = s_next,
4680 .stop = s_stop,
4681 .show = s_show,
4682};
4683
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04004684static int slabinfo_open(struct inode *inode, struct file *file)
4685{
4686 return seq_open(file, &slabinfo_op);
4687}
4688
4689static const struct file_operations proc_slabinfo_operations = {
4690 .open = slabinfo_open,
4691 .read = seq_read,
4692 .llseek = seq_lseek,
4693 .release = seq_release,
4694};
4695
4696static int __init slab_proc_init(void)
4697{
WANG Congcf5d1132009-08-18 19:11:40 +03004698 proc_create("slabinfo", S_IRUGO, NULL, &proc_slabinfo_operations);
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04004699 return 0;
4700}
4701module_init(slab_proc_init);
Linus Torvalds158a9622008-01-02 13:04:48 -08004702#endif /* CONFIG_SLABINFO */