blob: 86831105a09f44ffae37c074a6e5587c5b7056ce [file] [log] [blame]
Christoph Lameter039363f2012-07-06 15:25:10 -05001/*
2 * Slab allocator functions that are independent of the allocator strategy
3 *
4 * (C) 2012 Christoph Lameter <cl@linux.com>
5 */
6#include <linux/slab.h>
7
8#include <linux/mm.h>
9#include <linux/poison.h>
10#include <linux/interrupt.h>
11#include <linux/memory.h>
12#include <linux/compiler.h>
13#include <linux/module.h>
Christoph Lameter20cea962012-07-06 15:25:13 -050014#include <linux/cpu.h>
15#include <linux/uaccess.h>
Glauber Costab7454ad2012-10-19 18:20:25 +040016#include <linux/seq_file.h>
17#include <linux/proc_fs.h>
Christoph Lameter039363f2012-07-06 15:25:10 -050018#include <asm/cacheflush.h>
19#include <asm/tlbflush.h>
20#include <asm/page.h>
Glauber Costa2633d7a2012-12-18 14:22:34 -080021#include <linux/memcontrol.h>
Andrey Ryabinin928cec92014-08-06 16:04:44 -070022
23#define CREATE_TRACE_POINTS
Christoph Lameterf1b6eb62013-09-04 16:35:34 +000024#include <trace/events/kmem.h>
Christoph Lameter039363f2012-07-06 15:25:10 -050025
Christoph Lameter97d06602012-07-06 15:25:11 -050026#include "slab.h"
27
28enum slab_state slab_state;
Christoph Lameter18004c52012-07-06 15:25:12 -050029LIST_HEAD(slab_caches);
30DEFINE_MUTEX(slab_mutex);
Christoph Lameter9b030cb2012-09-05 00:20:33 +000031struct kmem_cache *kmem_cache;
Christoph Lameter97d06602012-07-06 15:25:11 -050032
Joonsoo Kim07f361b2014-10-09 15:26:00 -070033/*
Joonsoo Kim423c9292014-10-09 15:26:22 -070034 * Set of flags that will prevent slab merging
35 */
36#define SLAB_NEVER_MERGE (SLAB_RED_ZONE | SLAB_POISON | SLAB_STORE_USER | \
37 SLAB_TRACE | SLAB_DESTROY_BY_RCU | SLAB_NOLEAKTRACE | \
38 SLAB_FAILSLAB)
39
Konstantin Khlebnikov3e810ae2015-08-06 15:46:36 -070040#define SLAB_MERGE_SAME (SLAB_RECLAIM_ACCOUNT | SLAB_CACHE_DMA | SLAB_NOTRACK)
Joonsoo Kim423c9292014-10-09 15:26:22 -070041
42/*
43 * Merge control. If this is set then no merging of slab caches will occur.
44 * (Could be removed. This was introduced to pacify the merge skeptics.)
45 */
46static int slab_nomerge;
47
48static int __init setup_slab_nomerge(char *str)
49{
50 slab_nomerge = 1;
51 return 1;
52}
53
54#ifdef CONFIG_SLUB
55__setup_param("slub_nomerge", slub_nomerge, setup_slab_nomerge, 0);
56#endif
57
58__setup("slab_nomerge", setup_slab_nomerge);
59
60/*
Joonsoo Kim07f361b2014-10-09 15:26:00 -070061 * Determine the size of a slab object
62 */
63unsigned int kmem_cache_size(struct kmem_cache *s)
64{
65 return s->object_size;
66}
67EXPORT_SYMBOL(kmem_cache_size);
68
Shuah Khan77be4b12012-08-16 00:09:46 -070069#ifdef CONFIG_DEBUG_VM
Vladimir Davydov794b1242014-04-07 15:39:26 -070070static int kmem_cache_sanity_check(const char *name, size_t size)
Shuah Khan77be4b12012-08-16 00:09:46 -070071{
72 struct kmem_cache *s = NULL;
73
74 if (!name || in_interrupt() || size < sizeof(void *) ||
75 size > KMALLOC_MAX_SIZE) {
76 pr_err("kmem_cache_create(%s) integrity check failed\n", name);
77 return -EINVAL;
78 }
79
80 list_for_each_entry(s, &slab_caches, list) {
81 char tmp;
82 int res;
83
84 /*
85 * This happens when the module gets unloaded and doesn't
86 * destroy its slab cache and no-one else reuses the vmalloc
87 * area of the module. Print a warning.
88 */
89 res = probe_kernel_address(s->name, tmp);
90 if (res) {
91 pr_err("Slab cache with size %d has lost its name\n",
92 s->object_size);
93 continue;
94 }
Shuah Khan77be4b12012-08-16 00:09:46 -070095 }
96
97 WARN_ON(strchr(name, ' ')); /* It confuses parsers */
98 return 0;
99}
100#else
Vladimir Davydov794b1242014-04-07 15:39:26 -0700101static inline int kmem_cache_sanity_check(const char *name, size_t size)
Shuah Khan77be4b12012-08-16 00:09:46 -0700102{
103 return 0;
104}
105#endif
106
Glauber Costa55007d82012-12-18 14:22:38 -0800107#ifdef CONFIG_MEMCG_KMEM
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800108void slab_init_memcg_params(struct kmem_cache *s)
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700109{
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800110 s->memcg_params.is_root_cache = true;
Vladimir Davydov426589f2015-02-12 14:59:23 -0800111 INIT_LIST_HEAD(&s->memcg_params.list);
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800112 RCU_INIT_POINTER(s->memcg_params.memcg_caches, NULL);
113}
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700114
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800115static int init_memcg_params(struct kmem_cache *s,
116 struct mem_cgroup *memcg, struct kmem_cache *root_cache)
117{
118 struct memcg_cache_array *arr;
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700119
120 if (memcg) {
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800121 s->memcg_params.is_root_cache = false;
122 s->memcg_params.memcg = memcg;
123 s->memcg_params.root_cache = root_cache;
124 return 0;
125 }
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700126
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800127 slab_init_memcg_params(s);
128
129 if (!memcg_nr_cache_ids)
130 return 0;
131
132 arr = kzalloc(sizeof(struct memcg_cache_array) +
133 memcg_nr_cache_ids * sizeof(void *),
134 GFP_KERNEL);
135 if (!arr)
136 return -ENOMEM;
137
138 RCU_INIT_POINTER(s->memcg_params.memcg_caches, arr);
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700139 return 0;
140}
141
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800142static void destroy_memcg_params(struct kmem_cache *s)
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700143{
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800144 if (is_root_cache(s))
145 kfree(rcu_access_pointer(s->memcg_params.memcg_caches));
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700146}
147
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800148static int update_memcg_params(struct kmem_cache *s, int new_array_size)
Vladimir Davydov6f817f42014-10-09 15:28:47 -0700149{
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800150 struct memcg_cache_array *old, *new;
Vladimir Davydov6f817f42014-10-09 15:28:47 -0700151
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800152 if (!is_root_cache(s))
153 return 0;
Vladimir Davydov6f817f42014-10-09 15:28:47 -0700154
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800155 new = kzalloc(sizeof(struct memcg_cache_array) +
156 new_array_size * sizeof(void *), GFP_KERNEL);
157 if (!new)
Vladimir Davydov6f817f42014-10-09 15:28:47 -0700158 return -ENOMEM;
159
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800160 old = rcu_dereference_protected(s->memcg_params.memcg_caches,
161 lockdep_is_held(&slab_mutex));
162 if (old)
163 memcpy(new->entries, old->entries,
164 memcg_nr_cache_ids * sizeof(void *));
Vladimir Davydov6f817f42014-10-09 15:28:47 -0700165
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800166 rcu_assign_pointer(s->memcg_params.memcg_caches, new);
167 if (old)
168 kfree_rcu(old, rcu);
Vladimir Davydov6f817f42014-10-09 15:28:47 -0700169 return 0;
170}
171
Glauber Costa55007d82012-12-18 14:22:38 -0800172int memcg_update_all_caches(int num_memcgs)
173{
174 struct kmem_cache *s;
175 int ret = 0;
Glauber Costa55007d82012-12-18 14:22:38 -0800176
Vladimir Davydov05257a12015-02-12 14:59:01 -0800177 mutex_lock(&slab_mutex);
Glauber Costa55007d82012-12-18 14:22:38 -0800178 list_for_each_entry(s, &slab_caches, list) {
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800179 ret = update_memcg_params(s, num_memcgs);
Glauber Costa55007d82012-12-18 14:22:38 -0800180 /*
Glauber Costa55007d82012-12-18 14:22:38 -0800181 * Instead of freeing the memory, we'll just leave the caches
182 * up to this point in an updated state.
183 */
184 if (ret)
Vladimir Davydov05257a12015-02-12 14:59:01 -0800185 break;
Glauber Costa55007d82012-12-18 14:22:38 -0800186 }
Glauber Costa55007d82012-12-18 14:22:38 -0800187 mutex_unlock(&slab_mutex);
188 return ret;
189}
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700190#else
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800191static inline int init_memcg_params(struct kmem_cache *s,
192 struct mem_cgroup *memcg, struct kmem_cache *root_cache)
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700193{
194 return 0;
195}
196
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800197static inline void destroy_memcg_params(struct kmem_cache *s)
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700198{
199}
200#endif /* CONFIG_MEMCG_KMEM */
Glauber Costa55007d82012-12-18 14:22:38 -0800201
Christoph Lameter039363f2012-07-06 15:25:10 -0500202/*
Joonsoo Kim423c9292014-10-09 15:26:22 -0700203 * Find a mergeable slab cache
204 */
205int slab_unmergeable(struct kmem_cache *s)
206{
207 if (slab_nomerge || (s->flags & SLAB_NEVER_MERGE))
208 return 1;
209
210 if (!is_root_cache(s))
211 return 1;
212
213 if (s->ctor)
214 return 1;
215
216 /*
217 * We may have set a slab to be unmergeable during bootstrap.
218 */
219 if (s->refcount < 0)
220 return 1;
221
222 return 0;
223}
224
225struct kmem_cache *find_mergeable(size_t size, size_t align,
226 unsigned long flags, const char *name, void (*ctor)(void *))
227{
228 struct kmem_cache *s;
229
230 if (slab_nomerge || (flags & SLAB_NEVER_MERGE))
231 return NULL;
232
233 if (ctor)
234 return NULL;
235
236 size = ALIGN(size, sizeof(void *));
237 align = calculate_alignment(flags, align, size);
238 size = ALIGN(size, align);
239 flags = kmem_cache_flags(size, flags, name, NULL);
240
Joonsoo Kim54362052014-12-10 15:42:18 -0800241 list_for_each_entry_reverse(s, &slab_caches, list) {
Joonsoo Kim423c9292014-10-09 15:26:22 -0700242 if (slab_unmergeable(s))
243 continue;
244
245 if (size > s->size)
246 continue;
247
248 if ((flags & SLAB_MERGE_SAME) != (s->flags & SLAB_MERGE_SAME))
249 continue;
250 /*
251 * Check if alignment is compatible.
252 * Courtesy of Adrian Drzewiecki
253 */
254 if ((s->size & ~(align - 1)) != s->size)
255 continue;
256
257 if (s->size - size >= sizeof(void *))
258 continue;
259
Joonsoo Kim95069ac82014-11-13 15:19:25 -0800260 if (IS_ENABLED(CONFIG_SLAB) && align &&
261 (align > s->align || s->align % align))
262 continue;
263
Joonsoo Kim423c9292014-10-09 15:26:22 -0700264 return s;
265 }
266 return NULL;
267}
268
269/*
Christoph Lameter45906852012-11-28 16:23:16 +0000270 * Figure out what the alignment of the objects will be given a set of
271 * flags, a user specified alignment and the size of the objects.
272 */
273unsigned long calculate_alignment(unsigned long flags,
274 unsigned long align, unsigned long size)
275{
276 /*
277 * If the user wants hardware cache aligned objects then follow that
278 * suggestion if the object is sufficiently large.
279 *
280 * The hardware cache alignment cannot override the specified
281 * alignment though. If that is greater then use it.
282 */
283 if (flags & SLAB_HWCACHE_ALIGN) {
284 unsigned long ralign = cache_line_size();
285 while (size <= ralign / 2)
286 ralign /= 2;
287 align = max(align, ralign);
288 }
289
290 if (align < ARCH_SLAB_MINALIGN)
291 align = ARCH_SLAB_MINALIGN;
292
293 return ALIGN(align, sizeof(void *));
294}
295
Vladimir Davydov794b1242014-04-07 15:39:26 -0700296static struct kmem_cache *
Andrzej Hajda3dec16e2015-02-13 14:36:38 -0800297do_kmem_cache_create(const char *name, size_t object_size, size_t size,
298 size_t align, unsigned long flags, void (*ctor)(void *),
Vladimir Davydov794b1242014-04-07 15:39:26 -0700299 struct mem_cgroup *memcg, struct kmem_cache *root_cache)
300{
301 struct kmem_cache *s;
302 int err;
303
304 err = -ENOMEM;
305 s = kmem_cache_zalloc(kmem_cache, GFP_KERNEL);
306 if (!s)
307 goto out;
308
309 s->name = name;
310 s->object_size = object_size;
311 s->size = size;
312 s->align = align;
313 s->ctor = ctor;
314
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800315 err = init_memcg_params(s, memcg, root_cache);
Vladimir Davydov794b1242014-04-07 15:39:26 -0700316 if (err)
317 goto out_free_cache;
318
319 err = __kmem_cache_create(s, flags);
320 if (err)
321 goto out_free_cache;
322
323 s->refcount = 1;
324 list_add(&s->list, &slab_caches);
Vladimir Davydov794b1242014-04-07 15:39:26 -0700325out:
326 if (err)
327 return ERR_PTR(err);
328 return s;
329
330out_free_cache:
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800331 destroy_memcg_params(s);
Vaishali Thakkar7c4da062015-02-10 14:09:40 -0800332 kmem_cache_free(kmem_cache, s);
Vladimir Davydov794b1242014-04-07 15:39:26 -0700333 goto out;
334}
Christoph Lameter45906852012-11-28 16:23:16 +0000335
336/*
Christoph Lameter039363f2012-07-06 15:25:10 -0500337 * kmem_cache_create - Create a cache.
338 * @name: A string which is used in /proc/slabinfo to identify this cache.
339 * @size: The size of objects to be created in this cache.
340 * @align: The required alignment for the objects.
341 * @flags: SLAB flags
342 * @ctor: A constructor for the objects.
343 *
344 * Returns a ptr to the cache on success, NULL on failure.
345 * Cannot be called within a interrupt, but can be interrupted.
346 * The @ctor is run when new pages are allocated by the cache.
347 *
348 * The flags are
349 *
350 * %SLAB_POISON - Poison the slab with a known test pattern (a5a5a5a5)
351 * to catch references to uninitialised memory.
352 *
353 * %SLAB_RED_ZONE - Insert `Red' zones around the allocated memory to check
354 * for buffer overruns.
355 *
356 * %SLAB_HWCACHE_ALIGN - Align the objects in this cache to a hardware
357 * cacheline. This can be beneficial if you're counting cycles as closely
358 * as davem.
359 */
Glauber Costa2633d7a2012-12-18 14:22:34 -0800360struct kmem_cache *
Vladimir Davydov794b1242014-04-07 15:39:26 -0700361kmem_cache_create(const char *name, size_t size, size_t align,
362 unsigned long flags, void (*ctor)(void *))
Christoph Lameter039363f2012-07-06 15:25:10 -0500363{
Vladimir Davydov794b1242014-04-07 15:39:26 -0700364 struct kmem_cache *s;
Andrzej Hajda3dec16e2015-02-13 14:36:38 -0800365 const char *cache_name;
Vladimir Davydov3965fc32014-01-23 15:52:55 -0800366 int err;
Christoph Lameter039363f2012-07-06 15:25:10 -0500367
Pekka Enbergb9205362012-08-16 10:12:18 +0300368 get_online_cpus();
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700369 get_online_mems();
Vladimir Davydov05257a12015-02-12 14:59:01 -0800370 memcg_get_cache_ids();
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700371
Pekka Enbergb9205362012-08-16 10:12:18 +0300372 mutex_lock(&slab_mutex);
Christoph Lameter686d5502012-09-05 00:20:33 +0000373
Vladimir Davydov794b1242014-04-07 15:39:26 -0700374 err = kmem_cache_sanity_check(name, size);
Andrew Morton3aa24f52014-10-09 15:25:58 -0700375 if (err) {
376 s = NULL; /* suppress uninit var warning */
Vladimir Davydov3965fc32014-01-23 15:52:55 -0800377 goto out_unlock;
Andrew Morton3aa24f52014-10-09 15:25:58 -0700378 }
Christoph Lameter686d5502012-09-05 00:20:33 +0000379
Glauber Costad8843922012-10-17 15:36:51 +0400380 /*
381 * Some allocators will constraint the set of valid flags to a subset
382 * of all flags. We expect them to define CACHE_CREATE_MASK in this
383 * case, and we'll just provide them with a sanitized version of the
384 * passed flags.
385 */
386 flags &= CACHE_CREATE_MASK;
Christoph Lameter686d5502012-09-05 00:20:33 +0000387
Vladimir Davydov794b1242014-04-07 15:39:26 -0700388 s = __kmem_cache_alias(name, size, align, flags, ctor);
389 if (s)
Vladimir Davydov3965fc32014-01-23 15:52:55 -0800390 goto out_unlock;
Glauber Costa2633d7a2012-12-18 14:22:34 -0800391
Andrzej Hajda3dec16e2015-02-13 14:36:38 -0800392 cache_name = kstrdup_const(name, GFP_KERNEL);
Vladimir Davydov794b1242014-04-07 15:39:26 -0700393 if (!cache_name) {
394 err = -ENOMEM;
395 goto out_unlock;
396 }
Glauber Costa2633d7a2012-12-18 14:22:34 -0800397
Vladimir Davydov794b1242014-04-07 15:39:26 -0700398 s = do_kmem_cache_create(cache_name, size, size,
399 calculate_alignment(flags, align, size),
400 flags, ctor, NULL, NULL);
401 if (IS_ERR(s)) {
402 err = PTR_ERR(s);
Andrzej Hajda3dec16e2015-02-13 14:36:38 -0800403 kfree_const(cache_name);
Vladimir Davydov794b1242014-04-07 15:39:26 -0700404 }
Vladimir Davydov3965fc32014-01-23 15:52:55 -0800405
406out_unlock:
Christoph Lameter20cea962012-07-06 15:25:13 -0500407 mutex_unlock(&slab_mutex);
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700408
Vladimir Davydov05257a12015-02-12 14:59:01 -0800409 memcg_put_cache_ids();
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700410 put_online_mems();
Christoph Lameter20cea962012-07-06 15:25:13 -0500411 put_online_cpus();
412
Dave Jonesba3253c72014-01-29 14:05:48 -0800413 if (err) {
Christoph Lameter686d5502012-09-05 00:20:33 +0000414 if (flags & SLAB_PANIC)
415 panic("kmem_cache_create: Failed to create slab '%s'. Error %d\n",
416 name, err);
417 else {
418 printk(KERN_WARNING "kmem_cache_create(%s) failed with error %d",
419 name, err);
420 dump_stack();
421 }
Christoph Lameter686d5502012-09-05 00:20:33 +0000422 return NULL;
423 }
Christoph Lameter039363f2012-07-06 15:25:10 -0500424 return s;
Glauber Costa2633d7a2012-12-18 14:22:34 -0800425}
Christoph Lameter039363f2012-07-06 15:25:10 -0500426EXPORT_SYMBOL(kmem_cache_create);
Christoph Lameter97d06602012-07-06 15:25:11 -0500427
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800428static int do_kmem_cache_shutdown(struct kmem_cache *s,
429 struct list_head *release, bool *need_rcu_barrier)
430{
431 if (__kmem_cache_shutdown(s) != 0) {
432 printk(KERN_ERR "kmem_cache_destroy %s: "
433 "Slab cache still has objects\n", s->name);
434 dump_stack();
435 return -EBUSY;
436 }
437
438 if (s->flags & SLAB_DESTROY_BY_RCU)
439 *need_rcu_barrier = true;
440
441#ifdef CONFIG_MEMCG_KMEM
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -0800442 if (!is_root_cache(s))
Vladimir Davydov426589f2015-02-12 14:59:23 -0800443 list_del(&s->memcg_params.list);
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800444#endif
445 list_move(&s->list, release);
446 return 0;
447}
448
449static void do_kmem_cache_release(struct list_head *release,
450 bool need_rcu_barrier)
451{
452 struct kmem_cache *s, *s2;
453
454 if (need_rcu_barrier)
455 rcu_barrier();
456
457 list_for_each_entry_safe(s, s2, release, list) {
458#ifdef SLAB_SUPPORTS_SYSFS
459 sysfs_slab_remove(s);
460#else
461 slab_kmem_cache_release(s);
462#endif
463 }
464}
465
Vladimir Davydov794b1242014-04-07 15:39:26 -0700466#ifdef CONFIG_MEMCG_KMEM
467/*
Vladimir Davydov776ed0f2014-06-04 16:10:02 -0700468 * memcg_create_kmem_cache - Create a cache for a memory cgroup.
Vladimir Davydov794b1242014-04-07 15:39:26 -0700469 * @memcg: The memory cgroup the new cache is for.
470 * @root_cache: The parent of the new cache.
471 *
472 * This function attempts to create a kmem cache that will serve allocation
473 * requests going from @memcg to @root_cache. The new cache inherits properties
474 * from its parent.
475 */
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800476void memcg_create_kmem_cache(struct mem_cgroup *memcg,
477 struct kmem_cache *root_cache)
Vladimir Davydov794b1242014-04-07 15:39:26 -0700478{
Vladimir Davydov3e0350a2015-02-10 14:11:44 -0800479 static char memcg_name_buf[NAME_MAX + 1]; /* protected by slab_mutex */
Vladimir Davydovf1008362015-02-12 14:59:29 -0800480 struct cgroup_subsys_state *css = mem_cgroup_css(memcg);
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800481 struct memcg_cache_array *arr;
Vladimir Davydovbd673142014-06-04 16:07:40 -0700482 struct kmem_cache *s = NULL;
Vladimir Davydov794b1242014-04-07 15:39:26 -0700483 char *cache_name;
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800484 int idx;
Vladimir Davydov794b1242014-04-07 15:39:26 -0700485
486 get_online_cpus();
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700487 get_online_mems();
488
Vladimir Davydov794b1242014-04-07 15:39:26 -0700489 mutex_lock(&slab_mutex);
490
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -0800491 /*
492 * The memory cgroup could have been deactivated while the cache
493 * creation work was pending.
494 */
495 if (!memcg_kmem_is_active(memcg))
496 goto out_unlock;
497
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800498 idx = memcg_cache_id(memcg);
499 arr = rcu_dereference_protected(root_cache->memcg_params.memcg_caches,
500 lockdep_is_held(&slab_mutex));
501
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800502 /*
503 * Since per-memcg caches are created asynchronously on first
504 * allocation (see memcg_kmem_get_cache()), several threads can try to
505 * create the same cache, but only one of them may succeed.
506 */
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800507 if (arr->entries[idx])
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800508 goto out_unlock;
509
Vladimir Davydovf1008362015-02-12 14:59:29 -0800510 cgroup_name(css->cgroup, memcg_name_buf, sizeof(memcg_name_buf));
Vladimir Davydov073ee1c2014-06-04 16:08:23 -0700511 cache_name = kasprintf(GFP_KERNEL, "%s(%d:%s)", root_cache->name,
Vladimir Davydovf1008362015-02-12 14:59:29 -0800512 css->id, memcg_name_buf);
Vladimir Davydov794b1242014-04-07 15:39:26 -0700513 if (!cache_name)
514 goto out_unlock;
515
516 s = do_kmem_cache_create(cache_name, root_cache->object_size,
517 root_cache->size, root_cache->align,
518 root_cache->flags, root_cache->ctor,
519 memcg, root_cache);
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800520 /*
521 * If we could not create a memcg cache, do not complain, because
522 * that's not critical at all as we can always proceed with the root
523 * cache.
524 */
Vladimir Davydovbd673142014-06-04 16:07:40 -0700525 if (IS_ERR(s)) {
Vladimir Davydov794b1242014-04-07 15:39:26 -0700526 kfree(cache_name);
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800527 goto out_unlock;
Vladimir Davydovbd673142014-06-04 16:07:40 -0700528 }
Vladimir Davydov794b1242014-04-07 15:39:26 -0700529
Vladimir Davydov426589f2015-02-12 14:59:23 -0800530 list_add(&s->memcg_params.list, &root_cache->memcg_params.list);
531
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800532 /*
533 * Since readers won't lock (see cache_from_memcg_idx()), we need a
534 * barrier here to ensure nobody will see the kmem_cache partially
535 * initialized.
536 */
537 smp_wmb();
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800538 arr->entries[idx] = s;
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800539
Vladimir Davydov794b1242014-04-07 15:39:26 -0700540out_unlock:
541 mutex_unlock(&slab_mutex);
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700542
543 put_online_mems();
Vladimir Davydov794b1242014-04-07 15:39:26 -0700544 put_online_cpus();
545}
Vladimir Davydovb8529902014-04-07 15:39:28 -0700546
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -0800547void memcg_deactivate_kmem_caches(struct mem_cgroup *memcg)
548{
549 int idx;
550 struct memcg_cache_array *arr;
Vladimir Davydovd6e0b7f2015-02-12 14:59:47 -0800551 struct kmem_cache *s, *c;
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -0800552
553 idx = memcg_cache_id(memcg);
554
Vladimir Davydovd6e0b7f2015-02-12 14:59:47 -0800555 get_online_cpus();
556 get_online_mems();
557
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -0800558 mutex_lock(&slab_mutex);
559 list_for_each_entry(s, &slab_caches, list) {
560 if (!is_root_cache(s))
561 continue;
562
563 arr = rcu_dereference_protected(s->memcg_params.memcg_caches,
564 lockdep_is_held(&slab_mutex));
Vladimir Davydovd6e0b7f2015-02-12 14:59:47 -0800565 c = arr->entries[idx];
566 if (!c)
567 continue;
568
569 __kmem_cache_shrink(c, true);
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -0800570 arr->entries[idx] = NULL;
571 }
572 mutex_unlock(&slab_mutex);
Vladimir Davydovd6e0b7f2015-02-12 14:59:47 -0800573
574 put_online_mems();
575 put_online_cpus();
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -0800576}
577
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800578void memcg_destroy_kmem_caches(struct mem_cgroup *memcg)
Vladimir Davydovb8529902014-04-07 15:39:28 -0700579{
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800580 LIST_HEAD(release);
581 bool need_rcu_barrier = false;
582 struct kmem_cache *s, *s2;
Vladimir Davydovb8529902014-04-07 15:39:28 -0700583
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800584 get_online_cpus();
585 get_online_mems();
Vladimir Davydovb8529902014-04-07 15:39:28 -0700586
Vladimir Davydovb8529902014-04-07 15:39:28 -0700587 mutex_lock(&slab_mutex);
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800588 list_for_each_entry_safe(s, s2, &slab_caches, list) {
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800589 if (is_root_cache(s) || s->memcg_params.memcg != memcg)
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800590 continue;
591 /*
592 * The cgroup is about to be freed and therefore has no charges
593 * left. Hence, all its caches must be empty by now.
594 */
595 BUG_ON(do_kmem_cache_shutdown(s, &release, &need_rcu_barrier));
596 }
597 mutex_unlock(&slab_mutex);
Vladimir Davydovb8529902014-04-07 15:39:28 -0700598
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800599 put_online_mems();
600 put_online_cpus();
601
602 do_kmem_cache_release(&release, need_rcu_barrier);
Vladimir Davydovb8529902014-04-07 15:39:28 -0700603}
Vladimir Davydov794b1242014-04-07 15:39:26 -0700604#endif /* CONFIG_MEMCG_KMEM */
605
Christoph Lameter41a21282014-05-06 12:50:08 -0700606void slab_kmem_cache_release(struct kmem_cache *s)
607{
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800608 destroy_memcg_params(s);
Andrzej Hajda3dec16e2015-02-13 14:36:38 -0800609 kfree_const(s->name);
Christoph Lameter41a21282014-05-06 12:50:08 -0700610 kmem_cache_free(kmem_cache, s);
611}
612
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000613void kmem_cache_destroy(struct kmem_cache *s)
614{
Vladimir Davydov426589f2015-02-12 14:59:23 -0800615 struct kmem_cache *c, *c2;
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800616 LIST_HEAD(release);
617 bool need_rcu_barrier = false;
618 bool busy = false;
619
Vladimir Davydov426589f2015-02-12 14:59:23 -0800620 BUG_ON(!is_root_cache(s));
621
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000622 get_online_cpus();
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700623 get_online_mems();
624
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000625 mutex_lock(&slab_mutex);
Vladimir Davydovb8529902014-04-07 15:39:28 -0700626
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000627 s->refcount--;
Vladimir Davydovb8529902014-04-07 15:39:28 -0700628 if (s->refcount)
629 goto out_unlock;
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000630
Vladimir Davydov426589f2015-02-12 14:59:23 -0800631 for_each_memcg_cache_safe(c, c2, s) {
632 if (do_kmem_cache_shutdown(c, &release, &need_rcu_barrier))
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800633 busy = true;
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000634 }
Vladimir Davydovb8529902014-04-07 15:39:28 -0700635
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800636 if (!busy)
637 do_kmem_cache_shutdown(s, &release, &need_rcu_barrier);
Vladimir Davydovb8529902014-04-07 15:39:28 -0700638
639out_unlock:
640 mutex_unlock(&slab_mutex);
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800641
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700642 put_online_mems();
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000643 put_online_cpus();
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800644
645 do_kmem_cache_release(&release, need_rcu_barrier);
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000646}
647EXPORT_SYMBOL(kmem_cache_destroy);
648
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700649/**
650 * kmem_cache_shrink - Shrink a cache.
651 * @cachep: The cache to shrink.
652 *
653 * Releases as many slabs as possible for a cache.
654 * To help debugging, a zero exit status indicates all slabs were released.
655 */
656int kmem_cache_shrink(struct kmem_cache *cachep)
657{
658 int ret;
659
660 get_online_cpus();
661 get_online_mems();
Vladimir Davydovd6e0b7f2015-02-12 14:59:47 -0800662 ret = __kmem_cache_shrink(cachep, false);
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700663 put_online_mems();
664 put_online_cpus();
665 return ret;
666}
667EXPORT_SYMBOL(kmem_cache_shrink);
668
Christoph Lameter97d06602012-07-06 15:25:11 -0500669int slab_is_available(void)
670{
671 return slab_state >= UP;
672}
Glauber Costab7454ad2012-10-19 18:20:25 +0400673
Christoph Lameter45530c42012-11-28 16:23:07 +0000674#ifndef CONFIG_SLOB
675/* Create a cache during boot when no slab services are available yet */
676void __init create_boot_cache(struct kmem_cache *s, const char *name, size_t size,
677 unsigned long flags)
678{
679 int err;
680
681 s->name = name;
682 s->size = s->object_size = size;
Christoph Lameter45906852012-11-28 16:23:16 +0000683 s->align = calculate_alignment(flags, ARCH_KMALLOC_MINALIGN, size);
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800684
685 slab_init_memcg_params(s);
686
Christoph Lameter45530c42012-11-28 16:23:07 +0000687 err = __kmem_cache_create(s, flags);
688
689 if (err)
Christoph Lameter31ba7342013-01-10 19:00:53 +0000690 panic("Creation of kmalloc slab %s size=%zu failed. Reason %d\n",
Christoph Lameter45530c42012-11-28 16:23:07 +0000691 name, size, err);
692
693 s->refcount = -1; /* Exempt from merging for now */
694}
695
696struct kmem_cache *__init create_kmalloc_cache(const char *name, size_t size,
697 unsigned long flags)
698{
699 struct kmem_cache *s = kmem_cache_zalloc(kmem_cache, GFP_NOWAIT);
700
701 if (!s)
702 panic("Out of memory when creating slab %s\n", name);
703
704 create_boot_cache(s, name, size, flags);
705 list_add(&s->list, &slab_caches);
706 s->refcount = 1;
707 return s;
708}
709
Christoph Lameter9425c582013-01-10 19:12:17 +0000710struct kmem_cache *kmalloc_caches[KMALLOC_SHIFT_HIGH + 1];
711EXPORT_SYMBOL(kmalloc_caches);
712
713#ifdef CONFIG_ZONE_DMA
714struct kmem_cache *kmalloc_dma_caches[KMALLOC_SHIFT_HIGH + 1];
715EXPORT_SYMBOL(kmalloc_dma_caches);
716#endif
717
Christoph Lameterf97d5f62013-01-10 19:12:17 +0000718/*
Christoph Lameter2c59dd62013-01-10 19:14:19 +0000719 * Conversion table for small slabs sizes / 8 to the index in the
720 * kmalloc array. This is necessary for slabs < 192 since we have non power
721 * of two cache sizes there. The size of larger slabs can be determined using
722 * fls.
723 */
724static s8 size_index[24] = {
725 3, /* 8 */
726 4, /* 16 */
727 5, /* 24 */
728 5, /* 32 */
729 6, /* 40 */
730 6, /* 48 */
731 6, /* 56 */
732 6, /* 64 */
733 1, /* 72 */
734 1, /* 80 */
735 1, /* 88 */
736 1, /* 96 */
737 7, /* 104 */
738 7, /* 112 */
739 7, /* 120 */
740 7, /* 128 */
741 2, /* 136 */
742 2, /* 144 */
743 2, /* 152 */
744 2, /* 160 */
745 2, /* 168 */
746 2, /* 176 */
747 2, /* 184 */
748 2 /* 192 */
749};
750
751static inline int size_index_elem(size_t bytes)
752{
753 return (bytes - 1) / 8;
754}
755
756/*
757 * Find the kmem_cache structure that serves a given size of
758 * allocation
759 */
760struct kmem_cache *kmalloc_slab(size_t size, gfp_t flags)
761{
762 int index;
763
Joonsoo Kim9de1bc82013-08-02 11:02:42 +0900764 if (unlikely(size > KMALLOC_MAX_SIZE)) {
Sasha Levin907985f2013-06-10 15:18:00 -0400765 WARN_ON_ONCE(!(flags & __GFP_NOWARN));
Christoph Lameter6286ae92013-05-03 15:43:18 +0000766 return NULL;
Sasha Levin907985f2013-06-10 15:18:00 -0400767 }
Christoph Lameter6286ae92013-05-03 15:43:18 +0000768
Christoph Lameter2c59dd62013-01-10 19:14:19 +0000769 if (size <= 192) {
770 if (!size)
771 return ZERO_SIZE_PTR;
772
773 index = size_index[size_index_elem(size)];
774 } else
775 index = fls(size - 1);
776
777#ifdef CONFIG_ZONE_DMA
Joonsoo Kimb1e05412013-02-04 23:46:46 +0900778 if (unlikely((flags & GFP_DMA)))
Christoph Lameter2c59dd62013-01-10 19:14:19 +0000779 return kmalloc_dma_caches[index];
780
781#endif
782 return kmalloc_caches[index];
783}
784
785/*
Gavin Guo4066c332015-06-24 16:55:54 -0700786 * kmalloc_info[] is to make slub_debug=,kmalloc-xx option work at boot time.
787 * kmalloc_index() supports up to 2^26=64MB, so the final entry of the table is
788 * kmalloc-67108864.
789 */
790static struct {
791 const char *name;
792 unsigned long size;
793} const kmalloc_info[] __initconst = {
794 {NULL, 0}, {"kmalloc-96", 96},
795 {"kmalloc-192", 192}, {"kmalloc-8", 8},
796 {"kmalloc-16", 16}, {"kmalloc-32", 32},
797 {"kmalloc-64", 64}, {"kmalloc-128", 128},
798 {"kmalloc-256", 256}, {"kmalloc-512", 512},
799 {"kmalloc-1024", 1024}, {"kmalloc-2048", 2048},
800 {"kmalloc-4096", 4096}, {"kmalloc-8192", 8192},
801 {"kmalloc-16384", 16384}, {"kmalloc-32768", 32768},
802 {"kmalloc-65536", 65536}, {"kmalloc-131072", 131072},
803 {"kmalloc-262144", 262144}, {"kmalloc-524288", 524288},
804 {"kmalloc-1048576", 1048576}, {"kmalloc-2097152", 2097152},
805 {"kmalloc-4194304", 4194304}, {"kmalloc-8388608", 8388608},
806 {"kmalloc-16777216", 16777216}, {"kmalloc-33554432", 33554432},
807 {"kmalloc-67108864", 67108864}
808};
809
810/*
Daniel Sanders34cc6992015-06-24 16:55:57 -0700811 * Patch up the size_index table if we have strange large alignment
812 * requirements for the kmalloc array. This is only the case for
813 * MIPS it seems. The standard arches will not generate any code here.
814 *
815 * Largest permitted alignment is 256 bytes due to the way we
816 * handle the index determination for the smaller caches.
817 *
818 * Make sure that nothing crazy happens if someone starts tinkering
819 * around with ARCH_KMALLOC_MINALIGN
Christoph Lameterf97d5f62013-01-10 19:12:17 +0000820 */
Daniel Sanders34cc6992015-06-24 16:55:57 -0700821void __init setup_kmalloc_cache_index_table(void)
Christoph Lameterf97d5f62013-01-10 19:12:17 +0000822{
823 int i;
824
Christoph Lameter2c59dd62013-01-10 19:14:19 +0000825 BUILD_BUG_ON(KMALLOC_MIN_SIZE > 256 ||
826 (KMALLOC_MIN_SIZE & (KMALLOC_MIN_SIZE - 1)));
827
828 for (i = 8; i < KMALLOC_MIN_SIZE; i += 8) {
829 int elem = size_index_elem(i);
830
831 if (elem >= ARRAY_SIZE(size_index))
832 break;
833 size_index[elem] = KMALLOC_SHIFT_LOW;
834 }
835
836 if (KMALLOC_MIN_SIZE >= 64) {
837 /*
838 * The 96 byte size cache is not used if the alignment
839 * is 64 byte.
840 */
841 for (i = 64 + 8; i <= 96; i += 8)
842 size_index[size_index_elem(i)] = 7;
843
844 }
845
846 if (KMALLOC_MIN_SIZE >= 128) {
847 /*
848 * The 192 byte sized cache is not used if the alignment
849 * is 128 byte. Redirect kmalloc to use the 256 byte cache
850 * instead.
851 */
852 for (i = 128 + 8; i <= 192; i += 8)
853 size_index[size_index_elem(i)] = 8;
854 }
Daniel Sanders34cc6992015-06-24 16:55:57 -0700855}
856
Christoph Lameterae6f2462015-06-30 09:01:11 -0500857static void __init new_kmalloc_cache(int idx, unsigned long flags)
Christoph Lametera9730fc2015-06-29 09:28:08 -0500858{
859 kmalloc_caches[idx] = create_kmalloc_cache(kmalloc_info[idx].name,
860 kmalloc_info[idx].size, flags);
861}
862
Daniel Sanders34cc6992015-06-24 16:55:57 -0700863/*
864 * Create the kmalloc array. Some of the regular kmalloc arrays
865 * may already have been created because they were needed to
866 * enable allocations for slab creation.
867 */
868void __init create_kmalloc_caches(unsigned long flags)
869{
870 int i;
871
Christoph Lametera9730fc2015-06-29 09:28:08 -0500872 for (i = KMALLOC_SHIFT_LOW; i <= KMALLOC_SHIFT_HIGH; i++) {
873 if (!kmalloc_caches[i])
874 new_kmalloc_cache(i, flags);
Chris Mason956e46e2013-05-08 15:56:28 -0400875
876 /*
Christoph Lametera9730fc2015-06-29 09:28:08 -0500877 * Caches that are not of the two-to-the-power-of size.
878 * These have to be created immediately after the
879 * earlier power of two caches
Chris Mason956e46e2013-05-08 15:56:28 -0400880 */
Christoph Lametera9730fc2015-06-29 09:28:08 -0500881 if (KMALLOC_MIN_SIZE <= 32 && !kmalloc_caches[1] && i == 6)
882 new_kmalloc_cache(1, flags);
883 if (KMALLOC_MIN_SIZE <= 64 && !kmalloc_caches[2] && i == 7)
884 new_kmalloc_cache(2, flags);
Christoph Lameter8a965b32013-05-03 18:04:18 +0000885 }
886
Christoph Lameterf97d5f62013-01-10 19:12:17 +0000887 /* Kmalloc array is now usable */
888 slab_state = UP;
889
Christoph Lameterf97d5f62013-01-10 19:12:17 +0000890#ifdef CONFIG_ZONE_DMA
891 for (i = 0; i <= KMALLOC_SHIFT_HIGH; i++) {
892 struct kmem_cache *s = kmalloc_caches[i];
893
894 if (s) {
895 int size = kmalloc_size(i);
896 char *n = kasprintf(GFP_NOWAIT,
897 "dma-kmalloc-%d", size);
898
899 BUG_ON(!n);
900 kmalloc_dma_caches[i] = create_kmalloc_cache(n,
901 size, SLAB_CACHE_DMA | flags);
902 }
903 }
904#endif
905}
Christoph Lameter45530c42012-11-28 16:23:07 +0000906#endif /* !CONFIG_SLOB */
907
Vladimir Davydovcea371f2014-06-04 16:07:04 -0700908/*
909 * To avoid unnecessary overhead, we pass through large allocation requests
910 * directly to the page allocator. We use __GFP_COMP, because we will need to
911 * know the allocation order to free the pages properly in kfree.
912 */
Vladimir Davydov52383432014-06-04 16:06:39 -0700913void *kmalloc_order(size_t size, gfp_t flags, unsigned int order)
914{
915 void *ret;
916 struct page *page;
917
918 flags |= __GFP_COMP;
919 page = alloc_kmem_pages(flags, order);
920 ret = page ? page_address(page) : NULL;
921 kmemleak_alloc(ret, size, 1, flags);
Andrey Ryabinin0316bec2015-02-13 14:39:42 -0800922 kasan_kmalloc_large(ret, size);
Vladimir Davydov52383432014-06-04 16:06:39 -0700923 return ret;
924}
925EXPORT_SYMBOL(kmalloc_order);
926
Christoph Lameterf1b6eb62013-09-04 16:35:34 +0000927#ifdef CONFIG_TRACING
928void *kmalloc_order_trace(size_t size, gfp_t flags, unsigned int order)
929{
930 void *ret = kmalloc_order(size, flags, order);
931 trace_kmalloc(_RET_IP_, ret, size, PAGE_SIZE << order, flags);
932 return ret;
933}
934EXPORT_SYMBOL(kmalloc_order_trace);
935#endif
Christoph Lameter45530c42012-11-28 16:23:07 +0000936
Glauber Costab7454ad2012-10-19 18:20:25 +0400937#ifdef CONFIG_SLABINFO
Wanpeng Lie9b4db22013-07-04 08:33:24 +0800938
939#ifdef CONFIG_SLAB
940#define SLABINFO_RIGHTS (S_IWUSR | S_IRUSR)
941#else
942#define SLABINFO_RIGHTS S_IRUSR
943#endif
944
Vladimir Davydovb0475012014-12-10 15:44:19 -0800945static void print_slabinfo_header(struct seq_file *m)
Glauber Costabcee6e22012-10-19 18:20:26 +0400946{
947 /*
948 * Output format version, so at least we can change it
949 * without _too_ many complaints.
950 */
951#ifdef CONFIG_DEBUG_SLAB
952 seq_puts(m, "slabinfo - version: 2.1 (statistics)\n");
953#else
954 seq_puts(m, "slabinfo - version: 2.1\n");
955#endif
956 seq_puts(m, "# name <active_objs> <num_objs> <objsize> "
957 "<objperslab> <pagesperslab>");
958 seq_puts(m, " : tunables <limit> <batchcount> <sharedfactor>");
959 seq_puts(m, " : slabdata <active_slabs> <num_slabs> <sharedavail>");
960#ifdef CONFIG_DEBUG_SLAB
961 seq_puts(m, " : globalstat <listallocs> <maxobjs> <grown> <reaped> "
962 "<error> <maxfreeable> <nodeallocs> <remotefrees> <alienoverflow>");
963 seq_puts(m, " : cpustat <allochit> <allocmiss> <freehit> <freemiss>");
964#endif
965 seq_putc(m, '\n');
966}
967
Vladimir Davydov1df3b262014-12-10 15:42:16 -0800968void *slab_start(struct seq_file *m, loff_t *pos)
Glauber Costab7454ad2012-10-19 18:20:25 +0400969{
Glauber Costab7454ad2012-10-19 18:20:25 +0400970 mutex_lock(&slab_mutex);
Glauber Costab7454ad2012-10-19 18:20:25 +0400971 return seq_list_start(&slab_caches, *pos);
972}
973
Wanpeng Li276a2432013-07-08 08:08:28 +0800974void *slab_next(struct seq_file *m, void *p, loff_t *pos)
Glauber Costab7454ad2012-10-19 18:20:25 +0400975{
976 return seq_list_next(p, &slab_caches, pos);
977}
978
Wanpeng Li276a2432013-07-08 08:08:28 +0800979void slab_stop(struct seq_file *m, void *p)
Glauber Costab7454ad2012-10-19 18:20:25 +0400980{
981 mutex_unlock(&slab_mutex);
982}
983
Glauber Costa749c5412012-12-18 14:23:01 -0800984static void
985memcg_accumulate_slabinfo(struct kmem_cache *s, struct slabinfo *info)
Glauber Costab7454ad2012-10-19 18:20:25 +0400986{
Glauber Costa749c5412012-12-18 14:23:01 -0800987 struct kmem_cache *c;
988 struct slabinfo sinfo;
Glauber Costa749c5412012-12-18 14:23:01 -0800989
990 if (!is_root_cache(s))
991 return;
992
Vladimir Davydov426589f2015-02-12 14:59:23 -0800993 for_each_memcg_cache(c, s) {
Glauber Costa749c5412012-12-18 14:23:01 -0800994 memset(&sinfo, 0, sizeof(sinfo));
995 get_slabinfo(c, &sinfo);
996
997 info->active_slabs += sinfo.active_slabs;
998 info->num_slabs += sinfo.num_slabs;
999 info->shared_avail += sinfo.shared_avail;
1000 info->active_objs += sinfo.active_objs;
1001 info->num_objs += sinfo.num_objs;
1002 }
1003}
1004
Vladimir Davydovb0475012014-12-10 15:44:19 -08001005static void cache_show(struct kmem_cache *s, struct seq_file *m)
Glauber Costa749c5412012-12-18 14:23:01 -08001006{
Glauber Costa0d7561c2012-10-19 18:20:27 +04001007 struct slabinfo sinfo;
1008
1009 memset(&sinfo, 0, sizeof(sinfo));
1010 get_slabinfo(s, &sinfo);
1011
Glauber Costa749c5412012-12-18 14:23:01 -08001012 memcg_accumulate_slabinfo(s, &sinfo);
1013
Glauber Costa0d7561c2012-10-19 18:20:27 +04001014 seq_printf(m, "%-17s %6lu %6lu %6u %4u %4d",
Glauber Costa749c5412012-12-18 14:23:01 -08001015 cache_name(s), sinfo.active_objs, sinfo.num_objs, s->size,
Glauber Costa0d7561c2012-10-19 18:20:27 +04001016 sinfo.objects_per_slab, (1 << sinfo.cache_order));
1017
1018 seq_printf(m, " : tunables %4u %4u %4u",
1019 sinfo.limit, sinfo.batchcount, sinfo.shared);
1020 seq_printf(m, " : slabdata %6lu %6lu %6lu",
1021 sinfo.active_slabs, sinfo.num_slabs, sinfo.shared_avail);
1022 slabinfo_show_stats(m, s);
1023 seq_putc(m, '\n');
Glauber Costab7454ad2012-10-19 18:20:25 +04001024}
1025
Vladimir Davydov1df3b262014-12-10 15:42:16 -08001026static int slab_show(struct seq_file *m, void *p)
Glauber Costa749c5412012-12-18 14:23:01 -08001027{
1028 struct kmem_cache *s = list_entry(p, struct kmem_cache, list);
1029
Vladimir Davydov1df3b262014-12-10 15:42:16 -08001030 if (p == slab_caches.next)
1031 print_slabinfo_header(m);
Vladimir Davydovb0475012014-12-10 15:44:19 -08001032 if (is_root_cache(s))
1033 cache_show(s, m);
1034 return 0;
Glauber Costa749c5412012-12-18 14:23:01 -08001035}
1036
Vladimir Davydovb0475012014-12-10 15:44:19 -08001037#ifdef CONFIG_MEMCG_KMEM
1038int memcg_slab_show(struct seq_file *m, void *p)
1039{
1040 struct kmem_cache *s = list_entry(p, struct kmem_cache, list);
1041 struct mem_cgroup *memcg = mem_cgroup_from_css(seq_css(m));
1042
1043 if (p == slab_caches.next)
1044 print_slabinfo_header(m);
Vladimir Davydovf7ce3192015-02-12 14:59:20 -08001045 if (!is_root_cache(s) && s->memcg_params.memcg == memcg)
Vladimir Davydovb0475012014-12-10 15:44:19 -08001046 cache_show(s, m);
1047 return 0;
1048}
1049#endif
1050
Glauber Costab7454ad2012-10-19 18:20:25 +04001051/*
1052 * slabinfo_op - iterator that generates /proc/slabinfo
1053 *
1054 * Output layout:
1055 * cache-name
1056 * num-active-objs
1057 * total-objs
1058 * object size
1059 * num-active-slabs
1060 * total-slabs
1061 * num-pages-per-slab
1062 * + further values on SMP and with statistics enabled
1063 */
1064static const struct seq_operations slabinfo_op = {
Vladimir Davydov1df3b262014-12-10 15:42:16 -08001065 .start = slab_start,
Wanpeng Li276a2432013-07-08 08:08:28 +08001066 .next = slab_next,
1067 .stop = slab_stop,
Vladimir Davydov1df3b262014-12-10 15:42:16 -08001068 .show = slab_show,
Glauber Costab7454ad2012-10-19 18:20:25 +04001069};
1070
1071static int slabinfo_open(struct inode *inode, struct file *file)
1072{
1073 return seq_open(file, &slabinfo_op);
1074}
1075
1076static const struct file_operations proc_slabinfo_operations = {
1077 .open = slabinfo_open,
1078 .read = seq_read,
1079 .write = slabinfo_write,
1080 .llseek = seq_lseek,
1081 .release = seq_release,
1082};
1083
1084static int __init slab_proc_init(void)
1085{
Wanpeng Lie9b4db22013-07-04 08:33:24 +08001086 proc_create("slabinfo", SLABINFO_RIGHTS, NULL,
1087 &proc_slabinfo_operations);
Glauber Costab7454ad2012-10-19 18:20:25 +04001088 return 0;
1089}
1090module_init(slab_proc_init);
1091#endif /* CONFIG_SLABINFO */
Andrey Ryabinin928cec92014-08-06 16:04:44 -07001092
1093static __always_inline void *__do_krealloc(const void *p, size_t new_size,
1094 gfp_t flags)
1095{
1096 void *ret;
1097 size_t ks = 0;
1098
1099 if (p)
1100 ks = ksize(p);
1101
Andrey Ryabinin0316bec2015-02-13 14:39:42 -08001102 if (ks >= new_size) {
1103 kasan_krealloc((void *)p, new_size);
Andrey Ryabinin928cec92014-08-06 16:04:44 -07001104 return (void *)p;
Andrey Ryabinin0316bec2015-02-13 14:39:42 -08001105 }
Andrey Ryabinin928cec92014-08-06 16:04:44 -07001106
1107 ret = kmalloc_track_caller(new_size, flags);
1108 if (ret && p)
1109 memcpy(ret, p, ks);
1110
1111 return ret;
1112}
1113
1114/**
1115 * __krealloc - like krealloc() but don't free @p.
1116 * @p: object to reallocate memory for.
1117 * @new_size: how many bytes of memory are required.
1118 * @flags: the type of memory to allocate.
1119 *
1120 * This function is like krealloc() except it never frees the originally
1121 * allocated buffer. Use this if you don't want to free the buffer immediately
1122 * like, for example, with RCU.
1123 */
1124void *__krealloc(const void *p, size_t new_size, gfp_t flags)
1125{
1126 if (unlikely(!new_size))
1127 return ZERO_SIZE_PTR;
1128
1129 return __do_krealloc(p, new_size, flags);
1130
1131}
1132EXPORT_SYMBOL(__krealloc);
1133
1134/**
1135 * krealloc - reallocate memory. The contents will remain unchanged.
1136 * @p: object to reallocate memory for.
1137 * @new_size: how many bytes of memory are required.
1138 * @flags: the type of memory to allocate.
1139 *
1140 * The contents of the object pointed to are preserved up to the
1141 * lesser of the new and old sizes. If @p is %NULL, krealloc()
1142 * behaves exactly like kmalloc(). If @new_size is 0 and @p is not a
1143 * %NULL pointer, the object pointed to is freed.
1144 */
1145void *krealloc(const void *p, size_t new_size, gfp_t flags)
1146{
1147 void *ret;
1148
1149 if (unlikely(!new_size)) {
1150 kfree(p);
1151 return ZERO_SIZE_PTR;
1152 }
1153
1154 ret = __do_krealloc(p, new_size, flags);
1155 if (ret && p != ret)
1156 kfree(p);
1157
1158 return ret;
1159}
1160EXPORT_SYMBOL(krealloc);
1161
1162/**
1163 * kzfree - like kfree but zero memory
1164 * @p: object to free memory of
1165 *
1166 * The memory of the object @p points to is zeroed before freed.
1167 * If @p is %NULL, kzfree() does nothing.
1168 *
1169 * Note: this function zeroes the whole allocated buffer which can be a good
1170 * deal bigger than the requested buffer size passed to kmalloc(). So be
1171 * careful when using this function in performance sensitive code.
1172 */
1173void kzfree(const void *p)
1174{
1175 size_t ks;
1176 void *mem = (void *)p;
1177
1178 if (unlikely(ZERO_OR_NULL_PTR(mem)))
1179 return;
1180 ks = ksize(mem);
1181 memset(mem, 0, ks);
1182 kfree(mem);
1183}
1184EXPORT_SYMBOL(kzfree);
1185
1186/* Tracepoints definitions. */
1187EXPORT_TRACEPOINT_SYMBOL(kmalloc);
1188EXPORT_TRACEPOINT_SYMBOL(kmem_cache_alloc);
1189EXPORT_TRACEPOINT_SYMBOL(kmalloc_node);
1190EXPORT_TRACEPOINT_SYMBOL(kmem_cache_alloc_node);
1191EXPORT_TRACEPOINT_SYMBOL(kfree);
1192EXPORT_TRACEPOINT_SYMBOL(kmem_cache_free);