blob: bc7a8af24f168d950465f87f30c8ae25a143f546 [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 *
Christoph Lameter881db7f2011-06-01 12:25:53 -05005 * The allocator synchronizes using per slab locks or atomic operatios
6 * and only uses a centralized lock to manage a pool of partial slabs.
Christoph Lameter81819f02007-05-06 14:49:36 -07007 *
Christoph Lametercde53532008-07-04 09:59:22 -07008 * (C) 2007 SGI, Christoph Lameter
Christoph Lameter881db7f2011-06-01 12:25:53 -05009 * (C) 2011 Linux Foundation, Christoph Lameter
Christoph Lameter81819f02007-05-06 14:49:36 -070010 */
11
12#include <linux/mm.h>
Nick Piggin1eb5ac62009-05-05 19:13:44 +100013#include <linux/swap.h> /* struct reclaim_state */
Christoph Lameter81819f02007-05-06 14:49:36 -070014#include <linux/module.h>
15#include <linux/bit_spinlock.h>
16#include <linux/interrupt.h>
17#include <linux/bitops.h>
18#include <linux/slab.h>
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +040019#include <linux/proc_fs.h>
Christoph Lameter81819f02007-05-06 14:49:36 -070020#include <linux/seq_file.h>
Vegard Nossum5a896d92008-04-04 00:54:48 +020021#include <linux/kmemcheck.h>
Christoph Lameter81819f02007-05-06 14:49:36 -070022#include <linux/cpu.h>
23#include <linux/cpuset.h>
24#include <linux/mempolicy.h>
25#include <linux/ctype.h>
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -070026#include <linux/debugobjects.h>
Christoph Lameter81819f02007-05-06 14:49:36 -070027#include <linux/kallsyms.h>
Yasunori Gotob9049e22007-10-21 16:41:37 -070028#include <linux/memory.h>
Roman Zippelf8bd2252008-05-01 04:34:31 -070029#include <linux/math64.h>
Akinobu Mita773ff602008-12-23 19:37:01 +090030#include <linux/fault-inject.h>
Pekka Enbergbfa71452011-07-07 22:47:01 +030031#include <linux/stacktrace.h>
Christoph Lameter81819f02007-05-06 14:49:36 -070032
Richard Kennedy4a923792010-10-21 10:29:19 +010033#include <trace/events/kmem.h>
34
Christoph Lameter81819f02007-05-06 14:49:36 -070035/*
36 * Lock order:
Christoph Lameter881db7f2011-06-01 12:25:53 -050037 * 1. slub_lock (Global Semaphore)
38 * 2. node->list_lock
39 * 3. slab_lock(page) (Only on some arches and for debugging)
Christoph Lameter81819f02007-05-06 14:49:36 -070040 *
Christoph Lameter881db7f2011-06-01 12:25:53 -050041 * slub_lock
42 *
43 * The role of the slub_lock is to protect the list of all the slabs
44 * and to synchronize major metadata changes to slab cache structures.
45 *
46 * The slab_lock is only used for debugging and on arches that do not
47 * have the ability to do a cmpxchg_double. It only protects the second
48 * double word in the page struct. Meaning
49 * A. page->freelist -> List of object free in a page
50 * B. page->counters -> Counters of objects
51 * C. page->frozen -> frozen state
52 *
53 * If a slab is frozen then it is exempt from list management. It is not
54 * on any list. The processor that froze the slab is the one who can
55 * perform list operations on the page. Other processors may put objects
56 * onto the freelist but the processor that froze the slab is the only
57 * one that can retrieve the objects from the page's freelist.
Christoph Lameter81819f02007-05-06 14:49:36 -070058 *
59 * The list_lock protects the partial and full list on each node and
60 * the partial slab counter. If taken then no new slabs may be added or
61 * removed from the lists nor make the number of partial slabs be modified.
62 * (Note that the total number of slabs is an atomic value that may be
63 * modified without taking the list lock).
64 *
65 * The list_lock is a centralized lock and thus we avoid taking it as
66 * much as possible. As long as SLUB does not have to handle partial
67 * slabs, operations can continue without any centralized lock. F.e.
68 * allocating a long series of objects that fill up slabs does not require
69 * the list lock.
Christoph Lameter81819f02007-05-06 14:49:36 -070070 * 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 Lameterb789ef52011-06-01 12:25:49 -0500134/* Enable to log cmpxchg failures */
135#undef SLUB_DEBUG_CMPXCHG
136
Christoph Lameter81819f02007-05-06 14:49:36 -0700137/*
Christoph Lameter2086d262007-05-06 14:49:46 -0700138 * Mininum number of partial slabs. These will be left on the partial
139 * lists even if they are empty. kmem_cache_shrink may reclaim them.
140 */
Christoph Lameter76be8952007-12-21 14:37:37 -0800141#define MIN_PARTIAL 5
Christoph Lametere95eed52007-05-06 14:49:44 -0700142
Christoph Lameter2086d262007-05-06 14:49:46 -0700143/*
144 * Maximum number of desirable partial slabs.
145 * The existence of more partial slabs makes kmem_cache_shrink
146 * sort the partial list by the number of objects in the.
147 */
148#define MAX_PARTIAL 10
149
Christoph Lameter81819f02007-05-06 14:49:36 -0700150#define DEBUG_DEFAULT_FLAGS (SLAB_DEBUG_FREE | SLAB_RED_ZONE | \
151 SLAB_POISON | SLAB_STORE_USER)
Christoph Lameter672bba32007-05-09 02:32:39 -0700152
Christoph Lameter81819f02007-05-06 14:49:36 -0700153/*
David Rientjes3de47212009-07-27 18:30:35 -0700154 * Debugging flags that require metadata to be stored in the slab. These get
155 * disabled when slub_debug=O is used and a cache's min order increases with
156 * metadata.
David Rientjesfa5ec8a2009-07-07 00:14:14 -0700157 */
David Rientjes3de47212009-07-27 18:30:35 -0700158#define DEBUG_METADATA_FLAGS (SLAB_RED_ZONE | SLAB_POISON | SLAB_STORE_USER)
David Rientjesfa5ec8a2009-07-07 00:14:14 -0700159
160/*
Christoph Lameter81819f02007-05-06 14:49:36 -0700161 * Set of flags that will prevent slab merging
162 */
163#define SLUB_NEVER_MERGE (SLAB_RED_ZONE | SLAB_POISON | SLAB_STORE_USER | \
Dmitry Monakhov4c13dd32010-02-26 09:36:12 +0300164 SLAB_TRACE | SLAB_DESTROY_BY_RCU | SLAB_NOLEAKTRACE | \
165 SLAB_FAILSLAB)
Christoph Lameter81819f02007-05-06 14:49:36 -0700166
167#define SLUB_MERGE_SAME (SLAB_DEBUG_FREE | SLAB_RECLAIM_ACCOUNT | \
Vegard Nossum5a896d92008-04-04 00:54:48 +0200168 SLAB_CACHE_DMA | SLAB_NOTRACK)
Christoph Lameter81819f02007-05-06 14:49:36 -0700169
Cyrill Gorcunov210b5c02008-10-22 23:00:38 +0400170#define OO_SHIFT 16
171#define OO_MASK ((1 << OO_SHIFT) - 1)
Christoph Lameter50d5c412011-06-01 12:25:45 -0500172#define MAX_OBJS_PER_PAGE 32767 /* since page.objects is u15 */
Cyrill Gorcunov210b5c02008-10-22 23:00:38 +0400173
Christoph Lameter81819f02007-05-06 14:49:36 -0700174/* Internal SLUB flags */
Christoph Lameterf90ec392010-07-09 14:07:11 -0500175#define __OBJECT_POISON 0x80000000UL /* Poison object */
Christoph Lameterb789ef52011-06-01 12:25:49 -0500176#define __CMPXCHG_DOUBLE 0x40000000UL /* Use cmpxchg_double */
Christoph Lameter81819f02007-05-06 14:49:36 -0700177
178static int kmem_size = sizeof(struct kmem_cache);
179
180#ifdef CONFIG_SMP
181static struct notifier_block slab_notifier;
182#endif
183
184static enum {
185 DOWN, /* No slab functionality available */
Christoph Lameter51df1142010-08-20 12:37:15 -0500186 PARTIAL, /* Kmem_cache_node works */
Christoph Lameter672bba32007-05-09 02:32:39 -0700187 UP, /* Everything works but does not show up in sysfs */
Christoph Lameter81819f02007-05-06 14:49:36 -0700188 SYSFS /* Sysfs up */
189} slab_state = DOWN;
190
191/* A list of all slab caches on the system */
192static DECLARE_RWSEM(slub_lock);
Adrian Bunk5af328a2007-07-17 04:03:27 -0700193static LIST_HEAD(slab_caches);
Christoph Lameter81819f02007-05-06 14:49:36 -0700194
Christoph Lameter02cbc872007-05-09 02:32:43 -0700195/*
196 * Tracking user of a slab.
197 */
Ben Greeard6543e32011-07-07 11:36:36 -0700198#define TRACK_ADDRS_COUNT 16
Christoph Lameter02cbc872007-05-09 02:32:43 -0700199struct track {
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +0300200 unsigned long addr; /* Called from address */
Ben Greeard6543e32011-07-07 11:36:36 -0700201#ifdef CONFIG_STACKTRACE
202 unsigned long addrs[TRACK_ADDRS_COUNT]; /* Called from address */
203#endif
Christoph Lameter02cbc872007-05-09 02:32:43 -0700204 int cpu; /* Was running on cpu */
205 int pid; /* Pid context */
206 unsigned long when; /* When did the operation occur */
207};
208
209enum track_item { TRACK_ALLOC, TRACK_FREE };
210
Christoph Lameterab4d5ed2010-10-05 13:57:26 -0500211#ifdef CONFIG_SYSFS
Christoph Lameter81819f02007-05-06 14:49:36 -0700212static int sysfs_slab_add(struct kmem_cache *);
213static int sysfs_slab_alias(struct kmem_cache *, const char *);
214static void sysfs_slab_remove(struct kmem_cache *);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -0800215
Christoph Lameter81819f02007-05-06 14:49:36 -0700216#else
Christoph Lameter0c710012007-07-17 04:03:24 -0700217static inline int sysfs_slab_add(struct kmem_cache *s) { return 0; }
218static inline int sysfs_slab_alias(struct kmem_cache *s, const char *p)
219 { return 0; }
Christoph Lameter151c6022008-01-07 22:29:05 -0800220static inline void sysfs_slab_remove(struct kmem_cache *s)
221{
Pekka Enberg84c1cf62010-09-14 23:21:12 +0300222 kfree(s->name);
Christoph Lameter151c6022008-01-07 22:29:05 -0800223 kfree(s);
224}
Christoph Lameter8ff12cf2008-02-07 17:47:41 -0800225
Christoph Lameter81819f02007-05-06 14:49:36 -0700226#endif
227
Christoph Lameter4fdccdf2011-03-22 13:35:00 -0500228static inline void stat(const struct kmem_cache *s, enum stat_item si)
Christoph Lameter8ff12cf2008-02-07 17:47:41 -0800229{
230#ifdef CONFIG_SLUB_STATS
Christoph Lameter84e554e62009-12-18 16:26:23 -0600231 __this_cpu_inc(s->cpu_slab->stat[si]);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -0800232#endif
233}
234
Christoph Lameter81819f02007-05-06 14:49:36 -0700235/********************************************************************
236 * Core slab cache functions
237 *******************************************************************/
238
239int slab_is_available(void)
240{
241 return slab_state >= UP;
242}
243
244static inline struct kmem_cache_node *get_node(struct kmem_cache *s, int node)
245{
Christoph Lameter81819f02007-05-06 14:49:36 -0700246 return s->node[node];
Christoph Lameter81819f02007-05-06 14:49:36 -0700247}
248
Christoph Lameter6446faa2008-02-15 23:45:26 -0800249/* Verify that a pointer has an address that is valid within a slab page */
Christoph Lameter02cbc872007-05-09 02:32:43 -0700250static inline int check_valid_pointer(struct kmem_cache *s,
251 struct page *page, const void *object)
252{
253 void *base;
254
Christoph Lametera973e9d2008-03-01 13:40:44 -0800255 if (!object)
Christoph Lameter02cbc872007-05-09 02:32:43 -0700256 return 1;
257
Christoph Lametera973e9d2008-03-01 13:40:44 -0800258 base = page_address(page);
Christoph Lameter39b26462008-04-14 19:11:30 +0300259 if (object < base || object >= base + page->objects * s->size ||
Christoph Lameter02cbc872007-05-09 02:32:43 -0700260 (object - base) % s->size) {
261 return 0;
262 }
263
264 return 1;
265}
266
Christoph Lameter7656c722007-05-09 02:32:40 -0700267static inline void *get_freepointer(struct kmem_cache *s, void *object)
268{
269 return *(void **)(object + s->offset);
270}
271
Eric Dumazet0ad95002011-12-16 16:25:34 +0100272static void prefetch_freepointer(const struct kmem_cache *s, void *object)
273{
274 prefetch(object + s->offset);
275}
276
Christoph Lameter1393d9a2011-05-16 15:26:08 -0500277static inline void *get_freepointer_safe(struct kmem_cache *s, void *object)
278{
279 void *p;
280
281#ifdef CONFIG_DEBUG_PAGEALLOC
282 probe_kernel_read(&p, (void **)(object + s->offset), sizeof(p));
283#else
284 p = get_freepointer(s, object);
285#endif
286 return p;
287}
288
Christoph Lameter7656c722007-05-09 02:32:40 -0700289static inline void set_freepointer(struct kmem_cache *s, void *object, void *fp)
290{
291 *(void **)(object + s->offset) = fp;
292}
293
294/* Loop over all objects in a slab */
Christoph Lameter224a88b2008-04-14 19:11:31 +0300295#define for_each_object(__p, __s, __addr, __objects) \
296 for (__p = (__addr); __p < (__addr) + (__objects) * (__s)->size;\
Christoph Lameter7656c722007-05-09 02:32:40 -0700297 __p += (__s)->size)
298
Christoph Lameter7656c722007-05-09 02:32:40 -0700299/* Determine object index from a given position */
300static inline int slab_index(void *p, struct kmem_cache *s, void *addr)
301{
302 return (p - addr) / s->size;
303}
304
Mariusz Kozlowskid71f6062011-02-26 20:10:26 +0100305static inline size_t slab_ksize(const struct kmem_cache *s)
306{
307#ifdef CONFIG_SLUB_DEBUG
308 /*
309 * Debugging requires use of the padding between object
310 * and whatever may come after it.
311 */
312 if (s->flags & (SLAB_RED_ZONE | SLAB_POISON))
313 return s->objsize;
314
315#endif
316 /*
317 * If we have the need to store the freelist pointer
318 * back there or track user information then we can
319 * only use the space before that information.
320 */
321 if (s->flags & (SLAB_DESTROY_BY_RCU | SLAB_STORE_USER))
322 return s->inuse;
323 /*
324 * Else we can use all the padding etc for the allocation
325 */
326 return s->size;
327}
328
Lai Jiangshanab9a0f12011-03-10 15:21:48 +0800329static inline int order_objects(int order, unsigned long size, int reserved)
330{
331 return ((PAGE_SIZE << order) - reserved) / size;
332}
333
Christoph Lameter834f3d12008-04-14 19:11:31 +0300334static inline struct kmem_cache_order_objects oo_make(int order,
Lai Jiangshanab9a0f12011-03-10 15:21:48 +0800335 unsigned long size, int reserved)
Christoph Lameter834f3d12008-04-14 19:11:31 +0300336{
337 struct kmem_cache_order_objects x = {
Lai Jiangshanab9a0f12011-03-10 15:21:48 +0800338 (order << OO_SHIFT) + order_objects(order, size, reserved)
Christoph Lameter834f3d12008-04-14 19:11:31 +0300339 };
340
341 return x;
342}
343
344static inline int oo_order(struct kmem_cache_order_objects x)
345{
Cyrill Gorcunov210b5c02008-10-22 23:00:38 +0400346 return x.x >> OO_SHIFT;
Christoph Lameter834f3d12008-04-14 19:11:31 +0300347}
348
349static inline int oo_objects(struct kmem_cache_order_objects x)
350{
Cyrill Gorcunov210b5c02008-10-22 23:00:38 +0400351 return x.x & OO_MASK;
Christoph Lameter834f3d12008-04-14 19:11:31 +0300352}
353
Christoph Lameter881db7f2011-06-01 12:25:53 -0500354/*
355 * Per slab locking using the pagelock
356 */
357static __always_inline void slab_lock(struct page *page)
358{
359 bit_spin_lock(PG_locked, &page->flags);
360}
361
362static __always_inline void slab_unlock(struct page *page)
363{
364 __bit_spin_unlock(PG_locked, &page->flags);
365}
366
Christoph Lameter1d071712011-07-14 12:49:12 -0500367/* Interrupts must be disabled (for the fallback code to work right) */
368static inline bool __cmpxchg_double_slab(struct kmem_cache *s, struct page *page,
Christoph Lameterb789ef52011-06-01 12:25:49 -0500369 void *freelist_old, unsigned long counters_old,
370 void *freelist_new, unsigned long counters_new,
371 const char *n)
372{
Christoph Lameter1d071712011-07-14 12:49:12 -0500373 VM_BUG_ON(!irqs_disabled());
Heiko Carstens25654092012-01-12 17:17:33 -0800374#if defined(CONFIG_HAVE_CMPXCHG_DOUBLE) && \
375 defined(CONFIG_HAVE_ALIGNED_STRUCT_PAGE)
Christoph Lameterb789ef52011-06-01 12:25:49 -0500376 if (s->flags & __CMPXCHG_DOUBLE) {
Jan Beulichcdcd6292012-01-02 17:02:18 +0000377 if (cmpxchg_double(&page->freelist, &page->counters,
Christoph Lameterb789ef52011-06-01 12:25:49 -0500378 freelist_old, counters_old,
379 freelist_new, counters_new))
380 return 1;
381 } else
382#endif
383 {
Christoph Lameter881db7f2011-06-01 12:25:53 -0500384 slab_lock(page);
Christoph Lameterb789ef52011-06-01 12:25:49 -0500385 if (page->freelist == freelist_old && page->counters == counters_old) {
386 page->freelist = freelist_new;
387 page->counters = counters_new;
Christoph Lameter881db7f2011-06-01 12:25:53 -0500388 slab_unlock(page);
Christoph Lameterb789ef52011-06-01 12:25:49 -0500389 return 1;
390 }
Christoph Lameter881db7f2011-06-01 12:25:53 -0500391 slab_unlock(page);
Christoph Lameterb789ef52011-06-01 12:25:49 -0500392 }
393
394 cpu_relax();
395 stat(s, CMPXCHG_DOUBLE_FAIL);
396
397#ifdef SLUB_DEBUG_CMPXCHG
398 printk(KERN_INFO "%s %s: cmpxchg double redo ", n, s->name);
399#endif
400
401 return 0;
402}
403
Christoph Lameter1d071712011-07-14 12:49:12 -0500404static inline bool cmpxchg_double_slab(struct kmem_cache *s, struct page *page,
405 void *freelist_old, unsigned long counters_old,
406 void *freelist_new, unsigned long counters_new,
407 const char *n)
408{
Heiko Carstens25654092012-01-12 17:17:33 -0800409#if defined(CONFIG_HAVE_CMPXCHG_DOUBLE) && \
410 defined(CONFIG_HAVE_ALIGNED_STRUCT_PAGE)
Christoph Lameter1d071712011-07-14 12:49:12 -0500411 if (s->flags & __CMPXCHG_DOUBLE) {
Jan Beulichcdcd6292012-01-02 17:02:18 +0000412 if (cmpxchg_double(&page->freelist, &page->counters,
Christoph Lameter1d071712011-07-14 12:49:12 -0500413 freelist_old, counters_old,
414 freelist_new, counters_new))
415 return 1;
416 } else
417#endif
418 {
419 unsigned long flags;
420
421 local_irq_save(flags);
422 slab_lock(page);
423 if (page->freelist == freelist_old && page->counters == counters_old) {
424 page->freelist = freelist_new;
425 page->counters = counters_new;
426 slab_unlock(page);
427 local_irq_restore(flags);
428 return 1;
429 }
430 slab_unlock(page);
431 local_irq_restore(flags);
432 }
433
434 cpu_relax();
435 stat(s, CMPXCHG_DOUBLE_FAIL);
436
437#ifdef SLUB_DEBUG_CMPXCHG
438 printk(KERN_INFO "%s %s: cmpxchg double redo ", n, s->name);
439#endif
440
441 return 0;
442}
443
Christoph Lameter41ecc552007-05-09 02:32:44 -0700444#ifdef CONFIG_SLUB_DEBUG
445/*
Christoph Lameter5f80b132011-04-15 14:48:13 -0500446 * Determine a map of object in use on a page.
447 *
Christoph Lameter881db7f2011-06-01 12:25:53 -0500448 * Node listlock must be held to guarantee that the page does
Christoph Lameter5f80b132011-04-15 14:48:13 -0500449 * not vanish from under us.
450 */
451static void get_map(struct kmem_cache *s, struct page *page, unsigned long *map)
452{
453 void *p;
454 void *addr = page_address(page);
455
456 for (p = page->freelist; p; p = get_freepointer(s, p))
457 set_bit(slab_index(p, s, addr), map);
458}
459
Christoph Lameter41ecc552007-05-09 02:32:44 -0700460/*
461 * Debug settings:
462 */
Christoph Lameterf0630ff2007-07-15 23:38:14 -0700463#ifdef CONFIG_SLUB_DEBUG_ON
464static int slub_debug = DEBUG_DEFAULT_FLAGS;
465#else
Christoph Lameter41ecc552007-05-09 02:32:44 -0700466static int slub_debug;
Christoph Lameterf0630ff2007-07-15 23:38:14 -0700467#endif
Christoph Lameter41ecc552007-05-09 02:32:44 -0700468
469static char *slub_debug_slabs;
David Rientjesfa5ec8a2009-07-07 00:14:14 -0700470static int disable_higher_order_debug;
Christoph Lameter41ecc552007-05-09 02:32:44 -0700471
Christoph Lameter7656c722007-05-09 02:32:40 -0700472/*
Christoph Lameter81819f02007-05-06 14:49:36 -0700473 * Object debugging
474 */
475static void print_section(char *text, u8 *addr, unsigned int length)
476{
Sebastian Andrzej Siewiorffc79d22011-07-29 14:10:20 +0200477 print_hex_dump(KERN_ERR, text, DUMP_PREFIX_ADDRESS, 16, 1, addr,
478 length, 1);
Christoph Lameter81819f02007-05-06 14:49:36 -0700479}
480
Christoph Lameter81819f02007-05-06 14:49:36 -0700481static struct track *get_track(struct kmem_cache *s, void *object,
482 enum track_item alloc)
483{
484 struct track *p;
485
486 if (s->offset)
487 p = object + s->offset + sizeof(void *);
488 else
489 p = object + s->inuse;
490
491 return p + alloc;
492}
493
494static void set_track(struct kmem_cache *s, void *object,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +0300495 enum track_item alloc, unsigned long addr)
Christoph Lameter81819f02007-05-06 14:49:36 -0700496{
Akinobu Mita1a00df42009-03-07 00:36:21 +0900497 struct track *p = get_track(s, object, alloc);
Christoph Lameter81819f02007-05-06 14:49:36 -0700498
Christoph Lameter81819f02007-05-06 14:49:36 -0700499 if (addr) {
Ben Greeard6543e32011-07-07 11:36:36 -0700500#ifdef CONFIG_STACKTRACE
501 struct stack_trace trace;
502 int i;
503
504 trace.nr_entries = 0;
505 trace.max_entries = TRACK_ADDRS_COUNT;
506 trace.entries = p->addrs;
507 trace.skip = 3;
508 save_stack_trace(&trace);
509
510 /* See rant in lockdep.c */
511 if (trace.nr_entries != 0 &&
512 trace.entries[trace.nr_entries - 1] == ULONG_MAX)
513 trace.nr_entries--;
514
515 for (i = trace.nr_entries; i < TRACK_ADDRS_COUNT; i++)
516 p->addrs[i] = 0;
517#endif
Christoph Lameter81819f02007-05-06 14:49:36 -0700518 p->addr = addr;
519 p->cpu = smp_processor_id();
Alexey Dobriyan88e4ccf2008-06-23 02:58:37 +0400520 p->pid = current->pid;
Christoph Lameter81819f02007-05-06 14:49:36 -0700521 p->when = jiffies;
522 } else
523 memset(p, 0, sizeof(struct track));
524}
525
Christoph Lameter81819f02007-05-06 14:49:36 -0700526static void init_tracking(struct kmem_cache *s, void *object)
527{
Christoph Lameter24922682007-07-17 04:03:18 -0700528 if (!(s->flags & SLAB_STORE_USER))
529 return;
530
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +0300531 set_track(s, object, TRACK_FREE, 0UL);
532 set_track(s, object, TRACK_ALLOC, 0UL);
Christoph Lameter81819f02007-05-06 14:49:36 -0700533}
534
535static void print_track(const char *s, struct track *t)
536{
537 if (!t->addr)
538 return;
539
Linus Torvalds7daf7052008-07-14 12:12:53 -0700540 printk(KERN_ERR "INFO: %s in %pS age=%lu cpu=%u pid=%d\n",
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +0300541 s, (void *)t->addr, jiffies - t->when, t->cpu, t->pid);
Ben Greeard6543e32011-07-07 11:36:36 -0700542#ifdef CONFIG_STACKTRACE
543 {
544 int i;
545 for (i = 0; i < TRACK_ADDRS_COUNT; i++)
546 if (t->addrs[i])
547 printk(KERN_ERR "\t%pS\n", (void *)t->addrs[i]);
548 else
549 break;
550 }
551#endif
Christoph Lameter81819f02007-05-06 14:49:36 -0700552}
553
Christoph Lameter24922682007-07-17 04:03:18 -0700554static void print_tracking(struct kmem_cache *s, void *object)
555{
556 if (!(s->flags & SLAB_STORE_USER))
557 return;
558
559 print_track("Allocated", get_track(s, object, TRACK_ALLOC));
560 print_track("Freed", get_track(s, object, TRACK_FREE));
561}
562
563static void print_page_info(struct page *page)
564{
Christoph Lameter39b26462008-04-14 19:11:30 +0300565 printk(KERN_ERR "INFO: Slab 0x%p objects=%u used=%u fp=0x%p flags=0x%04lx\n",
566 page, page->objects, page->inuse, page->freelist, page->flags);
Christoph Lameter24922682007-07-17 04:03:18 -0700567
568}
569
570static void slab_bug(struct kmem_cache *s, char *fmt, ...)
571{
572 va_list args;
573 char buf[100];
574
575 va_start(args, fmt);
576 vsnprintf(buf, sizeof(buf), fmt, args);
577 va_end(args);
578 printk(KERN_ERR "========================================"
579 "=====================================\n");
Dave Jones265d47e2011-11-15 15:04:00 -0800580 printk(KERN_ERR "BUG %s (%s): %s\n", s->name, print_tainted(), buf);
Christoph Lameter24922682007-07-17 04:03:18 -0700581 printk(KERN_ERR "----------------------------------------"
582 "-------------------------------------\n\n");
583}
584
585static void slab_fix(struct kmem_cache *s, char *fmt, ...)
586{
587 va_list args;
588 char buf[100];
589
590 va_start(args, fmt);
591 vsnprintf(buf, sizeof(buf), fmt, args);
592 va_end(args);
593 printk(KERN_ERR "FIX %s: %s\n", s->name, buf);
594}
595
596static void print_trailer(struct kmem_cache *s, struct page *page, u8 *p)
Christoph Lameter81819f02007-05-06 14:49:36 -0700597{
598 unsigned int off; /* Offset of last byte */
Christoph Lametera973e9d2008-03-01 13:40:44 -0800599 u8 *addr = page_address(page);
Christoph Lameter24922682007-07-17 04:03:18 -0700600
601 print_tracking(s, p);
602
603 print_page_info(page);
604
605 printk(KERN_ERR "INFO: Object 0x%p @offset=%tu fp=0x%p\n\n",
606 p, p - addr, get_freepointer(s, p));
607
608 if (p > addr + 16)
Sebastian Andrzej Siewiorffc79d22011-07-29 14:10:20 +0200609 print_section("Bytes b4 ", p - 16, 16);
Christoph Lameter24922682007-07-17 04:03:18 -0700610
Sebastian Andrzej Siewiorffc79d22011-07-29 14:10:20 +0200611 print_section("Object ", p, min_t(unsigned long, s->objsize,
612 PAGE_SIZE));
Christoph Lameter81819f02007-05-06 14:49:36 -0700613 if (s->flags & SLAB_RED_ZONE)
Sebastian Andrzej Siewiorffc79d22011-07-29 14:10:20 +0200614 print_section("Redzone ", p + s->objsize,
Christoph Lameter81819f02007-05-06 14:49:36 -0700615 s->inuse - s->objsize);
616
Christoph Lameter81819f02007-05-06 14:49:36 -0700617 if (s->offset)
618 off = s->offset + sizeof(void *);
619 else
620 off = s->inuse;
621
Christoph Lameter24922682007-07-17 04:03:18 -0700622 if (s->flags & SLAB_STORE_USER)
Christoph Lameter81819f02007-05-06 14:49:36 -0700623 off += 2 * sizeof(struct track);
Christoph Lameter81819f02007-05-06 14:49:36 -0700624
625 if (off != s->size)
626 /* Beginning of the filler is the free pointer */
Sebastian Andrzej Siewiorffc79d22011-07-29 14:10:20 +0200627 print_section("Padding ", p + off, s->size - off);
Christoph Lameter24922682007-07-17 04:03:18 -0700628
629 dump_stack();
Christoph Lameter81819f02007-05-06 14:49:36 -0700630}
631
632static void object_err(struct kmem_cache *s, struct page *page,
633 u8 *object, char *reason)
634{
Christoph Lameter3dc50632008-04-23 12:28:01 -0700635 slab_bug(s, "%s", reason);
Christoph Lameter24922682007-07-17 04:03:18 -0700636 print_trailer(s, page, object);
Christoph Lameter81819f02007-05-06 14:49:36 -0700637}
638
Christoph Lameter24922682007-07-17 04:03:18 -0700639static void slab_err(struct kmem_cache *s, struct page *page, char *fmt, ...)
Christoph Lameter81819f02007-05-06 14:49:36 -0700640{
641 va_list args;
642 char buf[100];
643
Christoph Lameter24922682007-07-17 04:03:18 -0700644 va_start(args, fmt);
645 vsnprintf(buf, sizeof(buf), fmt, args);
Christoph Lameter81819f02007-05-06 14:49:36 -0700646 va_end(args);
Christoph Lameter3dc50632008-04-23 12:28:01 -0700647 slab_bug(s, "%s", buf);
Christoph Lameter24922682007-07-17 04:03:18 -0700648 print_page_info(page);
Christoph Lameter81819f02007-05-06 14:49:36 -0700649 dump_stack();
650}
651
Christoph Lameterf7cb1932010-09-29 07:15:01 -0500652static void init_object(struct kmem_cache *s, void *object, u8 val)
Christoph Lameter81819f02007-05-06 14:49:36 -0700653{
654 u8 *p = object;
655
656 if (s->flags & __OBJECT_POISON) {
657 memset(p, POISON_FREE, s->objsize - 1);
Pekka Enberg06428782008-01-07 23:20:27 -0800658 p[s->objsize - 1] = POISON_END;
Christoph Lameter81819f02007-05-06 14:49:36 -0700659 }
660
661 if (s->flags & SLAB_RED_ZONE)
Christoph Lameterf7cb1932010-09-29 07:15:01 -0500662 memset(p + s->objsize, val, s->inuse - s->objsize);
Christoph Lameter81819f02007-05-06 14:49:36 -0700663}
664
Christoph Lameter24922682007-07-17 04:03:18 -0700665static void restore_bytes(struct kmem_cache *s, char *message, u8 data,
666 void *from, void *to)
667{
668 slab_fix(s, "Restoring 0x%p-0x%p=0x%x\n", from, to - 1, data);
669 memset(from, data, to - from);
670}
671
672static int check_bytes_and_report(struct kmem_cache *s, struct page *page,
673 u8 *object, char *what,
Pekka Enberg06428782008-01-07 23:20:27 -0800674 u8 *start, unsigned int value, unsigned int bytes)
Christoph Lameter24922682007-07-17 04:03:18 -0700675{
676 u8 *fault;
677 u8 *end;
678
Akinobu Mita798248202011-10-31 17:08:07 -0700679 fault = memchr_inv(start, value, bytes);
Christoph Lameter24922682007-07-17 04:03:18 -0700680 if (!fault)
681 return 1;
682
683 end = start + bytes;
684 while (end > fault && end[-1] == value)
685 end--;
686
687 slab_bug(s, "%s overwritten", what);
688 printk(KERN_ERR "INFO: 0x%p-0x%p. First byte 0x%x instead of 0x%x\n",
689 fault, end - 1, fault[0], value);
690 print_trailer(s, page, object);
691
692 restore_bytes(s, what, value, fault, end);
693 return 0;
Christoph Lameter81819f02007-05-06 14:49:36 -0700694}
695
Christoph Lameter81819f02007-05-06 14:49:36 -0700696/*
697 * Object layout:
698 *
699 * object address
700 * Bytes of the object to be managed.
701 * If the freepointer may overlay the object then the free
702 * pointer is the first word of the object.
Christoph Lameter672bba32007-05-09 02:32:39 -0700703 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700704 * Poisoning uses 0x6b (POISON_FREE) and the last byte is
705 * 0xa5 (POISON_END)
706 *
707 * object + s->objsize
708 * Padding to reach word boundary. This is also used for Redzoning.
Christoph Lameter672bba32007-05-09 02:32:39 -0700709 * Padding is extended by another word if Redzoning is enabled and
710 * objsize == inuse.
711 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700712 * We fill with 0xbb (RED_INACTIVE) for inactive objects and with
713 * 0xcc (RED_ACTIVE) for objects in use.
714 *
715 * object + s->inuse
Christoph Lameter672bba32007-05-09 02:32:39 -0700716 * Meta data starts here.
717 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700718 * A. Free pointer (if we cannot overwrite object on free)
719 * B. Tracking data for SLAB_STORE_USER
Christoph Lameter672bba32007-05-09 02:32:39 -0700720 * C. Padding to reach required alignment boundary or at mininum
Christoph Lameter6446faa2008-02-15 23:45:26 -0800721 * one word if debugging is on to be able to detect writes
Christoph Lameter672bba32007-05-09 02:32:39 -0700722 * before the word boundary.
723 *
724 * Padding is done using 0x5a (POISON_INUSE)
Christoph Lameter81819f02007-05-06 14:49:36 -0700725 *
726 * object + s->size
Christoph Lameter672bba32007-05-09 02:32:39 -0700727 * Nothing is used beyond s->size.
Christoph Lameter81819f02007-05-06 14:49:36 -0700728 *
Christoph Lameter672bba32007-05-09 02:32:39 -0700729 * If slabcaches are merged then the objsize and inuse boundaries are mostly
730 * ignored. And therefore no slab options that rely on these boundaries
Christoph Lameter81819f02007-05-06 14:49:36 -0700731 * may be used with merged slabcaches.
732 */
733
Christoph Lameter81819f02007-05-06 14:49:36 -0700734static int check_pad_bytes(struct kmem_cache *s, struct page *page, u8 *p)
735{
736 unsigned long off = s->inuse; /* The end of info */
737
738 if (s->offset)
739 /* Freepointer is placed after the object. */
740 off += sizeof(void *);
741
742 if (s->flags & SLAB_STORE_USER)
743 /* We also have user information there */
744 off += 2 * sizeof(struct track);
745
746 if (s->size == off)
747 return 1;
748
Christoph Lameter24922682007-07-17 04:03:18 -0700749 return check_bytes_and_report(s, page, p, "Object padding",
750 p + off, POISON_INUSE, s->size - off);
Christoph Lameter81819f02007-05-06 14:49:36 -0700751}
752
Christoph Lameter39b26462008-04-14 19:11:30 +0300753/* Check the pad bytes at the end of a slab page */
Christoph Lameter81819f02007-05-06 14:49:36 -0700754static int slab_pad_check(struct kmem_cache *s, struct page *page)
755{
Christoph Lameter24922682007-07-17 04:03:18 -0700756 u8 *start;
757 u8 *fault;
758 u8 *end;
759 int length;
760 int remainder;
Christoph Lameter81819f02007-05-06 14:49:36 -0700761
762 if (!(s->flags & SLAB_POISON))
763 return 1;
764
Christoph Lametera973e9d2008-03-01 13:40:44 -0800765 start = page_address(page);
Lai Jiangshanab9a0f12011-03-10 15:21:48 +0800766 length = (PAGE_SIZE << compound_order(page)) - s->reserved;
Christoph Lameter39b26462008-04-14 19:11:30 +0300767 end = start + length;
768 remainder = length % s->size;
Christoph Lameter81819f02007-05-06 14:49:36 -0700769 if (!remainder)
770 return 1;
771
Akinobu Mita798248202011-10-31 17:08:07 -0700772 fault = memchr_inv(end - remainder, POISON_INUSE, remainder);
Christoph Lameter24922682007-07-17 04:03:18 -0700773 if (!fault)
774 return 1;
775 while (end > fault && end[-1] == POISON_INUSE)
776 end--;
777
778 slab_err(s, page, "Padding overwritten. 0x%p-0x%p", fault, end - 1);
Sebastian Andrzej Siewiorffc79d22011-07-29 14:10:20 +0200779 print_section("Padding ", end - remainder, remainder);
Christoph Lameter24922682007-07-17 04:03:18 -0700780
Eric Dumazet8a3d2712009-09-03 16:08:06 +0200781 restore_bytes(s, "slab padding", POISON_INUSE, end - remainder, end);
Christoph Lameter24922682007-07-17 04:03:18 -0700782 return 0;
Christoph Lameter81819f02007-05-06 14:49:36 -0700783}
784
785static int check_object(struct kmem_cache *s, struct page *page,
Christoph Lameterf7cb1932010-09-29 07:15:01 -0500786 void *object, u8 val)
Christoph Lameter81819f02007-05-06 14:49:36 -0700787{
788 u8 *p = object;
789 u8 *endobject = object + s->objsize;
790
791 if (s->flags & SLAB_RED_ZONE) {
Christoph Lameter24922682007-07-17 04:03:18 -0700792 if (!check_bytes_and_report(s, page, object, "Redzone",
Christoph Lameterf7cb1932010-09-29 07:15:01 -0500793 endobject, val, s->inuse - s->objsize))
Christoph Lameter81819f02007-05-06 14:49:36 -0700794 return 0;
Christoph Lameter81819f02007-05-06 14:49:36 -0700795 } else {
Ingo Molnar3adbefe2008-02-05 17:57:39 -0800796 if ((s->flags & SLAB_POISON) && s->objsize < s->inuse) {
797 check_bytes_and_report(s, page, p, "Alignment padding",
798 endobject, POISON_INUSE, s->inuse - s->objsize);
799 }
Christoph Lameter81819f02007-05-06 14:49:36 -0700800 }
801
802 if (s->flags & SLAB_POISON) {
Christoph Lameterf7cb1932010-09-29 07:15:01 -0500803 if (val != SLUB_RED_ACTIVE && (s->flags & __OBJECT_POISON) &&
Christoph Lameter24922682007-07-17 04:03:18 -0700804 (!check_bytes_and_report(s, page, p, "Poison", p,
805 POISON_FREE, s->objsize - 1) ||
806 !check_bytes_and_report(s, page, p, "Poison",
Pekka Enberg06428782008-01-07 23:20:27 -0800807 p + s->objsize - 1, POISON_END, 1)))
Christoph Lameter81819f02007-05-06 14:49:36 -0700808 return 0;
Christoph Lameter81819f02007-05-06 14:49:36 -0700809 /*
810 * check_pad_bytes cleans up on its own.
811 */
812 check_pad_bytes(s, page, p);
813 }
814
Christoph Lameterf7cb1932010-09-29 07:15:01 -0500815 if (!s->offset && val == SLUB_RED_ACTIVE)
Christoph Lameter81819f02007-05-06 14:49:36 -0700816 /*
817 * Object and freepointer overlap. Cannot check
818 * freepointer while object is allocated.
819 */
820 return 1;
821
822 /* Check free pointer validity */
823 if (!check_valid_pointer(s, page, get_freepointer(s, p))) {
824 object_err(s, page, p, "Freepointer corrupt");
825 /*
Nick Andrew9f6c708e2008-12-05 14:08:08 +1100826 * No choice but to zap it and thus lose the remainder
Christoph Lameter81819f02007-05-06 14:49:36 -0700827 * of the free objects in this slab. May cause
Christoph Lameter672bba32007-05-09 02:32:39 -0700828 * another error because the object count is now wrong.
Christoph Lameter81819f02007-05-06 14:49:36 -0700829 */
Christoph Lametera973e9d2008-03-01 13:40:44 -0800830 set_freepointer(s, p, NULL);
Christoph Lameter81819f02007-05-06 14:49:36 -0700831 return 0;
832 }
833 return 1;
834}
835
836static int check_slab(struct kmem_cache *s, struct page *page)
837{
Christoph Lameter39b26462008-04-14 19:11:30 +0300838 int maxobj;
839
Christoph Lameter81819f02007-05-06 14:49:36 -0700840 VM_BUG_ON(!irqs_disabled());
841
842 if (!PageSlab(page)) {
Christoph Lameter24922682007-07-17 04:03:18 -0700843 slab_err(s, page, "Not a valid slab page");
Christoph Lameter81819f02007-05-06 14:49:36 -0700844 return 0;
845 }
Christoph Lameter39b26462008-04-14 19:11:30 +0300846
Lai Jiangshanab9a0f12011-03-10 15:21:48 +0800847 maxobj = order_objects(compound_order(page), s->size, s->reserved);
Christoph Lameter39b26462008-04-14 19:11:30 +0300848 if (page->objects > maxobj) {
849 slab_err(s, page, "objects %u > max %u",
850 s->name, page->objects, maxobj);
851 return 0;
852 }
853 if (page->inuse > page->objects) {
Christoph Lameter24922682007-07-17 04:03:18 -0700854 slab_err(s, page, "inuse %u > max %u",
Christoph Lameter39b26462008-04-14 19:11:30 +0300855 s->name, page->inuse, page->objects);
Christoph Lameter81819f02007-05-06 14:49:36 -0700856 return 0;
857 }
858 /* Slab_pad_check fixes things up after itself */
859 slab_pad_check(s, page);
860 return 1;
861}
862
863/*
Christoph Lameter672bba32007-05-09 02:32:39 -0700864 * Determine if a certain object on a page is on the freelist. Must hold the
865 * slab lock to guarantee that the chains are in a consistent state.
Christoph Lameter81819f02007-05-06 14:49:36 -0700866 */
867static int on_freelist(struct kmem_cache *s, struct page *page, void *search)
868{
869 int nr = 0;
Christoph Lameter881db7f2011-06-01 12:25:53 -0500870 void *fp;
Christoph Lameter81819f02007-05-06 14:49:36 -0700871 void *object = NULL;
Christoph Lameter224a88b2008-04-14 19:11:31 +0300872 unsigned long max_objects;
Christoph Lameter81819f02007-05-06 14:49:36 -0700873
Christoph Lameter881db7f2011-06-01 12:25:53 -0500874 fp = page->freelist;
Christoph Lameter39b26462008-04-14 19:11:30 +0300875 while (fp && nr <= page->objects) {
Christoph Lameter81819f02007-05-06 14:49:36 -0700876 if (fp == search)
877 return 1;
878 if (!check_valid_pointer(s, page, fp)) {
879 if (object) {
880 object_err(s, page, object,
881 "Freechain corrupt");
Christoph Lametera973e9d2008-03-01 13:40:44 -0800882 set_freepointer(s, object, NULL);
Christoph Lameter81819f02007-05-06 14:49:36 -0700883 break;
884 } else {
Christoph Lameter24922682007-07-17 04:03:18 -0700885 slab_err(s, page, "Freepointer corrupt");
Christoph Lametera973e9d2008-03-01 13:40:44 -0800886 page->freelist = NULL;
Christoph Lameter39b26462008-04-14 19:11:30 +0300887 page->inuse = page->objects;
Christoph Lameter24922682007-07-17 04:03:18 -0700888 slab_fix(s, "Freelist cleared");
Christoph Lameter81819f02007-05-06 14:49:36 -0700889 return 0;
890 }
891 break;
892 }
893 object = fp;
894 fp = get_freepointer(s, object);
895 nr++;
896 }
897
Lai Jiangshanab9a0f12011-03-10 15:21:48 +0800898 max_objects = order_objects(compound_order(page), s->size, s->reserved);
Cyrill Gorcunov210b5c02008-10-22 23:00:38 +0400899 if (max_objects > MAX_OBJS_PER_PAGE)
900 max_objects = MAX_OBJS_PER_PAGE;
Christoph Lameter224a88b2008-04-14 19:11:31 +0300901
902 if (page->objects != max_objects) {
903 slab_err(s, page, "Wrong number of objects. Found %d but "
904 "should be %d", page->objects, max_objects);
905 page->objects = max_objects;
906 slab_fix(s, "Number of objects adjusted.");
907 }
Christoph Lameter39b26462008-04-14 19:11:30 +0300908 if (page->inuse != page->objects - nr) {
Christoph Lameter70d71222007-05-06 14:49:47 -0700909 slab_err(s, page, "Wrong object count. Counter is %d but "
Christoph Lameter39b26462008-04-14 19:11:30 +0300910 "counted were %d", page->inuse, page->objects - nr);
911 page->inuse = page->objects - nr;
Christoph Lameter24922682007-07-17 04:03:18 -0700912 slab_fix(s, "Object count adjusted.");
Christoph Lameter81819f02007-05-06 14:49:36 -0700913 }
914 return search == NULL;
915}
916
Christoph Lameter0121c6192008-04-29 16:11:12 -0700917static void trace(struct kmem_cache *s, struct page *page, void *object,
918 int alloc)
Christoph Lameter3ec09742007-05-16 22:11:00 -0700919{
920 if (s->flags & SLAB_TRACE) {
921 printk(KERN_INFO "TRACE %s %s 0x%p inuse=%d fp=0x%p\n",
922 s->name,
923 alloc ? "alloc" : "free",
924 object, page->inuse,
925 page->freelist);
926
927 if (!alloc)
Sebastian Andrzej Siewiorffc79d22011-07-29 14:10:20 +0200928 print_section("Object ", (void *)object, s->objsize);
Christoph Lameter3ec09742007-05-16 22:11:00 -0700929
930 dump_stack();
931 }
932}
933
Christoph Lameter643b1132007-05-06 14:49:42 -0700934/*
Christoph Lameterc016b0b2010-08-20 12:37:16 -0500935 * Hooks for other subsystems that check memory allocations. In a typical
936 * production configuration these hooks all should produce no code at all.
937 */
938static inline int slab_pre_alloc_hook(struct kmem_cache *s, gfp_t flags)
939{
Christoph Lameterc1d50832010-08-20 12:37:17 -0500940 flags &= gfp_allowed_mask;
Christoph Lameterc016b0b2010-08-20 12:37:16 -0500941 lockdep_trace_alloc(flags);
942 might_sleep_if(flags & __GFP_WAIT);
943
944 return should_failslab(s->objsize, flags, s->flags);
945}
946
947static inline void slab_post_alloc_hook(struct kmem_cache *s, gfp_t flags, void *object)
948{
Christoph Lameterc1d50832010-08-20 12:37:17 -0500949 flags &= gfp_allowed_mask;
Eric Dumazetb3d41882011-02-14 18:35:22 +0100950 kmemcheck_slab_alloc(s, flags, object, slab_ksize(s));
Christoph Lameterc016b0b2010-08-20 12:37:16 -0500951 kmemleak_alloc_recursive(object, s->objsize, 1, s->flags, flags);
952}
953
954static inline void slab_free_hook(struct kmem_cache *s, void *x)
955{
956 kmemleak_free_recursive(x, s->flags);
Christoph Lameterc016b0b2010-08-20 12:37:16 -0500957
Christoph Lameterd3f661d2011-02-25 11:38:52 -0600958 /*
959 * Trouble is that we may no longer disable interupts in the fast path
960 * So in order to make the debug calls that expect irqs to be
961 * disabled we need to disable interrupts temporarily.
962 */
963#if defined(CONFIG_KMEMCHECK) || defined(CONFIG_LOCKDEP)
964 {
965 unsigned long flags;
966
967 local_irq_save(flags);
968 kmemcheck_slab_free(s, x, s->objsize);
969 debug_check_no_locks_freed(x, s->objsize);
Christoph Lameterd3f661d2011-02-25 11:38:52 -0600970 local_irq_restore(flags);
971 }
972#endif
Thomas Gleixnerf9b615d2011-03-24 21:26:46 +0200973 if (!(s->flags & SLAB_DEBUG_OBJECTS))
974 debug_check_no_obj_freed(x, s->objsize);
Christoph Lameterc016b0b2010-08-20 12:37:16 -0500975}
976
977/*
Christoph Lameter672bba32007-05-09 02:32:39 -0700978 * Tracking of fully allocated slabs for debugging purposes.
Christoph Lameter5cc6eee2011-06-01 12:25:50 -0500979 *
980 * list_lock must be held.
Christoph Lameter643b1132007-05-06 14:49:42 -0700981 */
Christoph Lameter5cc6eee2011-06-01 12:25:50 -0500982static void add_full(struct kmem_cache *s,
983 struct kmem_cache_node *n, struct page *page)
Christoph Lameter643b1132007-05-06 14:49:42 -0700984{
Christoph Lameter643b1132007-05-06 14:49:42 -0700985 if (!(s->flags & SLAB_STORE_USER))
986 return;
987
Christoph Lameter5cc6eee2011-06-01 12:25:50 -0500988 list_add(&page->lru, &n->full);
989}
Christoph Lameter643b1132007-05-06 14:49:42 -0700990
Christoph Lameter5cc6eee2011-06-01 12:25:50 -0500991/*
992 * list_lock must be held.
993 */
994static void remove_full(struct kmem_cache *s, struct page *page)
995{
996 if (!(s->flags & SLAB_STORE_USER))
997 return;
998
Christoph Lameter643b1132007-05-06 14:49:42 -0700999 list_del(&page->lru);
Christoph Lameter643b1132007-05-06 14:49:42 -07001000}
1001
Christoph Lameter0f389ec2008-04-14 18:53:02 +03001002/* Tracking of the number of slabs for debugging purposes */
1003static inline unsigned long slabs_node(struct kmem_cache *s, int node)
1004{
1005 struct kmem_cache_node *n = get_node(s, node);
1006
1007 return atomic_long_read(&n->nr_slabs);
1008}
1009
Alexander Beregalov26c02cf2009-06-11 14:08:48 +04001010static inline unsigned long node_nr_slabs(struct kmem_cache_node *n)
1011{
1012 return atomic_long_read(&n->nr_slabs);
1013}
1014
Christoph Lameter205ab992008-04-14 19:11:40 +03001015static inline void inc_slabs_node(struct kmem_cache *s, int node, int objects)
Christoph Lameter0f389ec2008-04-14 18:53:02 +03001016{
1017 struct kmem_cache_node *n = get_node(s, node);
1018
1019 /*
1020 * May be called early in order to allocate a slab for the
1021 * kmem_cache_node structure. Solve the chicken-egg
1022 * dilemma by deferring the increment of the count during
1023 * bootstrap (see early_kmem_cache_node_alloc).
1024 */
Christoph Lameter7340cc82010-09-28 08:10:26 -05001025 if (n) {
Christoph Lameter0f389ec2008-04-14 18:53:02 +03001026 atomic_long_inc(&n->nr_slabs);
Christoph Lameter205ab992008-04-14 19:11:40 +03001027 atomic_long_add(objects, &n->total_objects);
1028 }
Christoph Lameter0f389ec2008-04-14 18:53:02 +03001029}
Christoph Lameter205ab992008-04-14 19:11:40 +03001030static inline void dec_slabs_node(struct kmem_cache *s, int node, int objects)
Christoph Lameter0f389ec2008-04-14 18:53:02 +03001031{
1032 struct kmem_cache_node *n = get_node(s, node);
1033
1034 atomic_long_dec(&n->nr_slabs);
Christoph Lameter205ab992008-04-14 19:11:40 +03001035 atomic_long_sub(objects, &n->total_objects);
Christoph Lameter0f389ec2008-04-14 18:53:02 +03001036}
1037
1038/* Object debug checks for alloc/free paths */
Christoph Lameter3ec09742007-05-16 22:11:00 -07001039static void setup_object_debug(struct kmem_cache *s, struct page *page,
1040 void *object)
1041{
1042 if (!(s->flags & (SLAB_STORE_USER|SLAB_RED_ZONE|__OBJECT_POISON)))
1043 return;
1044
Christoph Lameterf7cb1932010-09-29 07:15:01 -05001045 init_object(s, object, SLUB_RED_INACTIVE);
Christoph Lameter3ec09742007-05-16 22:11:00 -07001046 init_tracking(s, object);
1047}
1048
Christoph Lameter15370662010-08-20 12:37:12 -05001049static noinline int alloc_debug_processing(struct kmem_cache *s, struct page *page,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03001050 void *object, unsigned long addr)
Christoph Lameter81819f02007-05-06 14:49:36 -07001051{
1052 if (!check_slab(s, page))
1053 goto bad;
1054
Christoph Lameter81819f02007-05-06 14:49:36 -07001055 if (!check_valid_pointer(s, page, object)) {
1056 object_err(s, page, object, "Freelist Pointer check fails");
Christoph Lameter70d71222007-05-06 14:49:47 -07001057 goto bad;
Christoph Lameter81819f02007-05-06 14:49:36 -07001058 }
1059
Christoph Lameterf7cb1932010-09-29 07:15:01 -05001060 if (!check_object(s, page, object, SLUB_RED_INACTIVE))
Christoph Lameter81819f02007-05-06 14:49:36 -07001061 goto bad;
Christoph Lameter81819f02007-05-06 14:49:36 -07001062
Christoph Lameter3ec09742007-05-16 22:11:00 -07001063 /* Success perform special debug activities for allocs */
1064 if (s->flags & SLAB_STORE_USER)
1065 set_track(s, object, TRACK_ALLOC, addr);
1066 trace(s, page, object, 1);
Christoph Lameterf7cb1932010-09-29 07:15:01 -05001067 init_object(s, object, SLUB_RED_ACTIVE);
Christoph Lameter81819f02007-05-06 14:49:36 -07001068 return 1;
Christoph Lameter3ec09742007-05-16 22:11:00 -07001069
Christoph Lameter81819f02007-05-06 14:49:36 -07001070bad:
1071 if (PageSlab(page)) {
1072 /*
1073 * If this is a slab page then lets do the best we can
1074 * to avoid issues in the future. Marking all objects
Christoph Lameter672bba32007-05-09 02:32:39 -07001075 * as used avoids touching the remaining objects.
Christoph Lameter81819f02007-05-06 14:49:36 -07001076 */
Christoph Lameter24922682007-07-17 04:03:18 -07001077 slab_fix(s, "Marking all objects used");
Christoph Lameter39b26462008-04-14 19:11:30 +03001078 page->inuse = page->objects;
Christoph Lametera973e9d2008-03-01 13:40:44 -08001079 page->freelist = NULL;
Christoph Lameter81819f02007-05-06 14:49:36 -07001080 }
1081 return 0;
1082}
1083
Christoph Lameter15370662010-08-20 12:37:12 -05001084static noinline int free_debug_processing(struct kmem_cache *s,
1085 struct page *page, void *object, unsigned long addr)
Christoph Lameter81819f02007-05-06 14:49:36 -07001086{
Christoph Lameter5c2e4bb2011-06-01 12:25:54 -05001087 unsigned long flags;
1088 int rc = 0;
1089
1090 local_irq_save(flags);
Christoph Lameter881db7f2011-06-01 12:25:53 -05001091 slab_lock(page);
1092
Christoph Lameter81819f02007-05-06 14:49:36 -07001093 if (!check_slab(s, page))
1094 goto fail;
1095
1096 if (!check_valid_pointer(s, page, object)) {
Christoph Lameter70d71222007-05-06 14:49:47 -07001097 slab_err(s, page, "Invalid object pointer 0x%p", object);
Christoph Lameter81819f02007-05-06 14:49:36 -07001098 goto fail;
1099 }
1100
1101 if (on_freelist(s, page, object)) {
Christoph Lameter24922682007-07-17 04:03:18 -07001102 object_err(s, page, object, "Object already free");
Christoph Lameter81819f02007-05-06 14:49:36 -07001103 goto fail;
1104 }
1105
Christoph Lameterf7cb1932010-09-29 07:15:01 -05001106 if (!check_object(s, page, object, SLUB_RED_ACTIVE))
Christoph Lameter5c2e4bb2011-06-01 12:25:54 -05001107 goto out;
Christoph Lameter81819f02007-05-06 14:49:36 -07001108
1109 if (unlikely(s != page->slab)) {
Ingo Molnar3adbefe2008-02-05 17:57:39 -08001110 if (!PageSlab(page)) {
Christoph Lameter70d71222007-05-06 14:49:47 -07001111 slab_err(s, page, "Attempt to free object(0x%p) "
1112 "outside of slab", object);
Ingo Molnar3adbefe2008-02-05 17:57:39 -08001113 } else if (!page->slab) {
Christoph Lameter81819f02007-05-06 14:49:36 -07001114 printk(KERN_ERR
Christoph Lameter70d71222007-05-06 14:49:47 -07001115 "SLUB <none>: no slab for object 0x%p.\n",
Christoph Lameter81819f02007-05-06 14:49:36 -07001116 object);
Christoph Lameter70d71222007-05-06 14:49:47 -07001117 dump_stack();
Pekka Enberg06428782008-01-07 23:20:27 -08001118 } else
Christoph Lameter24922682007-07-17 04:03:18 -07001119 object_err(s, page, object,
1120 "page slab pointer corrupt.");
Christoph Lameter81819f02007-05-06 14:49:36 -07001121 goto fail;
1122 }
Christoph Lameter3ec09742007-05-16 22:11:00 -07001123
Christoph Lameter3ec09742007-05-16 22:11:00 -07001124 if (s->flags & SLAB_STORE_USER)
1125 set_track(s, object, TRACK_FREE, addr);
1126 trace(s, page, object, 0);
Christoph Lameterf7cb1932010-09-29 07:15:01 -05001127 init_object(s, object, SLUB_RED_INACTIVE);
Christoph Lameter5c2e4bb2011-06-01 12:25:54 -05001128 rc = 1;
1129out:
Christoph Lameter881db7f2011-06-01 12:25:53 -05001130 slab_unlock(page);
Christoph Lameter5c2e4bb2011-06-01 12:25:54 -05001131 local_irq_restore(flags);
1132 return rc;
Christoph Lameter3ec09742007-05-16 22:11:00 -07001133
Christoph Lameter81819f02007-05-06 14:49:36 -07001134fail:
Christoph Lameter24922682007-07-17 04:03:18 -07001135 slab_fix(s, "Object at 0x%p not freed", object);
Christoph Lameter5c2e4bb2011-06-01 12:25:54 -05001136 goto out;
Christoph Lameter81819f02007-05-06 14:49:36 -07001137}
1138
Christoph Lameter41ecc552007-05-09 02:32:44 -07001139static int __init setup_slub_debug(char *str)
1140{
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001141 slub_debug = DEBUG_DEFAULT_FLAGS;
1142 if (*str++ != '=' || !*str)
1143 /*
1144 * No options specified. Switch on full debugging.
1145 */
1146 goto out;
Christoph Lameter41ecc552007-05-09 02:32:44 -07001147
1148 if (*str == ',')
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001149 /*
1150 * No options but restriction on slabs. This means full
1151 * debugging for slabs matching a pattern.
1152 */
1153 goto check_slabs;
1154
David Rientjesfa5ec8a2009-07-07 00:14:14 -07001155 if (tolower(*str) == 'o') {
1156 /*
1157 * Avoid enabling debugging on caches if its minimum order
1158 * would increase as a result.
1159 */
1160 disable_higher_order_debug = 1;
1161 goto out;
1162 }
1163
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001164 slub_debug = 0;
1165 if (*str == '-')
1166 /*
1167 * Switch off all debugging measures.
1168 */
1169 goto out;
1170
1171 /*
1172 * Determine which debug features should be switched on
1173 */
Pekka Enberg06428782008-01-07 23:20:27 -08001174 for (; *str && *str != ','; str++) {
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001175 switch (tolower(*str)) {
1176 case 'f':
1177 slub_debug |= SLAB_DEBUG_FREE;
1178 break;
1179 case 'z':
1180 slub_debug |= SLAB_RED_ZONE;
1181 break;
1182 case 'p':
1183 slub_debug |= SLAB_POISON;
1184 break;
1185 case 'u':
1186 slub_debug |= SLAB_STORE_USER;
1187 break;
1188 case 't':
1189 slub_debug |= SLAB_TRACE;
1190 break;
Dmitry Monakhov4c13dd32010-02-26 09:36:12 +03001191 case 'a':
1192 slub_debug |= SLAB_FAILSLAB;
1193 break;
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001194 default:
1195 printk(KERN_ERR "slub_debug option '%c' "
Pekka Enberg06428782008-01-07 23:20:27 -08001196 "unknown. skipped\n", *str);
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001197 }
1198 }
1199
1200check_slabs:
1201 if (*str == ',')
Christoph Lameter41ecc552007-05-09 02:32:44 -07001202 slub_debug_slabs = str + 1;
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001203out:
Christoph Lameter41ecc552007-05-09 02:32:44 -07001204 return 1;
1205}
1206
1207__setup("slub_debug", setup_slub_debug);
1208
Christoph Lameterba0268a2007-09-11 15:24:11 -07001209static unsigned long kmem_cache_flags(unsigned long objsize,
1210 unsigned long flags, const char *name,
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07001211 void (*ctor)(void *))
Christoph Lameter41ecc552007-05-09 02:32:44 -07001212{
1213 /*
Christoph Lametere1533622008-02-15 23:45:24 -08001214 * Enable debugging if selected on the kernel commandline.
Christoph Lameter41ecc552007-05-09 02:32:44 -07001215 */
Christoph Lametere1533622008-02-15 23:45:24 -08001216 if (slub_debug && (!slub_debug_slabs ||
David Rientjes3de47212009-07-27 18:30:35 -07001217 !strncmp(slub_debug_slabs, name, strlen(slub_debug_slabs))))
1218 flags |= slub_debug;
Christoph Lameterba0268a2007-09-11 15:24:11 -07001219
1220 return flags;
Christoph Lameter41ecc552007-05-09 02:32:44 -07001221}
1222#else
Christoph Lameter3ec09742007-05-16 22:11:00 -07001223static inline void setup_object_debug(struct kmem_cache *s,
1224 struct page *page, void *object) {}
Christoph Lameter41ecc552007-05-09 02:32:44 -07001225
Christoph Lameter3ec09742007-05-16 22:11:00 -07001226static inline int alloc_debug_processing(struct kmem_cache *s,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03001227 struct page *page, void *object, unsigned long addr) { return 0; }
Christoph Lameter41ecc552007-05-09 02:32:44 -07001228
Christoph Lameter3ec09742007-05-16 22:11:00 -07001229static inline int free_debug_processing(struct kmem_cache *s,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03001230 struct page *page, void *object, unsigned long addr) { return 0; }
Christoph Lameter41ecc552007-05-09 02:32:44 -07001231
Christoph Lameter41ecc552007-05-09 02:32:44 -07001232static inline int slab_pad_check(struct kmem_cache *s, struct page *page)
1233 { return 1; }
1234static inline int check_object(struct kmem_cache *s, struct page *page,
Christoph Lameterf7cb1932010-09-29 07:15:01 -05001235 void *object, u8 val) { return 1; }
Christoph Lameter5cc6eee2011-06-01 12:25:50 -05001236static inline void add_full(struct kmem_cache *s, struct kmem_cache_node *n,
1237 struct page *page) {}
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001238static inline void remove_full(struct kmem_cache *s, struct page *page) {}
Christoph Lameterba0268a2007-09-11 15:24:11 -07001239static inline unsigned long kmem_cache_flags(unsigned long objsize,
1240 unsigned long flags, const char *name,
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07001241 void (*ctor)(void *))
Christoph Lameterba0268a2007-09-11 15:24:11 -07001242{
1243 return flags;
1244}
Christoph Lameter41ecc552007-05-09 02:32:44 -07001245#define slub_debug 0
Christoph Lameter0f389ec2008-04-14 18:53:02 +03001246
Ingo Molnarfdaa45e2009-09-15 11:00:26 +02001247#define disable_higher_order_debug 0
1248
Christoph Lameter0f389ec2008-04-14 18:53:02 +03001249static inline unsigned long slabs_node(struct kmem_cache *s, int node)
1250 { return 0; }
Alexander Beregalov26c02cf2009-06-11 14:08:48 +04001251static inline unsigned long node_nr_slabs(struct kmem_cache_node *n)
1252 { return 0; }
Christoph Lameter205ab992008-04-14 19:11:40 +03001253static inline void inc_slabs_node(struct kmem_cache *s, int node,
1254 int objects) {}
1255static inline void dec_slabs_node(struct kmem_cache *s, int node,
1256 int objects) {}
Christoph Lameter7d550c52010-08-25 14:07:16 -05001257
1258static inline int slab_pre_alloc_hook(struct kmem_cache *s, gfp_t flags)
1259 { return 0; }
1260
1261static inline void slab_post_alloc_hook(struct kmem_cache *s, gfp_t flags,
1262 void *object) {}
1263
1264static inline void slab_free_hook(struct kmem_cache *s, void *x) {}
1265
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05001266#endif /* CONFIG_SLUB_DEBUG */
Christoph Lameter205ab992008-04-14 19:11:40 +03001267
Christoph Lameter81819f02007-05-06 14:49:36 -07001268/*
1269 * Slab allocation and freeing
1270 */
Christoph Lameter65c33762008-04-14 19:11:40 +03001271static inline struct page *alloc_slab_page(gfp_t flags, int node,
1272 struct kmem_cache_order_objects oo)
1273{
1274 int order = oo_order(oo);
1275
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001276 flags |= __GFP_NOTRACK;
1277
Christoph Lameter2154a332010-07-09 14:07:10 -05001278 if (node == NUMA_NO_NODE)
Christoph Lameter65c33762008-04-14 19:11:40 +03001279 return alloc_pages(flags, order);
1280 else
Minchan Kim6b65aaf2010-04-14 23:58:36 +09001281 return alloc_pages_exact_node(node, flags, order);
Christoph Lameter65c33762008-04-14 19:11:40 +03001282}
1283
Christoph Lameter81819f02007-05-06 14:49:36 -07001284static struct page *allocate_slab(struct kmem_cache *s, gfp_t flags, int node)
1285{
Pekka Enberg06428782008-01-07 23:20:27 -08001286 struct page *page;
Christoph Lameter834f3d12008-04-14 19:11:31 +03001287 struct kmem_cache_order_objects oo = s->oo;
Pekka Enbergba522702009-06-24 21:59:51 +03001288 gfp_t alloc_gfp;
Christoph Lameter81819f02007-05-06 14:49:36 -07001289
Christoph Lameter7e0528d2011-06-01 12:25:44 -05001290 flags &= gfp_allowed_mask;
1291
1292 if (flags & __GFP_WAIT)
1293 local_irq_enable();
1294
Christoph Lameterb7a49f02008-02-14 14:21:32 -08001295 flags |= s->allocflags;
Mel Gormane12ba742007-10-16 01:25:52 -07001296
Pekka Enbergba522702009-06-24 21:59:51 +03001297 /*
1298 * Let the initial higher-order allocation fail under memory pressure
1299 * so we fall-back to the minimum order allocation.
1300 */
1301 alloc_gfp = (flags | __GFP_NOWARN | __GFP_NORETRY) & ~__GFP_NOFAIL;
1302
1303 page = alloc_slab_page(alloc_gfp, node, oo);
Christoph Lameter65c33762008-04-14 19:11:40 +03001304 if (unlikely(!page)) {
1305 oo = s->min;
1306 /*
1307 * Allocation may have failed due to fragmentation.
1308 * Try a lower order alloc if possible
1309 */
1310 page = alloc_slab_page(flags, node, oo);
Christoph Lameter81819f02007-05-06 14:49:36 -07001311
Christoph Lameter7e0528d2011-06-01 12:25:44 -05001312 if (page)
1313 stat(s, ORDER_FALLBACK);
Christoph Lameter65c33762008-04-14 19:11:40 +03001314 }
Vegard Nossum5a896d92008-04-04 00:54:48 +02001315
Christoph Lameter7e0528d2011-06-01 12:25:44 -05001316 if (flags & __GFP_WAIT)
1317 local_irq_disable();
1318
1319 if (!page)
1320 return NULL;
1321
Vegard Nossum5a896d92008-04-04 00:54:48 +02001322 if (kmemcheck_enabled
Amerigo Wang5086c389c2009-08-19 21:44:13 +03001323 && !(s->flags & (SLAB_NOTRACK | DEBUG_DEFAULT_FLAGS))) {
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001324 int pages = 1 << oo_order(oo);
1325
1326 kmemcheck_alloc_shadow(page, oo_order(oo), flags, node);
1327
1328 /*
1329 * Objects from caches that have a constructor don't get
1330 * cleared when they're allocated, so we need to do it here.
1331 */
1332 if (s->ctor)
1333 kmemcheck_mark_uninitialized_pages(page, pages);
1334 else
1335 kmemcheck_mark_unallocated_pages(page, pages);
Vegard Nossum5a896d92008-04-04 00:54:48 +02001336 }
1337
Christoph Lameter834f3d12008-04-14 19:11:31 +03001338 page->objects = oo_objects(oo);
Christoph Lameter81819f02007-05-06 14:49:36 -07001339 mod_zone_page_state(page_zone(page),
1340 (s->flags & SLAB_RECLAIM_ACCOUNT) ?
1341 NR_SLAB_RECLAIMABLE : NR_SLAB_UNRECLAIMABLE,
Christoph Lameter65c33762008-04-14 19:11:40 +03001342 1 << oo_order(oo));
Christoph Lameter81819f02007-05-06 14:49:36 -07001343
1344 return page;
1345}
1346
1347static void setup_object(struct kmem_cache *s, struct page *page,
1348 void *object)
1349{
Christoph Lameter3ec09742007-05-16 22:11:00 -07001350 setup_object_debug(s, page, object);
Christoph Lameter4f104932007-05-06 14:50:17 -07001351 if (unlikely(s->ctor))
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07001352 s->ctor(object);
Christoph Lameter81819f02007-05-06 14:49:36 -07001353}
1354
1355static struct page *new_slab(struct kmem_cache *s, gfp_t flags, int node)
1356{
1357 struct page *page;
Christoph Lameter81819f02007-05-06 14:49:36 -07001358 void *start;
Christoph Lameter81819f02007-05-06 14:49:36 -07001359 void *last;
1360 void *p;
1361
Christoph Lameter6cb06222007-10-16 01:25:41 -07001362 BUG_ON(flags & GFP_SLAB_BUG_MASK);
Christoph Lameter81819f02007-05-06 14:49:36 -07001363
Christoph Lameter6cb06222007-10-16 01:25:41 -07001364 page = allocate_slab(s,
1365 flags & (GFP_RECLAIM_MASK | GFP_CONSTRAINT_MASK), node);
Christoph Lameter81819f02007-05-06 14:49:36 -07001366 if (!page)
1367 goto out;
1368
Christoph Lameter205ab992008-04-14 19:11:40 +03001369 inc_slabs_node(s, page_to_nid(page), page->objects);
Christoph Lameter81819f02007-05-06 14:49:36 -07001370 page->slab = s;
1371 page->flags |= 1 << PG_slab;
Christoph Lameter81819f02007-05-06 14:49:36 -07001372
1373 start = page_address(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001374
1375 if (unlikely(s->flags & SLAB_POISON))
Christoph Lameter834f3d12008-04-14 19:11:31 +03001376 memset(start, POISON_INUSE, PAGE_SIZE << compound_order(page));
Christoph Lameter81819f02007-05-06 14:49:36 -07001377
1378 last = start;
Christoph Lameter224a88b2008-04-14 19:11:31 +03001379 for_each_object(p, s, start, page->objects) {
Christoph Lameter81819f02007-05-06 14:49:36 -07001380 setup_object(s, page, last);
1381 set_freepointer(s, last, p);
1382 last = p;
1383 }
1384 setup_object(s, page, last);
Christoph Lametera973e9d2008-03-01 13:40:44 -08001385 set_freepointer(s, last, NULL);
Christoph Lameter81819f02007-05-06 14:49:36 -07001386
1387 page->freelist = start;
Christoph Lametere6e82ea2011-08-09 16:12:24 -05001388 page->inuse = page->objects;
Christoph Lameter8cb0a502011-06-01 12:25:46 -05001389 page->frozen = 1;
Christoph Lameter81819f02007-05-06 14:49:36 -07001390out:
Christoph Lameter81819f02007-05-06 14:49:36 -07001391 return page;
1392}
1393
1394static void __free_slab(struct kmem_cache *s, struct page *page)
1395{
Christoph Lameter834f3d12008-04-14 19:11:31 +03001396 int order = compound_order(page);
1397 int pages = 1 << order;
Christoph Lameter81819f02007-05-06 14:49:36 -07001398
Christoph Lameteraf537b02010-07-09 14:07:14 -05001399 if (kmem_cache_debug(s)) {
Christoph Lameter81819f02007-05-06 14:49:36 -07001400 void *p;
1401
1402 slab_pad_check(s, page);
Christoph Lameter224a88b2008-04-14 19:11:31 +03001403 for_each_object(p, s, page_address(page),
1404 page->objects)
Christoph Lameterf7cb1932010-09-29 07:15:01 -05001405 check_object(s, page, p, SLUB_RED_INACTIVE);
Christoph Lameter81819f02007-05-06 14:49:36 -07001406 }
1407
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001408 kmemcheck_free_shadow(page, compound_order(page));
Vegard Nossum5a896d92008-04-04 00:54:48 +02001409
Christoph Lameter81819f02007-05-06 14:49:36 -07001410 mod_zone_page_state(page_zone(page),
1411 (s->flags & SLAB_RECLAIM_ACCOUNT) ?
1412 NR_SLAB_RECLAIMABLE : NR_SLAB_UNRECLAIMABLE,
Pekka Enberg06428782008-01-07 23:20:27 -08001413 -pages);
Christoph Lameter81819f02007-05-06 14:49:36 -07001414
Christoph Lameter49bd5222008-04-14 18:52:18 +03001415 __ClearPageSlab(page);
1416 reset_page_mapcount(page);
Nick Piggin1eb5ac62009-05-05 19:13:44 +10001417 if (current->reclaim_state)
1418 current->reclaim_state->reclaimed_slab += pages;
Christoph Lameter834f3d12008-04-14 19:11:31 +03001419 __free_pages(page, order);
Christoph Lameter81819f02007-05-06 14:49:36 -07001420}
1421
Lai Jiangshanda9a6382011-03-10 15:22:00 +08001422#define need_reserve_slab_rcu \
1423 (sizeof(((struct page *)NULL)->lru) < sizeof(struct rcu_head))
1424
Christoph Lameter81819f02007-05-06 14:49:36 -07001425static void rcu_free_slab(struct rcu_head *h)
1426{
1427 struct page *page;
1428
Lai Jiangshanda9a6382011-03-10 15:22:00 +08001429 if (need_reserve_slab_rcu)
1430 page = virt_to_head_page(h);
1431 else
1432 page = container_of((struct list_head *)h, struct page, lru);
1433
Christoph Lameter81819f02007-05-06 14:49:36 -07001434 __free_slab(page->slab, page);
1435}
1436
1437static void free_slab(struct kmem_cache *s, struct page *page)
1438{
1439 if (unlikely(s->flags & SLAB_DESTROY_BY_RCU)) {
Lai Jiangshanda9a6382011-03-10 15:22:00 +08001440 struct rcu_head *head;
1441
1442 if (need_reserve_slab_rcu) {
1443 int order = compound_order(page);
1444 int offset = (PAGE_SIZE << order) - s->reserved;
1445
1446 VM_BUG_ON(s->reserved != sizeof(*head));
1447 head = page_address(page) + offset;
1448 } else {
1449 /*
1450 * RCU free overloads the RCU head over the LRU
1451 */
1452 head = (void *)&page->lru;
1453 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001454
1455 call_rcu(head, rcu_free_slab);
1456 } else
1457 __free_slab(s, page);
1458}
1459
1460static void discard_slab(struct kmem_cache *s, struct page *page)
1461{
Christoph Lameter205ab992008-04-14 19:11:40 +03001462 dec_slabs_node(s, page_to_nid(page), page->objects);
Christoph Lameter81819f02007-05-06 14:49:36 -07001463 free_slab(s, page);
1464}
1465
1466/*
Christoph Lameter5cc6eee2011-06-01 12:25:50 -05001467 * Management of partially allocated slabs.
1468 *
1469 * list_lock must be held.
Christoph Lameter81819f02007-05-06 14:49:36 -07001470 */
Christoph Lameter5cc6eee2011-06-01 12:25:50 -05001471static inline void add_partial(struct kmem_cache_node *n,
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001472 struct page *page, int tail)
Christoph Lameter81819f02007-05-06 14:49:36 -07001473{
Christoph Lametere95eed52007-05-06 14:49:44 -07001474 n->nr_partial++;
Shaohua Li136333d2011-08-24 08:57:52 +08001475 if (tail == DEACTIVATE_TO_TAIL)
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001476 list_add_tail(&page->lru, &n->partial);
1477 else
1478 list_add(&page->lru, &n->partial);
Christoph Lameter81819f02007-05-06 14:49:36 -07001479}
1480
Christoph Lameter5cc6eee2011-06-01 12:25:50 -05001481/*
1482 * list_lock must be held.
1483 */
1484static inline void remove_partial(struct kmem_cache_node *n,
Christoph Lameter62e346a2010-09-28 08:10:28 -05001485 struct page *page)
1486{
1487 list_del(&page->lru);
1488 n->nr_partial--;
1489}
1490
Christoph Lameter81819f02007-05-06 14:49:36 -07001491/*
Christoph Lameter5cc6eee2011-06-01 12:25:50 -05001492 * Lock slab, remove from the partial list and put the object into the
1493 * per cpu freelist.
Christoph Lameter81819f02007-05-06 14:49:36 -07001494 *
Christoph Lameter497b66f2011-08-09 16:12:26 -05001495 * Returns a list of objects or NULL if it fails.
1496 *
Christoph Lameter672bba32007-05-09 02:32:39 -07001497 * Must hold list_lock.
Christoph Lameter81819f02007-05-06 14:49:36 -07001498 */
Christoph Lameter497b66f2011-08-09 16:12:26 -05001499static inline void *acquire_slab(struct kmem_cache *s,
Christoph Lameteracd19fd2011-08-09 16:12:25 -05001500 struct kmem_cache_node *n, struct page *page,
Christoph Lameter49e22582011-08-09 16:12:27 -05001501 int mode)
Christoph Lameter81819f02007-05-06 14:49:36 -07001502{
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001503 void *freelist;
1504 unsigned long counters;
1505 struct page new;
1506
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001507 /*
1508 * Zap the freelist and set the frozen bit.
1509 * The old freelist is the list of objects for the
1510 * per cpu allocation list.
1511 */
1512 do {
1513 freelist = page->freelist;
1514 counters = page->counters;
1515 new.counters = counters;
Christoph Lameter49e22582011-08-09 16:12:27 -05001516 if (mode)
1517 new.inuse = page->objects;
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001518
1519 VM_BUG_ON(new.frozen);
1520 new.frozen = 1;
1521
Christoph Lameter1d071712011-07-14 12:49:12 -05001522 } while (!__cmpxchg_double_slab(s, page,
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001523 freelist, counters,
1524 NULL, new.counters,
1525 "lock and freeze"));
1526
1527 remove_partial(n, page);
Christoph Lameter49e22582011-08-09 16:12:27 -05001528 return freelist;
Christoph Lameter81819f02007-05-06 14:49:36 -07001529}
1530
Christoph Lameter49e22582011-08-09 16:12:27 -05001531static int put_cpu_partial(struct kmem_cache *s, struct page *page, int drain);
1532
Christoph Lameter81819f02007-05-06 14:49:36 -07001533/*
Christoph Lameter672bba32007-05-09 02:32:39 -07001534 * Try to allocate a partial slab from a specific node.
Christoph Lameter81819f02007-05-06 14:49:36 -07001535 */
Christoph Lameter497b66f2011-08-09 16:12:26 -05001536static void *get_partial_node(struct kmem_cache *s,
Christoph Lameteracd19fd2011-08-09 16:12:25 -05001537 struct kmem_cache_node *n, struct kmem_cache_cpu *c)
Christoph Lameter81819f02007-05-06 14:49:36 -07001538{
Christoph Lameter49e22582011-08-09 16:12:27 -05001539 struct page *page, *page2;
1540 void *object = NULL;
Christoph Lameter81819f02007-05-06 14:49:36 -07001541
1542 /*
1543 * Racy check. If we mistakenly see no partial slabs then we
1544 * just allocate an empty slab. If we mistakenly try to get a
Christoph Lameter672bba32007-05-09 02:32:39 -07001545 * partial slab and there is none available then get_partials()
1546 * will return NULL.
Christoph Lameter81819f02007-05-06 14:49:36 -07001547 */
1548 if (!n || !n->nr_partial)
1549 return NULL;
1550
1551 spin_lock(&n->list_lock);
Christoph Lameter49e22582011-08-09 16:12:27 -05001552 list_for_each_entry_safe(page, page2, &n->partial, lru) {
Alex,Shi12d79632011-09-07 10:26:36 +08001553 void *t = acquire_slab(s, n, page, object == NULL);
Christoph Lameter49e22582011-08-09 16:12:27 -05001554 int available;
1555
1556 if (!t)
1557 break;
1558
Alex,Shi12d79632011-09-07 10:26:36 +08001559 if (!object) {
Christoph Lameter49e22582011-08-09 16:12:27 -05001560 c->page = page;
1561 c->node = page_to_nid(page);
1562 stat(s, ALLOC_FROM_PARTIAL);
Christoph Lameter49e22582011-08-09 16:12:27 -05001563 object = t;
1564 available = page->objects - page->inuse;
1565 } else {
1566 page->freelist = t;
1567 available = put_cpu_partial(s, page, 0);
1568 }
1569 if (kmem_cache_debug(s) || available > s->cpu_partial / 2)
1570 break;
1571
Christoph Lameter497b66f2011-08-09 16:12:26 -05001572 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001573 spin_unlock(&n->list_lock);
Christoph Lameter497b66f2011-08-09 16:12:26 -05001574 return object;
Christoph Lameter81819f02007-05-06 14:49:36 -07001575}
1576
1577/*
Christoph Lameter672bba32007-05-09 02:32:39 -07001578 * Get a page from somewhere. Search in increasing NUMA distances.
Christoph Lameter81819f02007-05-06 14:49:36 -07001579 */
Christoph Lameteracd19fd2011-08-09 16:12:25 -05001580static struct page *get_any_partial(struct kmem_cache *s, gfp_t flags,
1581 struct kmem_cache_cpu *c)
Christoph Lameter81819f02007-05-06 14:49:36 -07001582{
1583#ifdef CONFIG_NUMA
1584 struct zonelist *zonelist;
Mel Gormandd1a2392008-04-28 02:12:17 -07001585 struct zoneref *z;
Mel Gorman54a6eb52008-04-28 02:12:16 -07001586 struct zone *zone;
1587 enum zone_type high_zoneidx = gfp_zone(flags);
Christoph Lameter497b66f2011-08-09 16:12:26 -05001588 void *object;
Christoph Lameter81819f02007-05-06 14:49:36 -07001589
1590 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07001591 * The defrag ratio allows a configuration of the tradeoffs between
1592 * inter node defragmentation and node local allocations. A lower
1593 * defrag_ratio increases the tendency to do local allocations
1594 * instead of attempting to obtain partial slabs from other nodes.
Christoph Lameter81819f02007-05-06 14:49:36 -07001595 *
Christoph Lameter672bba32007-05-09 02:32:39 -07001596 * If the defrag_ratio is set to 0 then kmalloc() always
1597 * returns node local objects. If the ratio is higher then kmalloc()
1598 * may return off node objects because partial slabs are obtained
1599 * from other nodes and filled up.
Christoph Lameter81819f02007-05-06 14:49:36 -07001600 *
Christoph Lameter6446faa2008-02-15 23:45:26 -08001601 * If /sys/kernel/slab/xx/defrag_ratio is set to 100 (which makes
Christoph Lameter672bba32007-05-09 02:32:39 -07001602 * defrag_ratio = 1000) then every (well almost) allocation will
1603 * first attempt to defrag slab caches on other nodes. This means
1604 * scanning over all nodes to look for partial slabs which may be
1605 * expensive if we do it every time we are trying to find a slab
1606 * with available objects.
Christoph Lameter81819f02007-05-06 14:49:36 -07001607 */
Christoph Lameter98246012008-01-07 23:20:26 -08001608 if (!s->remote_node_defrag_ratio ||
1609 get_cycles() % 1024 > s->remote_node_defrag_ratio)
Christoph Lameter81819f02007-05-06 14:49:36 -07001610 return NULL;
1611
Miao Xiec0ff7452010-05-24 14:32:08 -07001612 get_mems_allowed();
Mel Gorman0e884602008-04-28 02:12:14 -07001613 zonelist = node_zonelist(slab_node(current->mempolicy), flags);
Mel Gorman54a6eb52008-04-28 02:12:16 -07001614 for_each_zone_zonelist(zone, z, zonelist, high_zoneidx) {
Christoph Lameter81819f02007-05-06 14:49:36 -07001615 struct kmem_cache_node *n;
1616
Mel Gorman54a6eb52008-04-28 02:12:16 -07001617 n = get_node(s, zone_to_nid(zone));
Christoph Lameter81819f02007-05-06 14:49:36 -07001618
Mel Gorman54a6eb52008-04-28 02:12:16 -07001619 if (n && cpuset_zone_allowed_hardwall(zone, flags) &&
David Rientjes3b89d7d2009-02-22 17:40:07 -08001620 n->nr_partial > s->min_partial) {
Christoph Lameter497b66f2011-08-09 16:12:26 -05001621 object = get_partial_node(s, n, c);
1622 if (object) {
Miao Xiec0ff7452010-05-24 14:32:08 -07001623 put_mems_allowed();
Christoph Lameter497b66f2011-08-09 16:12:26 -05001624 return object;
Miao Xiec0ff7452010-05-24 14:32:08 -07001625 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001626 }
1627 }
Miao Xiec0ff7452010-05-24 14:32:08 -07001628 put_mems_allowed();
Christoph Lameter81819f02007-05-06 14:49:36 -07001629#endif
1630 return NULL;
1631}
1632
1633/*
1634 * Get a partial page, lock it and return it.
1635 */
Christoph Lameter497b66f2011-08-09 16:12:26 -05001636static void *get_partial(struct kmem_cache *s, gfp_t flags, int node,
Christoph Lameteracd19fd2011-08-09 16:12:25 -05001637 struct kmem_cache_cpu *c)
Christoph Lameter81819f02007-05-06 14:49:36 -07001638{
Christoph Lameter497b66f2011-08-09 16:12:26 -05001639 void *object;
Christoph Lameter2154a332010-07-09 14:07:10 -05001640 int searchnode = (node == NUMA_NO_NODE) ? numa_node_id() : node;
Christoph Lameter81819f02007-05-06 14:49:36 -07001641
Christoph Lameter497b66f2011-08-09 16:12:26 -05001642 object = get_partial_node(s, get_node(s, searchnode), c);
1643 if (object || node != NUMA_NO_NODE)
1644 return object;
Christoph Lameter81819f02007-05-06 14:49:36 -07001645
Christoph Lameteracd19fd2011-08-09 16:12:25 -05001646 return get_any_partial(s, flags, c);
Christoph Lameter81819f02007-05-06 14:49:36 -07001647}
1648
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06001649#ifdef CONFIG_PREEMPT
1650/*
1651 * Calculate the next globally unique transaction for disambiguiation
1652 * during cmpxchg. The transactions start with the cpu number and are then
1653 * incremented by CONFIG_NR_CPUS.
1654 */
1655#define TID_STEP roundup_pow_of_two(CONFIG_NR_CPUS)
1656#else
1657/*
1658 * No preemption supported therefore also no need to check for
1659 * different cpus.
1660 */
1661#define TID_STEP 1
1662#endif
1663
1664static inline unsigned long next_tid(unsigned long tid)
1665{
1666 return tid + TID_STEP;
1667}
1668
1669static inline unsigned int tid_to_cpu(unsigned long tid)
1670{
1671 return tid % TID_STEP;
1672}
1673
1674static inline unsigned long tid_to_event(unsigned long tid)
1675{
1676 return tid / TID_STEP;
1677}
1678
1679static inline unsigned int init_tid(int cpu)
1680{
1681 return cpu;
1682}
1683
1684static inline void note_cmpxchg_failure(const char *n,
1685 const struct kmem_cache *s, unsigned long tid)
1686{
1687#ifdef SLUB_DEBUG_CMPXCHG
1688 unsigned long actual_tid = __this_cpu_read(s->cpu_slab->tid);
1689
1690 printk(KERN_INFO "%s %s: cmpxchg redo ", n, s->name);
1691
1692#ifdef CONFIG_PREEMPT
1693 if (tid_to_cpu(tid) != tid_to_cpu(actual_tid))
1694 printk("due to cpu change %d -> %d\n",
1695 tid_to_cpu(tid), tid_to_cpu(actual_tid));
1696 else
1697#endif
1698 if (tid_to_event(tid) != tid_to_event(actual_tid))
1699 printk("due to cpu running other code. Event %ld->%ld\n",
1700 tid_to_event(tid), tid_to_event(actual_tid));
1701 else
1702 printk("for unknown reason: actual=%lx was=%lx target=%lx\n",
1703 actual_tid, tid, next_tid(tid));
1704#endif
Christoph Lameter4fdccdf2011-03-22 13:35:00 -05001705 stat(s, CMPXCHG_DOUBLE_CPU_FAIL);
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06001706}
1707
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06001708void init_kmem_cache_cpus(struct kmem_cache *s)
1709{
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06001710 int cpu;
1711
1712 for_each_possible_cpu(cpu)
1713 per_cpu_ptr(s->cpu_slab, cpu)->tid = init_tid(cpu);
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06001714}
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001715
1716/*
1717 * Remove the cpu slab
1718 */
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001719static void deactivate_slab(struct kmem_cache *s, struct kmem_cache_cpu *c)
Christoph Lameter81819f02007-05-06 14:49:36 -07001720{
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001721 enum slab_modes { M_NONE, M_PARTIAL, M_FULL, M_FREE };
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001722 struct page *page = c->page;
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001723 struct kmem_cache_node *n = get_node(s, page_to_nid(page));
1724 int lock = 0;
1725 enum slab_modes l = M_NONE, m = M_NONE;
1726 void *freelist;
1727 void *nextfree;
Shaohua Li136333d2011-08-24 08:57:52 +08001728 int tail = DEACTIVATE_TO_HEAD;
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001729 struct page new;
1730 struct page old;
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001731
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001732 if (page->freelist) {
Christoph Lameter84e554e62009-12-18 16:26:23 -06001733 stat(s, DEACTIVATE_REMOTE_FREES);
Shaohua Li136333d2011-08-24 08:57:52 +08001734 tail = DEACTIVATE_TO_TAIL;
Christoph Lameter894b8782007-05-10 03:15:16 -07001735 }
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001736
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06001737 c->tid = next_tid(c->tid);
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001738 c->page = NULL;
1739 freelist = c->freelist;
1740 c->freelist = NULL;
1741
1742 /*
1743 * Stage one: Free all available per cpu objects back
1744 * to the page freelist while it is still frozen. Leave the
1745 * last one.
1746 *
1747 * There is no need to take the list->lock because the page
1748 * is still frozen.
1749 */
1750 while (freelist && (nextfree = get_freepointer(s, freelist))) {
1751 void *prior;
1752 unsigned long counters;
1753
1754 do {
1755 prior = page->freelist;
1756 counters = page->counters;
1757 set_freepointer(s, freelist, prior);
1758 new.counters = counters;
1759 new.inuse--;
1760 VM_BUG_ON(!new.frozen);
1761
Christoph Lameter1d071712011-07-14 12:49:12 -05001762 } while (!__cmpxchg_double_slab(s, page,
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001763 prior, counters,
1764 freelist, new.counters,
1765 "drain percpu freelist"));
1766
1767 freelist = nextfree;
1768 }
1769
1770 /*
1771 * Stage two: Ensure that the page is unfrozen while the
1772 * list presence reflects the actual number of objects
1773 * during unfreeze.
1774 *
1775 * We setup the list membership and then perform a cmpxchg
1776 * with the count. If there is a mismatch then the page
1777 * is not unfrozen but the page is on the wrong list.
1778 *
1779 * Then we restart the process which may have to remove
1780 * the page from the list that we just put it on again
1781 * because the number of objects in the slab may have
1782 * changed.
1783 */
1784redo:
1785
1786 old.freelist = page->freelist;
1787 old.counters = page->counters;
1788 VM_BUG_ON(!old.frozen);
1789
1790 /* Determine target state of the slab */
1791 new.counters = old.counters;
1792 if (freelist) {
1793 new.inuse--;
1794 set_freepointer(s, freelist, old.freelist);
1795 new.freelist = freelist;
1796 } else
1797 new.freelist = old.freelist;
1798
1799 new.frozen = 0;
1800
Christoph Lameter81107182011-08-09 13:01:32 -05001801 if (!new.inuse && n->nr_partial > s->min_partial)
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001802 m = M_FREE;
1803 else if (new.freelist) {
1804 m = M_PARTIAL;
1805 if (!lock) {
1806 lock = 1;
1807 /*
1808 * Taking the spinlock removes the possiblity
1809 * that acquire_slab() will see a slab page that
1810 * is frozen
1811 */
1812 spin_lock(&n->list_lock);
1813 }
1814 } else {
1815 m = M_FULL;
1816 if (kmem_cache_debug(s) && !lock) {
1817 lock = 1;
1818 /*
1819 * This also ensures that the scanning of full
1820 * slabs from diagnostic functions will not see
1821 * any frozen slabs.
1822 */
1823 spin_lock(&n->list_lock);
1824 }
1825 }
1826
1827 if (l != m) {
1828
1829 if (l == M_PARTIAL)
1830
1831 remove_partial(n, page);
1832
1833 else if (l == M_FULL)
1834
1835 remove_full(s, page);
1836
1837 if (m == M_PARTIAL) {
1838
1839 add_partial(n, page, tail);
Shaohua Li136333d2011-08-24 08:57:52 +08001840 stat(s, tail);
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001841
1842 } else if (m == M_FULL) {
1843
1844 stat(s, DEACTIVATE_FULL);
1845 add_full(s, n, page);
1846
1847 }
1848 }
1849
1850 l = m;
Christoph Lameter1d071712011-07-14 12:49:12 -05001851 if (!__cmpxchg_double_slab(s, page,
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001852 old.freelist, old.counters,
1853 new.freelist, new.counters,
1854 "unfreezing slab"))
1855 goto redo;
1856
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001857 if (lock)
1858 spin_unlock(&n->list_lock);
1859
1860 if (m == M_FREE) {
1861 stat(s, DEACTIVATE_EMPTY);
1862 discard_slab(s, page);
1863 stat(s, FREE_SLAB);
1864 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001865}
1866
Christoph Lameter49e22582011-08-09 16:12:27 -05001867/* Unfreeze all the cpu partial slabs */
1868static void unfreeze_partials(struct kmem_cache *s)
1869{
1870 struct kmem_cache_node *n = NULL;
1871 struct kmem_cache_cpu *c = this_cpu_ptr(s->cpu_slab);
Shaohua Li9ada1932011-11-14 13:34:13 +08001872 struct page *page, *discard_page = NULL;
Christoph Lameter49e22582011-08-09 16:12:27 -05001873
1874 while ((page = c->partial)) {
1875 enum slab_modes { M_PARTIAL, M_FREE };
1876 enum slab_modes l, m;
1877 struct page new;
1878 struct page old;
1879
1880 c->partial = page->next;
1881 l = M_FREE;
1882
1883 do {
1884
1885 old.freelist = page->freelist;
1886 old.counters = page->counters;
1887 VM_BUG_ON(!old.frozen);
1888
1889 new.counters = old.counters;
1890 new.freelist = old.freelist;
1891
1892 new.frozen = 0;
1893
Alex Shidcc3be62011-09-06 14:46:01 +08001894 if (!new.inuse && (!n || n->nr_partial > s->min_partial))
Christoph Lameter49e22582011-08-09 16:12:27 -05001895 m = M_FREE;
1896 else {
1897 struct kmem_cache_node *n2 = get_node(s,
1898 page_to_nid(page));
1899
1900 m = M_PARTIAL;
1901 if (n != n2) {
1902 if (n)
1903 spin_unlock(&n->list_lock);
1904
1905 n = n2;
1906 spin_lock(&n->list_lock);
1907 }
1908 }
1909
1910 if (l != m) {
Shaohua Li4c493a52011-11-11 14:54:14 +08001911 if (l == M_PARTIAL) {
Christoph Lameter49e22582011-08-09 16:12:27 -05001912 remove_partial(n, page);
Shaohua Li4c493a52011-11-11 14:54:14 +08001913 stat(s, FREE_REMOVE_PARTIAL);
1914 } else {
Shaohua Lif64ae0422011-11-11 08:33:48 +08001915 add_partial(n, page,
1916 DEACTIVATE_TO_TAIL);
Shaohua Li4c493a52011-11-11 14:54:14 +08001917 stat(s, FREE_ADD_PARTIAL);
1918 }
Christoph Lameter49e22582011-08-09 16:12:27 -05001919
1920 l = m;
1921 }
1922
1923 } while (!cmpxchg_double_slab(s, page,
1924 old.freelist, old.counters,
1925 new.freelist, new.counters,
1926 "unfreezing slab"));
1927
1928 if (m == M_FREE) {
Shaohua Li9ada1932011-11-14 13:34:13 +08001929 page->next = discard_page;
1930 discard_page = page;
Christoph Lameter49e22582011-08-09 16:12:27 -05001931 }
1932 }
1933
1934 if (n)
1935 spin_unlock(&n->list_lock);
Shaohua Li9ada1932011-11-14 13:34:13 +08001936
1937 while (discard_page) {
1938 page = discard_page;
1939 discard_page = discard_page->next;
1940
1941 stat(s, DEACTIVATE_EMPTY);
1942 discard_slab(s, page);
1943 stat(s, FREE_SLAB);
1944 }
Christoph Lameter49e22582011-08-09 16:12:27 -05001945}
1946
1947/*
1948 * Put a page that was just frozen (in __slab_free) into a partial page
1949 * slot if available. This is done without interrupts disabled and without
1950 * preemption disabled. The cmpxchg is racy and may put the partial page
1951 * onto a random cpus partial slot.
1952 *
1953 * If we did not find a slot then simply move all the partials to the
1954 * per node partial list.
1955 */
1956int put_cpu_partial(struct kmem_cache *s, struct page *page, int drain)
1957{
1958 struct page *oldpage;
1959 int pages;
1960 int pobjects;
1961
1962 do {
1963 pages = 0;
1964 pobjects = 0;
1965 oldpage = this_cpu_read(s->cpu_slab->partial);
1966
1967 if (oldpage) {
1968 pobjects = oldpage->pobjects;
1969 pages = oldpage->pages;
1970 if (drain && pobjects > s->cpu_partial) {
1971 unsigned long flags;
1972 /*
1973 * partial array is full. Move the existing
1974 * set to the per node partial list.
1975 */
1976 local_irq_save(flags);
1977 unfreeze_partials(s);
1978 local_irq_restore(flags);
1979 pobjects = 0;
1980 pages = 0;
1981 }
1982 }
1983
1984 pages++;
1985 pobjects += page->objects - page->inuse;
1986
1987 page->pages = pages;
1988 page->pobjects = pobjects;
1989 page->next = oldpage;
1990
Christoph Lameter933393f2011-12-22 11:58:51 -06001991 } while (this_cpu_cmpxchg(s->cpu_slab->partial, oldpage, page) != oldpage);
Christoph Lameter49e22582011-08-09 16:12:27 -05001992 stat(s, CPU_PARTIAL_FREE);
1993 return pobjects;
1994}
1995
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001996static inline void flush_slab(struct kmem_cache *s, struct kmem_cache_cpu *c)
Christoph Lameter81819f02007-05-06 14:49:36 -07001997{
Christoph Lameter84e554e62009-12-18 16:26:23 -06001998 stat(s, CPUSLAB_FLUSH);
Christoph Lameterdfb4f092007-10-16 01:26:05 -07001999 deactivate_slab(s, c);
Christoph Lameter81819f02007-05-06 14:49:36 -07002000}
2001
2002/*
2003 * Flush cpu slab.
Christoph Lameter6446faa2008-02-15 23:45:26 -08002004 *
Christoph Lameter81819f02007-05-06 14:49:36 -07002005 * Called from IPI handler with interrupts disabled.
2006 */
Christoph Lameter0c710012007-07-17 04:03:24 -07002007static inline void __flush_cpu_slab(struct kmem_cache *s, int cpu)
Christoph Lameter81819f02007-05-06 14:49:36 -07002008{
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06002009 struct kmem_cache_cpu *c = per_cpu_ptr(s->cpu_slab, cpu);
Christoph Lameter81819f02007-05-06 14:49:36 -07002010
Christoph Lameter49e22582011-08-09 16:12:27 -05002011 if (likely(c)) {
2012 if (c->page)
2013 flush_slab(s, c);
2014
2015 unfreeze_partials(s);
2016 }
Christoph Lameter81819f02007-05-06 14:49:36 -07002017}
2018
2019static void flush_cpu_slab(void *d)
2020{
2021 struct kmem_cache *s = d;
Christoph Lameter81819f02007-05-06 14:49:36 -07002022
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002023 __flush_cpu_slab(s, smp_processor_id());
Christoph Lameter81819f02007-05-06 14:49:36 -07002024}
2025
2026static void flush_all(struct kmem_cache *s)
2027{
Jens Axboe15c8b6c2008-05-09 09:39:44 +02002028 on_each_cpu(flush_cpu_slab, s, 1);
Christoph Lameter81819f02007-05-06 14:49:36 -07002029}
2030
2031/*
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002032 * Check if the objects in a per cpu structure fit numa
2033 * locality expectations.
2034 */
2035static inline int node_match(struct kmem_cache_cpu *c, int node)
2036{
2037#ifdef CONFIG_NUMA
Christoph Lameter2154a332010-07-09 14:07:10 -05002038 if (node != NUMA_NO_NODE && c->node != node)
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002039 return 0;
2040#endif
2041 return 1;
2042}
2043
Pekka Enberg781b2ba2009-06-10 18:50:32 +03002044static int count_free(struct page *page)
2045{
2046 return page->objects - page->inuse;
2047}
2048
2049static unsigned long count_partial(struct kmem_cache_node *n,
2050 int (*get_count)(struct page *))
2051{
2052 unsigned long flags;
2053 unsigned long x = 0;
2054 struct page *page;
2055
2056 spin_lock_irqsave(&n->list_lock, flags);
2057 list_for_each_entry(page, &n->partial, lru)
2058 x += get_count(page);
2059 spin_unlock_irqrestore(&n->list_lock, flags);
2060 return x;
2061}
2062
Alexander Beregalov26c02cf2009-06-11 14:08:48 +04002063static inline unsigned long node_nr_objs(struct kmem_cache_node *n)
2064{
2065#ifdef CONFIG_SLUB_DEBUG
2066 return atomic_long_read(&n->total_objects);
2067#else
2068 return 0;
2069#endif
2070}
2071
Pekka Enberg781b2ba2009-06-10 18:50:32 +03002072static noinline void
2073slab_out_of_memory(struct kmem_cache *s, gfp_t gfpflags, int nid)
2074{
2075 int node;
2076
2077 printk(KERN_WARNING
2078 "SLUB: Unable to allocate memory on node %d (gfp=0x%x)\n",
2079 nid, gfpflags);
2080 printk(KERN_WARNING " cache: %s, object size: %d, buffer size: %d, "
2081 "default order: %d, min order: %d\n", s->name, s->objsize,
2082 s->size, oo_order(s->oo), oo_order(s->min));
2083
David Rientjesfa5ec8a2009-07-07 00:14:14 -07002084 if (oo_order(s->min) > get_order(s->objsize))
2085 printk(KERN_WARNING " %s debugging increased min order, use "
2086 "slub_debug=O to disable.\n", s->name);
2087
Pekka Enberg781b2ba2009-06-10 18:50:32 +03002088 for_each_online_node(node) {
2089 struct kmem_cache_node *n = get_node(s, node);
2090 unsigned long nr_slabs;
2091 unsigned long nr_objs;
2092 unsigned long nr_free;
2093
2094 if (!n)
2095 continue;
2096
Alexander Beregalov26c02cf2009-06-11 14:08:48 +04002097 nr_free = count_partial(n, count_free);
2098 nr_slabs = node_nr_slabs(n);
2099 nr_objs = node_nr_objs(n);
Pekka Enberg781b2ba2009-06-10 18:50:32 +03002100
2101 printk(KERN_WARNING
2102 " node %d: slabs: %ld, objs: %ld, free: %ld\n",
2103 node, nr_slabs, nr_objs, nr_free);
2104 }
2105}
2106
Christoph Lameter497b66f2011-08-09 16:12:26 -05002107static inline void *new_slab_objects(struct kmem_cache *s, gfp_t flags,
2108 int node, struct kmem_cache_cpu **pc)
2109{
2110 void *object;
2111 struct kmem_cache_cpu *c;
2112 struct page *page = new_slab(s, flags, node);
2113
2114 if (page) {
2115 c = __this_cpu_ptr(s->cpu_slab);
2116 if (c->page)
2117 flush_slab(s, c);
2118
2119 /*
2120 * No other reference to the page yet so we can
2121 * muck around with it freely without cmpxchg
2122 */
2123 object = page->freelist;
2124 page->freelist = NULL;
2125
2126 stat(s, ALLOC_SLAB);
2127 c->node = page_to_nid(page);
2128 c->page = page;
2129 *pc = c;
2130 } else
2131 object = NULL;
2132
2133 return object;
2134}
2135
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002136/*
Christoph Lameter213eeb92011-11-11 14:07:14 -06002137 * Check the page->freelist of a page and either transfer the freelist to the per cpu freelist
2138 * or deactivate the page.
2139 *
2140 * The page is still frozen if the return value is not NULL.
2141 *
2142 * If this function returns NULL then the page has been unfrozen.
2143 */
2144static inline void *get_freelist(struct kmem_cache *s, struct page *page)
2145{
2146 struct page new;
2147 unsigned long counters;
2148 void *freelist;
2149
2150 do {
2151 freelist = page->freelist;
2152 counters = page->counters;
2153 new.counters = counters;
2154 VM_BUG_ON(!new.frozen);
2155
2156 new.inuse = page->objects;
2157 new.frozen = freelist != NULL;
2158
2159 } while (!cmpxchg_double_slab(s, page,
2160 freelist, counters,
2161 NULL, new.counters,
2162 "get_freelist"));
2163
2164 return freelist;
2165}
2166
2167/*
Christoph Lameter894b8782007-05-10 03:15:16 -07002168 * Slow path. The lockless freelist is empty or we need to perform
2169 * debugging duties.
Christoph Lameter81819f02007-05-06 14:49:36 -07002170 *
Christoph Lameter894b8782007-05-10 03:15:16 -07002171 * Processing is still very fast if new objects have been freed to the
2172 * regular freelist. In that case we simply take over the regular freelist
2173 * as the lockless freelist and zap the regular freelist.
Christoph Lameter81819f02007-05-06 14:49:36 -07002174 *
Christoph Lameter894b8782007-05-10 03:15:16 -07002175 * If that is not working then we fall back to the partial lists. We take the
2176 * first element of the freelist as the object to allocate now and move the
2177 * rest of the freelist to the lockless freelist.
2178 *
2179 * And if we were unable to get a new slab from the partial slab lists then
Christoph Lameter6446faa2008-02-15 23:45:26 -08002180 * we need to allocate a new slab. This is the slowest path since it involves
2181 * a call to the page allocator and the setup of a new slab.
Christoph Lameter81819f02007-05-06 14:49:36 -07002182 */
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03002183static void *__slab_alloc(struct kmem_cache *s, gfp_t gfpflags, int node,
2184 unsigned long addr, struct kmem_cache_cpu *c)
Christoph Lameter81819f02007-05-06 14:49:36 -07002185{
Christoph Lameter81819f02007-05-06 14:49:36 -07002186 void **object;
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002187 unsigned long flags;
2188
2189 local_irq_save(flags);
2190#ifdef CONFIG_PREEMPT
2191 /*
2192 * We may have been preempted and rescheduled on a different
2193 * cpu before disabling interrupts. Need to reload cpu area
2194 * pointer.
2195 */
2196 c = this_cpu_ptr(s->cpu_slab);
2197#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07002198
Christoph Lameter497b66f2011-08-09 16:12:26 -05002199 if (!c->page)
Christoph Lameter81819f02007-05-06 14:49:36 -07002200 goto new_slab;
Christoph Lameter49e22582011-08-09 16:12:27 -05002201redo:
Christoph Lameterfc59c052011-06-01 12:25:56 -05002202 if (unlikely(!node_match(c, node))) {
Christoph Lametere36a2652011-06-01 12:25:57 -05002203 stat(s, ALLOC_NODE_MISMATCH);
Christoph Lameterfc59c052011-06-01 12:25:56 -05002204 deactivate_slab(s, c);
2205 goto new_slab;
2206 }
Christoph Lameter6446faa2008-02-15 23:45:26 -08002207
Eric Dumazet73736e02011-12-13 04:57:06 +01002208 /* must check again c->freelist in case of cpu migration or IRQ */
2209 object = c->freelist;
2210 if (object)
2211 goto load_freelist;
2212
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002213 stat(s, ALLOC_SLOWPATH);
2214
Christoph Lameter213eeb92011-11-11 14:07:14 -06002215 object = get_freelist(s, c->page);
Christoph Lameter6446faa2008-02-15 23:45:26 -08002216
Christoph Lameter49e22582011-08-09 16:12:27 -05002217 if (!object) {
Christoph Lameter03e404a2011-06-01 12:25:58 -05002218 c->page = NULL;
2219 stat(s, DEACTIVATE_BYPASS);
Christoph Lameterfc59c052011-06-01 12:25:56 -05002220 goto new_slab;
Christoph Lameter03e404a2011-06-01 12:25:58 -05002221 }
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002222
Christoph Lameter81819f02007-05-06 14:49:36 -07002223 stat(s, ALLOC_REFILL);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08002224
Christoph Lameter894b8782007-05-10 03:15:16 -07002225load_freelist:
Christoph Lameterff120592009-12-18 16:26:22 -06002226 c->freelist = get_freepointer(s, object);
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002227 c->tid = next_tid(c->tid);
2228 local_irq_restore(flags);
Christoph Lameter81819f02007-05-06 14:49:36 -07002229 return object;
2230
Christoph Lameter81819f02007-05-06 14:49:36 -07002231new_slab:
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002232
Christoph Lameter49e22582011-08-09 16:12:27 -05002233 if (c->partial) {
2234 c->page = c->partial;
2235 c->partial = c->page->next;
2236 c->node = page_to_nid(c->page);
2237 stat(s, CPU_PARTIAL_ALLOC);
2238 c->freelist = NULL;
2239 goto redo;
Christoph Lameter81819f02007-05-06 14:49:36 -07002240 }
2241
Christoph Lameter49e22582011-08-09 16:12:27 -05002242 /* Then do expensive stuff like retrieving pages from the partial lists */
Christoph Lameter497b66f2011-08-09 16:12:26 -05002243 object = get_partial(s, gfpflags, node, c);
Christoph Lameterb811c202007-10-16 23:25:51 -07002244
Christoph Lameter497b66f2011-08-09 16:12:26 -05002245 if (unlikely(!object)) {
Christoph Lameter01ad8a72011-04-15 14:48:14 -05002246
Christoph Lameter497b66f2011-08-09 16:12:26 -05002247 object = new_slab_objects(s, gfpflags, node, &c);
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002248
Christoph Lameter497b66f2011-08-09 16:12:26 -05002249 if (unlikely(!object)) {
2250 if (!(gfpflags & __GFP_NOWARN) && printk_ratelimit())
2251 slab_out_of_memory(s, gfpflags, node);
Christoph Lameter9e577e82011-07-22 09:35:14 -05002252
Christoph Lameter497b66f2011-08-09 16:12:26 -05002253 local_irq_restore(flags);
2254 return NULL;
2255 }
Christoph Lameter81819f02007-05-06 14:49:36 -07002256 }
Christoph Lameter894b8782007-05-10 03:15:16 -07002257
Christoph Lameter497b66f2011-08-09 16:12:26 -05002258 if (likely(!kmem_cache_debug(s)))
Christoph Lameter81819f02007-05-06 14:49:36 -07002259 goto load_freelist;
Christoph Lameter894b8782007-05-10 03:15:16 -07002260
Christoph Lameter497b66f2011-08-09 16:12:26 -05002261 /* Only entered in the debug case */
2262 if (!alloc_debug_processing(s, c->page, object, addr))
2263 goto new_slab; /* Slab failed checks. Next slab needed */
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002264
2265 c->freelist = get_freepointer(s, object);
Christoph Lameter442b06b2011-05-17 16:29:31 -05002266 deactivate_slab(s, c);
Pekka Enberg15b7c512010-10-02 11:32:32 +03002267 c->node = NUMA_NO_NODE;
Christoph Lametera71ae472011-05-25 09:47:43 -05002268 local_irq_restore(flags);
2269 return object;
Christoph Lameter894b8782007-05-10 03:15:16 -07002270}
2271
2272/*
2273 * Inlined fastpath so that allocation functions (kmalloc, kmem_cache_alloc)
2274 * have the fastpath folded into their functions. So no function call
2275 * overhead for requests that can be satisfied on the fastpath.
2276 *
2277 * The fastpath works by first checking if the lockless freelist can be used.
2278 * If not then __slab_alloc is called for slow processing.
2279 *
2280 * Otherwise we can simply pick the next object from the lockless free list.
2281 */
Pekka Enberg06428782008-01-07 23:20:27 -08002282static __always_inline void *slab_alloc(struct kmem_cache *s,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03002283 gfp_t gfpflags, int node, unsigned long addr)
Christoph Lameter894b8782007-05-10 03:15:16 -07002284{
Christoph Lameter894b8782007-05-10 03:15:16 -07002285 void **object;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002286 struct kmem_cache_cpu *c;
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002287 unsigned long tid;
Christoph Lameter1f842602008-01-07 23:20:30 -08002288
Christoph Lameterc016b0b2010-08-20 12:37:16 -05002289 if (slab_pre_alloc_hook(s, gfpflags))
Akinobu Mita773ff602008-12-23 19:37:01 +09002290 return NULL;
2291
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002292redo:
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002293
2294 /*
2295 * Must read kmem_cache cpu data via this cpu ptr. Preemption is
2296 * enabled. We may switch back and forth between cpus while
2297 * reading from one cpu area. That does not matter as long
2298 * as we end up on the original cpu again when doing the cmpxchg.
2299 */
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06002300 c = __this_cpu_ptr(s->cpu_slab);
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002301
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002302 /*
2303 * The transaction ids are globally unique per cpu and per operation on
2304 * a per cpu queue. Thus they can be guarantee that the cmpxchg_double
2305 * occurs on the right processor and that there was no operation on the
2306 * linked list in between.
2307 */
2308 tid = c->tid;
2309 barrier();
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002310
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06002311 object = c->freelist;
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06002312 if (unlikely(!object || !node_match(c, node)))
Christoph Lameter894b8782007-05-10 03:15:16 -07002313
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002314 object = __slab_alloc(s, gfpflags, node, addr, c);
Christoph Lameter894b8782007-05-10 03:15:16 -07002315
2316 else {
Eric Dumazet0ad95002011-12-16 16:25:34 +01002317 void *next_object = get_freepointer_safe(s, object);
2318
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002319 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002320 * The cmpxchg will only match if there was no additional
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002321 * operation and if we are on the right processor.
2322 *
2323 * The cmpxchg does the following atomically (without lock semantics!)
2324 * 1. Relocate first pointer to the current per cpu area.
2325 * 2. Verify that tid and freelist have not been changed
2326 * 3. If they were not changed replace tid and freelist
2327 *
2328 * Since this is without lock semantics the protection is only against
2329 * code executing on this cpu *not* from access by other cpus.
2330 */
Christoph Lameter933393f2011-12-22 11:58:51 -06002331 if (unlikely(!this_cpu_cmpxchg_double(
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002332 s->cpu_slab->freelist, s->cpu_slab->tid,
2333 object, tid,
Eric Dumazet0ad95002011-12-16 16:25:34 +01002334 next_object, next_tid(tid)))) {
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002335
2336 note_cmpxchg_failure("slab_alloc", s, tid);
2337 goto redo;
2338 }
Eric Dumazet0ad95002011-12-16 16:25:34 +01002339 prefetch_freepointer(s, next_object);
Christoph Lameter84e554e62009-12-18 16:26:23 -06002340 stat(s, ALLOC_FASTPATH);
Christoph Lameter894b8782007-05-10 03:15:16 -07002341 }
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002342
Pekka Enberg74e21342009-11-25 20:14:48 +02002343 if (unlikely(gfpflags & __GFP_ZERO) && object)
Christoph Lameterff120592009-12-18 16:26:22 -06002344 memset(object, 0, s->objsize);
Christoph Lameterd07dbea2007-07-17 04:03:23 -07002345
Christoph Lameterc016b0b2010-08-20 12:37:16 -05002346 slab_post_alloc_hook(s, gfpflags, object);
Vegard Nossum5a896d92008-04-04 00:54:48 +02002347
Christoph Lameter894b8782007-05-10 03:15:16 -07002348 return object;
Christoph Lameter81819f02007-05-06 14:49:36 -07002349}
2350
2351void *kmem_cache_alloc(struct kmem_cache *s, gfp_t gfpflags)
2352{
Christoph Lameter2154a332010-07-09 14:07:10 -05002353 void *ret = slab_alloc(s, gfpflags, NUMA_NO_NODE, _RET_IP_);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002354
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02002355 trace_kmem_cache_alloc(_RET_IP_, ret, s->objsize, s->size, gfpflags);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002356
2357 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07002358}
2359EXPORT_SYMBOL(kmem_cache_alloc);
2360
Li Zefan0f24f122009-12-11 15:45:30 +08002361#ifdef CONFIG_TRACING
Richard Kennedy4a923792010-10-21 10:29:19 +01002362void *kmem_cache_alloc_trace(struct kmem_cache *s, gfp_t gfpflags, size_t size)
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002363{
Richard Kennedy4a923792010-10-21 10:29:19 +01002364 void *ret = slab_alloc(s, gfpflags, NUMA_NO_NODE, _RET_IP_);
2365 trace_kmalloc(_RET_IP_, ret, size, s->size, gfpflags);
2366 return ret;
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002367}
Richard Kennedy4a923792010-10-21 10:29:19 +01002368EXPORT_SYMBOL(kmem_cache_alloc_trace);
2369
2370void *kmalloc_order_trace(size_t size, gfp_t flags, unsigned int order)
2371{
2372 void *ret = kmalloc_order(size, flags, order);
2373 trace_kmalloc(_RET_IP_, ret, size, PAGE_SIZE << order, flags);
2374 return ret;
2375}
2376EXPORT_SYMBOL(kmalloc_order_trace);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002377#endif
2378
Christoph Lameter81819f02007-05-06 14:49:36 -07002379#ifdef CONFIG_NUMA
2380void *kmem_cache_alloc_node(struct kmem_cache *s, gfp_t gfpflags, int node)
2381{
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002382 void *ret = slab_alloc(s, gfpflags, node, _RET_IP_);
2383
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02002384 trace_kmem_cache_alloc_node(_RET_IP_, ret,
2385 s->objsize, s->size, gfpflags, node);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002386
2387 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07002388}
2389EXPORT_SYMBOL(kmem_cache_alloc_node);
Christoph Lameter81819f02007-05-06 14:49:36 -07002390
Li Zefan0f24f122009-12-11 15:45:30 +08002391#ifdef CONFIG_TRACING
Richard Kennedy4a923792010-10-21 10:29:19 +01002392void *kmem_cache_alloc_node_trace(struct kmem_cache *s,
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002393 gfp_t gfpflags,
Richard Kennedy4a923792010-10-21 10:29:19 +01002394 int node, size_t size)
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002395{
Richard Kennedy4a923792010-10-21 10:29:19 +01002396 void *ret = slab_alloc(s, gfpflags, node, _RET_IP_);
2397
2398 trace_kmalloc_node(_RET_IP_, ret,
2399 size, s->size, gfpflags, node);
2400 return ret;
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002401}
Richard Kennedy4a923792010-10-21 10:29:19 +01002402EXPORT_SYMBOL(kmem_cache_alloc_node_trace);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002403#endif
Namhyung Kim5d1f57e2010-09-29 21:02:15 +09002404#endif
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002405
Christoph Lameter81819f02007-05-06 14:49:36 -07002406/*
Christoph Lameter894b8782007-05-10 03:15:16 -07002407 * Slow patch handling. This may still be called frequently since objects
2408 * have a longer lifetime than the cpu slabs in most processing loads.
Christoph Lameter81819f02007-05-06 14:49:36 -07002409 *
Christoph Lameter894b8782007-05-10 03:15:16 -07002410 * So we still attempt to reduce cache line usage. Just take the slab
2411 * lock and free the item. If there is no additional partial page
2412 * handling required then we can return immediately.
Christoph Lameter81819f02007-05-06 14:49:36 -07002413 */
Christoph Lameter894b8782007-05-10 03:15:16 -07002414static void __slab_free(struct kmem_cache *s, struct page *page,
Christoph Lameterff120592009-12-18 16:26:22 -06002415 void *x, unsigned long addr)
Christoph Lameter81819f02007-05-06 14:49:36 -07002416{
2417 void *prior;
2418 void **object = (void *)x;
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002419 int was_frozen;
2420 int inuse;
2421 struct page new;
2422 unsigned long counters;
2423 struct kmem_cache_node *n = NULL;
Christoph Lameter61728d12011-06-01 12:25:51 -05002424 unsigned long uninitialized_var(flags);
Christoph Lameter81819f02007-05-06 14:49:36 -07002425
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002426 stat(s, FREE_SLOWPATH);
Christoph Lameter81819f02007-05-06 14:49:36 -07002427
Christoph Lameter8dc16c62011-04-15 14:48:16 -05002428 if (kmem_cache_debug(s) && !free_debug_processing(s, page, x, addr))
Christoph Lameter80f08c12011-06-01 12:25:55 -05002429 return;
Christoph Lameter6446faa2008-02-15 23:45:26 -08002430
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002431 do {
2432 prior = page->freelist;
2433 counters = page->counters;
2434 set_freepointer(s, object, prior);
2435 new.counters = counters;
2436 was_frozen = new.frozen;
2437 new.inuse--;
2438 if ((!new.inuse || !prior) && !was_frozen && !n) {
Christoph Lameter49e22582011-08-09 16:12:27 -05002439
2440 if (!kmem_cache_debug(s) && !prior)
2441
2442 /*
2443 * Slab was on no list before and will be partially empty
2444 * We can defer the list move and instead freeze it.
2445 */
2446 new.frozen = 1;
2447
2448 else { /* Needs to be taken off a list */
2449
2450 n = get_node(s, page_to_nid(page));
2451 /*
2452 * Speculatively acquire the list_lock.
2453 * If the cmpxchg does not succeed then we may
2454 * drop the list_lock without any processing.
2455 *
2456 * Otherwise the list_lock will synchronize with
2457 * other processors updating the list of slabs.
2458 */
2459 spin_lock_irqsave(&n->list_lock, flags);
2460
2461 }
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002462 }
2463 inuse = new.inuse;
Christoph Lameter81819f02007-05-06 14:49:36 -07002464
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002465 } while (!cmpxchg_double_slab(s, page,
2466 prior, counters,
2467 object, new.counters,
2468 "__slab_free"));
Christoph Lameter81819f02007-05-06 14:49:36 -07002469
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002470 if (likely(!n)) {
Christoph Lameter49e22582011-08-09 16:12:27 -05002471
2472 /*
2473 * If we just froze the page then put it onto the
2474 * per cpu partial list.
2475 */
2476 if (new.frozen && !was_frozen)
2477 put_cpu_partial(s, page, 1);
2478
2479 /*
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002480 * The list lock was not taken therefore no list
2481 * activity can be necessary.
2482 */
2483 if (was_frozen)
2484 stat(s, FREE_FROZEN);
Christoph Lameter80f08c12011-06-01 12:25:55 -05002485 return;
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002486 }
Christoph Lameter81819f02007-05-06 14:49:36 -07002487
2488 /*
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002489 * was_frozen may have been set after we acquired the list_lock in
2490 * an earlier loop. So we need to check it here again.
Christoph Lameter81819f02007-05-06 14:49:36 -07002491 */
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002492 if (was_frozen)
2493 stat(s, FREE_FROZEN);
2494 else {
2495 if (unlikely(!inuse && n->nr_partial > s->min_partial))
2496 goto slab_empty;
Christoph Lameter81819f02007-05-06 14:49:36 -07002497
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002498 /*
2499 * Objects left in the slab. If it was not on the partial list before
2500 * then add it.
2501 */
2502 if (unlikely(!prior)) {
2503 remove_full(s, page);
Shaohua Li136333d2011-08-24 08:57:52 +08002504 add_partial(n, page, DEACTIVATE_TO_TAIL);
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002505 stat(s, FREE_ADD_PARTIAL);
2506 }
Christoph Lameter81819f02007-05-06 14:49:36 -07002507 }
Christoph Lameter80f08c12011-06-01 12:25:55 -05002508 spin_unlock_irqrestore(&n->list_lock, flags);
Christoph Lameter81819f02007-05-06 14:49:36 -07002509 return;
2510
2511slab_empty:
Christoph Lametera973e9d2008-03-01 13:40:44 -08002512 if (prior) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002513 /*
Christoph Lameter6fbabb22011-08-08 11:16:56 -05002514 * Slab on the partial list.
Christoph Lameter81819f02007-05-06 14:49:36 -07002515 */
Christoph Lameter5cc6eee2011-06-01 12:25:50 -05002516 remove_partial(n, page);
Christoph Lameter84e554e62009-12-18 16:26:23 -06002517 stat(s, FREE_REMOVE_PARTIAL);
Christoph Lameter6fbabb22011-08-08 11:16:56 -05002518 } else
2519 /* Slab must be on the full list */
2520 remove_full(s, page);
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002521
Christoph Lameter80f08c12011-06-01 12:25:55 -05002522 spin_unlock_irqrestore(&n->list_lock, flags);
Christoph Lameter84e554e62009-12-18 16:26:23 -06002523 stat(s, FREE_SLAB);
Christoph Lameter81819f02007-05-06 14:49:36 -07002524 discard_slab(s, page);
Christoph Lameter81819f02007-05-06 14:49:36 -07002525}
2526
Christoph Lameter894b8782007-05-10 03:15:16 -07002527/*
2528 * Fastpath with forced inlining to produce a kfree and kmem_cache_free that
2529 * can perform fastpath freeing without additional function calls.
2530 *
2531 * The fastpath is only possible if we are freeing to the current cpu slab
2532 * of this processor. This typically the case if we have just allocated
2533 * the item before.
2534 *
2535 * If fastpath is not possible then fall back to __slab_free where we deal
2536 * with all sorts of special processing.
2537 */
Pekka Enberg06428782008-01-07 23:20:27 -08002538static __always_inline void slab_free(struct kmem_cache *s,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03002539 struct page *page, void *x, unsigned long addr)
Christoph Lameter894b8782007-05-10 03:15:16 -07002540{
2541 void **object = (void *)x;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002542 struct kmem_cache_cpu *c;
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002543 unsigned long tid;
Christoph Lameter1f842602008-01-07 23:20:30 -08002544
Christoph Lameterc016b0b2010-08-20 12:37:16 -05002545 slab_free_hook(s, x);
2546
Christoph Lametera24c5a02011-03-15 12:45:21 -05002547redo:
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002548 /*
2549 * Determine the currently cpus per cpu slab.
2550 * The cpu may change afterward. However that does not matter since
2551 * data is retrieved via this pointer. If we are on the same cpu
2552 * during the cmpxchg then the free will succedd.
2553 */
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06002554 c = __this_cpu_ptr(s->cpu_slab);
Christoph Lameterc016b0b2010-08-20 12:37:16 -05002555
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002556 tid = c->tid;
2557 barrier();
Christoph Lameterc016b0b2010-08-20 12:37:16 -05002558
Christoph Lameter442b06b2011-05-17 16:29:31 -05002559 if (likely(page == c->page)) {
Christoph Lameterff120592009-12-18 16:26:22 -06002560 set_freepointer(s, object, c->freelist);
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002561
Christoph Lameter933393f2011-12-22 11:58:51 -06002562 if (unlikely(!this_cpu_cmpxchg_double(
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002563 s->cpu_slab->freelist, s->cpu_slab->tid,
2564 c->freelist, tid,
2565 object, next_tid(tid)))) {
2566
2567 note_cmpxchg_failure("slab_free", s, tid);
2568 goto redo;
2569 }
Christoph Lameter84e554e62009-12-18 16:26:23 -06002570 stat(s, FREE_FASTPATH);
Christoph Lameter894b8782007-05-10 03:15:16 -07002571 } else
Christoph Lameterff120592009-12-18 16:26:22 -06002572 __slab_free(s, page, x, addr);
Christoph Lameter894b8782007-05-10 03:15:16 -07002573
Christoph Lameter894b8782007-05-10 03:15:16 -07002574}
2575
Christoph Lameter81819f02007-05-06 14:49:36 -07002576void kmem_cache_free(struct kmem_cache *s, void *x)
2577{
Christoph Lameter77c5e2d2007-05-06 14:49:42 -07002578 struct page *page;
Christoph Lameter81819f02007-05-06 14:49:36 -07002579
Christoph Lameterb49af682007-05-06 14:49:41 -07002580 page = virt_to_head_page(x);
Christoph Lameter81819f02007-05-06 14:49:36 -07002581
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03002582 slab_free(s, page, x, _RET_IP_);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002583
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02002584 trace_kmem_cache_free(_RET_IP_, x);
Christoph Lameter81819f02007-05-06 14:49:36 -07002585}
2586EXPORT_SYMBOL(kmem_cache_free);
2587
Christoph Lameter81819f02007-05-06 14:49:36 -07002588/*
Christoph Lameter672bba32007-05-09 02:32:39 -07002589 * Object placement in a slab is made very easy because we always start at
2590 * offset 0. If we tune the size of the object to the alignment then we can
2591 * get the required alignment by putting one properly sized object after
2592 * another.
Christoph Lameter81819f02007-05-06 14:49:36 -07002593 *
2594 * Notice that the allocation order determines the sizes of the per cpu
2595 * caches. Each processor has always one slab available for allocations.
2596 * Increasing the allocation order reduces the number of times that slabs
Christoph Lameter672bba32007-05-09 02:32:39 -07002597 * must be moved on and off the partial lists and is therefore a factor in
Christoph Lameter81819f02007-05-06 14:49:36 -07002598 * locking overhead.
Christoph Lameter81819f02007-05-06 14:49:36 -07002599 */
2600
2601/*
2602 * Mininum / Maximum order of slab pages. This influences locking overhead
2603 * and slab fragmentation. A higher order reduces the number of partial slabs
2604 * and increases the number of allocations possible without having to
2605 * take the list_lock.
2606 */
2607static int slub_min_order;
Christoph Lameter114e9e82008-04-14 19:11:41 +03002608static int slub_max_order = PAGE_ALLOC_COSTLY_ORDER;
Christoph Lameter9b2cd502008-04-14 19:11:41 +03002609static int slub_min_objects;
Christoph Lameter81819f02007-05-06 14:49:36 -07002610
2611/*
2612 * Merge control. If this is set then no merging of slab caches will occur.
Christoph Lameter672bba32007-05-09 02:32:39 -07002613 * (Could be removed. This was introduced to pacify the merge skeptics.)
Christoph Lameter81819f02007-05-06 14:49:36 -07002614 */
2615static int slub_nomerge;
2616
2617/*
Christoph Lameter81819f02007-05-06 14:49:36 -07002618 * Calculate the order of allocation given an slab object size.
2619 *
Christoph Lameter672bba32007-05-09 02:32:39 -07002620 * The order of allocation has significant impact on performance and other
2621 * system components. Generally order 0 allocations should be preferred since
2622 * order 0 does not cause fragmentation in the page allocator. Larger objects
2623 * be problematic to put into order 0 slabs because there may be too much
Christoph Lameterc124f5b2008-04-14 19:13:29 +03002624 * unused space left. We go to a higher order if more than 1/16th of the slab
Christoph Lameter672bba32007-05-09 02:32:39 -07002625 * would be wasted.
Christoph Lameter81819f02007-05-06 14:49:36 -07002626 *
Christoph Lameter672bba32007-05-09 02:32:39 -07002627 * In order to reach satisfactory performance we must ensure that a minimum
2628 * number of objects is in one slab. Otherwise we may generate too much
2629 * activity on the partial lists which requires taking the list_lock. This is
2630 * less a concern for large slabs though which are rarely used.
Christoph Lameter81819f02007-05-06 14:49:36 -07002631 *
Christoph Lameter672bba32007-05-09 02:32:39 -07002632 * slub_max_order specifies the order where we begin to stop considering the
2633 * number of objects in a slab as critical. If we reach slub_max_order then
2634 * we try to keep the page order as low as possible. So we accept more waste
2635 * of space in favor of a small page order.
2636 *
2637 * Higher order allocations also allow the placement of more objects in a
2638 * slab and thereby reduce object handling overhead. If the user has
2639 * requested a higher mininum order then we start with that one instead of
2640 * the smallest order which will fit the object.
Christoph Lameter81819f02007-05-06 14:49:36 -07002641 */
Christoph Lameter5e6d4442007-05-09 02:32:46 -07002642static inline int slab_order(int size, int min_objects,
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08002643 int max_order, int fract_leftover, int reserved)
Christoph Lameter81819f02007-05-06 14:49:36 -07002644{
2645 int order;
2646 int rem;
Christoph Lameter6300ea72007-07-17 04:03:20 -07002647 int min_order = slub_min_order;
Christoph Lameter81819f02007-05-06 14:49:36 -07002648
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08002649 if (order_objects(min_order, size, reserved) > MAX_OBJS_PER_PAGE)
Cyrill Gorcunov210b5c02008-10-22 23:00:38 +04002650 return get_order(size * MAX_OBJS_PER_PAGE) - 1;
Christoph Lameter39b26462008-04-14 19:11:30 +03002651
Christoph Lameter6300ea72007-07-17 04:03:20 -07002652 for (order = max(min_order,
Christoph Lameter5e6d4442007-05-09 02:32:46 -07002653 fls(min_objects * size - 1) - PAGE_SHIFT);
2654 order <= max_order; order++) {
2655
Christoph Lameter81819f02007-05-06 14:49:36 -07002656 unsigned long slab_size = PAGE_SIZE << order;
2657
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08002658 if (slab_size < min_objects * size + reserved)
Christoph Lameter81819f02007-05-06 14:49:36 -07002659 continue;
2660
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08002661 rem = (slab_size - reserved) % size;
Christoph Lameter81819f02007-05-06 14:49:36 -07002662
Christoph Lameter5e6d4442007-05-09 02:32:46 -07002663 if (rem <= slab_size / fract_leftover)
Christoph Lameter81819f02007-05-06 14:49:36 -07002664 break;
2665
2666 }
Christoph Lameter672bba32007-05-09 02:32:39 -07002667
Christoph Lameter81819f02007-05-06 14:49:36 -07002668 return order;
2669}
2670
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08002671static inline int calculate_order(int size, int reserved)
Christoph Lameter5e6d4442007-05-09 02:32:46 -07002672{
2673 int order;
2674 int min_objects;
2675 int fraction;
Zhang Yanmine8120ff2009-02-12 18:00:17 +02002676 int max_objects;
Christoph Lameter5e6d4442007-05-09 02:32:46 -07002677
2678 /*
2679 * Attempt to find best configuration for a slab. This
2680 * works by first attempting to generate a layout with
2681 * the best configuration and backing off gradually.
2682 *
2683 * First we reduce the acceptable waste in a slab. Then
2684 * we reduce the minimum objects required in a slab.
2685 */
2686 min_objects = slub_min_objects;
Christoph Lameter9b2cd502008-04-14 19:11:41 +03002687 if (!min_objects)
2688 min_objects = 4 * (fls(nr_cpu_ids) + 1);
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08002689 max_objects = order_objects(slub_max_order, size, reserved);
Zhang Yanmine8120ff2009-02-12 18:00:17 +02002690 min_objects = min(min_objects, max_objects);
2691
Christoph Lameter5e6d4442007-05-09 02:32:46 -07002692 while (min_objects > 1) {
Christoph Lameterc124f5b2008-04-14 19:13:29 +03002693 fraction = 16;
Christoph Lameter5e6d4442007-05-09 02:32:46 -07002694 while (fraction >= 4) {
2695 order = slab_order(size, min_objects,
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08002696 slub_max_order, fraction, reserved);
Christoph Lameter5e6d4442007-05-09 02:32:46 -07002697 if (order <= slub_max_order)
2698 return order;
2699 fraction /= 2;
2700 }
Amerigo Wang5086c389c2009-08-19 21:44:13 +03002701 min_objects--;
Christoph Lameter5e6d4442007-05-09 02:32:46 -07002702 }
2703
2704 /*
2705 * We were unable to place multiple objects in a slab. Now
2706 * lets see if we can place a single object there.
2707 */
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08002708 order = slab_order(size, 1, slub_max_order, 1, reserved);
Christoph Lameter5e6d4442007-05-09 02:32:46 -07002709 if (order <= slub_max_order)
2710 return order;
2711
2712 /*
2713 * Doh this slab cannot be placed using slub_max_order.
2714 */
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08002715 order = slab_order(size, 1, MAX_ORDER, 1, reserved);
David Rientjes818cf592009-04-23 09:58:22 +03002716 if (order < MAX_ORDER)
Christoph Lameter5e6d4442007-05-09 02:32:46 -07002717 return order;
2718 return -ENOSYS;
2719}
2720
Christoph Lameter81819f02007-05-06 14:49:36 -07002721/*
Christoph Lameter672bba32007-05-09 02:32:39 -07002722 * Figure out what the alignment of the objects will be.
Christoph Lameter81819f02007-05-06 14:49:36 -07002723 */
2724static unsigned long calculate_alignment(unsigned long flags,
2725 unsigned long align, unsigned long size)
2726{
2727 /*
Christoph Lameter6446faa2008-02-15 23:45:26 -08002728 * If the user wants hardware cache aligned objects then follow that
2729 * suggestion if the object is sufficiently large.
Christoph Lameter81819f02007-05-06 14:49:36 -07002730 *
Christoph Lameter6446faa2008-02-15 23:45:26 -08002731 * The hardware cache alignment cannot override the specified
2732 * alignment though. If that is greater then use it.
Christoph Lameter81819f02007-05-06 14:49:36 -07002733 */
Nick Pigginb6210382008-03-05 14:05:56 -08002734 if (flags & SLAB_HWCACHE_ALIGN) {
2735 unsigned long ralign = cache_line_size();
2736 while (size <= ralign / 2)
2737 ralign /= 2;
2738 align = max(align, ralign);
2739 }
Christoph Lameter81819f02007-05-06 14:49:36 -07002740
2741 if (align < ARCH_SLAB_MINALIGN)
Nick Pigginb6210382008-03-05 14:05:56 -08002742 align = ARCH_SLAB_MINALIGN;
Christoph Lameter81819f02007-05-06 14:49:36 -07002743
2744 return ALIGN(align, sizeof(void *));
2745}
2746
Pekka Enberg5595cff2008-08-05 09:28:47 +03002747static void
2748init_kmem_cache_node(struct kmem_cache_node *n, struct kmem_cache *s)
Christoph Lameter81819f02007-05-06 14:49:36 -07002749{
2750 n->nr_partial = 0;
Christoph Lameter81819f02007-05-06 14:49:36 -07002751 spin_lock_init(&n->list_lock);
2752 INIT_LIST_HEAD(&n->partial);
Christoph Lameter8ab13722007-07-17 04:03:32 -07002753#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter0f389ec2008-04-14 18:53:02 +03002754 atomic_long_set(&n->nr_slabs, 0);
Salman Qazi02b71b72008-09-11 12:25:41 -07002755 atomic_long_set(&n->total_objects, 0);
Christoph Lameter643b1132007-05-06 14:49:42 -07002756 INIT_LIST_HEAD(&n->full);
Christoph Lameter8ab13722007-07-17 04:03:32 -07002757#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07002758}
2759
Christoph Lameter55136592010-08-20 12:37:13 -05002760static inline int alloc_kmem_cache_cpus(struct kmem_cache *s)
Christoph Lameter4c93c3552007-10-16 01:26:08 -07002761{
Christoph Lameter6c182dc2010-08-20 12:37:14 -05002762 BUILD_BUG_ON(PERCPU_DYNAMIC_EARLY_SIZE <
2763 SLUB_PAGE_SHIFT * sizeof(struct kmem_cache_cpu));
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06002764
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002765 /*
Chris Metcalfd4d84fe2011-06-02 10:19:41 -04002766 * Must align to double word boundary for the double cmpxchg
2767 * instructions to work; see __pcpu_double_call_return_bool().
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002768 */
Chris Metcalfd4d84fe2011-06-02 10:19:41 -04002769 s->cpu_slab = __alloc_percpu(sizeof(struct kmem_cache_cpu),
2770 2 * sizeof(void *));
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06002771
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002772 if (!s->cpu_slab)
2773 return 0;
2774
2775 init_kmem_cache_cpus(s);
2776
2777 return 1;
Christoph Lameter4c93c3552007-10-16 01:26:08 -07002778}
Christoph Lameter4c93c3552007-10-16 01:26:08 -07002779
Christoph Lameter51df1142010-08-20 12:37:15 -05002780static struct kmem_cache *kmem_cache_node;
2781
Christoph Lameter81819f02007-05-06 14:49:36 -07002782/*
2783 * No kmalloc_node yet so do it by hand. We know that this is the first
2784 * slab on the node for this slabcache. There are no concurrent accesses
2785 * possible.
2786 *
2787 * Note that this function only works on the kmalloc_node_cache
Christoph Lameter4c93c3552007-10-16 01:26:08 -07002788 * when allocating for the kmalloc_node_cache. This is used for bootstrapping
2789 * memory on a fresh node that has no slab structures yet.
Christoph Lameter81819f02007-05-06 14:49:36 -07002790 */
Christoph Lameter55136592010-08-20 12:37:13 -05002791static void early_kmem_cache_node_alloc(int node)
Christoph Lameter81819f02007-05-06 14:49:36 -07002792{
2793 struct page *page;
2794 struct kmem_cache_node *n;
2795
Christoph Lameter51df1142010-08-20 12:37:15 -05002796 BUG_ON(kmem_cache_node->size < sizeof(struct kmem_cache_node));
Christoph Lameter81819f02007-05-06 14:49:36 -07002797
Christoph Lameter51df1142010-08-20 12:37:15 -05002798 page = new_slab(kmem_cache_node, GFP_NOWAIT, node);
Christoph Lameter81819f02007-05-06 14:49:36 -07002799
2800 BUG_ON(!page);
Christoph Lametera2f92ee2007-08-22 14:01:57 -07002801 if (page_to_nid(page) != node) {
2802 printk(KERN_ERR "SLUB: Unable to allocate memory from "
2803 "node %d\n", node);
2804 printk(KERN_ERR "SLUB: Allocating a useless per node structure "
2805 "in order to be able to continue\n");
2806 }
2807
Christoph Lameter81819f02007-05-06 14:49:36 -07002808 n = page->freelist;
2809 BUG_ON(!n);
Christoph Lameter51df1142010-08-20 12:37:15 -05002810 page->freelist = get_freepointer(kmem_cache_node, n);
Christoph Lametere6e82ea2011-08-09 16:12:24 -05002811 page->inuse = 1;
Christoph Lameter8cb0a502011-06-01 12:25:46 -05002812 page->frozen = 0;
Christoph Lameter51df1142010-08-20 12:37:15 -05002813 kmem_cache_node->node[node] = n;
Christoph Lameter8ab13722007-07-17 04:03:32 -07002814#ifdef CONFIG_SLUB_DEBUG
Christoph Lameterf7cb1932010-09-29 07:15:01 -05002815 init_object(kmem_cache_node, n, SLUB_RED_ACTIVE);
Christoph Lameter51df1142010-08-20 12:37:15 -05002816 init_tracking(kmem_cache_node, n);
Christoph Lameter8ab13722007-07-17 04:03:32 -07002817#endif
Christoph Lameter51df1142010-08-20 12:37:15 -05002818 init_kmem_cache_node(n, kmem_cache_node);
2819 inc_slabs_node(kmem_cache_node, node, page->objects);
Christoph Lameter6446faa2008-02-15 23:45:26 -08002820
Shaohua Li136333d2011-08-24 08:57:52 +08002821 add_partial(n, page, DEACTIVATE_TO_HEAD);
Christoph Lameter81819f02007-05-06 14:49:36 -07002822}
2823
2824static void free_kmem_cache_nodes(struct kmem_cache *s)
2825{
2826 int node;
2827
Christoph Lameterf64dc582007-10-16 01:25:33 -07002828 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002829 struct kmem_cache_node *n = s->node[node];
Christoph Lameter51df1142010-08-20 12:37:15 -05002830
Alexander Duyck73367bd2010-05-21 14:41:35 -07002831 if (n)
Christoph Lameter51df1142010-08-20 12:37:15 -05002832 kmem_cache_free(kmem_cache_node, n);
2833
Christoph Lameter81819f02007-05-06 14:49:36 -07002834 s->node[node] = NULL;
2835 }
2836}
2837
Christoph Lameter55136592010-08-20 12:37:13 -05002838static int init_kmem_cache_nodes(struct kmem_cache *s)
Christoph Lameter81819f02007-05-06 14:49:36 -07002839{
2840 int node;
Christoph Lameter81819f02007-05-06 14:49:36 -07002841
Christoph Lameterf64dc582007-10-16 01:25:33 -07002842 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002843 struct kmem_cache_node *n;
2844
Alexander Duyck73367bd2010-05-21 14:41:35 -07002845 if (slab_state == DOWN) {
Christoph Lameter55136592010-08-20 12:37:13 -05002846 early_kmem_cache_node_alloc(node);
Alexander Duyck73367bd2010-05-21 14:41:35 -07002847 continue;
Christoph Lameter81819f02007-05-06 14:49:36 -07002848 }
Christoph Lameter51df1142010-08-20 12:37:15 -05002849 n = kmem_cache_alloc_node(kmem_cache_node,
Christoph Lameter55136592010-08-20 12:37:13 -05002850 GFP_KERNEL, node);
Alexander Duyck73367bd2010-05-21 14:41:35 -07002851
2852 if (!n) {
2853 free_kmem_cache_nodes(s);
2854 return 0;
2855 }
2856
Christoph Lameter81819f02007-05-06 14:49:36 -07002857 s->node[node] = n;
Pekka Enberg5595cff2008-08-05 09:28:47 +03002858 init_kmem_cache_node(n, s);
Christoph Lameter81819f02007-05-06 14:49:36 -07002859 }
2860 return 1;
2861}
Christoph Lameter81819f02007-05-06 14:49:36 -07002862
David Rientjesc0bdb232009-02-25 09:16:35 +02002863static void set_min_partial(struct kmem_cache *s, unsigned long min)
David Rientjes3b89d7d2009-02-22 17:40:07 -08002864{
2865 if (min < MIN_PARTIAL)
2866 min = MIN_PARTIAL;
2867 else if (min > MAX_PARTIAL)
2868 min = MAX_PARTIAL;
2869 s->min_partial = min;
2870}
2871
Christoph Lameter81819f02007-05-06 14:49:36 -07002872/*
2873 * calculate_sizes() determines the order and the distribution of data within
2874 * a slab object.
2875 */
Christoph Lameter06b285d2008-04-14 19:11:41 +03002876static int calculate_sizes(struct kmem_cache *s, int forced_order)
Christoph Lameter81819f02007-05-06 14:49:36 -07002877{
2878 unsigned long flags = s->flags;
2879 unsigned long size = s->objsize;
2880 unsigned long align = s->align;
Christoph Lameter834f3d12008-04-14 19:11:31 +03002881 int order;
Christoph Lameter81819f02007-05-06 14:49:36 -07002882
2883 /*
Christoph Lameterd8b42bf2008-02-15 23:45:25 -08002884 * Round up object size to the next word boundary. We can only
2885 * place the free pointer at word boundaries and this determines
2886 * the possible location of the free pointer.
2887 */
2888 size = ALIGN(size, sizeof(void *));
2889
2890#ifdef CONFIG_SLUB_DEBUG
2891 /*
Christoph Lameter81819f02007-05-06 14:49:36 -07002892 * Determine if we can poison the object itself. If the user of
2893 * the slab may touch the object after free or before allocation
2894 * then we should never poison the object itself.
2895 */
2896 if ((flags & SLAB_POISON) && !(flags & SLAB_DESTROY_BY_RCU) &&
Christoph Lameterc59def92007-05-16 22:10:50 -07002897 !s->ctor)
Christoph Lameter81819f02007-05-06 14:49:36 -07002898 s->flags |= __OBJECT_POISON;
2899 else
2900 s->flags &= ~__OBJECT_POISON;
2901
Christoph Lameter81819f02007-05-06 14:49:36 -07002902
2903 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07002904 * If we are Redzoning then check if there is some space between the
Christoph Lameter81819f02007-05-06 14:49:36 -07002905 * end of the object and the free pointer. If not then add an
Christoph Lameter672bba32007-05-09 02:32:39 -07002906 * additional word to have some bytes to store Redzone information.
Christoph Lameter81819f02007-05-06 14:49:36 -07002907 */
2908 if ((flags & SLAB_RED_ZONE) && size == s->objsize)
2909 size += sizeof(void *);
Christoph Lameter41ecc552007-05-09 02:32:44 -07002910#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07002911
2912 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07002913 * With that we have determined the number of bytes in actual use
2914 * by the object. This is the potential offset to the free pointer.
Christoph Lameter81819f02007-05-06 14:49:36 -07002915 */
2916 s->inuse = size;
2917
2918 if (((flags & (SLAB_DESTROY_BY_RCU | SLAB_POISON)) ||
Christoph Lameterc59def92007-05-16 22:10:50 -07002919 s->ctor)) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002920 /*
2921 * Relocate free pointer after the object if it is not
2922 * permitted to overwrite the first word of the object on
2923 * kmem_cache_free.
2924 *
2925 * This is the case if we do RCU, have a constructor or
2926 * destructor or are poisoning the objects.
2927 */
2928 s->offset = size;
2929 size += sizeof(void *);
2930 }
2931
Christoph Lameterc12b3c62007-05-23 13:57:31 -07002932#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter81819f02007-05-06 14:49:36 -07002933 if (flags & SLAB_STORE_USER)
2934 /*
2935 * Need to store information about allocs and frees after
2936 * the object.
2937 */
2938 size += 2 * sizeof(struct track);
2939
Christoph Lameterbe7b3fb2007-05-09 02:32:36 -07002940 if (flags & SLAB_RED_ZONE)
Christoph Lameter81819f02007-05-06 14:49:36 -07002941 /*
2942 * Add some empty padding so that we can catch
2943 * overwrites from earlier objects rather than let
2944 * tracking information or the free pointer be
Frederik Schwarzer0211a9c2008-12-29 22:14:56 +01002945 * corrupted if a user writes before the start
Christoph Lameter81819f02007-05-06 14:49:36 -07002946 * of the object.
2947 */
2948 size += sizeof(void *);
Christoph Lameter41ecc552007-05-09 02:32:44 -07002949#endif
Christoph Lameter672bba32007-05-09 02:32:39 -07002950
Christoph Lameter81819f02007-05-06 14:49:36 -07002951 /*
2952 * Determine the alignment based on various parameters that the
Christoph Lameter65c02d42007-05-09 02:32:35 -07002953 * user specified and the dynamic determination of cache line size
2954 * on bootup.
Christoph Lameter81819f02007-05-06 14:49:36 -07002955 */
2956 align = calculate_alignment(flags, align, s->objsize);
Zhang, Yanmindcb0ce12009-07-30 11:28:11 +08002957 s->align = align;
Christoph Lameter81819f02007-05-06 14:49:36 -07002958
2959 /*
2960 * SLUB stores one object immediately after another beginning from
2961 * offset 0. In order to align the objects we have to simply size
2962 * each object to conform to the alignment.
2963 */
2964 size = ALIGN(size, align);
2965 s->size = size;
Christoph Lameter06b285d2008-04-14 19:11:41 +03002966 if (forced_order >= 0)
2967 order = forced_order;
2968 else
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08002969 order = calculate_order(size, s->reserved);
Christoph Lameter81819f02007-05-06 14:49:36 -07002970
Christoph Lameter834f3d12008-04-14 19:11:31 +03002971 if (order < 0)
Christoph Lameter81819f02007-05-06 14:49:36 -07002972 return 0;
2973
Christoph Lameterb7a49f02008-02-14 14:21:32 -08002974 s->allocflags = 0;
Christoph Lameter834f3d12008-04-14 19:11:31 +03002975 if (order)
Christoph Lameterb7a49f02008-02-14 14:21:32 -08002976 s->allocflags |= __GFP_COMP;
2977
2978 if (s->flags & SLAB_CACHE_DMA)
2979 s->allocflags |= SLUB_DMA;
2980
2981 if (s->flags & SLAB_RECLAIM_ACCOUNT)
2982 s->allocflags |= __GFP_RECLAIMABLE;
2983
Christoph Lameter81819f02007-05-06 14:49:36 -07002984 /*
2985 * Determine the number of objects per slab
2986 */
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08002987 s->oo = oo_make(order, size, s->reserved);
2988 s->min = oo_make(get_order(size), size, s->reserved);
Christoph Lameter205ab992008-04-14 19:11:40 +03002989 if (oo_objects(s->oo) > oo_objects(s->max))
2990 s->max = s->oo;
Christoph Lameter81819f02007-05-06 14:49:36 -07002991
Christoph Lameter834f3d12008-04-14 19:11:31 +03002992 return !!oo_objects(s->oo);
Christoph Lameter81819f02007-05-06 14:49:36 -07002993
2994}
2995
Christoph Lameter55136592010-08-20 12:37:13 -05002996static int kmem_cache_open(struct kmem_cache *s,
Christoph Lameter81819f02007-05-06 14:49:36 -07002997 const char *name, size_t size,
2998 size_t align, unsigned long flags,
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07002999 void (*ctor)(void *))
Christoph Lameter81819f02007-05-06 14:49:36 -07003000{
3001 memset(s, 0, kmem_size);
3002 s->name = name;
3003 s->ctor = ctor;
Christoph Lameter81819f02007-05-06 14:49:36 -07003004 s->objsize = size;
Christoph Lameter81819f02007-05-06 14:49:36 -07003005 s->align = align;
Christoph Lameterba0268a2007-09-11 15:24:11 -07003006 s->flags = kmem_cache_flags(size, flags, name, ctor);
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08003007 s->reserved = 0;
Christoph Lameter81819f02007-05-06 14:49:36 -07003008
Lai Jiangshanda9a6382011-03-10 15:22:00 +08003009 if (need_reserve_slab_rcu && (s->flags & SLAB_DESTROY_BY_RCU))
3010 s->reserved = sizeof(struct rcu_head);
Christoph Lameter81819f02007-05-06 14:49:36 -07003011
Christoph Lameter06b285d2008-04-14 19:11:41 +03003012 if (!calculate_sizes(s, -1))
Christoph Lameter81819f02007-05-06 14:49:36 -07003013 goto error;
David Rientjes3de47212009-07-27 18:30:35 -07003014 if (disable_higher_order_debug) {
3015 /*
3016 * Disable debugging flags that store metadata if the min slab
3017 * order increased.
3018 */
3019 if (get_order(s->size) > get_order(s->objsize)) {
3020 s->flags &= ~DEBUG_METADATA_FLAGS;
3021 s->offset = 0;
3022 if (!calculate_sizes(s, -1))
3023 goto error;
3024 }
3025 }
Christoph Lameter81819f02007-05-06 14:49:36 -07003026
Heiko Carstens25654092012-01-12 17:17:33 -08003027#if defined(CONFIG_HAVE_CMPXCHG_DOUBLE) && \
3028 defined(CONFIG_HAVE_ALIGNED_STRUCT_PAGE)
Christoph Lameterb789ef52011-06-01 12:25:49 -05003029 if (system_has_cmpxchg_double() && (s->flags & SLAB_DEBUG_FLAGS) == 0)
3030 /* Enable fast mode */
3031 s->flags |= __CMPXCHG_DOUBLE;
3032#endif
3033
David Rientjes3b89d7d2009-02-22 17:40:07 -08003034 /*
3035 * The larger the object size is, the more pages we want on the partial
3036 * list to avoid pounding the page allocator excessively.
3037 */
Christoph Lameter49e22582011-08-09 16:12:27 -05003038 set_min_partial(s, ilog2(s->size) / 2);
3039
3040 /*
3041 * cpu_partial determined the maximum number of objects kept in the
3042 * per cpu partial lists of a processor.
3043 *
3044 * Per cpu partial lists mainly contain slabs that just have one
3045 * object freed. If they are used for allocation then they can be
3046 * filled up again with minimal effort. The slab will never hit the
3047 * per node partial lists and therefore no locking will be required.
3048 *
3049 * This setting also determines
3050 *
3051 * A) The number of objects from per cpu partial slabs dumped to the
3052 * per node list when we reach the limit.
Alex Shi9f264902011-09-01 11:32:18 +08003053 * B) The number of objects in cpu partial slabs to extract from the
Christoph Lameter49e22582011-08-09 16:12:27 -05003054 * per node list when we run out of per cpu objects. We only fetch 50%
3055 * to keep some capacity around for frees.
3056 */
Christoph Lameter8f1e33d2011-11-23 09:24:27 -06003057 if (kmem_cache_debug(s))
3058 s->cpu_partial = 0;
3059 else if (s->size >= PAGE_SIZE)
Christoph Lameter49e22582011-08-09 16:12:27 -05003060 s->cpu_partial = 2;
3061 else if (s->size >= 1024)
3062 s->cpu_partial = 6;
3063 else if (s->size >= 256)
3064 s->cpu_partial = 13;
3065 else
3066 s->cpu_partial = 30;
3067
Christoph Lameter81819f02007-05-06 14:49:36 -07003068 s->refcount = 1;
3069#ifdef CONFIG_NUMA
Christoph Lametere2cb96b2008-08-19 08:51:22 -05003070 s->remote_node_defrag_ratio = 1000;
Christoph Lameter81819f02007-05-06 14:49:36 -07003071#endif
Christoph Lameter55136592010-08-20 12:37:13 -05003072 if (!init_kmem_cache_nodes(s))
Christoph Lameterdfb4f092007-10-16 01:26:05 -07003073 goto error;
Christoph Lameter81819f02007-05-06 14:49:36 -07003074
Christoph Lameter55136592010-08-20 12:37:13 -05003075 if (alloc_kmem_cache_cpus(s))
Christoph Lameter81819f02007-05-06 14:49:36 -07003076 return 1;
Christoph Lameterff120592009-12-18 16:26:22 -06003077
Christoph Lameter4c93c3552007-10-16 01:26:08 -07003078 free_kmem_cache_nodes(s);
Christoph Lameter81819f02007-05-06 14:49:36 -07003079error:
3080 if (flags & SLAB_PANIC)
3081 panic("Cannot create slab %s size=%lu realsize=%u "
3082 "order=%u offset=%u flags=%lx\n",
Christoph Lameter834f3d12008-04-14 19:11:31 +03003083 s->name, (unsigned long)size, s->size, oo_order(s->oo),
Christoph Lameter81819f02007-05-06 14:49:36 -07003084 s->offset, flags);
3085 return 0;
3086}
Christoph Lameter81819f02007-05-06 14:49:36 -07003087
3088/*
Christoph Lameter81819f02007-05-06 14:49:36 -07003089 * Determine the size of a slab object
3090 */
3091unsigned int kmem_cache_size(struct kmem_cache *s)
3092{
3093 return s->objsize;
3094}
3095EXPORT_SYMBOL(kmem_cache_size);
3096
Christoph Lameter33b12c32008-04-25 12:22:43 -07003097static void list_slab_objects(struct kmem_cache *s, struct page *page,
3098 const char *text)
Christoph Lameter81819f02007-05-06 14:49:36 -07003099{
Christoph Lameter33b12c32008-04-25 12:22:43 -07003100#ifdef CONFIG_SLUB_DEBUG
3101 void *addr = page_address(page);
3102 void *p;
Namhyung Kima5dd5c12010-09-29 21:02:13 +09003103 unsigned long *map = kzalloc(BITS_TO_LONGS(page->objects) *
3104 sizeof(long), GFP_ATOMIC);
Eric Dumazetbbd7d572010-03-24 22:25:47 +01003105 if (!map)
3106 return;
Christoph Lameter33b12c32008-04-25 12:22:43 -07003107 slab_err(s, page, "%s", text);
3108 slab_lock(page);
Christoph Lameter33b12c32008-04-25 12:22:43 -07003109
Christoph Lameter5f80b132011-04-15 14:48:13 -05003110 get_map(s, page, map);
Christoph Lameter33b12c32008-04-25 12:22:43 -07003111 for_each_object(p, s, addr, page->objects) {
3112
3113 if (!test_bit(slab_index(p, s, addr), map)) {
3114 printk(KERN_ERR "INFO: Object 0x%p @offset=%tu\n",
3115 p, p - addr);
3116 print_tracking(s, p);
3117 }
3118 }
3119 slab_unlock(page);
Eric Dumazetbbd7d572010-03-24 22:25:47 +01003120 kfree(map);
Christoph Lameter33b12c32008-04-25 12:22:43 -07003121#endif
3122}
3123
Christoph Lameter81819f02007-05-06 14:49:36 -07003124/*
Christoph Lameter599870b2008-04-23 12:36:52 -07003125 * Attempt to free all partial slabs on a node.
Christoph Lameter69cb8e62011-08-09 16:12:22 -05003126 * This is called from kmem_cache_close(). We must be the last thread
3127 * using the cache and therefore we do not need to lock anymore.
Christoph Lameter81819f02007-05-06 14:49:36 -07003128 */
Christoph Lameter599870b2008-04-23 12:36:52 -07003129static void free_partial(struct kmem_cache *s, struct kmem_cache_node *n)
Christoph Lameter81819f02007-05-06 14:49:36 -07003130{
Christoph Lameter81819f02007-05-06 14:49:36 -07003131 struct page *page, *h;
3132
Christoph Lameter33b12c32008-04-25 12:22:43 -07003133 list_for_each_entry_safe(page, h, &n->partial, lru) {
Christoph Lameter81819f02007-05-06 14:49:36 -07003134 if (!page->inuse) {
Christoph Lameter5cc6eee2011-06-01 12:25:50 -05003135 remove_partial(n, page);
Christoph Lameter81819f02007-05-06 14:49:36 -07003136 discard_slab(s, page);
Christoph Lameter33b12c32008-04-25 12:22:43 -07003137 } else {
3138 list_slab_objects(s, page,
3139 "Objects remaining on kmem_cache_close()");
Christoph Lameter599870b2008-04-23 12:36:52 -07003140 }
Christoph Lameter33b12c32008-04-25 12:22:43 -07003141 }
Christoph Lameter81819f02007-05-06 14:49:36 -07003142}
3143
3144/*
Christoph Lameter672bba32007-05-09 02:32:39 -07003145 * Release all resources used by a slab cache.
Christoph Lameter81819f02007-05-06 14:49:36 -07003146 */
Christoph Lameter0c710012007-07-17 04:03:24 -07003147static inline int kmem_cache_close(struct kmem_cache *s)
Christoph Lameter81819f02007-05-06 14:49:36 -07003148{
3149 int node;
3150
3151 flush_all(s);
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06003152 free_percpu(s->cpu_slab);
Christoph Lameter81819f02007-05-06 14:49:36 -07003153 /* Attempt to free all objects */
Christoph Lameterf64dc582007-10-16 01:25:33 -07003154 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter81819f02007-05-06 14:49:36 -07003155 struct kmem_cache_node *n = get_node(s, node);
3156
Christoph Lameter599870b2008-04-23 12:36:52 -07003157 free_partial(s, n);
3158 if (n->nr_partial || slabs_node(s, node))
Christoph Lameter81819f02007-05-06 14:49:36 -07003159 return 1;
3160 }
3161 free_kmem_cache_nodes(s);
3162 return 0;
3163}
3164
3165/*
3166 * Close a cache and release the kmem_cache structure
3167 * (must be used for caches created using kmem_cache_create)
3168 */
3169void kmem_cache_destroy(struct kmem_cache *s)
3170{
3171 down_write(&slub_lock);
3172 s->refcount--;
3173 if (!s->refcount) {
3174 list_del(&s->list);
Christoph Lameter69cb8e62011-08-09 16:12:22 -05003175 up_write(&slub_lock);
Pekka Enbergd629d812008-04-23 22:31:08 +03003176 if (kmem_cache_close(s)) {
3177 printk(KERN_ERR "SLUB %s: %s called for cache that "
3178 "still has objects.\n", s->name, __func__);
3179 dump_stack();
3180 }
Eric Dumazetd76b1592009-09-03 22:38:59 +03003181 if (s->flags & SLAB_DESTROY_BY_RCU)
3182 rcu_barrier();
Christoph Lameter81819f02007-05-06 14:49:36 -07003183 sysfs_slab_remove(s);
Christoph Lameter69cb8e62011-08-09 16:12:22 -05003184 } else
3185 up_write(&slub_lock);
Christoph Lameter81819f02007-05-06 14:49:36 -07003186}
3187EXPORT_SYMBOL(kmem_cache_destroy);
3188
3189/********************************************************************
3190 * Kmalloc subsystem
3191 *******************************************************************/
3192
Christoph Lameter51df1142010-08-20 12:37:15 -05003193struct kmem_cache *kmalloc_caches[SLUB_PAGE_SHIFT];
Christoph Lameter81819f02007-05-06 14:49:36 -07003194EXPORT_SYMBOL(kmalloc_caches);
3195
Christoph Lameter51df1142010-08-20 12:37:15 -05003196static struct kmem_cache *kmem_cache;
3197
Christoph Lameter55136592010-08-20 12:37:13 -05003198#ifdef CONFIG_ZONE_DMA
Christoph Lameter51df1142010-08-20 12:37:15 -05003199static struct kmem_cache *kmalloc_dma_caches[SLUB_PAGE_SHIFT];
Christoph Lameter55136592010-08-20 12:37:13 -05003200#endif
3201
Christoph Lameter81819f02007-05-06 14:49:36 -07003202static int __init setup_slub_min_order(char *str)
3203{
Pekka Enberg06428782008-01-07 23:20:27 -08003204 get_option(&str, &slub_min_order);
Christoph Lameter81819f02007-05-06 14:49:36 -07003205
3206 return 1;
3207}
3208
3209__setup("slub_min_order=", setup_slub_min_order);
3210
3211static int __init setup_slub_max_order(char *str)
3212{
Pekka Enberg06428782008-01-07 23:20:27 -08003213 get_option(&str, &slub_max_order);
David Rientjes818cf592009-04-23 09:58:22 +03003214 slub_max_order = min(slub_max_order, MAX_ORDER - 1);
Christoph Lameter81819f02007-05-06 14:49:36 -07003215
3216 return 1;
3217}
3218
3219__setup("slub_max_order=", setup_slub_max_order);
3220
3221static int __init setup_slub_min_objects(char *str)
3222{
Pekka Enberg06428782008-01-07 23:20:27 -08003223 get_option(&str, &slub_min_objects);
Christoph Lameter81819f02007-05-06 14:49:36 -07003224
3225 return 1;
3226}
3227
3228__setup("slub_min_objects=", setup_slub_min_objects);
3229
3230static int __init setup_slub_nomerge(char *str)
3231{
3232 slub_nomerge = 1;
3233 return 1;
3234}
3235
3236__setup("slub_nomerge", setup_slub_nomerge);
3237
Christoph Lameter51df1142010-08-20 12:37:15 -05003238static struct kmem_cache *__init create_kmalloc_cache(const char *name,
3239 int size, unsigned int flags)
Christoph Lameter81819f02007-05-06 14:49:36 -07003240{
Christoph Lameter51df1142010-08-20 12:37:15 -05003241 struct kmem_cache *s;
3242
3243 s = kmem_cache_alloc(kmem_cache, GFP_NOWAIT);
3244
Pekka Enberg83b519e2009-06-10 19:40:04 +03003245 /*
3246 * This function is called with IRQs disabled during early-boot on
3247 * single CPU so there's no need to take slub_lock here.
3248 */
Christoph Lameter55136592010-08-20 12:37:13 -05003249 if (!kmem_cache_open(s, name, size, ARCH_KMALLOC_MINALIGN,
Christoph Lameter319d1e22008-04-14 19:11:41 +03003250 flags, NULL))
Christoph Lameter81819f02007-05-06 14:49:36 -07003251 goto panic;
3252
3253 list_add(&s->list, &slab_caches);
Christoph Lameter51df1142010-08-20 12:37:15 -05003254 return s;
Christoph Lameter81819f02007-05-06 14:49:36 -07003255
3256panic:
3257 panic("Creation of kmalloc slab %s size=%d failed.\n", name, size);
Christoph Lameter51df1142010-08-20 12:37:15 -05003258 return NULL;
Christoph Lameter81819f02007-05-06 14:49:36 -07003259}
3260
Christoph Lameterf1b26332007-07-17 04:03:26 -07003261/*
3262 * Conversion table for small slabs sizes / 8 to the index in the
3263 * kmalloc array. This is necessary for slabs < 192 since we have non power
3264 * of two cache sizes there. The size of larger slabs can be determined using
3265 * fls.
3266 */
3267static s8 size_index[24] = {
3268 3, /* 8 */
3269 4, /* 16 */
3270 5, /* 24 */
3271 5, /* 32 */
3272 6, /* 40 */
3273 6, /* 48 */
3274 6, /* 56 */
3275 6, /* 64 */
3276 1, /* 72 */
3277 1, /* 80 */
3278 1, /* 88 */
3279 1, /* 96 */
3280 7, /* 104 */
3281 7, /* 112 */
3282 7, /* 120 */
3283 7, /* 128 */
3284 2, /* 136 */
3285 2, /* 144 */
3286 2, /* 152 */
3287 2, /* 160 */
3288 2, /* 168 */
3289 2, /* 176 */
3290 2, /* 184 */
3291 2 /* 192 */
3292};
3293
Aaro Koskinenacdfcd02009-08-28 14:28:54 +03003294static inline int size_index_elem(size_t bytes)
3295{
3296 return (bytes - 1) / 8;
3297}
3298
Christoph Lameter81819f02007-05-06 14:49:36 -07003299static struct kmem_cache *get_slab(size_t size, gfp_t flags)
3300{
Christoph Lameterf1b26332007-07-17 04:03:26 -07003301 int index;
Christoph Lameter81819f02007-05-06 14:49:36 -07003302
Christoph Lameterf1b26332007-07-17 04:03:26 -07003303 if (size <= 192) {
3304 if (!size)
3305 return ZERO_SIZE_PTR;
Christoph Lameter81819f02007-05-06 14:49:36 -07003306
Aaro Koskinenacdfcd02009-08-28 14:28:54 +03003307 index = size_index[size_index_elem(size)];
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003308 } else
Christoph Lameterf1b26332007-07-17 04:03:26 -07003309 index = fls(size - 1);
Christoph Lameter81819f02007-05-06 14:49:36 -07003310
3311#ifdef CONFIG_ZONE_DMA
Christoph Lameterf1b26332007-07-17 04:03:26 -07003312 if (unlikely((flags & SLUB_DMA)))
Christoph Lameter51df1142010-08-20 12:37:15 -05003313 return kmalloc_dma_caches[index];
Christoph Lameterf1b26332007-07-17 04:03:26 -07003314
Christoph Lameter81819f02007-05-06 14:49:36 -07003315#endif
Christoph Lameter51df1142010-08-20 12:37:15 -05003316 return kmalloc_caches[index];
Christoph Lameter81819f02007-05-06 14:49:36 -07003317}
3318
3319void *__kmalloc(size_t size, gfp_t flags)
3320{
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003321 struct kmem_cache *s;
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03003322 void *ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07003323
Christoph Lameterffadd4d2009-02-17 12:05:07 -05003324 if (unlikely(size > SLUB_MAX_SIZE))
Pekka Enbergeada35e2008-02-11 22:47:46 +02003325 return kmalloc_large(size, flags);
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003326
3327 s = get_slab(size, flags);
3328
3329 if (unlikely(ZERO_OR_NULL_PTR(s)))
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003330 return s;
3331
Christoph Lameter2154a332010-07-09 14:07:10 -05003332 ret = slab_alloc(s, flags, NUMA_NO_NODE, _RET_IP_);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03003333
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003334 trace_kmalloc(_RET_IP_, ret, size, s->size, flags);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03003335
3336 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07003337}
3338EXPORT_SYMBOL(__kmalloc);
3339
Namhyung Kim5d1f57e2010-09-29 21:02:15 +09003340#ifdef CONFIG_NUMA
Christoph Lameterf619cfe2008-03-01 13:56:40 -08003341static void *kmalloc_large_node(size_t size, gfp_t flags, int node)
3342{
Vegard Nossumb1eeab62008-11-25 16:55:53 +01003343 struct page *page;
Catalin Marinase4f7c0b42009-07-07 10:32:59 +01003344 void *ptr = NULL;
Christoph Lameterf619cfe2008-03-01 13:56:40 -08003345
Vegard Nossumb1eeab62008-11-25 16:55:53 +01003346 flags |= __GFP_COMP | __GFP_NOTRACK;
3347 page = alloc_pages_node(node, flags, get_order(size));
Christoph Lameterf619cfe2008-03-01 13:56:40 -08003348 if (page)
Catalin Marinase4f7c0b42009-07-07 10:32:59 +01003349 ptr = page_address(page);
3350
3351 kmemleak_alloc(ptr, size, 1, flags);
3352 return ptr;
Christoph Lameterf619cfe2008-03-01 13:56:40 -08003353}
3354
Christoph Lameter81819f02007-05-06 14:49:36 -07003355void *__kmalloc_node(size_t size, gfp_t flags, int node)
3356{
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003357 struct kmem_cache *s;
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03003358 void *ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07003359
Ingo Molnar057685c2009-02-20 12:15:30 +01003360 if (unlikely(size > SLUB_MAX_SIZE)) {
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03003361 ret = kmalloc_large_node(size, flags, node);
3362
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003363 trace_kmalloc_node(_RET_IP_, ret,
3364 size, PAGE_SIZE << get_order(size),
3365 flags, node);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03003366
3367 return ret;
3368 }
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003369
3370 s = get_slab(size, flags);
3371
3372 if (unlikely(ZERO_OR_NULL_PTR(s)))
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003373 return s;
3374
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03003375 ret = slab_alloc(s, flags, node, _RET_IP_);
3376
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003377 trace_kmalloc_node(_RET_IP_, ret, size, s->size, flags, node);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03003378
3379 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07003380}
3381EXPORT_SYMBOL(__kmalloc_node);
3382#endif
3383
3384size_t ksize(const void *object)
3385{
Christoph Lameter272c1d22007-06-08 13:46:49 -07003386 struct page *page;
Christoph Lameter81819f02007-05-06 14:49:36 -07003387
Christoph Lameteref8b4522007-10-16 01:24:46 -07003388 if (unlikely(object == ZERO_SIZE_PTR))
Christoph Lameter272c1d22007-06-08 13:46:49 -07003389 return 0;
3390
Vegard Nossum294a80a2007-12-04 23:45:30 -08003391 page = virt_to_head_page(object);
Vegard Nossum294a80a2007-12-04 23:45:30 -08003392
Pekka Enberg76994412008-05-22 19:22:25 +03003393 if (unlikely(!PageSlab(page))) {
3394 WARN_ON(!PageCompound(page));
Vegard Nossum294a80a2007-12-04 23:45:30 -08003395 return PAGE_SIZE << compound_order(page);
Pekka Enberg76994412008-05-22 19:22:25 +03003396 }
Christoph Lameter81819f02007-05-06 14:49:36 -07003397
Eric Dumazetb3d41882011-02-14 18:35:22 +01003398 return slab_ksize(page->slab);
Christoph Lameter81819f02007-05-06 14:49:36 -07003399}
Kirill A. Shutemovb1aabec2009-02-10 15:21:44 +02003400EXPORT_SYMBOL(ksize);
Christoph Lameter81819f02007-05-06 14:49:36 -07003401
Ben Greeard18a90d2011-07-07 11:36:37 -07003402#ifdef CONFIG_SLUB_DEBUG
3403bool verify_mem_not_deleted(const void *x)
3404{
3405 struct page *page;
3406 void *object = (void *)x;
3407 unsigned long flags;
3408 bool rv;
3409
3410 if (unlikely(ZERO_OR_NULL_PTR(x)))
3411 return false;
3412
3413 local_irq_save(flags);
3414
3415 page = virt_to_head_page(x);
3416 if (unlikely(!PageSlab(page))) {
3417 /* maybe it was from stack? */
3418 rv = true;
3419 goto out_unlock;
3420 }
3421
3422 slab_lock(page);
3423 if (on_freelist(page->slab, page, object)) {
3424 object_err(page->slab, page, object, "Object is on free-list");
3425 rv = false;
3426 } else {
3427 rv = true;
3428 }
3429 slab_unlock(page);
3430
3431out_unlock:
3432 local_irq_restore(flags);
3433 return rv;
3434}
3435EXPORT_SYMBOL(verify_mem_not_deleted);
3436#endif
3437
Christoph Lameter81819f02007-05-06 14:49:36 -07003438void kfree(const void *x)
3439{
Christoph Lameter81819f02007-05-06 14:49:36 -07003440 struct page *page;
Christoph Lameter5bb983b2008-02-07 17:47:41 -08003441 void *object = (void *)x;
Christoph Lameter81819f02007-05-06 14:49:36 -07003442
Pekka Enberg2121db72009-03-25 11:05:57 +02003443 trace_kfree(_RET_IP_, x);
3444
Satyam Sharma2408c552007-10-16 01:24:44 -07003445 if (unlikely(ZERO_OR_NULL_PTR(x)))
Christoph Lameter81819f02007-05-06 14:49:36 -07003446 return;
3447
Christoph Lameterb49af682007-05-06 14:49:41 -07003448 page = virt_to_head_page(x);
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003449 if (unlikely(!PageSlab(page))) {
Christoph Lameter09375022008-05-28 10:32:22 -07003450 BUG_ON(!PageCompound(page));
Catalin Marinase4f7c0b42009-07-07 10:32:59 +01003451 kmemleak_free(x);
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003452 put_page(page);
3453 return;
3454 }
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003455 slab_free(page->slab, page, object, _RET_IP_);
Christoph Lameter81819f02007-05-06 14:49:36 -07003456}
3457EXPORT_SYMBOL(kfree);
3458
Christoph Lameter2086d262007-05-06 14:49:46 -07003459/*
Christoph Lameter672bba32007-05-09 02:32:39 -07003460 * kmem_cache_shrink removes empty slabs from the partial lists and sorts
3461 * the remaining slabs by the number of items in use. The slabs with the
3462 * most items in use come first. New allocations will then fill those up
3463 * and thus they can be removed from the partial lists.
3464 *
3465 * The slabs with the least items are placed last. This results in them
3466 * being allocated from last increasing the chance that the last objects
3467 * are freed in them.
Christoph Lameter2086d262007-05-06 14:49:46 -07003468 */
3469int kmem_cache_shrink(struct kmem_cache *s)
3470{
3471 int node;
3472 int i;
3473 struct kmem_cache_node *n;
3474 struct page *page;
3475 struct page *t;
Christoph Lameter205ab992008-04-14 19:11:40 +03003476 int objects = oo_objects(s->max);
Christoph Lameter2086d262007-05-06 14:49:46 -07003477 struct list_head *slabs_by_inuse =
Christoph Lameter834f3d12008-04-14 19:11:31 +03003478 kmalloc(sizeof(struct list_head) * objects, GFP_KERNEL);
Christoph Lameter2086d262007-05-06 14:49:46 -07003479 unsigned long flags;
3480
3481 if (!slabs_by_inuse)
3482 return -ENOMEM;
3483
3484 flush_all(s);
Christoph Lameterf64dc582007-10-16 01:25:33 -07003485 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter2086d262007-05-06 14:49:46 -07003486 n = get_node(s, node);
3487
3488 if (!n->nr_partial)
3489 continue;
3490
Christoph Lameter834f3d12008-04-14 19:11:31 +03003491 for (i = 0; i < objects; i++)
Christoph Lameter2086d262007-05-06 14:49:46 -07003492 INIT_LIST_HEAD(slabs_by_inuse + i);
3493
3494 spin_lock_irqsave(&n->list_lock, flags);
3495
3496 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07003497 * Build lists indexed by the items in use in each slab.
Christoph Lameter2086d262007-05-06 14:49:46 -07003498 *
Christoph Lameter672bba32007-05-09 02:32:39 -07003499 * Note that concurrent frees may occur while we hold the
3500 * list_lock. page->inuse here is the upper limit.
Christoph Lameter2086d262007-05-06 14:49:46 -07003501 */
3502 list_for_each_entry_safe(page, t, &n->partial, lru) {
Christoph Lameter69cb8e62011-08-09 16:12:22 -05003503 list_move(&page->lru, slabs_by_inuse + page->inuse);
3504 if (!page->inuse)
3505 n->nr_partial--;
Christoph Lameter2086d262007-05-06 14:49:46 -07003506 }
3507
Christoph Lameter2086d262007-05-06 14:49:46 -07003508 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07003509 * Rebuild the partial list with the slabs filled up most
3510 * first and the least used slabs at the end.
Christoph Lameter2086d262007-05-06 14:49:46 -07003511 */
Christoph Lameter69cb8e62011-08-09 16:12:22 -05003512 for (i = objects - 1; i > 0; i--)
Christoph Lameter2086d262007-05-06 14:49:46 -07003513 list_splice(slabs_by_inuse + i, n->partial.prev);
3514
Christoph Lameter2086d262007-05-06 14:49:46 -07003515 spin_unlock_irqrestore(&n->list_lock, flags);
Christoph Lameter69cb8e62011-08-09 16:12:22 -05003516
3517 /* Release empty slabs */
3518 list_for_each_entry_safe(page, t, slabs_by_inuse, lru)
3519 discard_slab(s, page);
Christoph Lameter2086d262007-05-06 14:49:46 -07003520 }
3521
3522 kfree(slabs_by_inuse);
3523 return 0;
3524}
3525EXPORT_SYMBOL(kmem_cache_shrink);
3526
Pekka Enberg92a5bbc2010-10-06 16:58:16 +03003527#if defined(CONFIG_MEMORY_HOTPLUG)
Yasunori Gotob9049e22007-10-21 16:41:37 -07003528static int slab_mem_going_offline_callback(void *arg)
3529{
3530 struct kmem_cache *s;
3531
3532 down_read(&slub_lock);
3533 list_for_each_entry(s, &slab_caches, list)
3534 kmem_cache_shrink(s);
3535 up_read(&slub_lock);
3536
3537 return 0;
3538}
3539
3540static void slab_mem_offline_callback(void *arg)
3541{
3542 struct kmem_cache_node *n;
3543 struct kmem_cache *s;
3544 struct memory_notify *marg = arg;
3545 int offline_node;
3546
3547 offline_node = marg->status_change_nid;
3548
3549 /*
3550 * If the node still has available memory. we need kmem_cache_node
3551 * for it yet.
3552 */
3553 if (offline_node < 0)
3554 return;
3555
3556 down_read(&slub_lock);
3557 list_for_each_entry(s, &slab_caches, list) {
3558 n = get_node(s, offline_node);
3559 if (n) {
3560 /*
3561 * if n->nr_slabs > 0, slabs still exist on the node
3562 * that is going down. We were unable to free them,
Adam Buchbinderc9404c92009-12-18 15:40:42 -05003563 * and offline_pages() function shouldn't call this
Yasunori Gotob9049e22007-10-21 16:41:37 -07003564 * callback. So, we must fail.
3565 */
Christoph Lameter0f389ec2008-04-14 18:53:02 +03003566 BUG_ON(slabs_node(s, offline_node));
Yasunori Gotob9049e22007-10-21 16:41:37 -07003567
3568 s->node[offline_node] = NULL;
Christoph Lameter8de66a02010-08-25 14:51:14 -05003569 kmem_cache_free(kmem_cache_node, n);
Yasunori Gotob9049e22007-10-21 16:41:37 -07003570 }
3571 }
3572 up_read(&slub_lock);
3573}
3574
3575static int slab_mem_going_online_callback(void *arg)
3576{
3577 struct kmem_cache_node *n;
3578 struct kmem_cache *s;
3579 struct memory_notify *marg = arg;
3580 int nid = marg->status_change_nid;
3581 int ret = 0;
3582
3583 /*
3584 * If the node's memory is already available, then kmem_cache_node is
3585 * already created. Nothing to do.
3586 */
3587 if (nid < 0)
3588 return 0;
3589
3590 /*
Christoph Lameter0121c6192008-04-29 16:11:12 -07003591 * We are bringing a node online. No memory is available yet. We must
Yasunori Gotob9049e22007-10-21 16:41:37 -07003592 * allocate a kmem_cache_node structure in order to bring the node
3593 * online.
3594 */
3595 down_read(&slub_lock);
3596 list_for_each_entry(s, &slab_caches, list) {
3597 /*
3598 * XXX: kmem_cache_alloc_node will fallback to other nodes
3599 * since memory is not yet available from the node that
3600 * is brought up.
3601 */
Christoph Lameter8de66a02010-08-25 14:51:14 -05003602 n = kmem_cache_alloc(kmem_cache_node, GFP_KERNEL);
Yasunori Gotob9049e22007-10-21 16:41:37 -07003603 if (!n) {
3604 ret = -ENOMEM;
3605 goto out;
3606 }
Pekka Enberg5595cff2008-08-05 09:28:47 +03003607 init_kmem_cache_node(n, s);
Yasunori Gotob9049e22007-10-21 16:41:37 -07003608 s->node[nid] = n;
3609 }
3610out:
3611 up_read(&slub_lock);
3612 return ret;
3613}
3614
3615static int slab_memory_callback(struct notifier_block *self,
3616 unsigned long action, void *arg)
3617{
3618 int ret = 0;
3619
3620 switch (action) {
3621 case MEM_GOING_ONLINE:
3622 ret = slab_mem_going_online_callback(arg);
3623 break;
3624 case MEM_GOING_OFFLINE:
3625 ret = slab_mem_going_offline_callback(arg);
3626 break;
3627 case MEM_OFFLINE:
3628 case MEM_CANCEL_ONLINE:
3629 slab_mem_offline_callback(arg);
3630 break;
3631 case MEM_ONLINE:
3632 case MEM_CANCEL_OFFLINE:
3633 break;
3634 }
KAMEZAWA Hiroyukidc19f9d2008-12-01 13:13:48 -08003635 if (ret)
3636 ret = notifier_from_errno(ret);
3637 else
3638 ret = NOTIFY_OK;
Yasunori Gotob9049e22007-10-21 16:41:37 -07003639 return ret;
3640}
3641
3642#endif /* CONFIG_MEMORY_HOTPLUG */
3643
Christoph Lameter81819f02007-05-06 14:49:36 -07003644/********************************************************************
3645 * Basic setup of slabs
3646 *******************************************************************/
3647
Christoph Lameter51df1142010-08-20 12:37:15 -05003648/*
3649 * Used for early kmem_cache structures that were allocated using
3650 * the page allocator
3651 */
3652
3653static void __init kmem_cache_bootstrap_fixup(struct kmem_cache *s)
3654{
3655 int node;
3656
3657 list_add(&s->list, &slab_caches);
3658 s->refcount = -1;
3659
3660 for_each_node_state(node, N_NORMAL_MEMORY) {
3661 struct kmem_cache_node *n = get_node(s, node);
3662 struct page *p;
3663
3664 if (n) {
3665 list_for_each_entry(p, &n->partial, lru)
3666 p->slab = s;
3667
Li Zefan607bf322011-04-12 15:22:26 +08003668#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter51df1142010-08-20 12:37:15 -05003669 list_for_each_entry(p, &n->full, lru)
3670 p->slab = s;
3671#endif
3672 }
3673 }
3674}
3675
Christoph Lameter81819f02007-05-06 14:49:36 -07003676void __init kmem_cache_init(void)
3677{
3678 int i;
Christoph Lameter4b356be2007-06-16 10:16:13 -07003679 int caches = 0;
Christoph Lameter51df1142010-08-20 12:37:15 -05003680 struct kmem_cache *temp_kmem_cache;
3681 int order;
Christoph Lameter51df1142010-08-20 12:37:15 -05003682 struct kmem_cache *temp_kmem_cache_node;
3683 unsigned long kmalloc_size;
3684
Stanislaw Gruszkafc8d8622012-01-10 15:07:32 -08003685 if (debug_guardpage_minorder())
3686 slub_max_order = 0;
3687
Christoph Lameter51df1142010-08-20 12:37:15 -05003688 kmem_size = offsetof(struct kmem_cache, node) +
3689 nr_node_ids * sizeof(struct kmem_cache_node *);
3690
3691 /* Allocate two kmem_caches from the page allocator */
3692 kmalloc_size = ALIGN(kmem_size, cache_line_size());
3693 order = get_order(2 * kmalloc_size);
3694 kmem_cache = (void *)__get_free_pages(GFP_NOWAIT, order);
3695
Christoph Lameter81819f02007-05-06 14:49:36 -07003696 /*
3697 * Must first have the slab cache available for the allocations of the
Christoph Lameter672bba32007-05-09 02:32:39 -07003698 * struct kmem_cache_node's. There is special bootstrap code in
Christoph Lameter81819f02007-05-06 14:49:36 -07003699 * kmem_cache_open for slab_state == DOWN.
3700 */
Christoph Lameter51df1142010-08-20 12:37:15 -05003701 kmem_cache_node = (void *)kmem_cache + kmalloc_size;
3702
3703 kmem_cache_open(kmem_cache_node, "kmem_cache_node",
3704 sizeof(struct kmem_cache_node),
3705 0, SLAB_HWCACHE_ALIGN | SLAB_PANIC, NULL);
Yasunori Gotob9049e22007-10-21 16:41:37 -07003706
Nadia Derbey0c40ba42008-04-29 01:00:41 -07003707 hotplug_memory_notifier(slab_memory_callback, SLAB_CALLBACK_PRI);
Christoph Lameter81819f02007-05-06 14:49:36 -07003708
3709 /* Able to allocate the per node structures */
3710 slab_state = PARTIAL;
3711
Christoph Lameter51df1142010-08-20 12:37:15 -05003712 temp_kmem_cache = kmem_cache;
3713 kmem_cache_open(kmem_cache, "kmem_cache", kmem_size,
3714 0, SLAB_HWCACHE_ALIGN | SLAB_PANIC, NULL);
3715 kmem_cache = kmem_cache_alloc(kmem_cache, GFP_NOWAIT);
3716 memcpy(kmem_cache, temp_kmem_cache, kmem_size);
Christoph Lameter81819f02007-05-06 14:49:36 -07003717
Christoph Lameter51df1142010-08-20 12:37:15 -05003718 /*
3719 * Allocate kmem_cache_node properly from the kmem_cache slab.
3720 * kmem_cache_node is separately allocated so no need to
3721 * update any list pointers.
3722 */
3723 temp_kmem_cache_node = kmem_cache_node;
Christoph Lameter81819f02007-05-06 14:49:36 -07003724
Christoph Lameter51df1142010-08-20 12:37:15 -05003725 kmem_cache_node = kmem_cache_alloc(kmem_cache, GFP_NOWAIT);
3726 memcpy(kmem_cache_node, temp_kmem_cache_node, kmem_size);
3727
3728 kmem_cache_bootstrap_fixup(kmem_cache_node);
3729
3730 caches++;
Christoph Lameter51df1142010-08-20 12:37:15 -05003731 kmem_cache_bootstrap_fixup(kmem_cache);
3732 caches++;
3733 /* Free temporary boot structure */
3734 free_pages((unsigned long)temp_kmem_cache, order);
3735
3736 /* Now we can use the kmem_cache to allocate kmalloc slabs */
Christoph Lameterf1b26332007-07-17 04:03:26 -07003737
3738 /*
3739 * Patch up the size_index table if we have strange large alignment
3740 * requirements for the kmalloc array. This is only the case for
Christoph Lameter6446faa2008-02-15 23:45:26 -08003741 * MIPS it seems. The standard arches will not generate any code here.
Christoph Lameterf1b26332007-07-17 04:03:26 -07003742 *
3743 * Largest permitted alignment is 256 bytes due to the way we
3744 * handle the index determination for the smaller caches.
3745 *
3746 * Make sure that nothing crazy happens if someone starts tinkering
3747 * around with ARCH_KMALLOC_MINALIGN
3748 */
3749 BUILD_BUG_ON(KMALLOC_MIN_SIZE > 256 ||
3750 (KMALLOC_MIN_SIZE & (KMALLOC_MIN_SIZE - 1)));
3751
Aaro Koskinenacdfcd02009-08-28 14:28:54 +03003752 for (i = 8; i < KMALLOC_MIN_SIZE; i += 8) {
3753 int elem = size_index_elem(i);
3754 if (elem >= ARRAY_SIZE(size_index))
3755 break;
3756 size_index[elem] = KMALLOC_SHIFT_LOW;
3757 }
Christoph Lameterf1b26332007-07-17 04:03:26 -07003758
Aaro Koskinenacdfcd02009-08-28 14:28:54 +03003759 if (KMALLOC_MIN_SIZE == 64) {
3760 /*
3761 * The 96 byte size cache is not used if the alignment
3762 * is 64 byte.
3763 */
3764 for (i = 64 + 8; i <= 96; i += 8)
3765 size_index[size_index_elem(i)] = 7;
3766 } else if (KMALLOC_MIN_SIZE == 128) {
Christoph Lameter41d54d32008-07-03 09:14:26 -05003767 /*
3768 * The 192 byte sized cache is not used if the alignment
3769 * is 128 byte. Redirect kmalloc to use the 256 byte cache
3770 * instead.
3771 */
3772 for (i = 128 + 8; i <= 192; i += 8)
Aaro Koskinenacdfcd02009-08-28 14:28:54 +03003773 size_index[size_index_elem(i)] = 8;
Christoph Lameter41d54d32008-07-03 09:14:26 -05003774 }
3775
Christoph Lameter51df1142010-08-20 12:37:15 -05003776 /* Caches that are not of the two-to-the-power-of size */
3777 if (KMALLOC_MIN_SIZE <= 32) {
3778 kmalloc_caches[1] = create_kmalloc_cache("kmalloc-96", 96, 0);
3779 caches++;
3780 }
3781
3782 if (KMALLOC_MIN_SIZE <= 64) {
3783 kmalloc_caches[2] = create_kmalloc_cache("kmalloc-192", 192, 0);
3784 caches++;
3785 }
3786
3787 for (i = KMALLOC_SHIFT_LOW; i < SLUB_PAGE_SHIFT; i++) {
3788 kmalloc_caches[i] = create_kmalloc_cache("kmalloc", 1 << i, 0);
3789 caches++;
3790 }
3791
Christoph Lameter81819f02007-05-06 14:49:36 -07003792 slab_state = UP;
3793
3794 /* Provide the correct kmalloc names now that the caches are up */
Pekka Enberg84c1cf62010-09-14 23:21:12 +03003795 if (KMALLOC_MIN_SIZE <= 32) {
3796 kmalloc_caches[1]->name = kstrdup(kmalloc_caches[1]->name, GFP_NOWAIT);
3797 BUG_ON(!kmalloc_caches[1]->name);
3798 }
3799
3800 if (KMALLOC_MIN_SIZE <= 64) {
3801 kmalloc_caches[2]->name = kstrdup(kmalloc_caches[2]->name, GFP_NOWAIT);
3802 BUG_ON(!kmalloc_caches[2]->name);
3803 }
3804
Christoph Lameterd7278bd2010-07-09 14:07:12 -05003805 for (i = KMALLOC_SHIFT_LOW; i < SLUB_PAGE_SHIFT; i++) {
3806 char *s = kasprintf(GFP_NOWAIT, "kmalloc-%d", 1 << i);
3807
3808 BUG_ON(!s);
Christoph Lameter51df1142010-08-20 12:37:15 -05003809 kmalloc_caches[i]->name = s;
Christoph Lameterd7278bd2010-07-09 14:07:12 -05003810 }
Christoph Lameter81819f02007-05-06 14:49:36 -07003811
3812#ifdef CONFIG_SMP
3813 register_cpu_notifier(&slab_notifier);
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06003814#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07003815
Christoph Lameter55136592010-08-20 12:37:13 -05003816#ifdef CONFIG_ZONE_DMA
Christoph Lameter51df1142010-08-20 12:37:15 -05003817 for (i = 0; i < SLUB_PAGE_SHIFT; i++) {
3818 struct kmem_cache *s = kmalloc_caches[i];
Christoph Lameter55136592010-08-20 12:37:13 -05003819
Christoph Lameter51df1142010-08-20 12:37:15 -05003820 if (s && s->size) {
Christoph Lameter55136592010-08-20 12:37:13 -05003821 char *name = kasprintf(GFP_NOWAIT,
3822 "dma-kmalloc-%d", s->objsize);
3823
3824 BUG_ON(!name);
Christoph Lameter51df1142010-08-20 12:37:15 -05003825 kmalloc_dma_caches[i] = create_kmalloc_cache(name,
3826 s->objsize, SLAB_CACHE_DMA);
Christoph Lameter55136592010-08-20 12:37:13 -05003827 }
3828 }
3829#endif
Ingo Molnar3adbefe2008-02-05 17:57:39 -08003830 printk(KERN_INFO
3831 "SLUB: Genslabs=%d, HWalign=%d, Order=%d-%d, MinObjects=%d,"
Christoph Lameter4b356be2007-06-16 10:16:13 -07003832 " CPUs=%d, Nodes=%d\n",
3833 caches, cache_line_size(),
Christoph Lameter81819f02007-05-06 14:49:36 -07003834 slub_min_order, slub_max_order, slub_min_objects,
3835 nr_cpu_ids, nr_node_ids);
3836}
3837
Pekka Enberg7e85ee02009-06-12 14:03:06 +03003838void __init kmem_cache_init_late(void)
3839{
Pekka Enberg7e85ee02009-06-12 14:03:06 +03003840}
3841
Christoph Lameter81819f02007-05-06 14:49:36 -07003842/*
3843 * Find a mergeable slab cache
3844 */
3845static int slab_unmergeable(struct kmem_cache *s)
3846{
3847 if (slub_nomerge || (s->flags & SLUB_NEVER_MERGE))
3848 return 1;
3849
Christoph Lameterc59def92007-05-16 22:10:50 -07003850 if (s->ctor)
Christoph Lameter81819f02007-05-06 14:49:36 -07003851 return 1;
3852
Christoph Lameter8ffa6872007-05-31 00:40:51 -07003853 /*
3854 * We may have set a slab to be unmergeable during bootstrap.
3855 */
3856 if (s->refcount < 0)
3857 return 1;
3858
Christoph Lameter81819f02007-05-06 14:49:36 -07003859 return 0;
3860}
3861
3862static struct kmem_cache *find_mergeable(size_t size,
Christoph Lameterba0268a2007-09-11 15:24:11 -07003863 size_t align, unsigned long flags, const char *name,
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07003864 void (*ctor)(void *))
Christoph Lameter81819f02007-05-06 14:49:36 -07003865{
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07003866 struct kmem_cache *s;
Christoph Lameter81819f02007-05-06 14:49:36 -07003867
3868 if (slub_nomerge || (flags & SLUB_NEVER_MERGE))
3869 return NULL;
3870
Christoph Lameterc59def92007-05-16 22:10:50 -07003871 if (ctor)
Christoph Lameter81819f02007-05-06 14:49:36 -07003872 return NULL;
3873
3874 size = ALIGN(size, sizeof(void *));
3875 align = calculate_alignment(flags, align, size);
3876 size = ALIGN(size, align);
Christoph Lameterba0268a2007-09-11 15:24:11 -07003877 flags = kmem_cache_flags(size, flags, name, NULL);
Christoph Lameter81819f02007-05-06 14:49:36 -07003878
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07003879 list_for_each_entry(s, &slab_caches, list) {
Christoph Lameter81819f02007-05-06 14:49:36 -07003880 if (slab_unmergeable(s))
3881 continue;
3882
3883 if (size > s->size)
3884 continue;
3885
Christoph Lameterba0268a2007-09-11 15:24:11 -07003886 if ((flags & SLUB_MERGE_SAME) != (s->flags & SLUB_MERGE_SAME))
Christoph Lameter81819f02007-05-06 14:49:36 -07003887 continue;
3888 /*
3889 * Check if alignment is compatible.
3890 * Courtesy of Adrian Drzewiecki
3891 */
Pekka Enberg06428782008-01-07 23:20:27 -08003892 if ((s->size & ~(align - 1)) != s->size)
Christoph Lameter81819f02007-05-06 14:49:36 -07003893 continue;
3894
3895 if (s->size - size >= sizeof(void *))
3896 continue;
3897
3898 return s;
3899 }
3900 return NULL;
3901}
3902
3903struct kmem_cache *kmem_cache_create(const char *name, size_t size,
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07003904 size_t align, unsigned long flags, void (*ctor)(void *))
Christoph Lameter81819f02007-05-06 14:49:36 -07003905{
3906 struct kmem_cache *s;
Pekka Enberg84c1cf62010-09-14 23:21:12 +03003907 char *n;
Christoph Lameter81819f02007-05-06 14:49:36 -07003908
Benjamin Herrenschmidtfe1ff492009-09-21 17:02:30 -07003909 if (WARN_ON(!name))
3910 return NULL;
3911
Christoph Lameter81819f02007-05-06 14:49:36 -07003912 down_write(&slub_lock);
Christoph Lameterba0268a2007-09-11 15:24:11 -07003913 s = find_mergeable(size, align, flags, name, ctor);
Christoph Lameter81819f02007-05-06 14:49:36 -07003914 if (s) {
3915 s->refcount++;
3916 /*
3917 * Adjust the object sizes so that we clear
3918 * the complete object on kzalloc.
3919 */
3920 s->objsize = max(s->objsize, (int)size);
3921 s->inuse = max_t(int, s->inuse, ALIGN(size, sizeof(void *)));
Christoph Lameter6446faa2008-02-15 23:45:26 -08003922
David Rientjes7b8f3b62008-12-17 22:09:46 -08003923 if (sysfs_slab_alias(s, name)) {
David Rientjes7b8f3b62008-12-17 22:09:46 -08003924 s->refcount--;
Christoph Lameter81819f02007-05-06 14:49:36 -07003925 goto err;
David Rientjes7b8f3b62008-12-17 22:09:46 -08003926 }
Christoph Lameter2bce6482010-07-19 11:39:11 -05003927 up_write(&slub_lock);
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07003928 return s;
3929 }
Christoph Lameter6446faa2008-02-15 23:45:26 -08003930
Pekka Enberg84c1cf62010-09-14 23:21:12 +03003931 n = kstrdup(name, GFP_KERNEL);
3932 if (!n)
3933 goto err;
3934
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07003935 s = kmalloc(kmem_size, GFP_KERNEL);
3936 if (s) {
Pekka Enberg84c1cf62010-09-14 23:21:12 +03003937 if (kmem_cache_open(s, n,
Christoph Lameterc59def92007-05-16 22:10:50 -07003938 size, align, flags, ctor)) {
Christoph Lameter81819f02007-05-06 14:49:36 -07003939 list_add(&s->list, &slab_caches);
Christoph Lameter66c4c352012-01-17 09:27:31 -06003940 up_write(&slub_lock);
David Rientjes7b8f3b62008-12-17 22:09:46 -08003941 if (sysfs_slab_add(s)) {
Christoph Lameter66c4c352012-01-17 09:27:31 -06003942 down_write(&slub_lock);
David Rientjes7b8f3b62008-12-17 22:09:46 -08003943 list_del(&s->list);
Pekka Enberg84c1cf62010-09-14 23:21:12 +03003944 kfree(n);
David Rientjes7b8f3b62008-12-17 22:09:46 -08003945 kfree(s);
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07003946 goto err;
David Rientjes7b8f3b62008-12-17 22:09:46 -08003947 }
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07003948 return s;
3949 }
Pekka Enberg84c1cf62010-09-14 23:21:12 +03003950 kfree(n);
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07003951 kfree(s);
Christoph Lameter81819f02007-05-06 14:49:36 -07003952 }
Pavel Emelyanov68cee4f12010-10-28 13:50:37 +04003953err:
Christoph Lameter81819f02007-05-06 14:49:36 -07003954 up_write(&slub_lock);
Christoph Lameter81819f02007-05-06 14:49:36 -07003955
Christoph Lameter81819f02007-05-06 14:49:36 -07003956 if (flags & SLAB_PANIC)
3957 panic("Cannot create slabcache %s\n", name);
3958 else
3959 s = NULL;
3960 return s;
3961}
3962EXPORT_SYMBOL(kmem_cache_create);
3963
Christoph Lameter81819f02007-05-06 14:49:36 -07003964#ifdef CONFIG_SMP
Christoph Lameter27390bc2007-06-01 00:47:09 -07003965/*
Christoph Lameter672bba32007-05-09 02:32:39 -07003966 * Use the cpu notifier to insure that the cpu slabs are flushed when
3967 * necessary.
Christoph Lameter81819f02007-05-06 14:49:36 -07003968 */
3969static int __cpuinit slab_cpuup_callback(struct notifier_block *nfb,
3970 unsigned long action, void *hcpu)
3971{
3972 long cpu = (long)hcpu;
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07003973 struct kmem_cache *s;
3974 unsigned long flags;
Christoph Lameter81819f02007-05-06 14:49:36 -07003975
3976 switch (action) {
3977 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07003978 case CPU_UP_CANCELED_FROZEN:
Christoph Lameter81819f02007-05-06 14:49:36 -07003979 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07003980 case CPU_DEAD_FROZEN:
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07003981 down_read(&slub_lock);
3982 list_for_each_entry(s, &slab_caches, list) {
3983 local_irq_save(flags);
3984 __flush_cpu_slab(s, cpu);
3985 local_irq_restore(flags);
3986 }
3987 up_read(&slub_lock);
Christoph Lameter81819f02007-05-06 14:49:36 -07003988 break;
3989 default:
3990 break;
3991 }
3992 return NOTIFY_OK;
3993}
3994
Pekka Enberg06428782008-01-07 23:20:27 -08003995static struct notifier_block __cpuinitdata slab_notifier = {
Ingo Molnar3adbefe2008-02-05 17:57:39 -08003996 .notifier_call = slab_cpuup_callback
Pekka Enberg06428782008-01-07 23:20:27 -08003997};
Christoph Lameter81819f02007-05-06 14:49:36 -07003998
3999#endif
4000
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03004001void *__kmalloc_track_caller(size_t size, gfp_t gfpflags, unsigned long caller)
Christoph Lameter81819f02007-05-06 14:49:36 -07004002{
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07004003 struct kmem_cache *s;
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03004004 void *ret;
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07004005
Christoph Lameterffadd4d2009-02-17 12:05:07 -05004006 if (unlikely(size > SLUB_MAX_SIZE))
Pekka Enbergeada35e2008-02-11 22:47:46 +02004007 return kmalloc_large(size, gfpflags);
4008
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07004009 s = get_slab(size, gfpflags);
Christoph Lameter81819f02007-05-06 14:49:36 -07004010
Satyam Sharma2408c552007-10-16 01:24:44 -07004011 if (unlikely(ZERO_OR_NULL_PTR(s)))
Christoph Lameter6cb8f912007-07-17 04:03:22 -07004012 return s;
Christoph Lameter81819f02007-05-06 14:49:36 -07004013
Christoph Lameter2154a332010-07-09 14:07:10 -05004014 ret = slab_alloc(s, gfpflags, NUMA_NO_NODE, caller);
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03004015
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004016 /* Honor the call site pointer we received. */
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02004017 trace_kmalloc(caller, ret, size, s->size, gfpflags);
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03004018
4019 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07004020}
4021
Namhyung Kim5d1f57e2010-09-29 21:02:15 +09004022#ifdef CONFIG_NUMA
Christoph Lameter81819f02007-05-06 14:49:36 -07004023void *__kmalloc_node_track_caller(size_t size, gfp_t gfpflags,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03004024 int node, unsigned long caller)
Christoph Lameter81819f02007-05-06 14:49:36 -07004025{
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07004026 struct kmem_cache *s;
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03004027 void *ret;
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07004028
Xiaotian Fengd3e14aa2010-04-08 17:26:44 +08004029 if (unlikely(size > SLUB_MAX_SIZE)) {
4030 ret = kmalloc_large_node(size, gfpflags, node);
4031
4032 trace_kmalloc_node(caller, ret,
4033 size, PAGE_SIZE << get_order(size),
4034 gfpflags, node);
4035
4036 return ret;
4037 }
Pekka Enbergeada35e2008-02-11 22:47:46 +02004038
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07004039 s = get_slab(size, gfpflags);
Christoph Lameter81819f02007-05-06 14:49:36 -07004040
Satyam Sharma2408c552007-10-16 01:24:44 -07004041 if (unlikely(ZERO_OR_NULL_PTR(s)))
Christoph Lameter6cb8f912007-07-17 04:03:22 -07004042 return s;
Christoph Lameter81819f02007-05-06 14:49:36 -07004043
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03004044 ret = slab_alloc(s, gfpflags, node, caller);
4045
Lucas De Marchi25985ed2011-03-30 22:57:33 -03004046 /* Honor the call site pointer we received. */
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02004047 trace_kmalloc_node(caller, ret, size, s->size, gfpflags, node);
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03004048
4049 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07004050}
Namhyung Kim5d1f57e2010-09-29 21:02:15 +09004051#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07004052
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05004053#ifdef CONFIG_SYSFS
Christoph Lameter205ab992008-04-14 19:11:40 +03004054static int count_inuse(struct page *page)
4055{
4056 return page->inuse;
4057}
4058
4059static int count_total(struct page *page)
4060{
4061 return page->objects;
4062}
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05004063#endif
Christoph Lameter205ab992008-04-14 19:11:40 +03004064
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05004065#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter434e2452007-07-17 04:03:30 -07004066static int validate_slab(struct kmem_cache *s, struct page *page,
4067 unsigned long *map)
Christoph Lameter53e15af2007-05-06 14:49:43 -07004068{
4069 void *p;
Christoph Lametera973e9d2008-03-01 13:40:44 -08004070 void *addr = page_address(page);
Christoph Lameter53e15af2007-05-06 14:49:43 -07004071
4072 if (!check_slab(s, page) ||
4073 !on_freelist(s, page, NULL))
4074 return 0;
4075
4076 /* Now we know that a valid freelist exists */
Christoph Lameter39b26462008-04-14 19:11:30 +03004077 bitmap_zero(map, page->objects);
Christoph Lameter53e15af2007-05-06 14:49:43 -07004078
Christoph Lameter5f80b132011-04-15 14:48:13 -05004079 get_map(s, page, map);
4080 for_each_object(p, s, addr, page->objects) {
4081 if (test_bit(slab_index(p, s, addr), map))
4082 if (!check_object(s, page, p, SLUB_RED_INACTIVE))
4083 return 0;
Christoph Lameter53e15af2007-05-06 14:49:43 -07004084 }
4085
Christoph Lameter224a88b2008-04-14 19:11:31 +03004086 for_each_object(p, s, addr, page->objects)
Christoph Lameter7656c722007-05-09 02:32:40 -07004087 if (!test_bit(slab_index(p, s, addr), map))
Tero Roponen37d57442010-12-01 20:04:20 +02004088 if (!check_object(s, page, p, SLUB_RED_ACTIVE))
Christoph Lameter53e15af2007-05-06 14:49:43 -07004089 return 0;
4090 return 1;
4091}
4092
Christoph Lameter434e2452007-07-17 04:03:30 -07004093static void validate_slab_slab(struct kmem_cache *s, struct page *page,
4094 unsigned long *map)
Christoph Lameter53e15af2007-05-06 14:49:43 -07004095{
Christoph Lameter881db7f2011-06-01 12:25:53 -05004096 slab_lock(page);
4097 validate_slab(s, page, map);
4098 slab_unlock(page);
Christoph Lameter53e15af2007-05-06 14:49:43 -07004099}
4100
Christoph Lameter434e2452007-07-17 04:03:30 -07004101static int validate_slab_node(struct kmem_cache *s,
4102 struct kmem_cache_node *n, unsigned long *map)
Christoph Lameter53e15af2007-05-06 14:49:43 -07004103{
4104 unsigned long count = 0;
4105 struct page *page;
4106 unsigned long flags;
4107
4108 spin_lock_irqsave(&n->list_lock, flags);
4109
4110 list_for_each_entry(page, &n->partial, lru) {
Christoph Lameter434e2452007-07-17 04:03:30 -07004111 validate_slab_slab(s, page, map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07004112 count++;
4113 }
4114 if (count != n->nr_partial)
4115 printk(KERN_ERR "SLUB %s: %ld partial slabs counted but "
4116 "counter=%ld\n", s->name, count, n->nr_partial);
4117
4118 if (!(s->flags & SLAB_STORE_USER))
4119 goto out;
4120
4121 list_for_each_entry(page, &n->full, lru) {
Christoph Lameter434e2452007-07-17 04:03:30 -07004122 validate_slab_slab(s, page, map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07004123 count++;
4124 }
4125 if (count != atomic_long_read(&n->nr_slabs))
4126 printk(KERN_ERR "SLUB: %s %ld slabs counted but "
4127 "counter=%ld\n", s->name, count,
4128 atomic_long_read(&n->nr_slabs));
4129
4130out:
4131 spin_unlock_irqrestore(&n->list_lock, flags);
4132 return count;
4133}
4134
Christoph Lameter434e2452007-07-17 04:03:30 -07004135static long validate_slab_cache(struct kmem_cache *s)
Christoph Lameter53e15af2007-05-06 14:49:43 -07004136{
4137 int node;
4138 unsigned long count = 0;
Christoph Lameter205ab992008-04-14 19:11:40 +03004139 unsigned long *map = kmalloc(BITS_TO_LONGS(oo_objects(s->max)) *
Christoph Lameter434e2452007-07-17 04:03:30 -07004140 sizeof(unsigned long), GFP_KERNEL);
4141
4142 if (!map)
4143 return -ENOMEM;
Christoph Lameter53e15af2007-05-06 14:49:43 -07004144
4145 flush_all(s);
Christoph Lameterf64dc582007-10-16 01:25:33 -07004146 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter53e15af2007-05-06 14:49:43 -07004147 struct kmem_cache_node *n = get_node(s, node);
4148
Christoph Lameter434e2452007-07-17 04:03:30 -07004149 count += validate_slab_node(s, n, map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07004150 }
Christoph Lameter434e2452007-07-17 04:03:30 -07004151 kfree(map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07004152 return count;
4153}
Christoph Lameter88a420e2007-05-06 14:49:45 -07004154/*
Christoph Lameter672bba32007-05-09 02:32:39 -07004155 * Generate lists of code addresses where slabcache objects are allocated
Christoph Lameter88a420e2007-05-06 14:49:45 -07004156 * and freed.
4157 */
4158
4159struct location {
4160 unsigned long count;
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03004161 unsigned long addr;
Christoph Lameter45edfa52007-05-09 02:32:45 -07004162 long long sum_time;
4163 long min_time;
4164 long max_time;
4165 long min_pid;
4166 long max_pid;
Rusty Russell174596a2009-01-01 10:12:29 +10304167 DECLARE_BITMAP(cpus, NR_CPUS);
Christoph Lameter45edfa52007-05-09 02:32:45 -07004168 nodemask_t nodes;
Christoph Lameter88a420e2007-05-06 14:49:45 -07004169};
4170
4171struct loc_track {
4172 unsigned long max;
4173 unsigned long count;
4174 struct location *loc;
4175};
4176
4177static void free_loc_track(struct loc_track *t)
4178{
4179 if (t->max)
4180 free_pages((unsigned long)t->loc,
4181 get_order(sizeof(struct location) * t->max));
4182}
4183
Christoph Lameter68dff6a2007-07-17 04:03:20 -07004184static int alloc_loc_track(struct loc_track *t, unsigned long max, gfp_t flags)
Christoph Lameter88a420e2007-05-06 14:49:45 -07004185{
4186 struct location *l;
4187 int order;
4188
Christoph Lameter88a420e2007-05-06 14:49:45 -07004189 order = get_order(sizeof(struct location) * max);
4190
Christoph Lameter68dff6a2007-07-17 04:03:20 -07004191 l = (void *)__get_free_pages(flags, order);
Christoph Lameter88a420e2007-05-06 14:49:45 -07004192 if (!l)
4193 return 0;
4194
4195 if (t->count) {
4196 memcpy(l, t->loc, sizeof(struct location) * t->count);
4197 free_loc_track(t);
4198 }
4199 t->max = max;
4200 t->loc = l;
4201 return 1;
4202}
4203
4204static int add_location(struct loc_track *t, struct kmem_cache *s,
Christoph Lameter45edfa52007-05-09 02:32:45 -07004205 const struct track *track)
Christoph Lameter88a420e2007-05-06 14:49:45 -07004206{
4207 long start, end, pos;
4208 struct location *l;
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03004209 unsigned long caddr;
Christoph Lameter45edfa52007-05-09 02:32:45 -07004210 unsigned long age = jiffies - track->when;
Christoph Lameter88a420e2007-05-06 14:49:45 -07004211
4212 start = -1;
4213 end = t->count;
4214
4215 for ( ; ; ) {
4216 pos = start + (end - start + 1) / 2;
4217
4218 /*
4219 * There is nothing at "end". If we end up there
4220 * we need to add something to before end.
4221 */
4222 if (pos == end)
4223 break;
4224
4225 caddr = t->loc[pos].addr;
Christoph Lameter45edfa52007-05-09 02:32:45 -07004226 if (track->addr == caddr) {
4227
4228 l = &t->loc[pos];
4229 l->count++;
4230 if (track->when) {
4231 l->sum_time += age;
4232 if (age < l->min_time)
4233 l->min_time = age;
4234 if (age > l->max_time)
4235 l->max_time = age;
4236
4237 if (track->pid < l->min_pid)
4238 l->min_pid = track->pid;
4239 if (track->pid > l->max_pid)
4240 l->max_pid = track->pid;
4241
Rusty Russell174596a2009-01-01 10:12:29 +10304242 cpumask_set_cpu(track->cpu,
4243 to_cpumask(l->cpus));
Christoph Lameter45edfa52007-05-09 02:32:45 -07004244 }
4245 node_set(page_to_nid(virt_to_page(track)), l->nodes);
Christoph Lameter88a420e2007-05-06 14:49:45 -07004246 return 1;
4247 }
4248
Christoph Lameter45edfa52007-05-09 02:32:45 -07004249 if (track->addr < caddr)
Christoph Lameter88a420e2007-05-06 14:49:45 -07004250 end = pos;
4251 else
4252 start = pos;
4253 }
4254
4255 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07004256 * Not found. Insert new tracking element.
Christoph Lameter88a420e2007-05-06 14:49:45 -07004257 */
Christoph Lameter68dff6a2007-07-17 04:03:20 -07004258 if (t->count >= t->max && !alloc_loc_track(t, 2 * t->max, GFP_ATOMIC))
Christoph Lameter88a420e2007-05-06 14:49:45 -07004259 return 0;
4260
4261 l = t->loc + pos;
4262 if (pos < t->count)
4263 memmove(l + 1, l,
4264 (t->count - pos) * sizeof(struct location));
4265 t->count++;
4266 l->count = 1;
Christoph Lameter45edfa52007-05-09 02:32:45 -07004267 l->addr = track->addr;
4268 l->sum_time = age;
4269 l->min_time = age;
4270 l->max_time = age;
4271 l->min_pid = track->pid;
4272 l->max_pid = track->pid;
Rusty Russell174596a2009-01-01 10:12:29 +10304273 cpumask_clear(to_cpumask(l->cpus));
4274 cpumask_set_cpu(track->cpu, to_cpumask(l->cpus));
Christoph Lameter45edfa52007-05-09 02:32:45 -07004275 nodes_clear(l->nodes);
4276 node_set(page_to_nid(virt_to_page(track)), l->nodes);
Christoph Lameter88a420e2007-05-06 14:49:45 -07004277 return 1;
4278}
4279
4280static void process_slab(struct loc_track *t, struct kmem_cache *s,
Eric Dumazetbbd7d572010-03-24 22:25:47 +01004281 struct page *page, enum track_item alloc,
Namhyung Kima5dd5c12010-09-29 21:02:13 +09004282 unsigned long *map)
Christoph Lameter88a420e2007-05-06 14:49:45 -07004283{
Christoph Lametera973e9d2008-03-01 13:40:44 -08004284 void *addr = page_address(page);
Christoph Lameter88a420e2007-05-06 14:49:45 -07004285 void *p;
4286
Christoph Lameter39b26462008-04-14 19:11:30 +03004287 bitmap_zero(map, page->objects);
Christoph Lameter5f80b132011-04-15 14:48:13 -05004288 get_map(s, page, map);
Christoph Lameter88a420e2007-05-06 14:49:45 -07004289
Christoph Lameter224a88b2008-04-14 19:11:31 +03004290 for_each_object(p, s, addr, page->objects)
Christoph Lameter45edfa52007-05-09 02:32:45 -07004291 if (!test_bit(slab_index(p, s, addr), map))
4292 add_location(t, s, get_track(s, p, alloc));
Christoph Lameter88a420e2007-05-06 14:49:45 -07004293}
4294
4295static int list_locations(struct kmem_cache *s, char *buf,
4296 enum track_item alloc)
4297{
Harvey Harrisone374d482008-01-31 15:20:50 -08004298 int len = 0;
Christoph Lameter88a420e2007-05-06 14:49:45 -07004299 unsigned long i;
Christoph Lameter68dff6a2007-07-17 04:03:20 -07004300 struct loc_track t = { 0, 0, NULL };
Christoph Lameter88a420e2007-05-06 14:49:45 -07004301 int node;
Eric Dumazetbbd7d572010-03-24 22:25:47 +01004302 unsigned long *map = kmalloc(BITS_TO_LONGS(oo_objects(s->max)) *
4303 sizeof(unsigned long), GFP_KERNEL);
Christoph Lameter88a420e2007-05-06 14:49:45 -07004304
Eric Dumazetbbd7d572010-03-24 22:25:47 +01004305 if (!map || !alloc_loc_track(&t, PAGE_SIZE / sizeof(struct location),
4306 GFP_TEMPORARY)) {
4307 kfree(map);
Christoph Lameter68dff6a2007-07-17 04:03:20 -07004308 return sprintf(buf, "Out of memory\n");
Eric Dumazetbbd7d572010-03-24 22:25:47 +01004309 }
Christoph Lameter88a420e2007-05-06 14:49:45 -07004310 /* Push back cpu slabs */
4311 flush_all(s);
4312
Christoph Lameterf64dc582007-10-16 01:25:33 -07004313 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter88a420e2007-05-06 14:49:45 -07004314 struct kmem_cache_node *n = get_node(s, node);
4315 unsigned long flags;
4316 struct page *page;
4317
Christoph Lameter9e869432007-08-22 14:01:56 -07004318 if (!atomic_long_read(&n->nr_slabs))
Christoph Lameter88a420e2007-05-06 14:49:45 -07004319 continue;
4320
4321 spin_lock_irqsave(&n->list_lock, flags);
4322 list_for_each_entry(page, &n->partial, lru)
Eric Dumazetbbd7d572010-03-24 22:25:47 +01004323 process_slab(&t, s, page, alloc, map);
Christoph Lameter88a420e2007-05-06 14:49:45 -07004324 list_for_each_entry(page, &n->full, lru)
Eric Dumazetbbd7d572010-03-24 22:25:47 +01004325 process_slab(&t, s, page, alloc, map);
Christoph Lameter88a420e2007-05-06 14:49:45 -07004326 spin_unlock_irqrestore(&n->list_lock, flags);
4327 }
4328
4329 for (i = 0; i < t.count; i++) {
Christoph Lameter45edfa52007-05-09 02:32:45 -07004330 struct location *l = &t.loc[i];
Christoph Lameter88a420e2007-05-06 14:49:45 -07004331
Hugh Dickins9c246242008-12-09 13:14:27 -08004332 if (len > PAGE_SIZE - KSYM_SYMBOL_LEN - 100)
Christoph Lameter88a420e2007-05-06 14:49:45 -07004333 break;
Harvey Harrisone374d482008-01-31 15:20:50 -08004334 len += sprintf(buf + len, "%7ld ", l->count);
Christoph Lameter45edfa52007-05-09 02:32:45 -07004335
4336 if (l->addr)
Joe Perches62c70bc2011-01-13 15:45:52 -08004337 len += sprintf(buf + len, "%pS", (void *)l->addr);
Christoph Lameter88a420e2007-05-06 14:49:45 -07004338 else
Harvey Harrisone374d482008-01-31 15:20:50 -08004339 len += sprintf(buf + len, "<not-available>");
Christoph Lameter45edfa52007-05-09 02:32:45 -07004340
4341 if (l->sum_time != l->min_time) {
Harvey Harrisone374d482008-01-31 15:20:50 -08004342 len += sprintf(buf + len, " age=%ld/%ld/%ld",
Roman Zippelf8bd2252008-05-01 04:34:31 -07004343 l->min_time,
4344 (long)div_u64(l->sum_time, l->count),
4345 l->max_time);
Christoph Lameter45edfa52007-05-09 02:32:45 -07004346 } else
Harvey Harrisone374d482008-01-31 15:20:50 -08004347 len += sprintf(buf + len, " age=%ld",
Christoph Lameter45edfa52007-05-09 02:32:45 -07004348 l->min_time);
4349
4350 if (l->min_pid != l->max_pid)
Harvey Harrisone374d482008-01-31 15:20:50 -08004351 len += sprintf(buf + len, " pid=%ld-%ld",
Christoph Lameter45edfa52007-05-09 02:32:45 -07004352 l->min_pid, l->max_pid);
4353 else
Harvey Harrisone374d482008-01-31 15:20:50 -08004354 len += sprintf(buf + len, " pid=%ld",
Christoph Lameter45edfa52007-05-09 02:32:45 -07004355 l->min_pid);
4356
Rusty Russell174596a2009-01-01 10:12:29 +10304357 if (num_online_cpus() > 1 &&
4358 !cpumask_empty(to_cpumask(l->cpus)) &&
Harvey Harrisone374d482008-01-31 15:20:50 -08004359 len < PAGE_SIZE - 60) {
4360 len += sprintf(buf + len, " cpus=");
4361 len += cpulist_scnprintf(buf + len, PAGE_SIZE - len - 50,
Rusty Russell174596a2009-01-01 10:12:29 +10304362 to_cpumask(l->cpus));
Christoph Lameter45edfa52007-05-09 02:32:45 -07004363 }
4364
Christoph Lameter62bc62a2009-06-16 15:32:15 -07004365 if (nr_online_nodes > 1 && !nodes_empty(l->nodes) &&
Harvey Harrisone374d482008-01-31 15:20:50 -08004366 len < PAGE_SIZE - 60) {
4367 len += sprintf(buf + len, " nodes=");
4368 len += nodelist_scnprintf(buf + len, PAGE_SIZE - len - 50,
Christoph Lameter45edfa52007-05-09 02:32:45 -07004369 l->nodes);
4370 }
4371
Harvey Harrisone374d482008-01-31 15:20:50 -08004372 len += sprintf(buf + len, "\n");
Christoph Lameter88a420e2007-05-06 14:49:45 -07004373 }
4374
4375 free_loc_track(&t);
Eric Dumazetbbd7d572010-03-24 22:25:47 +01004376 kfree(map);
Christoph Lameter88a420e2007-05-06 14:49:45 -07004377 if (!t.count)
Harvey Harrisone374d482008-01-31 15:20:50 -08004378 len += sprintf(buf, "No data\n");
4379 return len;
Christoph Lameter88a420e2007-05-06 14:49:45 -07004380}
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05004381#endif
Christoph Lameter88a420e2007-05-06 14:49:45 -07004382
Christoph Lametera5a84752010-10-05 13:57:27 -05004383#ifdef SLUB_RESILIENCY_TEST
4384static void resiliency_test(void)
4385{
4386 u8 *p;
4387
4388 BUILD_BUG_ON(KMALLOC_MIN_SIZE > 16 || SLUB_PAGE_SHIFT < 10);
4389
4390 printk(KERN_ERR "SLUB resiliency testing\n");
4391 printk(KERN_ERR "-----------------------\n");
4392 printk(KERN_ERR "A. Corruption after allocation\n");
4393
4394 p = kzalloc(16, GFP_KERNEL);
4395 p[16] = 0x12;
4396 printk(KERN_ERR "\n1. kmalloc-16: Clobber Redzone/next pointer"
4397 " 0x12->0x%p\n\n", p + 16);
4398
4399 validate_slab_cache(kmalloc_caches[4]);
4400
4401 /* Hmmm... The next two are dangerous */
4402 p = kzalloc(32, GFP_KERNEL);
4403 p[32 + sizeof(void *)] = 0x34;
4404 printk(KERN_ERR "\n2. kmalloc-32: Clobber next pointer/next slab"
4405 " 0x34 -> -0x%p\n", p);
4406 printk(KERN_ERR
4407 "If allocated object is overwritten then not detectable\n\n");
4408
4409 validate_slab_cache(kmalloc_caches[5]);
4410 p = kzalloc(64, GFP_KERNEL);
4411 p += 64 + (get_cycles() & 0xff) * sizeof(void *);
4412 *p = 0x56;
4413 printk(KERN_ERR "\n3. kmalloc-64: corrupting random byte 0x56->0x%p\n",
4414 p);
4415 printk(KERN_ERR
4416 "If allocated object is overwritten then not detectable\n\n");
4417 validate_slab_cache(kmalloc_caches[6]);
4418
4419 printk(KERN_ERR "\nB. Corruption after free\n");
4420 p = kzalloc(128, GFP_KERNEL);
4421 kfree(p);
4422 *p = 0x78;
4423 printk(KERN_ERR "1. kmalloc-128: Clobber first word 0x78->0x%p\n\n", p);
4424 validate_slab_cache(kmalloc_caches[7]);
4425
4426 p = kzalloc(256, GFP_KERNEL);
4427 kfree(p);
4428 p[50] = 0x9a;
4429 printk(KERN_ERR "\n2. kmalloc-256: Clobber 50th byte 0x9a->0x%p\n\n",
4430 p);
4431 validate_slab_cache(kmalloc_caches[8]);
4432
4433 p = kzalloc(512, GFP_KERNEL);
4434 kfree(p);
4435 p[512] = 0xab;
4436 printk(KERN_ERR "\n3. kmalloc-512: Clobber redzone 0xab->0x%p\n\n", p);
4437 validate_slab_cache(kmalloc_caches[9]);
4438}
4439#else
4440#ifdef CONFIG_SYSFS
4441static void resiliency_test(void) {};
4442#endif
4443#endif
4444
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05004445#ifdef CONFIG_SYSFS
Christoph Lameter81819f02007-05-06 14:49:36 -07004446enum slab_stat_type {
Christoph Lameter205ab992008-04-14 19:11:40 +03004447 SL_ALL, /* All slabs */
4448 SL_PARTIAL, /* Only partially allocated slabs */
4449 SL_CPU, /* Only slabs used for cpu caches */
4450 SL_OBJECTS, /* Determine allocated objects not slabs */
4451 SL_TOTAL /* Determine object capacity not slabs */
Christoph Lameter81819f02007-05-06 14:49:36 -07004452};
4453
Christoph Lameter205ab992008-04-14 19:11:40 +03004454#define SO_ALL (1 << SL_ALL)
Christoph Lameter81819f02007-05-06 14:49:36 -07004455#define SO_PARTIAL (1 << SL_PARTIAL)
4456#define SO_CPU (1 << SL_CPU)
4457#define SO_OBJECTS (1 << SL_OBJECTS)
Christoph Lameter205ab992008-04-14 19:11:40 +03004458#define SO_TOTAL (1 << SL_TOTAL)
Christoph Lameter81819f02007-05-06 14:49:36 -07004459
Cyrill Gorcunov62e5c4b2008-03-02 23:28:24 +03004460static ssize_t show_slab_objects(struct kmem_cache *s,
4461 char *buf, unsigned long flags)
Christoph Lameter81819f02007-05-06 14:49:36 -07004462{
4463 unsigned long total = 0;
Christoph Lameter81819f02007-05-06 14:49:36 -07004464 int node;
4465 int x;
4466 unsigned long *nodes;
4467 unsigned long *per_cpu;
4468
4469 nodes = kzalloc(2 * sizeof(unsigned long) * nr_node_ids, GFP_KERNEL);
Cyrill Gorcunov62e5c4b2008-03-02 23:28:24 +03004470 if (!nodes)
4471 return -ENOMEM;
Christoph Lameter81819f02007-05-06 14:49:36 -07004472 per_cpu = nodes + nr_node_ids;
4473
Christoph Lameter205ab992008-04-14 19:11:40 +03004474 if (flags & SO_CPU) {
4475 int cpu;
Christoph Lameter81819f02007-05-06 14:49:36 -07004476
Christoph Lameter205ab992008-04-14 19:11:40 +03004477 for_each_possible_cpu(cpu) {
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06004478 struct kmem_cache_cpu *c = per_cpu_ptr(s->cpu_slab, cpu);
Eric Dumazetbc6697d2011-11-22 16:02:02 +01004479 int node = ACCESS_ONCE(c->node);
Christoph Lameter49e22582011-08-09 16:12:27 -05004480 struct page *page;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07004481
Eric Dumazetbc6697d2011-11-22 16:02:02 +01004482 if (node < 0)
Christoph Lameter205ab992008-04-14 19:11:40 +03004483 continue;
Eric Dumazetbc6697d2011-11-22 16:02:02 +01004484 page = ACCESS_ONCE(c->page);
4485 if (page) {
4486 if (flags & SO_TOTAL)
4487 x = page->objects;
Christoph Lameter205ab992008-04-14 19:11:40 +03004488 else if (flags & SO_OBJECTS)
Eric Dumazetbc6697d2011-11-22 16:02:02 +01004489 x = page->inuse;
Christoph Lameter81819f02007-05-06 14:49:36 -07004490 else
4491 x = 1;
Christoph Lameter205ab992008-04-14 19:11:40 +03004492
Christoph Lameter81819f02007-05-06 14:49:36 -07004493 total += x;
Eric Dumazetbc6697d2011-11-22 16:02:02 +01004494 nodes[node] += x;
Christoph Lameter81819f02007-05-06 14:49:36 -07004495 }
Christoph Lameter49e22582011-08-09 16:12:27 -05004496 page = c->partial;
4497
4498 if (page) {
4499 x = page->pobjects;
Eric Dumazetbc6697d2011-11-22 16:02:02 +01004500 total += x;
4501 nodes[node] += x;
Christoph Lameter49e22582011-08-09 16:12:27 -05004502 }
Eric Dumazetbc6697d2011-11-22 16:02:02 +01004503 per_cpu[node]++;
Christoph Lameter81819f02007-05-06 14:49:36 -07004504 }
4505 }
4506
Christoph Lameter04d94872011-01-10 10:15:15 -06004507 lock_memory_hotplug();
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05004508#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter205ab992008-04-14 19:11:40 +03004509 if (flags & SO_ALL) {
4510 for_each_node_state(node, N_NORMAL_MEMORY) {
4511 struct kmem_cache_node *n = get_node(s, node);
Christoph Lameter81819f02007-05-06 14:49:36 -07004512
Christoph Lameter205ab992008-04-14 19:11:40 +03004513 if (flags & SO_TOTAL)
4514 x = atomic_long_read(&n->total_objects);
4515 else if (flags & SO_OBJECTS)
4516 x = atomic_long_read(&n->total_objects) -
4517 count_partial(n, count_free);
4518
4519 else
4520 x = atomic_long_read(&n->nr_slabs);
4521 total += x;
4522 nodes[node] += x;
4523 }
4524
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05004525 } else
4526#endif
4527 if (flags & SO_PARTIAL) {
Christoph Lameter205ab992008-04-14 19:11:40 +03004528 for_each_node_state(node, N_NORMAL_MEMORY) {
4529 struct kmem_cache_node *n = get_node(s, node);
4530
4531 if (flags & SO_TOTAL)
4532 x = count_partial(n, count_total);
4533 else if (flags & SO_OBJECTS)
4534 x = count_partial(n, count_inuse);
Christoph Lameter81819f02007-05-06 14:49:36 -07004535 else
4536 x = n->nr_partial;
4537 total += x;
4538 nodes[node] += x;
4539 }
Christoph Lameter81819f02007-05-06 14:49:36 -07004540 }
Christoph Lameter81819f02007-05-06 14:49:36 -07004541 x = sprintf(buf, "%lu", total);
4542#ifdef CONFIG_NUMA
Christoph Lameterf64dc582007-10-16 01:25:33 -07004543 for_each_node_state(node, N_NORMAL_MEMORY)
Christoph Lameter81819f02007-05-06 14:49:36 -07004544 if (nodes[node])
4545 x += sprintf(buf + x, " N%d=%lu",
4546 node, nodes[node]);
4547#endif
Christoph Lameter04d94872011-01-10 10:15:15 -06004548 unlock_memory_hotplug();
Christoph Lameter81819f02007-05-06 14:49:36 -07004549 kfree(nodes);
4550 return x + sprintf(buf + x, "\n");
4551}
4552
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05004553#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter81819f02007-05-06 14:49:36 -07004554static int any_slab_objects(struct kmem_cache *s)
4555{
4556 int node;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07004557
4558 for_each_online_node(node) {
Christoph Lameter81819f02007-05-06 14:49:36 -07004559 struct kmem_cache_node *n = get_node(s, node);
4560
Christoph Lameterdfb4f092007-10-16 01:26:05 -07004561 if (!n)
4562 continue;
4563
Benjamin Herrenschmidt4ea33e22008-05-06 20:42:39 -07004564 if (atomic_long_read(&n->total_objects))
Christoph Lameter81819f02007-05-06 14:49:36 -07004565 return 1;
4566 }
4567 return 0;
4568}
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05004569#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07004570
4571#define to_slab_attr(n) container_of(n, struct slab_attribute, attr)
Phil Carmody497888c2011-07-14 15:07:13 +03004572#define to_slab(n) container_of(n, struct kmem_cache, kobj)
Christoph Lameter81819f02007-05-06 14:49:36 -07004573
4574struct slab_attribute {
4575 struct attribute attr;
4576 ssize_t (*show)(struct kmem_cache *s, char *buf);
4577 ssize_t (*store)(struct kmem_cache *s, const char *x, size_t count);
4578};
4579
4580#define SLAB_ATTR_RO(_name) \
Vasiliy Kulikovab067e92011-09-27 21:54:53 +04004581 static struct slab_attribute _name##_attr = \
4582 __ATTR(_name, 0400, _name##_show, NULL)
Christoph Lameter81819f02007-05-06 14:49:36 -07004583
4584#define SLAB_ATTR(_name) \
4585 static struct slab_attribute _name##_attr = \
Vasiliy Kulikovab067e92011-09-27 21:54:53 +04004586 __ATTR(_name, 0600, _name##_show, _name##_store)
Christoph Lameter81819f02007-05-06 14:49:36 -07004587
Christoph Lameter81819f02007-05-06 14:49:36 -07004588static ssize_t slab_size_show(struct kmem_cache *s, char *buf)
4589{
4590 return sprintf(buf, "%d\n", s->size);
4591}
4592SLAB_ATTR_RO(slab_size);
4593
4594static ssize_t align_show(struct kmem_cache *s, char *buf)
4595{
4596 return sprintf(buf, "%d\n", s->align);
4597}
4598SLAB_ATTR_RO(align);
4599
4600static ssize_t object_size_show(struct kmem_cache *s, char *buf)
4601{
4602 return sprintf(buf, "%d\n", s->objsize);
4603}
4604SLAB_ATTR_RO(object_size);
4605
4606static ssize_t objs_per_slab_show(struct kmem_cache *s, char *buf)
4607{
Christoph Lameter834f3d12008-04-14 19:11:31 +03004608 return sprintf(buf, "%d\n", oo_objects(s->oo));
Christoph Lameter81819f02007-05-06 14:49:36 -07004609}
4610SLAB_ATTR_RO(objs_per_slab);
4611
Christoph Lameter06b285d2008-04-14 19:11:41 +03004612static ssize_t order_store(struct kmem_cache *s,
4613 const char *buf, size_t length)
4614{
Christoph Lameter0121c6192008-04-29 16:11:12 -07004615 unsigned long order;
4616 int err;
4617
4618 err = strict_strtoul(buf, 10, &order);
4619 if (err)
4620 return err;
Christoph Lameter06b285d2008-04-14 19:11:41 +03004621
4622 if (order > slub_max_order || order < slub_min_order)
4623 return -EINVAL;
4624
4625 calculate_sizes(s, order);
4626 return length;
4627}
4628
Christoph Lameter81819f02007-05-06 14:49:36 -07004629static ssize_t order_show(struct kmem_cache *s, char *buf)
4630{
Christoph Lameter834f3d12008-04-14 19:11:31 +03004631 return sprintf(buf, "%d\n", oo_order(s->oo));
Christoph Lameter81819f02007-05-06 14:49:36 -07004632}
Christoph Lameter06b285d2008-04-14 19:11:41 +03004633SLAB_ATTR(order);
Christoph Lameter81819f02007-05-06 14:49:36 -07004634
David Rientjes73d342b2009-02-22 17:40:09 -08004635static ssize_t min_partial_show(struct kmem_cache *s, char *buf)
4636{
4637 return sprintf(buf, "%lu\n", s->min_partial);
4638}
4639
4640static ssize_t min_partial_store(struct kmem_cache *s, const char *buf,
4641 size_t length)
4642{
4643 unsigned long min;
4644 int err;
4645
4646 err = strict_strtoul(buf, 10, &min);
4647 if (err)
4648 return err;
4649
David Rientjesc0bdb232009-02-25 09:16:35 +02004650 set_min_partial(s, min);
David Rientjes73d342b2009-02-22 17:40:09 -08004651 return length;
4652}
4653SLAB_ATTR(min_partial);
4654
Christoph Lameter49e22582011-08-09 16:12:27 -05004655static ssize_t cpu_partial_show(struct kmem_cache *s, char *buf)
4656{
4657 return sprintf(buf, "%u\n", s->cpu_partial);
4658}
4659
4660static ssize_t cpu_partial_store(struct kmem_cache *s, const char *buf,
4661 size_t length)
4662{
4663 unsigned long objects;
4664 int err;
4665
4666 err = strict_strtoul(buf, 10, &objects);
4667 if (err)
4668 return err;
David Rientjes74ee4ef2012-01-09 13:19:45 -08004669 if (objects && kmem_cache_debug(s))
4670 return -EINVAL;
Christoph Lameter49e22582011-08-09 16:12:27 -05004671
4672 s->cpu_partial = objects;
4673 flush_all(s);
4674 return length;
4675}
4676SLAB_ATTR(cpu_partial);
4677
Christoph Lameter81819f02007-05-06 14:49:36 -07004678static ssize_t ctor_show(struct kmem_cache *s, char *buf)
4679{
Joe Perches62c70bc2011-01-13 15:45:52 -08004680 if (!s->ctor)
4681 return 0;
4682 return sprintf(buf, "%pS\n", s->ctor);
Christoph Lameter81819f02007-05-06 14:49:36 -07004683}
4684SLAB_ATTR_RO(ctor);
4685
Christoph Lameter81819f02007-05-06 14:49:36 -07004686static ssize_t aliases_show(struct kmem_cache *s, char *buf)
4687{
4688 return sprintf(buf, "%d\n", s->refcount - 1);
4689}
4690SLAB_ATTR_RO(aliases);
4691
Christoph Lameter81819f02007-05-06 14:49:36 -07004692static ssize_t partial_show(struct kmem_cache *s, char *buf)
4693{
Christoph Lameterd9acf4b2008-02-15 15:22:21 -08004694 return show_slab_objects(s, buf, SO_PARTIAL);
Christoph Lameter81819f02007-05-06 14:49:36 -07004695}
4696SLAB_ATTR_RO(partial);
4697
4698static ssize_t cpu_slabs_show(struct kmem_cache *s, char *buf)
4699{
Christoph Lameterd9acf4b2008-02-15 15:22:21 -08004700 return show_slab_objects(s, buf, SO_CPU);
Christoph Lameter81819f02007-05-06 14:49:36 -07004701}
4702SLAB_ATTR_RO(cpu_slabs);
4703
4704static ssize_t objects_show(struct kmem_cache *s, char *buf)
4705{
Christoph Lameter205ab992008-04-14 19:11:40 +03004706 return show_slab_objects(s, buf, SO_ALL|SO_OBJECTS);
Christoph Lameter81819f02007-05-06 14:49:36 -07004707}
4708SLAB_ATTR_RO(objects);
4709
Christoph Lameter205ab992008-04-14 19:11:40 +03004710static ssize_t objects_partial_show(struct kmem_cache *s, char *buf)
4711{
4712 return show_slab_objects(s, buf, SO_PARTIAL|SO_OBJECTS);
4713}
4714SLAB_ATTR_RO(objects_partial);
4715
Christoph Lameter49e22582011-08-09 16:12:27 -05004716static ssize_t slabs_cpu_partial_show(struct kmem_cache *s, char *buf)
4717{
4718 int objects = 0;
4719 int pages = 0;
4720 int cpu;
4721 int len;
4722
4723 for_each_online_cpu(cpu) {
4724 struct page *page = per_cpu_ptr(s->cpu_slab, cpu)->partial;
4725
4726 if (page) {
4727 pages += page->pages;
4728 objects += page->pobjects;
4729 }
4730 }
4731
4732 len = sprintf(buf, "%d(%d)", objects, pages);
4733
4734#ifdef CONFIG_SMP
4735 for_each_online_cpu(cpu) {
4736 struct page *page = per_cpu_ptr(s->cpu_slab, cpu) ->partial;
4737
4738 if (page && len < PAGE_SIZE - 20)
4739 len += sprintf(buf + len, " C%d=%d(%d)", cpu,
4740 page->pobjects, page->pages);
4741 }
4742#endif
4743 return len + sprintf(buf + len, "\n");
4744}
4745SLAB_ATTR_RO(slabs_cpu_partial);
4746
Christoph Lameter81819f02007-05-06 14:49:36 -07004747static ssize_t reclaim_account_show(struct kmem_cache *s, char *buf)
4748{
4749 return sprintf(buf, "%d\n", !!(s->flags & SLAB_RECLAIM_ACCOUNT));
4750}
4751
4752static ssize_t reclaim_account_store(struct kmem_cache *s,
4753 const char *buf, size_t length)
4754{
4755 s->flags &= ~SLAB_RECLAIM_ACCOUNT;
4756 if (buf[0] == '1')
4757 s->flags |= SLAB_RECLAIM_ACCOUNT;
4758 return length;
4759}
4760SLAB_ATTR(reclaim_account);
4761
4762static ssize_t hwcache_align_show(struct kmem_cache *s, char *buf)
4763{
Christoph Lameter5af60832007-05-06 14:49:56 -07004764 return sprintf(buf, "%d\n", !!(s->flags & SLAB_HWCACHE_ALIGN));
Christoph Lameter81819f02007-05-06 14:49:36 -07004765}
4766SLAB_ATTR_RO(hwcache_align);
4767
4768#ifdef CONFIG_ZONE_DMA
4769static ssize_t cache_dma_show(struct kmem_cache *s, char *buf)
4770{
4771 return sprintf(buf, "%d\n", !!(s->flags & SLAB_CACHE_DMA));
4772}
4773SLAB_ATTR_RO(cache_dma);
4774#endif
4775
4776static ssize_t destroy_by_rcu_show(struct kmem_cache *s, char *buf)
4777{
4778 return sprintf(buf, "%d\n", !!(s->flags & SLAB_DESTROY_BY_RCU));
4779}
4780SLAB_ATTR_RO(destroy_by_rcu);
4781
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08004782static ssize_t reserved_show(struct kmem_cache *s, char *buf)
4783{
4784 return sprintf(buf, "%d\n", s->reserved);
4785}
4786SLAB_ATTR_RO(reserved);
4787
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05004788#ifdef CONFIG_SLUB_DEBUG
Christoph Lametera5a84752010-10-05 13:57:27 -05004789static ssize_t slabs_show(struct kmem_cache *s, char *buf)
4790{
4791 return show_slab_objects(s, buf, SO_ALL);
4792}
4793SLAB_ATTR_RO(slabs);
4794
4795static ssize_t total_objects_show(struct kmem_cache *s, char *buf)
4796{
4797 return show_slab_objects(s, buf, SO_ALL|SO_TOTAL);
4798}
4799SLAB_ATTR_RO(total_objects);
4800
4801static ssize_t sanity_checks_show(struct kmem_cache *s, char *buf)
4802{
4803 return sprintf(buf, "%d\n", !!(s->flags & SLAB_DEBUG_FREE));
4804}
4805
4806static ssize_t sanity_checks_store(struct kmem_cache *s,
4807 const char *buf, size_t length)
4808{
4809 s->flags &= ~SLAB_DEBUG_FREE;
Christoph Lameterb789ef52011-06-01 12:25:49 -05004810 if (buf[0] == '1') {
4811 s->flags &= ~__CMPXCHG_DOUBLE;
Christoph Lametera5a84752010-10-05 13:57:27 -05004812 s->flags |= SLAB_DEBUG_FREE;
Christoph Lameterb789ef52011-06-01 12:25:49 -05004813 }
Christoph Lametera5a84752010-10-05 13:57:27 -05004814 return length;
4815}
4816SLAB_ATTR(sanity_checks);
4817
4818static ssize_t trace_show(struct kmem_cache *s, char *buf)
4819{
4820 return sprintf(buf, "%d\n", !!(s->flags & SLAB_TRACE));
4821}
4822
4823static ssize_t trace_store(struct kmem_cache *s, const char *buf,
4824 size_t length)
4825{
4826 s->flags &= ~SLAB_TRACE;
Christoph Lameterb789ef52011-06-01 12:25:49 -05004827 if (buf[0] == '1') {
4828 s->flags &= ~__CMPXCHG_DOUBLE;
Christoph Lametera5a84752010-10-05 13:57:27 -05004829 s->flags |= SLAB_TRACE;
Christoph Lameterb789ef52011-06-01 12:25:49 -05004830 }
Christoph Lametera5a84752010-10-05 13:57:27 -05004831 return length;
4832}
4833SLAB_ATTR(trace);
4834
Christoph Lameter81819f02007-05-06 14:49:36 -07004835static ssize_t red_zone_show(struct kmem_cache *s, char *buf)
4836{
4837 return sprintf(buf, "%d\n", !!(s->flags & SLAB_RED_ZONE));
4838}
4839
4840static ssize_t red_zone_store(struct kmem_cache *s,
4841 const char *buf, size_t length)
4842{
4843 if (any_slab_objects(s))
4844 return -EBUSY;
4845
4846 s->flags &= ~SLAB_RED_ZONE;
Christoph Lameterb789ef52011-06-01 12:25:49 -05004847 if (buf[0] == '1') {
4848 s->flags &= ~__CMPXCHG_DOUBLE;
Christoph Lameter81819f02007-05-06 14:49:36 -07004849 s->flags |= SLAB_RED_ZONE;
Christoph Lameterb789ef52011-06-01 12:25:49 -05004850 }
Christoph Lameter06b285d2008-04-14 19:11:41 +03004851 calculate_sizes(s, -1);
Christoph Lameter81819f02007-05-06 14:49:36 -07004852 return length;
4853}
4854SLAB_ATTR(red_zone);
4855
4856static ssize_t poison_show(struct kmem_cache *s, char *buf)
4857{
4858 return sprintf(buf, "%d\n", !!(s->flags & SLAB_POISON));
4859}
4860
4861static ssize_t poison_store(struct kmem_cache *s,
4862 const char *buf, size_t length)
4863{
4864 if (any_slab_objects(s))
4865 return -EBUSY;
4866
4867 s->flags &= ~SLAB_POISON;
Christoph Lameterb789ef52011-06-01 12:25:49 -05004868 if (buf[0] == '1') {
4869 s->flags &= ~__CMPXCHG_DOUBLE;
Christoph Lameter81819f02007-05-06 14:49:36 -07004870 s->flags |= SLAB_POISON;
Christoph Lameterb789ef52011-06-01 12:25:49 -05004871 }
Christoph Lameter06b285d2008-04-14 19:11:41 +03004872 calculate_sizes(s, -1);
Christoph Lameter81819f02007-05-06 14:49:36 -07004873 return length;
4874}
4875SLAB_ATTR(poison);
4876
4877static ssize_t store_user_show(struct kmem_cache *s, char *buf)
4878{
4879 return sprintf(buf, "%d\n", !!(s->flags & SLAB_STORE_USER));
4880}
4881
4882static ssize_t store_user_store(struct kmem_cache *s,
4883 const char *buf, size_t length)
4884{
4885 if (any_slab_objects(s))
4886 return -EBUSY;
4887
4888 s->flags &= ~SLAB_STORE_USER;
Christoph Lameterb789ef52011-06-01 12:25:49 -05004889 if (buf[0] == '1') {
4890 s->flags &= ~__CMPXCHG_DOUBLE;
Christoph Lameter81819f02007-05-06 14:49:36 -07004891 s->flags |= SLAB_STORE_USER;
Christoph Lameterb789ef52011-06-01 12:25:49 -05004892 }
Christoph Lameter06b285d2008-04-14 19:11:41 +03004893 calculate_sizes(s, -1);
Christoph Lameter81819f02007-05-06 14:49:36 -07004894 return length;
4895}
4896SLAB_ATTR(store_user);
4897
Christoph Lameter53e15af2007-05-06 14:49:43 -07004898static ssize_t validate_show(struct kmem_cache *s, char *buf)
4899{
4900 return 0;
4901}
4902
4903static ssize_t validate_store(struct kmem_cache *s,
4904 const char *buf, size_t length)
4905{
Christoph Lameter434e2452007-07-17 04:03:30 -07004906 int ret = -EINVAL;
4907
4908 if (buf[0] == '1') {
4909 ret = validate_slab_cache(s);
4910 if (ret >= 0)
4911 ret = length;
4912 }
4913 return ret;
Christoph Lameter53e15af2007-05-06 14:49:43 -07004914}
4915SLAB_ATTR(validate);
Christoph Lametera5a84752010-10-05 13:57:27 -05004916
4917static ssize_t alloc_calls_show(struct kmem_cache *s, char *buf)
4918{
4919 if (!(s->flags & SLAB_STORE_USER))
4920 return -ENOSYS;
4921 return list_locations(s, buf, TRACK_ALLOC);
4922}
4923SLAB_ATTR_RO(alloc_calls);
4924
4925static ssize_t free_calls_show(struct kmem_cache *s, char *buf)
4926{
4927 if (!(s->flags & SLAB_STORE_USER))
4928 return -ENOSYS;
4929 return list_locations(s, buf, TRACK_FREE);
4930}
4931SLAB_ATTR_RO(free_calls);
4932#endif /* CONFIG_SLUB_DEBUG */
4933
4934#ifdef CONFIG_FAILSLAB
4935static ssize_t failslab_show(struct kmem_cache *s, char *buf)
4936{
4937 return sprintf(buf, "%d\n", !!(s->flags & SLAB_FAILSLAB));
4938}
4939
4940static ssize_t failslab_store(struct kmem_cache *s, const char *buf,
4941 size_t length)
4942{
4943 s->flags &= ~SLAB_FAILSLAB;
4944 if (buf[0] == '1')
4945 s->flags |= SLAB_FAILSLAB;
4946 return length;
4947}
4948SLAB_ATTR(failslab);
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05004949#endif
Christoph Lameter53e15af2007-05-06 14:49:43 -07004950
Christoph Lameter2086d262007-05-06 14:49:46 -07004951static ssize_t shrink_show(struct kmem_cache *s, char *buf)
4952{
4953 return 0;
4954}
4955
4956static ssize_t shrink_store(struct kmem_cache *s,
4957 const char *buf, size_t length)
4958{
4959 if (buf[0] == '1') {
4960 int rc = kmem_cache_shrink(s);
4961
4962 if (rc)
4963 return rc;
4964 } else
4965 return -EINVAL;
4966 return length;
4967}
4968SLAB_ATTR(shrink);
4969
Christoph Lameter81819f02007-05-06 14:49:36 -07004970#ifdef CONFIG_NUMA
Christoph Lameter98246012008-01-07 23:20:26 -08004971static ssize_t remote_node_defrag_ratio_show(struct kmem_cache *s, char *buf)
Christoph Lameter81819f02007-05-06 14:49:36 -07004972{
Christoph Lameter98246012008-01-07 23:20:26 -08004973 return sprintf(buf, "%d\n", s->remote_node_defrag_ratio / 10);
Christoph Lameter81819f02007-05-06 14:49:36 -07004974}
4975
Christoph Lameter98246012008-01-07 23:20:26 -08004976static ssize_t remote_node_defrag_ratio_store(struct kmem_cache *s,
Christoph Lameter81819f02007-05-06 14:49:36 -07004977 const char *buf, size_t length)
4978{
Christoph Lameter0121c6192008-04-29 16:11:12 -07004979 unsigned long ratio;
4980 int err;
Christoph Lameter81819f02007-05-06 14:49:36 -07004981
Christoph Lameter0121c6192008-04-29 16:11:12 -07004982 err = strict_strtoul(buf, 10, &ratio);
4983 if (err)
4984 return err;
4985
Christoph Lametere2cb96b2008-08-19 08:51:22 -05004986 if (ratio <= 100)
Christoph Lameter0121c6192008-04-29 16:11:12 -07004987 s->remote_node_defrag_ratio = ratio * 10;
4988
Christoph Lameter81819f02007-05-06 14:49:36 -07004989 return length;
4990}
Christoph Lameter98246012008-01-07 23:20:26 -08004991SLAB_ATTR(remote_node_defrag_ratio);
Christoph Lameter81819f02007-05-06 14:49:36 -07004992#endif
4993
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004994#ifdef CONFIG_SLUB_STATS
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004995static int show_stat(struct kmem_cache *s, char *buf, enum stat_item si)
4996{
4997 unsigned long sum = 0;
4998 int cpu;
4999 int len;
5000 int *data = kmalloc(nr_cpu_ids * sizeof(int), GFP_KERNEL);
5001
5002 if (!data)
5003 return -ENOMEM;
5004
5005 for_each_online_cpu(cpu) {
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06005006 unsigned x = per_cpu_ptr(s->cpu_slab, cpu)->stat[si];
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08005007
5008 data[cpu] = x;
5009 sum += x;
5010 }
5011
5012 len = sprintf(buf, "%lu", sum);
5013
Christoph Lameter50ef37b2008-04-14 18:52:05 +03005014#ifdef CONFIG_SMP
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08005015 for_each_online_cpu(cpu) {
5016 if (data[cpu] && len < PAGE_SIZE - 20)
Christoph Lameter50ef37b2008-04-14 18:52:05 +03005017 len += sprintf(buf + len, " C%d=%u", cpu, data[cpu]);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08005018 }
Christoph Lameter50ef37b2008-04-14 18:52:05 +03005019#endif
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08005020 kfree(data);
5021 return len + sprintf(buf + len, "\n");
5022}
5023
David Rientjes78eb00c2009-10-15 02:20:22 -07005024static void clear_stat(struct kmem_cache *s, enum stat_item si)
5025{
5026 int cpu;
5027
5028 for_each_online_cpu(cpu)
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06005029 per_cpu_ptr(s->cpu_slab, cpu)->stat[si] = 0;
David Rientjes78eb00c2009-10-15 02:20:22 -07005030}
5031
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08005032#define STAT_ATTR(si, text) \
5033static ssize_t text##_show(struct kmem_cache *s, char *buf) \
5034{ \
5035 return show_stat(s, buf, si); \
5036} \
David Rientjes78eb00c2009-10-15 02:20:22 -07005037static ssize_t text##_store(struct kmem_cache *s, \
5038 const char *buf, size_t length) \
5039{ \
5040 if (buf[0] != '0') \
5041 return -EINVAL; \
5042 clear_stat(s, si); \
5043 return length; \
5044} \
5045SLAB_ATTR(text); \
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08005046
5047STAT_ATTR(ALLOC_FASTPATH, alloc_fastpath);
5048STAT_ATTR(ALLOC_SLOWPATH, alloc_slowpath);
5049STAT_ATTR(FREE_FASTPATH, free_fastpath);
5050STAT_ATTR(FREE_SLOWPATH, free_slowpath);
5051STAT_ATTR(FREE_FROZEN, free_frozen);
5052STAT_ATTR(FREE_ADD_PARTIAL, free_add_partial);
5053STAT_ATTR(FREE_REMOVE_PARTIAL, free_remove_partial);
5054STAT_ATTR(ALLOC_FROM_PARTIAL, alloc_from_partial);
5055STAT_ATTR(ALLOC_SLAB, alloc_slab);
5056STAT_ATTR(ALLOC_REFILL, alloc_refill);
Christoph Lametere36a2652011-06-01 12:25:57 -05005057STAT_ATTR(ALLOC_NODE_MISMATCH, alloc_node_mismatch);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08005058STAT_ATTR(FREE_SLAB, free_slab);
5059STAT_ATTR(CPUSLAB_FLUSH, cpuslab_flush);
5060STAT_ATTR(DEACTIVATE_FULL, deactivate_full);
5061STAT_ATTR(DEACTIVATE_EMPTY, deactivate_empty);
5062STAT_ATTR(DEACTIVATE_TO_HEAD, deactivate_to_head);
5063STAT_ATTR(DEACTIVATE_TO_TAIL, deactivate_to_tail);
5064STAT_ATTR(DEACTIVATE_REMOTE_FREES, deactivate_remote_frees);
Christoph Lameter03e404a2011-06-01 12:25:58 -05005065STAT_ATTR(DEACTIVATE_BYPASS, deactivate_bypass);
Christoph Lameter65c33762008-04-14 19:11:40 +03005066STAT_ATTR(ORDER_FALLBACK, order_fallback);
Christoph Lameterb789ef52011-06-01 12:25:49 -05005067STAT_ATTR(CMPXCHG_DOUBLE_CPU_FAIL, cmpxchg_double_cpu_fail);
5068STAT_ATTR(CMPXCHG_DOUBLE_FAIL, cmpxchg_double_fail);
Christoph Lameter49e22582011-08-09 16:12:27 -05005069STAT_ATTR(CPU_PARTIAL_ALLOC, cpu_partial_alloc);
5070STAT_ATTR(CPU_PARTIAL_FREE, cpu_partial_free);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08005071#endif
5072
Pekka Enberg06428782008-01-07 23:20:27 -08005073static struct attribute *slab_attrs[] = {
Christoph Lameter81819f02007-05-06 14:49:36 -07005074 &slab_size_attr.attr,
5075 &object_size_attr.attr,
5076 &objs_per_slab_attr.attr,
5077 &order_attr.attr,
David Rientjes73d342b2009-02-22 17:40:09 -08005078 &min_partial_attr.attr,
Christoph Lameter49e22582011-08-09 16:12:27 -05005079 &cpu_partial_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07005080 &objects_attr.attr,
Christoph Lameter205ab992008-04-14 19:11:40 +03005081 &objects_partial_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07005082 &partial_attr.attr,
5083 &cpu_slabs_attr.attr,
5084 &ctor_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07005085 &aliases_attr.attr,
5086 &align_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07005087 &hwcache_align_attr.attr,
5088 &reclaim_account_attr.attr,
5089 &destroy_by_rcu_attr.attr,
Christoph Lametera5a84752010-10-05 13:57:27 -05005090 &shrink_attr.attr,
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08005091 &reserved_attr.attr,
Christoph Lameter49e22582011-08-09 16:12:27 -05005092 &slabs_cpu_partial_attr.attr,
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05005093#ifdef CONFIG_SLUB_DEBUG
Christoph Lametera5a84752010-10-05 13:57:27 -05005094 &total_objects_attr.attr,
5095 &slabs_attr.attr,
5096 &sanity_checks_attr.attr,
5097 &trace_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07005098 &red_zone_attr.attr,
5099 &poison_attr.attr,
5100 &store_user_attr.attr,
Christoph Lameter53e15af2007-05-06 14:49:43 -07005101 &validate_attr.attr,
Christoph Lameter88a420e2007-05-06 14:49:45 -07005102 &alloc_calls_attr.attr,
5103 &free_calls_attr.attr,
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05005104#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07005105#ifdef CONFIG_ZONE_DMA
5106 &cache_dma_attr.attr,
5107#endif
5108#ifdef CONFIG_NUMA
Christoph Lameter98246012008-01-07 23:20:26 -08005109 &remote_node_defrag_ratio_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07005110#endif
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08005111#ifdef CONFIG_SLUB_STATS
5112 &alloc_fastpath_attr.attr,
5113 &alloc_slowpath_attr.attr,
5114 &free_fastpath_attr.attr,
5115 &free_slowpath_attr.attr,
5116 &free_frozen_attr.attr,
5117 &free_add_partial_attr.attr,
5118 &free_remove_partial_attr.attr,
5119 &alloc_from_partial_attr.attr,
5120 &alloc_slab_attr.attr,
5121 &alloc_refill_attr.attr,
Christoph Lametere36a2652011-06-01 12:25:57 -05005122 &alloc_node_mismatch_attr.attr,
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08005123 &free_slab_attr.attr,
5124 &cpuslab_flush_attr.attr,
5125 &deactivate_full_attr.attr,
5126 &deactivate_empty_attr.attr,
5127 &deactivate_to_head_attr.attr,
5128 &deactivate_to_tail_attr.attr,
5129 &deactivate_remote_frees_attr.attr,
Christoph Lameter03e404a2011-06-01 12:25:58 -05005130 &deactivate_bypass_attr.attr,
Christoph Lameter65c33762008-04-14 19:11:40 +03005131 &order_fallback_attr.attr,
Christoph Lameterb789ef52011-06-01 12:25:49 -05005132 &cmpxchg_double_fail_attr.attr,
5133 &cmpxchg_double_cpu_fail_attr.attr,
Christoph Lameter49e22582011-08-09 16:12:27 -05005134 &cpu_partial_alloc_attr.attr,
5135 &cpu_partial_free_attr.attr,
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08005136#endif
Dmitry Monakhov4c13dd32010-02-26 09:36:12 +03005137#ifdef CONFIG_FAILSLAB
5138 &failslab_attr.attr,
5139#endif
5140
Christoph Lameter81819f02007-05-06 14:49:36 -07005141 NULL
5142};
5143
5144static struct attribute_group slab_attr_group = {
5145 .attrs = slab_attrs,
5146};
5147
5148static ssize_t slab_attr_show(struct kobject *kobj,
5149 struct attribute *attr,
5150 char *buf)
5151{
5152 struct slab_attribute *attribute;
5153 struct kmem_cache *s;
5154 int err;
5155
5156 attribute = to_slab_attr(attr);
5157 s = to_slab(kobj);
5158
5159 if (!attribute->show)
5160 return -EIO;
5161
5162 err = attribute->show(s, buf);
5163
5164 return err;
5165}
5166
5167static ssize_t slab_attr_store(struct kobject *kobj,
5168 struct attribute *attr,
5169 const char *buf, size_t len)
5170{
5171 struct slab_attribute *attribute;
5172 struct kmem_cache *s;
5173 int err;
5174
5175 attribute = to_slab_attr(attr);
5176 s = to_slab(kobj);
5177
5178 if (!attribute->store)
5179 return -EIO;
5180
5181 err = attribute->store(s, buf, len);
5182
5183 return err;
5184}
5185
Christoph Lameter151c6022008-01-07 22:29:05 -08005186static void kmem_cache_release(struct kobject *kobj)
5187{
5188 struct kmem_cache *s = to_slab(kobj);
5189
Pekka Enberg84c1cf62010-09-14 23:21:12 +03005190 kfree(s->name);
Christoph Lameter151c6022008-01-07 22:29:05 -08005191 kfree(s);
5192}
5193
Emese Revfy52cf25d2010-01-19 02:58:23 +01005194static const struct sysfs_ops slab_sysfs_ops = {
Christoph Lameter81819f02007-05-06 14:49:36 -07005195 .show = slab_attr_show,
5196 .store = slab_attr_store,
5197};
5198
5199static struct kobj_type slab_ktype = {
5200 .sysfs_ops = &slab_sysfs_ops,
Christoph Lameter151c6022008-01-07 22:29:05 -08005201 .release = kmem_cache_release
Christoph Lameter81819f02007-05-06 14:49:36 -07005202};
5203
5204static int uevent_filter(struct kset *kset, struct kobject *kobj)
5205{
5206 struct kobj_type *ktype = get_ktype(kobj);
5207
5208 if (ktype == &slab_ktype)
5209 return 1;
5210 return 0;
5211}
5212
Emese Revfy9cd43612009-12-31 14:52:51 +01005213static const struct kset_uevent_ops slab_uevent_ops = {
Christoph Lameter81819f02007-05-06 14:49:36 -07005214 .filter = uevent_filter,
5215};
5216
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06005217static struct kset *slab_kset;
Christoph Lameter81819f02007-05-06 14:49:36 -07005218
5219#define ID_STR_LENGTH 64
5220
5221/* Create a unique string id for a slab cache:
Christoph Lameter6446faa2008-02-15 23:45:26 -08005222 *
5223 * Format :[flags-]size
Christoph Lameter81819f02007-05-06 14:49:36 -07005224 */
5225static char *create_unique_id(struct kmem_cache *s)
5226{
5227 char *name = kmalloc(ID_STR_LENGTH, GFP_KERNEL);
5228 char *p = name;
5229
5230 BUG_ON(!name);
5231
5232 *p++ = ':';
5233 /*
5234 * First flags affecting slabcache operations. We will only
5235 * get here for aliasable slabs so we do not need to support
5236 * too many flags. The flags here must cover all flags that
5237 * are matched during merging to guarantee that the id is
5238 * unique.
5239 */
5240 if (s->flags & SLAB_CACHE_DMA)
5241 *p++ = 'd';
5242 if (s->flags & SLAB_RECLAIM_ACCOUNT)
5243 *p++ = 'a';
5244 if (s->flags & SLAB_DEBUG_FREE)
5245 *p++ = 'F';
Vegard Nossum5a896d92008-04-04 00:54:48 +02005246 if (!(s->flags & SLAB_NOTRACK))
5247 *p++ = 't';
Christoph Lameter81819f02007-05-06 14:49:36 -07005248 if (p != name + 1)
5249 *p++ = '-';
5250 p += sprintf(p, "%07d", s->size);
5251 BUG_ON(p > name + ID_STR_LENGTH - 1);
5252 return name;
5253}
5254
5255static int sysfs_slab_add(struct kmem_cache *s)
5256{
5257 int err;
5258 const char *name;
5259 int unmergeable;
5260
5261 if (slab_state < SYSFS)
5262 /* Defer until later */
5263 return 0;
5264
5265 unmergeable = slab_unmergeable(s);
5266 if (unmergeable) {
5267 /*
5268 * Slabcache can never be merged so we can use the name proper.
5269 * This is typically the case for debug situations. In that
5270 * case we can catch duplicate names easily.
5271 */
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06005272 sysfs_remove_link(&slab_kset->kobj, s->name);
Christoph Lameter81819f02007-05-06 14:49:36 -07005273 name = s->name;
5274 } else {
5275 /*
5276 * Create a unique name for the slab as a target
5277 * for the symlinks.
5278 */
5279 name = create_unique_id(s);
5280 }
5281
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06005282 s->kobj.kset = slab_kset;
Greg Kroah-Hartman1eada112007-12-17 23:05:35 -07005283 err = kobject_init_and_add(&s->kobj, &slab_ktype, NULL, name);
5284 if (err) {
5285 kobject_put(&s->kobj);
Christoph Lameter81819f02007-05-06 14:49:36 -07005286 return err;
Greg Kroah-Hartman1eada112007-12-17 23:05:35 -07005287 }
Christoph Lameter81819f02007-05-06 14:49:36 -07005288
5289 err = sysfs_create_group(&s->kobj, &slab_attr_group);
Xiaotian Feng5788d8a2009-07-22 11:28:53 +08005290 if (err) {
5291 kobject_del(&s->kobj);
5292 kobject_put(&s->kobj);
Christoph Lameter81819f02007-05-06 14:49:36 -07005293 return err;
Xiaotian Feng5788d8a2009-07-22 11:28:53 +08005294 }
Christoph Lameter81819f02007-05-06 14:49:36 -07005295 kobject_uevent(&s->kobj, KOBJ_ADD);
5296 if (!unmergeable) {
5297 /* Setup first alias */
5298 sysfs_slab_alias(s, s->name);
5299 kfree(name);
5300 }
5301 return 0;
5302}
5303
5304static void sysfs_slab_remove(struct kmem_cache *s)
5305{
Christoph Lameter2bce6482010-07-19 11:39:11 -05005306 if (slab_state < SYSFS)
5307 /*
5308 * Sysfs has not been setup yet so no need to remove the
5309 * cache from sysfs.
5310 */
5311 return;
5312
Christoph Lameter81819f02007-05-06 14:49:36 -07005313 kobject_uevent(&s->kobj, KOBJ_REMOVE);
5314 kobject_del(&s->kobj);
Christoph Lameter151c6022008-01-07 22:29:05 -08005315 kobject_put(&s->kobj);
Christoph Lameter81819f02007-05-06 14:49:36 -07005316}
5317
5318/*
5319 * Need to buffer aliases during bootup until sysfs becomes
Nick Andrew9f6c708e2008-12-05 14:08:08 +11005320 * available lest we lose that information.
Christoph Lameter81819f02007-05-06 14:49:36 -07005321 */
5322struct saved_alias {
5323 struct kmem_cache *s;
5324 const char *name;
5325 struct saved_alias *next;
5326};
5327
Adrian Bunk5af328a2007-07-17 04:03:27 -07005328static struct saved_alias *alias_list;
Christoph Lameter81819f02007-05-06 14:49:36 -07005329
5330static int sysfs_slab_alias(struct kmem_cache *s, const char *name)
5331{
5332 struct saved_alias *al;
5333
5334 if (slab_state == SYSFS) {
5335 /*
5336 * If we have a leftover link then remove it.
5337 */
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06005338 sysfs_remove_link(&slab_kset->kobj, name);
5339 return sysfs_create_link(&slab_kset->kobj, &s->kobj, name);
Christoph Lameter81819f02007-05-06 14:49:36 -07005340 }
5341
5342 al = kmalloc(sizeof(struct saved_alias), GFP_KERNEL);
5343 if (!al)
5344 return -ENOMEM;
5345
5346 al->s = s;
5347 al->name = name;
5348 al->next = alias_list;
5349 alias_list = al;
5350 return 0;
5351}
5352
5353static int __init slab_sysfs_init(void)
5354{
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07005355 struct kmem_cache *s;
Christoph Lameter81819f02007-05-06 14:49:36 -07005356 int err;
5357
Christoph Lameter2bce6482010-07-19 11:39:11 -05005358 down_write(&slub_lock);
5359
Greg Kroah-Hartman0ff21e42007-11-06 10:36:58 -08005360 slab_kset = kset_create_and_add("slab", &slab_uevent_ops, kernel_kobj);
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06005361 if (!slab_kset) {
Christoph Lameter2bce6482010-07-19 11:39:11 -05005362 up_write(&slub_lock);
Christoph Lameter81819f02007-05-06 14:49:36 -07005363 printk(KERN_ERR "Cannot register slab subsystem.\n");
5364 return -ENOSYS;
5365 }
5366
Christoph Lameter26a7bd02007-05-09 02:32:39 -07005367 slab_state = SYSFS;
5368
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07005369 list_for_each_entry(s, &slab_caches, list) {
Christoph Lameter26a7bd02007-05-09 02:32:39 -07005370 err = sysfs_slab_add(s);
Christoph Lameter5d540fb2007-08-30 23:56:26 -07005371 if (err)
5372 printk(KERN_ERR "SLUB: Unable to add boot slab %s"
5373 " to sysfs\n", s->name);
Christoph Lameter26a7bd02007-05-09 02:32:39 -07005374 }
Christoph Lameter81819f02007-05-06 14:49:36 -07005375
5376 while (alias_list) {
5377 struct saved_alias *al = alias_list;
5378
5379 alias_list = alias_list->next;
5380 err = sysfs_slab_alias(al->s, al->name);
Christoph Lameter5d540fb2007-08-30 23:56:26 -07005381 if (err)
5382 printk(KERN_ERR "SLUB: Unable to add boot slab alias"
5383 " %s to sysfs\n", s->name);
Christoph Lameter81819f02007-05-06 14:49:36 -07005384 kfree(al);
5385 }
5386
Christoph Lameter2bce6482010-07-19 11:39:11 -05005387 up_write(&slub_lock);
Christoph Lameter81819f02007-05-06 14:49:36 -07005388 resiliency_test();
5389 return 0;
5390}
5391
5392__initcall(slab_sysfs_init);
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05005393#endif /* CONFIG_SYSFS */
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01005394
5395/*
5396 * The /proc/slabinfo ABI
5397 */
Linus Torvalds158a9622008-01-02 13:04:48 -08005398#ifdef CONFIG_SLABINFO
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01005399static void print_slabinfo_header(struct seq_file *m)
5400{
5401 seq_puts(m, "slabinfo - version: 2.1\n");
5402 seq_puts(m, "# name <active_objs> <num_objs> <objsize> "
5403 "<objperslab> <pagesperslab>");
5404 seq_puts(m, " : tunables <limit> <batchcount> <sharedfactor>");
5405 seq_puts(m, " : slabdata <active_slabs> <num_slabs> <sharedavail>");
5406 seq_putc(m, '\n');
5407}
5408
5409static void *s_start(struct seq_file *m, loff_t *pos)
5410{
5411 loff_t n = *pos;
5412
5413 down_read(&slub_lock);
5414 if (!n)
5415 print_slabinfo_header(m);
5416
5417 return seq_list_start(&slab_caches, *pos);
5418}
5419
5420static void *s_next(struct seq_file *m, void *p, loff_t *pos)
5421{
5422 return seq_list_next(p, &slab_caches, pos);
5423}
5424
5425static void s_stop(struct seq_file *m, void *p)
5426{
5427 up_read(&slub_lock);
5428}
5429
5430static int s_show(struct seq_file *m, void *p)
5431{
5432 unsigned long nr_partials = 0;
5433 unsigned long nr_slabs = 0;
5434 unsigned long nr_inuse = 0;
Christoph Lameter205ab992008-04-14 19:11:40 +03005435 unsigned long nr_objs = 0;
5436 unsigned long nr_free = 0;
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01005437 struct kmem_cache *s;
5438 int node;
5439
5440 s = list_entry(p, struct kmem_cache, list);
5441
5442 for_each_online_node(node) {
5443 struct kmem_cache_node *n = get_node(s, node);
5444
5445 if (!n)
5446 continue;
5447
5448 nr_partials += n->nr_partial;
5449 nr_slabs += atomic_long_read(&n->nr_slabs);
Christoph Lameter205ab992008-04-14 19:11:40 +03005450 nr_objs += atomic_long_read(&n->total_objects);
5451 nr_free += count_partial(n, count_free);
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01005452 }
5453
Christoph Lameter205ab992008-04-14 19:11:40 +03005454 nr_inuse = nr_objs - nr_free;
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01005455
5456 seq_printf(m, "%-17s %6lu %6lu %6u %4u %4d", s->name, nr_inuse,
Christoph Lameter834f3d12008-04-14 19:11:31 +03005457 nr_objs, s->size, oo_objects(s->oo),
5458 (1 << oo_order(s->oo)));
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01005459 seq_printf(m, " : tunables %4u %4u %4u", 0, 0, 0);
5460 seq_printf(m, " : slabdata %6lu %6lu %6lu", nr_slabs, nr_slabs,
5461 0UL);
5462 seq_putc(m, '\n');
5463 return 0;
5464}
5465
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04005466static const struct seq_operations slabinfo_op = {
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01005467 .start = s_start,
5468 .next = s_next,
5469 .stop = s_stop,
5470 .show = s_show,
5471};
5472
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04005473static int slabinfo_open(struct inode *inode, struct file *file)
5474{
5475 return seq_open(file, &slabinfo_op);
5476}
5477
5478static const struct file_operations proc_slabinfo_operations = {
5479 .open = slabinfo_open,
5480 .read = seq_read,
5481 .llseek = seq_lseek,
5482 .release = seq_release,
5483};
5484
5485static int __init slab_proc_init(void)
5486{
Vasiliy Kulikovab067e92011-09-27 21:54:53 +04005487 proc_create("slabinfo", S_IRUSR, NULL, &proc_slabinfo_operations);
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04005488 return 0;
5489}
5490module_init(slab_proc_init);
Linus Torvalds158a9622008-01-02 13:04:48 -08005491#endif /* CONFIG_SLABINFO */