blob: 1594b14e259727df24be074d8ab819c33ae019cb [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>
Christoph Lameter97d06602012-07-06 15:25:11 -050019#include "slab.h"
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +040020#include <linux/proc_fs.h>
Andrew Morton3ac38fa2013-04-29 15:08:06 -070021#include <linux/notifier.h>
Christoph Lameter81819f02007-05-06 14:49:36 -070022#include <linux/seq_file.h>
Vegard Nossum5a896d92008-04-04 00:54:48 +020023#include <linux/kmemcheck.h>
Christoph Lameter81819f02007-05-06 14:49:36 -070024#include <linux/cpu.h>
25#include <linux/cpuset.h>
26#include <linux/mempolicy.h>
27#include <linux/ctype.h>
Thomas Gleixner3ac7fe52008-04-30 00:55:01 -070028#include <linux/debugobjects.h>
Christoph Lameter81819f02007-05-06 14:49:36 -070029#include <linux/kallsyms.h>
Yasunori Gotob9049e22007-10-21 16:41:37 -070030#include <linux/memory.h>
Roman Zippelf8bd2252008-05-01 04:34:31 -070031#include <linux/math64.h>
Akinobu Mita773ff602008-12-23 19:37:01 +090032#include <linux/fault-inject.h>
Pekka Enbergbfa71452011-07-07 22:47:01 +030033#include <linux/stacktrace.h>
Christoph Lameter4de900b2012-01-30 15:53:51 -060034#include <linux/prefetch.h>
Glauber Costa2633d7a2012-12-18 14:22:34 -080035#include <linux/memcontrol.h>
Christoph Lameter81819f02007-05-06 14:49:36 -070036
Richard Kennedy4a923792010-10-21 10:29:19 +010037#include <trace/events/kmem.h>
38
Mel Gorman072bb0a2012-07-31 16:43:58 -070039#include "internal.h"
40
Christoph Lameter81819f02007-05-06 14:49:36 -070041/*
42 * Lock order:
Christoph Lameter18004c52012-07-06 15:25:12 -050043 * 1. slab_mutex (Global Mutex)
Christoph Lameter881db7f2011-06-01 12:25:53 -050044 * 2. node->list_lock
45 * 3. slab_lock(page) (Only on some arches and for debugging)
Christoph Lameter81819f02007-05-06 14:49:36 -070046 *
Christoph Lameter18004c52012-07-06 15:25:12 -050047 * slab_mutex
Christoph Lameter881db7f2011-06-01 12:25:53 -050048 *
Christoph Lameter18004c52012-07-06 15:25:12 -050049 * The role of the slab_mutex is to protect the list of all the slabs
Christoph Lameter881db7f2011-06-01 12:25:53 -050050 * and to synchronize major metadata changes to slab cache structures.
51 *
52 * The slab_lock is only used for debugging and on arches that do not
53 * have the ability to do a cmpxchg_double. It only protects the second
54 * double word in the page struct. Meaning
55 * A. page->freelist -> List of object free in a page
56 * B. page->counters -> Counters of objects
57 * C. page->frozen -> frozen state
58 *
59 * If a slab is frozen then it is exempt from list management. It is not
60 * on any list. The processor that froze the slab is the one who can
61 * perform list operations on the page. Other processors may put objects
62 * onto the freelist but the processor that froze the slab is the only
63 * one that can retrieve the objects from the page's freelist.
Christoph Lameter81819f02007-05-06 14:49:36 -070064 *
65 * The list_lock protects the partial and full list on each node and
66 * the partial slab counter. If taken then no new slabs may be added or
67 * removed from the lists nor make the number of partial slabs be modified.
68 * (Note that the total number of slabs is an atomic value that may be
69 * modified without taking the list lock).
70 *
71 * The list_lock is a centralized lock and thus we avoid taking it as
72 * much as possible. As long as SLUB does not have to handle partial
73 * slabs, operations can continue without any centralized lock. F.e.
74 * allocating a long series of objects that fill up slabs does not require
75 * the list lock.
Christoph Lameter81819f02007-05-06 14:49:36 -070076 * Interrupts are disabled during allocation and deallocation in order to
77 * make the slab allocator safe to use in the context of an irq. In addition
78 * interrupts are disabled to ensure that the processor does not change
79 * while handling per_cpu slabs, due to kernel preemption.
80 *
81 * SLUB assigns one slab for allocation to each processor.
82 * Allocations only occur from these slabs called cpu slabs.
83 *
Christoph Lameter672bba32007-05-09 02:32:39 -070084 * Slabs with free elements are kept on a partial list and during regular
85 * operations no list for full slabs is used. If an object in a full slab is
Christoph Lameter81819f02007-05-06 14:49:36 -070086 * freed then the slab will show up again on the partial lists.
Christoph Lameter672bba32007-05-09 02:32:39 -070087 * We track full slabs for debugging purposes though because otherwise we
88 * cannot scan all objects.
Christoph Lameter81819f02007-05-06 14:49:36 -070089 *
90 * Slabs are freed when they become empty. Teardown and setup is
91 * minimal so we rely on the page allocators per cpu caches for
92 * fast frees and allocs.
93 *
94 * Overloading of page flags that are otherwise used for LRU management.
95 *
Christoph Lameter4b6f0752007-05-16 22:10:53 -070096 * PageActive The slab is frozen and exempt from list processing.
97 * This means that the slab is dedicated to a purpose
98 * such as satisfying allocations for a specific
99 * processor. Objects may be freed in the slab while
100 * it is frozen but slab_free will then skip the usual
101 * list operations. It is up to the processor holding
102 * the slab to integrate the slab into the slab lists
103 * when the slab is no longer needed.
104 *
105 * One use of this flag is to mark slabs that are
106 * used for allocations. Then such a slab becomes a cpu
107 * slab. The cpu slab may be equipped with an additional
Christoph Lameterdfb4f092007-10-16 01:26:05 -0700108 * freelist that allows lockless access to
Christoph Lameter894b8782007-05-10 03:15:16 -0700109 * free objects in addition to the regular freelist
110 * that requires the slab lock.
Christoph Lameter81819f02007-05-06 14:49:36 -0700111 *
112 * PageError Slab requires special handling due to debug
113 * options set. This moves slab handling out of
Christoph Lameter894b8782007-05-10 03:15:16 -0700114 * the fast path and disables lockless freelists.
Christoph Lameter81819f02007-05-06 14:49:36 -0700115 */
116
Christoph Lameteraf537b02010-07-09 14:07:14 -0500117static inline int kmem_cache_debug(struct kmem_cache *s)
118{
Christoph Lameter5577bd82007-05-16 22:10:56 -0700119#ifdef CONFIG_SLUB_DEBUG
Christoph Lameteraf537b02010-07-09 14:07:14 -0500120 return unlikely(s->flags & SLAB_DEBUG_FLAGS);
Christoph Lameter5577bd82007-05-16 22:10:56 -0700121#else
Christoph Lameteraf537b02010-07-09 14:07:14 -0500122 return 0;
Christoph Lameter5577bd82007-05-16 22:10:56 -0700123#endif
Christoph Lameteraf537b02010-07-09 14:07:14 -0500124}
Christoph Lameter5577bd82007-05-16 22:10:56 -0700125
Joonsoo Kim345c9052013-06-19 14:05:52 +0900126static inline bool kmem_cache_has_cpu_partial(struct kmem_cache *s)
127{
128#ifdef CONFIG_SLUB_CPU_PARTIAL
129 return !kmem_cache_debug(s);
130#else
131 return false;
132#endif
133}
134
Christoph Lameter81819f02007-05-06 14:49:36 -0700135/*
136 * Issues still to be resolved:
137 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700138 * - Support PAGE_ALLOC_DEBUG. Should be easy to do.
139 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700140 * - Variable sizing of the per node arrays
141 */
142
143/* Enable to test recovery from slab corruption on boot */
144#undef SLUB_RESILIENCY_TEST
145
Christoph Lameterb789ef52011-06-01 12:25:49 -0500146/* Enable to log cmpxchg failures */
147#undef SLUB_DEBUG_CMPXCHG
148
Christoph Lameter81819f02007-05-06 14:49:36 -0700149/*
Christoph Lameter2086d262007-05-06 14:49:46 -0700150 * Mininum number of partial slabs. These will be left on the partial
151 * lists even if they are empty. kmem_cache_shrink may reclaim them.
152 */
Christoph Lameter76be8952007-12-21 14:37:37 -0800153#define MIN_PARTIAL 5
Christoph Lametere95eed52007-05-06 14:49:44 -0700154
Christoph Lameter2086d262007-05-06 14:49:46 -0700155/*
156 * Maximum number of desirable partial slabs.
157 * The existence of more partial slabs makes kmem_cache_shrink
Zhi Yong Wu721ae222013-11-08 20:47:37 +0800158 * sort the partial list by the number of objects in use.
Christoph Lameter2086d262007-05-06 14:49:46 -0700159 */
160#define MAX_PARTIAL 10
161
Christoph Lameter81819f02007-05-06 14:49:36 -0700162#define DEBUG_DEFAULT_FLAGS (SLAB_DEBUG_FREE | SLAB_RED_ZONE | \
163 SLAB_POISON | SLAB_STORE_USER)
Christoph Lameter672bba32007-05-09 02:32:39 -0700164
Christoph Lameter81819f02007-05-06 14:49:36 -0700165/*
David Rientjes3de47212009-07-27 18:30:35 -0700166 * Debugging flags that require metadata to be stored in the slab. These get
167 * disabled when slub_debug=O is used and a cache's min order increases with
168 * metadata.
David Rientjesfa5ec8a2009-07-07 00:14:14 -0700169 */
David Rientjes3de47212009-07-27 18:30:35 -0700170#define DEBUG_METADATA_FLAGS (SLAB_RED_ZONE | SLAB_POISON | SLAB_STORE_USER)
David Rientjesfa5ec8a2009-07-07 00:14:14 -0700171
172/*
Christoph Lameter81819f02007-05-06 14:49:36 -0700173 * Set of flags that will prevent slab merging
174 */
175#define SLUB_NEVER_MERGE (SLAB_RED_ZONE | SLAB_POISON | SLAB_STORE_USER | \
Dmitry Monakhov4c13dd32010-02-26 09:36:12 +0300176 SLAB_TRACE | SLAB_DESTROY_BY_RCU | SLAB_NOLEAKTRACE | \
177 SLAB_FAILSLAB)
Christoph Lameter81819f02007-05-06 14:49:36 -0700178
179#define SLUB_MERGE_SAME (SLAB_DEBUG_FREE | SLAB_RECLAIM_ACCOUNT | \
Vegard Nossum5a896d92008-04-04 00:54:48 +0200180 SLAB_CACHE_DMA | SLAB_NOTRACK)
Christoph Lameter81819f02007-05-06 14:49:36 -0700181
Cyrill Gorcunov210b5c02008-10-22 23:00:38 +0400182#define OO_SHIFT 16
183#define OO_MASK ((1 << OO_SHIFT) - 1)
Christoph Lameter50d5c412011-06-01 12:25:45 -0500184#define MAX_OBJS_PER_PAGE 32767 /* since page.objects is u15 */
Cyrill Gorcunov210b5c02008-10-22 23:00:38 +0400185
Christoph Lameter81819f02007-05-06 14:49:36 -0700186/* Internal SLUB flags */
Christoph Lameterf90ec392010-07-09 14:07:11 -0500187#define __OBJECT_POISON 0x80000000UL /* Poison object */
Christoph Lameterb789ef52011-06-01 12:25:49 -0500188#define __CMPXCHG_DOUBLE 0x40000000UL /* Use cmpxchg_double */
Christoph Lameter81819f02007-05-06 14:49:36 -0700189
Christoph Lameter81819f02007-05-06 14:49:36 -0700190#ifdef CONFIG_SMP
191static struct notifier_block slab_notifier;
192#endif
193
Christoph Lameter02cbc872007-05-09 02:32:43 -0700194/*
195 * Tracking user of a slab.
196 */
Ben Greeard6543e32011-07-07 11:36:36 -0700197#define TRACK_ADDRS_COUNT 16
Christoph Lameter02cbc872007-05-09 02:32:43 -0700198struct track {
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +0300199 unsigned long addr; /* Called from address */
Ben Greeard6543e32011-07-07 11:36:36 -0700200#ifdef CONFIG_STACKTRACE
201 unsigned long addrs[TRACK_ADDRS_COUNT]; /* Called from address */
202#endif
Christoph Lameter02cbc872007-05-09 02:32:43 -0700203 int cpu; /* Was running on cpu */
204 int pid; /* Pid context */
205 unsigned long when; /* When did the operation occur */
206};
207
208enum track_item { TRACK_ALLOC, TRACK_FREE };
209
Christoph Lameterab4d5ed2010-10-05 13:57:26 -0500210#ifdef CONFIG_SYSFS
Christoph Lameter81819f02007-05-06 14:49:36 -0700211static int sysfs_slab_add(struct kmem_cache *);
212static int sysfs_slab_alias(struct kmem_cache *, const char *);
Glauber Costa107dab52012-12-18 14:23:05 -0800213static void memcg_propagate_slab_attrs(struct kmem_cache *s);
Christoph Lameter81819f02007-05-06 14:49:36 -0700214#else
Christoph Lameter0c710012007-07-17 04:03:24 -0700215static inline int sysfs_slab_add(struct kmem_cache *s) { return 0; }
216static inline int sysfs_slab_alias(struct kmem_cache *s, const char *p)
217 { return 0; }
Glauber Costa107dab52012-12-18 14:23:05 -0800218static inline void memcg_propagate_slab_attrs(struct kmem_cache *s) { }
Christoph Lameter81819f02007-05-06 14:49:36 -0700219#endif
220
Christoph Lameter4fdccdf2011-03-22 13:35:00 -0500221static inline void stat(const struct kmem_cache *s, enum stat_item si)
Christoph Lameter8ff12cf2008-02-07 17:47:41 -0800222{
223#ifdef CONFIG_SLUB_STATS
Christoph Lameter88da03a2014-04-07 15:39:42 -0700224 /*
225 * The rmw is racy on a preemptible kernel but this is acceptable, so
226 * avoid this_cpu_add()'s irq-disable overhead.
227 */
228 raw_cpu_inc(s->cpu_slab->stat[si]);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -0800229#endif
230}
231
Christoph Lameter81819f02007-05-06 14:49:36 -0700232/********************************************************************
233 * Core slab cache functions
234 *******************************************************************/
235
Christoph Lameter81819f02007-05-06 14:49:36 -0700236static inline struct kmem_cache_node *get_node(struct kmem_cache *s, int node)
237{
Christoph Lameter81819f02007-05-06 14:49:36 -0700238 return s->node[node];
Christoph Lameter81819f02007-05-06 14:49:36 -0700239}
240
Christoph Lameter6446faa2008-02-15 23:45:26 -0800241/* Verify that a pointer has an address that is valid within a slab page */
Christoph Lameter02cbc872007-05-09 02:32:43 -0700242static inline int check_valid_pointer(struct kmem_cache *s,
243 struct page *page, const void *object)
244{
245 void *base;
246
Christoph Lametera973e9d2008-03-01 13:40:44 -0800247 if (!object)
Christoph Lameter02cbc872007-05-09 02:32:43 -0700248 return 1;
249
Christoph Lametera973e9d2008-03-01 13:40:44 -0800250 base = page_address(page);
Christoph Lameter39b26462008-04-14 19:11:30 +0300251 if (object < base || object >= base + page->objects * s->size ||
Christoph Lameter02cbc872007-05-09 02:32:43 -0700252 (object - base) % s->size) {
253 return 0;
254 }
255
256 return 1;
257}
258
Christoph Lameter7656c722007-05-09 02:32:40 -0700259static inline void *get_freepointer(struct kmem_cache *s, void *object)
260{
261 return *(void **)(object + s->offset);
262}
263
Eric Dumazet0ad95002011-12-16 16:25:34 +0100264static void prefetch_freepointer(const struct kmem_cache *s, void *object)
265{
266 prefetch(object + s->offset);
267}
268
Christoph Lameter1393d9a2011-05-16 15:26:08 -0500269static inline void *get_freepointer_safe(struct kmem_cache *s, void *object)
270{
271 void *p;
272
273#ifdef CONFIG_DEBUG_PAGEALLOC
274 probe_kernel_read(&p, (void **)(object + s->offset), sizeof(p));
275#else
276 p = get_freepointer(s, object);
277#endif
278 return p;
279}
280
Christoph Lameter7656c722007-05-09 02:32:40 -0700281static inline void set_freepointer(struct kmem_cache *s, void *object, void *fp)
282{
283 *(void **)(object + s->offset) = fp;
284}
285
286/* Loop over all objects in a slab */
Christoph Lameter224a88b2008-04-14 19:11:31 +0300287#define for_each_object(__p, __s, __addr, __objects) \
288 for (__p = (__addr); __p < (__addr) + (__objects) * (__s)->size;\
Christoph Lameter7656c722007-05-09 02:32:40 -0700289 __p += (__s)->size)
290
Christoph Lameter7656c722007-05-09 02:32:40 -0700291/* Determine object index from a given position */
292static inline int slab_index(void *p, struct kmem_cache *s, void *addr)
293{
294 return (p - addr) / s->size;
295}
296
Mariusz Kozlowskid71f6062011-02-26 20:10:26 +0100297static inline size_t slab_ksize(const struct kmem_cache *s)
298{
299#ifdef CONFIG_SLUB_DEBUG
300 /*
301 * Debugging requires use of the padding between object
302 * and whatever may come after it.
303 */
304 if (s->flags & (SLAB_RED_ZONE | SLAB_POISON))
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500305 return s->object_size;
Mariusz Kozlowskid71f6062011-02-26 20:10:26 +0100306
307#endif
308 /*
309 * If we have the need to store the freelist pointer
310 * back there or track user information then we can
311 * only use the space before that information.
312 */
313 if (s->flags & (SLAB_DESTROY_BY_RCU | SLAB_STORE_USER))
314 return s->inuse;
315 /*
316 * Else we can use all the padding etc for the allocation
317 */
318 return s->size;
319}
320
Lai Jiangshanab9a0f12011-03-10 15:21:48 +0800321static inline int order_objects(int order, unsigned long size, int reserved)
322{
323 return ((PAGE_SIZE << order) - reserved) / size;
324}
325
Christoph Lameter834f3d12008-04-14 19:11:31 +0300326static inline struct kmem_cache_order_objects oo_make(int order,
Lai Jiangshanab9a0f12011-03-10 15:21:48 +0800327 unsigned long size, int reserved)
Christoph Lameter834f3d12008-04-14 19:11:31 +0300328{
329 struct kmem_cache_order_objects x = {
Lai Jiangshanab9a0f12011-03-10 15:21:48 +0800330 (order << OO_SHIFT) + order_objects(order, size, reserved)
Christoph Lameter834f3d12008-04-14 19:11:31 +0300331 };
332
333 return x;
334}
335
336static inline int oo_order(struct kmem_cache_order_objects x)
337{
Cyrill Gorcunov210b5c02008-10-22 23:00:38 +0400338 return x.x >> OO_SHIFT;
Christoph Lameter834f3d12008-04-14 19:11:31 +0300339}
340
341static inline int oo_objects(struct kmem_cache_order_objects x)
342{
Cyrill Gorcunov210b5c02008-10-22 23:00:38 +0400343 return x.x & OO_MASK;
Christoph Lameter834f3d12008-04-14 19:11:31 +0300344}
345
Christoph Lameter881db7f2011-06-01 12:25:53 -0500346/*
347 * Per slab locking using the pagelock
348 */
349static __always_inline void slab_lock(struct page *page)
350{
351 bit_spin_lock(PG_locked, &page->flags);
352}
353
354static __always_inline void slab_unlock(struct page *page)
355{
356 __bit_spin_unlock(PG_locked, &page->flags);
357}
358
Dave Hansena0320862014-01-30 15:46:09 -0800359static inline void set_page_slub_counters(struct page *page, unsigned long counters_new)
360{
361 struct page tmp;
362 tmp.counters = counters_new;
363 /*
364 * page->counters can cover frozen/inuse/objects as well
365 * as page->_count. If we assign to ->counters directly
366 * we run the risk of losing updates to page->_count, so
367 * be careful and only assign to the fields we need.
368 */
369 page->frozen = tmp.frozen;
370 page->inuse = tmp.inuse;
371 page->objects = tmp.objects;
372}
373
Christoph Lameter1d071712011-07-14 12:49:12 -0500374/* Interrupts must be disabled (for the fallback code to work right) */
375static inline bool __cmpxchg_double_slab(struct kmem_cache *s, struct page *page,
Christoph Lameterb789ef52011-06-01 12:25:49 -0500376 void *freelist_old, unsigned long counters_old,
377 void *freelist_new, unsigned long counters_new,
378 const char *n)
379{
Christoph Lameter1d071712011-07-14 12:49:12 -0500380 VM_BUG_ON(!irqs_disabled());
Heiko Carstens25654092012-01-12 17:17:33 -0800381#if defined(CONFIG_HAVE_CMPXCHG_DOUBLE) && \
382 defined(CONFIG_HAVE_ALIGNED_STRUCT_PAGE)
Christoph Lameterb789ef52011-06-01 12:25:49 -0500383 if (s->flags & __CMPXCHG_DOUBLE) {
Jan Beulichcdcd6292012-01-02 17:02:18 +0000384 if (cmpxchg_double(&page->freelist, &page->counters,
Christoph Lameterb789ef52011-06-01 12:25:49 -0500385 freelist_old, counters_old,
386 freelist_new, counters_new))
387 return 1;
388 } else
389#endif
390 {
Christoph Lameter881db7f2011-06-01 12:25:53 -0500391 slab_lock(page);
Chen Gangd0e0ac92013-07-15 09:05:29 +0800392 if (page->freelist == freelist_old &&
393 page->counters == counters_old) {
Christoph Lameterb789ef52011-06-01 12:25:49 -0500394 page->freelist = freelist_new;
Dave Hansena0320862014-01-30 15:46:09 -0800395 set_page_slub_counters(page, counters_new);
Christoph Lameter881db7f2011-06-01 12:25:53 -0500396 slab_unlock(page);
Christoph Lameterb789ef52011-06-01 12:25:49 -0500397 return 1;
398 }
Christoph Lameter881db7f2011-06-01 12:25:53 -0500399 slab_unlock(page);
Christoph Lameterb789ef52011-06-01 12:25:49 -0500400 }
401
402 cpu_relax();
403 stat(s, CMPXCHG_DOUBLE_FAIL);
404
405#ifdef SLUB_DEBUG_CMPXCHG
Fabian Frederickf9f58282014-06-04 16:06:34 -0700406 pr_info("%s %s: cmpxchg double redo ", n, s->name);
Christoph Lameterb789ef52011-06-01 12:25:49 -0500407#endif
408
409 return 0;
410}
411
Christoph Lameter1d071712011-07-14 12:49:12 -0500412static inline bool cmpxchg_double_slab(struct kmem_cache *s, struct page *page,
413 void *freelist_old, unsigned long counters_old,
414 void *freelist_new, unsigned long counters_new,
415 const char *n)
416{
Heiko Carstens25654092012-01-12 17:17:33 -0800417#if defined(CONFIG_HAVE_CMPXCHG_DOUBLE) && \
418 defined(CONFIG_HAVE_ALIGNED_STRUCT_PAGE)
Christoph Lameter1d071712011-07-14 12:49:12 -0500419 if (s->flags & __CMPXCHG_DOUBLE) {
Jan Beulichcdcd6292012-01-02 17:02:18 +0000420 if (cmpxchg_double(&page->freelist, &page->counters,
Christoph Lameter1d071712011-07-14 12:49:12 -0500421 freelist_old, counters_old,
422 freelist_new, counters_new))
423 return 1;
424 } else
425#endif
426 {
427 unsigned long flags;
428
429 local_irq_save(flags);
430 slab_lock(page);
Chen Gangd0e0ac92013-07-15 09:05:29 +0800431 if (page->freelist == freelist_old &&
432 page->counters == counters_old) {
Christoph Lameter1d071712011-07-14 12:49:12 -0500433 page->freelist = freelist_new;
Dave Hansena0320862014-01-30 15:46:09 -0800434 set_page_slub_counters(page, counters_new);
Christoph Lameter1d071712011-07-14 12:49:12 -0500435 slab_unlock(page);
436 local_irq_restore(flags);
437 return 1;
438 }
439 slab_unlock(page);
440 local_irq_restore(flags);
441 }
442
443 cpu_relax();
444 stat(s, CMPXCHG_DOUBLE_FAIL);
445
446#ifdef SLUB_DEBUG_CMPXCHG
Fabian Frederickf9f58282014-06-04 16:06:34 -0700447 pr_info("%s %s: cmpxchg double redo ", n, s->name);
Christoph Lameter1d071712011-07-14 12:49:12 -0500448#endif
449
450 return 0;
451}
452
Christoph Lameter41ecc552007-05-09 02:32:44 -0700453#ifdef CONFIG_SLUB_DEBUG
454/*
Christoph Lameter5f80b132011-04-15 14:48:13 -0500455 * Determine a map of object in use on a page.
456 *
Christoph Lameter881db7f2011-06-01 12:25:53 -0500457 * Node listlock must be held to guarantee that the page does
Christoph Lameter5f80b132011-04-15 14:48:13 -0500458 * not vanish from under us.
459 */
460static void get_map(struct kmem_cache *s, struct page *page, unsigned long *map)
461{
462 void *p;
463 void *addr = page_address(page);
464
465 for (p = page->freelist; p; p = get_freepointer(s, p))
466 set_bit(slab_index(p, s, addr), map);
467}
468
Christoph Lameter41ecc552007-05-09 02:32:44 -0700469/*
470 * Debug settings:
471 */
Christoph Lameterf0630ff2007-07-15 23:38:14 -0700472#ifdef CONFIG_SLUB_DEBUG_ON
473static int slub_debug = DEBUG_DEFAULT_FLAGS;
474#else
Christoph Lameter41ecc552007-05-09 02:32:44 -0700475static int slub_debug;
Christoph Lameterf0630ff2007-07-15 23:38:14 -0700476#endif
Christoph Lameter41ecc552007-05-09 02:32:44 -0700477
478static char *slub_debug_slabs;
David Rientjesfa5ec8a2009-07-07 00:14:14 -0700479static int disable_higher_order_debug;
Christoph Lameter41ecc552007-05-09 02:32:44 -0700480
Christoph Lameter7656c722007-05-09 02:32:40 -0700481/*
Christoph Lameter81819f02007-05-06 14:49:36 -0700482 * Object debugging
483 */
484static void print_section(char *text, u8 *addr, unsigned int length)
485{
Sebastian Andrzej Siewiorffc79d22011-07-29 14:10:20 +0200486 print_hex_dump(KERN_ERR, text, DUMP_PREFIX_ADDRESS, 16, 1, addr,
487 length, 1);
Christoph Lameter81819f02007-05-06 14:49:36 -0700488}
489
Christoph Lameter81819f02007-05-06 14:49:36 -0700490static struct track *get_track(struct kmem_cache *s, void *object,
491 enum track_item alloc)
492{
493 struct track *p;
494
495 if (s->offset)
496 p = object + s->offset + sizeof(void *);
497 else
498 p = object + s->inuse;
499
500 return p + alloc;
501}
502
503static void set_track(struct kmem_cache *s, void *object,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +0300504 enum track_item alloc, unsigned long addr)
Christoph Lameter81819f02007-05-06 14:49:36 -0700505{
Akinobu Mita1a00df42009-03-07 00:36:21 +0900506 struct track *p = get_track(s, object, alloc);
Christoph Lameter81819f02007-05-06 14:49:36 -0700507
Christoph Lameter81819f02007-05-06 14:49:36 -0700508 if (addr) {
Ben Greeard6543e32011-07-07 11:36:36 -0700509#ifdef CONFIG_STACKTRACE
510 struct stack_trace trace;
511 int i;
512
513 trace.nr_entries = 0;
514 trace.max_entries = TRACK_ADDRS_COUNT;
515 trace.entries = p->addrs;
516 trace.skip = 3;
517 save_stack_trace(&trace);
518
519 /* See rant in lockdep.c */
520 if (trace.nr_entries != 0 &&
521 trace.entries[trace.nr_entries - 1] == ULONG_MAX)
522 trace.nr_entries--;
523
524 for (i = trace.nr_entries; i < TRACK_ADDRS_COUNT; i++)
525 p->addrs[i] = 0;
526#endif
Christoph Lameter81819f02007-05-06 14:49:36 -0700527 p->addr = addr;
528 p->cpu = smp_processor_id();
Alexey Dobriyan88e4ccf2008-06-23 02:58:37 +0400529 p->pid = current->pid;
Christoph Lameter81819f02007-05-06 14:49:36 -0700530 p->when = jiffies;
531 } else
532 memset(p, 0, sizeof(struct track));
533}
534
Christoph Lameter81819f02007-05-06 14:49:36 -0700535static void init_tracking(struct kmem_cache *s, void *object)
536{
Christoph Lameter24922682007-07-17 04:03:18 -0700537 if (!(s->flags & SLAB_STORE_USER))
538 return;
539
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +0300540 set_track(s, object, TRACK_FREE, 0UL);
541 set_track(s, object, TRACK_ALLOC, 0UL);
Christoph Lameter81819f02007-05-06 14:49:36 -0700542}
543
544static void print_track(const char *s, struct track *t)
545{
546 if (!t->addr)
547 return;
548
Fabian Frederickf9f58282014-06-04 16:06:34 -0700549 pr_err("INFO: %s in %pS age=%lu cpu=%u pid=%d\n",
550 s, (void *)t->addr, jiffies - t->when, t->cpu, t->pid);
Ben Greeard6543e32011-07-07 11:36:36 -0700551#ifdef CONFIG_STACKTRACE
552 {
553 int i;
554 for (i = 0; i < TRACK_ADDRS_COUNT; i++)
555 if (t->addrs[i])
Fabian Frederickf9f58282014-06-04 16:06:34 -0700556 pr_err("\t%pS\n", (void *)t->addrs[i]);
Ben Greeard6543e32011-07-07 11:36:36 -0700557 else
558 break;
559 }
560#endif
Christoph Lameter81819f02007-05-06 14:49:36 -0700561}
562
Christoph Lameter24922682007-07-17 04:03:18 -0700563static void print_tracking(struct kmem_cache *s, void *object)
564{
565 if (!(s->flags & SLAB_STORE_USER))
566 return;
567
568 print_track("Allocated", get_track(s, object, TRACK_ALLOC));
569 print_track("Freed", get_track(s, object, TRACK_FREE));
570}
571
572static void print_page_info(struct page *page)
573{
Fabian Frederickf9f58282014-06-04 16:06:34 -0700574 pr_err("INFO: Slab 0x%p objects=%u used=%u fp=0x%p flags=0x%04lx\n",
Chen Gangd0e0ac92013-07-15 09:05:29 +0800575 page, page->objects, page->inuse, page->freelist, page->flags);
Christoph Lameter24922682007-07-17 04:03:18 -0700576
577}
578
579static void slab_bug(struct kmem_cache *s, char *fmt, ...)
580{
581 va_list args;
582 char buf[100];
583
584 va_start(args, fmt);
585 vsnprintf(buf, sizeof(buf), fmt, args);
586 va_end(args);
Fabian Frederickf9f58282014-06-04 16:06:34 -0700587 pr_err("=============================================================================\n");
588 pr_err("BUG %s (%s): %s\n", s->name, print_tainted(), buf);
589 pr_err("-----------------------------------------------------------------------------\n\n");
Dave Jones645df232012-09-18 15:54:12 -0400590
Rusty Russell373d4d02013-01-21 17:17:39 +1030591 add_taint(TAINT_BAD_PAGE, LOCKDEP_NOW_UNRELIABLE);
Christoph Lameter24922682007-07-17 04:03:18 -0700592}
593
594static void slab_fix(struct kmem_cache *s, char *fmt, ...)
595{
596 va_list args;
597 char buf[100];
598
599 va_start(args, fmt);
600 vsnprintf(buf, sizeof(buf), fmt, args);
601 va_end(args);
Fabian Frederickf9f58282014-06-04 16:06:34 -0700602 pr_err("FIX %s: %s\n", s->name, buf);
Christoph Lameter24922682007-07-17 04:03:18 -0700603}
604
605static void print_trailer(struct kmem_cache *s, struct page *page, u8 *p)
Christoph Lameter81819f02007-05-06 14:49:36 -0700606{
607 unsigned int off; /* Offset of last byte */
Christoph Lametera973e9d2008-03-01 13:40:44 -0800608 u8 *addr = page_address(page);
Christoph Lameter24922682007-07-17 04:03:18 -0700609
610 print_tracking(s, p);
611
612 print_page_info(page);
613
Fabian Frederickf9f58282014-06-04 16:06:34 -0700614 pr_err("INFO: Object 0x%p @offset=%tu fp=0x%p\n\n",
615 p, p - addr, get_freepointer(s, p));
Christoph Lameter24922682007-07-17 04:03:18 -0700616
617 if (p > addr + 16)
Sebastian Andrzej Siewiorffc79d22011-07-29 14:10:20 +0200618 print_section("Bytes b4 ", p - 16, 16);
Christoph Lameter24922682007-07-17 04:03:18 -0700619
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500620 print_section("Object ", p, min_t(unsigned long, s->object_size,
Sebastian Andrzej Siewiorffc79d22011-07-29 14:10:20 +0200621 PAGE_SIZE));
Christoph Lameter81819f02007-05-06 14:49:36 -0700622 if (s->flags & SLAB_RED_ZONE)
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500623 print_section("Redzone ", p + s->object_size,
624 s->inuse - s->object_size);
Christoph Lameter81819f02007-05-06 14:49:36 -0700625
Christoph Lameter81819f02007-05-06 14:49:36 -0700626 if (s->offset)
627 off = s->offset + sizeof(void *);
628 else
629 off = s->inuse;
630
Christoph Lameter24922682007-07-17 04:03:18 -0700631 if (s->flags & SLAB_STORE_USER)
Christoph Lameter81819f02007-05-06 14:49:36 -0700632 off += 2 * sizeof(struct track);
Christoph Lameter81819f02007-05-06 14:49:36 -0700633
634 if (off != s->size)
635 /* Beginning of the filler is the free pointer */
Sebastian Andrzej Siewiorffc79d22011-07-29 14:10:20 +0200636 print_section("Padding ", p + off, s->size - off);
Christoph Lameter24922682007-07-17 04:03:18 -0700637
638 dump_stack();
Christoph Lameter81819f02007-05-06 14:49:36 -0700639}
640
641static void object_err(struct kmem_cache *s, struct page *page,
642 u8 *object, char *reason)
643{
Christoph Lameter3dc50632008-04-23 12:28:01 -0700644 slab_bug(s, "%s", reason);
Christoph Lameter24922682007-07-17 04:03:18 -0700645 print_trailer(s, page, object);
Christoph Lameter81819f02007-05-06 14:49:36 -0700646}
647
Chen Gangd0e0ac92013-07-15 09:05:29 +0800648static void slab_err(struct kmem_cache *s, struct page *page,
649 const char *fmt, ...)
Christoph Lameter81819f02007-05-06 14:49:36 -0700650{
651 va_list args;
652 char buf[100];
653
Christoph Lameter24922682007-07-17 04:03:18 -0700654 va_start(args, fmt);
655 vsnprintf(buf, sizeof(buf), fmt, args);
Christoph Lameter81819f02007-05-06 14:49:36 -0700656 va_end(args);
Christoph Lameter3dc50632008-04-23 12:28:01 -0700657 slab_bug(s, "%s", buf);
Christoph Lameter24922682007-07-17 04:03:18 -0700658 print_page_info(page);
Christoph Lameter81819f02007-05-06 14:49:36 -0700659 dump_stack();
660}
661
Christoph Lameterf7cb1932010-09-29 07:15:01 -0500662static void init_object(struct kmem_cache *s, void *object, u8 val)
Christoph Lameter81819f02007-05-06 14:49:36 -0700663{
664 u8 *p = object;
665
666 if (s->flags & __OBJECT_POISON) {
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500667 memset(p, POISON_FREE, s->object_size - 1);
668 p[s->object_size - 1] = POISON_END;
Christoph Lameter81819f02007-05-06 14:49:36 -0700669 }
670
671 if (s->flags & SLAB_RED_ZONE)
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500672 memset(p + s->object_size, val, s->inuse - s->object_size);
Christoph Lameter81819f02007-05-06 14:49:36 -0700673}
674
Christoph Lameter24922682007-07-17 04:03:18 -0700675static void restore_bytes(struct kmem_cache *s, char *message, u8 data,
676 void *from, void *to)
677{
678 slab_fix(s, "Restoring 0x%p-0x%p=0x%x\n", from, to - 1, data);
679 memset(from, data, to - from);
680}
681
682static int check_bytes_and_report(struct kmem_cache *s, struct page *page,
683 u8 *object, char *what,
Pekka Enberg06428782008-01-07 23:20:27 -0800684 u8 *start, unsigned int value, unsigned int bytes)
Christoph Lameter24922682007-07-17 04:03:18 -0700685{
686 u8 *fault;
687 u8 *end;
688
Akinobu Mita798248202011-10-31 17:08:07 -0700689 fault = memchr_inv(start, value, bytes);
Christoph Lameter24922682007-07-17 04:03:18 -0700690 if (!fault)
691 return 1;
692
693 end = start + bytes;
694 while (end > fault && end[-1] == value)
695 end--;
696
697 slab_bug(s, "%s overwritten", what);
Fabian Frederickf9f58282014-06-04 16:06:34 -0700698 pr_err("INFO: 0x%p-0x%p. First byte 0x%x instead of 0x%x\n",
Christoph Lameter24922682007-07-17 04:03:18 -0700699 fault, end - 1, fault[0], value);
700 print_trailer(s, page, object);
701
702 restore_bytes(s, what, value, fault, end);
703 return 0;
Christoph Lameter81819f02007-05-06 14:49:36 -0700704}
705
Christoph Lameter81819f02007-05-06 14:49:36 -0700706/*
707 * Object layout:
708 *
709 * object address
710 * Bytes of the object to be managed.
711 * If the freepointer may overlay the object then the free
712 * pointer is the first word of the object.
Christoph Lameter672bba32007-05-09 02:32:39 -0700713 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700714 * Poisoning uses 0x6b (POISON_FREE) and the last byte is
715 * 0xa5 (POISON_END)
716 *
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500717 * object + s->object_size
Christoph Lameter81819f02007-05-06 14:49:36 -0700718 * Padding to reach word boundary. This is also used for Redzoning.
Christoph Lameter672bba32007-05-09 02:32:39 -0700719 * Padding is extended by another word if Redzoning is enabled and
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500720 * object_size == inuse.
Christoph Lameter672bba32007-05-09 02:32:39 -0700721 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700722 * We fill with 0xbb (RED_INACTIVE) for inactive objects and with
723 * 0xcc (RED_ACTIVE) for objects in use.
724 *
725 * object + s->inuse
Christoph Lameter672bba32007-05-09 02:32:39 -0700726 * Meta data starts here.
727 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700728 * A. Free pointer (if we cannot overwrite object on free)
729 * B. Tracking data for SLAB_STORE_USER
Christoph Lameter672bba32007-05-09 02:32:39 -0700730 * C. Padding to reach required alignment boundary or at mininum
Christoph Lameter6446faa2008-02-15 23:45:26 -0800731 * one word if debugging is on to be able to detect writes
Christoph Lameter672bba32007-05-09 02:32:39 -0700732 * before the word boundary.
733 *
734 * Padding is done using 0x5a (POISON_INUSE)
Christoph Lameter81819f02007-05-06 14:49:36 -0700735 *
736 * object + s->size
Christoph Lameter672bba32007-05-09 02:32:39 -0700737 * Nothing is used beyond s->size.
Christoph Lameter81819f02007-05-06 14:49:36 -0700738 *
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500739 * If slabcaches are merged then the object_size and inuse boundaries are mostly
Christoph Lameter672bba32007-05-09 02:32:39 -0700740 * ignored. And therefore no slab options that rely on these boundaries
Christoph Lameter81819f02007-05-06 14:49:36 -0700741 * may be used with merged slabcaches.
742 */
743
Christoph Lameter81819f02007-05-06 14:49:36 -0700744static int check_pad_bytes(struct kmem_cache *s, struct page *page, u8 *p)
745{
746 unsigned long off = s->inuse; /* The end of info */
747
748 if (s->offset)
749 /* Freepointer is placed after the object. */
750 off += sizeof(void *);
751
752 if (s->flags & SLAB_STORE_USER)
753 /* We also have user information there */
754 off += 2 * sizeof(struct track);
755
756 if (s->size == off)
757 return 1;
758
Christoph Lameter24922682007-07-17 04:03:18 -0700759 return check_bytes_and_report(s, page, p, "Object padding",
760 p + off, POISON_INUSE, s->size - off);
Christoph Lameter81819f02007-05-06 14:49:36 -0700761}
762
Christoph Lameter39b26462008-04-14 19:11:30 +0300763/* Check the pad bytes at the end of a slab page */
Christoph Lameter81819f02007-05-06 14:49:36 -0700764static int slab_pad_check(struct kmem_cache *s, struct page *page)
765{
Christoph Lameter24922682007-07-17 04:03:18 -0700766 u8 *start;
767 u8 *fault;
768 u8 *end;
769 int length;
770 int remainder;
Christoph Lameter81819f02007-05-06 14:49:36 -0700771
772 if (!(s->flags & SLAB_POISON))
773 return 1;
774
Christoph Lametera973e9d2008-03-01 13:40:44 -0800775 start = page_address(page);
Lai Jiangshanab9a0f12011-03-10 15:21:48 +0800776 length = (PAGE_SIZE << compound_order(page)) - s->reserved;
Christoph Lameter39b26462008-04-14 19:11:30 +0300777 end = start + length;
778 remainder = length % s->size;
Christoph Lameter81819f02007-05-06 14:49:36 -0700779 if (!remainder)
780 return 1;
781
Akinobu Mita798248202011-10-31 17:08:07 -0700782 fault = memchr_inv(end - remainder, POISON_INUSE, remainder);
Christoph Lameter24922682007-07-17 04:03:18 -0700783 if (!fault)
784 return 1;
785 while (end > fault && end[-1] == POISON_INUSE)
786 end--;
787
788 slab_err(s, page, "Padding overwritten. 0x%p-0x%p", fault, end - 1);
Sebastian Andrzej Siewiorffc79d22011-07-29 14:10:20 +0200789 print_section("Padding ", end - remainder, remainder);
Christoph Lameter24922682007-07-17 04:03:18 -0700790
Eric Dumazet8a3d2712009-09-03 16:08:06 +0200791 restore_bytes(s, "slab padding", POISON_INUSE, end - remainder, end);
Christoph Lameter24922682007-07-17 04:03:18 -0700792 return 0;
Christoph Lameter81819f02007-05-06 14:49:36 -0700793}
794
795static int check_object(struct kmem_cache *s, struct page *page,
Christoph Lameterf7cb1932010-09-29 07:15:01 -0500796 void *object, u8 val)
Christoph Lameter81819f02007-05-06 14:49:36 -0700797{
798 u8 *p = object;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500799 u8 *endobject = object + s->object_size;
Christoph Lameter81819f02007-05-06 14:49:36 -0700800
801 if (s->flags & SLAB_RED_ZONE) {
Christoph Lameter24922682007-07-17 04:03:18 -0700802 if (!check_bytes_and_report(s, page, object, "Redzone",
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500803 endobject, val, s->inuse - s->object_size))
Christoph Lameter81819f02007-05-06 14:49:36 -0700804 return 0;
Christoph Lameter81819f02007-05-06 14:49:36 -0700805 } else {
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500806 if ((s->flags & SLAB_POISON) && s->object_size < s->inuse) {
Ingo Molnar3adbefe2008-02-05 17:57:39 -0800807 check_bytes_and_report(s, page, p, "Alignment padding",
Chen Gangd0e0ac92013-07-15 09:05:29 +0800808 endobject, POISON_INUSE,
809 s->inuse - s->object_size);
Ingo Molnar3adbefe2008-02-05 17:57:39 -0800810 }
Christoph Lameter81819f02007-05-06 14:49:36 -0700811 }
812
813 if (s->flags & SLAB_POISON) {
Christoph Lameterf7cb1932010-09-29 07:15:01 -0500814 if (val != SLUB_RED_ACTIVE && (s->flags & __OBJECT_POISON) &&
Christoph Lameter24922682007-07-17 04:03:18 -0700815 (!check_bytes_and_report(s, page, p, "Poison", p,
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500816 POISON_FREE, s->object_size - 1) ||
Christoph Lameter24922682007-07-17 04:03:18 -0700817 !check_bytes_and_report(s, page, p, "Poison",
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500818 p + s->object_size - 1, POISON_END, 1)))
Christoph Lameter81819f02007-05-06 14:49:36 -0700819 return 0;
Christoph Lameter81819f02007-05-06 14:49:36 -0700820 /*
821 * check_pad_bytes cleans up on its own.
822 */
823 check_pad_bytes(s, page, p);
824 }
825
Christoph Lameterf7cb1932010-09-29 07:15:01 -0500826 if (!s->offset && val == SLUB_RED_ACTIVE)
Christoph Lameter81819f02007-05-06 14:49:36 -0700827 /*
828 * Object and freepointer overlap. Cannot check
829 * freepointer while object is allocated.
830 */
831 return 1;
832
833 /* Check free pointer validity */
834 if (!check_valid_pointer(s, page, get_freepointer(s, p))) {
835 object_err(s, page, p, "Freepointer corrupt");
836 /*
Nick Andrew9f6c708e2008-12-05 14:08:08 +1100837 * No choice but to zap it and thus lose the remainder
Christoph Lameter81819f02007-05-06 14:49:36 -0700838 * of the free objects in this slab. May cause
Christoph Lameter672bba32007-05-09 02:32:39 -0700839 * another error because the object count is now wrong.
Christoph Lameter81819f02007-05-06 14:49:36 -0700840 */
Christoph Lametera973e9d2008-03-01 13:40:44 -0800841 set_freepointer(s, p, NULL);
Christoph Lameter81819f02007-05-06 14:49:36 -0700842 return 0;
843 }
844 return 1;
845}
846
847static int check_slab(struct kmem_cache *s, struct page *page)
848{
Christoph Lameter39b26462008-04-14 19:11:30 +0300849 int maxobj;
850
Christoph Lameter81819f02007-05-06 14:49:36 -0700851 VM_BUG_ON(!irqs_disabled());
852
853 if (!PageSlab(page)) {
Christoph Lameter24922682007-07-17 04:03:18 -0700854 slab_err(s, page, "Not a valid slab page");
Christoph Lameter81819f02007-05-06 14:49:36 -0700855 return 0;
856 }
Christoph Lameter39b26462008-04-14 19:11:30 +0300857
Lai Jiangshanab9a0f12011-03-10 15:21:48 +0800858 maxobj = order_objects(compound_order(page), s->size, s->reserved);
Christoph Lameter39b26462008-04-14 19:11:30 +0300859 if (page->objects > maxobj) {
860 slab_err(s, page, "objects %u > max %u",
861 s->name, page->objects, maxobj);
862 return 0;
863 }
864 if (page->inuse > page->objects) {
Christoph Lameter24922682007-07-17 04:03:18 -0700865 slab_err(s, page, "inuse %u > max %u",
Christoph Lameter39b26462008-04-14 19:11:30 +0300866 s->name, page->inuse, page->objects);
Christoph Lameter81819f02007-05-06 14:49:36 -0700867 return 0;
868 }
869 /* Slab_pad_check fixes things up after itself */
870 slab_pad_check(s, page);
871 return 1;
872}
873
874/*
Christoph Lameter672bba32007-05-09 02:32:39 -0700875 * Determine if a certain object on a page is on the freelist. Must hold the
876 * slab lock to guarantee that the chains are in a consistent state.
Christoph Lameter81819f02007-05-06 14:49:36 -0700877 */
878static int on_freelist(struct kmem_cache *s, struct page *page, void *search)
879{
880 int nr = 0;
Christoph Lameter881db7f2011-06-01 12:25:53 -0500881 void *fp;
Christoph Lameter81819f02007-05-06 14:49:36 -0700882 void *object = NULL;
Christoph Lameter224a88b2008-04-14 19:11:31 +0300883 unsigned long max_objects;
Christoph Lameter81819f02007-05-06 14:49:36 -0700884
Christoph Lameter881db7f2011-06-01 12:25:53 -0500885 fp = page->freelist;
Christoph Lameter39b26462008-04-14 19:11:30 +0300886 while (fp && nr <= page->objects) {
Christoph Lameter81819f02007-05-06 14:49:36 -0700887 if (fp == search)
888 return 1;
889 if (!check_valid_pointer(s, page, fp)) {
890 if (object) {
891 object_err(s, page, object,
892 "Freechain corrupt");
Christoph Lametera973e9d2008-03-01 13:40:44 -0800893 set_freepointer(s, object, NULL);
Christoph Lameter81819f02007-05-06 14:49:36 -0700894 } else {
Christoph Lameter24922682007-07-17 04:03:18 -0700895 slab_err(s, page, "Freepointer corrupt");
Christoph Lametera973e9d2008-03-01 13:40:44 -0800896 page->freelist = NULL;
Christoph Lameter39b26462008-04-14 19:11:30 +0300897 page->inuse = page->objects;
Christoph Lameter24922682007-07-17 04:03:18 -0700898 slab_fix(s, "Freelist cleared");
Christoph Lameter81819f02007-05-06 14:49:36 -0700899 return 0;
900 }
901 break;
902 }
903 object = fp;
904 fp = get_freepointer(s, object);
905 nr++;
906 }
907
Lai Jiangshanab9a0f12011-03-10 15:21:48 +0800908 max_objects = order_objects(compound_order(page), s->size, s->reserved);
Cyrill Gorcunov210b5c02008-10-22 23:00:38 +0400909 if (max_objects > MAX_OBJS_PER_PAGE)
910 max_objects = MAX_OBJS_PER_PAGE;
Christoph Lameter224a88b2008-04-14 19:11:31 +0300911
912 if (page->objects != max_objects) {
913 slab_err(s, page, "Wrong number of objects. Found %d but "
914 "should be %d", page->objects, max_objects);
915 page->objects = max_objects;
916 slab_fix(s, "Number of objects adjusted.");
917 }
Christoph Lameter39b26462008-04-14 19:11:30 +0300918 if (page->inuse != page->objects - nr) {
Christoph Lameter70d71222007-05-06 14:49:47 -0700919 slab_err(s, page, "Wrong object count. Counter is %d but "
Christoph Lameter39b26462008-04-14 19:11:30 +0300920 "counted were %d", page->inuse, page->objects - nr);
921 page->inuse = page->objects - nr;
Christoph Lameter24922682007-07-17 04:03:18 -0700922 slab_fix(s, "Object count adjusted.");
Christoph Lameter81819f02007-05-06 14:49:36 -0700923 }
924 return search == NULL;
925}
926
Christoph Lameter0121c6192008-04-29 16:11:12 -0700927static void trace(struct kmem_cache *s, struct page *page, void *object,
928 int alloc)
Christoph Lameter3ec09742007-05-16 22:11:00 -0700929{
930 if (s->flags & SLAB_TRACE) {
Fabian Frederickf9f58282014-06-04 16:06:34 -0700931 pr_info("TRACE %s %s 0x%p inuse=%d fp=0x%p\n",
Christoph Lameter3ec09742007-05-16 22:11:00 -0700932 s->name,
933 alloc ? "alloc" : "free",
934 object, page->inuse,
935 page->freelist);
936
937 if (!alloc)
Chen Gangd0e0ac92013-07-15 09:05:29 +0800938 print_section("Object ", (void *)object,
939 s->object_size);
Christoph Lameter3ec09742007-05-16 22:11:00 -0700940
941 dump_stack();
942 }
943}
944
Christoph Lameter643b1132007-05-06 14:49:42 -0700945/*
Christoph Lameterc016b0b2010-08-20 12:37:16 -0500946 * Hooks for other subsystems that check memory allocations. In a typical
947 * production configuration these hooks all should produce no code at all.
948 */
Roman Bobnievd56791b2013-10-08 15:58:57 -0700949static inline void kmalloc_large_node_hook(void *ptr, size_t size, gfp_t flags)
950{
951 kmemleak_alloc(ptr, size, 1, flags);
952}
953
954static inline void kfree_hook(const void *x)
955{
956 kmemleak_free(x);
957}
958
Christoph Lameterc016b0b2010-08-20 12:37:16 -0500959static inline int slab_pre_alloc_hook(struct kmem_cache *s, gfp_t flags)
960{
Christoph Lameterc1d50832010-08-20 12:37:17 -0500961 flags &= gfp_allowed_mask;
Christoph Lameterc016b0b2010-08-20 12:37:16 -0500962 lockdep_trace_alloc(flags);
963 might_sleep_if(flags & __GFP_WAIT);
964
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500965 return should_failslab(s->object_size, flags, s->flags);
Christoph Lameterc016b0b2010-08-20 12:37:16 -0500966}
967
Chen Gangd0e0ac92013-07-15 09:05:29 +0800968static inline void slab_post_alloc_hook(struct kmem_cache *s,
969 gfp_t flags, void *object)
Christoph Lameterc016b0b2010-08-20 12:37:16 -0500970{
Christoph Lameterc1d50832010-08-20 12:37:17 -0500971 flags &= gfp_allowed_mask;
Eric Dumazetb3d41882011-02-14 18:35:22 +0100972 kmemcheck_slab_alloc(s, flags, object, slab_ksize(s));
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500973 kmemleak_alloc_recursive(object, s->object_size, 1, s->flags, flags);
Christoph Lameterc016b0b2010-08-20 12:37:16 -0500974}
975
976static inline void slab_free_hook(struct kmem_cache *s, void *x)
977{
978 kmemleak_free_recursive(x, s->flags);
Christoph Lameterc016b0b2010-08-20 12:37:16 -0500979
Christoph Lameterd3f661d2011-02-25 11:38:52 -0600980 /*
Xie XiuQid1756172013-10-18 09:12:43 +0800981 * Trouble is that we may no longer disable interrupts in the fast path
Christoph Lameterd3f661d2011-02-25 11:38:52 -0600982 * So in order to make the debug calls that expect irqs to be
983 * disabled we need to disable interrupts temporarily.
984 */
985#if defined(CONFIG_KMEMCHECK) || defined(CONFIG_LOCKDEP)
986 {
987 unsigned long flags;
988
989 local_irq_save(flags);
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500990 kmemcheck_slab_free(s, x, s->object_size);
991 debug_check_no_locks_freed(x, s->object_size);
Christoph Lameterd3f661d2011-02-25 11:38:52 -0600992 local_irq_restore(flags);
993 }
994#endif
Thomas Gleixnerf9b615d2011-03-24 21:26:46 +0200995 if (!(s->flags & SLAB_DEBUG_OBJECTS))
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500996 debug_check_no_obj_freed(x, s->object_size);
Christoph Lameterc016b0b2010-08-20 12:37:16 -0500997}
998
999/*
Christoph Lameter672bba32007-05-09 02:32:39 -07001000 * Tracking of fully allocated slabs for debugging purposes.
Christoph Lameter643b1132007-05-06 14:49:42 -07001001 */
Christoph Lameter5cc6eee2011-06-01 12:25:50 -05001002static void add_full(struct kmem_cache *s,
1003 struct kmem_cache_node *n, struct page *page)
Christoph Lameter643b1132007-05-06 14:49:42 -07001004{
Christoph Lameter643b1132007-05-06 14:49:42 -07001005 if (!(s->flags & SLAB_STORE_USER))
1006 return;
1007
David Rientjes255d0882014-02-10 14:25:39 -08001008 lockdep_assert_held(&n->list_lock);
Christoph Lameter5cc6eee2011-06-01 12:25:50 -05001009 list_add(&page->lru, &n->full);
1010}
Christoph Lameter643b1132007-05-06 14:49:42 -07001011
Peter Zijlstrac65c1872014-01-10 13:23:49 +01001012static void remove_full(struct kmem_cache *s, struct kmem_cache_node *n, struct page *page)
Christoph Lameter5cc6eee2011-06-01 12:25:50 -05001013{
1014 if (!(s->flags & SLAB_STORE_USER))
1015 return;
1016
David Rientjes255d0882014-02-10 14:25:39 -08001017 lockdep_assert_held(&n->list_lock);
Christoph Lameter643b1132007-05-06 14:49:42 -07001018 list_del(&page->lru);
Christoph Lameter643b1132007-05-06 14:49:42 -07001019}
1020
Christoph Lameter0f389ec2008-04-14 18:53:02 +03001021/* Tracking of the number of slabs for debugging purposes */
1022static inline unsigned long slabs_node(struct kmem_cache *s, int node)
1023{
1024 struct kmem_cache_node *n = get_node(s, node);
1025
1026 return atomic_long_read(&n->nr_slabs);
1027}
1028
Alexander Beregalov26c02cf2009-06-11 14:08:48 +04001029static inline unsigned long node_nr_slabs(struct kmem_cache_node *n)
1030{
1031 return atomic_long_read(&n->nr_slabs);
1032}
1033
Christoph Lameter205ab992008-04-14 19:11:40 +03001034static inline void inc_slabs_node(struct kmem_cache *s, int node, int objects)
Christoph Lameter0f389ec2008-04-14 18:53:02 +03001035{
1036 struct kmem_cache_node *n = get_node(s, node);
1037
1038 /*
1039 * May be called early in order to allocate a slab for the
1040 * kmem_cache_node structure. Solve the chicken-egg
1041 * dilemma by deferring the increment of the count during
1042 * bootstrap (see early_kmem_cache_node_alloc).
1043 */
Joonsoo Kim338b2642013-01-21 17:01:27 +09001044 if (likely(n)) {
Christoph Lameter0f389ec2008-04-14 18:53:02 +03001045 atomic_long_inc(&n->nr_slabs);
Christoph Lameter205ab992008-04-14 19:11:40 +03001046 atomic_long_add(objects, &n->total_objects);
1047 }
Christoph Lameter0f389ec2008-04-14 18:53:02 +03001048}
Christoph Lameter205ab992008-04-14 19:11:40 +03001049static inline void dec_slabs_node(struct kmem_cache *s, int node, int objects)
Christoph Lameter0f389ec2008-04-14 18:53:02 +03001050{
1051 struct kmem_cache_node *n = get_node(s, node);
1052
1053 atomic_long_dec(&n->nr_slabs);
Christoph Lameter205ab992008-04-14 19:11:40 +03001054 atomic_long_sub(objects, &n->total_objects);
Christoph Lameter0f389ec2008-04-14 18:53:02 +03001055}
1056
1057/* Object debug checks for alloc/free paths */
Christoph Lameter3ec09742007-05-16 22:11:00 -07001058static void setup_object_debug(struct kmem_cache *s, struct page *page,
1059 void *object)
1060{
1061 if (!(s->flags & (SLAB_STORE_USER|SLAB_RED_ZONE|__OBJECT_POISON)))
1062 return;
1063
Christoph Lameterf7cb1932010-09-29 07:15:01 -05001064 init_object(s, object, SLUB_RED_INACTIVE);
Christoph Lameter3ec09742007-05-16 22:11:00 -07001065 init_tracking(s, object);
1066}
1067
Chen Gangd0e0ac92013-07-15 09:05:29 +08001068static noinline int alloc_debug_processing(struct kmem_cache *s,
1069 struct page *page,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03001070 void *object, unsigned long addr)
Christoph Lameter81819f02007-05-06 14:49:36 -07001071{
1072 if (!check_slab(s, page))
1073 goto bad;
1074
Christoph Lameter81819f02007-05-06 14:49:36 -07001075 if (!check_valid_pointer(s, page, object)) {
1076 object_err(s, page, object, "Freelist Pointer check fails");
Christoph Lameter70d71222007-05-06 14:49:47 -07001077 goto bad;
Christoph Lameter81819f02007-05-06 14:49:36 -07001078 }
1079
Christoph Lameterf7cb1932010-09-29 07:15:01 -05001080 if (!check_object(s, page, object, SLUB_RED_INACTIVE))
Christoph Lameter81819f02007-05-06 14:49:36 -07001081 goto bad;
Christoph Lameter81819f02007-05-06 14:49:36 -07001082
Christoph Lameter3ec09742007-05-16 22:11:00 -07001083 /* Success perform special debug activities for allocs */
1084 if (s->flags & SLAB_STORE_USER)
1085 set_track(s, object, TRACK_ALLOC, addr);
1086 trace(s, page, object, 1);
Christoph Lameterf7cb1932010-09-29 07:15:01 -05001087 init_object(s, object, SLUB_RED_ACTIVE);
Christoph Lameter81819f02007-05-06 14:49:36 -07001088 return 1;
Christoph Lameter3ec09742007-05-16 22:11:00 -07001089
Christoph Lameter81819f02007-05-06 14:49:36 -07001090bad:
1091 if (PageSlab(page)) {
1092 /*
1093 * If this is a slab page then lets do the best we can
1094 * to avoid issues in the future. Marking all objects
Christoph Lameter672bba32007-05-09 02:32:39 -07001095 * as used avoids touching the remaining objects.
Christoph Lameter81819f02007-05-06 14:49:36 -07001096 */
Christoph Lameter24922682007-07-17 04:03:18 -07001097 slab_fix(s, "Marking all objects used");
Christoph Lameter39b26462008-04-14 19:11:30 +03001098 page->inuse = page->objects;
Christoph Lametera973e9d2008-03-01 13:40:44 -08001099 page->freelist = NULL;
Christoph Lameter81819f02007-05-06 14:49:36 -07001100 }
1101 return 0;
1102}
1103
Christoph Lameter19c7ff92012-05-30 12:54:46 -05001104static noinline struct kmem_cache_node *free_debug_processing(
1105 struct kmem_cache *s, struct page *page, void *object,
1106 unsigned long addr, unsigned long *flags)
Christoph Lameter81819f02007-05-06 14:49:36 -07001107{
Christoph Lameter19c7ff92012-05-30 12:54:46 -05001108 struct kmem_cache_node *n = get_node(s, page_to_nid(page));
Christoph Lameter5c2e4bb2011-06-01 12:25:54 -05001109
Christoph Lameter19c7ff92012-05-30 12:54:46 -05001110 spin_lock_irqsave(&n->list_lock, *flags);
Christoph Lameter881db7f2011-06-01 12:25:53 -05001111 slab_lock(page);
1112
Christoph Lameter81819f02007-05-06 14:49:36 -07001113 if (!check_slab(s, page))
1114 goto fail;
1115
1116 if (!check_valid_pointer(s, page, object)) {
Christoph Lameter70d71222007-05-06 14:49:47 -07001117 slab_err(s, page, "Invalid object pointer 0x%p", object);
Christoph Lameter81819f02007-05-06 14:49:36 -07001118 goto fail;
1119 }
1120
1121 if (on_freelist(s, page, object)) {
Christoph Lameter24922682007-07-17 04:03:18 -07001122 object_err(s, page, object, "Object already free");
Christoph Lameter81819f02007-05-06 14:49:36 -07001123 goto fail;
1124 }
1125
Christoph Lameterf7cb1932010-09-29 07:15:01 -05001126 if (!check_object(s, page, object, SLUB_RED_ACTIVE))
Christoph Lameter5c2e4bb2011-06-01 12:25:54 -05001127 goto out;
Christoph Lameter81819f02007-05-06 14:49:36 -07001128
Glauber Costa1b4f59e32012-10-22 18:05:36 +04001129 if (unlikely(s != page->slab_cache)) {
Ingo Molnar3adbefe2008-02-05 17:57:39 -08001130 if (!PageSlab(page)) {
Christoph Lameter70d71222007-05-06 14:49:47 -07001131 slab_err(s, page, "Attempt to free object(0x%p) "
1132 "outside of slab", object);
Glauber Costa1b4f59e32012-10-22 18:05:36 +04001133 } else if (!page->slab_cache) {
Fabian Frederickf9f58282014-06-04 16:06:34 -07001134 pr_err("SLUB <none>: no slab for object 0x%p.\n",
1135 object);
Christoph Lameter70d71222007-05-06 14:49:47 -07001136 dump_stack();
Pekka Enberg06428782008-01-07 23:20:27 -08001137 } else
Christoph Lameter24922682007-07-17 04:03:18 -07001138 object_err(s, page, object,
1139 "page slab pointer corrupt.");
Christoph Lameter81819f02007-05-06 14:49:36 -07001140 goto fail;
1141 }
Christoph Lameter3ec09742007-05-16 22:11:00 -07001142
Christoph Lameter3ec09742007-05-16 22:11:00 -07001143 if (s->flags & SLAB_STORE_USER)
1144 set_track(s, object, TRACK_FREE, addr);
1145 trace(s, page, object, 0);
Christoph Lameterf7cb1932010-09-29 07:15:01 -05001146 init_object(s, object, SLUB_RED_INACTIVE);
Christoph Lameter5c2e4bb2011-06-01 12:25:54 -05001147out:
Christoph Lameter881db7f2011-06-01 12:25:53 -05001148 slab_unlock(page);
Christoph Lameter19c7ff92012-05-30 12:54:46 -05001149 /*
1150 * Keep node_lock to preserve integrity
1151 * until the object is actually freed
1152 */
1153 return n;
Christoph Lameter3ec09742007-05-16 22:11:00 -07001154
Christoph Lameter81819f02007-05-06 14:49:36 -07001155fail:
Christoph Lameter19c7ff92012-05-30 12:54:46 -05001156 slab_unlock(page);
1157 spin_unlock_irqrestore(&n->list_lock, *flags);
Christoph Lameter24922682007-07-17 04:03:18 -07001158 slab_fix(s, "Object at 0x%p not freed", object);
Christoph Lameter19c7ff92012-05-30 12:54:46 -05001159 return NULL;
Christoph Lameter81819f02007-05-06 14:49:36 -07001160}
1161
Christoph Lameter41ecc552007-05-09 02:32:44 -07001162static int __init setup_slub_debug(char *str)
1163{
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001164 slub_debug = DEBUG_DEFAULT_FLAGS;
1165 if (*str++ != '=' || !*str)
1166 /*
1167 * No options specified. Switch on full debugging.
1168 */
1169 goto out;
Christoph Lameter41ecc552007-05-09 02:32:44 -07001170
1171 if (*str == ',')
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001172 /*
1173 * No options but restriction on slabs. This means full
1174 * debugging for slabs matching a pattern.
1175 */
1176 goto check_slabs;
1177
David Rientjesfa5ec8a2009-07-07 00:14:14 -07001178 if (tolower(*str) == 'o') {
1179 /*
1180 * Avoid enabling debugging on caches if its minimum order
1181 * would increase as a result.
1182 */
1183 disable_higher_order_debug = 1;
1184 goto out;
1185 }
1186
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001187 slub_debug = 0;
1188 if (*str == '-')
1189 /*
1190 * Switch off all debugging measures.
1191 */
1192 goto out;
1193
1194 /*
1195 * Determine which debug features should be switched on
1196 */
Pekka Enberg06428782008-01-07 23:20:27 -08001197 for (; *str && *str != ','; str++) {
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001198 switch (tolower(*str)) {
1199 case 'f':
1200 slub_debug |= SLAB_DEBUG_FREE;
1201 break;
1202 case 'z':
1203 slub_debug |= SLAB_RED_ZONE;
1204 break;
1205 case 'p':
1206 slub_debug |= SLAB_POISON;
1207 break;
1208 case 'u':
1209 slub_debug |= SLAB_STORE_USER;
1210 break;
1211 case 't':
1212 slub_debug |= SLAB_TRACE;
1213 break;
Dmitry Monakhov4c13dd32010-02-26 09:36:12 +03001214 case 'a':
1215 slub_debug |= SLAB_FAILSLAB;
1216 break;
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001217 default:
Fabian Frederickf9f58282014-06-04 16:06:34 -07001218 pr_err("slub_debug option '%c' unknown. skipped\n",
1219 *str);
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001220 }
1221 }
1222
1223check_slabs:
1224 if (*str == ',')
Christoph Lameter41ecc552007-05-09 02:32:44 -07001225 slub_debug_slabs = str + 1;
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001226out:
Christoph Lameter41ecc552007-05-09 02:32:44 -07001227 return 1;
1228}
1229
1230__setup("slub_debug", setup_slub_debug);
1231
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05001232static unsigned long kmem_cache_flags(unsigned long object_size,
Christoph Lameterba0268a2007-09-11 15:24:11 -07001233 unsigned long flags, const char *name,
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07001234 void (*ctor)(void *))
Christoph Lameter41ecc552007-05-09 02:32:44 -07001235{
1236 /*
Christoph Lametere1533622008-02-15 23:45:24 -08001237 * Enable debugging if selected on the kernel commandline.
Christoph Lameter41ecc552007-05-09 02:32:44 -07001238 */
Christoph Lameterc6f58d92013-11-07 16:29:15 +00001239 if (slub_debug && (!slub_debug_slabs || (name &&
1240 !strncmp(slub_debug_slabs, name, strlen(slub_debug_slabs)))))
David Rientjes3de47212009-07-27 18:30:35 -07001241 flags |= slub_debug;
Christoph Lameterba0268a2007-09-11 15:24:11 -07001242
1243 return flags;
Christoph Lameter41ecc552007-05-09 02:32:44 -07001244}
1245#else
Christoph Lameter3ec09742007-05-16 22:11:00 -07001246static inline void setup_object_debug(struct kmem_cache *s,
1247 struct page *page, void *object) {}
Christoph Lameter41ecc552007-05-09 02:32:44 -07001248
Christoph Lameter3ec09742007-05-16 22:11:00 -07001249static inline int alloc_debug_processing(struct kmem_cache *s,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03001250 struct page *page, void *object, unsigned long addr) { return 0; }
Christoph Lameter41ecc552007-05-09 02:32:44 -07001251
Christoph Lameter19c7ff92012-05-30 12:54:46 -05001252static inline struct kmem_cache_node *free_debug_processing(
1253 struct kmem_cache *s, struct page *page, void *object,
1254 unsigned long addr, unsigned long *flags) { return NULL; }
Christoph Lameter41ecc552007-05-09 02:32:44 -07001255
Christoph Lameter41ecc552007-05-09 02:32:44 -07001256static inline int slab_pad_check(struct kmem_cache *s, struct page *page)
1257 { return 1; }
1258static inline int check_object(struct kmem_cache *s, struct page *page,
Christoph Lameterf7cb1932010-09-29 07:15:01 -05001259 void *object, u8 val) { return 1; }
Christoph Lameter5cc6eee2011-06-01 12:25:50 -05001260static inline void add_full(struct kmem_cache *s, struct kmem_cache_node *n,
1261 struct page *page) {}
Peter Zijlstrac65c1872014-01-10 13:23:49 +01001262static inline void remove_full(struct kmem_cache *s, struct kmem_cache_node *n,
1263 struct page *page) {}
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05001264static inline unsigned long kmem_cache_flags(unsigned long object_size,
Christoph Lameterba0268a2007-09-11 15:24:11 -07001265 unsigned long flags, const char *name,
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07001266 void (*ctor)(void *))
Christoph Lameterba0268a2007-09-11 15:24:11 -07001267{
1268 return flags;
1269}
Christoph Lameter41ecc552007-05-09 02:32:44 -07001270#define slub_debug 0
Christoph Lameter0f389ec2008-04-14 18:53:02 +03001271
Ingo Molnarfdaa45e2009-09-15 11:00:26 +02001272#define disable_higher_order_debug 0
1273
Christoph Lameter0f389ec2008-04-14 18:53:02 +03001274static inline unsigned long slabs_node(struct kmem_cache *s, int node)
1275 { return 0; }
Alexander Beregalov26c02cf2009-06-11 14:08:48 +04001276static inline unsigned long node_nr_slabs(struct kmem_cache_node *n)
1277 { return 0; }
Christoph Lameter205ab992008-04-14 19:11:40 +03001278static inline void inc_slabs_node(struct kmem_cache *s, int node,
1279 int objects) {}
1280static inline void dec_slabs_node(struct kmem_cache *s, int node,
1281 int objects) {}
Christoph Lameter7d550c52010-08-25 14:07:16 -05001282
Roman Bobnievd56791b2013-10-08 15:58:57 -07001283static inline void kmalloc_large_node_hook(void *ptr, size_t size, gfp_t flags)
1284{
1285 kmemleak_alloc(ptr, size, 1, flags);
1286}
1287
1288static inline void kfree_hook(const void *x)
1289{
1290 kmemleak_free(x);
1291}
1292
Christoph Lameter7d550c52010-08-25 14:07:16 -05001293static inline int slab_pre_alloc_hook(struct kmem_cache *s, gfp_t flags)
1294 { return 0; }
1295
1296static inline void slab_post_alloc_hook(struct kmem_cache *s, gfp_t flags,
Roman Bobnievd56791b2013-10-08 15:58:57 -07001297 void *object)
1298{
1299 kmemleak_alloc_recursive(object, s->object_size, 1, s->flags,
1300 flags & gfp_allowed_mask);
1301}
Christoph Lameter7d550c52010-08-25 14:07:16 -05001302
Roman Bobnievd56791b2013-10-08 15:58:57 -07001303static inline void slab_free_hook(struct kmem_cache *s, void *x)
1304{
1305 kmemleak_free_recursive(x, s->flags);
1306}
Christoph Lameter7d550c52010-08-25 14:07:16 -05001307
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05001308#endif /* CONFIG_SLUB_DEBUG */
Christoph Lameter205ab992008-04-14 19:11:40 +03001309
Christoph Lameter81819f02007-05-06 14:49:36 -07001310/*
1311 * Slab allocation and freeing
1312 */
Christoph Lameter65c33762008-04-14 19:11:40 +03001313static inline struct page *alloc_slab_page(gfp_t flags, int node,
1314 struct kmem_cache_order_objects oo)
1315{
1316 int order = oo_order(oo);
1317
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001318 flags |= __GFP_NOTRACK;
1319
Christoph Lameter2154a332010-07-09 14:07:10 -05001320 if (node == NUMA_NO_NODE)
Christoph Lameter65c33762008-04-14 19:11:40 +03001321 return alloc_pages(flags, order);
1322 else
Minchan Kim6b65aaf2010-04-14 23:58:36 +09001323 return alloc_pages_exact_node(node, flags, order);
Christoph Lameter65c33762008-04-14 19:11:40 +03001324}
1325
Christoph Lameter81819f02007-05-06 14:49:36 -07001326static struct page *allocate_slab(struct kmem_cache *s, gfp_t flags, int node)
1327{
Pekka Enberg06428782008-01-07 23:20:27 -08001328 struct page *page;
Christoph Lameter834f3d12008-04-14 19:11:31 +03001329 struct kmem_cache_order_objects oo = s->oo;
Pekka Enbergba522702009-06-24 21:59:51 +03001330 gfp_t alloc_gfp;
Christoph Lameter81819f02007-05-06 14:49:36 -07001331
Christoph Lameter7e0528d2011-06-01 12:25:44 -05001332 flags &= gfp_allowed_mask;
1333
1334 if (flags & __GFP_WAIT)
1335 local_irq_enable();
1336
Christoph Lameterb7a49f02008-02-14 14:21:32 -08001337 flags |= s->allocflags;
Mel Gormane12ba742007-10-16 01:25:52 -07001338
Pekka Enbergba522702009-06-24 21:59:51 +03001339 /*
1340 * Let the initial higher-order allocation fail under memory pressure
1341 * so we fall-back to the minimum order allocation.
1342 */
1343 alloc_gfp = (flags | __GFP_NOWARN | __GFP_NORETRY) & ~__GFP_NOFAIL;
1344
1345 page = alloc_slab_page(alloc_gfp, node, oo);
Christoph Lameter65c33762008-04-14 19:11:40 +03001346 if (unlikely(!page)) {
1347 oo = s->min;
Joonsoo Kim80c3a992014-03-12 17:26:20 +09001348 alloc_gfp = flags;
Christoph Lameter65c33762008-04-14 19:11:40 +03001349 /*
1350 * Allocation may have failed due to fragmentation.
1351 * Try a lower order alloc if possible
1352 */
Joonsoo Kim80c3a992014-03-12 17:26:20 +09001353 page = alloc_slab_page(alloc_gfp, node, oo);
Christoph Lameter81819f02007-05-06 14:49:36 -07001354
Christoph Lameter7e0528d2011-06-01 12:25:44 -05001355 if (page)
1356 stat(s, ORDER_FALLBACK);
Christoph Lameter65c33762008-04-14 19:11:40 +03001357 }
Vegard Nossum5a896d92008-04-04 00:54:48 +02001358
David Rientjes737b7192012-07-09 14:00:38 -07001359 if (kmemcheck_enabled && page
Amerigo Wang5086c389c2009-08-19 21:44:13 +03001360 && !(s->flags & (SLAB_NOTRACK | DEBUG_DEFAULT_FLAGS))) {
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001361 int pages = 1 << oo_order(oo);
1362
Joonsoo Kim80c3a992014-03-12 17:26:20 +09001363 kmemcheck_alloc_shadow(page, oo_order(oo), alloc_gfp, node);
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001364
1365 /*
1366 * Objects from caches that have a constructor don't get
1367 * cleared when they're allocated, so we need to do it here.
1368 */
1369 if (s->ctor)
1370 kmemcheck_mark_uninitialized_pages(page, pages);
1371 else
1372 kmemcheck_mark_unallocated_pages(page, pages);
Vegard Nossum5a896d92008-04-04 00:54:48 +02001373 }
1374
David Rientjes737b7192012-07-09 14:00:38 -07001375 if (flags & __GFP_WAIT)
1376 local_irq_disable();
1377 if (!page)
1378 return NULL;
1379
Christoph Lameter834f3d12008-04-14 19:11:31 +03001380 page->objects = oo_objects(oo);
Christoph Lameter81819f02007-05-06 14:49:36 -07001381 mod_zone_page_state(page_zone(page),
1382 (s->flags & SLAB_RECLAIM_ACCOUNT) ?
1383 NR_SLAB_RECLAIMABLE : NR_SLAB_UNRECLAIMABLE,
Christoph Lameter65c33762008-04-14 19:11:40 +03001384 1 << oo_order(oo));
Christoph Lameter81819f02007-05-06 14:49:36 -07001385
1386 return page;
1387}
1388
1389static void setup_object(struct kmem_cache *s, struct page *page,
1390 void *object)
1391{
Christoph Lameter3ec09742007-05-16 22:11:00 -07001392 setup_object_debug(s, page, object);
Christoph Lameter4f104932007-05-06 14:50:17 -07001393 if (unlikely(s->ctor))
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07001394 s->ctor(object);
Christoph Lameter81819f02007-05-06 14:49:36 -07001395}
1396
1397static struct page *new_slab(struct kmem_cache *s, gfp_t flags, int node)
1398{
1399 struct page *page;
Christoph Lameter81819f02007-05-06 14:49:36 -07001400 void *start;
Christoph Lameter81819f02007-05-06 14:49:36 -07001401 void *last;
1402 void *p;
Glauber Costa1f458cb2012-12-18 14:22:50 -08001403 int order;
Christoph Lameter81819f02007-05-06 14:49:36 -07001404
Christoph Lameter6cb06222007-10-16 01:25:41 -07001405 BUG_ON(flags & GFP_SLAB_BUG_MASK);
Christoph Lameter81819f02007-05-06 14:49:36 -07001406
Christoph Lameter6cb06222007-10-16 01:25:41 -07001407 page = allocate_slab(s,
1408 flags & (GFP_RECLAIM_MASK | GFP_CONSTRAINT_MASK), node);
Christoph Lameter81819f02007-05-06 14:49:36 -07001409 if (!page)
1410 goto out;
1411
Glauber Costa1f458cb2012-12-18 14:22:50 -08001412 order = compound_order(page);
Christoph Lameter205ab992008-04-14 19:11:40 +03001413 inc_slabs_node(s, page_to_nid(page), page->objects);
Glauber Costa1f458cb2012-12-18 14:22:50 -08001414 memcg_bind_pages(s, order);
Glauber Costa1b4f59e32012-10-22 18:05:36 +04001415 page->slab_cache = s;
Joonsoo Kimc03f94c2012-05-18 00:47:47 +09001416 __SetPageSlab(page);
Mel Gorman072bb0a2012-07-31 16:43:58 -07001417 if (page->pfmemalloc)
1418 SetPageSlabPfmemalloc(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001419
1420 start = page_address(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001421
1422 if (unlikely(s->flags & SLAB_POISON))
Glauber Costa1f458cb2012-12-18 14:22:50 -08001423 memset(start, POISON_INUSE, PAGE_SIZE << order);
Christoph Lameter81819f02007-05-06 14:49:36 -07001424
1425 last = start;
Christoph Lameter224a88b2008-04-14 19:11:31 +03001426 for_each_object(p, s, start, page->objects) {
Christoph Lameter81819f02007-05-06 14:49:36 -07001427 setup_object(s, page, last);
1428 set_freepointer(s, last, p);
1429 last = p;
1430 }
1431 setup_object(s, page, last);
Christoph Lametera973e9d2008-03-01 13:40:44 -08001432 set_freepointer(s, last, NULL);
Christoph Lameter81819f02007-05-06 14:49:36 -07001433
1434 page->freelist = start;
Christoph Lametere6e82ea2011-08-09 16:12:24 -05001435 page->inuse = page->objects;
Christoph Lameter8cb0a502011-06-01 12:25:46 -05001436 page->frozen = 1;
Christoph Lameter81819f02007-05-06 14:49:36 -07001437out:
Christoph Lameter81819f02007-05-06 14:49:36 -07001438 return page;
1439}
1440
1441static void __free_slab(struct kmem_cache *s, struct page *page)
1442{
Christoph Lameter834f3d12008-04-14 19:11:31 +03001443 int order = compound_order(page);
1444 int pages = 1 << order;
Christoph Lameter81819f02007-05-06 14:49:36 -07001445
Christoph Lameteraf537b02010-07-09 14:07:14 -05001446 if (kmem_cache_debug(s)) {
Christoph Lameter81819f02007-05-06 14:49:36 -07001447 void *p;
1448
1449 slab_pad_check(s, page);
Christoph Lameter224a88b2008-04-14 19:11:31 +03001450 for_each_object(p, s, page_address(page),
1451 page->objects)
Christoph Lameterf7cb1932010-09-29 07:15:01 -05001452 check_object(s, page, p, SLUB_RED_INACTIVE);
Christoph Lameter81819f02007-05-06 14:49:36 -07001453 }
1454
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001455 kmemcheck_free_shadow(page, compound_order(page));
Vegard Nossum5a896d92008-04-04 00:54:48 +02001456
Christoph Lameter81819f02007-05-06 14:49:36 -07001457 mod_zone_page_state(page_zone(page),
1458 (s->flags & SLAB_RECLAIM_ACCOUNT) ?
1459 NR_SLAB_RECLAIMABLE : NR_SLAB_UNRECLAIMABLE,
Pekka Enberg06428782008-01-07 23:20:27 -08001460 -pages);
Christoph Lameter81819f02007-05-06 14:49:36 -07001461
Mel Gorman072bb0a2012-07-31 16:43:58 -07001462 __ClearPageSlabPfmemalloc(page);
Christoph Lameter49bd5222008-04-14 18:52:18 +03001463 __ClearPageSlab(page);
Glauber Costa1f458cb2012-12-18 14:22:50 -08001464
1465 memcg_release_pages(s, order);
Mel Gorman22b751c2013-02-22 16:34:59 -08001466 page_mapcount_reset(page);
Nick Piggin1eb5ac62009-05-05 19:13:44 +10001467 if (current->reclaim_state)
1468 current->reclaim_state->reclaimed_slab += pages;
Glauber Costad79923f2012-12-18 14:22:48 -08001469 __free_memcg_kmem_pages(page, order);
Christoph Lameter81819f02007-05-06 14:49:36 -07001470}
1471
Lai Jiangshanda9a6382011-03-10 15:22:00 +08001472#define need_reserve_slab_rcu \
1473 (sizeof(((struct page *)NULL)->lru) < sizeof(struct rcu_head))
1474
Christoph Lameter81819f02007-05-06 14:49:36 -07001475static void rcu_free_slab(struct rcu_head *h)
1476{
1477 struct page *page;
1478
Lai Jiangshanda9a6382011-03-10 15:22:00 +08001479 if (need_reserve_slab_rcu)
1480 page = virt_to_head_page(h);
1481 else
1482 page = container_of((struct list_head *)h, struct page, lru);
1483
Glauber Costa1b4f59e32012-10-22 18:05:36 +04001484 __free_slab(page->slab_cache, page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001485}
1486
1487static void free_slab(struct kmem_cache *s, struct page *page)
1488{
1489 if (unlikely(s->flags & SLAB_DESTROY_BY_RCU)) {
Lai Jiangshanda9a6382011-03-10 15:22:00 +08001490 struct rcu_head *head;
1491
1492 if (need_reserve_slab_rcu) {
1493 int order = compound_order(page);
1494 int offset = (PAGE_SIZE << order) - s->reserved;
1495
1496 VM_BUG_ON(s->reserved != sizeof(*head));
1497 head = page_address(page) + offset;
1498 } else {
1499 /*
1500 * RCU free overloads the RCU head over the LRU
1501 */
1502 head = (void *)&page->lru;
1503 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001504
1505 call_rcu(head, rcu_free_slab);
1506 } else
1507 __free_slab(s, page);
1508}
1509
1510static void discard_slab(struct kmem_cache *s, struct page *page)
1511{
Christoph Lameter205ab992008-04-14 19:11:40 +03001512 dec_slabs_node(s, page_to_nid(page), page->objects);
Christoph Lameter81819f02007-05-06 14:49:36 -07001513 free_slab(s, page);
1514}
1515
1516/*
Christoph Lameter5cc6eee2011-06-01 12:25:50 -05001517 * Management of partially allocated slabs.
Christoph Lameter81819f02007-05-06 14:49:36 -07001518 */
Steven Rostedt1e4dd942014-02-10 14:25:46 -08001519static inline void
1520__add_partial(struct kmem_cache_node *n, struct page *page, int tail)
Christoph Lameter81819f02007-05-06 14:49:36 -07001521{
Christoph Lametere95eed52007-05-06 14:49:44 -07001522 n->nr_partial++;
Shaohua Li136333d2011-08-24 08:57:52 +08001523 if (tail == DEACTIVATE_TO_TAIL)
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001524 list_add_tail(&page->lru, &n->partial);
1525 else
1526 list_add(&page->lru, &n->partial);
Christoph Lameter81819f02007-05-06 14:49:36 -07001527}
1528
Steven Rostedt1e4dd942014-02-10 14:25:46 -08001529static inline void add_partial(struct kmem_cache_node *n,
1530 struct page *page, int tail)
1531{
1532 lockdep_assert_held(&n->list_lock);
1533 __add_partial(n, page, tail);
1534}
1535
1536static inline void
1537__remove_partial(struct kmem_cache_node *n, struct page *page)
1538{
1539 list_del(&page->lru);
1540 n->nr_partial--;
1541}
1542
Christoph Lameter5cc6eee2011-06-01 12:25:50 -05001543static inline void remove_partial(struct kmem_cache_node *n,
Christoph Lameter62e346a2010-09-28 08:10:28 -05001544 struct page *page)
1545{
Peter Zijlstrac65c1872014-01-10 13:23:49 +01001546 lockdep_assert_held(&n->list_lock);
Steven Rostedt1e4dd942014-02-10 14:25:46 -08001547 __remove_partial(n, page);
Christoph Lameter62e346a2010-09-28 08:10:28 -05001548}
1549
Christoph Lameter81819f02007-05-06 14:49:36 -07001550/*
Christoph Lameter7ced3712012-05-09 10:09:53 -05001551 * Remove slab from the partial list, freeze it and
1552 * return the pointer to the freelist.
Christoph Lameter81819f02007-05-06 14:49:36 -07001553 *
Christoph Lameter497b66f2011-08-09 16:12:26 -05001554 * Returns a list of objects or NULL if it fails.
Christoph Lameter81819f02007-05-06 14:49:36 -07001555 */
Christoph Lameter497b66f2011-08-09 16:12:26 -05001556static inline void *acquire_slab(struct kmem_cache *s,
Christoph Lameteracd19fd2011-08-09 16:12:25 -05001557 struct kmem_cache_node *n, struct page *page,
Joonsoo Kim633b0762013-01-21 17:01:25 +09001558 int mode, int *objects)
Christoph Lameter81819f02007-05-06 14:49:36 -07001559{
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001560 void *freelist;
1561 unsigned long counters;
1562 struct page new;
1563
Peter Zijlstrac65c1872014-01-10 13:23:49 +01001564 lockdep_assert_held(&n->list_lock);
1565
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001566 /*
1567 * Zap the freelist and set the frozen bit.
1568 * The old freelist is the list of objects for the
1569 * per cpu allocation list.
1570 */
Christoph Lameter7ced3712012-05-09 10:09:53 -05001571 freelist = page->freelist;
1572 counters = page->counters;
1573 new.counters = counters;
Joonsoo Kim633b0762013-01-21 17:01:25 +09001574 *objects = new.objects - new.inuse;
Pekka Enberg23910c52012-06-04 10:14:58 +03001575 if (mode) {
Christoph Lameter7ced3712012-05-09 10:09:53 -05001576 new.inuse = page->objects;
Pekka Enberg23910c52012-06-04 10:14:58 +03001577 new.freelist = NULL;
1578 } else {
1579 new.freelist = freelist;
1580 }
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001581
Dave Hansena0132ac2014-01-29 14:05:50 -08001582 VM_BUG_ON(new.frozen);
Christoph Lameter7ced3712012-05-09 10:09:53 -05001583 new.frozen = 1;
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001584
Christoph Lameter7ced3712012-05-09 10:09:53 -05001585 if (!__cmpxchg_double_slab(s, page,
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001586 freelist, counters,
Joonsoo Kim02d76332012-05-17 00:13:02 +09001587 new.freelist, new.counters,
Christoph Lameter7ced3712012-05-09 10:09:53 -05001588 "acquire_slab"))
Christoph Lameter7ced3712012-05-09 10:09:53 -05001589 return NULL;
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001590
1591 remove_partial(n, page);
Christoph Lameter7ced3712012-05-09 10:09:53 -05001592 WARN_ON(!freelist);
Christoph Lameter49e22582011-08-09 16:12:27 -05001593 return freelist;
Christoph Lameter81819f02007-05-06 14:49:36 -07001594}
1595
Joonsoo Kim633b0762013-01-21 17:01:25 +09001596static void put_cpu_partial(struct kmem_cache *s, struct page *page, int drain);
Joonsoo Kim8ba00bb2012-09-17 14:09:09 -07001597static inline bool pfmemalloc_match(struct page *page, gfp_t gfpflags);
Christoph Lameter49e22582011-08-09 16:12:27 -05001598
Christoph Lameter81819f02007-05-06 14:49:36 -07001599/*
Christoph Lameter672bba32007-05-09 02:32:39 -07001600 * Try to allocate a partial slab from a specific node.
Christoph Lameter81819f02007-05-06 14:49:36 -07001601 */
Joonsoo Kim8ba00bb2012-09-17 14:09:09 -07001602static void *get_partial_node(struct kmem_cache *s, struct kmem_cache_node *n,
1603 struct kmem_cache_cpu *c, gfp_t flags)
Christoph Lameter81819f02007-05-06 14:49:36 -07001604{
Christoph Lameter49e22582011-08-09 16:12:27 -05001605 struct page *page, *page2;
1606 void *object = NULL;
Joonsoo Kim633b0762013-01-21 17:01:25 +09001607 int available = 0;
1608 int objects;
Christoph Lameter81819f02007-05-06 14:49:36 -07001609
1610 /*
1611 * Racy check. If we mistakenly see no partial slabs then we
1612 * just allocate an empty slab. If we mistakenly try to get a
Christoph Lameter672bba32007-05-09 02:32:39 -07001613 * partial slab and there is none available then get_partials()
1614 * will return NULL.
Christoph Lameter81819f02007-05-06 14:49:36 -07001615 */
1616 if (!n || !n->nr_partial)
1617 return NULL;
1618
1619 spin_lock(&n->list_lock);
Christoph Lameter49e22582011-08-09 16:12:27 -05001620 list_for_each_entry_safe(page, page2, &n->partial, lru) {
Joonsoo Kim8ba00bb2012-09-17 14:09:09 -07001621 void *t;
Christoph Lameter49e22582011-08-09 16:12:27 -05001622
Joonsoo Kim8ba00bb2012-09-17 14:09:09 -07001623 if (!pfmemalloc_match(page, flags))
1624 continue;
1625
Joonsoo Kim633b0762013-01-21 17:01:25 +09001626 t = acquire_slab(s, n, page, object == NULL, &objects);
Christoph Lameter49e22582011-08-09 16:12:27 -05001627 if (!t)
1628 break;
1629
Joonsoo Kim633b0762013-01-21 17:01:25 +09001630 available += objects;
Alex,Shi12d79632011-09-07 10:26:36 +08001631 if (!object) {
Christoph Lameter49e22582011-08-09 16:12:27 -05001632 c->page = page;
Christoph Lameter49e22582011-08-09 16:12:27 -05001633 stat(s, ALLOC_FROM_PARTIAL);
Christoph Lameter49e22582011-08-09 16:12:27 -05001634 object = t;
Christoph Lameter49e22582011-08-09 16:12:27 -05001635 } else {
Joonsoo Kim633b0762013-01-21 17:01:25 +09001636 put_cpu_partial(s, page, 0);
Alex Shi8028dce2012-02-03 23:34:56 +08001637 stat(s, CPU_PARTIAL_NODE);
Christoph Lameter49e22582011-08-09 16:12:27 -05001638 }
Joonsoo Kim345c9052013-06-19 14:05:52 +09001639 if (!kmem_cache_has_cpu_partial(s)
1640 || available > s->cpu_partial / 2)
Christoph Lameter49e22582011-08-09 16:12:27 -05001641 break;
1642
Christoph Lameter497b66f2011-08-09 16:12:26 -05001643 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001644 spin_unlock(&n->list_lock);
Christoph Lameter497b66f2011-08-09 16:12:26 -05001645 return object;
Christoph Lameter81819f02007-05-06 14:49:36 -07001646}
1647
1648/*
Christoph Lameter672bba32007-05-09 02:32:39 -07001649 * Get a page from somewhere. Search in increasing NUMA distances.
Christoph Lameter81819f02007-05-06 14:49:36 -07001650 */
Joonsoo Kimde3ec032012-01-27 00:12:23 -08001651static void *get_any_partial(struct kmem_cache *s, gfp_t flags,
Christoph Lameteracd19fd2011-08-09 16:12:25 -05001652 struct kmem_cache_cpu *c)
Christoph Lameter81819f02007-05-06 14:49:36 -07001653{
1654#ifdef CONFIG_NUMA
1655 struct zonelist *zonelist;
Mel Gormandd1a2392008-04-28 02:12:17 -07001656 struct zoneref *z;
Mel Gorman54a6eb52008-04-28 02:12:16 -07001657 struct zone *zone;
1658 enum zone_type high_zoneidx = gfp_zone(flags);
Christoph Lameter497b66f2011-08-09 16:12:26 -05001659 void *object;
Mel Gormancc9a6c82012-03-21 16:34:11 -07001660 unsigned int cpuset_mems_cookie;
Christoph Lameter81819f02007-05-06 14:49:36 -07001661
1662 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07001663 * The defrag ratio allows a configuration of the tradeoffs between
1664 * inter node defragmentation and node local allocations. A lower
1665 * defrag_ratio increases the tendency to do local allocations
1666 * instead of attempting to obtain partial slabs from other nodes.
Christoph Lameter81819f02007-05-06 14:49:36 -07001667 *
Christoph Lameter672bba32007-05-09 02:32:39 -07001668 * If the defrag_ratio is set to 0 then kmalloc() always
1669 * returns node local objects. If the ratio is higher then kmalloc()
1670 * may return off node objects because partial slabs are obtained
1671 * from other nodes and filled up.
Christoph Lameter81819f02007-05-06 14:49:36 -07001672 *
Christoph Lameter6446faa2008-02-15 23:45:26 -08001673 * If /sys/kernel/slab/xx/defrag_ratio is set to 100 (which makes
Christoph Lameter672bba32007-05-09 02:32:39 -07001674 * defrag_ratio = 1000) then every (well almost) allocation will
1675 * first attempt to defrag slab caches on other nodes. This means
1676 * scanning over all nodes to look for partial slabs which may be
1677 * expensive if we do it every time we are trying to find a slab
1678 * with available objects.
Christoph Lameter81819f02007-05-06 14:49:36 -07001679 */
Christoph Lameter98246012008-01-07 23:20:26 -08001680 if (!s->remote_node_defrag_ratio ||
1681 get_cycles() % 1024 > s->remote_node_defrag_ratio)
Christoph Lameter81819f02007-05-06 14:49:36 -07001682 return NULL;
1683
Mel Gormancc9a6c82012-03-21 16:34:11 -07001684 do {
Mel Gormand26914d2014-04-03 14:47:24 -07001685 cpuset_mems_cookie = read_mems_allowed_begin();
David Rientjes2a389612014-04-07 15:37:29 -07001686 zonelist = node_zonelist(mempolicy_slab_node(), flags);
Mel Gormancc9a6c82012-03-21 16:34:11 -07001687 for_each_zone_zonelist(zone, z, zonelist, high_zoneidx) {
1688 struct kmem_cache_node *n;
Christoph Lameter81819f02007-05-06 14:49:36 -07001689
Mel Gormancc9a6c82012-03-21 16:34:11 -07001690 n = get_node(s, zone_to_nid(zone));
Christoph Lameter81819f02007-05-06 14:49:36 -07001691
Mel Gormancc9a6c82012-03-21 16:34:11 -07001692 if (n && cpuset_zone_allowed_hardwall(zone, flags) &&
1693 n->nr_partial > s->min_partial) {
Joonsoo Kim8ba00bb2012-09-17 14:09:09 -07001694 object = get_partial_node(s, n, c, flags);
Mel Gormancc9a6c82012-03-21 16:34:11 -07001695 if (object) {
1696 /*
Mel Gormand26914d2014-04-03 14:47:24 -07001697 * Don't check read_mems_allowed_retry()
1698 * here - if mems_allowed was updated in
1699 * parallel, that was a harmless race
1700 * between allocation and the cpuset
1701 * update
Mel Gormancc9a6c82012-03-21 16:34:11 -07001702 */
Mel Gormancc9a6c82012-03-21 16:34:11 -07001703 return object;
1704 }
Miao Xiec0ff7452010-05-24 14:32:08 -07001705 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001706 }
Mel Gormand26914d2014-04-03 14:47:24 -07001707 } while (read_mems_allowed_retry(cpuset_mems_cookie));
Christoph Lameter81819f02007-05-06 14:49:36 -07001708#endif
1709 return NULL;
1710}
1711
1712/*
1713 * Get a partial page, lock it and return it.
1714 */
Christoph Lameter497b66f2011-08-09 16:12:26 -05001715static void *get_partial(struct kmem_cache *s, gfp_t flags, int node,
Christoph Lameteracd19fd2011-08-09 16:12:25 -05001716 struct kmem_cache_cpu *c)
Christoph Lameter81819f02007-05-06 14:49:36 -07001717{
Christoph Lameter497b66f2011-08-09 16:12:26 -05001718 void *object;
Christoph Lameter2154a332010-07-09 14:07:10 -05001719 int searchnode = (node == NUMA_NO_NODE) ? numa_node_id() : node;
Christoph Lameter81819f02007-05-06 14:49:36 -07001720
Joonsoo Kim8ba00bb2012-09-17 14:09:09 -07001721 object = get_partial_node(s, get_node(s, searchnode), c, flags);
Christoph Lameter497b66f2011-08-09 16:12:26 -05001722 if (object || node != NUMA_NO_NODE)
1723 return object;
Christoph Lameter81819f02007-05-06 14:49:36 -07001724
Christoph Lameteracd19fd2011-08-09 16:12:25 -05001725 return get_any_partial(s, flags, c);
Christoph Lameter81819f02007-05-06 14:49:36 -07001726}
1727
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06001728#ifdef CONFIG_PREEMPT
1729/*
1730 * Calculate the next globally unique transaction for disambiguiation
1731 * during cmpxchg. The transactions start with the cpu number and are then
1732 * incremented by CONFIG_NR_CPUS.
1733 */
1734#define TID_STEP roundup_pow_of_two(CONFIG_NR_CPUS)
1735#else
1736/*
1737 * No preemption supported therefore also no need to check for
1738 * different cpus.
1739 */
1740#define TID_STEP 1
1741#endif
1742
1743static inline unsigned long next_tid(unsigned long tid)
1744{
1745 return tid + TID_STEP;
1746}
1747
1748static inline unsigned int tid_to_cpu(unsigned long tid)
1749{
1750 return tid % TID_STEP;
1751}
1752
1753static inline unsigned long tid_to_event(unsigned long tid)
1754{
1755 return tid / TID_STEP;
1756}
1757
1758static inline unsigned int init_tid(int cpu)
1759{
1760 return cpu;
1761}
1762
1763static inline void note_cmpxchg_failure(const char *n,
1764 const struct kmem_cache *s, unsigned long tid)
1765{
1766#ifdef SLUB_DEBUG_CMPXCHG
1767 unsigned long actual_tid = __this_cpu_read(s->cpu_slab->tid);
1768
Fabian Frederickf9f58282014-06-04 16:06:34 -07001769 pr_info("%s %s: cmpxchg redo ", n, s->name);
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06001770
1771#ifdef CONFIG_PREEMPT
1772 if (tid_to_cpu(tid) != tid_to_cpu(actual_tid))
Fabian Frederickf9f58282014-06-04 16:06:34 -07001773 pr_warn("due to cpu change %d -> %d\n",
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06001774 tid_to_cpu(tid), tid_to_cpu(actual_tid));
1775 else
1776#endif
1777 if (tid_to_event(tid) != tid_to_event(actual_tid))
Fabian Frederickf9f58282014-06-04 16:06:34 -07001778 pr_warn("due to cpu running other code. Event %ld->%ld\n",
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06001779 tid_to_event(tid), tid_to_event(actual_tid));
1780 else
Fabian Frederickf9f58282014-06-04 16:06:34 -07001781 pr_warn("for unknown reason: actual=%lx was=%lx target=%lx\n",
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06001782 actual_tid, tid, next_tid(tid));
1783#endif
Christoph Lameter4fdccdf2011-03-22 13:35:00 -05001784 stat(s, CMPXCHG_DOUBLE_CPU_FAIL);
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06001785}
1786
Fengguang Wu788e1aa2012-09-28 16:34:05 +08001787static void init_kmem_cache_cpus(struct kmem_cache *s)
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06001788{
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06001789 int cpu;
1790
1791 for_each_possible_cpu(cpu)
1792 per_cpu_ptr(s->cpu_slab, cpu)->tid = init_tid(cpu);
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06001793}
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001794
1795/*
1796 * Remove the cpu slab
1797 */
Chen Gangd0e0ac92013-07-15 09:05:29 +08001798static void deactivate_slab(struct kmem_cache *s, struct page *page,
1799 void *freelist)
Christoph Lameter81819f02007-05-06 14:49:36 -07001800{
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001801 enum slab_modes { M_NONE, M_PARTIAL, M_FULL, M_FREE };
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001802 struct kmem_cache_node *n = get_node(s, page_to_nid(page));
1803 int lock = 0;
1804 enum slab_modes l = M_NONE, m = M_NONE;
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001805 void *nextfree;
Shaohua Li136333d2011-08-24 08:57:52 +08001806 int tail = DEACTIVATE_TO_HEAD;
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001807 struct page new;
1808 struct page old;
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001809
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001810 if (page->freelist) {
Christoph Lameter84e554e62009-12-18 16:26:23 -06001811 stat(s, DEACTIVATE_REMOTE_FREES);
Shaohua Li136333d2011-08-24 08:57:52 +08001812 tail = DEACTIVATE_TO_TAIL;
Christoph Lameter894b8782007-05-10 03:15:16 -07001813 }
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001814
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001815 /*
1816 * Stage one: Free all available per cpu objects back
1817 * to the page freelist while it is still frozen. Leave the
1818 * last one.
1819 *
1820 * There is no need to take the list->lock because the page
1821 * is still frozen.
1822 */
1823 while (freelist && (nextfree = get_freepointer(s, freelist))) {
1824 void *prior;
1825 unsigned long counters;
1826
1827 do {
1828 prior = page->freelist;
1829 counters = page->counters;
1830 set_freepointer(s, freelist, prior);
1831 new.counters = counters;
1832 new.inuse--;
Dave Hansena0132ac2014-01-29 14:05:50 -08001833 VM_BUG_ON(!new.frozen);
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001834
Christoph Lameter1d071712011-07-14 12:49:12 -05001835 } while (!__cmpxchg_double_slab(s, page,
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001836 prior, counters,
1837 freelist, new.counters,
1838 "drain percpu freelist"));
1839
1840 freelist = nextfree;
1841 }
1842
1843 /*
1844 * Stage two: Ensure that the page is unfrozen while the
1845 * list presence reflects the actual number of objects
1846 * during unfreeze.
1847 *
1848 * We setup the list membership and then perform a cmpxchg
1849 * with the count. If there is a mismatch then the page
1850 * is not unfrozen but the page is on the wrong list.
1851 *
1852 * Then we restart the process which may have to remove
1853 * the page from the list that we just put it on again
1854 * because the number of objects in the slab may have
1855 * changed.
1856 */
1857redo:
1858
1859 old.freelist = page->freelist;
1860 old.counters = page->counters;
Dave Hansena0132ac2014-01-29 14:05:50 -08001861 VM_BUG_ON(!old.frozen);
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001862
1863 /* Determine target state of the slab */
1864 new.counters = old.counters;
1865 if (freelist) {
1866 new.inuse--;
1867 set_freepointer(s, freelist, old.freelist);
1868 new.freelist = freelist;
1869 } else
1870 new.freelist = old.freelist;
1871
1872 new.frozen = 0;
1873
Christoph Lameter81107182011-08-09 13:01:32 -05001874 if (!new.inuse && n->nr_partial > s->min_partial)
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001875 m = M_FREE;
1876 else if (new.freelist) {
1877 m = M_PARTIAL;
1878 if (!lock) {
1879 lock = 1;
1880 /*
1881 * Taking the spinlock removes the possiblity
1882 * that acquire_slab() will see a slab page that
1883 * is frozen
1884 */
1885 spin_lock(&n->list_lock);
1886 }
1887 } else {
1888 m = M_FULL;
1889 if (kmem_cache_debug(s) && !lock) {
1890 lock = 1;
1891 /*
1892 * This also ensures that the scanning of full
1893 * slabs from diagnostic functions will not see
1894 * any frozen slabs.
1895 */
1896 spin_lock(&n->list_lock);
1897 }
1898 }
1899
1900 if (l != m) {
1901
1902 if (l == M_PARTIAL)
1903
1904 remove_partial(n, page);
1905
1906 else if (l == M_FULL)
1907
Peter Zijlstrac65c1872014-01-10 13:23:49 +01001908 remove_full(s, n, page);
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001909
1910 if (m == M_PARTIAL) {
1911
1912 add_partial(n, page, tail);
Shaohua Li136333d2011-08-24 08:57:52 +08001913 stat(s, tail);
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001914
1915 } else if (m == M_FULL) {
1916
1917 stat(s, DEACTIVATE_FULL);
1918 add_full(s, n, page);
1919
1920 }
1921 }
1922
1923 l = m;
Christoph Lameter1d071712011-07-14 12:49:12 -05001924 if (!__cmpxchg_double_slab(s, page,
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001925 old.freelist, old.counters,
1926 new.freelist, new.counters,
1927 "unfreezing slab"))
1928 goto redo;
1929
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001930 if (lock)
1931 spin_unlock(&n->list_lock);
1932
1933 if (m == M_FREE) {
1934 stat(s, DEACTIVATE_EMPTY);
1935 discard_slab(s, page);
1936 stat(s, FREE_SLAB);
1937 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001938}
1939
Joonsoo Kimd24ac772012-05-18 22:01:17 +09001940/*
1941 * Unfreeze all the cpu partial slabs.
1942 *
Christoph Lameter59a09912012-11-28 16:23:00 +00001943 * This function must be called with interrupts disabled
1944 * for the cpu using c (or some other guarantee must be there
1945 * to guarantee no concurrent accesses).
Joonsoo Kimd24ac772012-05-18 22:01:17 +09001946 */
Christoph Lameter59a09912012-11-28 16:23:00 +00001947static void unfreeze_partials(struct kmem_cache *s,
1948 struct kmem_cache_cpu *c)
Christoph Lameter49e22582011-08-09 16:12:27 -05001949{
Joonsoo Kim345c9052013-06-19 14:05:52 +09001950#ifdef CONFIG_SLUB_CPU_PARTIAL
Joonsoo Kim43d77862012-06-09 02:23:16 +09001951 struct kmem_cache_node *n = NULL, *n2 = NULL;
Shaohua Li9ada1932011-11-14 13:34:13 +08001952 struct page *page, *discard_page = NULL;
Christoph Lameter49e22582011-08-09 16:12:27 -05001953
1954 while ((page = c->partial)) {
Christoph Lameter49e22582011-08-09 16:12:27 -05001955 struct page new;
1956 struct page old;
1957
1958 c->partial = page->next;
Joonsoo Kim43d77862012-06-09 02:23:16 +09001959
1960 n2 = get_node(s, page_to_nid(page));
1961 if (n != n2) {
1962 if (n)
1963 spin_unlock(&n->list_lock);
1964
1965 n = n2;
1966 spin_lock(&n->list_lock);
1967 }
Christoph Lameter49e22582011-08-09 16:12:27 -05001968
1969 do {
1970
1971 old.freelist = page->freelist;
1972 old.counters = page->counters;
Dave Hansena0132ac2014-01-29 14:05:50 -08001973 VM_BUG_ON(!old.frozen);
Christoph Lameter49e22582011-08-09 16:12:27 -05001974
1975 new.counters = old.counters;
1976 new.freelist = old.freelist;
1977
1978 new.frozen = 0;
1979
Joonsoo Kimd24ac772012-05-18 22:01:17 +09001980 } while (!__cmpxchg_double_slab(s, page,
Christoph Lameter49e22582011-08-09 16:12:27 -05001981 old.freelist, old.counters,
1982 new.freelist, new.counters,
1983 "unfreezing slab"));
1984
Joonsoo Kim43d77862012-06-09 02:23:16 +09001985 if (unlikely(!new.inuse && n->nr_partial > s->min_partial)) {
Shaohua Li9ada1932011-11-14 13:34:13 +08001986 page->next = discard_page;
1987 discard_page = page;
Joonsoo Kim43d77862012-06-09 02:23:16 +09001988 } else {
1989 add_partial(n, page, DEACTIVATE_TO_TAIL);
1990 stat(s, FREE_ADD_PARTIAL);
Christoph Lameter49e22582011-08-09 16:12:27 -05001991 }
1992 }
1993
1994 if (n)
1995 spin_unlock(&n->list_lock);
Shaohua Li9ada1932011-11-14 13:34:13 +08001996
1997 while (discard_page) {
1998 page = discard_page;
1999 discard_page = discard_page->next;
2000
2001 stat(s, DEACTIVATE_EMPTY);
2002 discard_slab(s, page);
2003 stat(s, FREE_SLAB);
2004 }
Joonsoo Kim345c9052013-06-19 14:05:52 +09002005#endif
Christoph Lameter49e22582011-08-09 16:12:27 -05002006}
2007
2008/*
2009 * Put a page that was just frozen (in __slab_free) into a partial page
2010 * slot if available. This is done without interrupts disabled and without
2011 * preemption disabled. The cmpxchg is racy and may put the partial page
2012 * onto a random cpus partial slot.
2013 *
2014 * If we did not find a slot then simply move all the partials to the
2015 * per node partial list.
2016 */
Joonsoo Kim633b0762013-01-21 17:01:25 +09002017static void put_cpu_partial(struct kmem_cache *s, struct page *page, int drain)
Christoph Lameter49e22582011-08-09 16:12:27 -05002018{
Joonsoo Kim345c9052013-06-19 14:05:52 +09002019#ifdef CONFIG_SLUB_CPU_PARTIAL
Christoph Lameter49e22582011-08-09 16:12:27 -05002020 struct page *oldpage;
2021 int pages;
2022 int pobjects;
2023
2024 do {
2025 pages = 0;
2026 pobjects = 0;
2027 oldpage = this_cpu_read(s->cpu_slab->partial);
2028
2029 if (oldpage) {
2030 pobjects = oldpage->pobjects;
2031 pages = oldpage->pages;
2032 if (drain && pobjects > s->cpu_partial) {
2033 unsigned long flags;
2034 /*
2035 * partial array is full. Move the existing
2036 * set to the per node partial list.
2037 */
2038 local_irq_save(flags);
Christoph Lameter59a09912012-11-28 16:23:00 +00002039 unfreeze_partials(s, this_cpu_ptr(s->cpu_slab));
Christoph Lameter49e22582011-08-09 16:12:27 -05002040 local_irq_restore(flags);
Joonsoo Kime24fc412012-06-23 03:22:38 +09002041 oldpage = NULL;
Christoph Lameter49e22582011-08-09 16:12:27 -05002042 pobjects = 0;
2043 pages = 0;
Alex Shi8028dce2012-02-03 23:34:56 +08002044 stat(s, CPU_PARTIAL_DRAIN);
Christoph Lameter49e22582011-08-09 16:12:27 -05002045 }
2046 }
2047
2048 pages++;
2049 pobjects += page->objects - page->inuse;
2050
2051 page->pages = pages;
2052 page->pobjects = pobjects;
2053 page->next = oldpage;
2054
Chen Gangd0e0ac92013-07-15 09:05:29 +08002055 } while (this_cpu_cmpxchg(s->cpu_slab->partial, oldpage, page)
2056 != oldpage);
Joonsoo Kim345c9052013-06-19 14:05:52 +09002057#endif
Christoph Lameter49e22582011-08-09 16:12:27 -05002058}
2059
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002060static inline void flush_slab(struct kmem_cache *s, struct kmem_cache_cpu *c)
Christoph Lameter81819f02007-05-06 14:49:36 -07002061{
Christoph Lameter84e554e62009-12-18 16:26:23 -06002062 stat(s, CPUSLAB_FLUSH);
Christoph Lameterc17dda42012-05-09 10:09:57 -05002063 deactivate_slab(s, c->page, c->freelist);
2064
2065 c->tid = next_tid(c->tid);
2066 c->page = NULL;
2067 c->freelist = NULL;
Christoph Lameter81819f02007-05-06 14:49:36 -07002068}
2069
2070/*
2071 * Flush cpu slab.
Christoph Lameter6446faa2008-02-15 23:45:26 -08002072 *
Christoph Lameter81819f02007-05-06 14:49:36 -07002073 * Called from IPI handler with interrupts disabled.
2074 */
Christoph Lameter0c710012007-07-17 04:03:24 -07002075static inline void __flush_cpu_slab(struct kmem_cache *s, int cpu)
Christoph Lameter81819f02007-05-06 14:49:36 -07002076{
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06002077 struct kmem_cache_cpu *c = per_cpu_ptr(s->cpu_slab, cpu);
Christoph Lameter81819f02007-05-06 14:49:36 -07002078
Christoph Lameter49e22582011-08-09 16:12:27 -05002079 if (likely(c)) {
2080 if (c->page)
2081 flush_slab(s, c);
2082
Christoph Lameter59a09912012-11-28 16:23:00 +00002083 unfreeze_partials(s, c);
Christoph Lameter49e22582011-08-09 16:12:27 -05002084 }
Christoph Lameter81819f02007-05-06 14:49:36 -07002085}
2086
2087static void flush_cpu_slab(void *d)
2088{
2089 struct kmem_cache *s = d;
Christoph Lameter81819f02007-05-06 14:49:36 -07002090
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002091 __flush_cpu_slab(s, smp_processor_id());
Christoph Lameter81819f02007-05-06 14:49:36 -07002092}
2093
Gilad Ben-Yossefa8364d52012-03-28 14:42:44 -07002094static bool has_cpu_slab(int cpu, void *info)
2095{
2096 struct kmem_cache *s = info;
2097 struct kmem_cache_cpu *c = per_cpu_ptr(s->cpu_slab, cpu);
2098
majianpeng02e1a9c2012-05-17 17:03:26 -07002099 return c->page || c->partial;
Gilad Ben-Yossefa8364d52012-03-28 14:42:44 -07002100}
2101
Christoph Lameter81819f02007-05-06 14:49:36 -07002102static void flush_all(struct kmem_cache *s)
2103{
Gilad Ben-Yossefa8364d52012-03-28 14:42:44 -07002104 on_each_cpu_cond(has_cpu_slab, flush_cpu_slab, s, 1, GFP_ATOMIC);
Christoph Lameter81819f02007-05-06 14:49:36 -07002105}
2106
2107/*
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002108 * Check if the objects in a per cpu structure fit numa
2109 * locality expectations.
2110 */
Christoph Lameter57d437d2012-05-09 10:09:59 -05002111static inline int node_match(struct page *page, int node)
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002112{
2113#ifdef CONFIG_NUMA
Christoph Lameter4d7868e2013-01-23 21:45:47 +00002114 if (!page || (node != NUMA_NO_NODE && page_to_nid(page) != node))
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002115 return 0;
2116#endif
2117 return 1;
2118}
2119
Pekka Enberg781b2ba2009-06-10 18:50:32 +03002120static int count_free(struct page *page)
2121{
2122 return page->objects - page->inuse;
2123}
2124
2125static unsigned long count_partial(struct kmem_cache_node *n,
2126 int (*get_count)(struct page *))
2127{
2128 unsigned long flags;
2129 unsigned long x = 0;
2130 struct page *page;
2131
2132 spin_lock_irqsave(&n->list_lock, flags);
2133 list_for_each_entry(page, &n->partial, lru)
2134 x += get_count(page);
2135 spin_unlock_irqrestore(&n->list_lock, flags);
2136 return x;
2137}
2138
Alexander Beregalov26c02cf2009-06-11 14:08:48 +04002139static inline unsigned long node_nr_objs(struct kmem_cache_node *n)
2140{
2141#ifdef CONFIG_SLUB_DEBUG
2142 return atomic_long_read(&n->total_objects);
2143#else
2144 return 0;
2145#endif
2146}
2147
Pekka Enberg781b2ba2009-06-10 18:50:32 +03002148static noinline void
2149slab_out_of_memory(struct kmem_cache *s, gfp_t gfpflags, int nid)
2150{
2151 int node;
2152
Fabian Frederickf9f58282014-06-04 16:06:34 -07002153 pr_warn("SLUB: Unable to allocate memory on node %d (gfp=0x%x)\n",
Pekka Enberg781b2ba2009-06-10 18:50:32 +03002154 nid, gfpflags);
Fabian Frederickf9f58282014-06-04 16:06:34 -07002155 pr_warn(" cache: %s, object size: %d, buffer size: %d, default order: %d, min order: %d\n",
2156 s->name, s->object_size, s->size, oo_order(s->oo),
2157 oo_order(s->min));
Pekka Enberg781b2ba2009-06-10 18:50:32 +03002158
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002159 if (oo_order(s->min) > get_order(s->object_size))
Fabian Frederickf9f58282014-06-04 16:06:34 -07002160 pr_warn(" %s debugging increased min order, use slub_debug=O to disable.\n",
2161 s->name);
David Rientjesfa5ec8a2009-07-07 00:14:14 -07002162
Pekka Enberg781b2ba2009-06-10 18:50:32 +03002163 for_each_online_node(node) {
2164 struct kmem_cache_node *n = get_node(s, node);
2165 unsigned long nr_slabs;
2166 unsigned long nr_objs;
2167 unsigned long nr_free;
2168
2169 if (!n)
2170 continue;
2171
Alexander Beregalov26c02cf2009-06-11 14:08:48 +04002172 nr_free = count_partial(n, count_free);
2173 nr_slabs = node_nr_slabs(n);
2174 nr_objs = node_nr_objs(n);
Pekka Enberg781b2ba2009-06-10 18:50:32 +03002175
Fabian Frederickf9f58282014-06-04 16:06:34 -07002176 pr_warn(" node %d: slabs: %ld, objs: %ld, free: %ld\n",
Pekka Enberg781b2ba2009-06-10 18:50:32 +03002177 node, nr_slabs, nr_objs, nr_free);
2178 }
2179}
2180
Christoph Lameter497b66f2011-08-09 16:12:26 -05002181static inline void *new_slab_objects(struct kmem_cache *s, gfp_t flags,
2182 int node, struct kmem_cache_cpu **pc)
2183{
Christoph Lameter6faa6832012-05-09 10:09:51 -05002184 void *freelist;
Christoph Lameter188fd062012-05-09 10:09:55 -05002185 struct kmem_cache_cpu *c = *pc;
2186 struct page *page;
Christoph Lameter497b66f2011-08-09 16:12:26 -05002187
Christoph Lameter188fd062012-05-09 10:09:55 -05002188 freelist = get_partial(s, flags, node, c);
2189
2190 if (freelist)
2191 return freelist;
2192
2193 page = new_slab(s, flags, node);
Christoph Lameter497b66f2011-08-09 16:12:26 -05002194 if (page) {
2195 c = __this_cpu_ptr(s->cpu_slab);
2196 if (c->page)
2197 flush_slab(s, c);
2198
2199 /*
2200 * No other reference to the page yet so we can
2201 * muck around with it freely without cmpxchg
2202 */
Christoph Lameter6faa6832012-05-09 10:09:51 -05002203 freelist = page->freelist;
Christoph Lameter497b66f2011-08-09 16:12:26 -05002204 page->freelist = NULL;
2205
2206 stat(s, ALLOC_SLAB);
Christoph Lameter497b66f2011-08-09 16:12:26 -05002207 c->page = page;
2208 *pc = c;
2209 } else
Christoph Lameter6faa6832012-05-09 10:09:51 -05002210 freelist = NULL;
Christoph Lameter497b66f2011-08-09 16:12:26 -05002211
Christoph Lameter6faa6832012-05-09 10:09:51 -05002212 return freelist;
Christoph Lameter497b66f2011-08-09 16:12:26 -05002213}
2214
Mel Gorman072bb0a2012-07-31 16:43:58 -07002215static inline bool pfmemalloc_match(struct page *page, gfp_t gfpflags)
2216{
2217 if (unlikely(PageSlabPfmemalloc(page)))
2218 return gfp_pfmemalloc_allowed(gfpflags);
2219
2220 return true;
2221}
2222
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002223/*
Chen Gangd0e0ac92013-07-15 09:05:29 +08002224 * Check the page->freelist of a page and either transfer the freelist to the
2225 * per cpu freelist or deactivate the page.
Christoph Lameter213eeb92011-11-11 14:07:14 -06002226 *
2227 * The page is still frozen if the return value is not NULL.
2228 *
2229 * If this function returns NULL then the page has been unfrozen.
Joonsoo Kimd24ac772012-05-18 22:01:17 +09002230 *
2231 * This function must be called with interrupt disabled.
Christoph Lameter213eeb92011-11-11 14:07:14 -06002232 */
2233static inline void *get_freelist(struct kmem_cache *s, struct page *page)
2234{
2235 struct page new;
2236 unsigned long counters;
2237 void *freelist;
2238
2239 do {
2240 freelist = page->freelist;
2241 counters = page->counters;
Christoph Lameter6faa6832012-05-09 10:09:51 -05002242
Christoph Lameter213eeb92011-11-11 14:07:14 -06002243 new.counters = counters;
Dave Hansena0132ac2014-01-29 14:05:50 -08002244 VM_BUG_ON(!new.frozen);
Christoph Lameter213eeb92011-11-11 14:07:14 -06002245
2246 new.inuse = page->objects;
2247 new.frozen = freelist != NULL;
2248
Joonsoo Kimd24ac772012-05-18 22:01:17 +09002249 } while (!__cmpxchg_double_slab(s, page,
Christoph Lameter213eeb92011-11-11 14:07:14 -06002250 freelist, counters,
2251 NULL, new.counters,
2252 "get_freelist"));
2253
2254 return freelist;
2255}
2256
2257/*
Christoph Lameter894b8782007-05-10 03:15:16 -07002258 * Slow path. The lockless freelist is empty or we need to perform
2259 * debugging duties.
Christoph Lameter81819f02007-05-06 14:49:36 -07002260 *
Christoph Lameter894b8782007-05-10 03:15:16 -07002261 * Processing is still very fast if new objects have been freed to the
2262 * regular freelist. In that case we simply take over the regular freelist
2263 * as the lockless freelist and zap the regular freelist.
Christoph Lameter81819f02007-05-06 14:49:36 -07002264 *
Christoph Lameter894b8782007-05-10 03:15:16 -07002265 * If that is not working then we fall back to the partial lists. We take the
2266 * first element of the freelist as the object to allocate now and move the
2267 * rest of the freelist to the lockless freelist.
2268 *
2269 * And if we were unable to get a new slab from the partial slab lists then
Christoph Lameter6446faa2008-02-15 23:45:26 -08002270 * we need to allocate a new slab. This is the slowest path since it involves
2271 * a call to the page allocator and the setup of a new slab.
Christoph Lameter81819f02007-05-06 14:49:36 -07002272 */
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03002273static void *__slab_alloc(struct kmem_cache *s, gfp_t gfpflags, int node,
2274 unsigned long addr, struct kmem_cache_cpu *c)
Christoph Lameter81819f02007-05-06 14:49:36 -07002275{
Christoph Lameter6faa6832012-05-09 10:09:51 -05002276 void *freelist;
Christoph Lameterf6e7def2012-05-09 10:09:58 -05002277 struct page *page;
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002278 unsigned long flags;
2279
2280 local_irq_save(flags);
2281#ifdef CONFIG_PREEMPT
2282 /*
2283 * We may have been preempted and rescheduled on a different
2284 * cpu before disabling interrupts. Need to reload cpu area
2285 * pointer.
2286 */
2287 c = this_cpu_ptr(s->cpu_slab);
2288#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07002289
Christoph Lameterf6e7def2012-05-09 10:09:58 -05002290 page = c->page;
2291 if (!page)
Christoph Lameter81819f02007-05-06 14:49:36 -07002292 goto new_slab;
Christoph Lameter49e22582011-08-09 16:12:27 -05002293redo:
Christoph Lameter6faa6832012-05-09 10:09:51 -05002294
Christoph Lameter57d437d2012-05-09 10:09:59 -05002295 if (unlikely(!node_match(page, node))) {
Christoph Lametere36a2652011-06-01 12:25:57 -05002296 stat(s, ALLOC_NODE_MISMATCH);
Christoph Lameterf6e7def2012-05-09 10:09:58 -05002297 deactivate_slab(s, page, c->freelist);
Christoph Lameterc17dda42012-05-09 10:09:57 -05002298 c->page = NULL;
2299 c->freelist = NULL;
Christoph Lameterfc59c052011-06-01 12:25:56 -05002300 goto new_slab;
2301 }
Christoph Lameter6446faa2008-02-15 23:45:26 -08002302
Mel Gorman072bb0a2012-07-31 16:43:58 -07002303 /*
2304 * By rights, we should be searching for a slab page that was
2305 * PFMEMALLOC but right now, we are losing the pfmemalloc
2306 * information when the page leaves the per-cpu allocator
2307 */
2308 if (unlikely(!pfmemalloc_match(page, gfpflags))) {
2309 deactivate_slab(s, page, c->freelist);
2310 c->page = NULL;
2311 c->freelist = NULL;
2312 goto new_slab;
2313 }
2314
Eric Dumazet73736e02011-12-13 04:57:06 +01002315 /* must check again c->freelist in case of cpu migration or IRQ */
Christoph Lameter6faa6832012-05-09 10:09:51 -05002316 freelist = c->freelist;
2317 if (freelist)
Eric Dumazet73736e02011-12-13 04:57:06 +01002318 goto load_freelist;
2319
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002320 stat(s, ALLOC_SLOWPATH);
2321
Christoph Lameterf6e7def2012-05-09 10:09:58 -05002322 freelist = get_freelist(s, page);
Christoph Lameter6446faa2008-02-15 23:45:26 -08002323
Christoph Lameter6faa6832012-05-09 10:09:51 -05002324 if (!freelist) {
Christoph Lameter03e404a2011-06-01 12:25:58 -05002325 c->page = NULL;
2326 stat(s, DEACTIVATE_BYPASS);
Christoph Lameterfc59c052011-06-01 12:25:56 -05002327 goto new_slab;
Christoph Lameter03e404a2011-06-01 12:25:58 -05002328 }
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002329
Christoph Lameter81819f02007-05-06 14:49:36 -07002330 stat(s, ALLOC_REFILL);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08002331
Christoph Lameter894b8782007-05-10 03:15:16 -07002332load_freelist:
Christoph Lameter507effe2012-05-09 10:09:52 -05002333 /*
2334 * freelist is pointing to the list of objects to be used.
2335 * page is pointing to the page from which the objects are obtained.
2336 * That page must be frozen for per cpu allocations to work.
2337 */
Dave Hansena0132ac2014-01-29 14:05:50 -08002338 VM_BUG_ON(!c->page->frozen);
Christoph Lameter6faa6832012-05-09 10:09:51 -05002339 c->freelist = get_freepointer(s, freelist);
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002340 c->tid = next_tid(c->tid);
2341 local_irq_restore(flags);
Christoph Lameter6faa6832012-05-09 10:09:51 -05002342 return freelist;
Christoph Lameter81819f02007-05-06 14:49:36 -07002343
Christoph Lameter81819f02007-05-06 14:49:36 -07002344new_slab:
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002345
Christoph Lameter49e22582011-08-09 16:12:27 -05002346 if (c->partial) {
Christoph Lameterf6e7def2012-05-09 10:09:58 -05002347 page = c->page = c->partial;
2348 c->partial = page->next;
Christoph Lameter49e22582011-08-09 16:12:27 -05002349 stat(s, CPU_PARTIAL_ALLOC);
2350 c->freelist = NULL;
2351 goto redo;
Christoph Lameter81819f02007-05-06 14:49:36 -07002352 }
2353
Christoph Lameter188fd062012-05-09 10:09:55 -05002354 freelist = new_slab_objects(s, gfpflags, node, &c);
Christoph Lameterb811c202007-10-16 23:25:51 -07002355
Christoph Lameterf46974362012-05-09 10:09:54 -05002356 if (unlikely(!freelist)) {
2357 if (!(gfpflags & __GFP_NOWARN) && printk_ratelimit())
2358 slab_out_of_memory(s, gfpflags, node);
Christoph Lameter01ad8a72011-04-15 14:48:14 -05002359
Christoph Lameterf46974362012-05-09 10:09:54 -05002360 local_irq_restore(flags);
2361 return NULL;
Christoph Lameter81819f02007-05-06 14:49:36 -07002362 }
Christoph Lameter894b8782007-05-10 03:15:16 -07002363
Christoph Lameterf6e7def2012-05-09 10:09:58 -05002364 page = c->page;
Christoph Lameter5091b742012-07-31 16:44:00 -07002365 if (likely(!kmem_cache_debug(s) && pfmemalloc_match(page, gfpflags)))
Christoph Lameter81819f02007-05-06 14:49:36 -07002366 goto load_freelist;
Christoph Lameter894b8782007-05-10 03:15:16 -07002367
Christoph Lameter497b66f2011-08-09 16:12:26 -05002368 /* Only entered in the debug case */
Chen Gangd0e0ac92013-07-15 09:05:29 +08002369 if (kmem_cache_debug(s) &&
2370 !alloc_debug_processing(s, page, freelist, addr))
Christoph Lameter497b66f2011-08-09 16:12:26 -05002371 goto new_slab; /* Slab failed checks. Next slab needed */
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002372
Christoph Lameterf6e7def2012-05-09 10:09:58 -05002373 deactivate_slab(s, page, get_freepointer(s, freelist));
Christoph Lameterc17dda42012-05-09 10:09:57 -05002374 c->page = NULL;
2375 c->freelist = NULL;
Christoph Lametera71ae472011-05-25 09:47:43 -05002376 local_irq_restore(flags);
Christoph Lameter6faa6832012-05-09 10:09:51 -05002377 return freelist;
Christoph Lameter894b8782007-05-10 03:15:16 -07002378}
2379
2380/*
2381 * Inlined fastpath so that allocation functions (kmalloc, kmem_cache_alloc)
2382 * have the fastpath folded into their functions. So no function call
2383 * overhead for requests that can be satisfied on the fastpath.
2384 *
2385 * The fastpath works by first checking if the lockless freelist can be used.
2386 * If not then __slab_alloc is called for slow processing.
2387 *
2388 * Otherwise we can simply pick the next object from the lockless free list.
2389 */
Ezequiel Garcia2b847c32012-09-08 17:47:58 -03002390static __always_inline void *slab_alloc_node(struct kmem_cache *s,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03002391 gfp_t gfpflags, int node, unsigned long addr)
Christoph Lameter894b8782007-05-10 03:15:16 -07002392{
Christoph Lameter894b8782007-05-10 03:15:16 -07002393 void **object;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002394 struct kmem_cache_cpu *c;
Christoph Lameter57d437d2012-05-09 10:09:59 -05002395 struct page *page;
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002396 unsigned long tid;
Christoph Lameter1f842602008-01-07 23:20:30 -08002397
Christoph Lameterc016b0b2010-08-20 12:37:16 -05002398 if (slab_pre_alloc_hook(s, gfpflags))
Akinobu Mita773ff602008-12-23 19:37:01 +09002399 return NULL;
2400
Glauber Costad79923f2012-12-18 14:22:48 -08002401 s = memcg_kmem_get_cache(s, gfpflags);
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002402redo:
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002403 /*
2404 * Must read kmem_cache cpu data via this cpu ptr. Preemption is
2405 * enabled. We may switch back and forth between cpus while
2406 * reading from one cpu area. That does not matter as long
2407 * as we end up on the original cpu again when doing the cmpxchg.
Christoph Lameter7cccd802013-01-23 21:45:48 +00002408 *
2409 * Preemption is disabled for the retrieval of the tid because that
2410 * must occur from the current processor. We cannot allow rescheduling
2411 * on a different processor between the determination of the pointer
2412 * and the retrieval of the tid.
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002413 */
Christoph Lameter7cccd802013-01-23 21:45:48 +00002414 preempt_disable();
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06002415 c = __this_cpu_ptr(s->cpu_slab);
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002416
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002417 /*
2418 * The transaction ids are globally unique per cpu and per operation on
2419 * a per cpu queue. Thus they can be guarantee that the cmpxchg_double
2420 * occurs on the right processor and that there was no operation on the
2421 * linked list in between.
2422 */
2423 tid = c->tid;
Christoph Lameter7cccd802013-01-23 21:45:48 +00002424 preempt_enable();
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002425
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06002426 object = c->freelist;
Christoph Lameter57d437d2012-05-09 10:09:59 -05002427 page = c->page;
Libinac6434e2013-07-18 15:39:51 +08002428 if (unlikely(!object || !node_match(page, node)))
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002429 object = __slab_alloc(s, gfpflags, node, addr, c);
Christoph Lameter894b8782007-05-10 03:15:16 -07002430
2431 else {
Eric Dumazet0ad95002011-12-16 16:25:34 +01002432 void *next_object = get_freepointer_safe(s, object);
2433
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002434 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002435 * The cmpxchg will only match if there was no additional
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002436 * operation and if we are on the right processor.
2437 *
Chen Gangd0e0ac92013-07-15 09:05:29 +08002438 * The cmpxchg does the following atomically (without lock
2439 * semantics!)
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002440 * 1. Relocate first pointer to the current per cpu area.
2441 * 2. Verify that tid and freelist have not been changed
2442 * 3. If they were not changed replace tid and freelist
2443 *
Chen Gangd0e0ac92013-07-15 09:05:29 +08002444 * Since this is without lock semantics the protection is only
2445 * against code executing on this cpu *not* from access by
2446 * other cpus.
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002447 */
Christoph Lameter933393f2011-12-22 11:58:51 -06002448 if (unlikely(!this_cpu_cmpxchg_double(
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002449 s->cpu_slab->freelist, s->cpu_slab->tid,
2450 object, tid,
Eric Dumazet0ad95002011-12-16 16:25:34 +01002451 next_object, next_tid(tid)))) {
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002452
2453 note_cmpxchg_failure("slab_alloc", s, tid);
2454 goto redo;
2455 }
Eric Dumazet0ad95002011-12-16 16:25:34 +01002456 prefetch_freepointer(s, next_object);
Christoph Lameter84e554e62009-12-18 16:26:23 -06002457 stat(s, ALLOC_FASTPATH);
Christoph Lameter894b8782007-05-10 03:15:16 -07002458 }
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002459
Pekka Enberg74e21342009-11-25 20:14:48 +02002460 if (unlikely(gfpflags & __GFP_ZERO) && object)
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002461 memset(object, 0, s->object_size);
Christoph Lameterd07dbea2007-07-17 04:03:23 -07002462
Christoph Lameterc016b0b2010-08-20 12:37:16 -05002463 slab_post_alloc_hook(s, gfpflags, object);
Vegard Nossum5a896d92008-04-04 00:54:48 +02002464
Christoph Lameter894b8782007-05-10 03:15:16 -07002465 return object;
Christoph Lameter81819f02007-05-06 14:49:36 -07002466}
2467
Ezequiel Garcia2b847c32012-09-08 17:47:58 -03002468static __always_inline void *slab_alloc(struct kmem_cache *s,
2469 gfp_t gfpflags, unsigned long addr)
2470{
2471 return slab_alloc_node(s, gfpflags, NUMA_NO_NODE, addr);
2472}
2473
Christoph Lameter81819f02007-05-06 14:49:36 -07002474void *kmem_cache_alloc(struct kmem_cache *s, gfp_t gfpflags)
2475{
Ezequiel Garcia2b847c32012-09-08 17:47:58 -03002476 void *ret = slab_alloc(s, gfpflags, _RET_IP_);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002477
Chen Gangd0e0ac92013-07-15 09:05:29 +08002478 trace_kmem_cache_alloc(_RET_IP_, ret, s->object_size,
2479 s->size, gfpflags);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002480
2481 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07002482}
2483EXPORT_SYMBOL(kmem_cache_alloc);
2484
Li Zefan0f24f122009-12-11 15:45:30 +08002485#ifdef CONFIG_TRACING
Richard Kennedy4a923792010-10-21 10:29:19 +01002486void *kmem_cache_alloc_trace(struct kmem_cache *s, gfp_t gfpflags, size_t size)
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002487{
Ezequiel Garcia2b847c32012-09-08 17:47:58 -03002488 void *ret = slab_alloc(s, gfpflags, _RET_IP_);
Richard Kennedy4a923792010-10-21 10:29:19 +01002489 trace_kmalloc(_RET_IP_, ret, size, s->size, gfpflags);
2490 return ret;
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002491}
Richard Kennedy4a923792010-10-21 10:29:19 +01002492EXPORT_SYMBOL(kmem_cache_alloc_trace);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002493#endif
2494
Christoph Lameter81819f02007-05-06 14:49:36 -07002495#ifdef CONFIG_NUMA
2496void *kmem_cache_alloc_node(struct kmem_cache *s, gfp_t gfpflags, int node)
2497{
Ezequiel Garcia2b847c32012-09-08 17:47:58 -03002498 void *ret = slab_alloc_node(s, gfpflags, node, _RET_IP_);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002499
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02002500 trace_kmem_cache_alloc_node(_RET_IP_, ret,
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002501 s->object_size, s->size, gfpflags, node);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002502
2503 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07002504}
2505EXPORT_SYMBOL(kmem_cache_alloc_node);
Christoph Lameter81819f02007-05-06 14:49:36 -07002506
Li Zefan0f24f122009-12-11 15:45:30 +08002507#ifdef CONFIG_TRACING
Richard Kennedy4a923792010-10-21 10:29:19 +01002508void *kmem_cache_alloc_node_trace(struct kmem_cache *s,
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002509 gfp_t gfpflags,
Richard Kennedy4a923792010-10-21 10:29:19 +01002510 int node, size_t size)
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002511{
Ezequiel Garcia2b847c32012-09-08 17:47:58 -03002512 void *ret = slab_alloc_node(s, gfpflags, node, _RET_IP_);
Richard Kennedy4a923792010-10-21 10:29:19 +01002513
2514 trace_kmalloc_node(_RET_IP_, ret,
2515 size, s->size, gfpflags, node);
2516 return ret;
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002517}
Richard Kennedy4a923792010-10-21 10:29:19 +01002518EXPORT_SYMBOL(kmem_cache_alloc_node_trace);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002519#endif
Namhyung Kim5d1f57e2010-09-29 21:02:15 +09002520#endif
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002521
Christoph Lameter81819f02007-05-06 14:49:36 -07002522/*
Christoph Lameter894b8782007-05-10 03:15:16 -07002523 * Slow patch handling. This may still be called frequently since objects
2524 * have a longer lifetime than the cpu slabs in most processing loads.
Christoph Lameter81819f02007-05-06 14:49:36 -07002525 *
Christoph Lameter894b8782007-05-10 03:15:16 -07002526 * So we still attempt to reduce cache line usage. Just take the slab
2527 * lock and free the item. If there is no additional partial page
2528 * handling required then we can return immediately.
Christoph Lameter81819f02007-05-06 14:49:36 -07002529 */
Christoph Lameter894b8782007-05-10 03:15:16 -07002530static void __slab_free(struct kmem_cache *s, struct page *page,
Christoph Lameterff120592009-12-18 16:26:22 -06002531 void *x, unsigned long addr)
Christoph Lameter81819f02007-05-06 14:49:36 -07002532{
2533 void *prior;
2534 void **object = (void *)x;
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002535 int was_frozen;
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002536 struct page new;
2537 unsigned long counters;
2538 struct kmem_cache_node *n = NULL;
Christoph Lameter61728d12011-06-01 12:25:51 -05002539 unsigned long uninitialized_var(flags);
Christoph Lameter81819f02007-05-06 14:49:36 -07002540
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002541 stat(s, FREE_SLOWPATH);
Christoph Lameter81819f02007-05-06 14:49:36 -07002542
Christoph Lameter19c7ff92012-05-30 12:54:46 -05002543 if (kmem_cache_debug(s) &&
2544 !(n = free_debug_processing(s, page, x, addr, &flags)))
Christoph Lameter80f08c12011-06-01 12:25:55 -05002545 return;
Christoph Lameter6446faa2008-02-15 23:45:26 -08002546
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002547 do {
Joonsoo Kim837d6782012-08-16 00:02:40 +09002548 if (unlikely(n)) {
2549 spin_unlock_irqrestore(&n->list_lock, flags);
2550 n = NULL;
2551 }
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002552 prior = page->freelist;
2553 counters = page->counters;
2554 set_freepointer(s, object, prior);
2555 new.counters = counters;
2556 was_frozen = new.frozen;
2557 new.inuse--;
Joonsoo Kim837d6782012-08-16 00:02:40 +09002558 if ((!new.inuse || !prior) && !was_frozen) {
Christoph Lameter49e22582011-08-09 16:12:27 -05002559
Peter Zijlstrac65c1872014-01-10 13:23:49 +01002560 if (kmem_cache_has_cpu_partial(s) && !prior) {
Christoph Lameter49e22582011-08-09 16:12:27 -05002561
2562 /*
Chen Gangd0e0ac92013-07-15 09:05:29 +08002563 * Slab was on no list before and will be
2564 * partially empty
2565 * We can defer the list move and instead
2566 * freeze it.
Christoph Lameter49e22582011-08-09 16:12:27 -05002567 */
2568 new.frozen = 1;
2569
Peter Zijlstrac65c1872014-01-10 13:23:49 +01002570 } else { /* Needs to be taken off a list */
Christoph Lameter49e22582011-08-09 16:12:27 -05002571
2572 n = get_node(s, page_to_nid(page));
2573 /*
2574 * Speculatively acquire the list_lock.
2575 * If the cmpxchg does not succeed then we may
2576 * drop the list_lock without any processing.
2577 *
2578 * Otherwise the list_lock will synchronize with
2579 * other processors updating the list of slabs.
2580 */
2581 spin_lock_irqsave(&n->list_lock, flags);
2582
2583 }
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002584 }
Christoph Lameter81819f02007-05-06 14:49:36 -07002585
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002586 } while (!cmpxchg_double_slab(s, page,
2587 prior, counters,
2588 object, new.counters,
2589 "__slab_free"));
Christoph Lameter81819f02007-05-06 14:49:36 -07002590
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002591 if (likely(!n)) {
Christoph Lameter49e22582011-08-09 16:12:27 -05002592
2593 /*
2594 * If we just froze the page then put it onto the
2595 * per cpu partial list.
2596 */
Alex Shi8028dce2012-02-03 23:34:56 +08002597 if (new.frozen && !was_frozen) {
Christoph Lameter49e22582011-08-09 16:12:27 -05002598 put_cpu_partial(s, page, 1);
Alex Shi8028dce2012-02-03 23:34:56 +08002599 stat(s, CPU_PARTIAL_FREE);
2600 }
Christoph Lameter49e22582011-08-09 16:12:27 -05002601 /*
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002602 * The list lock was not taken therefore no list
2603 * activity can be necessary.
2604 */
2605 if (was_frozen)
2606 stat(s, FREE_FROZEN);
Christoph Lameter80f08c12011-06-01 12:25:55 -05002607 return;
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002608 }
Christoph Lameter81819f02007-05-06 14:49:36 -07002609
Joonsoo Kim837d6782012-08-16 00:02:40 +09002610 if (unlikely(!new.inuse && n->nr_partial > s->min_partial))
2611 goto slab_empty;
Christoph Lameter81819f02007-05-06 14:49:36 -07002612
Joonsoo Kim837d6782012-08-16 00:02:40 +09002613 /*
2614 * Objects left in the slab. If it was not on the partial list before
2615 * then add it.
2616 */
Joonsoo Kim345c9052013-06-19 14:05:52 +09002617 if (!kmem_cache_has_cpu_partial(s) && unlikely(!prior)) {
2618 if (kmem_cache_debug(s))
Peter Zijlstrac65c1872014-01-10 13:23:49 +01002619 remove_full(s, n, page);
Joonsoo Kim837d6782012-08-16 00:02:40 +09002620 add_partial(n, page, DEACTIVATE_TO_TAIL);
2621 stat(s, FREE_ADD_PARTIAL);
Christoph Lameter81819f02007-05-06 14:49:36 -07002622 }
Christoph Lameter80f08c12011-06-01 12:25:55 -05002623 spin_unlock_irqrestore(&n->list_lock, flags);
Christoph Lameter81819f02007-05-06 14:49:36 -07002624 return;
2625
2626slab_empty:
Christoph Lametera973e9d2008-03-01 13:40:44 -08002627 if (prior) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002628 /*
Christoph Lameter6fbabb22011-08-08 11:16:56 -05002629 * Slab on the partial list.
Christoph Lameter81819f02007-05-06 14:49:36 -07002630 */
Christoph Lameter5cc6eee2011-06-01 12:25:50 -05002631 remove_partial(n, page);
Christoph Lameter84e554e62009-12-18 16:26:23 -06002632 stat(s, FREE_REMOVE_PARTIAL);
Peter Zijlstrac65c1872014-01-10 13:23:49 +01002633 } else {
Christoph Lameter6fbabb22011-08-08 11:16:56 -05002634 /* Slab must be on the full list */
Peter Zijlstrac65c1872014-01-10 13:23:49 +01002635 remove_full(s, n, page);
2636 }
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002637
Christoph Lameter80f08c12011-06-01 12:25:55 -05002638 spin_unlock_irqrestore(&n->list_lock, flags);
Christoph Lameter84e554e62009-12-18 16:26:23 -06002639 stat(s, FREE_SLAB);
Christoph Lameter81819f02007-05-06 14:49:36 -07002640 discard_slab(s, page);
Christoph Lameter81819f02007-05-06 14:49:36 -07002641}
2642
Christoph Lameter894b8782007-05-10 03:15:16 -07002643/*
2644 * Fastpath with forced inlining to produce a kfree and kmem_cache_free that
2645 * can perform fastpath freeing without additional function calls.
2646 *
2647 * The fastpath is only possible if we are freeing to the current cpu slab
2648 * of this processor. This typically the case if we have just allocated
2649 * the item before.
2650 *
2651 * If fastpath is not possible then fall back to __slab_free where we deal
2652 * with all sorts of special processing.
2653 */
Pekka Enberg06428782008-01-07 23:20:27 -08002654static __always_inline void slab_free(struct kmem_cache *s,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03002655 struct page *page, void *x, unsigned long addr)
Christoph Lameter894b8782007-05-10 03:15:16 -07002656{
2657 void **object = (void *)x;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002658 struct kmem_cache_cpu *c;
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002659 unsigned long tid;
Christoph Lameter1f842602008-01-07 23:20:30 -08002660
Christoph Lameterc016b0b2010-08-20 12:37:16 -05002661 slab_free_hook(s, x);
2662
Christoph Lametera24c5a02011-03-15 12:45:21 -05002663redo:
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002664 /*
2665 * Determine the currently cpus per cpu slab.
2666 * The cpu may change afterward. However that does not matter since
2667 * data is retrieved via this pointer. If we are on the same cpu
2668 * during the cmpxchg then the free will succedd.
2669 */
Christoph Lameter7cccd802013-01-23 21:45:48 +00002670 preempt_disable();
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06002671 c = __this_cpu_ptr(s->cpu_slab);
Christoph Lameterc016b0b2010-08-20 12:37:16 -05002672
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002673 tid = c->tid;
Christoph Lameter7cccd802013-01-23 21:45:48 +00002674 preempt_enable();
Christoph Lameterc016b0b2010-08-20 12:37:16 -05002675
Christoph Lameter442b06b2011-05-17 16:29:31 -05002676 if (likely(page == c->page)) {
Christoph Lameterff120592009-12-18 16:26:22 -06002677 set_freepointer(s, object, c->freelist);
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002678
Christoph Lameter933393f2011-12-22 11:58:51 -06002679 if (unlikely(!this_cpu_cmpxchg_double(
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002680 s->cpu_slab->freelist, s->cpu_slab->tid,
2681 c->freelist, tid,
2682 object, next_tid(tid)))) {
2683
2684 note_cmpxchg_failure("slab_free", s, tid);
2685 goto redo;
2686 }
Christoph Lameter84e554e62009-12-18 16:26:23 -06002687 stat(s, FREE_FASTPATH);
Christoph Lameter894b8782007-05-10 03:15:16 -07002688 } else
Christoph Lameterff120592009-12-18 16:26:22 -06002689 __slab_free(s, page, x, addr);
Christoph Lameter894b8782007-05-10 03:15:16 -07002690
Christoph Lameter894b8782007-05-10 03:15:16 -07002691}
2692
Christoph Lameter81819f02007-05-06 14:49:36 -07002693void kmem_cache_free(struct kmem_cache *s, void *x)
2694{
Glauber Costab9ce5ef2012-12-18 14:22:46 -08002695 s = cache_from_obj(s, x);
2696 if (!s)
Christoph Lameter79576102012-09-04 23:06:14 +00002697 return;
Glauber Costab9ce5ef2012-12-18 14:22:46 -08002698 slab_free(s, virt_to_head_page(x), x, _RET_IP_);
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02002699 trace_kmem_cache_free(_RET_IP_, x);
Christoph Lameter81819f02007-05-06 14:49:36 -07002700}
2701EXPORT_SYMBOL(kmem_cache_free);
2702
Christoph Lameter81819f02007-05-06 14:49:36 -07002703/*
Christoph Lameter672bba32007-05-09 02:32:39 -07002704 * Object placement in a slab is made very easy because we always start at
2705 * offset 0. If we tune the size of the object to the alignment then we can
2706 * get the required alignment by putting one properly sized object after
2707 * another.
Christoph Lameter81819f02007-05-06 14:49:36 -07002708 *
2709 * Notice that the allocation order determines the sizes of the per cpu
2710 * caches. Each processor has always one slab available for allocations.
2711 * Increasing the allocation order reduces the number of times that slabs
Christoph Lameter672bba32007-05-09 02:32:39 -07002712 * must be moved on and off the partial lists and is therefore a factor in
Christoph Lameter81819f02007-05-06 14:49:36 -07002713 * locking overhead.
Christoph Lameter81819f02007-05-06 14:49:36 -07002714 */
2715
2716/*
2717 * Mininum / Maximum order of slab pages. This influences locking overhead
2718 * and slab fragmentation. A higher order reduces the number of partial slabs
2719 * and increases the number of allocations possible without having to
2720 * take the list_lock.
2721 */
2722static int slub_min_order;
Christoph Lameter114e9e82008-04-14 19:11:41 +03002723static int slub_max_order = PAGE_ALLOC_COSTLY_ORDER;
Christoph Lameter9b2cd502008-04-14 19:11:41 +03002724static int slub_min_objects;
Christoph Lameter81819f02007-05-06 14:49:36 -07002725
2726/*
2727 * Merge control. If this is set then no merging of slab caches will occur.
Christoph Lameter672bba32007-05-09 02:32:39 -07002728 * (Could be removed. This was introduced to pacify the merge skeptics.)
Christoph Lameter81819f02007-05-06 14:49:36 -07002729 */
2730static int slub_nomerge;
2731
2732/*
Christoph Lameter81819f02007-05-06 14:49:36 -07002733 * Calculate the order of allocation given an slab object size.
2734 *
Christoph Lameter672bba32007-05-09 02:32:39 -07002735 * The order of allocation has significant impact on performance and other
2736 * system components. Generally order 0 allocations should be preferred since
2737 * order 0 does not cause fragmentation in the page allocator. Larger objects
2738 * be problematic to put into order 0 slabs because there may be too much
Christoph Lameterc124f5b2008-04-14 19:13:29 +03002739 * unused space left. We go to a higher order if more than 1/16th of the slab
Christoph Lameter672bba32007-05-09 02:32:39 -07002740 * would be wasted.
Christoph Lameter81819f02007-05-06 14:49:36 -07002741 *
Christoph Lameter672bba32007-05-09 02:32:39 -07002742 * In order to reach satisfactory performance we must ensure that a minimum
2743 * number of objects is in one slab. Otherwise we may generate too much
2744 * activity on the partial lists which requires taking the list_lock. This is
2745 * less a concern for large slabs though which are rarely used.
Christoph Lameter81819f02007-05-06 14:49:36 -07002746 *
Christoph Lameter672bba32007-05-09 02:32:39 -07002747 * slub_max_order specifies the order where we begin to stop considering the
2748 * number of objects in a slab as critical. If we reach slub_max_order then
2749 * we try to keep the page order as low as possible. So we accept more waste
2750 * of space in favor of a small page order.
2751 *
2752 * Higher order allocations also allow the placement of more objects in a
2753 * slab and thereby reduce object handling overhead. If the user has
2754 * requested a higher mininum order then we start with that one instead of
2755 * the smallest order which will fit the object.
Christoph Lameter81819f02007-05-06 14:49:36 -07002756 */
Christoph Lameter5e6d4442007-05-09 02:32:46 -07002757static inline int slab_order(int size, int min_objects,
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08002758 int max_order, int fract_leftover, int reserved)
Christoph Lameter81819f02007-05-06 14:49:36 -07002759{
2760 int order;
2761 int rem;
Christoph Lameter6300ea72007-07-17 04:03:20 -07002762 int min_order = slub_min_order;
Christoph Lameter81819f02007-05-06 14:49:36 -07002763
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08002764 if (order_objects(min_order, size, reserved) > MAX_OBJS_PER_PAGE)
Cyrill Gorcunov210b5c02008-10-22 23:00:38 +04002765 return get_order(size * MAX_OBJS_PER_PAGE) - 1;
Christoph Lameter39b26462008-04-14 19:11:30 +03002766
Christoph Lameter6300ea72007-07-17 04:03:20 -07002767 for (order = max(min_order,
Christoph Lameter5e6d4442007-05-09 02:32:46 -07002768 fls(min_objects * size - 1) - PAGE_SHIFT);
2769 order <= max_order; order++) {
2770
Christoph Lameter81819f02007-05-06 14:49:36 -07002771 unsigned long slab_size = PAGE_SIZE << order;
2772
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08002773 if (slab_size < min_objects * size + reserved)
Christoph Lameter81819f02007-05-06 14:49:36 -07002774 continue;
2775
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08002776 rem = (slab_size - reserved) % size;
Christoph Lameter81819f02007-05-06 14:49:36 -07002777
Christoph Lameter5e6d4442007-05-09 02:32:46 -07002778 if (rem <= slab_size / fract_leftover)
Christoph Lameter81819f02007-05-06 14:49:36 -07002779 break;
2780
2781 }
Christoph Lameter672bba32007-05-09 02:32:39 -07002782
Christoph Lameter81819f02007-05-06 14:49:36 -07002783 return order;
2784}
2785
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08002786static inline int calculate_order(int size, int reserved)
Christoph Lameter5e6d4442007-05-09 02:32:46 -07002787{
2788 int order;
2789 int min_objects;
2790 int fraction;
Zhang Yanmine8120ff2009-02-12 18:00:17 +02002791 int max_objects;
Christoph Lameter5e6d4442007-05-09 02:32:46 -07002792
2793 /*
2794 * Attempt to find best configuration for a slab. This
2795 * works by first attempting to generate a layout with
2796 * the best configuration and backing off gradually.
2797 *
2798 * First we reduce the acceptable waste in a slab. Then
2799 * we reduce the minimum objects required in a slab.
2800 */
2801 min_objects = slub_min_objects;
Christoph Lameter9b2cd502008-04-14 19:11:41 +03002802 if (!min_objects)
2803 min_objects = 4 * (fls(nr_cpu_ids) + 1);
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08002804 max_objects = order_objects(slub_max_order, size, reserved);
Zhang Yanmine8120ff2009-02-12 18:00:17 +02002805 min_objects = min(min_objects, max_objects);
2806
Christoph Lameter5e6d4442007-05-09 02:32:46 -07002807 while (min_objects > 1) {
Christoph Lameterc124f5b2008-04-14 19:13:29 +03002808 fraction = 16;
Christoph Lameter5e6d4442007-05-09 02:32:46 -07002809 while (fraction >= 4) {
2810 order = slab_order(size, min_objects,
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08002811 slub_max_order, fraction, reserved);
Christoph Lameter5e6d4442007-05-09 02:32:46 -07002812 if (order <= slub_max_order)
2813 return order;
2814 fraction /= 2;
2815 }
Amerigo Wang5086c389c2009-08-19 21:44:13 +03002816 min_objects--;
Christoph Lameter5e6d4442007-05-09 02:32:46 -07002817 }
2818
2819 /*
2820 * We were unable to place multiple objects in a slab. Now
2821 * lets see if we can place a single object there.
2822 */
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08002823 order = slab_order(size, 1, slub_max_order, 1, reserved);
Christoph Lameter5e6d4442007-05-09 02:32:46 -07002824 if (order <= slub_max_order)
2825 return order;
2826
2827 /*
2828 * Doh this slab cannot be placed using slub_max_order.
2829 */
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08002830 order = slab_order(size, 1, MAX_ORDER, 1, reserved);
David Rientjes818cf592009-04-23 09:58:22 +03002831 if (order < MAX_ORDER)
Christoph Lameter5e6d4442007-05-09 02:32:46 -07002832 return order;
2833 return -ENOSYS;
2834}
2835
Pekka Enberg5595cff2008-08-05 09:28:47 +03002836static void
Joonsoo Kim40534972012-05-11 00:50:47 +09002837init_kmem_cache_node(struct kmem_cache_node *n)
Christoph Lameter81819f02007-05-06 14:49:36 -07002838{
2839 n->nr_partial = 0;
Christoph Lameter81819f02007-05-06 14:49:36 -07002840 spin_lock_init(&n->list_lock);
2841 INIT_LIST_HEAD(&n->partial);
Christoph Lameter8ab13722007-07-17 04:03:32 -07002842#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter0f389ec2008-04-14 18:53:02 +03002843 atomic_long_set(&n->nr_slabs, 0);
Salman Qazi02b71b72008-09-11 12:25:41 -07002844 atomic_long_set(&n->total_objects, 0);
Christoph Lameter643b1132007-05-06 14:49:42 -07002845 INIT_LIST_HEAD(&n->full);
Christoph Lameter8ab13722007-07-17 04:03:32 -07002846#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07002847}
2848
Christoph Lameter55136592010-08-20 12:37:13 -05002849static inline int alloc_kmem_cache_cpus(struct kmem_cache *s)
Christoph Lameter4c93c3552007-10-16 01:26:08 -07002850{
Christoph Lameter6c182dc2010-08-20 12:37:14 -05002851 BUILD_BUG_ON(PERCPU_DYNAMIC_EARLY_SIZE <
Christoph Lameter95a05b42013-01-10 19:14:19 +00002852 KMALLOC_SHIFT_HIGH * sizeof(struct kmem_cache_cpu));
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06002853
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002854 /*
Chris Metcalfd4d84fe2011-06-02 10:19:41 -04002855 * Must align to double word boundary for the double cmpxchg
2856 * instructions to work; see __pcpu_double_call_return_bool().
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002857 */
Chris Metcalfd4d84fe2011-06-02 10:19:41 -04002858 s->cpu_slab = __alloc_percpu(sizeof(struct kmem_cache_cpu),
2859 2 * sizeof(void *));
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06002860
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002861 if (!s->cpu_slab)
2862 return 0;
2863
2864 init_kmem_cache_cpus(s);
2865
2866 return 1;
Christoph Lameter4c93c3552007-10-16 01:26:08 -07002867}
Christoph Lameter4c93c3552007-10-16 01:26:08 -07002868
Christoph Lameter51df1142010-08-20 12:37:15 -05002869static struct kmem_cache *kmem_cache_node;
2870
Christoph Lameter81819f02007-05-06 14:49:36 -07002871/*
2872 * No kmalloc_node yet so do it by hand. We know that this is the first
2873 * slab on the node for this slabcache. There are no concurrent accesses
2874 * possible.
2875 *
Zhi Yong Wu721ae222013-11-08 20:47:37 +08002876 * Note that this function only works on the kmem_cache_node
2877 * when allocating for the kmem_cache_node. This is used for bootstrapping
Christoph Lameter4c93c3552007-10-16 01:26:08 -07002878 * memory on a fresh node that has no slab structures yet.
Christoph Lameter81819f02007-05-06 14:49:36 -07002879 */
Christoph Lameter55136592010-08-20 12:37:13 -05002880static void early_kmem_cache_node_alloc(int node)
Christoph Lameter81819f02007-05-06 14:49:36 -07002881{
2882 struct page *page;
2883 struct kmem_cache_node *n;
2884
Christoph Lameter51df1142010-08-20 12:37:15 -05002885 BUG_ON(kmem_cache_node->size < sizeof(struct kmem_cache_node));
Christoph Lameter81819f02007-05-06 14:49:36 -07002886
Christoph Lameter51df1142010-08-20 12:37:15 -05002887 page = new_slab(kmem_cache_node, GFP_NOWAIT, node);
Christoph Lameter81819f02007-05-06 14:49:36 -07002888
2889 BUG_ON(!page);
Christoph Lametera2f92ee2007-08-22 14:01:57 -07002890 if (page_to_nid(page) != node) {
Fabian Frederickf9f58282014-06-04 16:06:34 -07002891 pr_err("SLUB: Unable to allocate memory from node %d\n", node);
2892 pr_err("SLUB: Allocating a useless per node structure in order to be able to continue\n");
Christoph Lametera2f92ee2007-08-22 14:01:57 -07002893 }
2894
Christoph Lameter81819f02007-05-06 14:49:36 -07002895 n = page->freelist;
2896 BUG_ON(!n);
Christoph Lameter51df1142010-08-20 12:37:15 -05002897 page->freelist = get_freepointer(kmem_cache_node, n);
Christoph Lametere6e82ea2011-08-09 16:12:24 -05002898 page->inuse = 1;
Christoph Lameter8cb0a502011-06-01 12:25:46 -05002899 page->frozen = 0;
Christoph Lameter51df1142010-08-20 12:37:15 -05002900 kmem_cache_node->node[node] = n;
Christoph Lameter8ab13722007-07-17 04:03:32 -07002901#ifdef CONFIG_SLUB_DEBUG
Christoph Lameterf7cb1932010-09-29 07:15:01 -05002902 init_object(kmem_cache_node, n, SLUB_RED_ACTIVE);
Christoph Lameter51df1142010-08-20 12:37:15 -05002903 init_tracking(kmem_cache_node, n);
Christoph Lameter8ab13722007-07-17 04:03:32 -07002904#endif
Joonsoo Kim40534972012-05-11 00:50:47 +09002905 init_kmem_cache_node(n);
Christoph Lameter51df1142010-08-20 12:37:15 -05002906 inc_slabs_node(kmem_cache_node, node, page->objects);
Christoph Lameter6446faa2008-02-15 23:45:26 -08002907
Dave Hansen67b6c902014-01-24 07:20:23 -08002908 /*
Steven Rostedt1e4dd942014-02-10 14:25:46 -08002909 * No locks need to be taken here as it has just been
2910 * initialized and there is no concurrent access.
Dave Hansen67b6c902014-01-24 07:20:23 -08002911 */
Steven Rostedt1e4dd942014-02-10 14:25:46 -08002912 __add_partial(n, page, DEACTIVATE_TO_HEAD);
Christoph Lameter81819f02007-05-06 14:49:36 -07002913}
2914
2915static void free_kmem_cache_nodes(struct kmem_cache *s)
2916{
2917 int node;
2918
Christoph Lameterf64dc582007-10-16 01:25:33 -07002919 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002920 struct kmem_cache_node *n = s->node[node];
Christoph Lameter51df1142010-08-20 12:37:15 -05002921
Alexander Duyck73367bd2010-05-21 14:41:35 -07002922 if (n)
Christoph Lameter51df1142010-08-20 12:37:15 -05002923 kmem_cache_free(kmem_cache_node, n);
2924
Christoph Lameter81819f02007-05-06 14:49:36 -07002925 s->node[node] = NULL;
2926 }
2927}
2928
Christoph Lameter55136592010-08-20 12:37:13 -05002929static int init_kmem_cache_nodes(struct kmem_cache *s)
Christoph Lameter81819f02007-05-06 14:49:36 -07002930{
2931 int node;
Christoph Lameter81819f02007-05-06 14:49:36 -07002932
Christoph Lameterf64dc582007-10-16 01:25:33 -07002933 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002934 struct kmem_cache_node *n;
2935
Alexander Duyck73367bd2010-05-21 14:41:35 -07002936 if (slab_state == DOWN) {
Christoph Lameter55136592010-08-20 12:37:13 -05002937 early_kmem_cache_node_alloc(node);
Alexander Duyck73367bd2010-05-21 14:41:35 -07002938 continue;
Christoph Lameter81819f02007-05-06 14:49:36 -07002939 }
Christoph Lameter51df1142010-08-20 12:37:15 -05002940 n = kmem_cache_alloc_node(kmem_cache_node,
Christoph Lameter55136592010-08-20 12:37:13 -05002941 GFP_KERNEL, node);
Alexander Duyck73367bd2010-05-21 14:41:35 -07002942
2943 if (!n) {
2944 free_kmem_cache_nodes(s);
2945 return 0;
2946 }
2947
Christoph Lameter81819f02007-05-06 14:49:36 -07002948 s->node[node] = n;
Joonsoo Kim40534972012-05-11 00:50:47 +09002949 init_kmem_cache_node(n);
Christoph Lameter81819f02007-05-06 14:49:36 -07002950 }
2951 return 1;
2952}
Christoph Lameter81819f02007-05-06 14:49:36 -07002953
David Rientjesc0bdb232009-02-25 09:16:35 +02002954static void set_min_partial(struct kmem_cache *s, unsigned long min)
David Rientjes3b89d7d2009-02-22 17:40:07 -08002955{
2956 if (min < MIN_PARTIAL)
2957 min = MIN_PARTIAL;
2958 else if (min > MAX_PARTIAL)
2959 min = MAX_PARTIAL;
2960 s->min_partial = min;
2961}
2962
Christoph Lameter81819f02007-05-06 14:49:36 -07002963/*
2964 * calculate_sizes() determines the order and the distribution of data within
2965 * a slab object.
2966 */
Christoph Lameter06b285d2008-04-14 19:11:41 +03002967static int calculate_sizes(struct kmem_cache *s, int forced_order)
Christoph Lameter81819f02007-05-06 14:49:36 -07002968{
2969 unsigned long flags = s->flags;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002970 unsigned long size = s->object_size;
Christoph Lameter834f3d12008-04-14 19:11:31 +03002971 int order;
Christoph Lameter81819f02007-05-06 14:49:36 -07002972
2973 /*
Christoph Lameterd8b42bf2008-02-15 23:45:25 -08002974 * Round up object size to the next word boundary. We can only
2975 * place the free pointer at word boundaries and this determines
2976 * the possible location of the free pointer.
2977 */
2978 size = ALIGN(size, sizeof(void *));
2979
2980#ifdef CONFIG_SLUB_DEBUG
2981 /*
Christoph Lameter81819f02007-05-06 14:49:36 -07002982 * Determine if we can poison the object itself. If the user of
2983 * the slab may touch the object after free or before allocation
2984 * then we should never poison the object itself.
2985 */
2986 if ((flags & SLAB_POISON) && !(flags & SLAB_DESTROY_BY_RCU) &&
Christoph Lameterc59def92007-05-16 22:10:50 -07002987 !s->ctor)
Christoph Lameter81819f02007-05-06 14:49:36 -07002988 s->flags |= __OBJECT_POISON;
2989 else
2990 s->flags &= ~__OBJECT_POISON;
2991
Christoph Lameter81819f02007-05-06 14:49:36 -07002992
2993 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07002994 * If we are Redzoning then check if there is some space between the
Christoph Lameter81819f02007-05-06 14:49:36 -07002995 * end of the object and the free pointer. If not then add an
Christoph Lameter672bba32007-05-09 02:32:39 -07002996 * additional word to have some bytes to store Redzone information.
Christoph Lameter81819f02007-05-06 14:49:36 -07002997 */
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002998 if ((flags & SLAB_RED_ZONE) && size == s->object_size)
Christoph Lameter81819f02007-05-06 14:49:36 -07002999 size += sizeof(void *);
Christoph Lameter41ecc552007-05-09 02:32:44 -07003000#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07003001
3002 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07003003 * With that we have determined the number of bytes in actual use
3004 * by the object. This is the potential offset to the free pointer.
Christoph Lameter81819f02007-05-06 14:49:36 -07003005 */
3006 s->inuse = size;
3007
3008 if (((flags & (SLAB_DESTROY_BY_RCU | SLAB_POISON)) ||
Christoph Lameterc59def92007-05-16 22:10:50 -07003009 s->ctor)) {
Christoph Lameter81819f02007-05-06 14:49:36 -07003010 /*
3011 * Relocate free pointer after the object if it is not
3012 * permitted to overwrite the first word of the object on
3013 * kmem_cache_free.
3014 *
3015 * This is the case if we do RCU, have a constructor or
3016 * destructor or are poisoning the objects.
3017 */
3018 s->offset = size;
3019 size += sizeof(void *);
3020 }
3021
Christoph Lameterc12b3c62007-05-23 13:57:31 -07003022#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter81819f02007-05-06 14:49:36 -07003023 if (flags & SLAB_STORE_USER)
3024 /*
3025 * Need to store information about allocs and frees after
3026 * the object.
3027 */
3028 size += 2 * sizeof(struct track);
3029
Christoph Lameterbe7b3fb2007-05-09 02:32:36 -07003030 if (flags & SLAB_RED_ZONE)
Christoph Lameter81819f02007-05-06 14:49:36 -07003031 /*
3032 * Add some empty padding so that we can catch
3033 * overwrites from earlier objects rather than let
3034 * tracking information or the free pointer be
Frederik Schwarzer0211a9c2008-12-29 22:14:56 +01003035 * corrupted if a user writes before the start
Christoph Lameter81819f02007-05-06 14:49:36 -07003036 * of the object.
3037 */
3038 size += sizeof(void *);
Christoph Lameter41ecc552007-05-09 02:32:44 -07003039#endif
Christoph Lameter672bba32007-05-09 02:32:39 -07003040
Christoph Lameter81819f02007-05-06 14:49:36 -07003041 /*
Christoph Lameter81819f02007-05-06 14:49:36 -07003042 * SLUB stores one object immediately after another beginning from
3043 * offset 0. In order to align the objects we have to simply size
3044 * each object to conform to the alignment.
3045 */
Christoph Lameter45906852012-11-28 16:23:16 +00003046 size = ALIGN(size, s->align);
Christoph Lameter81819f02007-05-06 14:49:36 -07003047 s->size = size;
Christoph Lameter06b285d2008-04-14 19:11:41 +03003048 if (forced_order >= 0)
3049 order = forced_order;
3050 else
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08003051 order = calculate_order(size, s->reserved);
Christoph Lameter81819f02007-05-06 14:49:36 -07003052
Christoph Lameter834f3d12008-04-14 19:11:31 +03003053 if (order < 0)
Christoph Lameter81819f02007-05-06 14:49:36 -07003054 return 0;
3055
Christoph Lameterb7a49f02008-02-14 14:21:32 -08003056 s->allocflags = 0;
Christoph Lameter834f3d12008-04-14 19:11:31 +03003057 if (order)
Christoph Lameterb7a49f02008-02-14 14:21:32 -08003058 s->allocflags |= __GFP_COMP;
3059
3060 if (s->flags & SLAB_CACHE_DMA)
Christoph Lameter2c59dd62013-01-10 19:14:19 +00003061 s->allocflags |= GFP_DMA;
Christoph Lameterb7a49f02008-02-14 14:21:32 -08003062
3063 if (s->flags & SLAB_RECLAIM_ACCOUNT)
3064 s->allocflags |= __GFP_RECLAIMABLE;
3065
Christoph Lameter81819f02007-05-06 14:49:36 -07003066 /*
3067 * Determine the number of objects per slab
3068 */
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08003069 s->oo = oo_make(order, size, s->reserved);
3070 s->min = oo_make(get_order(size), size, s->reserved);
Christoph Lameter205ab992008-04-14 19:11:40 +03003071 if (oo_objects(s->oo) > oo_objects(s->max))
3072 s->max = s->oo;
Christoph Lameter81819f02007-05-06 14:49:36 -07003073
Christoph Lameter834f3d12008-04-14 19:11:31 +03003074 return !!oo_objects(s->oo);
Christoph Lameter81819f02007-05-06 14:49:36 -07003075}
3076
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00003077static int kmem_cache_open(struct kmem_cache *s, unsigned long flags)
Christoph Lameter81819f02007-05-06 14:49:36 -07003078{
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00003079 s->flags = kmem_cache_flags(s->size, flags, s->name, s->ctor);
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08003080 s->reserved = 0;
Christoph Lameter81819f02007-05-06 14:49:36 -07003081
Lai Jiangshanda9a6382011-03-10 15:22:00 +08003082 if (need_reserve_slab_rcu && (s->flags & SLAB_DESTROY_BY_RCU))
3083 s->reserved = sizeof(struct rcu_head);
Christoph Lameter81819f02007-05-06 14:49:36 -07003084
Christoph Lameter06b285d2008-04-14 19:11:41 +03003085 if (!calculate_sizes(s, -1))
Christoph Lameter81819f02007-05-06 14:49:36 -07003086 goto error;
David Rientjes3de47212009-07-27 18:30:35 -07003087 if (disable_higher_order_debug) {
3088 /*
3089 * Disable debugging flags that store metadata if the min slab
3090 * order increased.
3091 */
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003092 if (get_order(s->size) > get_order(s->object_size)) {
David Rientjes3de47212009-07-27 18:30:35 -07003093 s->flags &= ~DEBUG_METADATA_FLAGS;
3094 s->offset = 0;
3095 if (!calculate_sizes(s, -1))
3096 goto error;
3097 }
3098 }
Christoph Lameter81819f02007-05-06 14:49:36 -07003099
Heiko Carstens25654092012-01-12 17:17:33 -08003100#if defined(CONFIG_HAVE_CMPXCHG_DOUBLE) && \
3101 defined(CONFIG_HAVE_ALIGNED_STRUCT_PAGE)
Christoph Lameterb789ef52011-06-01 12:25:49 -05003102 if (system_has_cmpxchg_double() && (s->flags & SLAB_DEBUG_FLAGS) == 0)
3103 /* Enable fast mode */
3104 s->flags |= __CMPXCHG_DOUBLE;
3105#endif
3106
David Rientjes3b89d7d2009-02-22 17:40:07 -08003107 /*
3108 * The larger the object size is, the more pages we want on the partial
3109 * list to avoid pounding the page allocator excessively.
3110 */
Christoph Lameter49e22582011-08-09 16:12:27 -05003111 set_min_partial(s, ilog2(s->size) / 2);
3112
3113 /*
3114 * cpu_partial determined the maximum number of objects kept in the
3115 * per cpu partial lists of a processor.
3116 *
3117 * Per cpu partial lists mainly contain slabs that just have one
3118 * object freed. If they are used for allocation then they can be
3119 * filled up again with minimal effort. The slab will never hit the
3120 * per node partial lists and therefore no locking will be required.
3121 *
3122 * This setting also determines
3123 *
3124 * A) The number of objects from per cpu partial slabs dumped to the
3125 * per node list when we reach the limit.
Alex Shi9f264902011-09-01 11:32:18 +08003126 * B) The number of objects in cpu partial slabs to extract from the
Chen Gangd0e0ac92013-07-15 09:05:29 +08003127 * per node list when we run out of per cpu objects. We only fetch
3128 * 50% to keep some capacity around for frees.
Christoph Lameter49e22582011-08-09 16:12:27 -05003129 */
Joonsoo Kim345c9052013-06-19 14:05:52 +09003130 if (!kmem_cache_has_cpu_partial(s))
Christoph Lameter8f1e33d2011-11-23 09:24:27 -06003131 s->cpu_partial = 0;
3132 else if (s->size >= PAGE_SIZE)
Christoph Lameter49e22582011-08-09 16:12:27 -05003133 s->cpu_partial = 2;
3134 else if (s->size >= 1024)
3135 s->cpu_partial = 6;
3136 else if (s->size >= 256)
3137 s->cpu_partial = 13;
3138 else
3139 s->cpu_partial = 30;
3140
Christoph Lameter81819f02007-05-06 14:49:36 -07003141#ifdef CONFIG_NUMA
Christoph Lametere2cb96b2008-08-19 08:51:22 -05003142 s->remote_node_defrag_ratio = 1000;
Christoph Lameter81819f02007-05-06 14:49:36 -07003143#endif
Christoph Lameter55136592010-08-20 12:37:13 -05003144 if (!init_kmem_cache_nodes(s))
Christoph Lameterdfb4f092007-10-16 01:26:05 -07003145 goto error;
Christoph Lameter81819f02007-05-06 14:49:36 -07003146
Christoph Lameter55136592010-08-20 12:37:13 -05003147 if (alloc_kmem_cache_cpus(s))
Christoph Lameter278b1bb2012-09-05 00:20:34 +00003148 return 0;
Christoph Lameterff120592009-12-18 16:26:22 -06003149
Christoph Lameter4c93c3552007-10-16 01:26:08 -07003150 free_kmem_cache_nodes(s);
Christoph Lameter81819f02007-05-06 14:49:36 -07003151error:
3152 if (flags & SLAB_PANIC)
3153 panic("Cannot create slab %s size=%lu realsize=%u "
3154 "order=%u offset=%u flags=%lx\n",
Chen Gangd0e0ac92013-07-15 09:05:29 +08003155 s->name, (unsigned long)s->size, s->size,
3156 oo_order(s->oo), s->offset, flags);
Christoph Lameter278b1bb2012-09-05 00:20:34 +00003157 return -EINVAL;
Christoph Lameter81819f02007-05-06 14:49:36 -07003158}
Christoph Lameter81819f02007-05-06 14:49:36 -07003159
Christoph Lameter33b12c32008-04-25 12:22:43 -07003160static void list_slab_objects(struct kmem_cache *s, struct page *page,
3161 const char *text)
Christoph Lameter81819f02007-05-06 14:49:36 -07003162{
Christoph Lameter33b12c32008-04-25 12:22:43 -07003163#ifdef CONFIG_SLUB_DEBUG
3164 void *addr = page_address(page);
3165 void *p;
Namhyung Kima5dd5c12010-09-29 21:02:13 +09003166 unsigned long *map = kzalloc(BITS_TO_LONGS(page->objects) *
3167 sizeof(long), GFP_ATOMIC);
Eric Dumazetbbd7d572010-03-24 22:25:47 +01003168 if (!map)
3169 return;
Christoph Lameter945cf2b2012-09-04 23:18:33 +00003170 slab_err(s, page, text, s->name);
Christoph Lameter33b12c32008-04-25 12:22:43 -07003171 slab_lock(page);
Christoph Lameter33b12c32008-04-25 12:22:43 -07003172
Christoph Lameter5f80b132011-04-15 14:48:13 -05003173 get_map(s, page, map);
Christoph Lameter33b12c32008-04-25 12:22:43 -07003174 for_each_object(p, s, addr, page->objects) {
3175
3176 if (!test_bit(slab_index(p, s, addr), map)) {
Fabian Frederickf9f58282014-06-04 16:06:34 -07003177 pr_err("INFO: Object 0x%p @offset=%tu\n", p, p - addr);
Christoph Lameter33b12c32008-04-25 12:22:43 -07003178 print_tracking(s, p);
3179 }
3180 }
3181 slab_unlock(page);
Eric Dumazetbbd7d572010-03-24 22:25:47 +01003182 kfree(map);
Christoph Lameter33b12c32008-04-25 12:22:43 -07003183#endif
3184}
3185
Christoph Lameter81819f02007-05-06 14:49:36 -07003186/*
Christoph Lameter599870b2008-04-23 12:36:52 -07003187 * Attempt to free all partial slabs on a node.
Christoph Lameter69cb8e62011-08-09 16:12:22 -05003188 * This is called from kmem_cache_close(). We must be the last thread
3189 * using the cache and therefore we do not need to lock anymore.
Christoph Lameter81819f02007-05-06 14:49:36 -07003190 */
Christoph Lameter599870b2008-04-23 12:36:52 -07003191static void free_partial(struct kmem_cache *s, struct kmem_cache_node *n)
Christoph Lameter81819f02007-05-06 14:49:36 -07003192{
Christoph Lameter81819f02007-05-06 14:49:36 -07003193 struct page *page, *h;
3194
Christoph Lameter33b12c32008-04-25 12:22:43 -07003195 list_for_each_entry_safe(page, h, &n->partial, lru) {
Christoph Lameter81819f02007-05-06 14:49:36 -07003196 if (!page->inuse) {
Steven Rostedt1e4dd942014-02-10 14:25:46 -08003197 __remove_partial(n, page);
Christoph Lameter81819f02007-05-06 14:49:36 -07003198 discard_slab(s, page);
Christoph Lameter33b12c32008-04-25 12:22:43 -07003199 } else {
3200 list_slab_objects(s, page,
Christoph Lameter945cf2b2012-09-04 23:18:33 +00003201 "Objects remaining in %s on kmem_cache_close()");
Christoph Lameter599870b2008-04-23 12:36:52 -07003202 }
Christoph Lameter33b12c32008-04-25 12:22:43 -07003203 }
Christoph Lameter81819f02007-05-06 14:49:36 -07003204}
3205
3206/*
Christoph Lameter672bba32007-05-09 02:32:39 -07003207 * Release all resources used by a slab cache.
Christoph Lameter81819f02007-05-06 14:49:36 -07003208 */
Christoph Lameter0c710012007-07-17 04:03:24 -07003209static inline int kmem_cache_close(struct kmem_cache *s)
Christoph Lameter81819f02007-05-06 14:49:36 -07003210{
3211 int node;
3212
3213 flush_all(s);
Christoph Lameter81819f02007-05-06 14:49:36 -07003214 /* Attempt to free all objects */
Christoph Lameterf64dc582007-10-16 01:25:33 -07003215 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter81819f02007-05-06 14:49:36 -07003216 struct kmem_cache_node *n = get_node(s, node);
3217
Christoph Lameter599870b2008-04-23 12:36:52 -07003218 free_partial(s, n);
3219 if (n->nr_partial || slabs_node(s, node))
Christoph Lameter81819f02007-05-06 14:49:36 -07003220 return 1;
3221 }
Christoph Lameter945cf2b2012-09-04 23:18:33 +00003222 free_percpu(s->cpu_slab);
Christoph Lameter81819f02007-05-06 14:49:36 -07003223 free_kmem_cache_nodes(s);
3224 return 0;
3225}
3226
Christoph Lameter945cf2b2012-09-04 23:18:33 +00003227int __kmem_cache_shutdown(struct kmem_cache *s)
Christoph Lameter81819f02007-05-06 14:49:36 -07003228{
Christoph Lameter41a21282014-05-06 12:50:08 -07003229 return kmem_cache_close(s);
Christoph Lameter81819f02007-05-06 14:49:36 -07003230}
Christoph Lameter81819f02007-05-06 14:49:36 -07003231
3232/********************************************************************
3233 * Kmalloc subsystem
3234 *******************************************************************/
3235
Christoph Lameter81819f02007-05-06 14:49:36 -07003236static int __init setup_slub_min_order(char *str)
3237{
Pekka Enberg06428782008-01-07 23:20:27 -08003238 get_option(&str, &slub_min_order);
Christoph Lameter81819f02007-05-06 14:49:36 -07003239
3240 return 1;
3241}
3242
3243__setup("slub_min_order=", setup_slub_min_order);
3244
3245static int __init setup_slub_max_order(char *str)
3246{
Pekka Enberg06428782008-01-07 23:20:27 -08003247 get_option(&str, &slub_max_order);
David Rientjes818cf592009-04-23 09:58:22 +03003248 slub_max_order = min(slub_max_order, MAX_ORDER - 1);
Christoph Lameter81819f02007-05-06 14:49:36 -07003249
3250 return 1;
3251}
3252
3253__setup("slub_max_order=", setup_slub_max_order);
3254
3255static int __init setup_slub_min_objects(char *str)
3256{
Pekka Enberg06428782008-01-07 23:20:27 -08003257 get_option(&str, &slub_min_objects);
Christoph Lameter81819f02007-05-06 14:49:36 -07003258
3259 return 1;
3260}
3261
3262__setup("slub_min_objects=", setup_slub_min_objects);
3263
3264static int __init setup_slub_nomerge(char *str)
3265{
3266 slub_nomerge = 1;
3267 return 1;
3268}
3269
3270__setup("slub_nomerge", setup_slub_nomerge);
3271
Christoph Lameter81819f02007-05-06 14:49:36 -07003272void *__kmalloc(size_t size, gfp_t flags)
3273{
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003274 struct kmem_cache *s;
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03003275 void *ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07003276
Christoph Lameter95a05b42013-01-10 19:14:19 +00003277 if (unlikely(size > KMALLOC_MAX_CACHE_SIZE))
Pekka Enbergeada35e2008-02-11 22:47:46 +02003278 return kmalloc_large(size, flags);
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003279
Christoph Lameter2c59dd62013-01-10 19:14:19 +00003280 s = kmalloc_slab(size, flags);
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003281
3282 if (unlikely(ZERO_OR_NULL_PTR(s)))
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003283 return s;
3284
Ezequiel Garcia2b847c32012-09-08 17:47:58 -03003285 ret = slab_alloc(s, flags, _RET_IP_);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03003286
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003287 trace_kmalloc(_RET_IP_, ret, size, s->size, flags);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03003288
3289 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07003290}
3291EXPORT_SYMBOL(__kmalloc);
3292
Namhyung Kim5d1f57e2010-09-29 21:02:15 +09003293#ifdef CONFIG_NUMA
Christoph Lameterf619cfe2008-03-01 13:56:40 -08003294static void *kmalloc_large_node(size_t size, gfp_t flags, int node)
3295{
Vegard Nossumb1eeab62008-11-25 16:55:53 +01003296 struct page *page;
Catalin Marinase4f7c0b42009-07-07 10:32:59 +01003297 void *ptr = NULL;
Christoph Lameterf619cfe2008-03-01 13:56:40 -08003298
Glauber Costad79923f2012-12-18 14:22:48 -08003299 flags |= __GFP_COMP | __GFP_NOTRACK | __GFP_KMEMCG;
Vegard Nossumb1eeab62008-11-25 16:55:53 +01003300 page = alloc_pages_node(node, flags, get_order(size));
Christoph Lameterf619cfe2008-03-01 13:56:40 -08003301 if (page)
Catalin Marinase4f7c0b42009-07-07 10:32:59 +01003302 ptr = page_address(page);
3303
Roman Bobnievd56791b2013-10-08 15:58:57 -07003304 kmalloc_large_node_hook(ptr, size, flags);
Catalin Marinase4f7c0b42009-07-07 10:32:59 +01003305 return ptr;
Christoph Lameterf619cfe2008-03-01 13:56:40 -08003306}
3307
Christoph Lameter81819f02007-05-06 14:49:36 -07003308void *__kmalloc_node(size_t size, gfp_t flags, int node)
3309{
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003310 struct kmem_cache *s;
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03003311 void *ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07003312
Christoph Lameter95a05b42013-01-10 19:14:19 +00003313 if (unlikely(size > KMALLOC_MAX_CACHE_SIZE)) {
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03003314 ret = kmalloc_large_node(size, flags, node);
3315
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003316 trace_kmalloc_node(_RET_IP_, ret,
3317 size, PAGE_SIZE << get_order(size),
3318 flags, node);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03003319
3320 return ret;
3321 }
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003322
Christoph Lameter2c59dd62013-01-10 19:14:19 +00003323 s = kmalloc_slab(size, flags);
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003324
3325 if (unlikely(ZERO_OR_NULL_PTR(s)))
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003326 return s;
3327
Ezequiel Garcia2b847c32012-09-08 17:47:58 -03003328 ret = slab_alloc_node(s, flags, node, _RET_IP_);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03003329
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003330 trace_kmalloc_node(_RET_IP_, ret, size, s->size, flags, node);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03003331
3332 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07003333}
3334EXPORT_SYMBOL(__kmalloc_node);
3335#endif
3336
3337size_t ksize(const void *object)
3338{
Christoph Lameter272c1d22007-06-08 13:46:49 -07003339 struct page *page;
Christoph Lameter81819f02007-05-06 14:49:36 -07003340
Christoph Lameteref8b4522007-10-16 01:24:46 -07003341 if (unlikely(object == ZERO_SIZE_PTR))
Christoph Lameter272c1d22007-06-08 13:46:49 -07003342 return 0;
3343
Vegard Nossum294a80a2007-12-04 23:45:30 -08003344 page = virt_to_head_page(object);
Vegard Nossum294a80a2007-12-04 23:45:30 -08003345
Pekka Enberg76994412008-05-22 19:22:25 +03003346 if (unlikely(!PageSlab(page))) {
3347 WARN_ON(!PageCompound(page));
Vegard Nossum294a80a2007-12-04 23:45:30 -08003348 return PAGE_SIZE << compound_order(page);
Pekka Enberg76994412008-05-22 19:22:25 +03003349 }
Christoph Lameter81819f02007-05-06 14:49:36 -07003350
Glauber Costa1b4f59e32012-10-22 18:05:36 +04003351 return slab_ksize(page->slab_cache);
Christoph Lameter81819f02007-05-06 14:49:36 -07003352}
Kirill A. Shutemovb1aabec2009-02-10 15:21:44 +02003353EXPORT_SYMBOL(ksize);
Christoph Lameter81819f02007-05-06 14:49:36 -07003354
3355void kfree(const void *x)
3356{
Christoph Lameter81819f02007-05-06 14:49:36 -07003357 struct page *page;
Christoph Lameter5bb983b2008-02-07 17:47:41 -08003358 void *object = (void *)x;
Christoph Lameter81819f02007-05-06 14:49:36 -07003359
Pekka Enberg2121db72009-03-25 11:05:57 +02003360 trace_kfree(_RET_IP_, x);
3361
Satyam Sharma2408c552007-10-16 01:24:44 -07003362 if (unlikely(ZERO_OR_NULL_PTR(x)))
Christoph Lameter81819f02007-05-06 14:49:36 -07003363 return;
3364
Christoph Lameterb49af682007-05-06 14:49:41 -07003365 page = virt_to_head_page(x);
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003366 if (unlikely(!PageSlab(page))) {
Christoph Lameter09375022008-05-28 10:32:22 -07003367 BUG_ON(!PageCompound(page));
Roman Bobnievd56791b2013-10-08 15:58:57 -07003368 kfree_hook(x);
Glauber Costad79923f2012-12-18 14:22:48 -08003369 __free_memcg_kmem_pages(page, compound_order(page));
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003370 return;
3371 }
Glauber Costa1b4f59e32012-10-22 18:05:36 +04003372 slab_free(page->slab_cache, page, object, _RET_IP_);
Christoph Lameter81819f02007-05-06 14:49:36 -07003373}
3374EXPORT_SYMBOL(kfree);
3375
Christoph Lameter2086d262007-05-06 14:49:46 -07003376/*
Christoph Lameter672bba32007-05-09 02:32:39 -07003377 * kmem_cache_shrink removes empty slabs from the partial lists and sorts
3378 * the remaining slabs by the number of items in use. The slabs with the
3379 * most items in use come first. New allocations will then fill those up
3380 * and thus they can be removed from the partial lists.
3381 *
3382 * The slabs with the least items are placed last. This results in them
3383 * being allocated from last increasing the chance that the last objects
3384 * are freed in them.
Christoph Lameter2086d262007-05-06 14:49:46 -07003385 */
3386int kmem_cache_shrink(struct kmem_cache *s)
3387{
3388 int node;
3389 int i;
3390 struct kmem_cache_node *n;
3391 struct page *page;
3392 struct page *t;
Christoph Lameter205ab992008-04-14 19:11:40 +03003393 int objects = oo_objects(s->max);
Christoph Lameter2086d262007-05-06 14:49:46 -07003394 struct list_head *slabs_by_inuse =
Christoph Lameter834f3d12008-04-14 19:11:31 +03003395 kmalloc(sizeof(struct list_head) * objects, GFP_KERNEL);
Christoph Lameter2086d262007-05-06 14:49:46 -07003396 unsigned long flags;
3397
3398 if (!slabs_by_inuse)
3399 return -ENOMEM;
3400
3401 flush_all(s);
Christoph Lameterf64dc582007-10-16 01:25:33 -07003402 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter2086d262007-05-06 14:49:46 -07003403 n = get_node(s, node);
3404
3405 if (!n->nr_partial)
3406 continue;
3407
Christoph Lameter834f3d12008-04-14 19:11:31 +03003408 for (i = 0; i < objects; i++)
Christoph Lameter2086d262007-05-06 14:49:46 -07003409 INIT_LIST_HEAD(slabs_by_inuse + i);
3410
3411 spin_lock_irqsave(&n->list_lock, flags);
3412
3413 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07003414 * Build lists indexed by the items in use in each slab.
Christoph Lameter2086d262007-05-06 14:49:46 -07003415 *
Christoph Lameter672bba32007-05-09 02:32:39 -07003416 * Note that concurrent frees may occur while we hold the
3417 * list_lock. page->inuse here is the upper limit.
Christoph Lameter2086d262007-05-06 14:49:46 -07003418 */
3419 list_for_each_entry_safe(page, t, &n->partial, lru) {
Christoph Lameter69cb8e62011-08-09 16:12:22 -05003420 list_move(&page->lru, slabs_by_inuse + page->inuse);
3421 if (!page->inuse)
3422 n->nr_partial--;
Christoph Lameter2086d262007-05-06 14:49:46 -07003423 }
3424
Christoph Lameter2086d262007-05-06 14:49:46 -07003425 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07003426 * Rebuild the partial list with the slabs filled up most
3427 * first and the least used slabs at the end.
Christoph Lameter2086d262007-05-06 14:49:46 -07003428 */
Christoph Lameter69cb8e62011-08-09 16:12:22 -05003429 for (i = objects - 1; i > 0; i--)
Christoph Lameter2086d262007-05-06 14:49:46 -07003430 list_splice(slabs_by_inuse + i, n->partial.prev);
3431
Christoph Lameter2086d262007-05-06 14:49:46 -07003432 spin_unlock_irqrestore(&n->list_lock, flags);
Christoph Lameter69cb8e62011-08-09 16:12:22 -05003433
3434 /* Release empty slabs */
3435 list_for_each_entry_safe(page, t, slabs_by_inuse, lru)
3436 discard_slab(s, page);
Christoph Lameter2086d262007-05-06 14:49:46 -07003437 }
3438
3439 kfree(slabs_by_inuse);
3440 return 0;
3441}
3442EXPORT_SYMBOL(kmem_cache_shrink);
3443
Yasunori Gotob9049e22007-10-21 16:41:37 -07003444static int slab_mem_going_offline_callback(void *arg)
3445{
3446 struct kmem_cache *s;
3447
Christoph Lameter18004c52012-07-06 15:25:12 -05003448 mutex_lock(&slab_mutex);
Yasunori Gotob9049e22007-10-21 16:41:37 -07003449 list_for_each_entry(s, &slab_caches, list)
3450 kmem_cache_shrink(s);
Christoph Lameter18004c52012-07-06 15:25:12 -05003451 mutex_unlock(&slab_mutex);
Yasunori Gotob9049e22007-10-21 16:41:37 -07003452
3453 return 0;
3454}
3455
3456static void slab_mem_offline_callback(void *arg)
3457{
3458 struct kmem_cache_node *n;
3459 struct kmem_cache *s;
3460 struct memory_notify *marg = arg;
3461 int offline_node;
3462
Lai Jiangshanb9d5ab22012-12-11 16:01:05 -08003463 offline_node = marg->status_change_nid_normal;
Yasunori Gotob9049e22007-10-21 16:41:37 -07003464
3465 /*
3466 * If the node still has available memory. we need kmem_cache_node
3467 * for it yet.
3468 */
3469 if (offline_node < 0)
3470 return;
3471
Christoph Lameter18004c52012-07-06 15:25:12 -05003472 mutex_lock(&slab_mutex);
Yasunori Gotob9049e22007-10-21 16:41:37 -07003473 list_for_each_entry(s, &slab_caches, list) {
3474 n = get_node(s, offline_node);
3475 if (n) {
3476 /*
3477 * if n->nr_slabs > 0, slabs still exist on the node
3478 * that is going down. We were unable to free them,
Adam Buchbinderc9404c92009-12-18 15:40:42 -05003479 * and offline_pages() function shouldn't call this
Yasunori Gotob9049e22007-10-21 16:41:37 -07003480 * callback. So, we must fail.
3481 */
Christoph Lameter0f389ec2008-04-14 18:53:02 +03003482 BUG_ON(slabs_node(s, offline_node));
Yasunori Gotob9049e22007-10-21 16:41:37 -07003483
3484 s->node[offline_node] = NULL;
Christoph Lameter8de66a02010-08-25 14:51:14 -05003485 kmem_cache_free(kmem_cache_node, n);
Yasunori Gotob9049e22007-10-21 16:41:37 -07003486 }
3487 }
Christoph Lameter18004c52012-07-06 15:25:12 -05003488 mutex_unlock(&slab_mutex);
Yasunori Gotob9049e22007-10-21 16:41:37 -07003489}
3490
3491static int slab_mem_going_online_callback(void *arg)
3492{
3493 struct kmem_cache_node *n;
3494 struct kmem_cache *s;
3495 struct memory_notify *marg = arg;
Lai Jiangshanb9d5ab22012-12-11 16:01:05 -08003496 int nid = marg->status_change_nid_normal;
Yasunori Gotob9049e22007-10-21 16:41:37 -07003497 int ret = 0;
3498
3499 /*
3500 * If the node's memory is already available, then kmem_cache_node is
3501 * already created. Nothing to do.
3502 */
3503 if (nid < 0)
3504 return 0;
3505
3506 /*
Christoph Lameter0121c6192008-04-29 16:11:12 -07003507 * We are bringing a node online. No memory is available yet. We must
Yasunori Gotob9049e22007-10-21 16:41:37 -07003508 * allocate a kmem_cache_node structure in order to bring the node
3509 * online.
3510 */
Christoph Lameter18004c52012-07-06 15:25:12 -05003511 mutex_lock(&slab_mutex);
Yasunori Gotob9049e22007-10-21 16:41:37 -07003512 list_for_each_entry(s, &slab_caches, list) {
3513 /*
3514 * XXX: kmem_cache_alloc_node will fallback to other nodes
3515 * since memory is not yet available from the node that
3516 * is brought up.
3517 */
Christoph Lameter8de66a02010-08-25 14:51:14 -05003518 n = kmem_cache_alloc(kmem_cache_node, GFP_KERNEL);
Yasunori Gotob9049e22007-10-21 16:41:37 -07003519 if (!n) {
3520 ret = -ENOMEM;
3521 goto out;
3522 }
Joonsoo Kim40534972012-05-11 00:50:47 +09003523 init_kmem_cache_node(n);
Yasunori Gotob9049e22007-10-21 16:41:37 -07003524 s->node[nid] = n;
3525 }
3526out:
Christoph Lameter18004c52012-07-06 15:25:12 -05003527 mutex_unlock(&slab_mutex);
Yasunori Gotob9049e22007-10-21 16:41:37 -07003528 return ret;
3529}
3530
3531static int slab_memory_callback(struct notifier_block *self,
3532 unsigned long action, void *arg)
3533{
3534 int ret = 0;
3535
3536 switch (action) {
3537 case MEM_GOING_ONLINE:
3538 ret = slab_mem_going_online_callback(arg);
3539 break;
3540 case MEM_GOING_OFFLINE:
3541 ret = slab_mem_going_offline_callback(arg);
3542 break;
3543 case MEM_OFFLINE:
3544 case MEM_CANCEL_ONLINE:
3545 slab_mem_offline_callback(arg);
3546 break;
3547 case MEM_ONLINE:
3548 case MEM_CANCEL_OFFLINE:
3549 break;
3550 }
KAMEZAWA Hiroyukidc19f9d2008-12-01 13:13:48 -08003551 if (ret)
3552 ret = notifier_from_errno(ret);
3553 else
3554 ret = NOTIFY_OK;
Yasunori Gotob9049e22007-10-21 16:41:37 -07003555 return ret;
3556}
3557
Andrew Morton3ac38fa2013-04-29 15:08:06 -07003558static struct notifier_block slab_memory_callback_nb = {
3559 .notifier_call = slab_memory_callback,
3560 .priority = SLAB_CALLBACK_PRI,
3561};
Yasunori Gotob9049e22007-10-21 16:41:37 -07003562
Christoph Lameter81819f02007-05-06 14:49:36 -07003563/********************************************************************
3564 * Basic setup of slabs
3565 *******************************************************************/
3566
Christoph Lameter51df1142010-08-20 12:37:15 -05003567/*
3568 * Used for early kmem_cache structures that were allocated using
Christoph Lameterdffb4d62012-11-28 16:23:07 +00003569 * the page allocator. Allocate them properly then fix up the pointers
3570 * that may be pointing to the wrong kmem_cache structure.
Christoph Lameter51df1142010-08-20 12:37:15 -05003571 */
3572
Christoph Lameterdffb4d62012-11-28 16:23:07 +00003573static struct kmem_cache * __init bootstrap(struct kmem_cache *static_cache)
Christoph Lameter51df1142010-08-20 12:37:15 -05003574{
3575 int node;
Christoph Lameterdffb4d62012-11-28 16:23:07 +00003576 struct kmem_cache *s = kmem_cache_zalloc(kmem_cache, GFP_NOWAIT);
Christoph Lameter51df1142010-08-20 12:37:15 -05003577
Christoph Lameterdffb4d62012-11-28 16:23:07 +00003578 memcpy(s, static_cache, kmem_cache->object_size);
Christoph Lameter51df1142010-08-20 12:37:15 -05003579
Glauber Costa7d557b32013-02-22 20:20:00 +04003580 /*
3581 * This runs very early, and only the boot processor is supposed to be
3582 * up. Even if it weren't true, IRQs are not up so we couldn't fire
3583 * IPIs around.
3584 */
3585 __flush_cpu_slab(s, smp_processor_id());
Christoph Lameter51df1142010-08-20 12:37:15 -05003586 for_each_node_state(node, N_NORMAL_MEMORY) {
3587 struct kmem_cache_node *n = get_node(s, node);
3588 struct page *p;
3589
3590 if (n) {
3591 list_for_each_entry(p, &n->partial, lru)
Glauber Costa1b4f59e32012-10-22 18:05:36 +04003592 p->slab_cache = s;
Christoph Lameter51df1142010-08-20 12:37:15 -05003593
Li Zefan607bf322011-04-12 15:22:26 +08003594#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter51df1142010-08-20 12:37:15 -05003595 list_for_each_entry(p, &n->full, lru)
Glauber Costa1b4f59e32012-10-22 18:05:36 +04003596 p->slab_cache = s;
Christoph Lameter51df1142010-08-20 12:37:15 -05003597#endif
3598 }
3599 }
Christoph Lameterdffb4d62012-11-28 16:23:07 +00003600 list_add(&s->list, &slab_caches);
3601 return s;
Christoph Lameter51df1142010-08-20 12:37:15 -05003602}
3603
Christoph Lameter81819f02007-05-06 14:49:36 -07003604void __init kmem_cache_init(void)
3605{
Christoph Lameterdffb4d62012-11-28 16:23:07 +00003606 static __initdata struct kmem_cache boot_kmem_cache,
3607 boot_kmem_cache_node;
Christoph Lameter51df1142010-08-20 12:37:15 -05003608
Stanislaw Gruszkafc8d8622012-01-10 15:07:32 -08003609 if (debug_guardpage_minorder())
3610 slub_max_order = 0;
3611
Christoph Lameterdffb4d62012-11-28 16:23:07 +00003612 kmem_cache_node = &boot_kmem_cache_node;
3613 kmem_cache = &boot_kmem_cache;
Christoph Lameter51df1142010-08-20 12:37:15 -05003614
Christoph Lameterdffb4d62012-11-28 16:23:07 +00003615 create_boot_cache(kmem_cache_node, "kmem_cache_node",
3616 sizeof(struct kmem_cache_node), SLAB_HWCACHE_ALIGN);
Yasunori Gotob9049e22007-10-21 16:41:37 -07003617
Andrew Morton3ac38fa2013-04-29 15:08:06 -07003618 register_hotmemory_notifier(&slab_memory_callback_nb);
Christoph Lameter81819f02007-05-06 14:49:36 -07003619
3620 /* Able to allocate the per node structures */
3621 slab_state = PARTIAL;
3622
Christoph Lameterdffb4d62012-11-28 16:23:07 +00003623 create_boot_cache(kmem_cache, "kmem_cache",
3624 offsetof(struct kmem_cache, node) +
3625 nr_node_ids * sizeof(struct kmem_cache_node *),
3626 SLAB_HWCACHE_ALIGN);
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00003627
Christoph Lameterdffb4d62012-11-28 16:23:07 +00003628 kmem_cache = bootstrap(&boot_kmem_cache);
Christoph Lameter81819f02007-05-06 14:49:36 -07003629
Christoph Lameter51df1142010-08-20 12:37:15 -05003630 /*
3631 * Allocate kmem_cache_node properly from the kmem_cache slab.
3632 * kmem_cache_node is separately allocated so no need to
3633 * update any list pointers.
3634 */
Christoph Lameterdffb4d62012-11-28 16:23:07 +00003635 kmem_cache_node = bootstrap(&boot_kmem_cache_node);
Christoph Lameter51df1142010-08-20 12:37:15 -05003636
3637 /* Now we can use the kmem_cache to allocate kmalloc slabs */
Christoph Lameterf97d5f62013-01-10 19:12:17 +00003638 create_kmalloc_caches(0);
Christoph Lameter81819f02007-05-06 14:49:36 -07003639
3640#ifdef CONFIG_SMP
3641 register_cpu_notifier(&slab_notifier);
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06003642#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07003643
Fabian Frederickf9f58282014-06-04 16:06:34 -07003644 pr_info("SLUB: HWalign=%d, Order=%d-%d, MinObjects=%d, CPUs=%d, Nodes=%d\n",
Christoph Lameterf97d5f62013-01-10 19:12:17 +00003645 cache_line_size(),
Christoph Lameter81819f02007-05-06 14:49:36 -07003646 slub_min_order, slub_max_order, slub_min_objects,
3647 nr_cpu_ids, nr_node_ids);
3648}
3649
Pekka Enberg7e85ee02009-06-12 14:03:06 +03003650void __init kmem_cache_init_late(void)
3651{
Pekka Enberg7e85ee02009-06-12 14:03:06 +03003652}
3653
Christoph Lameter81819f02007-05-06 14:49:36 -07003654/*
3655 * Find a mergeable slab cache
3656 */
3657static int slab_unmergeable(struct kmem_cache *s)
3658{
3659 if (slub_nomerge || (s->flags & SLUB_NEVER_MERGE))
3660 return 1;
3661
Vladimir Davydova44cb942014-04-07 15:39:23 -07003662 if (!is_root_cache(s))
3663 return 1;
3664
Christoph Lameterc59def92007-05-16 22:10:50 -07003665 if (s->ctor)
Christoph Lameter81819f02007-05-06 14:49:36 -07003666 return 1;
3667
Christoph Lameter8ffa6872007-05-31 00:40:51 -07003668 /*
3669 * We may have set a slab to be unmergeable during bootstrap.
3670 */
3671 if (s->refcount < 0)
3672 return 1;
3673
Christoph Lameter81819f02007-05-06 14:49:36 -07003674 return 0;
3675}
3676
Vladimir Davydova44cb942014-04-07 15:39:23 -07003677static struct kmem_cache *find_mergeable(size_t size, size_t align,
3678 unsigned long flags, const char *name, void (*ctor)(void *))
Christoph Lameter81819f02007-05-06 14:49:36 -07003679{
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07003680 struct kmem_cache *s;
Christoph Lameter81819f02007-05-06 14:49:36 -07003681
3682 if (slub_nomerge || (flags & SLUB_NEVER_MERGE))
3683 return NULL;
3684
Christoph Lameterc59def92007-05-16 22:10:50 -07003685 if (ctor)
Christoph Lameter81819f02007-05-06 14:49:36 -07003686 return NULL;
3687
3688 size = ALIGN(size, sizeof(void *));
3689 align = calculate_alignment(flags, align, size);
3690 size = ALIGN(size, align);
Christoph Lameterba0268a2007-09-11 15:24:11 -07003691 flags = kmem_cache_flags(size, flags, name, NULL);
Christoph Lameter81819f02007-05-06 14:49:36 -07003692
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07003693 list_for_each_entry(s, &slab_caches, list) {
Christoph Lameter81819f02007-05-06 14:49:36 -07003694 if (slab_unmergeable(s))
3695 continue;
3696
3697 if (size > s->size)
3698 continue;
3699
Christoph Lameterba0268a2007-09-11 15:24:11 -07003700 if ((flags & SLUB_MERGE_SAME) != (s->flags & SLUB_MERGE_SAME))
Vladimir Davydova44cb942014-04-07 15:39:23 -07003701 continue;
Christoph Lameter81819f02007-05-06 14:49:36 -07003702 /*
3703 * Check if alignment is compatible.
3704 * Courtesy of Adrian Drzewiecki
3705 */
Pekka Enberg06428782008-01-07 23:20:27 -08003706 if ((s->size & ~(align - 1)) != s->size)
Christoph Lameter81819f02007-05-06 14:49:36 -07003707 continue;
3708
3709 if (s->size - size >= sizeof(void *))
3710 continue;
3711
3712 return s;
3713 }
3714 return NULL;
3715}
3716
Glauber Costa2633d7a2012-12-18 14:22:34 -08003717struct kmem_cache *
Vladimir Davydova44cb942014-04-07 15:39:23 -07003718__kmem_cache_alias(const char *name, size_t size, size_t align,
3719 unsigned long flags, void (*ctor)(void *))
Christoph Lameter81819f02007-05-06 14:49:36 -07003720{
3721 struct kmem_cache *s;
3722
Vladimir Davydova44cb942014-04-07 15:39:23 -07003723 s = find_mergeable(size, align, flags, name, ctor);
Christoph Lameter81819f02007-05-06 14:49:36 -07003724 if (s) {
Vladimir Davydov84d0ddd2014-04-07 15:39:29 -07003725 int i;
3726 struct kmem_cache *c;
3727
Christoph Lameter81819f02007-05-06 14:49:36 -07003728 s->refcount++;
Vladimir Davydov84d0ddd2014-04-07 15:39:29 -07003729
Christoph Lameter81819f02007-05-06 14:49:36 -07003730 /*
3731 * Adjust the object sizes so that we clear
3732 * the complete object on kzalloc.
3733 */
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003734 s->object_size = max(s->object_size, (int)size);
Christoph Lameter81819f02007-05-06 14:49:36 -07003735 s->inuse = max_t(int, s->inuse, ALIGN(size, sizeof(void *)));
Christoph Lameter6446faa2008-02-15 23:45:26 -08003736
Vladimir Davydov84d0ddd2014-04-07 15:39:29 -07003737 for_each_memcg_cache_index(i) {
3738 c = cache_from_memcg_idx(s, i);
3739 if (!c)
3740 continue;
3741 c->object_size = s->object_size;
3742 c->inuse = max_t(int, c->inuse,
3743 ALIGN(size, sizeof(void *)));
3744 }
3745
David Rientjes7b8f3b62008-12-17 22:09:46 -08003746 if (sysfs_slab_alias(s, name)) {
David Rientjes7b8f3b62008-12-17 22:09:46 -08003747 s->refcount--;
Christoph Lametercbb79692012-09-05 00:18:32 +00003748 s = NULL;
David Rientjes7b8f3b62008-12-17 22:09:46 -08003749 }
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07003750 }
Christoph Lameter6446faa2008-02-15 23:45:26 -08003751
Christoph Lametercbb79692012-09-05 00:18:32 +00003752 return s;
3753}
Pekka Enberg84c1cf62010-09-14 23:21:12 +03003754
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00003755int __kmem_cache_create(struct kmem_cache *s, unsigned long flags)
Christoph Lametercbb79692012-09-05 00:18:32 +00003756{
Pekka Enbergaac3a162012-09-05 12:07:44 +03003757 int err;
Christoph Lameter20cea962012-07-06 15:25:13 -05003758
Pekka Enbergaac3a162012-09-05 12:07:44 +03003759 err = kmem_cache_open(s, flags);
3760 if (err)
3761 return err;
Christoph Lameter20cea962012-07-06 15:25:13 -05003762
Christoph Lameter45530c42012-11-28 16:23:07 +00003763 /* Mutex is not taken during early boot */
3764 if (slab_state <= UP)
3765 return 0;
3766
Glauber Costa107dab52012-12-18 14:23:05 -08003767 memcg_propagate_slab_attrs(s);
Pekka Enbergaac3a162012-09-05 12:07:44 +03003768 err = sysfs_slab_add(s);
Pekka Enbergaac3a162012-09-05 12:07:44 +03003769 if (err)
3770 kmem_cache_close(s);
3771
3772 return err;
Christoph Lameter81819f02007-05-06 14:49:36 -07003773}
Christoph Lameter81819f02007-05-06 14:49:36 -07003774
Christoph Lameter81819f02007-05-06 14:49:36 -07003775#ifdef CONFIG_SMP
Christoph Lameter27390bc2007-06-01 00:47:09 -07003776/*
Christoph Lameter672bba32007-05-09 02:32:39 -07003777 * Use the cpu notifier to insure that the cpu slabs are flushed when
3778 * necessary.
Christoph Lameter81819f02007-05-06 14:49:36 -07003779 */
Paul Gortmaker0db06282013-06-19 14:53:51 -04003780static int slab_cpuup_callback(struct notifier_block *nfb,
Christoph Lameter81819f02007-05-06 14:49:36 -07003781 unsigned long action, void *hcpu)
3782{
3783 long cpu = (long)hcpu;
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07003784 struct kmem_cache *s;
3785 unsigned long flags;
Christoph Lameter81819f02007-05-06 14:49:36 -07003786
3787 switch (action) {
3788 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07003789 case CPU_UP_CANCELED_FROZEN:
Christoph Lameter81819f02007-05-06 14:49:36 -07003790 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07003791 case CPU_DEAD_FROZEN:
Christoph Lameter18004c52012-07-06 15:25:12 -05003792 mutex_lock(&slab_mutex);
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07003793 list_for_each_entry(s, &slab_caches, list) {
3794 local_irq_save(flags);
3795 __flush_cpu_slab(s, cpu);
3796 local_irq_restore(flags);
3797 }
Christoph Lameter18004c52012-07-06 15:25:12 -05003798 mutex_unlock(&slab_mutex);
Christoph Lameter81819f02007-05-06 14:49:36 -07003799 break;
3800 default:
3801 break;
3802 }
3803 return NOTIFY_OK;
3804}
3805
Paul Gortmaker0db06282013-06-19 14:53:51 -04003806static struct notifier_block slab_notifier = {
Ingo Molnar3adbefe2008-02-05 17:57:39 -08003807 .notifier_call = slab_cpuup_callback
Pekka Enberg06428782008-01-07 23:20:27 -08003808};
Christoph Lameter81819f02007-05-06 14:49:36 -07003809
3810#endif
3811
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003812void *__kmalloc_track_caller(size_t size, gfp_t gfpflags, unsigned long caller)
Christoph Lameter81819f02007-05-06 14:49:36 -07003813{
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003814 struct kmem_cache *s;
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03003815 void *ret;
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003816
Christoph Lameter95a05b42013-01-10 19:14:19 +00003817 if (unlikely(size > KMALLOC_MAX_CACHE_SIZE))
Pekka Enbergeada35e2008-02-11 22:47:46 +02003818 return kmalloc_large(size, gfpflags);
3819
Christoph Lameter2c59dd62013-01-10 19:14:19 +00003820 s = kmalloc_slab(size, gfpflags);
Christoph Lameter81819f02007-05-06 14:49:36 -07003821
Satyam Sharma2408c552007-10-16 01:24:44 -07003822 if (unlikely(ZERO_OR_NULL_PTR(s)))
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003823 return s;
Christoph Lameter81819f02007-05-06 14:49:36 -07003824
Ezequiel Garcia2b847c32012-09-08 17:47:58 -03003825 ret = slab_alloc(s, gfpflags, caller);
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03003826
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003827 /* Honor the call site pointer we received. */
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003828 trace_kmalloc(caller, ret, size, s->size, gfpflags);
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03003829
3830 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07003831}
3832
Namhyung Kim5d1f57e2010-09-29 21:02:15 +09003833#ifdef CONFIG_NUMA
Christoph Lameter81819f02007-05-06 14:49:36 -07003834void *__kmalloc_node_track_caller(size_t size, gfp_t gfpflags,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003835 int node, unsigned long caller)
Christoph Lameter81819f02007-05-06 14:49:36 -07003836{
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003837 struct kmem_cache *s;
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03003838 void *ret;
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003839
Christoph Lameter95a05b42013-01-10 19:14:19 +00003840 if (unlikely(size > KMALLOC_MAX_CACHE_SIZE)) {
Xiaotian Fengd3e14aa2010-04-08 17:26:44 +08003841 ret = kmalloc_large_node(size, gfpflags, node);
3842
3843 trace_kmalloc_node(caller, ret,
3844 size, PAGE_SIZE << get_order(size),
3845 gfpflags, node);
3846
3847 return ret;
3848 }
Pekka Enbergeada35e2008-02-11 22:47:46 +02003849
Christoph Lameter2c59dd62013-01-10 19:14:19 +00003850 s = kmalloc_slab(size, gfpflags);
Christoph Lameter81819f02007-05-06 14:49:36 -07003851
Satyam Sharma2408c552007-10-16 01:24:44 -07003852 if (unlikely(ZERO_OR_NULL_PTR(s)))
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003853 return s;
Christoph Lameter81819f02007-05-06 14:49:36 -07003854
Ezequiel Garcia2b847c32012-09-08 17:47:58 -03003855 ret = slab_alloc_node(s, gfpflags, node, caller);
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03003856
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003857 /* Honor the call site pointer we received. */
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003858 trace_kmalloc_node(caller, ret, size, s->size, gfpflags, node);
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03003859
3860 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07003861}
Namhyung Kim5d1f57e2010-09-29 21:02:15 +09003862#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07003863
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05003864#ifdef CONFIG_SYSFS
Christoph Lameter205ab992008-04-14 19:11:40 +03003865static int count_inuse(struct page *page)
3866{
3867 return page->inuse;
3868}
3869
3870static int count_total(struct page *page)
3871{
3872 return page->objects;
3873}
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05003874#endif
Christoph Lameter205ab992008-04-14 19:11:40 +03003875
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05003876#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter434e2452007-07-17 04:03:30 -07003877static int validate_slab(struct kmem_cache *s, struct page *page,
3878 unsigned long *map)
Christoph Lameter53e15af2007-05-06 14:49:43 -07003879{
3880 void *p;
Christoph Lametera973e9d2008-03-01 13:40:44 -08003881 void *addr = page_address(page);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003882
3883 if (!check_slab(s, page) ||
3884 !on_freelist(s, page, NULL))
3885 return 0;
3886
3887 /* Now we know that a valid freelist exists */
Christoph Lameter39b26462008-04-14 19:11:30 +03003888 bitmap_zero(map, page->objects);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003889
Christoph Lameter5f80b132011-04-15 14:48:13 -05003890 get_map(s, page, map);
3891 for_each_object(p, s, addr, page->objects) {
3892 if (test_bit(slab_index(p, s, addr), map))
3893 if (!check_object(s, page, p, SLUB_RED_INACTIVE))
3894 return 0;
Christoph Lameter53e15af2007-05-06 14:49:43 -07003895 }
3896
Christoph Lameter224a88b2008-04-14 19:11:31 +03003897 for_each_object(p, s, addr, page->objects)
Christoph Lameter7656c722007-05-09 02:32:40 -07003898 if (!test_bit(slab_index(p, s, addr), map))
Tero Roponen37d57442010-12-01 20:04:20 +02003899 if (!check_object(s, page, p, SLUB_RED_ACTIVE))
Christoph Lameter53e15af2007-05-06 14:49:43 -07003900 return 0;
3901 return 1;
3902}
3903
Christoph Lameter434e2452007-07-17 04:03:30 -07003904static void validate_slab_slab(struct kmem_cache *s, struct page *page,
3905 unsigned long *map)
Christoph Lameter53e15af2007-05-06 14:49:43 -07003906{
Christoph Lameter881db7f2011-06-01 12:25:53 -05003907 slab_lock(page);
3908 validate_slab(s, page, map);
3909 slab_unlock(page);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003910}
3911
Christoph Lameter434e2452007-07-17 04:03:30 -07003912static int validate_slab_node(struct kmem_cache *s,
3913 struct kmem_cache_node *n, unsigned long *map)
Christoph Lameter53e15af2007-05-06 14:49:43 -07003914{
3915 unsigned long count = 0;
3916 struct page *page;
3917 unsigned long flags;
3918
3919 spin_lock_irqsave(&n->list_lock, flags);
3920
3921 list_for_each_entry(page, &n->partial, lru) {
Christoph Lameter434e2452007-07-17 04:03:30 -07003922 validate_slab_slab(s, page, map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003923 count++;
3924 }
3925 if (count != n->nr_partial)
Fabian Frederickf9f58282014-06-04 16:06:34 -07003926 pr_err("SLUB %s: %ld partial slabs counted but counter=%ld\n",
3927 s->name, count, n->nr_partial);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003928
3929 if (!(s->flags & SLAB_STORE_USER))
3930 goto out;
3931
3932 list_for_each_entry(page, &n->full, lru) {
Christoph Lameter434e2452007-07-17 04:03:30 -07003933 validate_slab_slab(s, page, map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003934 count++;
3935 }
3936 if (count != atomic_long_read(&n->nr_slabs))
Fabian Frederickf9f58282014-06-04 16:06:34 -07003937 pr_err("SLUB: %s %ld slabs counted but counter=%ld\n",
3938 s->name, count, atomic_long_read(&n->nr_slabs));
Christoph Lameter53e15af2007-05-06 14:49:43 -07003939
3940out:
3941 spin_unlock_irqrestore(&n->list_lock, flags);
3942 return count;
3943}
3944
Christoph Lameter434e2452007-07-17 04:03:30 -07003945static long validate_slab_cache(struct kmem_cache *s)
Christoph Lameter53e15af2007-05-06 14:49:43 -07003946{
3947 int node;
3948 unsigned long count = 0;
Christoph Lameter205ab992008-04-14 19:11:40 +03003949 unsigned long *map = kmalloc(BITS_TO_LONGS(oo_objects(s->max)) *
Christoph Lameter434e2452007-07-17 04:03:30 -07003950 sizeof(unsigned long), GFP_KERNEL);
3951
3952 if (!map)
3953 return -ENOMEM;
Christoph Lameter53e15af2007-05-06 14:49:43 -07003954
3955 flush_all(s);
Christoph Lameterf64dc582007-10-16 01:25:33 -07003956 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter53e15af2007-05-06 14:49:43 -07003957 struct kmem_cache_node *n = get_node(s, node);
3958
Christoph Lameter434e2452007-07-17 04:03:30 -07003959 count += validate_slab_node(s, n, map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003960 }
Christoph Lameter434e2452007-07-17 04:03:30 -07003961 kfree(map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003962 return count;
3963}
Christoph Lameter88a420e2007-05-06 14:49:45 -07003964/*
Christoph Lameter672bba32007-05-09 02:32:39 -07003965 * Generate lists of code addresses where slabcache objects are allocated
Christoph Lameter88a420e2007-05-06 14:49:45 -07003966 * and freed.
3967 */
3968
3969struct location {
3970 unsigned long count;
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003971 unsigned long addr;
Christoph Lameter45edfa52007-05-09 02:32:45 -07003972 long long sum_time;
3973 long min_time;
3974 long max_time;
3975 long min_pid;
3976 long max_pid;
Rusty Russell174596a2009-01-01 10:12:29 +10303977 DECLARE_BITMAP(cpus, NR_CPUS);
Christoph Lameter45edfa52007-05-09 02:32:45 -07003978 nodemask_t nodes;
Christoph Lameter88a420e2007-05-06 14:49:45 -07003979};
3980
3981struct loc_track {
3982 unsigned long max;
3983 unsigned long count;
3984 struct location *loc;
3985};
3986
3987static void free_loc_track(struct loc_track *t)
3988{
3989 if (t->max)
3990 free_pages((unsigned long)t->loc,
3991 get_order(sizeof(struct location) * t->max));
3992}
3993
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003994static int alloc_loc_track(struct loc_track *t, unsigned long max, gfp_t flags)
Christoph Lameter88a420e2007-05-06 14:49:45 -07003995{
3996 struct location *l;
3997 int order;
3998
Christoph Lameter88a420e2007-05-06 14:49:45 -07003999 order = get_order(sizeof(struct location) * max);
4000
Christoph Lameter68dff6a2007-07-17 04:03:20 -07004001 l = (void *)__get_free_pages(flags, order);
Christoph Lameter88a420e2007-05-06 14:49:45 -07004002 if (!l)
4003 return 0;
4004
4005 if (t->count) {
4006 memcpy(l, t->loc, sizeof(struct location) * t->count);
4007 free_loc_track(t);
4008 }
4009 t->max = max;
4010 t->loc = l;
4011 return 1;
4012}
4013
4014static int add_location(struct loc_track *t, struct kmem_cache *s,
Christoph Lameter45edfa52007-05-09 02:32:45 -07004015 const struct track *track)
Christoph Lameter88a420e2007-05-06 14:49:45 -07004016{
4017 long start, end, pos;
4018 struct location *l;
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03004019 unsigned long caddr;
Christoph Lameter45edfa52007-05-09 02:32:45 -07004020 unsigned long age = jiffies - track->when;
Christoph Lameter88a420e2007-05-06 14:49:45 -07004021
4022 start = -1;
4023 end = t->count;
4024
4025 for ( ; ; ) {
4026 pos = start + (end - start + 1) / 2;
4027
4028 /*
4029 * There is nothing at "end". If we end up there
4030 * we need to add something to before end.
4031 */
4032 if (pos == end)
4033 break;
4034
4035 caddr = t->loc[pos].addr;
Christoph Lameter45edfa52007-05-09 02:32:45 -07004036 if (track->addr == caddr) {
4037
4038 l = &t->loc[pos];
4039 l->count++;
4040 if (track->when) {
4041 l->sum_time += age;
4042 if (age < l->min_time)
4043 l->min_time = age;
4044 if (age > l->max_time)
4045 l->max_time = age;
4046
4047 if (track->pid < l->min_pid)
4048 l->min_pid = track->pid;
4049 if (track->pid > l->max_pid)
4050 l->max_pid = track->pid;
4051
Rusty Russell174596a2009-01-01 10:12:29 +10304052 cpumask_set_cpu(track->cpu,
4053 to_cpumask(l->cpus));
Christoph Lameter45edfa52007-05-09 02:32:45 -07004054 }
4055 node_set(page_to_nid(virt_to_page(track)), l->nodes);
Christoph Lameter88a420e2007-05-06 14:49:45 -07004056 return 1;
4057 }
4058
Christoph Lameter45edfa52007-05-09 02:32:45 -07004059 if (track->addr < caddr)
Christoph Lameter88a420e2007-05-06 14:49:45 -07004060 end = pos;
4061 else
4062 start = pos;
4063 }
4064
4065 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07004066 * Not found. Insert new tracking element.
Christoph Lameter88a420e2007-05-06 14:49:45 -07004067 */
Christoph Lameter68dff6a2007-07-17 04:03:20 -07004068 if (t->count >= t->max && !alloc_loc_track(t, 2 * t->max, GFP_ATOMIC))
Christoph Lameter88a420e2007-05-06 14:49:45 -07004069 return 0;
4070
4071 l = t->loc + pos;
4072 if (pos < t->count)
4073 memmove(l + 1, l,
4074 (t->count - pos) * sizeof(struct location));
4075 t->count++;
4076 l->count = 1;
Christoph Lameter45edfa52007-05-09 02:32:45 -07004077 l->addr = track->addr;
4078 l->sum_time = age;
4079 l->min_time = age;
4080 l->max_time = age;
4081 l->min_pid = track->pid;
4082 l->max_pid = track->pid;
Rusty Russell174596a2009-01-01 10:12:29 +10304083 cpumask_clear(to_cpumask(l->cpus));
4084 cpumask_set_cpu(track->cpu, to_cpumask(l->cpus));
Christoph Lameter45edfa52007-05-09 02:32:45 -07004085 nodes_clear(l->nodes);
4086 node_set(page_to_nid(virt_to_page(track)), l->nodes);
Christoph Lameter88a420e2007-05-06 14:49:45 -07004087 return 1;
4088}
4089
4090static void process_slab(struct loc_track *t, struct kmem_cache *s,
Eric Dumazetbbd7d572010-03-24 22:25:47 +01004091 struct page *page, enum track_item alloc,
Namhyung Kima5dd5c12010-09-29 21:02:13 +09004092 unsigned long *map)
Christoph Lameter88a420e2007-05-06 14:49:45 -07004093{
Christoph Lametera973e9d2008-03-01 13:40:44 -08004094 void *addr = page_address(page);
Christoph Lameter88a420e2007-05-06 14:49:45 -07004095 void *p;
4096
Christoph Lameter39b26462008-04-14 19:11:30 +03004097 bitmap_zero(map, page->objects);
Christoph Lameter5f80b132011-04-15 14:48:13 -05004098 get_map(s, page, map);
Christoph Lameter88a420e2007-05-06 14:49:45 -07004099
Christoph Lameter224a88b2008-04-14 19:11:31 +03004100 for_each_object(p, s, addr, page->objects)
Christoph Lameter45edfa52007-05-09 02:32:45 -07004101 if (!test_bit(slab_index(p, s, addr), map))
4102 add_location(t, s, get_track(s, p, alloc));
Christoph Lameter88a420e2007-05-06 14:49:45 -07004103}
4104
4105static int list_locations(struct kmem_cache *s, char *buf,
4106 enum track_item alloc)
4107{
Harvey Harrisone374d482008-01-31 15:20:50 -08004108 int len = 0;
Christoph Lameter88a420e2007-05-06 14:49:45 -07004109 unsigned long i;
Christoph Lameter68dff6a2007-07-17 04:03:20 -07004110 struct loc_track t = { 0, 0, NULL };
Christoph Lameter88a420e2007-05-06 14:49:45 -07004111 int node;
Eric Dumazetbbd7d572010-03-24 22:25:47 +01004112 unsigned long *map = kmalloc(BITS_TO_LONGS(oo_objects(s->max)) *
4113 sizeof(unsigned long), GFP_KERNEL);
Christoph Lameter88a420e2007-05-06 14:49:45 -07004114
Eric Dumazetbbd7d572010-03-24 22:25:47 +01004115 if (!map || !alloc_loc_track(&t, PAGE_SIZE / sizeof(struct location),
4116 GFP_TEMPORARY)) {
4117 kfree(map);
Christoph Lameter68dff6a2007-07-17 04:03:20 -07004118 return sprintf(buf, "Out of memory\n");
Eric Dumazetbbd7d572010-03-24 22:25:47 +01004119 }
Christoph Lameter88a420e2007-05-06 14:49:45 -07004120 /* Push back cpu slabs */
4121 flush_all(s);
4122
Christoph Lameterf64dc582007-10-16 01:25:33 -07004123 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter88a420e2007-05-06 14:49:45 -07004124 struct kmem_cache_node *n = get_node(s, node);
4125 unsigned long flags;
4126 struct page *page;
4127
Christoph Lameter9e869432007-08-22 14:01:56 -07004128 if (!atomic_long_read(&n->nr_slabs))
Christoph Lameter88a420e2007-05-06 14:49:45 -07004129 continue;
4130
4131 spin_lock_irqsave(&n->list_lock, flags);
4132 list_for_each_entry(page, &n->partial, lru)
Eric Dumazetbbd7d572010-03-24 22:25:47 +01004133 process_slab(&t, s, page, alloc, map);
Christoph Lameter88a420e2007-05-06 14:49:45 -07004134 list_for_each_entry(page, &n->full, lru)
Eric Dumazetbbd7d572010-03-24 22:25:47 +01004135 process_slab(&t, s, page, alloc, map);
Christoph Lameter88a420e2007-05-06 14:49:45 -07004136 spin_unlock_irqrestore(&n->list_lock, flags);
4137 }
4138
4139 for (i = 0; i < t.count; i++) {
Christoph Lameter45edfa52007-05-09 02:32:45 -07004140 struct location *l = &t.loc[i];
Christoph Lameter88a420e2007-05-06 14:49:45 -07004141
Hugh Dickins9c246242008-12-09 13:14:27 -08004142 if (len > PAGE_SIZE - KSYM_SYMBOL_LEN - 100)
Christoph Lameter88a420e2007-05-06 14:49:45 -07004143 break;
Harvey Harrisone374d482008-01-31 15:20:50 -08004144 len += sprintf(buf + len, "%7ld ", l->count);
Christoph Lameter45edfa52007-05-09 02:32:45 -07004145
4146 if (l->addr)
Joe Perches62c70bc2011-01-13 15:45:52 -08004147 len += sprintf(buf + len, "%pS", (void *)l->addr);
Christoph Lameter88a420e2007-05-06 14:49:45 -07004148 else
Harvey Harrisone374d482008-01-31 15:20:50 -08004149 len += sprintf(buf + len, "<not-available>");
Christoph Lameter45edfa52007-05-09 02:32:45 -07004150
4151 if (l->sum_time != l->min_time) {
Harvey Harrisone374d482008-01-31 15:20:50 -08004152 len += sprintf(buf + len, " age=%ld/%ld/%ld",
Roman Zippelf8bd2252008-05-01 04:34:31 -07004153 l->min_time,
4154 (long)div_u64(l->sum_time, l->count),
4155 l->max_time);
Christoph Lameter45edfa52007-05-09 02:32:45 -07004156 } else
Harvey Harrisone374d482008-01-31 15:20:50 -08004157 len += sprintf(buf + len, " age=%ld",
Christoph Lameter45edfa52007-05-09 02:32:45 -07004158 l->min_time);
4159
4160 if (l->min_pid != l->max_pid)
Harvey Harrisone374d482008-01-31 15:20:50 -08004161 len += sprintf(buf + len, " pid=%ld-%ld",
Christoph Lameter45edfa52007-05-09 02:32:45 -07004162 l->min_pid, l->max_pid);
4163 else
Harvey Harrisone374d482008-01-31 15:20:50 -08004164 len += sprintf(buf + len, " pid=%ld",
Christoph Lameter45edfa52007-05-09 02:32:45 -07004165 l->min_pid);
4166
Rusty Russell174596a2009-01-01 10:12:29 +10304167 if (num_online_cpus() > 1 &&
4168 !cpumask_empty(to_cpumask(l->cpus)) &&
Harvey Harrisone374d482008-01-31 15:20:50 -08004169 len < PAGE_SIZE - 60) {
4170 len += sprintf(buf + len, " cpus=");
Chen Gangd0e0ac92013-07-15 09:05:29 +08004171 len += cpulist_scnprintf(buf + len,
4172 PAGE_SIZE - len - 50,
Rusty Russell174596a2009-01-01 10:12:29 +10304173 to_cpumask(l->cpus));
Christoph Lameter45edfa52007-05-09 02:32:45 -07004174 }
4175
Christoph Lameter62bc62a2009-06-16 15:32:15 -07004176 if (nr_online_nodes > 1 && !nodes_empty(l->nodes) &&
Harvey Harrisone374d482008-01-31 15:20:50 -08004177 len < PAGE_SIZE - 60) {
4178 len += sprintf(buf + len, " nodes=");
Chen Gangd0e0ac92013-07-15 09:05:29 +08004179 len += nodelist_scnprintf(buf + len,
4180 PAGE_SIZE - len - 50,
4181 l->nodes);
Christoph Lameter45edfa52007-05-09 02:32:45 -07004182 }
4183
Harvey Harrisone374d482008-01-31 15:20:50 -08004184 len += sprintf(buf + len, "\n");
Christoph Lameter88a420e2007-05-06 14:49:45 -07004185 }
4186
4187 free_loc_track(&t);
Eric Dumazetbbd7d572010-03-24 22:25:47 +01004188 kfree(map);
Christoph Lameter88a420e2007-05-06 14:49:45 -07004189 if (!t.count)
Harvey Harrisone374d482008-01-31 15:20:50 -08004190 len += sprintf(buf, "No data\n");
4191 return len;
Christoph Lameter88a420e2007-05-06 14:49:45 -07004192}
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05004193#endif
Christoph Lameter88a420e2007-05-06 14:49:45 -07004194
Christoph Lametera5a84752010-10-05 13:57:27 -05004195#ifdef SLUB_RESILIENCY_TEST
4196static void resiliency_test(void)
4197{
4198 u8 *p;
4199
Christoph Lameter95a05b42013-01-10 19:14:19 +00004200 BUILD_BUG_ON(KMALLOC_MIN_SIZE > 16 || KMALLOC_SHIFT_HIGH < 10);
Christoph Lametera5a84752010-10-05 13:57:27 -05004201
Fabian Frederickf9f58282014-06-04 16:06:34 -07004202 pr_err("SLUB resiliency testing\n");
4203 pr_err("-----------------------\n");
4204 pr_err("A. Corruption after allocation\n");
Christoph Lametera5a84752010-10-05 13:57:27 -05004205
4206 p = kzalloc(16, GFP_KERNEL);
4207 p[16] = 0x12;
Fabian Frederickf9f58282014-06-04 16:06:34 -07004208 pr_err("\n1. kmalloc-16: Clobber Redzone/next pointer 0x12->0x%p\n\n",
4209 p + 16);
Christoph Lametera5a84752010-10-05 13:57:27 -05004210
4211 validate_slab_cache(kmalloc_caches[4]);
4212
4213 /* Hmmm... The next two are dangerous */
4214 p = kzalloc(32, GFP_KERNEL);
4215 p[32 + sizeof(void *)] = 0x34;
Fabian Frederickf9f58282014-06-04 16:06:34 -07004216 pr_err("\n2. kmalloc-32: Clobber next pointer/next slab 0x34 -> -0x%p\n",
4217 p);
4218 pr_err("If allocated object is overwritten then not detectable\n\n");
Christoph Lametera5a84752010-10-05 13:57:27 -05004219
4220 validate_slab_cache(kmalloc_caches[5]);
4221 p = kzalloc(64, GFP_KERNEL);
4222 p += 64 + (get_cycles() & 0xff) * sizeof(void *);
4223 *p = 0x56;
Fabian Frederickf9f58282014-06-04 16:06:34 -07004224 pr_err("\n3. kmalloc-64: corrupting random byte 0x56->0x%p\n",
4225 p);
4226 pr_err("If allocated object is overwritten then not detectable\n\n");
Christoph Lametera5a84752010-10-05 13:57:27 -05004227 validate_slab_cache(kmalloc_caches[6]);
4228
Fabian Frederickf9f58282014-06-04 16:06:34 -07004229 pr_err("\nB. Corruption after free\n");
Christoph Lametera5a84752010-10-05 13:57:27 -05004230 p = kzalloc(128, GFP_KERNEL);
4231 kfree(p);
4232 *p = 0x78;
Fabian Frederickf9f58282014-06-04 16:06:34 -07004233 pr_err("1. kmalloc-128: Clobber first word 0x78->0x%p\n\n", p);
Christoph Lametera5a84752010-10-05 13:57:27 -05004234 validate_slab_cache(kmalloc_caches[7]);
4235
4236 p = kzalloc(256, GFP_KERNEL);
4237 kfree(p);
4238 p[50] = 0x9a;
Fabian Frederickf9f58282014-06-04 16:06:34 -07004239 pr_err("\n2. kmalloc-256: Clobber 50th byte 0x9a->0x%p\n\n", p);
Christoph Lametera5a84752010-10-05 13:57:27 -05004240 validate_slab_cache(kmalloc_caches[8]);
4241
4242 p = kzalloc(512, GFP_KERNEL);
4243 kfree(p);
4244 p[512] = 0xab;
Fabian Frederickf9f58282014-06-04 16:06:34 -07004245 pr_err("\n3. kmalloc-512: Clobber redzone 0xab->0x%p\n\n", p);
Christoph Lametera5a84752010-10-05 13:57:27 -05004246 validate_slab_cache(kmalloc_caches[9]);
4247}
4248#else
4249#ifdef CONFIG_SYSFS
4250static void resiliency_test(void) {};
4251#endif
4252#endif
4253
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05004254#ifdef CONFIG_SYSFS
Christoph Lameter81819f02007-05-06 14:49:36 -07004255enum slab_stat_type {
Christoph Lameter205ab992008-04-14 19:11:40 +03004256 SL_ALL, /* All slabs */
4257 SL_PARTIAL, /* Only partially allocated slabs */
4258 SL_CPU, /* Only slabs used for cpu caches */
4259 SL_OBJECTS, /* Determine allocated objects not slabs */
4260 SL_TOTAL /* Determine object capacity not slabs */
Christoph Lameter81819f02007-05-06 14:49:36 -07004261};
4262
Christoph Lameter205ab992008-04-14 19:11:40 +03004263#define SO_ALL (1 << SL_ALL)
Christoph Lameter81819f02007-05-06 14:49:36 -07004264#define SO_PARTIAL (1 << SL_PARTIAL)
4265#define SO_CPU (1 << SL_CPU)
4266#define SO_OBJECTS (1 << SL_OBJECTS)
Christoph Lameter205ab992008-04-14 19:11:40 +03004267#define SO_TOTAL (1 << SL_TOTAL)
Christoph Lameter81819f02007-05-06 14:49:36 -07004268
Cyrill Gorcunov62e5c4b2008-03-02 23:28:24 +03004269static ssize_t show_slab_objects(struct kmem_cache *s,
4270 char *buf, unsigned long flags)
Christoph Lameter81819f02007-05-06 14:49:36 -07004271{
4272 unsigned long total = 0;
Christoph Lameter81819f02007-05-06 14:49:36 -07004273 int node;
4274 int x;
4275 unsigned long *nodes;
Christoph Lameter81819f02007-05-06 14:49:36 -07004276
Chen Gange35e1a92013-07-12 08:23:48 +08004277 nodes = kzalloc(sizeof(unsigned long) * nr_node_ids, GFP_KERNEL);
Cyrill Gorcunov62e5c4b2008-03-02 23:28:24 +03004278 if (!nodes)
4279 return -ENOMEM;
Christoph Lameter81819f02007-05-06 14:49:36 -07004280
Christoph Lameter205ab992008-04-14 19:11:40 +03004281 if (flags & SO_CPU) {
4282 int cpu;
Christoph Lameter81819f02007-05-06 14:49:36 -07004283
Christoph Lameter205ab992008-04-14 19:11:40 +03004284 for_each_possible_cpu(cpu) {
Chen Gangd0e0ac92013-07-15 09:05:29 +08004285 struct kmem_cache_cpu *c = per_cpu_ptr(s->cpu_slab,
4286 cpu);
Christoph Lameterec3ab082012-05-09 10:09:56 -05004287 int node;
Christoph Lameter49e22582011-08-09 16:12:27 -05004288 struct page *page;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07004289
Eric Dumazetbc6697d2011-11-22 16:02:02 +01004290 page = ACCESS_ONCE(c->page);
Christoph Lameterec3ab082012-05-09 10:09:56 -05004291 if (!page)
4292 continue;
Christoph Lameter205ab992008-04-14 19:11:40 +03004293
Christoph Lameterec3ab082012-05-09 10:09:56 -05004294 node = page_to_nid(page);
4295 if (flags & SO_TOTAL)
4296 x = page->objects;
4297 else if (flags & SO_OBJECTS)
4298 x = page->inuse;
4299 else
4300 x = 1;
Christoph Lameter49e22582011-08-09 16:12:27 -05004301
Christoph Lameterec3ab082012-05-09 10:09:56 -05004302 total += x;
4303 nodes[node] += x;
4304
4305 page = ACCESS_ONCE(c->partial);
Christoph Lameter49e22582011-08-09 16:12:27 -05004306 if (page) {
Li Zefan8afb1472013-09-10 11:43:37 +08004307 node = page_to_nid(page);
4308 if (flags & SO_TOTAL)
4309 WARN_ON_ONCE(1);
4310 else if (flags & SO_OBJECTS)
4311 WARN_ON_ONCE(1);
4312 else
4313 x = page->pages;
Eric Dumazetbc6697d2011-11-22 16:02:02 +01004314 total += x;
4315 nodes[node] += x;
Christoph Lameter49e22582011-08-09 16:12:27 -05004316 }
Christoph Lameter81819f02007-05-06 14:49:36 -07004317 }
4318 }
4319
Christoph Lameter04d94872011-01-10 10:15:15 -06004320 lock_memory_hotplug();
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05004321#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter205ab992008-04-14 19:11:40 +03004322 if (flags & SO_ALL) {
4323 for_each_node_state(node, N_NORMAL_MEMORY) {
4324 struct kmem_cache_node *n = get_node(s, node);
Christoph Lameter81819f02007-05-06 14:49:36 -07004325
Chen Gangd0e0ac92013-07-15 09:05:29 +08004326 if (flags & SO_TOTAL)
4327 x = atomic_long_read(&n->total_objects);
4328 else if (flags & SO_OBJECTS)
4329 x = atomic_long_read(&n->total_objects) -
4330 count_partial(n, count_free);
Christoph Lameter205ab992008-04-14 19:11:40 +03004331 else
4332 x = atomic_long_read(&n->nr_slabs);
4333 total += x;
4334 nodes[node] += x;
4335 }
4336
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05004337 } else
4338#endif
4339 if (flags & SO_PARTIAL) {
Christoph Lameter205ab992008-04-14 19:11:40 +03004340 for_each_node_state(node, N_NORMAL_MEMORY) {
4341 struct kmem_cache_node *n = get_node(s, node);
4342
4343 if (flags & SO_TOTAL)
4344 x = count_partial(n, count_total);
4345 else if (flags & SO_OBJECTS)
4346 x = count_partial(n, count_inuse);
Christoph Lameter81819f02007-05-06 14:49:36 -07004347 else
4348 x = n->nr_partial;
4349 total += x;
4350 nodes[node] += x;
4351 }
Christoph Lameter81819f02007-05-06 14:49:36 -07004352 }
Christoph Lameter81819f02007-05-06 14:49:36 -07004353 x = sprintf(buf, "%lu", total);
4354#ifdef CONFIG_NUMA
Christoph Lameterf64dc582007-10-16 01:25:33 -07004355 for_each_node_state(node, N_NORMAL_MEMORY)
Christoph Lameter81819f02007-05-06 14:49:36 -07004356 if (nodes[node])
4357 x += sprintf(buf + x, " N%d=%lu",
4358 node, nodes[node]);
4359#endif
Christoph Lameter04d94872011-01-10 10:15:15 -06004360 unlock_memory_hotplug();
Christoph Lameter81819f02007-05-06 14:49:36 -07004361 kfree(nodes);
4362 return x + sprintf(buf + x, "\n");
4363}
4364
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05004365#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter81819f02007-05-06 14:49:36 -07004366static int any_slab_objects(struct kmem_cache *s)
4367{
4368 int node;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07004369
4370 for_each_online_node(node) {
Christoph Lameter81819f02007-05-06 14:49:36 -07004371 struct kmem_cache_node *n = get_node(s, node);
4372
Christoph Lameterdfb4f092007-10-16 01:26:05 -07004373 if (!n)
4374 continue;
4375
Benjamin Herrenschmidt4ea33e22008-05-06 20:42:39 -07004376 if (atomic_long_read(&n->total_objects))
Christoph Lameter81819f02007-05-06 14:49:36 -07004377 return 1;
4378 }
4379 return 0;
4380}
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05004381#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07004382
4383#define to_slab_attr(n) container_of(n, struct slab_attribute, attr)
Phil Carmody497888c2011-07-14 15:07:13 +03004384#define to_slab(n) container_of(n, struct kmem_cache, kobj)
Christoph Lameter81819f02007-05-06 14:49:36 -07004385
4386struct slab_attribute {
4387 struct attribute attr;
4388 ssize_t (*show)(struct kmem_cache *s, char *buf);
4389 ssize_t (*store)(struct kmem_cache *s, const char *x, size_t count);
4390};
4391
4392#define SLAB_ATTR_RO(_name) \
Vasiliy Kulikovab067e92011-09-27 21:54:53 +04004393 static struct slab_attribute _name##_attr = \
4394 __ATTR(_name, 0400, _name##_show, NULL)
Christoph Lameter81819f02007-05-06 14:49:36 -07004395
4396#define SLAB_ATTR(_name) \
4397 static struct slab_attribute _name##_attr = \
Vasiliy Kulikovab067e92011-09-27 21:54:53 +04004398 __ATTR(_name, 0600, _name##_show, _name##_store)
Christoph Lameter81819f02007-05-06 14:49:36 -07004399
Christoph Lameter81819f02007-05-06 14:49:36 -07004400static ssize_t slab_size_show(struct kmem_cache *s, char *buf)
4401{
4402 return sprintf(buf, "%d\n", s->size);
4403}
4404SLAB_ATTR_RO(slab_size);
4405
4406static ssize_t align_show(struct kmem_cache *s, char *buf)
4407{
4408 return sprintf(buf, "%d\n", s->align);
4409}
4410SLAB_ATTR_RO(align);
4411
4412static ssize_t object_size_show(struct kmem_cache *s, char *buf)
4413{
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05004414 return sprintf(buf, "%d\n", s->object_size);
Christoph Lameter81819f02007-05-06 14:49:36 -07004415}
4416SLAB_ATTR_RO(object_size);
4417
4418static ssize_t objs_per_slab_show(struct kmem_cache *s, char *buf)
4419{
Christoph Lameter834f3d12008-04-14 19:11:31 +03004420 return sprintf(buf, "%d\n", oo_objects(s->oo));
Christoph Lameter81819f02007-05-06 14:49:36 -07004421}
4422SLAB_ATTR_RO(objs_per_slab);
4423
Christoph Lameter06b285d2008-04-14 19:11:41 +03004424static ssize_t order_store(struct kmem_cache *s,
4425 const char *buf, size_t length)
4426{
Christoph Lameter0121c6192008-04-29 16:11:12 -07004427 unsigned long order;
4428 int err;
4429
Jingoo Han3dbb95f2013-09-11 14:20:25 -07004430 err = kstrtoul(buf, 10, &order);
Christoph Lameter0121c6192008-04-29 16:11:12 -07004431 if (err)
4432 return err;
Christoph Lameter06b285d2008-04-14 19:11:41 +03004433
4434 if (order > slub_max_order || order < slub_min_order)
4435 return -EINVAL;
4436
4437 calculate_sizes(s, order);
4438 return length;
4439}
4440
Christoph Lameter81819f02007-05-06 14:49:36 -07004441static ssize_t order_show(struct kmem_cache *s, char *buf)
4442{
Christoph Lameter834f3d12008-04-14 19:11:31 +03004443 return sprintf(buf, "%d\n", oo_order(s->oo));
Christoph Lameter81819f02007-05-06 14:49:36 -07004444}
Christoph Lameter06b285d2008-04-14 19:11:41 +03004445SLAB_ATTR(order);
Christoph Lameter81819f02007-05-06 14:49:36 -07004446
David Rientjes73d342b2009-02-22 17:40:09 -08004447static ssize_t min_partial_show(struct kmem_cache *s, char *buf)
4448{
4449 return sprintf(buf, "%lu\n", s->min_partial);
4450}
4451
4452static ssize_t min_partial_store(struct kmem_cache *s, const char *buf,
4453 size_t length)
4454{
4455 unsigned long min;
4456 int err;
4457
Jingoo Han3dbb95f2013-09-11 14:20:25 -07004458 err = kstrtoul(buf, 10, &min);
David Rientjes73d342b2009-02-22 17:40:09 -08004459 if (err)
4460 return err;
4461
David Rientjesc0bdb232009-02-25 09:16:35 +02004462 set_min_partial(s, min);
David Rientjes73d342b2009-02-22 17:40:09 -08004463 return length;
4464}
4465SLAB_ATTR(min_partial);
4466
Christoph Lameter49e22582011-08-09 16:12:27 -05004467static ssize_t cpu_partial_show(struct kmem_cache *s, char *buf)
4468{
4469 return sprintf(buf, "%u\n", s->cpu_partial);
4470}
4471
4472static ssize_t cpu_partial_store(struct kmem_cache *s, const char *buf,
4473 size_t length)
4474{
4475 unsigned long objects;
4476 int err;
4477
Jingoo Han3dbb95f2013-09-11 14:20:25 -07004478 err = kstrtoul(buf, 10, &objects);
Christoph Lameter49e22582011-08-09 16:12:27 -05004479 if (err)
4480 return err;
Joonsoo Kim345c9052013-06-19 14:05:52 +09004481 if (objects && !kmem_cache_has_cpu_partial(s))
David Rientjes74ee4ef2012-01-09 13:19:45 -08004482 return -EINVAL;
Christoph Lameter49e22582011-08-09 16:12:27 -05004483
4484 s->cpu_partial = objects;
4485 flush_all(s);
4486 return length;
4487}
4488SLAB_ATTR(cpu_partial);
4489
Christoph Lameter81819f02007-05-06 14:49:36 -07004490static ssize_t ctor_show(struct kmem_cache *s, char *buf)
4491{
Joe Perches62c70bc2011-01-13 15:45:52 -08004492 if (!s->ctor)
4493 return 0;
4494 return sprintf(buf, "%pS\n", s->ctor);
Christoph Lameter81819f02007-05-06 14:49:36 -07004495}
4496SLAB_ATTR_RO(ctor);
4497
Christoph Lameter81819f02007-05-06 14:49:36 -07004498static ssize_t aliases_show(struct kmem_cache *s, char *buf)
4499{
4500 return sprintf(buf, "%d\n", s->refcount - 1);
4501}
4502SLAB_ATTR_RO(aliases);
4503
Christoph Lameter81819f02007-05-06 14:49:36 -07004504static ssize_t partial_show(struct kmem_cache *s, char *buf)
4505{
Christoph Lameterd9acf4b2008-02-15 15:22:21 -08004506 return show_slab_objects(s, buf, SO_PARTIAL);
Christoph Lameter81819f02007-05-06 14:49:36 -07004507}
4508SLAB_ATTR_RO(partial);
4509
4510static ssize_t cpu_slabs_show(struct kmem_cache *s, char *buf)
4511{
Christoph Lameterd9acf4b2008-02-15 15:22:21 -08004512 return show_slab_objects(s, buf, SO_CPU);
Christoph Lameter81819f02007-05-06 14:49:36 -07004513}
4514SLAB_ATTR_RO(cpu_slabs);
4515
4516static ssize_t objects_show(struct kmem_cache *s, char *buf)
4517{
Christoph Lameter205ab992008-04-14 19:11:40 +03004518 return show_slab_objects(s, buf, SO_ALL|SO_OBJECTS);
Christoph Lameter81819f02007-05-06 14:49:36 -07004519}
4520SLAB_ATTR_RO(objects);
4521
Christoph Lameter205ab992008-04-14 19:11:40 +03004522static ssize_t objects_partial_show(struct kmem_cache *s, char *buf)
4523{
4524 return show_slab_objects(s, buf, SO_PARTIAL|SO_OBJECTS);
4525}
4526SLAB_ATTR_RO(objects_partial);
4527
Christoph Lameter49e22582011-08-09 16:12:27 -05004528static ssize_t slabs_cpu_partial_show(struct kmem_cache *s, char *buf)
4529{
4530 int objects = 0;
4531 int pages = 0;
4532 int cpu;
4533 int len;
4534
4535 for_each_online_cpu(cpu) {
4536 struct page *page = per_cpu_ptr(s->cpu_slab, cpu)->partial;
4537
4538 if (page) {
4539 pages += page->pages;
4540 objects += page->pobjects;
4541 }
4542 }
4543
4544 len = sprintf(buf, "%d(%d)", objects, pages);
4545
4546#ifdef CONFIG_SMP
4547 for_each_online_cpu(cpu) {
4548 struct page *page = per_cpu_ptr(s->cpu_slab, cpu) ->partial;
4549
4550 if (page && len < PAGE_SIZE - 20)
4551 len += sprintf(buf + len, " C%d=%d(%d)", cpu,
4552 page->pobjects, page->pages);
4553 }
4554#endif
4555 return len + sprintf(buf + len, "\n");
4556}
4557SLAB_ATTR_RO(slabs_cpu_partial);
4558
Christoph Lameter81819f02007-05-06 14:49:36 -07004559static ssize_t reclaim_account_show(struct kmem_cache *s, char *buf)
4560{
4561 return sprintf(buf, "%d\n", !!(s->flags & SLAB_RECLAIM_ACCOUNT));
4562}
4563
4564static ssize_t reclaim_account_store(struct kmem_cache *s,
4565 const char *buf, size_t length)
4566{
4567 s->flags &= ~SLAB_RECLAIM_ACCOUNT;
4568 if (buf[0] == '1')
4569 s->flags |= SLAB_RECLAIM_ACCOUNT;
4570 return length;
4571}
4572SLAB_ATTR(reclaim_account);
4573
4574static ssize_t hwcache_align_show(struct kmem_cache *s, char *buf)
4575{
Christoph Lameter5af60832007-05-06 14:49:56 -07004576 return sprintf(buf, "%d\n", !!(s->flags & SLAB_HWCACHE_ALIGN));
Christoph Lameter81819f02007-05-06 14:49:36 -07004577}
4578SLAB_ATTR_RO(hwcache_align);
4579
4580#ifdef CONFIG_ZONE_DMA
4581static ssize_t cache_dma_show(struct kmem_cache *s, char *buf)
4582{
4583 return sprintf(buf, "%d\n", !!(s->flags & SLAB_CACHE_DMA));
4584}
4585SLAB_ATTR_RO(cache_dma);
4586#endif
4587
4588static ssize_t destroy_by_rcu_show(struct kmem_cache *s, char *buf)
4589{
4590 return sprintf(buf, "%d\n", !!(s->flags & SLAB_DESTROY_BY_RCU));
4591}
4592SLAB_ATTR_RO(destroy_by_rcu);
4593
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08004594static ssize_t reserved_show(struct kmem_cache *s, char *buf)
4595{
4596 return sprintf(buf, "%d\n", s->reserved);
4597}
4598SLAB_ATTR_RO(reserved);
4599
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05004600#ifdef CONFIG_SLUB_DEBUG
Christoph Lametera5a84752010-10-05 13:57:27 -05004601static ssize_t slabs_show(struct kmem_cache *s, char *buf)
4602{
4603 return show_slab_objects(s, buf, SO_ALL);
4604}
4605SLAB_ATTR_RO(slabs);
4606
4607static ssize_t total_objects_show(struct kmem_cache *s, char *buf)
4608{
4609 return show_slab_objects(s, buf, SO_ALL|SO_TOTAL);
4610}
4611SLAB_ATTR_RO(total_objects);
4612
4613static ssize_t sanity_checks_show(struct kmem_cache *s, char *buf)
4614{
4615 return sprintf(buf, "%d\n", !!(s->flags & SLAB_DEBUG_FREE));
4616}
4617
4618static ssize_t sanity_checks_store(struct kmem_cache *s,
4619 const char *buf, size_t length)
4620{
4621 s->flags &= ~SLAB_DEBUG_FREE;
Christoph Lameterb789ef52011-06-01 12:25:49 -05004622 if (buf[0] == '1') {
4623 s->flags &= ~__CMPXCHG_DOUBLE;
Christoph Lametera5a84752010-10-05 13:57:27 -05004624 s->flags |= SLAB_DEBUG_FREE;
Christoph Lameterb789ef52011-06-01 12:25:49 -05004625 }
Christoph Lametera5a84752010-10-05 13:57:27 -05004626 return length;
4627}
4628SLAB_ATTR(sanity_checks);
4629
4630static ssize_t trace_show(struct kmem_cache *s, char *buf)
4631{
4632 return sprintf(buf, "%d\n", !!(s->flags & SLAB_TRACE));
4633}
4634
4635static ssize_t trace_store(struct kmem_cache *s, const char *buf,
4636 size_t length)
4637{
4638 s->flags &= ~SLAB_TRACE;
Christoph Lameterb789ef52011-06-01 12:25:49 -05004639 if (buf[0] == '1') {
4640 s->flags &= ~__CMPXCHG_DOUBLE;
Christoph Lametera5a84752010-10-05 13:57:27 -05004641 s->flags |= SLAB_TRACE;
Christoph Lameterb789ef52011-06-01 12:25:49 -05004642 }
Christoph Lametera5a84752010-10-05 13:57:27 -05004643 return length;
4644}
4645SLAB_ATTR(trace);
4646
Christoph Lameter81819f02007-05-06 14:49:36 -07004647static ssize_t red_zone_show(struct kmem_cache *s, char *buf)
4648{
4649 return sprintf(buf, "%d\n", !!(s->flags & SLAB_RED_ZONE));
4650}
4651
4652static ssize_t red_zone_store(struct kmem_cache *s,
4653 const char *buf, size_t length)
4654{
4655 if (any_slab_objects(s))
4656 return -EBUSY;
4657
4658 s->flags &= ~SLAB_RED_ZONE;
Christoph Lameterb789ef52011-06-01 12:25:49 -05004659 if (buf[0] == '1') {
4660 s->flags &= ~__CMPXCHG_DOUBLE;
Christoph Lameter81819f02007-05-06 14:49:36 -07004661 s->flags |= SLAB_RED_ZONE;
Christoph Lameterb789ef52011-06-01 12:25:49 -05004662 }
Christoph Lameter06b285d2008-04-14 19:11:41 +03004663 calculate_sizes(s, -1);
Christoph Lameter81819f02007-05-06 14:49:36 -07004664 return length;
4665}
4666SLAB_ATTR(red_zone);
4667
4668static ssize_t poison_show(struct kmem_cache *s, char *buf)
4669{
4670 return sprintf(buf, "%d\n", !!(s->flags & SLAB_POISON));
4671}
4672
4673static ssize_t poison_store(struct kmem_cache *s,
4674 const char *buf, size_t length)
4675{
4676 if (any_slab_objects(s))
4677 return -EBUSY;
4678
4679 s->flags &= ~SLAB_POISON;
Christoph Lameterb789ef52011-06-01 12:25:49 -05004680 if (buf[0] == '1') {
4681 s->flags &= ~__CMPXCHG_DOUBLE;
Christoph Lameter81819f02007-05-06 14:49:36 -07004682 s->flags |= SLAB_POISON;
Christoph Lameterb789ef52011-06-01 12:25:49 -05004683 }
Christoph Lameter06b285d2008-04-14 19:11:41 +03004684 calculate_sizes(s, -1);
Christoph Lameter81819f02007-05-06 14:49:36 -07004685 return length;
4686}
4687SLAB_ATTR(poison);
4688
4689static ssize_t store_user_show(struct kmem_cache *s, char *buf)
4690{
4691 return sprintf(buf, "%d\n", !!(s->flags & SLAB_STORE_USER));
4692}
4693
4694static ssize_t store_user_store(struct kmem_cache *s,
4695 const char *buf, size_t length)
4696{
4697 if (any_slab_objects(s))
4698 return -EBUSY;
4699
4700 s->flags &= ~SLAB_STORE_USER;
Christoph Lameterb789ef52011-06-01 12:25:49 -05004701 if (buf[0] == '1') {
4702 s->flags &= ~__CMPXCHG_DOUBLE;
Christoph Lameter81819f02007-05-06 14:49:36 -07004703 s->flags |= SLAB_STORE_USER;
Christoph Lameterb789ef52011-06-01 12:25:49 -05004704 }
Christoph Lameter06b285d2008-04-14 19:11:41 +03004705 calculate_sizes(s, -1);
Christoph Lameter81819f02007-05-06 14:49:36 -07004706 return length;
4707}
4708SLAB_ATTR(store_user);
4709
Christoph Lameter53e15af2007-05-06 14:49:43 -07004710static ssize_t validate_show(struct kmem_cache *s, char *buf)
4711{
4712 return 0;
4713}
4714
4715static ssize_t validate_store(struct kmem_cache *s,
4716 const char *buf, size_t length)
4717{
Christoph Lameter434e2452007-07-17 04:03:30 -07004718 int ret = -EINVAL;
4719
4720 if (buf[0] == '1') {
4721 ret = validate_slab_cache(s);
4722 if (ret >= 0)
4723 ret = length;
4724 }
4725 return ret;
Christoph Lameter53e15af2007-05-06 14:49:43 -07004726}
4727SLAB_ATTR(validate);
Christoph Lametera5a84752010-10-05 13:57:27 -05004728
4729static ssize_t alloc_calls_show(struct kmem_cache *s, char *buf)
4730{
4731 if (!(s->flags & SLAB_STORE_USER))
4732 return -ENOSYS;
4733 return list_locations(s, buf, TRACK_ALLOC);
4734}
4735SLAB_ATTR_RO(alloc_calls);
4736
4737static ssize_t free_calls_show(struct kmem_cache *s, char *buf)
4738{
4739 if (!(s->flags & SLAB_STORE_USER))
4740 return -ENOSYS;
4741 return list_locations(s, buf, TRACK_FREE);
4742}
4743SLAB_ATTR_RO(free_calls);
4744#endif /* CONFIG_SLUB_DEBUG */
4745
4746#ifdef CONFIG_FAILSLAB
4747static ssize_t failslab_show(struct kmem_cache *s, char *buf)
4748{
4749 return sprintf(buf, "%d\n", !!(s->flags & SLAB_FAILSLAB));
4750}
4751
4752static ssize_t failslab_store(struct kmem_cache *s, const char *buf,
4753 size_t length)
4754{
4755 s->flags &= ~SLAB_FAILSLAB;
4756 if (buf[0] == '1')
4757 s->flags |= SLAB_FAILSLAB;
4758 return length;
4759}
4760SLAB_ATTR(failslab);
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05004761#endif
Christoph Lameter53e15af2007-05-06 14:49:43 -07004762
Christoph Lameter2086d262007-05-06 14:49:46 -07004763static ssize_t shrink_show(struct kmem_cache *s, char *buf)
4764{
4765 return 0;
4766}
4767
4768static ssize_t shrink_store(struct kmem_cache *s,
4769 const char *buf, size_t length)
4770{
4771 if (buf[0] == '1') {
4772 int rc = kmem_cache_shrink(s);
4773
4774 if (rc)
4775 return rc;
4776 } else
4777 return -EINVAL;
4778 return length;
4779}
4780SLAB_ATTR(shrink);
4781
Christoph Lameter81819f02007-05-06 14:49:36 -07004782#ifdef CONFIG_NUMA
Christoph Lameter98246012008-01-07 23:20:26 -08004783static ssize_t remote_node_defrag_ratio_show(struct kmem_cache *s, char *buf)
Christoph Lameter81819f02007-05-06 14:49:36 -07004784{
Christoph Lameter98246012008-01-07 23:20:26 -08004785 return sprintf(buf, "%d\n", s->remote_node_defrag_ratio / 10);
Christoph Lameter81819f02007-05-06 14:49:36 -07004786}
4787
Christoph Lameter98246012008-01-07 23:20:26 -08004788static ssize_t remote_node_defrag_ratio_store(struct kmem_cache *s,
Christoph Lameter81819f02007-05-06 14:49:36 -07004789 const char *buf, size_t length)
4790{
Christoph Lameter0121c6192008-04-29 16:11:12 -07004791 unsigned long ratio;
4792 int err;
Christoph Lameter81819f02007-05-06 14:49:36 -07004793
Jingoo Han3dbb95f2013-09-11 14:20:25 -07004794 err = kstrtoul(buf, 10, &ratio);
Christoph Lameter0121c6192008-04-29 16:11:12 -07004795 if (err)
4796 return err;
4797
Christoph Lametere2cb96b2008-08-19 08:51:22 -05004798 if (ratio <= 100)
Christoph Lameter0121c6192008-04-29 16:11:12 -07004799 s->remote_node_defrag_ratio = ratio * 10;
4800
Christoph Lameter81819f02007-05-06 14:49:36 -07004801 return length;
4802}
Christoph Lameter98246012008-01-07 23:20:26 -08004803SLAB_ATTR(remote_node_defrag_ratio);
Christoph Lameter81819f02007-05-06 14:49:36 -07004804#endif
4805
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004806#ifdef CONFIG_SLUB_STATS
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004807static int show_stat(struct kmem_cache *s, char *buf, enum stat_item si)
4808{
4809 unsigned long sum = 0;
4810 int cpu;
4811 int len;
4812 int *data = kmalloc(nr_cpu_ids * sizeof(int), GFP_KERNEL);
4813
4814 if (!data)
4815 return -ENOMEM;
4816
4817 for_each_online_cpu(cpu) {
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06004818 unsigned x = per_cpu_ptr(s->cpu_slab, cpu)->stat[si];
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004819
4820 data[cpu] = x;
4821 sum += x;
4822 }
4823
4824 len = sprintf(buf, "%lu", sum);
4825
Christoph Lameter50ef37b2008-04-14 18:52:05 +03004826#ifdef CONFIG_SMP
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004827 for_each_online_cpu(cpu) {
4828 if (data[cpu] && len < PAGE_SIZE - 20)
Christoph Lameter50ef37b2008-04-14 18:52:05 +03004829 len += sprintf(buf + len, " C%d=%u", cpu, data[cpu]);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004830 }
Christoph Lameter50ef37b2008-04-14 18:52:05 +03004831#endif
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004832 kfree(data);
4833 return len + sprintf(buf + len, "\n");
4834}
4835
David Rientjes78eb00c2009-10-15 02:20:22 -07004836static void clear_stat(struct kmem_cache *s, enum stat_item si)
4837{
4838 int cpu;
4839
4840 for_each_online_cpu(cpu)
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06004841 per_cpu_ptr(s->cpu_slab, cpu)->stat[si] = 0;
David Rientjes78eb00c2009-10-15 02:20:22 -07004842}
4843
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004844#define STAT_ATTR(si, text) \
4845static ssize_t text##_show(struct kmem_cache *s, char *buf) \
4846{ \
4847 return show_stat(s, buf, si); \
4848} \
David Rientjes78eb00c2009-10-15 02:20:22 -07004849static ssize_t text##_store(struct kmem_cache *s, \
4850 const char *buf, size_t length) \
4851{ \
4852 if (buf[0] != '0') \
4853 return -EINVAL; \
4854 clear_stat(s, si); \
4855 return length; \
4856} \
4857SLAB_ATTR(text); \
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004858
4859STAT_ATTR(ALLOC_FASTPATH, alloc_fastpath);
4860STAT_ATTR(ALLOC_SLOWPATH, alloc_slowpath);
4861STAT_ATTR(FREE_FASTPATH, free_fastpath);
4862STAT_ATTR(FREE_SLOWPATH, free_slowpath);
4863STAT_ATTR(FREE_FROZEN, free_frozen);
4864STAT_ATTR(FREE_ADD_PARTIAL, free_add_partial);
4865STAT_ATTR(FREE_REMOVE_PARTIAL, free_remove_partial);
4866STAT_ATTR(ALLOC_FROM_PARTIAL, alloc_from_partial);
4867STAT_ATTR(ALLOC_SLAB, alloc_slab);
4868STAT_ATTR(ALLOC_REFILL, alloc_refill);
Christoph Lametere36a2652011-06-01 12:25:57 -05004869STAT_ATTR(ALLOC_NODE_MISMATCH, alloc_node_mismatch);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004870STAT_ATTR(FREE_SLAB, free_slab);
4871STAT_ATTR(CPUSLAB_FLUSH, cpuslab_flush);
4872STAT_ATTR(DEACTIVATE_FULL, deactivate_full);
4873STAT_ATTR(DEACTIVATE_EMPTY, deactivate_empty);
4874STAT_ATTR(DEACTIVATE_TO_HEAD, deactivate_to_head);
4875STAT_ATTR(DEACTIVATE_TO_TAIL, deactivate_to_tail);
4876STAT_ATTR(DEACTIVATE_REMOTE_FREES, deactivate_remote_frees);
Christoph Lameter03e404a2011-06-01 12:25:58 -05004877STAT_ATTR(DEACTIVATE_BYPASS, deactivate_bypass);
Christoph Lameter65c33762008-04-14 19:11:40 +03004878STAT_ATTR(ORDER_FALLBACK, order_fallback);
Christoph Lameterb789ef52011-06-01 12:25:49 -05004879STAT_ATTR(CMPXCHG_DOUBLE_CPU_FAIL, cmpxchg_double_cpu_fail);
4880STAT_ATTR(CMPXCHG_DOUBLE_FAIL, cmpxchg_double_fail);
Christoph Lameter49e22582011-08-09 16:12:27 -05004881STAT_ATTR(CPU_PARTIAL_ALLOC, cpu_partial_alloc);
4882STAT_ATTR(CPU_PARTIAL_FREE, cpu_partial_free);
Alex Shi8028dce2012-02-03 23:34:56 +08004883STAT_ATTR(CPU_PARTIAL_NODE, cpu_partial_node);
4884STAT_ATTR(CPU_PARTIAL_DRAIN, cpu_partial_drain);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004885#endif
4886
Pekka Enberg06428782008-01-07 23:20:27 -08004887static struct attribute *slab_attrs[] = {
Christoph Lameter81819f02007-05-06 14:49:36 -07004888 &slab_size_attr.attr,
4889 &object_size_attr.attr,
4890 &objs_per_slab_attr.attr,
4891 &order_attr.attr,
David Rientjes73d342b2009-02-22 17:40:09 -08004892 &min_partial_attr.attr,
Christoph Lameter49e22582011-08-09 16:12:27 -05004893 &cpu_partial_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07004894 &objects_attr.attr,
Christoph Lameter205ab992008-04-14 19:11:40 +03004895 &objects_partial_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07004896 &partial_attr.attr,
4897 &cpu_slabs_attr.attr,
4898 &ctor_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07004899 &aliases_attr.attr,
4900 &align_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07004901 &hwcache_align_attr.attr,
4902 &reclaim_account_attr.attr,
4903 &destroy_by_rcu_attr.attr,
Christoph Lametera5a84752010-10-05 13:57:27 -05004904 &shrink_attr.attr,
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08004905 &reserved_attr.attr,
Christoph Lameter49e22582011-08-09 16:12:27 -05004906 &slabs_cpu_partial_attr.attr,
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05004907#ifdef CONFIG_SLUB_DEBUG
Christoph Lametera5a84752010-10-05 13:57:27 -05004908 &total_objects_attr.attr,
4909 &slabs_attr.attr,
4910 &sanity_checks_attr.attr,
4911 &trace_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07004912 &red_zone_attr.attr,
4913 &poison_attr.attr,
4914 &store_user_attr.attr,
Christoph Lameter53e15af2007-05-06 14:49:43 -07004915 &validate_attr.attr,
Christoph Lameter88a420e2007-05-06 14:49:45 -07004916 &alloc_calls_attr.attr,
4917 &free_calls_attr.attr,
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05004918#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07004919#ifdef CONFIG_ZONE_DMA
4920 &cache_dma_attr.attr,
4921#endif
4922#ifdef CONFIG_NUMA
Christoph Lameter98246012008-01-07 23:20:26 -08004923 &remote_node_defrag_ratio_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07004924#endif
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004925#ifdef CONFIG_SLUB_STATS
4926 &alloc_fastpath_attr.attr,
4927 &alloc_slowpath_attr.attr,
4928 &free_fastpath_attr.attr,
4929 &free_slowpath_attr.attr,
4930 &free_frozen_attr.attr,
4931 &free_add_partial_attr.attr,
4932 &free_remove_partial_attr.attr,
4933 &alloc_from_partial_attr.attr,
4934 &alloc_slab_attr.attr,
4935 &alloc_refill_attr.attr,
Christoph Lametere36a2652011-06-01 12:25:57 -05004936 &alloc_node_mismatch_attr.attr,
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004937 &free_slab_attr.attr,
4938 &cpuslab_flush_attr.attr,
4939 &deactivate_full_attr.attr,
4940 &deactivate_empty_attr.attr,
4941 &deactivate_to_head_attr.attr,
4942 &deactivate_to_tail_attr.attr,
4943 &deactivate_remote_frees_attr.attr,
Christoph Lameter03e404a2011-06-01 12:25:58 -05004944 &deactivate_bypass_attr.attr,
Christoph Lameter65c33762008-04-14 19:11:40 +03004945 &order_fallback_attr.attr,
Christoph Lameterb789ef52011-06-01 12:25:49 -05004946 &cmpxchg_double_fail_attr.attr,
4947 &cmpxchg_double_cpu_fail_attr.attr,
Christoph Lameter49e22582011-08-09 16:12:27 -05004948 &cpu_partial_alloc_attr.attr,
4949 &cpu_partial_free_attr.attr,
Alex Shi8028dce2012-02-03 23:34:56 +08004950 &cpu_partial_node_attr.attr,
4951 &cpu_partial_drain_attr.attr,
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004952#endif
Dmitry Monakhov4c13dd32010-02-26 09:36:12 +03004953#ifdef CONFIG_FAILSLAB
4954 &failslab_attr.attr,
4955#endif
4956
Christoph Lameter81819f02007-05-06 14:49:36 -07004957 NULL
4958};
4959
4960static struct attribute_group slab_attr_group = {
4961 .attrs = slab_attrs,
4962};
4963
4964static ssize_t slab_attr_show(struct kobject *kobj,
4965 struct attribute *attr,
4966 char *buf)
4967{
4968 struct slab_attribute *attribute;
4969 struct kmem_cache *s;
4970 int err;
4971
4972 attribute = to_slab_attr(attr);
4973 s = to_slab(kobj);
4974
4975 if (!attribute->show)
4976 return -EIO;
4977
4978 err = attribute->show(s, buf);
4979
4980 return err;
4981}
4982
4983static ssize_t slab_attr_store(struct kobject *kobj,
4984 struct attribute *attr,
4985 const char *buf, size_t len)
4986{
4987 struct slab_attribute *attribute;
4988 struct kmem_cache *s;
4989 int err;
4990
4991 attribute = to_slab_attr(attr);
4992 s = to_slab(kobj);
4993
4994 if (!attribute->store)
4995 return -EIO;
4996
4997 err = attribute->store(s, buf, len);
Glauber Costa107dab52012-12-18 14:23:05 -08004998#ifdef CONFIG_MEMCG_KMEM
4999 if (slab_state >= FULL && err >= 0 && is_root_cache(s)) {
5000 int i;
Christoph Lameter81819f02007-05-06 14:49:36 -07005001
Glauber Costa107dab52012-12-18 14:23:05 -08005002 mutex_lock(&slab_mutex);
5003 if (s->max_attr_size < len)
5004 s->max_attr_size = len;
5005
Glauber Costaebe945c2012-12-18 14:23:10 -08005006 /*
5007 * This is a best effort propagation, so this function's return
5008 * value will be determined by the parent cache only. This is
5009 * basically because not all attributes will have a well
5010 * defined semantics for rollbacks - most of the actions will
5011 * have permanent effects.
5012 *
5013 * Returning the error value of any of the children that fail
5014 * is not 100 % defined, in the sense that users seeing the
5015 * error code won't be able to know anything about the state of
5016 * the cache.
5017 *
5018 * Only returning the error code for the parent cache at least
5019 * has well defined semantics. The cache being written to
5020 * directly either failed or succeeded, in which case we loop
5021 * through the descendants with best-effort propagation.
5022 */
Glauber Costa107dab52012-12-18 14:23:05 -08005023 for_each_memcg_cache_index(i) {
Qiang Huang2ade4de2013-11-12 15:08:23 -08005024 struct kmem_cache *c = cache_from_memcg_idx(s, i);
Glauber Costa107dab52012-12-18 14:23:05 -08005025 if (c)
5026 attribute->store(c, buf, len);
5027 }
5028 mutex_unlock(&slab_mutex);
5029 }
5030#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07005031 return err;
5032}
5033
Glauber Costa107dab52012-12-18 14:23:05 -08005034static void memcg_propagate_slab_attrs(struct kmem_cache *s)
5035{
5036#ifdef CONFIG_MEMCG_KMEM
5037 int i;
5038 char *buffer = NULL;
Vladimir Davydov93030d82014-05-06 12:49:59 -07005039 struct kmem_cache *root_cache;
Glauber Costa107dab52012-12-18 14:23:05 -08005040
Vladimir Davydov93030d82014-05-06 12:49:59 -07005041 if (is_root_cache(s))
Glauber Costa107dab52012-12-18 14:23:05 -08005042 return;
5043
Vladimir Davydov93030d82014-05-06 12:49:59 -07005044 root_cache = s->memcg_params->root_cache;
5045
Glauber Costa107dab52012-12-18 14:23:05 -08005046 /*
5047 * This mean this cache had no attribute written. Therefore, no point
5048 * in copying default values around
5049 */
Vladimir Davydov93030d82014-05-06 12:49:59 -07005050 if (!root_cache->max_attr_size)
Glauber Costa107dab52012-12-18 14:23:05 -08005051 return;
5052
5053 for (i = 0; i < ARRAY_SIZE(slab_attrs); i++) {
5054 char mbuf[64];
5055 char *buf;
5056 struct slab_attribute *attr = to_slab_attr(slab_attrs[i]);
5057
5058 if (!attr || !attr->store || !attr->show)
5059 continue;
5060
5061 /*
5062 * It is really bad that we have to allocate here, so we will
5063 * do it only as a fallback. If we actually allocate, though,
5064 * we can just use the allocated buffer until the end.
5065 *
5066 * Most of the slub attributes will tend to be very small in
5067 * size, but sysfs allows buffers up to a page, so they can
5068 * theoretically happen.
5069 */
5070 if (buffer)
5071 buf = buffer;
Vladimir Davydov93030d82014-05-06 12:49:59 -07005072 else if (root_cache->max_attr_size < ARRAY_SIZE(mbuf))
Glauber Costa107dab52012-12-18 14:23:05 -08005073 buf = mbuf;
5074 else {
5075 buffer = (char *) get_zeroed_page(GFP_KERNEL);
5076 if (WARN_ON(!buffer))
5077 continue;
5078 buf = buffer;
5079 }
5080
Vladimir Davydov93030d82014-05-06 12:49:59 -07005081 attr->show(root_cache, buf);
Glauber Costa107dab52012-12-18 14:23:05 -08005082 attr->store(s, buf, strlen(buf));
5083 }
5084
5085 if (buffer)
5086 free_page((unsigned long)buffer);
5087#endif
5088}
5089
Christoph Lameter41a21282014-05-06 12:50:08 -07005090static void kmem_cache_release(struct kobject *k)
5091{
5092 slab_kmem_cache_release(to_slab(k));
5093}
5094
Emese Revfy52cf25d2010-01-19 02:58:23 +01005095static const struct sysfs_ops slab_sysfs_ops = {
Christoph Lameter81819f02007-05-06 14:49:36 -07005096 .show = slab_attr_show,
5097 .store = slab_attr_store,
5098};
5099
5100static struct kobj_type slab_ktype = {
5101 .sysfs_ops = &slab_sysfs_ops,
Christoph Lameter41a21282014-05-06 12:50:08 -07005102 .release = kmem_cache_release,
Christoph Lameter81819f02007-05-06 14:49:36 -07005103};
5104
5105static int uevent_filter(struct kset *kset, struct kobject *kobj)
5106{
5107 struct kobj_type *ktype = get_ktype(kobj);
5108
5109 if (ktype == &slab_ktype)
5110 return 1;
5111 return 0;
5112}
5113
Emese Revfy9cd43612009-12-31 14:52:51 +01005114static const struct kset_uevent_ops slab_uevent_ops = {
Christoph Lameter81819f02007-05-06 14:49:36 -07005115 .filter = uevent_filter,
5116};
5117
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06005118static struct kset *slab_kset;
Christoph Lameter81819f02007-05-06 14:49:36 -07005119
Vladimir Davydov9a417072014-04-07 15:39:31 -07005120static inline struct kset *cache_kset(struct kmem_cache *s)
5121{
5122#ifdef CONFIG_MEMCG_KMEM
5123 if (!is_root_cache(s))
5124 return s->memcg_params->root_cache->memcg_kset;
5125#endif
5126 return slab_kset;
5127}
5128
Christoph Lameter81819f02007-05-06 14:49:36 -07005129#define ID_STR_LENGTH 64
5130
5131/* Create a unique string id for a slab cache:
Christoph Lameter6446faa2008-02-15 23:45:26 -08005132 *
5133 * Format :[flags-]size
Christoph Lameter81819f02007-05-06 14:49:36 -07005134 */
5135static char *create_unique_id(struct kmem_cache *s)
5136{
5137 char *name = kmalloc(ID_STR_LENGTH, GFP_KERNEL);
5138 char *p = name;
5139
5140 BUG_ON(!name);
5141
5142 *p++ = ':';
5143 /*
5144 * First flags affecting slabcache operations. We will only
5145 * get here for aliasable slabs so we do not need to support
5146 * too many flags. The flags here must cover all flags that
5147 * are matched during merging to guarantee that the id is
5148 * unique.
5149 */
5150 if (s->flags & SLAB_CACHE_DMA)
5151 *p++ = 'd';
5152 if (s->flags & SLAB_RECLAIM_ACCOUNT)
5153 *p++ = 'a';
5154 if (s->flags & SLAB_DEBUG_FREE)
5155 *p++ = 'F';
Vegard Nossum5a896d92008-04-04 00:54:48 +02005156 if (!(s->flags & SLAB_NOTRACK))
5157 *p++ = 't';
Christoph Lameter81819f02007-05-06 14:49:36 -07005158 if (p != name + 1)
5159 *p++ = '-';
5160 p += sprintf(p, "%07d", s->size);
Glauber Costa2633d7a2012-12-18 14:22:34 -08005161
5162#ifdef CONFIG_MEMCG_KMEM
5163 if (!is_root_cache(s))
Chen Gangd0e0ac92013-07-15 09:05:29 +08005164 p += sprintf(p, "-%08d",
5165 memcg_cache_id(s->memcg_params->memcg));
Glauber Costa2633d7a2012-12-18 14:22:34 -08005166#endif
5167
Christoph Lameter81819f02007-05-06 14:49:36 -07005168 BUG_ON(p > name + ID_STR_LENGTH - 1);
5169 return name;
5170}
5171
5172static int sysfs_slab_add(struct kmem_cache *s)
5173{
5174 int err;
5175 const char *name;
Christoph Lameter45530c42012-11-28 16:23:07 +00005176 int unmergeable = slab_unmergeable(s);
Christoph Lameter81819f02007-05-06 14:49:36 -07005177
Christoph Lameter81819f02007-05-06 14:49:36 -07005178 if (unmergeable) {
5179 /*
5180 * Slabcache can never be merged so we can use the name proper.
5181 * This is typically the case for debug situations. In that
5182 * case we can catch duplicate names easily.
5183 */
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06005184 sysfs_remove_link(&slab_kset->kobj, s->name);
Christoph Lameter81819f02007-05-06 14:49:36 -07005185 name = s->name;
5186 } else {
5187 /*
5188 * Create a unique name for the slab as a target
5189 * for the symlinks.
5190 */
5191 name = create_unique_id(s);
5192 }
5193
Vladimir Davydov9a417072014-04-07 15:39:31 -07005194 s->kobj.kset = cache_kset(s);
Tetsuo Handa26e4f202014-01-04 16:32:31 +09005195 err = kobject_init_and_add(&s->kobj, &slab_ktype, NULL, "%s", name);
Dave Jones54b6a732014-04-07 15:39:32 -07005196 if (err)
5197 goto out_put_kobj;
Christoph Lameter81819f02007-05-06 14:49:36 -07005198
5199 err = sysfs_create_group(&s->kobj, &slab_attr_group);
Dave Jones54b6a732014-04-07 15:39:32 -07005200 if (err)
5201 goto out_del_kobj;
Vladimir Davydov9a417072014-04-07 15:39:31 -07005202
5203#ifdef CONFIG_MEMCG_KMEM
5204 if (is_root_cache(s)) {
5205 s->memcg_kset = kset_create_and_add("cgroup", NULL, &s->kobj);
5206 if (!s->memcg_kset) {
Dave Jones54b6a732014-04-07 15:39:32 -07005207 err = -ENOMEM;
5208 goto out_del_kobj;
Vladimir Davydov9a417072014-04-07 15:39:31 -07005209 }
5210 }
5211#endif
5212
Christoph Lameter81819f02007-05-06 14:49:36 -07005213 kobject_uevent(&s->kobj, KOBJ_ADD);
5214 if (!unmergeable) {
5215 /* Setup first alias */
5216 sysfs_slab_alias(s, s->name);
Christoph Lameter81819f02007-05-06 14:49:36 -07005217 }
Dave Jones54b6a732014-04-07 15:39:32 -07005218out:
5219 if (!unmergeable)
5220 kfree(name);
5221 return err;
5222out_del_kobj:
5223 kobject_del(&s->kobj);
5224out_put_kobj:
5225 kobject_put(&s->kobj);
5226 goto out;
Christoph Lameter81819f02007-05-06 14:49:36 -07005227}
5228
Christoph Lameter41a21282014-05-06 12:50:08 -07005229void sysfs_slab_remove(struct kmem_cache *s)
Christoph Lameter81819f02007-05-06 14:49:36 -07005230{
Christoph Lameter97d06602012-07-06 15:25:11 -05005231 if (slab_state < FULL)
Christoph Lameter2bce6482010-07-19 11:39:11 -05005232 /*
5233 * Sysfs has not been setup yet so no need to remove the
5234 * cache from sysfs.
5235 */
5236 return;
5237
Vladimir Davydov9a417072014-04-07 15:39:31 -07005238#ifdef CONFIG_MEMCG_KMEM
5239 kset_unregister(s->memcg_kset);
5240#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07005241 kobject_uevent(&s->kobj, KOBJ_REMOVE);
5242 kobject_del(&s->kobj);
Christoph Lameter151c6022008-01-07 22:29:05 -08005243 kobject_put(&s->kobj);
Christoph Lameter81819f02007-05-06 14:49:36 -07005244}
5245
5246/*
5247 * Need to buffer aliases during bootup until sysfs becomes
Nick Andrew9f6c708e2008-12-05 14:08:08 +11005248 * available lest we lose that information.
Christoph Lameter81819f02007-05-06 14:49:36 -07005249 */
5250struct saved_alias {
5251 struct kmem_cache *s;
5252 const char *name;
5253 struct saved_alias *next;
5254};
5255
Adrian Bunk5af328a2007-07-17 04:03:27 -07005256static struct saved_alias *alias_list;
Christoph Lameter81819f02007-05-06 14:49:36 -07005257
5258static int sysfs_slab_alias(struct kmem_cache *s, const char *name)
5259{
5260 struct saved_alias *al;
5261
Christoph Lameter97d06602012-07-06 15:25:11 -05005262 if (slab_state == FULL) {
Christoph Lameter81819f02007-05-06 14:49:36 -07005263 /*
5264 * If we have a leftover link then remove it.
5265 */
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06005266 sysfs_remove_link(&slab_kset->kobj, name);
5267 return sysfs_create_link(&slab_kset->kobj, &s->kobj, name);
Christoph Lameter81819f02007-05-06 14:49:36 -07005268 }
5269
5270 al = kmalloc(sizeof(struct saved_alias), GFP_KERNEL);
5271 if (!al)
5272 return -ENOMEM;
5273
5274 al->s = s;
5275 al->name = name;
5276 al->next = alias_list;
5277 alias_list = al;
5278 return 0;
5279}
5280
5281static int __init slab_sysfs_init(void)
5282{
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07005283 struct kmem_cache *s;
Christoph Lameter81819f02007-05-06 14:49:36 -07005284 int err;
5285
Christoph Lameter18004c52012-07-06 15:25:12 -05005286 mutex_lock(&slab_mutex);
Christoph Lameter2bce6482010-07-19 11:39:11 -05005287
Greg Kroah-Hartman0ff21e42007-11-06 10:36:58 -08005288 slab_kset = kset_create_and_add("slab", &slab_uevent_ops, kernel_kobj);
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06005289 if (!slab_kset) {
Christoph Lameter18004c52012-07-06 15:25:12 -05005290 mutex_unlock(&slab_mutex);
Fabian Frederickf9f58282014-06-04 16:06:34 -07005291 pr_err("Cannot register slab subsystem.\n");
Christoph Lameter81819f02007-05-06 14:49:36 -07005292 return -ENOSYS;
5293 }
5294
Christoph Lameter97d06602012-07-06 15:25:11 -05005295 slab_state = FULL;
Christoph Lameter26a7bd02007-05-09 02:32:39 -07005296
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07005297 list_for_each_entry(s, &slab_caches, list) {
Christoph Lameter26a7bd02007-05-09 02:32:39 -07005298 err = sysfs_slab_add(s);
Christoph Lameter5d540fb2007-08-30 23:56:26 -07005299 if (err)
Fabian Frederickf9f58282014-06-04 16:06:34 -07005300 pr_err("SLUB: Unable to add boot slab %s to sysfs\n",
5301 s->name);
Christoph Lameter26a7bd02007-05-09 02:32:39 -07005302 }
Christoph Lameter81819f02007-05-06 14:49:36 -07005303
5304 while (alias_list) {
5305 struct saved_alias *al = alias_list;
5306
5307 alias_list = alias_list->next;
5308 err = sysfs_slab_alias(al->s, al->name);
Christoph Lameter5d540fb2007-08-30 23:56:26 -07005309 if (err)
Fabian Frederickf9f58282014-06-04 16:06:34 -07005310 pr_err("SLUB: Unable to add boot slab alias %s to sysfs\n",
5311 al->name);
Christoph Lameter81819f02007-05-06 14:49:36 -07005312 kfree(al);
5313 }
5314
Christoph Lameter18004c52012-07-06 15:25:12 -05005315 mutex_unlock(&slab_mutex);
Christoph Lameter81819f02007-05-06 14:49:36 -07005316 resiliency_test();
5317 return 0;
5318}
5319
5320__initcall(slab_sysfs_init);
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05005321#endif /* CONFIG_SYSFS */
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01005322
5323/*
5324 * The /proc/slabinfo ABI
5325 */
Linus Torvalds158a9622008-01-02 13:04:48 -08005326#ifdef CONFIG_SLABINFO
Glauber Costa0d7561c2012-10-19 18:20:27 +04005327void get_slabinfo(struct kmem_cache *s, struct slabinfo *sinfo)
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01005328{
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01005329 unsigned long nr_slabs = 0;
Christoph Lameter205ab992008-04-14 19:11:40 +03005330 unsigned long nr_objs = 0;
5331 unsigned long nr_free = 0;
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01005332 int node;
5333
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01005334 for_each_online_node(node) {
5335 struct kmem_cache_node *n = get_node(s, node);
5336
5337 if (!n)
5338 continue;
5339
Wanpeng Lic17fd132013-07-04 08:33:26 +08005340 nr_slabs += node_nr_slabs(n);
5341 nr_objs += node_nr_objs(n);
Christoph Lameter205ab992008-04-14 19:11:40 +03005342 nr_free += count_partial(n, count_free);
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01005343 }
5344
Glauber Costa0d7561c2012-10-19 18:20:27 +04005345 sinfo->active_objs = nr_objs - nr_free;
5346 sinfo->num_objs = nr_objs;
5347 sinfo->active_slabs = nr_slabs;
5348 sinfo->num_slabs = nr_slabs;
5349 sinfo->objects_per_slab = oo_objects(s->oo);
5350 sinfo->cache_order = oo_order(s->oo);
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01005351}
5352
Glauber Costa0d7561c2012-10-19 18:20:27 +04005353void slabinfo_show_stats(struct seq_file *m, struct kmem_cache *s)
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04005354{
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04005355}
5356
Glauber Costab7454ad2012-10-19 18:20:25 +04005357ssize_t slabinfo_write(struct file *file, const char __user *buffer,
5358 size_t count, loff_t *ppos)
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04005359{
Glauber Costab7454ad2012-10-19 18:20:25 +04005360 return -EIO;
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04005361}
Linus Torvalds158a9622008-01-02 13:04:48 -08005362#endif /* CONFIG_SLABINFO */