blob: 92d8139c556d0348dfb61db3b80744989d2f591c [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 Lameter6446faa2008-02-15 23:45:26 -0800236/* Verify that a pointer has an address that is valid within a slab page */
Christoph Lameter02cbc872007-05-09 02:32:43 -0700237static inline int check_valid_pointer(struct kmem_cache *s,
238 struct page *page, const void *object)
239{
240 void *base;
241
Christoph Lametera973e9d2008-03-01 13:40:44 -0800242 if (!object)
Christoph Lameter02cbc872007-05-09 02:32:43 -0700243 return 1;
244
Christoph Lametera973e9d2008-03-01 13:40:44 -0800245 base = page_address(page);
Christoph Lameter39b26462008-04-14 19:11:30 +0300246 if (object < base || object >= base + page->objects * s->size ||
Christoph Lameter02cbc872007-05-09 02:32:43 -0700247 (object - base) % s->size) {
248 return 0;
249 }
250
251 return 1;
252}
253
Christoph Lameter7656c722007-05-09 02:32:40 -0700254static inline void *get_freepointer(struct kmem_cache *s, void *object)
255{
256 return *(void **)(object + s->offset);
257}
258
Eric Dumazet0ad95002011-12-16 16:25:34 +0100259static void prefetch_freepointer(const struct kmem_cache *s, void *object)
260{
261 prefetch(object + s->offset);
262}
263
Christoph Lameter1393d9a2011-05-16 15:26:08 -0500264static inline void *get_freepointer_safe(struct kmem_cache *s, void *object)
265{
266 void *p;
267
268#ifdef CONFIG_DEBUG_PAGEALLOC
269 probe_kernel_read(&p, (void **)(object + s->offset), sizeof(p));
270#else
271 p = get_freepointer(s, object);
272#endif
273 return p;
274}
275
Christoph Lameter7656c722007-05-09 02:32:40 -0700276static inline void set_freepointer(struct kmem_cache *s, void *object, void *fp)
277{
278 *(void **)(object + s->offset) = fp;
279}
280
281/* Loop over all objects in a slab */
Christoph Lameter224a88b2008-04-14 19:11:31 +0300282#define for_each_object(__p, __s, __addr, __objects) \
283 for (__p = (__addr); __p < (__addr) + (__objects) * (__s)->size;\
Christoph Lameter7656c722007-05-09 02:32:40 -0700284 __p += (__s)->size)
285
Christoph Lameter7656c722007-05-09 02:32:40 -0700286/* Determine object index from a given position */
287static inline int slab_index(void *p, struct kmem_cache *s, void *addr)
288{
289 return (p - addr) / s->size;
290}
291
Mariusz Kozlowskid71f6062011-02-26 20:10:26 +0100292static inline size_t slab_ksize(const struct kmem_cache *s)
293{
294#ifdef CONFIG_SLUB_DEBUG
295 /*
296 * Debugging requires use of the padding between object
297 * and whatever may come after it.
298 */
299 if (s->flags & (SLAB_RED_ZONE | SLAB_POISON))
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500300 return s->object_size;
Mariusz Kozlowskid71f6062011-02-26 20:10:26 +0100301
302#endif
303 /*
304 * If we have the need to store the freelist pointer
305 * back there or track user information then we can
306 * only use the space before that information.
307 */
308 if (s->flags & (SLAB_DESTROY_BY_RCU | SLAB_STORE_USER))
309 return s->inuse;
310 /*
311 * Else we can use all the padding etc for the allocation
312 */
313 return s->size;
314}
315
Lai Jiangshanab9a0f12011-03-10 15:21:48 +0800316static inline int order_objects(int order, unsigned long size, int reserved)
317{
318 return ((PAGE_SIZE << order) - reserved) / size;
319}
320
Christoph Lameter834f3d12008-04-14 19:11:31 +0300321static inline struct kmem_cache_order_objects oo_make(int order,
Lai Jiangshanab9a0f12011-03-10 15:21:48 +0800322 unsigned long size, int reserved)
Christoph Lameter834f3d12008-04-14 19:11:31 +0300323{
324 struct kmem_cache_order_objects x = {
Lai Jiangshanab9a0f12011-03-10 15:21:48 +0800325 (order << OO_SHIFT) + order_objects(order, size, reserved)
Christoph Lameter834f3d12008-04-14 19:11:31 +0300326 };
327
328 return x;
329}
330
331static inline int oo_order(struct kmem_cache_order_objects x)
332{
Cyrill Gorcunov210b5c02008-10-22 23:00:38 +0400333 return x.x >> OO_SHIFT;
Christoph Lameter834f3d12008-04-14 19:11:31 +0300334}
335
336static inline int oo_objects(struct kmem_cache_order_objects x)
337{
Cyrill Gorcunov210b5c02008-10-22 23:00:38 +0400338 return x.x & OO_MASK;
Christoph Lameter834f3d12008-04-14 19:11:31 +0300339}
340
Christoph Lameter881db7f2011-06-01 12:25:53 -0500341/*
342 * Per slab locking using the pagelock
343 */
344static __always_inline void slab_lock(struct page *page)
345{
346 bit_spin_lock(PG_locked, &page->flags);
347}
348
349static __always_inline void slab_unlock(struct page *page)
350{
351 __bit_spin_unlock(PG_locked, &page->flags);
352}
353
Dave Hansena0320862014-01-30 15:46:09 -0800354static inline void set_page_slub_counters(struct page *page, unsigned long counters_new)
355{
356 struct page tmp;
357 tmp.counters = counters_new;
358 /*
359 * page->counters can cover frozen/inuse/objects as well
360 * as page->_count. If we assign to ->counters directly
361 * we run the risk of losing updates to page->_count, so
362 * be careful and only assign to the fields we need.
363 */
364 page->frozen = tmp.frozen;
365 page->inuse = tmp.inuse;
366 page->objects = tmp.objects;
367}
368
Christoph Lameter1d071712011-07-14 12:49:12 -0500369/* Interrupts must be disabled (for the fallback code to work right) */
370static inline bool __cmpxchg_double_slab(struct kmem_cache *s, struct page *page,
Christoph Lameterb789ef52011-06-01 12:25:49 -0500371 void *freelist_old, unsigned long counters_old,
372 void *freelist_new, unsigned long counters_new,
373 const char *n)
374{
Christoph Lameter1d071712011-07-14 12:49:12 -0500375 VM_BUG_ON(!irqs_disabled());
Heiko Carstens25654092012-01-12 17:17:33 -0800376#if defined(CONFIG_HAVE_CMPXCHG_DOUBLE) && \
377 defined(CONFIG_HAVE_ALIGNED_STRUCT_PAGE)
Christoph Lameterb789ef52011-06-01 12:25:49 -0500378 if (s->flags & __CMPXCHG_DOUBLE) {
Jan Beulichcdcd6292012-01-02 17:02:18 +0000379 if (cmpxchg_double(&page->freelist, &page->counters,
Christoph Lameterb789ef52011-06-01 12:25:49 -0500380 freelist_old, counters_old,
381 freelist_new, counters_new))
382 return 1;
383 } else
384#endif
385 {
Christoph Lameter881db7f2011-06-01 12:25:53 -0500386 slab_lock(page);
Chen Gangd0e0ac92013-07-15 09:05:29 +0800387 if (page->freelist == freelist_old &&
388 page->counters == counters_old) {
Christoph Lameterb789ef52011-06-01 12:25:49 -0500389 page->freelist = freelist_new;
Dave Hansena0320862014-01-30 15:46:09 -0800390 set_page_slub_counters(page, counters_new);
Christoph Lameter881db7f2011-06-01 12:25:53 -0500391 slab_unlock(page);
Christoph Lameterb789ef52011-06-01 12:25:49 -0500392 return 1;
393 }
Christoph Lameter881db7f2011-06-01 12:25:53 -0500394 slab_unlock(page);
Christoph Lameterb789ef52011-06-01 12:25:49 -0500395 }
396
397 cpu_relax();
398 stat(s, CMPXCHG_DOUBLE_FAIL);
399
400#ifdef SLUB_DEBUG_CMPXCHG
Fabian Frederickf9f58282014-06-04 16:06:34 -0700401 pr_info("%s %s: cmpxchg double redo ", n, s->name);
Christoph Lameterb789ef52011-06-01 12:25:49 -0500402#endif
403
404 return 0;
405}
406
Christoph Lameter1d071712011-07-14 12:49:12 -0500407static inline bool cmpxchg_double_slab(struct kmem_cache *s, struct page *page,
408 void *freelist_old, unsigned long counters_old,
409 void *freelist_new, unsigned long counters_new,
410 const char *n)
411{
Heiko Carstens25654092012-01-12 17:17:33 -0800412#if defined(CONFIG_HAVE_CMPXCHG_DOUBLE) && \
413 defined(CONFIG_HAVE_ALIGNED_STRUCT_PAGE)
Christoph Lameter1d071712011-07-14 12:49:12 -0500414 if (s->flags & __CMPXCHG_DOUBLE) {
Jan Beulichcdcd6292012-01-02 17:02:18 +0000415 if (cmpxchg_double(&page->freelist, &page->counters,
Christoph Lameter1d071712011-07-14 12:49:12 -0500416 freelist_old, counters_old,
417 freelist_new, counters_new))
418 return 1;
419 } else
420#endif
421 {
422 unsigned long flags;
423
424 local_irq_save(flags);
425 slab_lock(page);
Chen Gangd0e0ac92013-07-15 09:05:29 +0800426 if (page->freelist == freelist_old &&
427 page->counters == counters_old) {
Christoph Lameter1d071712011-07-14 12:49:12 -0500428 page->freelist = freelist_new;
Dave Hansena0320862014-01-30 15:46:09 -0800429 set_page_slub_counters(page, counters_new);
Christoph Lameter1d071712011-07-14 12:49:12 -0500430 slab_unlock(page);
431 local_irq_restore(flags);
432 return 1;
433 }
434 slab_unlock(page);
435 local_irq_restore(flags);
436 }
437
438 cpu_relax();
439 stat(s, CMPXCHG_DOUBLE_FAIL);
440
441#ifdef SLUB_DEBUG_CMPXCHG
Fabian Frederickf9f58282014-06-04 16:06:34 -0700442 pr_info("%s %s: cmpxchg double redo ", n, s->name);
Christoph Lameter1d071712011-07-14 12:49:12 -0500443#endif
444
445 return 0;
446}
447
Christoph Lameter41ecc552007-05-09 02:32:44 -0700448#ifdef CONFIG_SLUB_DEBUG
449/*
Christoph Lameter5f80b132011-04-15 14:48:13 -0500450 * Determine a map of object in use on a page.
451 *
Christoph Lameter881db7f2011-06-01 12:25:53 -0500452 * Node listlock must be held to guarantee that the page does
Christoph Lameter5f80b132011-04-15 14:48:13 -0500453 * not vanish from under us.
454 */
455static void get_map(struct kmem_cache *s, struct page *page, unsigned long *map)
456{
457 void *p;
458 void *addr = page_address(page);
459
460 for (p = page->freelist; p; p = get_freepointer(s, p))
461 set_bit(slab_index(p, s, addr), map);
462}
463
Christoph Lameter41ecc552007-05-09 02:32:44 -0700464/*
465 * Debug settings:
466 */
Christoph Lameterf0630ff2007-07-15 23:38:14 -0700467#ifdef CONFIG_SLUB_DEBUG_ON
468static int slub_debug = DEBUG_DEFAULT_FLAGS;
469#else
Christoph Lameter41ecc552007-05-09 02:32:44 -0700470static int slub_debug;
Christoph Lameterf0630ff2007-07-15 23:38:14 -0700471#endif
Christoph Lameter41ecc552007-05-09 02:32:44 -0700472
473static char *slub_debug_slabs;
David Rientjesfa5ec8a2009-07-07 00:14:14 -0700474static int disable_higher_order_debug;
Christoph Lameter41ecc552007-05-09 02:32:44 -0700475
Christoph Lameter7656c722007-05-09 02:32:40 -0700476/*
Christoph Lameter81819f02007-05-06 14:49:36 -0700477 * Object debugging
478 */
479static void print_section(char *text, u8 *addr, unsigned int length)
480{
Sebastian Andrzej Siewiorffc79d22011-07-29 14:10:20 +0200481 print_hex_dump(KERN_ERR, text, DUMP_PREFIX_ADDRESS, 16, 1, addr,
482 length, 1);
Christoph Lameter81819f02007-05-06 14:49:36 -0700483}
484
Christoph Lameter81819f02007-05-06 14:49:36 -0700485static struct track *get_track(struct kmem_cache *s, void *object,
486 enum track_item alloc)
487{
488 struct track *p;
489
490 if (s->offset)
491 p = object + s->offset + sizeof(void *);
492 else
493 p = object + s->inuse;
494
495 return p + alloc;
496}
497
498static void set_track(struct kmem_cache *s, void *object,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +0300499 enum track_item alloc, unsigned long addr)
Christoph Lameter81819f02007-05-06 14:49:36 -0700500{
Akinobu Mita1a00df42009-03-07 00:36:21 +0900501 struct track *p = get_track(s, object, alloc);
Christoph Lameter81819f02007-05-06 14:49:36 -0700502
Christoph Lameter81819f02007-05-06 14:49:36 -0700503 if (addr) {
Ben Greeard6543e32011-07-07 11:36:36 -0700504#ifdef CONFIG_STACKTRACE
505 struct stack_trace trace;
506 int i;
507
508 trace.nr_entries = 0;
509 trace.max_entries = TRACK_ADDRS_COUNT;
510 trace.entries = p->addrs;
511 trace.skip = 3;
512 save_stack_trace(&trace);
513
514 /* See rant in lockdep.c */
515 if (trace.nr_entries != 0 &&
516 trace.entries[trace.nr_entries - 1] == ULONG_MAX)
517 trace.nr_entries--;
518
519 for (i = trace.nr_entries; i < TRACK_ADDRS_COUNT; i++)
520 p->addrs[i] = 0;
521#endif
Christoph Lameter81819f02007-05-06 14:49:36 -0700522 p->addr = addr;
523 p->cpu = smp_processor_id();
Alexey Dobriyan88e4ccf2008-06-23 02:58:37 +0400524 p->pid = current->pid;
Christoph Lameter81819f02007-05-06 14:49:36 -0700525 p->when = jiffies;
526 } else
527 memset(p, 0, sizeof(struct track));
528}
529
Christoph Lameter81819f02007-05-06 14:49:36 -0700530static void init_tracking(struct kmem_cache *s, void *object)
531{
Christoph Lameter24922682007-07-17 04:03:18 -0700532 if (!(s->flags & SLAB_STORE_USER))
533 return;
534
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +0300535 set_track(s, object, TRACK_FREE, 0UL);
536 set_track(s, object, TRACK_ALLOC, 0UL);
Christoph Lameter81819f02007-05-06 14:49:36 -0700537}
538
539static void print_track(const char *s, struct track *t)
540{
541 if (!t->addr)
542 return;
543
Fabian Frederickf9f58282014-06-04 16:06:34 -0700544 pr_err("INFO: %s in %pS age=%lu cpu=%u pid=%d\n",
545 s, (void *)t->addr, jiffies - t->when, t->cpu, t->pid);
Ben Greeard6543e32011-07-07 11:36:36 -0700546#ifdef CONFIG_STACKTRACE
547 {
548 int i;
549 for (i = 0; i < TRACK_ADDRS_COUNT; i++)
550 if (t->addrs[i])
Fabian Frederickf9f58282014-06-04 16:06:34 -0700551 pr_err("\t%pS\n", (void *)t->addrs[i]);
Ben Greeard6543e32011-07-07 11:36:36 -0700552 else
553 break;
554 }
555#endif
Christoph Lameter81819f02007-05-06 14:49:36 -0700556}
557
Christoph Lameter24922682007-07-17 04:03:18 -0700558static void print_tracking(struct kmem_cache *s, void *object)
559{
560 if (!(s->flags & SLAB_STORE_USER))
561 return;
562
563 print_track("Allocated", get_track(s, object, TRACK_ALLOC));
564 print_track("Freed", get_track(s, object, TRACK_FREE));
565}
566
567static void print_page_info(struct page *page)
568{
Fabian Frederickf9f58282014-06-04 16:06:34 -0700569 pr_err("INFO: Slab 0x%p objects=%u used=%u fp=0x%p flags=0x%04lx\n",
Chen Gangd0e0ac92013-07-15 09:05:29 +0800570 page, page->objects, page->inuse, page->freelist, page->flags);
Christoph Lameter24922682007-07-17 04:03:18 -0700571
572}
573
574static void slab_bug(struct kmem_cache *s, char *fmt, ...)
575{
Fabian Frederickecc42fb2014-06-04 16:06:35 -0700576 struct va_format vaf;
Christoph Lameter24922682007-07-17 04:03:18 -0700577 va_list args;
Christoph Lameter24922682007-07-17 04:03:18 -0700578
579 va_start(args, fmt);
Fabian Frederickecc42fb2014-06-04 16:06:35 -0700580 vaf.fmt = fmt;
581 vaf.va = &args;
Fabian Frederickf9f58282014-06-04 16:06:34 -0700582 pr_err("=============================================================================\n");
Fabian Frederickecc42fb2014-06-04 16:06:35 -0700583 pr_err("BUG %s (%s): %pV\n", s->name, print_tainted(), &vaf);
Fabian Frederickf9f58282014-06-04 16:06:34 -0700584 pr_err("-----------------------------------------------------------------------------\n\n");
Dave Jones645df232012-09-18 15:54:12 -0400585
Rusty Russell373d4d02013-01-21 17:17:39 +1030586 add_taint(TAINT_BAD_PAGE, LOCKDEP_NOW_UNRELIABLE);
Fabian Frederickecc42fb2014-06-04 16:06:35 -0700587 va_end(args);
Christoph Lameter24922682007-07-17 04:03:18 -0700588}
589
590static void slab_fix(struct kmem_cache *s, char *fmt, ...)
591{
Fabian Frederickecc42fb2014-06-04 16:06:35 -0700592 struct va_format vaf;
Christoph Lameter24922682007-07-17 04:03:18 -0700593 va_list args;
Christoph Lameter24922682007-07-17 04:03:18 -0700594
595 va_start(args, fmt);
Fabian Frederickecc42fb2014-06-04 16:06:35 -0700596 vaf.fmt = fmt;
597 vaf.va = &args;
598 pr_err("FIX %s: %pV\n", s->name, &vaf);
Christoph Lameter24922682007-07-17 04:03:18 -0700599 va_end(args);
Christoph Lameter24922682007-07-17 04:03:18 -0700600}
601
602static void print_trailer(struct kmem_cache *s, struct page *page, u8 *p)
Christoph Lameter81819f02007-05-06 14:49:36 -0700603{
604 unsigned int off; /* Offset of last byte */
Christoph Lametera973e9d2008-03-01 13:40:44 -0800605 u8 *addr = page_address(page);
Christoph Lameter24922682007-07-17 04:03:18 -0700606
607 print_tracking(s, p);
608
609 print_page_info(page);
610
Fabian Frederickf9f58282014-06-04 16:06:34 -0700611 pr_err("INFO: Object 0x%p @offset=%tu fp=0x%p\n\n",
612 p, p - addr, get_freepointer(s, p));
Christoph Lameter24922682007-07-17 04:03:18 -0700613
614 if (p > addr + 16)
Sebastian Andrzej Siewiorffc79d22011-07-29 14:10:20 +0200615 print_section("Bytes b4 ", p - 16, 16);
Christoph Lameter24922682007-07-17 04:03:18 -0700616
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500617 print_section("Object ", p, min_t(unsigned long, s->object_size,
Sebastian Andrzej Siewiorffc79d22011-07-29 14:10:20 +0200618 PAGE_SIZE));
Christoph Lameter81819f02007-05-06 14:49:36 -0700619 if (s->flags & SLAB_RED_ZONE)
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500620 print_section("Redzone ", p + s->object_size,
621 s->inuse - s->object_size);
Christoph Lameter81819f02007-05-06 14:49:36 -0700622
Christoph Lameter81819f02007-05-06 14:49:36 -0700623 if (s->offset)
624 off = s->offset + sizeof(void *);
625 else
626 off = s->inuse;
627
Christoph Lameter24922682007-07-17 04:03:18 -0700628 if (s->flags & SLAB_STORE_USER)
Christoph Lameter81819f02007-05-06 14:49:36 -0700629 off += 2 * sizeof(struct track);
Christoph Lameter81819f02007-05-06 14:49:36 -0700630
631 if (off != s->size)
632 /* Beginning of the filler is the free pointer */
Sebastian Andrzej Siewiorffc79d22011-07-29 14:10:20 +0200633 print_section("Padding ", p + off, s->size - off);
Christoph Lameter24922682007-07-17 04:03:18 -0700634
635 dump_stack();
Christoph Lameter81819f02007-05-06 14:49:36 -0700636}
637
638static void object_err(struct kmem_cache *s, struct page *page,
639 u8 *object, char *reason)
640{
Christoph Lameter3dc50632008-04-23 12:28:01 -0700641 slab_bug(s, "%s", reason);
Christoph Lameter24922682007-07-17 04:03:18 -0700642 print_trailer(s, page, object);
Christoph Lameter81819f02007-05-06 14:49:36 -0700643}
644
Chen Gangd0e0ac92013-07-15 09:05:29 +0800645static void slab_err(struct kmem_cache *s, struct page *page,
646 const char *fmt, ...)
Christoph Lameter81819f02007-05-06 14:49:36 -0700647{
648 va_list args;
649 char buf[100];
650
Christoph Lameter24922682007-07-17 04:03:18 -0700651 va_start(args, fmt);
652 vsnprintf(buf, sizeof(buf), fmt, args);
Christoph Lameter81819f02007-05-06 14:49:36 -0700653 va_end(args);
Christoph Lameter3dc50632008-04-23 12:28:01 -0700654 slab_bug(s, "%s", buf);
Christoph Lameter24922682007-07-17 04:03:18 -0700655 print_page_info(page);
Christoph Lameter81819f02007-05-06 14:49:36 -0700656 dump_stack();
657}
658
Christoph Lameterf7cb1932010-09-29 07:15:01 -0500659static void init_object(struct kmem_cache *s, void *object, u8 val)
Christoph Lameter81819f02007-05-06 14:49:36 -0700660{
661 u8 *p = object;
662
663 if (s->flags & __OBJECT_POISON) {
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500664 memset(p, POISON_FREE, s->object_size - 1);
665 p[s->object_size - 1] = POISON_END;
Christoph Lameter81819f02007-05-06 14:49:36 -0700666 }
667
668 if (s->flags & SLAB_RED_ZONE)
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500669 memset(p + s->object_size, val, s->inuse - s->object_size);
Christoph Lameter81819f02007-05-06 14:49:36 -0700670}
671
Christoph Lameter24922682007-07-17 04:03:18 -0700672static void restore_bytes(struct kmem_cache *s, char *message, u8 data,
673 void *from, void *to)
674{
675 slab_fix(s, "Restoring 0x%p-0x%p=0x%x\n", from, to - 1, data);
676 memset(from, data, to - from);
677}
678
679static int check_bytes_and_report(struct kmem_cache *s, struct page *page,
680 u8 *object, char *what,
Pekka Enberg06428782008-01-07 23:20:27 -0800681 u8 *start, unsigned int value, unsigned int bytes)
Christoph Lameter24922682007-07-17 04:03:18 -0700682{
683 u8 *fault;
684 u8 *end;
685
Akinobu Mita798248202011-10-31 17:08:07 -0700686 fault = memchr_inv(start, value, bytes);
Christoph Lameter24922682007-07-17 04:03:18 -0700687 if (!fault)
688 return 1;
689
690 end = start + bytes;
691 while (end > fault && end[-1] == value)
692 end--;
693
694 slab_bug(s, "%s overwritten", what);
Fabian Frederickf9f58282014-06-04 16:06:34 -0700695 pr_err("INFO: 0x%p-0x%p. First byte 0x%x instead of 0x%x\n",
Christoph Lameter24922682007-07-17 04:03:18 -0700696 fault, end - 1, fault[0], value);
697 print_trailer(s, page, object);
698
699 restore_bytes(s, what, value, fault, end);
700 return 0;
Christoph Lameter81819f02007-05-06 14:49:36 -0700701}
702
Christoph Lameter81819f02007-05-06 14:49:36 -0700703/*
704 * Object layout:
705 *
706 * object address
707 * Bytes of the object to be managed.
708 * If the freepointer may overlay the object then the free
709 * pointer is the first word of the object.
Christoph Lameter672bba32007-05-09 02:32:39 -0700710 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700711 * Poisoning uses 0x6b (POISON_FREE) and the last byte is
712 * 0xa5 (POISON_END)
713 *
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500714 * object + s->object_size
Christoph Lameter81819f02007-05-06 14:49:36 -0700715 * Padding to reach word boundary. This is also used for Redzoning.
Christoph Lameter672bba32007-05-09 02:32:39 -0700716 * Padding is extended by another word if Redzoning is enabled and
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500717 * object_size == inuse.
Christoph Lameter672bba32007-05-09 02:32:39 -0700718 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700719 * We fill with 0xbb (RED_INACTIVE) for inactive objects and with
720 * 0xcc (RED_ACTIVE) for objects in use.
721 *
722 * object + s->inuse
Christoph Lameter672bba32007-05-09 02:32:39 -0700723 * Meta data starts here.
724 *
Christoph Lameter81819f02007-05-06 14:49:36 -0700725 * A. Free pointer (if we cannot overwrite object on free)
726 * B. Tracking data for SLAB_STORE_USER
Christoph Lameter672bba32007-05-09 02:32:39 -0700727 * C. Padding to reach required alignment boundary or at mininum
Christoph Lameter6446faa2008-02-15 23:45:26 -0800728 * one word if debugging is on to be able to detect writes
Christoph Lameter672bba32007-05-09 02:32:39 -0700729 * before the word boundary.
730 *
731 * Padding is done using 0x5a (POISON_INUSE)
Christoph Lameter81819f02007-05-06 14:49:36 -0700732 *
733 * object + s->size
Christoph Lameter672bba32007-05-09 02:32:39 -0700734 * Nothing is used beyond s->size.
Christoph Lameter81819f02007-05-06 14:49:36 -0700735 *
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500736 * If slabcaches are merged then the object_size and inuse boundaries are mostly
Christoph Lameter672bba32007-05-09 02:32:39 -0700737 * ignored. And therefore no slab options that rely on these boundaries
Christoph Lameter81819f02007-05-06 14:49:36 -0700738 * may be used with merged slabcaches.
739 */
740
Christoph Lameter81819f02007-05-06 14:49:36 -0700741static int check_pad_bytes(struct kmem_cache *s, struct page *page, u8 *p)
742{
743 unsigned long off = s->inuse; /* The end of info */
744
745 if (s->offset)
746 /* Freepointer is placed after the object. */
747 off += sizeof(void *);
748
749 if (s->flags & SLAB_STORE_USER)
750 /* We also have user information there */
751 off += 2 * sizeof(struct track);
752
753 if (s->size == off)
754 return 1;
755
Christoph Lameter24922682007-07-17 04:03:18 -0700756 return check_bytes_and_report(s, page, p, "Object padding",
757 p + off, POISON_INUSE, s->size - off);
Christoph Lameter81819f02007-05-06 14:49:36 -0700758}
759
Christoph Lameter39b26462008-04-14 19:11:30 +0300760/* Check the pad bytes at the end of a slab page */
Christoph Lameter81819f02007-05-06 14:49:36 -0700761static int slab_pad_check(struct kmem_cache *s, struct page *page)
762{
Christoph Lameter24922682007-07-17 04:03:18 -0700763 u8 *start;
764 u8 *fault;
765 u8 *end;
766 int length;
767 int remainder;
Christoph Lameter81819f02007-05-06 14:49:36 -0700768
769 if (!(s->flags & SLAB_POISON))
770 return 1;
771
Christoph Lametera973e9d2008-03-01 13:40:44 -0800772 start = page_address(page);
Lai Jiangshanab9a0f12011-03-10 15:21:48 +0800773 length = (PAGE_SIZE << compound_order(page)) - s->reserved;
Christoph Lameter39b26462008-04-14 19:11:30 +0300774 end = start + length;
775 remainder = length % s->size;
Christoph Lameter81819f02007-05-06 14:49:36 -0700776 if (!remainder)
777 return 1;
778
Akinobu Mita798248202011-10-31 17:08:07 -0700779 fault = memchr_inv(end - remainder, POISON_INUSE, remainder);
Christoph Lameter24922682007-07-17 04:03:18 -0700780 if (!fault)
781 return 1;
782 while (end > fault && end[-1] == POISON_INUSE)
783 end--;
784
785 slab_err(s, page, "Padding overwritten. 0x%p-0x%p", fault, end - 1);
Sebastian Andrzej Siewiorffc79d22011-07-29 14:10:20 +0200786 print_section("Padding ", end - remainder, remainder);
Christoph Lameter24922682007-07-17 04:03:18 -0700787
Eric Dumazet8a3d2712009-09-03 16:08:06 +0200788 restore_bytes(s, "slab padding", POISON_INUSE, end - remainder, end);
Christoph Lameter24922682007-07-17 04:03:18 -0700789 return 0;
Christoph Lameter81819f02007-05-06 14:49:36 -0700790}
791
792static int check_object(struct kmem_cache *s, struct page *page,
Christoph Lameterf7cb1932010-09-29 07:15:01 -0500793 void *object, u8 val)
Christoph Lameter81819f02007-05-06 14:49:36 -0700794{
795 u8 *p = object;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500796 u8 *endobject = object + s->object_size;
Christoph Lameter81819f02007-05-06 14:49:36 -0700797
798 if (s->flags & SLAB_RED_ZONE) {
Christoph Lameter24922682007-07-17 04:03:18 -0700799 if (!check_bytes_and_report(s, page, object, "Redzone",
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500800 endobject, val, s->inuse - s->object_size))
Christoph Lameter81819f02007-05-06 14:49:36 -0700801 return 0;
Christoph Lameter81819f02007-05-06 14:49:36 -0700802 } else {
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500803 if ((s->flags & SLAB_POISON) && s->object_size < s->inuse) {
Ingo Molnar3adbefe2008-02-05 17:57:39 -0800804 check_bytes_and_report(s, page, p, "Alignment padding",
Chen Gangd0e0ac92013-07-15 09:05:29 +0800805 endobject, POISON_INUSE,
806 s->inuse - s->object_size);
Ingo Molnar3adbefe2008-02-05 17:57:39 -0800807 }
Christoph Lameter81819f02007-05-06 14:49:36 -0700808 }
809
810 if (s->flags & SLAB_POISON) {
Christoph Lameterf7cb1932010-09-29 07:15:01 -0500811 if (val != SLUB_RED_ACTIVE && (s->flags & __OBJECT_POISON) &&
Christoph Lameter24922682007-07-17 04:03:18 -0700812 (!check_bytes_and_report(s, page, p, "Poison", p,
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500813 POISON_FREE, s->object_size - 1) ||
Christoph Lameter24922682007-07-17 04:03:18 -0700814 !check_bytes_and_report(s, page, p, "Poison",
Christoph Lameter3b0efdf2012-06-13 10:24:57 -0500815 p + s->object_size - 1, POISON_END, 1)))
Christoph Lameter81819f02007-05-06 14:49:36 -0700816 return 0;
Christoph Lameter81819f02007-05-06 14:49:36 -0700817 /*
818 * check_pad_bytes cleans up on its own.
819 */
820 check_pad_bytes(s, page, p);
821 }
822
Christoph Lameterf7cb1932010-09-29 07:15:01 -0500823 if (!s->offset && val == SLUB_RED_ACTIVE)
Christoph Lameter81819f02007-05-06 14:49:36 -0700824 /*
825 * Object and freepointer overlap. Cannot check
826 * freepointer while object is allocated.
827 */
828 return 1;
829
830 /* Check free pointer validity */
831 if (!check_valid_pointer(s, page, get_freepointer(s, p))) {
832 object_err(s, page, p, "Freepointer corrupt");
833 /*
Nick Andrew9f6c708e2008-12-05 14:08:08 +1100834 * No choice but to zap it and thus lose the remainder
Christoph Lameter81819f02007-05-06 14:49:36 -0700835 * of the free objects in this slab. May cause
Christoph Lameter672bba32007-05-09 02:32:39 -0700836 * another error because the object count is now wrong.
Christoph Lameter81819f02007-05-06 14:49:36 -0700837 */
Christoph Lametera973e9d2008-03-01 13:40:44 -0800838 set_freepointer(s, p, NULL);
Christoph Lameter81819f02007-05-06 14:49:36 -0700839 return 0;
840 }
841 return 1;
842}
843
844static int check_slab(struct kmem_cache *s, struct page *page)
845{
Christoph Lameter39b26462008-04-14 19:11:30 +0300846 int maxobj;
847
Christoph Lameter81819f02007-05-06 14:49:36 -0700848 VM_BUG_ON(!irqs_disabled());
849
850 if (!PageSlab(page)) {
Christoph Lameter24922682007-07-17 04:03:18 -0700851 slab_err(s, page, "Not a valid slab page");
Christoph Lameter81819f02007-05-06 14:49:36 -0700852 return 0;
853 }
Christoph Lameter39b26462008-04-14 19:11:30 +0300854
Lai Jiangshanab9a0f12011-03-10 15:21:48 +0800855 maxobj = order_objects(compound_order(page), s->size, s->reserved);
Christoph Lameter39b26462008-04-14 19:11:30 +0300856 if (page->objects > maxobj) {
857 slab_err(s, page, "objects %u > max %u",
858 s->name, page->objects, maxobj);
859 return 0;
860 }
861 if (page->inuse > page->objects) {
Christoph Lameter24922682007-07-17 04:03:18 -0700862 slab_err(s, page, "inuse %u > max %u",
Christoph Lameter39b26462008-04-14 19:11:30 +0300863 s->name, page->inuse, page->objects);
Christoph Lameter81819f02007-05-06 14:49:36 -0700864 return 0;
865 }
866 /* Slab_pad_check fixes things up after itself */
867 slab_pad_check(s, page);
868 return 1;
869}
870
871/*
Christoph Lameter672bba32007-05-09 02:32:39 -0700872 * Determine if a certain object on a page is on the freelist. Must hold the
873 * slab lock to guarantee that the chains are in a consistent state.
Christoph Lameter81819f02007-05-06 14:49:36 -0700874 */
875static int on_freelist(struct kmem_cache *s, struct page *page, void *search)
876{
877 int nr = 0;
Christoph Lameter881db7f2011-06-01 12:25:53 -0500878 void *fp;
Christoph Lameter81819f02007-05-06 14:49:36 -0700879 void *object = NULL;
Christoph Lameter224a88b2008-04-14 19:11:31 +0300880 unsigned long max_objects;
Christoph Lameter81819f02007-05-06 14:49:36 -0700881
Christoph Lameter881db7f2011-06-01 12:25:53 -0500882 fp = page->freelist;
Christoph Lameter39b26462008-04-14 19:11:30 +0300883 while (fp && nr <= page->objects) {
Christoph Lameter81819f02007-05-06 14:49:36 -0700884 if (fp == search)
885 return 1;
886 if (!check_valid_pointer(s, page, fp)) {
887 if (object) {
888 object_err(s, page, object,
889 "Freechain corrupt");
Christoph Lametera973e9d2008-03-01 13:40:44 -0800890 set_freepointer(s, object, NULL);
Christoph Lameter81819f02007-05-06 14:49:36 -0700891 } else {
Christoph Lameter24922682007-07-17 04:03:18 -0700892 slab_err(s, page, "Freepointer corrupt");
Christoph Lametera973e9d2008-03-01 13:40:44 -0800893 page->freelist = NULL;
Christoph Lameter39b26462008-04-14 19:11:30 +0300894 page->inuse = page->objects;
Christoph Lameter24922682007-07-17 04:03:18 -0700895 slab_fix(s, "Freelist cleared");
Christoph Lameter81819f02007-05-06 14:49:36 -0700896 return 0;
897 }
898 break;
899 }
900 object = fp;
901 fp = get_freepointer(s, object);
902 nr++;
903 }
904
Lai Jiangshanab9a0f12011-03-10 15:21:48 +0800905 max_objects = order_objects(compound_order(page), s->size, s->reserved);
Cyrill Gorcunov210b5c02008-10-22 23:00:38 +0400906 if (max_objects > MAX_OBJS_PER_PAGE)
907 max_objects = MAX_OBJS_PER_PAGE;
Christoph Lameter224a88b2008-04-14 19:11:31 +0300908
909 if (page->objects != max_objects) {
910 slab_err(s, page, "Wrong number of objects. Found %d but "
911 "should be %d", page->objects, max_objects);
912 page->objects = max_objects;
913 slab_fix(s, "Number of objects adjusted.");
914 }
Christoph Lameter39b26462008-04-14 19:11:30 +0300915 if (page->inuse != page->objects - nr) {
Christoph Lameter70d71222007-05-06 14:49:47 -0700916 slab_err(s, page, "Wrong object count. Counter is %d but "
Christoph Lameter39b26462008-04-14 19:11:30 +0300917 "counted were %d", page->inuse, page->objects - nr);
918 page->inuse = page->objects - nr;
Christoph Lameter24922682007-07-17 04:03:18 -0700919 slab_fix(s, "Object count adjusted.");
Christoph Lameter81819f02007-05-06 14:49:36 -0700920 }
921 return search == NULL;
922}
923
Christoph Lameter0121c6192008-04-29 16:11:12 -0700924static void trace(struct kmem_cache *s, struct page *page, void *object,
925 int alloc)
Christoph Lameter3ec09742007-05-16 22:11:00 -0700926{
927 if (s->flags & SLAB_TRACE) {
Fabian Frederickf9f58282014-06-04 16:06:34 -0700928 pr_info("TRACE %s %s 0x%p inuse=%d fp=0x%p\n",
Christoph Lameter3ec09742007-05-16 22:11:00 -0700929 s->name,
930 alloc ? "alloc" : "free",
931 object, page->inuse,
932 page->freelist);
933
934 if (!alloc)
Chen Gangd0e0ac92013-07-15 09:05:29 +0800935 print_section("Object ", (void *)object,
936 s->object_size);
Christoph Lameter3ec09742007-05-16 22:11:00 -0700937
938 dump_stack();
939 }
940}
941
Christoph Lameter643b1132007-05-06 14:49:42 -0700942/*
Christoph Lameter672bba32007-05-09 02:32:39 -0700943 * Tracking of fully allocated slabs for debugging purposes.
Christoph Lameter643b1132007-05-06 14:49:42 -0700944 */
Christoph Lameter5cc6eee2011-06-01 12:25:50 -0500945static void add_full(struct kmem_cache *s,
946 struct kmem_cache_node *n, struct page *page)
Christoph Lameter643b1132007-05-06 14:49:42 -0700947{
Christoph Lameter643b1132007-05-06 14:49:42 -0700948 if (!(s->flags & SLAB_STORE_USER))
949 return;
950
David Rientjes255d0882014-02-10 14:25:39 -0800951 lockdep_assert_held(&n->list_lock);
Christoph Lameter5cc6eee2011-06-01 12:25:50 -0500952 list_add(&page->lru, &n->full);
953}
Christoph Lameter643b1132007-05-06 14:49:42 -0700954
Peter Zijlstrac65c1872014-01-10 13:23:49 +0100955static void remove_full(struct kmem_cache *s, struct kmem_cache_node *n, struct page *page)
Christoph Lameter5cc6eee2011-06-01 12:25:50 -0500956{
957 if (!(s->flags & SLAB_STORE_USER))
958 return;
959
David Rientjes255d0882014-02-10 14:25:39 -0800960 lockdep_assert_held(&n->list_lock);
Christoph Lameter643b1132007-05-06 14:49:42 -0700961 list_del(&page->lru);
Christoph Lameter643b1132007-05-06 14:49:42 -0700962}
963
Christoph Lameter0f389ec2008-04-14 18:53:02 +0300964/* Tracking of the number of slabs for debugging purposes */
965static inline unsigned long slabs_node(struct kmem_cache *s, int node)
966{
967 struct kmem_cache_node *n = get_node(s, node);
968
969 return atomic_long_read(&n->nr_slabs);
970}
971
Alexander Beregalov26c02cf2009-06-11 14:08:48 +0400972static inline unsigned long node_nr_slabs(struct kmem_cache_node *n)
973{
974 return atomic_long_read(&n->nr_slabs);
975}
976
Christoph Lameter205ab992008-04-14 19:11:40 +0300977static inline void inc_slabs_node(struct kmem_cache *s, int node, int objects)
Christoph Lameter0f389ec2008-04-14 18:53:02 +0300978{
979 struct kmem_cache_node *n = get_node(s, node);
980
981 /*
982 * May be called early in order to allocate a slab for the
983 * kmem_cache_node structure. Solve the chicken-egg
984 * dilemma by deferring the increment of the count during
985 * bootstrap (see early_kmem_cache_node_alloc).
986 */
Joonsoo Kim338b2642013-01-21 17:01:27 +0900987 if (likely(n)) {
Christoph Lameter0f389ec2008-04-14 18:53:02 +0300988 atomic_long_inc(&n->nr_slabs);
Christoph Lameter205ab992008-04-14 19:11:40 +0300989 atomic_long_add(objects, &n->total_objects);
990 }
Christoph Lameter0f389ec2008-04-14 18:53:02 +0300991}
Christoph Lameter205ab992008-04-14 19:11:40 +0300992static inline void dec_slabs_node(struct kmem_cache *s, int node, int objects)
Christoph Lameter0f389ec2008-04-14 18:53:02 +0300993{
994 struct kmem_cache_node *n = get_node(s, node);
995
996 atomic_long_dec(&n->nr_slabs);
Christoph Lameter205ab992008-04-14 19:11:40 +0300997 atomic_long_sub(objects, &n->total_objects);
Christoph Lameter0f389ec2008-04-14 18:53:02 +0300998}
999
1000/* Object debug checks for alloc/free paths */
Christoph Lameter3ec09742007-05-16 22:11:00 -07001001static void setup_object_debug(struct kmem_cache *s, struct page *page,
1002 void *object)
1003{
1004 if (!(s->flags & (SLAB_STORE_USER|SLAB_RED_ZONE|__OBJECT_POISON)))
1005 return;
1006
Christoph Lameterf7cb1932010-09-29 07:15:01 -05001007 init_object(s, object, SLUB_RED_INACTIVE);
Christoph Lameter3ec09742007-05-16 22:11:00 -07001008 init_tracking(s, object);
1009}
1010
Chen Gangd0e0ac92013-07-15 09:05:29 +08001011static noinline int alloc_debug_processing(struct kmem_cache *s,
1012 struct page *page,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03001013 void *object, unsigned long addr)
Christoph Lameter81819f02007-05-06 14:49:36 -07001014{
1015 if (!check_slab(s, page))
1016 goto bad;
1017
Christoph Lameter81819f02007-05-06 14:49:36 -07001018 if (!check_valid_pointer(s, page, object)) {
1019 object_err(s, page, object, "Freelist Pointer check fails");
Christoph Lameter70d71222007-05-06 14:49:47 -07001020 goto bad;
Christoph Lameter81819f02007-05-06 14:49:36 -07001021 }
1022
Christoph Lameterf7cb1932010-09-29 07:15:01 -05001023 if (!check_object(s, page, object, SLUB_RED_INACTIVE))
Christoph Lameter81819f02007-05-06 14:49:36 -07001024 goto bad;
Christoph Lameter81819f02007-05-06 14:49:36 -07001025
Christoph Lameter3ec09742007-05-16 22:11:00 -07001026 /* Success perform special debug activities for allocs */
1027 if (s->flags & SLAB_STORE_USER)
1028 set_track(s, object, TRACK_ALLOC, addr);
1029 trace(s, page, object, 1);
Christoph Lameterf7cb1932010-09-29 07:15:01 -05001030 init_object(s, object, SLUB_RED_ACTIVE);
Christoph Lameter81819f02007-05-06 14:49:36 -07001031 return 1;
Christoph Lameter3ec09742007-05-16 22:11:00 -07001032
Christoph Lameter81819f02007-05-06 14:49:36 -07001033bad:
1034 if (PageSlab(page)) {
1035 /*
1036 * If this is a slab page then lets do the best we can
1037 * to avoid issues in the future. Marking all objects
Christoph Lameter672bba32007-05-09 02:32:39 -07001038 * as used avoids touching the remaining objects.
Christoph Lameter81819f02007-05-06 14:49:36 -07001039 */
Christoph Lameter24922682007-07-17 04:03:18 -07001040 slab_fix(s, "Marking all objects used");
Christoph Lameter39b26462008-04-14 19:11:30 +03001041 page->inuse = page->objects;
Christoph Lametera973e9d2008-03-01 13:40:44 -08001042 page->freelist = NULL;
Christoph Lameter81819f02007-05-06 14:49:36 -07001043 }
1044 return 0;
1045}
1046
Christoph Lameter19c7ff92012-05-30 12:54:46 -05001047static noinline struct kmem_cache_node *free_debug_processing(
1048 struct kmem_cache *s, struct page *page, void *object,
1049 unsigned long addr, unsigned long *flags)
Christoph Lameter81819f02007-05-06 14:49:36 -07001050{
Christoph Lameter19c7ff92012-05-30 12:54:46 -05001051 struct kmem_cache_node *n = get_node(s, page_to_nid(page));
Christoph Lameter5c2e4bb2011-06-01 12:25:54 -05001052
Christoph Lameter19c7ff92012-05-30 12:54:46 -05001053 spin_lock_irqsave(&n->list_lock, *flags);
Christoph Lameter881db7f2011-06-01 12:25:53 -05001054 slab_lock(page);
1055
Christoph Lameter81819f02007-05-06 14:49:36 -07001056 if (!check_slab(s, page))
1057 goto fail;
1058
1059 if (!check_valid_pointer(s, page, object)) {
Christoph Lameter70d71222007-05-06 14:49:47 -07001060 slab_err(s, page, "Invalid object pointer 0x%p", object);
Christoph Lameter81819f02007-05-06 14:49:36 -07001061 goto fail;
1062 }
1063
1064 if (on_freelist(s, page, object)) {
Christoph Lameter24922682007-07-17 04:03:18 -07001065 object_err(s, page, object, "Object already free");
Christoph Lameter81819f02007-05-06 14:49:36 -07001066 goto fail;
1067 }
1068
Christoph Lameterf7cb1932010-09-29 07:15:01 -05001069 if (!check_object(s, page, object, SLUB_RED_ACTIVE))
Christoph Lameter5c2e4bb2011-06-01 12:25:54 -05001070 goto out;
Christoph Lameter81819f02007-05-06 14:49:36 -07001071
Glauber Costa1b4f59e32012-10-22 18:05:36 +04001072 if (unlikely(s != page->slab_cache)) {
Ingo Molnar3adbefe2008-02-05 17:57:39 -08001073 if (!PageSlab(page)) {
Christoph Lameter70d71222007-05-06 14:49:47 -07001074 slab_err(s, page, "Attempt to free object(0x%p) "
1075 "outside of slab", object);
Glauber Costa1b4f59e32012-10-22 18:05:36 +04001076 } else if (!page->slab_cache) {
Fabian Frederickf9f58282014-06-04 16:06:34 -07001077 pr_err("SLUB <none>: no slab for object 0x%p.\n",
1078 object);
Christoph Lameter70d71222007-05-06 14:49:47 -07001079 dump_stack();
Pekka Enberg06428782008-01-07 23:20:27 -08001080 } else
Christoph Lameter24922682007-07-17 04:03:18 -07001081 object_err(s, page, object,
1082 "page slab pointer corrupt.");
Christoph Lameter81819f02007-05-06 14:49:36 -07001083 goto fail;
1084 }
Christoph Lameter3ec09742007-05-16 22:11:00 -07001085
Christoph Lameter3ec09742007-05-16 22:11:00 -07001086 if (s->flags & SLAB_STORE_USER)
1087 set_track(s, object, TRACK_FREE, addr);
1088 trace(s, page, object, 0);
Christoph Lameterf7cb1932010-09-29 07:15:01 -05001089 init_object(s, object, SLUB_RED_INACTIVE);
Christoph Lameter5c2e4bb2011-06-01 12:25:54 -05001090out:
Christoph Lameter881db7f2011-06-01 12:25:53 -05001091 slab_unlock(page);
Christoph Lameter19c7ff92012-05-30 12:54:46 -05001092 /*
1093 * Keep node_lock to preserve integrity
1094 * until the object is actually freed
1095 */
1096 return n;
Christoph Lameter3ec09742007-05-16 22:11:00 -07001097
Christoph Lameter81819f02007-05-06 14:49:36 -07001098fail:
Christoph Lameter19c7ff92012-05-30 12:54:46 -05001099 slab_unlock(page);
1100 spin_unlock_irqrestore(&n->list_lock, *flags);
Christoph Lameter24922682007-07-17 04:03:18 -07001101 slab_fix(s, "Object at 0x%p not freed", object);
Christoph Lameter19c7ff92012-05-30 12:54:46 -05001102 return NULL;
Christoph Lameter81819f02007-05-06 14:49:36 -07001103}
1104
Christoph Lameter41ecc552007-05-09 02:32:44 -07001105static int __init setup_slub_debug(char *str)
1106{
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001107 slub_debug = DEBUG_DEFAULT_FLAGS;
1108 if (*str++ != '=' || !*str)
1109 /*
1110 * No options specified. Switch on full debugging.
1111 */
1112 goto out;
Christoph Lameter41ecc552007-05-09 02:32:44 -07001113
1114 if (*str == ',')
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001115 /*
1116 * No options but restriction on slabs. This means full
1117 * debugging for slabs matching a pattern.
1118 */
1119 goto check_slabs;
1120
David Rientjesfa5ec8a2009-07-07 00:14:14 -07001121 if (tolower(*str) == 'o') {
1122 /*
1123 * Avoid enabling debugging on caches if its minimum order
1124 * would increase as a result.
1125 */
1126 disable_higher_order_debug = 1;
1127 goto out;
1128 }
1129
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001130 slub_debug = 0;
1131 if (*str == '-')
1132 /*
1133 * Switch off all debugging measures.
1134 */
1135 goto out;
1136
1137 /*
1138 * Determine which debug features should be switched on
1139 */
Pekka Enberg06428782008-01-07 23:20:27 -08001140 for (; *str && *str != ','; str++) {
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001141 switch (tolower(*str)) {
1142 case 'f':
1143 slub_debug |= SLAB_DEBUG_FREE;
1144 break;
1145 case 'z':
1146 slub_debug |= SLAB_RED_ZONE;
1147 break;
1148 case 'p':
1149 slub_debug |= SLAB_POISON;
1150 break;
1151 case 'u':
1152 slub_debug |= SLAB_STORE_USER;
1153 break;
1154 case 't':
1155 slub_debug |= SLAB_TRACE;
1156 break;
Dmitry Monakhov4c13dd32010-02-26 09:36:12 +03001157 case 'a':
1158 slub_debug |= SLAB_FAILSLAB;
1159 break;
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001160 default:
Fabian Frederickf9f58282014-06-04 16:06:34 -07001161 pr_err("slub_debug option '%c' unknown. skipped\n",
1162 *str);
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001163 }
1164 }
1165
1166check_slabs:
1167 if (*str == ',')
Christoph Lameter41ecc552007-05-09 02:32:44 -07001168 slub_debug_slabs = str + 1;
Christoph Lameterf0630ff2007-07-15 23:38:14 -07001169out:
Christoph Lameter41ecc552007-05-09 02:32:44 -07001170 return 1;
1171}
1172
1173__setup("slub_debug", setup_slub_debug);
1174
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05001175static unsigned long kmem_cache_flags(unsigned long object_size,
Christoph Lameterba0268a2007-09-11 15:24:11 -07001176 unsigned long flags, const char *name,
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07001177 void (*ctor)(void *))
Christoph Lameter41ecc552007-05-09 02:32:44 -07001178{
1179 /*
Christoph Lametere1533622008-02-15 23:45:24 -08001180 * Enable debugging if selected on the kernel commandline.
Christoph Lameter41ecc552007-05-09 02:32:44 -07001181 */
Christoph Lameterc6f58d92013-11-07 16:29:15 +00001182 if (slub_debug && (!slub_debug_slabs || (name &&
1183 !strncmp(slub_debug_slabs, name, strlen(slub_debug_slabs)))))
David Rientjes3de47212009-07-27 18:30:35 -07001184 flags |= slub_debug;
Christoph Lameterba0268a2007-09-11 15:24:11 -07001185
1186 return flags;
Christoph Lameter41ecc552007-05-09 02:32:44 -07001187}
1188#else
Christoph Lameter3ec09742007-05-16 22:11:00 -07001189static inline void setup_object_debug(struct kmem_cache *s,
1190 struct page *page, void *object) {}
Christoph Lameter41ecc552007-05-09 02:32:44 -07001191
Christoph Lameter3ec09742007-05-16 22:11:00 -07001192static inline int alloc_debug_processing(struct kmem_cache *s,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03001193 struct page *page, void *object, unsigned long addr) { return 0; }
Christoph Lameter41ecc552007-05-09 02:32:44 -07001194
Christoph Lameter19c7ff92012-05-30 12:54:46 -05001195static inline struct kmem_cache_node *free_debug_processing(
1196 struct kmem_cache *s, struct page *page, void *object,
1197 unsigned long addr, unsigned long *flags) { return NULL; }
Christoph Lameter41ecc552007-05-09 02:32:44 -07001198
Christoph Lameter41ecc552007-05-09 02:32:44 -07001199static inline int slab_pad_check(struct kmem_cache *s, struct page *page)
1200 { return 1; }
1201static inline int check_object(struct kmem_cache *s, struct page *page,
Christoph Lameterf7cb1932010-09-29 07:15:01 -05001202 void *object, u8 val) { return 1; }
Christoph Lameter5cc6eee2011-06-01 12:25:50 -05001203static inline void add_full(struct kmem_cache *s, struct kmem_cache_node *n,
1204 struct page *page) {}
Peter Zijlstrac65c1872014-01-10 13:23:49 +01001205static inline void remove_full(struct kmem_cache *s, struct kmem_cache_node *n,
1206 struct page *page) {}
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05001207static inline unsigned long kmem_cache_flags(unsigned long object_size,
Christoph Lameterba0268a2007-09-11 15:24:11 -07001208 unsigned long flags, const char *name,
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07001209 void (*ctor)(void *))
Christoph Lameterba0268a2007-09-11 15:24:11 -07001210{
1211 return flags;
1212}
Christoph Lameter41ecc552007-05-09 02:32:44 -07001213#define slub_debug 0
Christoph Lameter0f389ec2008-04-14 18:53:02 +03001214
Ingo Molnarfdaa45e2009-09-15 11:00:26 +02001215#define disable_higher_order_debug 0
1216
Christoph Lameter0f389ec2008-04-14 18:53:02 +03001217static inline unsigned long slabs_node(struct kmem_cache *s, int node)
1218 { return 0; }
Alexander Beregalov26c02cf2009-06-11 14:08:48 +04001219static inline unsigned long node_nr_slabs(struct kmem_cache_node *n)
1220 { return 0; }
Christoph Lameter205ab992008-04-14 19:11:40 +03001221static inline void inc_slabs_node(struct kmem_cache *s, int node,
1222 int objects) {}
1223static inline void dec_slabs_node(struct kmem_cache *s, int node,
1224 int objects) {}
Christoph Lameter7d550c52010-08-25 14:07:16 -05001225
Andrey Ryabinin02e72cc2014-08-06 16:04:18 -07001226#endif /* CONFIG_SLUB_DEBUG */
1227
1228/*
1229 * Hooks for other subsystems that check memory allocations. In a typical
1230 * production configuration these hooks all should produce no code at all.
1231 */
Roman Bobnievd56791b2013-10-08 15:58:57 -07001232static inline void kmalloc_large_node_hook(void *ptr, size_t size, gfp_t flags)
1233{
1234 kmemleak_alloc(ptr, size, 1, flags);
1235}
1236
1237static inline void kfree_hook(const void *x)
1238{
1239 kmemleak_free(x);
1240}
1241
Christoph Lameter7d550c52010-08-25 14:07:16 -05001242static inline int slab_pre_alloc_hook(struct kmem_cache *s, gfp_t flags)
Roman Bobnievd56791b2013-10-08 15:58:57 -07001243{
Andrey Ryabinin02e72cc2014-08-06 16:04:18 -07001244 flags &= gfp_allowed_mask;
1245 lockdep_trace_alloc(flags);
1246 might_sleep_if(flags & __GFP_WAIT);
1247
1248 return should_failslab(s->object_size, flags, s->flags);
1249}
1250
1251static inline void slab_post_alloc_hook(struct kmem_cache *s,
1252 gfp_t flags, void *object)
1253{
1254 flags &= gfp_allowed_mask;
1255 kmemcheck_slab_alloc(s, flags, object, slab_ksize(s));
1256 kmemleak_alloc_recursive(object, s->object_size, 1, s->flags, flags);
Roman Bobnievd56791b2013-10-08 15:58:57 -07001257}
Christoph Lameter7d550c52010-08-25 14:07:16 -05001258
Roman Bobnievd56791b2013-10-08 15:58:57 -07001259static inline void slab_free_hook(struct kmem_cache *s, void *x)
1260{
1261 kmemleak_free_recursive(x, s->flags);
Christoph Lameter7d550c52010-08-25 14:07:16 -05001262
Andrey Ryabinin02e72cc2014-08-06 16:04:18 -07001263 /*
1264 * Trouble is that we may no longer disable interrupts in the fast path
1265 * So in order to make the debug calls that expect irqs to be
1266 * disabled we need to disable interrupts temporarily.
1267 */
1268#if defined(CONFIG_KMEMCHECK) || defined(CONFIG_LOCKDEP)
1269 {
1270 unsigned long flags;
1271
1272 local_irq_save(flags);
1273 kmemcheck_slab_free(s, x, s->object_size);
1274 debug_check_no_locks_freed(x, s->object_size);
1275 local_irq_restore(flags);
1276 }
1277#endif
1278 if (!(s->flags & SLAB_DEBUG_OBJECTS))
1279 debug_check_no_obj_freed(x, s->object_size);
1280}
Christoph Lameter205ab992008-04-14 19:11:40 +03001281
Christoph Lameter81819f02007-05-06 14:49:36 -07001282/*
1283 * Slab allocation and freeing
1284 */
Vladimir Davydov5dfb4172014-06-04 16:06:38 -07001285static inline struct page *alloc_slab_page(struct kmem_cache *s,
1286 gfp_t flags, int node, struct kmem_cache_order_objects oo)
Christoph Lameter65c33762008-04-14 19:11:40 +03001287{
Vladimir Davydov5dfb4172014-06-04 16:06:38 -07001288 struct page *page;
Christoph Lameter65c33762008-04-14 19:11:40 +03001289 int order = oo_order(oo);
1290
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001291 flags |= __GFP_NOTRACK;
1292
Vladimir Davydov5dfb4172014-06-04 16:06:38 -07001293 if (memcg_charge_slab(s, flags, order))
1294 return NULL;
1295
Christoph Lameter2154a332010-07-09 14:07:10 -05001296 if (node == NUMA_NO_NODE)
Vladimir Davydov5dfb4172014-06-04 16:06:38 -07001297 page = alloc_pages(flags, order);
Christoph Lameter65c33762008-04-14 19:11:40 +03001298 else
Vladimir Davydov5dfb4172014-06-04 16:06:38 -07001299 page = alloc_pages_exact_node(node, flags, order);
1300
1301 if (!page)
1302 memcg_uncharge_slab(s, order);
1303
1304 return page;
Christoph Lameter65c33762008-04-14 19:11:40 +03001305}
1306
Christoph Lameter81819f02007-05-06 14:49:36 -07001307static struct page *allocate_slab(struct kmem_cache *s, gfp_t flags, int node)
1308{
Pekka Enberg06428782008-01-07 23:20:27 -08001309 struct page *page;
Christoph Lameter834f3d12008-04-14 19:11:31 +03001310 struct kmem_cache_order_objects oo = s->oo;
Pekka Enbergba522702009-06-24 21:59:51 +03001311 gfp_t alloc_gfp;
Christoph Lameter81819f02007-05-06 14:49:36 -07001312
Christoph Lameter7e0528d2011-06-01 12:25:44 -05001313 flags &= gfp_allowed_mask;
1314
1315 if (flags & __GFP_WAIT)
1316 local_irq_enable();
1317
Christoph Lameterb7a49f02008-02-14 14:21:32 -08001318 flags |= s->allocflags;
Mel Gormane12ba742007-10-16 01:25:52 -07001319
Pekka Enbergba522702009-06-24 21:59:51 +03001320 /*
1321 * Let the initial higher-order allocation fail under memory pressure
1322 * so we fall-back to the minimum order allocation.
1323 */
1324 alloc_gfp = (flags | __GFP_NOWARN | __GFP_NORETRY) & ~__GFP_NOFAIL;
1325
Vladimir Davydov5dfb4172014-06-04 16:06:38 -07001326 page = alloc_slab_page(s, alloc_gfp, node, oo);
Christoph Lameter65c33762008-04-14 19:11:40 +03001327 if (unlikely(!page)) {
1328 oo = s->min;
Joonsoo Kim80c3a992014-03-12 17:26:20 +09001329 alloc_gfp = flags;
Christoph Lameter65c33762008-04-14 19:11:40 +03001330 /*
1331 * Allocation may have failed due to fragmentation.
1332 * Try a lower order alloc if possible
1333 */
Vladimir Davydov5dfb4172014-06-04 16:06:38 -07001334 page = alloc_slab_page(s, alloc_gfp, node, oo);
Christoph Lameter81819f02007-05-06 14:49:36 -07001335
Christoph Lameter7e0528d2011-06-01 12:25:44 -05001336 if (page)
1337 stat(s, ORDER_FALLBACK);
Christoph Lameter65c33762008-04-14 19:11:40 +03001338 }
Vegard Nossum5a896d92008-04-04 00:54:48 +02001339
David Rientjes737b7192012-07-09 14:00:38 -07001340 if (kmemcheck_enabled && page
Amerigo Wang5086c389c2009-08-19 21:44:13 +03001341 && !(s->flags & (SLAB_NOTRACK | DEBUG_DEFAULT_FLAGS))) {
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001342 int pages = 1 << oo_order(oo);
1343
Joonsoo Kim80c3a992014-03-12 17:26:20 +09001344 kmemcheck_alloc_shadow(page, oo_order(oo), alloc_gfp, node);
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001345
1346 /*
1347 * Objects from caches that have a constructor don't get
1348 * cleared when they're allocated, so we need to do it here.
1349 */
1350 if (s->ctor)
1351 kmemcheck_mark_uninitialized_pages(page, pages);
1352 else
1353 kmemcheck_mark_unallocated_pages(page, pages);
Vegard Nossum5a896d92008-04-04 00:54:48 +02001354 }
1355
David Rientjes737b7192012-07-09 14:00:38 -07001356 if (flags & __GFP_WAIT)
1357 local_irq_disable();
1358 if (!page)
1359 return NULL;
1360
Christoph Lameter834f3d12008-04-14 19:11:31 +03001361 page->objects = oo_objects(oo);
Christoph Lameter81819f02007-05-06 14:49:36 -07001362 mod_zone_page_state(page_zone(page),
1363 (s->flags & SLAB_RECLAIM_ACCOUNT) ?
1364 NR_SLAB_RECLAIMABLE : NR_SLAB_UNRECLAIMABLE,
Christoph Lameter65c33762008-04-14 19:11:40 +03001365 1 << oo_order(oo));
Christoph Lameter81819f02007-05-06 14:49:36 -07001366
1367 return page;
1368}
1369
1370static void setup_object(struct kmem_cache *s, struct page *page,
1371 void *object)
1372{
Christoph Lameter3ec09742007-05-16 22:11:00 -07001373 setup_object_debug(s, page, object);
Christoph Lameter4f104932007-05-06 14:50:17 -07001374 if (unlikely(s->ctor))
Alexey Dobriyan51cc5062008-07-25 19:45:34 -07001375 s->ctor(object);
Christoph Lameter81819f02007-05-06 14:49:36 -07001376}
1377
1378static struct page *new_slab(struct kmem_cache *s, gfp_t flags, int node)
1379{
1380 struct page *page;
Christoph Lameter81819f02007-05-06 14:49:36 -07001381 void *start;
Christoph Lameter81819f02007-05-06 14:49:36 -07001382 void *last;
1383 void *p;
Glauber Costa1f458cb2012-12-18 14:22:50 -08001384 int order;
Christoph Lameter81819f02007-05-06 14:49:36 -07001385
Christoph Lameter6cb06222007-10-16 01:25:41 -07001386 BUG_ON(flags & GFP_SLAB_BUG_MASK);
Christoph Lameter81819f02007-05-06 14:49:36 -07001387
Christoph Lameter6cb06222007-10-16 01:25:41 -07001388 page = allocate_slab(s,
1389 flags & (GFP_RECLAIM_MASK | GFP_CONSTRAINT_MASK), node);
Christoph Lameter81819f02007-05-06 14:49:36 -07001390 if (!page)
1391 goto out;
1392
Glauber Costa1f458cb2012-12-18 14:22:50 -08001393 order = compound_order(page);
Christoph Lameter205ab992008-04-14 19:11:40 +03001394 inc_slabs_node(s, page_to_nid(page), page->objects);
Glauber Costa1b4f59e32012-10-22 18:05:36 +04001395 page->slab_cache = s;
Joonsoo Kimc03f94c2012-05-18 00:47:47 +09001396 __SetPageSlab(page);
Mel Gorman072bb0a2012-07-31 16:43:58 -07001397 if (page->pfmemalloc)
1398 SetPageSlabPfmemalloc(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001399
1400 start = page_address(page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001401
1402 if (unlikely(s->flags & SLAB_POISON))
Glauber Costa1f458cb2012-12-18 14:22:50 -08001403 memset(start, POISON_INUSE, PAGE_SIZE << order);
Christoph Lameter81819f02007-05-06 14:49:36 -07001404
1405 last = start;
Christoph Lameter224a88b2008-04-14 19:11:31 +03001406 for_each_object(p, s, start, page->objects) {
Christoph Lameter81819f02007-05-06 14:49:36 -07001407 setup_object(s, page, last);
1408 set_freepointer(s, last, p);
1409 last = p;
1410 }
1411 setup_object(s, page, last);
Christoph Lametera973e9d2008-03-01 13:40:44 -08001412 set_freepointer(s, last, NULL);
Christoph Lameter81819f02007-05-06 14:49:36 -07001413
1414 page->freelist = start;
Christoph Lametere6e82ea2011-08-09 16:12:24 -05001415 page->inuse = page->objects;
Christoph Lameter8cb0a502011-06-01 12:25:46 -05001416 page->frozen = 1;
Christoph Lameter81819f02007-05-06 14:49:36 -07001417out:
Christoph Lameter81819f02007-05-06 14:49:36 -07001418 return page;
1419}
1420
1421static void __free_slab(struct kmem_cache *s, struct page *page)
1422{
Christoph Lameter834f3d12008-04-14 19:11:31 +03001423 int order = compound_order(page);
1424 int pages = 1 << order;
Christoph Lameter81819f02007-05-06 14:49:36 -07001425
Christoph Lameteraf537b02010-07-09 14:07:14 -05001426 if (kmem_cache_debug(s)) {
Christoph Lameter81819f02007-05-06 14:49:36 -07001427 void *p;
1428
1429 slab_pad_check(s, page);
Christoph Lameter224a88b2008-04-14 19:11:31 +03001430 for_each_object(p, s, page_address(page),
1431 page->objects)
Christoph Lameterf7cb1932010-09-29 07:15:01 -05001432 check_object(s, page, p, SLUB_RED_INACTIVE);
Christoph Lameter81819f02007-05-06 14:49:36 -07001433 }
1434
Vegard Nossumb1eeab62008-11-25 16:55:53 +01001435 kmemcheck_free_shadow(page, compound_order(page));
Vegard Nossum5a896d92008-04-04 00:54:48 +02001436
Christoph Lameter81819f02007-05-06 14:49:36 -07001437 mod_zone_page_state(page_zone(page),
1438 (s->flags & SLAB_RECLAIM_ACCOUNT) ?
1439 NR_SLAB_RECLAIMABLE : NR_SLAB_UNRECLAIMABLE,
Pekka Enberg06428782008-01-07 23:20:27 -08001440 -pages);
Christoph Lameter81819f02007-05-06 14:49:36 -07001441
Mel Gorman072bb0a2012-07-31 16:43:58 -07001442 __ClearPageSlabPfmemalloc(page);
Christoph Lameter49bd5222008-04-14 18:52:18 +03001443 __ClearPageSlab(page);
Glauber Costa1f458cb2012-12-18 14:22:50 -08001444
Mel Gorman22b751c2013-02-22 16:34:59 -08001445 page_mapcount_reset(page);
Nick Piggin1eb5ac62009-05-05 19:13:44 +10001446 if (current->reclaim_state)
1447 current->reclaim_state->reclaimed_slab += pages;
Vladimir Davydov5dfb4172014-06-04 16:06:38 -07001448 __free_pages(page, order);
1449 memcg_uncharge_slab(s, order);
Christoph Lameter81819f02007-05-06 14:49:36 -07001450}
1451
Lai Jiangshanda9a6382011-03-10 15:22:00 +08001452#define need_reserve_slab_rcu \
1453 (sizeof(((struct page *)NULL)->lru) < sizeof(struct rcu_head))
1454
Christoph Lameter81819f02007-05-06 14:49:36 -07001455static void rcu_free_slab(struct rcu_head *h)
1456{
1457 struct page *page;
1458
Lai Jiangshanda9a6382011-03-10 15:22:00 +08001459 if (need_reserve_slab_rcu)
1460 page = virt_to_head_page(h);
1461 else
1462 page = container_of((struct list_head *)h, struct page, lru);
1463
Glauber Costa1b4f59e32012-10-22 18:05:36 +04001464 __free_slab(page->slab_cache, page);
Christoph Lameter81819f02007-05-06 14:49:36 -07001465}
1466
1467static void free_slab(struct kmem_cache *s, struct page *page)
1468{
1469 if (unlikely(s->flags & SLAB_DESTROY_BY_RCU)) {
Lai Jiangshanda9a6382011-03-10 15:22:00 +08001470 struct rcu_head *head;
1471
1472 if (need_reserve_slab_rcu) {
1473 int order = compound_order(page);
1474 int offset = (PAGE_SIZE << order) - s->reserved;
1475
1476 VM_BUG_ON(s->reserved != sizeof(*head));
1477 head = page_address(page) + offset;
1478 } else {
1479 /*
1480 * RCU free overloads the RCU head over the LRU
1481 */
1482 head = (void *)&page->lru;
1483 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001484
1485 call_rcu(head, rcu_free_slab);
1486 } else
1487 __free_slab(s, page);
1488}
1489
1490static void discard_slab(struct kmem_cache *s, struct page *page)
1491{
Christoph Lameter205ab992008-04-14 19:11:40 +03001492 dec_slabs_node(s, page_to_nid(page), page->objects);
Christoph Lameter81819f02007-05-06 14:49:36 -07001493 free_slab(s, page);
1494}
1495
1496/*
Christoph Lameter5cc6eee2011-06-01 12:25:50 -05001497 * Management of partially allocated slabs.
Christoph Lameter81819f02007-05-06 14:49:36 -07001498 */
Steven Rostedt1e4dd942014-02-10 14:25:46 -08001499static inline void
1500__add_partial(struct kmem_cache_node *n, struct page *page, int tail)
Christoph Lameter81819f02007-05-06 14:49:36 -07001501{
Christoph Lametere95eed52007-05-06 14:49:44 -07001502 n->nr_partial++;
Shaohua Li136333d2011-08-24 08:57:52 +08001503 if (tail == DEACTIVATE_TO_TAIL)
Christoph Lameter7c2e1322008-01-07 23:20:27 -08001504 list_add_tail(&page->lru, &n->partial);
1505 else
1506 list_add(&page->lru, &n->partial);
Christoph Lameter81819f02007-05-06 14:49:36 -07001507}
1508
Steven Rostedt1e4dd942014-02-10 14:25:46 -08001509static inline void add_partial(struct kmem_cache_node *n,
1510 struct page *page, int tail)
1511{
1512 lockdep_assert_held(&n->list_lock);
1513 __add_partial(n, page, tail);
1514}
1515
1516static inline void
1517__remove_partial(struct kmem_cache_node *n, struct page *page)
1518{
1519 list_del(&page->lru);
1520 n->nr_partial--;
1521}
1522
Christoph Lameter5cc6eee2011-06-01 12:25:50 -05001523static inline void remove_partial(struct kmem_cache_node *n,
Christoph Lameter62e346a2010-09-28 08:10:28 -05001524 struct page *page)
1525{
Peter Zijlstrac65c1872014-01-10 13:23:49 +01001526 lockdep_assert_held(&n->list_lock);
Steven Rostedt1e4dd942014-02-10 14:25:46 -08001527 __remove_partial(n, page);
Christoph Lameter62e346a2010-09-28 08:10:28 -05001528}
1529
Christoph Lameter81819f02007-05-06 14:49:36 -07001530/*
Christoph Lameter7ced3712012-05-09 10:09:53 -05001531 * Remove slab from the partial list, freeze it and
1532 * return the pointer to the freelist.
Christoph Lameter81819f02007-05-06 14:49:36 -07001533 *
Christoph Lameter497b66f2011-08-09 16:12:26 -05001534 * Returns a list of objects or NULL if it fails.
Christoph Lameter81819f02007-05-06 14:49:36 -07001535 */
Christoph Lameter497b66f2011-08-09 16:12:26 -05001536static inline void *acquire_slab(struct kmem_cache *s,
Christoph Lameteracd19fd2011-08-09 16:12:25 -05001537 struct kmem_cache_node *n, struct page *page,
Joonsoo Kim633b0762013-01-21 17:01:25 +09001538 int mode, int *objects)
Christoph Lameter81819f02007-05-06 14:49:36 -07001539{
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001540 void *freelist;
1541 unsigned long counters;
1542 struct page new;
1543
Peter Zijlstrac65c1872014-01-10 13:23:49 +01001544 lockdep_assert_held(&n->list_lock);
1545
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001546 /*
1547 * Zap the freelist and set the frozen bit.
1548 * The old freelist is the list of objects for the
1549 * per cpu allocation list.
1550 */
Christoph Lameter7ced3712012-05-09 10:09:53 -05001551 freelist = page->freelist;
1552 counters = page->counters;
1553 new.counters = counters;
Joonsoo Kim633b0762013-01-21 17:01:25 +09001554 *objects = new.objects - new.inuse;
Pekka Enberg23910c52012-06-04 10:14:58 +03001555 if (mode) {
Christoph Lameter7ced3712012-05-09 10:09:53 -05001556 new.inuse = page->objects;
Pekka Enberg23910c52012-06-04 10:14:58 +03001557 new.freelist = NULL;
1558 } else {
1559 new.freelist = freelist;
1560 }
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001561
Dave Hansena0132ac2014-01-29 14:05:50 -08001562 VM_BUG_ON(new.frozen);
Christoph Lameter7ced3712012-05-09 10:09:53 -05001563 new.frozen = 1;
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001564
Christoph Lameter7ced3712012-05-09 10:09:53 -05001565 if (!__cmpxchg_double_slab(s, page,
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001566 freelist, counters,
Joonsoo Kim02d76332012-05-17 00:13:02 +09001567 new.freelist, new.counters,
Christoph Lameter7ced3712012-05-09 10:09:53 -05001568 "acquire_slab"))
Christoph Lameter7ced3712012-05-09 10:09:53 -05001569 return NULL;
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001570
1571 remove_partial(n, page);
Christoph Lameter7ced3712012-05-09 10:09:53 -05001572 WARN_ON(!freelist);
Christoph Lameter49e22582011-08-09 16:12:27 -05001573 return freelist;
Christoph Lameter81819f02007-05-06 14:49:36 -07001574}
1575
Joonsoo Kim633b0762013-01-21 17:01:25 +09001576static void put_cpu_partial(struct kmem_cache *s, struct page *page, int drain);
Joonsoo Kim8ba00bb2012-09-17 14:09:09 -07001577static inline bool pfmemalloc_match(struct page *page, gfp_t gfpflags);
Christoph Lameter49e22582011-08-09 16:12:27 -05001578
Christoph Lameter81819f02007-05-06 14:49:36 -07001579/*
Christoph Lameter672bba32007-05-09 02:32:39 -07001580 * Try to allocate a partial slab from a specific node.
Christoph Lameter81819f02007-05-06 14:49:36 -07001581 */
Joonsoo Kim8ba00bb2012-09-17 14:09:09 -07001582static void *get_partial_node(struct kmem_cache *s, struct kmem_cache_node *n,
1583 struct kmem_cache_cpu *c, gfp_t flags)
Christoph Lameter81819f02007-05-06 14:49:36 -07001584{
Christoph Lameter49e22582011-08-09 16:12:27 -05001585 struct page *page, *page2;
1586 void *object = NULL;
Joonsoo Kim633b0762013-01-21 17:01:25 +09001587 int available = 0;
1588 int objects;
Christoph Lameter81819f02007-05-06 14:49:36 -07001589
1590 /*
1591 * Racy check. If we mistakenly see no partial slabs then we
1592 * just allocate an empty slab. If we mistakenly try to get a
Christoph Lameter672bba32007-05-09 02:32:39 -07001593 * partial slab and there is none available then get_partials()
1594 * will return NULL.
Christoph Lameter81819f02007-05-06 14:49:36 -07001595 */
1596 if (!n || !n->nr_partial)
1597 return NULL;
1598
1599 spin_lock(&n->list_lock);
Christoph Lameter49e22582011-08-09 16:12:27 -05001600 list_for_each_entry_safe(page, page2, &n->partial, lru) {
Joonsoo Kim8ba00bb2012-09-17 14:09:09 -07001601 void *t;
Christoph Lameter49e22582011-08-09 16:12:27 -05001602
Joonsoo Kim8ba00bb2012-09-17 14:09:09 -07001603 if (!pfmemalloc_match(page, flags))
1604 continue;
1605
Joonsoo Kim633b0762013-01-21 17:01:25 +09001606 t = acquire_slab(s, n, page, object == NULL, &objects);
Christoph Lameter49e22582011-08-09 16:12:27 -05001607 if (!t)
1608 break;
1609
Joonsoo Kim633b0762013-01-21 17:01:25 +09001610 available += objects;
Alex,Shi12d79632011-09-07 10:26:36 +08001611 if (!object) {
Christoph Lameter49e22582011-08-09 16:12:27 -05001612 c->page = page;
Christoph Lameter49e22582011-08-09 16:12:27 -05001613 stat(s, ALLOC_FROM_PARTIAL);
Christoph Lameter49e22582011-08-09 16:12:27 -05001614 object = t;
Christoph Lameter49e22582011-08-09 16:12:27 -05001615 } else {
Joonsoo Kim633b0762013-01-21 17:01:25 +09001616 put_cpu_partial(s, page, 0);
Alex Shi8028dce2012-02-03 23:34:56 +08001617 stat(s, CPU_PARTIAL_NODE);
Christoph Lameter49e22582011-08-09 16:12:27 -05001618 }
Joonsoo Kim345c9052013-06-19 14:05:52 +09001619 if (!kmem_cache_has_cpu_partial(s)
1620 || available > s->cpu_partial / 2)
Christoph Lameter49e22582011-08-09 16:12:27 -05001621 break;
1622
Christoph Lameter497b66f2011-08-09 16:12:26 -05001623 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001624 spin_unlock(&n->list_lock);
Christoph Lameter497b66f2011-08-09 16:12:26 -05001625 return object;
Christoph Lameter81819f02007-05-06 14:49:36 -07001626}
1627
1628/*
Christoph Lameter672bba32007-05-09 02:32:39 -07001629 * Get a page from somewhere. Search in increasing NUMA distances.
Christoph Lameter81819f02007-05-06 14:49:36 -07001630 */
Joonsoo Kimde3ec032012-01-27 00:12:23 -08001631static void *get_any_partial(struct kmem_cache *s, gfp_t flags,
Christoph Lameteracd19fd2011-08-09 16:12:25 -05001632 struct kmem_cache_cpu *c)
Christoph Lameter81819f02007-05-06 14:49:36 -07001633{
1634#ifdef CONFIG_NUMA
1635 struct zonelist *zonelist;
Mel Gormandd1a2392008-04-28 02:12:17 -07001636 struct zoneref *z;
Mel Gorman54a6eb52008-04-28 02:12:16 -07001637 struct zone *zone;
1638 enum zone_type high_zoneidx = gfp_zone(flags);
Christoph Lameter497b66f2011-08-09 16:12:26 -05001639 void *object;
Mel Gormancc9a6c82012-03-21 16:34:11 -07001640 unsigned int cpuset_mems_cookie;
Christoph Lameter81819f02007-05-06 14:49:36 -07001641
1642 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07001643 * The defrag ratio allows a configuration of the tradeoffs between
1644 * inter node defragmentation and node local allocations. A lower
1645 * defrag_ratio increases the tendency to do local allocations
1646 * instead of attempting to obtain partial slabs from other nodes.
Christoph Lameter81819f02007-05-06 14:49:36 -07001647 *
Christoph Lameter672bba32007-05-09 02:32:39 -07001648 * If the defrag_ratio is set to 0 then kmalloc() always
1649 * returns node local objects. If the ratio is higher then kmalloc()
1650 * may return off node objects because partial slabs are obtained
1651 * from other nodes and filled up.
Christoph Lameter81819f02007-05-06 14:49:36 -07001652 *
Christoph Lameter6446faa2008-02-15 23:45:26 -08001653 * If /sys/kernel/slab/xx/defrag_ratio is set to 100 (which makes
Christoph Lameter672bba32007-05-09 02:32:39 -07001654 * defrag_ratio = 1000) then every (well almost) allocation will
1655 * first attempt to defrag slab caches on other nodes. This means
1656 * scanning over all nodes to look for partial slabs which may be
1657 * expensive if we do it every time we are trying to find a slab
1658 * with available objects.
Christoph Lameter81819f02007-05-06 14:49:36 -07001659 */
Christoph Lameter98246012008-01-07 23:20:26 -08001660 if (!s->remote_node_defrag_ratio ||
1661 get_cycles() % 1024 > s->remote_node_defrag_ratio)
Christoph Lameter81819f02007-05-06 14:49:36 -07001662 return NULL;
1663
Mel Gormancc9a6c82012-03-21 16:34:11 -07001664 do {
Mel Gormand26914d2014-04-03 14:47:24 -07001665 cpuset_mems_cookie = read_mems_allowed_begin();
David Rientjes2a389612014-04-07 15:37:29 -07001666 zonelist = node_zonelist(mempolicy_slab_node(), flags);
Mel Gormancc9a6c82012-03-21 16:34:11 -07001667 for_each_zone_zonelist(zone, z, zonelist, high_zoneidx) {
1668 struct kmem_cache_node *n;
Christoph Lameter81819f02007-05-06 14:49:36 -07001669
Mel Gormancc9a6c82012-03-21 16:34:11 -07001670 n = get_node(s, zone_to_nid(zone));
Christoph Lameter81819f02007-05-06 14:49:36 -07001671
Mel Gormancc9a6c82012-03-21 16:34:11 -07001672 if (n && cpuset_zone_allowed_hardwall(zone, flags) &&
1673 n->nr_partial > s->min_partial) {
Joonsoo Kim8ba00bb2012-09-17 14:09:09 -07001674 object = get_partial_node(s, n, c, flags);
Mel Gormancc9a6c82012-03-21 16:34:11 -07001675 if (object) {
1676 /*
Mel Gormand26914d2014-04-03 14:47:24 -07001677 * Don't check read_mems_allowed_retry()
1678 * here - if mems_allowed was updated in
1679 * parallel, that was a harmless race
1680 * between allocation and the cpuset
1681 * update
Mel Gormancc9a6c82012-03-21 16:34:11 -07001682 */
Mel Gormancc9a6c82012-03-21 16:34:11 -07001683 return object;
1684 }
Miao Xiec0ff7452010-05-24 14:32:08 -07001685 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001686 }
Mel Gormand26914d2014-04-03 14:47:24 -07001687 } while (read_mems_allowed_retry(cpuset_mems_cookie));
Christoph Lameter81819f02007-05-06 14:49:36 -07001688#endif
1689 return NULL;
1690}
1691
1692/*
1693 * Get a partial page, lock it and return it.
1694 */
Christoph Lameter497b66f2011-08-09 16:12:26 -05001695static void *get_partial(struct kmem_cache *s, gfp_t flags, int node,
Christoph Lameteracd19fd2011-08-09 16:12:25 -05001696 struct kmem_cache_cpu *c)
Christoph Lameter81819f02007-05-06 14:49:36 -07001697{
Christoph Lameter497b66f2011-08-09 16:12:26 -05001698 void *object;
Joonsoo Kim844e4d62014-06-06 14:35:36 -07001699 int searchnode = (node == NUMA_NO_NODE) ? numa_mem_id() : node;
Christoph Lameter81819f02007-05-06 14:49:36 -07001700
Joonsoo Kim8ba00bb2012-09-17 14:09:09 -07001701 object = get_partial_node(s, get_node(s, searchnode), c, flags);
Christoph Lameter497b66f2011-08-09 16:12:26 -05001702 if (object || node != NUMA_NO_NODE)
1703 return object;
Christoph Lameter81819f02007-05-06 14:49:36 -07001704
Christoph Lameteracd19fd2011-08-09 16:12:25 -05001705 return get_any_partial(s, flags, c);
Christoph Lameter81819f02007-05-06 14:49:36 -07001706}
1707
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06001708#ifdef CONFIG_PREEMPT
1709/*
1710 * Calculate the next globally unique transaction for disambiguiation
1711 * during cmpxchg. The transactions start with the cpu number and are then
1712 * incremented by CONFIG_NR_CPUS.
1713 */
1714#define TID_STEP roundup_pow_of_two(CONFIG_NR_CPUS)
1715#else
1716/*
1717 * No preemption supported therefore also no need to check for
1718 * different cpus.
1719 */
1720#define TID_STEP 1
1721#endif
1722
1723static inline unsigned long next_tid(unsigned long tid)
1724{
1725 return tid + TID_STEP;
1726}
1727
1728static inline unsigned int tid_to_cpu(unsigned long tid)
1729{
1730 return tid % TID_STEP;
1731}
1732
1733static inline unsigned long tid_to_event(unsigned long tid)
1734{
1735 return tid / TID_STEP;
1736}
1737
1738static inline unsigned int init_tid(int cpu)
1739{
1740 return cpu;
1741}
1742
1743static inline void note_cmpxchg_failure(const char *n,
1744 const struct kmem_cache *s, unsigned long tid)
1745{
1746#ifdef SLUB_DEBUG_CMPXCHG
1747 unsigned long actual_tid = __this_cpu_read(s->cpu_slab->tid);
1748
Fabian Frederickf9f58282014-06-04 16:06:34 -07001749 pr_info("%s %s: cmpxchg redo ", n, s->name);
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06001750
1751#ifdef CONFIG_PREEMPT
1752 if (tid_to_cpu(tid) != tid_to_cpu(actual_tid))
Fabian Frederickf9f58282014-06-04 16:06:34 -07001753 pr_warn("due to cpu change %d -> %d\n",
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06001754 tid_to_cpu(tid), tid_to_cpu(actual_tid));
1755 else
1756#endif
1757 if (tid_to_event(tid) != tid_to_event(actual_tid))
Fabian Frederickf9f58282014-06-04 16:06:34 -07001758 pr_warn("due to cpu running other code. Event %ld->%ld\n",
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06001759 tid_to_event(tid), tid_to_event(actual_tid));
1760 else
Fabian Frederickf9f58282014-06-04 16:06:34 -07001761 pr_warn("for unknown reason: actual=%lx was=%lx target=%lx\n",
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06001762 actual_tid, tid, next_tid(tid));
1763#endif
Christoph Lameter4fdccdf2011-03-22 13:35:00 -05001764 stat(s, CMPXCHG_DOUBLE_CPU_FAIL);
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06001765}
1766
Fengguang Wu788e1aa2012-09-28 16:34:05 +08001767static void init_kmem_cache_cpus(struct kmem_cache *s)
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06001768{
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06001769 int cpu;
1770
1771 for_each_possible_cpu(cpu)
1772 per_cpu_ptr(s->cpu_slab, cpu)->tid = init_tid(cpu);
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06001773}
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001774
1775/*
1776 * Remove the cpu slab
1777 */
Chen Gangd0e0ac92013-07-15 09:05:29 +08001778static void deactivate_slab(struct kmem_cache *s, struct page *page,
1779 void *freelist)
Christoph Lameter81819f02007-05-06 14:49:36 -07001780{
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001781 enum slab_modes { M_NONE, M_PARTIAL, M_FULL, M_FREE };
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001782 struct kmem_cache_node *n = get_node(s, page_to_nid(page));
1783 int lock = 0;
1784 enum slab_modes l = M_NONE, m = M_NONE;
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001785 void *nextfree;
Shaohua Li136333d2011-08-24 08:57:52 +08001786 int tail = DEACTIVATE_TO_HEAD;
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001787 struct page new;
1788 struct page old;
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08001789
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001790 if (page->freelist) {
Christoph Lameter84e554e62009-12-18 16:26:23 -06001791 stat(s, DEACTIVATE_REMOTE_FREES);
Shaohua Li136333d2011-08-24 08:57:52 +08001792 tail = DEACTIVATE_TO_TAIL;
Christoph Lameter894b8782007-05-10 03:15:16 -07001793 }
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001794
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001795 /*
1796 * Stage one: Free all available per cpu objects back
1797 * to the page freelist while it is still frozen. Leave the
1798 * last one.
1799 *
1800 * There is no need to take the list->lock because the page
1801 * is still frozen.
1802 */
1803 while (freelist && (nextfree = get_freepointer(s, freelist))) {
1804 void *prior;
1805 unsigned long counters;
1806
1807 do {
1808 prior = page->freelist;
1809 counters = page->counters;
1810 set_freepointer(s, freelist, prior);
1811 new.counters = counters;
1812 new.inuse--;
Dave Hansena0132ac2014-01-29 14:05:50 -08001813 VM_BUG_ON(!new.frozen);
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001814
Christoph Lameter1d071712011-07-14 12:49:12 -05001815 } while (!__cmpxchg_double_slab(s, page,
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001816 prior, counters,
1817 freelist, new.counters,
1818 "drain percpu freelist"));
1819
1820 freelist = nextfree;
1821 }
1822
1823 /*
1824 * Stage two: Ensure that the page is unfrozen while the
1825 * list presence reflects the actual number of objects
1826 * during unfreeze.
1827 *
1828 * We setup the list membership and then perform a cmpxchg
1829 * with the count. If there is a mismatch then the page
1830 * is not unfrozen but the page is on the wrong list.
1831 *
1832 * Then we restart the process which may have to remove
1833 * the page from the list that we just put it on again
1834 * because the number of objects in the slab may have
1835 * changed.
1836 */
1837redo:
1838
1839 old.freelist = page->freelist;
1840 old.counters = page->counters;
Dave Hansena0132ac2014-01-29 14:05:50 -08001841 VM_BUG_ON(!old.frozen);
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001842
1843 /* Determine target state of the slab */
1844 new.counters = old.counters;
1845 if (freelist) {
1846 new.inuse--;
1847 set_freepointer(s, freelist, old.freelist);
1848 new.freelist = freelist;
1849 } else
1850 new.freelist = old.freelist;
1851
1852 new.frozen = 0;
1853
Joonsoo Kim8a5b20a2014-07-02 15:22:35 -07001854 if (!new.inuse && n->nr_partial >= s->min_partial)
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001855 m = M_FREE;
1856 else if (new.freelist) {
1857 m = M_PARTIAL;
1858 if (!lock) {
1859 lock = 1;
1860 /*
1861 * Taking the spinlock removes the possiblity
1862 * that acquire_slab() will see a slab page that
1863 * is frozen
1864 */
1865 spin_lock(&n->list_lock);
1866 }
1867 } else {
1868 m = M_FULL;
1869 if (kmem_cache_debug(s) && !lock) {
1870 lock = 1;
1871 /*
1872 * This also ensures that the scanning of full
1873 * slabs from diagnostic functions will not see
1874 * any frozen slabs.
1875 */
1876 spin_lock(&n->list_lock);
1877 }
1878 }
1879
1880 if (l != m) {
1881
1882 if (l == M_PARTIAL)
1883
1884 remove_partial(n, page);
1885
1886 else if (l == M_FULL)
1887
Peter Zijlstrac65c1872014-01-10 13:23:49 +01001888 remove_full(s, n, page);
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001889
1890 if (m == M_PARTIAL) {
1891
1892 add_partial(n, page, tail);
Shaohua Li136333d2011-08-24 08:57:52 +08001893 stat(s, tail);
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001894
1895 } else if (m == M_FULL) {
1896
1897 stat(s, DEACTIVATE_FULL);
1898 add_full(s, n, page);
1899
1900 }
1901 }
1902
1903 l = m;
Christoph Lameter1d071712011-07-14 12:49:12 -05001904 if (!__cmpxchg_double_slab(s, page,
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001905 old.freelist, old.counters,
1906 new.freelist, new.counters,
1907 "unfreezing slab"))
1908 goto redo;
1909
Christoph Lameter2cfb7452011-06-01 12:25:52 -05001910 if (lock)
1911 spin_unlock(&n->list_lock);
1912
1913 if (m == M_FREE) {
1914 stat(s, DEACTIVATE_EMPTY);
1915 discard_slab(s, page);
1916 stat(s, FREE_SLAB);
1917 }
Christoph Lameter81819f02007-05-06 14:49:36 -07001918}
1919
Joonsoo Kimd24ac772012-05-18 22:01:17 +09001920/*
1921 * Unfreeze all the cpu partial slabs.
1922 *
Christoph Lameter59a09912012-11-28 16:23:00 +00001923 * This function must be called with interrupts disabled
1924 * for the cpu using c (or some other guarantee must be there
1925 * to guarantee no concurrent accesses).
Joonsoo Kimd24ac772012-05-18 22:01:17 +09001926 */
Christoph Lameter59a09912012-11-28 16:23:00 +00001927static void unfreeze_partials(struct kmem_cache *s,
1928 struct kmem_cache_cpu *c)
Christoph Lameter49e22582011-08-09 16:12:27 -05001929{
Joonsoo Kim345c9052013-06-19 14:05:52 +09001930#ifdef CONFIG_SLUB_CPU_PARTIAL
Joonsoo Kim43d77862012-06-09 02:23:16 +09001931 struct kmem_cache_node *n = NULL, *n2 = NULL;
Shaohua Li9ada1932011-11-14 13:34:13 +08001932 struct page *page, *discard_page = NULL;
Christoph Lameter49e22582011-08-09 16:12:27 -05001933
1934 while ((page = c->partial)) {
Christoph Lameter49e22582011-08-09 16:12:27 -05001935 struct page new;
1936 struct page old;
1937
1938 c->partial = page->next;
Joonsoo Kim43d77862012-06-09 02:23:16 +09001939
1940 n2 = get_node(s, page_to_nid(page));
1941 if (n != n2) {
1942 if (n)
1943 spin_unlock(&n->list_lock);
1944
1945 n = n2;
1946 spin_lock(&n->list_lock);
1947 }
Christoph Lameter49e22582011-08-09 16:12:27 -05001948
1949 do {
1950
1951 old.freelist = page->freelist;
1952 old.counters = page->counters;
Dave Hansena0132ac2014-01-29 14:05:50 -08001953 VM_BUG_ON(!old.frozen);
Christoph Lameter49e22582011-08-09 16:12:27 -05001954
1955 new.counters = old.counters;
1956 new.freelist = old.freelist;
1957
1958 new.frozen = 0;
1959
Joonsoo Kimd24ac772012-05-18 22:01:17 +09001960 } while (!__cmpxchg_double_slab(s, page,
Christoph Lameter49e22582011-08-09 16:12:27 -05001961 old.freelist, old.counters,
1962 new.freelist, new.counters,
1963 "unfreezing slab"));
1964
Joonsoo Kim8a5b20a2014-07-02 15:22:35 -07001965 if (unlikely(!new.inuse && n->nr_partial >= s->min_partial)) {
Shaohua Li9ada1932011-11-14 13:34:13 +08001966 page->next = discard_page;
1967 discard_page = page;
Joonsoo Kim43d77862012-06-09 02:23:16 +09001968 } else {
1969 add_partial(n, page, DEACTIVATE_TO_TAIL);
1970 stat(s, FREE_ADD_PARTIAL);
Christoph Lameter49e22582011-08-09 16:12:27 -05001971 }
1972 }
1973
1974 if (n)
1975 spin_unlock(&n->list_lock);
Shaohua Li9ada1932011-11-14 13:34:13 +08001976
1977 while (discard_page) {
1978 page = discard_page;
1979 discard_page = discard_page->next;
1980
1981 stat(s, DEACTIVATE_EMPTY);
1982 discard_slab(s, page);
1983 stat(s, FREE_SLAB);
1984 }
Joonsoo Kim345c9052013-06-19 14:05:52 +09001985#endif
Christoph Lameter49e22582011-08-09 16:12:27 -05001986}
1987
1988/*
1989 * Put a page that was just frozen (in __slab_free) into a partial page
1990 * slot if available. This is done without interrupts disabled and without
1991 * preemption disabled. The cmpxchg is racy and may put the partial page
1992 * onto a random cpus partial slot.
1993 *
1994 * If we did not find a slot then simply move all the partials to the
1995 * per node partial list.
1996 */
Joonsoo Kim633b0762013-01-21 17:01:25 +09001997static void put_cpu_partial(struct kmem_cache *s, struct page *page, int drain)
Christoph Lameter49e22582011-08-09 16:12:27 -05001998{
Joonsoo Kim345c9052013-06-19 14:05:52 +09001999#ifdef CONFIG_SLUB_CPU_PARTIAL
Christoph Lameter49e22582011-08-09 16:12:27 -05002000 struct page *oldpage;
2001 int pages;
2002 int pobjects;
2003
2004 do {
2005 pages = 0;
2006 pobjects = 0;
2007 oldpage = this_cpu_read(s->cpu_slab->partial);
2008
2009 if (oldpage) {
2010 pobjects = oldpage->pobjects;
2011 pages = oldpage->pages;
2012 if (drain && pobjects > s->cpu_partial) {
2013 unsigned long flags;
2014 /*
2015 * partial array is full. Move the existing
2016 * set to the per node partial list.
2017 */
2018 local_irq_save(flags);
Christoph Lameter59a09912012-11-28 16:23:00 +00002019 unfreeze_partials(s, this_cpu_ptr(s->cpu_slab));
Christoph Lameter49e22582011-08-09 16:12:27 -05002020 local_irq_restore(flags);
Joonsoo Kime24fc412012-06-23 03:22:38 +09002021 oldpage = NULL;
Christoph Lameter49e22582011-08-09 16:12:27 -05002022 pobjects = 0;
2023 pages = 0;
Alex Shi8028dce2012-02-03 23:34:56 +08002024 stat(s, CPU_PARTIAL_DRAIN);
Christoph Lameter49e22582011-08-09 16:12:27 -05002025 }
2026 }
2027
2028 pages++;
2029 pobjects += page->objects - page->inuse;
2030
2031 page->pages = pages;
2032 page->pobjects = pobjects;
2033 page->next = oldpage;
2034
Chen Gangd0e0ac92013-07-15 09:05:29 +08002035 } while (this_cpu_cmpxchg(s->cpu_slab->partial, oldpage, page)
2036 != oldpage);
Joonsoo Kim345c9052013-06-19 14:05:52 +09002037#endif
Christoph Lameter49e22582011-08-09 16:12:27 -05002038}
2039
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002040static inline void flush_slab(struct kmem_cache *s, struct kmem_cache_cpu *c)
Christoph Lameter81819f02007-05-06 14:49:36 -07002041{
Christoph Lameter84e554e62009-12-18 16:26:23 -06002042 stat(s, CPUSLAB_FLUSH);
Christoph Lameterc17dda42012-05-09 10:09:57 -05002043 deactivate_slab(s, c->page, c->freelist);
2044
2045 c->tid = next_tid(c->tid);
2046 c->page = NULL;
2047 c->freelist = NULL;
Christoph Lameter81819f02007-05-06 14:49:36 -07002048}
2049
2050/*
2051 * Flush cpu slab.
Christoph Lameter6446faa2008-02-15 23:45:26 -08002052 *
Christoph Lameter81819f02007-05-06 14:49:36 -07002053 * Called from IPI handler with interrupts disabled.
2054 */
Christoph Lameter0c710012007-07-17 04:03:24 -07002055static inline void __flush_cpu_slab(struct kmem_cache *s, int cpu)
Christoph Lameter81819f02007-05-06 14:49:36 -07002056{
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06002057 struct kmem_cache_cpu *c = per_cpu_ptr(s->cpu_slab, cpu);
Christoph Lameter81819f02007-05-06 14:49:36 -07002058
Christoph Lameter49e22582011-08-09 16:12:27 -05002059 if (likely(c)) {
2060 if (c->page)
2061 flush_slab(s, c);
2062
Christoph Lameter59a09912012-11-28 16:23:00 +00002063 unfreeze_partials(s, c);
Christoph Lameter49e22582011-08-09 16:12:27 -05002064 }
Christoph Lameter81819f02007-05-06 14:49:36 -07002065}
2066
2067static void flush_cpu_slab(void *d)
2068{
2069 struct kmem_cache *s = d;
Christoph Lameter81819f02007-05-06 14:49:36 -07002070
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002071 __flush_cpu_slab(s, smp_processor_id());
Christoph Lameter81819f02007-05-06 14:49:36 -07002072}
2073
Gilad Ben-Yossefa8364d52012-03-28 14:42:44 -07002074static bool has_cpu_slab(int cpu, void *info)
2075{
2076 struct kmem_cache *s = info;
2077 struct kmem_cache_cpu *c = per_cpu_ptr(s->cpu_slab, cpu);
2078
majianpeng02e1a9c2012-05-17 17:03:26 -07002079 return c->page || c->partial;
Gilad Ben-Yossefa8364d52012-03-28 14:42:44 -07002080}
2081
Christoph Lameter81819f02007-05-06 14:49:36 -07002082static void flush_all(struct kmem_cache *s)
2083{
Gilad Ben-Yossefa8364d52012-03-28 14:42:44 -07002084 on_each_cpu_cond(has_cpu_slab, flush_cpu_slab, s, 1, GFP_ATOMIC);
Christoph Lameter81819f02007-05-06 14:49:36 -07002085}
2086
2087/*
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002088 * Check if the objects in a per cpu structure fit numa
2089 * locality expectations.
2090 */
Christoph Lameter57d437d2012-05-09 10:09:59 -05002091static inline int node_match(struct page *page, int node)
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002092{
2093#ifdef CONFIG_NUMA
Christoph Lameter4d7868e2013-01-23 21:45:47 +00002094 if (!page || (node != NUMA_NO_NODE && page_to_nid(page) != node))
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002095 return 0;
2096#endif
2097 return 1;
2098}
2099
David Rientjes9a02d692014-06-04 16:06:36 -07002100#ifdef CONFIG_SLUB_DEBUG
Pekka Enberg781b2ba2009-06-10 18:50:32 +03002101static int count_free(struct page *page)
2102{
2103 return page->objects - page->inuse;
2104}
2105
David Rientjes9a02d692014-06-04 16:06:36 -07002106static inline unsigned long node_nr_objs(struct kmem_cache_node *n)
2107{
2108 return atomic_long_read(&n->total_objects);
2109}
2110#endif /* CONFIG_SLUB_DEBUG */
2111
2112#if defined(CONFIG_SLUB_DEBUG) || defined(CONFIG_SYSFS)
Pekka Enberg781b2ba2009-06-10 18:50:32 +03002113static unsigned long count_partial(struct kmem_cache_node *n,
2114 int (*get_count)(struct page *))
2115{
2116 unsigned long flags;
2117 unsigned long x = 0;
2118 struct page *page;
2119
2120 spin_lock_irqsave(&n->list_lock, flags);
2121 list_for_each_entry(page, &n->partial, lru)
2122 x += get_count(page);
2123 spin_unlock_irqrestore(&n->list_lock, flags);
2124 return x;
2125}
David Rientjes9a02d692014-06-04 16:06:36 -07002126#endif /* CONFIG_SLUB_DEBUG || CONFIG_SYSFS */
Alexander Beregalov26c02cf2009-06-11 14:08:48 +04002127
Pekka Enberg781b2ba2009-06-10 18:50:32 +03002128static noinline void
2129slab_out_of_memory(struct kmem_cache *s, gfp_t gfpflags, int nid)
2130{
David Rientjes9a02d692014-06-04 16:06:36 -07002131#ifdef CONFIG_SLUB_DEBUG
2132 static DEFINE_RATELIMIT_STATE(slub_oom_rs, DEFAULT_RATELIMIT_INTERVAL,
2133 DEFAULT_RATELIMIT_BURST);
Pekka Enberg781b2ba2009-06-10 18:50:32 +03002134 int node;
Christoph Lameterfa45dc22014-08-06 16:04:09 -07002135 struct kmem_cache_node *n;
Pekka Enberg781b2ba2009-06-10 18:50:32 +03002136
David Rientjes9a02d692014-06-04 16:06:36 -07002137 if ((gfpflags & __GFP_NOWARN) || !__ratelimit(&slub_oom_rs))
2138 return;
2139
Fabian Frederickf9f58282014-06-04 16:06:34 -07002140 pr_warn("SLUB: Unable to allocate memory on node %d (gfp=0x%x)\n",
Pekka Enberg781b2ba2009-06-10 18:50:32 +03002141 nid, gfpflags);
Fabian Frederickf9f58282014-06-04 16:06:34 -07002142 pr_warn(" cache: %s, object size: %d, buffer size: %d, default order: %d, min order: %d\n",
2143 s->name, s->object_size, s->size, oo_order(s->oo),
2144 oo_order(s->min));
Pekka Enberg781b2ba2009-06-10 18:50:32 +03002145
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002146 if (oo_order(s->min) > get_order(s->object_size))
Fabian Frederickf9f58282014-06-04 16:06:34 -07002147 pr_warn(" %s debugging increased min order, use slub_debug=O to disable.\n",
2148 s->name);
David Rientjesfa5ec8a2009-07-07 00:14:14 -07002149
Christoph Lameterfa45dc22014-08-06 16:04:09 -07002150 for_each_kmem_cache_node(s, node, n) {
Pekka Enberg781b2ba2009-06-10 18:50:32 +03002151 unsigned long nr_slabs;
2152 unsigned long nr_objs;
2153 unsigned long nr_free;
2154
Alexander Beregalov26c02cf2009-06-11 14:08:48 +04002155 nr_free = count_partial(n, count_free);
2156 nr_slabs = node_nr_slabs(n);
2157 nr_objs = node_nr_objs(n);
Pekka Enberg781b2ba2009-06-10 18:50:32 +03002158
Fabian Frederickf9f58282014-06-04 16:06:34 -07002159 pr_warn(" node %d: slabs: %ld, objs: %ld, free: %ld\n",
Pekka Enberg781b2ba2009-06-10 18:50:32 +03002160 node, nr_slabs, nr_objs, nr_free);
2161 }
David Rientjes9a02d692014-06-04 16:06:36 -07002162#endif
Pekka Enberg781b2ba2009-06-10 18:50:32 +03002163}
2164
Christoph Lameter497b66f2011-08-09 16:12:26 -05002165static inline void *new_slab_objects(struct kmem_cache *s, gfp_t flags,
2166 int node, struct kmem_cache_cpu **pc)
2167{
Christoph Lameter6faa6832012-05-09 10:09:51 -05002168 void *freelist;
Christoph Lameter188fd062012-05-09 10:09:55 -05002169 struct kmem_cache_cpu *c = *pc;
2170 struct page *page;
Christoph Lameter497b66f2011-08-09 16:12:26 -05002171
Christoph Lameter188fd062012-05-09 10:09:55 -05002172 freelist = get_partial(s, flags, node, c);
2173
2174 if (freelist)
2175 return freelist;
2176
2177 page = new_slab(s, flags, node);
Christoph Lameter497b66f2011-08-09 16:12:26 -05002178 if (page) {
Christoph Lameter7c8e0182014-06-04 16:07:56 -07002179 c = raw_cpu_ptr(s->cpu_slab);
Christoph Lameter497b66f2011-08-09 16:12:26 -05002180 if (c->page)
2181 flush_slab(s, c);
2182
2183 /*
2184 * No other reference to the page yet so we can
2185 * muck around with it freely without cmpxchg
2186 */
Christoph Lameter6faa6832012-05-09 10:09:51 -05002187 freelist = page->freelist;
Christoph Lameter497b66f2011-08-09 16:12:26 -05002188 page->freelist = NULL;
2189
2190 stat(s, ALLOC_SLAB);
Christoph Lameter497b66f2011-08-09 16:12:26 -05002191 c->page = page;
2192 *pc = c;
2193 } else
Christoph Lameter6faa6832012-05-09 10:09:51 -05002194 freelist = NULL;
Christoph Lameter497b66f2011-08-09 16:12:26 -05002195
Christoph Lameter6faa6832012-05-09 10:09:51 -05002196 return freelist;
Christoph Lameter497b66f2011-08-09 16:12:26 -05002197}
2198
Mel Gorman072bb0a2012-07-31 16:43:58 -07002199static inline bool pfmemalloc_match(struct page *page, gfp_t gfpflags)
2200{
2201 if (unlikely(PageSlabPfmemalloc(page)))
2202 return gfp_pfmemalloc_allowed(gfpflags);
2203
2204 return true;
2205}
2206
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002207/*
Chen Gangd0e0ac92013-07-15 09:05:29 +08002208 * Check the page->freelist of a page and either transfer the freelist to the
2209 * per cpu freelist or deactivate the page.
Christoph Lameter213eeb92011-11-11 14:07:14 -06002210 *
2211 * The page is still frozen if the return value is not NULL.
2212 *
2213 * If this function returns NULL then the page has been unfrozen.
Joonsoo Kimd24ac772012-05-18 22:01:17 +09002214 *
2215 * This function must be called with interrupt disabled.
Christoph Lameter213eeb92011-11-11 14:07:14 -06002216 */
2217static inline void *get_freelist(struct kmem_cache *s, struct page *page)
2218{
2219 struct page new;
2220 unsigned long counters;
2221 void *freelist;
2222
2223 do {
2224 freelist = page->freelist;
2225 counters = page->counters;
Christoph Lameter6faa6832012-05-09 10:09:51 -05002226
Christoph Lameter213eeb92011-11-11 14:07:14 -06002227 new.counters = counters;
Dave Hansena0132ac2014-01-29 14:05:50 -08002228 VM_BUG_ON(!new.frozen);
Christoph Lameter213eeb92011-11-11 14:07:14 -06002229
2230 new.inuse = page->objects;
2231 new.frozen = freelist != NULL;
2232
Joonsoo Kimd24ac772012-05-18 22:01:17 +09002233 } while (!__cmpxchg_double_slab(s, page,
Christoph Lameter213eeb92011-11-11 14:07:14 -06002234 freelist, counters,
2235 NULL, new.counters,
2236 "get_freelist"));
2237
2238 return freelist;
2239}
2240
2241/*
Christoph Lameter894b8782007-05-10 03:15:16 -07002242 * Slow path. The lockless freelist is empty or we need to perform
2243 * debugging duties.
Christoph Lameter81819f02007-05-06 14:49:36 -07002244 *
Christoph Lameter894b8782007-05-10 03:15:16 -07002245 * Processing is still very fast if new objects have been freed to the
2246 * regular freelist. In that case we simply take over the regular freelist
2247 * as the lockless freelist and zap the regular freelist.
Christoph Lameter81819f02007-05-06 14:49:36 -07002248 *
Christoph Lameter894b8782007-05-10 03:15:16 -07002249 * If that is not working then we fall back to the partial lists. We take the
2250 * first element of the freelist as the object to allocate now and move the
2251 * rest of the freelist to the lockless freelist.
2252 *
2253 * And if we were unable to get a new slab from the partial slab lists then
Christoph Lameter6446faa2008-02-15 23:45:26 -08002254 * we need to allocate a new slab. This is the slowest path since it involves
2255 * a call to the page allocator and the setup of a new slab.
Christoph Lameter81819f02007-05-06 14:49:36 -07002256 */
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03002257static void *__slab_alloc(struct kmem_cache *s, gfp_t gfpflags, int node,
2258 unsigned long addr, struct kmem_cache_cpu *c)
Christoph Lameter81819f02007-05-06 14:49:36 -07002259{
Christoph Lameter6faa6832012-05-09 10:09:51 -05002260 void *freelist;
Christoph Lameterf6e7def2012-05-09 10:09:58 -05002261 struct page *page;
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002262 unsigned long flags;
2263
2264 local_irq_save(flags);
2265#ifdef CONFIG_PREEMPT
2266 /*
2267 * We may have been preempted and rescheduled on a different
2268 * cpu before disabling interrupts. Need to reload cpu area
2269 * pointer.
2270 */
2271 c = this_cpu_ptr(s->cpu_slab);
2272#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07002273
Christoph Lameterf6e7def2012-05-09 10:09:58 -05002274 page = c->page;
2275 if (!page)
Christoph Lameter81819f02007-05-06 14:49:36 -07002276 goto new_slab;
Christoph Lameter49e22582011-08-09 16:12:27 -05002277redo:
Christoph Lameter6faa6832012-05-09 10:09:51 -05002278
Christoph Lameter57d437d2012-05-09 10:09:59 -05002279 if (unlikely(!node_match(page, node))) {
Christoph Lametere36a2652011-06-01 12:25:57 -05002280 stat(s, ALLOC_NODE_MISMATCH);
Christoph Lameterf6e7def2012-05-09 10:09:58 -05002281 deactivate_slab(s, page, c->freelist);
Christoph Lameterc17dda42012-05-09 10:09:57 -05002282 c->page = NULL;
2283 c->freelist = NULL;
Christoph Lameterfc59c052011-06-01 12:25:56 -05002284 goto new_slab;
2285 }
Christoph Lameter6446faa2008-02-15 23:45:26 -08002286
Mel Gorman072bb0a2012-07-31 16:43:58 -07002287 /*
2288 * By rights, we should be searching for a slab page that was
2289 * PFMEMALLOC but right now, we are losing the pfmemalloc
2290 * information when the page leaves the per-cpu allocator
2291 */
2292 if (unlikely(!pfmemalloc_match(page, gfpflags))) {
2293 deactivate_slab(s, page, c->freelist);
2294 c->page = NULL;
2295 c->freelist = NULL;
2296 goto new_slab;
2297 }
2298
Eric Dumazet73736e02011-12-13 04:57:06 +01002299 /* must check again c->freelist in case of cpu migration or IRQ */
Christoph Lameter6faa6832012-05-09 10:09:51 -05002300 freelist = c->freelist;
2301 if (freelist)
Eric Dumazet73736e02011-12-13 04:57:06 +01002302 goto load_freelist;
2303
Christoph Lameterf6e7def2012-05-09 10:09:58 -05002304 freelist = get_freelist(s, page);
Christoph Lameter6446faa2008-02-15 23:45:26 -08002305
Christoph Lameter6faa6832012-05-09 10:09:51 -05002306 if (!freelist) {
Christoph Lameter03e404a2011-06-01 12:25:58 -05002307 c->page = NULL;
2308 stat(s, DEACTIVATE_BYPASS);
Christoph Lameterfc59c052011-06-01 12:25:56 -05002309 goto new_slab;
Christoph Lameter03e404a2011-06-01 12:25:58 -05002310 }
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002311
Christoph Lameter81819f02007-05-06 14:49:36 -07002312 stat(s, ALLOC_REFILL);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08002313
Christoph Lameter894b8782007-05-10 03:15:16 -07002314load_freelist:
Christoph Lameter507effe2012-05-09 10:09:52 -05002315 /*
2316 * freelist is pointing to the list of objects to be used.
2317 * page is pointing to the page from which the objects are obtained.
2318 * That page must be frozen for per cpu allocations to work.
2319 */
Dave Hansena0132ac2014-01-29 14:05:50 -08002320 VM_BUG_ON(!c->page->frozen);
Christoph Lameter6faa6832012-05-09 10:09:51 -05002321 c->freelist = get_freepointer(s, freelist);
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002322 c->tid = next_tid(c->tid);
2323 local_irq_restore(flags);
Christoph Lameter6faa6832012-05-09 10:09:51 -05002324 return freelist;
Christoph Lameter81819f02007-05-06 14:49:36 -07002325
Christoph Lameter81819f02007-05-06 14:49:36 -07002326new_slab:
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002327
Christoph Lameter49e22582011-08-09 16:12:27 -05002328 if (c->partial) {
Christoph Lameterf6e7def2012-05-09 10:09:58 -05002329 page = c->page = c->partial;
2330 c->partial = page->next;
Christoph Lameter49e22582011-08-09 16:12:27 -05002331 stat(s, CPU_PARTIAL_ALLOC);
2332 c->freelist = NULL;
2333 goto redo;
Christoph Lameter81819f02007-05-06 14:49:36 -07002334 }
2335
Christoph Lameter188fd062012-05-09 10:09:55 -05002336 freelist = new_slab_objects(s, gfpflags, node, &c);
Christoph Lameterb811c202007-10-16 23:25:51 -07002337
Christoph Lameterf46974362012-05-09 10:09:54 -05002338 if (unlikely(!freelist)) {
David Rientjes9a02d692014-06-04 16:06:36 -07002339 slab_out_of_memory(s, gfpflags, node);
Christoph Lameterf46974362012-05-09 10:09:54 -05002340 local_irq_restore(flags);
2341 return NULL;
Christoph Lameter81819f02007-05-06 14:49:36 -07002342 }
Christoph Lameter894b8782007-05-10 03:15:16 -07002343
Christoph Lameterf6e7def2012-05-09 10:09:58 -05002344 page = c->page;
Christoph Lameter5091b742012-07-31 16:44:00 -07002345 if (likely(!kmem_cache_debug(s) && pfmemalloc_match(page, gfpflags)))
Christoph Lameter81819f02007-05-06 14:49:36 -07002346 goto load_freelist;
Christoph Lameter894b8782007-05-10 03:15:16 -07002347
Christoph Lameter497b66f2011-08-09 16:12:26 -05002348 /* Only entered in the debug case */
Chen Gangd0e0ac92013-07-15 09:05:29 +08002349 if (kmem_cache_debug(s) &&
2350 !alloc_debug_processing(s, page, freelist, addr))
Christoph Lameter497b66f2011-08-09 16:12:26 -05002351 goto new_slab; /* Slab failed checks. Next slab needed */
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002352
Christoph Lameterf6e7def2012-05-09 10:09:58 -05002353 deactivate_slab(s, page, get_freepointer(s, freelist));
Christoph Lameterc17dda42012-05-09 10:09:57 -05002354 c->page = NULL;
2355 c->freelist = NULL;
Christoph Lametera71ae472011-05-25 09:47:43 -05002356 local_irq_restore(flags);
Christoph Lameter6faa6832012-05-09 10:09:51 -05002357 return freelist;
Christoph Lameter894b8782007-05-10 03:15:16 -07002358}
2359
2360/*
2361 * Inlined fastpath so that allocation functions (kmalloc, kmem_cache_alloc)
2362 * have the fastpath folded into their functions. So no function call
2363 * overhead for requests that can be satisfied on the fastpath.
2364 *
2365 * The fastpath works by first checking if the lockless freelist can be used.
2366 * If not then __slab_alloc is called for slow processing.
2367 *
2368 * Otherwise we can simply pick the next object from the lockless free list.
2369 */
Ezequiel Garcia2b847c32012-09-08 17:47:58 -03002370static __always_inline void *slab_alloc_node(struct kmem_cache *s,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03002371 gfp_t gfpflags, int node, unsigned long addr)
Christoph Lameter894b8782007-05-10 03:15:16 -07002372{
Christoph Lameter894b8782007-05-10 03:15:16 -07002373 void **object;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002374 struct kmem_cache_cpu *c;
Christoph Lameter57d437d2012-05-09 10:09:59 -05002375 struct page *page;
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002376 unsigned long tid;
Christoph Lameter1f842602008-01-07 23:20:30 -08002377
Christoph Lameterc016b0b2010-08-20 12:37:16 -05002378 if (slab_pre_alloc_hook(s, gfpflags))
Akinobu Mita773ff602008-12-23 19:37:01 +09002379 return NULL;
2380
Glauber Costad79923f2012-12-18 14:22:48 -08002381 s = memcg_kmem_get_cache(s, gfpflags);
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002382redo:
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002383 /*
2384 * Must read kmem_cache cpu data via this cpu ptr. Preemption is
2385 * enabled. We may switch back and forth between cpus while
2386 * reading from one cpu area. That does not matter as long
2387 * as we end up on the original cpu again when doing the cmpxchg.
Christoph Lameter7cccd802013-01-23 21:45:48 +00002388 *
2389 * Preemption is disabled for the retrieval of the tid because that
2390 * must occur from the current processor. We cannot allow rescheduling
2391 * on a different processor between the determination of the pointer
2392 * and the retrieval of the tid.
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002393 */
Christoph Lameter7cccd802013-01-23 21:45:48 +00002394 preempt_disable();
Christoph Lameter7c8e0182014-06-04 16:07:56 -07002395 c = this_cpu_ptr(s->cpu_slab);
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002396
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002397 /*
2398 * The transaction ids are globally unique per cpu and per operation on
2399 * a per cpu queue. Thus they can be guarantee that the cmpxchg_double
2400 * occurs on the right processor and that there was no operation on the
2401 * linked list in between.
2402 */
2403 tid = c->tid;
Christoph Lameter7cccd802013-01-23 21:45:48 +00002404 preempt_enable();
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002405
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06002406 object = c->freelist;
Christoph Lameter57d437d2012-05-09 10:09:59 -05002407 page = c->page;
Dave Hansen8eae1492014-06-04 16:06:37 -07002408 if (unlikely(!object || !node_match(page, node))) {
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002409 object = __slab_alloc(s, gfpflags, node, addr, c);
Dave Hansen8eae1492014-06-04 16:06:37 -07002410 stat(s, ALLOC_SLOWPATH);
2411 } else {
Eric Dumazet0ad95002011-12-16 16:25:34 +01002412 void *next_object = get_freepointer_safe(s, object);
2413
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002414 /*
Lucas De Marchi25985ed2011-03-30 22:57:33 -03002415 * The cmpxchg will only match if there was no additional
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002416 * operation and if we are on the right processor.
2417 *
Chen Gangd0e0ac92013-07-15 09:05:29 +08002418 * The cmpxchg does the following atomically (without lock
2419 * semantics!)
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002420 * 1. Relocate first pointer to the current per cpu area.
2421 * 2. Verify that tid and freelist have not been changed
2422 * 3. If they were not changed replace tid and freelist
2423 *
Chen Gangd0e0ac92013-07-15 09:05:29 +08002424 * Since this is without lock semantics the protection is only
2425 * against code executing on this cpu *not* from access by
2426 * other cpus.
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002427 */
Christoph Lameter933393f2011-12-22 11:58:51 -06002428 if (unlikely(!this_cpu_cmpxchg_double(
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002429 s->cpu_slab->freelist, s->cpu_slab->tid,
2430 object, tid,
Eric Dumazet0ad95002011-12-16 16:25:34 +01002431 next_object, next_tid(tid)))) {
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002432
2433 note_cmpxchg_failure("slab_alloc", s, tid);
2434 goto redo;
2435 }
Eric Dumazet0ad95002011-12-16 16:25:34 +01002436 prefetch_freepointer(s, next_object);
Christoph Lameter84e554e62009-12-18 16:26:23 -06002437 stat(s, ALLOC_FASTPATH);
Christoph Lameter894b8782007-05-10 03:15:16 -07002438 }
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002439
Pekka Enberg74e21342009-11-25 20:14:48 +02002440 if (unlikely(gfpflags & __GFP_ZERO) && object)
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002441 memset(object, 0, s->object_size);
Christoph Lameterd07dbea2007-07-17 04:03:23 -07002442
Christoph Lameterc016b0b2010-08-20 12:37:16 -05002443 slab_post_alloc_hook(s, gfpflags, object);
Vegard Nossum5a896d92008-04-04 00:54:48 +02002444
Christoph Lameter894b8782007-05-10 03:15:16 -07002445 return object;
Christoph Lameter81819f02007-05-06 14:49:36 -07002446}
2447
Ezequiel Garcia2b847c32012-09-08 17:47:58 -03002448static __always_inline void *slab_alloc(struct kmem_cache *s,
2449 gfp_t gfpflags, unsigned long addr)
2450{
2451 return slab_alloc_node(s, gfpflags, NUMA_NO_NODE, addr);
2452}
2453
Christoph Lameter81819f02007-05-06 14:49:36 -07002454void *kmem_cache_alloc(struct kmem_cache *s, gfp_t gfpflags)
2455{
Ezequiel Garcia2b847c32012-09-08 17:47:58 -03002456 void *ret = slab_alloc(s, gfpflags, _RET_IP_);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002457
Chen Gangd0e0ac92013-07-15 09:05:29 +08002458 trace_kmem_cache_alloc(_RET_IP_, ret, s->object_size,
2459 s->size, gfpflags);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002460
2461 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07002462}
2463EXPORT_SYMBOL(kmem_cache_alloc);
2464
Li Zefan0f24f122009-12-11 15:45:30 +08002465#ifdef CONFIG_TRACING
Richard Kennedy4a923792010-10-21 10:29:19 +01002466void *kmem_cache_alloc_trace(struct kmem_cache *s, gfp_t gfpflags, size_t size)
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002467{
Ezequiel Garcia2b847c32012-09-08 17:47:58 -03002468 void *ret = slab_alloc(s, gfpflags, _RET_IP_);
Richard Kennedy4a923792010-10-21 10:29:19 +01002469 trace_kmalloc(_RET_IP_, ret, size, s->size, gfpflags);
2470 return ret;
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002471}
Richard Kennedy4a923792010-10-21 10:29:19 +01002472EXPORT_SYMBOL(kmem_cache_alloc_trace);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002473#endif
2474
Christoph Lameter81819f02007-05-06 14:49:36 -07002475#ifdef CONFIG_NUMA
2476void *kmem_cache_alloc_node(struct kmem_cache *s, gfp_t gfpflags, int node)
2477{
Ezequiel Garcia2b847c32012-09-08 17:47:58 -03002478 void *ret = slab_alloc_node(s, gfpflags, node, _RET_IP_);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002479
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02002480 trace_kmem_cache_alloc_node(_RET_IP_, ret,
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002481 s->object_size, s->size, gfpflags, node);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002482
2483 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07002484}
2485EXPORT_SYMBOL(kmem_cache_alloc_node);
Christoph Lameter81819f02007-05-06 14:49:36 -07002486
Li Zefan0f24f122009-12-11 15:45:30 +08002487#ifdef CONFIG_TRACING
Richard Kennedy4a923792010-10-21 10:29:19 +01002488void *kmem_cache_alloc_node_trace(struct kmem_cache *s,
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002489 gfp_t gfpflags,
Richard Kennedy4a923792010-10-21 10:29:19 +01002490 int node, size_t size)
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002491{
Ezequiel Garcia2b847c32012-09-08 17:47:58 -03002492 void *ret = slab_alloc_node(s, gfpflags, node, _RET_IP_);
Richard Kennedy4a923792010-10-21 10:29:19 +01002493
2494 trace_kmalloc_node(_RET_IP_, ret,
2495 size, s->size, gfpflags, node);
2496 return ret;
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002497}
Richard Kennedy4a923792010-10-21 10:29:19 +01002498EXPORT_SYMBOL(kmem_cache_alloc_node_trace);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002499#endif
Namhyung Kim5d1f57e2010-09-29 21:02:15 +09002500#endif
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03002501
Christoph Lameter81819f02007-05-06 14:49:36 -07002502/*
Christoph Lameter894b8782007-05-10 03:15:16 -07002503 * Slow patch handling. This may still be called frequently since objects
2504 * have a longer lifetime than the cpu slabs in most processing loads.
Christoph Lameter81819f02007-05-06 14:49:36 -07002505 *
Christoph Lameter894b8782007-05-10 03:15:16 -07002506 * So we still attempt to reduce cache line usage. Just take the slab
2507 * lock and free the item. If there is no additional partial page
2508 * handling required then we can return immediately.
Christoph Lameter81819f02007-05-06 14:49:36 -07002509 */
Christoph Lameter894b8782007-05-10 03:15:16 -07002510static void __slab_free(struct kmem_cache *s, struct page *page,
Christoph Lameterff120592009-12-18 16:26:22 -06002511 void *x, unsigned long addr)
Christoph Lameter81819f02007-05-06 14:49:36 -07002512{
2513 void *prior;
2514 void **object = (void *)x;
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002515 int was_frozen;
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002516 struct page new;
2517 unsigned long counters;
2518 struct kmem_cache_node *n = NULL;
Christoph Lameter61728d12011-06-01 12:25:51 -05002519 unsigned long uninitialized_var(flags);
Christoph Lameter81819f02007-05-06 14:49:36 -07002520
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002521 stat(s, FREE_SLOWPATH);
Christoph Lameter81819f02007-05-06 14:49:36 -07002522
Christoph Lameter19c7ff92012-05-30 12:54:46 -05002523 if (kmem_cache_debug(s) &&
2524 !(n = free_debug_processing(s, page, x, addr, &flags)))
Christoph Lameter80f08c12011-06-01 12:25:55 -05002525 return;
Christoph Lameter6446faa2008-02-15 23:45:26 -08002526
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002527 do {
Joonsoo Kim837d6782012-08-16 00:02:40 +09002528 if (unlikely(n)) {
2529 spin_unlock_irqrestore(&n->list_lock, flags);
2530 n = NULL;
2531 }
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002532 prior = page->freelist;
2533 counters = page->counters;
2534 set_freepointer(s, object, prior);
2535 new.counters = counters;
2536 was_frozen = new.frozen;
2537 new.inuse--;
Joonsoo Kim837d6782012-08-16 00:02:40 +09002538 if ((!new.inuse || !prior) && !was_frozen) {
Christoph Lameter49e22582011-08-09 16:12:27 -05002539
Peter Zijlstrac65c1872014-01-10 13:23:49 +01002540 if (kmem_cache_has_cpu_partial(s) && !prior) {
Christoph Lameter49e22582011-08-09 16:12:27 -05002541
2542 /*
Chen Gangd0e0ac92013-07-15 09:05:29 +08002543 * Slab was on no list before and will be
2544 * partially empty
2545 * We can defer the list move and instead
2546 * freeze it.
Christoph Lameter49e22582011-08-09 16:12:27 -05002547 */
2548 new.frozen = 1;
2549
Peter Zijlstrac65c1872014-01-10 13:23:49 +01002550 } else { /* Needs to be taken off a list */
Christoph Lameter49e22582011-08-09 16:12:27 -05002551
2552 n = get_node(s, page_to_nid(page));
2553 /*
2554 * Speculatively acquire the list_lock.
2555 * If the cmpxchg does not succeed then we may
2556 * drop the list_lock without any processing.
2557 *
2558 * Otherwise the list_lock will synchronize with
2559 * other processors updating the list of slabs.
2560 */
2561 spin_lock_irqsave(&n->list_lock, flags);
2562
2563 }
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002564 }
Christoph Lameter81819f02007-05-06 14:49:36 -07002565
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002566 } while (!cmpxchg_double_slab(s, page,
2567 prior, counters,
2568 object, new.counters,
2569 "__slab_free"));
Christoph Lameter81819f02007-05-06 14:49:36 -07002570
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002571 if (likely(!n)) {
Christoph Lameter49e22582011-08-09 16:12:27 -05002572
2573 /*
2574 * If we just froze the page then put it onto the
2575 * per cpu partial list.
2576 */
Alex Shi8028dce2012-02-03 23:34:56 +08002577 if (new.frozen && !was_frozen) {
Christoph Lameter49e22582011-08-09 16:12:27 -05002578 put_cpu_partial(s, page, 1);
Alex Shi8028dce2012-02-03 23:34:56 +08002579 stat(s, CPU_PARTIAL_FREE);
2580 }
Christoph Lameter49e22582011-08-09 16:12:27 -05002581 /*
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002582 * The list lock was not taken therefore no list
2583 * activity can be necessary.
2584 */
2585 if (was_frozen)
2586 stat(s, FREE_FROZEN);
Christoph Lameter80f08c12011-06-01 12:25:55 -05002587 return;
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002588 }
Christoph Lameter81819f02007-05-06 14:49:36 -07002589
Joonsoo Kim8a5b20a2014-07-02 15:22:35 -07002590 if (unlikely(!new.inuse && n->nr_partial >= s->min_partial))
Joonsoo Kim837d6782012-08-16 00:02:40 +09002591 goto slab_empty;
Christoph Lameter81819f02007-05-06 14:49:36 -07002592
Joonsoo Kim837d6782012-08-16 00:02:40 +09002593 /*
2594 * Objects left in the slab. If it was not on the partial list before
2595 * then add it.
2596 */
Joonsoo Kim345c9052013-06-19 14:05:52 +09002597 if (!kmem_cache_has_cpu_partial(s) && unlikely(!prior)) {
2598 if (kmem_cache_debug(s))
Peter Zijlstrac65c1872014-01-10 13:23:49 +01002599 remove_full(s, n, page);
Joonsoo Kim837d6782012-08-16 00:02:40 +09002600 add_partial(n, page, DEACTIVATE_TO_TAIL);
2601 stat(s, FREE_ADD_PARTIAL);
Christoph Lameter81819f02007-05-06 14:49:36 -07002602 }
Christoph Lameter80f08c12011-06-01 12:25:55 -05002603 spin_unlock_irqrestore(&n->list_lock, flags);
Christoph Lameter81819f02007-05-06 14:49:36 -07002604 return;
2605
2606slab_empty:
Christoph Lametera973e9d2008-03-01 13:40:44 -08002607 if (prior) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002608 /*
Christoph Lameter6fbabb22011-08-08 11:16:56 -05002609 * Slab on the partial list.
Christoph Lameter81819f02007-05-06 14:49:36 -07002610 */
Christoph Lameter5cc6eee2011-06-01 12:25:50 -05002611 remove_partial(n, page);
Christoph Lameter84e554e62009-12-18 16:26:23 -06002612 stat(s, FREE_REMOVE_PARTIAL);
Peter Zijlstrac65c1872014-01-10 13:23:49 +01002613 } else {
Christoph Lameter6fbabb22011-08-08 11:16:56 -05002614 /* Slab must be on the full list */
Peter Zijlstrac65c1872014-01-10 13:23:49 +01002615 remove_full(s, n, page);
2616 }
Christoph Lameter2cfb7452011-06-01 12:25:52 -05002617
Christoph Lameter80f08c12011-06-01 12:25:55 -05002618 spin_unlock_irqrestore(&n->list_lock, flags);
Christoph Lameter84e554e62009-12-18 16:26:23 -06002619 stat(s, FREE_SLAB);
Christoph Lameter81819f02007-05-06 14:49:36 -07002620 discard_slab(s, page);
Christoph Lameter81819f02007-05-06 14:49:36 -07002621}
2622
Christoph Lameter894b8782007-05-10 03:15:16 -07002623/*
2624 * Fastpath with forced inlining to produce a kfree and kmem_cache_free that
2625 * can perform fastpath freeing without additional function calls.
2626 *
2627 * The fastpath is only possible if we are freeing to the current cpu slab
2628 * of this processor. This typically the case if we have just allocated
2629 * the item before.
2630 *
2631 * If fastpath is not possible then fall back to __slab_free where we deal
2632 * with all sorts of special processing.
2633 */
Pekka Enberg06428782008-01-07 23:20:27 -08002634static __always_inline void slab_free(struct kmem_cache *s,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03002635 struct page *page, void *x, unsigned long addr)
Christoph Lameter894b8782007-05-10 03:15:16 -07002636{
2637 void **object = (void *)x;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07002638 struct kmem_cache_cpu *c;
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002639 unsigned long tid;
Christoph Lameter1f842602008-01-07 23:20:30 -08002640
Christoph Lameterc016b0b2010-08-20 12:37:16 -05002641 slab_free_hook(s, x);
2642
Christoph Lametera24c5a02011-03-15 12:45:21 -05002643redo:
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002644 /*
2645 * Determine the currently cpus per cpu slab.
2646 * The cpu may change afterward. However that does not matter since
2647 * data is retrieved via this pointer. If we are on the same cpu
2648 * during the cmpxchg then the free will succedd.
2649 */
Christoph Lameter7cccd802013-01-23 21:45:48 +00002650 preempt_disable();
Christoph Lameter7c8e0182014-06-04 16:07:56 -07002651 c = this_cpu_ptr(s->cpu_slab);
Christoph Lameterc016b0b2010-08-20 12:37:16 -05002652
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002653 tid = c->tid;
Christoph Lameter7cccd802013-01-23 21:45:48 +00002654 preempt_enable();
Christoph Lameterc016b0b2010-08-20 12:37:16 -05002655
Christoph Lameter442b06b2011-05-17 16:29:31 -05002656 if (likely(page == c->page)) {
Christoph Lameterff120592009-12-18 16:26:22 -06002657 set_freepointer(s, object, c->freelist);
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002658
Christoph Lameter933393f2011-12-22 11:58:51 -06002659 if (unlikely(!this_cpu_cmpxchg_double(
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002660 s->cpu_slab->freelist, s->cpu_slab->tid,
2661 c->freelist, tid,
2662 object, next_tid(tid)))) {
2663
2664 note_cmpxchg_failure("slab_free", s, tid);
2665 goto redo;
2666 }
Christoph Lameter84e554e62009-12-18 16:26:23 -06002667 stat(s, FREE_FASTPATH);
Christoph Lameter894b8782007-05-10 03:15:16 -07002668 } else
Christoph Lameterff120592009-12-18 16:26:22 -06002669 __slab_free(s, page, x, addr);
Christoph Lameter894b8782007-05-10 03:15:16 -07002670
Christoph Lameter894b8782007-05-10 03:15:16 -07002671}
2672
Christoph Lameter81819f02007-05-06 14:49:36 -07002673void kmem_cache_free(struct kmem_cache *s, void *x)
2674{
Glauber Costab9ce5ef2012-12-18 14:22:46 -08002675 s = cache_from_obj(s, x);
2676 if (!s)
Christoph Lameter79576102012-09-04 23:06:14 +00002677 return;
Glauber Costab9ce5ef2012-12-18 14:22:46 -08002678 slab_free(s, virt_to_head_page(x), x, _RET_IP_);
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02002679 trace_kmem_cache_free(_RET_IP_, x);
Christoph Lameter81819f02007-05-06 14:49:36 -07002680}
2681EXPORT_SYMBOL(kmem_cache_free);
2682
Christoph Lameter81819f02007-05-06 14:49:36 -07002683/*
Christoph Lameter672bba32007-05-09 02:32:39 -07002684 * Object placement in a slab is made very easy because we always start at
2685 * offset 0. If we tune the size of the object to the alignment then we can
2686 * get the required alignment by putting one properly sized object after
2687 * another.
Christoph Lameter81819f02007-05-06 14:49:36 -07002688 *
2689 * Notice that the allocation order determines the sizes of the per cpu
2690 * caches. Each processor has always one slab available for allocations.
2691 * Increasing the allocation order reduces the number of times that slabs
Christoph Lameter672bba32007-05-09 02:32:39 -07002692 * must be moved on and off the partial lists and is therefore a factor in
Christoph Lameter81819f02007-05-06 14:49:36 -07002693 * locking overhead.
Christoph Lameter81819f02007-05-06 14:49:36 -07002694 */
2695
2696/*
2697 * Mininum / Maximum order of slab pages. This influences locking overhead
2698 * and slab fragmentation. A higher order reduces the number of partial slabs
2699 * and increases the number of allocations possible without having to
2700 * take the list_lock.
2701 */
2702static int slub_min_order;
Christoph Lameter114e9e82008-04-14 19:11:41 +03002703static int slub_max_order = PAGE_ALLOC_COSTLY_ORDER;
Christoph Lameter9b2cd502008-04-14 19:11:41 +03002704static int slub_min_objects;
Christoph Lameter81819f02007-05-06 14:49:36 -07002705
2706/*
2707 * Merge control. If this is set then no merging of slab caches will occur.
Christoph Lameter672bba32007-05-09 02:32:39 -07002708 * (Could be removed. This was introduced to pacify the merge skeptics.)
Christoph Lameter81819f02007-05-06 14:49:36 -07002709 */
2710static int slub_nomerge;
2711
2712/*
Christoph Lameter81819f02007-05-06 14:49:36 -07002713 * Calculate the order of allocation given an slab object size.
2714 *
Christoph Lameter672bba32007-05-09 02:32:39 -07002715 * The order of allocation has significant impact on performance and other
2716 * system components. Generally order 0 allocations should be preferred since
2717 * order 0 does not cause fragmentation in the page allocator. Larger objects
2718 * be problematic to put into order 0 slabs because there may be too much
Christoph Lameterc124f5b2008-04-14 19:13:29 +03002719 * unused space left. We go to a higher order if more than 1/16th of the slab
Christoph Lameter672bba32007-05-09 02:32:39 -07002720 * would be wasted.
Christoph Lameter81819f02007-05-06 14:49:36 -07002721 *
Christoph Lameter672bba32007-05-09 02:32:39 -07002722 * In order to reach satisfactory performance we must ensure that a minimum
2723 * number of objects is in one slab. Otherwise we may generate too much
2724 * activity on the partial lists which requires taking the list_lock. This is
2725 * less a concern for large slabs though which are rarely used.
Christoph Lameter81819f02007-05-06 14:49:36 -07002726 *
Christoph Lameter672bba32007-05-09 02:32:39 -07002727 * slub_max_order specifies the order where we begin to stop considering the
2728 * number of objects in a slab as critical. If we reach slub_max_order then
2729 * we try to keep the page order as low as possible. So we accept more waste
2730 * of space in favor of a small page order.
2731 *
2732 * Higher order allocations also allow the placement of more objects in a
2733 * slab and thereby reduce object handling overhead. If the user has
2734 * requested a higher mininum order then we start with that one instead of
2735 * the smallest order which will fit the object.
Christoph Lameter81819f02007-05-06 14:49:36 -07002736 */
Christoph Lameter5e6d4442007-05-09 02:32:46 -07002737static inline int slab_order(int size, int min_objects,
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08002738 int max_order, int fract_leftover, int reserved)
Christoph Lameter81819f02007-05-06 14:49:36 -07002739{
2740 int order;
2741 int rem;
Christoph Lameter6300ea72007-07-17 04:03:20 -07002742 int min_order = slub_min_order;
Christoph Lameter81819f02007-05-06 14:49:36 -07002743
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08002744 if (order_objects(min_order, size, reserved) > MAX_OBJS_PER_PAGE)
Cyrill Gorcunov210b5c02008-10-22 23:00:38 +04002745 return get_order(size * MAX_OBJS_PER_PAGE) - 1;
Christoph Lameter39b26462008-04-14 19:11:30 +03002746
Christoph Lameter6300ea72007-07-17 04:03:20 -07002747 for (order = max(min_order,
Christoph Lameter5e6d4442007-05-09 02:32:46 -07002748 fls(min_objects * size - 1) - PAGE_SHIFT);
2749 order <= max_order; order++) {
2750
Christoph Lameter81819f02007-05-06 14:49:36 -07002751 unsigned long slab_size = PAGE_SIZE << order;
2752
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08002753 if (slab_size < min_objects * size + reserved)
Christoph Lameter81819f02007-05-06 14:49:36 -07002754 continue;
2755
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08002756 rem = (slab_size - reserved) % size;
Christoph Lameter81819f02007-05-06 14:49:36 -07002757
Christoph Lameter5e6d4442007-05-09 02:32:46 -07002758 if (rem <= slab_size / fract_leftover)
Christoph Lameter81819f02007-05-06 14:49:36 -07002759 break;
2760
2761 }
Christoph Lameter672bba32007-05-09 02:32:39 -07002762
Christoph Lameter81819f02007-05-06 14:49:36 -07002763 return order;
2764}
2765
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08002766static inline int calculate_order(int size, int reserved)
Christoph Lameter5e6d4442007-05-09 02:32:46 -07002767{
2768 int order;
2769 int min_objects;
2770 int fraction;
Zhang Yanmine8120ff2009-02-12 18:00:17 +02002771 int max_objects;
Christoph Lameter5e6d4442007-05-09 02:32:46 -07002772
2773 /*
2774 * Attempt to find best configuration for a slab. This
2775 * works by first attempting to generate a layout with
2776 * the best configuration and backing off gradually.
2777 *
2778 * First we reduce the acceptable waste in a slab. Then
2779 * we reduce the minimum objects required in a slab.
2780 */
2781 min_objects = slub_min_objects;
Christoph Lameter9b2cd502008-04-14 19:11:41 +03002782 if (!min_objects)
2783 min_objects = 4 * (fls(nr_cpu_ids) + 1);
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08002784 max_objects = order_objects(slub_max_order, size, reserved);
Zhang Yanmine8120ff2009-02-12 18:00:17 +02002785 min_objects = min(min_objects, max_objects);
2786
Christoph Lameter5e6d4442007-05-09 02:32:46 -07002787 while (min_objects > 1) {
Christoph Lameterc124f5b2008-04-14 19:13:29 +03002788 fraction = 16;
Christoph Lameter5e6d4442007-05-09 02:32:46 -07002789 while (fraction >= 4) {
2790 order = slab_order(size, min_objects,
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08002791 slub_max_order, fraction, reserved);
Christoph Lameter5e6d4442007-05-09 02:32:46 -07002792 if (order <= slub_max_order)
2793 return order;
2794 fraction /= 2;
2795 }
Amerigo Wang5086c389c2009-08-19 21:44:13 +03002796 min_objects--;
Christoph Lameter5e6d4442007-05-09 02:32:46 -07002797 }
2798
2799 /*
2800 * We were unable to place multiple objects in a slab. Now
2801 * lets see if we can place a single object there.
2802 */
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08002803 order = slab_order(size, 1, slub_max_order, 1, reserved);
Christoph Lameter5e6d4442007-05-09 02:32:46 -07002804 if (order <= slub_max_order)
2805 return order;
2806
2807 /*
2808 * Doh this slab cannot be placed using slub_max_order.
2809 */
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08002810 order = slab_order(size, 1, MAX_ORDER, 1, reserved);
David Rientjes818cf592009-04-23 09:58:22 +03002811 if (order < MAX_ORDER)
Christoph Lameter5e6d4442007-05-09 02:32:46 -07002812 return order;
2813 return -ENOSYS;
2814}
2815
Pekka Enberg5595cff2008-08-05 09:28:47 +03002816static void
Joonsoo Kim40534972012-05-11 00:50:47 +09002817init_kmem_cache_node(struct kmem_cache_node *n)
Christoph Lameter81819f02007-05-06 14:49:36 -07002818{
2819 n->nr_partial = 0;
Christoph Lameter81819f02007-05-06 14:49:36 -07002820 spin_lock_init(&n->list_lock);
2821 INIT_LIST_HEAD(&n->partial);
Christoph Lameter8ab13722007-07-17 04:03:32 -07002822#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter0f389ec2008-04-14 18:53:02 +03002823 atomic_long_set(&n->nr_slabs, 0);
Salman Qazi02b71b72008-09-11 12:25:41 -07002824 atomic_long_set(&n->total_objects, 0);
Christoph Lameter643b1132007-05-06 14:49:42 -07002825 INIT_LIST_HEAD(&n->full);
Christoph Lameter8ab13722007-07-17 04:03:32 -07002826#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07002827}
2828
Christoph Lameter55136592010-08-20 12:37:13 -05002829static inline int alloc_kmem_cache_cpus(struct kmem_cache *s)
Christoph Lameter4c93c3552007-10-16 01:26:08 -07002830{
Christoph Lameter6c182dc2010-08-20 12:37:14 -05002831 BUILD_BUG_ON(PERCPU_DYNAMIC_EARLY_SIZE <
Christoph Lameter95a05b42013-01-10 19:14:19 +00002832 KMALLOC_SHIFT_HIGH * sizeof(struct kmem_cache_cpu));
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06002833
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002834 /*
Chris Metcalfd4d84fe2011-06-02 10:19:41 -04002835 * Must align to double word boundary for the double cmpxchg
2836 * instructions to work; see __pcpu_double_call_return_bool().
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002837 */
Chris Metcalfd4d84fe2011-06-02 10:19:41 -04002838 s->cpu_slab = __alloc_percpu(sizeof(struct kmem_cache_cpu),
2839 2 * sizeof(void *));
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06002840
Christoph Lameter8a5ec0b2011-02-25 11:38:54 -06002841 if (!s->cpu_slab)
2842 return 0;
2843
2844 init_kmem_cache_cpus(s);
2845
2846 return 1;
Christoph Lameter4c93c3552007-10-16 01:26:08 -07002847}
Christoph Lameter4c93c3552007-10-16 01:26:08 -07002848
Christoph Lameter51df1142010-08-20 12:37:15 -05002849static struct kmem_cache *kmem_cache_node;
2850
Christoph Lameter81819f02007-05-06 14:49:36 -07002851/*
2852 * No kmalloc_node yet so do it by hand. We know that this is the first
2853 * slab on the node for this slabcache. There are no concurrent accesses
2854 * possible.
2855 *
Zhi Yong Wu721ae222013-11-08 20:47:37 +08002856 * Note that this function only works on the kmem_cache_node
2857 * when allocating for the kmem_cache_node. This is used for bootstrapping
Christoph Lameter4c93c3552007-10-16 01:26:08 -07002858 * memory on a fresh node that has no slab structures yet.
Christoph Lameter81819f02007-05-06 14:49:36 -07002859 */
Christoph Lameter55136592010-08-20 12:37:13 -05002860static void early_kmem_cache_node_alloc(int node)
Christoph Lameter81819f02007-05-06 14:49:36 -07002861{
2862 struct page *page;
2863 struct kmem_cache_node *n;
2864
Christoph Lameter51df1142010-08-20 12:37:15 -05002865 BUG_ON(kmem_cache_node->size < sizeof(struct kmem_cache_node));
Christoph Lameter81819f02007-05-06 14:49:36 -07002866
Christoph Lameter51df1142010-08-20 12:37:15 -05002867 page = new_slab(kmem_cache_node, GFP_NOWAIT, node);
Christoph Lameter81819f02007-05-06 14:49:36 -07002868
2869 BUG_ON(!page);
Christoph Lametera2f92ee2007-08-22 14:01:57 -07002870 if (page_to_nid(page) != node) {
Fabian Frederickf9f58282014-06-04 16:06:34 -07002871 pr_err("SLUB: Unable to allocate memory from node %d\n", node);
2872 pr_err("SLUB: Allocating a useless per node structure in order to be able to continue\n");
Christoph Lametera2f92ee2007-08-22 14:01:57 -07002873 }
2874
Christoph Lameter81819f02007-05-06 14:49:36 -07002875 n = page->freelist;
2876 BUG_ON(!n);
Christoph Lameter51df1142010-08-20 12:37:15 -05002877 page->freelist = get_freepointer(kmem_cache_node, n);
Christoph Lametere6e82ea2011-08-09 16:12:24 -05002878 page->inuse = 1;
Christoph Lameter8cb0a502011-06-01 12:25:46 -05002879 page->frozen = 0;
Christoph Lameter51df1142010-08-20 12:37:15 -05002880 kmem_cache_node->node[node] = n;
Christoph Lameter8ab13722007-07-17 04:03:32 -07002881#ifdef CONFIG_SLUB_DEBUG
Christoph Lameterf7cb1932010-09-29 07:15:01 -05002882 init_object(kmem_cache_node, n, SLUB_RED_ACTIVE);
Christoph Lameter51df1142010-08-20 12:37:15 -05002883 init_tracking(kmem_cache_node, n);
Christoph Lameter8ab13722007-07-17 04:03:32 -07002884#endif
Joonsoo Kim40534972012-05-11 00:50:47 +09002885 init_kmem_cache_node(n);
Christoph Lameter51df1142010-08-20 12:37:15 -05002886 inc_slabs_node(kmem_cache_node, node, page->objects);
Christoph Lameter6446faa2008-02-15 23:45:26 -08002887
Dave Hansen67b6c902014-01-24 07:20:23 -08002888 /*
Steven Rostedt1e4dd942014-02-10 14:25:46 -08002889 * No locks need to be taken here as it has just been
2890 * initialized and there is no concurrent access.
Dave Hansen67b6c902014-01-24 07:20:23 -08002891 */
Steven Rostedt1e4dd942014-02-10 14:25:46 -08002892 __add_partial(n, page, DEACTIVATE_TO_HEAD);
Christoph Lameter81819f02007-05-06 14:49:36 -07002893}
2894
2895static void free_kmem_cache_nodes(struct kmem_cache *s)
2896{
2897 int node;
Christoph Lameterfa45dc22014-08-06 16:04:09 -07002898 struct kmem_cache_node *n;
Christoph Lameter81819f02007-05-06 14:49:36 -07002899
Christoph Lameterfa45dc22014-08-06 16:04:09 -07002900 for_each_kmem_cache_node(s, node, n) {
2901 kmem_cache_free(kmem_cache_node, n);
Christoph Lameter81819f02007-05-06 14:49:36 -07002902 s->node[node] = NULL;
2903 }
2904}
2905
Christoph Lameter55136592010-08-20 12:37:13 -05002906static int init_kmem_cache_nodes(struct kmem_cache *s)
Christoph Lameter81819f02007-05-06 14:49:36 -07002907{
2908 int node;
Christoph Lameter81819f02007-05-06 14:49:36 -07002909
Christoph Lameterf64dc582007-10-16 01:25:33 -07002910 for_each_node_state(node, N_NORMAL_MEMORY) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002911 struct kmem_cache_node *n;
2912
Alexander Duyck73367bd2010-05-21 14:41:35 -07002913 if (slab_state == DOWN) {
Christoph Lameter55136592010-08-20 12:37:13 -05002914 early_kmem_cache_node_alloc(node);
Alexander Duyck73367bd2010-05-21 14:41:35 -07002915 continue;
Christoph Lameter81819f02007-05-06 14:49:36 -07002916 }
Christoph Lameter51df1142010-08-20 12:37:15 -05002917 n = kmem_cache_alloc_node(kmem_cache_node,
Christoph Lameter55136592010-08-20 12:37:13 -05002918 GFP_KERNEL, node);
Alexander Duyck73367bd2010-05-21 14:41:35 -07002919
2920 if (!n) {
2921 free_kmem_cache_nodes(s);
2922 return 0;
2923 }
2924
Christoph Lameter81819f02007-05-06 14:49:36 -07002925 s->node[node] = n;
Joonsoo Kim40534972012-05-11 00:50:47 +09002926 init_kmem_cache_node(n);
Christoph Lameter81819f02007-05-06 14:49:36 -07002927 }
2928 return 1;
2929}
Christoph Lameter81819f02007-05-06 14:49:36 -07002930
David Rientjesc0bdb232009-02-25 09:16:35 +02002931static void set_min_partial(struct kmem_cache *s, unsigned long min)
David Rientjes3b89d7d2009-02-22 17:40:07 -08002932{
2933 if (min < MIN_PARTIAL)
2934 min = MIN_PARTIAL;
2935 else if (min > MAX_PARTIAL)
2936 min = MAX_PARTIAL;
2937 s->min_partial = min;
2938}
2939
Christoph Lameter81819f02007-05-06 14:49:36 -07002940/*
2941 * calculate_sizes() determines the order and the distribution of data within
2942 * a slab object.
2943 */
Christoph Lameter06b285d2008-04-14 19:11:41 +03002944static int calculate_sizes(struct kmem_cache *s, int forced_order)
Christoph Lameter81819f02007-05-06 14:49:36 -07002945{
2946 unsigned long flags = s->flags;
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002947 unsigned long size = s->object_size;
Christoph Lameter834f3d12008-04-14 19:11:31 +03002948 int order;
Christoph Lameter81819f02007-05-06 14:49:36 -07002949
2950 /*
Christoph Lameterd8b42bf2008-02-15 23:45:25 -08002951 * Round up object size to the next word boundary. We can only
2952 * place the free pointer at word boundaries and this determines
2953 * the possible location of the free pointer.
2954 */
2955 size = ALIGN(size, sizeof(void *));
2956
2957#ifdef CONFIG_SLUB_DEBUG
2958 /*
Christoph Lameter81819f02007-05-06 14:49:36 -07002959 * Determine if we can poison the object itself. If the user of
2960 * the slab may touch the object after free or before allocation
2961 * then we should never poison the object itself.
2962 */
2963 if ((flags & SLAB_POISON) && !(flags & SLAB_DESTROY_BY_RCU) &&
Christoph Lameterc59def92007-05-16 22:10:50 -07002964 !s->ctor)
Christoph Lameter81819f02007-05-06 14:49:36 -07002965 s->flags |= __OBJECT_POISON;
2966 else
2967 s->flags &= ~__OBJECT_POISON;
2968
Christoph Lameter81819f02007-05-06 14:49:36 -07002969
2970 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07002971 * If we are Redzoning then check if there is some space between the
Christoph Lameter81819f02007-05-06 14:49:36 -07002972 * end of the object and the free pointer. If not then add an
Christoph Lameter672bba32007-05-09 02:32:39 -07002973 * additional word to have some bytes to store Redzone information.
Christoph Lameter81819f02007-05-06 14:49:36 -07002974 */
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05002975 if ((flags & SLAB_RED_ZONE) && size == s->object_size)
Christoph Lameter81819f02007-05-06 14:49:36 -07002976 size += sizeof(void *);
Christoph Lameter41ecc552007-05-09 02:32:44 -07002977#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07002978
2979 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07002980 * With that we have determined the number of bytes in actual use
2981 * by the object. This is the potential offset to the free pointer.
Christoph Lameter81819f02007-05-06 14:49:36 -07002982 */
2983 s->inuse = size;
2984
2985 if (((flags & (SLAB_DESTROY_BY_RCU | SLAB_POISON)) ||
Christoph Lameterc59def92007-05-16 22:10:50 -07002986 s->ctor)) {
Christoph Lameter81819f02007-05-06 14:49:36 -07002987 /*
2988 * Relocate free pointer after the object if it is not
2989 * permitted to overwrite the first word of the object on
2990 * kmem_cache_free.
2991 *
2992 * This is the case if we do RCU, have a constructor or
2993 * destructor or are poisoning the objects.
2994 */
2995 s->offset = size;
2996 size += sizeof(void *);
2997 }
2998
Christoph Lameterc12b3c62007-05-23 13:57:31 -07002999#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter81819f02007-05-06 14:49:36 -07003000 if (flags & SLAB_STORE_USER)
3001 /*
3002 * Need to store information about allocs and frees after
3003 * the object.
3004 */
3005 size += 2 * sizeof(struct track);
3006
Christoph Lameterbe7b3fb2007-05-09 02:32:36 -07003007 if (flags & SLAB_RED_ZONE)
Christoph Lameter81819f02007-05-06 14:49:36 -07003008 /*
3009 * Add some empty padding so that we can catch
3010 * overwrites from earlier objects rather than let
3011 * tracking information or the free pointer be
Frederik Schwarzer0211a9c2008-12-29 22:14:56 +01003012 * corrupted if a user writes before the start
Christoph Lameter81819f02007-05-06 14:49:36 -07003013 * of the object.
3014 */
3015 size += sizeof(void *);
Christoph Lameter41ecc552007-05-09 02:32:44 -07003016#endif
Christoph Lameter672bba32007-05-09 02:32:39 -07003017
Christoph Lameter81819f02007-05-06 14:49:36 -07003018 /*
Christoph Lameter81819f02007-05-06 14:49:36 -07003019 * SLUB stores one object immediately after another beginning from
3020 * offset 0. In order to align the objects we have to simply size
3021 * each object to conform to the alignment.
3022 */
Christoph Lameter45906852012-11-28 16:23:16 +00003023 size = ALIGN(size, s->align);
Christoph Lameter81819f02007-05-06 14:49:36 -07003024 s->size = size;
Christoph Lameter06b285d2008-04-14 19:11:41 +03003025 if (forced_order >= 0)
3026 order = forced_order;
3027 else
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08003028 order = calculate_order(size, s->reserved);
Christoph Lameter81819f02007-05-06 14:49:36 -07003029
Christoph Lameter834f3d12008-04-14 19:11:31 +03003030 if (order < 0)
Christoph Lameter81819f02007-05-06 14:49:36 -07003031 return 0;
3032
Christoph Lameterb7a49f02008-02-14 14:21:32 -08003033 s->allocflags = 0;
Christoph Lameter834f3d12008-04-14 19:11:31 +03003034 if (order)
Christoph Lameterb7a49f02008-02-14 14:21:32 -08003035 s->allocflags |= __GFP_COMP;
3036
3037 if (s->flags & SLAB_CACHE_DMA)
Christoph Lameter2c59dd62013-01-10 19:14:19 +00003038 s->allocflags |= GFP_DMA;
Christoph Lameterb7a49f02008-02-14 14:21:32 -08003039
3040 if (s->flags & SLAB_RECLAIM_ACCOUNT)
3041 s->allocflags |= __GFP_RECLAIMABLE;
3042
Christoph Lameter81819f02007-05-06 14:49:36 -07003043 /*
3044 * Determine the number of objects per slab
3045 */
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08003046 s->oo = oo_make(order, size, s->reserved);
3047 s->min = oo_make(get_order(size), size, s->reserved);
Christoph Lameter205ab992008-04-14 19:11:40 +03003048 if (oo_objects(s->oo) > oo_objects(s->max))
3049 s->max = s->oo;
Christoph Lameter81819f02007-05-06 14:49:36 -07003050
Christoph Lameter834f3d12008-04-14 19:11:31 +03003051 return !!oo_objects(s->oo);
Christoph Lameter81819f02007-05-06 14:49:36 -07003052}
3053
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00003054static int kmem_cache_open(struct kmem_cache *s, unsigned long flags)
Christoph Lameter81819f02007-05-06 14:49:36 -07003055{
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00003056 s->flags = kmem_cache_flags(s->size, flags, s->name, s->ctor);
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08003057 s->reserved = 0;
Christoph Lameter81819f02007-05-06 14:49:36 -07003058
Lai Jiangshanda9a6382011-03-10 15:22:00 +08003059 if (need_reserve_slab_rcu && (s->flags & SLAB_DESTROY_BY_RCU))
3060 s->reserved = sizeof(struct rcu_head);
Christoph Lameter81819f02007-05-06 14:49:36 -07003061
Christoph Lameter06b285d2008-04-14 19:11:41 +03003062 if (!calculate_sizes(s, -1))
Christoph Lameter81819f02007-05-06 14:49:36 -07003063 goto error;
David Rientjes3de47212009-07-27 18:30:35 -07003064 if (disable_higher_order_debug) {
3065 /*
3066 * Disable debugging flags that store metadata if the min slab
3067 * order increased.
3068 */
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003069 if (get_order(s->size) > get_order(s->object_size)) {
David Rientjes3de47212009-07-27 18:30:35 -07003070 s->flags &= ~DEBUG_METADATA_FLAGS;
3071 s->offset = 0;
3072 if (!calculate_sizes(s, -1))
3073 goto error;
3074 }
3075 }
Christoph Lameter81819f02007-05-06 14:49:36 -07003076
Heiko Carstens25654092012-01-12 17:17:33 -08003077#if defined(CONFIG_HAVE_CMPXCHG_DOUBLE) && \
3078 defined(CONFIG_HAVE_ALIGNED_STRUCT_PAGE)
Christoph Lameterb789ef52011-06-01 12:25:49 -05003079 if (system_has_cmpxchg_double() && (s->flags & SLAB_DEBUG_FLAGS) == 0)
3080 /* Enable fast mode */
3081 s->flags |= __CMPXCHG_DOUBLE;
3082#endif
3083
David Rientjes3b89d7d2009-02-22 17:40:07 -08003084 /*
3085 * The larger the object size is, the more pages we want on the partial
3086 * list to avoid pounding the page allocator excessively.
3087 */
Christoph Lameter49e22582011-08-09 16:12:27 -05003088 set_min_partial(s, ilog2(s->size) / 2);
3089
3090 /*
3091 * cpu_partial determined the maximum number of objects kept in the
3092 * per cpu partial lists of a processor.
3093 *
3094 * Per cpu partial lists mainly contain slabs that just have one
3095 * object freed. If they are used for allocation then they can be
3096 * filled up again with minimal effort. The slab will never hit the
3097 * per node partial lists and therefore no locking will be required.
3098 *
3099 * This setting also determines
3100 *
3101 * A) The number of objects from per cpu partial slabs dumped to the
3102 * per node list when we reach the limit.
Alex Shi9f264902011-09-01 11:32:18 +08003103 * B) The number of objects in cpu partial slabs to extract from the
Chen Gangd0e0ac92013-07-15 09:05:29 +08003104 * per node list when we run out of per cpu objects. We only fetch
3105 * 50% to keep some capacity around for frees.
Christoph Lameter49e22582011-08-09 16:12:27 -05003106 */
Joonsoo Kim345c9052013-06-19 14:05:52 +09003107 if (!kmem_cache_has_cpu_partial(s))
Christoph Lameter8f1e33d2011-11-23 09:24:27 -06003108 s->cpu_partial = 0;
3109 else if (s->size >= PAGE_SIZE)
Christoph Lameter49e22582011-08-09 16:12:27 -05003110 s->cpu_partial = 2;
3111 else if (s->size >= 1024)
3112 s->cpu_partial = 6;
3113 else if (s->size >= 256)
3114 s->cpu_partial = 13;
3115 else
3116 s->cpu_partial = 30;
3117
Christoph Lameter81819f02007-05-06 14:49:36 -07003118#ifdef CONFIG_NUMA
Christoph Lametere2cb96b2008-08-19 08:51:22 -05003119 s->remote_node_defrag_ratio = 1000;
Christoph Lameter81819f02007-05-06 14:49:36 -07003120#endif
Christoph Lameter55136592010-08-20 12:37:13 -05003121 if (!init_kmem_cache_nodes(s))
Christoph Lameterdfb4f092007-10-16 01:26:05 -07003122 goto error;
Christoph Lameter81819f02007-05-06 14:49:36 -07003123
Christoph Lameter55136592010-08-20 12:37:13 -05003124 if (alloc_kmem_cache_cpus(s))
Christoph Lameter278b1bb2012-09-05 00:20:34 +00003125 return 0;
Christoph Lameterff120592009-12-18 16:26:22 -06003126
Christoph Lameter4c93c3552007-10-16 01:26:08 -07003127 free_kmem_cache_nodes(s);
Christoph Lameter81819f02007-05-06 14:49:36 -07003128error:
3129 if (flags & SLAB_PANIC)
3130 panic("Cannot create slab %s size=%lu realsize=%u "
3131 "order=%u offset=%u flags=%lx\n",
Chen Gangd0e0ac92013-07-15 09:05:29 +08003132 s->name, (unsigned long)s->size, s->size,
3133 oo_order(s->oo), s->offset, flags);
Christoph Lameter278b1bb2012-09-05 00:20:34 +00003134 return -EINVAL;
Christoph Lameter81819f02007-05-06 14:49:36 -07003135}
Christoph Lameter81819f02007-05-06 14:49:36 -07003136
Christoph Lameter33b12c32008-04-25 12:22:43 -07003137static void list_slab_objects(struct kmem_cache *s, struct page *page,
3138 const char *text)
Christoph Lameter81819f02007-05-06 14:49:36 -07003139{
Christoph Lameter33b12c32008-04-25 12:22:43 -07003140#ifdef CONFIG_SLUB_DEBUG
3141 void *addr = page_address(page);
3142 void *p;
Namhyung Kima5dd5c12010-09-29 21:02:13 +09003143 unsigned long *map = kzalloc(BITS_TO_LONGS(page->objects) *
3144 sizeof(long), GFP_ATOMIC);
Eric Dumazetbbd7d572010-03-24 22:25:47 +01003145 if (!map)
3146 return;
Christoph Lameter945cf2b2012-09-04 23:18:33 +00003147 slab_err(s, page, text, s->name);
Christoph Lameter33b12c32008-04-25 12:22:43 -07003148 slab_lock(page);
Christoph Lameter33b12c32008-04-25 12:22:43 -07003149
Christoph Lameter5f80b132011-04-15 14:48:13 -05003150 get_map(s, page, map);
Christoph Lameter33b12c32008-04-25 12:22:43 -07003151 for_each_object(p, s, addr, page->objects) {
3152
3153 if (!test_bit(slab_index(p, s, addr), map)) {
Fabian Frederickf9f58282014-06-04 16:06:34 -07003154 pr_err("INFO: Object 0x%p @offset=%tu\n", p, p - addr);
Christoph Lameter33b12c32008-04-25 12:22:43 -07003155 print_tracking(s, p);
3156 }
3157 }
3158 slab_unlock(page);
Eric Dumazetbbd7d572010-03-24 22:25:47 +01003159 kfree(map);
Christoph Lameter33b12c32008-04-25 12:22:43 -07003160#endif
3161}
3162
Christoph Lameter81819f02007-05-06 14:49:36 -07003163/*
Christoph Lameter599870b2008-04-23 12:36:52 -07003164 * Attempt to free all partial slabs on a node.
Christoph Lameter69cb8e62011-08-09 16:12:22 -05003165 * This is called from kmem_cache_close(). We must be the last thread
3166 * using the cache and therefore we do not need to lock anymore.
Christoph Lameter81819f02007-05-06 14:49:36 -07003167 */
Christoph Lameter599870b2008-04-23 12:36:52 -07003168static void free_partial(struct kmem_cache *s, struct kmem_cache_node *n)
Christoph Lameter81819f02007-05-06 14:49:36 -07003169{
Christoph Lameter81819f02007-05-06 14:49:36 -07003170 struct page *page, *h;
3171
Christoph Lameter33b12c32008-04-25 12:22:43 -07003172 list_for_each_entry_safe(page, h, &n->partial, lru) {
Christoph Lameter81819f02007-05-06 14:49:36 -07003173 if (!page->inuse) {
Steven Rostedt1e4dd942014-02-10 14:25:46 -08003174 __remove_partial(n, page);
Christoph Lameter81819f02007-05-06 14:49:36 -07003175 discard_slab(s, page);
Christoph Lameter33b12c32008-04-25 12:22:43 -07003176 } else {
3177 list_slab_objects(s, page,
Christoph Lameter945cf2b2012-09-04 23:18:33 +00003178 "Objects remaining in %s on kmem_cache_close()");
Christoph Lameter599870b2008-04-23 12:36:52 -07003179 }
Christoph Lameter33b12c32008-04-25 12:22:43 -07003180 }
Christoph Lameter81819f02007-05-06 14:49:36 -07003181}
3182
3183/*
Christoph Lameter672bba32007-05-09 02:32:39 -07003184 * Release all resources used by a slab cache.
Christoph Lameter81819f02007-05-06 14:49:36 -07003185 */
Christoph Lameter0c710012007-07-17 04:03:24 -07003186static inline int kmem_cache_close(struct kmem_cache *s)
Christoph Lameter81819f02007-05-06 14:49:36 -07003187{
3188 int node;
Christoph Lameterfa45dc22014-08-06 16:04:09 -07003189 struct kmem_cache_node *n;
Christoph Lameter81819f02007-05-06 14:49:36 -07003190
3191 flush_all(s);
Christoph Lameter81819f02007-05-06 14:49:36 -07003192 /* Attempt to free all objects */
Christoph Lameterfa45dc22014-08-06 16:04:09 -07003193 for_each_kmem_cache_node(s, node, n) {
Christoph Lameter599870b2008-04-23 12:36:52 -07003194 free_partial(s, n);
3195 if (n->nr_partial || slabs_node(s, node))
Christoph Lameter81819f02007-05-06 14:49:36 -07003196 return 1;
3197 }
Christoph Lameter945cf2b2012-09-04 23:18:33 +00003198 free_percpu(s->cpu_slab);
Christoph Lameter81819f02007-05-06 14:49:36 -07003199 free_kmem_cache_nodes(s);
3200 return 0;
3201}
3202
Christoph Lameter945cf2b2012-09-04 23:18:33 +00003203int __kmem_cache_shutdown(struct kmem_cache *s)
Christoph Lameter81819f02007-05-06 14:49:36 -07003204{
Christoph Lameter41a21282014-05-06 12:50:08 -07003205 return kmem_cache_close(s);
Christoph Lameter81819f02007-05-06 14:49:36 -07003206}
Christoph Lameter81819f02007-05-06 14:49:36 -07003207
3208/********************************************************************
3209 * Kmalloc subsystem
3210 *******************************************************************/
3211
Christoph Lameter81819f02007-05-06 14:49:36 -07003212static int __init setup_slub_min_order(char *str)
3213{
Pekka Enberg06428782008-01-07 23:20:27 -08003214 get_option(&str, &slub_min_order);
Christoph Lameter81819f02007-05-06 14:49:36 -07003215
3216 return 1;
3217}
3218
3219__setup("slub_min_order=", setup_slub_min_order);
3220
3221static int __init setup_slub_max_order(char *str)
3222{
Pekka Enberg06428782008-01-07 23:20:27 -08003223 get_option(&str, &slub_max_order);
David Rientjes818cf592009-04-23 09:58:22 +03003224 slub_max_order = min(slub_max_order, MAX_ORDER - 1);
Christoph Lameter81819f02007-05-06 14:49:36 -07003225
3226 return 1;
3227}
3228
3229__setup("slub_max_order=", setup_slub_max_order);
3230
3231static int __init setup_slub_min_objects(char *str)
3232{
Pekka Enberg06428782008-01-07 23:20:27 -08003233 get_option(&str, &slub_min_objects);
Christoph Lameter81819f02007-05-06 14:49:36 -07003234
3235 return 1;
3236}
3237
3238__setup("slub_min_objects=", setup_slub_min_objects);
3239
3240static int __init setup_slub_nomerge(char *str)
3241{
3242 slub_nomerge = 1;
3243 return 1;
3244}
3245
3246__setup("slub_nomerge", setup_slub_nomerge);
3247
Christoph Lameter81819f02007-05-06 14:49:36 -07003248void *__kmalloc(size_t size, gfp_t flags)
3249{
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003250 struct kmem_cache *s;
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03003251 void *ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07003252
Christoph Lameter95a05b42013-01-10 19:14:19 +00003253 if (unlikely(size > KMALLOC_MAX_CACHE_SIZE))
Pekka Enbergeada35e2008-02-11 22:47:46 +02003254 return kmalloc_large(size, flags);
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003255
Christoph Lameter2c59dd62013-01-10 19:14:19 +00003256 s = kmalloc_slab(size, flags);
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003257
3258 if (unlikely(ZERO_OR_NULL_PTR(s)))
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003259 return s;
3260
Ezequiel Garcia2b847c32012-09-08 17:47:58 -03003261 ret = slab_alloc(s, flags, _RET_IP_);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03003262
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003263 trace_kmalloc(_RET_IP_, ret, size, s->size, flags);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03003264
3265 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07003266}
3267EXPORT_SYMBOL(__kmalloc);
3268
Namhyung Kim5d1f57e2010-09-29 21:02:15 +09003269#ifdef CONFIG_NUMA
Christoph Lameterf619cfe2008-03-01 13:56:40 -08003270static void *kmalloc_large_node(size_t size, gfp_t flags, int node)
3271{
Vegard Nossumb1eeab62008-11-25 16:55:53 +01003272 struct page *page;
Catalin Marinase4f7c0b42009-07-07 10:32:59 +01003273 void *ptr = NULL;
Christoph Lameterf619cfe2008-03-01 13:56:40 -08003274
Vladimir Davydov52383432014-06-04 16:06:39 -07003275 flags |= __GFP_COMP | __GFP_NOTRACK;
3276 page = alloc_kmem_pages_node(node, flags, get_order(size));
Christoph Lameterf619cfe2008-03-01 13:56:40 -08003277 if (page)
Catalin Marinase4f7c0b42009-07-07 10:32:59 +01003278 ptr = page_address(page);
3279
Roman Bobnievd56791b2013-10-08 15:58:57 -07003280 kmalloc_large_node_hook(ptr, size, flags);
Catalin Marinase4f7c0b42009-07-07 10:32:59 +01003281 return ptr;
Christoph Lameterf619cfe2008-03-01 13:56:40 -08003282}
3283
Christoph Lameter81819f02007-05-06 14:49:36 -07003284void *__kmalloc_node(size_t size, gfp_t flags, int node)
3285{
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003286 struct kmem_cache *s;
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03003287 void *ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07003288
Christoph Lameter95a05b42013-01-10 19:14:19 +00003289 if (unlikely(size > KMALLOC_MAX_CACHE_SIZE)) {
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03003290 ret = kmalloc_large_node(size, flags, node);
3291
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003292 trace_kmalloc_node(_RET_IP_, ret,
3293 size, PAGE_SIZE << get_order(size),
3294 flags, node);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03003295
3296 return ret;
3297 }
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003298
Christoph Lameter2c59dd62013-01-10 19:14:19 +00003299 s = kmalloc_slab(size, flags);
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003300
3301 if (unlikely(ZERO_OR_NULL_PTR(s)))
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003302 return s;
3303
Ezequiel Garcia2b847c32012-09-08 17:47:58 -03003304 ret = slab_alloc_node(s, flags, node, _RET_IP_);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03003305
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003306 trace_kmalloc_node(_RET_IP_, ret, size, s->size, flags, node);
Eduard - Gabriel Munteanu5b882be2008-08-19 20:43:26 +03003307
3308 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07003309}
3310EXPORT_SYMBOL(__kmalloc_node);
3311#endif
3312
3313size_t ksize(const void *object)
3314{
Christoph Lameter272c1d22007-06-08 13:46:49 -07003315 struct page *page;
Christoph Lameter81819f02007-05-06 14:49:36 -07003316
Christoph Lameteref8b4522007-10-16 01:24:46 -07003317 if (unlikely(object == ZERO_SIZE_PTR))
Christoph Lameter272c1d22007-06-08 13:46:49 -07003318 return 0;
3319
Vegard Nossum294a80a2007-12-04 23:45:30 -08003320 page = virt_to_head_page(object);
Vegard Nossum294a80a2007-12-04 23:45:30 -08003321
Pekka Enberg76994412008-05-22 19:22:25 +03003322 if (unlikely(!PageSlab(page))) {
3323 WARN_ON(!PageCompound(page));
Vegard Nossum294a80a2007-12-04 23:45:30 -08003324 return PAGE_SIZE << compound_order(page);
Pekka Enberg76994412008-05-22 19:22:25 +03003325 }
Christoph Lameter81819f02007-05-06 14:49:36 -07003326
Glauber Costa1b4f59e32012-10-22 18:05:36 +04003327 return slab_ksize(page->slab_cache);
Christoph Lameter81819f02007-05-06 14:49:36 -07003328}
Kirill A. Shutemovb1aabec2009-02-10 15:21:44 +02003329EXPORT_SYMBOL(ksize);
Christoph Lameter81819f02007-05-06 14:49:36 -07003330
3331void kfree(const void *x)
3332{
Christoph Lameter81819f02007-05-06 14:49:36 -07003333 struct page *page;
Christoph Lameter5bb983b2008-02-07 17:47:41 -08003334 void *object = (void *)x;
Christoph Lameter81819f02007-05-06 14:49:36 -07003335
Pekka Enberg2121db72009-03-25 11:05:57 +02003336 trace_kfree(_RET_IP_, x);
3337
Satyam Sharma2408c552007-10-16 01:24:44 -07003338 if (unlikely(ZERO_OR_NULL_PTR(x)))
Christoph Lameter81819f02007-05-06 14:49:36 -07003339 return;
3340
Christoph Lameterb49af682007-05-06 14:49:41 -07003341 page = virt_to_head_page(x);
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003342 if (unlikely(!PageSlab(page))) {
Christoph Lameter09375022008-05-28 10:32:22 -07003343 BUG_ON(!PageCompound(page));
Roman Bobnievd56791b2013-10-08 15:58:57 -07003344 kfree_hook(x);
Vladimir Davydov52383432014-06-04 16:06:39 -07003345 __free_kmem_pages(page, compound_order(page));
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003346 return;
3347 }
Glauber Costa1b4f59e32012-10-22 18:05:36 +04003348 slab_free(page->slab_cache, page, object, _RET_IP_);
Christoph Lameter81819f02007-05-06 14:49:36 -07003349}
3350EXPORT_SYMBOL(kfree);
3351
Christoph Lameter2086d262007-05-06 14:49:46 -07003352/*
Christoph Lameter672bba32007-05-09 02:32:39 -07003353 * kmem_cache_shrink removes empty slabs from the partial lists and sorts
3354 * the remaining slabs by the number of items in use. The slabs with the
3355 * most items in use come first. New allocations will then fill those up
3356 * and thus they can be removed from the partial lists.
3357 *
3358 * The slabs with the least items are placed last. This results in them
3359 * being allocated from last increasing the chance that the last objects
3360 * are freed in them.
Christoph Lameter2086d262007-05-06 14:49:46 -07003361 */
Vladimir Davydov03afc0e2014-06-04 16:07:20 -07003362int __kmem_cache_shrink(struct kmem_cache *s)
Christoph Lameter2086d262007-05-06 14:49:46 -07003363{
3364 int node;
3365 int i;
3366 struct kmem_cache_node *n;
3367 struct page *page;
3368 struct page *t;
Christoph Lameter205ab992008-04-14 19:11:40 +03003369 int objects = oo_objects(s->max);
Christoph Lameter2086d262007-05-06 14:49:46 -07003370 struct list_head *slabs_by_inuse =
Christoph Lameter834f3d12008-04-14 19:11:31 +03003371 kmalloc(sizeof(struct list_head) * objects, GFP_KERNEL);
Christoph Lameter2086d262007-05-06 14:49:46 -07003372 unsigned long flags;
3373
3374 if (!slabs_by_inuse)
3375 return -ENOMEM;
3376
3377 flush_all(s);
Christoph Lameterfa45dc22014-08-06 16:04:09 -07003378 for_each_kmem_cache_node(s, node, n) {
Christoph Lameter2086d262007-05-06 14:49:46 -07003379 if (!n->nr_partial)
3380 continue;
3381
Christoph Lameter834f3d12008-04-14 19:11:31 +03003382 for (i = 0; i < objects; i++)
Christoph Lameter2086d262007-05-06 14:49:46 -07003383 INIT_LIST_HEAD(slabs_by_inuse + i);
3384
3385 spin_lock_irqsave(&n->list_lock, flags);
3386
3387 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07003388 * Build lists indexed by the items in use in each slab.
Christoph Lameter2086d262007-05-06 14:49:46 -07003389 *
Christoph Lameter672bba32007-05-09 02:32:39 -07003390 * Note that concurrent frees may occur while we hold the
3391 * list_lock. page->inuse here is the upper limit.
Christoph Lameter2086d262007-05-06 14:49:46 -07003392 */
3393 list_for_each_entry_safe(page, t, &n->partial, lru) {
Christoph Lameter69cb8e62011-08-09 16:12:22 -05003394 list_move(&page->lru, slabs_by_inuse + page->inuse);
3395 if (!page->inuse)
3396 n->nr_partial--;
Christoph Lameter2086d262007-05-06 14:49:46 -07003397 }
3398
Christoph Lameter2086d262007-05-06 14:49:46 -07003399 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07003400 * Rebuild the partial list with the slabs filled up most
3401 * first and the least used slabs at the end.
Christoph Lameter2086d262007-05-06 14:49:46 -07003402 */
Christoph Lameter69cb8e62011-08-09 16:12:22 -05003403 for (i = objects - 1; i > 0; i--)
Christoph Lameter2086d262007-05-06 14:49:46 -07003404 list_splice(slabs_by_inuse + i, n->partial.prev);
3405
Christoph Lameter2086d262007-05-06 14:49:46 -07003406 spin_unlock_irqrestore(&n->list_lock, flags);
Christoph Lameter69cb8e62011-08-09 16:12:22 -05003407
3408 /* Release empty slabs */
3409 list_for_each_entry_safe(page, t, slabs_by_inuse, lru)
3410 discard_slab(s, page);
Christoph Lameter2086d262007-05-06 14:49:46 -07003411 }
3412
3413 kfree(slabs_by_inuse);
3414 return 0;
3415}
Christoph Lameter2086d262007-05-06 14:49:46 -07003416
Yasunori Gotob9049e22007-10-21 16:41:37 -07003417static int slab_mem_going_offline_callback(void *arg)
3418{
3419 struct kmem_cache *s;
3420
Christoph Lameter18004c52012-07-06 15:25:12 -05003421 mutex_lock(&slab_mutex);
Yasunori Gotob9049e22007-10-21 16:41:37 -07003422 list_for_each_entry(s, &slab_caches, list)
Vladimir Davydov03afc0e2014-06-04 16:07:20 -07003423 __kmem_cache_shrink(s);
Christoph Lameter18004c52012-07-06 15:25:12 -05003424 mutex_unlock(&slab_mutex);
Yasunori Gotob9049e22007-10-21 16:41:37 -07003425
3426 return 0;
3427}
3428
3429static void slab_mem_offline_callback(void *arg)
3430{
3431 struct kmem_cache_node *n;
3432 struct kmem_cache *s;
3433 struct memory_notify *marg = arg;
3434 int offline_node;
3435
Lai Jiangshanb9d5ab22012-12-11 16:01:05 -08003436 offline_node = marg->status_change_nid_normal;
Yasunori Gotob9049e22007-10-21 16:41:37 -07003437
3438 /*
3439 * If the node still has available memory. we need kmem_cache_node
3440 * for it yet.
3441 */
3442 if (offline_node < 0)
3443 return;
3444
Christoph Lameter18004c52012-07-06 15:25:12 -05003445 mutex_lock(&slab_mutex);
Yasunori Gotob9049e22007-10-21 16:41:37 -07003446 list_for_each_entry(s, &slab_caches, list) {
3447 n = get_node(s, offline_node);
3448 if (n) {
3449 /*
3450 * if n->nr_slabs > 0, slabs still exist on the node
3451 * that is going down. We were unable to free them,
Adam Buchbinderc9404c92009-12-18 15:40:42 -05003452 * and offline_pages() function shouldn't call this
Yasunori Gotob9049e22007-10-21 16:41:37 -07003453 * callback. So, we must fail.
3454 */
Christoph Lameter0f389ec2008-04-14 18:53:02 +03003455 BUG_ON(slabs_node(s, offline_node));
Yasunori Gotob9049e22007-10-21 16:41:37 -07003456
3457 s->node[offline_node] = NULL;
Christoph Lameter8de66a02010-08-25 14:51:14 -05003458 kmem_cache_free(kmem_cache_node, n);
Yasunori Gotob9049e22007-10-21 16:41:37 -07003459 }
3460 }
Christoph Lameter18004c52012-07-06 15:25:12 -05003461 mutex_unlock(&slab_mutex);
Yasunori Gotob9049e22007-10-21 16:41:37 -07003462}
3463
3464static int slab_mem_going_online_callback(void *arg)
3465{
3466 struct kmem_cache_node *n;
3467 struct kmem_cache *s;
3468 struct memory_notify *marg = arg;
Lai Jiangshanb9d5ab22012-12-11 16:01:05 -08003469 int nid = marg->status_change_nid_normal;
Yasunori Gotob9049e22007-10-21 16:41:37 -07003470 int ret = 0;
3471
3472 /*
3473 * If the node's memory is already available, then kmem_cache_node is
3474 * already created. Nothing to do.
3475 */
3476 if (nid < 0)
3477 return 0;
3478
3479 /*
Christoph Lameter0121c6192008-04-29 16:11:12 -07003480 * We are bringing a node online. No memory is available yet. We must
Yasunori Gotob9049e22007-10-21 16:41:37 -07003481 * allocate a kmem_cache_node structure in order to bring the node
3482 * online.
3483 */
Christoph Lameter18004c52012-07-06 15:25:12 -05003484 mutex_lock(&slab_mutex);
Yasunori Gotob9049e22007-10-21 16:41:37 -07003485 list_for_each_entry(s, &slab_caches, list) {
3486 /*
3487 * XXX: kmem_cache_alloc_node will fallback to other nodes
3488 * since memory is not yet available from the node that
3489 * is brought up.
3490 */
Christoph Lameter8de66a02010-08-25 14:51:14 -05003491 n = kmem_cache_alloc(kmem_cache_node, GFP_KERNEL);
Yasunori Gotob9049e22007-10-21 16:41:37 -07003492 if (!n) {
3493 ret = -ENOMEM;
3494 goto out;
3495 }
Joonsoo Kim40534972012-05-11 00:50:47 +09003496 init_kmem_cache_node(n);
Yasunori Gotob9049e22007-10-21 16:41:37 -07003497 s->node[nid] = n;
3498 }
3499out:
Christoph Lameter18004c52012-07-06 15:25:12 -05003500 mutex_unlock(&slab_mutex);
Yasunori Gotob9049e22007-10-21 16:41:37 -07003501 return ret;
3502}
3503
3504static int slab_memory_callback(struct notifier_block *self,
3505 unsigned long action, void *arg)
3506{
3507 int ret = 0;
3508
3509 switch (action) {
3510 case MEM_GOING_ONLINE:
3511 ret = slab_mem_going_online_callback(arg);
3512 break;
3513 case MEM_GOING_OFFLINE:
3514 ret = slab_mem_going_offline_callback(arg);
3515 break;
3516 case MEM_OFFLINE:
3517 case MEM_CANCEL_ONLINE:
3518 slab_mem_offline_callback(arg);
3519 break;
3520 case MEM_ONLINE:
3521 case MEM_CANCEL_OFFLINE:
3522 break;
3523 }
KAMEZAWA Hiroyukidc19f9d2008-12-01 13:13:48 -08003524 if (ret)
3525 ret = notifier_from_errno(ret);
3526 else
3527 ret = NOTIFY_OK;
Yasunori Gotob9049e22007-10-21 16:41:37 -07003528 return ret;
3529}
3530
Andrew Morton3ac38fa2013-04-29 15:08:06 -07003531static struct notifier_block slab_memory_callback_nb = {
3532 .notifier_call = slab_memory_callback,
3533 .priority = SLAB_CALLBACK_PRI,
3534};
Yasunori Gotob9049e22007-10-21 16:41:37 -07003535
Christoph Lameter81819f02007-05-06 14:49:36 -07003536/********************************************************************
3537 * Basic setup of slabs
3538 *******************************************************************/
3539
Christoph Lameter51df1142010-08-20 12:37:15 -05003540/*
3541 * Used for early kmem_cache structures that were allocated using
Christoph Lameterdffb4d62012-11-28 16:23:07 +00003542 * the page allocator. Allocate them properly then fix up the pointers
3543 * that may be pointing to the wrong kmem_cache structure.
Christoph Lameter51df1142010-08-20 12:37:15 -05003544 */
3545
Christoph Lameterdffb4d62012-11-28 16:23:07 +00003546static struct kmem_cache * __init bootstrap(struct kmem_cache *static_cache)
Christoph Lameter51df1142010-08-20 12:37:15 -05003547{
3548 int node;
Christoph Lameterdffb4d62012-11-28 16:23:07 +00003549 struct kmem_cache *s = kmem_cache_zalloc(kmem_cache, GFP_NOWAIT);
Christoph Lameterfa45dc22014-08-06 16:04:09 -07003550 struct kmem_cache_node *n;
Christoph Lameter51df1142010-08-20 12:37:15 -05003551
Christoph Lameterdffb4d62012-11-28 16:23:07 +00003552 memcpy(s, static_cache, kmem_cache->object_size);
Christoph Lameter51df1142010-08-20 12:37:15 -05003553
Glauber Costa7d557b32013-02-22 20:20:00 +04003554 /*
3555 * This runs very early, and only the boot processor is supposed to be
3556 * up. Even if it weren't true, IRQs are not up so we couldn't fire
3557 * IPIs around.
3558 */
3559 __flush_cpu_slab(s, smp_processor_id());
Christoph Lameterfa45dc22014-08-06 16:04:09 -07003560 for_each_kmem_cache_node(s, node, n) {
Christoph Lameter51df1142010-08-20 12:37:15 -05003561 struct page *p;
3562
Christoph Lameterfa45dc22014-08-06 16:04:09 -07003563 list_for_each_entry(p, &n->partial, lru)
3564 p->slab_cache = s;
Christoph Lameter51df1142010-08-20 12:37:15 -05003565
Li Zefan607bf322011-04-12 15:22:26 +08003566#ifdef CONFIG_SLUB_DEBUG
Christoph Lameterfa45dc22014-08-06 16:04:09 -07003567 list_for_each_entry(p, &n->full, lru)
3568 p->slab_cache = s;
Christoph Lameter51df1142010-08-20 12:37:15 -05003569#endif
Christoph Lameter51df1142010-08-20 12:37:15 -05003570 }
Christoph Lameterdffb4d62012-11-28 16:23:07 +00003571 list_add(&s->list, &slab_caches);
3572 return s;
Christoph Lameter51df1142010-08-20 12:37:15 -05003573}
3574
Christoph Lameter81819f02007-05-06 14:49:36 -07003575void __init kmem_cache_init(void)
3576{
Christoph Lameterdffb4d62012-11-28 16:23:07 +00003577 static __initdata struct kmem_cache boot_kmem_cache,
3578 boot_kmem_cache_node;
Christoph Lameter51df1142010-08-20 12:37:15 -05003579
Stanislaw Gruszkafc8d8622012-01-10 15:07:32 -08003580 if (debug_guardpage_minorder())
3581 slub_max_order = 0;
3582
Christoph Lameterdffb4d62012-11-28 16:23:07 +00003583 kmem_cache_node = &boot_kmem_cache_node;
3584 kmem_cache = &boot_kmem_cache;
Christoph Lameter51df1142010-08-20 12:37:15 -05003585
Christoph Lameterdffb4d62012-11-28 16:23:07 +00003586 create_boot_cache(kmem_cache_node, "kmem_cache_node",
3587 sizeof(struct kmem_cache_node), SLAB_HWCACHE_ALIGN);
Yasunori Gotob9049e22007-10-21 16:41:37 -07003588
Andrew Morton3ac38fa2013-04-29 15:08:06 -07003589 register_hotmemory_notifier(&slab_memory_callback_nb);
Christoph Lameter81819f02007-05-06 14:49:36 -07003590
3591 /* Able to allocate the per node structures */
3592 slab_state = PARTIAL;
3593
Christoph Lameterdffb4d62012-11-28 16:23:07 +00003594 create_boot_cache(kmem_cache, "kmem_cache",
3595 offsetof(struct kmem_cache, node) +
3596 nr_node_ids * sizeof(struct kmem_cache_node *),
3597 SLAB_HWCACHE_ALIGN);
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00003598
Christoph Lameterdffb4d62012-11-28 16:23:07 +00003599 kmem_cache = bootstrap(&boot_kmem_cache);
Christoph Lameter81819f02007-05-06 14:49:36 -07003600
Christoph Lameter51df1142010-08-20 12:37:15 -05003601 /*
3602 * Allocate kmem_cache_node properly from the kmem_cache slab.
3603 * kmem_cache_node is separately allocated so no need to
3604 * update any list pointers.
3605 */
Christoph Lameterdffb4d62012-11-28 16:23:07 +00003606 kmem_cache_node = bootstrap(&boot_kmem_cache_node);
Christoph Lameter51df1142010-08-20 12:37:15 -05003607
3608 /* Now we can use the kmem_cache to allocate kmalloc slabs */
Christoph Lameterf97d5f62013-01-10 19:12:17 +00003609 create_kmalloc_caches(0);
Christoph Lameter81819f02007-05-06 14:49:36 -07003610
3611#ifdef CONFIG_SMP
3612 register_cpu_notifier(&slab_notifier);
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06003613#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07003614
Fabian Frederickf9f58282014-06-04 16:06:34 -07003615 pr_info("SLUB: HWalign=%d, Order=%d-%d, MinObjects=%d, CPUs=%d, Nodes=%d\n",
Christoph Lameterf97d5f62013-01-10 19:12:17 +00003616 cache_line_size(),
Christoph Lameter81819f02007-05-06 14:49:36 -07003617 slub_min_order, slub_max_order, slub_min_objects,
3618 nr_cpu_ids, nr_node_ids);
3619}
3620
Pekka Enberg7e85ee02009-06-12 14:03:06 +03003621void __init kmem_cache_init_late(void)
3622{
Pekka Enberg7e85ee02009-06-12 14:03:06 +03003623}
3624
Christoph Lameter81819f02007-05-06 14:49:36 -07003625/*
3626 * Find a mergeable slab cache
3627 */
3628static int slab_unmergeable(struct kmem_cache *s)
3629{
3630 if (slub_nomerge || (s->flags & SLUB_NEVER_MERGE))
3631 return 1;
3632
Vladimir Davydova44cb942014-04-07 15:39:23 -07003633 if (!is_root_cache(s))
3634 return 1;
3635
Christoph Lameterc59def92007-05-16 22:10:50 -07003636 if (s->ctor)
Christoph Lameter81819f02007-05-06 14:49:36 -07003637 return 1;
3638
Christoph Lameter8ffa6872007-05-31 00:40:51 -07003639 /*
3640 * We may have set a slab to be unmergeable during bootstrap.
3641 */
3642 if (s->refcount < 0)
3643 return 1;
3644
Christoph Lameter81819f02007-05-06 14:49:36 -07003645 return 0;
3646}
3647
Vladimir Davydova44cb942014-04-07 15:39:23 -07003648static struct kmem_cache *find_mergeable(size_t size, size_t align,
3649 unsigned long flags, const char *name, void (*ctor)(void *))
Christoph Lameter81819f02007-05-06 14:49:36 -07003650{
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07003651 struct kmem_cache *s;
Christoph Lameter81819f02007-05-06 14:49:36 -07003652
3653 if (slub_nomerge || (flags & SLUB_NEVER_MERGE))
3654 return NULL;
3655
Christoph Lameterc59def92007-05-16 22:10:50 -07003656 if (ctor)
Christoph Lameter81819f02007-05-06 14:49:36 -07003657 return NULL;
3658
3659 size = ALIGN(size, sizeof(void *));
3660 align = calculate_alignment(flags, align, size);
3661 size = ALIGN(size, align);
Christoph Lameterba0268a2007-09-11 15:24:11 -07003662 flags = kmem_cache_flags(size, flags, name, NULL);
Christoph Lameter81819f02007-05-06 14:49:36 -07003663
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07003664 list_for_each_entry(s, &slab_caches, list) {
Christoph Lameter81819f02007-05-06 14:49:36 -07003665 if (slab_unmergeable(s))
3666 continue;
3667
3668 if (size > s->size)
3669 continue;
3670
Christoph Lameterba0268a2007-09-11 15:24:11 -07003671 if ((flags & SLUB_MERGE_SAME) != (s->flags & SLUB_MERGE_SAME))
Vladimir Davydova44cb942014-04-07 15:39:23 -07003672 continue;
Christoph Lameter81819f02007-05-06 14:49:36 -07003673 /*
3674 * Check if alignment is compatible.
3675 * Courtesy of Adrian Drzewiecki
3676 */
Pekka Enberg06428782008-01-07 23:20:27 -08003677 if ((s->size & ~(align - 1)) != s->size)
Christoph Lameter81819f02007-05-06 14:49:36 -07003678 continue;
3679
3680 if (s->size - size >= sizeof(void *))
3681 continue;
3682
3683 return s;
3684 }
3685 return NULL;
3686}
3687
Glauber Costa2633d7a2012-12-18 14:22:34 -08003688struct kmem_cache *
Vladimir Davydova44cb942014-04-07 15:39:23 -07003689__kmem_cache_alias(const char *name, size_t size, size_t align,
3690 unsigned long flags, void (*ctor)(void *))
Christoph Lameter81819f02007-05-06 14:49:36 -07003691{
3692 struct kmem_cache *s;
3693
Vladimir Davydova44cb942014-04-07 15:39:23 -07003694 s = find_mergeable(size, align, flags, name, ctor);
Christoph Lameter81819f02007-05-06 14:49:36 -07003695 if (s) {
Vladimir Davydov84d0ddd2014-04-07 15:39:29 -07003696 int i;
3697 struct kmem_cache *c;
3698
Christoph Lameter81819f02007-05-06 14:49:36 -07003699 s->refcount++;
Vladimir Davydov84d0ddd2014-04-07 15:39:29 -07003700
Christoph Lameter81819f02007-05-06 14:49:36 -07003701 /*
3702 * Adjust the object sizes so that we clear
3703 * the complete object on kzalloc.
3704 */
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05003705 s->object_size = max(s->object_size, (int)size);
Christoph Lameter81819f02007-05-06 14:49:36 -07003706 s->inuse = max_t(int, s->inuse, ALIGN(size, sizeof(void *)));
Christoph Lameter6446faa2008-02-15 23:45:26 -08003707
Vladimir Davydov84d0ddd2014-04-07 15:39:29 -07003708 for_each_memcg_cache_index(i) {
3709 c = cache_from_memcg_idx(s, i);
3710 if (!c)
3711 continue;
3712 c->object_size = s->object_size;
3713 c->inuse = max_t(int, c->inuse,
3714 ALIGN(size, sizeof(void *)));
3715 }
3716
David Rientjes7b8f3b62008-12-17 22:09:46 -08003717 if (sysfs_slab_alias(s, name)) {
David Rientjes7b8f3b62008-12-17 22:09:46 -08003718 s->refcount--;
Christoph Lametercbb79692012-09-05 00:18:32 +00003719 s = NULL;
David Rientjes7b8f3b62008-12-17 22:09:46 -08003720 }
Christoph Lametera0e1d1b2007-07-17 04:03:31 -07003721 }
Christoph Lameter6446faa2008-02-15 23:45:26 -08003722
Christoph Lametercbb79692012-09-05 00:18:32 +00003723 return s;
3724}
Pekka Enberg84c1cf62010-09-14 23:21:12 +03003725
Christoph Lameter8a13a4c2012-09-04 23:18:33 +00003726int __kmem_cache_create(struct kmem_cache *s, unsigned long flags)
Christoph Lametercbb79692012-09-05 00:18:32 +00003727{
Pekka Enbergaac3a162012-09-05 12:07:44 +03003728 int err;
Christoph Lameter20cea962012-07-06 15:25:13 -05003729
Pekka Enbergaac3a162012-09-05 12:07:44 +03003730 err = kmem_cache_open(s, flags);
3731 if (err)
3732 return err;
Christoph Lameter20cea962012-07-06 15:25:13 -05003733
Christoph Lameter45530c42012-11-28 16:23:07 +00003734 /* Mutex is not taken during early boot */
3735 if (slab_state <= UP)
3736 return 0;
3737
Glauber Costa107dab52012-12-18 14:23:05 -08003738 memcg_propagate_slab_attrs(s);
Pekka Enbergaac3a162012-09-05 12:07:44 +03003739 err = sysfs_slab_add(s);
Pekka Enbergaac3a162012-09-05 12:07:44 +03003740 if (err)
3741 kmem_cache_close(s);
3742
3743 return err;
Christoph Lameter81819f02007-05-06 14:49:36 -07003744}
Christoph Lameter81819f02007-05-06 14:49:36 -07003745
Christoph Lameter81819f02007-05-06 14:49:36 -07003746#ifdef CONFIG_SMP
Christoph Lameter27390bc2007-06-01 00:47:09 -07003747/*
Christoph Lameter672bba32007-05-09 02:32:39 -07003748 * Use the cpu notifier to insure that the cpu slabs are flushed when
3749 * necessary.
Christoph Lameter81819f02007-05-06 14:49:36 -07003750 */
Paul Gortmaker0db06282013-06-19 14:53:51 -04003751static int slab_cpuup_callback(struct notifier_block *nfb,
Christoph Lameter81819f02007-05-06 14:49:36 -07003752 unsigned long action, void *hcpu)
3753{
3754 long cpu = (long)hcpu;
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07003755 struct kmem_cache *s;
3756 unsigned long flags;
Christoph Lameter81819f02007-05-06 14:49:36 -07003757
3758 switch (action) {
3759 case CPU_UP_CANCELED:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07003760 case CPU_UP_CANCELED_FROZEN:
Christoph Lameter81819f02007-05-06 14:49:36 -07003761 case CPU_DEAD:
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07003762 case CPU_DEAD_FROZEN:
Christoph Lameter18004c52012-07-06 15:25:12 -05003763 mutex_lock(&slab_mutex);
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07003764 list_for_each_entry(s, &slab_caches, list) {
3765 local_irq_save(flags);
3766 __flush_cpu_slab(s, cpu);
3767 local_irq_restore(flags);
3768 }
Christoph Lameter18004c52012-07-06 15:25:12 -05003769 mutex_unlock(&slab_mutex);
Christoph Lameter81819f02007-05-06 14:49:36 -07003770 break;
3771 default:
3772 break;
3773 }
3774 return NOTIFY_OK;
3775}
3776
Paul Gortmaker0db06282013-06-19 14:53:51 -04003777static struct notifier_block slab_notifier = {
Ingo Molnar3adbefe2008-02-05 17:57:39 -08003778 .notifier_call = slab_cpuup_callback
Pekka Enberg06428782008-01-07 23:20:27 -08003779};
Christoph Lameter81819f02007-05-06 14:49:36 -07003780
3781#endif
3782
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003783void *__kmalloc_track_caller(size_t size, gfp_t gfpflags, unsigned long caller)
Christoph Lameter81819f02007-05-06 14:49:36 -07003784{
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003785 struct kmem_cache *s;
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03003786 void *ret;
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003787
Christoph Lameter95a05b42013-01-10 19:14:19 +00003788 if (unlikely(size > KMALLOC_MAX_CACHE_SIZE))
Pekka Enbergeada35e2008-02-11 22:47:46 +02003789 return kmalloc_large(size, gfpflags);
3790
Christoph Lameter2c59dd62013-01-10 19:14:19 +00003791 s = kmalloc_slab(size, gfpflags);
Christoph Lameter81819f02007-05-06 14:49:36 -07003792
Satyam Sharma2408c552007-10-16 01:24:44 -07003793 if (unlikely(ZERO_OR_NULL_PTR(s)))
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003794 return s;
Christoph Lameter81819f02007-05-06 14:49:36 -07003795
Ezequiel Garcia2b847c32012-09-08 17:47:58 -03003796 ret = slab_alloc(s, gfpflags, caller);
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03003797
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003798 /* Honor the call site pointer we received. */
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003799 trace_kmalloc(caller, ret, size, s->size, gfpflags);
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03003800
3801 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07003802}
3803
Namhyung Kim5d1f57e2010-09-29 21:02:15 +09003804#ifdef CONFIG_NUMA
Christoph Lameter81819f02007-05-06 14:49:36 -07003805void *__kmalloc_node_track_caller(size_t size, gfp_t gfpflags,
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003806 int node, unsigned long caller)
Christoph Lameter81819f02007-05-06 14:49:36 -07003807{
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003808 struct kmem_cache *s;
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03003809 void *ret;
Christoph Lameteraadb4bc2007-10-16 01:24:38 -07003810
Christoph Lameter95a05b42013-01-10 19:14:19 +00003811 if (unlikely(size > KMALLOC_MAX_CACHE_SIZE)) {
Xiaotian Fengd3e14aa2010-04-08 17:26:44 +08003812 ret = kmalloc_large_node(size, gfpflags, node);
3813
3814 trace_kmalloc_node(caller, ret,
3815 size, PAGE_SIZE << get_order(size),
3816 gfpflags, node);
3817
3818 return ret;
3819 }
Pekka Enbergeada35e2008-02-11 22:47:46 +02003820
Christoph Lameter2c59dd62013-01-10 19:14:19 +00003821 s = kmalloc_slab(size, gfpflags);
Christoph Lameter81819f02007-05-06 14:49:36 -07003822
Satyam Sharma2408c552007-10-16 01:24:44 -07003823 if (unlikely(ZERO_OR_NULL_PTR(s)))
Christoph Lameter6cb8f912007-07-17 04:03:22 -07003824 return s;
Christoph Lameter81819f02007-05-06 14:49:36 -07003825
Ezequiel Garcia2b847c32012-09-08 17:47:58 -03003826 ret = slab_alloc_node(s, gfpflags, node, caller);
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03003827
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003828 /* Honor the call site pointer we received. */
Eduard - Gabriel Munteanuca2b84cb2009-03-23 15:12:24 +02003829 trace_kmalloc_node(caller, ret, size, s->size, gfpflags, node);
Eduard - Gabriel Munteanu94b528d2008-08-24 20:49:35 +03003830
3831 return ret;
Christoph Lameter81819f02007-05-06 14:49:36 -07003832}
Namhyung Kim5d1f57e2010-09-29 21:02:15 +09003833#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07003834
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05003835#ifdef CONFIG_SYSFS
Christoph Lameter205ab992008-04-14 19:11:40 +03003836static int count_inuse(struct page *page)
3837{
3838 return page->inuse;
3839}
3840
3841static int count_total(struct page *page)
3842{
3843 return page->objects;
3844}
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05003845#endif
Christoph Lameter205ab992008-04-14 19:11:40 +03003846
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05003847#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter434e2452007-07-17 04:03:30 -07003848static int validate_slab(struct kmem_cache *s, struct page *page,
3849 unsigned long *map)
Christoph Lameter53e15af2007-05-06 14:49:43 -07003850{
3851 void *p;
Christoph Lametera973e9d2008-03-01 13:40:44 -08003852 void *addr = page_address(page);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003853
3854 if (!check_slab(s, page) ||
3855 !on_freelist(s, page, NULL))
3856 return 0;
3857
3858 /* Now we know that a valid freelist exists */
Christoph Lameter39b26462008-04-14 19:11:30 +03003859 bitmap_zero(map, page->objects);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003860
Christoph Lameter5f80b132011-04-15 14:48:13 -05003861 get_map(s, page, map);
3862 for_each_object(p, s, addr, page->objects) {
3863 if (test_bit(slab_index(p, s, addr), map))
3864 if (!check_object(s, page, p, SLUB_RED_INACTIVE))
3865 return 0;
Christoph Lameter53e15af2007-05-06 14:49:43 -07003866 }
3867
Christoph Lameter224a88b2008-04-14 19:11:31 +03003868 for_each_object(p, s, addr, page->objects)
Christoph Lameter7656c722007-05-09 02:32:40 -07003869 if (!test_bit(slab_index(p, s, addr), map))
Tero Roponen37d57442010-12-01 20:04:20 +02003870 if (!check_object(s, page, p, SLUB_RED_ACTIVE))
Christoph Lameter53e15af2007-05-06 14:49:43 -07003871 return 0;
3872 return 1;
3873}
3874
Christoph Lameter434e2452007-07-17 04:03:30 -07003875static void validate_slab_slab(struct kmem_cache *s, struct page *page,
3876 unsigned long *map)
Christoph Lameter53e15af2007-05-06 14:49:43 -07003877{
Christoph Lameter881db7f2011-06-01 12:25:53 -05003878 slab_lock(page);
3879 validate_slab(s, page, map);
3880 slab_unlock(page);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003881}
3882
Christoph Lameter434e2452007-07-17 04:03:30 -07003883static int validate_slab_node(struct kmem_cache *s,
3884 struct kmem_cache_node *n, unsigned long *map)
Christoph Lameter53e15af2007-05-06 14:49:43 -07003885{
3886 unsigned long count = 0;
3887 struct page *page;
3888 unsigned long flags;
3889
3890 spin_lock_irqsave(&n->list_lock, flags);
3891
3892 list_for_each_entry(page, &n->partial, lru) {
Christoph Lameter434e2452007-07-17 04:03:30 -07003893 validate_slab_slab(s, page, map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003894 count++;
3895 }
3896 if (count != n->nr_partial)
Fabian Frederickf9f58282014-06-04 16:06:34 -07003897 pr_err("SLUB %s: %ld partial slabs counted but counter=%ld\n",
3898 s->name, count, n->nr_partial);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003899
3900 if (!(s->flags & SLAB_STORE_USER))
3901 goto out;
3902
3903 list_for_each_entry(page, &n->full, lru) {
Christoph Lameter434e2452007-07-17 04:03:30 -07003904 validate_slab_slab(s, page, map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003905 count++;
3906 }
3907 if (count != atomic_long_read(&n->nr_slabs))
Fabian Frederickf9f58282014-06-04 16:06:34 -07003908 pr_err("SLUB: %s %ld slabs counted but counter=%ld\n",
3909 s->name, count, atomic_long_read(&n->nr_slabs));
Christoph Lameter53e15af2007-05-06 14:49:43 -07003910
3911out:
3912 spin_unlock_irqrestore(&n->list_lock, flags);
3913 return count;
3914}
3915
Christoph Lameter434e2452007-07-17 04:03:30 -07003916static long validate_slab_cache(struct kmem_cache *s)
Christoph Lameter53e15af2007-05-06 14:49:43 -07003917{
3918 int node;
3919 unsigned long count = 0;
Christoph Lameter205ab992008-04-14 19:11:40 +03003920 unsigned long *map = kmalloc(BITS_TO_LONGS(oo_objects(s->max)) *
Christoph Lameter434e2452007-07-17 04:03:30 -07003921 sizeof(unsigned long), GFP_KERNEL);
Christoph Lameterfa45dc22014-08-06 16:04:09 -07003922 struct kmem_cache_node *n;
Christoph Lameter434e2452007-07-17 04:03:30 -07003923
3924 if (!map)
3925 return -ENOMEM;
Christoph Lameter53e15af2007-05-06 14:49:43 -07003926
3927 flush_all(s);
Christoph Lameterfa45dc22014-08-06 16:04:09 -07003928 for_each_kmem_cache_node(s, node, n)
Christoph Lameter434e2452007-07-17 04:03:30 -07003929 count += validate_slab_node(s, n, map);
Christoph Lameter434e2452007-07-17 04:03:30 -07003930 kfree(map);
Christoph Lameter53e15af2007-05-06 14:49:43 -07003931 return count;
3932}
Christoph Lameter88a420e2007-05-06 14:49:45 -07003933/*
Christoph Lameter672bba32007-05-09 02:32:39 -07003934 * Generate lists of code addresses where slabcache objects are allocated
Christoph Lameter88a420e2007-05-06 14:49:45 -07003935 * and freed.
3936 */
3937
3938struct location {
3939 unsigned long count;
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003940 unsigned long addr;
Christoph Lameter45edfa52007-05-09 02:32:45 -07003941 long long sum_time;
3942 long min_time;
3943 long max_time;
3944 long min_pid;
3945 long max_pid;
Rusty Russell174596a2009-01-01 10:12:29 +10303946 DECLARE_BITMAP(cpus, NR_CPUS);
Christoph Lameter45edfa52007-05-09 02:32:45 -07003947 nodemask_t nodes;
Christoph Lameter88a420e2007-05-06 14:49:45 -07003948};
3949
3950struct loc_track {
3951 unsigned long max;
3952 unsigned long count;
3953 struct location *loc;
3954};
3955
3956static void free_loc_track(struct loc_track *t)
3957{
3958 if (t->max)
3959 free_pages((unsigned long)t->loc,
3960 get_order(sizeof(struct location) * t->max));
3961}
3962
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003963static int alloc_loc_track(struct loc_track *t, unsigned long max, gfp_t flags)
Christoph Lameter88a420e2007-05-06 14:49:45 -07003964{
3965 struct location *l;
3966 int order;
3967
Christoph Lameter88a420e2007-05-06 14:49:45 -07003968 order = get_order(sizeof(struct location) * max);
3969
Christoph Lameter68dff6a2007-07-17 04:03:20 -07003970 l = (void *)__get_free_pages(flags, order);
Christoph Lameter88a420e2007-05-06 14:49:45 -07003971 if (!l)
3972 return 0;
3973
3974 if (t->count) {
3975 memcpy(l, t->loc, sizeof(struct location) * t->count);
3976 free_loc_track(t);
3977 }
3978 t->max = max;
3979 t->loc = l;
3980 return 1;
3981}
3982
3983static int add_location(struct loc_track *t, struct kmem_cache *s,
Christoph Lameter45edfa52007-05-09 02:32:45 -07003984 const struct track *track)
Christoph Lameter88a420e2007-05-06 14:49:45 -07003985{
3986 long start, end, pos;
3987 struct location *l;
Eduard - Gabriel Munteanuce71e272008-08-19 20:43:25 +03003988 unsigned long caddr;
Christoph Lameter45edfa52007-05-09 02:32:45 -07003989 unsigned long age = jiffies - track->when;
Christoph Lameter88a420e2007-05-06 14:49:45 -07003990
3991 start = -1;
3992 end = t->count;
3993
3994 for ( ; ; ) {
3995 pos = start + (end - start + 1) / 2;
3996
3997 /*
3998 * There is nothing at "end". If we end up there
3999 * we need to add something to before end.
4000 */
4001 if (pos == end)
4002 break;
4003
4004 caddr = t->loc[pos].addr;
Christoph Lameter45edfa52007-05-09 02:32:45 -07004005 if (track->addr == caddr) {
4006
4007 l = &t->loc[pos];
4008 l->count++;
4009 if (track->when) {
4010 l->sum_time += age;
4011 if (age < l->min_time)
4012 l->min_time = age;
4013 if (age > l->max_time)
4014 l->max_time = age;
4015
4016 if (track->pid < l->min_pid)
4017 l->min_pid = track->pid;
4018 if (track->pid > l->max_pid)
4019 l->max_pid = track->pid;
4020
Rusty Russell174596a2009-01-01 10:12:29 +10304021 cpumask_set_cpu(track->cpu,
4022 to_cpumask(l->cpus));
Christoph Lameter45edfa52007-05-09 02:32:45 -07004023 }
4024 node_set(page_to_nid(virt_to_page(track)), l->nodes);
Christoph Lameter88a420e2007-05-06 14:49:45 -07004025 return 1;
4026 }
4027
Christoph Lameter45edfa52007-05-09 02:32:45 -07004028 if (track->addr < caddr)
Christoph Lameter88a420e2007-05-06 14:49:45 -07004029 end = pos;
4030 else
4031 start = pos;
4032 }
4033
4034 /*
Christoph Lameter672bba32007-05-09 02:32:39 -07004035 * Not found. Insert new tracking element.
Christoph Lameter88a420e2007-05-06 14:49:45 -07004036 */
Christoph Lameter68dff6a2007-07-17 04:03:20 -07004037 if (t->count >= t->max && !alloc_loc_track(t, 2 * t->max, GFP_ATOMIC))
Christoph Lameter88a420e2007-05-06 14:49:45 -07004038 return 0;
4039
4040 l = t->loc + pos;
4041 if (pos < t->count)
4042 memmove(l + 1, l,
4043 (t->count - pos) * sizeof(struct location));
4044 t->count++;
4045 l->count = 1;
Christoph Lameter45edfa52007-05-09 02:32:45 -07004046 l->addr = track->addr;
4047 l->sum_time = age;
4048 l->min_time = age;
4049 l->max_time = age;
4050 l->min_pid = track->pid;
4051 l->max_pid = track->pid;
Rusty Russell174596a2009-01-01 10:12:29 +10304052 cpumask_clear(to_cpumask(l->cpus));
4053 cpumask_set_cpu(track->cpu, to_cpumask(l->cpus));
Christoph Lameter45edfa52007-05-09 02:32:45 -07004054 nodes_clear(l->nodes);
4055 node_set(page_to_nid(virt_to_page(track)), l->nodes);
Christoph Lameter88a420e2007-05-06 14:49:45 -07004056 return 1;
4057}
4058
4059static void process_slab(struct loc_track *t, struct kmem_cache *s,
Eric Dumazetbbd7d572010-03-24 22:25:47 +01004060 struct page *page, enum track_item alloc,
Namhyung Kima5dd5c12010-09-29 21:02:13 +09004061 unsigned long *map)
Christoph Lameter88a420e2007-05-06 14:49:45 -07004062{
Christoph Lametera973e9d2008-03-01 13:40:44 -08004063 void *addr = page_address(page);
Christoph Lameter88a420e2007-05-06 14:49:45 -07004064 void *p;
4065
Christoph Lameter39b26462008-04-14 19:11:30 +03004066 bitmap_zero(map, page->objects);
Christoph Lameter5f80b132011-04-15 14:48:13 -05004067 get_map(s, page, map);
Christoph Lameter88a420e2007-05-06 14:49:45 -07004068
Christoph Lameter224a88b2008-04-14 19:11:31 +03004069 for_each_object(p, s, addr, page->objects)
Christoph Lameter45edfa52007-05-09 02:32:45 -07004070 if (!test_bit(slab_index(p, s, addr), map))
4071 add_location(t, s, get_track(s, p, alloc));
Christoph Lameter88a420e2007-05-06 14:49:45 -07004072}
4073
4074static int list_locations(struct kmem_cache *s, char *buf,
4075 enum track_item alloc)
4076{
Harvey Harrisone374d482008-01-31 15:20:50 -08004077 int len = 0;
Christoph Lameter88a420e2007-05-06 14:49:45 -07004078 unsigned long i;
Christoph Lameter68dff6a2007-07-17 04:03:20 -07004079 struct loc_track t = { 0, 0, NULL };
Christoph Lameter88a420e2007-05-06 14:49:45 -07004080 int node;
Eric Dumazetbbd7d572010-03-24 22:25:47 +01004081 unsigned long *map = kmalloc(BITS_TO_LONGS(oo_objects(s->max)) *
4082 sizeof(unsigned long), GFP_KERNEL);
Christoph Lameterfa45dc22014-08-06 16:04:09 -07004083 struct kmem_cache_node *n;
Christoph Lameter88a420e2007-05-06 14:49:45 -07004084
Eric Dumazetbbd7d572010-03-24 22:25:47 +01004085 if (!map || !alloc_loc_track(&t, PAGE_SIZE / sizeof(struct location),
4086 GFP_TEMPORARY)) {
4087 kfree(map);
Christoph Lameter68dff6a2007-07-17 04:03:20 -07004088 return sprintf(buf, "Out of memory\n");
Eric Dumazetbbd7d572010-03-24 22:25:47 +01004089 }
Christoph Lameter88a420e2007-05-06 14:49:45 -07004090 /* Push back cpu slabs */
4091 flush_all(s);
4092
Christoph Lameterfa45dc22014-08-06 16:04:09 -07004093 for_each_kmem_cache_node(s, node, n) {
Christoph Lameter88a420e2007-05-06 14:49:45 -07004094 unsigned long flags;
4095 struct page *page;
4096
Christoph Lameter9e869432007-08-22 14:01:56 -07004097 if (!atomic_long_read(&n->nr_slabs))
Christoph Lameter88a420e2007-05-06 14:49:45 -07004098 continue;
4099
4100 spin_lock_irqsave(&n->list_lock, flags);
4101 list_for_each_entry(page, &n->partial, lru)
Eric Dumazetbbd7d572010-03-24 22:25:47 +01004102 process_slab(&t, s, page, alloc, map);
Christoph Lameter88a420e2007-05-06 14:49:45 -07004103 list_for_each_entry(page, &n->full, lru)
Eric Dumazetbbd7d572010-03-24 22:25:47 +01004104 process_slab(&t, s, page, alloc, map);
Christoph Lameter88a420e2007-05-06 14:49:45 -07004105 spin_unlock_irqrestore(&n->list_lock, flags);
4106 }
4107
4108 for (i = 0; i < t.count; i++) {
Christoph Lameter45edfa52007-05-09 02:32:45 -07004109 struct location *l = &t.loc[i];
Christoph Lameter88a420e2007-05-06 14:49:45 -07004110
Hugh Dickins9c246242008-12-09 13:14:27 -08004111 if (len > PAGE_SIZE - KSYM_SYMBOL_LEN - 100)
Christoph Lameter88a420e2007-05-06 14:49:45 -07004112 break;
Harvey Harrisone374d482008-01-31 15:20:50 -08004113 len += sprintf(buf + len, "%7ld ", l->count);
Christoph Lameter45edfa52007-05-09 02:32:45 -07004114
4115 if (l->addr)
Joe Perches62c70bc2011-01-13 15:45:52 -08004116 len += sprintf(buf + len, "%pS", (void *)l->addr);
Christoph Lameter88a420e2007-05-06 14:49:45 -07004117 else
Harvey Harrisone374d482008-01-31 15:20:50 -08004118 len += sprintf(buf + len, "<not-available>");
Christoph Lameter45edfa52007-05-09 02:32:45 -07004119
4120 if (l->sum_time != l->min_time) {
Harvey Harrisone374d482008-01-31 15:20:50 -08004121 len += sprintf(buf + len, " age=%ld/%ld/%ld",
Roman Zippelf8bd2252008-05-01 04:34:31 -07004122 l->min_time,
4123 (long)div_u64(l->sum_time, l->count),
4124 l->max_time);
Christoph Lameter45edfa52007-05-09 02:32:45 -07004125 } else
Harvey Harrisone374d482008-01-31 15:20:50 -08004126 len += sprintf(buf + len, " age=%ld",
Christoph Lameter45edfa52007-05-09 02:32:45 -07004127 l->min_time);
4128
4129 if (l->min_pid != l->max_pid)
Harvey Harrisone374d482008-01-31 15:20:50 -08004130 len += sprintf(buf + len, " pid=%ld-%ld",
Christoph Lameter45edfa52007-05-09 02:32:45 -07004131 l->min_pid, l->max_pid);
4132 else
Harvey Harrisone374d482008-01-31 15:20:50 -08004133 len += sprintf(buf + len, " pid=%ld",
Christoph Lameter45edfa52007-05-09 02:32:45 -07004134 l->min_pid);
4135
Rusty Russell174596a2009-01-01 10:12:29 +10304136 if (num_online_cpus() > 1 &&
4137 !cpumask_empty(to_cpumask(l->cpus)) &&
Harvey Harrisone374d482008-01-31 15:20:50 -08004138 len < PAGE_SIZE - 60) {
4139 len += sprintf(buf + len, " cpus=");
Chen Gangd0e0ac92013-07-15 09:05:29 +08004140 len += cpulist_scnprintf(buf + len,
4141 PAGE_SIZE - len - 50,
Rusty Russell174596a2009-01-01 10:12:29 +10304142 to_cpumask(l->cpus));
Christoph Lameter45edfa52007-05-09 02:32:45 -07004143 }
4144
Christoph Lameter62bc62a2009-06-16 15:32:15 -07004145 if (nr_online_nodes > 1 && !nodes_empty(l->nodes) &&
Harvey Harrisone374d482008-01-31 15:20:50 -08004146 len < PAGE_SIZE - 60) {
4147 len += sprintf(buf + len, " nodes=");
Chen Gangd0e0ac92013-07-15 09:05:29 +08004148 len += nodelist_scnprintf(buf + len,
4149 PAGE_SIZE - len - 50,
4150 l->nodes);
Christoph Lameter45edfa52007-05-09 02:32:45 -07004151 }
4152
Harvey Harrisone374d482008-01-31 15:20:50 -08004153 len += sprintf(buf + len, "\n");
Christoph Lameter88a420e2007-05-06 14:49:45 -07004154 }
4155
4156 free_loc_track(&t);
Eric Dumazetbbd7d572010-03-24 22:25:47 +01004157 kfree(map);
Christoph Lameter88a420e2007-05-06 14:49:45 -07004158 if (!t.count)
Harvey Harrisone374d482008-01-31 15:20:50 -08004159 len += sprintf(buf, "No data\n");
4160 return len;
Christoph Lameter88a420e2007-05-06 14:49:45 -07004161}
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05004162#endif
Christoph Lameter88a420e2007-05-06 14:49:45 -07004163
Christoph Lametera5a84752010-10-05 13:57:27 -05004164#ifdef SLUB_RESILIENCY_TEST
David Rientjesc07b8182014-08-06 16:04:16 -07004165static void __init resiliency_test(void)
Christoph Lametera5a84752010-10-05 13:57:27 -05004166{
4167 u8 *p;
4168
Christoph Lameter95a05b42013-01-10 19:14:19 +00004169 BUILD_BUG_ON(KMALLOC_MIN_SIZE > 16 || KMALLOC_SHIFT_HIGH < 10);
Christoph Lametera5a84752010-10-05 13:57:27 -05004170
Fabian Frederickf9f58282014-06-04 16:06:34 -07004171 pr_err("SLUB resiliency testing\n");
4172 pr_err("-----------------------\n");
4173 pr_err("A. Corruption after allocation\n");
Christoph Lametera5a84752010-10-05 13:57:27 -05004174
4175 p = kzalloc(16, GFP_KERNEL);
4176 p[16] = 0x12;
Fabian Frederickf9f58282014-06-04 16:06:34 -07004177 pr_err("\n1. kmalloc-16: Clobber Redzone/next pointer 0x12->0x%p\n\n",
4178 p + 16);
Christoph Lametera5a84752010-10-05 13:57:27 -05004179
4180 validate_slab_cache(kmalloc_caches[4]);
4181
4182 /* Hmmm... The next two are dangerous */
4183 p = kzalloc(32, GFP_KERNEL);
4184 p[32 + sizeof(void *)] = 0x34;
Fabian Frederickf9f58282014-06-04 16:06:34 -07004185 pr_err("\n2. kmalloc-32: Clobber next pointer/next slab 0x34 -> -0x%p\n",
4186 p);
4187 pr_err("If allocated object is overwritten then not detectable\n\n");
Christoph Lametera5a84752010-10-05 13:57:27 -05004188
4189 validate_slab_cache(kmalloc_caches[5]);
4190 p = kzalloc(64, GFP_KERNEL);
4191 p += 64 + (get_cycles() & 0xff) * sizeof(void *);
4192 *p = 0x56;
Fabian Frederickf9f58282014-06-04 16:06:34 -07004193 pr_err("\n3. kmalloc-64: corrupting random byte 0x56->0x%p\n",
4194 p);
4195 pr_err("If allocated object is overwritten then not detectable\n\n");
Christoph Lametera5a84752010-10-05 13:57:27 -05004196 validate_slab_cache(kmalloc_caches[6]);
4197
Fabian Frederickf9f58282014-06-04 16:06:34 -07004198 pr_err("\nB. Corruption after free\n");
Christoph Lametera5a84752010-10-05 13:57:27 -05004199 p = kzalloc(128, GFP_KERNEL);
4200 kfree(p);
4201 *p = 0x78;
Fabian Frederickf9f58282014-06-04 16:06:34 -07004202 pr_err("1. kmalloc-128: Clobber first word 0x78->0x%p\n\n", p);
Christoph Lametera5a84752010-10-05 13:57:27 -05004203 validate_slab_cache(kmalloc_caches[7]);
4204
4205 p = kzalloc(256, GFP_KERNEL);
4206 kfree(p);
4207 p[50] = 0x9a;
Fabian Frederickf9f58282014-06-04 16:06:34 -07004208 pr_err("\n2. kmalloc-256: Clobber 50th byte 0x9a->0x%p\n\n", p);
Christoph Lametera5a84752010-10-05 13:57:27 -05004209 validate_slab_cache(kmalloc_caches[8]);
4210
4211 p = kzalloc(512, GFP_KERNEL);
4212 kfree(p);
4213 p[512] = 0xab;
Fabian Frederickf9f58282014-06-04 16:06:34 -07004214 pr_err("\n3. kmalloc-512: Clobber redzone 0xab->0x%p\n\n", p);
Christoph Lametera5a84752010-10-05 13:57:27 -05004215 validate_slab_cache(kmalloc_caches[9]);
4216}
4217#else
4218#ifdef CONFIG_SYSFS
4219static void resiliency_test(void) {};
4220#endif
4221#endif
4222
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05004223#ifdef CONFIG_SYSFS
Christoph Lameter81819f02007-05-06 14:49:36 -07004224enum slab_stat_type {
Christoph Lameter205ab992008-04-14 19:11:40 +03004225 SL_ALL, /* All slabs */
4226 SL_PARTIAL, /* Only partially allocated slabs */
4227 SL_CPU, /* Only slabs used for cpu caches */
4228 SL_OBJECTS, /* Determine allocated objects not slabs */
4229 SL_TOTAL /* Determine object capacity not slabs */
Christoph Lameter81819f02007-05-06 14:49:36 -07004230};
4231
Christoph Lameter205ab992008-04-14 19:11:40 +03004232#define SO_ALL (1 << SL_ALL)
Christoph Lameter81819f02007-05-06 14:49:36 -07004233#define SO_PARTIAL (1 << SL_PARTIAL)
4234#define SO_CPU (1 << SL_CPU)
4235#define SO_OBJECTS (1 << SL_OBJECTS)
Christoph Lameter205ab992008-04-14 19:11:40 +03004236#define SO_TOTAL (1 << SL_TOTAL)
Christoph Lameter81819f02007-05-06 14:49:36 -07004237
Cyrill Gorcunov62e5c4b2008-03-02 23:28:24 +03004238static ssize_t show_slab_objects(struct kmem_cache *s,
4239 char *buf, unsigned long flags)
Christoph Lameter81819f02007-05-06 14:49:36 -07004240{
4241 unsigned long total = 0;
Christoph Lameter81819f02007-05-06 14:49:36 -07004242 int node;
4243 int x;
4244 unsigned long *nodes;
Christoph Lameter81819f02007-05-06 14:49:36 -07004245
Chen Gange35e1a92013-07-12 08:23:48 +08004246 nodes = kzalloc(sizeof(unsigned long) * nr_node_ids, GFP_KERNEL);
Cyrill Gorcunov62e5c4b2008-03-02 23:28:24 +03004247 if (!nodes)
4248 return -ENOMEM;
Christoph Lameter81819f02007-05-06 14:49:36 -07004249
Christoph Lameter205ab992008-04-14 19:11:40 +03004250 if (flags & SO_CPU) {
4251 int cpu;
Christoph Lameter81819f02007-05-06 14:49:36 -07004252
Christoph Lameter205ab992008-04-14 19:11:40 +03004253 for_each_possible_cpu(cpu) {
Chen Gangd0e0ac92013-07-15 09:05:29 +08004254 struct kmem_cache_cpu *c = per_cpu_ptr(s->cpu_slab,
4255 cpu);
Christoph Lameterec3ab082012-05-09 10:09:56 -05004256 int node;
Christoph Lameter49e22582011-08-09 16:12:27 -05004257 struct page *page;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07004258
Eric Dumazetbc6697d2011-11-22 16:02:02 +01004259 page = ACCESS_ONCE(c->page);
Christoph Lameterec3ab082012-05-09 10:09:56 -05004260 if (!page)
4261 continue;
Christoph Lameter205ab992008-04-14 19:11:40 +03004262
Christoph Lameterec3ab082012-05-09 10:09:56 -05004263 node = page_to_nid(page);
4264 if (flags & SO_TOTAL)
4265 x = page->objects;
4266 else if (flags & SO_OBJECTS)
4267 x = page->inuse;
4268 else
4269 x = 1;
Christoph Lameter49e22582011-08-09 16:12:27 -05004270
Christoph Lameterec3ab082012-05-09 10:09:56 -05004271 total += x;
4272 nodes[node] += x;
4273
4274 page = ACCESS_ONCE(c->partial);
Christoph Lameter49e22582011-08-09 16:12:27 -05004275 if (page) {
Li Zefan8afb1472013-09-10 11:43:37 +08004276 node = page_to_nid(page);
4277 if (flags & SO_TOTAL)
4278 WARN_ON_ONCE(1);
4279 else if (flags & SO_OBJECTS)
4280 WARN_ON_ONCE(1);
4281 else
4282 x = page->pages;
Eric Dumazetbc6697d2011-11-22 16:02:02 +01004283 total += x;
4284 nodes[node] += x;
Christoph Lameter49e22582011-08-09 16:12:27 -05004285 }
Christoph Lameter81819f02007-05-06 14:49:36 -07004286 }
4287 }
4288
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07004289 get_online_mems();
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05004290#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter205ab992008-04-14 19:11:40 +03004291 if (flags & SO_ALL) {
Christoph Lameterfa45dc22014-08-06 16:04:09 -07004292 struct kmem_cache_node *n;
4293
4294 for_each_kmem_cache_node(s, node, n) {
Christoph Lameter81819f02007-05-06 14:49:36 -07004295
Chen Gangd0e0ac92013-07-15 09:05:29 +08004296 if (flags & SO_TOTAL)
4297 x = atomic_long_read(&n->total_objects);
4298 else if (flags & SO_OBJECTS)
4299 x = atomic_long_read(&n->total_objects) -
4300 count_partial(n, count_free);
Christoph Lameter205ab992008-04-14 19:11:40 +03004301 else
4302 x = atomic_long_read(&n->nr_slabs);
4303 total += x;
4304 nodes[node] += x;
4305 }
4306
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05004307 } else
4308#endif
4309 if (flags & SO_PARTIAL) {
Christoph Lameterfa45dc22014-08-06 16:04:09 -07004310 struct kmem_cache_node *n;
Christoph Lameter205ab992008-04-14 19:11:40 +03004311
Christoph Lameterfa45dc22014-08-06 16:04:09 -07004312 for_each_kmem_cache_node(s, node, n) {
Christoph Lameter205ab992008-04-14 19:11:40 +03004313 if (flags & SO_TOTAL)
4314 x = count_partial(n, count_total);
4315 else if (flags & SO_OBJECTS)
4316 x = count_partial(n, count_inuse);
Christoph Lameter81819f02007-05-06 14:49:36 -07004317 else
4318 x = n->nr_partial;
4319 total += x;
4320 nodes[node] += x;
4321 }
Christoph Lameter81819f02007-05-06 14:49:36 -07004322 }
Christoph Lameter81819f02007-05-06 14:49:36 -07004323 x = sprintf(buf, "%lu", total);
4324#ifdef CONFIG_NUMA
Christoph Lameterfa45dc22014-08-06 16:04:09 -07004325 for (node = 0; node < nr_node_ids; node++)
Christoph Lameter81819f02007-05-06 14:49:36 -07004326 if (nodes[node])
4327 x += sprintf(buf + x, " N%d=%lu",
4328 node, nodes[node]);
4329#endif
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07004330 put_online_mems();
Christoph Lameter81819f02007-05-06 14:49:36 -07004331 kfree(nodes);
4332 return x + sprintf(buf + x, "\n");
4333}
4334
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05004335#ifdef CONFIG_SLUB_DEBUG
Christoph Lameter81819f02007-05-06 14:49:36 -07004336static int any_slab_objects(struct kmem_cache *s)
4337{
4338 int node;
Christoph Lameterfa45dc22014-08-06 16:04:09 -07004339 struct kmem_cache_node *n;
Christoph Lameterdfb4f092007-10-16 01:26:05 -07004340
Christoph Lameterfa45dc22014-08-06 16:04:09 -07004341 for_each_kmem_cache_node(s, node, n)
Benjamin Herrenschmidt4ea33e22008-05-06 20:42:39 -07004342 if (atomic_long_read(&n->total_objects))
Christoph Lameter81819f02007-05-06 14:49:36 -07004343 return 1;
Christoph Lameterfa45dc22014-08-06 16:04:09 -07004344
Christoph Lameter81819f02007-05-06 14:49:36 -07004345 return 0;
4346}
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05004347#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07004348
4349#define to_slab_attr(n) container_of(n, struct slab_attribute, attr)
Phil Carmody497888c2011-07-14 15:07:13 +03004350#define to_slab(n) container_of(n, struct kmem_cache, kobj)
Christoph Lameter81819f02007-05-06 14:49:36 -07004351
4352struct slab_attribute {
4353 struct attribute attr;
4354 ssize_t (*show)(struct kmem_cache *s, char *buf);
4355 ssize_t (*store)(struct kmem_cache *s, const char *x, size_t count);
4356};
4357
4358#define SLAB_ATTR_RO(_name) \
Vasiliy Kulikovab067e92011-09-27 21:54:53 +04004359 static struct slab_attribute _name##_attr = \
4360 __ATTR(_name, 0400, _name##_show, NULL)
Christoph Lameter81819f02007-05-06 14:49:36 -07004361
4362#define SLAB_ATTR(_name) \
4363 static struct slab_attribute _name##_attr = \
Vasiliy Kulikovab067e92011-09-27 21:54:53 +04004364 __ATTR(_name, 0600, _name##_show, _name##_store)
Christoph Lameter81819f02007-05-06 14:49:36 -07004365
Christoph Lameter81819f02007-05-06 14:49:36 -07004366static ssize_t slab_size_show(struct kmem_cache *s, char *buf)
4367{
4368 return sprintf(buf, "%d\n", s->size);
4369}
4370SLAB_ATTR_RO(slab_size);
4371
4372static ssize_t align_show(struct kmem_cache *s, char *buf)
4373{
4374 return sprintf(buf, "%d\n", s->align);
4375}
4376SLAB_ATTR_RO(align);
4377
4378static ssize_t object_size_show(struct kmem_cache *s, char *buf)
4379{
Christoph Lameter3b0efdf2012-06-13 10:24:57 -05004380 return sprintf(buf, "%d\n", s->object_size);
Christoph Lameter81819f02007-05-06 14:49:36 -07004381}
4382SLAB_ATTR_RO(object_size);
4383
4384static ssize_t objs_per_slab_show(struct kmem_cache *s, char *buf)
4385{
Christoph Lameter834f3d12008-04-14 19:11:31 +03004386 return sprintf(buf, "%d\n", oo_objects(s->oo));
Christoph Lameter81819f02007-05-06 14:49:36 -07004387}
4388SLAB_ATTR_RO(objs_per_slab);
4389
Christoph Lameter06b285d2008-04-14 19:11:41 +03004390static ssize_t order_store(struct kmem_cache *s,
4391 const char *buf, size_t length)
4392{
Christoph Lameter0121c6192008-04-29 16:11:12 -07004393 unsigned long order;
4394 int err;
4395
Jingoo Han3dbb95f2013-09-11 14:20:25 -07004396 err = kstrtoul(buf, 10, &order);
Christoph Lameter0121c6192008-04-29 16:11:12 -07004397 if (err)
4398 return err;
Christoph Lameter06b285d2008-04-14 19:11:41 +03004399
4400 if (order > slub_max_order || order < slub_min_order)
4401 return -EINVAL;
4402
4403 calculate_sizes(s, order);
4404 return length;
4405}
4406
Christoph Lameter81819f02007-05-06 14:49:36 -07004407static ssize_t order_show(struct kmem_cache *s, char *buf)
4408{
Christoph Lameter834f3d12008-04-14 19:11:31 +03004409 return sprintf(buf, "%d\n", oo_order(s->oo));
Christoph Lameter81819f02007-05-06 14:49:36 -07004410}
Christoph Lameter06b285d2008-04-14 19:11:41 +03004411SLAB_ATTR(order);
Christoph Lameter81819f02007-05-06 14:49:36 -07004412
David Rientjes73d342b2009-02-22 17:40:09 -08004413static ssize_t min_partial_show(struct kmem_cache *s, char *buf)
4414{
4415 return sprintf(buf, "%lu\n", s->min_partial);
4416}
4417
4418static ssize_t min_partial_store(struct kmem_cache *s, const char *buf,
4419 size_t length)
4420{
4421 unsigned long min;
4422 int err;
4423
Jingoo Han3dbb95f2013-09-11 14:20:25 -07004424 err = kstrtoul(buf, 10, &min);
David Rientjes73d342b2009-02-22 17:40:09 -08004425 if (err)
4426 return err;
4427
David Rientjesc0bdb232009-02-25 09:16:35 +02004428 set_min_partial(s, min);
David Rientjes73d342b2009-02-22 17:40:09 -08004429 return length;
4430}
4431SLAB_ATTR(min_partial);
4432
Christoph Lameter49e22582011-08-09 16:12:27 -05004433static ssize_t cpu_partial_show(struct kmem_cache *s, char *buf)
4434{
4435 return sprintf(buf, "%u\n", s->cpu_partial);
4436}
4437
4438static ssize_t cpu_partial_store(struct kmem_cache *s, const char *buf,
4439 size_t length)
4440{
4441 unsigned long objects;
4442 int err;
4443
Jingoo Han3dbb95f2013-09-11 14:20:25 -07004444 err = kstrtoul(buf, 10, &objects);
Christoph Lameter49e22582011-08-09 16:12:27 -05004445 if (err)
4446 return err;
Joonsoo Kim345c9052013-06-19 14:05:52 +09004447 if (objects && !kmem_cache_has_cpu_partial(s))
David Rientjes74ee4ef2012-01-09 13:19:45 -08004448 return -EINVAL;
Christoph Lameter49e22582011-08-09 16:12:27 -05004449
4450 s->cpu_partial = objects;
4451 flush_all(s);
4452 return length;
4453}
4454SLAB_ATTR(cpu_partial);
4455
Christoph Lameter81819f02007-05-06 14:49:36 -07004456static ssize_t ctor_show(struct kmem_cache *s, char *buf)
4457{
Joe Perches62c70bc2011-01-13 15:45:52 -08004458 if (!s->ctor)
4459 return 0;
4460 return sprintf(buf, "%pS\n", s->ctor);
Christoph Lameter81819f02007-05-06 14:49:36 -07004461}
4462SLAB_ATTR_RO(ctor);
4463
Christoph Lameter81819f02007-05-06 14:49:36 -07004464static ssize_t aliases_show(struct kmem_cache *s, char *buf)
4465{
4466 return sprintf(buf, "%d\n", s->refcount - 1);
4467}
4468SLAB_ATTR_RO(aliases);
4469
Christoph Lameter81819f02007-05-06 14:49:36 -07004470static ssize_t partial_show(struct kmem_cache *s, char *buf)
4471{
Christoph Lameterd9acf4b2008-02-15 15:22:21 -08004472 return show_slab_objects(s, buf, SO_PARTIAL);
Christoph Lameter81819f02007-05-06 14:49:36 -07004473}
4474SLAB_ATTR_RO(partial);
4475
4476static ssize_t cpu_slabs_show(struct kmem_cache *s, char *buf)
4477{
Christoph Lameterd9acf4b2008-02-15 15:22:21 -08004478 return show_slab_objects(s, buf, SO_CPU);
Christoph Lameter81819f02007-05-06 14:49:36 -07004479}
4480SLAB_ATTR_RO(cpu_slabs);
4481
4482static ssize_t objects_show(struct kmem_cache *s, char *buf)
4483{
Christoph Lameter205ab992008-04-14 19:11:40 +03004484 return show_slab_objects(s, buf, SO_ALL|SO_OBJECTS);
Christoph Lameter81819f02007-05-06 14:49:36 -07004485}
4486SLAB_ATTR_RO(objects);
4487
Christoph Lameter205ab992008-04-14 19:11:40 +03004488static ssize_t objects_partial_show(struct kmem_cache *s, char *buf)
4489{
4490 return show_slab_objects(s, buf, SO_PARTIAL|SO_OBJECTS);
4491}
4492SLAB_ATTR_RO(objects_partial);
4493
Christoph Lameter49e22582011-08-09 16:12:27 -05004494static ssize_t slabs_cpu_partial_show(struct kmem_cache *s, char *buf)
4495{
4496 int objects = 0;
4497 int pages = 0;
4498 int cpu;
4499 int len;
4500
4501 for_each_online_cpu(cpu) {
4502 struct page *page = per_cpu_ptr(s->cpu_slab, cpu)->partial;
4503
4504 if (page) {
4505 pages += page->pages;
4506 objects += page->pobjects;
4507 }
4508 }
4509
4510 len = sprintf(buf, "%d(%d)", objects, pages);
4511
4512#ifdef CONFIG_SMP
4513 for_each_online_cpu(cpu) {
4514 struct page *page = per_cpu_ptr(s->cpu_slab, cpu) ->partial;
4515
4516 if (page && len < PAGE_SIZE - 20)
4517 len += sprintf(buf + len, " C%d=%d(%d)", cpu,
4518 page->pobjects, page->pages);
4519 }
4520#endif
4521 return len + sprintf(buf + len, "\n");
4522}
4523SLAB_ATTR_RO(slabs_cpu_partial);
4524
Christoph Lameter81819f02007-05-06 14:49:36 -07004525static ssize_t reclaim_account_show(struct kmem_cache *s, char *buf)
4526{
4527 return sprintf(buf, "%d\n", !!(s->flags & SLAB_RECLAIM_ACCOUNT));
4528}
4529
4530static ssize_t reclaim_account_store(struct kmem_cache *s,
4531 const char *buf, size_t length)
4532{
4533 s->flags &= ~SLAB_RECLAIM_ACCOUNT;
4534 if (buf[0] == '1')
4535 s->flags |= SLAB_RECLAIM_ACCOUNT;
4536 return length;
4537}
4538SLAB_ATTR(reclaim_account);
4539
4540static ssize_t hwcache_align_show(struct kmem_cache *s, char *buf)
4541{
Christoph Lameter5af60832007-05-06 14:49:56 -07004542 return sprintf(buf, "%d\n", !!(s->flags & SLAB_HWCACHE_ALIGN));
Christoph Lameter81819f02007-05-06 14:49:36 -07004543}
4544SLAB_ATTR_RO(hwcache_align);
4545
4546#ifdef CONFIG_ZONE_DMA
4547static ssize_t cache_dma_show(struct kmem_cache *s, char *buf)
4548{
4549 return sprintf(buf, "%d\n", !!(s->flags & SLAB_CACHE_DMA));
4550}
4551SLAB_ATTR_RO(cache_dma);
4552#endif
4553
4554static ssize_t destroy_by_rcu_show(struct kmem_cache *s, char *buf)
4555{
4556 return sprintf(buf, "%d\n", !!(s->flags & SLAB_DESTROY_BY_RCU));
4557}
4558SLAB_ATTR_RO(destroy_by_rcu);
4559
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08004560static ssize_t reserved_show(struct kmem_cache *s, char *buf)
4561{
4562 return sprintf(buf, "%d\n", s->reserved);
4563}
4564SLAB_ATTR_RO(reserved);
4565
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05004566#ifdef CONFIG_SLUB_DEBUG
Christoph Lametera5a84752010-10-05 13:57:27 -05004567static ssize_t slabs_show(struct kmem_cache *s, char *buf)
4568{
4569 return show_slab_objects(s, buf, SO_ALL);
4570}
4571SLAB_ATTR_RO(slabs);
4572
4573static ssize_t total_objects_show(struct kmem_cache *s, char *buf)
4574{
4575 return show_slab_objects(s, buf, SO_ALL|SO_TOTAL);
4576}
4577SLAB_ATTR_RO(total_objects);
4578
4579static ssize_t sanity_checks_show(struct kmem_cache *s, char *buf)
4580{
4581 return sprintf(buf, "%d\n", !!(s->flags & SLAB_DEBUG_FREE));
4582}
4583
4584static ssize_t sanity_checks_store(struct kmem_cache *s,
4585 const char *buf, size_t length)
4586{
4587 s->flags &= ~SLAB_DEBUG_FREE;
Christoph Lameterb789ef52011-06-01 12:25:49 -05004588 if (buf[0] == '1') {
4589 s->flags &= ~__CMPXCHG_DOUBLE;
Christoph Lametera5a84752010-10-05 13:57:27 -05004590 s->flags |= SLAB_DEBUG_FREE;
Christoph Lameterb789ef52011-06-01 12:25:49 -05004591 }
Christoph Lametera5a84752010-10-05 13:57:27 -05004592 return length;
4593}
4594SLAB_ATTR(sanity_checks);
4595
4596static ssize_t trace_show(struct kmem_cache *s, char *buf)
4597{
4598 return sprintf(buf, "%d\n", !!(s->flags & SLAB_TRACE));
4599}
4600
4601static ssize_t trace_store(struct kmem_cache *s, const char *buf,
4602 size_t length)
4603{
4604 s->flags &= ~SLAB_TRACE;
Christoph Lameterb789ef52011-06-01 12:25:49 -05004605 if (buf[0] == '1') {
4606 s->flags &= ~__CMPXCHG_DOUBLE;
Christoph Lametera5a84752010-10-05 13:57:27 -05004607 s->flags |= SLAB_TRACE;
Christoph Lameterb789ef52011-06-01 12:25:49 -05004608 }
Christoph Lametera5a84752010-10-05 13:57:27 -05004609 return length;
4610}
4611SLAB_ATTR(trace);
4612
Christoph Lameter81819f02007-05-06 14:49:36 -07004613static ssize_t red_zone_show(struct kmem_cache *s, char *buf)
4614{
4615 return sprintf(buf, "%d\n", !!(s->flags & SLAB_RED_ZONE));
4616}
4617
4618static ssize_t red_zone_store(struct kmem_cache *s,
4619 const char *buf, size_t length)
4620{
4621 if (any_slab_objects(s))
4622 return -EBUSY;
4623
4624 s->flags &= ~SLAB_RED_ZONE;
Christoph Lameterb789ef52011-06-01 12:25:49 -05004625 if (buf[0] == '1') {
4626 s->flags &= ~__CMPXCHG_DOUBLE;
Christoph Lameter81819f02007-05-06 14:49:36 -07004627 s->flags |= SLAB_RED_ZONE;
Christoph Lameterb789ef52011-06-01 12:25:49 -05004628 }
Christoph Lameter06b285d2008-04-14 19:11:41 +03004629 calculate_sizes(s, -1);
Christoph Lameter81819f02007-05-06 14:49:36 -07004630 return length;
4631}
4632SLAB_ATTR(red_zone);
4633
4634static ssize_t poison_show(struct kmem_cache *s, char *buf)
4635{
4636 return sprintf(buf, "%d\n", !!(s->flags & SLAB_POISON));
4637}
4638
4639static ssize_t poison_store(struct kmem_cache *s,
4640 const char *buf, size_t length)
4641{
4642 if (any_slab_objects(s))
4643 return -EBUSY;
4644
4645 s->flags &= ~SLAB_POISON;
Christoph Lameterb789ef52011-06-01 12:25:49 -05004646 if (buf[0] == '1') {
4647 s->flags &= ~__CMPXCHG_DOUBLE;
Christoph Lameter81819f02007-05-06 14:49:36 -07004648 s->flags |= SLAB_POISON;
Christoph Lameterb789ef52011-06-01 12:25:49 -05004649 }
Christoph Lameter06b285d2008-04-14 19:11:41 +03004650 calculate_sizes(s, -1);
Christoph Lameter81819f02007-05-06 14:49:36 -07004651 return length;
4652}
4653SLAB_ATTR(poison);
4654
4655static ssize_t store_user_show(struct kmem_cache *s, char *buf)
4656{
4657 return sprintf(buf, "%d\n", !!(s->flags & SLAB_STORE_USER));
4658}
4659
4660static ssize_t store_user_store(struct kmem_cache *s,
4661 const char *buf, size_t length)
4662{
4663 if (any_slab_objects(s))
4664 return -EBUSY;
4665
4666 s->flags &= ~SLAB_STORE_USER;
Christoph Lameterb789ef52011-06-01 12:25:49 -05004667 if (buf[0] == '1') {
4668 s->flags &= ~__CMPXCHG_DOUBLE;
Christoph Lameter81819f02007-05-06 14:49:36 -07004669 s->flags |= SLAB_STORE_USER;
Christoph Lameterb789ef52011-06-01 12:25:49 -05004670 }
Christoph Lameter06b285d2008-04-14 19:11:41 +03004671 calculate_sizes(s, -1);
Christoph Lameter81819f02007-05-06 14:49:36 -07004672 return length;
4673}
4674SLAB_ATTR(store_user);
4675
Christoph Lameter53e15af2007-05-06 14:49:43 -07004676static ssize_t validate_show(struct kmem_cache *s, char *buf)
4677{
4678 return 0;
4679}
4680
4681static ssize_t validate_store(struct kmem_cache *s,
4682 const char *buf, size_t length)
4683{
Christoph Lameter434e2452007-07-17 04:03:30 -07004684 int ret = -EINVAL;
4685
4686 if (buf[0] == '1') {
4687 ret = validate_slab_cache(s);
4688 if (ret >= 0)
4689 ret = length;
4690 }
4691 return ret;
Christoph Lameter53e15af2007-05-06 14:49:43 -07004692}
4693SLAB_ATTR(validate);
Christoph Lametera5a84752010-10-05 13:57:27 -05004694
4695static ssize_t alloc_calls_show(struct kmem_cache *s, char *buf)
4696{
4697 if (!(s->flags & SLAB_STORE_USER))
4698 return -ENOSYS;
4699 return list_locations(s, buf, TRACK_ALLOC);
4700}
4701SLAB_ATTR_RO(alloc_calls);
4702
4703static ssize_t free_calls_show(struct kmem_cache *s, char *buf)
4704{
4705 if (!(s->flags & SLAB_STORE_USER))
4706 return -ENOSYS;
4707 return list_locations(s, buf, TRACK_FREE);
4708}
4709SLAB_ATTR_RO(free_calls);
4710#endif /* CONFIG_SLUB_DEBUG */
4711
4712#ifdef CONFIG_FAILSLAB
4713static ssize_t failslab_show(struct kmem_cache *s, char *buf)
4714{
4715 return sprintf(buf, "%d\n", !!(s->flags & SLAB_FAILSLAB));
4716}
4717
4718static ssize_t failslab_store(struct kmem_cache *s, const char *buf,
4719 size_t length)
4720{
4721 s->flags &= ~SLAB_FAILSLAB;
4722 if (buf[0] == '1')
4723 s->flags |= SLAB_FAILSLAB;
4724 return length;
4725}
4726SLAB_ATTR(failslab);
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05004727#endif
Christoph Lameter53e15af2007-05-06 14:49:43 -07004728
Christoph Lameter2086d262007-05-06 14:49:46 -07004729static ssize_t shrink_show(struct kmem_cache *s, char *buf)
4730{
4731 return 0;
4732}
4733
4734static ssize_t shrink_store(struct kmem_cache *s,
4735 const char *buf, size_t length)
4736{
4737 if (buf[0] == '1') {
4738 int rc = kmem_cache_shrink(s);
4739
4740 if (rc)
4741 return rc;
4742 } else
4743 return -EINVAL;
4744 return length;
4745}
4746SLAB_ATTR(shrink);
4747
Christoph Lameter81819f02007-05-06 14:49:36 -07004748#ifdef CONFIG_NUMA
Christoph Lameter98246012008-01-07 23:20:26 -08004749static ssize_t remote_node_defrag_ratio_show(struct kmem_cache *s, char *buf)
Christoph Lameter81819f02007-05-06 14:49:36 -07004750{
Christoph Lameter98246012008-01-07 23:20:26 -08004751 return sprintf(buf, "%d\n", s->remote_node_defrag_ratio / 10);
Christoph Lameter81819f02007-05-06 14:49:36 -07004752}
4753
Christoph Lameter98246012008-01-07 23:20:26 -08004754static ssize_t remote_node_defrag_ratio_store(struct kmem_cache *s,
Christoph Lameter81819f02007-05-06 14:49:36 -07004755 const char *buf, size_t length)
4756{
Christoph Lameter0121c6192008-04-29 16:11:12 -07004757 unsigned long ratio;
4758 int err;
Christoph Lameter81819f02007-05-06 14:49:36 -07004759
Jingoo Han3dbb95f2013-09-11 14:20:25 -07004760 err = kstrtoul(buf, 10, &ratio);
Christoph Lameter0121c6192008-04-29 16:11:12 -07004761 if (err)
4762 return err;
4763
Christoph Lametere2cb96b2008-08-19 08:51:22 -05004764 if (ratio <= 100)
Christoph Lameter0121c6192008-04-29 16:11:12 -07004765 s->remote_node_defrag_ratio = ratio * 10;
4766
Christoph Lameter81819f02007-05-06 14:49:36 -07004767 return length;
4768}
Christoph Lameter98246012008-01-07 23:20:26 -08004769SLAB_ATTR(remote_node_defrag_ratio);
Christoph Lameter81819f02007-05-06 14:49:36 -07004770#endif
4771
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004772#ifdef CONFIG_SLUB_STATS
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004773static int show_stat(struct kmem_cache *s, char *buf, enum stat_item si)
4774{
4775 unsigned long sum = 0;
4776 int cpu;
4777 int len;
4778 int *data = kmalloc(nr_cpu_ids * sizeof(int), GFP_KERNEL);
4779
4780 if (!data)
4781 return -ENOMEM;
4782
4783 for_each_online_cpu(cpu) {
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06004784 unsigned x = per_cpu_ptr(s->cpu_slab, cpu)->stat[si];
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004785
4786 data[cpu] = x;
4787 sum += x;
4788 }
4789
4790 len = sprintf(buf, "%lu", sum);
4791
Christoph Lameter50ef37b2008-04-14 18:52:05 +03004792#ifdef CONFIG_SMP
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004793 for_each_online_cpu(cpu) {
4794 if (data[cpu] && len < PAGE_SIZE - 20)
Christoph Lameter50ef37b2008-04-14 18:52:05 +03004795 len += sprintf(buf + len, " C%d=%u", cpu, data[cpu]);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004796 }
Christoph Lameter50ef37b2008-04-14 18:52:05 +03004797#endif
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004798 kfree(data);
4799 return len + sprintf(buf + len, "\n");
4800}
4801
David Rientjes78eb00c2009-10-15 02:20:22 -07004802static void clear_stat(struct kmem_cache *s, enum stat_item si)
4803{
4804 int cpu;
4805
4806 for_each_online_cpu(cpu)
Christoph Lameter9dfc6e62009-12-18 16:26:20 -06004807 per_cpu_ptr(s->cpu_slab, cpu)->stat[si] = 0;
David Rientjes78eb00c2009-10-15 02:20:22 -07004808}
4809
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004810#define STAT_ATTR(si, text) \
4811static ssize_t text##_show(struct kmem_cache *s, char *buf) \
4812{ \
4813 return show_stat(s, buf, si); \
4814} \
David Rientjes78eb00c2009-10-15 02:20:22 -07004815static ssize_t text##_store(struct kmem_cache *s, \
4816 const char *buf, size_t length) \
4817{ \
4818 if (buf[0] != '0') \
4819 return -EINVAL; \
4820 clear_stat(s, si); \
4821 return length; \
4822} \
4823SLAB_ATTR(text); \
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004824
4825STAT_ATTR(ALLOC_FASTPATH, alloc_fastpath);
4826STAT_ATTR(ALLOC_SLOWPATH, alloc_slowpath);
4827STAT_ATTR(FREE_FASTPATH, free_fastpath);
4828STAT_ATTR(FREE_SLOWPATH, free_slowpath);
4829STAT_ATTR(FREE_FROZEN, free_frozen);
4830STAT_ATTR(FREE_ADD_PARTIAL, free_add_partial);
4831STAT_ATTR(FREE_REMOVE_PARTIAL, free_remove_partial);
4832STAT_ATTR(ALLOC_FROM_PARTIAL, alloc_from_partial);
4833STAT_ATTR(ALLOC_SLAB, alloc_slab);
4834STAT_ATTR(ALLOC_REFILL, alloc_refill);
Christoph Lametere36a2652011-06-01 12:25:57 -05004835STAT_ATTR(ALLOC_NODE_MISMATCH, alloc_node_mismatch);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004836STAT_ATTR(FREE_SLAB, free_slab);
4837STAT_ATTR(CPUSLAB_FLUSH, cpuslab_flush);
4838STAT_ATTR(DEACTIVATE_FULL, deactivate_full);
4839STAT_ATTR(DEACTIVATE_EMPTY, deactivate_empty);
4840STAT_ATTR(DEACTIVATE_TO_HEAD, deactivate_to_head);
4841STAT_ATTR(DEACTIVATE_TO_TAIL, deactivate_to_tail);
4842STAT_ATTR(DEACTIVATE_REMOTE_FREES, deactivate_remote_frees);
Christoph Lameter03e404a2011-06-01 12:25:58 -05004843STAT_ATTR(DEACTIVATE_BYPASS, deactivate_bypass);
Christoph Lameter65c33762008-04-14 19:11:40 +03004844STAT_ATTR(ORDER_FALLBACK, order_fallback);
Christoph Lameterb789ef52011-06-01 12:25:49 -05004845STAT_ATTR(CMPXCHG_DOUBLE_CPU_FAIL, cmpxchg_double_cpu_fail);
4846STAT_ATTR(CMPXCHG_DOUBLE_FAIL, cmpxchg_double_fail);
Christoph Lameter49e22582011-08-09 16:12:27 -05004847STAT_ATTR(CPU_PARTIAL_ALLOC, cpu_partial_alloc);
4848STAT_ATTR(CPU_PARTIAL_FREE, cpu_partial_free);
Alex Shi8028dce2012-02-03 23:34:56 +08004849STAT_ATTR(CPU_PARTIAL_NODE, cpu_partial_node);
4850STAT_ATTR(CPU_PARTIAL_DRAIN, cpu_partial_drain);
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004851#endif
4852
Pekka Enberg06428782008-01-07 23:20:27 -08004853static struct attribute *slab_attrs[] = {
Christoph Lameter81819f02007-05-06 14:49:36 -07004854 &slab_size_attr.attr,
4855 &object_size_attr.attr,
4856 &objs_per_slab_attr.attr,
4857 &order_attr.attr,
David Rientjes73d342b2009-02-22 17:40:09 -08004858 &min_partial_attr.attr,
Christoph Lameter49e22582011-08-09 16:12:27 -05004859 &cpu_partial_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07004860 &objects_attr.attr,
Christoph Lameter205ab992008-04-14 19:11:40 +03004861 &objects_partial_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07004862 &partial_attr.attr,
4863 &cpu_slabs_attr.attr,
4864 &ctor_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07004865 &aliases_attr.attr,
4866 &align_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07004867 &hwcache_align_attr.attr,
4868 &reclaim_account_attr.attr,
4869 &destroy_by_rcu_attr.attr,
Christoph Lametera5a84752010-10-05 13:57:27 -05004870 &shrink_attr.attr,
Lai Jiangshanab9a0f12011-03-10 15:21:48 +08004871 &reserved_attr.attr,
Christoph Lameter49e22582011-08-09 16:12:27 -05004872 &slabs_cpu_partial_attr.attr,
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05004873#ifdef CONFIG_SLUB_DEBUG
Christoph Lametera5a84752010-10-05 13:57:27 -05004874 &total_objects_attr.attr,
4875 &slabs_attr.attr,
4876 &sanity_checks_attr.attr,
4877 &trace_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07004878 &red_zone_attr.attr,
4879 &poison_attr.attr,
4880 &store_user_attr.attr,
Christoph Lameter53e15af2007-05-06 14:49:43 -07004881 &validate_attr.attr,
Christoph Lameter88a420e2007-05-06 14:49:45 -07004882 &alloc_calls_attr.attr,
4883 &free_calls_attr.attr,
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05004884#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07004885#ifdef CONFIG_ZONE_DMA
4886 &cache_dma_attr.attr,
4887#endif
4888#ifdef CONFIG_NUMA
Christoph Lameter98246012008-01-07 23:20:26 -08004889 &remote_node_defrag_ratio_attr.attr,
Christoph Lameter81819f02007-05-06 14:49:36 -07004890#endif
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004891#ifdef CONFIG_SLUB_STATS
4892 &alloc_fastpath_attr.attr,
4893 &alloc_slowpath_attr.attr,
4894 &free_fastpath_attr.attr,
4895 &free_slowpath_attr.attr,
4896 &free_frozen_attr.attr,
4897 &free_add_partial_attr.attr,
4898 &free_remove_partial_attr.attr,
4899 &alloc_from_partial_attr.attr,
4900 &alloc_slab_attr.attr,
4901 &alloc_refill_attr.attr,
Christoph Lametere36a2652011-06-01 12:25:57 -05004902 &alloc_node_mismatch_attr.attr,
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004903 &free_slab_attr.attr,
4904 &cpuslab_flush_attr.attr,
4905 &deactivate_full_attr.attr,
4906 &deactivate_empty_attr.attr,
4907 &deactivate_to_head_attr.attr,
4908 &deactivate_to_tail_attr.attr,
4909 &deactivate_remote_frees_attr.attr,
Christoph Lameter03e404a2011-06-01 12:25:58 -05004910 &deactivate_bypass_attr.attr,
Christoph Lameter65c33762008-04-14 19:11:40 +03004911 &order_fallback_attr.attr,
Christoph Lameterb789ef52011-06-01 12:25:49 -05004912 &cmpxchg_double_fail_attr.attr,
4913 &cmpxchg_double_cpu_fail_attr.attr,
Christoph Lameter49e22582011-08-09 16:12:27 -05004914 &cpu_partial_alloc_attr.attr,
4915 &cpu_partial_free_attr.attr,
Alex Shi8028dce2012-02-03 23:34:56 +08004916 &cpu_partial_node_attr.attr,
4917 &cpu_partial_drain_attr.attr,
Christoph Lameter8ff12cf2008-02-07 17:47:41 -08004918#endif
Dmitry Monakhov4c13dd32010-02-26 09:36:12 +03004919#ifdef CONFIG_FAILSLAB
4920 &failslab_attr.attr,
4921#endif
4922
Christoph Lameter81819f02007-05-06 14:49:36 -07004923 NULL
4924};
4925
4926static struct attribute_group slab_attr_group = {
4927 .attrs = slab_attrs,
4928};
4929
4930static ssize_t slab_attr_show(struct kobject *kobj,
4931 struct attribute *attr,
4932 char *buf)
4933{
4934 struct slab_attribute *attribute;
4935 struct kmem_cache *s;
4936 int err;
4937
4938 attribute = to_slab_attr(attr);
4939 s = to_slab(kobj);
4940
4941 if (!attribute->show)
4942 return -EIO;
4943
4944 err = attribute->show(s, buf);
4945
4946 return err;
4947}
4948
4949static ssize_t slab_attr_store(struct kobject *kobj,
4950 struct attribute *attr,
4951 const char *buf, size_t len)
4952{
4953 struct slab_attribute *attribute;
4954 struct kmem_cache *s;
4955 int err;
4956
4957 attribute = to_slab_attr(attr);
4958 s = to_slab(kobj);
4959
4960 if (!attribute->store)
4961 return -EIO;
4962
4963 err = attribute->store(s, buf, len);
Glauber Costa107dab52012-12-18 14:23:05 -08004964#ifdef CONFIG_MEMCG_KMEM
4965 if (slab_state >= FULL && err >= 0 && is_root_cache(s)) {
4966 int i;
Christoph Lameter81819f02007-05-06 14:49:36 -07004967
Glauber Costa107dab52012-12-18 14:23:05 -08004968 mutex_lock(&slab_mutex);
4969 if (s->max_attr_size < len)
4970 s->max_attr_size = len;
4971
Glauber Costaebe945c2012-12-18 14:23:10 -08004972 /*
4973 * This is a best effort propagation, so this function's return
4974 * value will be determined by the parent cache only. This is
4975 * basically because not all attributes will have a well
4976 * defined semantics for rollbacks - most of the actions will
4977 * have permanent effects.
4978 *
4979 * Returning the error value of any of the children that fail
4980 * is not 100 % defined, in the sense that users seeing the
4981 * error code won't be able to know anything about the state of
4982 * the cache.
4983 *
4984 * Only returning the error code for the parent cache at least
4985 * has well defined semantics. The cache being written to
4986 * directly either failed or succeeded, in which case we loop
4987 * through the descendants with best-effort propagation.
4988 */
Glauber Costa107dab52012-12-18 14:23:05 -08004989 for_each_memcg_cache_index(i) {
Qiang Huang2ade4de2013-11-12 15:08:23 -08004990 struct kmem_cache *c = cache_from_memcg_idx(s, i);
Glauber Costa107dab52012-12-18 14:23:05 -08004991 if (c)
4992 attribute->store(c, buf, len);
4993 }
4994 mutex_unlock(&slab_mutex);
4995 }
4996#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07004997 return err;
4998}
4999
Glauber Costa107dab52012-12-18 14:23:05 -08005000static void memcg_propagate_slab_attrs(struct kmem_cache *s)
5001{
5002#ifdef CONFIG_MEMCG_KMEM
5003 int i;
5004 char *buffer = NULL;
Vladimir Davydov93030d82014-05-06 12:49:59 -07005005 struct kmem_cache *root_cache;
Glauber Costa107dab52012-12-18 14:23:05 -08005006
Vladimir Davydov93030d82014-05-06 12:49:59 -07005007 if (is_root_cache(s))
Glauber Costa107dab52012-12-18 14:23:05 -08005008 return;
5009
Vladimir Davydov93030d82014-05-06 12:49:59 -07005010 root_cache = s->memcg_params->root_cache;
5011
Glauber Costa107dab52012-12-18 14:23:05 -08005012 /*
5013 * This mean this cache had no attribute written. Therefore, no point
5014 * in copying default values around
5015 */
Vladimir Davydov93030d82014-05-06 12:49:59 -07005016 if (!root_cache->max_attr_size)
Glauber Costa107dab52012-12-18 14:23:05 -08005017 return;
5018
5019 for (i = 0; i < ARRAY_SIZE(slab_attrs); i++) {
5020 char mbuf[64];
5021 char *buf;
5022 struct slab_attribute *attr = to_slab_attr(slab_attrs[i]);
5023
5024 if (!attr || !attr->store || !attr->show)
5025 continue;
5026
5027 /*
5028 * It is really bad that we have to allocate here, so we will
5029 * do it only as a fallback. If we actually allocate, though,
5030 * we can just use the allocated buffer until the end.
5031 *
5032 * Most of the slub attributes will tend to be very small in
5033 * size, but sysfs allows buffers up to a page, so they can
5034 * theoretically happen.
5035 */
5036 if (buffer)
5037 buf = buffer;
Vladimir Davydov93030d82014-05-06 12:49:59 -07005038 else if (root_cache->max_attr_size < ARRAY_SIZE(mbuf))
Glauber Costa107dab52012-12-18 14:23:05 -08005039 buf = mbuf;
5040 else {
5041 buffer = (char *) get_zeroed_page(GFP_KERNEL);
5042 if (WARN_ON(!buffer))
5043 continue;
5044 buf = buffer;
5045 }
5046
Vladimir Davydov93030d82014-05-06 12:49:59 -07005047 attr->show(root_cache, buf);
Glauber Costa107dab52012-12-18 14:23:05 -08005048 attr->store(s, buf, strlen(buf));
5049 }
5050
5051 if (buffer)
5052 free_page((unsigned long)buffer);
5053#endif
5054}
5055
Christoph Lameter41a21282014-05-06 12:50:08 -07005056static void kmem_cache_release(struct kobject *k)
5057{
5058 slab_kmem_cache_release(to_slab(k));
5059}
5060
Emese Revfy52cf25d2010-01-19 02:58:23 +01005061static const struct sysfs_ops slab_sysfs_ops = {
Christoph Lameter81819f02007-05-06 14:49:36 -07005062 .show = slab_attr_show,
5063 .store = slab_attr_store,
5064};
5065
5066static struct kobj_type slab_ktype = {
5067 .sysfs_ops = &slab_sysfs_ops,
Christoph Lameter41a21282014-05-06 12:50:08 -07005068 .release = kmem_cache_release,
Christoph Lameter81819f02007-05-06 14:49:36 -07005069};
5070
5071static int uevent_filter(struct kset *kset, struct kobject *kobj)
5072{
5073 struct kobj_type *ktype = get_ktype(kobj);
5074
5075 if (ktype == &slab_ktype)
5076 return 1;
5077 return 0;
5078}
5079
Emese Revfy9cd43612009-12-31 14:52:51 +01005080static const struct kset_uevent_ops slab_uevent_ops = {
Christoph Lameter81819f02007-05-06 14:49:36 -07005081 .filter = uevent_filter,
5082};
5083
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06005084static struct kset *slab_kset;
Christoph Lameter81819f02007-05-06 14:49:36 -07005085
Vladimir Davydov9a417072014-04-07 15:39:31 -07005086static inline struct kset *cache_kset(struct kmem_cache *s)
5087{
5088#ifdef CONFIG_MEMCG_KMEM
5089 if (!is_root_cache(s))
5090 return s->memcg_params->root_cache->memcg_kset;
5091#endif
5092 return slab_kset;
5093}
5094
Christoph Lameter81819f02007-05-06 14:49:36 -07005095#define ID_STR_LENGTH 64
5096
5097/* Create a unique string id for a slab cache:
Christoph Lameter6446faa2008-02-15 23:45:26 -08005098 *
5099 * Format :[flags-]size
Christoph Lameter81819f02007-05-06 14:49:36 -07005100 */
5101static char *create_unique_id(struct kmem_cache *s)
5102{
5103 char *name = kmalloc(ID_STR_LENGTH, GFP_KERNEL);
5104 char *p = name;
5105
5106 BUG_ON(!name);
5107
5108 *p++ = ':';
5109 /*
5110 * First flags affecting slabcache operations. We will only
5111 * get here for aliasable slabs so we do not need to support
5112 * too many flags. The flags here must cover all flags that
5113 * are matched during merging to guarantee that the id is
5114 * unique.
5115 */
5116 if (s->flags & SLAB_CACHE_DMA)
5117 *p++ = 'd';
5118 if (s->flags & SLAB_RECLAIM_ACCOUNT)
5119 *p++ = 'a';
5120 if (s->flags & SLAB_DEBUG_FREE)
5121 *p++ = 'F';
Vegard Nossum5a896d92008-04-04 00:54:48 +02005122 if (!(s->flags & SLAB_NOTRACK))
5123 *p++ = 't';
Christoph Lameter81819f02007-05-06 14:49:36 -07005124 if (p != name + 1)
5125 *p++ = '-';
5126 p += sprintf(p, "%07d", s->size);
Glauber Costa2633d7a2012-12-18 14:22:34 -08005127
5128#ifdef CONFIG_MEMCG_KMEM
5129 if (!is_root_cache(s))
Chen Gangd0e0ac92013-07-15 09:05:29 +08005130 p += sprintf(p, "-%08d",
5131 memcg_cache_id(s->memcg_params->memcg));
Glauber Costa2633d7a2012-12-18 14:22:34 -08005132#endif
5133
Christoph Lameter81819f02007-05-06 14:49:36 -07005134 BUG_ON(p > name + ID_STR_LENGTH - 1);
5135 return name;
5136}
5137
5138static int sysfs_slab_add(struct kmem_cache *s)
5139{
5140 int err;
5141 const char *name;
Christoph Lameter45530c42012-11-28 16:23:07 +00005142 int unmergeable = slab_unmergeable(s);
Christoph Lameter81819f02007-05-06 14:49:36 -07005143
Christoph Lameter81819f02007-05-06 14:49:36 -07005144 if (unmergeable) {
5145 /*
5146 * Slabcache can never be merged so we can use the name proper.
5147 * This is typically the case for debug situations. In that
5148 * case we can catch duplicate names easily.
5149 */
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06005150 sysfs_remove_link(&slab_kset->kobj, s->name);
Christoph Lameter81819f02007-05-06 14:49:36 -07005151 name = s->name;
5152 } else {
5153 /*
5154 * Create a unique name for the slab as a target
5155 * for the symlinks.
5156 */
5157 name = create_unique_id(s);
5158 }
5159
Vladimir Davydov9a417072014-04-07 15:39:31 -07005160 s->kobj.kset = cache_kset(s);
Tetsuo Handa26e4f202014-01-04 16:32:31 +09005161 err = kobject_init_and_add(&s->kobj, &slab_ktype, NULL, "%s", name);
Dave Jones54b6a732014-04-07 15:39:32 -07005162 if (err)
5163 goto out_put_kobj;
Christoph Lameter81819f02007-05-06 14:49:36 -07005164
5165 err = sysfs_create_group(&s->kobj, &slab_attr_group);
Dave Jones54b6a732014-04-07 15:39:32 -07005166 if (err)
5167 goto out_del_kobj;
Vladimir Davydov9a417072014-04-07 15:39:31 -07005168
5169#ifdef CONFIG_MEMCG_KMEM
5170 if (is_root_cache(s)) {
5171 s->memcg_kset = kset_create_and_add("cgroup", NULL, &s->kobj);
5172 if (!s->memcg_kset) {
Dave Jones54b6a732014-04-07 15:39:32 -07005173 err = -ENOMEM;
5174 goto out_del_kobj;
Vladimir Davydov9a417072014-04-07 15:39:31 -07005175 }
5176 }
5177#endif
5178
Christoph Lameter81819f02007-05-06 14:49:36 -07005179 kobject_uevent(&s->kobj, KOBJ_ADD);
5180 if (!unmergeable) {
5181 /* Setup first alias */
5182 sysfs_slab_alias(s, s->name);
Christoph Lameter81819f02007-05-06 14:49:36 -07005183 }
Dave Jones54b6a732014-04-07 15:39:32 -07005184out:
5185 if (!unmergeable)
5186 kfree(name);
5187 return err;
5188out_del_kobj:
5189 kobject_del(&s->kobj);
5190out_put_kobj:
5191 kobject_put(&s->kobj);
5192 goto out;
Christoph Lameter81819f02007-05-06 14:49:36 -07005193}
5194
Christoph Lameter41a21282014-05-06 12:50:08 -07005195void sysfs_slab_remove(struct kmem_cache *s)
Christoph Lameter81819f02007-05-06 14:49:36 -07005196{
Christoph Lameter97d06602012-07-06 15:25:11 -05005197 if (slab_state < FULL)
Christoph Lameter2bce6482010-07-19 11:39:11 -05005198 /*
5199 * Sysfs has not been setup yet so no need to remove the
5200 * cache from sysfs.
5201 */
5202 return;
5203
Vladimir Davydov9a417072014-04-07 15:39:31 -07005204#ifdef CONFIG_MEMCG_KMEM
5205 kset_unregister(s->memcg_kset);
5206#endif
Christoph Lameter81819f02007-05-06 14:49:36 -07005207 kobject_uevent(&s->kobj, KOBJ_REMOVE);
5208 kobject_del(&s->kobj);
Christoph Lameter151c6022008-01-07 22:29:05 -08005209 kobject_put(&s->kobj);
Christoph Lameter81819f02007-05-06 14:49:36 -07005210}
5211
5212/*
5213 * Need to buffer aliases during bootup until sysfs becomes
Nick Andrew9f6c708e2008-12-05 14:08:08 +11005214 * available lest we lose that information.
Christoph Lameter81819f02007-05-06 14:49:36 -07005215 */
5216struct saved_alias {
5217 struct kmem_cache *s;
5218 const char *name;
5219 struct saved_alias *next;
5220};
5221
Adrian Bunk5af328a2007-07-17 04:03:27 -07005222static struct saved_alias *alias_list;
Christoph Lameter81819f02007-05-06 14:49:36 -07005223
5224static int sysfs_slab_alias(struct kmem_cache *s, const char *name)
5225{
5226 struct saved_alias *al;
5227
Christoph Lameter97d06602012-07-06 15:25:11 -05005228 if (slab_state == FULL) {
Christoph Lameter81819f02007-05-06 14:49:36 -07005229 /*
5230 * If we have a leftover link then remove it.
5231 */
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06005232 sysfs_remove_link(&slab_kset->kobj, name);
5233 return sysfs_create_link(&slab_kset->kobj, &s->kobj, name);
Christoph Lameter81819f02007-05-06 14:49:36 -07005234 }
5235
5236 al = kmalloc(sizeof(struct saved_alias), GFP_KERNEL);
5237 if (!al)
5238 return -ENOMEM;
5239
5240 al->s = s;
5241 al->name = name;
5242 al->next = alias_list;
5243 alias_list = al;
5244 return 0;
5245}
5246
5247static int __init slab_sysfs_init(void)
5248{
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07005249 struct kmem_cache *s;
Christoph Lameter81819f02007-05-06 14:49:36 -07005250 int err;
5251
Christoph Lameter18004c52012-07-06 15:25:12 -05005252 mutex_lock(&slab_mutex);
Christoph Lameter2bce6482010-07-19 11:39:11 -05005253
Greg Kroah-Hartman0ff21e42007-11-06 10:36:58 -08005254 slab_kset = kset_create_and_add("slab", &slab_uevent_ops, kernel_kobj);
Greg Kroah-Hartman27c3a312007-11-01 09:29:06 -06005255 if (!slab_kset) {
Christoph Lameter18004c52012-07-06 15:25:12 -05005256 mutex_unlock(&slab_mutex);
Fabian Frederickf9f58282014-06-04 16:06:34 -07005257 pr_err("Cannot register slab subsystem.\n");
Christoph Lameter81819f02007-05-06 14:49:36 -07005258 return -ENOSYS;
5259 }
5260
Christoph Lameter97d06602012-07-06 15:25:11 -05005261 slab_state = FULL;
Christoph Lameter26a7bd02007-05-09 02:32:39 -07005262
Christoph Lameter5b95a4ac2007-07-17 04:03:19 -07005263 list_for_each_entry(s, &slab_caches, list) {
Christoph Lameter26a7bd02007-05-09 02:32:39 -07005264 err = sysfs_slab_add(s);
Christoph Lameter5d540fb2007-08-30 23:56:26 -07005265 if (err)
Fabian Frederickf9f58282014-06-04 16:06:34 -07005266 pr_err("SLUB: Unable to add boot slab %s to sysfs\n",
5267 s->name);
Christoph Lameter26a7bd02007-05-09 02:32:39 -07005268 }
Christoph Lameter81819f02007-05-06 14:49:36 -07005269
5270 while (alias_list) {
5271 struct saved_alias *al = alias_list;
5272
5273 alias_list = alias_list->next;
5274 err = sysfs_slab_alias(al->s, al->name);
Christoph Lameter5d540fb2007-08-30 23:56:26 -07005275 if (err)
Fabian Frederickf9f58282014-06-04 16:06:34 -07005276 pr_err("SLUB: Unable to add boot slab alias %s to sysfs\n",
5277 al->name);
Christoph Lameter81819f02007-05-06 14:49:36 -07005278 kfree(al);
5279 }
5280
Christoph Lameter18004c52012-07-06 15:25:12 -05005281 mutex_unlock(&slab_mutex);
Christoph Lameter81819f02007-05-06 14:49:36 -07005282 resiliency_test();
5283 return 0;
5284}
5285
5286__initcall(slab_sysfs_init);
Christoph Lameterab4d5ed2010-10-05 13:57:26 -05005287#endif /* CONFIG_SYSFS */
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01005288
5289/*
5290 * The /proc/slabinfo ABI
5291 */
Linus Torvalds158a9622008-01-02 13:04:48 -08005292#ifdef CONFIG_SLABINFO
Glauber Costa0d7561c2012-10-19 18:20:27 +04005293void get_slabinfo(struct kmem_cache *s, struct slabinfo *sinfo)
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01005294{
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01005295 unsigned long nr_slabs = 0;
Christoph Lameter205ab992008-04-14 19:11:40 +03005296 unsigned long nr_objs = 0;
5297 unsigned long nr_free = 0;
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01005298 int node;
Christoph Lameterfa45dc22014-08-06 16:04:09 -07005299 struct kmem_cache_node *n;
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01005300
Christoph Lameterfa45dc22014-08-06 16:04:09 -07005301 for_each_kmem_cache_node(s, node, n) {
Wanpeng Lic17fd132013-07-04 08:33:26 +08005302 nr_slabs += node_nr_slabs(n);
5303 nr_objs += node_nr_objs(n);
Christoph Lameter205ab992008-04-14 19:11:40 +03005304 nr_free += count_partial(n, count_free);
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01005305 }
5306
Glauber Costa0d7561c2012-10-19 18:20:27 +04005307 sinfo->active_objs = nr_objs - nr_free;
5308 sinfo->num_objs = nr_objs;
5309 sinfo->active_slabs = nr_slabs;
5310 sinfo->num_slabs = nr_slabs;
5311 sinfo->objects_per_slab = oo_objects(s->oo);
5312 sinfo->cache_order = oo_order(s->oo);
Pekka J Enberg57ed3ed2008-01-01 17:23:28 +01005313}
5314
Glauber Costa0d7561c2012-10-19 18:20:27 +04005315void slabinfo_show_stats(struct seq_file *m, struct kmem_cache *s)
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04005316{
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04005317}
5318
Glauber Costab7454ad2012-10-19 18:20:25 +04005319ssize_t slabinfo_write(struct file *file, const char __user *buffer,
5320 size_t count, loff_t *ppos)
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04005321{
Glauber Costab7454ad2012-10-19 18:20:25 +04005322 return -EIO;
Alexey Dobriyan7b3c3a52008-10-06 02:42:17 +04005323}
Linus Torvalds158a9622008-01-02 13:04:48 -08005324#endif /* CONFIG_SLABINFO */