blob: e126cfbd3df29d719994a9fe658b440618d570fb [file] [log] [blame]
Christoph Lameter81819f02007-05-06 14:49:36 -07001/*
2 * SLUB: A slab allocator that limits cache line use instead of queuing
3 * objects in per cpu and per node lists.
4 *
5 * The allocator synchronizes using per slab locks and only
6 * uses a centralized lock to manage a pool of partial slabs.
7 *
Christoph Lametercde53532008-07-04 09:59:22 -07008 * (C) 2007 SGI, Christoph Lameter
Christoph Lameter81819f02007-05-06 14:49:36 -07009 */
10
11#include <linux/mm.h>
Nick Piggin1eb5ac62009-05-05 19:13:44 +100012#include <linux/swap.h> /* struct reclaim_state */
Christoph Lameter81819f02007-05-06 14:49:36 -070013#include <linux/module.h>
14#include <linux/bit_spinlock.h>
15#include <linux/interrupt.h>
16#include <linux/bitops.h>
17#include <linux/slab.h>
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +040018#include <linux/proc_fs.h>
Christoph Lameter81819f02007-05-06 14:49:36 -070019#include <linux/seq_file.h>
Vegard Nossum5a896d92008-04-04 00:54:48 +020020#include <linux/kmemcheck.h>
Christoph Lameter81819f02007-05-06 14:49:36 -070021#include <linux/cpu.h>
22#include <linux/cpuset.h>
23#include <linux/mempolicy.h>
24#include <linux/ctype.h>
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -070025#include <linux/debugobjects.h>
Christoph Lameter81819f02007-05-06 14:49:36 -070026#include <linux/kallsyms.h>
Yasunori Gotob9049e22007-10-21 16:41:37 -070027#include <linux/memory.h>
Roman Zippelf8bd2252008-05-01 04:34:31 -070028#include <linux/math64.h>
Akinobu Mita773ff602008-12-23 19:37:01 +090029#include <linux/fault-inject.h>
Christoph Lameter81819f02007-05-06 14:49:36 -070030
Richard Kennedy4a923792010-10-21 10:29:19 +010031#include <trace/events/kmem.h>
32
Christoph Lameter81819f02007-05-06 14:49:36 -070033/*
34 * Lock order:
35 * 1. slab_lock(page)
36 * 2. slab->list_lock
37 *
38 * The slab_lock protects operations on the object of a particular
39 * slab and its metadata in the page struct. If the slab lock
40 * has been taken then no allocations nor frees can be performed
41 * on the objects in the slab nor can the slab be added or removed
42 * from the partial or full lists since this would mean modifying
43 * the page_struct of the slab.
44 *
45 * The list_lock protects the partial and full list on each node and
46 * the partial slab counter. If taken then no new slabs may be added or
47 * removed from the lists nor make the number of partial slabs be modified.
48 * (Note that the total number of slabs is an atomic value that may be
49 * modified without taking the list lock).
50 *
51 * The list_lock is a centralized lock and thus we avoid taking it as
52 * much as possible. As long as SLUB does not have to handle partial
53 * slabs, operations can continue without any centralized lock. F.e.
54 * allocating a long series of objects that fill up slabs does not require
55 * the list lock.
56 *
57 * The lock order is sometimes inverted when we are trying to get a slab
58 * off a list. We take the list_lock and then look for a page on the list
59 * to use. While we do that objects in the slabs may be freed. We can
60 * only operate on the slab if we have also taken the slab_lock. So we use
61 * a slab_trylock() on the slab. If trylock was successful then no frees
62 * can occur anymore and we can use the slab for allocations etc. If the
63 * slab_trylock() does not succeed then frees are in progress in the slab and
64 * we must stay away from it for a while since we may cause a bouncing
65 * cacheline if we try to acquire the lock. So go onto the next slab.
66 * If all pages are busy then we may allocate a new slab instead of reusing
67 * a partial slab. A new slab has noone operating on it and thus there is
68 * no danger of cacheline contention.
69 *
70 * Interrupts are disabled during allocation and deallocation in order to
71 * make the slab allocator safe to use in the context of an irq. In addition
72 * interrupts are disabled to ensure that the processor does not change
73 * while handling per_cpu slabs, due to kernel preemption.
74 *
75 * SLUB assigns one slab for allocation to each processor.
76 * Allocations only occur from these slabs called cpu slabs.
77 *
Christoph Lameter672bba32007-05-09 02:32:39 -070078 * Slabs with free elements are kept on a partial list and during regular
79 * operations no list for full slabs is used. If an object in a full slab is
Christoph Lameter81819f02007-05-06 14:49:36 -070080 * freed then the slab will show up again on the partial lists.
Christoph Lameter672bba32007-05-09 02:32:39 -070081 * We track full slabs for debugging purposes though because otherwise we
82 * cannot scan all objects.
Christoph Lameter81819f02007-05-06 14:49:36 -070083 *
84 * Slabs are freed when they become empty. Teardown and setup is
85 * minimal so we rely on the page allocators per cpu caches for
86 * fast frees and allocs.
87 *
88 * Overloading of page flags that are otherwise used for LRU management.
89 *
Christoph Lameter4b6f0752007-05-16 22:10:53 -070090 * PageActive The slab is frozen and exempt from list processing.
91 * This means that the slab is dedicated to a purpose
92 * such as satisfying allocations for a specific
93 * processor. Objects may be freed in the slab while
94 * it is frozen but slab_free will then skip the usual
95 * list operations. It is up to the processor holding
96 * the slab to integrate the slab into the slab lists
97 * when the slab is no longer needed.
98 *
99 * One use of this flag is to mark slabs that are
100 * used for allocations. Then such a slab becomes a cpu
101 * slab. The cpu slab may be equipped with an additional
Christoph Lameterdfb4f092007-10-16 01:26:05 -0700102 * freelist that allows lockless access to
Christoph Lameter894b8782007-05-10 03:15:16 -0700103 * free objects in addition to the regular freelist
104 * that requires the slab lock.
Christoph Lameter81819f02007-05-06 14:49:36 -0700105 *
106 * PageError Slab requires special handling due to debug
107 * options set. This moves slab handling out of
Christoph Lameter894b8782007-05-10 03:15:16 -0700108 * the fast path and disables lockless freelists.
Christoph Lameter81819f02007-05-06 14:49:36 -0700109 */
110
Christoph Lameteraf537b02010-07-09 14:07:14 -0500111#define SLAB_DEBUG_FLAGS (SLAB_RED_ZONE | SLAB_POISON | SLAB_STORE_USER | \
112 SLAB_TRACE | SLAB_DEBUG_FREE)
113
114static inline int kmem_cache_debug(struct kmem_cache *s)
115{
Christoph Lameter5577bd82007-05-16 22:10:56 -0700116#ifdef CONFIG_SLUB_DEBUG
Christoph Lameteraf537b02010-07-09 14:07:14 -0500117 return unlikely(s->flags & SLAB_DEBUG_FLAGS);
Christoph Lameter5577bd82007-05-16 22:10:56 -0700118#else
Christoph Lameteraf537b02010-07-09 14:07:14 -0500119 return 0;
Christoph Lameter5577bd82007-05-16 22:10:56 -0700120#endif
Christoph Lameteraf537b02010-07-09 14:07:14 -0500121}
Christoph Lameter5577bd82007-05-16 22:10:56 -0700122
Christoph Lameter81819f02007-05-06 14:49:36 -0700123/*
124 * Issues still to be resolved:
125 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700126 * - Support PAGE_ALLOC_DEBUG. Should be easy to do.
127 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700128 * - Variable sizing of the per node arrays
129 */
130
131/* Enable to test recovery from slab corruption on boot */
132#undef SLUB_RESILIENCY_TEST
133
Christoph Lameter81819f02007-05-06 14:49:36 -0700134/*
Christoph Lameter2086d262007-05-06 14:49:46 -0700135 * Mininum number of partial slabs. These will be left on the partial
136 * lists even if they are empty. kmem_cache_shrink may reclaim them.
137 */
Christoph Lameter76be8952007-12-21 14:37:37 -0800138#define MIN_PARTIAL 5
Christoph Lametere95eed52007-05-06 14:49:44 -0700139
Christoph Lameter2086d262007-05-06 14:49:46 -0700140/*
141 * Maximum number of desirable partial slabs.
142 * The existence of more partial slabs makes kmem_cache_shrink
143 * sort the partial list by the number of objects in the.
144 */
145#define MAX_PARTIAL 10
146
Christoph Lameter81819f02007-05-06 14:49:36 -0700147#define DEBUG_DEFAULT_FLAGS (SLAB_DEBUG_FREE | SLAB_RED_ZONE | \
148 SLAB_POISON | SLAB_STORE_USER)
Christoph Lameter672bba32007-05-09 02:32:39 -0700149
Christoph Lameter81819f02007-05-06 14:49:36 -0700150/*
David Rientjes3de472132009-07-27 18:30:35 -0700151 * Debugging flags that require metadata to be stored in the slab. These get
152 * disabled when slub_debug=O is used and a cache's min order increases with
153 * metadata.
David Rientjesfa5ec8a2009-07-07 00:14:14 -0700154 */
David Rientjes3de472132009-07-27 18:30:35 -0700155#define DEBUG_METADATA_FLAGS (SLAB_RED_ZONE | SLAB_POISON | SLAB_STORE_USER)
David Rientjesfa5ec8a2009-07-07 00:14:14 -0700156
157/*
Christoph Lameter81819f02007-05-06 14:49:36 -0700158 * Set of flags that will prevent slab merging
159 */
160#define SLUB_NEVER_MERGE (SLAB_RED_ZONE | SLAB_POISON | SLAB_STORE_USER | \
Dmitry Monakhov4c13dd32010-02-26 09:36:12 +0300161 SLAB_TRACE | SLAB_DESTROY_BY_RCU | SLAB_NOLEAKTRACE | \
162 SLAB_FAILSLAB)
Christoph Lameter81819f02007-05-06 14:49:36 -0700163
164#define SLUB_MERGE_SAME (SLAB_DEBUG_FREE | SLAB_RECLAIM_ACCOUNT | \
Vegard Nossum5a896d92008-04-04 00:54:48 +0200165 SLAB_CACHE_DMA | SLAB_NOTRACK)
Christoph Lameter81819f02007-05-06 14:49:36 -0700166
Cyrill Gorcunov210b5c02008-10-22 23:00:38 +0400167#define OO_SHIFT 16
168#define OO_MASK ((1 << OO_SHIFT) - 1)
169#define MAX_OBJS_PER_PAGE 65535 /* since page.objects is u16 */
170
Christoph Lameter81819f02007-05-06 14:49:36 -0700171/* Internal SLUB flags */
Christoph Lameterf90ec392010-07-09 14:07:11 -0500172#define __OBJECT_POISON 0x80000000UL /* Poison object */
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 */
Christoph Lameter51df1142010-08-20 12:37:15 -0500182 PARTIAL, /* Kmem_cache_node works */
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 Bunk5af328a52007-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 Lameterab4d5ed2010-10-05 13:57:26 -0500203#ifdef CONFIG_SYSFS
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{
Pekka Enberg84c1cf62010-09-14 23:21:12 +0300214 kfree(s->name);
Christoph Lameter151c6022008-01-07 22:29:05 -0800215 kfree(s);
216}
Christoph Lameter8ff12cf2008-02-07 17:47:41 -0800217
Christoph Lameter81819f02007-05-06 14:49:36 -0700218#endif
219
Christoph Lameter84e554e62009-12-18 16:26:23 -0600220static inline void stat(struct kmem_cache *s, enum stat_item si)
Christoph Lameter8ff12cf2008-02-07 17:47:41 -0800221{
222#ifdef CONFIG_SLUB_STATS
Christoph Lameter84e554e62009-12-18 16:26:23 -0600223 __this_cpu_inc(s->cpu_slab->stat[si]);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -0800224#endif
225}
226
Christoph Lameter81819f02007-05-06 14:49:36 -0700227/********************************************************************
228 * Core slab cache functions
229 *******************************************************************/
230
231int slab_is_available(void)
232{
233 return slab_state >= UP;
234}
235
236static inline struct kmem_cache_node *get_node(struct kmem_cache *s, int node)
237{
Christoph Lameter81819f02007-05-06 14:49:36 -0700238 return s->node[node];
Christoph Lameter81819f02007-05-06 14:49:36 -0700239}
240
Christoph Lameter6446faa2008-02-15 23:45:26 -0800241/* Verify that a pointer has an address that is valid within a slab page */
Christoph Lameter02cbc872007-05-09 02:32:43 -0700242static inline int check_valid_pointer(struct kmem_cache *s,
243 struct page *page, const void *object)
244{
245 void *base;
246
Christoph Lametera973e9d2008-03-01 13:40:44 -0800247 if (!object)
Christoph Lameter02cbc872007-05-09 02:32:43 -0700248 return 1;
249
Christoph Lametera973e9d2008-03-01 13:40:44 -0800250 base = page_address(page);
Christoph Lameter39b26462008-04-14 19:11:30 +0300251 if (object < base || object >= base + page->objects * s->size ||
Christoph Lameter02cbc872007-05-09 02:32:43 -0700252 (object - base) % s->size) {
253 return 0;
254 }
255
256 return 1;
257}
258
Christoph Lameter7656c722007-05-09 02:32:40 -0700259static inline void *get_freepointer(struct kmem_cache *s, void *object)
260{
261 return *(void **)(object + s->offset);
262}
263
264static inline void set_freepointer(struct kmem_cache *s, void *object, void *fp)
265{
266 *(void **)(object + s->offset) = fp;
267}
268
269/* Loop over all objects in a slab */
Christoph Lameter224a88b2008-04-14 19:11:31 +0300270#define for_each_object(__p, __s, __addr, __objects) \
271 for (__p = (__addr); __p < (__addr) + (__objects) * (__s)->size;\
Christoph Lameter7656c722007-05-09 02:32:40 -0700272 __p += (__s)->size)
273
274/* Scan freelist */
275#define for_each_free_object(__p, __s, __free) \
Christoph Lametera973e9d2008-03-01 13:40:44 -0800276 for (__p = (__free); __p; __p = get_freepointer((__s), __p))
Christoph Lameter7656c722007-05-09 02:32:40 -0700277
278/* Determine object index from a given position */
279static inline int slab_index(void *p, struct kmem_cache *s, void *addr)
280{
281 return (p - addr) / s->size;
282}
283
Mariusz Kozlowskid71f6062011-02-26 20:10:26 +0100284static inline size_t slab_ksize(const struct kmem_cache *s)
285{
286#ifdef CONFIG_SLUB_DEBUG
287 /*
288 * Debugging requires use of the padding between object
289 * and whatever may come after it.
290 */
291 if (s->flags & (SLAB_RED_ZONE | SLAB_POISON))
292 return s->objsize;
293
294#endif
295 /*
296 * If we have the need to store the freelist pointer
297 * back there or track user information then we can
298 * only use the space before that information.
299 */
300 if (s->flags & (SLAB_DESTROY_BY_RCU | SLAB_STORE_USER))
301 return s->inuse;
302 /*
303 * Else we can use all the padding etc for the allocation
304 */
305 return s->size;
306}
307
Lai Jiangshanab9a0f12011-03-10 15:21:48 +0800308static inline int order_objects(int order, unsigned long size, int reserved)
309{
310 return ((PAGE_SIZE << order) - reserved) / size;
311}
312
Christoph Lameter834f3d12008-04-14 19:11:31 +0300313static inline struct kmem_cache_order_objects oo_make(int order,
Lai Jiangshanab9a0f12011-03-10 15:21:48 +0800314 unsigned long size, int reserved)
Christoph Lameter834f3d12008-04-14 19:11:31 +0300315{
316 struct kmem_cache_order_objects x = {
Lai Jiangshanab9a0f12011-03-10 15:21:48 +0800317 (order << OO_SHIFT) + order_objects(order, size, reserved)
Christoph Lameter834f3d12008-04-14 19:11:31 +0300318 };
319
320 return x;
321}
322
323static inline int oo_order(struct kmem_cache_order_objects x)
324{
Cyrill Gorcunov210b5c02008-10-22 23:00:38 +0400325 return x.x >> OO_SHIFT;
Christoph Lameter834f3d12008-04-14 19:11:31 +0300326}
327
328static inline int oo_objects(struct kmem_cache_order_objects x)
329{
Cyrill Gorcunov210b5c02008-10-22 23:00:38 +0400330 return x.x & OO_MASK;
Christoph Lameter834f3d12008-04-14 19:11:31 +0300331}
332
Christoph Lameter41ecc552007-05-09 02:32:44 -0700333#ifdef CONFIG_SLUB_DEBUG
334/*
335 * Debug settings:
336 */
Christoph Lameterf0630ff2007-07-15 23:38:14 -0700337#ifdef CONFIG_SLUB_DEBUG_ON
338static int slub_debug = DEBUG_DEFAULT_FLAGS;
339#else
Christoph Lameter41ecc552007-05-09 02:32:44 -0700340static int slub_debug;
Christoph Lameterf0630ff2007-07-15 23:38:14 -0700341#endif
Christoph Lameter41ecc552007-05-09 02:32:44 -0700342
343static char *slub_debug_slabs;
David Rientjesfa5ec8a2009-07-07 00:14:14 -0700344static int disable_higher_order_debug;
Christoph Lameter41ecc552007-05-09 02:32:44 -0700345
Christoph Lameter7656c722007-05-09 02:32:40 -0700346/*
Christoph Lameter81819f02007-05-06 14:49:36 -0700347 * Object debugging
348 */
349static void print_section(char *text, u8 *addr, unsigned int length)
350{
351 int i, offset;
352 int newline = 1;
353 char ascii[17];
354
355 ascii[16] = 0;
356
357 for (i = 0; i < length; i++) {
358 if (newline) {
Christoph Lameter24922682007-07-17 04:03:18 -0700359 printk(KERN_ERR "%8s 0x%p: ", text, addr + i);
Christoph Lameter81819f02007-05-06 14:49:36 -0700360 newline = 0;
361 }
Pekka Enberg06428782008-01-07 23:20:27 -0800362 printk(KERN_CONT " %02x", addr[i]);
Christoph Lameter81819f02007-05-06 14:49:36 -0700363 offset = i % 16;
364 ascii[offset] = isgraph(addr[i]) ? addr[i] : '.';
365 if (offset == 15) {
Pekka Enberg06428782008-01-07 23:20:27 -0800366 printk(KERN_CONT " %s\n", ascii);
Christoph Lameter81819f02007-05-06 14:49:36 -0700367 newline = 1;
368 }
369 }
370 if (!newline) {
371 i %= 16;
372 while (i < 16) {
Pekka Enberg06428782008-01-07 23:20:27 -0800373 printk(KERN_CONT " ");
Christoph Lameter81819f02007-05-06 14:49:36 -0700374 ascii[i] = ' ';
375 i++;
376 }
Pekka Enberg06428782008-01-07 23:20:27 -0800377 printk(KERN_CONT " %s\n", ascii);
Christoph Lameter81819f02007-05-06 14:49:36 -0700378 }
379}
380
Christoph Lameter81819f02007-05-06 14:49:36 -0700381static struct track *get_track(struct kmem_cache *s, void *object,
382 enum track_item alloc)
383{
384 struct track *p;
385
386 if (s->offset)
387 p = object + s->offset + sizeof(void *);
388 else
389 p = object + s->inuse;
390
391 return p + alloc;
392}
393
394static void set_track(struct kmem_cache *s, void *object,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +0300395 enum track_item alloc, unsigned long addr)
Christoph Lameter81819f02007-05-06 14:49:36 -0700396{
Akinobu Mita1a00df42009-03-07 00:36:21 +0900397 struct track *p = get_track(s, object, alloc);
Christoph Lameter81819f02007-05-06 14:49:36 -0700398
Christoph Lameter81819f02007-05-06 14:49:36 -0700399 if (addr) {
400 p->addr = addr;
401 p->cpu = smp_processor_id();
Alexey Dobriyan88e4ccf2008-06-23 02:58:37 +0400402 p->pid = current->pid;
Christoph Lameter81819f02007-05-06 14:49:36 -0700403 p->when = jiffies;
404 } else
405 memset(p, 0, sizeof(struct track));
406}
407
Christoph Lameter81819f02007-05-06 14:49:36 -0700408static void init_tracking(struct kmem_cache *s, void *object)
409{
Christoph Lameter24922682007-07-17 04:03:18 -0700410 if (!(s->flags & SLAB_STORE_USER))
411 return;
412
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +0300413 set_track(s, object, TRACK_FREE, 0UL);
414 set_track(s, object, TRACK_ALLOC, 0UL);
Christoph Lameter81819f02007-05-06 14:49:36 -0700415}
416
417static void print_track(const char *s, struct track *t)
418{
419 if (!t->addr)
420 return;
421
Linus Torvalds7daf7052008-07-14 12:12:53 -0700422 printk(KERN_ERR "INFO: %s in %pS age=%lu cpu=%u pid=%d\n",
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +0300423 s, (void *)t->addr, jiffies - t->when, t->cpu, t->pid);
Christoph Lameter81819f02007-05-06 14:49:36 -0700424}
425
Christoph Lameter24922682007-07-17 04:03:18 -0700426static void print_tracking(struct kmem_cache *s, void *object)
427{
428 if (!(s->flags & SLAB_STORE_USER))
429 return;
430
431 print_track("Allocated", get_track(s, object, TRACK_ALLOC));
432 print_track("Freed", get_track(s, object, TRACK_FREE));
433}
434
435static void print_page_info(struct page *page)
436{
Christoph Lameter39b26462008-04-14 19:11:30 +0300437 printk(KERN_ERR "INFO: Slab 0x%p objects=%u used=%u fp=0x%p flags=0x%04lx\n",
438 page, page->objects, page->inuse, page->freelist, page->flags);
Christoph Lameter24922682007-07-17 04:03:18 -0700439
440}
441
442static void slab_bug(struct kmem_cache *s, char *fmt, ...)
443{
444 va_list args;
445 char buf[100];
446
447 va_start(args, fmt);
448 vsnprintf(buf, sizeof(buf), fmt, args);
449 va_end(args);
450 printk(KERN_ERR "========================================"
451 "=====================================\n");
452 printk(KERN_ERR "BUG %s: %s\n", s->name, buf);
453 printk(KERN_ERR "----------------------------------------"
454 "-------------------------------------\n\n");
455}
456
457static void slab_fix(struct kmem_cache *s, char *fmt, ...)
458{
459 va_list args;
460 char buf[100];
461
462 va_start(args, fmt);
463 vsnprintf(buf, sizeof(buf), fmt, args);
464 va_end(args);
465 printk(KERN_ERR "FIX %s: %s\n", s->name, buf);
466}
467
468static void print_trailer(struct kmem_cache *s, struct page *page, u8 *p)
Christoph Lameter81819f02007-05-06 14:49:36 -0700469{
470 unsigned int off; /* Offset of last byte */
Christoph Lametera973e9d2008-03-01 13:40:44 -0800471 u8 *addr = page_address(page);
Christoph Lameter24922682007-07-17 04:03:18 -0700472
473 print_tracking(s, p);
474
475 print_page_info(page);
476
477 printk(KERN_ERR "INFO: Object 0x%p @offset=%tu fp=0x%p\n\n",
478 p, p - addr, get_freepointer(s, p));
479
480 if (p > addr + 16)
481 print_section("Bytes b4", p - 16, 16);
482
Pekka Enberg0ebd6522008-07-19 14:17:22 +0300483 print_section("Object", p, min_t(unsigned long, s->objsize, PAGE_SIZE));
Christoph Lameter81819f02007-05-06 14:49:36 -0700484
485 if (s->flags & SLAB_RED_ZONE)
486 print_section("Redzone", p + s->objsize,
487 s->inuse - s->objsize);
488
Christoph Lameter81819f02007-05-06 14:49:36 -0700489 if (s->offset)
490 off = s->offset + sizeof(void *);
491 else
492 off = s->inuse;
493
Christoph Lameter24922682007-07-17 04:03:18 -0700494 if (s->flags & SLAB_STORE_USER)
Christoph Lameter81819f02007-05-06 14:49:36 -0700495 off += 2 * sizeof(struct track);
Christoph Lameter81819f02007-05-06 14:49:36 -0700496
497 if (off != s->size)
498 /* Beginning of the filler is the free pointer */
Christoph Lameter24922682007-07-17 04:03:18 -0700499 print_section("Padding", p + off, s->size - off);
500
501 dump_stack();
Christoph Lameter81819f02007-05-06 14:49:36 -0700502}
503
504static void object_err(struct kmem_cache *s, struct page *page,
505 u8 *object, char *reason)
506{
Christoph Lameter3dc50632008-04-23 12:28:01 -0700507 slab_bug(s, "%s", reason);
Christoph Lameter24922682007-07-17 04:03:18 -0700508 print_trailer(s, page, object);
Christoph Lameter81819f02007-05-06 14:49:36 -0700509}
510
Christoph Lameter24922682007-07-17 04:03:18 -0700511static void slab_err(struct kmem_cache *s, struct page *page, char *fmt, ...)
Christoph Lameter81819f02007-05-06 14:49:36 -0700512{
513 va_list args;
514 char buf[100];
515
Christoph Lameter24922682007-07-17 04:03:18 -0700516 va_start(args, fmt);
517 vsnprintf(buf, sizeof(buf), fmt, args);
Christoph Lameter81819f02007-05-06 14:49:36 -0700518 va_end(args);
Christoph Lameter3dc50632008-04-23 12:28:01 -0700519 slab_bug(s, "%s", buf);
Christoph Lameter24922682007-07-17 04:03:18 -0700520 print_page_info(page);
Christoph Lameter81819f02007-05-06 14:49:36 -0700521 dump_stack();
522}
523
Christoph Lameterf7cb1932010-09-29 07:15:01 -0500524static void init_object(struct kmem_cache *s, void *object, u8 val)
Christoph Lameter81819f02007-05-06 14:49:36 -0700525{
526 u8 *p = object;
527
528 if (s->flags & __OBJECT_POISON) {
529 memset(p, POISON_FREE, s->objsize - 1);
Pekka Enberg06428782008-01-07 23:20:27 -0800530 p[s->objsize - 1] = POISON_END;
Christoph Lameter81819f02007-05-06 14:49:36 -0700531 }
532
533 if (s->flags & SLAB_RED_ZONE)
Christoph Lameterf7cb1932010-09-29 07:15:01 -0500534 memset(p + s->objsize, val, s->inuse - s->objsize);
Christoph Lameter81819f02007-05-06 14:49:36 -0700535}
536
Christoph Lameter24922682007-07-17 04:03:18 -0700537static u8 *check_bytes(u8 *start, unsigned int value, unsigned int bytes)
Christoph Lameter81819f02007-05-06 14:49:36 -0700538{
539 while (bytes) {
540 if (*start != (u8)value)
Christoph Lameter24922682007-07-17 04:03:18 -0700541 return start;
Christoph Lameter81819f02007-05-06 14:49:36 -0700542 start++;
543 bytes--;
544 }
Christoph Lameter24922682007-07-17 04:03:18 -0700545 return NULL;
546}
547
548static void restore_bytes(struct kmem_cache *s, char *message, u8 data,
549 void *from, void *to)
550{
551 slab_fix(s, "Restoring 0x%p-0x%p=0x%x\n", from, to - 1, data);
552 memset(from, data, to - from);
553}
554
555static int check_bytes_and_report(struct kmem_cache *s, struct page *page,
556 u8 *object, char *what,
Pekka Enberg06428782008-01-07 23:20:27 -0800557 u8 *start, unsigned int value, unsigned int bytes)
Christoph Lameter24922682007-07-17 04:03:18 -0700558{
559 u8 *fault;
560 u8 *end;
561
562 fault = check_bytes(start, value, bytes);
563 if (!fault)
564 return 1;
565
566 end = start + bytes;
567 while (end > fault && end[-1] == value)
568 end--;
569
570 slab_bug(s, "%s overwritten", what);
571 printk(KERN_ERR "INFO: 0x%p-0x%p. First byte 0x%x instead of 0x%x\n",
572 fault, end - 1, fault[0], value);
573 print_trailer(s, page, object);
574
575 restore_bytes(s, what, value, fault, end);
576 return 0;
Christoph Lameter81819f02007-05-06 14:49:36 -0700577}
578
Christoph Lameter81819f02007-05-06 14:49:36 -0700579/*
580 * Object layout:
581 *
582 * object address
583 * Bytes of the object to be managed.
584 * If the freepointer may overlay the object then the free
585 * pointer is the first word of the object.
Christoph Lameter672bba32007-05-09 02:32:39 -0700586 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700587 * Poisoning uses 0x6b (POISON_FREE) and the last byte is
588 * 0xa5 (POISON_END)
589 *
590 * object + s->objsize
591 * Padding to reach word boundary. This is also used for Redzoning.
Christoph Lameter672bba32007-05-09 02:32:39 -0700592 * Padding is extended by another word if Redzoning is enabled and
593 * objsize == inuse.
594 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700595 * We fill with 0xbb (RED_INACTIVE) for inactive objects and with
596 * 0xcc (RED_ACTIVE) for objects in use.
597 *
598 * object + s->inuse
Christoph Lameter672bba32007-05-09 02:32:39 -0700599 * Meta data starts here.
600 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700601 * A. Free pointer (if we cannot overwrite object on free)
602 * B. Tracking data for SLAB_STORE_USER
Christoph Lameter672bba32007-05-09 02:32:39 -0700603 * C. Padding to reach required alignment boundary or at mininum
Christoph Lameter6446faa2008-02-15 23:45:26 -0800604 * one word if debugging is on to be able to detect writes
Christoph Lameter672bba32007-05-09 02:32:39 -0700605 * before the word boundary.
606 *
607 * Padding is done using 0x5a (POISON_INUSE)
Christoph Lameter81819f02007-05-06 14:49:36 -0700608 *
609 * object + s->size
Christoph Lameter672bba32007-05-09 02:32:39 -0700610 * Nothing is used beyond s->size.
Christoph Lameter81819f02007-05-06 14:49:36 -0700611 *
Christoph Lameter672bba32007-05-09 02:32:39 -0700612 * If slabcaches are merged then the objsize and inuse boundaries are mostly
613 * ignored. And therefore no slab options that rely on these boundaries
Christoph Lameter81819f02007-05-06 14:49:36 -0700614 * may be used with merged slabcaches.
615 */
616
Christoph Lameter81819f02007-05-06 14:49:36 -0700617static int check_pad_bytes(struct kmem_cache *s, struct page *page, u8 *p)
618{
619 unsigned long off = s->inuse; /* The end of info */
620
621 if (s->offset)
622 /* Freepointer is placed after the object. */
623 off += sizeof(void *);
624
625 if (s->flags & SLAB_STORE_USER)
626 /* We also have user information there */
627 off += 2 * sizeof(struct track);
628
629 if (s->size == off)
630 return 1;
631
Christoph Lameter24922682007-07-17 04:03:18 -0700632 return check_bytes_and_report(s, page, p, "Object padding",
633 p + off, POISON_INUSE, s->size - off);
Christoph Lameter81819f02007-05-06 14:49:36 -0700634}
635
Christoph Lameter39b26462008-04-14 19:11:30 +0300636/* Check the pad bytes at the end of a slab page */
Christoph Lameter81819f02007-05-06 14:49:36 -0700637static int slab_pad_check(struct kmem_cache *s, struct page *page)
638{
Christoph Lameter24922682007-07-17 04:03:18 -0700639 u8 *start;
640 u8 *fault;
641 u8 *end;
642 int length;
643 int remainder;
Christoph Lameter81819f02007-05-06 14:49:36 -0700644
645 if (!(s->flags & SLAB_POISON))
646 return 1;
647
Christoph Lametera973e9d2008-03-01 13:40:44 -0800648 start = page_address(page);
Lai Jiangshanab9a0f12011-03-10 15:21:48 +0800649 length = (PAGE_SIZE << compound_order(page)) - s->reserved;
Christoph Lameter39b26462008-04-14 19:11:30 +0300650 end = start + length;
651 remainder = length % s->size;
Christoph Lameter81819f02007-05-06 14:49:36 -0700652 if (!remainder)
653 return 1;
654
Christoph Lameter39b26462008-04-14 19:11:30 +0300655 fault = check_bytes(end - remainder, POISON_INUSE, remainder);
Christoph Lameter24922682007-07-17 04:03:18 -0700656 if (!fault)
657 return 1;
658 while (end > fault && end[-1] == POISON_INUSE)
659 end--;
660
661 slab_err(s, page, "Padding overwritten. 0x%p-0x%p", fault, end - 1);
Christoph Lameter39b26462008-04-14 19:11:30 +0300662 print_section("Padding", end - remainder, remainder);
Christoph Lameter24922682007-07-17 04:03:18 -0700663
Eric Dumazet8a3d2712009-09-03 16:08:06 +0200664 restore_bytes(s, "slab padding", POISON_INUSE, end - remainder, end);
Christoph Lameter24922682007-07-17 04:03:18 -0700665 return 0;
Christoph Lameter81819f02007-05-06 14:49:36 -0700666}
667
668static int check_object(struct kmem_cache *s, struct page *page,
Christoph Lameterf7cb1932010-09-29 07:15:01 -0500669 void *object, u8 val)
Christoph Lameter81819f02007-05-06 14:49:36 -0700670{
671 u8 *p = object;
672 u8 *endobject = object + s->objsize;
673
674 if (s->flags & SLAB_RED_ZONE) {
Christoph Lameter24922682007-07-17 04:03:18 -0700675 if (!check_bytes_and_report(s, page, object, "Redzone",
Christoph Lameterf7cb1932010-09-29 07:15:01 -0500676 endobject, val, s->inuse - s->objsize))
Christoph Lameter81819f02007-05-06 14:49:36 -0700677 return 0;
Christoph Lameter81819f02007-05-06 14:49:36 -0700678 } else {
Ingo Molnar3adbefe2008-02-05 17:57:39 -0800679 if ((s->flags & SLAB_POISON) && s->objsize < s->inuse) {
680 check_bytes_and_report(s, page, p, "Alignment padding",
681 endobject, POISON_INUSE, s->inuse - s->objsize);
682 }
Christoph Lameter81819f02007-05-06 14:49:36 -0700683 }
684
685 if (s->flags & SLAB_POISON) {
Christoph Lameterf7cb1932010-09-29 07:15:01 -0500686 if (val != SLUB_RED_ACTIVE && (s->flags & __OBJECT_POISON) &&
Christoph Lameter24922682007-07-17 04:03:18 -0700687 (!check_bytes_and_report(s, page, p, "Poison", p,
688 POISON_FREE, s->objsize - 1) ||
689 !check_bytes_and_report(s, page, p, "Poison",
Pekka Enberg06428782008-01-07 23:20:27 -0800690 p + s->objsize - 1, POISON_END, 1)))
Christoph Lameter81819f02007-05-06 14:49:36 -0700691 return 0;
Christoph Lameter81819f02007-05-06 14:49:36 -0700692 /*
693 * check_pad_bytes cleans up on its own.
694 */
695 check_pad_bytes(s, page, p);
696 }
697
Christoph Lameterf7cb1932010-09-29 07:15:01 -0500698 if (!s->offset && val == SLUB_RED_ACTIVE)
Christoph Lameter81819f02007-05-06 14:49:36 -0700699 /*
700 * Object and freepointer overlap. Cannot check
701 * freepointer while object is allocated.
702 */
703 return 1;
704
705 /* Check free pointer validity */
706 if (!check_valid_pointer(s, page, get_freepointer(s, p))) {
707 object_err(s, page, p, "Freepointer corrupt");
708 /*
Nick Andrew9f6c708e2008-12-05 14:08:08 +1100709 * No choice but to zap it and thus lose the remainder
Christoph Lameter81819f02007-05-06 14:49:36 -0700710 * of the free objects in this slab. May cause
Christoph Lameter672bba32007-05-09 02:32:39 -0700711 * another error because the object count is now wrong.
Christoph Lameter81819f02007-05-06 14:49:36 -0700712 */
Christoph Lametera973e9d2008-03-01 13:40:44 -0800713 set_freepointer(s, p, NULL);
Christoph Lameter81819f02007-05-06 14:49:36 -0700714 return 0;
715 }
716 return 1;
717}
718
719static int check_slab(struct kmem_cache *s, struct page *page)
720{
Christoph Lameter39b26462008-04-14 19:11:30 +0300721 int maxobj;
722
Christoph Lameter81819f02007-05-06 14:49:36 -0700723 VM_BUG_ON(!irqs_disabled());
724
725 if (!PageSlab(page)) {
Christoph Lameter24922682007-07-17 04:03:18 -0700726 slab_err(s, page, "Not a valid slab page");
Christoph Lameter81819f02007-05-06 14:49:36 -0700727 return 0;
728 }
Christoph Lameter39b26462008-04-14 19:11:30 +0300729
Lai Jiangshanab9a0f12011-03-10 15:21:48 +0800730 maxobj = order_objects(compound_order(page), s->size, s->reserved);
Christoph Lameter39b26462008-04-14 19:11:30 +0300731 if (page->objects > maxobj) {
732 slab_err(s, page, "objects %u > max %u",
733 s->name, page->objects, maxobj);
734 return 0;
735 }
736 if (page->inuse > page->objects) {
Christoph Lameter24922682007-07-17 04:03:18 -0700737 slab_err(s, page, "inuse %u > max %u",
Christoph Lameter39b26462008-04-14 19:11:30 +0300738 s->name, page->inuse, page->objects);
Christoph Lameter81819f02007-05-06 14:49:36 -0700739 return 0;
740 }
741 /* Slab_pad_check fixes things up after itself */
742 slab_pad_check(s, page);
743 return 1;
744}
745
746/*
Christoph Lameter672bba32007-05-09 02:32:39 -0700747 * Determine if a certain object on a page is on the freelist. Must hold the
748 * slab lock to guarantee that the chains are in a consistent state.
Christoph Lameter81819f02007-05-06 14:49:36 -0700749 */
750static int on_freelist(struct kmem_cache *s, struct page *page, void *search)
751{
752 int nr = 0;
753 void *fp = page->freelist;
754 void *object = NULL;
Christoph Lameter224a88b2008-04-14 19:11:31 +0300755 unsigned long max_objects;
Christoph Lameter81819f02007-05-06 14:49:36 -0700756
Christoph Lameter39b26462008-04-14 19:11:30 +0300757 while (fp && nr <= page->objects) {
Christoph Lameter81819f02007-05-06 14:49:36 -0700758 if (fp == search)
759 return 1;
760 if (!check_valid_pointer(s, page, fp)) {
761 if (object) {
762 object_err(s, page, object,
763 "Freechain corrupt");
Christoph Lametera973e9d2008-03-01 13:40:44 -0800764 set_freepointer(s, object, NULL);
Christoph Lameter81819f02007-05-06 14:49:36 -0700765 break;
766 } else {
Christoph Lameter24922682007-07-17 04:03:18 -0700767 slab_err(s, page, "Freepointer corrupt");
Christoph Lametera973e9d2008-03-01 13:40:44 -0800768 page->freelist = NULL;
Christoph Lameter39b26462008-04-14 19:11:30 +0300769 page->inuse = page->objects;
Christoph Lameter24922682007-07-17 04:03:18 -0700770 slab_fix(s, "Freelist cleared");
Christoph Lameter81819f02007-05-06 14:49:36 -0700771 return 0;
772 }
773 break;
774 }
775 object = fp;
776 fp = get_freepointer(s, object);
777 nr++;
778 }
779
Lai Jiangshanab9a0f12011-03-10 15:21:48 +0800780 max_objects = order_objects(compound_order(page), s->size, s->reserved);
Cyrill Gorcunov210b5c02008-10-22 23:00:38 +0400781 if (max_objects > MAX_OBJS_PER_PAGE)
782 max_objects = MAX_OBJS_PER_PAGE;
Christoph Lameter224a88b2008-04-14 19:11:31 +0300783
784 if (page->objects != max_objects) {
785 slab_err(s, page, "Wrong number of objects. Found %d but "
786 "should be %d", page->objects, max_objects);
787 page->objects = max_objects;
788 slab_fix(s, "Number of objects adjusted.");
789 }
Christoph Lameter39b26462008-04-14 19:11:30 +0300790 if (page->inuse != page->objects - nr) {
Christoph Lameter70d71222007-05-06 14:49:47 -0700791 slab_err(s, page, "Wrong object count. Counter is %d but "
Christoph Lameter39b26462008-04-14 19:11:30 +0300792 "counted were %d", page->inuse, page->objects - nr);
793 page->inuse = page->objects - nr;
Christoph Lameter24922682007-07-17 04:03:18 -0700794 slab_fix(s, "Object count adjusted.");
Christoph Lameter81819f02007-05-06 14:49:36 -0700795 }
796 return search == NULL;
797}
798
Christoph Lameter0121c6192008-04-29 16:11:12 -0700799static void trace(struct kmem_cache *s, struct page *page, void *object,
800 int alloc)
Christoph Lameter3ec09742007-05-16 22:11:00 -0700801{
802 if (s->flags & SLAB_TRACE) {
803 printk(KERN_INFO "TRACE %s %s 0x%p inuse=%d fp=0x%p\n",
804 s->name,
805 alloc ? "alloc" : "free",
806 object, page->inuse,
807 page->freelist);
808
809 if (!alloc)
810 print_section("Object", (void *)object, s->objsize);
811
812 dump_stack();
813 }
814}
815
Christoph Lameter643b1132007-05-06 14:49:42 -0700816/*
Christoph Lameterc016b0b2010-08-20 12:37:16 -0500817 * Hooks for other subsystems that check memory allocations. In a typical
818 * production configuration these hooks all should produce no code at all.
819 */
820static inline int slab_pre_alloc_hook(struct kmem_cache *s, gfp_t flags)
821{
Christoph Lameterc1d50832010-08-20 12:37:17 -0500822 flags &= gfp_allowed_mask;
Christoph Lameterc016b0b2010-08-20 12:37:16 -0500823 lockdep_trace_alloc(flags);
824 might_sleep_if(flags & __GFP_WAIT);
825
826 return should_failslab(s->objsize, flags, s->flags);
827}
828
829static inline void slab_post_alloc_hook(struct kmem_cache *s, gfp_t flags, void *object)
830{
Christoph Lameterc1d50832010-08-20 12:37:17 -0500831 flags &= gfp_allowed_mask;
Eric Dumazetb3d41882011-02-14 18:35:22 +0100832 kmemcheck_slab_alloc(s, flags, object, slab_ksize(s));
Christoph Lameterc016b0b2010-08-20 12:37:16 -0500833 kmemleak_alloc_recursive(object, s->objsize, 1, s->flags, flags);
834}
835
836static inline void slab_free_hook(struct kmem_cache *s, void *x)
837{
838 kmemleak_free_recursive(x, s->flags);
Christoph Lameterc016b0b2010-08-20 12:37:16 -0500839
Christoph Lameterd3f661d2011-02-25 11:38:52 -0600840 /*
841 * Trouble is that we may no longer disable interupts in the fast path
842 * So in order to make the debug calls that expect irqs to be
843 * disabled we need to disable interrupts temporarily.
844 */
845#if defined(CONFIG_KMEMCHECK) || defined(CONFIG_LOCKDEP)
846 {
847 unsigned long flags;
848
849 local_irq_save(flags);
850 kmemcheck_slab_free(s, x, s->objsize);
851 debug_check_no_locks_freed(x, s->objsize);
852 if (!(s->flags & SLAB_DEBUG_OBJECTS))
853 debug_check_no_obj_freed(x, s->objsize);
854 local_irq_restore(flags);
855 }
856#endif
Christoph Lameterc016b0b2010-08-20 12:37:16 -0500857}
858
859/*
Christoph Lameter672bba32007-05-09 02:32:39 -0700860 * Tracking of fully allocated slabs for debugging purposes.
Christoph Lameter643b1132007-05-06 14:49:42 -0700861 */
Christoph Lametere95eed52007-05-06 14:49:44 -0700862static void add_full(struct kmem_cache_node *n, struct page *page)
Christoph Lameter643b1132007-05-06 14:49:42 -0700863{
Christoph Lameter643b1132007-05-06 14:49:42 -0700864 spin_lock(&n->list_lock);
865 list_add(&page->lru, &n->full);
866 spin_unlock(&n->list_lock);
867}
868
869static void remove_full(struct kmem_cache *s, struct page *page)
870{
871 struct kmem_cache_node *n;
872
873 if (!(s->flags & SLAB_STORE_USER))
874 return;
875
876 n = get_node(s, page_to_nid(page));
877
878 spin_lock(&n->list_lock);
879 list_del(&page->lru);
880 spin_unlock(&n->list_lock);
881}
882
Christoph Lameter0f389ec2008-04-14 18:53:02 +0300883/* Tracking of the number of slabs for debugging purposes */
884static inline unsigned long slabs_node(struct kmem_cache *s, int node)
885{
886 struct kmem_cache_node *n = get_node(s, node);
887
888 return atomic_long_read(&n->nr_slabs);
889}
890
Alexander Beregalov26c02cf2009-06-11 14:08:48 +0400891static inline unsigned long node_nr_slabs(struct kmem_cache_node *n)
892{
893 return atomic_long_read(&n->nr_slabs);
894}
895
Christoph Lameter205ab992008-04-14 19:11:40 +0300896static inline void inc_slabs_node(struct kmem_cache *s, int node, int objects)
Christoph Lameter0f389ec2008-04-14 18:53:02 +0300897{
898 struct kmem_cache_node *n = get_node(s, node);
899
900 /*
901 * May be called early in order to allocate a slab for the
902 * kmem_cache_node structure. Solve the chicken-egg
903 * dilemma by deferring the increment of the count during
904 * bootstrap (see early_kmem_cache_node_alloc).
905 */
Christoph Lameter7340cc82010-09-28 08:10:26 -0500906 if (n) {
Christoph Lameter0f389ec2008-04-14 18:53:02 +0300907 atomic_long_inc(&n->nr_slabs);
Christoph Lameter205ab992008-04-14 19:11:40 +0300908 atomic_long_add(objects, &n->total_objects);
909 }
Christoph Lameter0f389ec2008-04-14 18:53:02 +0300910}
Christoph Lameter205ab992008-04-14 19:11:40 +0300911static inline void dec_slabs_node(struct kmem_cache *s, int node, int objects)
Christoph Lameter0f389ec2008-04-14 18:53:02 +0300912{
913 struct kmem_cache_node *n = get_node(s, node);
914
915 atomic_long_dec(&n->nr_slabs);
Christoph Lameter205ab992008-04-14 19:11:40 +0300916 atomic_long_sub(objects, &n->total_objects);
Christoph Lameter0f389ec2008-04-14 18:53:02 +0300917}
918
919/* Object debug checks for alloc/free paths */
Christoph Lameter3ec09742007-05-16 22:11:00 -0700920static void setup_object_debug(struct kmem_cache *s, struct page *page,
921 void *object)
922{
923 if (!(s->flags & (SLAB_STORE_USER|SLAB_RED_ZONE|__OBJECT_POISON)))
924 return;
925
Christoph Lameterf7cb1932010-09-29 07:15:01 -0500926 init_object(s, object, SLUB_RED_INACTIVE);
Christoph Lameter3ec09742007-05-16 22:11:00 -0700927 init_tracking(s, object);
928}
929
Christoph Lameter15370662010-08-20 12:37:12 -0500930static noinline int alloc_debug_processing(struct kmem_cache *s, struct page *page,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +0300931 void *object, unsigned long addr)
Christoph Lameter81819f02007-05-06 14:49:36 -0700932{
933 if (!check_slab(s, page))
934 goto bad;
935
Christoph Lameterd692ef62008-02-15 23:45:24 -0800936 if (!on_freelist(s, page, object)) {
Christoph Lameter24922682007-07-17 04:03:18 -0700937 object_err(s, page, object, "Object already allocated");
Christoph Lameter70d71222007-05-06 14:49:47 -0700938 goto bad;
Christoph Lameter81819f02007-05-06 14:49:36 -0700939 }
940
941 if (!check_valid_pointer(s, page, object)) {
942 object_err(s, page, object, "Freelist Pointer check fails");
Christoph Lameter70d71222007-05-06 14:49:47 -0700943 goto bad;
Christoph Lameter81819f02007-05-06 14:49:36 -0700944 }
945
Christoph Lameterf7cb1932010-09-29 07:15:01 -0500946 if (!check_object(s, page, object, SLUB_RED_INACTIVE))
Christoph Lameter81819f02007-05-06 14:49:36 -0700947 goto bad;
Christoph Lameter81819f02007-05-06 14:49:36 -0700948
Christoph Lameter3ec09742007-05-16 22:11:00 -0700949 /* Success perform special debug activities for allocs */
950 if (s->flags & SLAB_STORE_USER)
951 set_track(s, object, TRACK_ALLOC, addr);
952 trace(s, page, object, 1);
Christoph Lameterf7cb1932010-09-29 07:15:01 -0500953 init_object(s, object, SLUB_RED_ACTIVE);
Christoph Lameter81819f02007-05-06 14:49:36 -0700954 return 1;
Christoph Lameter3ec09742007-05-16 22:11:00 -0700955
Christoph Lameter81819f02007-05-06 14:49:36 -0700956bad:
957 if (PageSlab(page)) {
958 /*
959 * If this is a slab page then lets do the best we can
960 * to avoid issues in the future. Marking all objects
Christoph Lameter672bba32007-05-09 02:32:39 -0700961 * as used avoids touching the remaining objects.
Christoph Lameter81819f02007-05-06 14:49:36 -0700962 */
Christoph Lameter24922682007-07-17 04:03:18 -0700963 slab_fix(s, "Marking all objects used");
Christoph Lameter39b26462008-04-14 19:11:30 +0300964 page->inuse = page->objects;
Christoph Lametera973e9d2008-03-01 13:40:44 -0800965 page->freelist = NULL;
Christoph Lameter81819f02007-05-06 14:49:36 -0700966 }
967 return 0;
968}
969
Christoph Lameter15370662010-08-20 12:37:12 -0500970static noinline int free_debug_processing(struct kmem_cache *s,
971 struct page *page, void *object, unsigned long addr)
Christoph Lameter81819f02007-05-06 14:49:36 -0700972{
973 if (!check_slab(s, page))
974 goto fail;
975
976 if (!check_valid_pointer(s, page, object)) {
Christoph Lameter70d71222007-05-06 14:49:47 -0700977 slab_err(s, page, "Invalid object pointer 0x%p", object);
Christoph Lameter81819f02007-05-06 14:49:36 -0700978 goto fail;
979 }
980
981 if (on_freelist(s, page, object)) {
Christoph Lameter24922682007-07-17 04:03:18 -0700982 object_err(s, page, object, "Object already free");
Christoph Lameter81819f02007-05-06 14:49:36 -0700983 goto fail;
984 }
985
Christoph Lameterf7cb1932010-09-29 07:15:01 -0500986 if (!check_object(s, page, object, SLUB_RED_ACTIVE))
Christoph Lameter81819f02007-05-06 14:49:36 -0700987 return 0;
988
989 if (unlikely(s != page->slab)) {
Ingo Molnar3adbefe2008-02-05 17:57:39 -0800990 if (!PageSlab(page)) {
Christoph Lameter70d71222007-05-06 14:49:47 -0700991 slab_err(s, page, "Attempt to free object(0x%p) "
992 "outside of slab", object);
Ingo Molnar3adbefe2008-02-05 17:57:39 -0800993 } else if (!page->slab) {
Christoph Lameter81819f02007-05-06 14:49:36 -0700994 printk(KERN_ERR
Christoph Lameter70d71222007-05-06 14:49:47 -0700995 "SLUB <none>: no slab for object 0x%p.\n",
Christoph Lameter81819f02007-05-06 14:49:36 -0700996 object);
Christoph Lameter70d71222007-05-06 14:49:47 -0700997 dump_stack();
Pekka Enberg06428782008-01-07 23:20:27 -0800998 } else
Christoph Lameter24922682007-07-17 04:03:18 -0700999 object_err(s, page, object,
1000 "page slab pointer corrupt.");
Christoph Lameter81819f02007-05-06 14:49:36 -07001001 goto fail;
1002 }
Christoph Lameter3ec09742007-05-16 22:11:00 -07001003
1004 /* Special debug activities for freeing objects */
Andy Whitcroft8a38082d2008-07-23 21:27:18 -07001005 if (!PageSlubFrozen(page) && !page->freelist)
Christoph Lameter3ec09742007-05-16 22:11:00 -07001006 remove_full(s, page);
1007 if (s->flags & SLAB_STORE_USER)
1008 set_track(s, object, TRACK_FREE, addr);
1009 trace(s, page, object, 0);
Christoph Lameterf7cb1932010-09-29 07:15:01 -05001010 init_object(s, object, SLUB_RED_INACTIVE);
Christoph Lameter81819f02007-05-06 14:49:36 -07001011 return 1;
Christoph Lameter3ec09742007-05-16 22:11:00 -07001012
Christoph Lameter81819f02007-05-06 14:49:36 -07001013fail:
Christoph Lameter24922682007-07-17 04:03:18 -07001014 slab_fix(s, "Object at 0x%p not freed", object);
Christoph Lameter81819f02007-05-06 14:49:36 -07001015 return 0;
1016}
1017
Christoph Lameter41ecc552007-05-09 02:32:44 -07001018static int __init setup_slub_debug(char *str)
1019{
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001020 slub_debug = DEBUG_DEFAULT_FLAGS;
1021 if (*str++ != '=' || !*str)
1022 /*
1023 * No options specified. Switch on full debugging.
1024 */
1025 goto out;
Christoph Lameter41ecc552007-05-09 02:32:44 -07001026
1027 if (*str == ',')
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001028 /*
1029 * No options but restriction on slabs. This means full
1030 * debugging for slabs matching a pattern.
1031 */
1032 goto check_slabs;
1033
David Rientjesfa5ec8a2009-07-07 00:14:14 -07001034 if (tolower(*str) == 'o') {
1035 /*
1036 * Avoid enabling debugging on caches if its minimum order
1037 * would increase as a result.
1038 */
1039 disable_higher_order_debug = 1;
1040 goto out;
1041 }
1042
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001043 slub_debug = 0;
1044 if (*str == '-')
1045 /*
1046 * Switch off all debugging measures.
1047 */
1048 goto out;
1049
1050 /*
1051 * Determine which debug features should be switched on
1052 */
Pekka Enberg06428782008-01-07 23:20:27 -08001053 for (; *str && *str != ','; str++) {
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001054 switch (tolower(*str)) {
1055 case 'f':
1056 slub_debug |= SLAB_DEBUG_FREE;
1057 break;
1058 case 'z':
1059 slub_debug |= SLAB_RED_ZONE;
1060 break;
1061 case 'p':
1062 slub_debug |= SLAB_POISON;
1063 break;
1064 case 'u':
1065 slub_debug |= SLAB_STORE_USER;
1066 break;
1067 case 't':
1068 slub_debug |= SLAB_TRACE;
1069 break;
Dmitry Monakhov4c13dd32010-02-26 09:36:12 +03001070 case 'a':
1071 slub_debug |= SLAB_FAILSLAB;
1072 break;
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001073 default:
1074 printk(KERN_ERR "slub_debug option '%c' "
Pekka Enberg06428782008-01-07 23:20:27 -08001075 "unknown. skipped\n", *str);
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001076 }
1077 }
1078
1079check_slabs:
1080 if (*str == ',')
Christoph Lameter41ecc552007-05-09 02:32:44 -07001081 slub_debug_slabs = str + 1;
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001082out:
Christoph Lameter41ecc552007-05-09 02:32:44 -07001083 return 1;
1084}
1085
1086__setup("slub_debug", setup_slub_debug);
1087
Christoph Lameterba0268a2007-09-11 15:24:11 -07001088static unsigned long kmem_cache_flags(unsigned long objsize,
1089 unsigned long flags, const char *name,
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07001090 void (*ctor)(void *))
Christoph Lameter41ecc552007-05-09 02:32:44 -07001091{
1092 /*
Christoph Lametere1533622008-02-15 23:45:24 -08001093 * Enable debugging if selected on the kernel commandline.
Christoph Lameter41ecc552007-05-09 02:32:44 -07001094 */
Christoph Lametere1533622008-02-15 23:45:24 -08001095 if (slub_debug && (!slub_debug_slabs ||
David Rientjes3de472132009-07-27 18:30:35 -07001096 !strncmp(slub_debug_slabs, name, strlen(slub_debug_slabs))))
1097 flags |= slub_debug;
Christoph Lameterba0268a2007-09-11 15:24:11 -07001098
1099 return flags;
Christoph Lameter41ecc552007-05-09 02:32:44 -07001100}
1101#else
Christoph Lameter3ec09742007-05-16 22:11:00 -07001102static inline void setup_object_debug(struct kmem_cache *s,
1103 struct page *page, void *object) {}
Christoph Lameter41ecc552007-05-09 02:32:44 -07001104
Christoph Lameter3ec09742007-05-16 22:11:00 -07001105static inline int alloc_debug_processing(struct kmem_cache *s,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03001106 struct page *page, void *object, unsigned long addr) { return 0; }
Christoph Lameter41ecc552007-05-09 02:32:44 -07001107
Christoph Lameter3ec09742007-05-16 22:11:00 -07001108static inline int free_debug_processing(struct kmem_cache *s,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03001109 struct page *page, void *object, unsigned long addr) { return 0; }
Christoph Lameter41ecc552007-05-09 02:32:44 -07001110
Christoph Lameter41ecc552007-05-09 02:32:44 -07001111static inline int slab_pad_check(struct kmem_cache *s, struct page *page)
1112 { return 1; }
1113static inline int check_object(struct kmem_cache *s, struct page *page,
Christoph Lameterf7cb1932010-09-29 07:15:01 -05001114 void *object, u8 val) { return 1; }
Christoph Lameter3ec09742007-05-16 22:11:00 -07001115static inline void add_full(struct kmem_cache_node *n, struct page *page) {}
Christoph Lameterba0268a2007-09-11 15:24:11 -07001116static inline unsigned long kmem_cache_flags(unsigned long objsize,
1117 unsigned long flags, const char *name,
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07001118 void (*ctor)(void *))
Christoph Lameterba0268a2007-09-11 15:24:11 -07001119{
1120 return flags;
1121}
Christoph Lameter41ecc552007-05-09 02:32:44 -07001122#define slub_debug 0
Christoph Lameter0f389ec2008-04-14 18:53:02 +03001123
Ingo Molnarfdaa45e2009-09-15 11:00:26 +02001124#define disable_higher_order_debug 0
1125
Christoph Lameter0f389ec2008-04-14 18:53:02 +03001126static inline unsigned long slabs_node(struct kmem_cache *s, int node)
1127 { return 0; }
Alexander Beregalov26c02cf2009-06-11 14:08:48 +04001128static inline unsigned long node_nr_slabs(struct kmem_cache_node *n)
1129 { return 0; }
Christoph Lameter205ab992008-04-14 19:11:40 +03001130static inline void inc_slabs_node(struct kmem_cache *s, int node,
1131 int objects) {}
1132static inline void dec_slabs_node(struct kmem_cache *s, int node,
1133 int objects) {}
Christoph Lameter7d550c52010-08-25 14:07:16 -05001134
1135static inline int slab_pre_alloc_hook(struct kmem_cache *s, gfp_t flags)
1136 { return 0; }
1137
1138static inline void slab_post_alloc_hook(struct kmem_cache *s, gfp_t flags,
1139 void *object) {}
1140
1141static inline void slab_free_hook(struct kmem_cache *s, void *x) {}
1142
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05001143#endif /* CONFIG_SLUB_DEBUG */
Christoph Lameter205ab992008-04-14 19:11:40 +03001144
Christoph Lameter81819f02007-05-06 14:49:36 -07001145/*
1146 * Slab allocation and freeing
1147 */
Christoph Lameter65c33762008-04-14 19:11:40 +03001148static inline struct page *alloc_slab_page(gfp_t flags, int node,
1149 struct kmem_cache_order_objects oo)
1150{
1151 int order = oo_order(oo);
1152
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001153 flags |= __GFP_NOTRACK;
1154
Christoph Lameter2154a332010-07-09 14:07:10 -05001155 if (node == NUMA_NO_NODE)
Christoph Lameter65c33762008-04-14 19:11:40 +03001156 return alloc_pages(flags, order);
1157 else
Minchan Kim6b65aaf2010-04-14 23:58:36 +09001158 return alloc_pages_exact_node(node, flags, order);
Christoph Lameter65c33762008-04-14 19:11:40 +03001159}
1160
Christoph Lameter81819f02007-05-06 14:49:36 -07001161static struct page *allocate_slab(struct kmem_cache *s, gfp_t flags, int node)
1162{
Pekka Enberg06428782008-01-07 23:20:27 -08001163 struct page *page;
Christoph Lameter834f3d12008-04-14 19:11:31 +03001164 struct kmem_cache_order_objects oo = s->oo;
Pekka Enbergba522702009-06-24 21:59:51 +03001165 gfp_t alloc_gfp;
Christoph Lameter81819f02007-05-06 14:49:36 -07001166
Christoph Lameterb7a49f02008-02-14 14:21:32 -08001167 flags |= s->allocflags;
Mel Gormane12ba742007-10-16 01:25:52 -07001168
Pekka Enbergba522702009-06-24 21:59:51 +03001169 /*
1170 * Let the initial higher-order allocation fail under memory pressure
1171 * so we fall-back to the minimum order allocation.
1172 */
1173 alloc_gfp = (flags | __GFP_NOWARN | __GFP_NORETRY) & ~__GFP_NOFAIL;
1174
1175 page = alloc_slab_page(alloc_gfp, node, oo);
Christoph Lameter65c33762008-04-14 19:11:40 +03001176 if (unlikely(!page)) {
1177 oo = s->min;
1178 /*
1179 * Allocation may have failed due to fragmentation.
1180 * Try a lower order alloc if possible
1181 */
1182 page = alloc_slab_page(flags, node, oo);
1183 if (!page)
1184 return NULL;
Christoph Lameter81819f02007-05-06 14:49:36 -07001185
Christoph Lameter84e554e62009-12-18 16:26:23 -06001186 stat(s, ORDER_FALLBACK);
Christoph Lameter65c33762008-04-14 19:11:40 +03001187 }
Vegard Nossum5a896d92008-04-04 00:54:48 +02001188
1189 if (kmemcheck_enabled
Amerigo Wang5086c389c2009-08-19 21:44:13 +03001190 && !(s->flags & (SLAB_NOTRACK | DEBUG_DEFAULT_FLAGS))) {
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001191 int pages = 1 << oo_order(oo);
1192
1193 kmemcheck_alloc_shadow(page, oo_order(oo), flags, node);
1194
1195 /*
1196 * Objects from caches that have a constructor don't get
1197 * cleared when they're allocated, so we need to do it here.
1198 */
1199 if (s->ctor)
1200 kmemcheck_mark_uninitialized_pages(page, pages);
1201 else
1202 kmemcheck_mark_unallocated_pages(page, pages);
Vegard Nossum5a896d92008-04-04 00:54:48 +02001203 }
1204
Christoph Lameter834f3d12008-04-14 19:11:31 +03001205 page->objects = oo_objects(oo);
Christoph Lameter81819f02007-05-06 14:49:36 -07001206 mod_zone_page_state(page_zone(page),
1207 (s->flags & SLAB_RECLAIM_ACCOUNT) ?
1208 NR_SLAB_RECLAIMABLE : NR_SLAB_UNRECLAIMABLE,
Christoph Lameter65c33762008-04-14 19:11:40 +03001209 1 << oo_order(oo));
Christoph Lameter81819f02007-05-06 14:49:36 -07001210
1211 return page;
1212}
1213
1214static void setup_object(struct kmem_cache *s, struct page *page,
1215 void *object)
1216{
Christoph Lameter3ec09742007-05-16 22:11:00 -07001217 setup_object_debug(s, page, object);
Christoph Lameter4f104932007-05-06 14:50:17 -07001218 if (unlikely(s->ctor))
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07001219 s->ctor(object);
Christoph Lameter81819f02007-05-06 14:49:36 -07001220}
1221
1222static struct page *new_slab(struct kmem_cache *s, gfp_t flags, int node)
1223{
1224 struct page *page;
Christoph Lameter81819f02007-05-06 14:49:36 -07001225 void *start;
Christoph Lameter81819f02007-05-06 14:49:36 -07001226 void *last;
1227 void *p;
1228
Christoph Lameter6cb06222007-10-16 01:25:41 -07001229 BUG_ON(flags & GFP_SLAB_BUG_MASK);
Christoph Lameter81819f02007-05-06 14:49:36 -07001230
Christoph Lameter6cb06222007-10-16 01:25:41 -07001231 page = allocate_slab(s,
1232 flags & (GFP_RECLAIM_MASK | GFP_CONSTRAINT_MASK), node);
Christoph Lameter81819f02007-05-06 14:49:36 -07001233 if (!page)
1234 goto out;
1235
Christoph Lameter205ab992008-04-14 19:11:40 +03001236 inc_slabs_node(s, page_to_nid(page), page->objects);
Christoph Lameter81819f02007-05-06 14:49:36 -07001237 page->slab = s;
1238 page->flags |= 1 << PG_slab;
Christoph Lameter81819f02007-05-06 14:49:36 -07001239
1240 start = page_address(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001241
1242 if (unlikely(s->flags & SLAB_POISON))
Christoph Lameter834f3d12008-04-14 19:11:31 +03001243 memset(start, POISON_INUSE, PAGE_SIZE << compound_order(page));
Christoph Lameter81819f02007-05-06 14:49:36 -07001244
1245 last = start;
Christoph Lameter224a88b2008-04-14 19:11:31 +03001246 for_each_object(p, s, start, page->objects) {
Christoph Lameter81819f02007-05-06 14:49:36 -07001247 setup_object(s, page, last);
1248 set_freepointer(s, last, p);
1249 last = p;
1250 }
1251 setup_object(s, page, last);
Christoph Lametera973e9d2008-03-01 13:40:44 -08001252 set_freepointer(s, last, NULL);
Christoph Lameter81819f02007-05-06 14:49:36 -07001253
1254 page->freelist = start;
1255 page->inuse = 0;
1256out:
Christoph Lameter81819f02007-05-06 14:49:36 -07001257 return page;
1258}
1259
1260static void __free_slab(struct kmem_cache *s, struct page *page)
1261{
Christoph Lameter834f3d12008-04-14 19:11:31 +03001262 int order = compound_order(page);
1263 int pages = 1 << order;
Christoph Lameter81819f02007-05-06 14:49:36 -07001264
Christoph Lameteraf537b02010-07-09 14:07:14 -05001265 if (kmem_cache_debug(s)) {
Christoph Lameter81819f02007-05-06 14:49:36 -07001266 void *p;
1267
1268 slab_pad_check(s, page);
Christoph Lameter224a88b2008-04-14 19:11:31 +03001269 for_each_object(p, s, page_address(page),
1270 page->objects)
Christoph Lameterf7cb1932010-09-29 07:15:01 -05001271 check_object(s, page, p, SLUB_RED_INACTIVE);
Christoph Lameter81819f02007-05-06 14:49:36 -07001272 }
1273
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001274 kmemcheck_free_shadow(page, compound_order(page));
Vegard Nossum5a896d92008-04-04 00:54:48 +02001275
Christoph Lameter81819f02007-05-06 14:49:36 -07001276 mod_zone_page_state(page_zone(page),
1277 (s->flags & SLAB_RECLAIM_ACCOUNT) ?
1278 NR_SLAB_RECLAIMABLE : NR_SLAB_UNRECLAIMABLE,
Pekka Enberg06428782008-01-07 23:20:27 -08001279 -pages);
Christoph Lameter81819f02007-05-06 14:49:36 -07001280
Christoph Lameter49bd5222008-04-14 18:52:18 +03001281 __ClearPageSlab(page);
1282 reset_page_mapcount(page);
Nick Piggin1eb5ac62009-05-05 19:13:44 +10001283 if (current->reclaim_state)
1284 current->reclaim_state->reclaimed_slab += pages;
Christoph Lameter834f3d12008-04-14 19:11:31 +03001285 __free_pages(page, order);
Christoph Lameter81819f02007-05-06 14:49:36 -07001286}
1287
Lai Jiangshanda9a6382011-03-10 15:22:00 +08001288#define need_reserve_slab_rcu \
1289 (sizeof(((struct page *)NULL)->lru) < sizeof(struct rcu_head))
1290
Christoph Lameter81819f02007-05-06 14:49:36 -07001291static void rcu_free_slab(struct rcu_head *h)
1292{
1293 struct page *page;
1294
Lai Jiangshanda9a6382011-03-10 15:22:00 +08001295 if (need_reserve_slab_rcu)
1296 page = virt_to_head_page(h);
1297 else
1298 page = container_of((struct list_head *)h, struct page, lru);
1299
Christoph Lameter81819f02007-05-06 14:49:36 -07001300 __free_slab(page->slab, page);
1301}
1302
1303static void free_slab(struct kmem_cache *s, struct page *page)
1304{
1305 if (unlikely(s->flags & SLAB_DESTROY_BY_RCU)) {
Lai Jiangshanda9a6382011-03-10 15:22:00 +08001306 struct rcu_head *head;
1307
1308 if (need_reserve_slab_rcu) {
1309 int order = compound_order(page);
1310 int offset = (PAGE_SIZE << order) - s->reserved;
1311
1312 VM_BUG_ON(s->reserved != sizeof(*head));
1313 head = page_address(page) + offset;
1314 } else {
1315 /*
1316 * RCU free overloads the RCU head over the LRU
1317 */
1318 head = (void *)&page->lru;
1319 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001320
1321 call_rcu(head, rcu_free_slab);
1322 } else
1323 __free_slab(s, page);
1324}
1325
1326static void discard_slab(struct kmem_cache *s, struct page *page)
1327{
Christoph Lameter205ab992008-04-14 19:11:40 +03001328 dec_slabs_node(s, page_to_nid(page), page->objects);
Christoph Lameter81819f02007-05-06 14:49:36 -07001329 free_slab(s, page);
1330}
1331
1332/*
1333 * Per slab locking using the pagelock
1334 */
1335static __always_inline void slab_lock(struct page *page)
1336{
1337 bit_spin_lock(PG_locked, &page->flags);
1338}
1339
1340static __always_inline void slab_unlock(struct page *page)
1341{
Nick Piggina76d3542008-01-07 23:20:27 -08001342 __bit_spin_unlock(PG_locked, &page->flags);
Christoph Lameter81819f02007-05-06 14:49:36 -07001343}
1344
1345static __always_inline int slab_trylock(struct page *page)
1346{
1347 int rc = 1;
1348
1349 rc = bit_spin_trylock(PG_locked, &page->flags);
1350 return rc;
1351}
1352
1353/*
1354 * Management of partially allocated slabs
1355 */
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001356static void add_partial(struct kmem_cache_node *n,
1357 struct page *page, int tail)
Christoph Lameter81819f02007-05-06 14:49:36 -07001358{
Christoph Lametere95eed52007-05-06 14:49:44 -07001359 spin_lock(&n->list_lock);
1360 n->nr_partial++;
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001361 if (tail)
1362 list_add_tail(&page->lru, &n->partial);
1363 else
1364 list_add(&page->lru, &n->partial);
Christoph Lameter81819f02007-05-06 14:49:36 -07001365 spin_unlock(&n->list_lock);
1366}
1367
Christoph Lameter62e346a2010-09-28 08:10:28 -05001368static inline void __remove_partial(struct kmem_cache_node *n,
1369 struct page *page)
1370{
1371 list_del(&page->lru);
1372 n->nr_partial--;
1373}
1374
Christoph Lameter0121c6192008-04-29 16:11:12 -07001375static void remove_partial(struct kmem_cache *s, struct page *page)
Christoph Lameter81819f02007-05-06 14:49:36 -07001376{
1377 struct kmem_cache_node *n = get_node(s, page_to_nid(page));
1378
1379 spin_lock(&n->list_lock);
Christoph Lameter62e346a2010-09-28 08:10:28 -05001380 __remove_partial(n, page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001381 spin_unlock(&n->list_lock);
1382}
1383
1384/*
Christoph Lameter672bba32007-05-09 02:32:39 -07001385 * Lock slab and remove from the partial list.
Christoph Lameter81819f02007-05-06 14:49:36 -07001386 *
Christoph Lameter672bba32007-05-09 02:32:39 -07001387 * Must hold list_lock.
Christoph Lameter81819f02007-05-06 14:49:36 -07001388 */
Christoph Lameter0121c6192008-04-29 16:11:12 -07001389static inline int lock_and_freeze_slab(struct kmem_cache_node *n,
1390 struct page *page)
Christoph Lameter81819f02007-05-06 14:49:36 -07001391{
1392 if (slab_trylock(page)) {
Christoph Lameter62e346a2010-09-28 08:10:28 -05001393 __remove_partial(n, page);
Andy Whitcroft8a38082d2008-07-23 21:27:18 -07001394 __SetPageSlubFrozen(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001395 return 1;
1396 }
1397 return 0;
1398}
1399
1400/*
Christoph Lameter672bba32007-05-09 02:32:39 -07001401 * Try to allocate a partial slab from a specific node.
Christoph Lameter81819f02007-05-06 14:49:36 -07001402 */
1403static struct page *get_partial_node(struct kmem_cache_node *n)
1404{
1405 struct page *page;
1406
1407 /*
1408 * Racy check. If we mistakenly see no partial slabs then we
1409 * just allocate an empty slab. If we mistakenly try to get a
Christoph Lameter672bba32007-05-09 02:32:39 -07001410 * partial slab and there is none available then get_partials()
1411 * will return NULL.
Christoph Lameter81819f02007-05-06 14:49:36 -07001412 */
1413 if (!n || !n->nr_partial)
1414 return NULL;
1415
1416 spin_lock(&n->list_lock);
1417 list_for_each_entry(page, &n->partial, lru)
Christoph Lameter4b6f0752007-05-16 22:10:53 -07001418 if (lock_and_freeze_slab(n, page))
Christoph Lameter81819f02007-05-06 14:49:36 -07001419 goto out;
1420 page = NULL;
1421out:
1422 spin_unlock(&n->list_lock);
1423 return page;
1424}
1425
1426/*
Christoph Lameter672bba32007-05-09 02:32:39 -07001427 * Get a page from somewhere. Search in increasing NUMA distances.
Christoph Lameter81819f02007-05-06 14:49:36 -07001428 */
1429static struct page *get_any_partial(struct kmem_cache *s, gfp_t flags)
1430{
1431#ifdef CONFIG_NUMA
1432 struct zonelist *zonelist;
Mel Gormandd1a2392008-04-28 02:12:17 -07001433 struct zoneref *z;
Mel Gorman54a6eb52008-04-28 02:12:16 -07001434 struct zone *zone;
1435 enum zone_type high_zoneidx = gfp_zone(flags);
Christoph Lameter81819f02007-05-06 14:49:36 -07001436 struct page *page;
1437
1438 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07001439 * The defrag ratio allows a configuration of the tradeoffs between
1440 * inter node defragmentation and node local allocations. A lower
1441 * defrag_ratio increases the tendency to do local allocations
1442 * instead of attempting to obtain partial slabs from other nodes.
Christoph Lameter81819f02007-05-06 14:49:36 -07001443 *
Christoph Lameter672bba32007-05-09 02:32:39 -07001444 * If the defrag_ratio is set to 0 then kmalloc() always
1445 * returns node local objects. If the ratio is higher then kmalloc()
1446 * may return off node objects because partial slabs are obtained
1447 * from other nodes and filled up.
Christoph Lameter81819f02007-05-06 14:49:36 -07001448 *
Christoph Lameter6446faa2008-02-15 23:45:26 -08001449 * If /sys/kernel/slab/xx/defrag_ratio is set to 100 (which makes
Christoph Lameter672bba32007-05-09 02:32:39 -07001450 * defrag_ratio = 1000) then every (well almost) allocation will
1451 * first attempt to defrag slab caches on other nodes. This means
1452 * scanning over all nodes to look for partial slabs which may be
1453 * expensive if we do it every time we are trying to find a slab
1454 * with available objects.
Christoph Lameter81819f02007-05-06 14:49:36 -07001455 */
Christoph Lameter98246012008-01-07 23:20:26 -08001456 if (!s->remote_node_defrag_ratio ||
1457 get_cycles() % 1024 > s->remote_node_defrag_ratio)
Christoph Lameter81819f02007-05-06 14:49:36 -07001458 return NULL;
1459
Miao Xiec0ff7452010-05-24 14:32:08 -07001460 get_mems_allowed();
Mel Gorman0e884602008-04-28 02:12:14 -07001461 zonelist = node_zonelist(slab_node(current->mempolicy), flags);
Mel Gorman54a6eb52008-04-28 02:12:16 -07001462 for_each_zone_zonelist(zone, z, zonelist, high_zoneidx) {
Christoph Lameter81819f02007-05-06 14:49:36 -07001463 struct kmem_cache_node *n;
1464
Mel Gorman54a6eb52008-04-28 02:12:16 -07001465 n = get_node(s, zone_to_nid(zone));
Christoph Lameter81819f02007-05-06 14:49:36 -07001466
Mel Gorman54a6eb52008-04-28 02:12:16 -07001467 if (n && cpuset_zone_allowed_hardwall(zone, flags) &&
David Rientjes3b89d7d2009-02-22 17:40:07 -08001468 n->nr_partial > s->min_partial) {
Christoph Lameter81819f02007-05-06 14:49:36 -07001469 page = get_partial_node(n);
Miao Xiec0ff7452010-05-24 14:32:08 -07001470 if (page) {
1471 put_mems_allowed();
Christoph Lameter81819f02007-05-06 14:49:36 -07001472 return page;
Miao Xiec0ff7452010-05-24 14:32:08 -07001473 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001474 }
1475 }
Miao Xiec0ff7452010-05-24 14:32:08 -07001476 put_mems_allowed();
Christoph Lameter81819f02007-05-06 14:49:36 -07001477#endif
1478 return NULL;
1479}
1480
1481/*
1482 * Get a partial page, lock it and return it.
1483 */
1484static struct page *get_partial(struct kmem_cache *s, gfp_t flags, int node)
1485{
1486 struct page *page;
Christoph Lameter2154a332010-07-09 14:07:10 -05001487 int searchnode = (node == NUMA_NO_NODE) ? numa_node_id() : node;
Christoph Lameter81819f02007-05-06 14:49:36 -07001488
1489 page = get_partial_node(get_node(s, searchnode));
Christoph Lameterbc6488e2010-07-26 10:41:14 -05001490 if (page || node != -1)
Christoph Lameter81819f02007-05-06 14:49:36 -07001491 return page;
1492
1493 return get_any_partial(s, flags);
1494}
1495
1496/*
1497 * Move a page back to the lists.
1498 *
1499 * Must be called with the slab lock held.
1500 *
1501 * On exit the slab lock will have been dropped.
1502 */
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001503static void unfreeze_slab(struct kmem_cache *s, struct page *page, int tail)
Namhyung Kim34789732010-09-29 21:02:14 +09001504 __releases(bitlock)
Christoph Lameter81819f02007-05-06 14:49:36 -07001505{
Christoph Lametere95eed52007-05-06 14:49:44 -07001506 struct kmem_cache_node *n = get_node(s, page_to_nid(page));
1507
Andy Whitcroft8a38082d2008-07-23 21:27:18 -07001508 __ClearPageSlubFrozen(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001509 if (page->inuse) {
Christoph Lametere95eed52007-05-06 14:49:44 -07001510
Christoph Lametera973e9d2008-03-01 13:40:44 -08001511 if (page->freelist) {
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001512 add_partial(n, page, tail);
Christoph Lameter84e554e62009-12-18 16:26:23 -06001513 stat(s, tail ? DEACTIVATE_TO_TAIL : DEACTIVATE_TO_HEAD);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001514 } else {
Christoph Lameter84e554e62009-12-18 16:26:23 -06001515 stat(s, DEACTIVATE_FULL);
Christoph Lameteraf537b02010-07-09 14:07:14 -05001516 if (kmem_cache_debug(s) && (s->flags & SLAB_STORE_USER))
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001517 add_full(n, page);
1518 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001519 slab_unlock(page);
1520 } else {
Christoph Lameter84e554e62009-12-18 16:26:23 -06001521 stat(s, DEACTIVATE_EMPTY);
David Rientjes3b89d7d2009-02-22 17:40:07 -08001522 if (n->nr_partial < s->min_partial) {
Christoph Lametere95eed52007-05-06 14:49:44 -07001523 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07001524 * Adding an empty slab to the partial slabs in order
1525 * to avoid page allocator overhead. This slab needs
1526 * to come after the other slabs with objects in
Christoph Lameter6446faa2008-02-15 23:45:26 -08001527 * so that the others get filled first. That way the
1528 * size of the partial list stays small.
1529 *
Christoph Lameter0121c6192008-04-29 16:11:12 -07001530 * kmem_cache_shrink can reclaim any empty slabs from
1531 * the partial list.
Christoph Lametere95eed52007-05-06 14:49:44 -07001532 */
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001533 add_partial(n, page, 1);
Christoph Lametere95eed52007-05-06 14:49:44 -07001534 slab_unlock(page);
1535 } else {
1536 slab_unlock(page);
Christoph Lameter84e554e62009-12-18 16:26:23 -06001537 stat(s, FREE_SLAB);
Christoph Lametere95eed52007-05-06 14:49:44 -07001538 discard_slab(s, page);
1539 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001540 }
1541}
1542
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06001543#ifdef CONFIG_CMPXCHG_LOCAL
1544#ifdef CONFIG_PREEMPT
1545/*
1546 * Calculate the next globally unique transaction for disambiguiation
1547 * during cmpxchg. The transactions start with the cpu number and are then
1548 * incremented by CONFIG_NR_CPUS.
1549 */
1550#define TID_STEP roundup_pow_of_two(CONFIG_NR_CPUS)
1551#else
1552/*
1553 * No preemption supported therefore also no need to check for
1554 * different cpus.
1555 */
1556#define TID_STEP 1
1557#endif
1558
1559static inline unsigned long next_tid(unsigned long tid)
1560{
1561 return tid + TID_STEP;
1562}
1563
1564static inline unsigned int tid_to_cpu(unsigned long tid)
1565{
1566 return tid % TID_STEP;
1567}
1568
1569static inline unsigned long tid_to_event(unsigned long tid)
1570{
1571 return tid / TID_STEP;
1572}
1573
1574static inline unsigned int init_tid(int cpu)
1575{
1576 return cpu;
1577}
1578
1579static inline void note_cmpxchg_failure(const char *n,
1580 const struct kmem_cache *s, unsigned long tid)
1581{
1582#ifdef SLUB_DEBUG_CMPXCHG
1583 unsigned long actual_tid = __this_cpu_read(s->cpu_slab->tid);
1584
1585 printk(KERN_INFO "%s %s: cmpxchg redo ", n, s->name);
1586
1587#ifdef CONFIG_PREEMPT
1588 if (tid_to_cpu(tid) != tid_to_cpu(actual_tid))
1589 printk("due to cpu change %d -> %d\n",
1590 tid_to_cpu(tid), tid_to_cpu(actual_tid));
1591 else
1592#endif
1593 if (tid_to_event(tid) != tid_to_event(actual_tid))
1594 printk("due to cpu running other code. Event %ld->%ld\n",
1595 tid_to_event(tid), tid_to_event(actual_tid));
1596 else
1597 printk("for unknown reason: actual=%lx was=%lx target=%lx\n",
1598 actual_tid, tid, next_tid(tid));
1599#endif
1600}
1601
1602#endif
1603
1604void init_kmem_cache_cpus(struct kmem_cache *s)
1605{
1606#if defined(CONFIG_CMPXCHG_LOCAL) && defined(CONFIG_PREEMPT)
1607 int cpu;
1608
1609 for_each_possible_cpu(cpu)
1610 per_cpu_ptr(s->cpu_slab, cpu)->tid = init_tid(cpu);
1611#endif
1612
1613}
Christoph Lameter81819f02007-05-06 14:49:36 -07001614/*
1615 * Remove the cpu slab
1616 */
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001617static void deactivate_slab(struct kmem_cache *s, struct kmem_cache_cpu *c)
Namhyung Kim34789732010-09-29 21:02:14 +09001618 __releases(bitlock)
Christoph Lameter81819f02007-05-06 14:49:36 -07001619{
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001620 struct page *page = c->page;
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001621 int tail = 1;
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001622
Christoph Lameterb773ad72008-03-04 11:10:17 -08001623 if (page->freelist)
Christoph Lameter84e554e62009-12-18 16:26:23 -06001624 stat(s, DEACTIVATE_REMOTE_FREES);
Christoph Lameter894b8782007-05-10 03:15:16 -07001625 /*
Christoph Lameter6446faa2008-02-15 23:45:26 -08001626 * Merge cpu freelist into slab freelist. Typically we get here
Christoph Lameter894b8782007-05-10 03:15:16 -07001627 * because both freelists are empty. So this is unlikely
1628 * to occur.
1629 */
Christoph Lametera973e9d2008-03-01 13:40:44 -08001630 while (unlikely(c->freelist)) {
Christoph Lameter894b8782007-05-10 03:15:16 -07001631 void **object;
1632
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001633 tail = 0; /* Hot objects. Put the slab first */
1634
Christoph Lameter894b8782007-05-10 03:15:16 -07001635 /* Retrieve object from cpu_freelist */
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001636 object = c->freelist;
Christoph Lameterff120592009-12-18 16:26:22 -06001637 c->freelist = get_freepointer(s, c->freelist);
Christoph Lameter894b8782007-05-10 03:15:16 -07001638
1639 /* And put onto the regular freelist */
Christoph Lameterff120592009-12-18 16:26:22 -06001640 set_freepointer(s, object, page->freelist);
Christoph Lameter894b8782007-05-10 03:15:16 -07001641 page->freelist = object;
1642 page->inuse--;
1643 }
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001644 c->page = NULL;
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06001645#ifdef CONFIG_CMPXCHG_LOCAL
1646 c->tid = next_tid(c->tid);
1647#endif
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001648 unfreeze_slab(s, page, tail);
Christoph Lameter81819f02007-05-06 14:49:36 -07001649}
1650
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001651static inline void flush_slab(struct kmem_cache *s, struct kmem_cache_cpu *c)
Christoph Lameter81819f02007-05-06 14:49:36 -07001652{
Christoph Lameter84e554e62009-12-18 16:26:23 -06001653 stat(s, CPUSLAB_FLUSH);
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001654 slab_lock(c->page);
1655 deactivate_slab(s, c);
Christoph Lameter81819f02007-05-06 14:49:36 -07001656}
1657
1658/*
1659 * Flush cpu slab.
Christoph Lameter6446faa2008-02-15 23:45:26 -08001660 *
Christoph Lameter81819f02007-05-06 14:49:36 -07001661 * Called from IPI handler with interrupts disabled.
1662 */
Christoph Lameter0c710012007-07-17 04:03:24 -07001663static inline void __flush_cpu_slab(struct kmem_cache *s, int cpu)
Christoph Lameter81819f02007-05-06 14:49:36 -07001664{
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06001665 struct kmem_cache_cpu *c = per_cpu_ptr(s->cpu_slab, cpu);
Christoph Lameter81819f02007-05-06 14:49:36 -07001666
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001667 if (likely(c && c->page))
1668 flush_slab(s, c);
Christoph Lameter81819f02007-05-06 14:49:36 -07001669}
1670
1671static void flush_cpu_slab(void *d)
1672{
1673 struct kmem_cache *s = d;
Christoph Lameter81819f02007-05-06 14:49:36 -07001674
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001675 __flush_cpu_slab(s, smp_processor_id());
Christoph Lameter81819f02007-05-06 14:49:36 -07001676}
1677
1678static void flush_all(struct kmem_cache *s)
1679{
Jens Axboe15c8b6c2008-05-09 09:39:44 +02001680 on_each_cpu(flush_cpu_slab, s, 1);
Christoph Lameter81819f02007-05-06 14:49:36 -07001681}
1682
1683/*
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001684 * Check if the objects in a per cpu structure fit numa
1685 * locality expectations.
1686 */
1687static inline int node_match(struct kmem_cache_cpu *c, int node)
1688{
1689#ifdef CONFIG_NUMA
Christoph Lameter2154a332010-07-09 14:07:10 -05001690 if (node != NUMA_NO_NODE && c->node != node)
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001691 return 0;
1692#endif
1693 return 1;
1694}
1695
Pekka Enberg781b2ba2009-06-10 18:50:32 +03001696static int count_free(struct page *page)
1697{
1698 return page->objects - page->inuse;
1699}
1700
1701static unsigned long count_partial(struct kmem_cache_node *n,
1702 int (*get_count)(struct page *))
1703{
1704 unsigned long flags;
1705 unsigned long x = 0;
1706 struct page *page;
1707
1708 spin_lock_irqsave(&n->list_lock, flags);
1709 list_for_each_entry(page, &n->partial, lru)
1710 x += get_count(page);
1711 spin_unlock_irqrestore(&n->list_lock, flags);
1712 return x;
1713}
1714
Alexander Beregalov26c02cf2009-06-11 14:08:48 +04001715static inline unsigned long node_nr_objs(struct kmem_cache_node *n)
1716{
1717#ifdef CONFIG_SLUB_DEBUG
1718 return atomic_long_read(&n->total_objects);
1719#else
1720 return 0;
1721#endif
1722}
1723
Pekka Enberg781b2ba2009-06-10 18:50:32 +03001724static noinline void
1725slab_out_of_memory(struct kmem_cache *s, gfp_t gfpflags, int nid)
1726{
1727 int node;
1728
1729 printk(KERN_WARNING
1730 "SLUB: Unable to allocate memory on node %d (gfp=0x%x)\n",
1731 nid, gfpflags);
1732 printk(KERN_WARNING " cache: %s, object size: %d, buffer size: %d, "
1733 "default order: %d, min order: %d\n", s->name, s->objsize,
1734 s->size, oo_order(s->oo), oo_order(s->min));
1735
David Rientjesfa5ec8a2009-07-07 00:14:14 -07001736 if (oo_order(s->min) > get_order(s->objsize))
1737 printk(KERN_WARNING " %s debugging increased min order, use "
1738 "slub_debug=O to disable.\n", s->name);
1739
Pekka Enberg781b2ba2009-06-10 18:50:32 +03001740 for_each_online_node(node) {
1741 struct kmem_cache_node *n = get_node(s, node);
1742 unsigned long nr_slabs;
1743 unsigned long nr_objs;
1744 unsigned long nr_free;
1745
1746 if (!n)
1747 continue;
1748
Alexander Beregalov26c02cf2009-06-11 14:08:48 +04001749 nr_free = count_partial(n, count_free);
1750 nr_slabs = node_nr_slabs(n);
1751 nr_objs = node_nr_objs(n);
Pekka Enberg781b2ba2009-06-10 18:50:32 +03001752
1753 printk(KERN_WARNING
1754 " node %d: slabs: %ld, objs: %ld, free: %ld\n",
1755 node, nr_slabs, nr_objs, nr_free);
1756 }
1757}
1758
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001759/*
Christoph Lameter894b8782007-05-10 03:15:16 -07001760 * Slow path. The lockless freelist is empty or we need to perform
1761 * debugging duties.
Christoph Lameter81819f02007-05-06 14:49:36 -07001762 *
Christoph Lameter894b8782007-05-10 03:15:16 -07001763 * Interrupts are disabled.
Christoph Lameter81819f02007-05-06 14:49:36 -07001764 *
Christoph Lameter894b8782007-05-10 03:15:16 -07001765 * Processing is still very fast if new objects have been freed to the
1766 * regular freelist. In that case we simply take over the regular freelist
1767 * as the lockless freelist and zap the regular freelist.
Christoph Lameter81819f02007-05-06 14:49:36 -07001768 *
Christoph Lameter894b8782007-05-10 03:15:16 -07001769 * If that is not working then we fall back to the partial lists. We take the
1770 * first element of the freelist as the object to allocate now and move the
1771 * rest of the freelist to the lockless freelist.
1772 *
1773 * And if we were unable to get a new slab from the partial slab lists then
Christoph Lameter6446faa2008-02-15 23:45:26 -08001774 * we need to allocate a new slab. This is the slowest path since it involves
1775 * a call to the page allocator and the setup of a new slab.
Christoph Lameter81819f02007-05-06 14:49:36 -07001776 */
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03001777static void *__slab_alloc(struct kmem_cache *s, gfp_t gfpflags, int node,
1778 unsigned long addr, struct kmem_cache_cpu *c)
Christoph Lameter81819f02007-05-06 14:49:36 -07001779{
Christoph Lameter81819f02007-05-06 14:49:36 -07001780 void **object;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001781 struct page *new;
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06001782#ifdef CONFIG_CMPXCHG_LOCAL
1783 unsigned long flags;
1784
1785 local_irq_save(flags);
1786#ifdef CONFIG_PREEMPT
1787 /*
1788 * We may have been preempted and rescheduled on a different
1789 * cpu before disabling interrupts. Need to reload cpu area
1790 * pointer.
1791 */
1792 c = this_cpu_ptr(s->cpu_slab);
1793#endif
1794#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07001795
Linus Torvaldse72e9c22008-03-27 20:56:33 -07001796 /* We handle __GFP_ZERO in the caller */
1797 gfpflags &= ~__GFP_ZERO;
1798
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001799 if (!c->page)
Christoph Lameter81819f02007-05-06 14:49:36 -07001800 goto new_slab;
1801
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001802 slab_lock(c->page);
1803 if (unlikely(!node_match(c, node)))
Christoph Lameter81819f02007-05-06 14:49:36 -07001804 goto another_slab;
Christoph Lameter6446faa2008-02-15 23:45:26 -08001805
Christoph Lameter84e554e62009-12-18 16:26:23 -06001806 stat(s, ALLOC_REFILL);
Christoph Lameter6446faa2008-02-15 23:45:26 -08001807
Christoph Lameter894b8782007-05-10 03:15:16 -07001808load_freelist:
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001809 object = c->page->freelist;
Christoph Lametera973e9d2008-03-01 13:40:44 -08001810 if (unlikely(!object))
Christoph Lameter81819f02007-05-06 14:49:36 -07001811 goto another_slab;
Christoph Lameteraf537b02010-07-09 14:07:14 -05001812 if (kmem_cache_debug(s))
Christoph Lameter81819f02007-05-06 14:49:36 -07001813 goto debug;
1814
Christoph Lameterff120592009-12-18 16:26:22 -06001815 c->freelist = get_freepointer(s, object);
Christoph Lameter39b26462008-04-14 19:11:30 +03001816 c->page->inuse = c->page->objects;
Christoph Lametera973e9d2008-03-01 13:40:44 -08001817 c->page->freelist = NULL;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001818 c->node = page_to_nid(c->page);
Christoph Lameter1f842602008-01-07 23:20:30 -08001819unlock_out:
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001820 slab_unlock(c->page);
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06001821#ifdef CONFIG_CMPXCHG_LOCAL
1822 c->tid = next_tid(c->tid);
1823 local_irq_restore(flags);
1824#endif
Christoph Lameter84e554e62009-12-18 16:26:23 -06001825 stat(s, ALLOC_SLOWPATH);
Christoph Lameter81819f02007-05-06 14:49:36 -07001826 return object;
1827
1828another_slab:
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001829 deactivate_slab(s, c);
Christoph Lameter81819f02007-05-06 14:49:36 -07001830
1831new_slab:
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001832 new = get_partial(s, gfpflags, node);
1833 if (new) {
1834 c->page = new;
Christoph Lameter84e554e62009-12-18 16:26:23 -06001835 stat(s, ALLOC_FROM_PARTIAL);
Christoph Lameter894b8782007-05-10 03:15:16 -07001836 goto load_freelist;
Christoph Lameter81819f02007-05-06 14:49:36 -07001837 }
1838
Christoph Lameterc1d50832010-08-20 12:37:17 -05001839 gfpflags &= gfp_allowed_mask;
Christoph Lameterb811c202007-10-16 23:25:51 -07001840 if (gfpflags & __GFP_WAIT)
1841 local_irq_enable();
1842
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001843 new = new_slab(s, gfpflags, node);
Christoph Lameterb811c202007-10-16 23:25:51 -07001844
1845 if (gfpflags & __GFP_WAIT)
1846 local_irq_disable();
1847
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001848 if (new) {
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06001849 c = __this_cpu_ptr(s->cpu_slab);
Christoph Lameter84e554e62009-12-18 16:26:23 -06001850 stat(s, ALLOC_SLAB);
Christoph Lameter05aa3452007-11-05 11:31:58 -08001851 if (c->page)
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001852 flush_slab(s, c);
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001853 slab_lock(new);
Andy Whitcroft8a38082d2008-07-23 21:27:18 -07001854 __SetPageSlubFrozen(new);
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001855 c->page = new;
Christoph Lameter4b6f0752007-05-16 22:10:53 -07001856 goto load_freelist;
Christoph Lameter81819f02007-05-06 14:49:36 -07001857 }
Pekka Enberg95f85982009-06-11 16:18:09 +03001858 if (!(gfpflags & __GFP_NOWARN) && printk_ratelimit())
1859 slab_out_of_memory(s, gfpflags, node);
Christoph Lameter2fd66c52011-03-22 13:32:53 -05001860#ifdef CONFIG_CMPXCHG_LOCAL
1861 local_irq_restore(flags);
1862#endif
Christoph Lameter71c7a062008-02-14 14:28:01 -08001863 return NULL;
Christoph Lameter81819f02007-05-06 14:49:36 -07001864debug:
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001865 if (!alloc_debug_processing(s, c->page, object, addr))
Christoph Lameter81819f02007-05-06 14:49:36 -07001866 goto another_slab;
Christoph Lameter894b8782007-05-10 03:15:16 -07001867
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001868 c->page->inuse++;
Christoph Lameterff120592009-12-18 16:26:22 -06001869 c->page->freelist = get_freepointer(s, object);
Pekka Enberg15b7c512010-10-02 11:32:32 +03001870 c->node = NUMA_NO_NODE;
Christoph Lameter1f842602008-01-07 23:20:30 -08001871 goto unlock_out;
Christoph Lameter894b8782007-05-10 03:15:16 -07001872}
1873
1874/*
1875 * Inlined fastpath so that allocation functions (kmalloc, kmem_cache_alloc)
1876 * have the fastpath folded into their functions. So no function call
1877 * overhead for requests that can be satisfied on the fastpath.
1878 *
1879 * The fastpath works by first checking if the lockless freelist can be used.
1880 * If not then __slab_alloc is called for slow processing.
1881 *
1882 * Otherwise we can simply pick the next object from the lockless free list.
1883 */
Pekka Enberg06428782008-01-07 23:20:27 -08001884static __always_inline void *slab_alloc(struct kmem_cache *s,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03001885 gfp_t gfpflags, int node, unsigned long addr)
Christoph Lameter894b8782007-05-10 03:15:16 -07001886{
Christoph Lameter894b8782007-05-10 03:15:16 -07001887 void **object;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001888 struct kmem_cache_cpu *c;
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06001889#ifdef CONFIG_CMPXCHG_LOCAL
1890 unsigned long tid;
1891#else
Christoph Lameter1f842602008-01-07 23:20:30 -08001892 unsigned long flags;
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06001893#endif
Christoph Lameter1f842602008-01-07 23:20:30 -08001894
Christoph Lameterc016b0b2010-08-20 12:37:16 -05001895 if (slab_pre_alloc_hook(s, gfpflags))
Akinobu Mita773ff602008-12-23 19:37:01 +09001896 return NULL;
1897
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06001898#ifndef CONFIG_CMPXCHG_LOCAL
Christoph Lameter894b8782007-05-10 03:15:16 -07001899 local_irq_save(flags);
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06001900#else
1901redo:
1902#endif
1903
1904 /*
1905 * Must read kmem_cache cpu data via this cpu ptr. Preemption is
1906 * enabled. We may switch back and forth between cpus while
1907 * reading from one cpu area. That does not matter as long
1908 * as we end up on the original cpu again when doing the cmpxchg.
1909 */
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06001910 c = __this_cpu_ptr(s->cpu_slab);
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06001911
1912#ifdef CONFIG_CMPXCHG_LOCAL
1913 /*
1914 * The transaction ids are globally unique per cpu and per operation on
1915 * a per cpu queue. Thus they can be guarantee that the cmpxchg_double
1916 * occurs on the right processor and that there was no operation on the
1917 * linked list in between.
1918 */
1919 tid = c->tid;
1920 barrier();
1921#endif
1922
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06001923 object = c->freelist;
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06001924 if (unlikely(!object || !node_match(c, node)))
Christoph Lameter894b8782007-05-10 03:15:16 -07001925
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001926 object = __slab_alloc(s, gfpflags, node, addr, c);
Christoph Lameter894b8782007-05-10 03:15:16 -07001927
1928 else {
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06001929#ifdef CONFIG_CMPXCHG_LOCAL
1930 /*
1931 * The cmpxchg will only match if there was no additonal
1932 * operation and if we are on the right processor.
1933 *
1934 * The cmpxchg does the following atomically (without lock semantics!)
1935 * 1. Relocate first pointer to the current per cpu area.
1936 * 2. Verify that tid and freelist have not been changed
1937 * 3. If they were not changed replace tid and freelist
1938 *
1939 * Since this is without lock semantics the protection is only against
1940 * code executing on this cpu *not* from access by other cpus.
1941 */
1942 if (unlikely(!this_cpu_cmpxchg_double(
1943 s->cpu_slab->freelist, s->cpu_slab->tid,
1944 object, tid,
1945 get_freepointer(s, object), next_tid(tid)))) {
1946
1947 note_cmpxchg_failure("slab_alloc", s, tid);
1948 goto redo;
1949 }
1950#else
Christoph Lameterff120592009-12-18 16:26:22 -06001951 c->freelist = get_freepointer(s, object);
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06001952#endif
Christoph Lameter84e554e62009-12-18 16:26:23 -06001953 stat(s, ALLOC_FASTPATH);
Christoph Lameter894b8782007-05-10 03:15:16 -07001954 }
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06001955
1956#ifndef CONFIG_CMPXCHG_LOCAL
Christoph Lameter894b8782007-05-10 03:15:16 -07001957 local_irq_restore(flags);
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06001958#endif
Christoph Lameterd07dbea2007-07-17 04:03:23 -07001959
Pekka Enberg74e21342009-11-25 20:14:48 +02001960 if (unlikely(gfpflags & __GFP_ZERO) && object)
Christoph Lameterff120592009-12-18 16:26:22 -06001961 memset(object, 0, s->objsize);
Christoph Lameterd07dbea2007-07-17 04:03:23 -07001962
Christoph Lameterc016b0b2010-08-20 12:37:16 -05001963 slab_post_alloc_hook(s, gfpflags, object);
Vegard Nossum5a896d92008-04-04 00:54:48 +02001964
Christoph Lameter894b8782007-05-10 03:15:16 -07001965 return object;
Christoph Lameter81819f02007-05-06 14:49:36 -07001966}
1967
1968void *kmem_cache_alloc(struct kmem_cache *s, gfp_t gfpflags)
1969{
Christoph Lameter2154a332010-07-09 14:07:10 -05001970 void *ret = slab_alloc(s, gfpflags, NUMA_NO_NODE, _RET_IP_);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03001971
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02001972 trace_kmem_cache_alloc(_RET_IP_, ret, s->objsize, s->size, gfpflags);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03001973
1974 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07001975}
1976EXPORT_SYMBOL(kmem_cache_alloc);
1977
Li Zefan0f24f122009-12-11 15:45:30 +08001978#ifdef CONFIG_TRACING
Richard Kennedy4a923792010-10-21 10:29:19 +01001979void *kmem_cache_alloc_trace(struct kmem_cache *s, gfp_t gfpflags, size_t size)
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03001980{
Richard Kennedy4a923792010-10-21 10:29:19 +01001981 void *ret = slab_alloc(s, gfpflags, NUMA_NO_NODE, _RET_IP_);
1982 trace_kmalloc(_RET_IP_, ret, size, s->size, gfpflags);
1983 return ret;
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03001984}
Richard Kennedy4a923792010-10-21 10:29:19 +01001985EXPORT_SYMBOL(kmem_cache_alloc_trace);
1986
1987void *kmalloc_order_trace(size_t size, gfp_t flags, unsigned int order)
1988{
1989 void *ret = kmalloc_order(size, flags, order);
1990 trace_kmalloc(_RET_IP_, ret, size, PAGE_SIZE << order, flags);
1991 return ret;
1992}
1993EXPORT_SYMBOL(kmalloc_order_trace);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03001994#endif
1995
Christoph Lameter81819f02007-05-06 14:49:36 -07001996#ifdef CONFIG_NUMA
1997void *kmem_cache_alloc_node(struct kmem_cache *s, gfp_t gfpflags, int node)
1998{
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03001999 void *ret = slab_alloc(s, gfpflags, node, _RET_IP_);
2000
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02002001 trace_kmem_cache_alloc_node(_RET_IP_, ret,
2002 s->objsize, s->size, gfpflags, node);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002003
2004 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07002005}
2006EXPORT_SYMBOL(kmem_cache_alloc_node);
Christoph Lameter81819f02007-05-06 14:49:36 -07002007
Li Zefan0f24f122009-12-11 15:45:30 +08002008#ifdef CONFIG_TRACING
Richard Kennedy4a923792010-10-21 10:29:19 +01002009void *kmem_cache_alloc_node_trace(struct kmem_cache *s,
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002010 gfp_t gfpflags,
Richard Kennedy4a923792010-10-21 10:29:19 +01002011 int node, size_t size)
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002012{
Richard Kennedy4a923792010-10-21 10:29:19 +01002013 void *ret = slab_alloc(s, gfpflags, node, _RET_IP_);
2014
2015 trace_kmalloc_node(_RET_IP_, ret,
2016 size, s->size, gfpflags, node);
2017 return ret;
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002018}
Richard Kennedy4a923792010-10-21 10:29:19 +01002019EXPORT_SYMBOL(kmem_cache_alloc_node_trace);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002020#endif
Namhyung Kim5d1f57e2010-09-29 21:02:15 +09002021#endif
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002022
Christoph Lameter81819f02007-05-06 14:49:36 -07002023/*
Christoph Lameter894b8782007-05-10 03:15:16 -07002024 * Slow patch handling. This may still be called frequently since objects
2025 * have a longer lifetime than the cpu slabs in most processing loads.
Christoph Lameter81819f02007-05-06 14:49:36 -07002026 *
Christoph Lameter894b8782007-05-10 03:15:16 -07002027 * So we still attempt to reduce cache line usage. Just take the slab
2028 * lock and free the item. If there is no additional partial page
2029 * handling required then we can return immediately.
Christoph Lameter81819f02007-05-06 14:49:36 -07002030 */
Christoph Lameter894b8782007-05-10 03:15:16 -07002031static void __slab_free(struct kmem_cache *s, struct page *page,
Christoph Lameterff120592009-12-18 16:26:22 -06002032 void *x, unsigned long addr)
Christoph Lameter81819f02007-05-06 14:49:36 -07002033{
2034 void *prior;
2035 void **object = (void *)x;
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002036#ifdef CONFIG_CMPXCHG_LOCAL
2037 unsigned long flags;
Christoph Lameter81819f02007-05-06 14:49:36 -07002038
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002039 local_irq_save(flags);
2040#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07002041 slab_lock(page);
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002042 stat(s, FREE_SLOWPATH);
Christoph Lameter81819f02007-05-06 14:49:36 -07002043
Christoph Lameteraf537b02010-07-09 14:07:14 -05002044 if (kmem_cache_debug(s))
Christoph Lameter81819f02007-05-06 14:49:36 -07002045 goto debug;
Christoph Lameter6446faa2008-02-15 23:45:26 -08002046
Christoph Lameter81819f02007-05-06 14:49:36 -07002047checks_ok:
Christoph Lameterff120592009-12-18 16:26:22 -06002048 prior = page->freelist;
2049 set_freepointer(s, object, prior);
Christoph Lameter81819f02007-05-06 14:49:36 -07002050 page->freelist = object;
2051 page->inuse--;
2052
Andy Whitcroft8a38082d2008-07-23 21:27:18 -07002053 if (unlikely(PageSlubFrozen(page))) {
Christoph Lameter84e554e62009-12-18 16:26:23 -06002054 stat(s, FREE_FROZEN);
Christoph Lameter81819f02007-05-06 14:49:36 -07002055 goto out_unlock;
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08002056 }
Christoph Lameter81819f02007-05-06 14:49:36 -07002057
2058 if (unlikely(!page->inuse))
2059 goto slab_empty;
2060
2061 /*
Christoph Lameter6446faa2008-02-15 23:45:26 -08002062 * Objects left in the slab. If it was not on the partial list before
Christoph Lameter81819f02007-05-06 14:49:36 -07002063 * then add it.
2064 */
Christoph Lametera973e9d2008-03-01 13:40:44 -08002065 if (unlikely(!prior)) {
Christoph Lameter7c2e1322008-01-07 23:20:27 -08002066 add_partial(get_node(s, page_to_nid(page)), page, 1);
Christoph Lameter84e554e62009-12-18 16:26:23 -06002067 stat(s, FREE_ADD_PARTIAL);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08002068 }
Christoph Lameter81819f02007-05-06 14:49:36 -07002069
2070out_unlock:
2071 slab_unlock(page);
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002072#ifdef CONFIG_CMPXCHG_LOCAL
2073 local_irq_restore(flags);
2074#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07002075 return;
2076
2077slab_empty:
Christoph Lametera973e9d2008-03-01 13:40:44 -08002078 if (prior) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002079 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07002080 * Slab still on the partial list.
Christoph Lameter81819f02007-05-06 14:49:36 -07002081 */
2082 remove_partial(s, page);
Christoph Lameter84e554e62009-12-18 16:26:23 -06002083 stat(s, FREE_REMOVE_PARTIAL);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08002084 }
Christoph Lameter81819f02007-05-06 14:49:36 -07002085 slab_unlock(page);
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002086#ifdef CONFIG_CMPXCHG_LOCAL
2087 local_irq_restore(flags);
2088#endif
Christoph Lameter84e554e62009-12-18 16:26:23 -06002089 stat(s, FREE_SLAB);
Christoph Lameter81819f02007-05-06 14:49:36 -07002090 discard_slab(s, page);
Christoph Lameter81819f02007-05-06 14:49:36 -07002091 return;
2092
2093debug:
Christoph Lameter3ec09742007-05-16 22:11:00 -07002094 if (!free_debug_processing(s, page, x, addr))
Christoph Lameter77c5e2d2007-05-06 14:49:42 -07002095 goto out_unlock;
Christoph Lameter77c5e2d2007-05-06 14:49:42 -07002096 goto checks_ok;
Christoph Lameter81819f02007-05-06 14:49:36 -07002097}
2098
Christoph Lameter894b8782007-05-10 03:15:16 -07002099/*
2100 * Fastpath with forced inlining to produce a kfree and kmem_cache_free that
2101 * can perform fastpath freeing without additional function calls.
2102 *
2103 * The fastpath is only possible if we are freeing to the current cpu slab
2104 * of this processor. This typically the case if we have just allocated
2105 * the item before.
2106 *
2107 * If fastpath is not possible then fall back to __slab_free where we deal
2108 * with all sorts of special processing.
2109 */
Pekka Enberg06428782008-01-07 23:20:27 -08002110static __always_inline void slab_free(struct kmem_cache *s,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03002111 struct page *page, void *x, unsigned long addr)
Christoph Lameter894b8782007-05-10 03:15:16 -07002112{
2113 void **object = (void *)x;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002114 struct kmem_cache_cpu *c;
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002115#ifdef CONFIG_CMPXCHG_LOCAL
2116 unsigned long tid;
2117#else
Christoph Lameter1f842602008-01-07 23:20:30 -08002118 unsigned long flags;
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002119#endif
Christoph Lameter1f842602008-01-07 23:20:30 -08002120
Christoph Lameterc016b0b2010-08-20 12:37:16 -05002121 slab_free_hook(s, x);
2122
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002123#ifndef CONFIG_CMPXCHG_LOCAL
Christoph Lameter894b8782007-05-10 03:15:16 -07002124 local_irq_save(flags);
Christoph Lametera24c5a02011-03-15 12:45:21 -05002125
2126#else
2127redo:
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002128#endif
2129
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002130 /*
2131 * Determine the currently cpus per cpu slab.
2132 * The cpu may change afterward. However that does not matter since
2133 * data is retrieved via this pointer. If we are on the same cpu
2134 * during the cmpxchg then the free will succedd.
2135 */
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06002136 c = __this_cpu_ptr(s->cpu_slab);
Christoph Lameterc016b0b2010-08-20 12:37:16 -05002137
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002138#ifdef CONFIG_CMPXCHG_LOCAL
2139 tid = c->tid;
2140 barrier();
2141#endif
Christoph Lameterc016b0b2010-08-20 12:37:16 -05002142
Pekka Enberg15b7c512010-10-02 11:32:32 +03002143 if (likely(page == c->page && c->node != NUMA_NO_NODE)) {
Christoph Lameterff120592009-12-18 16:26:22 -06002144 set_freepointer(s, object, c->freelist);
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002145
2146#ifdef CONFIG_CMPXCHG_LOCAL
2147 if (unlikely(!this_cpu_cmpxchg_double(
2148 s->cpu_slab->freelist, s->cpu_slab->tid,
2149 c->freelist, tid,
2150 object, next_tid(tid)))) {
2151
2152 note_cmpxchg_failure("slab_free", s, tid);
2153 goto redo;
2154 }
2155#else
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002156 c->freelist = object;
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002157#endif
Christoph Lameter84e554e62009-12-18 16:26:23 -06002158 stat(s, FREE_FASTPATH);
Christoph Lameter894b8782007-05-10 03:15:16 -07002159 } else
Christoph Lameterff120592009-12-18 16:26:22 -06002160 __slab_free(s, page, x, addr);
Christoph Lameter894b8782007-05-10 03:15:16 -07002161
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002162#ifndef CONFIG_CMPXCHG_LOCAL
Christoph Lameter894b8782007-05-10 03:15:16 -07002163 local_irq_restore(flags);
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002164#endif
Christoph Lameter894b8782007-05-10 03:15:16 -07002165}
2166
Christoph Lameter81819f02007-05-06 14:49:36 -07002167void kmem_cache_free(struct kmem_cache *s, void *x)
2168{
Christoph Lameter77c5e2d2007-05-06 14:49:42 -07002169 struct page *page;
Christoph Lameter81819f02007-05-06 14:49:36 -07002170
Christoph Lameterb49af682007-05-06 14:49:41 -07002171 page = virt_to_head_page(x);
Christoph Lameter81819f02007-05-06 14:49:36 -07002172
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03002173 slab_free(s, page, x, _RET_IP_);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002174
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02002175 trace_kmem_cache_free(_RET_IP_, x);
Christoph Lameter81819f02007-05-06 14:49:36 -07002176}
2177EXPORT_SYMBOL(kmem_cache_free);
2178
Christoph Lameter81819f02007-05-06 14:49:36 -07002179/*
Christoph Lameter672bba32007-05-09 02:32:39 -07002180 * Object placement in a slab is made very easy because we always start at
2181 * offset 0. If we tune the size of the object to the alignment then we can
2182 * get the required alignment by putting one properly sized object after
2183 * another.
Christoph Lameter81819f02007-05-06 14:49:36 -07002184 *
2185 * Notice that the allocation order determines the sizes of the per cpu
2186 * caches. Each processor has always one slab available for allocations.
2187 * Increasing the allocation order reduces the number of times that slabs
Christoph Lameter672bba32007-05-09 02:32:39 -07002188 * must be moved on and off the partial lists and is therefore a factor in
Christoph Lameter81819f02007-05-06 14:49:36 -07002189 * locking overhead.
Christoph Lameter81819f02007-05-06 14:49:36 -07002190 */
2191
2192/*
2193 * Mininum / Maximum order of slab pages. This influences locking overhead
2194 * and slab fragmentation. A higher order reduces the number of partial slabs
2195 * and increases the number of allocations possible without having to
2196 * take the list_lock.
2197 */
2198static int slub_min_order;
Christoph Lameter114e9e82008-04-14 19:11:41 +03002199static int slub_max_order = PAGE_ALLOC_COSTLY_ORDER;
Christoph Lameter9b2cd502008-04-14 19:11:41 +03002200static int slub_min_objects;
Christoph Lameter81819f02007-05-06 14:49:36 -07002201
2202/*
2203 * Merge control. If this is set then no merging of slab caches will occur.
Christoph Lameter672bba32007-05-09 02:32:39 -07002204 * (Could be removed. This was introduced to pacify the merge skeptics.)
Christoph Lameter81819f02007-05-06 14:49:36 -07002205 */
2206static int slub_nomerge;
2207
2208/*
Christoph Lameter81819f02007-05-06 14:49:36 -07002209 * Calculate the order of allocation given an slab object size.
2210 *
Christoph Lameter672bba32007-05-09 02:32:39 -07002211 * The order of allocation has significant impact on performance and other
2212 * system components. Generally order 0 allocations should be preferred since
2213 * order 0 does not cause fragmentation in the page allocator. Larger objects
2214 * be problematic to put into order 0 slabs because there may be too much
Christoph Lameterc124f5b2008-04-14 19:13:29 +03002215 * unused space left. We go to a higher order if more than 1/16th of the slab
Christoph Lameter672bba32007-05-09 02:32:39 -07002216 * would be wasted.
Christoph Lameter81819f02007-05-06 14:49:36 -07002217 *
Christoph Lameter672bba32007-05-09 02:32:39 -07002218 * In order to reach satisfactory performance we must ensure that a minimum
2219 * number of objects is in one slab. Otherwise we may generate too much
2220 * activity on the partial lists which requires taking the list_lock. This is
2221 * less a concern for large slabs though which are rarely used.
Christoph Lameter81819f02007-05-06 14:49:36 -07002222 *
Christoph Lameter672bba32007-05-09 02:32:39 -07002223 * slub_max_order specifies the order where we begin to stop considering the
2224 * number of objects in a slab as critical. If we reach slub_max_order then
2225 * we try to keep the page order as low as possible. So we accept more waste
2226 * of space in favor of a small page order.
2227 *
2228 * Higher order allocations also allow the placement of more objects in a
2229 * slab and thereby reduce object handling overhead. If the user has
2230 * requested a higher mininum order then we start with that one instead of
2231 * the smallest order which will fit the object.
Christoph Lameter81819f02007-05-06 14:49:36 -07002232 */
Christoph Lameter5e6d4442007-05-09 02:32:46 -07002233static inline int slab_order(int size, int min_objects,
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08002234 int max_order, int fract_leftover, int reserved)
Christoph Lameter81819f02007-05-06 14:49:36 -07002235{
2236 int order;
2237 int rem;
Christoph Lameter6300ea72007-07-17 04:03:20 -07002238 int min_order = slub_min_order;
Christoph Lameter81819f02007-05-06 14:49:36 -07002239
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08002240 if (order_objects(min_order, size, reserved) > MAX_OBJS_PER_PAGE)
Cyrill Gorcunov210b5c02008-10-22 23:00:38 +04002241 return get_order(size * MAX_OBJS_PER_PAGE) - 1;
Christoph Lameter39b26462008-04-14 19:11:30 +03002242
Christoph Lameter6300ea72007-07-17 04:03:20 -07002243 for (order = max(min_order,
Christoph Lameter5e6d4442007-05-09 02:32:46 -07002244 fls(min_objects * size - 1) - PAGE_SHIFT);
2245 order <= max_order; order++) {
2246
Christoph Lameter81819f02007-05-06 14:49:36 -07002247 unsigned long slab_size = PAGE_SIZE << order;
2248
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08002249 if (slab_size < min_objects * size + reserved)
Christoph Lameter81819f02007-05-06 14:49:36 -07002250 continue;
2251
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08002252 rem = (slab_size - reserved) % size;
Christoph Lameter81819f02007-05-06 14:49:36 -07002253
Christoph Lameter5e6d4442007-05-09 02:32:46 -07002254 if (rem <= slab_size / fract_leftover)
Christoph Lameter81819f02007-05-06 14:49:36 -07002255 break;
2256
2257 }
Christoph Lameter672bba32007-05-09 02:32:39 -07002258
Christoph Lameter81819f02007-05-06 14:49:36 -07002259 return order;
2260}
2261
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08002262static inline int calculate_order(int size, int reserved)
Christoph Lameter5e6d4442007-05-09 02:32:46 -07002263{
2264 int order;
2265 int min_objects;
2266 int fraction;
Zhang Yanmine8120ff2009-02-12 18:00:17 +02002267 int max_objects;
Christoph Lameter5e6d4442007-05-09 02:32:46 -07002268
2269 /*
2270 * Attempt to find best configuration for a slab. This
2271 * works by first attempting to generate a layout with
2272 * the best configuration and backing off gradually.
2273 *
2274 * First we reduce the acceptable waste in a slab. Then
2275 * we reduce the minimum objects required in a slab.
2276 */
2277 min_objects = slub_min_objects;
Christoph Lameter9b2cd502008-04-14 19:11:41 +03002278 if (!min_objects)
2279 min_objects = 4 * (fls(nr_cpu_ids) + 1);
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08002280 max_objects = order_objects(slub_max_order, size, reserved);
Zhang Yanmine8120ff2009-02-12 18:00:17 +02002281 min_objects = min(min_objects, max_objects);
2282
Christoph Lameter5e6d4442007-05-09 02:32:46 -07002283 while (min_objects > 1) {
Christoph Lameterc124f5b2008-04-14 19:13:29 +03002284 fraction = 16;
Christoph Lameter5e6d4442007-05-09 02:32:46 -07002285 while (fraction >= 4) {
2286 order = slab_order(size, min_objects,
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08002287 slub_max_order, fraction, reserved);
Christoph Lameter5e6d4442007-05-09 02:32:46 -07002288 if (order <= slub_max_order)
2289 return order;
2290 fraction /= 2;
2291 }
Amerigo Wang5086c389c2009-08-19 21:44:13 +03002292 min_objects--;
Christoph Lameter5e6d4442007-05-09 02:32:46 -07002293 }
2294
2295 /*
2296 * We were unable to place multiple objects in a slab. Now
2297 * lets see if we can place a single object there.
2298 */
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08002299 order = slab_order(size, 1, slub_max_order, 1, reserved);
Christoph Lameter5e6d4442007-05-09 02:32:46 -07002300 if (order <= slub_max_order)
2301 return order;
2302
2303 /*
2304 * Doh this slab cannot be placed using slub_max_order.
2305 */
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08002306 order = slab_order(size, 1, MAX_ORDER, 1, reserved);
David Rientjes818cf592009-04-23 09:58:22 +03002307 if (order < MAX_ORDER)
Christoph Lameter5e6d4442007-05-09 02:32:46 -07002308 return order;
2309 return -ENOSYS;
2310}
2311
Christoph Lameter81819f02007-05-06 14:49:36 -07002312/*
Christoph Lameter672bba32007-05-09 02:32:39 -07002313 * Figure out what the alignment of the objects will be.
Christoph Lameter81819f02007-05-06 14:49:36 -07002314 */
2315static unsigned long calculate_alignment(unsigned long flags,
2316 unsigned long align, unsigned long size)
2317{
2318 /*
Christoph Lameter6446faa2008-02-15 23:45:26 -08002319 * If the user wants hardware cache aligned objects then follow that
2320 * suggestion if the object is sufficiently large.
Christoph Lameter81819f02007-05-06 14:49:36 -07002321 *
Christoph Lameter6446faa2008-02-15 23:45:26 -08002322 * The hardware cache alignment cannot override the specified
2323 * alignment though. If that is greater then use it.
Christoph Lameter81819f02007-05-06 14:49:36 -07002324 */
Nick Pigginb6210382008-03-05 14:05:56 -08002325 if (flags & SLAB_HWCACHE_ALIGN) {
2326 unsigned long ralign = cache_line_size();
2327 while (size <= ralign / 2)
2328 ralign /= 2;
2329 align = max(align, ralign);
2330 }
Christoph Lameter81819f02007-05-06 14:49:36 -07002331
2332 if (align < ARCH_SLAB_MINALIGN)
Nick Pigginb6210382008-03-05 14:05:56 -08002333 align = ARCH_SLAB_MINALIGN;
Christoph Lameter81819f02007-05-06 14:49:36 -07002334
2335 return ALIGN(align, sizeof(void *));
2336}
2337
Pekka Enberg5595cff2008-08-05 09:28:47 +03002338static void
2339init_kmem_cache_node(struct kmem_cache_node *n, struct kmem_cache *s)
Christoph Lameter81819f02007-05-06 14:49:36 -07002340{
2341 n->nr_partial = 0;
Christoph Lameter81819f02007-05-06 14:49:36 -07002342 spin_lock_init(&n->list_lock);
2343 INIT_LIST_HEAD(&n->partial);
Christoph Lameter8ab13722007-07-17 04:03:32 -07002344#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter0f389ec2008-04-14 18:53:02 +03002345 atomic_long_set(&n->nr_slabs, 0);
Salman Qazi02b71b72008-09-11 12:25:41 -07002346 atomic_long_set(&n->total_objects, 0);
Christoph Lameter643b1132007-05-06 14:49:42 -07002347 INIT_LIST_HEAD(&n->full);
Christoph Lameter8ab13722007-07-17 04:03:32 -07002348#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07002349}
2350
Christoph Lameter55136592010-08-20 12:37:13 -05002351static inline int alloc_kmem_cache_cpus(struct kmem_cache *s)
Christoph Lameter4c93c3552007-10-16 01:26:08 -07002352{
Christoph Lameter6c182dc2010-08-20 12:37:14 -05002353 BUILD_BUG_ON(PERCPU_DYNAMIC_EARLY_SIZE <
2354 SLUB_PAGE_SHIFT * sizeof(struct kmem_cache_cpu));
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06002355
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002356#ifdef CONFIG_CMPXCHG_LOCAL
2357 /*
2358 * Must align to double word boundary for the double cmpxchg instructions
2359 * to work.
2360 */
2361 s->cpu_slab = __alloc_percpu(sizeof(struct kmem_cache_cpu), 2 * sizeof(void *));
2362#else
2363 /* Regular alignment is sufficient */
Christoph Lameter6c182dc2010-08-20 12:37:14 -05002364 s->cpu_slab = alloc_percpu(struct kmem_cache_cpu);
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002365#endif
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06002366
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002367 if (!s->cpu_slab)
2368 return 0;
2369
2370 init_kmem_cache_cpus(s);
2371
2372 return 1;
Christoph Lameter4c93c3552007-10-16 01:26:08 -07002373}
Christoph Lameter4c93c3552007-10-16 01:26:08 -07002374
Christoph Lameter51df1142010-08-20 12:37:15 -05002375static struct kmem_cache *kmem_cache_node;
2376
Christoph Lameter81819f02007-05-06 14:49:36 -07002377/*
2378 * No kmalloc_node yet so do it by hand. We know that this is the first
2379 * slab on the node for this slabcache. There are no concurrent accesses
2380 * possible.
2381 *
2382 * Note that this function only works on the kmalloc_node_cache
Christoph Lameter4c93c3552007-10-16 01:26:08 -07002383 * when allocating for the kmalloc_node_cache. This is used for bootstrapping
2384 * memory on a fresh node that has no slab structures yet.
Christoph Lameter81819f02007-05-06 14:49:36 -07002385 */
Christoph Lameter55136592010-08-20 12:37:13 -05002386static void early_kmem_cache_node_alloc(int node)
Christoph Lameter81819f02007-05-06 14:49:36 -07002387{
2388 struct page *page;
2389 struct kmem_cache_node *n;
rootba84c732008-01-07 23:20:28 -08002390 unsigned long flags;
Christoph Lameter81819f02007-05-06 14:49:36 -07002391
Christoph Lameter51df1142010-08-20 12:37:15 -05002392 BUG_ON(kmem_cache_node->size < sizeof(struct kmem_cache_node));
Christoph Lameter81819f02007-05-06 14:49:36 -07002393
Christoph Lameter51df1142010-08-20 12:37:15 -05002394 page = new_slab(kmem_cache_node, GFP_NOWAIT, node);
Christoph Lameter81819f02007-05-06 14:49:36 -07002395
2396 BUG_ON(!page);
Christoph Lametera2f92ee2007-08-22 14:01:57 -07002397 if (page_to_nid(page) != node) {
2398 printk(KERN_ERR "SLUB: Unable to allocate memory from "
2399 "node %d\n", node);
2400 printk(KERN_ERR "SLUB: Allocating a useless per node structure "
2401 "in order to be able to continue\n");
2402 }
2403
Christoph Lameter81819f02007-05-06 14:49:36 -07002404 n = page->freelist;
2405 BUG_ON(!n);
Christoph Lameter51df1142010-08-20 12:37:15 -05002406 page->freelist = get_freepointer(kmem_cache_node, n);
Christoph Lameter81819f02007-05-06 14:49:36 -07002407 page->inuse++;
Christoph Lameter51df1142010-08-20 12:37:15 -05002408 kmem_cache_node->node[node] = n;
Christoph Lameter8ab13722007-07-17 04:03:32 -07002409#ifdef CONFIG_SLUB_DEBUG
Christoph Lameterf7cb1932010-09-29 07:15:01 -05002410 init_object(kmem_cache_node, n, SLUB_RED_ACTIVE);
Christoph Lameter51df1142010-08-20 12:37:15 -05002411 init_tracking(kmem_cache_node, n);
Christoph Lameter8ab13722007-07-17 04:03:32 -07002412#endif
Christoph Lameter51df1142010-08-20 12:37:15 -05002413 init_kmem_cache_node(n, kmem_cache_node);
2414 inc_slabs_node(kmem_cache_node, node, page->objects);
Christoph Lameter6446faa2008-02-15 23:45:26 -08002415
rootba84c732008-01-07 23:20:28 -08002416 /*
2417 * lockdep requires consistent irq usage for each lock
2418 * so even though there cannot be a race this early in
2419 * the boot sequence, we still disable irqs.
2420 */
2421 local_irq_save(flags);
Christoph Lameter7c2e1322008-01-07 23:20:27 -08002422 add_partial(n, page, 0);
rootba84c732008-01-07 23:20:28 -08002423 local_irq_restore(flags);
Christoph Lameter81819f02007-05-06 14:49:36 -07002424}
2425
2426static void free_kmem_cache_nodes(struct kmem_cache *s)
2427{
2428 int node;
2429
Christoph Lameterf64dc582007-10-16 01:25:33 -07002430 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002431 struct kmem_cache_node *n = s->node[node];
Christoph Lameter51df1142010-08-20 12:37:15 -05002432
Alexander Duyck73367bd2010-05-21 14:41:35 -07002433 if (n)
Christoph Lameter51df1142010-08-20 12:37:15 -05002434 kmem_cache_free(kmem_cache_node, n);
2435
Christoph Lameter81819f02007-05-06 14:49:36 -07002436 s->node[node] = NULL;
2437 }
2438}
2439
Christoph Lameter55136592010-08-20 12:37:13 -05002440static int init_kmem_cache_nodes(struct kmem_cache *s)
Christoph Lameter81819f02007-05-06 14:49:36 -07002441{
2442 int node;
Christoph Lameter81819f02007-05-06 14:49:36 -07002443
Christoph Lameterf64dc582007-10-16 01:25:33 -07002444 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002445 struct kmem_cache_node *n;
2446
Alexander Duyck73367bd2010-05-21 14:41:35 -07002447 if (slab_state == DOWN) {
Christoph Lameter55136592010-08-20 12:37:13 -05002448 early_kmem_cache_node_alloc(node);
Alexander Duyck73367bd2010-05-21 14:41:35 -07002449 continue;
Christoph Lameter81819f02007-05-06 14:49:36 -07002450 }
Christoph Lameter51df1142010-08-20 12:37:15 -05002451 n = kmem_cache_alloc_node(kmem_cache_node,
Christoph Lameter55136592010-08-20 12:37:13 -05002452 GFP_KERNEL, node);
Alexander Duyck73367bd2010-05-21 14:41:35 -07002453
2454 if (!n) {
2455 free_kmem_cache_nodes(s);
2456 return 0;
2457 }
2458
Christoph Lameter81819f02007-05-06 14:49:36 -07002459 s->node[node] = n;
Pekka Enberg5595cff2008-08-05 09:28:47 +03002460 init_kmem_cache_node(n, s);
Christoph Lameter81819f02007-05-06 14:49:36 -07002461 }
2462 return 1;
2463}
Christoph Lameter81819f02007-05-06 14:49:36 -07002464
David Rientjesc0bdb232009-02-25 09:16:35 +02002465static void set_min_partial(struct kmem_cache *s, unsigned long min)
David Rientjes3b89d7d2009-02-22 17:40:07 -08002466{
2467 if (min < MIN_PARTIAL)
2468 min = MIN_PARTIAL;
2469 else if (min > MAX_PARTIAL)
2470 min = MAX_PARTIAL;
2471 s->min_partial = min;
2472}
2473
Christoph Lameter81819f02007-05-06 14:49:36 -07002474/*
2475 * calculate_sizes() determines the order and the distribution of data within
2476 * a slab object.
2477 */
Christoph Lameter06b285d2008-04-14 19:11:41 +03002478static int calculate_sizes(struct kmem_cache *s, int forced_order)
Christoph Lameter81819f02007-05-06 14:49:36 -07002479{
2480 unsigned long flags = s->flags;
2481 unsigned long size = s->objsize;
2482 unsigned long align = s->align;
Christoph Lameter834f3d12008-04-14 19:11:31 +03002483 int order;
Christoph Lameter81819f02007-05-06 14:49:36 -07002484
2485 /*
Christoph Lameterd8b42bf2008-02-15 23:45:25 -08002486 * Round up object size to the next word boundary. We can only
2487 * place the free pointer at word boundaries and this determines
2488 * the possible location of the free pointer.
2489 */
2490 size = ALIGN(size, sizeof(void *));
2491
2492#ifdef CONFIG_SLUB_DEBUG
2493 /*
Christoph Lameter81819f02007-05-06 14:49:36 -07002494 * Determine if we can poison the object itself. If the user of
2495 * the slab may touch the object after free or before allocation
2496 * then we should never poison the object itself.
2497 */
2498 if ((flags & SLAB_POISON) && !(flags & SLAB_DESTROY_BY_RCU) &&
Christoph Lameterc59def92007-05-16 22:10:50 -07002499 !s->ctor)
Christoph Lameter81819f02007-05-06 14:49:36 -07002500 s->flags |= __OBJECT_POISON;
2501 else
2502 s->flags &= ~__OBJECT_POISON;
2503
Christoph Lameter81819f02007-05-06 14:49:36 -07002504
2505 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07002506 * If we are Redzoning then check if there is some space between the
Christoph Lameter81819f02007-05-06 14:49:36 -07002507 * end of the object and the free pointer. If not then add an
Christoph Lameter672bba32007-05-09 02:32:39 -07002508 * additional word to have some bytes to store Redzone information.
Christoph Lameter81819f02007-05-06 14:49:36 -07002509 */
2510 if ((flags & SLAB_RED_ZONE) && size == s->objsize)
2511 size += sizeof(void *);
Christoph Lameter41ecc552007-05-09 02:32:44 -07002512#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07002513
2514 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07002515 * With that we have determined the number of bytes in actual use
2516 * by the object. This is the potential offset to the free pointer.
Christoph Lameter81819f02007-05-06 14:49:36 -07002517 */
2518 s->inuse = size;
2519
2520 if (((flags & (SLAB_DESTROY_BY_RCU | SLAB_POISON)) ||
Christoph Lameterc59def92007-05-16 22:10:50 -07002521 s->ctor)) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002522 /*
2523 * Relocate free pointer after the object if it is not
2524 * permitted to overwrite the first word of the object on
2525 * kmem_cache_free.
2526 *
2527 * This is the case if we do RCU, have a constructor or
2528 * destructor or are poisoning the objects.
2529 */
2530 s->offset = size;
2531 size += sizeof(void *);
2532 }
2533
Christoph Lameterc12b3c62007-05-23 13:57:31 -07002534#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter81819f02007-05-06 14:49:36 -07002535 if (flags & SLAB_STORE_USER)
2536 /*
2537 * Need to store information about allocs and frees after
2538 * the object.
2539 */
2540 size += 2 * sizeof(struct track);
2541
Christoph Lameterbe7b3fb2007-05-09 02:32:36 -07002542 if (flags & SLAB_RED_ZONE)
Christoph Lameter81819f02007-05-06 14:49:36 -07002543 /*
2544 * Add some empty padding so that we can catch
2545 * overwrites from earlier objects rather than let
2546 * tracking information or the free pointer be
Frederik Schwarzer0211a9c2008-12-29 22:14:56 +01002547 * corrupted if a user writes before the start
Christoph Lameter81819f02007-05-06 14:49:36 -07002548 * of the object.
2549 */
2550 size += sizeof(void *);
Christoph Lameter41ecc552007-05-09 02:32:44 -07002551#endif
Christoph Lameter672bba32007-05-09 02:32:39 -07002552
Christoph Lameter81819f02007-05-06 14:49:36 -07002553 /*
2554 * Determine the alignment based on various parameters that the
Christoph Lameter65c02d42007-05-09 02:32:35 -07002555 * user specified and the dynamic determination of cache line size
2556 * on bootup.
Christoph Lameter81819f02007-05-06 14:49:36 -07002557 */
2558 align = calculate_alignment(flags, align, s->objsize);
Zhang, Yanmindcb0ce12009-07-30 11:28:11 +08002559 s->align = align;
Christoph Lameter81819f02007-05-06 14:49:36 -07002560
2561 /*
2562 * SLUB stores one object immediately after another beginning from
2563 * offset 0. In order to align the objects we have to simply size
2564 * each object to conform to the alignment.
2565 */
2566 size = ALIGN(size, align);
2567 s->size = size;
Christoph Lameter06b285d2008-04-14 19:11:41 +03002568 if (forced_order >= 0)
2569 order = forced_order;
2570 else
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08002571 order = calculate_order(size, s->reserved);
Christoph Lameter81819f02007-05-06 14:49:36 -07002572
Christoph Lameter834f3d12008-04-14 19:11:31 +03002573 if (order < 0)
Christoph Lameter81819f02007-05-06 14:49:36 -07002574 return 0;
2575
Christoph Lameterb7a49f02008-02-14 14:21:32 -08002576 s->allocflags = 0;
Christoph Lameter834f3d12008-04-14 19:11:31 +03002577 if (order)
Christoph Lameterb7a49f02008-02-14 14:21:32 -08002578 s->allocflags |= __GFP_COMP;
2579
2580 if (s->flags & SLAB_CACHE_DMA)
2581 s->allocflags |= SLUB_DMA;
2582
2583 if (s->flags & SLAB_RECLAIM_ACCOUNT)
2584 s->allocflags |= __GFP_RECLAIMABLE;
2585
Christoph Lameter81819f02007-05-06 14:49:36 -07002586 /*
2587 * Determine the number of objects per slab
2588 */
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08002589 s->oo = oo_make(order, size, s->reserved);
2590 s->min = oo_make(get_order(size), size, s->reserved);
Christoph Lameter205ab992008-04-14 19:11:40 +03002591 if (oo_objects(s->oo) > oo_objects(s->max))
2592 s->max = s->oo;
Christoph Lameter81819f02007-05-06 14:49:36 -07002593
Christoph Lameter834f3d12008-04-14 19:11:31 +03002594 return !!oo_objects(s->oo);
Christoph Lameter81819f02007-05-06 14:49:36 -07002595
2596}
2597
Christoph Lameter55136592010-08-20 12:37:13 -05002598static int kmem_cache_open(struct kmem_cache *s,
Christoph Lameter81819f02007-05-06 14:49:36 -07002599 const char *name, size_t size,
2600 size_t align, unsigned long flags,
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002601 void (*ctor)(void *))
Christoph Lameter81819f02007-05-06 14:49:36 -07002602{
2603 memset(s, 0, kmem_size);
2604 s->name = name;
2605 s->ctor = ctor;
Christoph Lameter81819f02007-05-06 14:49:36 -07002606 s->objsize = size;
Christoph Lameter81819f02007-05-06 14:49:36 -07002607 s->align = align;
Christoph Lameterba0268a2007-09-11 15:24:11 -07002608 s->flags = kmem_cache_flags(size, flags, name, ctor);
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08002609 s->reserved = 0;
Christoph Lameter81819f02007-05-06 14:49:36 -07002610
Lai Jiangshanda9a6382011-03-10 15:22:00 +08002611 if (need_reserve_slab_rcu && (s->flags & SLAB_DESTROY_BY_RCU))
2612 s->reserved = sizeof(struct rcu_head);
Christoph Lameter81819f02007-05-06 14:49:36 -07002613
Christoph Lameter06b285d2008-04-14 19:11:41 +03002614 if (!calculate_sizes(s, -1))
Christoph Lameter81819f02007-05-06 14:49:36 -07002615 goto error;
David Rientjes3de472132009-07-27 18:30:35 -07002616 if (disable_higher_order_debug) {
2617 /*
2618 * Disable debugging flags that store metadata if the min slab
2619 * order increased.
2620 */
2621 if (get_order(s->size) > get_order(s->objsize)) {
2622 s->flags &= ~DEBUG_METADATA_FLAGS;
2623 s->offset = 0;
2624 if (!calculate_sizes(s, -1))
2625 goto error;
2626 }
2627 }
Christoph Lameter81819f02007-05-06 14:49:36 -07002628
David Rientjes3b89d7d2009-02-22 17:40:07 -08002629 /*
2630 * The larger the object size is, the more pages we want on the partial
2631 * list to avoid pounding the page allocator excessively.
2632 */
David Rientjesc0bdb232009-02-25 09:16:35 +02002633 set_min_partial(s, ilog2(s->size));
Christoph Lameter81819f02007-05-06 14:49:36 -07002634 s->refcount = 1;
2635#ifdef CONFIG_NUMA
Christoph Lametere2cb96b2008-08-19 08:51:22 -05002636 s->remote_node_defrag_ratio = 1000;
Christoph Lameter81819f02007-05-06 14:49:36 -07002637#endif
Christoph Lameter55136592010-08-20 12:37:13 -05002638 if (!init_kmem_cache_nodes(s))
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002639 goto error;
Christoph Lameter81819f02007-05-06 14:49:36 -07002640
Christoph Lameter55136592010-08-20 12:37:13 -05002641 if (alloc_kmem_cache_cpus(s))
Christoph Lameter81819f02007-05-06 14:49:36 -07002642 return 1;
Christoph Lameterff120592009-12-18 16:26:22 -06002643
Christoph Lameter4c93c3552007-10-16 01:26:08 -07002644 free_kmem_cache_nodes(s);
Christoph Lameter81819f02007-05-06 14:49:36 -07002645error:
2646 if (flags & SLAB_PANIC)
2647 panic("Cannot create slab %s size=%lu realsize=%u "
2648 "order=%u offset=%u flags=%lx\n",
Christoph Lameter834f3d12008-04-14 19:11:31 +03002649 s->name, (unsigned long)size, s->size, oo_order(s->oo),
Christoph Lameter81819f02007-05-06 14:49:36 -07002650 s->offset, flags);
2651 return 0;
2652}
Christoph Lameter81819f02007-05-06 14:49:36 -07002653
2654/*
Christoph Lameter81819f02007-05-06 14:49:36 -07002655 * Determine the size of a slab object
2656 */
2657unsigned int kmem_cache_size(struct kmem_cache *s)
2658{
2659 return s->objsize;
2660}
2661EXPORT_SYMBOL(kmem_cache_size);
2662
Christoph Lameter33b12c32008-04-25 12:22:43 -07002663static void list_slab_objects(struct kmem_cache *s, struct page *page,
2664 const char *text)
Christoph Lameter81819f02007-05-06 14:49:36 -07002665{
Christoph Lameter33b12c32008-04-25 12:22:43 -07002666#ifdef CONFIG_SLUB_DEBUG
2667 void *addr = page_address(page);
2668 void *p;
Namhyung Kima5dd5c12010-09-29 21:02:13 +09002669 unsigned long *map = kzalloc(BITS_TO_LONGS(page->objects) *
2670 sizeof(long), GFP_ATOMIC);
Eric Dumazetbbd7d572010-03-24 22:25:47 +01002671 if (!map)
2672 return;
Christoph Lameter33b12c32008-04-25 12:22:43 -07002673 slab_err(s, page, "%s", text);
2674 slab_lock(page);
2675 for_each_free_object(p, s, page->freelist)
2676 set_bit(slab_index(p, s, addr), map);
2677
2678 for_each_object(p, s, addr, page->objects) {
2679
2680 if (!test_bit(slab_index(p, s, addr), map)) {
2681 printk(KERN_ERR "INFO: Object 0x%p @offset=%tu\n",
2682 p, p - addr);
2683 print_tracking(s, p);
2684 }
2685 }
2686 slab_unlock(page);
Eric Dumazetbbd7d572010-03-24 22:25:47 +01002687 kfree(map);
Christoph Lameter33b12c32008-04-25 12:22:43 -07002688#endif
2689}
2690
Christoph Lameter81819f02007-05-06 14:49:36 -07002691/*
Christoph Lameter599870b2008-04-23 12:36:52 -07002692 * Attempt to free all partial slabs on a node.
Christoph Lameter81819f02007-05-06 14:49:36 -07002693 */
Christoph Lameter599870b2008-04-23 12:36:52 -07002694static void free_partial(struct kmem_cache *s, struct kmem_cache_node *n)
Christoph Lameter81819f02007-05-06 14:49:36 -07002695{
Christoph Lameter81819f02007-05-06 14:49:36 -07002696 unsigned long flags;
2697 struct page *page, *h;
2698
2699 spin_lock_irqsave(&n->list_lock, flags);
Christoph Lameter33b12c32008-04-25 12:22:43 -07002700 list_for_each_entry_safe(page, h, &n->partial, lru) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002701 if (!page->inuse) {
Christoph Lameter62e346a2010-09-28 08:10:28 -05002702 __remove_partial(n, page);
Christoph Lameter81819f02007-05-06 14:49:36 -07002703 discard_slab(s, page);
Christoph Lameter33b12c32008-04-25 12:22:43 -07002704 } else {
2705 list_slab_objects(s, page,
2706 "Objects remaining on kmem_cache_close()");
Christoph Lameter599870b2008-04-23 12:36:52 -07002707 }
Christoph Lameter33b12c32008-04-25 12:22:43 -07002708 }
Christoph Lameter81819f02007-05-06 14:49:36 -07002709 spin_unlock_irqrestore(&n->list_lock, flags);
Christoph Lameter81819f02007-05-06 14:49:36 -07002710}
2711
2712/*
Christoph Lameter672bba32007-05-09 02:32:39 -07002713 * Release all resources used by a slab cache.
Christoph Lameter81819f02007-05-06 14:49:36 -07002714 */
Christoph Lameter0c710012007-07-17 04:03:24 -07002715static inline int kmem_cache_close(struct kmem_cache *s)
Christoph Lameter81819f02007-05-06 14:49:36 -07002716{
2717 int node;
2718
2719 flush_all(s);
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06002720 free_percpu(s->cpu_slab);
Christoph Lameter81819f02007-05-06 14:49:36 -07002721 /* Attempt to free all objects */
Christoph Lameterf64dc582007-10-16 01:25:33 -07002722 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002723 struct kmem_cache_node *n = get_node(s, node);
2724
Christoph Lameter599870b2008-04-23 12:36:52 -07002725 free_partial(s, n);
2726 if (n->nr_partial || slabs_node(s, node))
Christoph Lameter81819f02007-05-06 14:49:36 -07002727 return 1;
2728 }
2729 free_kmem_cache_nodes(s);
2730 return 0;
2731}
2732
2733/*
2734 * Close a cache and release the kmem_cache structure
2735 * (must be used for caches created using kmem_cache_create)
2736 */
2737void kmem_cache_destroy(struct kmem_cache *s)
2738{
2739 down_write(&slub_lock);
2740 s->refcount--;
2741 if (!s->refcount) {
2742 list_del(&s->list);
Pekka Enbergd629d812008-04-23 22:31:08 +03002743 if (kmem_cache_close(s)) {
2744 printk(KERN_ERR "SLUB %s: %s called for cache that "
2745 "still has objects.\n", s->name, __func__);
2746 dump_stack();
2747 }
Eric Dumazetd76b1592009-09-03 22:38:59 +03002748 if (s->flags & SLAB_DESTROY_BY_RCU)
2749 rcu_barrier();
Christoph Lameter81819f02007-05-06 14:49:36 -07002750 sysfs_slab_remove(s);
Christoph Lameter2bce64852010-07-19 11:39:11 -05002751 }
2752 up_write(&slub_lock);
Christoph Lameter81819f02007-05-06 14:49:36 -07002753}
2754EXPORT_SYMBOL(kmem_cache_destroy);
2755
2756/********************************************************************
2757 * Kmalloc subsystem
2758 *******************************************************************/
2759
Christoph Lameter51df1142010-08-20 12:37:15 -05002760struct kmem_cache *kmalloc_caches[SLUB_PAGE_SHIFT];
Christoph Lameter81819f02007-05-06 14:49:36 -07002761EXPORT_SYMBOL(kmalloc_caches);
2762
Christoph Lameter51df1142010-08-20 12:37:15 -05002763static struct kmem_cache *kmem_cache;
2764
Christoph Lameter55136592010-08-20 12:37:13 -05002765#ifdef CONFIG_ZONE_DMA
Christoph Lameter51df1142010-08-20 12:37:15 -05002766static struct kmem_cache *kmalloc_dma_caches[SLUB_PAGE_SHIFT];
Christoph Lameter55136592010-08-20 12:37:13 -05002767#endif
2768
Christoph Lameter81819f02007-05-06 14:49:36 -07002769static int __init setup_slub_min_order(char *str)
2770{
Pekka Enberg06428782008-01-07 23:20:27 -08002771 get_option(&str, &slub_min_order);
Christoph Lameter81819f02007-05-06 14:49:36 -07002772
2773 return 1;
2774}
2775
2776__setup("slub_min_order=", setup_slub_min_order);
2777
2778static int __init setup_slub_max_order(char *str)
2779{
Pekka Enberg06428782008-01-07 23:20:27 -08002780 get_option(&str, &slub_max_order);
David Rientjes818cf592009-04-23 09:58:22 +03002781 slub_max_order = min(slub_max_order, MAX_ORDER - 1);
Christoph Lameter81819f02007-05-06 14:49:36 -07002782
2783 return 1;
2784}
2785
2786__setup("slub_max_order=", setup_slub_max_order);
2787
2788static int __init setup_slub_min_objects(char *str)
2789{
Pekka Enberg06428782008-01-07 23:20:27 -08002790 get_option(&str, &slub_min_objects);
Christoph Lameter81819f02007-05-06 14:49:36 -07002791
2792 return 1;
2793}
2794
2795__setup("slub_min_objects=", setup_slub_min_objects);
2796
2797static int __init setup_slub_nomerge(char *str)
2798{
2799 slub_nomerge = 1;
2800 return 1;
2801}
2802
2803__setup("slub_nomerge", setup_slub_nomerge);
2804
Christoph Lameter51df1142010-08-20 12:37:15 -05002805static struct kmem_cache *__init create_kmalloc_cache(const char *name,
2806 int size, unsigned int flags)
Christoph Lameter81819f02007-05-06 14:49:36 -07002807{
Christoph Lameter51df1142010-08-20 12:37:15 -05002808 struct kmem_cache *s;
2809
2810 s = kmem_cache_alloc(kmem_cache, GFP_NOWAIT);
2811
Pekka Enberg83b519e2009-06-10 19:40:04 +03002812 /*
2813 * This function is called with IRQs disabled during early-boot on
2814 * single CPU so there's no need to take slub_lock here.
2815 */
Christoph Lameter55136592010-08-20 12:37:13 -05002816 if (!kmem_cache_open(s, name, size, ARCH_KMALLOC_MINALIGN,
Christoph Lameter319d1e22008-04-14 19:11:41 +03002817 flags, NULL))
Christoph Lameter81819f02007-05-06 14:49:36 -07002818 goto panic;
2819
2820 list_add(&s->list, &slab_caches);
Christoph Lameter51df1142010-08-20 12:37:15 -05002821 return s;
Christoph Lameter81819f02007-05-06 14:49:36 -07002822
2823panic:
2824 panic("Creation of kmalloc slab %s size=%d failed.\n", name, size);
Christoph Lameter51df1142010-08-20 12:37:15 -05002825 return NULL;
Christoph Lameter81819f02007-05-06 14:49:36 -07002826}
2827
Christoph Lameterf1b26332007-07-17 04:03:26 -07002828/*
2829 * Conversion table for small slabs sizes / 8 to the index in the
2830 * kmalloc array. This is necessary for slabs < 192 since we have non power
2831 * of two cache sizes there. The size of larger slabs can be determined using
2832 * fls.
2833 */
2834static s8 size_index[24] = {
2835 3, /* 8 */
2836 4, /* 16 */
2837 5, /* 24 */
2838 5, /* 32 */
2839 6, /* 40 */
2840 6, /* 48 */
2841 6, /* 56 */
2842 6, /* 64 */
2843 1, /* 72 */
2844 1, /* 80 */
2845 1, /* 88 */
2846 1, /* 96 */
2847 7, /* 104 */
2848 7, /* 112 */
2849 7, /* 120 */
2850 7, /* 128 */
2851 2, /* 136 */
2852 2, /* 144 */
2853 2, /* 152 */
2854 2, /* 160 */
2855 2, /* 168 */
2856 2, /* 176 */
2857 2, /* 184 */
2858 2 /* 192 */
2859};
2860
Aaro Koskinenacdfcd02009-08-28 14:28:54 +03002861static inline int size_index_elem(size_t bytes)
2862{
2863 return (bytes - 1) / 8;
2864}
2865
Christoph Lameter81819f02007-05-06 14:49:36 -07002866static struct kmem_cache *get_slab(size_t size, gfp_t flags)
2867{
Christoph Lameterf1b26332007-07-17 04:03:26 -07002868 int index;
Christoph Lameter81819f02007-05-06 14:49:36 -07002869
Christoph Lameterf1b26332007-07-17 04:03:26 -07002870 if (size <= 192) {
2871 if (!size)
2872 return ZERO_SIZE_PTR;
Christoph Lameter81819f02007-05-06 14:49:36 -07002873
Aaro Koskinenacdfcd02009-08-28 14:28:54 +03002874 index = size_index[size_index_elem(size)];
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002875 } else
Christoph Lameterf1b26332007-07-17 04:03:26 -07002876 index = fls(size - 1);
Christoph Lameter81819f02007-05-06 14:49:36 -07002877
2878#ifdef CONFIG_ZONE_DMA
Christoph Lameterf1b26332007-07-17 04:03:26 -07002879 if (unlikely((flags & SLUB_DMA)))
Christoph Lameter51df1142010-08-20 12:37:15 -05002880 return kmalloc_dma_caches[index];
Christoph Lameterf1b26332007-07-17 04:03:26 -07002881
Christoph Lameter81819f02007-05-06 14:49:36 -07002882#endif
Christoph Lameter51df1142010-08-20 12:37:15 -05002883 return kmalloc_caches[index];
Christoph Lameter81819f02007-05-06 14:49:36 -07002884}
2885
2886void *__kmalloc(size_t size, gfp_t flags)
2887{
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002888 struct kmem_cache *s;
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002889 void *ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07002890
Christoph Lameterffadd4d2009-02-17 12:05:07 -05002891 if (unlikely(size > SLUB_MAX_SIZE))
Pekka Enbergeada35e2008-02-11 22:47:46 +02002892 return kmalloc_large(size, flags);
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002893
2894 s = get_slab(size, flags);
2895
2896 if (unlikely(ZERO_OR_NULL_PTR(s)))
Christoph Lameter6cb8f912007-07-17 04:03:22 -07002897 return s;
2898
Christoph Lameter2154a332010-07-09 14:07:10 -05002899 ret = slab_alloc(s, flags, NUMA_NO_NODE, _RET_IP_);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002900
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02002901 trace_kmalloc(_RET_IP_, ret, size, s->size, flags);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002902
2903 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07002904}
2905EXPORT_SYMBOL(__kmalloc);
2906
Namhyung Kim5d1f57e2010-09-29 21:02:15 +09002907#ifdef CONFIG_NUMA
Christoph Lameterf619cfe2008-03-01 13:56:40 -08002908static void *kmalloc_large_node(size_t size, gfp_t flags, int node)
2909{
Vegard Nossumb1eeab62008-11-25 16:55:53 +01002910 struct page *page;
Catalin Marinase4f7c0b42009-07-07 10:32:59 +01002911 void *ptr = NULL;
Christoph Lameterf619cfe2008-03-01 13:56:40 -08002912
Vegard Nossumb1eeab62008-11-25 16:55:53 +01002913 flags |= __GFP_COMP | __GFP_NOTRACK;
2914 page = alloc_pages_node(node, flags, get_order(size));
Christoph Lameterf619cfe2008-03-01 13:56:40 -08002915 if (page)
Catalin Marinase4f7c0b42009-07-07 10:32:59 +01002916 ptr = page_address(page);
2917
2918 kmemleak_alloc(ptr, size, 1, flags);
2919 return ptr;
Christoph Lameterf619cfe2008-03-01 13:56:40 -08002920}
2921
Christoph Lameter81819f02007-05-06 14:49:36 -07002922void *__kmalloc_node(size_t size, gfp_t flags, int node)
2923{
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002924 struct kmem_cache *s;
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002925 void *ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07002926
Ingo Molnar057685c2009-02-20 12:15:30 +01002927 if (unlikely(size > SLUB_MAX_SIZE)) {
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002928 ret = kmalloc_large_node(size, flags, node);
2929
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02002930 trace_kmalloc_node(_RET_IP_, ret,
2931 size, PAGE_SIZE << get_order(size),
2932 flags, node);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002933
2934 return ret;
2935 }
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002936
2937 s = get_slab(size, flags);
2938
2939 if (unlikely(ZERO_OR_NULL_PTR(s)))
Christoph Lameter6cb8f912007-07-17 04:03:22 -07002940 return s;
2941
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002942 ret = slab_alloc(s, flags, node, _RET_IP_);
2943
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02002944 trace_kmalloc_node(_RET_IP_, ret, size, s->size, flags, node);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002945
2946 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07002947}
2948EXPORT_SYMBOL(__kmalloc_node);
2949#endif
2950
2951size_t ksize(const void *object)
2952{
Christoph Lameter272c1d22007-06-08 13:46:49 -07002953 struct page *page;
Christoph Lameter81819f02007-05-06 14:49:36 -07002954
Christoph Lameteref8b4522007-10-16 01:24:46 -07002955 if (unlikely(object == ZERO_SIZE_PTR))
Christoph Lameter272c1d22007-06-08 13:46:49 -07002956 return 0;
2957
Vegard Nossum294a80a2007-12-04 23:45:30 -08002958 page = virt_to_head_page(object);
Vegard Nossum294a80a2007-12-04 23:45:30 -08002959
Pekka Enberg76994412008-05-22 19:22:25 +03002960 if (unlikely(!PageSlab(page))) {
2961 WARN_ON(!PageCompound(page));
Vegard Nossum294a80a2007-12-04 23:45:30 -08002962 return PAGE_SIZE << compound_order(page);
Pekka Enberg76994412008-05-22 19:22:25 +03002963 }
Christoph Lameter81819f02007-05-06 14:49:36 -07002964
Eric Dumazetb3d41882011-02-14 18:35:22 +01002965 return slab_ksize(page->slab);
Christoph Lameter81819f02007-05-06 14:49:36 -07002966}
Kirill A. Shutemovb1aabec2009-02-10 15:21:44 +02002967EXPORT_SYMBOL(ksize);
Christoph Lameter81819f02007-05-06 14:49:36 -07002968
2969void kfree(const void *x)
2970{
Christoph Lameter81819f02007-05-06 14:49:36 -07002971 struct page *page;
Christoph Lameter5bb983b2008-02-07 17:47:41 -08002972 void *object = (void *)x;
Christoph Lameter81819f02007-05-06 14:49:36 -07002973
Pekka Enberg2121db72009-03-25 11:05:57 +02002974 trace_kfree(_RET_IP_, x);
2975
Satyam Sharma2408c552007-10-16 01:24:44 -07002976 if (unlikely(ZERO_OR_NULL_PTR(x)))
Christoph Lameter81819f02007-05-06 14:49:36 -07002977 return;
2978
Christoph Lameterb49af682007-05-06 14:49:41 -07002979 page = virt_to_head_page(x);
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002980 if (unlikely(!PageSlab(page))) {
Christoph Lameter09375022008-05-28 10:32:22 -07002981 BUG_ON(!PageCompound(page));
Catalin Marinase4f7c0b42009-07-07 10:32:59 +01002982 kmemleak_free(x);
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07002983 put_page(page);
2984 return;
2985 }
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03002986 slab_free(page->slab, page, object, _RET_IP_);
Christoph Lameter81819f02007-05-06 14:49:36 -07002987}
2988EXPORT_SYMBOL(kfree);
2989
Christoph Lameter2086d262007-05-06 14:49:46 -07002990/*
Christoph Lameter672bba32007-05-09 02:32:39 -07002991 * kmem_cache_shrink removes empty slabs from the partial lists and sorts
2992 * the remaining slabs by the number of items in use. The slabs with the
2993 * most items in use come first. New allocations will then fill those up
2994 * and thus they can be removed from the partial lists.
2995 *
2996 * The slabs with the least items are placed last. This results in them
2997 * being allocated from last increasing the chance that the last objects
2998 * are freed in them.
Christoph Lameter2086d262007-05-06 14:49:46 -07002999 */
3000int kmem_cache_shrink(struct kmem_cache *s)
3001{
3002 int node;
3003 int i;
3004 struct kmem_cache_node *n;
3005 struct page *page;
3006 struct page *t;
Christoph Lameter205ab992008-04-14 19:11:40 +03003007 int objects = oo_objects(s->max);
Christoph Lameter2086d262007-05-06 14:49:46 -07003008 struct list_head *slabs_by_inuse =
Christoph Lameter834f3d12008-04-14 19:11:31 +03003009 kmalloc(sizeof(struct list_head) * objects, GFP_KERNEL);
Christoph Lameter2086d262007-05-06 14:49:46 -07003010 unsigned long flags;
3011
3012 if (!slabs_by_inuse)
3013 return -ENOMEM;
3014
3015 flush_all(s);
Christoph Lameterf64dc582007-10-16 01:25:33 -07003016 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter2086d262007-05-06 14:49:46 -07003017 n = get_node(s, node);
3018
3019 if (!n->nr_partial)
3020 continue;
3021
Christoph Lameter834f3d12008-04-14 19:11:31 +03003022 for (i = 0; i < objects; i++)
Christoph Lameter2086d262007-05-06 14:49:46 -07003023 INIT_LIST_HEAD(slabs_by_inuse + i);
3024
3025 spin_lock_irqsave(&n->list_lock, flags);
3026
3027 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07003028 * Build lists indexed by the items in use in each slab.
Christoph Lameter2086d262007-05-06 14:49:46 -07003029 *
Christoph Lameter672bba32007-05-09 02:32:39 -07003030 * Note that concurrent frees may occur while we hold the
3031 * list_lock. page->inuse here is the upper limit.
Christoph Lameter2086d262007-05-06 14:49:46 -07003032 */
3033 list_for_each_entry_safe(page, t, &n->partial, lru) {
3034 if (!page->inuse && slab_trylock(page)) {
3035 /*
3036 * Must hold slab lock here because slab_free
3037 * may have freed the last object and be
3038 * waiting to release the slab.
3039 */
Christoph Lameter62e346a2010-09-28 08:10:28 -05003040 __remove_partial(n, page);
Christoph Lameter2086d262007-05-06 14:49:46 -07003041 slab_unlock(page);
3042 discard_slab(s, page);
3043 } else {
Christoph Lameterfcda3d82007-07-30 13:06:46 -07003044 list_move(&page->lru,
3045 slabs_by_inuse + page->inuse);
Christoph Lameter2086d262007-05-06 14:49:46 -07003046 }
3047 }
3048
Christoph Lameter2086d262007-05-06 14:49:46 -07003049 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07003050 * Rebuild the partial list with the slabs filled up most
3051 * first and the least used slabs at the end.
Christoph Lameter2086d262007-05-06 14:49:46 -07003052 */
Christoph Lameter834f3d12008-04-14 19:11:31 +03003053 for (i = objects - 1; i >= 0; i--)
Christoph Lameter2086d262007-05-06 14:49:46 -07003054 list_splice(slabs_by_inuse + i, n->partial.prev);
3055
Christoph Lameter2086d262007-05-06 14:49:46 -07003056 spin_unlock_irqrestore(&n->list_lock, flags);
3057 }
3058
3059 kfree(slabs_by_inuse);
3060 return 0;
3061}
3062EXPORT_SYMBOL(kmem_cache_shrink);
3063
Pekka Enberg92a5bbc2010-10-06 16:58:16 +03003064#if defined(CONFIG_MEMORY_HOTPLUG)
Yasunori Gotob9049e22007-10-21 16:41:37 -07003065static int slab_mem_going_offline_callback(void *arg)
3066{
3067 struct kmem_cache *s;
3068
3069 down_read(&slub_lock);
3070 list_for_each_entry(s, &slab_caches, list)
3071 kmem_cache_shrink(s);
3072 up_read(&slub_lock);
3073
3074 return 0;
3075}
3076
3077static void slab_mem_offline_callback(void *arg)
3078{
3079 struct kmem_cache_node *n;
3080 struct kmem_cache *s;
3081 struct memory_notify *marg = arg;
3082 int offline_node;
3083
3084 offline_node = marg->status_change_nid;
3085
3086 /*
3087 * If the node still has available memory. we need kmem_cache_node
3088 * for it yet.
3089 */
3090 if (offline_node < 0)
3091 return;
3092
3093 down_read(&slub_lock);
3094 list_for_each_entry(s, &slab_caches, list) {
3095 n = get_node(s, offline_node);
3096 if (n) {
3097 /*
3098 * if n->nr_slabs > 0, slabs still exist on the node
3099 * that is going down. We were unable to free them,
Adam Buchbinderc9404c92009-12-18 15:40:42 -05003100 * and offline_pages() function shouldn't call this
Yasunori Gotob9049e22007-10-21 16:41:37 -07003101 * callback. So, we must fail.
3102 */
Christoph Lameter0f389ec2008-04-14 18:53:02 +03003103 BUG_ON(slabs_node(s, offline_node));
Yasunori Gotob9049e22007-10-21 16:41:37 -07003104
3105 s->node[offline_node] = NULL;
Christoph Lameter8de66a02010-08-25 14:51:14 -05003106 kmem_cache_free(kmem_cache_node, n);
Yasunori Gotob9049e22007-10-21 16:41:37 -07003107 }
3108 }
3109 up_read(&slub_lock);
3110}
3111
3112static int slab_mem_going_online_callback(void *arg)
3113{
3114 struct kmem_cache_node *n;
3115 struct kmem_cache *s;
3116 struct memory_notify *marg = arg;
3117 int nid = marg->status_change_nid;
3118 int ret = 0;
3119
3120 /*
3121 * If the node's memory is already available, then kmem_cache_node is
3122 * already created. Nothing to do.
3123 */
3124 if (nid < 0)
3125 return 0;
3126
3127 /*
Christoph Lameter0121c6192008-04-29 16:11:12 -07003128 * We are bringing a node online. No memory is available yet. We must
Yasunori Gotob9049e22007-10-21 16:41:37 -07003129 * allocate a kmem_cache_node structure in order to bring the node
3130 * online.
3131 */
3132 down_read(&slub_lock);
3133 list_for_each_entry(s, &slab_caches, list) {
3134 /*
3135 * XXX: kmem_cache_alloc_node will fallback to other nodes
3136 * since memory is not yet available from the node that
3137 * is brought up.
3138 */
Christoph Lameter8de66a02010-08-25 14:51:14 -05003139 n = kmem_cache_alloc(kmem_cache_node, GFP_KERNEL);
Yasunori Gotob9049e22007-10-21 16:41:37 -07003140 if (!n) {
3141 ret = -ENOMEM;
3142 goto out;
3143 }
Pekka Enberg5595cff2008-08-05 09:28:47 +03003144 init_kmem_cache_node(n, s);
Yasunori Gotob9049e22007-10-21 16:41:37 -07003145 s->node[nid] = n;
3146 }
3147out:
3148 up_read(&slub_lock);
3149 return ret;
3150}
3151
3152static int slab_memory_callback(struct notifier_block *self,
3153 unsigned long action, void *arg)
3154{
3155 int ret = 0;
3156
3157 switch (action) {
3158 case MEM_GOING_ONLINE:
3159 ret = slab_mem_going_online_callback(arg);
3160 break;
3161 case MEM_GOING_OFFLINE:
3162 ret = slab_mem_going_offline_callback(arg);
3163 break;
3164 case MEM_OFFLINE:
3165 case MEM_CANCEL_ONLINE:
3166 slab_mem_offline_callback(arg);
3167 break;
3168 case MEM_ONLINE:
3169 case MEM_CANCEL_OFFLINE:
3170 break;
3171 }
KAMEZAWA Hiroyukidc19f9d2008-12-01 13:13:48 -08003172 if (ret)
3173 ret = notifier_from_errno(ret);
3174 else
3175 ret = NOTIFY_OK;
Yasunori Gotob9049e22007-10-21 16:41:37 -07003176 return ret;
3177}
3178
3179#endif /* CONFIG_MEMORY_HOTPLUG */
3180
Christoph Lameter81819f02007-05-06 14:49:36 -07003181/********************************************************************
3182 * Basic setup of slabs
3183 *******************************************************************/
3184
Christoph Lameter51df1142010-08-20 12:37:15 -05003185/*
3186 * Used for early kmem_cache structures that were allocated using
3187 * the page allocator
3188 */
3189
3190static void __init kmem_cache_bootstrap_fixup(struct kmem_cache *s)
3191{
3192 int node;
3193
3194 list_add(&s->list, &slab_caches);
3195 s->refcount = -1;
3196
3197 for_each_node_state(node, N_NORMAL_MEMORY) {
3198 struct kmem_cache_node *n = get_node(s, node);
3199 struct page *p;
3200
3201 if (n) {
3202 list_for_each_entry(p, &n->partial, lru)
3203 p->slab = s;
3204
3205#ifdef CONFIG_SLAB_DEBUG
3206 list_for_each_entry(p, &n->full, lru)
3207 p->slab = s;
3208#endif
3209 }
3210 }
3211}
3212
Christoph Lameter81819f02007-05-06 14:49:36 -07003213void __init kmem_cache_init(void)
3214{
3215 int i;
Christoph Lameter4b356be2007-06-16 10:16:13 -07003216 int caches = 0;
Christoph Lameter51df1142010-08-20 12:37:15 -05003217 struct kmem_cache *temp_kmem_cache;
3218 int order;
Christoph Lameter51df1142010-08-20 12:37:15 -05003219 struct kmem_cache *temp_kmem_cache_node;
3220 unsigned long kmalloc_size;
3221
3222 kmem_size = offsetof(struct kmem_cache, node) +
3223 nr_node_ids * sizeof(struct kmem_cache_node *);
3224
3225 /* Allocate two kmem_caches from the page allocator */
3226 kmalloc_size = ALIGN(kmem_size, cache_line_size());
3227 order = get_order(2 * kmalloc_size);
3228 kmem_cache = (void *)__get_free_pages(GFP_NOWAIT, order);
3229
Christoph Lameter81819f02007-05-06 14:49:36 -07003230 /*
3231 * Must first have the slab cache available for the allocations of the
Christoph Lameter672bba32007-05-09 02:32:39 -07003232 * struct kmem_cache_node's. There is special bootstrap code in
Christoph Lameter81819f02007-05-06 14:49:36 -07003233 * kmem_cache_open for slab_state == DOWN.
3234 */
Christoph Lameter51df1142010-08-20 12:37:15 -05003235 kmem_cache_node = (void *)kmem_cache + kmalloc_size;
3236
3237 kmem_cache_open(kmem_cache_node, "kmem_cache_node",
3238 sizeof(struct kmem_cache_node),
3239 0, SLAB_HWCACHE_ALIGN | SLAB_PANIC, NULL);
Yasunori Gotob9049e22007-10-21 16:41:37 -07003240
Nadia Derbey0c40ba42008-04-29 01:00:41 -07003241 hotplug_memory_notifier(slab_memory_callback, SLAB_CALLBACK_PRI);
Christoph Lameter81819f02007-05-06 14:49:36 -07003242
3243 /* Able to allocate the per node structures */
3244 slab_state = PARTIAL;
3245
Christoph Lameter51df1142010-08-20 12:37:15 -05003246 temp_kmem_cache = kmem_cache;
3247 kmem_cache_open(kmem_cache, "kmem_cache", kmem_size,
3248 0, SLAB_HWCACHE_ALIGN | SLAB_PANIC, NULL);
3249 kmem_cache = kmem_cache_alloc(kmem_cache, GFP_NOWAIT);
3250 memcpy(kmem_cache, temp_kmem_cache, kmem_size);
Christoph Lameter81819f02007-05-06 14:49:36 -07003251
Christoph Lameter51df1142010-08-20 12:37:15 -05003252 /*
3253 * Allocate kmem_cache_node properly from the kmem_cache slab.
3254 * kmem_cache_node is separately allocated so no need to
3255 * update any list pointers.
3256 */
3257 temp_kmem_cache_node = kmem_cache_node;
Christoph Lameter81819f02007-05-06 14:49:36 -07003258
Christoph Lameter51df1142010-08-20 12:37:15 -05003259 kmem_cache_node = kmem_cache_alloc(kmem_cache, GFP_NOWAIT);
3260 memcpy(kmem_cache_node, temp_kmem_cache_node, kmem_size);
3261
3262 kmem_cache_bootstrap_fixup(kmem_cache_node);
3263
3264 caches++;
Christoph Lameter51df1142010-08-20 12:37:15 -05003265 kmem_cache_bootstrap_fixup(kmem_cache);
3266 caches++;
3267 /* Free temporary boot structure */
3268 free_pages((unsigned long)temp_kmem_cache, order);
3269
3270 /* Now we can use the kmem_cache to allocate kmalloc slabs */
Christoph Lameterf1b26332007-07-17 04:03:26 -07003271
3272 /*
3273 * Patch up the size_index table if we have strange large alignment
3274 * requirements for the kmalloc array. This is only the case for
Christoph Lameter6446faa2008-02-15 23:45:26 -08003275 * MIPS it seems. The standard arches will not generate any code here.
Christoph Lameterf1b26332007-07-17 04:03:26 -07003276 *
3277 * Largest permitted alignment is 256 bytes due to the way we
3278 * handle the index determination for the smaller caches.
3279 *
3280 * Make sure that nothing crazy happens if someone starts tinkering
3281 * around with ARCH_KMALLOC_MINALIGN
3282 */
3283 BUILD_BUG_ON(KMALLOC_MIN_SIZE > 256 ||
3284 (KMALLOC_MIN_SIZE & (KMALLOC_MIN_SIZE - 1)));
3285
Aaro Koskinenacdfcd02009-08-28 14:28:54 +03003286 for (i = 8; i < KMALLOC_MIN_SIZE; i += 8) {
3287 int elem = size_index_elem(i);
3288 if (elem >= ARRAY_SIZE(size_index))
3289 break;
3290 size_index[elem] = KMALLOC_SHIFT_LOW;
3291 }
Christoph Lameterf1b26332007-07-17 04:03:26 -07003292
Aaro Koskinenacdfcd02009-08-28 14:28:54 +03003293 if (KMALLOC_MIN_SIZE == 64) {
3294 /*
3295 * The 96 byte size cache is not used if the alignment
3296 * is 64 byte.
3297 */
3298 for (i = 64 + 8; i <= 96; i += 8)
3299 size_index[size_index_elem(i)] = 7;
3300 } else if (KMALLOC_MIN_SIZE == 128) {
Christoph Lameter41d54d32008-07-03 09:14:26 -05003301 /*
3302 * The 192 byte sized cache is not used if the alignment
3303 * is 128 byte. Redirect kmalloc to use the 256 byte cache
3304 * instead.
3305 */
3306 for (i = 128 + 8; i <= 192; i += 8)
Aaro Koskinenacdfcd02009-08-28 14:28:54 +03003307 size_index[size_index_elem(i)] = 8;
Christoph Lameter41d54d32008-07-03 09:14:26 -05003308 }
3309
Christoph Lameter51df1142010-08-20 12:37:15 -05003310 /* Caches that are not of the two-to-the-power-of size */
3311 if (KMALLOC_MIN_SIZE <= 32) {
3312 kmalloc_caches[1] = create_kmalloc_cache("kmalloc-96", 96, 0);
3313 caches++;
3314 }
3315
3316 if (KMALLOC_MIN_SIZE <= 64) {
3317 kmalloc_caches[2] = create_kmalloc_cache("kmalloc-192", 192, 0);
3318 caches++;
3319 }
3320
3321 for (i = KMALLOC_SHIFT_LOW; i < SLUB_PAGE_SHIFT; i++) {
3322 kmalloc_caches[i] = create_kmalloc_cache("kmalloc", 1 << i, 0);
3323 caches++;
3324 }
3325
Christoph Lameter81819f02007-05-06 14:49:36 -07003326 slab_state = UP;
3327
3328 /* Provide the correct kmalloc names now that the caches are up */
Pekka Enberg84c1cf62010-09-14 23:21:12 +03003329 if (KMALLOC_MIN_SIZE <= 32) {
3330 kmalloc_caches[1]->name = kstrdup(kmalloc_caches[1]->name, GFP_NOWAIT);
3331 BUG_ON(!kmalloc_caches[1]->name);
3332 }
3333
3334 if (KMALLOC_MIN_SIZE <= 64) {
3335 kmalloc_caches[2]->name = kstrdup(kmalloc_caches[2]->name, GFP_NOWAIT);
3336 BUG_ON(!kmalloc_caches[2]->name);
3337 }
3338
Christoph Lameterd7278bd2010-07-09 14:07:12 -05003339 for (i = KMALLOC_SHIFT_LOW; i < SLUB_PAGE_SHIFT; i++) {
3340 char *s = kasprintf(GFP_NOWAIT, "kmalloc-%d", 1 << i);
3341
3342 BUG_ON(!s);
Christoph Lameter51df1142010-08-20 12:37:15 -05003343 kmalloc_caches[i]->name = s;
Christoph Lameterd7278bd2010-07-09 14:07:12 -05003344 }
Christoph Lameter81819f02007-05-06 14:49:36 -07003345
3346#ifdef CONFIG_SMP
3347 register_cpu_notifier(&slab_notifier);
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06003348#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07003349
Christoph Lameter55136592010-08-20 12:37:13 -05003350#ifdef CONFIG_ZONE_DMA
Christoph Lameter51df1142010-08-20 12:37:15 -05003351 for (i = 0; i < SLUB_PAGE_SHIFT; i++) {
3352 struct kmem_cache *s = kmalloc_caches[i];
Christoph Lameter55136592010-08-20 12:37:13 -05003353
Christoph Lameter51df1142010-08-20 12:37:15 -05003354 if (s && s->size) {
Christoph Lameter55136592010-08-20 12:37:13 -05003355 char *name = kasprintf(GFP_NOWAIT,
3356 "dma-kmalloc-%d", s->objsize);
3357
3358 BUG_ON(!name);
Christoph Lameter51df1142010-08-20 12:37:15 -05003359 kmalloc_dma_caches[i] = create_kmalloc_cache(name,
3360 s->objsize, SLAB_CACHE_DMA);
Christoph Lameter55136592010-08-20 12:37:13 -05003361 }
3362 }
3363#endif
Ingo Molnar3adbefe2008-02-05 17:57:39 -08003364 printk(KERN_INFO
3365 "SLUB: Genslabs=%d, HWalign=%d, Order=%d-%d, MinObjects=%d,"
Christoph Lameter4b356be2007-06-16 10:16:13 -07003366 " CPUs=%d, Nodes=%d\n",
3367 caches, cache_line_size(),
Christoph Lameter81819f02007-05-06 14:49:36 -07003368 slub_min_order, slub_max_order, slub_min_objects,
3369 nr_cpu_ids, nr_node_ids);
3370}
3371
Pekka Enberg7e85ee02009-06-12 14:03:06 +03003372void __init kmem_cache_init_late(void)
3373{
Pekka Enberg7e85ee02009-06-12 14:03:06 +03003374}
3375
Christoph Lameter81819f02007-05-06 14:49:36 -07003376/*
3377 * Find a mergeable slab cache
3378 */
3379static int slab_unmergeable(struct kmem_cache *s)
3380{
3381 if (slub_nomerge || (s->flags & SLUB_NEVER_MERGE))
3382 return 1;
3383
Christoph Lameterc59def92007-05-16 22:10:50 -07003384 if (s->ctor)
Christoph Lameter81819f02007-05-06 14:49:36 -07003385 return 1;
3386
Christoph Lameter8ffa6872007-05-31 00:40:51 -07003387 /*
3388 * We may have set a slab to be unmergeable during bootstrap.
3389 */
3390 if (s->refcount < 0)
3391 return 1;
3392
Christoph Lameter81819f02007-05-06 14:49:36 -07003393 return 0;
3394}
3395
3396static struct kmem_cache *find_mergeable(size_t size,
Christoph Lameterba0268a2007-09-11 15:24:11 -07003397 size_t align, unsigned long flags, const char *name,
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07003398 void (*ctor)(void *))
Christoph Lameter81819f02007-05-06 14:49:36 -07003399{
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07003400 struct kmem_cache *s;
Christoph Lameter81819f02007-05-06 14:49:36 -07003401
3402 if (slub_nomerge || (flags & SLUB_NEVER_MERGE))
3403 return NULL;
3404
Christoph Lameterc59def92007-05-16 22:10:50 -07003405 if (ctor)
Christoph Lameter81819f02007-05-06 14:49:36 -07003406 return NULL;
3407
3408 size = ALIGN(size, sizeof(void *));
3409 align = calculate_alignment(flags, align, size);
3410 size = ALIGN(size, align);
Christoph Lameterba0268a2007-09-11 15:24:11 -07003411 flags = kmem_cache_flags(size, flags, name, NULL);
Christoph Lameter81819f02007-05-06 14:49:36 -07003412
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07003413 list_for_each_entry(s, &slab_caches, list) {
Christoph Lameter81819f02007-05-06 14:49:36 -07003414 if (slab_unmergeable(s))
3415 continue;
3416
3417 if (size > s->size)
3418 continue;
3419
Christoph Lameterba0268a2007-09-11 15:24:11 -07003420 if ((flags & SLUB_MERGE_SAME) != (s->flags & SLUB_MERGE_SAME))
Christoph Lameter81819f02007-05-06 14:49:36 -07003421 continue;
3422 /*
3423 * Check if alignment is compatible.
3424 * Courtesy of Adrian Drzewiecki
3425 */
Pekka Enberg06428782008-01-07 23:20:27 -08003426 if ((s->size & ~(align - 1)) != s->size)
Christoph Lameter81819f02007-05-06 14:49:36 -07003427 continue;
3428
3429 if (s->size - size >= sizeof(void *))
3430 continue;
3431
3432 return s;
3433 }
3434 return NULL;
3435}
3436
3437struct kmem_cache *kmem_cache_create(const char *name, size_t size,
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07003438 size_t align, unsigned long flags, void (*ctor)(void *))
Christoph Lameter81819f02007-05-06 14:49:36 -07003439{
3440 struct kmem_cache *s;
Pekka Enberg84c1cf62010-09-14 23:21:12 +03003441 char *n;
Christoph Lameter81819f02007-05-06 14:49:36 -07003442
Benjamin Herrenschmidtfe1ff492009-09-21 17:02:30 -07003443 if (WARN_ON(!name))
3444 return NULL;
3445
Christoph Lameter81819f02007-05-06 14:49:36 -07003446 down_write(&slub_lock);
Christoph Lameterba0268a2007-09-11 15:24:11 -07003447 s = find_mergeable(size, align, flags, name, ctor);
Christoph Lameter81819f02007-05-06 14:49:36 -07003448 if (s) {
3449 s->refcount++;
3450 /*
3451 * Adjust the object sizes so that we clear
3452 * the complete object on kzalloc.
3453 */
3454 s->objsize = max(s->objsize, (int)size);
3455 s->inuse = max_t(int, s->inuse, ALIGN(size, sizeof(void *)));
Christoph Lameter6446faa2008-02-15 23:45:26 -08003456
David Rientjes7b8f3b62008-12-17 22:09:46 -08003457 if (sysfs_slab_alias(s, name)) {
David Rientjes7b8f3b62008-12-17 22:09:46 -08003458 s->refcount--;
Christoph Lameter81819f02007-05-06 14:49:36 -07003459 goto err;
David Rientjes7b8f3b62008-12-17 22:09:46 -08003460 }
Christoph Lameter2bce64852010-07-19 11:39:11 -05003461 up_write(&slub_lock);
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07003462 return s;
3463 }
Christoph Lameter6446faa2008-02-15 23:45:26 -08003464
Pekka Enberg84c1cf62010-09-14 23:21:12 +03003465 n = kstrdup(name, GFP_KERNEL);
3466 if (!n)
3467 goto err;
3468
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07003469 s = kmalloc(kmem_size, GFP_KERNEL);
3470 if (s) {
Pekka Enberg84c1cf62010-09-14 23:21:12 +03003471 if (kmem_cache_open(s, n,
Christoph Lameterc59def92007-05-16 22:10:50 -07003472 size, align, flags, ctor)) {
Christoph Lameter81819f02007-05-06 14:49:36 -07003473 list_add(&s->list, &slab_caches);
David Rientjes7b8f3b62008-12-17 22:09:46 -08003474 if (sysfs_slab_add(s)) {
David Rientjes7b8f3b62008-12-17 22:09:46 -08003475 list_del(&s->list);
Pekka Enberg84c1cf62010-09-14 23:21:12 +03003476 kfree(n);
David Rientjes7b8f3b62008-12-17 22:09:46 -08003477 kfree(s);
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07003478 goto err;
David Rientjes7b8f3b62008-12-17 22:09:46 -08003479 }
Christoph Lameter2bce64852010-07-19 11:39:11 -05003480 up_write(&slub_lock);
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07003481 return s;
3482 }
Pekka Enberg84c1cf62010-09-14 23:21:12 +03003483 kfree(n);
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07003484 kfree(s);
Christoph Lameter81819f02007-05-06 14:49:36 -07003485 }
Pavel Emelyanov68cee4f12010-10-28 13:50:37 +04003486err:
Christoph Lameter81819f02007-05-06 14:49:36 -07003487 up_write(&slub_lock);
Christoph Lameter81819f02007-05-06 14:49:36 -07003488
Christoph Lameter81819f02007-05-06 14:49:36 -07003489 if (flags & SLAB_PANIC)
3490 panic("Cannot create slabcache %s\n", name);
3491 else
3492 s = NULL;
3493 return s;
3494}
3495EXPORT_SYMBOL(kmem_cache_create);
3496
Christoph Lameter81819f02007-05-06 14:49:36 -07003497#ifdef CONFIG_SMP
Christoph Lameter27390bc2007-06-01 00:47:09 -07003498/*
Christoph Lameter672bba32007-05-09 02:32:39 -07003499 * Use the cpu notifier to insure that the cpu slabs are flushed when
3500 * necessary.
Christoph Lameter81819f02007-05-06 14:49:36 -07003501 */
3502static int __cpuinit slab_cpuup_callback(struct notifier_block *nfb,
3503 unsigned long action, void *hcpu)
3504{
3505 long cpu = (long)hcpu;
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07003506 struct kmem_cache *s;
3507 unsigned long flags;
Christoph Lameter81819f02007-05-06 14:49:36 -07003508
3509 switch (action) {
3510 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07003511 case CPU_UP_CANCELED_FROZEN:
Christoph Lameter81819f02007-05-06 14:49:36 -07003512 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07003513 case CPU_DEAD_FROZEN:
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07003514 down_read(&slub_lock);
3515 list_for_each_entry(s, &slab_caches, list) {
3516 local_irq_save(flags);
3517 __flush_cpu_slab(s, cpu);
3518 local_irq_restore(flags);
3519 }
3520 up_read(&slub_lock);
Christoph Lameter81819f02007-05-06 14:49:36 -07003521 break;
3522 default:
3523 break;
3524 }
3525 return NOTIFY_OK;
3526}
3527
Pekka Enberg06428782008-01-07 23:20:27 -08003528static struct notifier_block __cpuinitdata slab_notifier = {
Ingo Molnar3adbefe2008-02-05 17:57:39 -08003529 .notifier_call = slab_cpuup_callback
Pekka Enberg06428782008-01-07 23:20:27 -08003530};
Christoph Lameter81819f02007-05-06 14:49:36 -07003531
3532#endif
3533
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003534void *__kmalloc_track_caller(size_t size, gfp_t gfpflags, unsigned long caller)
Christoph Lameter81819f02007-05-06 14:49:36 -07003535{
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003536 struct kmem_cache *s;
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03003537 void *ret;
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003538
Christoph Lameterffadd4d2009-02-17 12:05:07 -05003539 if (unlikely(size > SLUB_MAX_SIZE))
Pekka Enbergeada35e2008-02-11 22:47:46 +02003540 return kmalloc_large(size, gfpflags);
3541
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003542 s = get_slab(size, gfpflags);
Christoph Lameter81819f02007-05-06 14:49:36 -07003543
Satyam Sharma2408c552007-10-16 01:24:44 -07003544 if (unlikely(ZERO_OR_NULL_PTR(s)))
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003545 return s;
Christoph Lameter81819f02007-05-06 14:49:36 -07003546
Christoph Lameter2154a332010-07-09 14:07:10 -05003547 ret = slab_alloc(s, gfpflags, NUMA_NO_NODE, caller);
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03003548
3549 /* Honor the call site pointer we recieved. */
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003550 trace_kmalloc(caller, ret, size, s->size, gfpflags);
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03003551
3552 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07003553}
3554
Namhyung Kim5d1f57e2010-09-29 21:02:15 +09003555#ifdef CONFIG_NUMA
Christoph Lameter81819f02007-05-06 14:49:36 -07003556void *__kmalloc_node_track_caller(size_t size, gfp_t gfpflags,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003557 int node, unsigned long caller)
Christoph Lameter81819f02007-05-06 14:49:36 -07003558{
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003559 struct kmem_cache *s;
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03003560 void *ret;
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003561
Xiaotian Fengd3e14aa2010-04-08 17:26:44 +08003562 if (unlikely(size > SLUB_MAX_SIZE)) {
3563 ret = kmalloc_large_node(size, gfpflags, node);
3564
3565 trace_kmalloc_node(caller, ret,
3566 size, PAGE_SIZE << get_order(size),
3567 gfpflags, node);
3568
3569 return ret;
3570 }
Pekka Enbergeada35e2008-02-11 22:47:46 +02003571
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003572 s = get_slab(size, gfpflags);
Christoph Lameter81819f02007-05-06 14:49:36 -07003573
Satyam Sharma2408c552007-10-16 01:24:44 -07003574 if (unlikely(ZERO_OR_NULL_PTR(s)))
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003575 return s;
Christoph Lameter81819f02007-05-06 14:49:36 -07003576
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03003577 ret = slab_alloc(s, gfpflags, node, caller);
3578
3579 /* Honor the call site pointer we recieved. */
Eduard - Gabriel Munteanuca2b84c2009-03-23 15:12:24 +02003580 trace_kmalloc_node(caller, ret, size, s->size, gfpflags, node);
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03003581
3582 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07003583}
Namhyung Kim5d1f57e2010-09-29 21:02:15 +09003584#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07003585
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05003586#ifdef CONFIG_SYSFS
Christoph Lameter205ab992008-04-14 19:11:40 +03003587static int count_inuse(struct page *page)
3588{
3589 return page->inuse;
3590}
3591
3592static int count_total(struct page *page)
3593{
3594 return page->objects;
3595}
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05003596#endif
Christoph Lameter205ab992008-04-14 19:11:40 +03003597
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05003598#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter434e2452007-07-17 04:03:30 -07003599static int validate_slab(struct kmem_cache *s, struct page *page,
3600 unsigned long *map)
Christoph Lameter53e15af2007-05-06 14:49:43 -07003601{
3602 void *p;
Christoph Lametera973e9d2008-03-01 13:40:44 -08003603 void *addr = page_address(page);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003604
3605 if (!check_slab(s, page) ||
3606 !on_freelist(s, page, NULL))
3607 return 0;
3608
3609 /* Now we know that a valid freelist exists */
Christoph Lameter39b26462008-04-14 19:11:30 +03003610 bitmap_zero(map, page->objects);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003611
Christoph Lameter7656c722007-05-09 02:32:40 -07003612 for_each_free_object(p, s, page->freelist) {
3613 set_bit(slab_index(p, s, addr), map);
Tero Roponen37d57442010-12-01 20:04:20 +02003614 if (!check_object(s, page, p, SLUB_RED_INACTIVE))
Christoph Lameter53e15af2007-05-06 14:49:43 -07003615 return 0;
3616 }
3617
Christoph Lameter224a88b2008-04-14 19:11:31 +03003618 for_each_object(p, s, addr, page->objects)
Christoph Lameter7656c722007-05-09 02:32:40 -07003619 if (!test_bit(slab_index(p, s, addr), map))
Tero Roponen37d57442010-12-01 20:04:20 +02003620 if (!check_object(s, page, p, SLUB_RED_ACTIVE))
Christoph Lameter53e15af2007-05-06 14:49:43 -07003621 return 0;
3622 return 1;
3623}
3624
Christoph Lameter434e2452007-07-17 04:03:30 -07003625static void validate_slab_slab(struct kmem_cache *s, struct page *page,
3626 unsigned long *map)
Christoph Lameter53e15af2007-05-06 14:49:43 -07003627{
3628 if (slab_trylock(page)) {
Christoph Lameter434e2452007-07-17 04:03:30 -07003629 validate_slab(s, page, map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003630 slab_unlock(page);
3631 } else
3632 printk(KERN_INFO "SLUB %s: Skipped busy slab 0x%p\n",
3633 s->name, page);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003634}
3635
Christoph Lameter434e2452007-07-17 04:03:30 -07003636static int validate_slab_node(struct kmem_cache *s,
3637 struct kmem_cache_node *n, unsigned long *map)
Christoph Lameter53e15af2007-05-06 14:49:43 -07003638{
3639 unsigned long count = 0;
3640 struct page *page;
3641 unsigned long flags;
3642
3643 spin_lock_irqsave(&n->list_lock, flags);
3644
3645 list_for_each_entry(page, &n->partial, lru) {
Christoph Lameter434e2452007-07-17 04:03:30 -07003646 validate_slab_slab(s, page, map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003647 count++;
3648 }
3649 if (count != n->nr_partial)
3650 printk(KERN_ERR "SLUB %s: %ld partial slabs counted but "
3651 "counter=%ld\n", s->name, count, n->nr_partial);
3652
3653 if (!(s->flags & SLAB_STORE_USER))
3654 goto out;
3655
3656 list_for_each_entry(page, &n->full, lru) {
Christoph Lameter434e2452007-07-17 04:03:30 -07003657 validate_slab_slab(s, page, map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003658 count++;
3659 }
3660 if (count != atomic_long_read(&n->nr_slabs))
3661 printk(KERN_ERR "SLUB: %s %ld slabs counted but "
3662 "counter=%ld\n", s->name, count,
3663 atomic_long_read(&n->nr_slabs));
3664
3665out:
3666 spin_unlock_irqrestore(&n->list_lock, flags);
3667 return count;
3668}
3669
Christoph Lameter434e2452007-07-17 04:03:30 -07003670static long validate_slab_cache(struct kmem_cache *s)
Christoph Lameter53e15af2007-05-06 14:49:43 -07003671{
3672 int node;
3673 unsigned long count = 0;
Christoph Lameter205ab992008-04-14 19:11:40 +03003674 unsigned long *map = kmalloc(BITS_TO_LONGS(oo_objects(s->max)) *
Christoph Lameter434e2452007-07-17 04:03:30 -07003675 sizeof(unsigned long), GFP_KERNEL);
3676
3677 if (!map)
3678 return -ENOMEM;
Christoph Lameter53e15af2007-05-06 14:49:43 -07003679
3680 flush_all(s);
Christoph Lameterf64dc582007-10-16 01:25:33 -07003681 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter53e15af2007-05-06 14:49:43 -07003682 struct kmem_cache_node *n = get_node(s, node);
3683
Christoph Lameter434e2452007-07-17 04:03:30 -07003684 count += validate_slab_node(s, n, map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003685 }
Christoph Lameter434e2452007-07-17 04:03:30 -07003686 kfree(map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003687 return count;
3688}
Christoph Lameter88a420e2007-05-06 14:49:45 -07003689/*
Christoph Lameter672bba32007-05-09 02:32:39 -07003690 * Generate lists of code addresses where slabcache objects are allocated
Christoph Lameter88a420e2007-05-06 14:49:45 -07003691 * and freed.
3692 */
3693
3694struct location {
3695 unsigned long count;
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003696 unsigned long addr;
Christoph Lameter45edfa52007-05-09 02:32:45 -07003697 long long sum_time;
3698 long min_time;
3699 long max_time;
3700 long min_pid;
3701 long max_pid;
Rusty Russell174596a2009-01-01 10:12:29 +10303702 DECLARE_BITMAP(cpus, NR_CPUS);
Christoph Lameter45edfa52007-05-09 02:32:45 -07003703 nodemask_t nodes;
Christoph Lameter88a420e2007-05-06 14:49:45 -07003704};
3705
3706struct loc_track {
3707 unsigned long max;
3708 unsigned long count;
3709 struct location *loc;
3710};
3711
3712static void free_loc_track(struct loc_track *t)
3713{
3714 if (t->max)
3715 free_pages((unsigned long)t->loc,
3716 get_order(sizeof(struct location) * t->max));
3717}
3718
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003719static int alloc_loc_track(struct loc_track *t, unsigned long max, gfp_t flags)
Christoph Lameter88a420e2007-05-06 14:49:45 -07003720{
3721 struct location *l;
3722 int order;
3723
Christoph Lameter88a420e2007-05-06 14:49:45 -07003724 order = get_order(sizeof(struct location) * max);
3725
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003726 l = (void *)__get_free_pages(flags, order);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003727 if (!l)
3728 return 0;
3729
3730 if (t->count) {
3731 memcpy(l, t->loc, sizeof(struct location) * t->count);
3732 free_loc_track(t);
3733 }
3734 t->max = max;
3735 t->loc = l;
3736 return 1;
3737}
3738
3739static int add_location(struct loc_track *t, struct kmem_cache *s,
Christoph Lameter45edfa52007-05-09 02:32:45 -07003740 const struct track *track)
Christoph Lameter88a420e2007-05-06 14:49:45 -07003741{
3742 long start, end, pos;
3743 struct location *l;
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003744 unsigned long caddr;
Christoph Lameter45edfa52007-05-09 02:32:45 -07003745 unsigned long age = jiffies - track->when;
Christoph Lameter88a420e2007-05-06 14:49:45 -07003746
3747 start = -1;
3748 end = t->count;
3749
3750 for ( ; ; ) {
3751 pos = start + (end - start + 1) / 2;
3752
3753 /*
3754 * There is nothing at "end". If we end up there
3755 * we need to add something to before end.
3756 */
3757 if (pos == end)
3758 break;
3759
3760 caddr = t->loc[pos].addr;
Christoph Lameter45edfa52007-05-09 02:32:45 -07003761 if (track->addr == caddr) {
3762
3763 l = &t->loc[pos];
3764 l->count++;
3765 if (track->when) {
3766 l->sum_time += age;
3767 if (age < l->min_time)
3768 l->min_time = age;
3769 if (age > l->max_time)
3770 l->max_time = age;
3771
3772 if (track->pid < l->min_pid)
3773 l->min_pid = track->pid;
3774 if (track->pid > l->max_pid)
3775 l->max_pid = track->pid;
3776
Rusty Russell174596a2009-01-01 10:12:29 +10303777 cpumask_set_cpu(track->cpu,
3778 to_cpumask(l->cpus));
Christoph Lameter45edfa52007-05-09 02:32:45 -07003779 }
3780 node_set(page_to_nid(virt_to_page(track)), l->nodes);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003781 return 1;
3782 }
3783
Christoph Lameter45edfa52007-05-09 02:32:45 -07003784 if (track->addr < caddr)
Christoph Lameter88a420e2007-05-06 14:49:45 -07003785 end = pos;
3786 else
3787 start = pos;
3788 }
3789
3790 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07003791 * Not found. Insert new tracking element.
Christoph Lameter88a420e2007-05-06 14:49:45 -07003792 */
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003793 if (t->count >= t->max && !alloc_loc_track(t, 2 * t->max, GFP_ATOMIC))
Christoph Lameter88a420e2007-05-06 14:49:45 -07003794 return 0;
3795
3796 l = t->loc + pos;
3797 if (pos < t->count)
3798 memmove(l + 1, l,
3799 (t->count - pos) * sizeof(struct location));
3800 t->count++;
3801 l->count = 1;
Christoph Lameter45edfa52007-05-09 02:32:45 -07003802 l->addr = track->addr;
3803 l->sum_time = age;
3804 l->min_time = age;
3805 l->max_time = age;
3806 l->min_pid = track->pid;
3807 l->max_pid = track->pid;
Rusty Russell174596a2009-01-01 10:12:29 +10303808 cpumask_clear(to_cpumask(l->cpus));
3809 cpumask_set_cpu(track->cpu, to_cpumask(l->cpus));
Christoph Lameter45edfa52007-05-09 02:32:45 -07003810 nodes_clear(l->nodes);
3811 node_set(page_to_nid(virt_to_page(track)), l->nodes);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003812 return 1;
3813}
3814
3815static void process_slab(struct loc_track *t, struct kmem_cache *s,
Eric Dumazetbbd7d572010-03-24 22:25:47 +01003816 struct page *page, enum track_item alloc,
Namhyung Kima5dd5c12010-09-29 21:02:13 +09003817 unsigned long *map)
Christoph Lameter88a420e2007-05-06 14:49:45 -07003818{
Christoph Lametera973e9d2008-03-01 13:40:44 -08003819 void *addr = page_address(page);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003820 void *p;
3821
Christoph Lameter39b26462008-04-14 19:11:30 +03003822 bitmap_zero(map, page->objects);
Christoph Lameter7656c722007-05-09 02:32:40 -07003823 for_each_free_object(p, s, page->freelist)
3824 set_bit(slab_index(p, s, addr), map);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003825
Christoph Lameter224a88b2008-04-14 19:11:31 +03003826 for_each_object(p, s, addr, page->objects)
Christoph Lameter45edfa52007-05-09 02:32:45 -07003827 if (!test_bit(slab_index(p, s, addr), map))
3828 add_location(t, s, get_track(s, p, alloc));
Christoph Lameter88a420e2007-05-06 14:49:45 -07003829}
3830
3831static int list_locations(struct kmem_cache *s, char *buf,
3832 enum track_item alloc)
3833{
Harvey Harrisone374d482008-01-31 15:20:50 -08003834 int len = 0;
Christoph Lameter88a420e2007-05-06 14:49:45 -07003835 unsigned long i;
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003836 struct loc_track t = { 0, 0, NULL };
Christoph Lameter88a420e2007-05-06 14:49:45 -07003837 int node;
Eric Dumazetbbd7d572010-03-24 22:25:47 +01003838 unsigned long *map = kmalloc(BITS_TO_LONGS(oo_objects(s->max)) *
3839 sizeof(unsigned long), GFP_KERNEL);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003840
Eric Dumazetbbd7d572010-03-24 22:25:47 +01003841 if (!map || !alloc_loc_track(&t, PAGE_SIZE / sizeof(struct location),
3842 GFP_TEMPORARY)) {
3843 kfree(map);
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003844 return sprintf(buf, "Out of memory\n");
Eric Dumazetbbd7d572010-03-24 22:25:47 +01003845 }
Christoph Lameter88a420e2007-05-06 14:49:45 -07003846 /* Push back cpu slabs */
3847 flush_all(s);
3848
Christoph Lameterf64dc582007-10-16 01:25:33 -07003849 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter88a420e2007-05-06 14:49:45 -07003850 struct kmem_cache_node *n = get_node(s, node);
3851 unsigned long flags;
3852 struct page *page;
3853
Christoph Lameter9e869432007-08-22 14:01:56 -07003854 if (!atomic_long_read(&n->nr_slabs))
Christoph Lameter88a420e2007-05-06 14:49:45 -07003855 continue;
3856
3857 spin_lock_irqsave(&n->list_lock, flags);
3858 list_for_each_entry(page, &n->partial, lru)
Eric Dumazetbbd7d572010-03-24 22:25:47 +01003859 process_slab(&t, s, page, alloc, map);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003860 list_for_each_entry(page, &n->full, lru)
Eric Dumazetbbd7d572010-03-24 22:25:47 +01003861 process_slab(&t, s, page, alloc, map);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003862 spin_unlock_irqrestore(&n->list_lock, flags);
3863 }
3864
3865 for (i = 0; i < t.count; i++) {
Christoph Lameter45edfa52007-05-09 02:32:45 -07003866 struct location *l = &t.loc[i];
Christoph Lameter88a420e2007-05-06 14:49:45 -07003867
Hugh Dickins9c246242008-12-09 13:14:27 -08003868 if (len > PAGE_SIZE - KSYM_SYMBOL_LEN - 100)
Christoph Lameter88a420e2007-05-06 14:49:45 -07003869 break;
Harvey Harrisone374d482008-01-31 15:20:50 -08003870 len += sprintf(buf + len, "%7ld ", l->count);
Christoph Lameter45edfa52007-05-09 02:32:45 -07003871
3872 if (l->addr)
Joe Perches62c70bc2011-01-13 15:45:52 -08003873 len += sprintf(buf + len, "%pS", (void *)l->addr);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003874 else
Harvey Harrisone374d482008-01-31 15:20:50 -08003875 len += sprintf(buf + len, "<not-available>");
Christoph Lameter45edfa52007-05-09 02:32:45 -07003876
3877 if (l->sum_time != l->min_time) {
Harvey Harrisone374d482008-01-31 15:20:50 -08003878 len += sprintf(buf + len, " age=%ld/%ld/%ld",
Roman Zippelf8bd2252008-05-01 04:34:31 -07003879 l->min_time,
3880 (long)div_u64(l->sum_time, l->count),
3881 l->max_time);
Christoph Lameter45edfa52007-05-09 02:32:45 -07003882 } else
Harvey Harrisone374d482008-01-31 15:20:50 -08003883 len += sprintf(buf + len, " age=%ld",
Christoph Lameter45edfa52007-05-09 02:32:45 -07003884 l->min_time);
3885
3886 if (l->min_pid != l->max_pid)
Harvey Harrisone374d482008-01-31 15:20:50 -08003887 len += sprintf(buf + len, " pid=%ld-%ld",
Christoph Lameter45edfa52007-05-09 02:32:45 -07003888 l->min_pid, l->max_pid);
3889 else
Harvey Harrisone374d482008-01-31 15:20:50 -08003890 len += sprintf(buf + len, " pid=%ld",
Christoph Lameter45edfa52007-05-09 02:32:45 -07003891 l->min_pid);
3892
Rusty Russell174596a2009-01-01 10:12:29 +10303893 if (num_online_cpus() > 1 &&
3894 !cpumask_empty(to_cpumask(l->cpus)) &&
Harvey Harrisone374d482008-01-31 15:20:50 -08003895 len < PAGE_SIZE - 60) {
3896 len += sprintf(buf + len, " cpus=");
3897 len += cpulist_scnprintf(buf + len, PAGE_SIZE - len - 50,
Rusty Russell174596a2009-01-01 10:12:29 +10303898 to_cpumask(l->cpus));
Christoph Lameter45edfa52007-05-09 02:32:45 -07003899 }
3900
Christoph Lameter62bc62a2009-06-16 15:32:15 -07003901 if (nr_online_nodes > 1 && !nodes_empty(l->nodes) &&
Harvey Harrisone374d482008-01-31 15:20:50 -08003902 len < PAGE_SIZE - 60) {
3903 len += sprintf(buf + len, " nodes=");
3904 len += nodelist_scnprintf(buf + len, PAGE_SIZE - len - 50,
Christoph Lameter45edfa52007-05-09 02:32:45 -07003905 l->nodes);
3906 }
3907
Harvey Harrisone374d482008-01-31 15:20:50 -08003908 len += sprintf(buf + len, "\n");
Christoph Lameter88a420e2007-05-06 14:49:45 -07003909 }
3910
3911 free_loc_track(&t);
Eric Dumazetbbd7d572010-03-24 22:25:47 +01003912 kfree(map);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003913 if (!t.count)
Harvey Harrisone374d482008-01-31 15:20:50 -08003914 len += sprintf(buf, "No data\n");
3915 return len;
Christoph Lameter88a420e2007-05-06 14:49:45 -07003916}
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05003917#endif
Christoph Lameter88a420e2007-05-06 14:49:45 -07003918
Christoph Lametera5a84752010-10-05 13:57:27 -05003919#ifdef SLUB_RESILIENCY_TEST
3920static void resiliency_test(void)
3921{
3922 u8 *p;
3923
3924 BUILD_BUG_ON(KMALLOC_MIN_SIZE > 16 || SLUB_PAGE_SHIFT < 10);
3925
3926 printk(KERN_ERR "SLUB resiliency testing\n");
3927 printk(KERN_ERR "-----------------------\n");
3928 printk(KERN_ERR "A. Corruption after allocation\n");
3929
3930 p = kzalloc(16, GFP_KERNEL);
3931 p[16] = 0x12;
3932 printk(KERN_ERR "\n1. kmalloc-16: Clobber Redzone/next pointer"
3933 " 0x12->0x%p\n\n", p + 16);
3934
3935 validate_slab_cache(kmalloc_caches[4]);
3936
3937 /* Hmmm... The next two are dangerous */
3938 p = kzalloc(32, GFP_KERNEL);
3939 p[32 + sizeof(void *)] = 0x34;
3940 printk(KERN_ERR "\n2. kmalloc-32: Clobber next pointer/next slab"
3941 " 0x34 -> -0x%p\n", p);
3942 printk(KERN_ERR
3943 "If allocated object is overwritten then not detectable\n\n");
3944
3945 validate_slab_cache(kmalloc_caches[5]);
3946 p = kzalloc(64, GFP_KERNEL);
3947 p += 64 + (get_cycles() & 0xff) * sizeof(void *);
3948 *p = 0x56;
3949 printk(KERN_ERR "\n3. kmalloc-64: corrupting random byte 0x56->0x%p\n",
3950 p);
3951 printk(KERN_ERR
3952 "If allocated object is overwritten then not detectable\n\n");
3953 validate_slab_cache(kmalloc_caches[6]);
3954
3955 printk(KERN_ERR "\nB. Corruption after free\n");
3956 p = kzalloc(128, GFP_KERNEL);
3957 kfree(p);
3958 *p = 0x78;
3959 printk(KERN_ERR "1. kmalloc-128: Clobber first word 0x78->0x%p\n\n", p);
3960 validate_slab_cache(kmalloc_caches[7]);
3961
3962 p = kzalloc(256, GFP_KERNEL);
3963 kfree(p);
3964 p[50] = 0x9a;
3965 printk(KERN_ERR "\n2. kmalloc-256: Clobber 50th byte 0x9a->0x%p\n\n",
3966 p);
3967 validate_slab_cache(kmalloc_caches[8]);
3968
3969 p = kzalloc(512, GFP_KERNEL);
3970 kfree(p);
3971 p[512] = 0xab;
3972 printk(KERN_ERR "\n3. kmalloc-512: Clobber redzone 0xab->0x%p\n\n", p);
3973 validate_slab_cache(kmalloc_caches[9]);
3974}
3975#else
3976#ifdef CONFIG_SYSFS
3977static void resiliency_test(void) {};
3978#endif
3979#endif
3980
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05003981#ifdef CONFIG_SYSFS
Christoph Lameter81819f02007-05-06 14:49:36 -07003982enum slab_stat_type {
Christoph Lameter205ab992008-04-14 19:11:40 +03003983 SL_ALL, /* All slabs */
3984 SL_PARTIAL, /* Only partially allocated slabs */
3985 SL_CPU, /* Only slabs used for cpu caches */
3986 SL_OBJECTS, /* Determine allocated objects not slabs */
3987 SL_TOTAL /* Determine object capacity not slabs */
Christoph Lameter81819f02007-05-06 14:49:36 -07003988};
3989
Christoph Lameter205ab992008-04-14 19:11:40 +03003990#define SO_ALL (1 << SL_ALL)
Christoph Lameter81819f02007-05-06 14:49:36 -07003991#define SO_PARTIAL (1 << SL_PARTIAL)
3992#define SO_CPU (1 << SL_CPU)
3993#define SO_OBJECTS (1 << SL_OBJECTS)
Christoph Lameter205ab992008-04-14 19:11:40 +03003994#define SO_TOTAL (1 << SL_TOTAL)
Christoph Lameter81819f02007-05-06 14:49:36 -07003995
Cyrill Gorcunov62e5c4b2008-03-02 23:28:24 +03003996static ssize_t show_slab_objects(struct kmem_cache *s,
3997 char *buf, unsigned long flags)
Christoph Lameter81819f02007-05-06 14:49:36 -07003998{
3999 unsigned long total = 0;
Christoph Lameter81819f02007-05-06 14:49:36 -07004000 int node;
4001 int x;
4002 unsigned long *nodes;
4003 unsigned long *per_cpu;
4004
4005 nodes = kzalloc(2 * sizeof(unsigned long) * nr_node_ids, GFP_KERNEL);
Cyrill Gorcunov62e5c4b2008-03-02 23:28:24 +03004006 if (!nodes)
4007 return -ENOMEM;
Christoph Lameter81819f02007-05-06 14:49:36 -07004008 per_cpu = nodes + nr_node_ids;
4009
Christoph Lameter205ab992008-04-14 19:11:40 +03004010 if (flags & SO_CPU) {
4011 int cpu;
Christoph Lameter81819f02007-05-06 14:49:36 -07004012
Christoph Lameter205ab992008-04-14 19:11:40 +03004013 for_each_possible_cpu(cpu) {
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06004014 struct kmem_cache_cpu *c = per_cpu_ptr(s->cpu_slab, cpu);
Christoph Lameterdfb4f092007-10-16 01:26:05 -07004015
Christoph Lameter205ab992008-04-14 19:11:40 +03004016 if (!c || c->node < 0)
4017 continue;
4018
4019 if (c->page) {
4020 if (flags & SO_TOTAL)
4021 x = c->page->objects;
4022 else if (flags & SO_OBJECTS)
4023 x = c->page->inuse;
Christoph Lameter81819f02007-05-06 14:49:36 -07004024 else
4025 x = 1;
Christoph Lameter205ab992008-04-14 19:11:40 +03004026
Christoph Lameter81819f02007-05-06 14:49:36 -07004027 total += x;
Christoph Lameter205ab992008-04-14 19:11:40 +03004028 nodes[c->node] += x;
Christoph Lameter81819f02007-05-06 14:49:36 -07004029 }
Christoph Lameter205ab992008-04-14 19:11:40 +03004030 per_cpu[c->node]++;
Christoph Lameter81819f02007-05-06 14:49:36 -07004031 }
4032 }
4033
Christoph Lameter04d94872011-01-10 10:15:15 -06004034 lock_memory_hotplug();
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05004035#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter205ab992008-04-14 19:11:40 +03004036 if (flags & SO_ALL) {
4037 for_each_node_state(node, N_NORMAL_MEMORY) {
4038 struct kmem_cache_node *n = get_node(s, node);
Christoph Lameter81819f02007-05-06 14:49:36 -07004039
Christoph Lameter205ab992008-04-14 19:11:40 +03004040 if (flags & SO_TOTAL)
4041 x = atomic_long_read(&n->total_objects);
4042 else if (flags & SO_OBJECTS)
4043 x = atomic_long_read(&n->total_objects) -
4044 count_partial(n, count_free);
4045
4046 else
4047 x = atomic_long_read(&n->nr_slabs);
4048 total += x;
4049 nodes[node] += x;
4050 }
4051
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05004052 } else
4053#endif
4054 if (flags & SO_PARTIAL) {
Christoph Lameter205ab992008-04-14 19:11:40 +03004055 for_each_node_state(node, N_NORMAL_MEMORY) {
4056 struct kmem_cache_node *n = get_node(s, node);
4057
4058 if (flags & SO_TOTAL)
4059 x = count_partial(n, count_total);
4060 else if (flags & SO_OBJECTS)
4061 x = count_partial(n, count_inuse);
Christoph Lameter81819f02007-05-06 14:49:36 -07004062 else
4063 x = n->nr_partial;
4064 total += x;
4065 nodes[node] += x;
4066 }
Christoph Lameter81819f02007-05-06 14:49:36 -07004067 }
Christoph Lameter81819f02007-05-06 14:49:36 -07004068 x = sprintf(buf, "%lu", total);
4069#ifdef CONFIG_NUMA
Christoph Lameterf64dc582007-10-16 01:25:33 -07004070 for_each_node_state(node, N_NORMAL_MEMORY)
Christoph Lameter81819f02007-05-06 14:49:36 -07004071 if (nodes[node])
4072 x += sprintf(buf + x, " N%d=%lu",
4073 node, nodes[node]);
4074#endif
Christoph Lameter04d94872011-01-10 10:15:15 -06004075 unlock_memory_hotplug();
Christoph Lameter81819f02007-05-06 14:49:36 -07004076 kfree(nodes);
4077 return x + sprintf(buf + x, "\n");
4078}
4079
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05004080#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter81819f02007-05-06 14:49:36 -07004081static int any_slab_objects(struct kmem_cache *s)
4082{
4083 int node;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07004084
4085 for_each_online_node(node) {
Christoph Lameter81819f02007-05-06 14:49:36 -07004086 struct kmem_cache_node *n = get_node(s, node);
4087
Christoph Lameterdfb4f092007-10-16 01:26:05 -07004088 if (!n)
4089 continue;
4090
Benjamin Herrenschmidt4ea33e22008-05-06 20:42:39 -07004091 if (atomic_long_read(&n->total_objects))
Christoph Lameter81819f02007-05-06 14:49:36 -07004092 return 1;
4093 }
4094 return 0;
4095}
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05004096#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07004097
4098#define to_slab_attr(n) container_of(n, struct slab_attribute, attr)
4099#define to_slab(n) container_of(n, struct kmem_cache, kobj);
4100
4101struct slab_attribute {
4102 struct attribute attr;
4103 ssize_t (*show)(struct kmem_cache *s, char *buf);
4104 ssize_t (*store)(struct kmem_cache *s, const char *x, size_t count);
4105};
4106
4107#define SLAB_ATTR_RO(_name) \
4108 static struct slab_attribute _name##_attr = __ATTR_RO(_name)
4109
4110#define SLAB_ATTR(_name) \
4111 static struct slab_attribute _name##_attr = \
4112 __ATTR(_name, 0644, _name##_show, _name##_store)
4113
Christoph Lameter81819f02007-05-06 14:49:36 -07004114static ssize_t slab_size_show(struct kmem_cache *s, char *buf)
4115{
4116 return sprintf(buf, "%d\n", s->size);
4117}
4118SLAB_ATTR_RO(slab_size);
4119
4120static ssize_t align_show(struct kmem_cache *s, char *buf)
4121{
4122 return sprintf(buf, "%d\n", s->align);
4123}
4124SLAB_ATTR_RO(align);
4125
4126static ssize_t object_size_show(struct kmem_cache *s, char *buf)
4127{
4128 return sprintf(buf, "%d\n", s->objsize);
4129}
4130SLAB_ATTR_RO(object_size);
4131
4132static ssize_t objs_per_slab_show(struct kmem_cache *s, char *buf)
4133{
Christoph Lameter834f3d12008-04-14 19:11:31 +03004134 return sprintf(buf, "%d\n", oo_objects(s->oo));
Christoph Lameter81819f02007-05-06 14:49:36 -07004135}
4136SLAB_ATTR_RO(objs_per_slab);
4137
Christoph Lameter06b285d2008-04-14 19:11:41 +03004138static ssize_t order_store(struct kmem_cache *s,
4139 const char *buf, size_t length)
4140{
Christoph Lameter0121c6192008-04-29 16:11:12 -07004141 unsigned long order;
4142 int err;
4143
4144 err = strict_strtoul(buf, 10, &order);
4145 if (err)
4146 return err;
Christoph Lameter06b285d2008-04-14 19:11:41 +03004147
4148 if (order > slub_max_order || order < slub_min_order)
4149 return -EINVAL;
4150
4151 calculate_sizes(s, order);
4152 return length;
4153}
4154
Christoph Lameter81819f02007-05-06 14:49:36 -07004155static ssize_t order_show(struct kmem_cache *s, char *buf)
4156{
Christoph Lameter834f3d12008-04-14 19:11:31 +03004157 return sprintf(buf, "%d\n", oo_order(s->oo));
Christoph Lameter81819f02007-05-06 14:49:36 -07004158}
Christoph Lameter06b285d2008-04-14 19:11:41 +03004159SLAB_ATTR(order);
Christoph Lameter81819f02007-05-06 14:49:36 -07004160
David Rientjes73d342b2009-02-22 17:40:09 -08004161static ssize_t min_partial_show(struct kmem_cache *s, char *buf)
4162{
4163 return sprintf(buf, "%lu\n", s->min_partial);
4164}
4165
4166static ssize_t min_partial_store(struct kmem_cache *s, const char *buf,
4167 size_t length)
4168{
4169 unsigned long min;
4170 int err;
4171
4172 err = strict_strtoul(buf, 10, &min);
4173 if (err)
4174 return err;
4175
David Rientjesc0bdb232009-02-25 09:16:35 +02004176 set_min_partial(s, min);
David Rientjes73d342b2009-02-22 17:40:09 -08004177 return length;
4178}
4179SLAB_ATTR(min_partial);
4180
Christoph Lameter81819f02007-05-06 14:49:36 -07004181static ssize_t ctor_show(struct kmem_cache *s, char *buf)
4182{
Joe Perches62c70bc2011-01-13 15:45:52 -08004183 if (!s->ctor)
4184 return 0;
4185 return sprintf(buf, "%pS\n", s->ctor);
Christoph Lameter81819f02007-05-06 14:49:36 -07004186}
4187SLAB_ATTR_RO(ctor);
4188
Christoph Lameter81819f02007-05-06 14:49:36 -07004189static ssize_t aliases_show(struct kmem_cache *s, char *buf)
4190{
4191 return sprintf(buf, "%d\n", s->refcount - 1);
4192}
4193SLAB_ATTR_RO(aliases);
4194
Christoph Lameter81819f02007-05-06 14:49:36 -07004195static ssize_t partial_show(struct kmem_cache *s, char *buf)
4196{
Christoph Lameterd9acf4b2008-02-15 15:22:21 -08004197 return show_slab_objects(s, buf, SO_PARTIAL);
Christoph Lameter81819f02007-05-06 14:49:36 -07004198}
4199SLAB_ATTR_RO(partial);
4200
4201static ssize_t cpu_slabs_show(struct kmem_cache *s, char *buf)
4202{
Christoph Lameterd9acf4b2008-02-15 15:22:21 -08004203 return show_slab_objects(s, buf, SO_CPU);
Christoph Lameter81819f02007-05-06 14:49:36 -07004204}
4205SLAB_ATTR_RO(cpu_slabs);
4206
4207static ssize_t objects_show(struct kmem_cache *s, char *buf)
4208{
Christoph Lameter205ab992008-04-14 19:11:40 +03004209 return show_slab_objects(s, buf, SO_ALL|SO_OBJECTS);
Christoph Lameter81819f02007-05-06 14:49:36 -07004210}
4211SLAB_ATTR_RO(objects);
4212
Christoph Lameter205ab992008-04-14 19:11:40 +03004213static ssize_t objects_partial_show(struct kmem_cache *s, char *buf)
4214{
4215 return show_slab_objects(s, buf, SO_PARTIAL|SO_OBJECTS);
4216}
4217SLAB_ATTR_RO(objects_partial);
4218
Christoph Lameter81819f02007-05-06 14:49:36 -07004219static ssize_t reclaim_account_show(struct kmem_cache *s, char *buf)
4220{
4221 return sprintf(buf, "%d\n", !!(s->flags & SLAB_RECLAIM_ACCOUNT));
4222}
4223
4224static ssize_t reclaim_account_store(struct kmem_cache *s,
4225 const char *buf, size_t length)
4226{
4227 s->flags &= ~SLAB_RECLAIM_ACCOUNT;
4228 if (buf[0] == '1')
4229 s->flags |= SLAB_RECLAIM_ACCOUNT;
4230 return length;
4231}
4232SLAB_ATTR(reclaim_account);
4233
4234static ssize_t hwcache_align_show(struct kmem_cache *s, char *buf)
4235{
Christoph Lameter5af60832007-05-06 14:49:56 -07004236 return sprintf(buf, "%d\n", !!(s->flags & SLAB_HWCACHE_ALIGN));
Christoph Lameter81819f02007-05-06 14:49:36 -07004237}
4238SLAB_ATTR_RO(hwcache_align);
4239
4240#ifdef CONFIG_ZONE_DMA
4241static ssize_t cache_dma_show(struct kmem_cache *s, char *buf)
4242{
4243 return sprintf(buf, "%d\n", !!(s->flags & SLAB_CACHE_DMA));
4244}
4245SLAB_ATTR_RO(cache_dma);
4246#endif
4247
4248static ssize_t destroy_by_rcu_show(struct kmem_cache *s, char *buf)
4249{
4250 return sprintf(buf, "%d\n", !!(s->flags & SLAB_DESTROY_BY_RCU));
4251}
4252SLAB_ATTR_RO(destroy_by_rcu);
4253
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08004254static ssize_t reserved_show(struct kmem_cache *s, char *buf)
4255{
4256 return sprintf(buf, "%d\n", s->reserved);
4257}
4258SLAB_ATTR_RO(reserved);
4259
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05004260#ifdef CONFIG_SLUB_DEBUG
Christoph Lametera5a84752010-10-05 13:57:27 -05004261static ssize_t slabs_show(struct kmem_cache *s, char *buf)
4262{
4263 return show_slab_objects(s, buf, SO_ALL);
4264}
4265SLAB_ATTR_RO(slabs);
4266
4267static ssize_t total_objects_show(struct kmem_cache *s, char *buf)
4268{
4269 return show_slab_objects(s, buf, SO_ALL|SO_TOTAL);
4270}
4271SLAB_ATTR_RO(total_objects);
4272
4273static ssize_t sanity_checks_show(struct kmem_cache *s, char *buf)
4274{
4275 return sprintf(buf, "%d\n", !!(s->flags & SLAB_DEBUG_FREE));
4276}
4277
4278static ssize_t sanity_checks_store(struct kmem_cache *s,
4279 const char *buf, size_t length)
4280{
4281 s->flags &= ~SLAB_DEBUG_FREE;
4282 if (buf[0] == '1')
4283 s->flags |= SLAB_DEBUG_FREE;
4284 return length;
4285}
4286SLAB_ATTR(sanity_checks);
4287
4288static ssize_t trace_show(struct kmem_cache *s, char *buf)
4289{
4290 return sprintf(buf, "%d\n", !!(s->flags & SLAB_TRACE));
4291}
4292
4293static ssize_t trace_store(struct kmem_cache *s, const char *buf,
4294 size_t length)
4295{
4296 s->flags &= ~SLAB_TRACE;
4297 if (buf[0] == '1')
4298 s->flags |= SLAB_TRACE;
4299 return length;
4300}
4301SLAB_ATTR(trace);
4302
Christoph Lameter81819f02007-05-06 14:49:36 -07004303static ssize_t red_zone_show(struct kmem_cache *s, char *buf)
4304{
4305 return sprintf(buf, "%d\n", !!(s->flags & SLAB_RED_ZONE));
4306}
4307
4308static ssize_t red_zone_store(struct kmem_cache *s,
4309 const char *buf, size_t length)
4310{
4311 if (any_slab_objects(s))
4312 return -EBUSY;
4313
4314 s->flags &= ~SLAB_RED_ZONE;
4315 if (buf[0] == '1')
4316 s->flags |= SLAB_RED_ZONE;
Christoph Lameter06b285d2008-04-14 19:11:41 +03004317 calculate_sizes(s, -1);
Christoph Lameter81819f02007-05-06 14:49:36 -07004318 return length;
4319}
4320SLAB_ATTR(red_zone);
4321
4322static ssize_t poison_show(struct kmem_cache *s, char *buf)
4323{
4324 return sprintf(buf, "%d\n", !!(s->flags & SLAB_POISON));
4325}
4326
4327static ssize_t poison_store(struct kmem_cache *s,
4328 const char *buf, size_t length)
4329{
4330 if (any_slab_objects(s))
4331 return -EBUSY;
4332
4333 s->flags &= ~SLAB_POISON;
4334 if (buf[0] == '1')
4335 s->flags |= SLAB_POISON;
Christoph Lameter06b285d2008-04-14 19:11:41 +03004336 calculate_sizes(s, -1);
Christoph Lameter81819f02007-05-06 14:49:36 -07004337 return length;
4338}
4339SLAB_ATTR(poison);
4340
4341static ssize_t store_user_show(struct kmem_cache *s, char *buf)
4342{
4343 return sprintf(buf, "%d\n", !!(s->flags & SLAB_STORE_USER));
4344}
4345
4346static ssize_t store_user_store(struct kmem_cache *s,
4347 const char *buf, size_t length)
4348{
4349 if (any_slab_objects(s))
4350 return -EBUSY;
4351
4352 s->flags &= ~SLAB_STORE_USER;
4353 if (buf[0] == '1')
4354 s->flags |= SLAB_STORE_USER;
Christoph Lameter06b285d2008-04-14 19:11:41 +03004355 calculate_sizes(s, -1);
Christoph Lameter81819f02007-05-06 14:49:36 -07004356 return length;
4357}
4358SLAB_ATTR(store_user);
4359
Christoph Lameter53e15af2007-05-06 14:49:43 -07004360static ssize_t validate_show(struct kmem_cache *s, char *buf)
4361{
4362 return 0;
4363}
4364
4365static ssize_t validate_store(struct kmem_cache *s,
4366 const char *buf, size_t length)
4367{
Christoph Lameter434e2452007-07-17 04:03:30 -07004368 int ret = -EINVAL;
4369
4370 if (buf[0] == '1') {
4371 ret = validate_slab_cache(s);
4372 if (ret >= 0)
4373 ret = length;
4374 }
4375 return ret;
Christoph Lameter53e15af2007-05-06 14:49:43 -07004376}
4377SLAB_ATTR(validate);
Christoph Lametera5a84752010-10-05 13:57:27 -05004378
4379static ssize_t alloc_calls_show(struct kmem_cache *s, char *buf)
4380{
4381 if (!(s->flags & SLAB_STORE_USER))
4382 return -ENOSYS;
4383 return list_locations(s, buf, TRACK_ALLOC);
4384}
4385SLAB_ATTR_RO(alloc_calls);
4386
4387static ssize_t free_calls_show(struct kmem_cache *s, char *buf)
4388{
4389 if (!(s->flags & SLAB_STORE_USER))
4390 return -ENOSYS;
4391 return list_locations(s, buf, TRACK_FREE);
4392}
4393SLAB_ATTR_RO(free_calls);
4394#endif /* CONFIG_SLUB_DEBUG */
4395
4396#ifdef CONFIG_FAILSLAB
4397static ssize_t failslab_show(struct kmem_cache *s, char *buf)
4398{
4399 return sprintf(buf, "%d\n", !!(s->flags & SLAB_FAILSLAB));
4400}
4401
4402static ssize_t failslab_store(struct kmem_cache *s, const char *buf,
4403 size_t length)
4404{
4405 s->flags &= ~SLAB_FAILSLAB;
4406 if (buf[0] == '1')
4407 s->flags |= SLAB_FAILSLAB;
4408 return length;
4409}
4410SLAB_ATTR(failslab);
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05004411#endif
Christoph Lameter53e15af2007-05-06 14:49:43 -07004412
Christoph Lameter2086d262007-05-06 14:49:46 -07004413static ssize_t shrink_show(struct kmem_cache *s, char *buf)
4414{
4415 return 0;
4416}
4417
4418static ssize_t shrink_store(struct kmem_cache *s,
4419 const char *buf, size_t length)
4420{
4421 if (buf[0] == '1') {
4422 int rc = kmem_cache_shrink(s);
4423
4424 if (rc)
4425 return rc;
4426 } else
4427 return -EINVAL;
4428 return length;
4429}
4430SLAB_ATTR(shrink);
4431
Christoph Lameter81819f02007-05-06 14:49:36 -07004432#ifdef CONFIG_NUMA
Christoph Lameter98246012008-01-07 23:20:26 -08004433static ssize_t remote_node_defrag_ratio_show(struct kmem_cache *s, char *buf)
Christoph Lameter81819f02007-05-06 14:49:36 -07004434{
Christoph Lameter98246012008-01-07 23:20:26 -08004435 return sprintf(buf, "%d\n", s->remote_node_defrag_ratio / 10);
Christoph Lameter81819f02007-05-06 14:49:36 -07004436}
4437
Christoph Lameter98246012008-01-07 23:20:26 -08004438static ssize_t remote_node_defrag_ratio_store(struct kmem_cache *s,
Christoph Lameter81819f02007-05-06 14:49:36 -07004439 const char *buf, size_t length)
4440{
Christoph Lameter0121c6192008-04-29 16:11:12 -07004441 unsigned long ratio;
4442 int err;
Christoph Lameter81819f02007-05-06 14:49:36 -07004443
Christoph Lameter0121c6192008-04-29 16:11:12 -07004444 err = strict_strtoul(buf, 10, &ratio);
4445 if (err)
4446 return err;
4447
Christoph Lametere2cb96b2008-08-19 08:51:22 -05004448 if (ratio <= 100)
Christoph Lameter0121c6192008-04-29 16:11:12 -07004449 s->remote_node_defrag_ratio = ratio * 10;
4450
Christoph Lameter81819f02007-05-06 14:49:36 -07004451 return length;
4452}
Christoph Lameter98246012008-01-07 23:20:26 -08004453SLAB_ATTR(remote_node_defrag_ratio);
Christoph Lameter81819f02007-05-06 14:49:36 -07004454#endif
4455
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004456#ifdef CONFIG_SLUB_STATS
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004457static int show_stat(struct kmem_cache *s, char *buf, enum stat_item si)
4458{
4459 unsigned long sum = 0;
4460 int cpu;
4461 int len;
4462 int *data = kmalloc(nr_cpu_ids * sizeof(int), GFP_KERNEL);
4463
4464 if (!data)
4465 return -ENOMEM;
4466
4467 for_each_online_cpu(cpu) {
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06004468 unsigned x = per_cpu_ptr(s->cpu_slab, cpu)->stat[si];
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004469
4470 data[cpu] = x;
4471 sum += x;
4472 }
4473
4474 len = sprintf(buf, "%lu", sum);
4475
Christoph Lameter50ef37b2008-04-14 18:52:05 +03004476#ifdef CONFIG_SMP
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004477 for_each_online_cpu(cpu) {
4478 if (data[cpu] && len < PAGE_SIZE - 20)
Christoph Lameter50ef37b2008-04-14 18:52:05 +03004479 len += sprintf(buf + len, " C%d=%u", cpu, data[cpu]);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004480 }
Christoph Lameter50ef37b2008-04-14 18:52:05 +03004481#endif
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004482 kfree(data);
4483 return len + sprintf(buf + len, "\n");
4484}
4485
David Rientjes78eb00c2009-10-15 02:20:22 -07004486static void clear_stat(struct kmem_cache *s, enum stat_item si)
4487{
4488 int cpu;
4489
4490 for_each_online_cpu(cpu)
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06004491 per_cpu_ptr(s->cpu_slab, cpu)->stat[si] = 0;
David Rientjes78eb00c2009-10-15 02:20:22 -07004492}
4493
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004494#define STAT_ATTR(si, text) \
4495static ssize_t text##_show(struct kmem_cache *s, char *buf) \
4496{ \
4497 return show_stat(s, buf, si); \
4498} \
David Rientjes78eb00c2009-10-15 02:20:22 -07004499static ssize_t text##_store(struct kmem_cache *s, \
4500 const char *buf, size_t length) \
4501{ \
4502 if (buf[0] != '0') \
4503 return -EINVAL; \
4504 clear_stat(s, si); \
4505 return length; \
4506} \
4507SLAB_ATTR(text); \
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004508
4509STAT_ATTR(ALLOC_FASTPATH, alloc_fastpath);
4510STAT_ATTR(ALLOC_SLOWPATH, alloc_slowpath);
4511STAT_ATTR(FREE_FASTPATH, free_fastpath);
4512STAT_ATTR(FREE_SLOWPATH, free_slowpath);
4513STAT_ATTR(FREE_FROZEN, free_frozen);
4514STAT_ATTR(FREE_ADD_PARTIAL, free_add_partial);
4515STAT_ATTR(FREE_REMOVE_PARTIAL, free_remove_partial);
4516STAT_ATTR(ALLOC_FROM_PARTIAL, alloc_from_partial);
4517STAT_ATTR(ALLOC_SLAB, alloc_slab);
4518STAT_ATTR(ALLOC_REFILL, alloc_refill);
4519STAT_ATTR(FREE_SLAB, free_slab);
4520STAT_ATTR(CPUSLAB_FLUSH, cpuslab_flush);
4521STAT_ATTR(DEACTIVATE_FULL, deactivate_full);
4522STAT_ATTR(DEACTIVATE_EMPTY, deactivate_empty);
4523STAT_ATTR(DEACTIVATE_TO_HEAD, deactivate_to_head);
4524STAT_ATTR(DEACTIVATE_TO_TAIL, deactivate_to_tail);
4525STAT_ATTR(DEACTIVATE_REMOTE_FREES, deactivate_remote_frees);
Christoph Lameter65c33762008-04-14 19:11:40 +03004526STAT_ATTR(ORDER_FALLBACK, order_fallback);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004527#endif
4528
Pekka Enberg06428782008-01-07 23:20:27 -08004529static struct attribute *slab_attrs[] = {
Christoph Lameter81819f02007-05-06 14:49:36 -07004530 &slab_size_attr.attr,
4531 &object_size_attr.attr,
4532 &objs_per_slab_attr.attr,
4533 &order_attr.attr,
David Rientjes73d342b2009-02-22 17:40:09 -08004534 &min_partial_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07004535 &objects_attr.attr,
Christoph Lameter205ab992008-04-14 19:11:40 +03004536 &objects_partial_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07004537 &partial_attr.attr,
4538 &cpu_slabs_attr.attr,
4539 &ctor_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07004540 &aliases_attr.attr,
4541 &align_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07004542 &hwcache_align_attr.attr,
4543 &reclaim_account_attr.attr,
4544 &destroy_by_rcu_attr.attr,
Christoph Lametera5a84752010-10-05 13:57:27 -05004545 &shrink_attr.attr,
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08004546 &reserved_attr.attr,
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05004547#ifdef CONFIG_SLUB_DEBUG
Christoph Lametera5a84752010-10-05 13:57:27 -05004548 &total_objects_attr.attr,
4549 &slabs_attr.attr,
4550 &sanity_checks_attr.attr,
4551 &trace_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07004552 &red_zone_attr.attr,
4553 &poison_attr.attr,
4554 &store_user_attr.attr,
Christoph Lameter53e15af2007-05-06 14:49:43 -07004555 &validate_attr.attr,
Christoph Lameter88a420e2007-05-06 14:49:45 -07004556 &alloc_calls_attr.attr,
4557 &free_calls_attr.attr,
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05004558#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07004559#ifdef CONFIG_ZONE_DMA
4560 &cache_dma_attr.attr,
4561#endif
4562#ifdef CONFIG_NUMA
Christoph Lameter98246012008-01-07 23:20:26 -08004563 &remote_node_defrag_ratio_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07004564#endif
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004565#ifdef CONFIG_SLUB_STATS
4566 &alloc_fastpath_attr.attr,
4567 &alloc_slowpath_attr.attr,
4568 &free_fastpath_attr.attr,
4569 &free_slowpath_attr.attr,
4570 &free_frozen_attr.attr,
4571 &free_add_partial_attr.attr,
4572 &free_remove_partial_attr.attr,
4573 &alloc_from_partial_attr.attr,
4574 &alloc_slab_attr.attr,
4575 &alloc_refill_attr.attr,
4576 &free_slab_attr.attr,
4577 &cpuslab_flush_attr.attr,
4578 &deactivate_full_attr.attr,
4579 &deactivate_empty_attr.attr,
4580 &deactivate_to_head_attr.attr,
4581 &deactivate_to_tail_attr.attr,
4582 &deactivate_remote_frees_attr.attr,
Christoph Lameter65c33762008-04-14 19:11:40 +03004583 &order_fallback_attr.attr,
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004584#endif
Dmitry Monakhov4c13dd32010-02-26 09:36:12 +03004585#ifdef CONFIG_FAILSLAB
4586 &failslab_attr.attr,
4587#endif
4588
Christoph Lameter81819f02007-05-06 14:49:36 -07004589 NULL
4590};
4591
4592static struct attribute_group slab_attr_group = {
4593 .attrs = slab_attrs,
4594};
4595
4596static ssize_t slab_attr_show(struct kobject *kobj,
4597 struct attribute *attr,
4598 char *buf)
4599{
4600 struct slab_attribute *attribute;
4601 struct kmem_cache *s;
4602 int err;
4603
4604 attribute = to_slab_attr(attr);
4605 s = to_slab(kobj);
4606
4607 if (!attribute->show)
4608 return -EIO;
4609
4610 err = attribute->show(s, buf);
4611
4612 return err;
4613}
4614
4615static ssize_t slab_attr_store(struct kobject *kobj,
4616 struct attribute *attr,
4617 const char *buf, size_t len)
4618{
4619 struct slab_attribute *attribute;
4620 struct kmem_cache *s;
4621 int err;
4622
4623 attribute = to_slab_attr(attr);
4624 s = to_slab(kobj);
4625
4626 if (!attribute->store)
4627 return -EIO;
4628
4629 err = attribute->store(s, buf, len);
4630
4631 return err;
4632}
4633
Christoph Lameter151c6022008-01-07 22:29:05 -08004634static void kmem_cache_release(struct kobject *kobj)
4635{
4636 struct kmem_cache *s = to_slab(kobj);
4637
Pekka Enberg84c1cf62010-09-14 23:21:12 +03004638 kfree(s->name);
Christoph Lameter151c6022008-01-07 22:29:05 -08004639 kfree(s);
4640}
4641
Emese Revfy52cf25d2010-01-19 02:58:23 +01004642static const struct sysfs_ops slab_sysfs_ops = {
Christoph Lameter81819f02007-05-06 14:49:36 -07004643 .show = slab_attr_show,
4644 .store = slab_attr_store,
4645};
4646
4647static struct kobj_type slab_ktype = {
4648 .sysfs_ops = &slab_sysfs_ops,
Christoph Lameter151c6022008-01-07 22:29:05 -08004649 .release = kmem_cache_release
Christoph Lameter81819f02007-05-06 14:49:36 -07004650};
4651
4652static int uevent_filter(struct kset *kset, struct kobject *kobj)
4653{
4654 struct kobj_type *ktype = get_ktype(kobj);
4655
4656 if (ktype == &slab_ktype)
4657 return 1;
4658 return 0;
4659}
4660
Emese Revfy9cd43612009-12-31 14:52:51 +01004661static const struct kset_uevent_ops slab_uevent_ops = {
Christoph Lameter81819f02007-05-06 14:49:36 -07004662 .filter = uevent_filter,
4663};
4664
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06004665static struct kset *slab_kset;
Christoph Lameter81819f02007-05-06 14:49:36 -07004666
4667#define ID_STR_LENGTH 64
4668
4669/* Create a unique string id for a slab cache:
Christoph Lameter6446faa2008-02-15 23:45:26 -08004670 *
4671 * Format :[flags-]size
Christoph Lameter81819f02007-05-06 14:49:36 -07004672 */
4673static char *create_unique_id(struct kmem_cache *s)
4674{
4675 char *name = kmalloc(ID_STR_LENGTH, GFP_KERNEL);
4676 char *p = name;
4677
4678 BUG_ON(!name);
4679
4680 *p++ = ':';
4681 /*
4682 * First flags affecting slabcache operations. We will only
4683 * get here for aliasable slabs so we do not need to support
4684 * too many flags. The flags here must cover all flags that
4685 * are matched during merging to guarantee that the id is
4686 * unique.
4687 */
4688 if (s->flags & SLAB_CACHE_DMA)
4689 *p++ = 'd';
4690 if (s->flags & SLAB_RECLAIM_ACCOUNT)
4691 *p++ = 'a';
4692 if (s->flags & SLAB_DEBUG_FREE)
4693 *p++ = 'F';
Vegard Nossum5a896d92008-04-04 00:54:48 +02004694 if (!(s->flags & SLAB_NOTRACK))
4695 *p++ = 't';
Christoph Lameter81819f02007-05-06 14:49:36 -07004696 if (p != name + 1)
4697 *p++ = '-';
4698 p += sprintf(p, "%07d", s->size);
4699 BUG_ON(p > name + ID_STR_LENGTH - 1);
4700 return name;
4701}
4702
4703static int sysfs_slab_add(struct kmem_cache *s)
4704{
4705 int err;
4706 const char *name;
4707 int unmergeable;
4708
4709 if (slab_state < SYSFS)
4710 /* Defer until later */
4711 return 0;
4712
4713 unmergeable = slab_unmergeable(s);
4714 if (unmergeable) {
4715 /*
4716 * Slabcache can never be merged so we can use the name proper.
4717 * This is typically the case for debug situations. In that
4718 * case we can catch duplicate names easily.
4719 */
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06004720 sysfs_remove_link(&slab_kset->kobj, s->name);
Christoph Lameter81819f02007-05-06 14:49:36 -07004721 name = s->name;
4722 } else {
4723 /*
4724 * Create a unique name for the slab as a target
4725 * for the symlinks.
4726 */
4727 name = create_unique_id(s);
4728 }
4729
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06004730 s->kobj.kset = slab_kset;
Greg Kroah-Hartman1eada112007-12-17 23:05:35 -07004731 err = kobject_init_and_add(&s->kobj, &slab_ktype, NULL, name);
4732 if (err) {
4733 kobject_put(&s->kobj);
Christoph Lameter81819f02007-05-06 14:49:36 -07004734 return err;
Greg Kroah-Hartman1eada112007-12-17 23:05:35 -07004735 }
Christoph Lameter81819f02007-05-06 14:49:36 -07004736
4737 err = sysfs_create_group(&s->kobj, &slab_attr_group);
Xiaotian Feng5788d8a2009-07-22 11:28:53 +08004738 if (err) {
4739 kobject_del(&s->kobj);
4740 kobject_put(&s->kobj);
Christoph Lameter81819f02007-05-06 14:49:36 -07004741 return err;
Xiaotian Feng5788d8a2009-07-22 11:28:53 +08004742 }
Christoph Lameter81819f02007-05-06 14:49:36 -07004743 kobject_uevent(&s->kobj, KOBJ_ADD);
4744 if (!unmergeable) {
4745 /* Setup first alias */
4746 sysfs_slab_alias(s, s->name);
4747 kfree(name);
4748 }
4749 return 0;
4750}
4751
4752static void sysfs_slab_remove(struct kmem_cache *s)
4753{
Christoph Lameter2bce64852010-07-19 11:39:11 -05004754 if (slab_state < SYSFS)
4755 /*
4756 * Sysfs has not been setup yet so no need to remove the
4757 * cache from sysfs.
4758 */
4759 return;
4760
Christoph Lameter81819f02007-05-06 14:49:36 -07004761 kobject_uevent(&s->kobj, KOBJ_REMOVE);
4762 kobject_del(&s->kobj);
Christoph Lameter151c6022008-01-07 22:29:05 -08004763 kobject_put(&s->kobj);
Christoph Lameter81819f02007-05-06 14:49:36 -07004764}
4765
4766/*
4767 * Need to buffer aliases during bootup until sysfs becomes
Nick Andrew9f6c708e2008-12-05 14:08:08 +11004768 * available lest we lose that information.
Christoph Lameter81819f02007-05-06 14:49:36 -07004769 */
4770struct saved_alias {
4771 struct kmem_cache *s;
4772 const char *name;
4773 struct saved_alias *next;
4774};
4775
Adrian Bunk5af328a52007-07-17 04:03:27 -07004776static struct saved_alias *alias_list;
Christoph Lameter81819f02007-05-06 14:49:36 -07004777
4778static int sysfs_slab_alias(struct kmem_cache *s, const char *name)
4779{
4780 struct saved_alias *al;
4781
4782 if (slab_state == SYSFS) {
4783 /*
4784 * If we have a leftover link then remove it.
4785 */
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06004786 sysfs_remove_link(&slab_kset->kobj, name);
4787 return sysfs_create_link(&slab_kset->kobj, &s->kobj, name);
Christoph Lameter81819f02007-05-06 14:49:36 -07004788 }
4789
4790 al = kmalloc(sizeof(struct saved_alias), GFP_KERNEL);
4791 if (!al)
4792 return -ENOMEM;
4793
4794 al->s = s;
4795 al->name = name;
4796 al->next = alias_list;
4797 alias_list = al;
4798 return 0;
4799}
4800
4801static int __init slab_sysfs_init(void)
4802{
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07004803 struct kmem_cache *s;
Christoph Lameter81819f02007-05-06 14:49:36 -07004804 int err;
4805
Christoph Lameter2bce64852010-07-19 11:39:11 -05004806 down_write(&slub_lock);
4807
Greg Kroah-Hartman0ff21e42007-11-06 10:36:58 -08004808 slab_kset = kset_create_and_add("slab", &slab_uevent_ops, kernel_kobj);
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06004809 if (!slab_kset) {
Christoph Lameter2bce64852010-07-19 11:39:11 -05004810 up_write(&slub_lock);
Christoph Lameter81819f02007-05-06 14:49:36 -07004811 printk(KERN_ERR "Cannot register slab subsystem.\n");
4812 return -ENOSYS;
4813 }
4814
Christoph Lameter26a7bd02007-05-09 02:32:39 -07004815 slab_state = SYSFS;
4816
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07004817 list_for_each_entry(s, &slab_caches, list) {
Christoph Lameter26a7bd02007-05-09 02:32:39 -07004818 err = sysfs_slab_add(s);
Christoph Lameter5d540fb2007-08-30 23:56:26 -07004819 if (err)
4820 printk(KERN_ERR "SLUB: Unable to add boot slab %s"
4821 " to sysfs\n", s->name);
Christoph Lameter26a7bd02007-05-09 02:32:39 -07004822 }
Christoph Lameter81819f02007-05-06 14:49:36 -07004823
4824 while (alias_list) {
4825 struct saved_alias *al = alias_list;
4826
4827 alias_list = alias_list->next;
4828 err = sysfs_slab_alias(al->s, al->name);
Christoph Lameter5d540fb2007-08-30 23:56:26 -07004829 if (err)
4830 printk(KERN_ERR "SLUB: Unable to add boot slab alias"
4831 " %s to sysfs\n", s->name);
Christoph Lameter81819f02007-05-06 14:49:36 -07004832 kfree(al);
4833 }
4834
Christoph Lameter2bce64852010-07-19 11:39:11 -05004835 up_write(&slub_lock);
Christoph Lameter81819f02007-05-06 14:49:36 -07004836 resiliency_test();
4837 return 0;
4838}
4839
4840__initcall(slab_sysfs_init);
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05004841#endif /* CONFIG_SYSFS */
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004842
4843/*
4844 * The /proc/slabinfo ABI
4845 */
Linus Torvalds158a9622008-01-02 13:04:48 -08004846#ifdef CONFIG_SLABINFO
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004847static void print_slabinfo_header(struct seq_file *m)
4848{
4849 seq_puts(m, "slabinfo - version: 2.1\n");
4850 seq_puts(m, "# name <active_objs> <num_objs> <objsize> "
4851 "<objperslab> <pagesperslab>");
4852 seq_puts(m, " : tunables <limit> <batchcount> <sharedfactor>");
4853 seq_puts(m, " : slabdata <active_slabs> <num_slabs> <sharedavail>");
4854 seq_putc(m, '\n');
4855}
4856
4857static void *s_start(struct seq_file *m, loff_t *pos)
4858{
4859 loff_t n = *pos;
4860
4861 down_read(&slub_lock);
4862 if (!n)
4863 print_slabinfo_header(m);
4864
4865 return seq_list_start(&slab_caches, *pos);
4866}
4867
4868static void *s_next(struct seq_file *m, void *p, loff_t *pos)
4869{
4870 return seq_list_next(p, &slab_caches, pos);
4871}
4872
4873static void s_stop(struct seq_file *m, void *p)
4874{
4875 up_read(&slub_lock);
4876}
4877
4878static int s_show(struct seq_file *m, void *p)
4879{
4880 unsigned long nr_partials = 0;
4881 unsigned long nr_slabs = 0;
4882 unsigned long nr_inuse = 0;
Christoph Lameter205ab992008-04-14 19:11:40 +03004883 unsigned long nr_objs = 0;
4884 unsigned long nr_free = 0;
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004885 struct kmem_cache *s;
4886 int node;
4887
4888 s = list_entry(p, struct kmem_cache, list);
4889
4890 for_each_online_node(node) {
4891 struct kmem_cache_node *n = get_node(s, node);
4892
4893 if (!n)
4894 continue;
4895
4896 nr_partials += n->nr_partial;
4897 nr_slabs += atomic_long_read(&n->nr_slabs);
Christoph Lameter205ab992008-04-14 19:11:40 +03004898 nr_objs += atomic_long_read(&n->total_objects);
4899 nr_free += count_partial(n, count_free);
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004900 }
4901
Christoph Lameter205ab992008-04-14 19:11:40 +03004902 nr_inuse = nr_objs - nr_free;
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004903
4904 seq_printf(m, "%-17s %6lu %6lu %6u %4u %4d", s->name, nr_inuse,
Christoph Lameter834f3d12008-04-14 19:11:31 +03004905 nr_objs, s->size, oo_objects(s->oo),
4906 (1 << oo_order(s->oo)));
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004907 seq_printf(m, " : tunables %4u %4u %4u", 0, 0, 0);
4908 seq_printf(m, " : slabdata %6lu %6lu %6lu", nr_slabs, nr_slabs,
4909 0UL);
4910 seq_putc(m, '\n');
4911 return 0;
4912}
4913
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04004914static const struct seq_operations slabinfo_op = {
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01004915 .start = s_start,
4916 .next = s_next,
4917 .stop = s_stop,
4918 .show = s_show,
4919};
4920
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04004921static int slabinfo_open(struct inode *inode, struct file *file)
4922{
4923 return seq_open(file, &slabinfo_op);
4924}
4925
4926static const struct file_operations proc_slabinfo_operations = {
4927 .open = slabinfo_open,
4928 .read = seq_read,
4929 .llseek = seq_lseek,
4930 .release = seq_release,
4931};
4932
4933static int __init slab_proc_init(void)
4934{
WANG Congcf5d1132009-08-18 19:11:40 +03004935 proc_create("slabinfo", S_IRUGO, NULL, &proc_slabinfo_operations);
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04004936 return 0;
4937}
4938module_init(slab_proc_init);
Linus Torvalds158a9622008-01-02 13:04:48 -08004939#endif /* CONFIG_SLABINFO */