blob: 23f5fcde6043532313fc210f7ebdba0581c3b5db [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 Davydov33a690c2014-10-09 15:28:43 -0700109static int memcg_alloc_cache_params(struct mem_cgroup *memcg,
110 struct kmem_cache *s, struct kmem_cache *root_cache)
111{
112 size_t size;
113
114 if (!memcg_kmem_enabled())
115 return 0;
116
117 if (!memcg) {
118 size = offsetof(struct memcg_cache_params, memcg_caches);
Vladimir Davydovdbcf73e2015-02-12 14:58:57 -0800119 size += memcg_nr_cache_ids * sizeof(void *);
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700120 } else
121 size = sizeof(struct memcg_cache_params);
122
123 s->memcg_params = kzalloc(size, GFP_KERNEL);
124 if (!s->memcg_params)
125 return -ENOMEM;
126
127 if (memcg) {
128 s->memcg_params->memcg = memcg;
129 s->memcg_params->root_cache = root_cache;
130 } else
131 s->memcg_params->is_root_cache = true;
132
133 return 0;
134}
135
136static void memcg_free_cache_params(struct kmem_cache *s)
137{
138 kfree(s->memcg_params);
139}
140
Vladimir Davydov6f817f42014-10-09 15:28:47 -0700141static int memcg_update_cache_params(struct kmem_cache *s, int num_memcgs)
142{
143 int size;
144 struct memcg_cache_params *new_params, *cur_params;
145
146 BUG_ON(!is_root_cache(s));
147
148 size = offsetof(struct memcg_cache_params, memcg_caches);
149 size += num_memcgs * sizeof(void *);
150
151 new_params = kzalloc(size, GFP_KERNEL);
152 if (!new_params)
153 return -ENOMEM;
154
155 cur_params = s->memcg_params;
156 memcpy(new_params->memcg_caches, cur_params->memcg_caches,
Vladimir Davydovdbcf73e2015-02-12 14:58:57 -0800157 memcg_nr_cache_ids * sizeof(void *));
Vladimir Davydov6f817f42014-10-09 15:28:47 -0700158
159 new_params->is_root_cache = true;
160
161 rcu_assign_pointer(s->memcg_params, new_params);
162 if (cur_params)
163 kfree_rcu(cur_params, rcu_head);
164
165 return 0;
166}
167
Glauber Costa55007d82012-12-18 14:22:38 -0800168int memcg_update_all_caches(int num_memcgs)
169{
170 struct kmem_cache *s;
171 int ret = 0;
Glauber Costa55007d82012-12-18 14:22:38 -0800172
Vladimir Davydov05257a12015-02-12 14:59:01 -0800173 mutex_lock(&slab_mutex);
Glauber Costa55007d82012-12-18 14:22:38 -0800174 list_for_each_entry(s, &slab_caches, list) {
175 if (!is_root_cache(s))
176 continue;
177
Vladimir Davydov6f817f42014-10-09 15:28:47 -0700178 ret = memcg_update_cache_params(s, num_memcgs);
Glauber Costa55007d82012-12-18 14:22:38 -0800179 /*
Glauber Costa55007d82012-12-18 14:22:38 -0800180 * Instead of freeing the memory, we'll just leave the caches
181 * up to this point in an updated state.
182 */
183 if (ret)
Vladimir Davydov05257a12015-02-12 14:59:01 -0800184 break;
Glauber Costa55007d82012-12-18 14:22:38 -0800185 }
Glauber Costa55007d82012-12-18 14:22:38 -0800186 mutex_unlock(&slab_mutex);
187 return ret;
188}
Vladimir Davydov33a690c2014-10-09 15:28:43 -0700189#else
190static inline int memcg_alloc_cache_params(struct mem_cgroup *memcg,
191 struct kmem_cache *s, struct kmem_cache *root_cache)
192{
193 return 0;
194}
195
196static inline void memcg_free_cache_params(struct kmem_cache *s)
197{
198}
199#endif /* CONFIG_MEMCG_KMEM */
Glauber Costa55007d82012-12-18 14:22:38 -0800200
Christoph Lameter039363f2012-07-06 15:25:10 -0500201/*
Joonsoo Kim423c9292014-10-09 15:26:22 -0700202 * Find a mergeable slab cache
203 */
204int slab_unmergeable(struct kmem_cache *s)
205{
206 if (slab_nomerge || (s->flags & SLAB_NEVER_MERGE))
207 return 1;
208
209 if (!is_root_cache(s))
210 return 1;
211
212 if (s->ctor)
213 return 1;
214
215 /*
216 * We may have set a slab to be unmergeable during bootstrap.
217 */
218 if (s->refcount < 0)
219 return 1;
220
221 return 0;
222}
223
224struct kmem_cache *find_mergeable(size_t size, size_t align,
225 unsigned long flags, const char *name, void (*ctor)(void *))
226{
227 struct kmem_cache *s;
228
229 if (slab_nomerge || (flags & SLAB_NEVER_MERGE))
230 return NULL;
231
232 if (ctor)
233 return NULL;
234
235 size = ALIGN(size, sizeof(void *));
236 align = calculate_alignment(flags, align, size);
237 size = ALIGN(size, align);
238 flags = kmem_cache_flags(size, flags, name, NULL);
239
Joonsoo Kim54362052014-12-10 15:42:18 -0800240 list_for_each_entry_reverse(s, &slab_caches, list) {
Joonsoo Kim423c9292014-10-09 15:26:22 -0700241 if (slab_unmergeable(s))
242 continue;
243
244 if (size > s->size)
245 continue;
246
247 if ((flags & SLAB_MERGE_SAME) != (s->flags & SLAB_MERGE_SAME))
248 continue;
249 /*
250 * Check if alignment is compatible.
251 * Courtesy of Adrian Drzewiecki
252 */
253 if ((s->size & ~(align - 1)) != s->size)
254 continue;
255
256 if (s->size - size >= sizeof(void *))
257 continue;
258
Joonsoo Kim95069ac82014-11-13 15:19:25 -0800259 if (IS_ENABLED(CONFIG_SLAB) && align &&
260 (align > s->align || s->align % align))
261 continue;
262
Joonsoo Kim423c9292014-10-09 15:26:22 -0700263 return s;
264 }
265 return NULL;
266}
267
268/*
Christoph Lameter45906852012-11-28 16:23:16 +0000269 * Figure out what the alignment of the objects will be given a set of
270 * flags, a user specified alignment and the size of the objects.
271 */
272unsigned long calculate_alignment(unsigned long flags,
273 unsigned long align, unsigned long size)
274{
275 /*
276 * If the user wants hardware cache aligned objects then follow that
277 * suggestion if the object is sufficiently large.
278 *
279 * The hardware cache alignment cannot override the specified
280 * alignment though. If that is greater then use it.
281 */
282 if (flags & SLAB_HWCACHE_ALIGN) {
283 unsigned long ralign = cache_line_size();
284 while (size <= ralign / 2)
285 ralign /= 2;
286 align = max(align, ralign);
287 }
288
289 if (align < ARCH_SLAB_MINALIGN)
290 align = ARCH_SLAB_MINALIGN;
291
292 return ALIGN(align, sizeof(void *));
293}
294
Vladimir Davydov794b1242014-04-07 15:39:26 -0700295static struct kmem_cache *
296do_kmem_cache_create(char *name, size_t object_size, size_t size, size_t align,
297 unsigned long flags, void (*ctor)(void *),
298 struct mem_cgroup *memcg, struct kmem_cache *root_cache)
299{
300 struct kmem_cache *s;
301 int err;
302
303 err = -ENOMEM;
304 s = kmem_cache_zalloc(kmem_cache, GFP_KERNEL);
305 if (!s)
306 goto out;
307
308 s->name = name;
309 s->object_size = object_size;
310 s->size = size;
311 s->align = align;
312 s->ctor = ctor;
313
314 err = memcg_alloc_cache_params(memcg, s, root_cache);
315 if (err)
316 goto out_free_cache;
317
318 err = __kmem_cache_create(s, flags);
319 if (err)
320 goto out_free_cache;
321
322 s->refcount = 1;
323 list_add(&s->list, &slab_caches);
Vladimir Davydov794b1242014-04-07 15:39:26 -0700324out:
325 if (err)
326 return ERR_PTR(err);
327 return s;
328
329out_free_cache:
330 memcg_free_cache_params(s);
Vaishali Thakkar7c4da062015-02-10 14:09:40 -0800331 kmem_cache_free(kmem_cache, s);
Vladimir Davydov794b1242014-04-07 15:39:26 -0700332 goto out;
333}
Christoph Lameter45906852012-11-28 16:23:16 +0000334
335/*
Christoph Lameter039363f2012-07-06 15:25:10 -0500336 * kmem_cache_create - Create a cache.
337 * @name: A string which is used in /proc/slabinfo to identify this cache.
338 * @size: The size of objects to be created in this cache.
339 * @align: The required alignment for the objects.
340 * @flags: SLAB flags
341 * @ctor: A constructor for the objects.
342 *
343 * Returns a ptr to the cache on success, NULL on failure.
344 * Cannot be called within a interrupt, but can be interrupted.
345 * The @ctor is run when new pages are allocated by the cache.
346 *
347 * The flags are
348 *
349 * %SLAB_POISON - Poison the slab with a known test pattern (a5a5a5a5)
350 * to catch references to uninitialised memory.
351 *
352 * %SLAB_RED_ZONE - Insert `Red' zones around the allocated memory to check
353 * for buffer overruns.
354 *
355 * %SLAB_HWCACHE_ALIGN - Align the objects in this cache to a hardware
356 * cacheline. This can be beneficial if you're counting cycles as closely
357 * as davem.
358 */
Glauber Costa2633d7a2012-12-18 14:22:34 -0800359struct kmem_cache *
Vladimir Davydov794b1242014-04-07 15:39:26 -0700360kmem_cache_create(const char *name, size_t size, size_t align,
361 unsigned long flags, void (*ctor)(void *))
Christoph Lameter039363f2012-07-06 15:25:10 -0500362{
Vladimir Davydov794b1242014-04-07 15:39:26 -0700363 struct kmem_cache *s;
364 char *cache_name;
Vladimir Davydov3965fc32014-01-23 15:52:55 -0800365 int err;
Christoph Lameter039363f2012-07-06 15:25:10 -0500366
Pekka Enbergb9205362012-08-16 10:12:18 +0300367 get_online_cpus();
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700368 get_online_mems();
Vladimir Davydov05257a12015-02-12 14:59:01 -0800369 memcg_get_cache_ids();
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700370
Pekka Enbergb9205362012-08-16 10:12:18 +0300371 mutex_lock(&slab_mutex);
Christoph Lameter686d5502012-09-05 00:20:33 +0000372
Vladimir Davydov794b1242014-04-07 15:39:26 -0700373 err = kmem_cache_sanity_check(name, size);
Andrew Morton3aa24f52014-10-09 15:25:58 -0700374 if (err) {
375 s = NULL; /* suppress uninit var warning */
Vladimir Davydov3965fc32014-01-23 15:52:55 -0800376 goto out_unlock;
Andrew Morton3aa24f52014-10-09 15:25:58 -0700377 }
Christoph Lameter686d5502012-09-05 00:20:33 +0000378
Glauber Costad8843922012-10-17 15:36:51 +0400379 /*
380 * Some allocators will constraint the set of valid flags to a subset
381 * of all flags. We expect them to define CACHE_CREATE_MASK in this
382 * case, and we'll just provide them with a sanitized version of the
383 * passed flags.
384 */
385 flags &= CACHE_CREATE_MASK;
Christoph Lameter686d5502012-09-05 00:20:33 +0000386
Vladimir Davydov794b1242014-04-07 15:39:26 -0700387 s = __kmem_cache_alias(name, size, align, flags, ctor);
388 if (s)
Vladimir Davydov3965fc32014-01-23 15:52:55 -0800389 goto out_unlock;
Glauber Costa2633d7a2012-12-18 14:22:34 -0800390
Vladimir Davydov794b1242014-04-07 15:39:26 -0700391 cache_name = kstrdup(name, GFP_KERNEL);
392 if (!cache_name) {
393 err = -ENOMEM;
394 goto out_unlock;
395 }
Glauber Costa2633d7a2012-12-18 14:22:34 -0800396
Vladimir Davydov794b1242014-04-07 15:39:26 -0700397 s = do_kmem_cache_create(cache_name, size, size,
398 calculate_alignment(flags, align, size),
399 flags, ctor, NULL, NULL);
400 if (IS_ERR(s)) {
401 err = PTR_ERR(s);
402 kfree(cache_name);
403 }
Vladimir Davydov3965fc32014-01-23 15:52:55 -0800404
405out_unlock:
Christoph Lameter20cea962012-07-06 15:25:13 -0500406 mutex_unlock(&slab_mutex);
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700407
Vladimir Davydov05257a12015-02-12 14:59:01 -0800408 memcg_put_cache_ids();
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700409 put_online_mems();
Christoph Lameter20cea962012-07-06 15:25:13 -0500410 put_online_cpus();
411
Dave Jonesba3253c72014-01-29 14:05:48 -0800412 if (err) {
Christoph Lameter686d5502012-09-05 00:20:33 +0000413 if (flags & SLAB_PANIC)
414 panic("kmem_cache_create: Failed to create slab '%s'. Error %d\n",
415 name, err);
416 else {
417 printk(KERN_WARNING "kmem_cache_create(%s) failed with error %d",
418 name, err);
419 dump_stack();
420 }
Christoph Lameter686d5502012-09-05 00:20:33 +0000421 return NULL;
422 }
Christoph Lameter039363f2012-07-06 15:25:10 -0500423 return s;
Glauber Costa2633d7a2012-12-18 14:22:34 -0800424}
Christoph Lameter039363f2012-07-06 15:25:10 -0500425EXPORT_SYMBOL(kmem_cache_create);
Christoph Lameter97d06602012-07-06 15:25:11 -0500426
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800427static int do_kmem_cache_shutdown(struct kmem_cache *s,
428 struct list_head *release, bool *need_rcu_barrier)
429{
430 if (__kmem_cache_shutdown(s) != 0) {
431 printk(KERN_ERR "kmem_cache_destroy %s: "
432 "Slab cache still has objects\n", s->name);
433 dump_stack();
434 return -EBUSY;
435 }
436
437 if (s->flags & SLAB_DESTROY_BY_RCU)
438 *need_rcu_barrier = true;
439
440#ifdef CONFIG_MEMCG_KMEM
441 if (!is_root_cache(s)) {
442 struct kmem_cache *root_cache = s->memcg_params->root_cache;
443 int memcg_id = memcg_cache_id(s->memcg_params->memcg);
444
445 BUG_ON(root_cache->memcg_params->memcg_caches[memcg_id] != s);
446 root_cache->memcg_params->memcg_caches[memcg_id] = NULL;
447 }
448#endif
449 list_move(&s->list, release);
450 return 0;
451}
452
453static void do_kmem_cache_release(struct list_head *release,
454 bool need_rcu_barrier)
455{
456 struct kmem_cache *s, *s2;
457
458 if (need_rcu_barrier)
459 rcu_barrier();
460
461 list_for_each_entry_safe(s, s2, release, list) {
462#ifdef SLAB_SUPPORTS_SYSFS
463 sysfs_slab_remove(s);
464#else
465 slab_kmem_cache_release(s);
466#endif
467 }
468}
469
Vladimir Davydov794b1242014-04-07 15:39:26 -0700470#ifdef CONFIG_MEMCG_KMEM
471/*
Vladimir Davydov776ed0f2014-06-04 16:10:02 -0700472 * memcg_create_kmem_cache - Create a cache for a memory cgroup.
Vladimir Davydov794b1242014-04-07 15:39:26 -0700473 * @memcg: The memory cgroup the new cache is for.
474 * @root_cache: The parent of the new cache.
475 *
476 * This function attempts to create a kmem cache that will serve allocation
477 * requests going from @memcg to @root_cache. The new cache inherits properties
478 * from its parent.
479 */
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800480void memcg_create_kmem_cache(struct mem_cgroup *memcg,
481 struct kmem_cache *root_cache)
Vladimir Davydov794b1242014-04-07 15:39:26 -0700482{
Vladimir Davydov3e0350a2015-02-10 14:11:44 -0800483 static char memcg_name_buf[NAME_MAX + 1]; /* protected by slab_mutex */
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800484 int memcg_id = memcg_cache_id(memcg);
Vladimir Davydovbd673142014-06-04 16:07:40 -0700485 struct kmem_cache *s = NULL;
Vladimir Davydov794b1242014-04-07 15:39:26 -0700486 char *cache_name;
487
488 get_online_cpus();
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700489 get_online_mems();
490
Vladimir Davydov794b1242014-04-07 15:39:26 -0700491 mutex_lock(&slab_mutex);
492
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800493 /*
494 * Since per-memcg caches are created asynchronously on first
495 * allocation (see memcg_kmem_get_cache()), several threads can try to
496 * create the same cache, but only one of them may succeed.
497 */
498 if (cache_from_memcg_idx(root_cache, memcg_id))
499 goto out_unlock;
500
Vladimir Davydov3e0350a2015-02-10 14:11:44 -0800501 cgroup_name(mem_cgroup_css(memcg)->cgroup,
502 memcg_name_buf, sizeof(memcg_name_buf));
Vladimir Davydov073ee1c2014-06-04 16:08:23 -0700503 cache_name = kasprintf(GFP_KERNEL, "%s(%d:%s)", root_cache->name,
Vladimir Davydov3e0350a2015-02-10 14:11:44 -0800504 memcg_cache_id(memcg), memcg_name_buf);
Vladimir Davydov794b1242014-04-07 15:39:26 -0700505 if (!cache_name)
506 goto out_unlock;
507
508 s = do_kmem_cache_create(cache_name, root_cache->object_size,
509 root_cache->size, root_cache->align,
510 root_cache->flags, root_cache->ctor,
511 memcg, root_cache);
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800512 /*
513 * If we could not create a memcg cache, do not complain, because
514 * that's not critical at all as we can always proceed with the root
515 * cache.
516 */
Vladimir Davydovbd673142014-06-04 16:07:40 -0700517 if (IS_ERR(s)) {
Vladimir Davydov794b1242014-04-07 15:39:26 -0700518 kfree(cache_name);
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800519 goto out_unlock;
Vladimir Davydovbd673142014-06-04 16:07:40 -0700520 }
Vladimir Davydov794b1242014-04-07 15:39:26 -0700521
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800522 /*
523 * Since readers won't lock (see cache_from_memcg_idx()), we need a
524 * barrier here to ensure nobody will see the kmem_cache partially
525 * initialized.
526 */
527 smp_wmb();
528 root_cache->memcg_params->memcg_caches[memcg_id] = s;
529
Vladimir Davydov794b1242014-04-07 15:39:26 -0700530out_unlock:
531 mutex_unlock(&slab_mutex);
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700532
533 put_online_mems();
Vladimir Davydov794b1242014-04-07 15:39:26 -0700534 put_online_cpus();
535}
Vladimir Davydovb8529902014-04-07 15:39:28 -0700536
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800537void memcg_destroy_kmem_caches(struct mem_cgroup *memcg)
Vladimir Davydovb8529902014-04-07 15:39:28 -0700538{
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800539 LIST_HEAD(release);
540 bool need_rcu_barrier = false;
541 struct kmem_cache *s, *s2;
Vladimir Davydovb8529902014-04-07 15:39:28 -0700542
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800543 get_online_cpus();
544 get_online_mems();
Vladimir Davydovb8529902014-04-07 15:39:28 -0700545
Vladimir Davydovb8529902014-04-07 15:39:28 -0700546 mutex_lock(&slab_mutex);
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800547 list_for_each_entry_safe(s, s2, &slab_caches, list) {
548 if (is_root_cache(s) || s->memcg_params->memcg != memcg)
549 continue;
550 /*
551 * The cgroup is about to be freed and therefore has no charges
552 * left. Hence, all its caches must be empty by now.
553 */
554 BUG_ON(do_kmem_cache_shutdown(s, &release, &need_rcu_barrier));
555 }
556 mutex_unlock(&slab_mutex);
Vladimir Davydovb8529902014-04-07 15:39:28 -0700557
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800558 put_online_mems();
559 put_online_cpus();
560
561 do_kmem_cache_release(&release, need_rcu_barrier);
Vladimir Davydovb8529902014-04-07 15:39:28 -0700562}
Vladimir Davydov794b1242014-04-07 15:39:26 -0700563#endif /* CONFIG_MEMCG_KMEM */
564
Christoph Lameter41a21282014-05-06 12:50:08 -0700565void slab_kmem_cache_release(struct kmem_cache *s)
566{
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800567 memcg_free_cache_params(s);
Christoph Lameter41a21282014-05-06 12:50:08 -0700568 kfree(s->name);
569 kmem_cache_free(kmem_cache, s);
570}
571
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000572void kmem_cache_destroy(struct kmem_cache *s)
573{
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800574 int i;
575 LIST_HEAD(release);
576 bool need_rcu_barrier = false;
577 bool busy = false;
578
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000579 get_online_cpus();
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700580 get_online_mems();
581
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000582 mutex_lock(&slab_mutex);
Vladimir Davydovb8529902014-04-07 15:39:28 -0700583
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000584 s->refcount--;
Vladimir Davydovb8529902014-04-07 15:39:28 -0700585 if (s->refcount)
586 goto out_unlock;
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000587
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800588 for_each_memcg_cache_index(i) {
589 struct kmem_cache *c = cache_from_memcg_idx(s, i);
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000590
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800591 if (c && do_kmem_cache_shutdown(c, &release, &need_rcu_barrier))
592 busy = true;
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000593 }
Vladimir Davydovb8529902014-04-07 15:39:28 -0700594
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800595 if (!busy)
596 do_kmem_cache_shutdown(s, &release, &need_rcu_barrier);
Vladimir Davydovb8529902014-04-07 15:39:28 -0700597
598out_unlock:
599 mutex_unlock(&slab_mutex);
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800600
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700601 put_online_mems();
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000602 put_online_cpus();
Vladimir Davydovd5b3cf72015-02-10 14:11:47 -0800603
604 do_kmem_cache_release(&release, need_rcu_barrier);
Christoph Lameter945cf2b2012-09-04 23:18:33 +0000605}
606EXPORT_SYMBOL(kmem_cache_destroy);
607
Vladimir Davydov03afc0e2014-06-04 16:07:20 -0700608/**
609 * kmem_cache_shrink - Shrink a cache.
610 * @cachep: The cache to shrink.
611 *
612 * Releases as many slabs as possible for a cache.
613 * To help debugging, a zero exit status indicates all slabs were released.
614 */
615int kmem_cache_shrink(struct kmem_cache *cachep)
616{
617 int ret;
618
619 get_online_cpus();
620 get_online_mems();
621 ret = __kmem_cache_shrink(cachep);
622 put_online_mems();
623 put_online_cpus();
624 return ret;
625}
626EXPORT_SYMBOL(kmem_cache_shrink);
627
Christoph Lameter97d06602012-07-06 15:25:11 -0500628int slab_is_available(void)
629{
630 return slab_state >= UP;
631}
Glauber Costab7454ad2012-10-19 18:20:25 +0400632
Christoph Lameter45530c42012-11-28 16:23:07 +0000633#ifndef CONFIG_SLOB
634/* Create a cache during boot when no slab services are available yet */
635void __init create_boot_cache(struct kmem_cache *s, const char *name, size_t size,
636 unsigned long flags)
637{
638 int err;
639
640 s->name = name;
641 s->size = s->object_size = size;
Christoph Lameter45906852012-11-28 16:23:16 +0000642 s->align = calculate_alignment(flags, ARCH_KMALLOC_MINALIGN, size);
Christoph Lameter45530c42012-11-28 16:23:07 +0000643 err = __kmem_cache_create(s, flags);
644
645 if (err)
Christoph Lameter31ba7342013-01-10 19:00:53 +0000646 panic("Creation of kmalloc slab %s size=%zu failed. Reason %d\n",
Christoph Lameter45530c42012-11-28 16:23:07 +0000647 name, size, err);
648
649 s->refcount = -1; /* Exempt from merging for now */
650}
651
652struct kmem_cache *__init create_kmalloc_cache(const char *name, size_t size,
653 unsigned long flags)
654{
655 struct kmem_cache *s = kmem_cache_zalloc(kmem_cache, GFP_NOWAIT);
656
657 if (!s)
658 panic("Out of memory when creating slab %s\n", name);
659
660 create_boot_cache(s, name, size, flags);
661 list_add(&s->list, &slab_caches);
662 s->refcount = 1;
663 return s;
664}
665
Christoph Lameter9425c582013-01-10 19:12:17 +0000666struct kmem_cache *kmalloc_caches[KMALLOC_SHIFT_HIGH + 1];
667EXPORT_SYMBOL(kmalloc_caches);
668
669#ifdef CONFIG_ZONE_DMA
670struct kmem_cache *kmalloc_dma_caches[KMALLOC_SHIFT_HIGH + 1];
671EXPORT_SYMBOL(kmalloc_dma_caches);
672#endif
673
Christoph Lameterf97d5f62013-01-10 19:12:17 +0000674/*
Christoph Lameter2c59dd62013-01-10 19:14:19 +0000675 * Conversion table for small slabs sizes / 8 to the index in the
676 * kmalloc array. This is necessary for slabs < 192 since we have non power
677 * of two cache sizes there. The size of larger slabs can be determined using
678 * fls.
679 */
680static s8 size_index[24] = {
681 3, /* 8 */
682 4, /* 16 */
683 5, /* 24 */
684 5, /* 32 */
685 6, /* 40 */
686 6, /* 48 */
687 6, /* 56 */
688 6, /* 64 */
689 1, /* 72 */
690 1, /* 80 */
691 1, /* 88 */
692 1, /* 96 */
693 7, /* 104 */
694 7, /* 112 */
695 7, /* 120 */
696 7, /* 128 */
697 2, /* 136 */
698 2, /* 144 */
699 2, /* 152 */
700 2, /* 160 */
701 2, /* 168 */
702 2, /* 176 */
703 2, /* 184 */
704 2 /* 192 */
705};
706
707static inline int size_index_elem(size_t bytes)
708{
709 return (bytes - 1) / 8;
710}
711
712/*
713 * Find the kmem_cache structure that serves a given size of
714 * allocation
715 */
716struct kmem_cache *kmalloc_slab(size_t size, gfp_t flags)
717{
718 int index;
719
Joonsoo Kim9de1bc82013-08-02 11:02:42 +0900720 if (unlikely(size > KMALLOC_MAX_SIZE)) {
Sasha Levin907985f2013-06-10 15:18:00 -0400721 WARN_ON_ONCE(!(flags & __GFP_NOWARN));
Christoph Lameter6286ae92013-05-03 15:43:18 +0000722 return NULL;
Sasha Levin907985f2013-06-10 15:18:00 -0400723 }
Christoph Lameter6286ae92013-05-03 15:43:18 +0000724
Christoph Lameter2c59dd62013-01-10 19:14:19 +0000725 if (size <= 192) {
726 if (!size)
727 return ZERO_SIZE_PTR;
728
729 index = size_index[size_index_elem(size)];
730 } else
731 index = fls(size - 1);
732
733#ifdef CONFIG_ZONE_DMA
Joonsoo Kimb1e05412013-02-04 23:46:46 +0900734 if (unlikely((flags & GFP_DMA)))
Christoph Lameter2c59dd62013-01-10 19:14:19 +0000735 return kmalloc_dma_caches[index];
736
737#endif
738 return kmalloc_caches[index];
739}
740
741/*
Christoph Lameterf97d5f62013-01-10 19:12:17 +0000742 * Create the kmalloc array. Some of the regular kmalloc arrays
743 * may already have been created because they were needed to
744 * enable allocations for slab creation.
745 */
746void __init create_kmalloc_caches(unsigned long flags)
747{
748 int i;
749
Christoph Lameter2c59dd62013-01-10 19:14:19 +0000750 /*
751 * Patch up the size_index table if we have strange large alignment
752 * requirements for the kmalloc array. This is only the case for
753 * MIPS it seems. The standard arches will not generate any code here.
754 *
755 * Largest permitted alignment is 256 bytes due to the way we
756 * handle the index determination for the smaller caches.
757 *
758 * Make sure that nothing crazy happens if someone starts tinkering
759 * around with ARCH_KMALLOC_MINALIGN
760 */
761 BUILD_BUG_ON(KMALLOC_MIN_SIZE > 256 ||
762 (KMALLOC_MIN_SIZE & (KMALLOC_MIN_SIZE - 1)));
763
764 for (i = 8; i < KMALLOC_MIN_SIZE; i += 8) {
765 int elem = size_index_elem(i);
766
767 if (elem >= ARRAY_SIZE(size_index))
768 break;
769 size_index[elem] = KMALLOC_SHIFT_LOW;
770 }
771
772 if (KMALLOC_MIN_SIZE >= 64) {
773 /*
774 * The 96 byte size cache is not used if the alignment
775 * is 64 byte.
776 */
777 for (i = 64 + 8; i <= 96; i += 8)
778 size_index[size_index_elem(i)] = 7;
779
780 }
781
782 if (KMALLOC_MIN_SIZE >= 128) {
783 /*
784 * The 192 byte sized cache is not used if the alignment
785 * is 128 byte. Redirect kmalloc to use the 256 byte cache
786 * instead.
787 */
788 for (i = 128 + 8; i <= 192; i += 8)
789 size_index[size_index_elem(i)] = 8;
790 }
Christoph Lameter8a965b32013-05-03 18:04:18 +0000791 for (i = KMALLOC_SHIFT_LOW; i <= KMALLOC_SHIFT_HIGH; i++) {
792 if (!kmalloc_caches[i]) {
Christoph Lameterf97d5f62013-01-10 19:12:17 +0000793 kmalloc_caches[i] = create_kmalloc_cache(NULL,
794 1 << i, flags);
Christoph Lameter8a965b32013-05-03 18:04:18 +0000795 }
Chris Mason956e46e2013-05-08 15:56:28 -0400796
797 /*
798 * Caches that are not of the two-to-the-power-of size.
799 * These have to be created immediately after the
800 * earlier power of two caches
801 */
802 if (KMALLOC_MIN_SIZE <= 32 && !kmalloc_caches[1] && i == 6)
803 kmalloc_caches[1] = create_kmalloc_cache(NULL, 96, flags);
804
805 if (KMALLOC_MIN_SIZE <= 64 && !kmalloc_caches[2] && i == 7)
806 kmalloc_caches[2] = create_kmalloc_cache(NULL, 192, flags);
Christoph Lameter8a965b32013-05-03 18:04:18 +0000807 }
808
Christoph Lameterf97d5f62013-01-10 19:12:17 +0000809 /* Kmalloc array is now usable */
810 slab_state = UP;
811
812 for (i = 0; i <= KMALLOC_SHIFT_HIGH; i++) {
813 struct kmem_cache *s = kmalloc_caches[i];
814 char *n;
815
816 if (s) {
817 n = kasprintf(GFP_NOWAIT, "kmalloc-%d", kmalloc_size(i));
818
819 BUG_ON(!n);
820 s->name = n;
821 }
822 }
823
824#ifdef CONFIG_ZONE_DMA
825 for (i = 0; i <= KMALLOC_SHIFT_HIGH; i++) {
826 struct kmem_cache *s = kmalloc_caches[i];
827
828 if (s) {
829 int size = kmalloc_size(i);
830 char *n = kasprintf(GFP_NOWAIT,
831 "dma-kmalloc-%d", size);
832
833 BUG_ON(!n);
834 kmalloc_dma_caches[i] = create_kmalloc_cache(n,
835 size, SLAB_CACHE_DMA | flags);
836 }
837 }
838#endif
839}
Christoph Lameter45530c42012-11-28 16:23:07 +0000840#endif /* !CONFIG_SLOB */
841
Vladimir Davydovcea371f2014-06-04 16:07:04 -0700842/*
843 * To avoid unnecessary overhead, we pass through large allocation requests
844 * directly to the page allocator. We use __GFP_COMP, because we will need to
845 * know the allocation order to free the pages properly in kfree.
846 */
Vladimir Davydov52383432014-06-04 16:06:39 -0700847void *kmalloc_order(size_t size, gfp_t flags, unsigned int order)
848{
849 void *ret;
850 struct page *page;
851
852 flags |= __GFP_COMP;
853 page = alloc_kmem_pages(flags, order);
854 ret = page ? page_address(page) : NULL;
855 kmemleak_alloc(ret, size, 1, flags);
856 return ret;
857}
858EXPORT_SYMBOL(kmalloc_order);
859
Christoph Lameterf1b6eb62013-09-04 16:35:34 +0000860#ifdef CONFIG_TRACING
861void *kmalloc_order_trace(size_t size, gfp_t flags, unsigned int order)
862{
863 void *ret = kmalloc_order(size, flags, order);
864 trace_kmalloc(_RET_IP_, ret, size, PAGE_SIZE << order, flags);
865 return ret;
866}
867EXPORT_SYMBOL(kmalloc_order_trace);
868#endif
Christoph Lameter45530c42012-11-28 16:23:07 +0000869
Glauber Costab7454ad2012-10-19 18:20:25 +0400870#ifdef CONFIG_SLABINFO
Wanpeng Lie9b4db22013-07-04 08:33:24 +0800871
872#ifdef CONFIG_SLAB
873#define SLABINFO_RIGHTS (S_IWUSR | S_IRUSR)
874#else
875#define SLABINFO_RIGHTS S_IRUSR
876#endif
877
Vladimir Davydovb0475012014-12-10 15:44:19 -0800878static void print_slabinfo_header(struct seq_file *m)
Glauber Costabcee6e22012-10-19 18:20:26 +0400879{
880 /*
881 * Output format version, so at least we can change it
882 * without _too_ many complaints.
883 */
884#ifdef CONFIG_DEBUG_SLAB
885 seq_puts(m, "slabinfo - version: 2.1 (statistics)\n");
886#else
887 seq_puts(m, "slabinfo - version: 2.1\n");
888#endif
889 seq_puts(m, "# name <active_objs> <num_objs> <objsize> "
890 "<objperslab> <pagesperslab>");
891 seq_puts(m, " : tunables <limit> <batchcount> <sharedfactor>");
892 seq_puts(m, " : slabdata <active_slabs> <num_slabs> <sharedavail>");
893#ifdef CONFIG_DEBUG_SLAB
894 seq_puts(m, " : globalstat <listallocs> <maxobjs> <grown> <reaped> "
895 "<error> <maxfreeable> <nodeallocs> <remotefrees> <alienoverflow>");
896 seq_puts(m, " : cpustat <allochit> <allocmiss> <freehit> <freemiss>");
897#endif
898 seq_putc(m, '\n');
899}
900
Vladimir Davydov1df3b262014-12-10 15:42:16 -0800901void *slab_start(struct seq_file *m, loff_t *pos)
Glauber Costab7454ad2012-10-19 18:20:25 +0400902{
Glauber Costab7454ad2012-10-19 18:20:25 +0400903 mutex_lock(&slab_mutex);
Glauber Costab7454ad2012-10-19 18:20:25 +0400904 return seq_list_start(&slab_caches, *pos);
905}
906
Wanpeng Li276a2432013-07-08 08:08:28 +0800907void *slab_next(struct seq_file *m, void *p, loff_t *pos)
Glauber Costab7454ad2012-10-19 18:20:25 +0400908{
909 return seq_list_next(p, &slab_caches, pos);
910}
911
Wanpeng Li276a2432013-07-08 08:08:28 +0800912void slab_stop(struct seq_file *m, void *p)
Glauber Costab7454ad2012-10-19 18:20:25 +0400913{
914 mutex_unlock(&slab_mutex);
915}
916
Glauber Costa749c5412012-12-18 14:23:01 -0800917static void
918memcg_accumulate_slabinfo(struct kmem_cache *s, struct slabinfo *info)
Glauber Costab7454ad2012-10-19 18:20:25 +0400919{
Glauber Costa749c5412012-12-18 14:23:01 -0800920 struct kmem_cache *c;
921 struct slabinfo sinfo;
922 int i;
923
924 if (!is_root_cache(s))
925 return;
926
927 for_each_memcg_cache_index(i) {
Qiang Huang2ade4de2013-11-12 15:08:23 -0800928 c = cache_from_memcg_idx(s, i);
Glauber Costa749c5412012-12-18 14:23:01 -0800929 if (!c)
930 continue;
931
932 memset(&sinfo, 0, sizeof(sinfo));
933 get_slabinfo(c, &sinfo);
934
935 info->active_slabs += sinfo.active_slabs;
936 info->num_slabs += sinfo.num_slabs;
937 info->shared_avail += sinfo.shared_avail;
938 info->active_objs += sinfo.active_objs;
939 info->num_objs += sinfo.num_objs;
940 }
941}
942
Vladimir Davydovb0475012014-12-10 15:44:19 -0800943static void cache_show(struct kmem_cache *s, struct seq_file *m)
Glauber Costa749c5412012-12-18 14:23:01 -0800944{
Glauber Costa0d7561c2012-10-19 18:20:27 +0400945 struct slabinfo sinfo;
946
947 memset(&sinfo, 0, sizeof(sinfo));
948 get_slabinfo(s, &sinfo);
949
Glauber Costa749c5412012-12-18 14:23:01 -0800950 memcg_accumulate_slabinfo(s, &sinfo);
951
Glauber Costa0d7561c2012-10-19 18:20:27 +0400952 seq_printf(m, "%-17s %6lu %6lu %6u %4u %4d",
Glauber Costa749c5412012-12-18 14:23:01 -0800953 cache_name(s), sinfo.active_objs, sinfo.num_objs, s->size,
Glauber Costa0d7561c2012-10-19 18:20:27 +0400954 sinfo.objects_per_slab, (1 << sinfo.cache_order));
955
956 seq_printf(m, " : tunables %4u %4u %4u",
957 sinfo.limit, sinfo.batchcount, sinfo.shared);
958 seq_printf(m, " : slabdata %6lu %6lu %6lu",
959 sinfo.active_slabs, sinfo.num_slabs, sinfo.shared_avail);
960 slabinfo_show_stats(m, s);
961 seq_putc(m, '\n');
Glauber Costab7454ad2012-10-19 18:20:25 +0400962}
963
Vladimir Davydov1df3b262014-12-10 15:42:16 -0800964static int slab_show(struct seq_file *m, void *p)
Glauber Costa749c5412012-12-18 14:23:01 -0800965{
966 struct kmem_cache *s = list_entry(p, struct kmem_cache, list);
967
Vladimir Davydov1df3b262014-12-10 15:42:16 -0800968 if (p == slab_caches.next)
969 print_slabinfo_header(m);
Vladimir Davydovb0475012014-12-10 15:44:19 -0800970 if (is_root_cache(s))
971 cache_show(s, m);
972 return 0;
Glauber Costa749c5412012-12-18 14:23:01 -0800973}
974
Vladimir Davydovb0475012014-12-10 15:44:19 -0800975#ifdef CONFIG_MEMCG_KMEM
976int memcg_slab_show(struct seq_file *m, void *p)
977{
978 struct kmem_cache *s = list_entry(p, struct kmem_cache, list);
979 struct mem_cgroup *memcg = mem_cgroup_from_css(seq_css(m));
980
981 if (p == slab_caches.next)
982 print_slabinfo_header(m);
983 if (!is_root_cache(s) && s->memcg_params->memcg == memcg)
984 cache_show(s, m);
985 return 0;
986}
987#endif
988
Glauber Costab7454ad2012-10-19 18:20:25 +0400989/*
990 * slabinfo_op - iterator that generates /proc/slabinfo
991 *
992 * Output layout:
993 * cache-name
994 * num-active-objs
995 * total-objs
996 * object size
997 * num-active-slabs
998 * total-slabs
999 * num-pages-per-slab
1000 * + further values on SMP and with statistics enabled
1001 */
1002static const struct seq_operations slabinfo_op = {
Vladimir Davydov1df3b262014-12-10 15:42:16 -08001003 .start = slab_start,
Wanpeng Li276a2432013-07-08 08:08:28 +08001004 .next = slab_next,
1005 .stop = slab_stop,
Vladimir Davydov1df3b262014-12-10 15:42:16 -08001006 .show = slab_show,
Glauber Costab7454ad2012-10-19 18:20:25 +04001007};
1008
1009static int slabinfo_open(struct inode *inode, struct file *file)
1010{
1011 return seq_open(file, &slabinfo_op);
1012}
1013
1014static const struct file_operations proc_slabinfo_operations = {
1015 .open = slabinfo_open,
1016 .read = seq_read,
1017 .write = slabinfo_write,
1018 .llseek = seq_lseek,
1019 .release = seq_release,
1020};
1021
1022static int __init slab_proc_init(void)
1023{
Wanpeng Lie9b4db22013-07-04 08:33:24 +08001024 proc_create("slabinfo", SLABINFO_RIGHTS, NULL,
1025 &proc_slabinfo_operations);
Glauber Costab7454ad2012-10-19 18:20:25 +04001026 return 0;
1027}
1028module_init(slab_proc_init);
1029#endif /* CONFIG_SLABINFO */
Andrey Ryabinin928cec92014-08-06 16:04:44 -07001030
1031static __always_inline void *__do_krealloc(const void *p, size_t new_size,
1032 gfp_t flags)
1033{
1034 void *ret;
1035 size_t ks = 0;
1036
1037 if (p)
1038 ks = ksize(p);
1039
1040 if (ks >= new_size)
1041 return (void *)p;
1042
1043 ret = kmalloc_track_caller(new_size, flags);
1044 if (ret && p)
1045 memcpy(ret, p, ks);
1046
1047 return ret;
1048}
1049
1050/**
1051 * __krealloc - like krealloc() but don't free @p.
1052 * @p: object to reallocate memory for.
1053 * @new_size: how many bytes of memory are required.
1054 * @flags: the type of memory to allocate.
1055 *
1056 * This function is like krealloc() except it never frees the originally
1057 * allocated buffer. Use this if you don't want to free the buffer immediately
1058 * like, for example, with RCU.
1059 */
1060void *__krealloc(const void *p, size_t new_size, gfp_t flags)
1061{
1062 if (unlikely(!new_size))
1063 return ZERO_SIZE_PTR;
1064
1065 return __do_krealloc(p, new_size, flags);
1066
1067}
1068EXPORT_SYMBOL(__krealloc);
1069
1070/**
1071 * krealloc - reallocate memory. The contents will remain unchanged.
1072 * @p: object to reallocate memory for.
1073 * @new_size: how many bytes of memory are required.
1074 * @flags: the type of memory to allocate.
1075 *
1076 * The contents of the object pointed to are preserved up to the
1077 * lesser of the new and old sizes. If @p is %NULL, krealloc()
1078 * behaves exactly like kmalloc(). If @new_size is 0 and @p is not a
1079 * %NULL pointer, the object pointed to is freed.
1080 */
1081void *krealloc(const void *p, size_t new_size, gfp_t flags)
1082{
1083 void *ret;
1084
1085 if (unlikely(!new_size)) {
1086 kfree(p);
1087 return ZERO_SIZE_PTR;
1088 }
1089
1090 ret = __do_krealloc(p, new_size, flags);
1091 if (ret && p != ret)
1092 kfree(p);
1093
1094 return ret;
1095}
1096EXPORT_SYMBOL(krealloc);
1097
1098/**
1099 * kzfree - like kfree but zero memory
1100 * @p: object to free memory of
1101 *
1102 * The memory of the object @p points to is zeroed before freed.
1103 * If @p is %NULL, kzfree() does nothing.
1104 *
1105 * Note: this function zeroes the whole allocated buffer which can be a good
1106 * deal bigger than the requested buffer size passed to kmalloc(). So be
1107 * careful when using this function in performance sensitive code.
1108 */
1109void kzfree(const void *p)
1110{
1111 size_t ks;
1112 void *mem = (void *)p;
1113
1114 if (unlikely(ZERO_OR_NULL_PTR(mem)))
1115 return;
1116 ks = ksize(mem);
1117 memset(mem, 0, ks);
1118 kfree(mem);
1119}
1120EXPORT_SYMBOL(kzfree);
1121
1122/* Tracepoints definitions. */
1123EXPORT_TRACEPOINT_SYMBOL(kmalloc);
1124EXPORT_TRACEPOINT_SYMBOL(kmem_cache_alloc);
1125EXPORT_TRACEPOINT_SYMBOL(kmalloc_node);
1126EXPORT_TRACEPOINT_SYMBOL(kmem_cache_alloc_node);
1127EXPORT_TRACEPOINT_SYMBOL(kfree);
1128EXPORT_TRACEPOINT_SYMBOL(kmem_cache_free);