blob: 9cf5dae7815e1d904b1e4a468592efe99c160610 [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 Lameter84e554e62009-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 Lameter84e554e62009-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 Lameter84e554e62009-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 Wang5086c389c2009-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 Lameter84e554e62009-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 Lameter84e554e62009-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 Lameter84e554e62009-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 Lameter84e554e62009-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 Lameter84e554e62009-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 Lameter84e554e62009-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 Lameter84e554e62009-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 Lameter84e554e62009-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 Lameter84e554e62009-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 Lameter84e554e62009-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 Lameter84e554e62009-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 Munteanuca2b84cb2009-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 Munteanuca2b84cb2009-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 Lameter84e554e62009-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 Lameter84e554e62009-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 Lameter84e554e62009-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 Lameter84e554e62009-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 Lameter84e554e62009-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 Lameter84e554e62009-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 Munteanuca2b84cb2009-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 Wang5086c389c2009-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 Lameterc59def92007-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 Lameterc59def92007-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);
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07002494 up_write(&slub_lock);
Pekka Enbergd629d812008-04-23 22:31:08 +03002495 if (kmem_cache_close(s)) {
2496 printk(KERN_ERR "SLUB %s: %s called for cache that "
2497 "still has objects.\n", s->name, __func__);
2498 dump_stack();
2499 }
Eric Dumazetd76b1592009-09-03 22:38:59 +03002500 if (s->flags & SLAB_DESTROY_BY_RCU)
2501 rcu_barrier();
Christoph Lameter81819f02007-05-06 14:49:36 -07002502 sysfs_slab_remove(s);
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07002503 } else
2504 up_write(&slub_lock);
Christoph Lameter81819f02007-05-06 14:49:36 -07002505}
2506EXPORT_SYMBOL(kmem_cache_destroy);
2507
2508/********************************************************************
2509 * Kmalloc subsystem
2510 *******************************************************************/
2511
Christoph Lameter756dee72009-12-18 16:26:21 -06002512struct kmem_cache kmalloc_caches[KMALLOC_CACHES] __cacheline_aligned;
Christoph Lameter81819f02007-05-06 14:49:36 -07002513EXPORT_SYMBOL(kmalloc_caches);
2514
Christoph Lameter81819f02007-05-06 14:49:36 -07002515static int __init setup_slub_min_order(char *str)
2516{
Pekka Enberg06428782008-01-07 23:20:27 -08002517 get_option(&str, &slub_min_order);
Christoph Lameter81819f02007-05-06 14:49:36 -07002518
2519 return 1;
2520}
2521
2522__setup("slub_min_order=", setup_slub_min_order);
2523
2524static int __init setup_slub_max_order(char *str)
2525{
Pekka Enberg06428782008-01-07 23:20:27 -08002526 get_option(&str, &slub_max_order);
David Rientjes818cf592009-04-23 09:58:22 +03002527 slub_max_order = min(slub_max_order, MAX_ORDER - 1);
Christoph Lameter81819f02007-05-06 14:49:36 -07002528
2529 return 1;
2530}
2531
2532__setup("slub_max_order=", setup_slub_max_order);
2533
2534static int __init setup_slub_min_objects(char *str)
2535{
Pekka Enberg06428782008-01-07 23:20:27 -08002536 get_option(&str, &slub_min_objects);
Christoph Lameter81819f02007-05-06 14:49:36 -07002537
2538 return 1;
2539}
2540
2541__setup("slub_min_objects=", setup_slub_min_objects);
2542
2543static int __init setup_slub_nomerge(char *str)
2544{
2545 slub_nomerge = 1;
2546 return 1;
2547}
2548
2549__setup("slub_nomerge", setup_slub_nomerge);
2550
Christoph Lameter81819f02007-05-06 14:49:36 -07002551static struct kmem_cache *create_kmalloc_cache(struct kmem_cache *s,
2552 const char *name, int size, gfp_t gfp_flags)
2553{
2554 unsigned int flags = 0;
2555
2556 if (gfp_flags & SLUB_DMA)
2557 flags = SLAB_CACHE_DMA;
2558
Pekka Enberg83b519e2009-06-10 19:40:04 +03002559 /*
2560 * This function is called with IRQs disabled during early-boot on
2561 * single CPU so there's no need to take slub_lock here.
2562 */
Christoph Lameter81819f02007-05-06 14:49:36 -07002563 if (!kmem_cache_open(s, gfp_flags, name, size, ARCH_KMALLOC_MINALIGN,
Christoph Lameter319d1e22008-04-14 19:11:41 +03002564 flags, NULL))
Christoph Lameter81819f02007-05-06 14:49:36 -07002565 goto panic;
2566
2567 list_add(&s->list, &slab_caches);
Pekka Enberg83b519e2009-06-10 19:40:04 +03002568
Christoph Lameter81819f02007-05-06 14:49:36 -07002569 if (sysfs_slab_add(s))
2570 goto panic;
2571 return s;
2572
2573panic:
2574 panic("Creation of kmalloc slab %s size=%d failed.\n", name, size);
2575}
2576
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002577#ifdef CONFIG_ZONE_DMA
Christoph Lameterffadd4d2009-02-17 12:05:07 -05002578static struct kmem_cache *kmalloc_caches_dma[SLUB_PAGE_SHIFT];
Christoph Lameter1ceef402007-08-07 15:11:48 -07002579
2580static void sysfs_add_func(struct work_struct *w)
2581{
2582 struct kmem_cache *s;
2583
2584 down_write(&slub_lock);
2585 list_for_each_entry(s, &slab_caches, list) {
2586 if (s->flags & __SYSFS_ADD_DEFERRED) {
2587 s->flags &= ~__SYSFS_ADD_DEFERRED;
2588 sysfs_slab_add(s);
2589 }
2590 }
2591 up_write(&slub_lock);
2592}
2593
2594static DECLARE_WORK(sysfs_add_work, sysfs_add_func);
2595
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002596static noinline struct kmem_cache *dma_kmalloc_cache(int index, gfp_t flags)
2597{
2598 struct kmem_cache *s;
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002599 char *text;
2600 size_t realsize;
Nick Piggin964cf352009-06-15 13:35:10 +03002601 unsigned long slabflags;
Christoph Lameter756dee72009-12-18 16:26:21 -06002602 int i;
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002603
2604 s = kmalloc_caches_dma[index];
2605 if (s)
2606 return s;
2607
2608 /* Dynamically create dma cache */
Christoph Lameter1ceef402007-08-07 15:11:48 -07002609 if (flags & __GFP_WAIT)
2610 down_write(&slub_lock);
2611 else {
2612 if (!down_write_trylock(&slub_lock))
2613 goto out;
2614 }
2615
2616 if (kmalloc_caches_dma[index])
2617 goto unlock_out;
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002618
Christoph Lameter7b55f622007-07-17 04:03:27 -07002619 realsize = kmalloc_caches[index].objsize;
Ingo Molnar3adbefe2008-02-05 17:57:39 -08002620 text = kasprintf(flags & ~SLUB_DMA, "kmalloc_dma-%d",
2621 (unsigned int)realsize);
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06002622
Christoph Lameter756dee72009-12-18 16:26:21 -06002623 s = NULL;
2624 for (i = 0; i < KMALLOC_CACHES; i++)
2625 if (!kmalloc_caches[i].size)
2626 break;
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06002627
Christoph Lameter756dee72009-12-18 16:26:21 -06002628 BUG_ON(i >= KMALLOC_CACHES);
2629 s = kmalloc_caches + i;
Christoph Lameter1ceef402007-08-07 15:11:48 -07002630
Nick Piggin964cf352009-06-15 13:35:10 +03002631 /*
2632 * Must defer sysfs creation to a workqueue because we don't know
2633 * what context we are called from. Before sysfs comes up, we don't
2634 * need to do anything because our sysfs initcall will start by
2635 * adding all existing slabs to sysfs.
2636 */
Pekka Enberg5caf5c72009-06-17 08:30:54 +03002637 slabflags = SLAB_CACHE_DMA|SLAB_NOTRACK;
Nick Piggin964cf352009-06-15 13:35:10 +03002638 if (slab_state >= SYSFS)
2639 slabflags |= __SYSFS_ADD_DEFERRED;
2640
David Rientjes7738dd92010-01-15 12:49:56 -08002641 if (!text || !kmem_cache_open(s, flags, text,
Nick Piggin964cf352009-06-15 13:35:10 +03002642 realsize, ARCH_KMALLOC_MINALIGN, slabflags, NULL)) {
Christoph Lameter756dee72009-12-18 16:26:21 -06002643 s->size = 0;
Christoph Lameter1ceef402007-08-07 15:11:48 -07002644 kfree(text);
2645 goto unlock_out;
Christoph Lameterdfce8642007-07-17 04:03:25 -07002646 }
Christoph Lameter1ceef402007-08-07 15:11:48 -07002647
2648 list_add(&s->list, &slab_caches);
2649 kmalloc_caches_dma[index] = s;
2650
Nick Piggin964cf352009-06-15 13:35:10 +03002651 if (slab_state >= SYSFS)
2652 schedule_work(&sysfs_add_work);
Christoph Lameter1ceef402007-08-07 15:11:48 -07002653
2654unlock_out:
Christoph Lameterdfce8642007-07-17 04:03:25 -07002655 up_write(&slub_lock);
Christoph Lameter1ceef402007-08-07 15:11:48 -07002656out:
Christoph Lameterdfce8642007-07-17 04:03:25 -07002657 return kmalloc_caches_dma[index];
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002658}
2659#endif
2660
Christoph Lameterf1b26332007-07-17 04:03:26 -07002661/*
2662 * Conversion table for small slabs sizes / 8 to the index in the
2663 * kmalloc array. This is necessary for slabs < 192 since we have non power
2664 * of two cache sizes there. The size of larger slabs can be determined using
2665 * fls.
2666 */
2667static s8 size_index[24] = {
2668 3, /* 8 */
2669 4, /* 16 */
2670 5, /* 24 */
2671 5, /* 32 */
2672 6, /* 40 */
2673 6, /* 48 */
2674 6, /* 56 */
2675 6, /* 64 */
2676 1, /* 72 */
2677 1, /* 80 */
2678 1, /* 88 */
2679 1, /* 96 */
2680 7, /* 104 */
2681 7, /* 112 */
2682 7, /* 120 */
2683 7, /* 128 */
2684 2, /* 136 */
2685 2, /* 144 */
2686 2, /* 152 */
2687 2, /* 160 */
2688 2, /* 168 */
2689 2, /* 176 */
2690 2, /* 184 */
2691 2 /* 192 */
2692};
2693
Aaro Koskinenacdfcd02009-08-28 14:28:54 +03002694static inline int size_index_elem(size_t bytes)
2695{
2696 return (bytes - 1) / 8;
2697}
2698
Christoph Lameter81819f02007-05-06 14:49:36 -07002699static struct kmem_cache *get_slab(size_t size, gfp_t flags)
2700{
Christoph Lameterf1b26332007-07-17 04:03:26 -07002701 int index;
Christoph Lameter81819f02007-05-06 14:49:36 -07002702
Christoph Lameterf1b26332007-07-17 04:03:26 -07002703 if (size <= 192) {
2704 if (!size)
2705 return ZERO_SIZE_PTR;
Christoph Lameter81819f02007-05-06 14:49:36 -07002706
Aaro Koskinenacdfcd02009-08-28 14:28:54 +03002707 index = size_index[size_index_elem(size)];
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002708 } else
Christoph Lameterf1b26332007-07-17 04:03:26 -07002709 index = fls(size - 1);
Christoph Lameter81819f02007-05-06 14:49:36 -07002710
2711#ifdef CONFIG_ZONE_DMA
Christoph Lameterf1b26332007-07-17 04:03:26 -07002712 if (unlikely((flags & SLUB_DMA)))
Christoph Lameter2e443fd2007-07-17 04:03:24 -07002713 return dma_kmalloc_cache(index, flags);
Christoph Lameterf1b26332007-07-17 04:03:26 -07002714
Christoph Lameter81819f02007-05-06 14:49:36 -07002715#endif
2716 return &kmalloc_caches[index];
2717}
2718
2719void *__kmalloc(size_t size, gfp_t flags)
2720{
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002721 struct kmem_cache *s;
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002722 void *ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07002723
Christoph Lameterffadd4d2009-02-17 12:05:07 -05002724 if (unlikely(size > SLUB_MAX_SIZE))
Pekka Enbergeada35e2008-02-11 22:47:46 +02002725 return kmalloc_large(size, flags);
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002726
2727 s = get_slab(size, flags);
2728
2729 if (unlikely(ZERO_OR_NULL_PTR(s)))
Christoph Lameter6cb8f912007-07-17 04:03:22 -07002730 return s;
2731
Christoph Lameter2154a332010-07-09 14:07:10 -05002732 ret = slab_alloc(s, flags, NUMA_NO_NODE, _RET_IP_);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002733
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02002734 trace_kmalloc(_RET_IP_, ret, size, s->size, flags);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002735
2736 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07002737}
2738EXPORT_SYMBOL(__kmalloc);
2739
Christoph Lameterf619cfe2008-03-01 13:56:40 -08002740static void *kmalloc_large_node(size_t size, gfp_t flags, int node)
2741{
Vegard Nossumb1eeab62008-11-25 16:55:53 +01002742 struct page *page;
Catalin Marinase4f7c0b42009-07-07 10:32:59 +01002743 void *ptr = NULL;
Christoph Lameterf619cfe2008-03-01 13:56:40 -08002744
Vegard Nossumb1eeab62008-11-25 16:55:53 +01002745 flags |= __GFP_COMP | __GFP_NOTRACK;
2746 page = alloc_pages_node(node, flags, get_order(size));
Christoph Lameterf619cfe2008-03-01 13:56:40 -08002747 if (page)
Catalin Marinase4f7c0b42009-07-07 10:32:59 +01002748 ptr = page_address(page);
2749
2750 kmemleak_alloc(ptr, size, 1, flags);
2751 return ptr;
Christoph Lameterf619cfe2008-03-01 13:56:40 -08002752}
2753
Christoph Lameter81819f02007-05-06 14:49:36 -07002754#ifdef CONFIG_NUMA
2755void *__kmalloc_node(size_t size, gfp_t flags, int node)
2756{
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002757 struct kmem_cache *s;
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002758 void *ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07002759
Ingo Molnar057685c2009-02-20 12:15:30 +01002760 if (unlikely(size > SLUB_MAX_SIZE)) {
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002761 ret = kmalloc_large_node(size, flags, node);
2762
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02002763 trace_kmalloc_node(_RET_IP_, ret,
2764 size, PAGE_SIZE << get_order(size),
2765 flags, node);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002766
2767 return ret;
2768 }
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002769
2770 s = get_slab(size, flags);
2771
2772 if (unlikely(ZERO_OR_NULL_PTR(s)))
Christoph Lameter6cb8f912007-07-17 04:03:22 -07002773 return s;
2774
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002775 ret = slab_alloc(s, flags, node, _RET_IP_);
2776
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02002777 trace_kmalloc_node(_RET_IP_, ret, size, s->size, flags, node);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002778
2779 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07002780}
2781EXPORT_SYMBOL(__kmalloc_node);
2782#endif
2783
2784size_t ksize(const void *object)
2785{
Christoph Lameter272c1d22007-06-08 13:46:49 -07002786 struct page *page;
Christoph Lameter81819f02007-05-06 14:49:36 -07002787 struct kmem_cache *s;
2788
Christoph Lameteref8b4522007-10-16 01:24:46 -07002789 if (unlikely(object == ZERO_SIZE_PTR))
Christoph Lameter272c1d22007-06-08 13:46:49 -07002790 return 0;
2791
Vegard Nossum294a80a2007-12-04 23:45:30 -08002792 page = virt_to_head_page(object);
Vegard Nossum294a80a2007-12-04 23:45:30 -08002793
Pekka Enberg76994412008-05-22 19:22:25 +03002794 if (unlikely(!PageSlab(page))) {
2795 WARN_ON(!PageCompound(page));
Vegard Nossum294a80a2007-12-04 23:45:30 -08002796 return PAGE_SIZE << compound_order(page);
Pekka Enberg76994412008-05-22 19:22:25 +03002797 }
Christoph Lameter81819f02007-05-06 14:49:36 -07002798 s = page->slab;
Christoph Lameter81819f02007-05-06 14:49:36 -07002799
Christoph Lameterae20bfd2008-02-15 23:45:25 -08002800#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter81819f02007-05-06 14:49:36 -07002801 /*
2802 * Debugging requires use of the padding between object
2803 * and whatever may come after it.
2804 */
2805 if (s->flags & (SLAB_RED_ZONE | SLAB_POISON))
2806 return s->objsize;
2807
Christoph Lameterae20bfd2008-02-15 23:45:25 -08002808#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07002809 /*
2810 * If we have the need to store the freelist pointer
2811 * back there or track user information then we can
2812 * only use the space before that information.
2813 */
2814 if (s->flags & (SLAB_DESTROY_BY_RCU | SLAB_STORE_USER))
2815 return s->inuse;
Christoph Lameter81819f02007-05-06 14:49:36 -07002816 /*
2817 * Else we can use all the padding etc for the allocation
2818 */
2819 return s->size;
2820}
Kirill A. Shutemovb1aabec2009-02-10 15:21:44 +02002821EXPORT_SYMBOL(ksize);
Christoph Lameter81819f02007-05-06 14:49:36 -07002822
2823void kfree(const void *x)
2824{
Christoph Lameter81819f02007-05-06 14:49:36 -07002825 struct page *page;
Christoph Lameter5bb983b2008-02-07 17:47:41 -08002826 void *object = (void *)x;
Christoph Lameter81819f02007-05-06 14:49:36 -07002827
Pekka Enberg2121db72009-03-25 11:05:57 +02002828 trace_kfree(_RET_IP_, x);
2829
Satyam Sharma2408c552007-10-16 01:24:44 -07002830 if (unlikely(ZERO_OR_NULL_PTR(x)))
Christoph Lameter81819f02007-05-06 14:49:36 -07002831 return;
2832
Christoph Lameterb49af682007-05-06 14:49:41 -07002833 page = virt_to_head_page(x);
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002834 if (unlikely(!PageSlab(page))) {
Christoph Lameter09375022008-05-28 10:32:22 -07002835 BUG_ON(!PageCompound(page));
Catalin Marinase4f7c0b42009-07-07 10:32:59 +01002836 kmemleak_free(x);
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002837 put_page(page);
2838 return;
2839 }
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03002840 slab_free(page->slab, page, object, _RET_IP_);
Christoph Lameter81819f02007-05-06 14:49:36 -07002841}
2842EXPORT_SYMBOL(kfree);
2843
Christoph Lameter2086d262007-05-06 14:49:46 -07002844/*
Christoph Lameter672bba32007-05-09 02:32:39 -07002845 * kmem_cache_shrink removes empty slabs from the partial lists and sorts
2846 * the remaining slabs by the number of items in use. The slabs with the
2847 * most items in use come first. New allocations will then fill those up
2848 * and thus they can be removed from the partial lists.
2849 *
2850 * The slabs with the least items are placed last. This results in them
2851 * being allocated from last increasing the chance that the last objects
2852 * are freed in them.
Christoph Lameter2086d262007-05-06 14:49:46 -07002853 */
2854int kmem_cache_shrink(struct kmem_cache *s)
2855{
2856 int node;
2857 int i;
2858 struct kmem_cache_node *n;
2859 struct page *page;
2860 struct page *t;
Christoph Lameter205ab992008-04-14 19:11:40 +03002861 int objects = oo_objects(s->max);
Christoph Lameter2086d262007-05-06 14:49:46 -07002862 struct list_head *slabs_by_inuse =
Christoph Lameter834f3d12008-04-14 19:11:31 +03002863 kmalloc(sizeof(struct list_head) * objects, GFP_KERNEL);
Christoph Lameter2086d262007-05-06 14:49:46 -07002864 unsigned long flags;
2865
2866 if (!slabs_by_inuse)
2867 return -ENOMEM;
2868
2869 flush_all(s);
Christoph Lameterf64dc582007-10-16 01:25:33 -07002870 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter2086d262007-05-06 14:49:46 -07002871 n = get_node(s, node);
2872
2873 if (!n->nr_partial)
2874 continue;
2875
Christoph Lameter834f3d12008-04-14 19:11:31 +03002876 for (i = 0; i < objects; i++)
Christoph Lameter2086d262007-05-06 14:49:46 -07002877 INIT_LIST_HEAD(slabs_by_inuse + i);
2878
2879 spin_lock_irqsave(&n->list_lock, flags);
2880
2881 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07002882 * Build lists indexed by the items in use in each slab.
Christoph Lameter2086d262007-05-06 14:49:46 -07002883 *
Christoph Lameter672bba32007-05-09 02:32:39 -07002884 * Note that concurrent frees may occur while we hold the
2885 * list_lock. page->inuse here is the upper limit.
Christoph Lameter2086d262007-05-06 14:49:46 -07002886 */
2887 list_for_each_entry_safe(page, t, &n->partial, lru) {
2888 if (!page->inuse && slab_trylock(page)) {
2889 /*
2890 * Must hold slab lock here because slab_free
2891 * may have freed the last object and be
2892 * waiting to release the slab.
2893 */
2894 list_del(&page->lru);
2895 n->nr_partial--;
2896 slab_unlock(page);
2897 discard_slab(s, page);
2898 } else {
Christoph Lameterfcda3d82007-07-30 13:06:46 -07002899 list_move(&page->lru,
2900 slabs_by_inuse + page->inuse);
Christoph Lameter2086d262007-05-06 14:49:46 -07002901 }
2902 }
2903
Christoph Lameter2086d262007-05-06 14:49:46 -07002904 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07002905 * Rebuild the partial list with the slabs filled up most
2906 * first and the least used slabs at the end.
Christoph Lameter2086d262007-05-06 14:49:46 -07002907 */
Christoph Lameter834f3d12008-04-14 19:11:31 +03002908 for (i = objects - 1; i >= 0; i--)
Christoph Lameter2086d262007-05-06 14:49:46 -07002909 list_splice(slabs_by_inuse + i, n->partial.prev);
2910
Christoph Lameter2086d262007-05-06 14:49:46 -07002911 spin_unlock_irqrestore(&n->list_lock, flags);
2912 }
2913
2914 kfree(slabs_by_inuse);
2915 return 0;
2916}
2917EXPORT_SYMBOL(kmem_cache_shrink);
2918
Yasunori Gotob9049e22007-10-21 16:41:37 -07002919#if defined(CONFIG_NUMA) && defined(CONFIG_MEMORY_HOTPLUG)
2920static int slab_mem_going_offline_callback(void *arg)
2921{
2922 struct kmem_cache *s;
2923
2924 down_read(&slub_lock);
2925 list_for_each_entry(s, &slab_caches, list)
2926 kmem_cache_shrink(s);
2927 up_read(&slub_lock);
2928
2929 return 0;
2930}
2931
2932static void slab_mem_offline_callback(void *arg)
2933{
2934 struct kmem_cache_node *n;
2935 struct kmem_cache *s;
2936 struct memory_notify *marg = arg;
2937 int offline_node;
2938
2939 offline_node = marg->status_change_nid;
2940
2941 /*
2942 * If the node still has available memory. we need kmem_cache_node
2943 * for it yet.
2944 */
2945 if (offline_node < 0)
2946 return;
2947
2948 down_read(&slub_lock);
2949 list_for_each_entry(s, &slab_caches, list) {
2950 n = get_node(s, offline_node);
2951 if (n) {
2952 /*
2953 * if n->nr_slabs > 0, slabs still exist on the node
2954 * that is going down. We were unable to free them,
Adam Buchbinderc9404c92009-12-18 15:40:42 -05002955 * and offline_pages() function shouldn't call this
Yasunori Gotob9049e22007-10-21 16:41:37 -07002956 * callback. So, we must fail.
2957 */
Christoph Lameter0f389ec2008-04-14 18:53:02 +03002958 BUG_ON(slabs_node(s, offline_node));
Yasunori Gotob9049e22007-10-21 16:41:37 -07002959
2960 s->node[offline_node] = NULL;
2961 kmem_cache_free(kmalloc_caches, n);
2962 }
2963 }
2964 up_read(&slub_lock);
2965}
2966
2967static int slab_mem_going_online_callback(void *arg)
2968{
2969 struct kmem_cache_node *n;
2970 struct kmem_cache *s;
2971 struct memory_notify *marg = arg;
2972 int nid = marg->status_change_nid;
2973 int ret = 0;
2974
2975 /*
2976 * If the node's memory is already available, then kmem_cache_node is
2977 * already created. Nothing to do.
2978 */
2979 if (nid < 0)
2980 return 0;
2981
2982 /*
Christoph Lameter0121c6192008-04-29 16:11:12 -07002983 * We are bringing a node online. No memory is available yet. We must
Yasunori Gotob9049e22007-10-21 16:41:37 -07002984 * allocate a kmem_cache_node structure in order to bring the node
2985 * online.
2986 */
2987 down_read(&slub_lock);
2988 list_for_each_entry(s, &slab_caches, list) {
2989 /*
2990 * XXX: kmem_cache_alloc_node will fallback to other nodes
2991 * since memory is not yet available from the node that
2992 * is brought up.
2993 */
2994 n = kmem_cache_alloc(kmalloc_caches, GFP_KERNEL);
2995 if (!n) {
2996 ret = -ENOMEM;
2997 goto out;
2998 }
Pekka Enberg5595cff2008-08-05 09:28:47 +03002999 init_kmem_cache_node(n, s);
Yasunori Gotob9049e22007-10-21 16:41:37 -07003000 s->node[nid] = n;
3001 }
3002out:
3003 up_read(&slub_lock);
3004 return ret;
3005}
3006
3007static int slab_memory_callback(struct notifier_block *self,
3008 unsigned long action, void *arg)
3009{
3010 int ret = 0;
3011
3012 switch (action) {
3013 case MEM_GOING_ONLINE:
3014 ret = slab_mem_going_online_callback(arg);
3015 break;
3016 case MEM_GOING_OFFLINE:
3017 ret = slab_mem_going_offline_callback(arg);
3018 break;
3019 case MEM_OFFLINE:
3020 case MEM_CANCEL_ONLINE:
3021 slab_mem_offline_callback(arg);
3022 break;
3023 case MEM_ONLINE:
3024 case MEM_CANCEL_OFFLINE:
3025 break;
3026 }
KAMEZAWA Hiroyukidc19f9d2008-12-01 13:13:48 -08003027 if (ret)
3028 ret = notifier_from_errno(ret);
3029 else
3030 ret = NOTIFY_OK;
Yasunori Gotob9049e22007-10-21 16:41:37 -07003031 return ret;
3032}
3033
3034#endif /* CONFIG_MEMORY_HOTPLUG */
3035
Christoph Lameter81819f02007-05-06 14:49:36 -07003036/********************************************************************
3037 * Basic setup of slabs
3038 *******************************************************************/
3039
3040void __init kmem_cache_init(void)
3041{
3042 int i;
Christoph Lameter4b356be2007-06-16 10:16:13 -07003043 int caches = 0;
Christoph Lameter81819f02007-05-06 14:49:36 -07003044
3045#ifdef CONFIG_NUMA
3046 /*
3047 * Must first have the slab cache available for the allocations of the
Christoph Lameter672bba32007-05-09 02:32:39 -07003048 * struct kmem_cache_node's. There is special bootstrap code in
Christoph Lameter81819f02007-05-06 14:49:36 -07003049 * kmem_cache_open for slab_state == DOWN.
3050 */
3051 create_kmalloc_cache(&kmalloc_caches[0], "kmem_cache_node",
Pekka Enberg83b519e2009-06-10 19:40:04 +03003052 sizeof(struct kmem_cache_node), GFP_NOWAIT);
Christoph Lameter8ffa6872007-05-31 00:40:51 -07003053 kmalloc_caches[0].refcount = -1;
Christoph Lameter4b356be2007-06-16 10:16:13 -07003054 caches++;
Yasunori Gotob9049e22007-10-21 16:41:37 -07003055
Nadia Derbey0c40ba42008-04-29 01:00:41 -07003056 hotplug_memory_notifier(slab_memory_callback, SLAB_CALLBACK_PRI);
Christoph Lameter81819f02007-05-06 14:49:36 -07003057#endif
3058
3059 /* Able to allocate the per node structures */
3060 slab_state = PARTIAL;
3061
3062 /* Caches that are not of the two-to-the-power-of size */
Aaro Koskinenacdfcd02009-08-28 14:28:54 +03003063 if (KMALLOC_MIN_SIZE <= 32) {
Christoph Lameter4b356be2007-06-16 10:16:13 -07003064 create_kmalloc_cache(&kmalloc_caches[1],
Pekka Enberg83b519e2009-06-10 19:40:04 +03003065 "kmalloc-96", 96, GFP_NOWAIT);
Christoph Lameter4b356be2007-06-16 10:16:13 -07003066 caches++;
Aaro Koskinenacdfcd02009-08-28 14:28:54 +03003067 }
3068 if (KMALLOC_MIN_SIZE <= 64) {
Christoph Lameter4b356be2007-06-16 10:16:13 -07003069 create_kmalloc_cache(&kmalloc_caches[2],
Pekka Enberg83b519e2009-06-10 19:40:04 +03003070 "kmalloc-192", 192, GFP_NOWAIT);
Christoph Lameter4b356be2007-06-16 10:16:13 -07003071 caches++;
3072 }
Christoph Lameter81819f02007-05-06 14:49:36 -07003073
Christoph Lameterffadd4d2009-02-17 12:05:07 -05003074 for (i = KMALLOC_SHIFT_LOW; i < SLUB_PAGE_SHIFT; i++) {
Christoph Lameter81819f02007-05-06 14:49:36 -07003075 create_kmalloc_cache(&kmalloc_caches[i],
Pekka Enberg83b519e2009-06-10 19:40:04 +03003076 "kmalloc", 1 << i, GFP_NOWAIT);
Christoph Lameter4b356be2007-06-16 10:16:13 -07003077 caches++;
3078 }
Christoph Lameter81819f02007-05-06 14:49:36 -07003079
Christoph Lameterf1b26332007-07-17 04:03:26 -07003080
3081 /*
3082 * Patch up the size_index table if we have strange large alignment
3083 * requirements for the kmalloc array. This is only the case for
Christoph Lameter6446faa2008-02-15 23:45:26 -08003084 * MIPS it seems. The standard arches will not generate any code here.
Christoph Lameterf1b26332007-07-17 04:03:26 -07003085 *
3086 * Largest permitted alignment is 256 bytes due to the way we
3087 * handle the index determination for the smaller caches.
3088 *
3089 * Make sure that nothing crazy happens if someone starts tinkering
3090 * around with ARCH_KMALLOC_MINALIGN
3091 */
3092 BUILD_BUG_ON(KMALLOC_MIN_SIZE > 256 ||
3093 (KMALLOC_MIN_SIZE & (KMALLOC_MIN_SIZE - 1)));
3094
Aaro Koskinenacdfcd02009-08-28 14:28:54 +03003095 for (i = 8; i < KMALLOC_MIN_SIZE; i += 8) {
3096 int elem = size_index_elem(i);
3097 if (elem >= ARRAY_SIZE(size_index))
3098 break;
3099 size_index[elem] = KMALLOC_SHIFT_LOW;
3100 }
Christoph Lameterf1b26332007-07-17 04:03:26 -07003101
Aaro Koskinenacdfcd02009-08-28 14:28:54 +03003102 if (KMALLOC_MIN_SIZE == 64) {
3103 /*
3104 * The 96 byte size cache is not used if the alignment
3105 * is 64 byte.
3106 */
3107 for (i = 64 + 8; i <= 96; i += 8)
3108 size_index[size_index_elem(i)] = 7;
3109 } else if (KMALLOC_MIN_SIZE == 128) {
Christoph Lameter41d54d32008-07-03 09:14:26 -05003110 /*
3111 * The 192 byte sized cache is not used if the alignment
3112 * is 128 byte. Redirect kmalloc to use the 256 byte cache
3113 * instead.
3114 */
3115 for (i = 128 + 8; i <= 192; i += 8)
Aaro Koskinenacdfcd02009-08-28 14:28:54 +03003116 size_index[size_index_elem(i)] = 8;
Christoph Lameter41d54d32008-07-03 09:14:26 -05003117 }
3118
Christoph Lameter81819f02007-05-06 14:49:36 -07003119 slab_state = UP;
3120
3121 /* Provide the correct kmalloc names now that the caches are up */
Christoph Lameterd7278bd2010-07-09 14:07:12 -05003122 for (i = KMALLOC_SHIFT_LOW; i < SLUB_PAGE_SHIFT; i++) {
3123 char *s = kasprintf(GFP_NOWAIT, "kmalloc-%d", 1 << i);
3124
3125 BUG_ON(!s);
3126 kmalloc_caches[i].name = s;
3127 }
Christoph Lameter81819f02007-05-06 14:49:36 -07003128
3129#ifdef CONFIG_SMP
3130 register_cpu_notifier(&slab_notifier);
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06003131#endif
3132#ifdef CONFIG_NUMA
3133 kmem_size = offsetof(struct kmem_cache, node) +
3134 nr_node_ids * sizeof(struct kmem_cache_node *);
Christoph Lameter4c93c3552007-10-16 01:26:08 -07003135#else
3136 kmem_size = sizeof(struct kmem_cache);
Christoph Lameter81819f02007-05-06 14:49:36 -07003137#endif
3138
Ingo Molnar3adbefe2008-02-05 17:57:39 -08003139 printk(KERN_INFO
3140 "SLUB: Genslabs=%d, HWalign=%d, Order=%d-%d, MinObjects=%d,"
Christoph Lameter4b356be2007-06-16 10:16:13 -07003141 " CPUs=%d, Nodes=%d\n",
3142 caches, cache_line_size(),
Christoph Lameter81819f02007-05-06 14:49:36 -07003143 slub_min_order, slub_max_order, slub_min_objects,
3144 nr_cpu_ids, nr_node_ids);
3145}
3146
Pekka Enberg7e85ee02009-06-12 14:03:06 +03003147void __init kmem_cache_init_late(void)
3148{
Pekka Enberg7e85ee02009-06-12 14:03:06 +03003149}
3150
Christoph Lameter81819f02007-05-06 14:49:36 -07003151/*
3152 * Find a mergeable slab cache
3153 */
3154static int slab_unmergeable(struct kmem_cache *s)
3155{
3156 if (slub_nomerge || (s->flags & SLUB_NEVER_MERGE))
3157 return 1;
3158
Christoph Lameterc59def92007-05-16 22:10:50 -07003159 if (s->ctor)
Christoph Lameter81819f02007-05-06 14:49:36 -07003160 return 1;
3161
Christoph Lameter8ffa6872007-05-31 00:40:51 -07003162 /*
3163 * We may have set a slab to be unmergeable during bootstrap.
3164 */
3165 if (s->refcount < 0)
3166 return 1;
3167
Christoph Lameter81819f02007-05-06 14:49:36 -07003168 return 0;
3169}
3170
3171static struct kmem_cache *find_mergeable(size_t size,
Christoph Lameterba0268a2007-09-11 15:24:11 -07003172 size_t align, unsigned long flags, const char *name,
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07003173 void (*ctor)(void *))
Christoph Lameter81819f02007-05-06 14:49:36 -07003174{
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07003175 struct kmem_cache *s;
Christoph Lameter81819f02007-05-06 14:49:36 -07003176
3177 if (slub_nomerge || (flags & SLUB_NEVER_MERGE))
3178 return NULL;
3179
Christoph Lameterc59def92007-05-16 22:10:50 -07003180 if (ctor)
Christoph Lameter81819f02007-05-06 14:49:36 -07003181 return NULL;
3182
3183 size = ALIGN(size, sizeof(void *));
3184 align = calculate_alignment(flags, align, size);
3185 size = ALIGN(size, align);
Christoph Lameterba0268a2007-09-11 15:24:11 -07003186 flags = kmem_cache_flags(size, flags, name, NULL);
Christoph Lameter81819f02007-05-06 14:49:36 -07003187
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07003188 list_for_each_entry(s, &slab_caches, list) {
Christoph Lameter81819f02007-05-06 14:49:36 -07003189 if (slab_unmergeable(s))
3190 continue;
3191
3192 if (size > s->size)
3193 continue;
3194
Christoph Lameterba0268a2007-09-11 15:24:11 -07003195 if ((flags & SLUB_MERGE_SAME) != (s->flags & SLUB_MERGE_SAME))
Christoph Lameter81819f02007-05-06 14:49:36 -07003196 continue;
3197 /*
3198 * Check if alignment is compatible.
3199 * Courtesy of Adrian Drzewiecki
3200 */
Pekka Enberg06428782008-01-07 23:20:27 -08003201 if ((s->size & ~(align - 1)) != s->size)
Christoph Lameter81819f02007-05-06 14:49:36 -07003202 continue;
3203
3204 if (s->size - size >= sizeof(void *))
3205 continue;
3206
3207 return s;
3208 }
3209 return NULL;
3210}
3211
3212struct kmem_cache *kmem_cache_create(const char *name, size_t size,
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07003213 size_t align, unsigned long flags, void (*ctor)(void *))
Christoph Lameter81819f02007-05-06 14:49:36 -07003214{
3215 struct kmem_cache *s;
3216
Benjamin Herrenschmidtfe1ff492009-09-21 17:02:30 -07003217 if (WARN_ON(!name))
3218 return NULL;
3219
Christoph Lameter81819f02007-05-06 14:49:36 -07003220 down_write(&slub_lock);
Christoph Lameterba0268a2007-09-11 15:24:11 -07003221 s = find_mergeable(size, align, flags, name, ctor);
Christoph Lameter81819f02007-05-06 14:49:36 -07003222 if (s) {
3223 s->refcount++;
3224 /*
3225 * Adjust the object sizes so that we clear
3226 * the complete object on kzalloc.
3227 */
3228 s->objsize = max(s->objsize, (int)size);
3229 s->inuse = max_t(int, s->inuse, ALIGN(size, sizeof(void *)));
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07003230 up_write(&slub_lock);
Christoph Lameter6446faa2008-02-15 23:45:26 -08003231
David Rientjes7b8f3b62008-12-17 22:09:46 -08003232 if (sysfs_slab_alias(s, name)) {
3233 down_write(&slub_lock);
3234 s->refcount--;
3235 up_write(&slub_lock);
Christoph Lameter81819f02007-05-06 14:49:36 -07003236 goto err;
David Rientjes7b8f3b62008-12-17 22:09:46 -08003237 }
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07003238 return s;
3239 }
Christoph Lameter6446faa2008-02-15 23:45:26 -08003240
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07003241 s = kmalloc(kmem_size, GFP_KERNEL);
3242 if (s) {
3243 if (kmem_cache_open(s, GFP_KERNEL, name,
Christoph Lameterc59def92007-05-16 22:10:50 -07003244 size, align, flags, ctor)) {
Christoph Lameter81819f02007-05-06 14:49:36 -07003245 list_add(&s->list, &slab_caches);
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07003246 up_write(&slub_lock);
David Rientjes7b8f3b62008-12-17 22:09:46 -08003247 if (sysfs_slab_add(s)) {
3248 down_write(&slub_lock);
3249 list_del(&s->list);
3250 up_write(&slub_lock);
3251 kfree(s);
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07003252 goto err;
David Rientjes7b8f3b62008-12-17 22:09:46 -08003253 }
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07003254 return s;
3255 }
3256 kfree(s);
Christoph Lameter81819f02007-05-06 14:49:36 -07003257 }
3258 up_write(&slub_lock);
Christoph Lameter81819f02007-05-06 14:49:36 -07003259
3260err:
Christoph Lameter81819f02007-05-06 14:49:36 -07003261 if (flags & SLAB_PANIC)
3262 panic("Cannot create slabcache %s\n", name);
3263 else
3264 s = NULL;
3265 return s;
3266}
3267EXPORT_SYMBOL(kmem_cache_create);
3268
Christoph Lameter81819f02007-05-06 14:49:36 -07003269#ifdef CONFIG_SMP
Christoph Lameter27390bc2007-06-01 00:47:09 -07003270/*
Christoph Lameter672bba32007-05-09 02:32:39 -07003271 * Use the cpu notifier to insure that the cpu slabs are flushed when
3272 * necessary.
Christoph Lameter81819f02007-05-06 14:49:36 -07003273 */
3274static int __cpuinit slab_cpuup_callback(struct notifier_block *nfb,
3275 unsigned long action, void *hcpu)
3276{
3277 long cpu = (long)hcpu;
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07003278 struct kmem_cache *s;
3279 unsigned long flags;
Christoph Lameter81819f02007-05-06 14:49:36 -07003280
3281 switch (action) {
3282 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07003283 case CPU_UP_CANCELED_FROZEN:
Christoph Lameter81819f02007-05-06 14:49:36 -07003284 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07003285 case CPU_DEAD_FROZEN:
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07003286 down_read(&slub_lock);
3287 list_for_each_entry(s, &slab_caches, list) {
3288 local_irq_save(flags);
3289 __flush_cpu_slab(s, cpu);
3290 local_irq_restore(flags);
3291 }
3292 up_read(&slub_lock);
Christoph Lameter81819f02007-05-06 14:49:36 -07003293 break;
3294 default:
3295 break;
3296 }
3297 return NOTIFY_OK;
3298}
3299
Pekka Enberg06428782008-01-07 23:20:27 -08003300static struct notifier_block __cpuinitdata slab_notifier = {
Ingo Molnar3adbefe2008-02-05 17:57:39 -08003301 .notifier_call = slab_cpuup_callback
Pekka Enberg06428782008-01-07 23:20:27 -08003302};
Christoph Lameter81819f02007-05-06 14:49:36 -07003303
3304#endif
3305
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003306void *__kmalloc_track_caller(size_t size, gfp_t gfpflags, unsigned long caller)
Christoph Lameter81819f02007-05-06 14:49:36 -07003307{
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003308 struct kmem_cache *s;
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03003309 void *ret;
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003310
Christoph Lameterffadd4d2009-02-17 12:05:07 -05003311 if (unlikely(size > SLUB_MAX_SIZE))
Pekka Enbergeada35e2008-02-11 22:47:46 +02003312 return kmalloc_large(size, gfpflags);
3313
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003314 s = get_slab(size, gfpflags);
Christoph Lameter81819f02007-05-06 14:49:36 -07003315
Satyam Sharma2408c552007-10-16 01:24:44 -07003316 if (unlikely(ZERO_OR_NULL_PTR(s)))
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003317 return s;
Christoph Lameter81819f02007-05-06 14:49:36 -07003318
Christoph Lameter2154a332010-07-09 14:07:10 -05003319 ret = slab_alloc(s, gfpflags, NUMA_NO_NODE, caller);
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03003320
3321 /* Honor the call site pointer we recieved. */
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003322 trace_kmalloc(caller, ret, size, s->size, gfpflags);
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03003323
3324 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07003325}
3326
3327void *__kmalloc_node_track_caller(size_t size, gfp_t gfpflags,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003328 int node, unsigned long caller)
Christoph Lameter81819f02007-05-06 14:49:36 -07003329{
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003330 struct kmem_cache *s;
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03003331 void *ret;
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003332
Xiaotian Fengd3e14aa2010-04-08 17:26:44 +08003333 if (unlikely(size > SLUB_MAX_SIZE)) {
3334 ret = kmalloc_large_node(size, gfpflags, node);
3335
3336 trace_kmalloc_node(caller, ret,
3337 size, PAGE_SIZE << get_order(size),
3338 gfpflags, node);
3339
3340 return ret;
3341 }
Pekka Enbergeada35e2008-02-11 22:47:46 +02003342
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003343 s = get_slab(size, gfpflags);
Christoph Lameter81819f02007-05-06 14:49:36 -07003344
Satyam Sharma2408c552007-10-16 01:24:44 -07003345 if (unlikely(ZERO_OR_NULL_PTR(s)))
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003346 return s;
Christoph Lameter81819f02007-05-06 14:49:36 -07003347
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03003348 ret = slab_alloc(s, gfpflags, node, caller);
3349
3350 /* Honor the call site pointer we recieved. */
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003351 trace_kmalloc_node(caller, ret, size, s->size, gfpflags, node);
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03003352
3353 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07003354}
3355
Christoph Lameterf6acb632008-04-29 16:16:06 -07003356#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter205ab992008-04-14 19:11:40 +03003357static int count_inuse(struct page *page)
3358{
3359 return page->inuse;
3360}
3361
3362static int count_total(struct page *page)
3363{
3364 return page->objects;
3365}
3366
Christoph Lameter434e2452007-07-17 04:03:30 -07003367static int validate_slab(struct kmem_cache *s, struct page *page,
3368 unsigned long *map)
Christoph Lameter53e15af2007-05-06 14:49:43 -07003369{
3370 void *p;
Christoph Lametera973e9d2008-03-01 13:40:44 -08003371 void *addr = page_address(page);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003372
3373 if (!check_slab(s, page) ||
3374 !on_freelist(s, page, NULL))
3375 return 0;
3376
3377 /* Now we know that a valid freelist exists */
Christoph Lameter39b26462008-04-14 19:11:30 +03003378 bitmap_zero(map, page->objects);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003379
Christoph Lameter7656c722007-05-09 02:32:40 -07003380 for_each_free_object(p, s, page->freelist) {
3381 set_bit(slab_index(p, s, addr), map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003382 if (!check_object(s, page, p, 0))
3383 return 0;
3384 }
3385
Christoph Lameter224a88b2008-04-14 19:11:31 +03003386 for_each_object(p, s, addr, page->objects)
Christoph Lameter7656c722007-05-09 02:32:40 -07003387 if (!test_bit(slab_index(p, s, addr), map))
Christoph Lameter53e15af2007-05-06 14:49:43 -07003388 if (!check_object(s, page, p, 1))
3389 return 0;
3390 return 1;
3391}
3392
Christoph Lameter434e2452007-07-17 04:03:30 -07003393static void validate_slab_slab(struct kmem_cache *s, struct page *page,
3394 unsigned long *map)
Christoph Lameter53e15af2007-05-06 14:49:43 -07003395{
3396 if (slab_trylock(page)) {
Christoph Lameter434e2452007-07-17 04:03:30 -07003397 validate_slab(s, page, map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003398 slab_unlock(page);
3399 } else
3400 printk(KERN_INFO "SLUB %s: Skipped busy slab 0x%p\n",
3401 s->name, page);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003402}
3403
Christoph Lameter434e2452007-07-17 04:03:30 -07003404static int validate_slab_node(struct kmem_cache *s,
3405 struct kmem_cache_node *n, unsigned long *map)
Christoph Lameter53e15af2007-05-06 14:49:43 -07003406{
3407 unsigned long count = 0;
3408 struct page *page;
3409 unsigned long flags;
3410
3411 spin_lock_irqsave(&n->list_lock, flags);
3412
3413 list_for_each_entry(page, &n->partial, lru) {
Christoph Lameter434e2452007-07-17 04:03:30 -07003414 validate_slab_slab(s, page, map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003415 count++;
3416 }
3417 if (count != n->nr_partial)
3418 printk(KERN_ERR "SLUB %s: %ld partial slabs counted but "
3419 "counter=%ld\n", s->name, count, n->nr_partial);
3420
3421 if (!(s->flags & SLAB_STORE_USER))
3422 goto out;
3423
3424 list_for_each_entry(page, &n->full, lru) {
Christoph Lameter434e2452007-07-17 04:03:30 -07003425 validate_slab_slab(s, page, map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003426 count++;
3427 }
3428 if (count != atomic_long_read(&n->nr_slabs))
3429 printk(KERN_ERR "SLUB: %s %ld slabs counted but "
3430 "counter=%ld\n", s->name, count,
3431 atomic_long_read(&n->nr_slabs));
3432
3433out:
3434 spin_unlock_irqrestore(&n->list_lock, flags);
3435 return count;
3436}
3437
Christoph Lameter434e2452007-07-17 04:03:30 -07003438static long validate_slab_cache(struct kmem_cache *s)
Christoph Lameter53e15af2007-05-06 14:49:43 -07003439{
3440 int node;
3441 unsigned long count = 0;
Christoph Lameter205ab992008-04-14 19:11:40 +03003442 unsigned long *map = kmalloc(BITS_TO_LONGS(oo_objects(s->max)) *
Christoph Lameter434e2452007-07-17 04:03:30 -07003443 sizeof(unsigned long), GFP_KERNEL);
3444
3445 if (!map)
3446 return -ENOMEM;
Christoph Lameter53e15af2007-05-06 14:49:43 -07003447
3448 flush_all(s);
Christoph Lameterf64dc582007-10-16 01:25:33 -07003449 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter53e15af2007-05-06 14:49:43 -07003450 struct kmem_cache_node *n = get_node(s, node);
3451
Christoph Lameter434e2452007-07-17 04:03:30 -07003452 count += validate_slab_node(s, n, map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003453 }
Christoph Lameter434e2452007-07-17 04:03:30 -07003454 kfree(map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003455 return count;
3456}
3457
Christoph Lameterb3459702007-05-09 02:32:41 -07003458#ifdef SLUB_RESILIENCY_TEST
3459static void resiliency_test(void)
3460{
3461 u8 *p;
3462
3463 printk(KERN_ERR "SLUB resiliency testing\n");
3464 printk(KERN_ERR "-----------------------\n");
3465 printk(KERN_ERR "A. Corruption after allocation\n");
3466
3467 p = kzalloc(16, GFP_KERNEL);
3468 p[16] = 0x12;
3469 printk(KERN_ERR "\n1. kmalloc-16: Clobber Redzone/next pointer"
3470 " 0x12->0x%p\n\n", p + 16);
3471
3472 validate_slab_cache(kmalloc_caches + 4);
3473
3474 /* Hmmm... The next two are dangerous */
3475 p = kzalloc(32, GFP_KERNEL);
3476 p[32 + sizeof(void *)] = 0x34;
3477 printk(KERN_ERR "\n2. kmalloc-32: Clobber next pointer/next slab"
Ingo Molnar3adbefe2008-02-05 17:57:39 -08003478 " 0x34 -> -0x%p\n", p);
3479 printk(KERN_ERR
3480 "If allocated object is overwritten then not detectable\n\n");
Christoph Lameterb3459702007-05-09 02:32:41 -07003481
3482 validate_slab_cache(kmalloc_caches + 5);
3483 p = kzalloc(64, GFP_KERNEL);
3484 p += 64 + (get_cycles() & 0xff) * sizeof(void *);
3485 *p = 0x56;
3486 printk(KERN_ERR "\n3. kmalloc-64: corrupting random byte 0x56->0x%p\n",
3487 p);
Ingo Molnar3adbefe2008-02-05 17:57:39 -08003488 printk(KERN_ERR
3489 "If allocated object is overwritten then not detectable\n\n");
Christoph Lameterb3459702007-05-09 02:32:41 -07003490 validate_slab_cache(kmalloc_caches + 6);
3491
3492 printk(KERN_ERR "\nB. Corruption after free\n");
3493 p = kzalloc(128, GFP_KERNEL);
3494 kfree(p);
3495 *p = 0x78;
3496 printk(KERN_ERR "1. kmalloc-128: Clobber first word 0x78->0x%p\n\n", p);
3497 validate_slab_cache(kmalloc_caches + 7);
3498
3499 p = kzalloc(256, GFP_KERNEL);
3500 kfree(p);
3501 p[50] = 0x9a;
Ingo Molnar3adbefe2008-02-05 17:57:39 -08003502 printk(KERN_ERR "\n2. kmalloc-256: Clobber 50th byte 0x9a->0x%p\n\n",
3503 p);
Christoph Lameterb3459702007-05-09 02:32:41 -07003504 validate_slab_cache(kmalloc_caches + 8);
3505
3506 p = kzalloc(512, GFP_KERNEL);
3507 kfree(p);
3508 p[512] = 0xab;
3509 printk(KERN_ERR "\n3. kmalloc-512: Clobber redzone 0xab->0x%p\n\n", p);
3510 validate_slab_cache(kmalloc_caches + 9);
3511}
3512#else
3513static void resiliency_test(void) {};
3514#endif
3515
Christoph Lameter88a420e2007-05-06 14:49:45 -07003516/*
Christoph Lameter672bba32007-05-09 02:32:39 -07003517 * Generate lists of code addresses where slabcache objects are allocated
Christoph Lameter88a420e2007-05-06 14:49:45 -07003518 * and freed.
3519 */
3520
3521struct location {
3522 unsigned long count;
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003523 unsigned long addr;
Christoph Lameter45edfa52007-05-09 02:32:45 -07003524 long long sum_time;
3525 long min_time;
3526 long max_time;
3527 long min_pid;
3528 long max_pid;
Rusty Russell174596a2009-01-01 10:12:29 +10303529 DECLARE_BITMAP(cpus, NR_CPUS);
Christoph Lameter45edfa52007-05-09 02:32:45 -07003530 nodemask_t nodes;
Christoph Lameter88a420e2007-05-06 14:49:45 -07003531};
3532
3533struct loc_track {
3534 unsigned long max;
3535 unsigned long count;
3536 struct location *loc;
3537};
3538
3539static void free_loc_track(struct loc_track *t)
3540{
3541 if (t->max)
3542 free_pages((unsigned long)t->loc,
3543 get_order(sizeof(struct location) * t->max));
3544}
3545
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003546static int alloc_loc_track(struct loc_track *t, unsigned long max, gfp_t flags)
Christoph Lameter88a420e2007-05-06 14:49:45 -07003547{
3548 struct location *l;
3549 int order;
3550
Christoph Lameter88a420e2007-05-06 14:49:45 -07003551 order = get_order(sizeof(struct location) * max);
3552
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003553 l = (void *)__get_free_pages(flags, order);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003554 if (!l)
3555 return 0;
3556
3557 if (t->count) {
3558 memcpy(l, t->loc, sizeof(struct location) * t->count);
3559 free_loc_track(t);
3560 }
3561 t->max = max;
3562 t->loc = l;
3563 return 1;
3564}
3565
3566static int add_location(struct loc_track *t, struct kmem_cache *s,
Christoph Lameter45edfa52007-05-09 02:32:45 -07003567 const struct track *track)
Christoph Lameter88a420e2007-05-06 14:49:45 -07003568{
3569 long start, end, pos;
3570 struct location *l;
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003571 unsigned long caddr;
Christoph Lameter45edfa52007-05-09 02:32:45 -07003572 unsigned long age = jiffies - track->when;
Christoph Lameter88a420e2007-05-06 14:49:45 -07003573
3574 start = -1;
3575 end = t->count;
3576
3577 for ( ; ; ) {
3578 pos = start + (end - start + 1) / 2;
3579
3580 /*
3581 * There is nothing at "end". If we end up there
3582 * we need to add something to before end.
3583 */
3584 if (pos == end)
3585 break;
3586
3587 caddr = t->loc[pos].addr;
Christoph Lameter45edfa52007-05-09 02:32:45 -07003588 if (track->addr == caddr) {
3589
3590 l = &t->loc[pos];
3591 l->count++;
3592 if (track->when) {
3593 l->sum_time += age;
3594 if (age < l->min_time)
3595 l->min_time = age;
3596 if (age > l->max_time)
3597 l->max_time = age;
3598
3599 if (track->pid < l->min_pid)
3600 l->min_pid = track->pid;
3601 if (track->pid > l->max_pid)
3602 l->max_pid = track->pid;
3603
Rusty Russell174596a2009-01-01 10:12:29 +10303604 cpumask_set_cpu(track->cpu,
3605 to_cpumask(l->cpus));
Christoph Lameter45edfa52007-05-09 02:32:45 -07003606 }
3607 node_set(page_to_nid(virt_to_page(track)), l->nodes);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003608 return 1;
3609 }
3610
Christoph Lameter45edfa52007-05-09 02:32:45 -07003611 if (track->addr < caddr)
Christoph Lameter88a420e2007-05-06 14:49:45 -07003612 end = pos;
3613 else
3614 start = pos;
3615 }
3616
3617 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07003618 * Not found. Insert new tracking element.
Christoph Lameter88a420e2007-05-06 14:49:45 -07003619 */
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003620 if (t->count >= t->max && !alloc_loc_track(t, 2 * t->max, GFP_ATOMIC))
Christoph Lameter88a420e2007-05-06 14:49:45 -07003621 return 0;
3622
3623 l = t->loc + pos;
3624 if (pos < t->count)
3625 memmove(l + 1, l,
3626 (t->count - pos) * sizeof(struct location));
3627 t->count++;
3628 l->count = 1;
Christoph Lameter45edfa52007-05-09 02:32:45 -07003629 l->addr = track->addr;
3630 l->sum_time = age;
3631 l->min_time = age;
3632 l->max_time = age;
3633 l->min_pid = track->pid;
3634 l->max_pid = track->pid;
Rusty Russell174596a2009-01-01 10:12:29 +10303635 cpumask_clear(to_cpumask(l->cpus));
3636 cpumask_set_cpu(track->cpu, to_cpumask(l->cpus));
Christoph Lameter45edfa52007-05-09 02:32:45 -07003637 nodes_clear(l->nodes);
3638 node_set(page_to_nid(virt_to_page(track)), l->nodes);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003639 return 1;
3640}
3641
3642static void process_slab(struct loc_track *t, struct kmem_cache *s,
Eric Dumazetbbd7d572010-03-24 22:25:47 +01003643 struct page *page, enum track_item alloc,
3644 long *map)
Christoph Lameter88a420e2007-05-06 14:49:45 -07003645{
Christoph Lametera973e9d2008-03-01 13:40:44 -08003646 void *addr = page_address(page);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003647 void *p;
3648
Christoph Lameter39b26462008-04-14 19:11:30 +03003649 bitmap_zero(map, page->objects);
Christoph Lameter7656c722007-05-09 02:32:40 -07003650 for_each_free_object(p, s, page->freelist)
3651 set_bit(slab_index(p, s, addr), map);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003652
Christoph Lameter224a88b2008-04-14 19:11:31 +03003653 for_each_object(p, s, addr, page->objects)
Christoph Lameter45edfa52007-05-09 02:32:45 -07003654 if (!test_bit(slab_index(p, s, addr), map))
3655 add_location(t, s, get_track(s, p, alloc));
Christoph Lameter88a420e2007-05-06 14:49:45 -07003656}
3657
3658static int list_locations(struct kmem_cache *s, char *buf,
3659 enum track_item alloc)
3660{
Harvey Harrisone374d482008-01-31 15:20:50 -08003661 int len = 0;
Christoph Lameter88a420e2007-05-06 14:49:45 -07003662 unsigned long i;
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003663 struct loc_track t = { 0, 0, NULL };
Christoph Lameter88a420e2007-05-06 14:49:45 -07003664 int node;
Eric Dumazetbbd7d572010-03-24 22:25:47 +01003665 unsigned long *map = kmalloc(BITS_TO_LONGS(oo_objects(s->max)) *
3666 sizeof(unsigned long), GFP_KERNEL);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003667
Eric Dumazetbbd7d572010-03-24 22:25:47 +01003668 if (!map || !alloc_loc_track(&t, PAGE_SIZE / sizeof(struct location),
3669 GFP_TEMPORARY)) {
3670 kfree(map);
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003671 return sprintf(buf, "Out of memory\n");
Eric Dumazetbbd7d572010-03-24 22:25:47 +01003672 }
Christoph Lameter88a420e2007-05-06 14:49:45 -07003673 /* Push back cpu slabs */
3674 flush_all(s);
3675
Christoph Lameterf64dc582007-10-16 01:25:33 -07003676 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter88a420e2007-05-06 14:49:45 -07003677 struct kmem_cache_node *n = get_node(s, node);
3678 unsigned long flags;
3679 struct page *page;
3680
Christoph Lameter9e869432007-08-22 14:01:56 -07003681 if (!atomic_long_read(&n->nr_slabs))
Christoph Lameter88a420e2007-05-06 14:49:45 -07003682 continue;
3683
3684 spin_lock_irqsave(&n->list_lock, flags);
3685 list_for_each_entry(page, &n->partial, lru)
Eric Dumazetbbd7d572010-03-24 22:25:47 +01003686 process_slab(&t, s, page, alloc, map);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003687 list_for_each_entry(page, &n->full, lru)
Eric Dumazetbbd7d572010-03-24 22:25:47 +01003688 process_slab(&t, s, page, alloc, map);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003689 spin_unlock_irqrestore(&n->list_lock, flags);
3690 }
3691
3692 for (i = 0; i < t.count; i++) {
Christoph Lameter45edfa52007-05-09 02:32:45 -07003693 struct location *l = &t.loc[i];
Christoph Lameter88a420e2007-05-06 14:49:45 -07003694
Hugh Dickins9c246242008-12-09 13:14:27 -08003695 if (len > PAGE_SIZE - KSYM_SYMBOL_LEN - 100)
Christoph Lameter88a420e2007-05-06 14:49:45 -07003696 break;
Harvey Harrisone374d482008-01-31 15:20:50 -08003697 len += sprintf(buf + len, "%7ld ", l->count);
Christoph Lameter45edfa52007-05-09 02:32:45 -07003698
3699 if (l->addr)
Harvey Harrisone374d482008-01-31 15:20:50 -08003700 len += sprint_symbol(buf + len, (unsigned long)l->addr);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003701 else
Harvey Harrisone374d482008-01-31 15:20:50 -08003702 len += sprintf(buf + len, "<not-available>");
Christoph Lameter45edfa52007-05-09 02:32:45 -07003703
3704 if (l->sum_time != l->min_time) {
Harvey Harrisone374d482008-01-31 15:20:50 -08003705 len += sprintf(buf + len, " age=%ld/%ld/%ld",
Roman Zippelf8bd2252008-05-01 04:34:31 -07003706 l->min_time,
3707 (long)div_u64(l->sum_time, l->count),
3708 l->max_time);
Christoph Lameter45edfa52007-05-09 02:32:45 -07003709 } else
Harvey Harrisone374d482008-01-31 15:20:50 -08003710 len += sprintf(buf + len, " age=%ld",
Christoph Lameter45edfa52007-05-09 02:32:45 -07003711 l->min_time);
3712
3713 if (l->min_pid != l->max_pid)
Harvey Harrisone374d482008-01-31 15:20:50 -08003714 len += sprintf(buf + len, " pid=%ld-%ld",
Christoph Lameter45edfa52007-05-09 02:32:45 -07003715 l->min_pid, l->max_pid);
3716 else
Harvey Harrisone374d482008-01-31 15:20:50 -08003717 len += sprintf(buf + len, " pid=%ld",
Christoph Lameter45edfa52007-05-09 02:32:45 -07003718 l->min_pid);
3719
Rusty Russell174596a2009-01-01 10:12:29 +10303720 if (num_online_cpus() > 1 &&
3721 !cpumask_empty(to_cpumask(l->cpus)) &&
Harvey Harrisone374d482008-01-31 15:20:50 -08003722 len < PAGE_SIZE - 60) {
3723 len += sprintf(buf + len, " cpus=");
3724 len += cpulist_scnprintf(buf + len, PAGE_SIZE - len - 50,
Rusty Russell174596a2009-01-01 10:12:29 +10303725 to_cpumask(l->cpus));
Christoph Lameter45edfa52007-05-09 02:32:45 -07003726 }
3727
Christoph Lameter62bc62a2009-06-16 15:32:15 -07003728 if (nr_online_nodes > 1 && !nodes_empty(l->nodes) &&
Harvey Harrisone374d482008-01-31 15:20:50 -08003729 len < PAGE_SIZE - 60) {
3730 len += sprintf(buf + len, " nodes=");
3731 len += nodelist_scnprintf(buf + len, PAGE_SIZE - len - 50,
Christoph Lameter45edfa52007-05-09 02:32:45 -07003732 l->nodes);
3733 }
3734
Harvey Harrisone374d482008-01-31 15:20:50 -08003735 len += sprintf(buf + len, "\n");
Christoph Lameter88a420e2007-05-06 14:49:45 -07003736 }
3737
3738 free_loc_track(&t);
Eric Dumazetbbd7d572010-03-24 22:25:47 +01003739 kfree(map);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003740 if (!t.count)
Harvey Harrisone374d482008-01-31 15:20:50 -08003741 len += sprintf(buf, "No data\n");
3742 return len;
Christoph Lameter88a420e2007-05-06 14:49:45 -07003743}
3744
Christoph Lameter81819f02007-05-06 14:49:36 -07003745enum slab_stat_type {
Christoph Lameter205ab992008-04-14 19:11:40 +03003746 SL_ALL, /* All slabs */
3747 SL_PARTIAL, /* Only partially allocated slabs */
3748 SL_CPU, /* Only slabs used for cpu caches */
3749 SL_OBJECTS, /* Determine allocated objects not slabs */
3750 SL_TOTAL /* Determine object capacity not slabs */
Christoph Lameter81819f02007-05-06 14:49:36 -07003751};
3752
Christoph Lameter205ab992008-04-14 19:11:40 +03003753#define SO_ALL (1 << SL_ALL)
Christoph Lameter81819f02007-05-06 14:49:36 -07003754#define SO_PARTIAL (1 << SL_PARTIAL)
3755#define SO_CPU (1 << SL_CPU)
3756#define SO_OBJECTS (1 << SL_OBJECTS)
Christoph Lameter205ab992008-04-14 19:11:40 +03003757#define SO_TOTAL (1 << SL_TOTAL)
Christoph Lameter81819f02007-05-06 14:49:36 -07003758
Cyrill Gorcunov62e5c4b2008-03-02 23:28:24 +03003759static ssize_t show_slab_objects(struct kmem_cache *s,
3760 char *buf, unsigned long flags)
Christoph Lameter81819f02007-05-06 14:49:36 -07003761{
3762 unsigned long total = 0;
Christoph Lameter81819f02007-05-06 14:49:36 -07003763 int node;
3764 int x;
3765 unsigned long *nodes;
3766 unsigned long *per_cpu;
3767
3768 nodes = kzalloc(2 * sizeof(unsigned long) * nr_node_ids, GFP_KERNEL);
Cyrill Gorcunov62e5c4b2008-03-02 23:28:24 +03003769 if (!nodes)
3770 return -ENOMEM;
Christoph Lameter81819f02007-05-06 14:49:36 -07003771 per_cpu = nodes + nr_node_ids;
3772
Christoph Lameter205ab992008-04-14 19:11:40 +03003773 if (flags & SO_CPU) {
3774 int cpu;
Christoph Lameter81819f02007-05-06 14:49:36 -07003775
Christoph Lameter205ab992008-04-14 19:11:40 +03003776 for_each_possible_cpu(cpu) {
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06003777 struct kmem_cache_cpu *c = per_cpu_ptr(s->cpu_slab, cpu);
Christoph Lameterdfb4f092007-10-16 01:26:05 -07003778
Christoph Lameter205ab992008-04-14 19:11:40 +03003779 if (!c || c->node < 0)
3780 continue;
3781
3782 if (c->page) {
3783 if (flags & SO_TOTAL)
3784 x = c->page->objects;
3785 else if (flags & SO_OBJECTS)
3786 x = c->page->inuse;
Christoph Lameter81819f02007-05-06 14:49:36 -07003787 else
3788 x = 1;
Christoph Lameter205ab992008-04-14 19:11:40 +03003789
Christoph Lameter81819f02007-05-06 14:49:36 -07003790 total += x;
Christoph Lameter205ab992008-04-14 19:11:40 +03003791 nodes[c->node] += x;
Christoph Lameter81819f02007-05-06 14:49:36 -07003792 }
Christoph Lameter205ab992008-04-14 19:11:40 +03003793 per_cpu[c->node]++;
Christoph Lameter81819f02007-05-06 14:49:36 -07003794 }
3795 }
3796
Christoph Lameter205ab992008-04-14 19:11:40 +03003797 if (flags & SO_ALL) {
3798 for_each_node_state(node, N_NORMAL_MEMORY) {
3799 struct kmem_cache_node *n = get_node(s, node);
Christoph Lameter81819f02007-05-06 14:49:36 -07003800
Christoph Lameter205ab992008-04-14 19:11:40 +03003801 if (flags & SO_TOTAL)
3802 x = atomic_long_read(&n->total_objects);
3803 else if (flags & SO_OBJECTS)
3804 x = atomic_long_read(&n->total_objects) -
3805 count_partial(n, count_free);
3806
3807 else
3808 x = atomic_long_read(&n->nr_slabs);
3809 total += x;
3810 nodes[node] += x;
3811 }
3812
3813 } else if (flags & SO_PARTIAL) {
3814 for_each_node_state(node, N_NORMAL_MEMORY) {
3815 struct kmem_cache_node *n = get_node(s, node);
3816
3817 if (flags & SO_TOTAL)
3818 x = count_partial(n, count_total);
3819 else if (flags & SO_OBJECTS)
3820 x = count_partial(n, count_inuse);
Christoph Lameter81819f02007-05-06 14:49:36 -07003821 else
3822 x = n->nr_partial;
3823 total += x;
3824 nodes[node] += x;
3825 }
Christoph Lameter81819f02007-05-06 14:49:36 -07003826 }
Christoph Lameter81819f02007-05-06 14:49:36 -07003827 x = sprintf(buf, "%lu", total);
3828#ifdef CONFIG_NUMA
Christoph Lameterf64dc582007-10-16 01:25:33 -07003829 for_each_node_state(node, N_NORMAL_MEMORY)
Christoph Lameter81819f02007-05-06 14:49:36 -07003830 if (nodes[node])
3831 x += sprintf(buf + x, " N%d=%lu",
3832 node, nodes[node]);
3833#endif
3834 kfree(nodes);
3835 return x + sprintf(buf + x, "\n");
3836}
3837
3838static int any_slab_objects(struct kmem_cache *s)
3839{
3840 int node;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07003841
3842 for_each_online_node(node) {
Christoph Lameter81819f02007-05-06 14:49:36 -07003843 struct kmem_cache_node *n = get_node(s, node);
3844
Christoph Lameterdfb4f092007-10-16 01:26:05 -07003845 if (!n)
3846 continue;
3847
Benjamin Herrenschmidt4ea33e22008-05-06 20:42:39 -07003848 if (atomic_long_read(&n->total_objects))
Christoph Lameter81819f02007-05-06 14:49:36 -07003849 return 1;
3850 }
3851 return 0;
3852}
3853
3854#define to_slab_attr(n) container_of(n, struct slab_attribute, attr)
3855#define to_slab(n) container_of(n, struct kmem_cache, kobj);
3856
3857struct slab_attribute {
3858 struct attribute attr;
3859 ssize_t (*show)(struct kmem_cache *s, char *buf);
3860 ssize_t (*store)(struct kmem_cache *s, const char *x, size_t count);
3861};
3862
3863#define SLAB_ATTR_RO(_name) \
3864 static struct slab_attribute _name##_attr = __ATTR_RO(_name)
3865
3866#define SLAB_ATTR(_name) \
3867 static struct slab_attribute _name##_attr = \
3868 __ATTR(_name, 0644, _name##_show, _name##_store)
3869
Christoph Lameter81819f02007-05-06 14:49:36 -07003870static ssize_t slab_size_show(struct kmem_cache *s, char *buf)
3871{
3872 return sprintf(buf, "%d\n", s->size);
3873}
3874SLAB_ATTR_RO(slab_size);
3875
3876static ssize_t align_show(struct kmem_cache *s, char *buf)
3877{
3878 return sprintf(buf, "%d\n", s->align);
3879}
3880SLAB_ATTR_RO(align);
3881
3882static ssize_t object_size_show(struct kmem_cache *s, char *buf)
3883{
3884 return sprintf(buf, "%d\n", s->objsize);
3885}
3886SLAB_ATTR_RO(object_size);
3887
3888static ssize_t objs_per_slab_show(struct kmem_cache *s, char *buf)
3889{
Christoph Lameter834f3d12008-04-14 19:11:31 +03003890 return sprintf(buf, "%d\n", oo_objects(s->oo));
Christoph Lameter81819f02007-05-06 14:49:36 -07003891}
3892SLAB_ATTR_RO(objs_per_slab);
3893
Christoph Lameter06b285d2008-04-14 19:11:41 +03003894static ssize_t order_store(struct kmem_cache *s,
3895 const char *buf, size_t length)
3896{
Christoph Lameter0121c6192008-04-29 16:11:12 -07003897 unsigned long order;
3898 int err;
3899
3900 err = strict_strtoul(buf, 10, &order);
3901 if (err)
3902 return err;
Christoph Lameter06b285d2008-04-14 19:11:41 +03003903
3904 if (order > slub_max_order || order < slub_min_order)
3905 return -EINVAL;
3906
3907 calculate_sizes(s, order);
3908 return length;
3909}
3910
Christoph Lameter81819f02007-05-06 14:49:36 -07003911static ssize_t order_show(struct kmem_cache *s, char *buf)
3912{
Christoph Lameter834f3d12008-04-14 19:11:31 +03003913 return sprintf(buf, "%d\n", oo_order(s->oo));
Christoph Lameter81819f02007-05-06 14:49:36 -07003914}
Christoph Lameter06b285d2008-04-14 19:11:41 +03003915SLAB_ATTR(order);
Christoph Lameter81819f02007-05-06 14:49:36 -07003916
David Rientjes73d342b2009-02-22 17:40:09 -08003917static ssize_t min_partial_show(struct kmem_cache *s, char *buf)
3918{
3919 return sprintf(buf, "%lu\n", s->min_partial);
3920}
3921
3922static ssize_t min_partial_store(struct kmem_cache *s, const char *buf,
3923 size_t length)
3924{
3925 unsigned long min;
3926 int err;
3927
3928 err = strict_strtoul(buf, 10, &min);
3929 if (err)
3930 return err;
3931
David Rientjesc0bdb232009-02-25 09:16:35 +02003932 set_min_partial(s, min);
David Rientjes73d342b2009-02-22 17:40:09 -08003933 return length;
3934}
3935SLAB_ATTR(min_partial);
3936
Christoph Lameter81819f02007-05-06 14:49:36 -07003937static ssize_t ctor_show(struct kmem_cache *s, char *buf)
3938{
3939 if (s->ctor) {
3940 int n = sprint_symbol(buf, (unsigned long)s->ctor);
3941
3942 return n + sprintf(buf + n, "\n");
3943 }
3944 return 0;
3945}
3946SLAB_ATTR_RO(ctor);
3947
Christoph Lameter81819f02007-05-06 14:49:36 -07003948static ssize_t aliases_show(struct kmem_cache *s, char *buf)
3949{
3950 return sprintf(buf, "%d\n", s->refcount - 1);
3951}
3952SLAB_ATTR_RO(aliases);
3953
3954static ssize_t slabs_show(struct kmem_cache *s, char *buf)
3955{
Christoph Lameter205ab992008-04-14 19:11:40 +03003956 return show_slab_objects(s, buf, SO_ALL);
Christoph Lameter81819f02007-05-06 14:49:36 -07003957}
3958SLAB_ATTR_RO(slabs);
3959
3960static ssize_t partial_show(struct kmem_cache *s, char *buf)
3961{
Christoph Lameterd9acf4b2008-02-15 15:22:21 -08003962 return show_slab_objects(s, buf, SO_PARTIAL);
Christoph Lameter81819f02007-05-06 14:49:36 -07003963}
3964SLAB_ATTR_RO(partial);
3965
3966static ssize_t cpu_slabs_show(struct kmem_cache *s, char *buf)
3967{
Christoph Lameterd9acf4b2008-02-15 15:22:21 -08003968 return show_slab_objects(s, buf, SO_CPU);
Christoph Lameter81819f02007-05-06 14:49:36 -07003969}
3970SLAB_ATTR_RO(cpu_slabs);
3971
3972static ssize_t objects_show(struct kmem_cache *s, char *buf)
3973{
Christoph Lameter205ab992008-04-14 19:11:40 +03003974 return show_slab_objects(s, buf, SO_ALL|SO_OBJECTS);
Christoph Lameter81819f02007-05-06 14:49:36 -07003975}
3976SLAB_ATTR_RO(objects);
3977
Christoph Lameter205ab992008-04-14 19:11:40 +03003978static ssize_t objects_partial_show(struct kmem_cache *s, char *buf)
3979{
3980 return show_slab_objects(s, buf, SO_PARTIAL|SO_OBJECTS);
3981}
3982SLAB_ATTR_RO(objects_partial);
3983
3984static ssize_t total_objects_show(struct kmem_cache *s, char *buf)
3985{
3986 return show_slab_objects(s, buf, SO_ALL|SO_TOTAL);
3987}
3988SLAB_ATTR_RO(total_objects);
3989
Christoph Lameter81819f02007-05-06 14:49:36 -07003990static ssize_t sanity_checks_show(struct kmem_cache *s, char *buf)
3991{
3992 return sprintf(buf, "%d\n", !!(s->flags & SLAB_DEBUG_FREE));
3993}
3994
3995static ssize_t sanity_checks_store(struct kmem_cache *s,
3996 const char *buf, size_t length)
3997{
3998 s->flags &= ~SLAB_DEBUG_FREE;
3999 if (buf[0] == '1')
4000 s->flags |= SLAB_DEBUG_FREE;
4001 return length;
4002}
4003SLAB_ATTR(sanity_checks);
4004
4005static ssize_t trace_show(struct kmem_cache *s, char *buf)
4006{
4007 return sprintf(buf, "%d\n", !!(s->flags & SLAB_TRACE));
4008}
4009
4010static ssize_t trace_store(struct kmem_cache *s, const char *buf,
4011 size_t length)
4012{
4013 s->flags &= ~SLAB_TRACE;
4014 if (buf[0] == '1')
4015 s->flags |= SLAB_TRACE;
4016 return length;
4017}
4018SLAB_ATTR(trace);
4019
Dmitry Monakhov4c13dd32010-02-26 09:36:12 +03004020#ifdef CONFIG_FAILSLAB
4021static ssize_t failslab_show(struct kmem_cache *s, char *buf)
4022{
4023 return sprintf(buf, "%d\n", !!(s->flags & SLAB_FAILSLAB));
4024}
4025
4026static ssize_t failslab_store(struct kmem_cache *s, const char *buf,
4027 size_t length)
4028{
4029 s->flags &= ~SLAB_FAILSLAB;
4030 if (buf[0] == '1')
4031 s->flags |= SLAB_FAILSLAB;
4032 return length;
4033}
4034SLAB_ATTR(failslab);
4035#endif
4036
Christoph Lameter81819f02007-05-06 14:49:36 -07004037static ssize_t reclaim_account_show(struct kmem_cache *s, char *buf)
4038{
4039 return sprintf(buf, "%d\n", !!(s->flags & SLAB_RECLAIM_ACCOUNT));
4040}
4041
4042static ssize_t reclaim_account_store(struct kmem_cache *s,
4043 const char *buf, size_t length)
4044{
4045 s->flags &= ~SLAB_RECLAIM_ACCOUNT;
4046 if (buf[0] == '1')
4047 s->flags |= SLAB_RECLAIM_ACCOUNT;
4048 return length;
4049}
4050SLAB_ATTR(reclaim_account);
4051
4052static ssize_t hwcache_align_show(struct kmem_cache *s, char *buf)
4053{
Christoph Lameter5af60832007-05-06 14:49:56 -07004054 return sprintf(buf, "%d\n", !!(s->flags & SLAB_HWCACHE_ALIGN));
Christoph Lameter81819f02007-05-06 14:49:36 -07004055}
4056SLAB_ATTR_RO(hwcache_align);
4057
4058#ifdef CONFIG_ZONE_DMA
4059static ssize_t cache_dma_show(struct kmem_cache *s, char *buf)
4060{
4061 return sprintf(buf, "%d\n", !!(s->flags & SLAB_CACHE_DMA));
4062}
4063SLAB_ATTR_RO(cache_dma);
4064#endif
4065
4066static ssize_t destroy_by_rcu_show(struct kmem_cache *s, char *buf)
4067{
4068 return sprintf(buf, "%d\n", !!(s->flags & SLAB_DESTROY_BY_RCU));
4069}
4070SLAB_ATTR_RO(destroy_by_rcu);
4071
4072static ssize_t red_zone_show(struct kmem_cache *s, char *buf)
4073{
4074 return sprintf(buf, "%d\n", !!(s->flags & SLAB_RED_ZONE));
4075}
4076
4077static ssize_t red_zone_store(struct kmem_cache *s,
4078 const char *buf, size_t length)
4079{
4080 if (any_slab_objects(s))
4081 return -EBUSY;
4082
4083 s->flags &= ~SLAB_RED_ZONE;
4084 if (buf[0] == '1')
4085 s->flags |= SLAB_RED_ZONE;
Christoph Lameter06b285d2008-04-14 19:11:41 +03004086 calculate_sizes(s, -1);
Christoph Lameter81819f02007-05-06 14:49:36 -07004087 return length;
4088}
4089SLAB_ATTR(red_zone);
4090
4091static ssize_t poison_show(struct kmem_cache *s, char *buf)
4092{
4093 return sprintf(buf, "%d\n", !!(s->flags & SLAB_POISON));
4094}
4095
4096static ssize_t poison_store(struct kmem_cache *s,
4097 const char *buf, size_t length)
4098{
4099 if (any_slab_objects(s))
4100 return -EBUSY;
4101
4102 s->flags &= ~SLAB_POISON;
4103 if (buf[0] == '1')
4104 s->flags |= SLAB_POISON;
Christoph Lameter06b285d2008-04-14 19:11:41 +03004105 calculate_sizes(s, -1);
Christoph Lameter81819f02007-05-06 14:49:36 -07004106 return length;
4107}
4108SLAB_ATTR(poison);
4109
4110static ssize_t store_user_show(struct kmem_cache *s, char *buf)
4111{
4112 return sprintf(buf, "%d\n", !!(s->flags & SLAB_STORE_USER));
4113}
4114
4115static ssize_t store_user_store(struct kmem_cache *s,
4116 const char *buf, size_t length)
4117{
4118 if (any_slab_objects(s))
4119 return -EBUSY;
4120
4121 s->flags &= ~SLAB_STORE_USER;
4122 if (buf[0] == '1')
4123 s->flags |= SLAB_STORE_USER;
Christoph Lameter06b285d2008-04-14 19:11:41 +03004124 calculate_sizes(s, -1);
Christoph Lameter81819f02007-05-06 14:49:36 -07004125 return length;
4126}
4127SLAB_ATTR(store_user);
4128
Christoph Lameter53e15af2007-05-06 14:49:43 -07004129static ssize_t validate_show(struct kmem_cache *s, char *buf)
4130{
4131 return 0;
4132}
4133
4134static ssize_t validate_store(struct kmem_cache *s,
4135 const char *buf, size_t length)
4136{
Christoph Lameter434e2452007-07-17 04:03:30 -07004137 int ret = -EINVAL;
4138
4139 if (buf[0] == '1') {
4140 ret = validate_slab_cache(s);
4141 if (ret >= 0)
4142 ret = length;
4143 }
4144 return ret;
Christoph Lameter53e15af2007-05-06 14:49:43 -07004145}
4146SLAB_ATTR(validate);
4147
Christoph Lameter2086d262007-05-06 14:49:46 -07004148static ssize_t shrink_show(struct kmem_cache *s, char *buf)
4149{
4150 return 0;
4151}
4152
4153static ssize_t shrink_store(struct kmem_cache *s,
4154 const char *buf, size_t length)
4155{
4156 if (buf[0] == '1') {
4157 int rc = kmem_cache_shrink(s);
4158
4159 if (rc)
4160 return rc;
4161 } else
4162 return -EINVAL;
4163 return length;
4164}
4165SLAB_ATTR(shrink);
4166
Christoph Lameter88a420e2007-05-06 14:49:45 -07004167static ssize_t alloc_calls_show(struct kmem_cache *s, char *buf)
4168{
4169 if (!(s->flags & SLAB_STORE_USER))
4170 return -ENOSYS;
4171 return list_locations(s, buf, TRACK_ALLOC);
4172}
4173SLAB_ATTR_RO(alloc_calls);
4174
4175static ssize_t free_calls_show(struct kmem_cache *s, char *buf)
4176{
4177 if (!(s->flags & SLAB_STORE_USER))
4178 return -ENOSYS;
4179 return list_locations(s, buf, TRACK_FREE);
4180}
4181SLAB_ATTR_RO(free_calls);
4182
Christoph Lameter81819f02007-05-06 14:49:36 -07004183#ifdef CONFIG_NUMA
Christoph Lameter98246012008-01-07 23:20:26 -08004184static ssize_t remote_node_defrag_ratio_show(struct kmem_cache *s, char *buf)
Christoph Lameter81819f02007-05-06 14:49:36 -07004185{
Christoph Lameter98246012008-01-07 23:20:26 -08004186 return sprintf(buf, "%d\n", s->remote_node_defrag_ratio / 10);
Christoph Lameter81819f02007-05-06 14:49:36 -07004187}
4188
Christoph Lameter98246012008-01-07 23:20:26 -08004189static ssize_t remote_node_defrag_ratio_store(struct kmem_cache *s,
Christoph Lameter81819f02007-05-06 14:49:36 -07004190 const char *buf, size_t length)
4191{
Christoph Lameter0121c6192008-04-29 16:11:12 -07004192 unsigned long ratio;
4193 int err;
Christoph Lameter81819f02007-05-06 14:49:36 -07004194
Christoph Lameter0121c6192008-04-29 16:11:12 -07004195 err = strict_strtoul(buf, 10, &ratio);
4196 if (err)
4197 return err;
4198
Christoph Lametere2cb96b2008-08-19 08:51:22 -05004199 if (ratio <= 100)
Christoph Lameter0121c6192008-04-29 16:11:12 -07004200 s->remote_node_defrag_ratio = ratio * 10;
4201
Christoph Lameter81819f02007-05-06 14:49:36 -07004202 return length;
4203}
Christoph Lameter98246012008-01-07 23:20:26 -08004204SLAB_ATTR(remote_node_defrag_ratio);
Christoph Lameter81819f02007-05-06 14:49:36 -07004205#endif
4206
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004207#ifdef CONFIG_SLUB_STATS
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004208static int show_stat(struct kmem_cache *s, char *buf, enum stat_item si)
4209{
4210 unsigned long sum = 0;
4211 int cpu;
4212 int len;
4213 int *data = kmalloc(nr_cpu_ids * sizeof(int), GFP_KERNEL);
4214
4215 if (!data)
4216 return -ENOMEM;
4217
4218 for_each_online_cpu(cpu) {
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06004219 unsigned x = per_cpu_ptr(s->cpu_slab, cpu)->stat[si];
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004220
4221 data[cpu] = x;
4222 sum += x;
4223 }
4224
4225 len = sprintf(buf, "%lu", sum);
4226
Christoph Lameter50ef37b2008-04-14 18:52:05 +03004227#ifdef CONFIG_SMP
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004228 for_each_online_cpu(cpu) {
4229 if (data[cpu] && len < PAGE_SIZE - 20)
Christoph Lameter50ef37b2008-04-14 18:52:05 +03004230 len += sprintf(buf + len, " C%d=%u", cpu, data[cpu]);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004231 }
Christoph Lameter50ef37b2008-04-14 18:52:05 +03004232#endif
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004233 kfree(data);
4234 return len + sprintf(buf + len, "\n");
4235}
4236
David Rientjes78eb00c2009-10-15 02:20:22 -07004237static void clear_stat(struct kmem_cache *s, enum stat_item si)
4238{
4239 int cpu;
4240
4241 for_each_online_cpu(cpu)
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06004242 per_cpu_ptr(s->cpu_slab, cpu)->stat[si] = 0;
David Rientjes78eb00c2009-10-15 02:20:22 -07004243}
4244
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004245#define STAT_ATTR(si, text) \
4246static ssize_t text##_show(struct kmem_cache *s, char *buf) \
4247{ \
4248 return show_stat(s, buf, si); \
4249} \
David Rientjes78eb00c2009-10-15 02:20:22 -07004250static ssize_t text##_store(struct kmem_cache *s, \
4251 const char *buf, size_t length) \
4252{ \
4253 if (buf[0] != '0') \
4254 return -EINVAL; \
4255 clear_stat(s, si); \
4256 return length; \
4257} \
4258SLAB_ATTR(text); \
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004259
4260STAT_ATTR(ALLOC_FASTPATH, alloc_fastpath);
4261STAT_ATTR(ALLOC_SLOWPATH, alloc_slowpath);
4262STAT_ATTR(FREE_FASTPATH, free_fastpath);
4263STAT_ATTR(FREE_SLOWPATH, free_slowpath);
4264STAT_ATTR(FREE_FROZEN, free_frozen);
4265STAT_ATTR(FREE_ADD_PARTIAL, free_add_partial);
4266STAT_ATTR(FREE_REMOVE_PARTIAL, free_remove_partial);
4267STAT_ATTR(ALLOC_FROM_PARTIAL, alloc_from_partial);
4268STAT_ATTR(ALLOC_SLAB, alloc_slab);
4269STAT_ATTR(ALLOC_REFILL, alloc_refill);
4270STAT_ATTR(FREE_SLAB, free_slab);
4271STAT_ATTR(CPUSLAB_FLUSH, cpuslab_flush);
4272STAT_ATTR(DEACTIVATE_FULL, deactivate_full);
4273STAT_ATTR(DEACTIVATE_EMPTY, deactivate_empty);
4274STAT_ATTR(DEACTIVATE_TO_HEAD, deactivate_to_head);
4275STAT_ATTR(DEACTIVATE_TO_TAIL, deactivate_to_tail);
4276STAT_ATTR(DEACTIVATE_REMOTE_FREES, deactivate_remote_frees);
Christoph Lameter65c33762008-04-14 19:11:40 +03004277STAT_ATTR(ORDER_FALLBACK, order_fallback);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004278#endif
4279
Pekka Enberg06428782008-01-07 23:20:27 -08004280static struct attribute *slab_attrs[] = {
Christoph Lameter81819f02007-05-06 14:49:36 -07004281 &slab_size_attr.attr,
4282 &object_size_attr.attr,
4283 &objs_per_slab_attr.attr,
4284 &order_attr.attr,
David Rientjes73d342b2009-02-22 17:40:09 -08004285 &min_partial_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07004286 &objects_attr.attr,
Christoph Lameter205ab992008-04-14 19:11:40 +03004287 &objects_partial_attr.attr,
4288 &total_objects_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07004289 &slabs_attr.attr,
4290 &partial_attr.attr,
4291 &cpu_slabs_attr.attr,
4292 &ctor_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07004293 &aliases_attr.attr,
4294 &align_attr.attr,
4295 &sanity_checks_attr.attr,
4296 &trace_attr.attr,
4297 &hwcache_align_attr.attr,
4298 &reclaim_account_attr.attr,
4299 &destroy_by_rcu_attr.attr,
4300 &red_zone_attr.attr,
4301 &poison_attr.attr,
4302 &store_user_attr.attr,
Christoph Lameter53e15af2007-05-06 14:49:43 -07004303 &validate_attr.attr,
Christoph Lameter2086d262007-05-06 14:49:46 -07004304 &shrink_attr.attr,
Christoph Lameter88a420e2007-05-06 14:49:45 -07004305 &alloc_calls_attr.attr,
4306 &free_calls_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07004307#ifdef CONFIG_ZONE_DMA
4308 &cache_dma_attr.attr,
4309#endif
4310#ifdef CONFIG_NUMA
Christoph Lameter98246012008-01-07 23:20:26 -08004311 &remote_node_defrag_ratio_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07004312#endif
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004313#ifdef CONFIG_SLUB_STATS
4314 &alloc_fastpath_attr.attr,
4315 &alloc_slowpath_attr.attr,
4316 &free_fastpath_attr.attr,
4317 &free_slowpath_attr.attr,
4318 &free_frozen_attr.attr,
4319 &free_add_partial_attr.attr,
4320 &free_remove_partial_attr.attr,
4321 &alloc_from_partial_attr.attr,
4322 &alloc_slab_attr.attr,
4323 &alloc_refill_attr.attr,
4324 &free_slab_attr.attr,
4325 &cpuslab_flush_attr.attr,
4326 &deactivate_full_attr.attr,
4327 &deactivate_empty_attr.attr,
4328 &deactivate_to_head_attr.attr,
4329 &deactivate_to_tail_attr.attr,
4330 &deactivate_remote_frees_attr.attr,
Christoph Lameter65c33762008-04-14 19:11:40 +03004331 &order_fallback_attr.attr,
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004332#endif
Dmitry Monakhov4c13dd32010-02-26 09:36:12 +03004333#ifdef CONFIG_FAILSLAB
4334 &failslab_attr.attr,
4335#endif
4336
Christoph Lameter81819f02007-05-06 14:49:36 -07004337 NULL
4338};
4339
4340static struct attribute_group slab_attr_group = {
4341 .attrs = slab_attrs,
4342};
4343
4344static ssize_t slab_attr_show(struct kobject *kobj,
4345 struct attribute *attr,
4346 char *buf)
4347{
4348 struct slab_attribute *attribute;
4349 struct kmem_cache *s;
4350 int err;
4351
4352 attribute = to_slab_attr(attr);
4353 s = to_slab(kobj);
4354
4355 if (!attribute->show)
4356 return -EIO;
4357
4358 err = attribute->show(s, buf);
4359
4360 return err;
4361}
4362
4363static ssize_t slab_attr_store(struct kobject *kobj,
4364 struct attribute *attr,
4365 const char *buf, size_t len)
4366{
4367 struct slab_attribute *attribute;
4368 struct kmem_cache *s;
4369 int err;
4370
4371 attribute = to_slab_attr(attr);
4372 s = to_slab(kobj);
4373
4374 if (!attribute->store)
4375 return -EIO;
4376
4377 err = attribute->store(s, buf, len);
4378
4379 return err;
4380}
4381
Christoph Lameter151c6022008-01-07 22:29:05 -08004382static void kmem_cache_release(struct kobject *kobj)
4383{
4384 struct kmem_cache *s = to_slab(kobj);
4385
4386 kfree(s);
4387}
4388
Emese Revfy52cf25d2010-01-19 02:58:23 +01004389static const struct sysfs_ops slab_sysfs_ops = {
Christoph Lameter81819f02007-05-06 14:49:36 -07004390 .show = slab_attr_show,
4391 .store = slab_attr_store,
4392};
4393
4394static struct kobj_type slab_ktype = {
4395 .sysfs_ops = &slab_sysfs_ops,
Christoph Lameter151c6022008-01-07 22:29:05 -08004396 .release = kmem_cache_release
Christoph Lameter81819f02007-05-06 14:49:36 -07004397};
4398
4399static int uevent_filter(struct kset *kset, struct kobject *kobj)
4400{
4401 struct kobj_type *ktype = get_ktype(kobj);
4402
4403 if (ktype == &slab_ktype)
4404 return 1;
4405 return 0;
4406}
4407
Emese Revfy9cd43612009-12-31 14:52:51 +01004408static const struct kset_uevent_ops slab_uevent_ops = {
Christoph Lameter81819f02007-05-06 14:49:36 -07004409 .filter = uevent_filter,
4410};
4411
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06004412static struct kset *slab_kset;
Christoph Lameter81819f02007-05-06 14:49:36 -07004413
4414#define ID_STR_LENGTH 64
4415
4416/* Create a unique string id for a slab cache:
Christoph Lameter6446faa2008-02-15 23:45:26 -08004417 *
4418 * Format :[flags-]size
Christoph Lameter81819f02007-05-06 14:49:36 -07004419 */
4420static char *create_unique_id(struct kmem_cache *s)
4421{
4422 char *name = kmalloc(ID_STR_LENGTH, GFP_KERNEL);
4423 char *p = name;
4424
4425 BUG_ON(!name);
4426
4427 *p++ = ':';
4428 /*
4429 * First flags affecting slabcache operations. We will only
4430 * get here for aliasable slabs so we do not need to support
4431 * too many flags. The flags here must cover all flags that
4432 * are matched during merging to guarantee that the id is
4433 * unique.
4434 */
4435 if (s->flags & SLAB_CACHE_DMA)
4436 *p++ = 'd';
4437 if (s->flags & SLAB_RECLAIM_ACCOUNT)
4438 *p++ = 'a';
4439 if (s->flags & SLAB_DEBUG_FREE)
4440 *p++ = 'F';
Vegard Nossum5a896d92008-04-04 00:54:48 +02004441 if (!(s->flags & SLAB_NOTRACK))
4442 *p++ = 't';
Christoph Lameter81819f02007-05-06 14:49:36 -07004443 if (p != name + 1)
4444 *p++ = '-';
4445 p += sprintf(p, "%07d", s->size);
4446 BUG_ON(p > name + ID_STR_LENGTH - 1);
4447 return name;
4448}
4449
4450static int sysfs_slab_add(struct kmem_cache *s)
4451{
4452 int err;
4453 const char *name;
4454 int unmergeable;
4455
4456 if (slab_state < SYSFS)
4457 /* Defer until later */
4458 return 0;
4459
4460 unmergeable = slab_unmergeable(s);
4461 if (unmergeable) {
4462 /*
4463 * Slabcache can never be merged so we can use the name proper.
4464 * This is typically the case for debug situations. In that
4465 * case we can catch duplicate names easily.
4466 */
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06004467 sysfs_remove_link(&slab_kset->kobj, s->name);
Christoph Lameter81819f02007-05-06 14:49:36 -07004468 name = s->name;
4469 } else {
4470 /*
4471 * Create a unique name for the slab as a target
4472 * for the symlinks.
4473 */
4474 name = create_unique_id(s);
4475 }
4476
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06004477 s->kobj.kset = slab_kset;
Greg Kroah-Hartman1eada112007-12-17 23:05:35 -07004478 err = kobject_init_and_add(&s->kobj, &slab_ktype, NULL, name);
4479 if (err) {
4480 kobject_put(&s->kobj);
Christoph Lameter81819f02007-05-06 14:49:36 -07004481 return err;
Greg Kroah-Hartman1eada112007-12-17 23:05:35 -07004482 }
Christoph Lameter81819f02007-05-06 14:49:36 -07004483
4484 err = sysfs_create_group(&s->kobj, &slab_attr_group);
Xiaotian Feng5788d8a2009-07-22 11:28:53 +08004485 if (err) {
4486 kobject_del(&s->kobj);
4487 kobject_put(&s->kobj);
Christoph Lameter81819f02007-05-06 14:49:36 -07004488 return err;
Xiaotian Feng5788d8a2009-07-22 11:28:53 +08004489 }
Christoph Lameter81819f02007-05-06 14:49:36 -07004490 kobject_uevent(&s->kobj, KOBJ_ADD);
4491 if (!unmergeable) {
4492 /* Setup first alias */
4493 sysfs_slab_alias(s, s->name);
4494 kfree(name);
4495 }
4496 return 0;
4497}
4498
4499static void sysfs_slab_remove(struct kmem_cache *s)
4500{
Christoph Lameterf5b801a2010-07-09 14:07:13 -05004501 if (slab_state < SYSFS)
4502 /*
4503 * Sysfs has not been setup yet so no need to remove the
4504 * cache from sysfs.
4505 */
4506 return;
4507
Christoph Lameter81819f02007-05-06 14:49:36 -07004508 kobject_uevent(&s->kobj, KOBJ_REMOVE);
4509 kobject_del(&s->kobj);
Christoph Lameter151c6022008-01-07 22:29:05 -08004510 kobject_put(&s->kobj);
Christoph Lameter81819f02007-05-06 14:49:36 -07004511}
4512
4513/*
4514 * Need to buffer aliases during bootup until sysfs becomes
Nick Andrew9f6c708e2008-12-05 14:08:08 +11004515 * available lest we lose that information.
Christoph Lameter81819f02007-05-06 14:49:36 -07004516 */
4517struct saved_alias {
4518 struct kmem_cache *s;
4519 const char *name;
4520 struct saved_alias *next;
4521};
4522
Adrian Bunk5af328a2007-07-17 04:03:27 -07004523static struct saved_alias *alias_list;
Christoph Lameter81819f02007-05-06 14:49:36 -07004524
4525static int sysfs_slab_alias(struct kmem_cache *s, const char *name)
4526{
4527 struct saved_alias *al;
4528
4529 if (slab_state == SYSFS) {
4530 /*
4531 * If we have a leftover link then remove it.
4532 */
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06004533 sysfs_remove_link(&slab_kset->kobj, name);
4534 return sysfs_create_link(&slab_kset->kobj, &s->kobj, name);
Christoph Lameter81819f02007-05-06 14:49:36 -07004535 }
4536
4537 al = kmalloc(sizeof(struct saved_alias), GFP_KERNEL);
4538 if (!al)
4539 return -ENOMEM;
4540
4541 al->s = s;
4542 al->name = name;
4543 al->next = alias_list;
4544 alias_list = al;
4545 return 0;
4546}
4547
4548static int __init slab_sysfs_init(void)
4549{
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07004550 struct kmem_cache *s;
Christoph Lameter81819f02007-05-06 14:49:36 -07004551 int err;
4552
Greg Kroah-Hartman0ff21e42007-11-06 10:36:58 -08004553 slab_kset = kset_create_and_add("slab", &slab_uevent_ops, kernel_kobj);
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06004554 if (!slab_kset) {
Christoph Lameter81819f02007-05-06 14:49:36 -07004555 printk(KERN_ERR "Cannot register slab subsystem.\n");
4556 return -ENOSYS;
4557 }
4558
Christoph Lameter26a7bd02007-05-09 02:32:39 -07004559 slab_state = SYSFS;
4560
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07004561 list_for_each_entry(s, &slab_caches, list) {
Christoph Lameter26a7bd02007-05-09 02:32:39 -07004562 err = sysfs_slab_add(s);
Christoph Lameter5d540fb2007-08-30 23:56:26 -07004563 if (err)
4564 printk(KERN_ERR "SLUB: Unable to add boot slab %s"
4565 " to sysfs\n", s->name);
Christoph Lameter26a7bd02007-05-09 02:32:39 -07004566 }
Christoph Lameter81819f02007-05-06 14:49:36 -07004567
4568 while (alias_list) {
4569 struct saved_alias *al = alias_list;
4570
4571 alias_list = alias_list->next;
4572 err = sysfs_slab_alias(al->s, al->name);
Christoph Lameter5d540fb2007-08-30 23:56:26 -07004573 if (err)
4574 printk(KERN_ERR "SLUB: Unable to add boot slab alias"
4575 " %s to sysfs\n", s->name);
Christoph Lameter81819f02007-05-06 14:49:36 -07004576 kfree(al);
4577 }
4578
4579 resiliency_test();
4580 return 0;
4581}
4582
4583__initcall(slab_sysfs_init);
Christoph Lameter81819f02007-05-06 14:49:36 -07004584#endif
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004585
4586/*
4587 * The /proc/slabinfo ABI
4588 */
Linus Torvalds158a9622008-01-02 13:04:48 -08004589#ifdef CONFIG_SLABINFO
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004590static void print_slabinfo_header(struct seq_file *m)
4591{
4592 seq_puts(m, "slabinfo - version: 2.1\n");
4593 seq_puts(m, "# name <active_objs> <num_objs> <objsize> "
4594 "<objperslab> <pagesperslab>");
4595 seq_puts(m, " : tunables <limit> <batchcount> <sharedfactor>");
4596 seq_puts(m, " : slabdata <active_slabs> <num_slabs> <sharedavail>");
4597 seq_putc(m, '\n');
4598}
4599
4600static void *s_start(struct seq_file *m, loff_t *pos)
4601{
4602 loff_t n = *pos;
4603
4604 down_read(&slub_lock);
4605 if (!n)
4606 print_slabinfo_header(m);
4607
4608 return seq_list_start(&slab_caches, *pos);
4609}
4610
4611static void *s_next(struct seq_file *m, void *p, loff_t *pos)
4612{
4613 return seq_list_next(p, &slab_caches, pos);
4614}
4615
4616static void s_stop(struct seq_file *m, void *p)
4617{
4618 up_read(&slub_lock);
4619}
4620
4621static int s_show(struct seq_file *m, void *p)
4622{
4623 unsigned long nr_partials = 0;
4624 unsigned long nr_slabs = 0;
4625 unsigned long nr_inuse = 0;
Christoph Lameter205ab992008-04-14 19:11:40 +03004626 unsigned long nr_objs = 0;
4627 unsigned long nr_free = 0;
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004628 struct kmem_cache *s;
4629 int node;
4630
4631 s = list_entry(p, struct kmem_cache, list);
4632
4633 for_each_online_node(node) {
4634 struct kmem_cache_node *n = get_node(s, node);
4635
4636 if (!n)
4637 continue;
4638
4639 nr_partials += n->nr_partial;
4640 nr_slabs += atomic_long_read(&n->nr_slabs);
Christoph Lameter205ab992008-04-14 19:11:40 +03004641 nr_objs += atomic_long_read(&n->total_objects);
4642 nr_free += count_partial(n, count_free);
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004643 }
4644
Christoph Lameter205ab992008-04-14 19:11:40 +03004645 nr_inuse = nr_objs - nr_free;
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004646
4647 seq_printf(m, "%-17s %6lu %6lu %6u %4u %4d", s->name, nr_inuse,
Christoph Lameter834f3d12008-04-14 19:11:31 +03004648 nr_objs, s->size, oo_objects(s->oo),
4649 (1 << oo_order(s->oo)));
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004650 seq_printf(m, " : tunables %4u %4u %4u", 0, 0, 0);
4651 seq_printf(m, " : slabdata %6lu %6lu %6lu", nr_slabs, nr_slabs,
4652 0UL);
4653 seq_putc(m, '\n');
4654 return 0;
4655}
4656
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04004657static const struct seq_operations slabinfo_op = {
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004658 .start = s_start,
4659 .next = s_next,
4660 .stop = s_stop,
4661 .show = s_show,
4662};
4663
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04004664static int slabinfo_open(struct inode *inode, struct file *file)
4665{
4666 return seq_open(file, &slabinfo_op);
4667}
4668
4669static const struct file_operations proc_slabinfo_operations = {
4670 .open = slabinfo_open,
4671 .read = seq_read,
4672 .llseek = seq_lseek,
4673 .release = seq_release,
4674};
4675
4676static int __init slab_proc_init(void)
4677{
WANG Congcf5d1132009-08-18 19:11:40 +03004678 proc_create("slabinfo", S_IRUGO, NULL, &proc_slabinfo_operations);
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04004679 return 0;
4680}
4681module_init(slab_proc_init);
Linus Torvalds158a9622008-01-02 13:04:48 -08004682#endif /* CONFIG_SLABINFO */