blob: fb6518efe1ed4ebfa511158229dc37ec45b9ee58 [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 Lameteraf537b02010-07-09 14:07:14 -0500110#define SLAB_DEBUG_FLAGS (SLAB_RED_ZONE | SLAB_POISON | SLAB_STORE_USER | \
111 SLAB_TRACE | SLAB_DEBUG_FREE)
112
113static inline int kmem_cache_debug(struct kmem_cache *s)
114{
Christoph Lameter5577bd82007-05-16 22:10:56 -0700115#ifdef CONFIG_SLUB_DEBUG
Christoph Lameteraf537b02010-07-09 14:07:14 -0500116 return unlikely(s->flags & SLAB_DEBUG_FLAGS);
Christoph Lameter5577bd82007-05-16 22:10:56 -0700117#else
Christoph Lameteraf537b02010-07-09 14:07:14 -0500118 return 0;
Christoph Lameter5577bd82007-05-16 22:10:56 -0700119#endif
Christoph Lameteraf537b02010-07-09 14:07:14 -0500120}
Christoph Lameter5577bd82007-05-16 22:10:56 -0700121
Christoph Lameter81819f02007-05-06 14:49:36 -0700122/*
123 * Issues still to be resolved:
124 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700125 * - Support PAGE_ALLOC_DEBUG. Should be easy to do.
126 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700127 * - Variable sizing of the per node arrays
128 */
129
130/* Enable to test recovery from slab corruption on boot */
131#undef SLUB_RESILIENCY_TEST
132
Christoph Lameter81819f02007-05-06 14:49:36 -0700133/*
Christoph Lameter2086d262007-05-06 14:49:46 -0700134 * Mininum number of partial slabs. These will be left on the partial
135 * lists even if they are empty. kmem_cache_shrink may reclaim them.
136 */
Christoph Lameter76be8952007-12-21 14:37:37 -0800137#define MIN_PARTIAL 5
Christoph Lametere95eed52007-05-06 14:49:44 -0700138
Christoph Lameter2086d262007-05-06 14:49:46 -0700139/*
140 * Maximum number of desirable partial slabs.
141 * The existence of more partial slabs makes kmem_cache_shrink
142 * sort the partial list by the number of objects in the.
143 */
144#define MAX_PARTIAL 10
145
Christoph Lameter81819f02007-05-06 14:49:36 -0700146#define DEBUG_DEFAULT_FLAGS (SLAB_DEBUG_FREE | SLAB_RED_ZONE | \
147 SLAB_POISON | SLAB_STORE_USER)
Christoph Lameter672bba32007-05-09 02:32:39 -0700148
Christoph Lameter81819f02007-05-06 14:49:36 -0700149/*
David Rientjes3de47212009-07-27 18:30:35 -0700150 * Debugging flags that require metadata to be stored in the slab. These get
151 * disabled when slub_debug=O is used and a cache's min order increases with
152 * metadata.
David Rientjesfa5ec8a2009-07-07 00:14:14 -0700153 */
David Rientjes3de47212009-07-27 18:30:35 -0700154#define DEBUG_METADATA_FLAGS (SLAB_RED_ZONE | SLAB_POISON | SLAB_STORE_USER)
David Rientjesfa5ec8a2009-07-07 00:14:14 -0700155
156/*
Christoph Lameter81819f02007-05-06 14:49:36 -0700157 * Set of flags that will prevent slab merging
158 */
159#define SLUB_NEVER_MERGE (SLAB_RED_ZONE | SLAB_POISON | SLAB_STORE_USER | \
Dmitry Monakhov4c13dd32010-02-26 09:36:12 +0300160 SLAB_TRACE | SLAB_DESTROY_BY_RCU | SLAB_NOLEAKTRACE | \
161 SLAB_FAILSLAB)
Christoph Lameter81819f02007-05-06 14:49:36 -0700162
163#define SLUB_MERGE_SAME (SLAB_DEBUG_FREE | SLAB_RECLAIM_ACCOUNT | \
Vegard Nossum5a896d92008-04-04 00:54:48 +0200164 SLAB_CACHE_DMA | SLAB_NOTRACK)
Christoph Lameter81819f02007-05-06 14:49:36 -0700165
Cyrill Gorcunov210b5c02008-10-22 23:00:38 +0400166#define OO_SHIFT 16
167#define OO_MASK ((1 << OO_SHIFT) - 1)
168#define MAX_OBJS_PER_PAGE 65535 /* since page.objects is u16 */
169
Christoph Lameter81819f02007-05-06 14:49:36 -0700170/* Internal SLUB flags */
Christoph Lameterf90ec392010-07-09 14:07:11 -0500171#define __OBJECT_POISON 0x80000000UL /* Poison object */
172#define __SYSFS_ADD_DEFERRED 0x40000000UL /* Not yet visible via sysfs */
Christoph Lameter81819f02007-05-06 14:49:36 -0700173
174static int kmem_size = sizeof(struct kmem_cache);
175
176#ifdef CONFIG_SMP
177static struct notifier_block slab_notifier;
178#endif
179
180static enum {
181 DOWN, /* No slab functionality available */
182 PARTIAL, /* kmem_cache_open() works but kmalloc does not */
Christoph Lameter672bba32007-05-09 02:32:39 -0700183 UP, /* Everything works but does not show up in sysfs */
Christoph Lameter81819f02007-05-06 14:49:36 -0700184 SYSFS /* Sysfs up */
185} slab_state = DOWN;
186
187/* A list of all slab caches on the system */
188static DECLARE_RWSEM(slub_lock);
Adrian Bunk5af328a2007-07-17 04:03:27 -0700189static LIST_HEAD(slab_caches);
Christoph Lameter81819f02007-05-06 14:49:36 -0700190
Christoph Lameter02cbc872007-05-09 02:32:43 -0700191/*
192 * Tracking user of a slab.
193 */
194struct track {
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +0300195 unsigned long addr; /* Called from address */
Christoph Lameter02cbc872007-05-09 02:32:43 -0700196 int cpu; /* Was running on cpu */
197 int pid; /* Pid context */
198 unsigned long when; /* When did the operation occur */
199};
200
201enum track_item { TRACK_ALLOC, TRACK_FREE };
202
Christoph Lameterf6acb632008-04-29 16:16:06 -0700203#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter81819f02007-05-06 14:49:36 -0700204static int sysfs_slab_add(struct kmem_cache *);
205static int sysfs_slab_alias(struct kmem_cache *, const char *);
206static void sysfs_slab_remove(struct kmem_cache *);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -0800207
Christoph Lameter81819f02007-05-06 14:49:36 -0700208#else
Christoph Lameter0c710012007-07-17 04:03:24 -0700209static inline int sysfs_slab_add(struct kmem_cache *s) { return 0; }
210static inline int sysfs_slab_alias(struct kmem_cache *s, const char *p)
211 { return 0; }
Christoph Lameter151c6022008-01-07 22:29:05 -0800212static inline void sysfs_slab_remove(struct kmem_cache *s)
213{
214 kfree(s);
215}
Christoph Lameter8ff12cf2008-02-07 17:47:41 -0800216
Christoph Lameter81819f02007-05-06 14:49:36 -0700217#endif
218
Christoph Lameter84e554e2009-12-18 16:26:23 -0600219static inline void stat(struct kmem_cache *s, enum stat_item si)
Christoph Lameter8ff12cf2008-02-07 17:47:41 -0800220{
221#ifdef CONFIG_SLUB_STATS
Christoph Lameter84e554e2009-12-18 16:26:23 -0600222 __this_cpu_inc(s->cpu_slab->stat[si]);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -0800223#endif
224}
225
Christoph Lameter81819f02007-05-06 14:49:36 -0700226/********************************************************************
227 * Core slab cache functions
228 *******************************************************************/
229
230int slab_is_available(void)
231{
232 return slab_state >= UP;
233}
234
235static inline struct kmem_cache_node *get_node(struct kmem_cache *s, int node)
236{
237#ifdef CONFIG_NUMA
238 return s->node[node];
239#else
240 return &s->local_node;
241#endif
242}
243
Christoph Lameter6446faa2008-02-15 23:45:26 -0800244/* Verify that a pointer has an address that is valid within a slab page */
Christoph Lameter02cbc872007-05-09 02:32:43 -0700245static inline int check_valid_pointer(struct kmem_cache *s,
246 struct page *page, const void *object)
247{
248 void *base;
249
Christoph Lametera973e9d2008-03-01 13:40:44 -0800250 if (!object)
Christoph Lameter02cbc872007-05-09 02:32:43 -0700251 return 1;
252
Christoph Lametera973e9d2008-03-01 13:40:44 -0800253 base = page_address(page);
Christoph Lameter39b26462008-04-14 19:11:30 +0300254 if (object < base || object >= base + page->objects * s->size ||
Christoph Lameter02cbc872007-05-09 02:32:43 -0700255 (object - base) % s->size) {
256 return 0;
257 }
258
259 return 1;
260}
261
Christoph Lameter7656c722007-05-09 02:32:40 -0700262static inline void *get_freepointer(struct kmem_cache *s, void *object)
263{
264 return *(void **)(object + s->offset);
265}
266
267static inline void set_freepointer(struct kmem_cache *s, void *object, void *fp)
268{
269 *(void **)(object + s->offset) = fp;
270}
271
272/* Loop over all objects in a slab */
Christoph Lameter224a88b2008-04-14 19:11:31 +0300273#define for_each_object(__p, __s, __addr, __objects) \
274 for (__p = (__addr); __p < (__addr) + (__objects) * (__s)->size;\
Christoph Lameter7656c722007-05-09 02:32:40 -0700275 __p += (__s)->size)
276
277/* Scan freelist */
278#define for_each_free_object(__p, __s, __free) \
Christoph Lametera973e9d2008-03-01 13:40:44 -0800279 for (__p = (__free); __p; __p = get_freepointer((__s), __p))
Christoph Lameter7656c722007-05-09 02:32:40 -0700280
281/* Determine object index from a given position */
282static inline int slab_index(void *p, struct kmem_cache *s, void *addr)
283{
284 return (p - addr) / s->size;
285}
286
Christoph Lameter834f3d12008-04-14 19:11:31 +0300287static inline struct kmem_cache_order_objects oo_make(int order,
288 unsigned long size)
289{
290 struct kmem_cache_order_objects x = {
Cyrill Gorcunov210b5c02008-10-22 23:00:38 +0400291 (order << OO_SHIFT) + (PAGE_SIZE << order) / size
Christoph Lameter834f3d12008-04-14 19:11:31 +0300292 };
293
294 return x;
295}
296
297static inline int oo_order(struct kmem_cache_order_objects x)
298{
Cyrill Gorcunov210b5c02008-10-22 23:00:38 +0400299 return x.x >> OO_SHIFT;
Christoph Lameter834f3d12008-04-14 19:11:31 +0300300}
301
302static inline int oo_objects(struct kmem_cache_order_objects x)
303{
Cyrill Gorcunov210b5c02008-10-22 23:00:38 +0400304 return x.x & OO_MASK;
Christoph Lameter834f3d12008-04-14 19:11:31 +0300305}
306
Christoph Lameter41ecc552007-05-09 02:32:44 -0700307#ifdef CONFIG_SLUB_DEBUG
308/*
309 * Debug settings:
310 */
Christoph Lameterf0630ff2007-07-15 23:38:14 -0700311#ifdef CONFIG_SLUB_DEBUG_ON
312static int slub_debug = DEBUG_DEFAULT_FLAGS;
313#else
Christoph Lameter41ecc552007-05-09 02:32:44 -0700314static int slub_debug;
Christoph Lameterf0630ff2007-07-15 23:38:14 -0700315#endif
Christoph Lameter41ecc552007-05-09 02:32:44 -0700316
317static char *slub_debug_slabs;
David Rientjesfa5ec8a2009-07-07 00:14:14 -0700318static int disable_higher_order_debug;
Christoph Lameter41ecc552007-05-09 02:32:44 -0700319
Christoph Lameter7656c722007-05-09 02:32:40 -0700320/*
Christoph Lameter81819f02007-05-06 14:49:36 -0700321 * Object debugging
322 */
323static void print_section(char *text, u8 *addr, unsigned int length)
324{
325 int i, offset;
326 int newline = 1;
327 char ascii[17];
328
329 ascii[16] = 0;
330
331 for (i = 0; i < length; i++) {
332 if (newline) {
Christoph Lameter24922682007-07-17 04:03:18 -0700333 printk(KERN_ERR "%8s 0x%p: ", text, addr + i);
Christoph Lameter81819f02007-05-06 14:49:36 -0700334 newline = 0;
335 }
Pekka Enberg06428782008-01-07 23:20:27 -0800336 printk(KERN_CONT " %02x", addr[i]);
Christoph Lameter81819f02007-05-06 14:49:36 -0700337 offset = i % 16;
338 ascii[offset] = isgraph(addr[i]) ? addr[i] : '.';
339 if (offset == 15) {
Pekka Enberg06428782008-01-07 23:20:27 -0800340 printk(KERN_CONT " %s\n", ascii);
Christoph Lameter81819f02007-05-06 14:49:36 -0700341 newline = 1;
342 }
343 }
344 if (!newline) {
345 i %= 16;
346 while (i < 16) {
Pekka Enberg06428782008-01-07 23:20:27 -0800347 printk(KERN_CONT " ");
Christoph Lameter81819f02007-05-06 14:49:36 -0700348 ascii[i] = ' ';
349 i++;
350 }
Pekka Enberg06428782008-01-07 23:20:27 -0800351 printk(KERN_CONT " %s\n", ascii);
Christoph Lameter81819f02007-05-06 14:49:36 -0700352 }
353}
354
Christoph Lameter81819f02007-05-06 14:49:36 -0700355static struct track *get_track(struct kmem_cache *s, void *object,
356 enum track_item alloc)
357{
358 struct track *p;
359
360 if (s->offset)
361 p = object + s->offset + sizeof(void *);
362 else
363 p = object + s->inuse;
364
365 return p + alloc;
366}
367
368static void set_track(struct kmem_cache *s, void *object,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +0300369 enum track_item alloc, unsigned long addr)
Christoph Lameter81819f02007-05-06 14:49:36 -0700370{
Akinobu Mita1a00df42009-03-07 00:36:21 +0900371 struct track *p = get_track(s, object, alloc);
Christoph Lameter81819f02007-05-06 14:49:36 -0700372
Christoph Lameter81819f02007-05-06 14:49:36 -0700373 if (addr) {
374 p->addr = addr;
375 p->cpu = smp_processor_id();
Alexey Dobriyan88e4ccf2008-06-23 02:58:37 +0400376 p->pid = current->pid;
Christoph Lameter81819f02007-05-06 14:49:36 -0700377 p->when = jiffies;
378 } else
379 memset(p, 0, sizeof(struct track));
380}
381
Christoph Lameter81819f02007-05-06 14:49:36 -0700382static void init_tracking(struct kmem_cache *s, void *object)
383{
Christoph Lameter24922682007-07-17 04:03:18 -0700384 if (!(s->flags & SLAB_STORE_USER))
385 return;
386
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +0300387 set_track(s, object, TRACK_FREE, 0UL);
388 set_track(s, object, TRACK_ALLOC, 0UL);
Christoph Lameter81819f02007-05-06 14:49:36 -0700389}
390
391static void print_track(const char *s, struct track *t)
392{
393 if (!t->addr)
394 return;
395
Linus Torvalds7daf7052008-07-14 12:12:53 -0700396 printk(KERN_ERR "INFO: %s in %pS age=%lu cpu=%u pid=%d\n",
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +0300397 s, (void *)t->addr, jiffies - t->when, t->cpu, t->pid);
Christoph Lameter81819f02007-05-06 14:49:36 -0700398}
399
Christoph Lameter24922682007-07-17 04:03:18 -0700400static void print_tracking(struct kmem_cache *s, void *object)
401{
402 if (!(s->flags & SLAB_STORE_USER))
403 return;
404
405 print_track("Allocated", get_track(s, object, TRACK_ALLOC));
406 print_track("Freed", get_track(s, object, TRACK_FREE));
407}
408
409static void print_page_info(struct page *page)
410{
Christoph Lameter39b26462008-04-14 19:11:30 +0300411 printk(KERN_ERR "INFO: Slab 0x%p objects=%u used=%u fp=0x%p flags=0x%04lx\n",
412 page, page->objects, page->inuse, page->freelist, page->flags);
Christoph Lameter24922682007-07-17 04:03:18 -0700413
414}
415
416static void slab_bug(struct kmem_cache *s, char *fmt, ...)
417{
418 va_list args;
419 char buf[100];
420
421 va_start(args, fmt);
422 vsnprintf(buf, sizeof(buf), fmt, args);
423 va_end(args);
424 printk(KERN_ERR "========================================"
425 "=====================================\n");
426 printk(KERN_ERR "BUG %s: %s\n", s->name, buf);
427 printk(KERN_ERR "----------------------------------------"
428 "-------------------------------------\n\n");
429}
430
431static void slab_fix(struct kmem_cache *s, char *fmt, ...)
432{
433 va_list args;
434 char buf[100];
435
436 va_start(args, fmt);
437 vsnprintf(buf, sizeof(buf), fmt, args);
438 va_end(args);
439 printk(KERN_ERR "FIX %s: %s\n", s->name, buf);
440}
441
442static void print_trailer(struct kmem_cache *s, struct page *page, u8 *p)
Christoph Lameter81819f02007-05-06 14:49:36 -0700443{
444 unsigned int off; /* Offset of last byte */
Christoph Lametera973e9d2008-03-01 13:40:44 -0800445 u8 *addr = page_address(page);
Christoph Lameter24922682007-07-17 04:03:18 -0700446
447 print_tracking(s, p);
448
449 print_page_info(page);
450
451 printk(KERN_ERR "INFO: Object 0x%p @offset=%tu fp=0x%p\n\n",
452 p, p - addr, get_freepointer(s, p));
453
454 if (p > addr + 16)
455 print_section("Bytes b4", p - 16, 16);
456
Pekka Enberg0ebd6522008-07-19 14:17:22 +0300457 print_section("Object", p, min_t(unsigned long, s->objsize, PAGE_SIZE));
Christoph Lameter81819f02007-05-06 14:49:36 -0700458
459 if (s->flags & SLAB_RED_ZONE)
460 print_section("Redzone", p + s->objsize,
461 s->inuse - s->objsize);
462
Christoph Lameter81819f02007-05-06 14:49:36 -0700463 if (s->offset)
464 off = s->offset + sizeof(void *);
465 else
466 off = s->inuse;
467
Christoph Lameter24922682007-07-17 04:03:18 -0700468 if (s->flags & SLAB_STORE_USER)
Christoph Lameter81819f02007-05-06 14:49:36 -0700469 off += 2 * sizeof(struct track);
Christoph Lameter81819f02007-05-06 14:49:36 -0700470
471 if (off != s->size)
472 /* Beginning of the filler is the free pointer */
Christoph Lameter24922682007-07-17 04:03:18 -0700473 print_section("Padding", p + off, s->size - off);
474
475 dump_stack();
Christoph Lameter81819f02007-05-06 14:49:36 -0700476}
477
478static void object_err(struct kmem_cache *s, struct page *page,
479 u8 *object, char *reason)
480{
Christoph Lameter3dc50632008-04-23 12:28:01 -0700481 slab_bug(s, "%s", reason);
Christoph Lameter24922682007-07-17 04:03:18 -0700482 print_trailer(s, page, object);
Christoph Lameter81819f02007-05-06 14:49:36 -0700483}
484
Christoph Lameter24922682007-07-17 04:03:18 -0700485static void slab_err(struct kmem_cache *s, struct page *page, char *fmt, ...)
Christoph Lameter81819f02007-05-06 14:49:36 -0700486{
487 va_list args;
488 char buf[100];
489
Christoph Lameter24922682007-07-17 04:03:18 -0700490 va_start(args, fmt);
491 vsnprintf(buf, sizeof(buf), fmt, args);
Christoph Lameter81819f02007-05-06 14:49:36 -0700492 va_end(args);
Christoph Lameter3dc50632008-04-23 12:28:01 -0700493 slab_bug(s, "%s", buf);
Christoph Lameter24922682007-07-17 04:03:18 -0700494 print_page_info(page);
Christoph Lameter81819f02007-05-06 14:49:36 -0700495 dump_stack();
496}
497
498static void init_object(struct kmem_cache *s, void *object, int active)
499{
500 u8 *p = object;
501
502 if (s->flags & __OBJECT_POISON) {
503 memset(p, POISON_FREE, s->objsize - 1);
Pekka Enberg06428782008-01-07 23:20:27 -0800504 p[s->objsize - 1] = POISON_END;
Christoph Lameter81819f02007-05-06 14:49:36 -0700505 }
506
507 if (s->flags & SLAB_RED_ZONE)
508 memset(p + s->objsize,
509 active ? SLUB_RED_ACTIVE : SLUB_RED_INACTIVE,
510 s->inuse - s->objsize);
511}
512
Christoph Lameter24922682007-07-17 04:03:18 -0700513static u8 *check_bytes(u8 *start, unsigned int value, unsigned int bytes)
Christoph Lameter81819f02007-05-06 14:49:36 -0700514{
515 while (bytes) {
516 if (*start != (u8)value)
Christoph Lameter24922682007-07-17 04:03:18 -0700517 return start;
Christoph Lameter81819f02007-05-06 14:49:36 -0700518 start++;
519 bytes--;
520 }
Christoph Lameter24922682007-07-17 04:03:18 -0700521 return NULL;
522}
523
524static void restore_bytes(struct kmem_cache *s, char *message, u8 data,
525 void *from, void *to)
526{
527 slab_fix(s, "Restoring 0x%p-0x%p=0x%x\n", from, to - 1, data);
528 memset(from, data, to - from);
529}
530
531static int check_bytes_and_report(struct kmem_cache *s, struct page *page,
532 u8 *object, char *what,
Pekka Enberg06428782008-01-07 23:20:27 -0800533 u8 *start, unsigned int value, unsigned int bytes)
Christoph Lameter24922682007-07-17 04:03:18 -0700534{
535 u8 *fault;
536 u8 *end;
537
538 fault = check_bytes(start, value, bytes);
539 if (!fault)
540 return 1;
541
542 end = start + bytes;
543 while (end > fault && end[-1] == value)
544 end--;
545
546 slab_bug(s, "%s overwritten", what);
547 printk(KERN_ERR "INFO: 0x%p-0x%p. First byte 0x%x instead of 0x%x\n",
548 fault, end - 1, fault[0], value);
549 print_trailer(s, page, object);
550
551 restore_bytes(s, what, value, fault, end);
552 return 0;
Christoph Lameter81819f02007-05-06 14:49:36 -0700553}
554
Christoph Lameter81819f02007-05-06 14:49:36 -0700555/*
556 * Object layout:
557 *
558 * object address
559 * Bytes of the object to be managed.
560 * If the freepointer may overlay the object then the free
561 * pointer is the first word of the object.
Christoph Lameter672bba32007-05-09 02:32:39 -0700562 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700563 * Poisoning uses 0x6b (POISON_FREE) and the last byte is
564 * 0xa5 (POISON_END)
565 *
566 * object + s->objsize
567 * Padding to reach word boundary. This is also used for Redzoning.
Christoph Lameter672bba32007-05-09 02:32:39 -0700568 * Padding is extended by another word if Redzoning is enabled and
569 * objsize == inuse.
570 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700571 * We fill with 0xbb (RED_INACTIVE) for inactive objects and with
572 * 0xcc (RED_ACTIVE) for objects in use.
573 *
574 * object + s->inuse
Christoph Lameter672bba32007-05-09 02:32:39 -0700575 * Meta data starts here.
576 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700577 * A. Free pointer (if we cannot overwrite object on free)
578 * B. Tracking data for SLAB_STORE_USER
Christoph Lameter672bba32007-05-09 02:32:39 -0700579 * C. Padding to reach required alignment boundary or at mininum
Christoph Lameter6446faa2008-02-15 23:45:26 -0800580 * one word if debugging is on to be able to detect writes
Christoph Lameter672bba32007-05-09 02:32:39 -0700581 * before the word boundary.
582 *
583 * Padding is done using 0x5a (POISON_INUSE)
Christoph Lameter81819f02007-05-06 14:49:36 -0700584 *
585 * object + s->size
Christoph Lameter672bba32007-05-09 02:32:39 -0700586 * Nothing is used beyond s->size.
Christoph Lameter81819f02007-05-06 14:49:36 -0700587 *
Christoph Lameter672bba32007-05-09 02:32:39 -0700588 * If slabcaches are merged then the objsize and inuse boundaries are mostly
589 * ignored. And therefore no slab options that rely on these boundaries
Christoph Lameter81819f02007-05-06 14:49:36 -0700590 * may be used with merged slabcaches.
591 */
592
Christoph Lameter81819f02007-05-06 14:49:36 -0700593static int check_pad_bytes(struct kmem_cache *s, struct page *page, u8 *p)
594{
595 unsigned long off = s->inuse; /* The end of info */
596
597 if (s->offset)
598 /* Freepointer is placed after the object. */
599 off += sizeof(void *);
600
601 if (s->flags & SLAB_STORE_USER)
602 /* We also have user information there */
603 off += 2 * sizeof(struct track);
604
605 if (s->size == off)
606 return 1;
607
Christoph Lameter24922682007-07-17 04:03:18 -0700608 return check_bytes_and_report(s, page, p, "Object padding",
609 p + off, POISON_INUSE, s->size - off);
Christoph Lameter81819f02007-05-06 14:49:36 -0700610}
611
Christoph Lameter39b26462008-04-14 19:11:30 +0300612/* Check the pad bytes at the end of a slab page */
Christoph Lameter81819f02007-05-06 14:49:36 -0700613static int slab_pad_check(struct kmem_cache *s, struct page *page)
614{
Christoph Lameter24922682007-07-17 04:03:18 -0700615 u8 *start;
616 u8 *fault;
617 u8 *end;
618 int length;
619 int remainder;
Christoph Lameter81819f02007-05-06 14:49:36 -0700620
621 if (!(s->flags & SLAB_POISON))
622 return 1;
623
Christoph Lametera973e9d2008-03-01 13:40:44 -0800624 start = page_address(page);
Christoph Lameter834f3d12008-04-14 19:11:31 +0300625 length = (PAGE_SIZE << compound_order(page));
Christoph Lameter39b26462008-04-14 19:11:30 +0300626 end = start + length;
627 remainder = length % s->size;
Christoph Lameter81819f02007-05-06 14:49:36 -0700628 if (!remainder)
629 return 1;
630
Christoph Lameter39b26462008-04-14 19:11:30 +0300631 fault = check_bytes(end - remainder, POISON_INUSE, remainder);
Christoph Lameter24922682007-07-17 04:03:18 -0700632 if (!fault)
633 return 1;
634 while (end > fault && end[-1] == POISON_INUSE)
635 end--;
636
637 slab_err(s, page, "Padding overwritten. 0x%p-0x%p", fault, end - 1);
Christoph Lameter39b26462008-04-14 19:11:30 +0300638 print_section("Padding", end - remainder, remainder);
Christoph Lameter24922682007-07-17 04:03:18 -0700639
Eric Dumazet8a3d2712009-09-03 16:08:06 +0200640 restore_bytes(s, "slab padding", POISON_INUSE, end - remainder, end);
Christoph Lameter24922682007-07-17 04:03:18 -0700641 return 0;
Christoph Lameter81819f02007-05-06 14:49:36 -0700642}
643
644static int check_object(struct kmem_cache *s, struct page *page,
645 void *object, int active)
646{
647 u8 *p = object;
648 u8 *endobject = object + s->objsize;
649
650 if (s->flags & SLAB_RED_ZONE) {
651 unsigned int red =
652 active ? SLUB_RED_ACTIVE : SLUB_RED_INACTIVE;
653
Christoph Lameter24922682007-07-17 04:03:18 -0700654 if (!check_bytes_and_report(s, page, object, "Redzone",
655 endobject, red, s->inuse - s->objsize))
Christoph Lameter81819f02007-05-06 14:49:36 -0700656 return 0;
Christoph Lameter81819f02007-05-06 14:49:36 -0700657 } else {
Ingo Molnar3adbefe2008-02-05 17:57:39 -0800658 if ((s->flags & SLAB_POISON) && s->objsize < s->inuse) {
659 check_bytes_and_report(s, page, p, "Alignment padding",
660 endobject, POISON_INUSE, s->inuse - s->objsize);
661 }
Christoph Lameter81819f02007-05-06 14:49:36 -0700662 }
663
664 if (s->flags & SLAB_POISON) {
665 if (!active && (s->flags & __OBJECT_POISON) &&
Christoph Lameter24922682007-07-17 04:03:18 -0700666 (!check_bytes_and_report(s, page, p, "Poison", p,
667 POISON_FREE, s->objsize - 1) ||
668 !check_bytes_and_report(s, page, p, "Poison",
Pekka Enberg06428782008-01-07 23:20:27 -0800669 p + s->objsize - 1, POISON_END, 1)))
Christoph Lameter81819f02007-05-06 14:49:36 -0700670 return 0;
Christoph Lameter81819f02007-05-06 14:49:36 -0700671 /*
672 * check_pad_bytes cleans up on its own.
673 */
674 check_pad_bytes(s, page, p);
675 }
676
677 if (!s->offset && active)
678 /*
679 * Object and freepointer overlap. Cannot check
680 * freepointer while object is allocated.
681 */
682 return 1;
683
684 /* Check free pointer validity */
685 if (!check_valid_pointer(s, page, get_freepointer(s, p))) {
686 object_err(s, page, p, "Freepointer corrupt");
687 /*
Nick Andrew9f6c708e2008-12-05 14:08:08 +1100688 * No choice but to zap it and thus lose the remainder
Christoph Lameter81819f02007-05-06 14:49:36 -0700689 * of the free objects in this slab. May cause
Christoph Lameter672bba32007-05-09 02:32:39 -0700690 * another error because the object count is now wrong.
Christoph Lameter81819f02007-05-06 14:49:36 -0700691 */
Christoph Lametera973e9d2008-03-01 13:40:44 -0800692 set_freepointer(s, p, NULL);
Christoph Lameter81819f02007-05-06 14:49:36 -0700693 return 0;
694 }
695 return 1;
696}
697
698static int check_slab(struct kmem_cache *s, struct page *page)
699{
Christoph Lameter39b26462008-04-14 19:11:30 +0300700 int maxobj;
701
Christoph Lameter81819f02007-05-06 14:49:36 -0700702 VM_BUG_ON(!irqs_disabled());
703
704 if (!PageSlab(page)) {
Christoph Lameter24922682007-07-17 04:03:18 -0700705 slab_err(s, page, "Not a valid slab page");
Christoph Lameter81819f02007-05-06 14:49:36 -0700706 return 0;
707 }
Christoph Lameter39b26462008-04-14 19:11:30 +0300708
709 maxobj = (PAGE_SIZE << compound_order(page)) / s->size;
710 if (page->objects > maxobj) {
711 slab_err(s, page, "objects %u > max %u",
712 s->name, page->objects, maxobj);
713 return 0;
714 }
715 if (page->inuse > page->objects) {
Christoph Lameter24922682007-07-17 04:03:18 -0700716 slab_err(s, page, "inuse %u > max %u",
Christoph Lameter39b26462008-04-14 19:11:30 +0300717 s->name, page->inuse, page->objects);
Christoph Lameter81819f02007-05-06 14:49:36 -0700718 return 0;
719 }
720 /* Slab_pad_check fixes things up after itself */
721 slab_pad_check(s, page);
722 return 1;
723}
724
725/*
Christoph Lameter672bba32007-05-09 02:32:39 -0700726 * Determine if a certain object on a page is on the freelist. Must hold the
727 * slab lock to guarantee that the chains are in a consistent state.
Christoph Lameter81819f02007-05-06 14:49:36 -0700728 */
729static int on_freelist(struct kmem_cache *s, struct page *page, void *search)
730{
731 int nr = 0;
732 void *fp = page->freelist;
733 void *object = NULL;
Christoph Lameter224a88b2008-04-14 19:11:31 +0300734 unsigned long max_objects;
Christoph Lameter81819f02007-05-06 14:49:36 -0700735
Christoph Lameter39b26462008-04-14 19:11:30 +0300736 while (fp && nr <= page->objects) {
Christoph Lameter81819f02007-05-06 14:49:36 -0700737 if (fp == search)
738 return 1;
739 if (!check_valid_pointer(s, page, fp)) {
740 if (object) {
741 object_err(s, page, object,
742 "Freechain corrupt");
Christoph Lametera973e9d2008-03-01 13:40:44 -0800743 set_freepointer(s, object, NULL);
Christoph Lameter81819f02007-05-06 14:49:36 -0700744 break;
745 } else {
Christoph Lameter24922682007-07-17 04:03:18 -0700746 slab_err(s, page, "Freepointer corrupt");
Christoph Lametera973e9d2008-03-01 13:40:44 -0800747 page->freelist = NULL;
Christoph Lameter39b26462008-04-14 19:11:30 +0300748 page->inuse = page->objects;
Christoph Lameter24922682007-07-17 04:03:18 -0700749 slab_fix(s, "Freelist cleared");
Christoph Lameter81819f02007-05-06 14:49:36 -0700750 return 0;
751 }
752 break;
753 }
754 object = fp;
755 fp = get_freepointer(s, object);
756 nr++;
757 }
758
Christoph Lameter224a88b2008-04-14 19:11:31 +0300759 max_objects = (PAGE_SIZE << compound_order(page)) / s->size;
Cyrill Gorcunov210b5c02008-10-22 23:00:38 +0400760 if (max_objects > MAX_OBJS_PER_PAGE)
761 max_objects = MAX_OBJS_PER_PAGE;
Christoph Lameter224a88b2008-04-14 19:11:31 +0300762
763 if (page->objects != max_objects) {
764 slab_err(s, page, "Wrong number of objects. Found %d but "
765 "should be %d", page->objects, max_objects);
766 page->objects = max_objects;
767 slab_fix(s, "Number of objects adjusted.");
768 }
Christoph Lameter39b26462008-04-14 19:11:30 +0300769 if (page->inuse != page->objects - nr) {
Christoph Lameter70d71222007-05-06 14:49:47 -0700770 slab_err(s, page, "Wrong object count. Counter is %d but "
Christoph Lameter39b26462008-04-14 19:11:30 +0300771 "counted were %d", page->inuse, page->objects - nr);
772 page->inuse = page->objects - nr;
Christoph Lameter24922682007-07-17 04:03:18 -0700773 slab_fix(s, "Object count adjusted.");
Christoph Lameter81819f02007-05-06 14:49:36 -0700774 }
775 return search == NULL;
776}
777
Christoph Lameter0121c6192008-04-29 16:11:12 -0700778static void trace(struct kmem_cache *s, struct page *page, void *object,
779 int alloc)
Christoph Lameter3ec09742007-05-16 22:11:00 -0700780{
781 if (s->flags & SLAB_TRACE) {
782 printk(KERN_INFO "TRACE %s %s 0x%p inuse=%d fp=0x%p\n",
783 s->name,
784 alloc ? "alloc" : "free",
785 object, page->inuse,
786 page->freelist);
787
788 if (!alloc)
789 print_section("Object", (void *)object, s->objsize);
790
791 dump_stack();
792 }
793}
794
Christoph Lameter643b1132007-05-06 14:49:42 -0700795/*
Christoph Lameter672bba32007-05-09 02:32:39 -0700796 * Tracking of fully allocated slabs for debugging purposes.
Christoph Lameter643b1132007-05-06 14:49:42 -0700797 */
Christoph Lametere95eed52007-05-06 14:49:44 -0700798static void add_full(struct kmem_cache_node *n, struct page *page)
Christoph Lameter643b1132007-05-06 14:49:42 -0700799{
Christoph Lameter643b1132007-05-06 14:49:42 -0700800 spin_lock(&n->list_lock);
801 list_add(&page->lru, &n->full);
802 spin_unlock(&n->list_lock);
803}
804
805static void remove_full(struct kmem_cache *s, struct page *page)
806{
807 struct kmem_cache_node *n;
808
809 if (!(s->flags & SLAB_STORE_USER))
810 return;
811
812 n = get_node(s, page_to_nid(page));
813
814 spin_lock(&n->list_lock);
815 list_del(&page->lru);
816 spin_unlock(&n->list_lock);
817}
818
Christoph Lameter0f389ec2008-04-14 18:53:02 +0300819/* Tracking of the number of slabs for debugging purposes */
820static inline unsigned long slabs_node(struct kmem_cache *s, int node)
821{
822 struct kmem_cache_node *n = get_node(s, node);
823
824 return atomic_long_read(&n->nr_slabs);
825}
826
Alexander Beregalov26c02cf2009-06-11 14:08:48 +0400827static inline unsigned long node_nr_slabs(struct kmem_cache_node *n)
828{
829 return atomic_long_read(&n->nr_slabs);
830}
831
Christoph Lameter205ab992008-04-14 19:11:40 +0300832static inline void inc_slabs_node(struct kmem_cache *s, int node, int objects)
Christoph Lameter0f389ec2008-04-14 18:53:02 +0300833{
834 struct kmem_cache_node *n = get_node(s, node);
835
836 /*
837 * May be called early in order to allocate a slab for the
838 * kmem_cache_node structure. Solve the chicken-egg
839 * dilemma by deferring the increment of the count during
840 * bootstrap (see early_kmem_cache_node_alloc).
841 */
Christoph Lameter205ab992008-04-14 19:11:40 +0300842 if (!NUMA_BUILD || n) {
Christoph Lameter0f389ec2008-04-14 18:53:02 +0300843 atomic_long_inc(&n->nr_slabs);
Christoph Lameter205ab992008-04-14 19:11:40 +0300844 atomic_long_add(objects, &n->total_objects);
845 }
Christoph Lameter0f389ec2008-04-14 18:53:02 +0300846}
Christoph Lameter205ab992008-04-14 19:11:40 +0300847static inline void dec_slabs_node(struct kmem_cache *s, int node, int objects)
Christoph Lameter0f389ec2008-04-14 18:53:02 +0300848{
849 struct kmem_cache_node *n = get_node(s, node);
850
851 atomic_long_dec(&n->nr_slabs);
Christoph Lameter205ab992008-04-14 19:11:40 +0300852 atomic_long_sub(objects, &n->total_objects);
Christoph Lameter0f389ec2008-04-14 18:53:02 +0300853}
854
855/* Object debug checks for alloc/free paths */
Christoph Lameter3ec09742007-05-16 22:11:00 -0700856static void setup_object_debug(struct kmem_cache *s, struct page *page,
857 void *object)
858{
859 if (!(s->flags & (SLAB_STORE_USER|SLAB_RED_ZONE|__OBJECT_POISON)))
860 return;
861
862 init_object(s, object, 0);
863 init_tracking(s, object);
864}
865
866static int alloc_debug_processing(struct kmem_cache *s, struct page *page,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +0300867 void *object, unsigned long addr)
Christoph Lameter81819f02007-05-06 14:49:36 -0700868{
869 if (!check_slab(s, page))
870 goto bad;
871
Christoph Lameterd692ef62008-02-15 23:45:24 -0800872 if (!on_freelist(s, page, object)) {
Christoph Lameter24922682007-07-17 04:03:18 -0700873 object_err(s, page, object, "Object already allocated");
Christoph Lameter70d71222007-05-06 14:49:47 -0700874 goto bad;
Christoph Lameter81819f02007-05-06 14:49:36 -0700875 }
876
877 if (!check_valid_pointer(s, page, object)) {
878 object_err(s, page, object, "Freelist Pointer check fails");
Christoph Lameter70d71222007-05-06 14:49:47 -0700879 goto bad;
Christoph Lameter81819f02007-05-06 14:49:36 -0700880 }
881
Christoph Lameterd692ef62008-02-15 23:45:24 -0800882 if (!check_object(s, page, object, 0))
Christoph Lameter81819f02007-05-06 14:49:36 -0700883 goto bad;
Christoph Lameter81819f02007-05-06 14:49:36 -0700884
Christoph Lameter3ec09742007-05-16 22:11:00 -0700885 /* Success perform special debug activities for allocs */
886 if (s->flags & SLAB_STORE_USER)
887 set_track(s, object, TRACK_ALLOC, addr);
888 trace(s, page, object, 1);
889 init_object(s, object, 1);
Christoph Lameter81819f02007-05-06 14:49:36 -0700890 return 1;
Christoph Lameter3ec09742007-05-16 22:11:00 -0700891
Christoph Lameter81819f02007-05-06 14:49:36 -0700892bad:
893 if (PageSlab(page)) {
894 /*
895 * If this is a slab page then lets do the best we can
896 * to avoid issues in the future. Marking all objects
Christoph Lameter672bba32007-05-09 02:32:39 -0700897 * as used avoids touching the remaining objects.
Christoph Lameter81819f02007-05-06 14:49:36 -0700898 */
Christoph Lameter24922682007-07-17 04:03:18 -0700899 slab_fix(s, "Marking all objects used");
Christoph Lameter39b26462008-04-14 19:11:30 +0300900 page->inuse = page->objects;
Christoph Lametera973e9d2008-03-01 13:40:44 -0800901 page->freelist = NULL;
Christoph Lameter81819f02007-05-06 14:49:36 -0700902 }
903 return 0;
904}
905
Christoph Lameter3ec09742007-05-16 22:11:00 -0700906static int free_debug_processing(struct kmem_cache *s, struct page *page,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +0300907 void *object, unsigned long addr)
Christoph Lameter81819f02007-05-06 14:49:36 -0700908{
909 if (!check_slab(s, page))
910 goto fail;
911
912 if (!check_valid_pointer(s, page, object)) {
Christoph Lameter70d71222007-05-06 14:49:47 -0700913 slab_err(s, page, "Invalid object pointer 0x%p", object);
Christoph Lameter81819f02007-05-06 14:49:36 -0700914 goto fail;
915 }
916
917 if (on_freelist(s, page, object)) {
Christoph Lameter24922682007-07-17 04:03:18 -0700918 object_err(s, page, object, "Object already free");
Christoph Lameter81819f02007-05-06 14:49:36 -0700919 goto fail;
920 }
921
922 if (!check_object(s, page, object, 1))
923 return 0;
924
925 if (unlikely(s != page->slab)) {
Ingo Molnar3adbefe2008-02-05 17:57:39 -0800926 if (!PageSlab(page)) {
Christoph Lameter70d71222007-05-06 14:49:47 -0700927 slab_err(s, page, "Attempt to free object(0x%p) "
928 "outside of slab", object);
Ingo Molnar3adbefe2008-02-05 17:57:39 -0800929 } else if (!page->slab) {
Christoph Lameter81819f02007-05-06 14:49:36 -0700930 printk(KERN_ERR
Christoph Lameter70d71222007-05-06 14:49:47 -0700931 "SLUB <none>: no slab for object 0x%p.\n",
Christoph Lameter81819f02007-05-06 14:49:36 -0700932 object);
Christoph Lameter70d71222007-05-06 14:49:47 -0700933 dump_stack();
Pekka Enberg06428782008-01-07 23:20:27 -0800934 } else
Christoph Lameter24922682007-07-17 04:03:18 -0700935 object_err(s, page, object,
936 "page slab pointer corrupt.");
Christoph Lameter81819f02007-05-06 14:49:36 -0700937 goto fail;
938 }
Christoph Lameter3ec09742007-05-16 22:11:00 -0700939
940 /* Special debug activities for freeing objects */
Andy Whitcroft8a380822008-07-23 21:27:18 -0700941 if (!PageSlubFrozen(page) && !page->freelist)
Christoph Lameter3ec09742007-05-16 22:11:00 -0700942 remove_full(s, page);
943 if (s->flags & SLAB_STORE_USER)
944 set_track(s, object, TRACK_FREE, addr);
945 trace(s, page, object, 0);
946 init_object(s, object, 0);
Christoph Lameter81819f02007-05-06 14:49:36 -0700947 return 1;
Christoph Lameter3ec09742007-05-16 22:11:00 -0700948
Christoph Lameter81819f02007-05-06 14:49:36 -0700949fail:
Christoph Lameter24922682007-07-17 04:03:18 -0700950 slab_fix(s, "Object at 0x%p not freed", object);
Christoph Lameter81819f02007-05-06 14:49:36 -0700951 return 0;
952}
953
Christoph Lameter41ecc552007-05-09 02:32:44 -0700954static int __init setup_slub_debug(char *str)
955{
Christoph Lameterf0630ff2007-07-15 23:38:14 -0700956 slub_debug = DEBUG_DEFAULT_FLAGS;
957 if (*str++ != '=' || !*str)
958 /*
959 * No options specified. Switch on full debugging.
960 */
961 goto out;
Christoph Lameter41ecc552007-05-09 02:32:44 -0700962
963 if (*str == ',')
Christoph Lameterf0630ff2007-07-15 23:38:14 -0700964 /*
965 * No options but restriction on slabs. This means full
966 * debugging for slabs matching a pattern.
967 */
968 goto check_slabs;
969
David Rientjesfa5ec8a2009-07-07 00:14:14 -0700970 if (tolower(*str) == 'o') {
971 /*
972 * Avoid enabling debugging on caches if its minimum order
973 * would increase as a result.
974 */
975 disable_higher_order_debug = 1;
976 goto out;
977 }
978
Christoph Lameterf0630ff2007-07-15 23:38:14 -0700979 slub_debug = 0;
980 if (*str == '-')
981 /*
982 * Switch off all debugging measures.
983 */
984 goto out;
985
986 /*
987 * Determine which debug features should be switched on
988 */
Pekka Enberg06428782008-01-07 23:20:27 -0800989 for (; *str && *str != ','; str++) {
Christoph Lameterf0630ff2007-07-15 23:38:14 -0700990 switch (tolower(*str)) {
991 case 'f':
992 slub_debug |= SLAB_DEBUG_FREE;
993 break;
994 case 'z':
995 slub_debug |= SLAB_RED_ZONE;
996 break;
997 case 'p':
998 slub_debug |= SLAB_POISON;
999 break;
1000 case 'u':
1001 slub_debug |= SLAB_STORE_USER;
1002 break;
1003 case 't':
1004 slub_debug |= SLAB_TRACE;
1005 break;
Dmitry Monakhov4c13dd32010-02-26 09:36:12 +03001006 case 'a':
1007 slub_debug |= SLAB_FAILSLAB;
1008 break;
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001009 default:
1010 printk(KERN_ERR "slub_debug option '%c' "
Pekka Enberg06428782008-01-07 23:20:27 -08001011 "unknown. skipped\n", *str);
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001012 }
1013 }
1014
1015check_slabs:
1016 if (*str == ',')
Christoph Lameter41ecc552007-05-09 02:32:44 -07001017 slub_debug_slabs = str + 1;
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001018out:
Christoph Lameter41ecc552007-05-09 02:32:44 -07001019 return 1;
1020}
1021
1022__setup("slub_debug", setup_slub_debug);
1023
Christoph Lameterba0268a2007-09-11 15:24:11 -07001024static unsigned long kmem_cache_flags(unsigned long objsize,
1025 unsigned long flags, const char *name,
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07001026 void (*ctor)(void *))
Christoph Lameter41ecc552007-05-09 02:32:44 -07001027{
1028 /*
Christoph Lametere1533622008-02-15 23:45:24 -08001029 * Enable debugging if selected on the kernel commandline.
Christoph Lameter41ecc552007-05-09 02:32:44 -07001030 */
Christoph Lametere1533622008-02-15 23:45:24 -08001031 if (slub_debug && (!slub_debug_slabs ||
David Rientjes3de47212009-07-27 18:30:35 -07001032 !strncmp(slub_debug_slabs, name, strlen(slub_debug_slabs))))
1033 flags |= slub_debug;
Christoph Lameterba0268a2007-09-11 15:24:11 -07001034
1035 return flags;
Christoph Lameter41ecc552007-05-09 02:32:44 -07001036}
1037#else
Christoph Lameter3ec09742007-05-16 22:11:00 -07001038static inline void setup_object_debug(struct kmem_cache *s,
1039 struct page *page, void *object) {}
Christoph Lameter41ecc552007-05-09 02:32:44 -07001040
Christoph Lameter3ec09742007-05-16 22:11:00 -07001041static inline int alloc_debug_processing(struct kmem_cache *s,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03001042 struct page *page, void *object, unsigned long addr) { return 0; }
Christoph Lameter41ecc552007-05-09 02:32:44 -07001043
Christoph Lameter3ec09742007-05-16 22:11:00 -07001044static inline int free_debug_processing(struct kmem_cache *s,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03001045 struct page *page, void *object, unsigned long addr) { return 0; }
Christoph Lameter41ecc552007-05-09 02:32:44 -07001046
Christoph Lameter41ecc552007-05-09 02:32:44 -07001047static inline int slab_pad_check(struct kmem_cache *s, struct page *page)
1048 { return 1; }
1049static inline int check_object(struct kmem_cache *s, struct page *page,
1050 void *object, int active) { return 1; }
Christoph Lameter3ec09742007-05-16 22:11:00 -07001051static inline void add_full(struct kmem_cache_node *n, struct page *page) {}
Christoph Lameterba0268a2007-09-11 15:24:11 -07001052static inline unsigned long kmem_cache_flags(unsigned long objsize,
1053 unsigned long flags, const char *name,
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07001054 void (*ctor)(void *))
Christoph Lameterba0268a2007-09-11 15:24:11 -07001055{
1056 return flags;
1057}
Christoph Lameter41ecc552007-05-09 02:32:44 -07001058#define slub_debug 0
Christoph Lameter0f389ec2008-04-14 18:53:02 +03001059
Ingo Molnarfdaa45e2009-09-15 11:00:26 +02001060#define disable_higher_order_debug 0
1061
Christoph Lameter0f389ec2008-04-14 18:53:02 +03001062static inline unsigned long slabs_node(struct kmem_cache *s, int node)
1063 { return 0; }
Alexander Beregalov26c02cf2009-06-11 14:08:48 +04001064static inline unsigned long node_nr_slabs(struct kmem_cache_node *n)
1065 { return 0; }
Christoph Lameter205ab992008-04-14 19:11:40 +03001066static inline void inc_slabs_node(struct kmem_cache *s, int node,
1067 int objects) {}
1068static inline void dec_slabs_node(struct kmem_cache *s, int node,
1069 int objects) {}
Christoph Lameter41ecc552007-05-09 02:32:44 -07001070#endif
Christoph Lameter205ab992008-04-14 19:11:40 +03001071
Christoph Lameter81819f02007-05-06 14:49:36 -07001072/*
1073 * Slab allocation and freeing
1074 */
Christoph Lameter65c33762008-04-14 19:11:40 +03001075static inline struct page *alloc_slab_page(gfp_t flags, int node,
1076 struct kmem_cache_order_objects oo)
1077{
1078 int order = oo_order(oo);
1079
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001080 flags |= __GFP_NOTRACK;
1081
Christoph Lameter2154a332010-07-09 14:07:10 -05001082 if (node == NUMA_NO_NODE)
Christoph Lameter65c33762008-04-14 19:11:40 +03001083 return alloc_pages(flags, order);
1084 else
Minchan Kim6b65aaf2010-04-14 23:58:36 +09001085 return alloc_pages_exact_node(node, flags, order);
Christoph Lameter65c33762008-04-14 19:11:40 +03001086}
1087
Christoph Lameter81819f02007-05-06 14:49:36 -07001088static struct page *allocate_slab(struct kmem_cache *s, gfp_t flags, int node)
1089{
Pekka Enberg06428782008-01-07 23:20:27 -08001090 struct page *page;
Christoph Lameter834f3d12008-04-14 19:11:31 +03001091 struct kmem_cache_order_objects oo = s->oo;
Pekka Enbergba522702009-06-24 21:59:51 +03001092 gfp_t alloc_gfp;
Christoph Lameter81819f02007-05-06 14:49:36 -07001093
Christoph Lameterb7a49f02008-02-14 14:21:32 -08001094 flags |= s->allocflags;
Mel Gormane12ba742007-10-16 01:25:52 -07001095
Pekka Enbergba522702009-06-24 21:59:51 +03001096 /*
1097 * Let the initial higher-order allocation fail under memory pressure
1098 * so we fall-back to the minimum order allocation.
1099 */
1100 alloc_gfp = (flags | __GFP_NOWARN | __GFP_NORETRY) & ~__GFP_NOFAIL;
1101
1102 page = alloc_slab_page(alloc_gfp, node, oo);
Christoph Lameter65c33762008-04-14 19:11:40 +03001103 if (unlikely(!page)) {
1104 oo = s->min;
1105 /*
1106 * Allocation may have failed due to fragmentation.
1107 * Try a lower order alloc if possible
1108 */
1109 page = alloc_slab_page(flags, node, oo);
1110 if (!page)
1111 return NULL;
Christoph Lameter81819f02007-05-06 14:49:36 -07001112
Christoph Lameter84e554e2009-12-18 16:26:23 -06001113 stat(s, ORDER_FALLBACK);
Christoph Lameter65c33762008-04-14 19:11:40 +03001114 }
Vegard Nossum5a896d92008-04-04 00:54:48 +02001115
1116 if (kmemcheck_enabled
Amerigo Wang5086c382009-08-19 21:44:13 +03001117 && !(s->flags & (SLAB_NOTRACK | DEBUG_DEFAULT_FLAGS))) {
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001118 int pages = 1 << oo_order(oo);
1119
1120 kmemcheck_alloc_shadow(page, oo_order(oo), flags, node);
1121
1122 /*
1123 * Objects from caches that have a constructor don't get
1124 * cleared when they're allocated, so we need to do it here.
1125 */
1126 if (s->ctor)
1127 kmemcheck_mark_uninitialized_pages(page, pages);
1128 else
1129 kmemcheck_mark_unallocated_pages(page, pages);
Vegard Nossum5a896d92008-04-04 00:54:48 +02001130 }
1131
Christoph Lameter834f3d12008-04-14 19:11:31 +03001132 page->objects = oo_objects(oo);
Christoph Lameter81819f02007-05-06 14:49:36 -07001133 mod_zone_page_state(page_zone(page),
1134 (s->flags & SLAB_RECLAIM_ACCOUNT) ?
1135 NR_SLAB_RECLAIMABLE : NR_SLAB_UNRECLAIMABLE,
Christoph Lameter65c33762008-04-14 19:11:40 +03001136 1 << oo_order(oo));
Christoph Lameter81819f02007-05-06 14:49:36 -07001137
1138 return page;
1139}
1140
1141static void setup_object(struct kmem_cache *s, struct page *page,
1142 void *object)
1143{
Christoph Lameter3ec09742007-05-16 22:11:00 -07001144 setup_object_debug(s, page, object);
Christoph Lameter4f104932007-05-06 14:50:17 -07001145 if (unlikely(s->ctor))
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07001146 s->ctor(object);
Christoph Lameter81819f02007-05-06 14:49:36 -07001147}
1148
1149static struct page *new_slab(struct kmem_cache *s, gfp_t flags, int node)
1150{
1151 struct page *page;
Christoph Lameter81819f02007-05-06 14:49:36 -07001152 void *start;
Christoph Lameter81819f02007-05-06 14:49:36 -07001153 void *last;
1154 void *p;
1155
Christoph Lameter6cb06222007-10-16 01:25:41 -07001156 BUG_ON(flags & GFP_SLAB_BUG_MASK);
Christoph Lameter81819f02007-05-06 14:49:36 -07001157
Christoph Lameter6cb06222007-10-16 01:25:41 -07001158 page = allocate_slab(s,
1159 flags & (GFP_RECLAIM_MASK | GFP_CONSTRAINT_MASK), node);
Christoph Lameter81819f02007-05-06 14:49:36 -07001160 if (!page)
1161 goto out;
1162
Christoph Lameter205ab992008-04-14 19:11:40 +03001163 inc_slabs_node(s, page_to_nid(page), page->objects);
Christoph Lameter81819f02007-05-06 14:49:36 -07001164 page->slab = s;
1165 page->flags |= 1 << PG_slab;
Christoph Lameter81819f02007-05-06 14:49:36 -07001166
1167 start = page_address(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001168
1169 if (unlikely(s->flags & SLAB_POISON))
Christoph Lameter834f3d12008-04-14 19:11:31 +03001170 memset(start, POISON_INUSE, PAGE_SIZE << compound_order(page));
Christoph Lameter81819f02007-05-06 14:49:36 -07001171
1172 last = start;
Christoph Lameter224a88b2008-04-14 19:11:31 +03001173 for_each_object(p, s, start, page->objects) {
Christoph Lameter81819f02007-05-06 14:49:36 -07001174 setup_object(s, page, last);
1175 set_freepointer(s, last, p);
1176 last = p;
1177 }
1178 setup_object(s, page, last);
Christoph Lametera973e9d2008-03-01 13:40:44 -08001179 set_freepointer(s, last, NULL);
Christoph Lameter81819f02007-05-06 14:49:36 -07001180
1181 page->freelist = start;
1182 page->inuse = 0;
1183out:
Christoph Lameter81819f02007-05-06 14:49:36 -07001184 return page;
1185}
1186
1187static void __free_slab(struct kmem_cache *s, struct page *page)
1188{
Christoph Lameter834f3d12008-04-14 19:11:31 +03001189 int order = compound_order(page);
1190 int pages = 1 << order;
Christoph Lameter81819f02007-05-06 14:49:36 -07001191
Christoph Lameteraf537b02010-07-09 14:07:14 -05001192 if (kmem_cache_debug(s)) {
Christoph Lameter81819f02007-05-06 14:49:36 -07001193 void *p;
1194
1195 slab_pad_check(s, page);
Christoph Lameter224a88b2008-04-14 19:11:31 +03001196 for_each_object(p, s, page_address(page),
1197 page->objects)
Christoph Lameter81819f02007-05-06 14:49:36 -07001198 check_object(s, page, p, 0);
Christoph Lameter81819f02007-05-06 14:49:36 -07001199 }
1200
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001201 kmemcheck_free_shadow(page, compound_order(page));
Vegard Nossum5a896d92008-04-04 00:54:48 +02001202
Christoph Lameter81819f02007-05-06 14:49:36 -07001203 mod_zone_page_state(page_zone(page),
1204 (s->flags & SLAB_RECLAIM_ACCOUNT) ?
1205 NR_SLAB_RECLAIMABLE : NR_SLAB_UNRECLAIMABLE,
Pekka Enberg06428782008-01-07 23:20:27 -08001206 -pages);
Christoph Lameter81819f02007-05-06 14:49:36 -07001207
Christoph Lameter49bd5222008-04-14 18:52:18 +03001208 __ClearPageSlab(page);
1209 reset_page_mapcount(page);
Nick Piggin1eb5ac62009-05-05 19:13:44 +10001210 if (current->reclaim_state)
1211 current->reclaim_state->reclaimed_slab += pages;
Christoph Lameter834f3d12008-04-14 19:11:31 +03001212 __free_pages(page, order);
Christoph Lameter81819f02007-05-06 14:49:36 -07001213}
1214
1215static void rcu_free_slab(struct rcu_head *h)
1216{
1217 struct page *page;
1218
1219 page = container_of((struct list_head *)h, struct page, lru);
1220 __free_slab(page->slab, page);
1221}
1222
1223static void free_slab(struct kmem_cache *s, struct page *page)
1224{
1225 if (unlikely(s->flags & SLAB_DESTROY_BY_RCU)) {
1226 /*
1227 * RCU free overloads the RCU head over the LRU
1228 */
1229 struct rcu_head *head = (void *)&page->lru;
1230
1231 call_rcu(head, rcu_free_slab);
1232 } else
1233 __free_slab(s, page);
1234}
1235
1236static void discard_slab(struct kmem_cache *s, struct page *page)
1237{
Christoph Lameter205ab992008-04-14 19:11:40 +03001238 dec_slabs_node(s, page_to_nid(page), page->objects);
Christoph Lameter81819f02007-05-06 14:49:36 -07001239 free_slab(s, page);
1240}
1241
1242/*
1243 * Per slab locking using the pagelock
1244 */
1245static __always_inline void slab_lock(struct page *page)
1246{
1247 bit_spin_lock(PG_locked, &page->flags);
1248}
1249
1250static __always_inline void slab_unlock(struct page *page)
1251{
Nick Piggina76d3542008-01-07 23:20:27 -08001252 __bit_spin_unlock(PG_locked, &page->flags);
Christoph Lameter81819f02007-05-06 14:49:36 -07001253}
1254
1255static __always_inline int slab_trylock(struct page *page)
1256{
1257 int rc = 1;
1258
1259 rc = bit_spin_trylock(PG_locked, &page->flags);
1260 return rc;
1261}
1262
1263/*
1264 * Management of partially allocated slabs
1265 */
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001266static void add_partial(struct kmem_cache_node *n,
1267 struct page *page, int tail)
Christoph Lameter81819f02007-05-06 14:49:36 -07001268{
Christoph Lametere95eed52007-05-06 14:49:44 -07001269 spin_lock(&n->list_lock);
1270 n->nr_partial++;
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001271 if (tail)
1272 list_add_tail(&page->lru, &n->partial);
1273 else
1274 list_add(&page->lru, &n->partial);
Christoph Lameter81819f02007-05-06 14:49:36 -07001275 spin_unlock(&n->list_lock);
1276}
1277
Christoph Lameter0121c6192008-04-29 16:11:12 -07001278static void remove_partial(struct kmem_cache *s, struct page *page)
Christoph Lameter81819f02007-05-06 14:49:36 -07001279{
1280 struct kmem_cache_node *n = get_node(s, page_to_nid(page));
1281
1282 spin_lock(&n->list_lock);
1283 list_del(&page->lru);
1284 n->nr_partial--;
1285 spin_unlock(&n->list_lock);
1286}
1287
1288/*
Christoph Lameter672bba32007-05-09 02:32:39 -07001289 * Lock slab and remove from the partial list.
Christoph Lameter81819f02007-05-06 14:49:36 -07001290 *
Christoph Lameter672bba32007-05-09 02:32:39 -07001291 * Must hold list_lock.
Christoph Lameter81819f02007-05-06 14:49:36 -07001292 */
Christoph Lameter0121c6192008-04-29 16:11:12 -07001293static inline int lock_and_freeze_slab(struct kmem_cache_node *n,
1294 struct page *page)
Christoph Lameter81819f02007-05-06 14:49:36 -07001295{
1296 if (slab_trylock(page)) {
1297 list_del(&page->lru);
1298 n->nr_partial--;
Andy Whitcroft8a380822008-07-23 21:27:18 -07001299 __SetPageSlubFrozen(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001300 return 1;
1301 }
1302 return 0;
1303}
1304
1305/*
Christoph Lameter672bba32007-05-09 02:32:39 -07001306 * Try to allocate a partial slab from a specific node.
Christoph Lameter81819f02007-05-06 14:49:36 -07001307 */
1308static struct page *get_partial_node(struct kmem_cache_node *n)
1309{
1310 struct page *page;
1311
1312 /*
1313 * Racy check. If we mistakenly see no partial slabs then we
1314 * just allocate an empty slab. If we mistakenly try to get a
Christoph Lameter672bba32007-05-09 02:32:39 -07001315 * partial slab and there is none available then get_partials()
1316 * will return NULL.
Christoph Lameter81819f02007-05-06 14:49:36 -07001317 */
1318 if (!n || !n->nr_partial)
1319 return NULL;
1320
1321 spin_lock(&n->list_lock);
1322 list_for_each_entry(page, &n->partial, lru)
Christoph Lameter4b6f0752007-05-16 22:10:53 -07001323 if (lock_and_freeze_slab(n, page))
Christoph Lameter81819f02007-05-06 14:49:36 -07001324 goto out;
1325 page = NULL;
1326out:
1327 spin_unlock(&n->list_lock);
1328 return page;
1329}
1330
1331/*
Christoph Lameter672bba32007-05-09 02:32:39 -07001332 * Get a page from somewhere. Search in increasing NUMA distances.
Christoph Lameter81819f02007-05-06 14:49:36 -07001333 */
1334static struct page *get_any_partial(struct kmem_cache *s, gfp_t flags)
1335{
1336#ifdef CONFIG_NUMA
1337 struct zonelist *zonelist;
Mel Gormandd1a2392008-04-28 02:12:17 -07001338 struct zoneref *z;
Mel Gorman54a6eb52008-04-28 02:12:16 -07001339 struct zone *zone;
1340 enum zone_type high_zoneidx = gfp_zone(flags);
Christoph Lameter81819f02007-05-06 14:49:36 -07001341 struct page *page;
1342
1343 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07001344 * The defrag ratio allows a configuration of the tradeoffs between
1345 * inter node defragmentation and node local allocations. A lower
1346 * defrag_ratio increases the tendency to do local allocations
1347 * instead of attempting to obtain partial slabs from other nodes.
Christoph Lameter81819f02007-05-06 14:49:36 -07001348 *
Christoph Lameter672bba32007-05-09 02:32:39 -07001349 * If the defrag_ratio is set to 0 then kmalloc() always
1350 * returns node local objects. If the ratio is higher then kmalloc()
1351 * may return off node objects because partial slabs are obtained
1352 * from other nodes and filled up.
Christoph Lameter81819f02007-05-06 14:49:36 -07001353 *
Christoph Lameter6446faa2008-02-15 23:45:26 -08001354 * If /sys/kernel/slab/xx/defrag_ratio is set to 100 (which makes
Christoph Lameter672bba32007-05-09 02:32:39 -07001355 * defrag_ratio = 1000) then every (well almost) allocation will
1356 * first attempt to defrag slab caches on other nodes. This means
1357 * scanning over all nodes to look for partial slabs which may be
1358 * expensive if we do it every time we are trying to find a slab
1359 * with available objects.
Christoph Lameter81819f02007-05-06 14:49:36 -07001360 */
Christoph Lameter98246012008-01-07 23:20:26 -08001361 if (!s->remote_node_defrag_ratio ||
1362 get_cycles() % 1024 > s->remote_node_defrag_ratio)
Christoph Lameter81819f02007-05-06 14:49:36 -07001363 return NULL;
1364
Miao Xiec0ff7452010-05-24 14:32:08 -07001365 get_mems_allowed();
Mel Gorman0e884602008-04-28 02:12:14 -07001366 zonelist = node_zonelist(slab_node(current->mempolicy), flags);
Mel Gorman54a6eb52008-04-28 02:12:16 -07001367 for_each_zone_zonelist(zone, z, zonelist, high_zoneidx) {
Christoph Lameter81819f02007-05-06 14:49:36 -07001368 struct kmem_cache_node *n;
1369
Mel Gorman54a6eb52008-04-28 02:12:16 -07001370 n = get_node(s, zone_to_nid(zone));
Christoph Lameter81819f02007-05-06 14:49:36 -07001371
Mel Gorman54a6eb52008-04-28 02:12:16 -07001372 if (n && cpuset_zone_allowed_hardwall(zone, flags) &&
David Rientjes3b89d7d2009-02-22 17:40:07 -08001373 n->nr_partial > s->min_partial) {
Christoph Lameter81819f02007-05-06 14:49:36 -07001374 page = get_partial_node(n);
Miao Xiec0ff7452010-05-24 14:32:08 -07001375 if (page) {
1376 put_mems_allowed();
Christoph Lameter81819f02007-05-06 14:49:36 -07001377 return page;
Miao Xiec0ff7452010-05-24 14:32:08 -07001378 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001379 }
1380 }
Miao Xiec0ff7452010-05-24 14:32:08 -07001381 put_mems_allowed();
Christoph Lameter81819f02007-05-06 14:49:36 -07001382#endif
1383 return NULL;
1384}
1385
1386/*
1387 * Get a partial page, lock it and return it.
1388 */
1389static struct page *get_partial(struct kmem_cache *s, gfp_t flags, int node)
1390{
1391 struct page *page;
Christoph Lameter2154a332010-07-09 14:07:10 -05001392 int searchnode = (node == NUMA_NO_NODE) ? numa_node_id() : node;
Christoph Lameter81819f02007-05-06 14:49:36 -07001393
1394 page = get_partial_node(get_node(s, searchnode));
1395 if (page || (flags & __GFP_THISNODE))
1396 return page;
1397
1398 return get_any_partial(s, flags);
1399}
1400
1401/*
1402 * Move a page back to the lists.
1403 *
1404 * Must be called with the slab lock held.
1405 *
1406 * On exit the slab lock will have been dropped.
1407 */
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001408static void unfreeze_slab(struct kmem_cache *s, struct page *page, int tail)
Christoph Lameter81819f02007-05-06 14:49:36 -07001409{
Christoph Lametere95eed52007-05-06 14:49:44 -07001410 struct kmem_cache_node *n = get_node(s, page_to_nid(page));
1411
Andy Whitcroft8a380822008-07-23 21:27:18 -07001412 __ClearPageSlubFrozen(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001413 if (page->inuse) {
Christoph Lametere95eed52007-05-06 14:49:44 -07001414
Christoph Lametera973e9d2008-03-01 13:40:44 -08001415 if (page->freelist) {
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001416 add_partial(n, page, tail);
Christoph Lameter84e554e2009-12-18 16:26:23 -06001417 stat(s, tail ? DEACTIVATE_TO_TAIL : DEACTIVATE_TO_HEAD);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001418 } else {
Christoph Lameter84e554e2009-12-18 16:26:23 -06001419 stat(s, DEACTIVATE_FULL);
Christoph Lameteraf537b02010-07-09 14:07:14 -05001420 if (kmem_cache_debug(s) && (s->flags & SLAB_STORE_USER))
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001421 add_full(n, page);
1422 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001423 slab_unlock(page);
1424 } else {
Christoph Lameter84e554e2009-12-18 16:26:23 -06001425 stat(s, DEACTIVATE_EMPTY);
David Rientjes3b89d7d2009-02-22 17:40:07 -08001426 if (n->nr_partial < s->min_partial) {
Christoph Lametere95eed52007-05-06 14:49:44 -07001427 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07001428 * Adding an empty slab to the partial slabs in order
1429 * to avoid page allocator overhead. This slab needs
1430 * to come after the other slabs with objects in
Christoph Lameter6446faa2008-02-15 23:45:26 -08001431 * so that the others get filled first. That way the
1432 * size of the partial list stays small.
1433 *
Christoph Lameter0121c6192008-04-29 16:11:12 -07001434 * kmem_cache_shrink can reclaim any empty slabs from
1435 * the partial list.
Christoph Lametere95eed52007-05-06 14:49:44 -07001436 */
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001437 add_partial(n, page, 1);
Christoph Lametere95eed52007-05-06 14:49:44 -07001438 slab_unlock(page);
1439 } else {
1440 slab_unlock(page);
Christoph Lameter84e554e2009-12-18 16:26:23 -06001441 stat(s, FREE_SLAB);
Christoph Lametere95eed52007-05-06 14:49:44 -07001442 discard_slab(s, page);
1443 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001444 }
1445}
1446
1447/*
1448 * Remove the cpu slab
1449 */
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001450static void deactivate_slab(struct kmem_cache *s, struct kmem_cache_cpu *c)
Christoph Lameter81819f02007-05-06 14:49:36 -07001451{
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001452 struct page *page = c->page;
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001453 int tail = 1;
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001454
Christoph Lameterb773ad72008-03-04 11:10:17 -08001455 if (page->freelist)
Christoph Lameter84e554e2009-12-18 16:26:23 -06001456 stat(s, DEACTIVATE_REMOTE_FREES);
Christoph Lameter894b8782007-05-10 03:15:16 -07001457 /*
Christoph Lameter6446faa2008-02-15 23:45:26 -08001458 * Merge cpu freelist into slab freelist. Typically we get here
Christoph Lameter894b8782007-05-10 03:15:16 -07001459 * because both freelists are empty. So this is unlikely
1460 * to occur.
1461 */
Christoph Lametera973e9d2008-03-01 13:40:44 -08001462 while (unlikely(c->freelist)) {
Christoph Lameter894b8782007-05-10 03:15:16 -07001463 void **object;
1464
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001465 tail = 0; /* Hot objects. Put the slab first */
1466
Christoph Lameter894b8782007-05-10 03:15:16 -07001467 /* Retrieve object from cpu_freelist */
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001468 object = c->freelist;
Christoph Lameterff120592009-12-18 16:26:22 -06001469 c->freelist = get_freepointer(s, c->freelist);
Christoph Lameter894b8782007-05-10 03:15:16 -07001470
1471 /* And put onto the regular freelist */
Christoph Lameterff120592009-12-18 16:26:22 -06001472 set_freepointer(s, object, page->freelist);
Christoph Lameter894b8782007-05-10 03:15:16 -07001473 page->freelist = object;
1474 page->inuse--;
1475 }
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001476 c->page = NULL;
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001477 unfreeze_slab(s, page, tail);
Christoph Lameter81819f02007-05-06 14:49:36 -07001478}
1479
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001480static inline void flush_slab(struct kmem_cache *s, struct kmem_cache_cpu *c)
Christoph Lameter81819f02007-05-06 14:49:36 -07001481{
Christoph Lameter84e554e2009-12-18 16:26:23 -06001482 stat(s, CPUSLAB_FLUSH);
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001483 slab_lock(c->page);
1484 deactivate_slab(s, c);
Christoph Lameter81819f02007-05-06 14:49:36 -07001485}
1486
1487/*
1488 * Flush cpu slab.
Christoph Lameter6446faa2008-02-15 23:45:26 -08001489 *
Christoph Lameter81819f02007-05-06 14:49:36 -07001490 * Called from IPI handler with interrupts disabled.
1491 */
Christoph Lameter0c710012007-07-17 04:03:24 -07001492static inline void __flush_cpu_slab(struct kmem_cache *s, int cpu)
Christoph Lameter81819f02007-05-06 14:49:36 -07001493{
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06001494 struct kmem_cache_cpu *c = per_cpu_ptr(s->cpu_slab, cpu);
Christoph Lameter81819f02007-05-06 14:49:36 -07001495
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001496 if (likely(c && c->page))
1497 flush_slab(s, c);
Christoph Lameter81819f02007-05-06 14:49:36 -07001498}
1499
1500static void flush_cpu_slab(void *d)
1501{
1502 struct kmem_cache *s = d;
Christoph Lameter81819f02007-05-06 14:49:36 -07001503
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001504 __flush_cpu_slab(s, smp_processor_id());
Christoph Lameter81819f02007-05-06 14:49:36 -07001505}
1506
1507static void flush_all(struct kmem_cache *s)
1508{
Jens Axboe15c8b6c2008-05-09 09:39:44 +02001509 on_each_cpu(flush_cpu_slab, s, 1);
Christoph Lameter81819f02007-05-06 14:49:36 -07001510}
1511
1512/*
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001513 * Check if the objects in a per cpu structure fit numa
1514 * locality expectations.
1515 */
1516static inline int node_match(struct kmem_cache_cpu *c, int node)
1517{
1518#ifdef CONFIG_NUMA
Christoph Lameter2154a332010-07-09 14:07:10 -05001519 if (node != NUMA_NO_NODE && c->node != node)
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001520 return 0;
1521#endif
1522 return 1;
1523}
1524
Pekka Enberg781b2ba2009-06-10 18:50:32 +03001525static int count_free(struct page *page)
1526{
1527 return page->objects - page->inuse;
1528}
1529
1530static unsigned long count_partial(struct kmem_cache_node *n,
1531 int (*get_count)(struct page *))
1532{
1533 unsigned long flags;
1534 unsigned long x = 0;
1535 struct page *page;
1536
1537 spin_lock_irqsave(&n->list_lock, flags);
1538 list_for_each_entry(page, &n->partial, lru)
1539 x += get_count(page);
1540 spin_unlock_irqrestore(&n->list_lock, flags);
1541 return x;
1542}
1543
Alexander Beregalov26c02cf2009-06-11 14:08:48 +04001544static inline unsigned long node_nr_objs(struct kmem_cache_node *n)
1545{
1546#ifdef CONFIG_SLUB_DEBUG
1547 return atomic_long_read(&n->total_objects);
1548#else
1549 return 0;
1550#endif
1551}
1552
Pekka Enberg781b2ba2009-06-10 18:50:32 +03001553static noinline void
1554slab_out_of_memory(struct kmem_cache *s, gfp_t gfpflags, int nid)
1555{
1556 int node;
1557
1558 printk(KERN_WARNING
1559 "SLUB: Unable to allocate memory on node %d (gfp=0x%x)\n",
1560 nid, gfpflags);
1561 printk(KERN_WARNING " cache: %s, object size: %d, buffer size: %d, "
1562 "default order: %d, min order: %d\n", s->name, s->objsize,
1563 s->size, oo_order(s->oo), oo_order(s->min));
1564
David Rientjesfa5ec8a2009-07-07 00:14:14 -07001565 if (oo_order(s->min) > get_order(s->objsize))
1566 printk(KERN_WARNING " %s debugging increased min order, use "
1567 "slub_debug=O to disable.\n", s->name);
1568
Pekka Enberg781b2ba2009-06-10 18:50:32 +03001569 for_each_online_node(node) {
1570 struct kmem_cache_node *n = get_node(s, node);
1571 unsigned long nr_slabs;
1572 unsigned long nr_objs;
1573 unsigned long nr_free;
1574
1575 if (!n)
1576 continue;
1577
Alexander Beregalov26c02cf2009-06-11 14:08:48 +04001578 nr_free = count_partial(n, count_free);
1579 nr_slabs = node_nr_slabs(n);
1580 nr_objs = node_nr_objs(n);
Pekka Enberg781b2ba2009-06-10 18:50:32 +03001581
1582 printk(KERN_WARNING
1583 " node %d: slabs: %ld, objs: %ld, free: %ld\n",
1584 node, nr_slabs, nr_objs, nr_free);
1585 }
1586}
1587
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001588/*
Christoph Lameter894b8782007-05-10 03:15:16 -07001589 * Slow path. The lockless freelist is empty or we need to perform
1590 * debugging duties.
Christoph Lameter81819f02007-05-06 14:49:36 -07001591 *
Christoph Lameter894b8782007-05-10 03:15:16 -07001592 * Interrupts are disabled.
Christoph Lameter81819f02007-05-06 14:49:36 -07001593 *
Christoph Lameter894b8782007-05-10 03:15:16 -07001594 * Processing is still very fast if new objects have been freed to the
1595 * regular freelist. In that case we simply take over the regular freelist
1596 * as the lockless freelist and zap the regular freelist.
Christoph Lameter81819f02007-05-06 14:49:36 -07001597 *
Christoph Lameter894b8782007-05-10 03:15:16 -07001598 * If that is not working then we fall back to the partial lists. We take the
1599 * first element of the freelist as the object to allocate now and move the
1600 * rest of the freelist to the lockless freelist.
1601 *
1602 * And if we were unable to get a new slab from the partial slab lists then
Christoph Lameter6446faa2008-02-15 23:45:26 -08001603 * we need to allocate a new slab. This is the slowest path since it involves
1604 * a call to the page allocator and the setup of a new slab.
Christoph Lameter81819f02007-05-06 14:49:36 -07001605 */
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03001606static void *__slab_alloc(struct kmem_cache *s, gfp_t gfpflags, int node,
1607 unsigned long addr, struct kmem_cache_cpu *c)
Christoph Lameter81819f02007-05-06 14:49:36 -07001608{
Christoph Lameter81819f02007-05-06 14:49:36 -07001609 void **object;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001610 struct page *new;
Christoph Lameter81819f02007-05-06 14:49:36 -07001611
Linus Torvaldse72e9c22008-03-27 20:56:33 -07001612 /* We handle __GFP_ZERO in the caller */
1613 gfpflags &= ~__GFP_ZERO;
1614
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001615 if (!c->page)
Christoph Lameter81819f02007-05-06 14:49:36 -07001616 goto new_slab;
1617
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001618 slab_lock(c->page);
1619 if (unlikely(!node_match(c, node)))
Christoph Lameter81819f02007-05-06 14:49:36 -07001620 goto another_slab;
Christoph Lameter6446faa2008-02-15 23:45:26 -08001621
Christoph Lameter84e554e2009-12-18 16:26:23 -06001622 stat(s, ALLOC_REFILL);
Christoph Lameter6446faa2008-02-15 23:45:26 -08001623
Christoph Lameter894b8782007-05-10 03:15:16 -07001624load_freelist:
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001625 object = c->page->freelist;
Christoph Lametera973e9d2008-03-01 13:40:44 -08001626 if (unlikely(!object))
Christoph Lameter81819f02007-05-06 14:49:36 -07001627 goto another_slab;
Christoph Lameteraf537b02010-07-09 14:07:14 -05001628 if (kmem_cache_debug(s))
Christoph Lameter81819f02007-05-06 14:49:36 -07001629 goto debug;
1630
Christoph Lameterff120592009-12-18 16:26:22 -06001631 c->freelist = get_freepointer(s, object);
Christoph Lameter39b26462008-04-14 19:11:30 +03001632 c->page->inuse = c->page->objects;
Christoph Lametera973e9d2008-03-01 13:40:44 -08001633 c->page->freelist = NULL;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001634 c->node = page_to_nid(c->page);
Christoph Lameter1f842602008-01-07 23:20:30 -08001635unlock_out:
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001636 slab_unlock(c->page);
Christoph Lameter84e554e2009-12-18 16:26:23 -06001637 stat(s, ALLOC_SLOWPATH);
Christoph Lameter81819f02007-05-06 14:49:36 -07001638 return object;
1639
1640another_slab:
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001641 deactivate_slab(s, c);
Christoph Lameter81819f02007-05-06 14:49:36 -07001642
1643new_slab:
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001644 new = get_partial(s, gfpflags, node);
1645 if (new) {
1646 c->page = new;
Christoph Lameter84e554e2009-12-18 16:26:23 -06001647 stat(s, ALLOC_FROM_PARTIAL);
Christoph Lameter894b8782007-05-10 03:15:16 -07001648 goto load_freelist;
Christoph Lameter81819f02007-05-06 14:49:36 -07001649 }
1650
Christoph Lameterb811c202007-10-16 23:25:51 -07001651 if (gfpflags & __GFP_WAIT)
1652 local_irq_enable();
1653
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001654 new = new_slab(s, gfpflags, node);
Christoph Lameterb811c202007-10-16 23:25:51 -07001655
1656 if (gfpflags & __GFP_WAIT)
1657 local_irq_disable();
1658
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001659 if (new) {
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06001660 c = __this_cpu_ptr(s->cpu_slab);
Christoph Lameter84e554e2009-12-18 16:26:23 -06001661 stat(s, ALLOC_SLAB);
Christoph Lameter05aa3452007-11-05 11:31:58 -08001662 if (c->page)
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001663 flush_slab(s, c);
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001664 slab_lock(new);
Andy Whitcroft8a380822008-07-23 21:27:18 -07001665 __SetPageSlubFrozen(new);
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001666 c->page = new;
Christoph Lameter4b6f0752007-05-16 22:10:53 -07001667 goto load_freelist;
Christoph Lameter81819f02007-05-06 14:49:36 -07001668 }
Pekka Enberg95f85982009-06-11 16:18:09 +03001669 if (!(gfpflags & __GFP_NOWARN) && printk_ratelimit())
1670 slab_out_of_memory(s, gfpflags, node);
Christoph Lameter71c7a062008-02-14 14:28:01 -08001671 return NULL;
Christoph Lameter81819f02007-05-06 14:49:36 -07001672debug:
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001673 if (!alloc_debug_processing(s, c->page, object, addr))
Christoph Lameter81819f02007-05-06 14:49:36 -07001674 goto another_slab;
Christoph Lameter894b8782007-05-10 03:15:16 -07001675
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001676 c->page->inuse++;
Christoph Lameterff120592009-12-18 16:26:22 -06001677 c->page->freelist = get_freepointer(s, object);
Christoph Lameteree3c72a2007-10-16 01:26:07 -07001678 c->node = -1;
Christoph Lameter1f842602008-01-07 23:20:30 -08001679 goto unlock_out;
Christoph Lameter894b8782007-05-10 03:15:16 -07001680}
1681
1682/*
1683 * Inlined fastpath so that allocation functions (kmalloc, kmem_cache_alloc)
1684 * have the fastpath folded into their functions. So no function call
1685 * overhead for requests that can be satisfied on the fastpath.
1686 *
1687 * The fastpath works by first checking if the lockless freelist can be used.
1688 * If not then __slab_alloc is called for slow processing.
1689 *
1690 * Otherwise we can simply pick the next object from the lockless free list.
1691 */
Pekka Enberg06428782008-01-07 23:20:27 -08001692static __always_inline void *slab_alloc(struct kmem_cache *s,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03001693 gfp_t gfpflags, int node, unsigned long addr)
Christoph Lameter894b8782007-05-10 03:15:16 -07001694{
Christoph Lameter894b8782007-05-10 03:15:16 -07001695 void **object;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001696 struct kmem_cache_cpu *c;
Christoph Lameter1f842602008-01-07 23:20:30 -08001697 unsigned long flags;
1698
Benjamin Herrenschmidtdcce2842009-06-18 13:24:12 +10001699 gfpflags &= gfp_allowed_mask;
Pekka Enberg7e85ee02009-06-12 14:03:06 +03001700
Nick Piggincf40bd12009-01-21 08:12:39 +01001701 lockdep_trace_alloc(gfpflags);
OGAWA Hirofumi89124d72008-11-19 21:23:59 +09001702 might_sleep_if(gfpflags & __GFP_WAIT);
Pekka Enberg3c506ef2008-12-29 11:47:05 +02001703
Dmitry Monakhov4c13dd32010-02-26 09:36:12 +03001704 if (should_failslab(s->objsize, gfpflags, s->flags))
Akinobu Mita773ff602008-12-23 19:37:01 +09001705 return NULL;
1706
Christoph Lameter894b8782007-05-10 03:15:16 -07001707 local_irq_save(flags);
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06001708 c = __this_cpu_ptr(s->cpu_slab);
1709 object = c->freelist;
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06001710 if (unlikely(!object || !node_match(c, node)))
Christoph Lameter894b8782007-05-10 03:15:16 -07001711
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001712 object = __slab_alloc(s, gfpflags, node, addr, c);
Christoph Lameter894b8782007-05-10 03:15:16 -07001713
1714 else {
Christoph Lameterff120592009-12-18 16:26:22 -06001715 c->freelist = get_freepointer(s, object);
Christoph Lameter84e554e2009-12-18 16:26:23 -06001716 stat(s, ALLOC_FASTPATH);
Christoph Lameter894b8782007-05-10 03:15:16 -07001717 }
1718 local_irq_restore(flags);
Christoph Lameterd07dbea2007-07-17 04:03:23 -07001719
Pekka Enberg74e21342009-11-25 20:14:48 +02001720 if (unlikely(gfpflags & __GFP_ZERO) && object)
Christoph Lameterff120592009-12-18 16:26:22 -06001721 memset(object, 0, s->objsize);
Christoph Lameterd07dbea2007-07-17 04:03:23 -07001722
Christoph Lameterff120592009-12-18 16:26:22 -06001723 kmemcheck_slab_alloc(s, gfpflags, object, s->objsize);
1724 kmemleak_alloc_recursive(object, s->objsize, 1, s->flags, gfpflags);
Vegard Nossum5a896d92008-04-04 00:54:48 +02001725
Christoph Lameter894b8782007-05-10 03:15:16 -07001726 return object;
Christoph Lameter81819f02007-05-06 14:49:36 -07001727}
1728
1729void *kmem_cache_alloc(struct kmem_cache *s, gfp_t gfpflags)
1730{
Christoph Lameter2154a332010-07-09 14:07:10 -05001731 void *ret = slab_alloc(s, gfpflags, NUMA_NO_NODE, _RET_IP_);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03001732
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02001733 trace_kmem_cache_alloc(_RET_IP_, ret, s->objsize, s->size, gfpflags);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03001734
1735 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07001736}
1737EXPORT_SYMBOL(kmem_cache_alloc);
1738
Li Zefan0f24f122009-12-11 15:45:30 +08001739#ifdef CONFIG_TRACING
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03001740void *kmem_cache_alloc_notrace(struct kmem_cache *s, gfp_t gfpflags)
1741{
Christoph Lameter2154a332010-07-09 14:07:10 -05001742 return slab_alloc(s, gfpflags, NUMA_NO_NODE, _RET_IP_);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03001743}
1744EXPORT_SYMBOL(kmem_cache_alloc_notrace);
1745#endif
1746
Christoph Lameter81819f02007-05-06 14:49:36 -07001747#ifdef CONFIG_NUMA
1748void *kmem_cache_alloc_node(struct kmem_cache *s, gfp_t gfpflags, int node)
1749{
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03001750 void *ret = slab_alloc(s, gfpflags, node, _RET_IP_);
1751
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02001752 trace_kmem_cache_alloc_node(_RET_IP_, ret,
1753 s->objsize, s->size, gfpflags, node);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03001754
1755 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07001756}
1757EXPORT_SYMBOL(kmem_cache_alloc_node);
1758#endif
1759
Li Zefan0f24f122009-12-11 15:45:30 +08001760#ifdef CONFIG_TRACING
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03001761void *kmem_cache_alloc_node_notrace(struct kmem_cache *s,
1762 gfp_t gfpflags,
1763 int node)
1764{
1765 return slab_alloc(s, gfpflags, node, _RET_IP_);
1766}
1767EXPORT_SYMBOL(kmem_cache_alloc_node_notrace);
1768#endif
1769
Christoph Lameter81819f02007-05-06 14:49:36 -07001770/*
Christoph Lameter894b8782007-05-10 03:15:16 -07001771 * Slow patch handling. This may still be called frequently since objects
1772 * have a longer lifetime than the cpu slabs in most processing loads.
Christoph Lameter81819f02007-05-06 14:49:36 -07001773 *
Christoph Lameter894b8782007-05-10 03:15:16 -07001774 * So we still attempt to reduce cache line usage. Just take the slab
1775 * lock and free the item. If there is no additional partial page
1776 * handling required then we can return immediately.
Christoph Lameter81819f02007-05-06 14:49:36 -07001777 */
Christoph Lameter894b8782007-05-10 03:15:16 -07001778static void __slab_free(struct kmem_cache *s, struct page *page,
Christoph Lameterff120592009-12-18 16:26:22 -06001779 void *x, unsigned long addr)
Christoph Lameter81819f02007-05-06 14:49:36 -07001780{
1781 void *prior;
1782 void **object = (void *)x;
Christoph Lameter81819f02007-05-06 14:49:36 -07001783
Christoph Lameter84e554e2009-12-18 16:26:23 -06001784 stat(s, FREE_SLOWPATH);
Christoph Lameter81819f02007-05-06 14:49:36 -07001785 slab_lock(page);
1786
Christoph Lameteraf537b02010-07-09 14:07:14 -05001787 if (kmem_cache_debug(s))
Christoph Lameter81819f02007-05-06 14:49:36 -07001788 goto debug;
Christoph Lameter6446faa2008-02-15 23:45:26 -08001789
Christoph Lameter81819f02007-05-06 14:49:36 -07001790checks_ok:
Christoph Lameterff120592009-12-18 16:26:22 -06001791 prior = page->freelist;
1792 set_freepointer(s, object, prior);
Christoph Lameter81819f02007-05-06 14:49:36 -07001793 page->freelist = object;
1794 page->inuse--;
1795
Andy Whitcroft8a380822008-07-23 21:27:18 -07001796 if (unlikely(PageSlubFrozen(page))) {
Christoph Lameter84e554e2009-12-18 16:26:23 -06001797 stat(s, FREE_FROZEN);
Christoph Lameter81819f02007-05-06 14:49:36 -07001798 goto out_unlock;
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001799 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001800
1801 if (unlikely(!page->inuse))
1802 goto slab_empty;
1803
1804 /*
Christoph Lameter6446faa2008-02-15 23:45:26 -08001805 * Objects left in the slab. If it was not on the partial list before
Christoph Lameter81819f02007-05-06 14:49:36 -07001806 * then add it.
1807 */
Christoph Lametera973e9d2008-03-01 13:40:44 -08001808 if (unlikely(!prior)) {
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001809 add_partial(get_node(s, page_to_nid(page)), page, 1);
Christoph Lameter84e554e2009-12-18 16:26:23 -06001810 stat(s, FREE_ADD_PARTIAL);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001811 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001812
1813out_unlock:
1814 slab_unlock(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001815 return;
1816
1817slab_empty:
Christoph Lametera973e9d2008-03-01 13:40:44 -08001818 if (prior) {
Christoph Lameter81819f02007-05-06 14:49:36 -07001819 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07001820 * Slab still on the partial list.
Christoph Lameter81819f02007-05-06 14:49:36 -07001821 */
1822 remove_partial(s, page);
Christoph Lameter84e554e2009-12-18 16:26:23 -06001823 stat(s, FREE_REMOVE_PARTIAL);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001824 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001825 slab_unlock(page);
Christoph Lameter84e554e2009-12-18 16:26:23 -06001826 stat(s, FREE_SLAB);
Christoph Lameter81819f02007-05-06 14:49:36 -07001827 discard_slab(s, page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001828 return;
1829
1830debug:
Christoph Lameter3ec09742007-05-16 22:11:00 -07001831 if (!free_debug_processing(s, page, x, addr))
Christoph Lameter77c5e2d2007-05-06 14:49:42 -07001832 goto out_unlock;
Christoph Lameter77c5e2d2007-05-06 14:49:42 -07001833 goto checks_ok;
Christoph Lameter81819f02007-05-06 14:49:36 -07001834}
1835
Christoph Lameter894b8782007-05-10 03:15:16 -07001836/*
1837 * Fastpath with forced inlining to produce a kfree and kmem_cache_free that
1838 * can perform fastpath freeing without additional function calls.
1839 *
1840 * The fastpath is only possible if we are freeing to the current cpu slab
1841 * of this processor. This typically the case if we have just allocated
1842 * the item before.
1843 *
1844 * If fastpath is not possible then fall back to __slab_free where we deal
1845 * with all sorts of special processing.
1846 */
Pekka Enberg06428782008-01-07 23:20:27 -08001847static __always_inline void slab_free(struct kmem_cache *s,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03001848 struct page *page, void *x, unsigned long addr)
Christoph Lameter894b8782007-05-10 03:15:16 -07001849{
1850 void **object = (void *)x;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001851 struct kmem_cache_cpu *c;
Christoph Lameter1f842602008-01-07 23:20:30 -08001852 unsigned long flags;
1853
Catalin Marinas06f22f12009-06-11 13:23:18 +01001854 kmemleak_free_recursive(x, s->flags);
Christoph Lameter894b8782007-05-10 03:15:16 -07001855 local_irq_save(flags);
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06001856 c = __this_cpu_ptr(s->cpu_slab);
Christoph Lameterff120592009-12-18 16:26:22 -06001857 kmemcheck_slab_free(s, object, s->objsize);
1858 debug_check_no_locks_freed(object, s->objsize);
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -07001859 if (!(s->flags & SLAB_DEBUG_OBJECTS))
Christoph Lameterff120592009-12-18 16:26:22 -06001860 debug_check_no_obj_freed(object, s->objsize);
Christoph Lameteree3c72a2007-10-16 01:26:07 -07001861 if (likely(page == c->page && c->node >= 0)) {
Christoph Lameterff120592009-12-18 16:26:22 -06001862 set_freepointer(s, object, c->freelist);
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001863 c->freelist = object;
Christoph Lameter84e554e2009-12-18 16:26:23 -06001864 stat(s, FREE_FASTPATH);
Christoph Lameter894b8782007-05-10 03:15:16 -07001865 } else
Christoph Lameterff120592009-12-18 16:26:22 -06001866 __slab_free(s, page, x, addr);
Christoph Lameter894b8782007-05-10 03:15:16 -07001867
1868 local_irq_restore(flags);
1869}
1870
Christoph Lameter81819f02007-05-06 14:49:36 -07001871void kmem_cache_free(struct kmem_cache *s, void *x)
1872{
Christoph Lameter77c5e2d2007-05-06 14:49:42 -07001873 struct page *page;
Christoph Lameter81819f02007-05-06 14:49:36 -07001874
Christoph Lameterb49af682007-05-06 14:49:41 -07001875 page = virt_to_head_page(x);
Christoph Lameter81819f02007-05-06 14:49:36 -07001876
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03001877 slab_free(s, page, x, _RET_IP_);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03001878
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02001879 trace_kmem_cache_free(_RET_IP_, x);
Christoph Lameter81819f02007-05-06 14:49:36 -07001880}
1881EXPORT_SYMBOL(kmem_cache_free);
1882
Cyrill Gorcunove9beef12008-10-28 22:02:26 +03001883/* Figure out on which slab page the object resides */
Christoph Lameter81819f02007-05-06 14:49:36 -07001884static struct page *get_object_page(const void *x)
1885{
Christoph Lameterb49af682007-05-06 14:49:41 -07001886 struct page *page = virt_to_head_page(x);
Christoph Lameter81819f02007-05-06 14:49:36 -07001887
1888 if (!PageSlab(page))
1889 return NULL;
1890
1891 return page;
1892}
1893
1894/*
Christoph Lameter672bba32007-05-09 02:32:39 -07001895 * Object placement in a slab is made very easy because we always start at
1896 * offset 0. If we tune the size of the object to the alignment then we can
1897 * get the required alignment by putting one properly sized object after
1898 * another.
Christoph Lameter81819f02007-05-06 14:49:36 -07001899 *
1900 * Notice that the allocation order determines the sizes of the per cpu
1901 * caches. Each processor has always one slab available for allocations.
1902 * Increasing the allocation order reduces the number of times that slabs
Christoph Lameter672bba32007-05-09 02:32:39 -07001903 * must be moved on and off the partial lists and is therefore a factor in
Christoph Lameter81819f02007-05-06 14:49:36 -07001904 * locking overhead.
Christoph Lameter81819f02007-05-06 14:49:36 -07001905 */
1906
1907/*
1908 * Mininum / Maximum order of slab pages. This influences locking overhead
1909 * and slab fragmentation. A higher order reduces the number of partial slabs
1910 * and increases the number of allocations possible without having to
1911 * take the list_lock.
1912 */
1913static int slub_min_order;
Christoph Lameter114e9e82008-04-14 19:11:41 +03001914static int slub_max_order = PAGE_ALLOC_COSTLY_ORDER;
Christoph Lameter9b2cd502008-04-14 19:11:41 +03001915static int slub_min_objects;
Christoph Lameter81819f02007-05-06 14:49:36 -07001916
1917/*
1918 * Merge control. If this is set then no merging of slab caches will occur.
Christoph Lameter672bba32007-05-09 02:32:39 -07001919 * (Could be removed. This was introduced to pacify the merge skeptics.)
Christoph Lameter81819f02007-05-06 14:49:36 -07001920 */
1921static int slub_nomerge;
1922
1923/*
Christoph Lameter81819f02007-05-06 14:49:36 -07001924 * Calculate the order of allocation given an slab object size.
1925 *
Christoph Lameter672bba32007-05-09 02:32:39 -07001926 * The order of allocation has significant impact on performance and other
1927 * system components. Generally order 0 allocations should be preferred since
1928 * order 0 does not cause fragmentation in the page allocator. Larger objects
1929 * be problematic to put into order 0 slabs because there may be too much
Christoph Lameterc124f5b2008-04-14 19:13:29 +03001930 * unused space left. We go to a higher order if more than 1/16th of the slab
Christoph Lameter672bba32007-05-09 02:32:39 -07001931 * would be wasted.
Christoph Lameter81819f02007-05-06 14:49:36 -07001932 *
Christoph Lameter672bba32007-05-09 02:32:39 -07001933 * In order to reach satisfactory performance we must ensure that a minimum
1934 * number of objects is in one slab. Otherwise we may generate too much
1935 * activity on the partial lists which requires taking the list_lock. This is
1936 * less a concern for large slabs though which are rarely used.
Christoph Lameter81819f02007-05-06 14:49:36 -07001937 *
Christoph Lameter672bba32007-05-09 02:32:39 -07001938 * slub_max_order specifies the order where we begin to stop considering the
1939 * number of objects in a slab as critical. If we reach slub_max_order then
1940 * we try to keep the page order as low as possible. So we accept more waste
1941 * of space in favor of a small page order.
1942 *
1943 * Higher order allocations also allow the placement of more objects in a
1944 * slab and thereby reduce object handling overhead. If the user has
1945 * requested a higher mininum order then we start with that one instead of
1946 * the smallest order which will fit the object.
Christoph Lameter81819f02007-05-06 14:49:36 -07001947 */
Christoph Lameter5e6d4442007-05-09 02:32:46 -07001948static inline int slab_order(int size, int min_objects,
1949 int max_order, int fract_leftover)
Christoph Lameter81819f02007-05-06 14:49:36 -07001950{
1951 int order;
1952 int rem;
Christoph Lameter6300ea72007-07-17 04:03:20 -07001953 int min_order = slub_min_order;
Christoph Lameter81819f02007-05-06 14:49:36 -07001954
Cyrill Gorcunov210b5c02008-10-22 23:00:38 +04001955 if ((PAGE_SIZE << min_order) / size > MAX_OBJS_PER_PAGE)
1956 return get_order(size * MAX_OBJS_PER_PAGE) - 1;
Christoph Lameter39b26462008-04-14 19:11:30 +03001957
Christoph Lameter6300ea72007-07-17 04:03:20 -07001958 for (order = max(min_order,
Christoph Lameter5e6d4442007-05-09 02:32:46 -07001959 fls(min_objects * size - 1) - PAGE_SHIFT);
1960 order <= max_order; order++) {
1961
Christoph Lameter81819f02007-05-06 14:49:36 -07001962 unsigned long slab_size = PAGE_SIZE << order;
1963
Christoph Lameter5e6d4442007-05-09 02:32:46 -07001964 if (slab_size < min_objects * size)
Christoph Lameter81819f02007-05-06 14:49:36 -07001965 continue;
1966
Christoph Lameter81819f02007-05-06 14:49:36 -07001967 rem = slab_size % size;
1968
Christoph Lameter5e6d4442007-05-09 02:32:46 -07001969 if (rem <= slab_size / fract_leftover)
Christoph Lameter81819f02007-05-06 14:49:36 -07001970 break;
1971
1972 }
Christoph Lameter672bba32007-05-09 02:32:39 -07001973
Christoph Lameter81819f02007-05-06 14:49:36 -07001974 return order;
1975}
1976
Christoph Lameter5e6d4442007-05-09 02:32:46 -07001977static inline int calculate_order(int size)
1978{
1979 int order;
1980 int min_objects;
1981 int fraction;
Zhang Yanmine8120ff2009-02-12 18:00:17 +02001982 int max_objects;
Christoph Lameter5e6d4442007-05-09 02:32:46 -07001983
1984 /*
1985 * Attempt to find best configuration for a slab. This
1986 * works by first attempting to generate a layout with
1987 * the best configuration and backing off gradually.
1988 *
1989 * First we reduce the acceptable waste in a slab. Then
1990 * we reduce the minimum objects required in a slab.
1991 */
1992 min_objects = slub_min_objects;
Christoph Lameter9b2cd502008-04-14 19:11:41 +03001993 if (!min_objects)
1994 min_objects = 4 * (fls(nr_cpu_ids) + 1);
Zhang Yanmine8120ff2009-02-12 18:00:17 +02001995 max_objects = (PAGE_SIZE << slub_max_order)/size;
1996 min_objects = min(min_objects, max_objects);
1997
Christoph Lameter5e6d4442007-05-09 02:32:46 -07001998 while (min_objects > 1) {
Christoph Lameterc124f5b2008-04-14 19:13:29 +03001999 fraction = 16;
Christoph Lameter5e6d4442007-05-09 02:32:46 -07002000 while (fraction >= 4) {
2001 order = slab_order(size, min_objects,
2002 slub_max_order, fraction);
2003 if (order <= slub_max_order)
2004 return order;
2005 fraction /= 2;
2006 }
Amerigo Wang5086c382009-08-19 21:44:13 +03002007 min_objects--;
Christoph Lameter5e6d4442007-05-09 02:32:46 -07002008 }
2009
2010 /*
2011 * We were unable to place multiple objects in a slab. Now
2012 * lets see if we can place a single object there.
2013 */
2014 order = slab_order(size, 1, slub_max_order, 1);
2015 if (order <= slub_max_order)
2016 return order;
2017
2018 /*
2019 * Doh this slab cannot be placed using slub_max_order.
2020 */
2021 order = slab_order(size, 1, MAX_ORDER, 1);
David Rientjes818cf592009-04-23 09:58:22 +03002022 if (order < MAX_ORDER)
Christoph Lameter5e6d4442007-05-09 02:32:46 -07002023 return order;
2024 return -ENOSYS;
2025}
2026
Christoph Lameter81819f02007-05-06 14:49:36 -07002027/*
Christoph Lameter672bba32007-05-09 02:32:39 -07002028 * Figure out what the alignment of the objects will be.
Christoph Lameter81819f02007-05-06 14:49:36 -07002029 */
2030static unsigned long calculate_alignment(unsigned long flags,
2031 unsigned long align, unsigned long size)
2032{
2033 /*
Christoph Lameter6446faa2008-02-15 23:45:26 -08002034 * If the user wants hardware cache aligned objects then follow that
2035 * suggestion if the object is sufficiently large.
Christoph Lameter81819f02007-05-06 14:49:36 -07002036 *
Christoph Lameter6446faa2008-02-15 23:45:26 -08002037 * The hardware cache alignment cannot override the specified
2038 * alignment though. If that is greater then use it.
Christoph Lameter81819f02007-05-06 14:49:36 -07002039 */
Nick Pigginb6210382008-03-05 14:05:56 -08002040 if (flags & SLAB_HWCACHE_ALIGN) {
2041 unsigned long ralign = cache_line_size();
2042 while (size <= ralign / 2)
2043 ralign /= 2;
2044 align = max(align, ralign);
2045 }
Christoph Lameter81819f02007-05-06 14:49:36 -07002046
2047 if (align < ARCH_SLAB_MINALIGN)
Nick Pigginb6210382008-03-05 14:05:56 -08002048 align = ARCH_SLAB_MINALIGN;
Christoph Lameter81819f02007-05-06 14:49:36 -07002049
2050 return ALIGN(align, sizeof(void *));
2051}
2052
Pekka Enberg5595cff2008-08-05 09:28:47 +03002053static void
2054init_kmem_cache_node(struct kmem_cache_node *n, struct kmem_cache *s)
Christoph Lameter81819f02007-05-06 14:49:36 -07002055{
2056 n->nr_partial = 0;
Christoph Lameter81819f02007-05-06 14:49:36 -07002057 spin_lock_init(&n->list_lock);
2058 INIT_LIST_HEAD(&n->partial);
Christoph Lameter8ab13722007-07-17 04:03:32 -07002059#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter0f389ec2008-04-14 18:53:02 +03002060 atomic_long_set(&n->nr_slabs, 0);
Salman Qazi02b71b72008-09-11 12:25:41 -07002061 atomic_long_set(&n->total_objects, 0);
Christoph Lameter643b1132007-05-06 14:49:42 -07002062 INIT_LIST_HEAD(&n->full);
Christoph Lameter8ab13722007-07-17 04:03:32 -07002063#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07002064}
2065
Christoph Lameter91efd772010-01-21 17:43:35 -06002066static DEFINE_PER_CPU(struct kmem_cache_cpu, kmalloc_percpu[KMALLOC_CACHES]);
Christoph Lameter4c93c3552007-10-16 01:26:08 -07002067
2068static inline int alloc_kmem_cache_cpus(struct kmem_cache *s, gfp_t flags)
2069{
Christoph Lameter756dee72009-12-18 16:26:21 -06002070 if (s < kmalloc_caches + KMALLOC_CACHES && s >= kmalloc_caches)
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06002071 /*
2072 * Boot time creation of the kmalloc array. Use static per cpu data
2073 * since the per cpu allocator is not available yet.
2074 */
Stephen Rothwell1154fab2010-03-01 16:04:45 +11002075 s->cpu_slab = kmalloc_percpu + (s - kmalloc_caches);
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06002076 else
2077 s->cpu_slab = alloc_percpu(struct kmem_cache_cpu);
2078
2079 if (!s->cpu_slab)
2080 return 0;
2081
Christoph Lameter4c93c3552007-10-16 01:26:08 -07002082 return 1;
2083}
Christoph Lameter4c93c3552007-10-16 01:26:08 -07002084
Christoph Lameter81819f02007-05-06 14:49:36 -07002085#ifdef CONFIG_NUMA
2086/*
2087 * No kmalloc_node yet so do it by hand. We know that this is the first
2088 * slab on the node for this slabcache. There are no concurrent accesses
2089 * possible.
2090 *
2091 * Note that this function only works on the kmalloc_node_cache
Christoph Lameter4c93c3552007-10-16 01:26:08 -07002092 * when allocating for the kmalloc_node_cache. This is used for bootstrapping
2093 * memory on a fresh node that has no slab structures yet.
Christoph Lameter81819f02007-05-06 14:49:36 -07002094 */
David Rientjes0094de92008-11-25 19:14:19 -08002095static void early_kmem_cache_node_alloc(gfp_t gfpflags, int node)
Christoph Lameter81819f02007-05-06 14:49:36 -07002096{
2097 struct page *page;
2098 struct kmem_cache_node *n;
rootba84c732008-01-07 23:20:28 -08002099 unsigned long flags;
Christoph Lameter81819f02007-05-06 14:49:36 -07002100
2101 BUG_ON(kmalloc_caches->size < sizeof(struct kmem_cache_node));
2102
Christoph Lametera2f92ee2007-08-22 14:01:57 -07002103 page = new_slab(kmalloc_caches, gfpflags, node);
Christoph Lameter81819f02007-05-06 14:49:36 -07002104
2105 BUG_ON(!page);
Christoph Lametera2f92ee2007-08-22 14:01:57 -07002106 if (page_to_nid(page) != node) {
2107 printk(KERN_ERR "SLUB: Unable to allocate memory from "
2108 "node %d\n", node);
2109 printk(KERN_ERR "SLUB: Allocating a useless per node structure "
2110 "in order to be able to continue\n");
2111 }
2112
Christoph Lameter81819f02007-05-06 14:49:36 -07002113 n = page->freelist;
2114 BUG_ON(!n);
2115 page->freelist = get_freepointer(kmalloc_caches, n);
2116 page->inuse++;
2117 kmalloc_caches->node[node] = n;
Christoph Lameter8ab13722007-07-17 04:03:32 -07002118#ifdef CONFIG_SLUB_DEBUG
Christoph Lameterd45f39c2007-07-17 04:03:21 -07002119 init_object(kmalloc_caches, n, 1);
2120 init_tracking(kmalloc_caches, n);
Christoph Lameter8ab13722007-07-17 04:03:32 -07002121#endif
Pekka Enberg5595cff2008-08-05 09:28:47 +03002122 init_kmem_cache_node(n, kmalloc_caches);
Christoph Lameter205ab992008-04-14 19:11:40 +03002123 inc_slabs_node(kmalloc_caches, node, page->objects);
Christoph Lameter6446faa2008-02-15 23:45:26 -08002124
rootba84c732008-01-07 23:20:28 -08002125 /*
2126 * lockdep requires consistent irq usage for each lock
2127 * so even though there cannot be a race this early in
2128 * the boot sequence, we still disable irqs.
2129 */
2130 local_irq_save(flags);
Christoph Lameter7c2e1322008-01-07 23:20:27 -08002131 add_partial(n, page, 0);
rootba84c732008-01-07 23:20:28 -08002132 local_irq_restore(flags);
Christoph Lameter81819f02007-05-06 14:49:36 -07002133}
2134
2135static void free_kmem_cache_nodes(struct kmem_cache *s)
2136{
2137 int node;
2138
Christoph Lameterf64dc582007-10-16 01:25:33 -07002139 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002140 struct kmem_cache_node *n = s->node[node];
Alexander Duyck73367bd2010-05-21 14:41:35 -07002141 if (n)
Christoph Lameter81819f02007-05-06 14:49:36 -07002142 kmem_cache_free(kmalloc_caches, n);
2143 s->node[node] = NULL;
2144 }
2145}
2146
2147static int init_kmem_cache_nodes(struct kmem_cache *s, gfp_t gfpflags)
2148{
2149 int node;
Christoph Lameter81819f02007-05-06 14:49:36 -07002150
Christoph Lameterf64dc582007-10-16 01:25:33 -07002151 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002152 struct kmem_cache_node *n;
2153
Alexander Duyck73367bd2010-05-21 14:41:35 -07002154 if (slab_state == DOWN) {
2155 early_kmem_cache_node_alloc(gfpflags, node);
2156 continue;
Christoph Lameter81819f02007-05-06 14:49:36 -07002157 }
Alexander Duyck73367bd2010-05-21 14:41:35 -07002158 n = kmem_cache_alloc_node(kmalloc_caches,
2159 gfpflags, node);
2160
2161 if (!n) {
2162 free_kmem_cache_nodes(s);
2163 return 0;
2164 }
2165
Christoph Lameter81819f02007-05-06 14:49:36 -07002166 s->node[node] = n;
Pekka Enberg5595cff2008-08-05 09:28:47 +03002167 init_kmem_cache_node(n, s);
Christoph Lameter81819f02007-05-06 14:49:36 -07002168 }
2169 return 1;
2170}
2171#else
2172static void free_kmem_cache_nodes(struct kmem_cache *s)
2173{
2174}
2175
2176static int init_kmem_cache_nodes(struct kmem_cache *s, gfp_t gfpflags)
2177{
Pekka Enberg5595cff2008-08-05 09:28:47 +03002178 init_kmem_cache_node(&s->local_node, s);
Christoph Lameter81819f02007-05-06 14:49:36 -07002179 return 1;
2180}
2181#endif
2182
David Rientjesc0bdb232009-02-25 09:16:35 +02002183static void set_min_partial(struct kmem_cache *s, unsigned long min)
David Rientjes3b89d7d2009-02-22 17:40:07 -08002184{
2185 if (min < MIN_PARTIAL)
2186 min = MIN_PARTIAL;
2187 else if (min > MAX_PARTIAL)
2188 min = MAX_PARTIAL;
2189 s->min_partial = min;
2190}
2191
Christoph Lameter81819f02007-05-06 14:49:36 -07002192/*
2193 * calculate_sizes() determines the order and the distribution of data within
2194 * a slab object.
2195 */
Christoph Lameter06b285d2008-04-14 19:11:41 +03002196static int calculate_sizes(struct kmem_cache *s, int forced_order)
Christoph Lameter81819f02007-05-06 14:49:36 -07002197{
2198 unsigned long flags = s->flags;
2199 unsigned long size = s->objsize;
2200 unsigned long align = s->align;
Christoph Lameter834f3d12008-04-14 19:11:31 +03002201 int order;
Christoph Lameter81819f02007-05-06 14:49:36 -07002202
2203 /*
Christoph Lameterd8b42bf2008-02-15 23:45:25 -08002204 * Round up object size to the next word boundary. We can only
2205 * place the free pointer at word boundaries and this determines
2206 * the possible location of the free pointer.
2207 */
2208 size = ALIGN(size, sizeof(void *));
2209
2210#ifdef CONFIG_SLUB_DEBUG
2211 /*
Christoph Lameter81819f02007-05-06 14:49:36 -07002212 * Determine if we can poison the object itself. If the user of
2213 * the slab may touch the object after free or before allocation
2214 * then we should never poison the object itself.
2215 */
2216 if ((flags & SLAB_POISON) && !(flags & SLAB_DESTROY_BY_RCU) &&
Christoph Lameterc59def9f2007-05-16 22:10:50 -07002217 !s->ctor)
Christoph Lameter81819f02007-05-06 14:49:36 -07002218 s->flags |= __OBJECT_POISON;
2219 else
2220 s->flags &= ~__OBJECT_POISON;
2221
Christoph Lameter81819f02007-05-06 14:49:36 -07002222
2223 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07002224 * If we are Redzoning then check if there is some space between the
Christoph Lameter81819f02007-05-06 14:49:36 -07002225 * end of the object and the free pointer. If not then add an
Christoph Lameter672bba32007-05-09 02:32:39 -07002226 * additional word to have some bytes to store Redzone information.
Christoph Lameter81819f02007-05-06 14:49:36 -07002227 */
2228 if ((flags & SLAB_RED_ZONE) && size == s->objsize)
2229 size += sizeof(void *);
Christoph Lameter41ecc552007-05-09 02:32:44 -07002230#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07002231
2232 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07002233 * With that we have determined the number of bytes in actual use
2234 * by the object. This is the potential offset to the free pointer.
Christoph Lameter81819f02007-05-06 14:49:36 -07002235 */
2236 s->inuse = size;
2237
2238 if (((flags & (SLAB_DESTROY_BY_RCU | SLAB_POISON)) ||
Christoph Lameterc59def9f2007-05-16 22:10:50 -07002239 s->ctor)) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002240 /*
2241 * Relocate free pointer after the object if it is not
2242 * permitted to overwrite the first word of the object on
2243 * kmem_cache_free.
2244 *
2245 * This is the case if we do RCU, have a constructor or
2246 * destructor or are poisoning the objects.
2247 */
2248 s->offset = size;
2249 size += sizeof(void *);
2250 }
2251
Christoph Lameterc12b3c62007-05-23 13:57:31 -07002252#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter81819f02007-05-06 14:49:36 -07002253 if (flags & SLAB_STORE_USER)
2254 /*
2255 * Need to store information about allocs and frees after
2256 * the object.
2257 */
2258 size += 2 * sizeof(struct track);
2259
Christoph Lameterbe7b3fb2007-05-09 02:32:36 -07002260 if (flags & SLAB_RED_ZONE)
Christoph Lameter81819f02007-05-06 14:49:36 -07002261 /*
2262 * Add some empty padding so that we can catch
2263 * overwrites from earlier objects rather than let
2264 * tracking information or the free pointer be
Frederik Schwarzer0211a9c2008-12-29 22:14:56 +01002265 * corrupted if a user writes before the start
Christoph Lameter81819f02007-05-06 14:49:36 -07002266 * of the object.
2267 */
2268 size += sizeof(void *);
Christoph Lameter41ecc552007-05-09 02:32:44 -07002269#endif
Christoph Lameter672bba32007-05-09 02:32:39 -07002270
Christoph Lameter81819f02007-05-06 14:49:36 -07002271 /*
2272 * Determine the alignment based on various parameters that the
Christoph Lameter65c02d42007-05-09 02:32:35 -07002273 * user specified and the dynamic determination of cache line size
2274 * on bootup.
Christoph Lameter81819f02007-05-06 14:49:36 -07002275 */
2276 align = calculate_alignment(flags, align, s->objsize);
Zhang, Yanmindcb0ce12009-07-30 11:28:11 +08002277 s->align = align;
Christoph Lameter81819f02007-05-06 14:49:36 -07002278
2279 /*
2280 * SLUB stores one object immediately after another beginning from
2281 * offset 0. In order to align the objects we have to simply size
2282 * each object to conform to the alignment.
2283 */
2284 size = ALIGN(size, align);
2285 s->size = size;
Christoph Lameter06b285d2008-04-14 19:11:41 +03002286 if (forced_order >= 0)
2287 order = forced_order;
2288 else
2289 order = calculate_order(size);
Christoph Lameter81819f02007-05-06 14:49:36 -07002290
Christoph Lameter834f3d12008-04-14 19:11:31 +03002291 if (order < 0)
Christoph Lameter81819f02007-05-06 14:49:36 -07002292 return 0;
2293
Christoph Lameterb7a49f02008-02-14 14:21:32 -08002294 s->allocflags = 0;
Christoph Lameter834f3d12008-04-14 19:11:31 +03002295 if (order)
Christoph Lameterb7a49f02008-02-14 14:21:32 -08002296 s->allocflags |= __GFP_COMP;
2297
2298 if (s->flags & SLAB_CACHE_DMA)
2299 s->allocflags |= SLUB_DMA;
2300
2301 if (s->flags & SLAB_RECLAIM_ACCOUNT)
2302 s->allocflags |= __GFP_RECLAIMABLE;
2303
Christoph Lameter81819f02007-05-06 14:49:36 -07002304 /*
2305 * Determine the number of objects per slab
2306 */
Christoph Lameter834f3d12008-04-14 19:11:31 +03002307 s->oo = oo_make(order, size);
Christoph Lameter65c33762008-04-14 19:11:40 +03002308 s->min = oo_make(get_order(size), size);
Christoph Lameter205ab992008-04-14 19:11:40 +03002309 if (oo_objects(s->oo) > oo_objects(s->max))
2310 s->max = s->oo;
Christoph Lameter81819f02007-05-06 14:49:36 -07002311
Christoph Lameter834f3d12008-04-14 19:11:31 +03002312 return !!oo_objects(s->oo);
Christoph Lameter81819f02007-05-06 14:49:36 -07002313
2314}
2315
Christoph Lameter81819f02007-05-06 14:49:36 -07002316static int kmem_cache_open(struct kmem_cache *s, gfp_t gfpflags,
2317 const char *name, size_t size,
2318 size_t align, unsigned long flags,
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002319 void (*ctor)(void *))
Christoph Lameter81819f02007-05-06 14:49:36 -07002320{
2321 memset(s, 0, kmem_size);
2322 s->name = name;
2323 s->ctor = ctor;
Christoph Lameter81819f02007-05-06 14:49:36 -07002324 s->objsize = size;
Christoph Lameter81819f02007-05-06 14:49:36 -07002325 s->align = align;
Christoph Lameterba0268a2007-09-11 15:24:11 -07002326 s->flags = kmem_cache_flags(size, flags, name, ctor);
Christoph Lameter81819f02007-05-06 14:49:36 -07002327
Christoph Lameter06b285d2008-04-14 19:11:41 +03002328 if (!calculate_sizes(s, -1))
Christoph Lameter81819f02007-05-06 14:49:36 -07002329 goto error;
David Rientjes3de47212009-07-27 18:30:35 -07002330 if (disable_higher_order_debug) {
2331 /*
2332 * Disable debugging flags that store metadata if the min slab
2333 * order increased.
2334 */
2335 if (get_order(s->size) > get_order(s->objsize)) {
2336 s->flags &= ~DEBUG_METADATA_FLAGS;
2337 s->offset = 0;
2338 if (!calculate_sizes(s, -1))
2339 goto error;
2340 }
2341 }
Christoph Lameter81819f02007-05-06 14:49:36 -07002342
David Rientjes3b89d7d2009-02-22 17:40:07 -08002343 /*
2344 * The larger the object size is, the more pages we want on the partial
2345 * list to avoid pounding the page allocator excessively.
2346 */
David Rientjesc0bdb232009-02-25 09:16:35 +02002347 set_min_partial(s, ilog2(s->size));
Christoph Lameter81819f02007-05-06 14:49:36 -07002348 s->refcount = 1;
2349#ifdef CONFIG_NUMA
Christoph Lametere2cb96b2008-08-19 08:51:22 -05002350 s->remote_node_defrag_ratio = 1000;
Christoph Lameter81819f02007-05-06 14:49:36 -07002351#endif
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002352 if (!init_kmem_cache_nodes(s, gfpflags & ~SLUB_DMA))
2353 goto error;
Christoph Lameter81819f02007-05-06 14:49:36 -07002354
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002355 if (alloc_kmem_cache_cpus(s, gfpflags & ~SLUB_DMA))
Christoph Lameter81819f02007-05-06 14:49:36 -07002356 return 1;
Christoph Lameterff120592009-12-18 16:26:22 -06002357
Christoph Lameter4c93c3552007-10-16 01:26:08 -07002358 free_kmem_cache_nodes(s);
Christoph Lameter81819f02007-05-06 14:49:36 -07002359error:
2360 if (flags & SLAB_PANIC)
2361 panic("Cannot create slab %s size=%lu realsize=%u "
2362 "order=%u offset=%u flags=%lx\n",
Christoph Lameter834f3d12008-04-14 19:11:31 +03002363 s->name, (unsigned long)size, s->size, oo_order(s->oo),
Christoph Lameter81819f02007-05-06 14:49:36 -07002364 s->offset, flags);
2365 return 0;
2366}
Christoph Lameter81819f02007-05-06 14:49:36 -07002367
2368/*
2369 * Check if a given pointer is valid
2370 */
2371int kmem_ptr_validate(struct kmem_cache *s, const void *object)
2372{
Pekka Enberg06428782008-01-07 23:20:27 -08002373 struct page *page;
Christoph Lameter81819f02007-05-06 14:49:36 -07002374
Pekka Enbergd3e06e22010-04-07 19:23:41 +03002375 if (!kern_ptr_validate(object, s->size))
2376 return 0;
2377
Christoph Lameter81819f02007-05-06 14:49:36 -07002378 page = get_object_page(object);
2379
2380 if (!page || s != page->slab)
2381 /* No slab or wrong slab */
2382 return 0;
2383
Christoph Lameterabcd08a2007-05-09 02:32:37 -07002384 if (!check_valid_pointer(s, page, object))
Christoph Lameter81819f02007-05-06 14:49:36 -07002385 return 0;
2386
2387 /*
2388 * We could also check if the object is on the slabs freelist.
2389 * But this would be too expensive and it seems that the main
Christoph Lameter6446faa2008-02-15 23:45:26 -08002390 * purpose of kmem_ptr_valid() is to check if the object belongs
Christoph Lameter81819f02007-05-06 14:49:36 -07002391 * to a certain slab.
2392 */
2393 return 1;
2394}
2395EXPORT_SYMBOL(kmem_ptr_validate);
2396
2397/*
2398 * Determine the size of a slab object
2399 */
2400unsigned int kmem_cache_size(struct kmem_cache *s)
2401{
2402 return s->objsize;
2403}
2404EXPORT_SYMBOL(kmem_cache_size);
2405
2406const char *kmem_cache_name(struct kmem_cache *s)
2407{
2408 return s->name;
2409}
2410EXPORT_SYMBOL(kmem_cache_name);
2411
Christoph Lameter33b12c32008-04-25 12:22:43 -07002412static void list_slab_objects(struct kmem_cache *s, struct page *page,
2413 const char *text)
Christoph Lameter81819f02007-05-06 14:49:36 -07002414{
Christoph Lameter33b12c32008-04-25 12:22:43 -07002415#ifdef CONFIG_SLUB_DEBUG
2416 void *addr = page_address(page);
2417 void *p;
Eric Dumazetbbd7d572010-03-24 22:25:47 +01002418 long *map = kzalloc(BITS_TO_LONGS(page->objects) * sizeof(long),
2419 GFP_ATOMIC);
Christoph Lameter33b12c32008-04-25 12:22:43 -07002420
Eric Dumazetbbd7d572010-03-24 22:25:47 +01002421 if (!map)
2422 return;
Christoph Lameter33b12c32008-04-25 12:22:43 -07002423 slab_err(s, page, "%s", text);
2424 slab_lock(page);
2425 for_each_free_object(p, s, page->freelist)
2426 set_bit(slab_index(p, s, addr), map);
2427
2428 for_each_object(p, s, addr, page->objects) {
2429
2430 if (!test_bit(slab_index(p, s, addr), map)) {
2431 printk(KERN_ERR "INFO: Object 0x%p @offset=%tu\n",
2432 p, p - addr);
2433 print_tracking(s, p);
2434 }
2435 }
2436 slab_unlock(page);
Eric Dumazetbbd7d572010-03-24 22:25:47 +01002437 kfree(map);
Christoph Lameter33b12c32008-04-25 12:22:43 -07002438#endif
2439}
2440
Christoph Lameter81819f02007-05-06 14:49:36 -07002441/*
Christoph Lameter599870b2008-04-23 12:36:52 -07002442 * Attempt to free all partial slabs on a node.
Christoph Lameter81819f02007-05-06 14:49:36 -07002443 */
Christoph Lameter599870b2008-04-23 12:36:52 -07002444static void free_partial(struct kmem_cache *s, struct kmem_cache_node *n)
Christoph Lameter81819f02007-05-06 14:49:36 -07002445{
Christoph Lameter81819f02007-05-06 14:49:36 -07002446 unsigned long flags;
2447 struct page *page, *h;
2448
2449 spin_lock_irqsave(&n->list_lock, flags);
Christoph Lameter33b12c32008-04-25 12:22:43 -07002450 list_for_each_entry_safe(page, h, &n->partial, lru) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002451 if (!page->inuse) {
2452 list_del(&page->lru);
2453 discard_slab(s, page);
Christoph Lameter599870b2008-04-23 12:36:52 -07002454 n->nr_partial--;
Christoph Lameter33b12c32008-04-25 12:22:43 -07002455 } else {
2456 list_slab_objects(s, page,
2457 "Objects remaining on kmem_cache_close()");
Christoph Lameter599870b2008-04-23 12:36:52 -07002458 }
Christoph Lameter33b12c32008-04-25 12:22:43 -07002459 }
Christoph Lameter81819f02007-05-06 14:49:36 -07002460 spin_unlock_irqrestore(&n->list_lock, flags);
Christoph Lameter81819f02007-05-06 14:49:36 -07002461}
2462
2463/*
Christoph Lameter672bba32007-05-09 02:32:39 -07002464 * Release all resources used by a slab cache.
Christoph Lameter81819f02007-05-06 14:49:36 -07002465 */
Christoph Lameter0c710012007-07-17 04:03:24 -07002466static inline int kmem_cache_close(struct kmem_cache *s)
Christoph Lameter81819f02007-05-06 14:49:36 -07002467{
2468 int node;
2469
2470 flush_all(s);
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06002471 free_percpu(s->cpu_slab);
Christoph Lameter81819f02007-05-06 14:49:36 -07002472 /* Attempt to free all objects */
Christoph Lameterf64dc582007-10-16 01:25:33 -07002473 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002474 struct kmem_cache_node *n = get_node(s, node);
2475
Christoph Lameter599870b2008-04-23 12:36:52 -07002476 free_partial(s, n);
2477 if (n->nr_partial || slabs_node(s, node))
Christoph Lameter81819f02007-05-06 14:49:36 -07002478 return 1;
2479 }
2480 free_kmem_cache_nodes(s);
2481 return 0;
2482}
2483
2484/*
2485 * Close a cache and release the kmem_cache structure
2486 * (must be used for caches created using kmem_cache_create)
2487 */
2488void kmem_cache_destroy(struct kmem_cache *s)
2489{
2490 down_write(&slub_lock);
2491 s->refcount--;
2492 if (!s->refcount) {
2493 list_del(&s->list);
Pekka Enbergd629d812008-04-23 22:31:08 +03002494 if (kmem_cache_close(s)) {
2495 printk(KERN_ERR "SLUB %s: %s called for cache that "
2496 "still has objects.\n", s->name, __func__);
2497 dump_stack();
2498 }
Eric Dumazetd76b1592009-09-03 22:38:59 +03002499 if (s->flags & SLAB_DESTROY_BY_RCU)
2500 rcu_barrier();
Christoph Lameter81819f02007-05-06 14:49:36 -07002501 sysfs_slab_remove(s);
Christoph Lameter2bce6482010-07-19 11:39:11 -05002502 }
2503 up_write(&slub_lock);
Christoph Lameter81819f02007-05-06 14:49:36 -07002504}
2505EXPORT_SYMBOL(kmem_cache_destroy);
2506
2507/********************************************************************
2508 * Kmalloc subsystem
2509 *******************************************************************/
2510
Christoph Lameter756dee72009-12-18 16:26:21 -06002511struct kmem_cache kmalloc_caches[KMALLOC_CACHES] __cacheline_aligned;
Christoph Lameter81819f02007-05-06 14:49:36 -07002512EXPORT_SYMBOL(kmalloc_caches);
2513
Christoph Lameter81819f02007-05-06 14:49:36 -07002514static int __init setup_slub_min_order(char *str)
2515{
Pekka Enberg06428782008-01-07 23:20:27 -08002516 get_option(&str, &slub_min_order);
Christoph Lameter81819f02007-05-06 14:49:36 -07002517
2518 return 1;
2519}
2520
2521__setup("slub_min_order=", setup_slub_min_order);
2522
2523static int __init setup_slub_max_order(char *str)
2524{
Pekka Enberg06428782008-01-07 23:20:27 -08002525 get_option(&str, &slub_max_order);
David Rientjes818cf592009-04-23 09:58:22 +03002526 slub_max_order = min(slub_max_order, MAX_ORDER - 1);
Christoph Lameter81819f02007-05-06 14:49:36 -07002527
2528 return 1;
2529}
2530
2531__setup("slub_max_order=", setup_slub_max_order);
2532
2533static int __init setup_slub_min_objects(char *str)
2534{
Pekka Enberg06428782008-01-07 23:20:27 -08002535 get_option(&str, &slub_min_objects);
Christoph Lameter81819f02007-05-06 14:49:36 -07002536
2537 return 1;
2538}
2539
2540__setup("slub_min_objects=", setup_slub_min_objects);
2541
2542static int __init setup_slub_nomerge(char *str)
2543{
2544 slub_nomerge = 1;
2545 return 1;
2546}
2547
2548__setup("slub_nomerge", setup_slub_nomerge);
2549
Christoph Lameter81819f02007-05-06 14:49:36 -07002550static struct kmem_cache *create_kmalloc_cache(struct kmem_cache *s,
2551 const char *name, int size, gfp_t gfp_flags)
2552{
2553 unsigned int flags = 0;
2554
2555 if (gfp_flags & SLUB_DMA)
2556 flags = SLAB_CACHE_DMA;
2557
Pekka Enberg83b519e2009-06-10 19:40:04 +03002558 /*
2559 * This function is called with IRQs disabled during early-boot on
2560 * single CPU so there's no need to take slub_lock here.
2561 */
Christoph Lameter81819f02007-05-06 14:49:36 -07002562 if (!kmem_cache_open(s, gfp_flags, name, size, ARCH_KMALLOC_MINALIGN,
Christoph Lameter319d1e22008-04-14 19:11:41 +03002563 flags, NULL))
Christoph Lameter81819f02007-05-06 14:49:36 -07002564 goto panic;
2565
2566 list_add(&s->list, &slab_caches);
Pekka Enberg83b519e2009-06-10 19:40:04 +03002567
Christoph Lameter81819f02007-05-06 14:49:36 -07002568 if (sysfs_slab_add(s))
2569 goto panic;
2570 return s;
2571
2572panic:
2573 panic("Creation of kmalloc slab %s size=%d failed.\n", name, size);
2574}
2575
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002576#ifdef CONFIG_ZONE_DMA
Christoph Lameterffadd4d2009-02-17 12:05:07 -05002577static struct kmem_cache *kmalloc_caches_dma[SLUB_PAGE_SHIFT];
Christoph Lameter1ceef402007-08-07 15:11:48 -07002578
2579static void sysfs_add_func(struct work_struct *w)
2580{
2581 struct kmem_cache *s;
2582
2583 down_write(&slub_lock);
2584 list_for_each_entry(s, &slab_caches, list) {
2585 if (s->flags & __SYSFS_ADD_DEFERRED) {
2586 s->flags &= ~__SYSFS_ADD_DEFERRED;
2587 sysfs_slab_add(s);
2588 }
2589 }
2590 up_write(&slub_lock);
2591}
2592
2593static DECLARE_WORK(sysfs_add_work, sysfs_add_func);
2594
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002595static noinline struct kmem_cache *dma_kmalloc_cache(int index, gfp_t flags)
2596{
2597 struct kmem_cache *s;
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002598 char *text;
2599 size_t realsize;
Nick Piggin964cf352009-06-15 13:35:10 +03002600 unsigned long slabflags;
Christoph Lameter756dee72009-12-18 16:26:21 -06002601 int i;
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002602
2603 s = kmalloc_caches_dma[index];
2604 if (s)
2605 return s;
2606
2607 /* Dynamically create dma cache */
Christoph Lameter1ceef402007-08-07 15:11:48 -07002608 if (flags & __GFP_WAIT)
2609 down_write(&slub_lock);
2610 else {
2611 if (!down_write_trylock(&slub_lock))
2612 goto out;
2613 }
2614
2615 if (kmalloc_caches_dma[index])
2616 goto unlock_out;
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002617
Christoph Lameter7b55f622007-07-17 04:03:27 -07002618 realsize = kmalloc_caches[index].objsize;
Ingo Molnar3adbefe2008-02-05 17:57:39 -08002619 text = kasprintf(flags & ~SLUB_DMA, "kmalloc_dma-%d",
2620 (unsigned int)realsize);
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06002621
Christoph Lameter756dee72009-12-18 16:26:21 -06002622 s = NULL;
2623 for (i = 0; i < KMALLOC_CACHES; i++)
2624 if (!kmalloc_caches[i].size)
2625 break;
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06002626
Christoph Lameter756dee72009-12-18 16:26:21 -06002627 BUG_ON(i >= KMALLOC_CACHES);
2628 s = kmalloc_caches + i;
Christoph Lameter1ceef402007-08-07 15:11:48 -07002629
Nick Piggin964cf352009-06-15 13:35:10 +03002630 /*
2631 * Must defer sysfs creation to a workqueue because we don't know
2632 * what context we are called from. Before sysfs comes up, we don't
2633 * need to do anything because our sysfs initcall will start by
2634 * adding all existing slabs to sysfs.
2635 */
Pekka Enberg5caf5c72009-06-17 08:30:54 +03002636 slabflags = SLAB_CACHE_DMA|SLAB_NOTRACK;
Nick Piggin964cf352009-06-15 13:35:10 +03002637 if (slab_state >= SYSFS)
2638 slabflags |= __SYSFS_ADD_DEFERRED;
2639
David Rientjes7738dd92010-01-15 12:49:56 -08002640 if (!text || !kmem_cache_open(s, flags, text,
Nick Piggin964cf352009-06-15 13:35:10 +03002641 realsize, ARCH_KMALLOC_MINALIGN, slabflags, NULL)) {
Christoph Lameter756dee72009-12-18 16:26:21 -06002642 s->size = 0;
Christoph Lameter1ceef402007-08-07 15:11:48 -07002643 kfree(text);
2644 goto unlock_out;
Christoph Lameterdfce8642007-07-17 04:03:25 -07002645 }
Christoph Lameter1ceef402007-08-07 15:11:48 -07002646
2647 list_add(&s->list, &slab_caches);
2648 kmalloc_caches_dma[index] = s;
2649
Nick Piggin964cf352009-06-15 13:35:10 +03002650 if (slab_state >= SYSFS)
2651 schedule_work(&sysfs_add_work);
Christoph Lameter1ceef402007-08-07 15:11:48 -07002652
2653unlock_out:
Christoph Lameterdfce8642007-07-17 04:03:25 -07002654 up_write(&slub_lock);
Christoph Lameter1ceef402007-08-07 15:11:48 -07002655out:
Christoph Lameterdfce8642007-07-17 04:03:25 -07002656 return kmalloc_caches_dma[index];
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002657}
2658#endif
2659
Christoph Lameterf1b26332007-07-17 04:03:26 -07002660/*
2661 * Conversion table for small slabs sizes / 8 to the index in the
2662 * kmalloc array. This is necessary for slabs < 192 since we have non power
2663 * of two cache sizes there. The size of larger slabs can be determined using
2664 * fls.
2665 */
2666static s8 size_index[24] = {
2667 3, /* 8 */
2668 4, /* 16 */
2669 5, /* 24 */
2670 5, /* 32 */
2671 6, /* 40 */
2672 6, /* 48 */
2673 6, /* 56 */
2674 6, /* 64 */
2675 1, /* 72 */
2676 1, /* 80 */
2677 1, /* 88 */
2678 1, /* 96 */
2679 7, /* 104 */
2680 7, /* 112 */
2681 7, /* 120 */
2682 7, /* 128 */
2683 2, /* 136 */
2684 2, /* 144 */
2685 2, /* 152 */
2686 2, /* 160 */
2687 2, /* 168 */
2688 2, /* 176 */
2689 2, /* 184 */
2690 2 /* 192 */
2691};
2692
Aaro Koskinenacdfcd02009-08-28 14:28:54 +03002693static inline int size_index_elem(size_t bytes)
2694{
2695 return (bytes - 1) / 8;
2696}
2697
Christoph Lameter81819f02007-05-06 14:49:36 -07002698static struct kmem_cache *get_slab(size_t size, gfp_t flags)
2699{
Christoph Lameterf1b26332007-07-17 04:03:26 -07002700 int index;
Christoph Lameter81819f02007-05-06 14:49:36 -07002701
Christoph Lameterf1b26332007-07-17 04:03:26 -07002702 if (size <= 192) {
2703 if (!size)
2704 return ZERO_SIZE_PTR;
Christoph Lameter81819f02007-05-06 14:49:36 -07002705
Aaro Koskinenacdfcd02009-08-28 14:28:54 +03002706 index = size_index[size_index_elem(size)];
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002707 } else
Christoph Lameterf1b26332007-07-17 04:03:26 -07002708 index = fls(size - 1);
Christoph Lameter81819f02007-05-06 14:49:36 -07002709
2710#ifdef CONFIG_ZONE_DMA
Christoph Lameterf1b26332007-07-17 04:03:26 -07002711 if (unlikely((flags & SLUB_DMA)))
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002712 return dma_kmalloc_cache(index, flags);
Christoph Lameterf1b26332007-07-17 04:03:26 -07002713
Christoph Lameter81819f02007-05-06 14:49:36 -07002714#endif
2715 return &kmalloc_caches[index];
2716}
2717
2718void *__kmalloc(size_t size, gfp_t flags)
2719{
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002720 struct kmem_cache *s;
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002721 void *ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07002722
Christoph Lameterffadd4d2009-02-17 12:05:07 -05002723 if (unlikely(size > SLUB_MAX_SIZE))
Pekka Enbergeada35e2008-02-11 22:47:46 +02002724 return kmalloc_large(size, flags);
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002725
2726 s = get_slab(size, flags);
2727
2728 if (unlikely(ZERO_OR_NULL_PTR(s)))
Christoph Lameter6cb8f912007-07-17 04:03:22 -07002729 return s;
2730
Christoph Lameter2154a332010-07-09 14:07:10 -05002731 ret = slab_alloc(s, flags, NUMA_NO_NODE, _RET_IP_);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002732
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02002733 trace_kmalloc(_RET_IP_, ret, size, s->size, flags);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002734
2735 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07002736}
2737EXPORT_SYMBOL(__kmalloc);
2738
Christoph Lameterf619cfe2008-03-01 13:56:40 -08002739static void *kmalloc_large_node(size_t size, gfp_t flags, int node)
2740{
Vegard Nossumb1eeab62008-11-25 16:55:53 +01002741 struct page *page;
Catalin Marinase4f7c0b42009-07-07 10:32:59 +01002742 void *ptr = NULL;
Christoph Lameterf619cfe2008-03-01 13:56:40 -08002743
Vegard Nossumb1eeab62008-11-25 16:55:53 +01002744 flags |= __GFP_COMP | __GFP_NOTRACK;
2745 page = alloc_pages_node(node, flags, get_order(size));
Christoph Lameterf619cfe2008-03-01 13:56:40 -08002746 if (page)
Catalin Marinase4f7c0b42009-07-07 10:32:59 +01002747 ptr = page_address(page);
2748
2749 kmemleak_alloc(ptr, size, 1, flags);
2750 return ptr;
Christoph Lameterf619cfe2008-03-01 13:56:40 -08002751}
2752
Christoph Lameter81819f02007-05-06 14:49:36 -07002753#ifdef CONFIG_NUMA
2754void *__kmalloc_node(size_t size, gfp_t flags, int node)
2755{
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002756 struct kmem_cache *s;
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002757 void *ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07002758
Ingo Molnar057685c2009-02-20 12:15:30 +01002759 if (unlikely(size > SLUB_MAX_SIZE)) {
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002760 ret = kmalloc_large_node(size, flags, node);
2761
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02002762 trace_kmalloc_node(_RET_IP_, ret,
2763 size, PAGE_SIZE << get_order(size),
2764 flags, node);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002765
2766 return ret;
2767 }
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002768
2769 s = get_slab(size, flags);
2770
2771 if (unlikely(ZERO_OR_NULL_PTR(s)))
Christoph Lameter6cb8f912007-07-17 04:03:22 -07002772 return s;
2773
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002774 ret = slab_alloc(s, flags, node, _RET_IP_);
2775
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02002776 trace_kmalloc_node(_RET_IP_, ret, size, s->size, flags, node);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002777
2778 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07002779}
2780EXPORT_SYMBOL(__kmalloc_node);
2781#endif
2782
2783size_t ksize(const void *object)
2784{
Christoph Lameter272c1d22007-06-08 13:46:49 -07002785 struct page *page;
Christoph Lameter81819f02007-05-06 14:49:36 -07002786 struct kmem_cache *s;
2787
Christoph Lameteref8b4522007-10-16 01:24:46 -07002788 if (unlikely(object == ZERO_SIZE_PTR))
Christoph Lameter272c1d22007-06-08 13:46:49 -07002789 return 0;
2790
Vegard Nossum294a80a2007-12-04 23:45:30 -08002791 page = virt_to_head_page(object);
Vegard Nossum294a80a2007-12-04 23:45:30 -08002792
Pekka Enberg76994412008-05-22 19:22:25 +03002793 if (unlikely(!PageSlab(page))) {
2794 WARN_ON(!PageCompound(page));
Vegard Nossum294a80a2007-12-04 23:45:30 -08002795 return PAGE_SIZE << compound_order(page);
Pekka Enberg76994412008-05-22 19:22:25 +03002796 }
Christoph Lameter81819f02007-05-06 14:49:36 -07002797 s = page->slab;
Christoph Lameter81819f02007-05-06 14:49:36 -07002798
Christoph Lameterae20bfd2008-02-15 23:45:25 -08002799#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter81819f02007-05-06 14:49:36 -07002800 /*
2801 * Debugging requires use of the padding between object
2802 * and whatever may come after it.
2803 */
2804 if (s->flags & (SLAB_RED_ZONE | SLAB_POISON))
2805 return s->objsize;
2806
Christoph Lameterae20bfd2008-02-15 23:45:25 -08002807#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07002808 /*
2809 * If we have the need to store the freelist pointer
2810 * back there or track user information then we can
2811 * only use the space before that information.
2812 */
2813 if (s->flags & (SLAB_DESTROY_BY_RCU | SLAB_STORE_USER))
2814 return s->inuse;
Christoph Lameter81819f02007-05-06 14:49:36 -07002815 /*
2816 * Else we can use all the padding etc for the allocation
2817 */
2818 return s->size;
2819}
Kirill A. Shutemovb1aabec2009-02-10 15:21:44 +02002820EXPORT_SYMBOL(ksize);
Christoph Lameter81819f02007-05-06 14:49:36 -07002821
2822void kfree(const void *x)
2823{
Christoph Lameter81819f02007-05-06 14:49:36 -07002824 struct page *page;
Christoph Lameter5bb983b2008-02-07 17:47:41 -08002825 void *object = (void *)x;
Christoph Lameter81819f02007-05-06 14:49:36 -07002826
Pekka Enberg2121db72009-03-25 11:05:57 +02002827 trace_kfree(_RET_IP_, x);
2828
Satyam Sharma2408c552007-10-16 01:24:44 -07002829 if (unlikely(ZERO_OR_NULL_PTR(x)))
Christoph Lameter81819f02007-05-06 14:49:36 -07002830 return;
2831
Christoph Lameterb49af682007-05-06 14:49:41 -07002832 page = virt_to_head_page(x);
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002833 if (unlikely(!PageSlab(page))) {
Christoph Lameter09375022008-05-28 10:32:22 -07002834 BUG_ON(!PageCompound(page));
Catalin Marinase4f7c0b42009-07-07 10:32:59 +01002835 kmemleak_free(x);
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002836 put_page(page);
2837 return;
2838 }
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03002839 slab_free(page->slab, page, object, _RET_IP_);
Christoph Lameter81819f02007-05-06 14:49:36 -07002840}
2841EXPORT_SYMBOL(kfree);
2842
Christoph Lameter2086d262007-05-06 14:49:46 -07002843/*
Christoph Lameter672bba32007-05-09 02:32:39 -07002844 * kmem_cache_shrink removes empty slabs from the partial lists and sorts
2845 * the remaining slabs by the number of items in use. The slabs with the
2846 * most items in use come first. New allocations will then fill those up
2847 * and thus they can be removed from the partial lists.
2848 *
2849 * The slabs with the least items are placed last. This results in them
2850 * being allocated from last increasing the chance that the last objects
2851 * are freed in them.
Christoph Lameter2086d262007-05-06 14:49:46 -07002852 */
2853int kmem_cache_shrink(struct kmem_cache *s)
2854{
2855 int node;
2856 int i;
2857 struct kmem_cache_node *n;
2858 struct page *page;
2859 struct page *t;
Christoph Lameter205ab992008-04-14 19:11:40 +03002860 int objects = oo_objects(s->max);
Christoph Lameter2086d262007-05-06 14:49:46 -07002861 struct list_head *slabs_by_inuse =
Christoph Lameter834f3d12008-04-14 19:11:31 +03002862 kmalloc(sizeof(struct list_head) * objects, GFP_KERNEL);
Christoph Lameter2086d262007-05-06 14:49:46 -07002863 unsigned long flags;
2864
2865 if (!slabs_by_inuse)
2866 return -ENOMEM;
2867
2868 flush_all(s);
Christoph Lameterf64dc582007-10-16 01:25:33 -07002869 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter2086d262007-05-06 14:49:46 -07002870 n = get_node(s, node);
2871
2872 if (!n->nr_partial)
2873 continue;
2874
Christoph Lameter834f3d12008-04-14 19:11:31 +03002875 for (i = 0; i < objects; i++)
Christoph Lameter2086d262007-05-06 14:49:46 -07002876 INIT_LIST_HEAD(slabs_by_inuse + i);
2877
2878 spin_lock_irqsave(&n->list_lock, flags);
2879
2880 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07002881 * Build lists indexed by the items in use in each slab.
Christoph Lameter2086d262007-05-06 14:49:46 -07002882 *
Christoph Lameter672bba32007-05-09 02:32:39 -07002883 * Note that concurrent frees may occur while we hold the
2884 * list_lock. page->inuse here is the upper limit.
Christoph Lameter2086d262007-05-06 14:49:46 -07002885 */
2886 list_for_each_entry_safe(page, t, &n->partial, lru) {
2887 if (!page->inuse && slab_trylock(page)) {
2888 /*
2889 * Must hold slab lock here because slab_free
2890 * may have freed the last object and be
2891 * waiting to release the slab.
2892 */
2893 list_del(&page->lru);
2894 n->nr_partial--;
2895 slab_unlock(page);
2896 discard_slab(s, page);
2897 } else {
Christoph Lameterfcda3d82007-07-30 13:06:46 -07002898 list_move(&page->lru,
2899 slabs_by_inuse + page->inuse);
Christoph Lameter2086d262007-05-06 14:49:46 -07002900 }
2901 }
2902
Christoph Lameter2086d262007-05-06 14:49:46 -07002903 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07002904 * Rebuild the partial list with the slabs filled up most
2905 * first and the least used slabs at the end.
Christoph Lameter2086d262007-05-06 14:49:46 -07002906 */
Christoph Lameter834f3d12008-04-14 19:11:31 +03002907 for (i = objects - 1; i >= 0; i--)
Christoph Lameter2086d262007-05-06 14:49:46 -07002908 list_splice(slabs_by_inuse + i, n->partial.prev);
2909
Christoph Lameter2086d262007-05-06 14:49:46 -07002910 spin_unlock_irqrestore(&n->list_lock, flags);
2911 }
2912
2913 kfree(slabs_by_inuse);
2914 return 0;
2915}
2916EXPORT_SYMBOL(kmem_cache_shrink);
2917
Yasunori Gotob9049e22007-10-21 16:41:37 -07002918#if defined(CONFIG_NUMA) && defined(CONFIG_MEMORY_HOTPLUG)
2919static int slab_mem_going_offline_callback(void *arg)
2920{
2921 struct kmem_cache *s;
2922
2923 down_read(&slub_lock);
2924 list_for_each_entry(s, &slab_caches, list)
2925 kmem_cache_shrink(s);
2926 up_read(&slub_lock);
2927
2928 return 0;
2929}
2930
2931static void slab_mem_offline_callback(void *arg)
2932{
2933 struct kmem_cache_node *n;
2934 struct kmem_cache *s;
2935 struct memory_notify *marg = arg;
2936 int offline_node;
2937
2938 offline_node = marg->status_change_nid;
2939
2940 /*
2941 * If the node still has available memory. we need kmem_cache_node
2942 * for it yet.
2943 */
2944 if (offline_node < 0)
2945 return;
2946
2947 down_read(&slub_lock);
2948 list_for_each_entry(s, &slab_caches, list) {
2949 n = get_node(s, offline_node);
2950 if (n) {
2951 /*
2952 * if n->nr_slabs > 0, slabs still exist on the node
2953 * that is going down. We were unable to free them,
Adam Buchbinderc9404c92009-12-18 15:40:42 -05002954 * and offline_pages() function shouldn't call this
Yasunori Gotob9049e22007-10-21 16:41:37 -07002955 * callback. So, we must fail.
2956 */
Christoph Lameter0f389ec2008-04-14 18:53:02 +03002957 BUG_ON(slabs_node(s, offline_node));
Yasunori Gotob9049e22007-10-21 16:41:37 -07002958
2959 s->node[offline_node] = NULL;
2960 kmem_cache_free(kmalloc_caches, n);
2961 }
2962 }
2963 up_read(&slub_lock);
2964}
2965
2966static int slab_mem_going_online_callback(void *arg)
2967{
2968 struct kmem_cache_node *n;
2969 struct kmem_cache *s;
2970 struct memory_notify *marg = arg;
2971 int nid = marg->status_change_nid;
2972 int ret = 0;
2973
2974 /*
2975 * If the node's memory is already available, then kmem_cache_node is
2976 * already created. Nothing to do.
2977 */
2978 if (nid < 0)
2979 return 0;
2980
2981 /*
Christoph Lameter0121c6192008-04-29 16:11:12 -07002982 * We are bringing a node online. No memory is available yet. We must
Yasunori Gotob9049e22007-10-21 16:41:37 -07002983 * allocate a kmem_cache_node structure in order to bring the node
2984 * online.
2985 */
2986 down_read(&slub_lock);
2987 list_for_each_entry(s, &slab_caches, list) {
2988 /*
2989 * XXX: kmem_cache_alloc_node will fallback to other nodes
2990 * since memory is not yet available from the node that
2991 * is brought up.
2992 */
2993 n = kmem_cache_alloc(kmalloc_caches, GFP_KERNEL);
2994 if (!n) {
2995 ret = -ENOMEM;
2996 goto out;
2997 }
Pekka Enberg5595cff2008-08-05 09:28:47 +03002998 init_kmem_cache_node(n, s);
Yasunori Gotob9049e22007-10-21 16:41:37 -07002999 s->node[nid] = n;
3000 }
3001out:
3002 up_read(&slub_lock);
3003 return ret;
3004}
3005
3006static int slab_memory_callback(struct notifier_block *self,
3007 unsigned long action, void *arg)
3008{
3009 int ret = 0;
3010
3011 switch (action) {
3012 case MEM_GOING_ONLINE:
3013 ret = slab_mem_going_online_callback(arg);
3014 break;
3015 case MEM_GOING_OFFLINE:
3016 ret = slab_mem_going_offline_callback(arg);
3017 break;
3018 case MEM_OFFLINE:
3019 case MEM_CANCEL_ONLINE:
3020 slab_mem_offline_callback(arg);
3021 break;
3022 case MEM_ONLINE:
3023 case MEM_CANCEL_OFFLINE:
3024 break;
3025 }
KAMEZAWA Hiroyukidc19f9d2008-12-01 13:13:48 -08003026 if (ret)
3027 ret = notifier_from_errno(ret);
3028 else
3029 ret = NOTIFY_OK;
Yasunori Gotob9049e22007-10-21 16:41:37 -07003030 return ret;
3031}
3032
3033#endif /* CONFIG_MEMORY_HOTPLUG */
3034
Christoph Lameter81819f02007-05-06 14:49:36 -07003035/********************************************************************
3036 * Basic setup of slabs
3037 *******************************************************************/
3038
3039void __init kmem_cache_init(void)
3040{
3041 int i;
Christoph Lameter4b356be2007-06-16 10:16:13 -07003042 int caches = 0;
Christoph Lameter81819f02007-05-06 14:49:36 -07003043
3044#ifdef CONFIG_NUMA
3045 /*
3046 * Must first have the slab cache available for the allocations of the
Christoph Lameter672bba32007-05-09 02:32:39 -07003047 * struct kmem_cache_node's. There is special bootstrap code in
Christoph Lameter81819f02007-05-06 14:49:36 -07003048 * kmem_cache_open for slab_state == DOWN.
3049 */
3050 create_kmalloc_cache(&kmalloc_caches[0], "kmem_cache_node",
Pekka Enberg83b519e2009-06-10 19:40:04 +03003051 sizeof(struct kmem_cache_node), GFP_NOWAIT);
Christoph Lameter8ffa6872007-05-31 00:40:51 -07003052 kmalloc_caches[0].refcount = -1;
Christoph Lameter4b356be2007-06-16 10:16:13 -07003053 caches++;
Yasunori Gotob9049e22007-10-21 16:41:37 -07003054
Nadia Derbey0c40ba42008-04-29 01:00:41 -07003055 hotplug_memory_notifier(slab_memory_callback, SLAB_CALLBACK_PRI);
Christoph Lameter81819f02007-05-06 14:49:36 -07003056#endif
3057
3058 /* Able to allocate the per node structures */
3059 slab_state = PARTIAL;
3060
3061 /* Caches that are not of the two-to-the-power-of size */
Aaro Koskinenacdfcd02009-08-28 14:28:54 +03003062 if (KMALLOC_MIN_SIZE <= 32) {
Christoph Lameter4b356be2007-06-16 10:16:13 -07003063 create_kmalloc_cache(&kmalloc_caches[1],
Pekka Enberg83b519e2009-06-10 19:40:04 +03003064 "kmalloc-96", 96, GFP_NOWAIT);
Christoph Lameter4b356be2007-06-16 10:16:13 -07003065 caches++;
Aaro Koskinenacdfcd02009-08-28 14:28:54 +03003066 }
3067 if (KMALLOC_MIN_SIZE <= 64) {
Christoph Lameter4b356be2007-06-16 10:16:13 -07003068 create_kmalloc_cache(&kmalloc_caches[2],
Pekka Enberg83b519e2009-06-10 19:40:04 +03003069 "kmalloc-192", 192, GFP_NOWAIT);
Christoph Lameter4b356be2007-06-16 10:16:13 -07003070 caches++;
3071 }
Christoph Lameter81819f02007-05-06 14:49:36 -07003072
Christoph Lameterffadd4d2009-02-17 12:05:07 -05003073 for (i = KMALLOC_SHIFT_LOW; i < SLUB_PAGE_SHIFT; i++) {
Christoph Lameter81819f02007-05-06 14:49:36 -07003074 create_kmalloc_cache(&kmalloc_caches[i],
Pekka Enberg83b519e2009-06-10 19:40:04 +03003075 "kmalloc", 1 << i, GFP_NOWAIT);
Christoph Lameter4b356be2007-06-16 10:16:13 -07003076 caches++;
3077 }
Christoph Lameter81819f02007-05-06 14:49:36 -07003078
Christoph Lameterf1b26332007-07-17 04:03:26 -07003079
3080 /*
3081 * Patch up the size_index table if we have strange large alignment
3082 * requirements for the kmalloc array. This is only the case for
Christoph Lameter6446faa2008-02-15 23:45:26 -08003083 * MIPS it seems. The standard arches will not generate any code here.
Christoph Lameterf1b26332007-07-17 04:03:26 -07003084 *
3085 * Largest permitted alignment is 256 bytes due to the way we
3086 * handle the index determination for the smaller caches.
3087 *
3088 * Make sure that nothing crazy happens if someone starts tinkering
3089 * around with ARCH_KMALLOC_MINALIGN
3090 */
3091 BUILD_BUG_ON(KMALLOC_MIN_SIZE > 256 ||
3092 (KMALLOC_MIN_SIZE & (KMALLOC_MIN_SIZE - 1)));
3093
Aaro Koskinenacdfcd02009-08-28 14:28:54 +03003094 for (i = 8; i < KMALLOC_MIN_SIZE; i += 8) {
3095 int elem = size_index_elem(i);
3096 if (elem >= ARRAY_SIZE(size_index))
3097 break;
3098 size_index[elem] = KMALLOC_SHIFT_LOW;
3099 }
Christoph Lameterf1b26332007-07-17 04:03:26 -07003100
Aaro Koskinenacdfcd02009-08-28 14:28:54 +03003101 if (KMALLOC_MIN_SIZE == 64) {
3102 /*
3103 * The 96 byte size cache is not used if the alignment
3104 * is 64 byte.
3105 */
3106 for (i = 64 + 8; i <= 96; i += 8)
3107 size_index[size_index_elem(i)] = 7;
3108 } else if (KMALLOC_MIN_SIZE == 128) {
Christoph Lameter41d54d32008-07-03 09:14:26 -05003109 /*
3110 * The 192 byte sized cache is not used if the alignment
3111 * is 128 byte. Redirect kmalloc to use the 256 byte cache
3112 * instead.
3113 */
3114 for (i = 128 + 8; i <= 192; i += 8)
Aaro Koskinenacdfcd02009-08-28 14:28:54 +03003115 size_index[size_index_elem(i)] = 8;
Christoph Lameter41d54d32008-07-03 09:14:26 -05003116 }
3117
Christoph Lameter81819f02007-05-06 14:49:36 -07003118 slab_state = UP;
3119
3120 /* Provide the correct kmalloc names now that the caches are up */
Christoph Lameterd7278bd2010-07-09 14:07:12 -05003121 for (i = KMALLOC_SHIFT_LOW; i < SLUB_PAGE_SHIFT; i++) {
3122 char *s = kasprintf(GFP_NOWAIT, "kmalloc-%d", 1 << i);
3123
3124 BUG_ON(!s);
3125 kmalloc_caches[i].name = s;
3126 }
Christoph Lameter81819f02007-05-06 14:49:36 -07003127
3128#ifdef CONFIG_SMP
3129 register_cpu_notifier(&slab_notifier);
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06003130#endif
3131#ifdef CONFIG_NUMA
3132 kmem_size = offsetof(struct kmem_cache, node) +
3133 nr_node_ids * sizeof(struct kmem_cache_node *);
Christoph Lameter4c93c3552007-10-16 01:26:08 -07003134#else
3135 kmem_size = sizeof(struct kmem_cache);
Christoph Lameter81819f02007-05-06 14:49:36 -07003136#endif
3137
Ingo Molnar3adbefe2008-02-05 17:57:39 -08003138 printk(KERN_INFO
3139 "SLUB: Genslabs=%d, HWalign=%d, Order=%d-%d, MinObjects=%d,"
Christoph Lameter4b356be2007-06-16 10:16:13 -07003140 " CPUs=%d, Nodes=%d\n",
3141 caches, cache_line_size(),
Christoph Lameter81819f02007-05-06 14:49:36 -07003142 slub_min_order, slub_max_order, slub_min_objects,
3143 nr_cpu_ids, nr_node_ids);
3144}
3145
Pekka Enberg7e85ee02009-06-12 14:03:06 +03003146void __init kmem_cache_init_late(void)
3147{
Pekka Enberg7e85ee02009-06-12 14:03:06 +03003148}
3149
Christoph Lameter81819f02007-05-06 14:49:36 -07003150/*
3151 * Find a mergeable slab cache
3152 */
3153static int slab_unmergeable(struct kmem_cache *s)
3154{
3155 if (slub_nomerge || (s->flags & SLUB_NEVER_MERGE))
3156 return 1;
3157
Christoph Lameterc59def9f2007-05-16 22:10:50 -07003158 if (s->ctor)
Christoph Lameter81819f02007-05-06 14:49:36 -07003159 return 1;
3160
Christoph Lameter8ffa6872007-05-31 00:40:51 -07003161 /*
3162 * We may have set a slab to be unmergeable during bootstrap.
3163 */
3164 if (s->refcount < 0)
3165 return 1;
3166
Christoph Lameter81819f02007-05-06 14:49:36 -07003167 return 0;
3168}
3169
3170static struct kmem_cache *find_mergeable(size_t size,
Christoph Lameterba0268a2007-09-11 15:24:11 -07003171 size_t align, unsigned long flags, const char *name,
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07003172 void (*ctor)(void *))
Christoph Lameter81819f02007-05-06 14:49:36 -07003173{
Christoph Lameter5b95a4a2007-07-17 04:03:19 -07003174 struct kmem_cache *s;
Christoph Lameter81819f02007-05-06 14:49:36 -07003175
3176 if (slub_nomerge || (flags & SLUB_NEVER_MERGE))
3177 return NULL;
3178
Christoph Lameterc59def9f2007-05-16 22:10:50 -07003179 if (ctor)
Christoph Lameter81819f02007-05-06 14:49:36 -07003180 return NULL;
3181
3182 size = ALIGN(size, sizeof(void *));
3183 align = calculate_alignment(flags, align, size);
3184 size = ALIGN(size, align);
Christoph Lameterba0268a2007-09-11 15:24:11 -07003185 flags = kmem_cache_flags(size, flags, name, NULL);
Christoph Lameter81819f02007-05-06 14:49:36 -07003186
Christoph Lameter5b95a4a2007-07-17 04:03:19 -07003187 list_for_each_entry(s, &slab_caches, list) {
Christoph Lameter81819f02007-05-06 14:49:36 -07003188 if (slab_unmergeable(s))
3189 continue;
3190
3191 if (size > s->size)
3192 continue;
3193
Christoph Lameterba0268a2007-09-11 15:24:11 -07003194 if ((flags & SLUB_MERGE_SAME) != (s->flags & SLUB_MERGE_SAME))
Christoph Lameter81819f02007-05-06 14:49:36 -07003195 continue;
3196 /*
3197 * Check if alignment is compatible.
3198 * Courtesy of Adrian Drzewiecki
3199 */
Pekka Enberg06428782008-01-07 23:20:27 -08003200 if ((s->size & ~(align - 1)) != s->size)
Christoph Lameter81819f02007-05-06 14:49:36 -07003201 continue;
3202
3203 if (s->size - size >= sizeof(void *))
3204 continue;
3205
3206 return s;
3207 }
3208 return NULL;
3209}
3210
3211struct kmem_cache *kmem_cache_create(const char *name, size_t size,
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07003212 size_t align, unsigned long flags, void (*ctor)(void *))
Christoph Lameter81819f02007-05-06 14:49:36 -07003213{
3214 struct kmem_cache *s;
3215
Benjamin Herrenschmidtfe1ff492009-09-21 17:02:30 -07003216 if (WARN_ON(!name))
3217 return NULL;
3218
Christoph Lameter81819f02007-05-06 14:49:36 -07003219 down_write(&slub_lock);
Christoph Lameterba0268a2007-09-11 15:24:11 -07003220 s = find_mergeable(size, align, flags, name, ctor);
Christoph Lameter81819f02007-05-06 14:49:36 -07003221 if (s) {
3222 s->refcount++;
3223 /*
3224 * Adjust the object sizes so that we clear
3225 * the complete object on kzalloc.
3226 */
3227 s->objsize = max(s->objsize, (int)size);
3228 s->inuse = max_t(int, s->inuse, ALIGN(size, sizeof(void *)));
Christoph Lameter6446faa2008-02-15 23:45:26 -08003229
David Rientjes7b8f3b62008-12-17 22:09:46 -08003230 if (sysfs_slab_alias(s, name)) {
David Rientjes7b8f3b62008-12-17 22:09:46 -08003231 s->refcount--;
Christoph Lameter81819f02007-05-06 14:49:36 -07003232 goto err;
David Rientjes7b8f3b62008-12-17 22:09:46 -08003233 }
Christoph Lameter2bce6482010-07-19 11:39:11 -05003234 up_write(&slub_lock);
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07003235 return s;
3236 }
Christoph Lameter6446faa2008-02-15 23:45:26 -08003237
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07003238 s = kmalloc(kmem_size, GFP_KERNEL);
3239 if (s) {
3240 if (kmem_cache_open(s, GFP_KERNEL, name,
Christoph Lameterc59def9f2007-05-16 22:10:50 -07003241 size, align, flags, ctor)) {
Christoph Lameter81819f02007-05-06 14:49:36 -07003242 list_add(&s->list, &slab_caches);
David Rientjes7b8f3b62008-12-17 22:09:46 -08003243 if (sysfs_slab_add(s)) {
David Rientjes7b8f3b62008-12-17 22:09:46 -08003244 list_del(&s->list);
David Rientjes7b8f3b62008-12-17 22:09:46 -08003245 kfree(s);
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07003246 goto err;
David Rientjes7b8f3b62008-12-17 22:09:46 -08003247 }
Christoph Lameter2bce6482010-07-19 11:39:11 -05003248 up_write(&slub_lock);
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07003249 return s;
3250 }
3251 kfree(s);
Christoph Lameter81819f02007-05-06 14:49:36 -07003252 }
3253 up_write(&slub_lock);
Christoph Lameter81819f02007-05-06 14:49:36 -07003254
3255err:
Christoph Lameter81819f02007-05-06 14:49:36 -07003256 if (flags & SLAB_PANIC)
3257 panic("Cannot create slabcache %s\n", name);
3258 else
3259 s = NULL;
3260 return s;
3261}
3262EXPORT_SYMBOL(kmem_cache_create);
3263
Christoph Lameter81819f02007-05-06 14:49:36 -07003264#ifdef CONFIG_SMP
Christoph Lameter27390bc2007-06-01 00:47:09 -07003265/*
Christoph Lameter672bba32007-05-09 02:32:39 -07003266 * Use the cpu notifier to insure that the cpu slabs are flushed when
3267 * necessary.
Christoph Lameter81819f02007-05-06 14:49:36 -07003268 */
3269static int __cpuinit slab_cpuup_callback(struct notifier_block *nfb,
3270 unsigned long action, void *hcpu)
3271{
3272 long cpu = (long)hcpu;
Christoph Lameter5b95a4a2007-07-17 04:03:19 -07003273 struct kmem_cache *s;
3274 unsigned long flags;
Christoph Lameter81819f02007-05-06 14:49:36 -07003275
3276 switch (action) {
3277 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07003278 case CPU_UP_CANCELED_FROZEN:
Christoph Lameter81819f02007-05-06 14:49:36 -07003279 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07003280 case CPU_DEAD_FROZEN:
Christoph Lameter5b95a4a2007-07-17 04:03:19 -07003281 down_read(&slub_lock);
3282 list_for_each_entry(s, &slab_caches, list) {
3283 local_irq_save(flags);
3284 __flush_cpu_slab(s, cpu);
3285 local_irq_restore(flags);
3286 }
3287 up_read(&slub_lock);
Christoph Lameter81819f02007-05-06 14:49:36 -07003288 break;
3289 default:
3290 break;
3291 }
3292 return NOTIFY_OK;
3293}
3294
Pekka Enberg06428782008-01-07 23:20:27 -08003295static struct notifier_block __cpuinitdata slab_notifier = {
Ingo Molnar3adbefe2008-02-05 17:57:39 -08003296 .notifier_call = slab_cpuup_callback
Pekka Enberg06428782008-01-07 23:20:27 -08003297};
Christoph Lameter81819f02007-05-06 14:49:36 -07003298
3299#endif
3300
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003301void *__kmalloc_track_caller(size_t size, gfp_t gfpflags, unsigned long caller)
Christoph Lameter81819f02007-05-06 14:49:36 -07003302{
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003303 struct kmem_cache *s;
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03003304 void *ret;
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003305
Christoph Lameterffadd4d2009-02-17 12:05:07 -05003306 if (unlikely(size > SLUB_MAX_SIZE))
Pekka Enbergeada35e2008-02-11 22:47:46 +02003307 return kmalloc_large(size, gfpflags);
3308
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003309 s = get_slab(size, gfpflags);
Christoph Lameter81819f02007-05-06 14:49:36 -07003310
Satyam Sharma2408c552007-10-16 01:24:44 -07003311 if (unlikely(ZERO_OR_NULL_PTR(s)))
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003312 return s;
Christoph Lameter81819f02007-05-06 14:49:36 -07003313
Christoph Lameter2154a332010-07-09 14:07:10 -05003314 ret = slab_alloc(s, gfpflags, NUMA_NO_NODE, caller);
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03003315
3316 /* Honor the call site pointer we recieved. */
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003317 trace_kmalloc(caller, ret, size, s->size, gfpflags);
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03003318
3319 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07003320}
3321
3322void *__kmalloc_node_track_caller(size_t size, gfp_t gfpflags,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003323 int node, unsigned long caller)
Christoph Lameter81819f02007-05-06 14:49:36 -07003324{
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003325 struct kmem_cache *s;
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03003326 void *ret;
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003327
Xiaotian Fengd3e14aa2010-04-08 17:26:44 +08003328 if (unlikely(size > SLUB_MAX_SIZE)) {
3329 ret = kmalloc_large_node(size, gfpflags, node);
3330
3331 trace_kmalloc_node(caller, ret,
3332 size, PAGE_SIZE << get_order(size),
3333 gfpflags, node);
3334
3335 return ret;
3336 }
Pekka Enbergeada35e2008-02-11 22:47:46 +02003337
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003338 s = get_slab(size, gfpflags);
Christoph Lameter81819f02007-05-06 14:49:36 -07003339
Satyam Sharma2408c552007-10-16 01:24:44 -07003340 if (unlikely(ZERO_OR_NULL_PTR(s)))
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003341 return s;
Christoph Lameter81819f02007-05-06 14:49:36 -07003342
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03003343 ret = slab_alloc(s, gfpflags, node, caller);
3344
3345 /* Honor the call site pointer we recieved. */
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003346 trace_kmalloc_node(caller, ret, size, s->size, gfpflags, node);
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03003347
3348 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07003349}
3350
Christoph Lameterf6acb632008-04-29 16:16:06 -07003351#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter205ab992008-04-14 19:11:40 +03003352static int count_inuse(struct page *page)
3353{
3354 return page->inuse;
3355}
3356
3357static int count_total(struct page *page)
3358{
3359 return page->objects;
3360}
3361
Christoph Lameter434e2452007-07-17 04:03:30 -07003362static int validate_slab(struct kmem_cache *s, struct page *page,
3363 unsigned long *map)
Christoph Lameter53e15af2007-05-06 14:49:43 -07003364{
3365 void *p;
Christoph Lametera973e9d2008-03-01 13:40:44 -08003366 void *addr = page_address(page);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003367
3368 if (!check_slab(s, page) ||
3369 !on_freelist(s, page, NULL))
3370 return 0;
3371
3372 /* Now we know that a valid freelist exists */
Christoph Lameter39b26462008-04-14 19:11:30 +03003373 bitmap_zero(map, page->objects);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003374
Christoph Lameter7656c722007-05-09 02:32:40 -07003375 for_each_free_object(p, s, page->freelist) {
3376 set_bit(slab_index(p, s, addr), map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003377 if (!check_object(s, page, p, 0))
3378 return 0;
3379 }
3380
Christoph Lameter224a88b2008-04-14 19:11:31 +03003381 for_each_object(p, s, addr, page->objects)
Christoph Lameter7656c722007-05-09 02:32:40 -07003382 if (!test_bit(slab_index(p, s, addr), map))
Christoph Lameter53e15af2007-05-06 14:49:43 -07003383 if (!check_object(s, page, p, 1))
3384 return 0;
3385 return 1;
3386}
3387
Christoph Lameter434e2452007-07-17 04:03:30 -07003388static void validate_slab_slab(struct kmem_cache *s, struct page *page,
3389 unsigned long *map)
Christoph Lameter53e15af2007-05-06 14:49:43 -07003390{
3391 if (slab_trylock(page)) {
Christoph Lameter434e2452007-07-17 04:03:30 -07003392 validate_slab(s, page, map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003393 slab_unlock(page);
3394 } else
3395 printk(KERN_INFO "SLUB %s: Skipped busy slab 0x%p\n",
3396 s->name, page);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003397}
3398
Christoph Lameter434e2452007-07-17 04:03:30 -07003399static int validate_slab_node(struct kmem_cache *s,
3400 struct kmem_cache_node *n, unsigned long *map)
Christoph Lameter53e15af2007-05-06 14:49:43 -07003401{
3402 unsigned long count = 0;
3403 struct page *page;
3404 unsigned long flags;
3405
3406 spin_lock_irqsave(&n->list_lock, flags);
3407
3408 list_for_each_entry(page, &n->partial, lru) {
Christoph Lameter434e2452007-07-17 04:03:30 -07003409 validate_slab_slab(s, page, map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003410 count++;
3411 }
3412 if (count != n->nr_partial)
3413 printk(KERN_ERR "SLUB %s: %ld partial slabs counted but "
3414 "counter=%ld\n", s->name, count, n->nr_partial);
3415
3416 if (!(s->flags & SLAB_STORE_USER))
3417 goto out;
3418
3419 list_for_each_entry(page, &n->full, lru) {
Christoph Lameter434e2452007-07-17 04:03:30 -07003420 validate_slab_slab(s, page, map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003421 count++;
3422 }
3423 if (count != atomic_long_read(&n->nr_slabs))
3424 printk(KERN_ERR "SLUB: %s %ld slabs counted but "
3425 "counter=%ld\n", s->name, count,
3426 atomic_long_read(&n->nr_slabs));
3427
3428out:
3429 spin_unlock_irqrestore(&n->list_lock, flags);
3430 return count;
3431}
3432
Christoph Lameter434e2452007-07-17 04:03:30 -07003433static long validate_slab_cache(struct kmem_cache *s)
Christoph Lameter53e15af2007-05-06 14:49:43 -07003434{
3435 int node;
3436 unsigned long count = 0;
Christoph Lameter205ab992008-04-14 19:11:40 +03003437 unsigned long *map = kmalloc(BITS_TO_LONGS(oo_objects(s->max)) *
Christoph Lameter434e2452007-07-17 04:03:30 -07003438 sizeof(unsigned long), GFP_KERNEL);
3439
3440 if (!map)
3441 return -ENOMEM;
Christoph Lameter53e15af2007-05-06 14:49:43 -07003442
3443 flush_all(s);
Christoph Lameterf64dc582007-10-16 01:25:33 -07003444 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter53e15af2007-05-06 14:49:43 -07003445 struct kmem_cache_node *n = get_node(s, node);
3446
Christoph Lameter434e2452007-07-17 04:03:30 -07003447 count += validate_slab_node(s, n, map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003448 }
Christoph Lameter434e2452007-07-17 04:03:30 -07003449 kfree(map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003450 return count;
3451}
3452
Christoph Lameterb3459702007-05-09 02:32:41 -07003453#ifdef SLUB_RESILIENCY_TEST
3454static void resiliency_test(void)
3455{
3456 u8 *p;
3457
3458 printk(KERN_ERR "SLUB resiliency testing\n");
3459 printk(KERN_ERR "-----------------------\n");
3460 printk(KERN_ERR "A. Corruption after allocation\n");
3461
3462 p = kzalloc(16, GFP_KERNEL);
3463 p[16] = 0x12;
3464 printk(KERN_ERR "\n1. kmalloc-16: Clobber Redzone/next pointer"
3465 " 0x12->0x%p\n\n", p + 16);
3466
3467 validate_slab_cache(kmalloc_caches + 4);
3468
3469 /* Hmmm... The next two are dangerous */
3470 p = kzalloc(32, GFP_KERNEL);
3471 p[32 + sizeof(void *)] = 0x34;
3472 printk(KERN_ERR "\n2. kmalloc-32: Clobber next pointer/next slab"
Ingo Molnar3adbefe2008-02-05 17:57:39 -08003473 " 0x34 -> -0x%p\n", p);
3474 printk(KERN_ERR
3475 "If allocated object is overwritten then not detectable\n\n");
Christoph Lameterb3459702007-05-09 02:32:41 -07003476
3477 validate_slab_cache(kmalloc_caches + 5);
3478 p = kzalloc(64, GFP_KERNEL);
3479 p += 64 + (get_cycles() & 0xff) * sizeof(void *);
3480 *p = 0x56;
3481 printk(KERN_ERR "\n3. kmalloc-64: corrupting random byte 0x56->0x%p\n",
3482 p);
Ingo Molnar3adbefe2008-02-05 17:57:39 -08003483 printk(KERN_ERR
3484 "If allocated object is overwritten then not detectable\n\n");
Christoph Lameterb3459702007-05-09 02:32:41 -07003485 validate_slab_cache(kmalloc_caches + 6);
3486
3487 printk(KERN_ERR "\nB. Corruption after free\n");
3488 p = kzalloc(128, GFP_KERNEL);
3489 kfree(p);
3490 *p = 0x78;
3491 printk(KERN_ERR "1. kmalloc-128: Clobber first word 0x78->0x%p\n\n", p);
3492 validate_slab_cache(kmalloc_caches + 7);
3493
3494 p = kzalloc(256, GFP_KERNEL);
3495 kfree(p);
3496 p[50] = 0x9a;
Ingo Molnar3adbefe2008-02-05 17:57:39 -08003497 printk(KERN_ERR "\n2. kmalloc-256: Clobber 50th byte 0x9a->0x%p\n\n",
3498 p);
Christoph Lameterb3459702007-05-09 02:32:41 -07003499 validate_slab_cache(kmalloc_caches + 8);
3500
3501 p = kzalloc(512, GFP_KERNEL);
3502 kfree(p);
3503 p[512] = 0xab;
3504 printk(KERN_ERR "\n3. kmalloc-512: Clobber redzone 0xab->0x%p\n\n", p);
3505 validate_slab_cache(kmalloc_caches + 9);
3506}
3507#else
3508static void resiliency_test(void) {};
3509#endif
3510
Christoph Lameter88a420e2007-05-06 14:49:45 -07003511/*
Christoph Lameter672bba32007-05-09 02:32:39 -07003512 * Generate lists of code addresses where slabcache objects are allocated
Christoph Lameter88a420e2007-05-06 14:49:45 -07003513 * and freed.
3514 */
3515
3516struct location {
3517 unsigned long count;
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003518 unsigned long addr;
Christoph Lameter45edfa52007-05-09 02:32:45 -07003519 long long sum_time;
3520 long min_time;
3521 long max_time;
3522 long min_pid;
3523 long max_pid;
Rusty Russell174596a2009-01-01 10:12:29 +10303524 DECLARE_BITMAP(cpus, NR_CPUS);
Christoph Lameter45edfa52007-05-09 02:32:45 -07003525 nodemask_t nodes;
Christoph Lameter88a420e2007-05-06 14:49:45 -07003526};
3527
3528struct loc_track {
3529 unsigned long max;
3530 unsigned long count;
3531 struct location *loc;
3532};
3533
3534static void free_loc_track(struct loc_track *t)
3535{
3536 if (t->max)
3537 free_pages((unsigned long)t->loc,
3538 get_order(sizeof(struct location) * t->max));
3539}
3540
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003541static int alloc_loc_track(struct loc_track *t, unsigned long max, gfp_t flags)
Christoph Lameter88a420e2007-05-06 14:49:45 -07003542{
3543 struct location *l;
3544 int order;
3545
Christoph Lameter88a420e2007-05-06 14:49:45 -07003546 order = get_order(sizeof(struct location) * max);
3547
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003548 l = (void *)__get_free_pages(flags, order);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003549 if (!l)
3550 return 0;
3551
3552 if (t->count) {
3553 memcpy(l, t->loc, sizeof(struct location) * t->count);
3554 free_loc_track(t);
3555 }
3556 t->max = max;
3557 t->loc = l;
3558 return 1;
3559}
3560
3561static int add_location(struct loc_track *t, struct kmem_cache *s,
Christoph Lameter45edfa52007-05-09 02:32:45 -07003562 const struct track *track)
Christoph Lameter88a420e2007-05-06 14:49:45 -07003563{
3564 long start, end, pos;
3565 struct location *l;
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003566 unsigned long caddr;
Christoph Lameter45edfa52007-05-09 02:32:45 -07003567 unsigned long age = jiffies - track->when;
Christoph Lameter88a420e2007-05-06 14:49:45 -07003568
3569 start = -1;
3570 end = t->count;
3571
3572 for ( ; ; ) {
3573 pos = start + (end - start + 1) / 2;
3574
3575 /*
3576 * There is nothing at "end". If we end up there
3577 * we need to add something to before end.
3578 */
3579 if (pos == end)
3580 break;
3581
3582 caddr = t->loc[pos].addr;
Christoph Lameter45edfa52007-05-09 02:32:45 -07003583 if (track->addr == caddr) {
3584
3585 l = &t->loc[pos];
3586 l->count++;
3587 if (track->when) {
3588 l->sum_time += age;
3589 if (age < l->min_time)
3590 l->min_time = age;
3591 if (age > l->max_time)
3592 l->max_time = age;
3593
3594 if (track->pid < l->min_pid)
3595 l->min_pid = track->pid;
3596 if (track->pid > l->max_pid)
3597 l->max_pid = track->pid;
3598
Rusty Russell174596a2009-01-01 10:12:29 +10303599 cpumask_set_cpu(track->cpu,
3600 to_cpumask(l->cpus));
Christoph Lameter45edfa52007-05-09 02:32:45 -07003601 }
3602 node_set(page_to_nid(virt_to_page(track)), l->nodes);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003603 return 1;
3604 }
3605
Christoph Lameter45edfa52007-05-09 02:32:45 -07003606 if (track->addr < caddr)
Christoph Lameter88a420e2007-05-06 14:49:45 -07003607 end = pos;
3608 else
3609 start = pos;
3610 }
3611
3612 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07003613 * Not found. Insert new tracking element.
Christoph Lameter88a420e2007-05-06 14:49:45 -07003614 */
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003615 if (t->count >= t->max && !alloc_loc_track(t, 2 * t->max, GFP_ATOMIC))
Christoph Lameter88a420e2007-05-06 14:49:45 -07003616 return 0;
3617
3618 l = t->loc + pos;
3619 if (pos < t->count)
3620 memmove(l + 1, l,
3621 (t->count - pos) * sizeof(struct location));
3622 t->count++;
3623 l->count = 1;
Christoph Lameter45edfa52007-05-09 02:32:45 -07003624 l->addr = track->addr;
3625 l->sum_time = age;
3626 l->min_time = age;
3627 l->max_time = age;
3628 l->min_pid = track->pid;
3629 l->max_pid = track->pid;
Rusty Russell174596a2009-01-01 10:12:29 +10303630 cpumask_clear(to_cpumask(l->cpus));
3631 cpumask_set_cpu(track->cpu, to_cpumask(l->cpus));
Christoph Lameter45edfa52007-05-09 02:32:45 -07003632 nodes_clear(l->nodes);
3633 node_set(page_to_nid(virt_to_page(track)), l->nodes);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003634 return 1;
3635}
3636
3637static void process_slab(struct loc_track *t, struct kmem_cache *s,
Eric Dumazetbbd7d572010-03-24 22:25:47 +01003638 struct page *page, enum track_item alloc,
3639 long *map)
Christoph Lameter88a420e2007-05-06 14:49:45 -07003640{
Christoph Lametera973e9d2008-03-01 13:40:44 -08003641 void *addr = page_address(page);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003642 void *p;
3643
Christoph Lameter39b26462008-04-14 19:11:30 +03003644 bitmap_zero(map, page->objects);
Christoph Lameter7656c722007-05-09 02:32:40 -07003645 for_each_free_object(p, s, page->freelist)
3646 set_bit(slab_index(p, s, addr), map);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003647
Christoph Lameter224a88b2008-04-14 19:11:31 +03003648 for_each_object(p, s, addr, page->objects)
Christoph Lameter45edfa52007-05-09 02:32:45 -07003649 if (!test_bit(slab_index(p, s, addr), map))
3650 add_location(t, s, get_track(s, p, alloc));
Christoph Lameter88a420e2007-05-06 14:49:45 -07003651}
3652
3653static int list_locations(struct kmem_cache *s, char *buf,
3654 enum track_item alloc)
3655{
Harvey Harrisone374d482008-01-31 15:20:50 -08003656 int len = 0;
Christoph Lameter88a420e2007-05-06 14:49:45 -07003657 unsigned long i;
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003658 struct loc_track t = { 0, 0, NULL };
Christoph Lameter88a420e2007-05-06 14:49:45 -07003659 int node;
Eric Dumazetbbd7d572010-03-24 22:25:47 +01003660 unsigned long *map = kmalloc(BITS_TO_LONGS(oo_objects(s->max)) *
3661 sizeof(unsigned long), GFP_KERNEL);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003662
Eric Dumazetbbd7d572010-03-24 22:25:47 +01003663 if (!map || !alloc_loc_track(&t, PAGE_SIZE / sizeof(struct location),
3664 GFP_TEMPORARY)) {
3665 kfree(map);
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003666 return sprintf(buf, "Out of memory\n");
Eric Dumazetbbd7d572010-03-24 22:25:47 +01003667 }
Christoph Lameter88a420e2007-05-06 14:49:45 -07003668 /* Push back cpu slabs */
3669 flush_all(s);
3670
Christoph Lameterf64dc582007-10-16 01:25:33 -07003671 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter88a420e2007-05-06 14:49:45 -07003672 struct kmem_cache_node *n = get_node(s, node);
3673 unsigned long flags;
3674 struct page *page;
3675
Christoph Lameter9e869432007-08-22 14:01:56 -07003676 if (!atomic_long_read(&n->nr_slabs))
Christoph Lameter88a420e2007-05-06 14:49:45 -07003677 continue;
3678
3679 spin_lock_irqsave(&n->list_lock, flags);
3680 list_for_each_entry(page, &n->partial, lru)
Eric Dumazetbbd7d572010-03-24 22:25:47 +01003681 process_slab(&t, s, page, alloc, map);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003682 list_for_each_entry(page, &n->full, lru)
Eric Dumazetbbd7d572010-03-24 22:25:47 +01003683 process_slab(&t, s, page, alloc, map);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003684 spin_unlock_irqrestore(&n->list_lock, flags);
3685 }
3686
3687 for (i = 0; i < t.count; i++) {
Christoph Lameter45edfa52007-05-09 02:32:45 -07003688 struct location *l = &t.loc[i];
Christoph Lameter88a420e2007-05-06 14:49:45 -07003689
Hugh Dickins9c246242008-12-09 13:14:27 -08003690 if (len > PAGE_SIZE - KSYM_SYMBOL_LEN - 100)
Christoph Lameter88a420e2007-05-06 14:49:45 -07003691 break;
Harvey Harrisone374d482008-01-31 15:20:50 -08003692 len += sprintf(buf + len, "%7ld ", l->count);
Christoph Lameter45edfa52007-05-09 02:32:45 -07003693
3694 if (l->addr)
Harvey Harrisone374d482008-01-31 15:20:50 -08003695 len += sprint_symbol(buf + len, (unsigned long)l->addr);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003696 else
Harvey Harrisone374d482008-01-31 15:20:50 -08003697 len += sprintf(buf + len, "<not-available>");
Christoph Lameter45edfa52007-05-09 02:32:45 -07003698
3699 if (l->sum_time != l->min_time) {
Harvey Harrisone374d482008-01-31 15:20:50 -08003700 len += sprintf(buf + len, " age=%ld/%ld/%ld",
Roman Zippelf8bd2252008-05-01 04:34:31 -07003701 l->min_time,
3702 (long)div_u64(l->sum_time, l->count),
3703 l->max_time);
Christoph Lameter45edfa52007-05-09 02:32:45 -07003704 } else
Harvey Harrisone374d482008-01-31 15:20:50 -08003705 len += sprintf(buf + len, " age=%ld",
Christoph Lameter45edfa52007-05-09 02:32:45 -07003706 l->min_time);
3707
3708 if (l->min_pid != l->max_pid)
Harvey Harrisone374d482008-01-31 15:20:50 -08003709 len += sprintf(buf + len, " pid=%ld-%ld",
Christoph Lameter45edfa52007-05-09 02:32:45 -07003710 l->min_pid, l->max_pid);
3711 else
Harvey Harrisone374d482008-01-31 15:20:50 -08003712 len += sprintf(buf + len, " pid=%ld",
Christoph Lameter45edfa52007-05-09 02:32:45 -07003713 l->min_pid);
3714
Rusty Russell174596a2009-01-01 10:12:29 +10303715 if (num_online_cpus() > 1 &&
3716 !cpumask_empty(to_cpumask(l->cpus)) &&
Harvey Harrisone374d482008-01-31 15:20:50 -08003717 len < PAGE_SIZE - 60) {
3718 len += sprintf(buf + len, " cpus=");
3719 len += cpulist_scnprintf(buf + len, PAGE_SIZE - len - 50,
Rusty Russell174596a2009-01-01 10:12:29 +10303720 to_cpumask(l->cpus));
Christoph Lameter45edfa52007-05-09 02:32:45 -07003721 }
3722
Christoph Lameter62bc62a2009-06-16 15:32:15 -07003723 if (nr_online_nodes > 1 && !nodes_empty(l->nodes) &&
Harvey Harrisone374d482008-01-31 15:20:50 -08003724 len < PAGE_SIZE - 60) {
3725 len += sprintf(buf + len, " nodes=");
3726 len += nodelist_scnprintf(buf + len, PAGE_SIZE - len - 50,
Christoph Lameter45edfa52007-05-09 02:32:45 -07003727 l->nodes);
3728 }
3729
Harvey Harrisone374d482008-01-31 15:20:50 -08003730 len += sprintf(buf + len, "\n");
Christoph Lameter88a420e2007-05-06 14:49:45 -07003731 }
3732
3733 free_loc_track(&t);
Eric Dumazetbbd7d572010-03-24 22:25:47 +01003734 kfree(map);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003735 if (!t.count)
Harvey Harrisone374d482008-01-31 15:20:50 -08003736 len += sprintf(buf, "No data\n");
3737 return len;
Christoph Lameter88a420e2007-05-06 14:49:45 -07003738}
3739
Christoph Lameter81819f02007-05-06 14:49:36 -07003740enum slab_stat_type {
Christoph Lameter205ab992008-04-14 19:11:40 +03003741 SL_ALL, /* All slabs */
3742 SL_PARTIAL, /* Only partially allocated slabs */
3743 SL_CPU, /* Only slabs used for cpu caches */
3744 SL_OBJECTS, /* Determine allocated objects not slabs */
3745 SL_TOTAL /* Determine object capacity not slabs */
Christoph Lameter81819f02007-05-06 14:49:36 -07003746};
3747
Christoph Lameter205ab992008-04-14 19:11:40 +03003748#define SO_ALL (1 << SL_ALL)
Christoph Lameter81819f02007-05-06 14:49:36 -07003749#define SO_PARTIAL (1 << SL_PARTIAL)
3750#define SO_CPU (1 << SL_CPU)
3751#define SO_OBJECTS (1 << SL_OBJECTS)
Christoph Lameter205ab992008-04-14 19:11:40 +03003752#define SO_TOTAL (1 << SL_TOTAL)
Christoph Lameter81819f02007-05-06 14:49:36 -07003753
Cyrill Gorcunov62e5c4b2008-03-02 23:28:24 +03003754static ssize_t show_slab_objects(struct kmem_cache *s,
3755 char *buf, unsigned long flags)
Christoph Lameter81819f02007-05-06 14:49:36 -07003756{
3757 unsigned long total = 0;
Christoph Lameter81819f02007-05-06 14:49:36 -07003758 int node;
3759 int x;
3760 unsigned long *nodes;
3761 unsigned long *per_cpu;
3762
3763 nodes = kzalloc(2 * sizeof(unsigned long) * nr_node_ids, GFP_KERNEL);
Cyrill Gorcunov62e5c4b2008-03-02 23:28:24 +03003764 if (!nodes)
3765 return -ENOMEM;
Christoph Lameter81819f02007-05-06 14:49:36 -07003766 per_cpu = nodes + nr_node_ids;
3767
Christoph Lameter205ab992008-04-14 19:11:40 +03003768 if (flags & SO_CPU) {
3769 int cpu;
Christoph Lameter81819f02007-05-06 14:49:36 -07003770
Christoph Lameter205ab992008-04-14 19:11:40 +03003771 for_each_possible_cpu(cpu) {
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06003772 struct kmem_cache_cpu *c = per_cpu_ptr(s->cpu_slab, cpu);
Christoph Lameterdfb4f092007-10-16 01:26:05 -07003773
Christoph Lameter205ab992008-04-14 19:11:40 +03003774 if (!c || c->node < 0)
3775 continue;
3776
3777 if (c->page) {
3778 if (flags & SO_TOTAL)
3779 x = c->page->objects;
3780 else if (flags & SO_OBJECTS)
3781 x = c->page->inuse;
Christoph Lameter81819f02007-05-06 14:49:36 -07003782 else
3783 x = 1;
Christoph Lameter205ab992008-04-14 19:11:40 +03003784
Christoph Lameter81819f02007-05-06 14:49:36 -07003785 total += x;
Christoph Lameter205ab992008-04-14 19:11:40 +03003786 nodes[c->node] += x;
Christoph Lameter81819f02007-05-06 14:49:36 -07003787 }
Christoph Lameter205ab992008-04-14 19:11:40 +03003788 per_cpu[c->node]++;
Christoph Lameter81819f02007-05-06 14:49:36 -07003789 }
3790 }
3791
Christoph Lameter205ab992008-04-14 19:11:40 +03003792 if (flags & SO_ALL) {
3793 for_each_node_state(node, N_NORMAL_MEMORY) {
3794 struct kmem_cache_node *n = get_node(s, node);
Christoph Lameter81819f02007-05-06 14:49:36 -07003795
Christoph Lameter205ab992008-04-14 19:11:40 +03003796 if (flags & SO_TOTAL)
3797 x = atomic_long_read(&n->total_objects);
3798 else if (flags & SO_OBJECTS)
3799 x = atomic_long_read(&n->total_objects) -
3800 count_partial(n, count_free);
3801
3802 else
3803 x = atomic_long_read(&n->nr_slabs);
3804 total += x;
3805 nodes[node] += x;
3806 }
3807
3808 } else if (flags & SO_PARTIAL) {
3809 for_each_node_state(node, N_NORMAL_MEMORY) {
3810 struct kmem_cache_node *n = get_node(s, node);
3811
3812 if (flags & SO_TOTAL)
3813 x = count_partial(n, count_total);
3814 else if (flags & SO_OBJECTS)
3815 x = count_partial(n, count_inuse);
Christoph Lameter81819f02007-05-06 14:49:36 -07003816 else
3817 x = n->nr_partial;
3818 total += x;
3819 nodes[node] += x;
3820 }
Christoph Lameter81819f02007-05-06 14:49:36 -07003821 }
Christoph Lameter81819f02007-05-06 14:49:36 -07003822 x = sprintf(buf, "%lu", total);
3823#ifdef CONFIG_NUMA
Christoph Lameterf64dc582007-10-16 01:25:33 -07003824 for_each_node_state(node, N_NORMAL_MEMORY)
Christoph Lameter81819f02007-05-06 14:49:36 -07003825 if (nodes[node])
3826 x += sprintf(buf + x, " N%d=%lu",
3827 node, nodes[node]);
3828#endif
3829 kfree(nodes);
3830 return x + sprintf(buf + x, "\n");
3831}
3832
3833static int any_slab_objects(struct kmem_cache *s)
3834{
3835 int node;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07003836
3837 for_each_online_node(node) {
Christoph Lameter81819f02007-05-06 14:49:36 -07003838 struct kmem_cache_node *n = get_node(s, node);
3839
Christoph Lameterdfb4f092007-10-16 01:26:05 -07003840 if (!n)
3841 continue;
3842
Benjamin Herrenschmidt4ea33e22008-05-06 20:42:39 -07003843 if (atomic_long_read(&n->total_objects))
Christoph Lameter81819f02007-05-06 14:49:36 -07003844 return 1;
3845 }
3846 return 0;
3847}
3848
3849#define to_slab_attr(n) container_of(n, struct slab_attribute, attr)
3850#define to_slab(n) container_of(n, struct kmem_cache, kobj);
3851
3852struct slab_attribute {
3853 struct attribute attr;
3854 ssize_t (*show)(struct kmem_cache *s, char *buf);
3855 ssize_t (*store)(struct kmem_cache *s, const char *x, size_t count);
3856};
3857
3858#define SLAB_ATTR_RO(_name) \
3859 static struct slab_attribute _name##_attr = __ATTR_RO(_name)
3860
3861#define SLAB_ATTR(_name) \
3862 static struct slab_attribute _name##_attr = \
3863 __ATTR(_name, 0644, _name##_show, _name##_store)
3864
Christoph Lameter81819f02007-05-06 14:49:36 -07003865static ssize_t slab_size_show(struct kmem_cache *s, char *buf)
3866{
3867 return sprintf(buf, "%d\n", s->size);
3868}
3869SLAB_ATTR_RO(slab_size);
3870
3871static ssize_t align_show(struct kmem_cache *s, char *buf)
3872{
3873 return sprintf(buf, "%d\n", s->align);
3874}
3875SLAB_ATTR_RO(align);
3876
3877static ssize_t object_size_show(struct kmem_cache *s, char *buf)
3878{
3879 return sprintf(buf, "%d\n", s->objsize);
3880}
3881SLAB_ATTR_RO(object_size);
3882
3883static ssize_t objs_per_slab_show(struct kmem_cache *s, char *buf)
3884{
Christoph Lameter834f3d12008-04-14 19:11:31 +03003885 return sprintf(buf, "%d\n", oo_objects(s->oo));
Christoph Lameter81819f02007-05-06 14:49:36 -07003886}
3887SLAB_ATTR_RO(objs_per_slab);
3888
Christoph Lameter06b285d2008-04-14 19:11:41 +03003889static ssize_t order_store(struct kmem_cache *s,
3890 const char *buf, size_t length)
3891{
Christoph Lameter0121c6192008-04-29 16:11:12 -07003892 unsigned long order;
3893 int err;
3894
3895 err = strict_strtoul(buf, 10, &order);
3896 if (err)
3897 return err;
Christoph Lameter06b285d2008-04-14 19:11:41 +03003898
3899 if (order > slub_max_order || order < slub_min_order)
3900 return -EINVAL;
3901
3902 calculate_sizes(s, order);
3903 return length;
3904}
3905
Christoph Lameter81819f02007-05-06 14:49:36 -07003906static ssize_t order_show(struct kmem_cache *s, char *buf)
3907{
Christoph Lameter834f3d12008-04-14 19:11:31 +03003908 return sprintf(buf, "%d\n", oo_order(s->oo));
Christoph Lameter81819f02007-05-06 14:49:36 -07003909}
Christoph Lameter06b285d2008-04-14 19:11:41 +03003910SLAB_ATTR(order);
Christoph Lameter81819f02007-05-06 14:49:36 -07003911
David Rientjes73d342b2009-02-22 17:40:09 -08003912static ssize_t min_partial_show(struct kmem_cache *s, char *buf)
3913{
3914 return sprintf(buf, "%lu\n", s->min_partial);
3915}
3916
3917static ssize_t min_partial_store(struct kmem_cache *s, const char *buf,
3918 size_t length)
3919{
3920 unsigned long min;
3921 int err;
3922
3923 err = strict_strtoul(buf, 10, &min);
3924 if (err)
3925 return err;
3926
David Rientjesc0bdb232009-02-25 09:16:35 +02003927 set_min_partial(s, min);
David Rientjes73d342b2009-02-22 17:40:09 -08003928 return length;
3929}
3930SLAB_ATTR(min_partial);
3931
Christoph Lameter81819f02007-05-06 14:49:36 -07003932static ssize_t ctor_show(struct kmem_cache *s, char *buf)
3933{
3934 if (s->ctor) {
3935 int n = sprint_symbol(buf, (unsigned long)s->ctor);
3936
3937 return n + sprintf(buf + n, "\n");
3938 }
3939 return 0;
3940}
3941SLAB_ATTR_RO(ctor);
3942
Christoph Lameter81819f02007-05-06 14:49:36 -07003943static ssize_t aliases_show(struct kmem_cache *s, char *buf)
3944{
3945 return sprintf(buf, "%d\n", s->refcount - 1);
3946}
3947SLAB_ATTR_RO(aliases);
3948
3949static ssize_t slabs_show(struct kmem_cache *s, char *buf)
3950{
Christoph Lameter205ab992008-04-14 19:11:40 +03003951 return show_slab_objects(s, buf, SO_ALL);
Christoph Lameter81819f02007-05-06 14:49:36 -07003952}
3953SLAB_ATTR_RO(slabs);
3954
3955static ssize_t partial_show(struct kmem_cache *s, char *buf)
3956{
Christoph Lameterd9acf4b2008-02-15 15:22:21 -08003957 return show_slab_objects(s, buf, SO_PARTIAL);
Christoph Lameter81819f02007-05-06 14:49:36 -07003958}
3959SLAB_ATTR_RO(partial);
3960
3961static ssize_t cpu_slabs_show(struct kmem_cache *s, char *buf)
3962{
Christoph Lameterd9acf4b2008-02-15 15:22:21 -08003963 return show_slab_objects(s, buf, SO_CPU);
Christoph Lameter81819f02007-05-06 14:49:36 -07003964}
3965SLAB_ATTR_RO(cpu_slabs);
3966
3967static ssize_t objects_show(struct kmem_cache *s, char *buf)
3968{
Christoph Lameter205ab992008-04-14 19:11:40 +03003969 return show_slab_objects(s, buf, SO_ALL|SO_OBJECTS);
Christoph Lameter81819f02007-05-06 14:49:36 -07003970}
3971SLAB_ATTR_RO(objects);
3972
Christoph Lameter205ab992008-04-14 19:11:40 +03003973static ssize_t objects_partial_show(struct kmem_cache *s, char *buf)
3974{
3975 return show_slab_objects(s, buf, SO_PARTIAL|SO_OBJECTS);
3976}
3977SLAB_ATTR_RO(objects_partial);
3978
3979static ssize_t total_objects_show(struct kmem_cache *s, char *buf)
3980{
3981 return show_slab_objects(s, buf, SO_ALL|SO_TOTAL);
3982}
3983SLAB_ATTR_RO(total_objects);
3984
Christoph Lameter81819f02007-05-06 14:49:36 -07003985static ssize_t sanity_checks_show(struct kmem_cache *s, char *buf)
3986{
3987 return sprintf(buf, "%d\n", !!(s->flags & SLAB_DEBUG_FREE));
3988}
3989
3990static ssize_t sanity_checks_store(struct kmem_cache *s,
3991 const char *buf, size_t length)
3992{
3993 s->flags &= ~SLAB_DEBUG_FREE;
3994 if (buf[0] == '1')
3995 s->flags |= SLAB_DEBUG_FREE;
3996 return length;
3997}
3998SLAB_ATTR(sanity_checks);
3999
4000static ssize_t trace_show(struct kmem_cache *s, char *buf)
4001{
4002 return sprintf(buf, "%d\n", !!(s->flags & SLAB_TRACE));
4003}
4004
4005static ssize_t trace_store(struct kmem_cache *s, const char *buf,
4006 size_t length)
4007{
4008 s->flags &= ~SLAB_TRACE;
4009 if (buf[0] == '1')
4010 s->flags |= SLAB_TRACE;
4011 return length;
4012}
4013SLAB_ATTR(trace);
4014
Dmitry Monakhov4c13dd32010-02-26 09:36:12 +03004015#ifdef CONFIG_FAILSLAB
4016static ssize_t failslab_show(struct kmem_cache *s, char *buf)
4017{
4018 return sprintf(buf, "%d\n", !!(s->flags & SLAB_FAILSLAB));
4019}
4020
4021static ssize_t failslab_store(struct kmem_cache *s, const char *buf,
4022 size_t length)
4023{
4024 s->flags &= ~SLAB_FAILSLAB;
4025 if (buf[0] == '1')
4026 s->flags |= SLAB_FAILSLAB;
4027 return length;
4028}
4029SLAB_ATTR(failslab);
4030#endif
4031
Christoph Lameter81819f02007-05-06 14:49:36 -07004032static ssize_t reclaim_account_show(struct kmem_cache *s, char *buf)
4033{
4034 return sprintf(buf, "%d\n", !!(s->flags & SLAB_RECLAIM_ACCOUNT));
4035}
4036
4037static ssize_t reclaim_account_store(struct kmem_cache *s,
4038 const char *buf, size_t length)
4039{
4040 s->flags &= ~SLAB_RECLAIM_ACCOUNT;
4041 if (buf[0] == '1')
4042 s->flags |= SLAB_RECLAIM_ACCOUNT;
4043 return length;
4044}
4045SLAB_ATTR(reclaim_account);
4046
4047static ssize_t hwcache_align_show(struct kmem_cache *s, char *buf)
4048{
Christoph Lameter5af60832007-05-06 14:49:56 -07004049 return sprintf(buf, "%d\n", !!(s->flags & SLAB_HWCACHE_ALIGN));
Christoph Lameter81819f02007-05-06 14:49:36 -07004050}
4051SLAB_ATTR_RO(hwcache_align);
4052
4053#ifdef CONFIG_ZONE_DMA
4054static ssize_t cache_dma_show(struct kmem_cache *s, char *buf)
4055{
4056 return sprintf(buf, "%d\n", !!(s->flags & SLAB_CACHE_DMA));
4057}
4058SLAB_ATTR_RO(cache_dma);
4059#endif
4060
4061static ssize_t destroy_by_rcu_show(struct kmem_cache *s, char *buf)
4062{
4063 return sprintf(buf, "%d\n", !!(s->flags & SLAB_DESTROY_BY_RCU));
4064}
4065SLAB_ATTR_RO(destroy_by_rcu);
4066
4067static ssize_t red_zone_show(struct kmem_cache *s, char *buf)
4068{
4069 return sprintf(buf, "%d\n", !!(s->flags & SLAB_RED_ZONE));
4070}
4071
4072static ssize_t red_zone_store(struct kmem_cache *s,
4073 const char *buf, size_t length)
4074{
4075 if (any_slab_objects(s))
4076 return -EBUSY;
4077
4078 s->flags &= ~SLAB_RED_ZONE;
4079 if (buf[0] == '1')
4080 s->flags |= SLAB_RED_ZONE;
Christoph Lameter06b285d2008-04-14 19:11:41 +03004081 calculate_sizes(s, -1);
Christoph Lameter81819f02007-05-06 14:49:36 -07004082 return length;
4083}
4084SLAB_ATTR(red_zone);
4085
4086static ssize_t poison_show(struct kmem_cache *s, char *buf)
4087{
4088 return sprintf(buf, "%d\n", !!(s->flags & SLAB_POISON));
4089}
4090
4091static ssize_t poison_store(struct kmem_cache *s,
4092 const char *buf, size_t length)
4093{
4094 if (any_slab_objects(s))
4095 return -EBUSY;
4096
4097 s->flags &= ~SLAB_POISON;
4098 if (buf[0] == '1')
4099 s->flags |= SLAB_POISON;
Christoph Lameter06b285d2008-04-14 19:11:41 +03004100 calculate_sizes(s, -1);
Christoph Lameter81819f02007-05-06 14:49:36 -07004101 return length;
4102}
4103SLAB_ATTR(poison);
4104
4105static ssize_t store_user_show(struct kmem_cache *s, char *buf)
4106{
4107 return sprintf(buf, "%d\n", !!(s->flags & SLAB_STORE_USER));
4108}
4109
4110static ssize_t store_user_store(struct kmem_cache *s,
4111 const char *buf, size_t length)
4112{
4113 if (any_slab_objects(s))
4114 return -EBUSY;
4115
4116 s->flags &= ~SLAB_STORE_USER;
4117 if (buf[0] == '1')
4118 s->flags |= SLAB_STORE_USER;
Christoph Lameter06b285d2008-04-14 19:11:41 +03004119 calculate_sizes(s, -1);
Christoph Lameter81819f02007-05-06 14:49:36 -07004120 return length;
4121}
4122SLAB_ATTR(store_user);
4123
Christoph Lameter53e15af2007-05-06 14:49:43 -07004124static ssize_t validate_show(struct kmem_cache *s, char *buf)
4125{
4126 return 0;
4127}
4128
4129static ssize_t validate_store(struct kmem_cache *s,
4130 const char *buf, size_t length)
4131{
Christoph Lameter434e2452007-07-17 04:03:30 -07004132 int ret = -EINVAL;
4133
4134 if (buf[0] == '1') {
4135 ret = validate_slab_cache(s);
4136 if (ret >= 0)
4137 ret = length;
4138 }
4139 return ret;
Christoph Lameter53e15af2007-05-06 14:49:43 -07004140}
4141SLAB_ATTR(validate);
4142
Christoph Lameter2086d262007-05-06 14:49:46 -07004143static ssize_t shrink_show(struct kmem_cache *s, char *buf)
4144{
4145 return 0;
4146}
4147
4148static ssize_t shrink_store(struct kmem_cache *s,
4149 const char *buf, size_t length)
4150{
4151 if (buf[0] == '1') {
4152 int rc = kmem_cache_shrink(s);
4153
4154 if (rc)
4155 return rc;
4156 } else
4157 return -EINVAL;
4158 return length;
4159}
4160SLAB_ATTR(shrink);
4161
Christoph Lameter88a420e2007-05-06 14:49:45 -07004162static ssize_t alloc_calls_show(struct kmem_cache *s, char *buf)
4163{
4164 if (!(s->flags & SLAB_STORE_USER))
4165 return -ENOSYS;
4166 return list_locations(s, buf, TRACK_ALLOC);
4167}
4168SLAB_ATTR_RO(alloc_calls);
4169
4170static ssize_t free_calls_show(struct kmem_cache *s, char *buf)
4171{
4172 if (!(s->flags & SLAB_STORE_USER))
4173 return -ENOSYS;
4174 return list_locations(s, buf, TRACK_FREE);
4175}
4176SLAB_ATTR_RO(free_calls);
4177
Christoph Lameter81819f02007-05-06 14:49:36 -07004178#ifdef CONFIG_NUMA
Christoph Lameter98246012008-01-07 23:20:26 -08004179static ssize_t remote_node_defrag_ratio_show(struct kmem_cache *s, char *buf)
Christoph Lameter81819f02007-05-06 14:49:36 -07004180{
Christoph Lameter98246012008-01-07 23:20:26 -08004181 return sprintf(buf, "%d\n", s->remote_node_defrag_ratio / 10);
Christoph Lameter81819f02007-05-06 14:49:36 -07004182}
4183
Christoph Lameter98246012008-01-07 23:20:26 -08004184static ssize_t remote_node_defrag_ratio_store(struct kmem_cache *s,
Christoph Lameter81819f02007-05-06 14:49:36 -07004185 const char *buf, size_t length)
4186{
Christoph Lameter0121c6192008-04-29 16:11:12 -07004187 unsigned long ratio;
4188 int err;
Christoph Lameter81819f02007-05-06 14:49:36 -07004189
Christoph Lameter0121c6192008-04-29 16:11:12 -07004190 err = strict_strtoul(buf, 10, &ratio);
4191 if (err)
4192 return err;
4193
Christoph Lametere2cb96b2008-08-19 08:51:22 -05004194 if (ratio <= 100)
Christoph Lameter0121c6192008-04-29 16:11:12 -07004195 s->remote_node_defrag_ratio = ratio * 10;
4196
Christoph Lameter81819f02007-05-06 14:49:36 -07004197 return length;
4198}
Christoph Lameter98246012008-01-07 23:20:26 -08004199SLAB_ATTR(remote_node_defrag_ratio);
Christoph Lameter81819f02007-05-06 14:49:36 -07004200#endif
4201
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004202#ifdef CONFIG_SLUB_STATS
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004203static int show_stat(struct kmem_cache *s, char *buf, enum stat_item si)
4204{
4205 unsigned long sum = 0;
4206 int cpu;
4207 int len;
4208 int *data = kmalloc(nr_cpu_ids * sizeof(int), GFP_KERNEL);
4209
4210 if (!data)
4211 return -ENOMEM;
4212
4213 for_each_online_cpu(cpu) {
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06004214 unsigned x = per_cpu_ptr(s->cpu_slab, cpu)->stat[si];
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004215
4216 data[cpu] = x;
4217 sum += x;
4218 }
4219
4220 len = sprintf(buf, "%lu", sum);
4221
Christoph Lameter50ef37b2008-04-14 18:52:05 +03004222#ifdef CONFIG_SMP
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004223 for_each_online_cpu(cpu) {
4224 if (data[cpu] && len < PAGE_SIZE - 20)
Christoph Lameter50ef37b2008-04-14 18:52:05 +03004225 len += sprintf(buf + len, " C%d=%u", cpu, data[cpu]);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004226 }
Christoph Lameter50ef37b2008-04-14 18:52:05 +03004227#endif
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004228 kfree(data);
4229 return len + sprintf(buf + len, "\n");
4230}
4231
David Rientjes78eb00c2009-10-15 02:20:22 -07004232static void clear_stat(struct kmem_cache *s, enum stat_item si)
4233{
4234 int cpu;
4235
4236 for_each_online_cpu(cpu)
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06004237 per_cpu_ptr(s->cpu_slab, cpu)->stat[si] = 0;
David Rientjes78eb00c2009-10-15 02:20:22 -07004238}
4239
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004240#define STAT_ATTR(si, text) \
4241static ssize_t text##_show(struct kmem_cache *s, char *buf) \
4242{ \
4243 return show_stat(s, buf, si); \
4244} \
David Rientjes78eb00c2009-10-15 02:20:22 -07004245static ssize_t text##_store(struct kmem_cache *s, \
4246 const char *buf, size_t length) \
4247{ \
4248 if (buf[0] != '0') \
4249 return -EINVAL; \
4250 clear_stat(s, si); \
4251 return length; \
4252} \
4253SLAB_ATTR(text); \
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004254
4255STAT_ATTR(ALLOC_FASTPATH, alloc_fastpath);
4256STAT_ATTR(ALLOC_SLOWPATH, alloc_slowpath);
4257STAT_ATTR(FREE_FASTPATH, free_fastpath);
4258STAT_ATTR(FREE_SLOWPATH, free_slowpath);
4259STAT_ATTR(FREE_FROZEN, free_frozen);
4260STAT_ATTR(FREE_ADD_PARTIAL, free_add_partial);
4261STAT_ATTR(FREE_REMOVE_PARTIAL, free_remove_partial);
4262STAT_ATTR(ALLOC_FROM_PARTIAL, alloc_from_partial);
4263STAT_ATTR(ALLOC_SLAB, alloc_slab);
4264STAT_ATTR(ALLOC_REFILL, alloc_refill);
4265STAT_ATTR(FREE_SLAB, free_slab);
4266STAT_ATTR(CPUSLAB_FLUSH, cpuslab_flush);
4267STAT_ATTR(DEACTIVATE_FULL, deactivate_full);
4268STAT_ATTR(DEACTIVATE_EMPTY, deactivate_empty);
4269STAT_ATTR(DEACTIVATE_TO_HEAD, deactivate_to_head);
4270STAT_ATTR(DEACTIVATE_TO_TAIL, deactivate_to_tail);
4271STAT_ATTR(DEACTIVATE_REMOTE_FREES, deactivate_remote_frees);
Christoph Lameter65c33762008-04-14 19:11:40 +03004272STAT_ATTR(ORDER_FALLBACK, order_fallback);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004273#endif
4274
Pekka Enberg06428782008-01-07 23:20:27 -08004275static struct attribute *slab_attrs[] = {
Christoph Lameter81819f02007-05-06 14:49:36 -07004276 &slab_size_attr.attr,
4277 &object_size_attr.attr,
4278 &objs_per_slab_attr.attr,
4279 &order_attr.attr,
David Rientjes73d342b2009-02-22 17:40:09 -08004280 &min_partial_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07004281 &objects_attr.attr,
Christoph Lameter205ab992008-04-14 19:11:40 +03004282 &objects_partial_attr.attr,
4283 &total_objects_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07004284 &slabs_attr.attr,
4285 &partial_attr.attr,
4286 &cpu_slabs_attr.attr,
4287 &ctor_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07004288 &aliases_attr.attr,
4289 &align_attr.attr,
4290 &sanity_checks_attr.attr,
4291 &trace_attr.attr,
4292 &hwcache_align_attr.attr,
4293 &reclaim_account_attr.attr,
4294 &destroy_by_rcu_attr.attr,
4295 &red_zone_attr.attr,
4296 &poison_attr.attr,
4297 &store_user_attr.attr,
Christoph Lameter53e15af2007-05-06 14:49:43 -07004298 &validate_attr.attr,
Christoph Lameter2086d262007-05-06 14:49:46 -07004299 &shrink_attr.attr,
Christoph Lameter88a420e2007-05-06 14:49:45 -07004300 &alloc_calls_attr.attr,
4301 &free_calls_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07004302#ifdef CONFIG_ZONE_DMA
4303 &cache_dma_attr.attr,
4304#endif
4305#ifdef CONFIG_NUMA
Christoph Lameter98246012008-01-07 23:20:26 -08004306 &remote_node_defrag_ratio_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07004307#endif
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004308#ifdef CONFIG_SLUB_STATS
4309 &alloc_fastpath_attr.attr,
4310 &alloc_slowpath_attr.attr,
4311 &free_fastpath_attr.attr,
4312 &free_slowpath_attr.attr,
4313 &free_frozen_attr.attr,
4314 &free_add_partial_attr.attr,
4315 &free_remove_partial_attr.attr,
4316 &alloc_from_partial_attr.attr,
4317 &alloc_slab_attr.attr,
4318 &alloc_refill_attr.attr,
4319 &free_slab_attr.attr,
4320 &cpuslab_flush_attr.attr,
4321 &deactivate_full_attr.attr,
4322 &deactivate_empty_attr.attr,
4323 &deactivate_to_head_attr.attr,
4324 &deactivate_to_tail_attr.attr,
4325 &deactivate_remote_frees_attr.attr,
Christoph Lameter65c33762008-04-14 19:11:40 +03004326 &order_fallback_attr.attr,
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004327#endif
Dmitry Monakhov4c13dd32010-02-26 09:36:12 +03004328#ifdef CONFIG_FAILSLAB
4329 &failslab_attr.attr,
4330#endif
4331
Christoph Lameter81819f02007-05-06 14:49:36 -07004332 NULL
4333};
4334
4335static struct attribute_group slab_attr_group = {
4336 .attrs = slab_attrs,
4337};
4338
4339static ssize_t slab_attr_show(struct kobject *kobj,
4340 struct attribute *attr,
4341 char *buf)
4342{
4343 struct slab_attribute *attribute;
4344 struct kmem_cache *s;
4345 int err;
4346
4347 attribute = to_slab_attr(attr);
4348 s = to_slab(kobj);
4349
4350 if (!attribute->show)
4351 return -EIO;
4352
4353 err = attribute->show(s, buf);
4354
4355 return err;
4356}
4357
4358static ssize_t slab_attr_store(struct kobject *kobj,
4359 struct attribute *attr,
4360 const char *buf, size_t len)
4361{
4362 struct slab_attribute *attribute;
4363 struct kmem_cache *s;
4364 int err;
4365
4366 attribute = to_slab_attr(attr);
4367 s = to_slab(kobj);
4368
4369 if (!attribute->store)
4370 return -EIO;
4371
4372 err = attribute->store(s, buf, len);
4373
4374 return err;
4375}
4376
Christoph Lameter151c6022008-01-07 22:29:05 -08004377static void kmem_cache_release(struct kobject *kobj)
4378{
4379 struct kmem_cache *s = to_slab(kobj);
4380
4381 kfree(s);
4382}
4383
Emese Revfy52cf25d2010-01-19 02:58:23 +01004384static const struct sysfs_ops slab_sysfs_ops = {
Christoph Lameter81819f02007-05-06 14:49:36 -07004385 .show = slab_attr_show,
4386 .store = slab_attr_store,
4387};
4388
4389static struct kobj_type slab_ktype = {
4390 .sysfs_ops = &slab_sysfs_ops,
Christoph Lameter151c6022008-01-07 22:29:05 -08004391 .release = kmem_cache_release
Christoph Lameter81819f02007-05-06 14:49:36 -07004392};
4393
4394static int uevent_filter(struct kset *kset, struct kobject *kobj)
4395{
4396 struct kobj_type *ktype = get_ktype(kobj);
4397
4398 if (ktype == &slab_ktype)
4399 return 1;
4400 return 0;
4401}
4402
Emese Revfy9cd43612009-12-31 14:52:51 +01004403static const struct kset_uevent_ops slab_uevent_ops = {
Christoph Lameter81819f02007-05-06 14:49:36 -07004404 .filter = uevent_filter,
4405};
4406
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06004407static struct kset *slab_kset;
Christoph Lameter81819f02007-05-06 14:49:36 -07004408
4409#define ID_STR_LENGTH 64
4410
4411/* Create a unique string id for a slab cache:
Christoph Lameter6446faa2008-02-15 23:45:26 -08004412 *
4413 * Format :[flags-]size
Christoph Lameter81819f02007-05-06 14:49:36 -07004414 */
4415static char *create_unique_id(struct kmem_cache *s)
4416{
4417 char *name = kmalloc(ID_STR_LENGTH, GFP_KERNEL);
4418 char *p = name;
4419
4420 BUG_ON(!name);
4421
4422 *p++ = ':';
4423 /*
4424 * First flags affecting slabcache operations. We will only
4425 * get here for aliasable slabs so we do not need to support
4426 * too many flags. The flags here must cover all flags that
4427 * are matched during merging to guarantee that the id is
4428 * unique.
4429 */
4430 if (s->flags & SLAB_CACHE_DMA)
4431 *p++ = 'd';
4432 if (s->flags & SLAB_RECLAIM_ACCOUNT)
4433 *p++ = 'a';
4434 if (s->flags & SLAB_DEBUG_FREE)
4435 *p++ = 'F';
Vegard Nossum5a896d92008-04-04 00:54:48 +02004436 if (!(s->flags & SLAB_NOTRACK))
4437 *p++ = 't';
Christoph Lameter81819f02007-05-06 14:49:36 -07004438 if (p != name + 1)
4439 *p++ = '-';
4440 p += sprintf(p, "%07d", s->size);
4441 BUG_ON(p > name + ID_STR_LENGTH - 1);
4442 return name;
4443}
4444
4445static int sysfs_slab_add(struct kmem_cache *s)
4446{
4447 int err;
4448 const char *name;
4449 int unmergeable;
4450
4451 if (slab_state < SYSFS)
4452 /* Defer until later */
4453 return 0;
4454
4455 unmergeable = slab_unmergeable(s);
4456 if (unmergeable) {
4457 /*
4458 * Slabcache can never be merged so we can use the name proper.
4459 * This is typically the case for debug situations. In that
4460 * case we can catch duplicate names easily.
4461 */
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06004462 sysfs_remove_link(&slab_kset->kobj, s->name);
Christoph Lameter81819f02007-05-06 14:49:36 -07004463 name = s->name;
4464 } else {
4465 /*
4466 * Create a unique name for the slab as a target
4467 * for the symlinks.
4468 */
4469 name = create_unique_id(s);
4470 }
4471
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06004472 s->kobj.kset = slab_kset;
Greg Kroah-Hartman1eada112007-12-17 23:05:35 -07004473 err = kobject_init_and_add(&s->kobj, &slab_ktype, NULL, name);
4474 if (err) {
4475 kobject_put(&s->kobj);
Christoph Lameter81819f02007-05-06 14:49:36 -07004476 return err;
Greg Kroah-Hartman1eada112007-12-17 23:05:35 -07004477 }
Christoph Lameter81819f02007-05-06 14:49:36 -07004478
4479 err = sysfs_create_group(&s->kobj, &slab_attr_group);
Xiaotian Feng5788d8a2009-07-22 11:28:53 +08004480 if (err) {
4481 kobject_del(&s->kobj);
4482 kobject_put(&s->kobj);
Christoph Lameter81819f02007-05-06 14:49:36 -07004483 return err;
Xiaotian Feng5788d8a2009-07-22 11:28:53 +08004484 }
Christoph Lameter81819f02007-05-06 14:49:36 -07004485 kobject_uevent(&s->kobj, KOBJ_ADD);
4486 if (!unmergeable) {
4487 /* Setup first alias */
4488 sysfs_slab_alias(s, s->name);
4489 kfree(name);
4490 }
4491 return 0;
4492}
4493
4494static void sysfs_slab_remove(struct kmem_cache *s)
4495{
Christoph Lameter2bce6482010-07-19 11:39:11 -05004496 if (slab_state < SYSFS)
4497 /*
4498 * Sysfs has not been setup yet so no need to remove the
4499 * cache from sysfs.
4500 */
4501 return;
4502
Christoph Lameter81819f02007-05-06 14:49:36 -07004503 kobject_uevent(&s->kobj, KOBJ_REMOVE);
4504 kobject_del(&s->kobj);
Christoph Lameter151c6022008-01-07 22:29:05 -08004505 kobject_put(&s->kobj);
Christoph Lameter81819f02007-05-06 14:49:36 -07004506}
4507
4508/*
4509 * Need to buffer aliases during bootup until sysfs becomes
Nick Andrew9f6c708e2008-12-05 14:08:08 +11004510 * available lest we lose that information.
Christoph Lameter81819f02007-05-06 14:49:36 -07004511 */
4512struct saved_alias {
4513 struct kmem_cache *s;
4514 const char *name;
4515 struct saved_alias *next;
4516};
4517
Adrian Bunk5af328a2007-07-17 04:03:27 -07004518static struct saved_alias *alias_list;
Christoph Lameter81819f02007-05-06 14:49:36 -07004519
4520static int sysfs_slab_alias(struct kmem_cache *s, const char *name)
4521{
4522 struct saved_alias *al;
4523
4524 if (slab_state == SYSFS) {
4525 /*
4526 * If we have a leftover link then remove it.
4527 */
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06004528 sysfs_remove_link(&slab_kset->kobj, name);
4529 return sysfs_create_link(&slab_kset->kobj, &s->kobj, name);
Christoph Lameter81819f02007-05-06 14:49:36 -07004530 }
4531
4532 al = kmalloc(sizeof(struct saved_alias), GFP_KERNEL);
4533 if (!al)
4534 return -ENOMEM;
4535
4536 al->s = s;
4537 al->name = name;
4538 al->next = alias_list;
4539 alias_list = al;
4540 return 0;
4541}
4542
4543static int __init slab_sysfs_init(void)
4544{
Christoph Lameter5b95a4a2007-07-17 04:03:19 -07004545 struct kmem_cache *s;
Christoph Lameter81819f02007-05-06 14:49:36 -07004546 int err;
4547
Christoph Lameter2bce6482010-07-19 11:39:11 -05004548 down_write(&slub_lock);
4549
Greg Kroah-Hartman0ff21e42007-11-06 10:36:58 -08004550 slab_kset = kset_create_and_add("slab", &slab_uevent_ops, kernel_kobj);
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06004551 if (!slab_kset) {
Christoph Lameter2bce6482010-07-19 11:39:11 -05004552 up_write(&slub_lock);
Christoph Lameter81819f02007-05-06 14:49:36 -07004553 printk(KERN_ERR "Cannot register slab subsystem.\n");
4554 return -ENOSYS;
4555 }
4556
Christoph Lameter26a7bd02007-05-09 02:32:39 -07004557 slab_state = SYSFS;
4558
Christoph Lameter5b95a4a2007-07-17 04:03:19 -07004559 list_for_each_entry(s, &slab_caches, list) {
Christoph Lameter26a7bd02007-05-09 02:32:39 -07004560 err = sysfs_slab_add(s);
Christoph Lameter5d540fb2007-08-30 23:56:26 -07004561 if (err)
4562 printk(KERN_ERR "SLUB: Unable to add boot slab %s"
4563 " to sysfs\n", s->name);
Christoph Lameter26a7bd02007-05-09 02:32:39 -07004564 }
Christoph Lameter81819f02007-05-06 14:49:36 -07004565
4566 while (alias_list) {
4567 struct saved_alias *al = alias_list;
4568
4569 alias_list = alias_list->next;
4570 err = sysfs_slab_alias(al->s, al->name);
Christoph Lameter5d540fb2007-08-30 23:56:26 -07004571 if (err)
4572 printk(KERN_ERR "SLUB: Unable to add boot slab alias"
4573 " %s to sysfs\n", s->name);
Christoph Lameter81819f02007-05-06 14:49:36 -07004574 kfree(al);
4575 }
4576
Christoph Lameter2bce6482010-07-19 11:39:11 -05004577 up_write(&slub_lock);
Christoph Lameter81819f02007-05-06 14:49:36 -07004578 resiliency_test();
4579 return 0;
4580}
4581
4582__initcall(slab_sysfs_init);
Christoph Lameter81819f02007-05-06 14:49:36 -07004583#endif
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004584
4585/*
4586 * The /proc/slabinfo ABI
4587 */
Linus Torvalds158a9622008-01-02 13:04:48 -08004588#ifdef CONFIG_SLABINFO
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004589static void print_slabinfo_header(struct seq_file *m)
4590{
4591 seq_puts(m, "slabinfo - version: 2.1\n");
4592 seq_puts(m, "# name <active_objs> <num_objs> <objsize> "
4593 "<objperslab> <pagesperslab>");
4594 seq_puts(m, " : tunables <limit> <batchcount> <sharedfactor>");
4595 seq_puts(m, " : slabdata <active_slabs> <num_slabs> <sharedavail>");
4596 seq_putc(m, '\n');
4597}
4598
4599static void *s_start(struct seq_file *m, loff_t *pos)
4600{
4601 loff_t n = *pos;
4602
4603 down_read(&slub_lock);
4604 if (!n)
4605 print_slabinfo_header(m);
4606
4607 return seq_list_start(&slab_caches, *pos);
4608}
4609
4610static void *s_next(struct seq_file *m, void *p, loff_t *pos)
4611{
4612 return seq_list_next(p, &slab_caches, pos);
4613}
4614
4615static void s_stop(struct seq_file *m, void *p)
4616{
4617 up_read(&slub_lock);
4618}
4619
4620static int s_show(struct seq_file *m, void *p)
4621{
4622 unsigned long nr_partials = 0;
4623 unsigned long nr_slabs = 0;
4624 unsigned long nr_inuse = 0;
Christoph Lameter205ab992008-04-14 19:11:40 +03004625 unsigned long nr_objs = 0;
4626 unsigned long nr_free = 0;
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004627 struct kmem_cache *s;
4628 int node;
4629
4630 s = list_entry(p, struct kmem_cache, list);
4631
4632 for_each_online_node(node) {
4633 struct kmem_cache_node *n = get_node(s, node);
4634
4635 if (!n)
4636 continue;
4637
4638 nr_partials += n->nr_partial;
4639 nr_slabs += atomic_long_read(&n->nr_slabs);
Christoph Lameter205ab992008-04-14 19:11:40 +03004640 nr_objs += atomic_long_read(&n->total_objects);
4641 nr_free += count_partial(n, count_free);
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004642 }
4643
Christoph Lameter205ab992008-04-14 19:11:40 +03004644 nr_inuse = nr_objs - nr_free;
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004645
4646 seq_printf(m, "%-17s %6lu %6lu %6u %4u %4d", s->name, nr_inuse,
Christoph Lameter834f3d12008-04-14 19:11:31 +03004647 nr_objs, s->size, oo_objects(s->oo),
4648 (1 << oo_order(s->oo)));
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004649 seq_printf(m, " : tunables %4u %4u %4u", 0, 0, 0);
4650 seq_printf(m, " : slabdata %6lu %6lu %6lu", nr_slabs, nr_slabs,
4651 0UL);
4652 seq_putc(m, '\n');
4653 return 0;
4654}
4655
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04004656static const struct seq_operations slabinfo_op = {
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004657 .start = s_start,
4658 .next = s_next,
4659 .stop = s_stop,
4660 .show = s_show,
4661};
4662
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04004663static int slabinfo_open(struct inode *inode, struct file *file)
4664{
4665 return seq_open(file, &slabinfo_op);
4666}
4667
4668static const struct file_operations proc_slabinfo_operations = {
4669 .open = slabinfo_open,
4670 .read = seq_read,
4671 .llseek = seq_lseek,
4672 .release = seq_release,
4673};
4674
4675static int __init slab_proc_init(void)
4676{
WANG Congcf5d1132009-08-18 19:11:40 +03004677 proc_create("slabinfo", S_IRUGO, NULL, &proc_slabinfo_operations);
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04004678 return 0;
4679}
4680module_init(slab_proc_init);
Linus Torvalds158a9622008-01-02 13:04:48 -08004681#endif /* CONFIG_SLABINFO */