blob: 0873bcc61c7a1eab5f69d0db774388b43ea1bbee [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
40#define SLAB_MERGE_SAME (SLAB_DEBUG_FREE | SLAB_RECLAIM_ACCOUNT | \
41 SLAB_CACHE_DMA | SLAB_NOTRACK)
42
43/*
44 * Merge control. If this is set then no merging of slab caches will occur.
45 * (Could be removed. This was introduced to pacify the merge skeptics.)
46 */
47static int slab_nomerge;
48
49static int __init setup_slab_nomerge(char *str)
50{
51 slab_nomerge = 1;
52 return 1;
53}
54
55#ifdef CONFIG_SLUB
56__setup_param("slub_nomerge", slub_nomerge, setup_slab_nomerge, 0);
57#endif
58
59__setup("slab_nomerge", setup_slab_nomerge);
60
61/*
Joonsoo Kim07f361b2014-10-09 15:26:00 -070062 * Determine the size of a slab object
63 */
64unsigned int kmem_cache_size(struct kmem_cache *s)
65{
66 return s->object_size;
67}
68EXPORT_SYMBOL(kmem_cache_size);
69
Shuah Khan77be4b12012-08-16 00:09:46 -070070#ifdef CONFIG_DEBUG_VM
Vladimir Davydov794b1242014-04-07 15:39:26 -070071static int kmem_cache_sanity_check(const char *name, size_t size)
Shuah Khan77be4b12012-08-16 00:09:46 -070072{
73 struct kmem_cache *s = NULL;
74
75 if (!name || in_interrupt() || size < sizeof(void *) ||
76 size > KMALLOC_MAX_SIZE) {
77 pr_err("kmem_cache_create(%s) integrity check failed\n", name);
78 return -EINVAL;
79 }
80
81 list_for_each_entry(s, &slab_caches, list) {
82 char tmp;
83 int res;
84
85 /*
86 * This happens when the module gets unloaded and doesn't
87 * destroy its slab cache and no-one else reuses the vmalloc
88 * area of the module. Print a warning.
89 */
90 res = probe_kernel_address(s->name, tmp);
91 if (res) {
92 pr_err("Slab cache with size %d has lost its name\n",
93 s->object_size);
94 continue;
95 }
Shuah Khan77be4b12012-08-16 00:09:46 -070096 }
97
98 WARN_ON(strchr(name, ' ')); /* It confuses parsers */
99 return 0;
100}
101#else
Vladimir Davydov794b1242014-04-07 15:39:26 -0700102static inline int kmem_cache_sanity_check(const char *name, size_t size)
Shuah Khan77be4b12012-08-16 00:09:46 -0700103{
104 return 0;
105}
106#endif
107
Glauber Costa55007d82012-12-18 14:22:38 -0800108#ifdef CONFIG_MEMCG_KMEM
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800109void slab_init_memcg_params(struct kmem_cache *s)
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700110{
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800111 s->memcg_params.is_root_cache = true;
Vladimir Davydov426589f2015-02-12 14:59:23 -0800112 INIT_LIST_HEAD(&s->memcg_params.list);
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800113 RCU_INIT_POINTER(s->memcg_params.memcg_caches, NULL);
114}
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700115
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800116static int init_memcg_params(struct kmem_cache *s,
117 struct mem_cgroup *memcg, struct kmem_cache *root_cache)
118{
119 struct memcg_cache_array *arr;
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700120
121 if (memcg) {
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800122 s->memcg_params.is_root_cache = false;
123 s->memcg_params.memcg = memcg;
124 s->memcg_params.root_cache = root_cache;
125 return 0;
126 }
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700127
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800128 slab_init_memcg_params(s);
129
130 if (!memcg_nr_cache_ids)
131 return 0;
132
133 arr = kzalloc(sizeof(struct memcg_cache_array) +
134 memcg_nr_cache_ids * sizeof(void *),
135 GFP_KERNEL);
136 if (!arr)
137 return -ENOMEM;
138
139 RCU_INIT_POINTER(s->memcg_params.memcg_caches, arr);
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700140 return 0;
141}
142
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800143static void destroy_memcg_params(struct kmem_cache *s)
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700144{
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800145 if (is_root_cache(s))
146 kfree(rcu_access_pointer(s->memcg_params.memcg_caches));
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700147}
148
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800149static int update_memcg_params(struct kmem_cache *s, int new_array_size)
Vladimir Davydov6f817f42014-10-09 15:28:47 -0700150{
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800151 struct memcg_cache_array *old, *new;
Vladimir Davydov6f817f42014-10-09 15:28:47 -0700152
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800153 if (!is_root_cache(s))
154 return 0;
Vladimir Davydov6f817f42014-10-09 15:28:47 -0700155
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800156 new = kzalloc(sizeof(struct memcg_cache_array) +
157 new_array_size * sizeof(void *), GFP_KERNEL);
158 if (!new)
Vladimir Davydov6f817f42014-10-09 15:28:47 -0700159 return -ENOMEM;
160
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800161 old = rcu_dereference_protected(s->memcg_params.memcg_caches,
162 lockdep_is_held(&slab_mutex));
163 if (old)
164 memcpy(new->entries, old->entries,
165 memcg_nr_cache_ids * sizeof(void *));
Vladimir Davydov6f817f42014-10-09 15:28:47 -0700166
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800167 rcu_assign_pointer(s->memcg_params.memcg_caches, new);
168 if (old)
169 kfree_rcu(old, rcu);
Vladimir Davydov6f817f42014-10-09 15:28:47 -0700170 return 0;
171}
172
Glauber Costa55007d82012-12-18 14:22:38 -0800173int memcg_update_all_caches(int num_memcgs)
174{
175 struct kmem_cache *s;
176 int ret = 0;
Glauber Costa55007d82012-12-18 14:22:38 -0800177
Vladimir Davydov05257a12015-02-12 14:59:01 -0800178 mutex_lock(&slab_mutex);
Glauber Costa55007d82012-12-18 14:22:38 -0800179 list_for_each_entry(s, &slab_caches, list) {
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800180 ret = update_memcg_params(s, num_memcgs);
Glauber Costa55007d82012-12-18 14:22:38 -0800181 /*
Glauber Costa55007d82012-12-18 14:22:38 -0800182 * Instead of freeing the memory, we'll just leave the caches
183 * up to this point in an updated state.
184 */
185 if (ret)
Vladimir Davydov05257a12015-02-12 14:59:01 -0800186 break;
Glauber Costa55007d82012-12-18 14:22:38 -0800187 }
Glauber Costa55007d82012-12-18 14:22:38 -0800188 mutex_unlock(&slab_mutex);
189 return ret;
190}
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700191#else
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800192static inline int init_memcg_params(struct kmem_cache *s,
193 struct mem_cgroup *memcg, struct kmem_cache *root_cache)
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700194{
195 return 0;
196}
197
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800198static inline void destroy_memcg_params(struct kmem_cache *s)
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700199{
200}
201#endif /* CONFIG_MEMCG_KMEM */
Glauber Costa55007d82012-12-18 14:22:38 -0800202
Christoph Lameter039363f2012-07-06 15:25:10 -0500203/*
Joonsoo Kim423c9292014-10-09 15:26:22 -0700204 * Find a mergeable slab cache
205 */
206int slab_unmergeable(struct kmem_cache *s)
207{
208 if (slab_nomerge || (s->flags & SLAB_NEVER_MERGE))
209 return 1;
210
211 if (!is_root_cache(s))
212 return 1;
213
214 if (s->ctor)
215 return 1;
216
217 /*
218 * We may have set a slab to be unmergeable during bootstrap.
219 */
220 if (s->refcount < 0)
221 return 1;
222
223 return 0;
224}
225
226struct kmem_cache *find_mergeable(size_t size, size_t align,
227 unsigned long flags, const char *name, void (*ctor)(void *))
228{
229 struct kmem_cache *s;
230
231 if (slab_nomerge || (flags & SLAB_NEVER_MERGE))
232 return NULL;
233
234 if (ctor)
235 return NULL;
236
237 size = ALIGN(size, sizeof(void *));
238 align = calculate_alignment(flags, align, size);
239 size = ALIGN(size, align);
240 flags = kmem_cache_flags(size, flags, name, NULL);
241
Joonsoo Kim54362052014-12-10 15:42:18 -0800242 list_for_each_entry_reverse(s, &slab_caches, list) {
Joonsoo Kim423c9292014-10-09 15:26:22 -0700243 if (slab_unmergeable(s))
244 continue;
245
246 if (size > s->size)
247 continue;
248
249 if ((flags & SLAB_MERGE_SAME) != (s->flags & SLAB_MERGE_SAME))
250 continue;
251 /*
252 * Check if alignment is compatible.
253 * Courtesy of Adrian Drzewiecki
254 */
255 if ((s->size & ~(align - 1)) != s->size)
256 continue;
257
258 if (s->size - size >= sizeof(void *))
259 continue;
260
Joonsoo Kim95069ac82014-11-13 15:19:25 -0800261 if (IS_ENABLED(CONFIG_SLAB) && align &&
262 (align > s->align || s->align % align))
263 continue;
264
Joonsoo Kim423c9292014-10-09 15:26:22 -0700265 return s;
266 }
267 return NULL;
268}
269
270/*
Christoph Lameter45906852012-11-28 16:23:16 +0000271 * Figure out what the alignment of the objects will be given a set of
272 * flags, a user specified alignment and the size of the objects.
273 */
274unsigned long calculate_alignment(unsigned long flags,
275 unsigned long align, unsigned long size)
276{
277 /*
278 * If the user wants hardware cache aligned objects then follow that
279 * suggestion if the object is sufficiently large.
280 *
281 * The hardware cache alignment cannot override the specified
282 * alignment though. If that is greater then use it.
283 */
284 if (flags & SLAB_HWCACHE_ALIGN) {
285 unsigned long ralign = cache_line_size();
286 while (size <= ralign / 2)
287 ralign /= 2;
288 align = max(align, ralign);
289 }
290
291 if (align < ARCH_SLAB_MINALIGN)
292 align = ARCH_SLAB_MINALIGN;
293
294 return ALIGN(align, sizeof(void *));
295}
296
Vladimir Davydov794b1242014-04-07 15:39:26 -0700297static struct kmem_cache *
298do_kmem_cache_create(char *name, size_t object_size, size_t size, size_t align,
299 unsigned long flags, void (*ctor)(void *),
300 struct mem_cgroup *memcg, struct kmem_cache *root_cache)
301{
302 struct kmem_cache *s;
303 int err;
304
305 err = -ENOMEM;
306 s = kmem_cache_zalloc(kmem_cache, GFP_KERNEL);
307 if (!s)
308 goto out;
309
310 s->name = name;
311 s->object_size = object_size;
312 s->size = size;
313 s->align = align;
314 s->ctor = ctor;
315
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800316 err = init_memcg_params(s, memcg, root_cache);
Vladimir Davydov794b1242014-04-07 15:39:26 -0700317 if (err)
318 goto out_free_cache;
319
320 err = __kmem_cache_create(s, flags);
321 if (err)
322 goto out_free_cache;
323
324 s->refcount = 1;
325 list_add(&s->list, &slab_caches);
Vladimir Davydov794b1242014-04-07 15:39:26 -0700326out:
327 if (err)
328 return ERR_PTR(err);
329 return s;
330
331out_free_cache:
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800332 destroy_memcg_params(s);
Vaishali Thakkar7c4da062015-02-10 14:09:40 -0800333 kmem_cache_free(kmem_cache, s);
Vladimir Davydov794b1242014-04-07 15:39:26 -0700334 goto out;
335}
Christoph Lameter45906852012-11-28 16:23:16 +0000336
337/*
Christoph Lameter039363f2012-07-06 15:25:10 -0500338 * kmem_cache_create - Create a cache.
339 * @name: A string which is used in /proc/slabinfo to identify this cache.
340 * @size: The size of objects to be created in this cache.
341 * @align: The required alignment for the objects.
342 * @flags: SLAB flags
343 * @ctor: A constructor for the objects.
344 *
345 * Returns a ptr to the cache on success, NULL on failure.
346 * Cannot be called within a interrupt, but can be interrupted.
347 * The @ctor is run when new pages are allocated by the cache.
348 *
349 * The flags are
350 *
351 * %SLAB_POISON - Poison the slab with a known test pattern (a5a5a5a5)
352 * to catch references to uninitialised memory.
353 *
354 * %SLAB_RED_ZONE - Insert `Red' zones around the allocated memory to check
355 * for buffer overruns.
356 *
357 * %SLAB_HWCACHE_ALIGN - Align the objects in this cache to a hardware
358 * cacheline. This can be beneficial if you're counting cycles as closely
359 * as davem.
360 */
Glauber Costa2633d7a2012-12-18 14:22:34 -0800361struct kmem_cache *
Vladimir Davydov794b1242014-04-07 15:39:26 -0700362kmem_cache_create(const char *name, size_t size, size_t align,
363 unsigned long flags, void (*ctor)(void *))
Christoph Lameter039363f2012-07-06 15:25:10 -0500364{
Vladimir Davydov794b1242014-04-07 15:39:26 -0700365 struct kmem_cache *s;
366 char *cache_name;
Vladimir Davydov3965fc32014-01-23 15:52:55 -0800367 int err;
Christoph Lameter039363f2012-07-06 15:25:10 -0500368
Pekka Enbergb9205362012-08-16 10:12:18 +0300369 get_online_cpus();
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700370 get_online_mems();
Vladimir Davydov05257a12015-02-12 14:59:01 -0800371 memcg_get_cache_ids();
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700372
Pekka Enbergb9205362012-08-16 10:12:18 +0300373 mutex_lock(&slab_mutex);
Christoph Lameter686d5502012-09-05 00:20:33 +0000374
Vladimir Davydov794b1242014-04-07 15:39:26 -0700375 err = kmem_cache_sanity_check(name, size);
Andrew Morton3aa24f52014-10-09 15:25:58 -0700376 if (err) {
377 s = NULL; /* suppress uninit var warning */
Vladimir Davydov3965fc32014-01-23 15:52:55 -0800378 goto out_unlock;
Andrew Morton3aa24f52014-10-09 15:25:58 -0700379 }
Christoph Lameter686d5502012-09-05 00:20:33 +0000380
Glauber Costad8843922012-10-17 15:36:51 +0400381 /*
382 * Some allocators will constraint the set of valid flags to a subset
383 * of all flags. We expect them to define CACHE_CREATE_MASK in this
384 * case, and we'll just provide them with a sanitized version of the
385 * passed flags.
386 */
387 flags &= CACHE_CREATE_MASK;
Christoph Lameter686d5502012-09-05 00:20:33 +0000388
Vladimir Davydov794b1242014-04-07 15:39:26 -0700389 s = __kmem_cache_alias(name, size, align, flags, ctor);
390 if (s)
Vladimir Davydov3965fc32014-01-23 15:52:55 -0800391 goto out_unlock;
Glauber Costa2633d7a2012-12-18 14:22:34 -0800392
Vladimir Davydov794b1242014-04-07 15:39:26 -0700393 cache_name = kstrdup(name, GFP_KERNEL);
394 if (!cache_name) {
395 err = -ENOMEM;
396 goto out_unlock;
397 }
Glauber Costa2633d7a2012-12-18 14:22:34 -0800398
Vladimir Davydov794b1242014-04-07 15:39:26 -0700399 s = do_kmem_cache_create(cache_name, size, size,
400 calculate_alignment(flags, align, size),
401 flags, ctor, NULL, NULL);
402 if (IS_ERR(s)) {
403 err = PTR_ERR(s);
404 kfree(cache_name);
405 }
Vladimir Davydov3965fc32014-01-23 15:52:55 -0800406
407out_unlock:
Christoph Lameter20cea962012-07-06 15:25:13 -0500408 mutex_unlock(&slab_mutex);
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700409
Vladimir Davydov05257a12015-02-12 14:59:01 -0800410 memcg_put_cache_ids();
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700411 put_online_mems();
Christoph Lameter20cea962012-07-06 15:25:13 -0500412 put_online_cpus();
413
Dave Jonesba3253c72014-01-29 14:05:48 -0800414 if (err) {
Christoph Lameter686d5502012-09-05 00:20:33 +0000415 if (flags & SLAB_PANIC)
416 panic("kmem_cache_create: Failed to create slab '%s'. Error %d\n",
417 name, err);
418 else {
419 printk(KERN_WARNING "kmem_cache_create(%s) failed with error %d",
420 name, err);
421 dump_stack();
422 }
Christoph Lameter686d5502012-09-05 00:20:33 +0000423 return NULL;
424 }
Christoph Lameter039363f2012-07-06 15:25:10 -0500425 return s;
Glauber Costa2633d7a2012-12-18 14:22:34 -0800426}
Christoph Lameter039363f2012-07-06 15:25:10 -0500427EXPORT_SYMBOL(kmem_cache_create);
Christoph Lameter97d06602012-07-06 15:25:11 -0500428
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800429static int do_kmem_cache_shutdown(struct kmem_cache *s,
430 struct list_head *release, bool *need_rcu_barrier)
431{
432 if (__kmem_cache_shutdown(s) != 0) {
433 printk(KERN_ERR "kmem_cache_destroy %s: "
434 "Slab cache still has objects\n", s->name);
435 dump_stack();
436 return -EBUSY;
437 }
438
439 if (s->flags & SLAB_DESTROY_BY_RCU)
440 *need_rcu_barrier = true;
441
442#ifdef CONFIG_MEMCG_KMEM
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -0800443 if (!is_root_cache(s))
Vladimir Davydov426589f2015-02-12 14:59:23 -0800444 list_del(&s->memcg_params.list);
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800445#endif
446 list_move(&s->list, release);
447 return 0;
448}
449
450static void do_kmem_cache_release(struct list_head *release,
451 bool need_rcu_barrier)
452{
453 struct kmem_cache *s, *s2;
454
455 if (need_rcu_barrier)
456 rcu_barrier();
457
458 list_for_each_entry_safe(s, s2, release, list) {
459#ifdef SLAB_SUPPORTS_SYSFS
460 sysfs_slab_remove(s);
461#else
462 slab_kmem_cache_release(s);
463#endif
464 }
465}
466
Vladimir Davydov794b1242014-04-07 15:39:26 -0700467#ifdef CONFIG_MEMCG_KMEM
468/*
Vladimir Davydov776ed0f2014-06-04 16:10:02 -0700469 * memcg_create_kmem_cache - Create a cache for a memory cgroup.
Vladimir Davydov794b1242014-04-07 15:39:26 -0700470 * @memcg: The memory cgroup the new cache is for.
471 * @root_cache: The parent of the new cache.
472 *
473 * This function attempts to create a kmem cache that will serve allocation
474 * requests going from @memcg to @root_cache. The new cache inherits properties
475 * from its parent.
476 */
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800477void memcg_create_kmem_cache(struct mem_cgroup *memcg,
478 struct kmem_cache *root_cache)
Vladimir Davydov794b1242014-04-07 15:39:26 -0700479{
Vladimir Davydov3e0350a2015-02-10 14:11:44 -0800480 static char memcg_name_buf[NAME_MAX + 1]; /* protected by slab_mutex */
Vladimir Davydovf1008362015-02-12 14:59:29 -0800481 struct cgroup_subsys_state *css = mem_cgroup_css(memcg);
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800482 struct memcg_cache_array *arr;
Vladimir Davydovbd673142014-06-04 16:07:40 -0700483 struct kmem_cache *s = NULL;
Vladimir Davydov794b1242014-04-07 15:39:26 -0700484 char *cache_name;
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800485 int idx;
Vladimir Davydov794b1242014-04-07 15:39:26 -0700486
487 get_online_cpus();
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700488 get_online_mems();
489
Vladimir Davydov794b1242014-04-07 15:39:26 -0700490 mutex_lock(&slab_mutex);
491
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -0800492 /*
493 * The memory cgroup could have been deactivated while the cache
494 * creation work was pending.
495 */
496 if (!memcg_kmem_is_active(memcg))
497 goto out_unlock;
498
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800499 idx = memcg_cache_id(memcg);
500 arr = rcu_dereference_protected(root_cache->memcg_params.memcg_caches,
501 lockdep_is_held(&slab_mutex));
502
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800503 /*
504 * Since per-memcg caches are created asynchronously on first
505 * allocation (see memcg_kmem_get_cache()), several threads can try to
506 * create the same cache, but only one of them may succeed.
507 */
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800508 if (arr->entries[idx])
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800509 goto out_unlock;
510
Vladimir Davydovf1008362015-02-12 14:59:29 -0800511 cgroup_name(css->cgroup, memcg_name_buf, sizeof(memcg_name_buf));
Vladimir Davydov073ee1c2014-06-04 16:08:23 -0700512 cache_name = kasprintf(GFP_KERNEL, "%s(%d:%s)", root_cache->name,
Vladimir Davydovf1008362015-02-12 14:59:29 -0800513 css->id, memcg_name_buf);
Vladimir Davydov794b1242014-04-07 15:39:26 -0700514 if (!cache_name)
515 goto out_unlock;
516
517 s = do_kmem_cache_create(cache_name, root_cache->object_size,
518 root_cache->size, root_cache->align,
519 root_cache->flags, root_cache->ctor,
520 memcg, root_cache);
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800521 /*
522 * If we could not create a memcg cache, do not complain, because
523 * that's not critical at all as we can always proceed with the root
524 * cache.
525 */
Vladimir Davydovbd673142014-06-04 16:07:40 -0700526 if (IS_ERR(s)) {
Vladimir Davydov794b1242014-04-07 15:39:26 -0700527 kfree(cache_name);
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800528 goto out_unlock;
Vladimir Davydovbd673142014-06-04 16:07:40 -0700529 }
Vladimir Davydov794b1242014-04-07 15:39:26 -0700530
Vladimir Davydov426589f2015-02-12 14:59:23 -0800531 list_add(&s->memcg_params.list, &root_cache->memcg_params.list);
532
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800533 /*
534 * Since readers won't lock (see cache_from_memcg_idx()), we need a
535 * barrier here to ensure nobody will see the kmem_cache partially
536 * initialized.
537 */
538 smp_wmb();
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800539 arr->entries[idx] = s;
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800540
Vladimir Davydov794b1242014-04-07 15:39:26 -0700541out_unlock:
542 mutex_unlock(&slab_mutex);
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700543
544 put_online_mems();
Vladimir Davydov794b1242014-04-07 15:39:26 -0700545 put_online_cpus();
546}
Vladimir Davydovb8529902014-04-07 15:39:28 -0700547
Vladimir Davydov2a4db7e2015-02-12 14:59:32 -0800548void memcg_deactivate_kmem_caches(struct mem_cgroup *memcg)
549{
550 int idx;
551 struct memcg_cache_array *arr;
552 struct kmem_cache *s;
553
554 idx = memcg_cache_id(memcg);
555
556 mutex_lock(&slab_mutex);
557 list_for_each_entry(s, &slab_caches, list) {
558 if (!is_root_cache(s))
559 continue;
560
561 arr = rcu_dereference_protected(s->memcg_params.memcg_caches,
562 lockdep_is_held(&slab_mutex));
563 arr->entries[idx] = NULL;
564 }
565 mutex_unlock(&slab_mutex);
566}
567
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800568void memcg_destroy_kmem_caches(struct mem_cgroup *memcg)
Vladimir Davydovb8529902014-04-07 15:39:28 -0700569{
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800570 LIST_HEAD(release);
571 bool need_rcu_barrier = false;
572 struct kmem_cache *s, *s2;
Vladimir Davydovb8529902014-04-07 15:39:28 -0700573
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800574 get_online_cpus();
575 get_online_mems();
Vladimir Davydovb8529902014-04-07 15:39:28 -0700576
Vladimir Davydovb8529902014-04-07 15:39:28 -0700577 mutex_lock(&slab_mutex);
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800578 list_for_each_entry_safe(s, s2, &slab_caches, list) {
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800579 if (is_root_cache(s) || s->memcg_params.memcg != memcg)
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800580 continue;
581 /*
582 * The cgroup is about to be freed and therefore has no charges
583 * left. Hence, all its caches must be empty by now.
584 */
585 BUG_ON(do_kmem_cache_shutdown(s, &release, &need_rcu_barrier));
586 }
587 mutex_unlock(&slab_mutex);
Vladimir Davydovb8529902014-04-07 15:39:28 -0700588
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800589 put_online_mems();
590 put_online_cpus();
591
592 do_kmem_cache_release(&release, need_rcu_barrier);
Vladimir Davydovb8529902014-04-07 15:39:28 -0700593}
Vladimir Davydov794b1242014-04-07 15:39:26 -0700594#endif /* CONFIG_MEMCG_KMEM */
595
Christoph Lameter41a21282014-05-06 12:50:08 -0700596void slab_kmem_cache_release(struct kmem_cache *s)
597{
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800598 destroy_memcg_params(s);
Christoph Lameter41a21282014-05-06 12:50:08 -0700599 kfree(s->name);
600 kmem_cache_free(kmem_cache, s);
601}
602
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000603void kmem_cache_destroy(struct kmem_cache *s)
604{
Vladimir Davydov426589f2015-02-12 14:59:23 -0800605 struct kmem_cache *c, *c2;
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800606 LIST_HEAD(release);
607 bool need_rcu_barrier = false;
608 bool busy = false;
609
Vladimir Davydov426589f2015-02-12 14:59:23 -0800610 BUG_ON(!is_root_cache(s));
611
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000612 get_online_cpus();
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700613 get_online_mems();
614
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000615 mutex_lock(&slab_mutex);
Vladimir Davydovb8529902014-04-07 15:39:28 -0700616
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000617 s->refcount--;
Vladimir Davydovb8529902014-04-07 15:39:28 -0700618 if (s->refcount)
619 goto out_unlock;
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000620
Vladimir Davydov426589f2015-02-12 14:59:23 -0800621 for_each_memcg_cache_safe(c, c2, s) {
622 if (do_kmem_cache_shutdown(c, &release, &need_rcu_barrier))
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800623 busy = true;
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000624 }
Vladimir Davydovb8529902014-04-07 15:39:28 -0700625
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800626 if (!busy)
627 do_kmem_cache_shutdown(s, &release, &need_rcu_barrier);
Vladimir Davydovb8529902014-04-07 15:39:28 -0700628
629out_unlock:
630 mutex_unlock(&slab_mutex);
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800631
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700632 put_online_mems();
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000633 put_online_cpus();
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800634
635 do_kmem_cache_release(&release, need_rcu_barrier);
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000636}
637EXPORT_SYMBOL(kmem_cache_destroy);
638
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700639/**
640 * kmem_cache_shrink - Shrink a cache.
641 * @cachep: The cache to shrink.
642 *
643 * Releases as many slabs as possible for a cache.
644 * To help debugging, a zero exit status indicates all slabs were released.
645 */
646int kmem_cache_shrink(struct kmem_cache *cachep)
647{
648 int ret;
649
650 get_online_cpus();
651 get_online_mems();
652 ret = __kmem_cache_shrink(cachep);
653 put_online_mems();
654 put_online_cpus();
655 return ret;
656}
657EXPORT_SYMBOL(kmem_cache_shrink);
658
Christoph Lameter97d06602012-07-06 15:25:11 -0500659int slab_is_available(void)
660{
661 return slab_state >= UP;
662}
Glauber Costab7454ad2012-10-19 18:20:25 +0400663
Christoph Lameter45530c42012-11-28 16:23:07 +0000664#ifndef CONFIG_SLOB
665/* Create a cache during boot when no slab services are available yet */
666void __init create_boot_cache(struct kmem_cache *s, const char *name, size_t size,
667 unsigned long flags)
668{
669 int err;
670
671 s->name = name;
672 s->size = s->object_size = size;
Christoph Lameter45906852012-11-28 16:23:16 +0000673 s->align = calculate_alignment(flags, ARCH_KMALLOC_MINALIGN, size);
Vladimir Davydovf7ce3192015-02-12 14:59:20 -0800674
675 slab_init_memcg_params(s);
676
Christoph Lameter45530c42012-11-28 16:23:07 +0000677 err = __kmem_cache_create(s, flags);
678
679 if (err)
Christoph Lameter31ba7342013-01-10 19:00:53 +0000680 panic("Creation of kmalloc slab %s size=%zu failed. Reason %d\n",
Christoph Lameter45530c42012-11-28 16:23:07 +0000681 name, size, err);
682
683 s->refcount = -1; /* Exempt from merging for now */
684}
685
686struct kmem_cache *__init create_kmalloc_cache(const char *name, size_t size,
687 unsigned long flags)
688{
689 struct kmem_cache *s = kmem_cache_zalloc(kmem_cache, GFP_NOWAIT);
690
691 if (!s)
692 panic("Out of memory when creating slab %s\n", name);
693
694 create_boot_cache(s, name, size, flags);
695 list_add(&s->list, &slab_caches);
696 s->refcount = 1;
697 return s;
698}
699
Christoph Lameter9425c582013-01-10 19:12:17 +0000700struct kmem_cache *kmalloc_caches[KMALLOC_SHIFT_HIGH + 1];
701EXPORT_SYMBOL(kmalloc_caches);
702
703#ifdef CONFIG_ZONE_DMA
704struct kmem_cache *kmalloc_dma_caches[KMALLOC_SHIFT_HIGH + 1];
705EXPORT_SYMBOL(kmalloc_dma_caches);
706#endif
707
Christoph Lameterf97d5f62013-01-10 19:12:17 +0000708/*
Christoph Lameter2c59dd62013-01-10 19:14:19 +0000709 * Conversion table for small slabs sizes / 8 to the index in the
710 * kmalloc array. This is necessary for slabs < 192 since we have non power
711 * of two cache sizes there. The size of larger slabs can be determined using
712 * fls.
713 */
714static s8 size_index[24] = {
715 3, /* 8 */
716 4, /* 16 */
717 5, /* 24 */
718 5, /* 32 */
719 6, /* 40 */
720 6, /* 48 */
721 6, /* 56 */
722 6, /* 64 */
723 1, /* 72 */
724 1, /* 80 */
725 1, /* 88 */
726 1, /* 96 */
727 7, /* 104 */
728 7, /* 112 */
729 7, /* 120 */
730 7, /* 128 */
731 2, /* 136 */
732 2, /* 144 */
733 2, /* 152 */
734 2, /* 160 */
735 2, /* 168 */
736 2, /* 176 */
737 2, /* 184 */
738 2 /* 192 */
739};
740
741static inline int size_index_elem(size_t bytes)
742{
743 return (bytes - 1) / 8;
744}
745
746/*
747 * Find the kmem_cache structure that serves a given size of
748 * allocation
749 */
750struct kmem_cache *kmalloc_slab(size_t size, gfp_t flags)
751{
752 int index;
753
Joonsoo Kim9de1bc82013-08-02 11:02:42 +0900754 if (unlikely(size > KMALLOC_MAX_SIZE)) {
Sasha Levin907985f2013-06-10 15:18:00 -0400755 WARN_ON_ONCE(!(flags & __GFP_NOWARN));
Christoph Lameter6286ae92013-05-03 15:43:18 +0000756 return NULL;
Sasha Levin907985f2013-06-10 15:18:00 -0400757 }
Christoph Lameter6286ae92013-05-03 15:43:18 +0000758
Christoph Lameter2c59dd62013-01-10 19:14:19 +0000759 if (size <= 192) {
760 if (!size)
761 return ZERO_SIZE_PTR;
762
763 index = size_index[size_index_elem(size)];
764 } else
765 index = fls(size - 1);
766
767#ifdef CONFIG_ZONE_DMA
Joonsoo Kimb1e05412013-02-04 23:46:46 +0900768 if (unlikely((flags & GFP_DMA)))
Christoph Lameter2c59dd62013-01-10 19:14:19 +0000769 return kmalloc_dma_caches[index];
770
771#endif
772 return kmalloc_caches[index];
773}
774
775/*
Christoph Lameterf97d5f62013-01-10 19:12:17 +0000776 * Create the kmalloc array. Some of the regular kmalloc arrays
777 * may already have been created because they were needed to
778 * enable allocations for slab creation.
779 */
780void __init create_kmalloc_caches(unsigned long flags)
781{
782 int i;
783
Christoph Lameter2c59dd62013-01-10 19:14:19 +0000784 /*
785 * Patch up the size_index table if we have strange large alignment
786 * requirements for the kmalloc array. This is only the case for
787 * MIPS it seems. The standard arches will not generate any code here.
788 *
789 * Largest permitted alignment is 256 bytes due to the way we
790 * handle the index determination for the smaller caches.
791 *
792 * Make sure that nothing crazy happens if someone starts tinkering
793 * around with ARCH_KMALLOC_MINALIGN
794 */
795 BUILD_BUG_ON(KMALLOC_MIN_SIZE > 256 ||
796 (KMALLOC_MIN_SIZE & (KMALLOC_MIN_SIZE - 1)));
797
798 for (i = 8; i < KMALLOC_MIN_SIZE; i += 8) {
799 int elem = size_index_elem(i);
800
801 if (elem >= ARRAY_SIZE(size_index))
802 break;
803 size_index[elem] = KMALLOC_SHIFT_LOW;
804 }
805
806 if (KMALLOC_MIN_SIZE >= 64) {
807 /*
808 * The 96 byte size cache is not used if the alignment
809 * is 64 byte.
810 */
811 for (i = 64 + 8; i <= 96; i += 8)
812 size_index[size_index_elem(i)] = 7;
813
814 }
815
816 if (KMALLOC_MIN_SIZE >= 128) {
817 /*
818 * The 192 byte sized cache is not used if the alignment
819 * is 128 byte. Redirect kmalloc to use the 256 byte cache
820 * instead.
821 */
822 for (i = 128 + 8; i <= 192; i += 8)
823 size_index[size_index_elem(i)] = 8;
824 }
Christoph Lameter8a965b32013-05-03 18:04:18 +0000825 for (i = KMALLOC_SHIFT_LOW; i <= KMALLOC_SHIFT_HIGH; i++) {
826 if (!kmalloc_caches[i]) {
Christoph Lameterf97d5f62013-01-10 19:12:17 +0000827 kmalloc_caches[i] = create_kmalloc_cache(NULL,
828 1 << i, flags);
Christoph Lameter8a965b32013-05-03 18:04:18 +0000829 }
Chris Mason956e46e2013-05-08 15:56:28 -0400830
831 /*
832 * Caches that are not of the two-to-the-power-of size.
833 * These have to be created immediately after the
834 * earlier power of two caches
835 */
836 if (KMALLOC_MIN_SIZE <= 32 && !kmalloc_caches[1] && i == 6)
837 kmalloc_caches[1] = create_kmalloc_cache(NULL, 96, flags);
838
839 if (KMALLOC_MIN_SIZE <= 64 && !kmalloc_caches[2] && i == 7)
840 kmalloc_caches[2] = create_kmalloc_cache(NULL, 192, flags);
Christoph Lameter8a965b32013-05-03 18:04:18 +0000841 }
842
Christoph Lameterf97d5f62013-01-10 19:12:17 +0000843 /* Kmalloc array is now usable */
844 slab_state = UP;
845
846 for (i = 0; i <= KMALLOC_SHIFT_HIGH; i++) {
847 struct kmem_cache *s = kmalloc_caches[i];
848 char *n;
849
850 if (s) {
851 n = kasprintf(GFP_NOWAIT, "kmalloc-%d", kmalloc_size(i));
852
853 BUG_ON(!n);
854 s->name = n;
855 }
856 }
857
858#ifdef CONFIG_ZONE_DMA
859 for (i = 0; i <= KMALLOC_SHIFT_HIGH; i++) {
860 struct kmem_cache *s = kmalloc_caches[i];
861
862 if (s) {
863 int size = kmalloc_size(i);
864 char *n = kasprintf(GFP_NOWAIT,
865 "dma-kmalloc-%d", size);
866
867 BUG_ON(!n);
868 kmalloc_dma_caches[i] = create_kmalloc_cache(n,
869 size, SLAB_CACHE_DMA | flags);
870 }
871 }
872#endif
873}
Christoph Lameter45530c42012-11-28 16:23:07 +0000874#endif /* !CONFIG_SLOB */
875
Vladimir Davydovcea371f2014-06-04 16:07:04 -0700876/*
877 * To avoid unnecessary overhead, we pass through large allocation requests
878 * directly to the page allocator. We use __GFP_COMP, because we will need to
879 * know the allocation order to free the pages properly in kfree.
880 */
Vladimir Davydov52383432014-06-04 16:06:39 -0700881void *kmalloc_order(size_t size, gfp_t flags, unsigned int order)
882{
883 void *ret;
884 struct page *page;
885
886 flags |= __GFP_COMP;
887 page = alloc_kmem_pages(flags, order);
888 ret = page ? page_address(page) : NULL;
889 kmemleak_alloc(ret, size, 1, flags);
890 return ret;
891}
892EXPORT_SYMBOL(kmalloc_order);
893
Christoph Lameterf1b6eb62013-09-04 16:35:34 +0000894#ifdef CONFIG_TRACING
895void *kmalloc_order_trace(size_t size, gfp_t flags, unsigned int order)
896{
897 void *ret = kmalloc_order(size, flags, order);
898 trace_kmalloc(_RET_IP_, ret, size, PAGE_SIZE << order, flags);
899 return ret;
900}
901EXPORT_SYMBOL(kmalloc_order_trace);
902#endif
Christoph Lameter45530c42012-11-28 16:23:07 +0000903
Glauber Costab7454ad2012-10-19 18:20:25 +0400904#ifdef CONFIG_SLABINFO
Wanpeng Lie9b4db22013-07-04 08:33:24 +0800905
906#ifdef CONFIG_SLAB
907#define SLABINFO_RIGHTS (S_IWUSR | S_IRUSR)
908#else
909#define SLABINFO_RIGHTS S_IRUSR
910#endif
911
Vladimir Davydovb0475012014-12-10 15:44:19 -0800912static void print_slabinfo_header(struct seq_file *m)
Glauber Costabcee6e22012-10-19 18:20:26 +0400913{
914 /*
915 * Output format version, so at least we can change it
916 * without _too_ many complaints.
917 */
918#ifdef CONFIG_DEBUG_SLAB
919 seq_puts(m, "slabinfo - version: 2.1 (statistics)\n");
920#else
921 seq_puts(m, "slabinfo - version: 2.1\n");
922#endif
923 seq_puts(m, "# name <active_objs> <num_objs> <objsize> "
924 "<objperslab> <pagesperslab>");
925 seq_puts(m, " : tunables <limit> <batchcount> <sharedfactor>");
926 seq_puts(m, " : slabdata <active_slabs> <num_slabs> <sharedavail>");
927#ifdef CONFIG_DEBUG_SLAB
928 seq_puts(m, " : globalstat <listallocs> <maxobjs> <grown> <reaped> "
929 "<error> <maxfreeable> <nodeallocs> <remotefrees> <alienoverflow>");
930 seq_puts(m, " : cpustat <allochit> <allocmiss> <freehit> <freemiss>");
931#endif
932 seq_putc(m, '\n');
933}
934
Vladimir Davydov1df3b262014-12-10 15:42:16 -0800935void *slab_start(struct seq_file *m, loff_t *pos)
Glauber Costab7454ad2012-10-19 18:20:25 +0400936{
Glauber Costab7454ad2012-10-19 18:20:25 +0400937 mutex_lock(&slab_mutex);
Glauber Costab7454ad2012-10-19 18:20:25 +0400938 return seq_list_start(&slab_caches, *pos);
939}
940
Wanpeng Li276a2432013-07-08 08:08:28 +0800941void *slab_next(struct seq_file *m, void *p, loff_t *pos)
Glauber Costab7454ad2012-10-19 18:20:25 +0400942{
943 return seq_list_next(p, &slab_caches, pos);
944}
945
Wanpeng Li276a2432013-07-08 08:08:28 +0800946void slab_stop(struct seq_file *m, void *p)
Glauber Costab7454ad2012-10-19 18:20:25 +0400947{
948 mutex_unlock(&slab_mutex);
949}
950
Glauber Costa749c5412012-12-18 14:23:01 -0800951static void
952memcg_accumulate_slabinfo(struct kmem_cache *s, struct slabinfo *info)
Glauber Costab7454ad2012-10-19 18:20:25 +0400953{
Glauber Costa749c5412012-12-18 14:23:01 -0800954 struct kmem_cache *c;
955 struct slabinfo sinfo;
Glauber Costa749c5412012-12-18 14:23:01 -0800956
957 if (!is_root_cache(s))
958 return;
959
Vladimir Davydov426589f2015-02-12 14:59:23 -0800960 for_each_memcg_cache(c, s) {
Glauber Costa749c5412012-12-18 14:23:01 -0800961 memset(&sinfo, 0, sizeof(sinfo));
962 get_slabinfo(c, &sinfo);
963
964 info->active_slabs += sinfo.active_slabs;
965 info->num_slabs += sinfo.num_slabs;
966 info->shared_avail += sinfo.shared_avail;
967 info->active_objs += sinfo.active_objs;
968 info->num_objs += sinfo.num_objs;
969 }
970}
971
Vladimir Davydovb0475012014-12-10 15:44:19 -0800972static void cache_show(struct kmem_cache *s, struct seq_file *m)
Glauber Costa749c5412012-12-18 14:23:01 -0800973{
Glauber Costa0d7561c2012-10-19 18:20:27 +0400974 struct slabinfo sinfo;
975
976 memset(&sinfo, 0, sizeof(sinfo));
977 get_slabinfo(s, &sinfo);
978
Glauber Costa749c5412012-12-18 14:23:01 -0800979 memcg_accumulate_slabinfo(s, &sinfo);
980
Glauber Costa0d7561c2012-10-19 18:20:27 +0400981 seq_printf(m, "%-17s %6lu %6lu %6u %4u %4d",
Glauber Costa749c5412012-12-18 14:23:01 -0800982 cache_name(s), sinfo.active_objs, sinfo.num_objs, s->size,
Glauber Costa0d7561c2012-10-19 18:20:27 +0400983 sinfo.objects_per_slab, (1 << sinfo.cache_order));
984
985 seq_printf(m, " : tunables %4u %4u %4u",
986 sinfo.limit, sinfo.batchcount, sinfo.shared);
987 seq_printf(m, " : slabdata %6lu %6lu %6lu",
988 sinfo.active_slabs, sinfo.num_slabs, sinfo.shared_avail);
989 slabinfo_show_stats(m, s);
990 seq_putc(m, '\n');
Glauber Costab7454ad2012-10-19 18:20:25 +0400991}
992
Vladimir Davydov1df3b262014-12-10 15:42:16 -0800993static int slab_show(struct seq_file *m, void *p)
Glauber Costa749c5412012-12-18 14:23:01 -0800994{
995 struct kmem_cache *s = list_entry(p, struct kmem_cache, list);
996
Vladimir Davydov1df3b262014-12-10 15:42:16 -0800997 if (p == slab_caches.next)
998 print_slabinfo_header(m);
Vladimir Davydovb0475012014-12-10 15:44:19 -0800999 if (is_root_cache(s))
1000 cache_show(s, m);
1001 return 0;
Glauber Costa749c5412012-12-18 14:23:01 -08001002}
1003
Vladimir Davydovb0475012014-12-10 15:44:19 -08001004#ifdef CONFIG_MEMCG_KMEM
1005int memcg_slab_show(struct seq_file *m, void *p)
1006{
1007 struct kmem_cache *s = list_entry(p, struct kmem_cache, list);
1008 struct mem_cgroup *memcg = mem_cgroup_from_css(seq_css(m));
1009
1010 if (p == slab_caches.next)
1011 print_slabinfo_header(m);
Vladimir Davydovf7ce3192015-02-12 14:59:20 -08001012 if (!is_root_cache(s) && s->memcg_params.memcg == memcg)
Vladimir Davydovb0475012014-12-10 15:44:19 -08001013 cache_show(s, m);
1014 return 0;
1015}
1016#endif
1017
Glauber Costab7454ad2012-10-19 18:20:25 +04001018/*
1019 * slabinfo_op - iterator that generates /proc/slabinfo
1020 *
1021 * Output layout:
1022 * cache-name
1023 * num-active-objs
1024 * total-objs
1025 * object size
1026 * num-active-slabs
1027 * total-slabs
1028 * num-pages-per-slab
1029 * + further values on SMP and with statistics enabled
1030 */
1031static const struct seq_operations slabinfo_op = {
Vladimir Davydov1df3b262014-12-10 15:42:16 -08001032 .start = slab_start,
Wanpeng Li276a2432013-07-08 08:08:28 +08001033 .next = slab_next,
1034 .stop = slab_stop,
Vladimir Davydov1df3b262014-12-10 15:42:16 -08001035 .show = slab_show,
Glauber Costab7454ad2012-10-19 18:20:25 +04001036};
1037
1038static int slabinfo_open(struct inode *inode, struct file *file)
1039{
1040 return seq_open(file, &slabinfo_op);
1041}
1042
1043static const struct file_operations proc_slabinfo_operations = {
1044 .open = slabinfo_open,
1045 .read = seq_read,
1046 .write = slabinfo_write,
1047 .llseek = seq_lseek,
1048 .release = seq_release,
1049};
1050
1051static int __init slab_proc_init(void)
1052{
Wanpeng Lie9b4db22013-07-04 08:33:24 +08001053 proc_create("slabinfo", SLABINFO_RIGHTS, NULL,
1054 &proc_slabinfo_operations);
Glauber Costab7454ad2012-10-19 18:20:25 +04001055 return 0;
1056}
1057module_init(slab_proc_init);
1058#endif /* CONFIG_SLABINFO */
Andrey Ryabinin928cec92014-08-06 16:04:44 -07001059
1060static __always_inline void *__do_krealloc(const void *p, size_t new_size,
1061 gfp_t flags)
1062{
1063 void *ret;
1064 size_t ks = 0;
1065
1066 if (p)
1067 ks = ksize(p);
1068
1069 if (ks >= new_size)
1070 return (void *)p;
1071
1072 ret = kmalloc_track_caller(new_size, flags);
1073 if (ret && p)
1074 memcpy(ret, p, ks);
1075
1076 return ret;
1077}
1078
1079/**
1080 * __krealloc - like krealloc() but don't free @p.
1081 * @p: object to reallocate memory for.
1082 * @new_size: how many bytes of memory are required.
1083 * @flags: the type of memory to allocate.
1084 *
1085 * This function is like krealloc() except it never frees the originally
1086 * allocated buffer. Use this if you don't want to free the buffer immediately
1087 * like, for example, with RCU.
1088 */
1089void *__krealloc(const void *p, size_t new_size, gfp_t flags)
1090{
1091 if (unlikely(!new_size))
1092 return ZERO_SIZE_PTR;
1093
1094 return __do_krealloc(p, new_size, flags);
1095
1096}
1097EXPORT_SYMBOL(__krealloc);
1098
1099/**
1100 * krealloc - reallocate memory. The contents will remain unchanged.
1101 * @p: object to reallocate memory for.
1102 * @new_size: how many bytes of memory are required.
1103 * @flags: the type of memory to allocate.
1104 *
1105 * The contents of the object pointed to are preserved up to the
1106 * lesser of the new and old sizes. If @p is %NULL, krealloc()
1107 * behaves exactly like kmalloc(). If @new_size is 0 and @p is not a
1108 * %NULL pointer, the object pointed to is freed.
1109 */
1110void *krealloc(const void *p, size_t new_size, gfp_t flags)
1111{
1112 void *ret;
1113
1114 if (unlikely(!new_size)) {
1115 kfree(p);
1116 return ZERO_SIZE_PTR;
1117 }
1118
1119 ret = __do_krealloc(p, new_size, flags);
1120 if (ret && p != ret)
1121 kfree(p);
1122
1123 return ret;
1124}
1125EXPORT_SYMBOL(krealloc);
1126
1127/**
1128 * kzfree - like kfree but zero memory
1129 * @p: object to free memory of
1130 *
1131 * The memory of the object @p points to is zeroed before freed.
1132 * If @p is %NULL, kzfree() does nothing.
1133 *
1134 * Note: this function zeroes the whole allocated buffer which can be a good
1135 * deal bigger than the requested buffer size passed to kmalloc(). So be
1136 * careful when using this function in performance sensitive code.
1137 */
1138void kzfree(const void *p)
1139{
1140 size_t ks;
1141 void *mem = (void *)p;
1142
1143 if (unlikely(ZERO_OR_NULL_PTR(mem)))
1144 return;
1145 ks = ksize(mem);
1146 memset(mem, 0, ks);
1147 kfree(mem);
1148}
1149EXPORT_SYMBOL(kzfree);
1150
1151/* Tracepoints definitions. */
1152EXPORT_TRACEPOINT_SYMBOL(kmalloc);
1153EXPORT_TRACEPOINT_SYMBOL(kmem_cache_alloc);
1154EXPORT_TRACEPOINT_SYMBOL(kmalloc_node);
1155EXPORT_TRACEPOINT_SYMBOL(kmem_cache_alloc_node);
1156EXPORT_TRACEPOINT_SYMBOL(kfree);
1157EXPORT_TRACEPOINT_SYMBOL(kmem_cache_free);